ingred-ui 31.0.0 → 31.0.2
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 +16 -1
- package/dist/components/Card/Card.d.ts +1 -1
- package/dist/components/Card/index.d.ts +2 -1
- package/dist/components/FileUploader/FileUploader.d.ts +1 -1
- package/dist/components/Flex/Flex.d.ts +1 -1
- package/dist/components/Flex/index.d.ts +2 -1
- package/dist/components/Input/Input.d.ts +1 -1
- package/dist/components/MenuList/MenuList.d.ts +1 -1
- package/dist/components/Popover/Popover.d.ts +1 -1
- package/dist/components/ScrollArea/ScrollArea.d.ts +1 -1
- package/dist/components/Select/Select.d.ts +2 -1
- package/dist/components/Select/styled.d.ts +1 -1
- package/dist/components/Spacer/index.d.ts +2 -1
- package/dist/components/Spinner/Spinner.d.ts +1 -1
- package/dist/components/Switch/Switch.d.ts +1 -1
- package/dist/components/Tooltip/Tooltip.d.ts +1 -1
- package/dist/index.es.js +412 -412
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +412 -412
- package/dist/index.js.map +1 -1
- package/dist/utils/scrollbar.d.ts +1 -1
- package/package.json +33 -46
- package/dist/utils/renderWithThemeProvider.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ingred-ui",
|
|
3
|
-
"version": "31.0.
|
|
3
|
+
"version": "31.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "CARTA HOLDINGS, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,26 +14,13 @@
|
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": ">=20.0.0"
|
|
16
16
|
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"test": "cross-env CI=1 jest --runInBand",
|
|
19
|
-
"test:watch": "jest --watchAll",
|
|
20
|
-
"test:update": "jest --updateSnapshot",
|
|
21
|
-
"build": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
|
|
22
|
-
"start": "rollup -c -w",
|
|
23
|
-
"storybook": "storybook dev -p 6006",
|
|
24
|
-
"build-storybook": "storybook build",
|
|
25
|
-
"lint": "tsc && eslint 'src/**/*.{ts,tsx}' && prettier --check 'src/**/*.{ts,tsx}'",
|
|
26
|
-
"format": "prettier --write 'src/**/*.{ts,tsx}'",
|
|
27
|
-
"generate": "yarn scaffdog generate",
|
|
28
|
-
"release": "changeset tag && changeset publish",
|
|
29
|
-
"update-holidays": "node scripts/holiday/update-holidays.js"
|
|
30
|
-
},
|
|
31
17
|
"dependencies": {
|
|
32
18
|
"@dnd-kit/core": "^6.3.1",
|
|
33
19
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
34
20
|
"@dnd-kit/sortable": "^10.0.0",
|
|
35
21
|
"@dnd-kit/utilities": "^3.2.2",
|
|
36
22
|
"@floating-ui/react": "^0.26.0",
|
|
23
|
+
"csstype": "3.1.2",
|
|
37
24
|
"csv-parse": "^6.1.0",
|
|
38
25
|
"dayjs": "^1.11.6",
|
|
39
26
|
"react-select": "^5.10.2",
|
|
@@ -45,6 +32,7 @@
|
|
|
45
32
|
"styled-components": "^6"
|
|
46
33
|
},
|
|
47
34
|
"devDependencies": {
|
|
35
|
+
"@axe-core/playwright": "4.11.3",
|
|
48
36
|
"@babel/plugin-transform-class-properties": "^7.23.3",
|
|
49
37
|
"@babel/preset-env": "^7.21.4",
|
|
50
38
|
"@babel/preset-react": "^7.18.6",
|
|
@@ -56,12 +44,13 @@
|
|
|
56
44
|
"@rollup/plugin-terser": "1.0.0",
|
|
57
45
|
"@rollup/plugin-typescript": "11.1.1",
|
|
58
46
|
"@rollup/plugin-url": "8.0.1",
|
|
59
|
-
"@storybook/addon-docs": "10.3.
|
|
60
|
-
"@storybook/addon-links": "10.3.
|
|
61
|
-
"@storybook/addon-vitest": "10.3.
|
|
62
|
-
"@storybook/react-vite": "10.3.
|
|
47
|
+
"@storybook/addon-docs": "10.3.6",
|
|
48
|
+
"@storybook/addon-links": "10.3.6",
|
|
49
|
+
"@storybook/addon-vitest": "10.3.6",
|
|
50
|
+
"@storybook/react-vite": "10.3.6",
|
|
63
51
|
"@testing-library/jest-dom": "6.1.3",
|
|
64
52
|
"@testing-library/react": "14.1.2",
|
|
53
|
+
"@testing-library/user-event": "14.6.1",
|
|
65
54
|
"@types/jest": "29.5.1",
|
|
66
55
|
"@types/react": "18.0.12",
|
|
67
56
|
"@types/react-dom": "18.0.5",
|
|
@@ -69,7 +58,9 @@
|
|
|
69
58
|
"@types/rollup-plugin-peer-deps-external": "2.2.1",
|
|
70
59
|
"@typescript-eslint/eslint-plugin": "7.18.0",
|
|
71
60
|
"@typescript-eslint/parser": "7.18.0",
|
|
72
|
-
"@vitejs/plugin-react": "^
|
|
61
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
62
|
+
"@vitest/browser-playwright": "^4.1.5",
|
|
63
|
+
"@vitest/coverage-v8": "^4.1.5",
|
|
73
64
|
"cross-env": "7.0.3",
|
|
74
65
|
"eslint": "8.57.1",
|
|
75
66
|
"eslint-config-prettier": "9.1.0",
|
|
@@ -78,9 +69,10 @@
|
|
|
78
69
|
"eslint-plugin-jsx-a11y": "6.8.0",
|
|
79
70
|
"eslint-plugin-react": "7.33.2",
|
|
80
71
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
81
|
-
"eslint-plugin-storybook": "10.3.
|
|
72
|
+
"eslint-plugin-storybook": "10.3.6",
|
|
82
73
|
"jest": "29.5.0",
|
|
83
74
|
"jest-environment-jsdom": "29.7.0",
|
|
75
|
+
"playwright": "^1.58.2",
|
|
84
76
|
"prettier": "3.0.0",
|
|
85
77
|
"react": "18.1.0",
|
|
86
78
|
"react-dom": "18.1.0",
|
|
@@ -88,37 +80,32 @@
|
|
|
88
80
|
"rollup-plugin-imagemin": "0.5.0",
|
|
89
81
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
90
82
|
"scaffdog": "4.1.0",
|
|
91
|
-
"storybook": "10.3.
|
|
83
|
+
"storybook": "10.3.6",
|
|
92
84
|
"styled-components": "6.4.1",
|
|
93
85
|
"ts-jest": "29.1.0",
|
|
86
|
+
"tslib": "2.8.1",
|
|
94
87
|
"typescript": "5.2.2",
|
|
95
|
-
"vite": "
|
|
96
|
-
"vitest": "^4.1.
|
|
97
|
-
"playwright": "^1.58.2",
|
|
98
|
-
"@vitest/browser-playwright": "^4.1.2",
|
|
99
|
-
"@vitest/coverage-v8": "^4.1.2"
|
|
88
|
+
"vite": "8.0.11",
|
|
89
|
+
"vitest": "^4.1.5"
|
|
100
90
|
},
|
|
101
91
|
"files": [
|
|
102
92
|
"dist",
|
|
103
93
|
"bin"
|
|
104
94
|
],
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"js-yaml": "4.1.1",
|
|
121
|
-
"qs": "6.14.1",
|
|
122
|
-
"tar": "^7.5.11"
|
|
95
|
+
"scripts": {
|
|
96
|
+
"test": "cross-env CI=1 jest --runInBand",
|
|
97
|
+
"test:watch": "jest --watchAll",
|
|
98
|
+
"test:update": "jest --updateSnapshot",
|
|
99
|
+
"build": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
|
|
100
|
+
"start": "rollup -c -w",
|
|
101
|
+
"storybook": "storybook dev -p 6006",
|
|
102
|
+
"build-storybook": "storybook build",
|
|
103
|
+
"lint:a11y": "pnpm run build-storybook && node scripts/a11y/lint-storybook.mjs",
|
|
104
|
+
"lint:a11y:update": "pnpm run build-storybook && node scripts/a11y/lint-storybook.mjs --update-baseline",
|
|
105
|
+
"lint": "tsc && eslint 'src/**/*.{ts,tsx}' && prettier --check 'src/**/*.{ts,tsx}'",
|
|
106
|
+
"format": "prettier --write 'src/**/*.{ts,tsx}'",
|
|
107
|
+
"generate": "pnpm exec scaffdog generate",
|
|
108
|
+
"release": "changeset tag && changeset publish",
|
|
109
|
+
"update-holidays": "node scripts/holiday/update-holidays.js"
|
|
123
110
|
}
|
|
124
|
-
}
|
|
111
|
+
}
|