@bitrise/bitkit 9.8.2 → 9.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -6
- package/src/Components/Divider/Divider.tsx +1 -0
- package/src/Foundations/Colors/Colors.stories.mdx +1 -1
- package/src/Foundations/Colors/DesignTokens.tsx +1 -1
- package/src/Foundations/Radii/Radii.stories.mdx +1 -1
- package/src/Foundations/Shadows/Shadows.stories.mdx +1 -1
- package/src/Foundations/Sizes/Sizes.stories.mdx +1 -1
- package/src/Foundations/Typography/Typography.stories.mdx +1 -1
- package/src/Old/Icon/tsx/index.ts +0 -4
- package/src/Old/Input/Input.css +4 -0
- package/src/Old/Link/Link.css +4 -0
- package/src/theme.ts +2 -1
- package/src/tsconfig.tsbuildinfo +1 -1
- package/src/Old/Icon/svg/icons-crown.svg +0 -9
- package/src/Old/Icon/tsx/IconsCrown.tsx +0 -19
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitrise/bitkit",
|
|
3
3
|
"description": "Bitrise React component library",
|
|
4
|
-
"version": "9.8.
|
|
4
|
+
"version": "9.8.5",
|
|
5
5
|
"repository": "git@github.com:bitrise-io/bitkit.git",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"license": "UNLICENSED",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@popperjs/core": "^2.11.5",
|
|
40
40
|
"@types/react-transition-group": "^4.4.4",
|
|
41
41
|
"classnames": "^2.3.1",
|
|
42
|
-
"clipboard": "^2.0.
|
|
42
|
+
"clipboard": "^2.0.11",
|
|
43
43
|
"framer-motion": "^6.3.3",
|
|
44
44
|
"luxon": "^2.3.2",
|
|
45
45
|
"react": "^17.0.2",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"@babel/core": "^7.17.10",
|
|
56
56
|
"@bitrise/eslint-plugin": "^2.1.0",
|
|
57
57
|
"@chakra-ui/cli": "^1.9.0",
|
|
58
|
+
"@chakra-ui/storybook-addon": "^1.0.3",
|
|
58
59
|
"@commitlint/cli": "^16.2.4",
|
|
59
60
|
"@commitlint/config-conventional": "^16.2.4",
|
|
60
61
|
"@google-cloud/storage": "^5.19.4",
|
|
@@ -75,10 +76,10 @@
|
|
|
75
76
|
"@types/cheerio": "^0.22.31",
|
|
76
77
|
"@types/clipboard": "^2.0.1",
|
|
77
78
|
"@types/enzyme": "^3.10.12",
|
|
78
|
-
"@types/jest": "^27.
|
|
79
|
+
"@types/jest": "^27.5.0",
|
|
79
80
|
"@types/lodash.sample": "^4.2.7",
|
|
80
81
|
"@types/lodash.shuffle": "^4.2.7",
|
|
81
|
-
"@types/luxon": "^2.3.
|
|
82
|
+
"@types/luxon": "^2.3.2",
|
|
82
83
|
"@types/prismjs": "^1.26.0",
|
|
83
84
|
"@types/react": "17.0.44",
|
|
84
85
|
"@types/react-dom": "^17.0.16",
|
|
@@ -86,8 +87,8 @@
|
|
|
86
87
|
"@types/react-router-dom": "^5.3.3",
|
|
87
88
|
"@types/react-transition-group": "^4.4.4",
|
|
88
89
|
"@types/vfile-message": "^2.0.0",
|
|
89
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
90
|
-
"@typescript-eslint/parser": "^5.
|
|
90
|
+
"@typescript-eslint/eslint-plugin": "^5.22.0",
|
|
91
|
+
"@typescript-eslint/parser": "^5.22.0",
|
|
91
92
|
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
|
|
92
93
|
"axios": "^0.27.2",
|
|
93
94
|
"babel-eslint": "^10.0.1",
|
|
@@ -11,7 +11,7 @@ const TOKENS = {
|
|
|
11
11
|
'text.secondary': 'Secondary text color, for inline help and less important text',
|
|
12
12
|
'text.link': 'Default text link color',
|
|
13
13
|
'text.linkHover': 'Default text link hover color',
|
|
14
|
-
'separator.primary': 'Default color for separator lines
|
|
14
|
+
'separator.primary': 'Default color for separator lines',
|
|
15
15
|
} as any;
|
|
16
16
|
|
|
17
17
|
const DesignTokens = () => {
|
|
@@ -50,7 +50,6 @@ import Coffee from './IconsCoffee';
|
|
|
50
50
|
import Console from './IconsConsole';
|
|
51
51
|
import Credit from './IconsCredit';
|
|
52
52
|
import Creditcard from './IconsCreditcard';
|
|
53
|
-
import Crown from './IconsCrown';
|
|
54
53
|
import DeleteNope from './IconsDeleteNope';
|
|
55
54
|
import Deployment from './IconsDeployment';
|
|
56
55
|
import Doc from './IconsDoc';
|
|
@@ -224,7 +223,6 @@ export type TypeIconName =
|
|
|
224
223
|
| 'Console'
|
|
225
224
|
| 'Credit'
|
|
226
225
|
| 'Creditcard'
|
|
227
|
-
| 'Crown'
|
|
228
226
|
| 'DeleteNope'
|
|
229
227
|
| 'Deployment'
|
|
230
228
|
| 'Doc'
|
|
@@ -398,7 +396,6 @@ export const IconList: TypeIconName[] = [
|
|
|
398
396
|
'Console',
|
|
399
397
|
'Credit',
|
|
400
398
|
'Creditcard',
|
|
401
|
-
'Crown',
|
|
402
399
|
'DeleteNope',
|
|
403
400
|
'Deployment',
|
|
404
401
|
'Doc',
|
|
@@ -575,7 +572,6 @@ export const IconMap: {
|
|
|
575
572
|
Console,
|
|
576
573
|
Credit,
|
|
577
574
|
Creditcard,
|
|
578
|
-
Crown,
|
|
579
575
|
DeleteNope,
|
|
580
576
|
Deployment,
|
|
581
577
|
Doc,
|
package/src/Old/Input/Input.css
CHANGED
package/src/Old/Link/Link.css
CHANGED