@gataca/design-system 4.2.0 → 4.3.1
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/dist/components/native/Icons/icons/profilePhoto.d.ts +1 -1
- package/dist/components/native/TextField/TextField/textField_config.d.ts +3 -3
- package/dist/components/native/Tooltips/Tooltip/components/Backdrop.native.d.ts +1 -1
- package/dist/components/web/Alerts/Alert/Alert_config.web.d.ts +4 -4
- package/dist/components/web/Avatars/Avatar/Avatar.config.web.d.ts +4 -188
- package/dist/components/web/Buttons/Button/Button.config.web.d.ts +30 -4
- package/dist/components/web/Buttons/SegmentedButton/SegmentedButton.config.web.d.ts +3 -3
- package/dist/components/web/Buttons/SegmentedButton/styles.web.d.ts +2 -2
- package/dist/components/web/Chips/Chip/Chip.config.web.d.ts +41 -4
- package/dist/components/web/Icons/icons/checkbox.d.ts +2 -2
- package/dist/components/web/Icons/icons/commitment.d.ts +1 -1
- package/dist/components/web/Icons/icons/compliance.d.ts +1 -1
- package/dist/components/web/Icons/icons/devices.d.ts +1 -1
- package/dist/components/web/Icons/icons/disconnect.d.ts +1 -1
- package/dist/components/web/Icons/icons/government.d.ts +1 -1
- package/dist/components/web/Icons/icons/navigation.d.ts +1 -1
- package/dist/components/web/Icons/icons/plusCircle.d.ts +1 -1
- package/dist/components/web/Icons/icons/radioButton.d.ts +2 -2
- package/dist/components/web/Icons/icons/userSecure.d.ts +1 -1
- package/dist/components/web/Indicator/Indicator/indicator_types.web.d.ts +2 -2
- package/dist/components/web/Indicator/NumberBadges/numberBadges_types.web.d.ts +8 -8
- package/dist/components/web/Lists/ListItem/listItem.config.web.d.ts +3 -3
- package/dist/components/web/Menus/MenuItem/MenuItem_types.web.d.ts +3 -12
- package/dist/components/web/Tabs/ButtonTabs/ButtonTabs.config.web.d.ts +4 -4
- package/dist/components/web/Tabs/Tabs/tabs_types.web.d.ts +12 -12
- package/dist/components/web/TextField/TextField/textField_config.d.ts +3 -3
- package/dist/index.native.js +1 -1
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +1 -1
- package/dist/index.web.js.map +1 -1
- package/dist/styles/Colors.d.ts +170 -1
- package/dist/utils/theming/themeProvider.d.ts +7 -2
- package/package.json +92 -18
package/dist/styles/Colors.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export type ColorsType = {
|
|
2
2
|
fundationWhite: string;
|
|
3
3
|
fundationBlack: string;
|
|
4
|
-
|
|
4
|
+
neutral100: string;
|
|
5
5
|
neutral200: string;
|
|
6
6
|
neutral300: string;
|
|
7
7
|
neutral400: string;
|
|
@@ -78,4 +78,173 @@ export type ColorsType = {
|
|
|
78
78
|
buttonsWhiteShadow: string;
|
|
79
79
|
buttonsGreyShadow: string;
|
|
80
80
|
};
|
|
81
|
+
export type ThemeColorsType = {
|
|
82
|
+
generalPage: string;
|
|
83
|
+
generalPageSecondary: string;
|
|
84
|
+
generalDefaultCard: string;
|
|
85
|
+
generalDefaultSecondaryCard: string;
|
|
86
|
+
generalDefaultTertiaryCard: string;
|
|
87
|
+
transparent: string;
|
|
88
|
+
textDefaultHeading: string;
|
|
89
|
+
textDefaultBody: string;
|
|
90
|
+
textDefaultCaption: string;
|
|
91
|
+
textDefaultPlaceholder: string;
|
|
92
|
+
textOnColorHeading: string;
|
|
93
|
+
textOnColorBody: string;
|
|
94
|
+
textOnColorCaption: string;
|
|
95
|
+
textOnColorPlaceholder: string;
|
|
96
|
+
textPrimaryDefault: string;
|
|
97
|
+
textPrimaryDefaultHover: string;
|
|
98
|
+
textPrimaryOnColor: string;
|
|
99
|
+
textPrimaryOnColorHover: string;
|
|
100
|
+
textSecondaryDefault: string;
|
|
101
|
+
textSecondaryDefaultHover: string;
|
|
102
|
+
textSecondaryOnColor: string;
|
|
103
|
+
textSecondaryOnColorHover: string;
|
|
104
|
+
textAlertDefault: string;
|
|
105
|
+
textAlertDefaultHover: string;
|
|
106
|
+
textAlertOnColor: string;
|
|
107
|
+
textAlertOnColorHover: string;
|
|
108
|
+
textWarningDefault: string;
|
|
109
|
+
textWarningDefaultHover: string;
|
|
110
|
+
textWarningOnColor: string;
|
|
111
|
+
textWarningOnColorHover: string;
|
|
112
|
+
textSuccessDefault: string;
|
|
113
|
+
textSuccessDefaultHover: string;
|
|
114
|
+
textSuccessOnColor: string;
|
|
115
|
+
textSuccessOnColorHover: string;
|
|
116
|
+
textInfoDefault: string;
|
|
117
|
+
textInfoDefaultHover: string;
|
|
118
|
+
textInfoOnColor: string;
|
|
119
|
+
textInfoOnColorHover: string;
|
|
120
|
+
textNeutralDefault: string;
|
|
121
|
+
textNeutralDefaultHover: string;
|
|
122
|
+
textNeutralOnColor: string;
|
|
123
|
+
textNeutralOnColorHover: string;
|
|
124
|
+
textContentDefault: string;
|
|
125
|
+
textContentDefaultHover: string;
|
|
126
|
+
textContentOnColor: string;
|
|
127
|
+
textContentOnColorHover: string;
|
|
128
|
+
textDisableDefault: string;
|
|
129
|
+
textDisableOnColor: string;
|
|
130
|
+
iconsPrimaryDefault: string;
|
|
131
|
+
iconsPrimaryDefaultHover: string;
|
|
132
|
+
iconsPrimaryOnColor: string;
|
|
133
|
+
iconsPrimaryOnColorHover: string;
|
|
134
|
+
iconsSecondaryDefault: string;
|
|
135
|
+
iconsSecondaryDefaultHover: string;
|
|
136
|
+
iconsSecondaryOnColor: string;
|
|
137
|
+
iconsSecondaryOnColorHover: string;
|
|
138
|
+
iconsAlertDefault: string;
|
|
139
|
+
iconsAlertDefaultHover: string;
|
|
140
|
+
iconsAlertOnColor: string;
|
|
141
|
+
iconsAlertOnColorHover: string;
|
|
142
|
+
iconsWarningDefault: string;
|
|
143
|
+
iconsWarningDefaultHover: string;
|
|
144
|
+
iconsWarningOnColor: string;
|
|
145
|
+
iconsWarningOnColorHover: string;
|
|
146
|
+
iconsSuccessDefault: string;
|
|
147
|
+
iconsSuccessDefaultHover: string;
|
|
148
|
+
iconsSuccessOnColor: string;
|
|
149
|
+
iconsSuccessOnColorHover: string;
|
|
150
|
+
iconsInfoDefault: string;
|
|
151
|
+
iconsInfoDefaultHover: string;
|
|
152
|
+
iconsInfoOnColor: string;
|
|
153
|
+
iconsInfoOnColorHover: string;
|
|
154
|
+
iconsNeutralDefault: string;
|
|
155
|
+
iconsNeutralDefaultHover: string;
|
|
156
|
+
iconsNeutralOnColor: string;
|
|
157
|
+
iconsNeutralOnColorHover: string;
|
|
158
|
+
iconsDisabledDefault: string;
|
|
159
|
+
iconsDisabledOnColor: string;
|
|
160
|
+
iconsContentDefault: string;
|
|
161
|
+
iconsContentDefaultHover: string;
|
|
162
|
+
iconsContentOnColor: string;
|
|
163
|
+
iconsContentOnColorHover: string;
|
|
164
|
+
surfacePrimaryDefault: string;
|
|
165
|
+
surfacePrimaryDefaultHover: string;
|
|
166
|
+
surfacePrimaryDefaultSubtle: string;
|
|
167
|
+
surfacePrimaryDefaultSubtleHover: string;
|
|
168
|
+
surfaceSecondaryDefault: string;
|
|
169
|
+
surfaceSecondaryDefaultHover: string;
|
|
170
|
+
surfaceSecondaryDefaultSubtle: string;
|
|
171
|
+
surfaceSecondaryDefaultSubtleHover: string;
|
|
172
|
+
surfaceAlertDefault: string;
|
|
173
|
+
surfaceAlertDefaultHover: string;
|
|
174
|
+
surfaceAlertDefaultSubtle: string;
|
|
175
|
+
surfaceAlertDefaultSubtleHover: string;
|
|
176
|
+
surfaceWarningDefault: string;
|
|
177
|
+
surfaceWarningDefaultHover: string;
|
|
178
|
+
surfaceWarningDefaultSubtle: string;
|
|
179
|
+
surfaceWarningDefaultSubtleHover: string;
|
|
180
|
+
surfaceSuccessDefault: string;
|
|
181
|
+
surfaceSuccessDefaultHover: string;
|
|
182
|
+
surfaceSuccessDefaultSubtle: string;
|
|
183
|
+
surfaceSuccessDefaultSubtleHover: string;
|
|
184
|
+
surfaceInfoDefault: string;
|
|
185
|
+
surfaceInfoDefaultHover: string;
|
|
186
|
+
surfaceInfoDefaultSubtle: string;
|
|
187
|
+
surfaceInfoDefaultSubtleHover: string;
|
|
188
|
+
surfaceNeutralDefault: string;
|
|
189
|
+
surfaceNeutralDefaultHover: string;
|
|
190
|
+
surfaceNeutralDefaultSubtle: string;
|
|
191
|
+
surfaceNeutralDefaultSubtleHover: string;
|
|
192
|
+
surfaceNeutralDefaultMedium: string;
|
|
193
|
+
surfaceNeutralDefaultMediumHover: string;
|
|
194
|
+
surfaceDisableDisable: string;
|
|
195
|
+
surfaceSkeletonDefault: string;
|
|
196
|
+
surfaceSkeletonDefaultOnColor: string;
|
|
197
|
+
bordersGeneralDefault: string;
|
|
198
|
+
bordersGeneralOnColor: string;
|
|
199
|
+
bordersPrimaryDefault: string;
|
|
200
|
+
bordersPrimaryDefaultHover: string;
|
|
201
|
+
bordersPrimaryDefaultFocus: string;
|
|
202
|
+
bordersPrimaryDefaultSubtle: string;
|
|
203
|
+
bordersPrimaryDefaultSubtleHover: string;
|
|
204
|
+
bordersPrimaryDefaultSubtleFocus: string;
|
|
205
|
+
bordersSecondaryDefault: string;
|
|
206
|
+
bordersSecondaryDefaultHover: string;
|
|
207
|
+
bordersSecondaryDefaultFocus: string;
|
|
208
|
+
bordersSecondaryDefaultSubtle: string;
|
|
209
|
+
bordersSecondaryDefaultSubtleHover: string;
|
|
210
|
+
bordersSecondaryDefaultSubtleFocus: string;
|
|
211
|
+
bordersAlertDefault: string;
|
|
212
|
+
bordersAlertDefaultHover: string;
|
|
213
|
+
bordersAlertDefaultFocus: string;
|
|
214
|
+
bordersAlertDefaultSubtle: string;
|
|
215
|
+
bordersAlertDefaultSubtleHover: string;
|
|
216
|
+
bordersAlertDefaultSubtleFocus: string;
|
|
217
|
+
bordersWarningDefault: string;
|
|
218
|
+
bordersWarningDefaultHover: string;
|
|
219
|
+
bordersWarningDefaultFocus: string;
|
|
220
|
+
bordersWarningDefaultSubtle: string;
|
|
221
|
+
bordersWarningDefaultSubtleHover: string;
|
|
222
|
+
bordersWarningDefaultSubtleFocus: string;
|
|
223
|
+
bordersSuccessDefault: string;
|
|
224
|
+
bordersSuccessDefaultHover: string;
|
|
225
|
+
bordersSuccessDefaultFocus: string;
|
|
226
|
+
bordersSuccessDefaultSubtle: string;
|
|
227
|
+
bordersSuccessDefaultSubtleHover: string;
|
|
228
|
+
bordersSuccessDefaultSubtleFocus: string;
|
|
229
|
+
bordersInfoDefault: string;
|
|
230
|
+
bordersInfoDefaultHover: string;
|
|
231
|
+
bordersInfoDefaultFocus: string;
|
|
232
|
+
bordersInfoDefaultSubtle: string;
|
|
233
|
+
bordersInfoDefaultSubtleHover: string;
|
|
234
|
+
bordersInfoDefaultSubtleFocus: string;
|
|
235
|
+
bordersNeutralDefault: string;
|
|
236
|
+
bordersNeutralDefaultHover: string;
|
|
237
|
+
bordersNeutralDefaultFocus: string;
|
|
238
|
+
bordersNeutralDefaultSubtle: string;
|
|
239
|
+
bordersNeutralDefaultSubtleHover: string;
|
|
240
|
+
bordersNeutralDefaultSubtleFocus: string;
|
|
241
|
+
bordersNeutralDefaultMedium: string;
|
|
242
|
+
bordersNeutralDefaultMediumHover: string;
|
|
243
|
+
bordersNeutralDefaultMediumFocus: string;
|
|
244
|
+
bordersDisableDisable: string;
|
|
245
|
+
shadowColorDefault: string;
|
|
246
|
+
shadowColorMd: string;
|
|
247
|
+
};
|
|
81
248
|
export declare const colorsByLabel: Record<string, ColorsType>;
|
|
249
|
+
export declare const themeLightColors: (brand: string) => ThemeColorsType;
|
|
250
|
+
export declare const themeDarkColors: (brand: string) => ThemeColorsType;
|
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import { ColorsType } from '../../styles/Colors';
|
|
2
|
+
import { ColorsType, ThemeColorsType } from '../../styles/Colors';
|
|
3
3
|
import { FontsType, StyleType } from '../../styles/Fonts';
|
|
4
|
+
export type ThemeMode = 'light' | 'dark';
|
|
4
5
|
type ThemeType = {
|
|
5
6
|
fonts: FontsType;
|
|
6
7
|
fontStyles: StyleType;
|
|
7
8
|
colors: ColorsType;
|
|
9
|
+
themeColors: ThemeColorsType;
|
|
10
|
+
themeMode: ThemeMode;
|
|
8
11
|
};
|
|
9
12
|
type ThemeProviderProps = {
|
|
10
13
|
label: 'PRIMARY' | 'SECONDARY' | 'TERTIARY';
|
|
14
|
+
/** Overrides the default theme mode. Defaults to 'dark' for TERTIARY, 'light' otherwise. */
|
|
15
|
+
theme?: ThemeMode;
|
|
11
16
|
children: ReactNode;
|
|
12
17
|
};
|
|
13
|
-
export declare const ThemeProvider: ({ label, children }: ThemeProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export declare const ThemeProvider: ({ label, theme, children, }: ThemeProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
19
|
export declare const useTheme: () => ThemeType;
|
|
15
20
|
export default ThemeProvider;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"homepage": "https://gataca-io.github.io/design-system",
|
|
3
3
|
"name": "@gataca/design-system",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.3.1",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
7
7
|
],
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"description": "Gataca design system components",
|
|
32
|
+
"license": "MIT",
|
|
32
33
|
"author": "Gataca <it@gataca.io>",
|
|
33
34
|
"licenses": [
|
|
34
35
|
{
|
|
@@ -48,14 +49,24 @@
|
|
|
48
49
|
"storybook:web": "storybook dev -p 6006 -c .storybook-web",
|
|
49
50
|
"build-storybook:web": "storybook build -c .storybook-web -o dist/storybook",
|
|
50
51
|
"storybook": "sb dev",
|
|
51
|
-
"build-storybook": "sb build"
|
|
52
|
+
"build-storybook": "sb build",
|
|
53
|
+
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
|
|
54
|
+
"typescript": "tsc --noEmit --composite false",
|
|
55
|
+
"licenses": "npx license-checker --direct --relativeLicensePath > ./precommit/licenses.txt && npx license-checker --direct --summary > ./precommit/licenses-summary.txt",
|
|
56
|
+
"audit": "./precommit/audit.sh"
|
|
52
57
|
},
|
|
58
|
+
"pre-commit": [
|
|
59
|
+
"format",
|
|
60
|
+
"typescript",
|
|
61
|
+
"audit",
|
|
62
|
+
"licenses"
|
|
63
|
+
],
|
|
53
64
|
"peerDependencies": {
|
|
54
65
|
"@babel/preset-react": "^7.24.7",
|
|
55
66
|
"@expo/metro-config": "^0.18.11",
|
|
56
67
|
"@react-native-community/cli": "^14.1.1",
|
|
57
68
|
"@storybook/addon-react-native-web": "^0.0.25",
|
|
58
|
-
"@storybook/addon-themes": "
|
|
69
|
+
"@storybook/addon-themes": "8.6.18",
|
|
59
70
|
"@types/react-native-web": "^0.19.0",
|
|
60
71
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
61
72
|
"react": "18.3.1",
|
|
@@ -67,7 +78,7 @@
|
|
|
67
78
|
"react-native-web-linear-gradient": "^1.1.2",
|
|
68
79
|
"rollup-plugin-glob": "^1.0.2",
|
|
69
80
|
"rollup-plugin-rebase": "^4.1.1",
|
|
70
|
-
"storybook": "8.
|
|
81
|
+
"storybook": "8.6.18",
|
|
71
82
|
"storybook-multilevel-sort": "^2.0.0",
|
|
72
83
|
"styled-components": "^6.1.13"
|
|
73
84
|
},
|
|
@@ -75,7 +86,7 @@
|
|
|
75
86
|
"@babel/core": "^7.20.0",
|
|
76
87
|
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
|
|
77
88
|
"@babel/preset-env": "^7.20.0",
|
|
78
|
-
"@babel/runtime": "^7.
|
|
89
|
+
"@babel/runtime": "^7.26.10",
|
|
79
90
|
"@chromatic-com/storybook": "^1",
|
|
80
91
|
"@react-native-async-storage/async-storage": "^2.0.0",
|
|
81
92
|
"@react-native-community/datetimepicker": "^8.2.0",
|
|
@@ -88,18 +99,18 @@
|
|
|
88
99
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
89
100
|
"@rollup/plugin-terser": "^0.4.4",
|
|
90
101
|
"@rollup/plugin-typescript": "^12.1.0",
|
|
91
|
-
"@storybook/addon-actions": "8.
|
|
92
|
-
"@storybook/addon-essentials": "8.
|
|
93
|
-
"@storybook/addon-links": "8.
|
|
102
|
+
"@storybook/addon-actions": "8.6.18",
|
|
103
|
+
"@storybook/addon-essentials": "8.6.18",
|
|
104
|
+
"@storybook/addon-links": "8.6.18",
|
|
94
105
|
"@storybook/addon-ondevice-actions": "^7.6.20",
|
|
95
106
|
"@storybook/addon-ondevice-controls": "^7.6.20",
|
|
96
107
|
"@storybook/addons": "^7.6.17",
|
|
97
|
-
"@storybook/cli": "8.
|
|
98
|
-
"@storybook/manager-api": "
|
|
99
|
-
"@storybook/react": "8.
|
|
108
|
+
"@storybook/cli": "8.6.18",
|
|
109
|
+
"@storybook/manager-api": "8.6.18",
|
|
110
|
+
"@storybook/react": "8.6.18",
|
|
100
111
|
"@storybook/react-native": "^7.6.20",
|
|
101
|
-
"@storybook/react-webpack5": "8.
|
|
102
|
-
"@storybook/theming": "
|
|
112
|
+
"@storybook/react-webpack5": "8.6.18",
|
|
113
|
+
"@storybook/theming": "8.6.18",
|
|
103
114
|
"@types/node": "^14.14.35",
|
|
104
115
|
"@types/react": "^18.2.6",
|
|
105
116
|
"@types/react-test-renderer": "^18.0.0",
|
|
@@ -110,13 +121,13 @@
|
|
|
110
121
|
"gh-pages": "^6.1.1",
|
|
111
122
|
"jest": "^29.6.3",
|
|
112
123
|
"postcss": "^8.4.47",
|
|
113
|
-
"prettier": "
|
|
124
|
+
"prettier": "^3.5.3",
|
|
114
125
|
"react-dom": "^18.3.1",
|
|
115
126
|
"react-native-linear-gradient": "^2.8.3",
|
|
116
127
|
"react-native-safe-area-context": "^4.11.0",
|
|
117
128
|
"react-native-web": "^0.19.12",
|
|
118
129
|
"react-test-renderer": "18.3.1",
|
|
119
|
-
"rollup": "
|
|
130
|
+
"rollup": "4.59.0",
|
|
120
131
|
"rollup-plugin-dts": "^6.1.1",
|
|
121
132
|
"rollup-plugin-ignore": "^1.0.10",
|
|
122
133
|
"rollup-plugin-multi-input": "^1.5.0",
|
|
@@ -125,17 +136,80 @@
|
|
|
125
136
|
"rollup-plugin-terser": "^7.0.2",
|
|
126
137
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
127
138
|
"tslib": "^2.1.0",
|
|
128
|
-
"typescript": "^5.
|
|
139
|
+
"typescript": "^5.8.3",
|
|
140
|
+
"pre-commit": "^1.2.2"
|
|
129
141
|
},
|
|
130
142
|
"engines": {
|
|
131
143
|
"node": ">=18"
|
|
132
144
|
},
|
|
145
|
+
"overrides": {
|
|
146
|
+
"cross-spawn": "^7.0.6",
|
|
147
|
+
"image-size": "^1.2.1",
|
|
148
|
+
"webpack": "^5.104.1",
|
|
149
|
+
"@storybook/react": {
|
|
150
|
+
"webpack": "^5.104.1"
|
|
151
|
+
},
|
|
152
|
+
"@storybook/core-common": {
|
|
153
|
+
"webpack": "^5.104.1"
|
|
154
|
+
},
|
|
155
|
+
"@storybook/core-server": {
|
|
156
|
+
"webpack": "^5.104.1"
|
|
157
|
+
},
|
|
158
|
+
"@storybook/builder-webpack4": {
|
|
159
|
+
"webpack": "^5.104.1"
|
|
160
|
+
},
|
|
161
|
+
"@storybook/manager-webpack4": {
|
|
162
|
+
"webpack": "^5.104.1"
|
|
163
|
+
},
|
|
164
|
+
"minimatch": "^9.0.7",
|
|
165
|
+
"lodash": "^4.17.23",
|
|
166
|
+
"qs": "^6.14.2",
|
|
167
|
+
"js-yaml": "^4.1.1",
|
|
168
|
+
"yaml": "^2.8.3",
|
|
169
|
+
"fast-xml-parser": "^5.5.7",
|
|
170
|
+
"handlebars": "^4.7.9",
|
|
171
|
+
"picomatch": "^4.0.4",
|
|
172
|
+
"flatted": "^3.4.2",
|
|
173
|
+
"path-to-regexp": "^0.1.13",
|
|
174
|
+
"node-forge": "^1.4.0",
|
|
175
|
+
"form-data": "^4.0.4",
|
|
176
|
+
"tar-fs": "^2.1.4",
|
|
177
|
+
"tar": "^7.5.11",
|
|
178
|
+
"on-headers": "^1.1.0",
|
|
179
|
+
"esbuild": "^0.25.0",
|
|
180
|
+
"svgo": "^2.8.1",
|
|
181
|
+
"brace-expansion": "^2.0.3",
|
|
182
|
+
"store2": "^2.14.4",
|
|
183
|
+
"min-document": "^2.19.1"
|
|
184
|
+
},
|
|
133
185
|
"resolutions": {
|
|
134
|
-
"
|
|
186
|
+
"cross-spawn": "^7.0.6",
|
|
187
|
+
"image-size": "^1.2.1",
|
|
188
|
+
"webpack": "^5.104.1",
|
|
135
189
|
"@storybook/react/webpack": "^5",
|
|
136
190
|
"@storybook/core-common/webpack": "^5",
|
|
137
191
|
"@storybook/core-server/webpack": "^5",
|
|
138
192
|
"@storybook/builder-webpack4/webpack": "^5",
|
|
139
|
-
"@storybook/manager-webpack4/webpack": "^5"
|
|
193
|
+
"@storybook/manager-webpack4/webpack": "^5",
|
|
194
|
+
"minimatch": "^9.0.7",
|
|
195
|
+
"lodash": "^4.17.23",
|
|
196
|
+
"qs": "^6.14.2",
|
|
197
|
+
"js-yaml": "^4.1.1",
|
|
198
|
+
"yaml": "^2.8.3",
|
|
199
|
+
"fast-xml-parser": "^5.5.7",
|
|
200
|
+
"handlebars": "^4.7.9",
|
|
201
|
+
"picomatch": "^4.0.4",
|
|
202
|
+
"flatted": "^3.4.2",
|
|
203
|
+
"path-to-regexp": "^0.1.13",
|
|
204
|
+
"node-forge": "^1.4.0",
|
|
205
|
+
"form-data": "^4.0.4",
|
|
206
|
+
"tar-fs": "^2.1.4",
|
|
207
|
+
"tar": "^7.5.11",
|
|
208
|
+
"on-headers": "^1.1.0",
|
|
209
|
+
"esbuild": "^0.25.0",
|
|
210
|
+
"svgo": "^2.8.1",
|
|
211
|
+
"brace-expansion": "^2.0.3",
|
|
212
|
+
"store2": "^2.14.4",
|
|
213
|
+
"min-document": "^2.19.1"
|
|
140
214
|
}
|
|
141
215
|
}
|