Skip to content

Commit

Permalink
Version Packages (#257)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Jan 11, 2024
1 parent 7dbe4aa commit 7520906
Show file tree
Hide file tree
Showing 21 changed files with 292 additions and 160 deletions.
5 changes: 0 additions & 5 deletions .changeset/afraid-colts-study.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/popular-schools-add.md

This file was deleted.

2 changes: 1 addition & 1 deletion BackpackTokens.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'BackpackTokens'
s.version = '3.2.0'
s.version = '4.0.0'
s.license = { :type => 'ISC', :file => 'packages/backpack-tokens/LICENSE.txt' }
s.homepage = 'https://design.showbie.com'
s.author = 'Showbie Inc.'
Expand Down
8 changes: 7 additions & 1 deletion packages/backpack-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# @showbie/backpack-react

## 2.1.0

### Minor Changes

- [#256](https://github.com/showbie/backpack/pull/256) [`7ece826`](https://github.com/showbie/backpack/commit/7ece826d98e314c9abb6f3680492a210c881ac7f) Thanks [@elidupuis](https://github.com/elidupuis)! - Upgrade to Node 16

## 2.0.0 — 2021-08-11

#### 💣 Breaking Change

- New versions are now published to the GitHub Package registry [#141](https://github.com/showbie/backpack/pull/141)

You will need to add the following to `.npmrc` in your project root:

```
Expand Down
4 changes: 2 additions & 2 deletions packages/backpack-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@showbie/backpack-react",
"version": "2.0.0",
"version": "2.1.0",
"repository": {
"type": "git",
"url": "https://github.com/showbie/backpack.git",
Expand Down Expand Up @@ -35,7 +35,7 @@
},
"devDependencies": {
"@babel/core": "7.11.x",
"@showbie/backpack-tokens": "3.2.0",
"@showbie/backpack-tokens": "4.0.0",
"@storybook/addon-a11y": "6.0.21",
"@storybook/addon-essentials": "6.0.21",
"@storybook/react": "6.0.21",
Expand Down
10 changes: 10 additions & 0 deletions packages/backpack-tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## 4.0.0

### Major Changes

- [#255](https://github.com/showbie/backpack/pull/255) [`7dbe4aa`](https://github.com/showbie/backpack/commit/7dbe4aa0eb6f1c5a84921b53affa315034630af7) Thanks [@elidupuis](https://github.com/elidupuis)! - Update Showbie colour tokens to latest accessible palette

### Minor Changes

- [#256](https://github.com/showbie/backpack/pull/256) [`7ece826`](https://github.com/showbie/backpack/commit/7ece826d98e314c9abb6f3680492a210c881ac7f) Thanks [@elidupuis](https://github.com/elidupuis)! - Upgrade to Node 16

## 3.2.0 — 2022-01-26

#### 🎁 Added
Expand Down
174 changes: 123 additions & 51 deletions packages/backpack-tokens/dist/color-docs.js
Original file line number Diff line number Diff line change
@@ -1,32 +1,48 @@
module.exports = {
showbie: {
grey: {
'0': {
hex: '#FFFFFF',
rgb: '255, 255, 255',
hsl: 'NaN, 0, 100',
name: 'White',
scss: 'sbe-grey-0',
swift: 'sbeGrey0',
},
'5': {
hex: '#FBFBFB',
rgb: '251, 251, 251',
hsl: 'NaN, 0, 98',
name: 'Whiteout',
scss: 'sbe-grey-5',
swift: 'sbeGrey5',
},
'50': {
hex: '#f8f8f8',
hex: '#F8F8F8',
rgb: '248, 248, 248',
hsl: 'NaN, 0, 97',
name: 'Zhēn Zhū Bái Pearl',
scss: 'sbe-grey-50',
swift: 'sbeGrey50',
},
'100': {
hex: '#f2f3f4',
rgb: '242, 243, 244',
hsl: '210, 8, 95',
name: 'Anti-Flash White',
hex: '#F2F2F3',
rgb: '242, 242, 243',
hsl: '240, 4, 95',
name: 'Errigal White',
scss: 'sbe-grey-100',
swift: 'sbeGrey100',
},
'200': {
hex: '#e6e5e7',
rgb: '230, 229, 231',
hsl: '270, 4, 90',
name: 'Moon Lily',
hex: '#E9E9EB',
rgb: '233, 233, 235',
hsl: '240, 5, 92',
name: 'Mourn Mountain Snow',
scss: 'sbe-grey-200',
swift: 'sbeGrey200',
},
'300': {
hex: '#cccccf',
hex: '#CCCCCF',
rgb: '204, 204, 207',
hsl: '240, 3, 81',
name: 'Dusty Grey',
Expand All @@ -42,13 +58,21 @@ module.exports = {
swift: 'sbeGrey400',
},
'500': {
hex: '#b9bbbd',
rgb: '185, 187, 189',
hsl: '210, 3, 73',
name: 'Quiet Grey',
hex: '#696B76',
rgb: '105, 107, 118',
hsl: '231, 6, 44',
name: 'Warpfiend Grey',
scss: 'sbe-grey-500',
swift: 'sbeGrey500',
},
'1000': {
hex: '#696B76',
rgb: '105, 107, 118',
hsl: '231, 6, 44',
name: 'Warpfiend Grey',
scss: 'sbe-grey-1000',
swift: 'sbeGrey1000',
},
},

slate: {
Expand Down Expand Up @@ -80,50 +104,50 @@ module.exports = {

red: {
'50': {
hex: '#ffeeee',
hex: '#FFEEEE',
rgb: '255, 238, 238',
hsl: '0, 100, 97',
name: 'White Gloss',
scss: 'sbe-red-50',
swift: 'sbeRed50',
},
'100': {
hex: '#fce5e5',
hex: '#FCE5E5',
rgb: '252, 229, 229',
hsl: '0, 79, 94',
name: 'Blackbird&#x27;s Ggg',
scss: 'sbe-red-100',
swift: 'sbeRed100',
},
'200': {
hex: '#f9cccc',
hex: '#F9CCCC',
rgb: '249, 204, 204',
hsl: '0, 79, 89',
name: 'Kendall Rose',
scss: 'sbe-red-200',
swift: 'sbeRed200',
},
'500': {
hex: '#f07f7f',
rgb: '240, 127, 127',
hsl: '0, 79, 72',
name: 'Meat',
hex: '#D5422D',
rgb: '213, 66, 45',
hsl: '8, 67, 51',
name: 'Pompeii Red',
scss: 'sbe-red-500',
swift: 'sbeRed500',
},
'600': {
hex: '#eb5f5f',
rgb: '235, 95, 95',
hsl: '0, 78, 65',
name: 'Firecracker Salmon',
hex: '#CF2810',
rgb: '207, 40, 16',
hsl: '8, 86, 44',
name: 'Hot Spice',
scss: 'sbe-red-600',
swift: 'sbeRed600',
},
'700': {
hex: '#e13c3c',
rgb: '225, 60, 60',
hsl: '0, 73, 56',
name: 'Endless Possibilities',
hex: '#C11D05',
rgb: '193, 29, 5',
hsl: '8, 95, 39',
name: 'Ravishing Rouge',
scss: 'sbe-red-700',
swift: 'sbeRed700',
},
Expand All @@ -138,33 +162,57 @@ module.exports = {
},

green: {
'50': {
hex: '#EBF7EB',
rgb: '235, 247, 235',
hsl: '120, 43, 95',
name: 'Apple Flower',
scss: 'sbe-green-50',
swift: 'sbeGreen50',
},
'100': {
hex: '#daf0de',
rgb: '218, 240, 222',
hsl: '131, 42, 90',
name: 'Green Brocade',
hex: '#DAF0DA',
rgb: '218, 240, 218',
hsl: '120, 42, 90',
name: 'Frostini',
scss: 'sbe-green-100',
swift: 'sbeGreen100',
},
'500': {
hex: '#5dbe6e',
rgb: '93, 190, 110',
hsl: '131, 43, 55',
name: 'Forest Fern',
hex: '#158809',
rgb: '21, 136, 9',
hsl: '114, 88, 28',
name: 'India Green',
scss: 'sbe-green-500',
swift: 'sbeGreen500',
},
'600': {
hex: '#49af5b',
rgb: '73, 175, 91',
hsl: '131, 41, 49',
name: 'Samphire Green',
hex: '#137C08',
rgb: '19, 124, 8',
hsl: '114, 88, 26',
name: 'Toy Camouflage',
scss: 'sbe-green-600',
swift: 'sbeGreen600',
},
'700': {
hex: '#117207',
rgb: '17, 114, 7',
hsl: '114, 88, 24',
name: 'Toy Camouflage',
scss: 'sbe-green-700',
swift: 'sbeGreen700',
},
},

blue: {
'5': {
hex: '#F2F9FF',
rgb: '242, 249, 255',
hsl: '208, 100, 97',
name: 'Alice Blue',
scss: 'sbe-blue-5',
swift: 'sbeBlue5',
},
'50': {
hex: '#f1faff',
rgb: '241, 250, 255',
Expand All @@ -189,30 +237,54 @@ module.exports = {
scss: 'sbe-blue-200',
swift: 'sbeBlue200',
},
'500': {
hex: '#29b1f0',
'300': {
hex: '#BAE7FE',
rgb: '186, 231, 254',
hsl: '200, 97, 86',
name: 'Ice Effect',
scss: 'sbe-blue-300',
swift: 'sbeBlue300',
},
'400': {
hex: '#29B1F0',
rgb: '41, 177, 240',
hsl: '199, 87, 55',
name: 'Lynx Screen Blue',
scss: 'sbe-blue-400',
swift: 'sbeBlue400',
},
'500': {
hex: '#107CC0',
rgb: '16, 124, 192',
hsl: '203, 85, 41',
name: 'Tall Ships',
scss: 'sbe-blue-500',
swift: 'sbeBlue500',
},
'600': {
hex: '#009fe8',
rgb: '0, 159, 232',
hsl: '199, 100, 45',
name: 'Pervenche',
hex: '#016FB7',
rgb: '1, 111, 183',
hsl: '204, 99, 36',
name: 'Spanish Blue',
scss: 'sbe-blue-600',
swift: 'sbeBlue600',
},
'700': {
hex: '#007ec2',
rgb: '0, 126, 194',
hsl: '201, 100, 38',
name: 'Honolulu Blue',
hex: '#005E9D',
rgb: '0, 94, 157',
hsl: '204, 100, 31',
name: 'Rave Regatta',
scss: 'sbe-blue-700',
swift: 'sbeBlue700',
},
'800': {
hex: '#003968',
rgb: '0, 57, 104',
hsl: '207, 100, 20',
name: 'Marine Blue',
scss: 'sbe-blue-800',
swift: 'sbeBlue800',
},
},

brand: {
Expand Down
Loading

0 comments on commit 7520906

Please sign in to comment.