@indico-data/design-system 1.0.39 → 1.0.40
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/.vscode/extensions.json +7 -0
- package/.vscode/settings.json +10 -0
- package/.yarn/releases/yarn-4.0.2.cjs +893 -0
- package/.yarnrc.yml +1 -1
- package/lib/components/Accordion/Accordion.styles.d.ts +2 -2
- package/lib/components/Icon/storyHelpers.d.ts +3 -6
- package/lib/components/ListTable/Header/Header.styles.d.ts +1 -2
- package/lib/components/ListTable/ListTable.styles.d.ts +1 -2
- package/lib/components/Pagination/Pagination.styles.d.ts +1 -2
- package/lib/components/basic-section/Section/Section.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +1 -2
- package/lib/components/buttons/Button/Button.styles.d.ts +1 -2
- package/lib/components/buttons/IconButton/IconButton.stories.d.ts +3 -3
- package/lib/components/buttons/IconButton/IconButton.styles.d.ts +2 -4
- package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +2 -4
- package/lib/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +1 -1
- package/lib/components/dropdowns/Select/Select.styles.d.ts +1 -2
- package/lib/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +1 -1
- package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +1 -2
- package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +1 -2
- package/lib/components/inputs/TextInput/TextInput.styles.d.ts +2 -4
- package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +1 -2
- package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +1 -2
- package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +1 -2
- package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +1 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +477 -471
- package/lib/index.js.map +1 -1
- package/package.json +8 -8
- package/rollup.config.mjs +2 -0
- package/.husky/pre-commit +0 -4
- package/.yarn/releases/yarn-classic.cjs +0 -179386
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indico-data/design-system",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.40",
|
|
4
4
|
"description": "",
|
|
5
|
-
"private": false,
|
|
6
5
|
"author": "",
|
|
7
6
|
"main": "lib/index.js",
|
|
8
7
|
"module": "lib/index.esm.js",
|
|
@@ -12,8 +11,7 @@
|
|
|
12
11
|
"lint": "yarn eslint src --ext ts,js,tsx,jsx",
|
|
13
12
|
"build": "rollup -c",
|
|
14
13
|
"build storybook": "storybook build",
|
|
15
|
-
"test-storybook": "test-storybook"
|
|
16
|
-
"prepare": "husky install"
|
|
14
|
+
"test-storybook": "test-storybook"
|
|
17
15
|
},
|
|
18
16
|
"lint-staged": {
|
|
19
17
|
"**/*": "prettier --write --ignore-unknown"
|
|
@@ -28,6 +26,7 @@
|
|
|
28
26
|
"html-webpack-plugin": "^5.5.3",
|
|
29
27
|
"simple-zustand-devtools": "^1.1.0",
|
|
30
28
|
"svgo": "^3.0.3",
|
|
29
|
+
"tslib": "^2.6.2",
|
|
31
30
|
"uuid": "^9.0.1",
|
|
32
31
|
"webpack": "^5",
|
|
33
32
|
"webpack-cli": "^5.1.4",
|
|
@@ -72,8 +71,7 @@
|
|
|
72
71
|
"eslint": "^8.53.0",
|
|
73
72
|
"eslint-plugin-react": "^7.33.2",
|
|
74
73
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
75
|
-
"
|
|
76
|
-
"lint-staged": "^15.1.0",
|
|
74
|
+
"lint-staged": "^15.2.0",
|
|
77
75
|
"postcss": "^8.4.31",
|
|
78
76
|
"prettier": "3.1.0",
|
|
79
77
|
"react": "^18.2.0",
|
|
@@ -94,7 +92,8 @@
|
|
|
94
92
|
"jackspeak": "2.1.1"
|
|
95
93
|
},
|
|
96
94
|
"volta": {
|
|
97
|
-
"node": "20.9.0"
|
|
95
|
+
"node": "20.9.0",
|
|
96
|
+
"yarn": "4.0.2"
|
|
98
97
|
},
|
|
99
98
|
"peerDependencies": {
|
|
100
99
|
"react": "^18.2.0",
|
|
@@ -102,5 +101,6 @@
|
|
|
102
101
|
"react-router-dom": "^6.20.1",
|
|
103
102
|
"react-select": "^5.8.0",
|
|
104
103
|
"styled-components": "^6.1.1"
|
|
105
|
-
}
|
|
104
|
+
},
|
|
105
|
+
"packageManager": "yarn@4.0.2"
|
|
106
106
|
}
|
package/rollup.config.mjs
CHANGED
package/.husky/pre-commit
DELETED