@bitrise/bitkit 12.72.0 → 12.72.2-0
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/README.md +6 -6
- package/package.json +41 -41
- package/src/Components/Select/Select.tsx +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Based on [Chakra UI](https://chakra-ui.com/).
|
|
|
11
11
|
```
|
|
12
12
|
git clone git@github.com:bitrise-io/bitkit.git
|
|
13
13
|
cd bitkit
|
|
14
|
-
|
|
14
|
+
npm i
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
### Technology
|
|
@@ -23,19 +23,19 @@ yarn install
|
|
|
23
23
|
|
|
24
24
|
### Scripts
|
|
25
25
|
|
|
26
|
-
#### `$
|
|
26
|
+
#### `$ npm run storybook`
|
|
27
27
|
|
|
28
28
|
Runs Storybook server
|
|
29
29
|
|
|
30
|
-
#### `$
|
|
30
|
+
#### `$ npm run start`
|
|
31
31
|
|
|
32
|
-
Runs `
|
|
32
|
+
Runs `npm run storybook`
|
|
33
33
|
|
|
34
|
-
#### `$
|
|
34
|
+
#### `$ npm run lint`
|
|
35
35
|
|
|
36
36
|
Runs Javascript linting
|
|
37
37
|
|
|
38
|
-
#### `$
|
|
38
|
+
#### `$ npm run test`
|
|
39
39
|
|
|
40
40
|
Runs the unit tests for the library components
|
|
41
41
|
|
package/package.json
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitrise/bitkit",
|
|
3
3
|
"description": "Bitrise React component library",
|
|
4
|
-
"version": "12.72.0",
|
|
4
|
+
"version": "12.72.2-0",
|
|
5
5
|
"repository": "git@github.com:bitrise-io/bitkit.git",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"license": "UNLICENSED",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"
|
|
9
|
+
"build-storybook": "storybook build",
|
|
10
10
|
"lint": "eslint src --ext ts,tsx",
|
|
11
|
-
"
|
|
12
|
-
"start": "yarn storybook",
|
|
13
|
-
"test": "jest",
|
|
11
|
+
"start": "npm run storybook",
|
|
14
12
|
"storybook": "storybook dev -p 6006",
|
|
15
|
-
"
|
|
13
|
+
"test": "jest",
|
|
14
|
+
"typecheck": "tsc -p src --noEmit",
|
|
15
|
+
"release": "npm version patch && npm publish",
|
|
16
|
+
"release-alpha": "npm version prepatch && npm publish --tag alpha",
|
|
17
|
+
"postpublish": "git push && git push --tags"
|
|
16
18
|
},
|
|
17
19
|
"alias": {
|
|
18
20
|
"@bitrise/bitkit": "./src",
|
|
@@ -25,10 +27,10 @@
|
|
|
25
27
|
"@chakra-ui/theme": "^3.3.1",
|
|
26
28
|
"@chakra-ui/theme-tools": "^2.1.2",
|
|
27
29
|
"@chakra-ui/utils": "^2.0.15",
|
|
28
|
-
"@emotion/react": "^11.11.
|
|
30
|
+
"@emotion/react": "^11.11.3",
|
|
29
31
|
"@emotion/styled": "^11.11.0",
|
|
30
32
|
"@floating-ui/react-dom-interactions": "^0.8.1",
|
|
31
|
-
"framer-motion": "^10.
|
|
33
|
+
"framer-motion": "^10.18.0",
|
|
32
34
|
"luxon": "^3.4.4",
|
|
33
35
|
"react": "^18.2.0",
|
|
34
36
|
"react-dom": "^18.2.0",
|
|
@@ -40,42 +42,37 @@
|
|
|
40
42
|
"react-dom": "^18.2.0"
|
|
41
43
|
},
|
|
42
44
|
"devDependencies": {
|
|
43
|
-
"@babel/core": "^7.23.
|
|
44
|
-
"@babel/preset-env": "^7.23.
|
|
45
|
+
"@babel/core": "^7.23.7",
|
|
46
|
+
"@babel/preset-env": "^7.23.8",
|
|
45
47
|
"@babel/preset-react": "^7.23.3",
|
|
46
48
|
"@babel/preset-typescript": "^7.23.3",
|
|
47
49
|
"@bitrise/eslint-plugin": "^2.3.3",
|
|
48
|
-
"@commitlint/cli": "^17.8.0",
|
|
49
|
-
"@commitlint/config-conventional": "^17.8.0",
|
|
50
50
|
"@google-cloud/storage": "^7.7.0",
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
53
|
-
"@storybook/addon-
|
|
54
|
-
"@storybook/addon-
|
|
55
|
-
"@storybook/
|
|
56
|
-
"@storybook/
|
|
57
|
-
"@storybook/
|
|
58
|
-
"@storybook/
|
|
59
|
-
"@storybook/
|
|
60
|
-
"@
|
|
61
|
-
"@
|
|
62
|
-
"@storybook/theming": "^7.6.4",
|
|
63
|
-
"@testing-library/dom": "^9.3.3",
|
|
64
|
-
"@testing-library/jest-dom": "^6.1.5",
|
|
51
|
+
"@storybook/addon-actions": "^7.6.7",
|
|
52
|
+
"@storybook/addon-essentials": "^7.6.7",
|
|
53
|
+
"@storybook/addon-interactions": "^7.6.7",
|
|
54
|
+
"@storybook/addon-links": "^7.6.7",
|
|
55
|
+
"@storybook/addons": "^7.6.7",
|
|
56
|
+
"@storybook/blocks": "^7.6.7",
|
|
57
|
+
"@storybook/react": "^7.6.7",
|
|
58
|
+
"@storybook/react-webpack5": "^7.6.7",
|
|
59
|
+
"@storybook/theming": "^7.6.7",
|
|
60
|
+
"@testing-library/dom": "^9.3.4",
|
|
61
|
+
"@testing-library/jest-dom": "^6.2.0",
|
|
65
62
|
"@testing-library/react": "^14.1.2",
|
|
66
|
-
"@testing-library/user-event": "^14.5.
|
|
63
|
+
"@testing-library/user-event": "^14.5.2",
|
|
67
64
|
"@types/jest": "^29.5.11",
|
|
68
|
-
"@types/luxon": "^3.
|
|
69
|
-
"@types/react": "^18.2.
|
|
70
|
-
"@types/react-dom": "^18.2.
|
|
71
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
72
|
-
"@typescript-eslint/parser": "^6.
|
|
73
|
-
"axios": "^1.6.
|
|
74
|
-
"eslint": "^8.
|
|
65
|
+
"@types/luxon": "^3.4.0",
|
|
66
|
+
"@types/react": "^18.2.47",
|
|
67
|
+
"@types/react-dom": "^18.2.18",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^6.18.1",
|
|
69
|
+
"@typescript-eslint/parser": "^6.18.1",
|
|
70
|
+
"axios": "^1.6.5",
|
|
71
|
+
"eslint": "^8.56.0",
|
|
75
72
|
"eslint-plugin-import": "^2.29.1",
|
|
76
|
-
"eslint-plugin-jest": "^27.6.
|
|
73
|
+
"eslint-plugin-jest": "^27.6.2",
|
|
77
74
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
78
|
-
"eslint-plugin-prettier": "^5.
|
|
75
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
79
76
|
"eslint-plugin-react": "^7.33.2",
|
|
80
77
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
81
78
|
"eslint-plugin-storybook": "^0.6.15",
|
|
@@ -83,13 +80,12 @@
|
|
|
83
80
|
"glob": "^10.3.10",
|
|
84
81
|
"jest": "^29.7.0",
|
|
85
82
|
"jest-environment-jsdom": "^29.7.0",
|
|
86
|
-
"jsdom": "^23.0
|
|
83
|
+
"jsdom": "^23.2.0",
|
|
87
84
|
"prettier": "^3.1.1",
|
|
88
|
-
"react-hook-form": "^7.49.
|
|
89
|
-
"
|
|
90
|
-
"storybook": "^7.6.4",
|
|
85
|
+
"react-hook-form": "^7.49.3",
|
|
86
|
+
"storybook": "^7.6.7",
|
|
91
87
|
"ts-jest": "^29.1.1",
|
|
92
|
-
"typescript": "^
|
|
88
|
+
"typescript": "^5.3.3"
|
|
93
89
|
},
|
|
94
90
|
"files": [
|
|
95
91
|
"src",
|
|
@@ -98,5 +94,9 @@
|
|
|
98
94
|
"sideEffects": false,
|
|
99
95
|
"publishConfig": {
|
|
100
96
|
"access": "public"
|
|
97
|
+
},
|
|
98
|
+
"engines": {
|
|
99
|
+
"node": "20.10.0",
|
|
100
|
+
"npm": "10.2.3"
|
|
101
101
|
}
|
|
102
102
|
}
|
|
@@ -20,9 +20,9 @@ export interface SelectProps extends Omit<FormControlProps, 'label' | 'onBlur' |
|
|
|
20
20
|
isLoading?: boolean;
|
|
21
21
|
label?: ReactNode;
|
|
22
22
|
name?: string;
|
|
23
|
-
placeholder?: ChakraSelectProps['placeholder'];
|
|
24
23
|
onBlur?: ChakraSelectProps['onBlur'];
|
|
25
24
|
onChange?: ChakraSelectProps['onChange'];
|
|
25
|
+
placeholder?: ChakraSelectProps['placeholder'];
|
|
26
26
|
size?: 'small' | 'medium';
|
|
27
27
|
value?: ChakraSelectProps['value'];
|
|
28
28
|
}
|