@arquimedes.co/eureka-forms 3.0.29-test → 3.0.31-date-range
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/@Types/FormStep.d.ts +4 -1
- package/dist/@Types/GenericFormSteps.d.ts +6 -0
- package/dist/App/AppHooks.js +21 -6
- package/dist/Form/Form.js +2 -6
- package/dist/Form/FormHooks.js +0 -1
- package/dist/Form/FormTypes/ColumnForm/ColumnForm.js +0 -2
- package/dist/Form/FormTypes/StepperForm/StepperForm.js +0 -2
- package/dist/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.js +0 -1
- package/dist/FormSteps/ClassifierSelectorStep/MaterialClassifierSelectorStep/MaterialClassifierSelectorStep.js +1 -5
- package/dist/FormSteps/CollapsibleStep/MaterialTitleStep/MaterialCollapsibleStep.js +1 -3
- package/dist/FormSteps/DatePickerRangeStep/DatePickerRangeStep.d.ts +10 -0
- package/dist/FormSteps/DatePickerRangeStep/DatePickerRangeStep.js +14 -0
- package/dist/FormSteps/DatePickerRangeStep/MaterialDatePickerRangeStep/MaterialDatePickerRangeStep.d.ts +3 -0
- package/dist/FormSteps/DatePickerRangeStep/MaterialDatePickerRangeStep/MaterialDatePickerRangeStep.js +27 -0
- package/dist/FormSteps/EntityValueStep/MaterialEntityValuePickerStep/MaterialEntityValuePickerStep.js +0 -1
- package/dist/FormSteps/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.js +0 -1
- package/dist/FormSteps/MapperStep/MaterialMapperStep/Element/MapperElementComponent.js +0 -1
- package/dist/FormSteps/MapperStep/MaterialMapperStep/Element/PagedMapperElement/PagedMapperElement.js +1 -5
- package/dist/FormSteps/MapperStep/MaterialMapperStep/MaterialMapperStep.js +3 -12
- package/dist/FormSteps/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.js +1 -5
- package/dist/FormSteps/SmartSelectStep/MaterialSmartSelectStep/MaterialSmartSelectStep.js +2 -9
- package/dist/FormSteps/Step.js +4 -0
- package/dist/FormSteps/StepFunctions.js +1 -0
- package/dist/FormSteps/StepFunctions.test.js +7 -0
- package/dist/FormSteps/StepHooks.js +3 -11
- package/dist/FormSteps/TextAreaStep/MaterialTextAreaStep/DraftEditor.css +2 -2
- package/dist/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaEditorStep.js +1 -3
- package/dist/FormSteps/Utils/@StepFiller/StepFiller.js +0 -1
- package/dist/FormSteps/Utils/MaterialInputContainer/MaterialInputContainer.d.ts +2 -2
- package/dist/Shared/CustomBtn/CustomBtn.js +0 -1
- package/dist/Shared/ErkButton/ErkButton.stories.d.ts +2 -1
- package/dist/Shared/ErkButton/ErkButton.stories.js +2 -0
- package/dist/Shared/ErkCheckbox/ErkCheckBox.stories.d.ts +1 -1
- package/dist/Shared/ErkDatePicker/ErkDatePicker.stories.d.ts +1 -1
- package/dist/Shared/ErkDatePicker/ErkDatePicker.stories.js +6 -11
- package/dist/Shared/ErkDatePickerRange/ErkDatePickerRange.d.ts +18 -0
- package/dist/Shared/ErkDatePickerRange/ErkDatePickerRange.js +160 -0
- package/dist/Shared/ErkDatePickerRange/ErkDatePickerRange.stories.d.ts +36 -0
- package/dist/Shared/ErkDatePickerRange/ErkDatePickerRange.stories.js +274 -0
- package/dist/Shared/ErkSelect/ErkSelect.stories.d.ts +5 -2
- package/dist/Shared/ErkSelect/ErkSelect.stories.js +28 -5
- package/dist/Shared/ErkSmartSelect/ErkSmartSelect.stories.d.ts +1 -1
- package/dist/Shared/ErkSmartSelect/ErkSmartSelect.stories.js +10 -18
- package/dist/Shared/ErkTextField/ErkTextField.stories.d.ts +1 -1
- package/dist/Shared/ErkTextField/ErkTextField.stories.js +5 -11
- package/dist/Shared/Navbar/Navbar.stories.d.ts +1 -1
- package/dist/Shared/Rating/Rating.stories.d.ts +1 -1
- package/dist/Shared/Toggle/Toggle.js +1 -1
- package/dist/Utils/AxiosAPI.js +1 -1
- package/dist/Utils/LocaleUtils.js +1 -1
- package/dist/Utils/MaterialProviders.js +2 -2
- package/dist/Utils/store.d.ts +1 -10
- package/dist/constants/FormStepTypes.d.ts +1 -0
- package/dist/constants/FormStepTypes.js +1 -0
- package/dist/index.css +1 -0
- package/dist/main.js +7 -5
- package/package.json +46 -58
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { useArgs } from '@storybook/preview-api';
|
|
3
2
|
import ErkSmartSelect from './ErkSmartSelect';
|
|
4
|
-
import {
|
|
3
|
+
import { useArgs } from 'storybook/internal/preview-api';
|
|
5
4
|
const meta = {
|
|
6
5
|
component: ErkSmartSelect,
|
|
7
6
|
tags: ['autodocs'],
|
|
@@ -26,11 +25,10 @@ export const Default = {
|
|
|
26
25
|
},
|
|
27
26
|
],
|
|
28
27
|
},
|
|
29
|
-
play: async ({
|
|
30
|
-
const canvas = within(canvasElement);
|
|
28
|
+
play: async ({ canvas, userEvent }) => {
|
|
31
29
|
const selector = canvas.getByTestId('smart-select');
|
|
32
30
|
await userEvent.click(selector);
|
|
33
|
-
const option =
|
|
31
|
+
const option = canvas.getByTestId('smart-select-option');
|
|
34
32
|
await userEvent.click(option);
|
|
35
33
|
},
|
|
36
34
|
render: function Component(args) {
|
|
@@ -46,11 +44,10 @@ export const Focused = {
|
|
|
46
44
|
args: {
|
|
47
45
|
label: 'Label',
|
|
48
46
|
},
|
|
49
|
-
play: async ({
|
|
50
|
-
const canvas = within(canvasElement);
|
|
47
|
+
play: async ({ canvas, userEvent }) => {
|
|
51
48
|
const selector = canvas.getByTestId('smart-select');
|
|
52
49
|
await userEvent.click(selector);
|
|
53
|
-
const option =
|
|
50
|
+
const option = canvas.getByTestId('smart-select-empty');
|
|
54
51
|
await userEvent.click(option);
|
|
55
52
|
},
|
|
56
53
|
};
|
|
@@ -59,8 +56,7 @@ export const FocusedSearchable = {
|
|
|
59
56
|
label: 'Label',
|
|
60
57
|
searchable: true,
|
|
61
58
|
},
|
|
62
|
-
play: async ({
|
|
63
|
-
const canvas = within(canvasElement);
|
|
59
|
+
play: async ({ canvas, userEvent }) => {
|
|
64
60
|
const selector = canvas.getByTestId('smart-select');
|
|
65
61
|
await userEvent.click(selector);
|
|
66
62
|
},
|
|
@@ -76,8 +72,7 @@ export const SearchableWithOptions = {
|
|
|
76
72
|
},
|
|
77
73
|
],
|
|
78
74
|
},
|
|
79
|
-
play: async ({
|
|
80
|
-
const canvas = within(canvasElement);
|
|
75
|
+
play: async ({ canvas, userEvent }) => {
|
|
81
76
|
const selector = canvas.getByTestId('smart-select');
|
|
82
77
|
await userEvent.click(selector);
|
|
83
78
|
},
|
|
@@ -94,8 +89,7 @@ export const SearchableWithSearchAndOptions = {
|
|
|
94
89
|
},
|
|
95
90
|
],
|
|
96
91
|
},
|
|
97
|
-
play: async ({
|
|
98
|
-
const canvas = within(canvasElement);
|
|
92
|
+
play: async ({ canvas, userEvent }) => {
|
|
99
93
|
const selector = canvas.getByTestId('smart-select');
|
|
100
94
|
await userEvent.click(selector);
|
|
101
95
|
},
|
|
@@ -111,8 +105,7 @@ export const LoadingOpened = {
|
|
|
111
105
|
label: 'Label',
|
|
112
106
|
loading: true,
|
|
113
107
|
},
|
|
114
|
-
play: async ({
|
|
115
|
-
const canvas = within(canvasElement);
|
|
108
|
+
play: async ({ canvas, userEvent }) => {
|
|
116
109
|
const selector = canvas.getByTestId('smart-select');
|
|
117
110
|
await userEvent.click(selector);
|
|
118
111
|
},
|
|
@@ -123,8 +116,7 @@ export const SearchableLoadingOpened = {
|
|
|
123
116
|
searchable: true,
|
|
124
117
|
loading: true,
|
|
125
118
|
},
|
|
126
|
-
play: async ({
|
|
127
|
-
const canvas = within(canvasElement);
|
|
119
|
+
play: async ({ canvas, userEvent }) => {
|
|
128
120
|
const selector = canvas.getByTestId('smart-select');
|
|
129
121
|
await userEvent.click(selector);
|
|
130
122
|
},
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { useArgs } from '@storybook/preview-api';
|
|
3
2
|
import ErkTextField from './ErkTextField';
|
|
4
|
-
import {
|
|
3
|
+
import { useArgs } from 'storybook/internal/preview-api';
|
|
5
4
|
const meta = {
|
|
6
5
|
component: ErkTextField,
|
|
7
6
|
tags: ['autodocs'],
|
|
@@ -23,13 +22,10 @@ export const Default = {
|
|
|
23
22
|
args: {
|
|
24
23
|
label: 'Label',
|
|
25
24
|
},
|
|
26
|
-
play: async ({
|
|
27
|
-
const canvas = within(canvasElement);
|
|
25
|
+
play: async ({ canvas, userEvent }) => {
|
|
28
26
|
const emailInput = canvas.getByRole('textbox');
|
|
29
27
|
await userEvent.click(emailInput);
|
|
30
|
-
await userEvent.type(emailInput, 'example-email@email.com', {
|
|
31
|
-
delay: 100,
|
|
32
|
-
});
|
|
28
|
+
await userEvent.type(emailInput, 'example-email@email.com', { initialSelectionStart: 100 });
|
|
33
29
|
},
|
|
34
30
|
render: function Component(args) {
|
|
35
31
|
const [, setArgs] = useArgs();
|
|
@@ -44,16 +40,14 @@ export const Focused = {
|
|
|
44
40
|
args: {
|
|
45
41
|
label: 'Label',
|
|
46
42
|
},
|
|
47
|
-
play: async ({
|
|
48
|
-
const canvas = within(canvasElement);
|
|
43
|
+
play: async ({ canvas, userEvent }) => {
|
|
49
44
|
const emailInput = canvas.getByRole('textbox');
|
|
50
45
|
await userEvent.click(emailInput);
|
|
51
46
|
},
|
|
52
47
|
};
|
|
53
48
|
export const FocusedNoLabel = {
|
|
54
49
|
args: {},
|
|
55
|
-
play: async ({
|
|
56
|
-
const canvas = within(canvasElement);
|
|
50
|
+
play: async ({ canvas, userEvent }) => {
|
|
57
51
|
const emailInput = canvas.getByRole('textbox');
|
|
58
52
|
await userEvent.click(emailInput);
|
|
59
53
|
},
|
|
@@ -7,7 +7,7 @@ const Styled = styled(MuiSwitch)(({ theme, checked, size }) => ({
|
|
|
7
7
|
'& .Erk-MuiSwitch-switchBase': {
|
|
8
8
|
marginTop: size === 'small' ? -5 : undefined,
|
|
9
9
|
transform: size === 'small' ? 'translateX(-5px)' : undefined,
|
|
10
|
-
color: '
|
|
10
|
+
color: '#b8b8b8',
|
|
11
11
|
'&.Mui-checked': {
|
|
12
12
|
transform: size === 'small' ? 'translateX(12px)' : undefined,
|
|
13
13
|
'& .Erk-MuiSwitch-thumb': {
|
package/dist/Utils/AxiosAPI.js
CHANGED
|
@@ -8,5 +8,5 @@ const localeMap = {
|
|
|
8
8
|
export const getLocale = () => {
|
|
9
9
|
return (localeMap[navigator.languages?.length
|
|
10
10
|
? navigator.languages[0]
|
|
11
|
-
: navigator.userLanguage
|
|
11
|
+
: (navigator.userLanguage ?? navigator.language ?? navigator.browserLanguage)] ?? localeMap.es);
|
|
12
12
|
};
|
|
@@ -4,8 +4,8 @@ import { createTheme, ThemeProvider } from '@mui/material';
|
|
|
4
4
|
import { AdapterDateFns } from '@mui/x-date-pickers/AdapterDateFns';
|
|
5
5
|
import { LocalizationProvider } from '@mui/x-date-pickers';
|
|
6
6
|
import { getLocale } from './LocaleUtils';
|
|
7
|
-
|
|
8
|
-
function MaterialProviders({ children, formStyle }) {
|
|
7
|
+
import InternalFormStyle from '../constants/InternalFormStyle';
|
|
8
|
+
function MaterialProviders({ children, formStyle = InternalFormStyle }) {
|
|
9
9
|
return (_jsx(ThemeProvider, { theme: createTheme({
|
|
10
10
|
typography: {
|
|
11
11
|
fontFamily: 'inherit',
|
package/dist/Utils/store.d.ts
CHANGED
|
@@ -24,13 +24,4 @@ export type AppStore = typeof store;
|
|
|
24
24
|
export type AppState = ReturnType<typeof store.getState>;
|
|
25
25
|
export declare const getAppState: import("@reduxjs/toolkit").AsyncThunk<RootState, {
|
|
26
26
|
idForm: string;
|
|
27
|
-
},
|
|
28
|
-
state?: unknown;
|
|
29
|
-
dispatch?: import("redux-thunk").ThunkDispatch<unknown, unknown, import("redux").UnknownAction>;
|
|
30
|
-
extra?: unknown;
|
|
31
|
-
rejectValue?: unknown;
|
|
32
|
-
serializedErrorType?: unknown;
|
|
33
|
-
pendingMeta?: unknown;
|
|
34
|
-
fulfilledMeta?: unknown;
|
|
35
|
-
rejectedMeta?: unknown;
|
|
36
|
-
}>;
|
|
27
|
+
}, import("@reduxjs/toolkit").AsyncThunkConfig>;
|
|
@@ -15,6 +15,7 @@ export var FormStepTypes;
|
|
|
15
15
|
FormStepTypes["CHECKBOX"] = "CHECKBOX";
|
|
16
16
|
FormStepTypes["TEXTAREA"] = "TEXTAREA";
|
|
17
17
|
FormStepTypes["DATEPICKER"] = "DATEPICKER";
|
|
18
|
+
FormStepTypes["DATEPICKER_RANGE"] = "DATEPICKER_RANGE";
|
|
18
19
|
FormStepTypes["FILEUPLOAD"] = "FILEUPLOAD";
|
|
19
20
|
FormStepTypes["TEXTINPUT"] = "TEXTINPUT";
|
|
20
21
|
FormStepTypes["SEPARATOR"] = "SEPARATOR";
|
package/dist/index.css
CHANGED
package/dist/main.js
CHANGED
|
@@ -16,8 +16,10 @@ if (values) {
|
|
|
16
16
|
console.error('Invalid data-values JSON', error);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
const idOrganization = urlParams.get('idOrganization') ?? undefined;
|
|
20
|
+
const scrollToTop = () => {
|
|
21
|
+
location.href = '#';
|
|
22
|
+
location.href = '#eureka-root';
|
|
23
|
+
location.href = '#';
|
|
24
|
+
};
|
|
25
|
+
ReactDOM.createRoot(document.getElementById('eureka-root')).render(_jsx("div", { className: styles.eurekaForm, children: _jsx(App, { isWidget: false, idOrganization: idOrganization, apiKey: window.location.pathname.replace('/', ''), valuesData: dataValues, scrollToTop: scrollToTop }) }));
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arquimedes.co/eureka-forms",
|
|
3
3
|
"repository": "git://github.com/Arquimede5/Eureka-Forms.git",
|
|
4
|
-
"version":"3.0.
|
|
4
|
+
"version":"3.0.31-date-range",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"watch": "tsc --noEmit --watch --project tsconfig.app.json",
|
|
7
7
|
"start": "vite",
|
|
@@ -11,25 +11,25 @@
|
|
|
11
11
|
"preview": "vite preview",
|
|
12
12
|
"test": "vitest",
|
|
13
13
|
"tsc-build": "tsc --p tsconfig.app.json --noEmit false --outDir ./dist --composite false --declaration true --allowImportingTsExtensions false",
|
|
14
|
+
"cypress": "DISPLAY=:0 cypress open",
|
|
14
15
|
"storybook": "storybook dev -p 6006",
|
|
15
|
-
"build-storybook": "storybook build"
|
|
16
|
-
"cypress": "DISPLAY=:0 cypress open"
|
|
16
|
+
"build-storybook": "storybook build"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@reduxjs/toolkit": "^2.
|
|
20
|
-
"axios": "^1.
|
|
19
|
+
"@reduxjs/toolkit": "^2.9.0",
|
|
20
|
+
"axios": "^1.12.2",
|
|
21
21
|
"date-fns": "^4.1.0",
|
|
22
22
|
"draft-js": "^0.11.7",
|
|
23
23
|
"i18n-iso-countries": "^7.14.0",
|
|
24
|
-
"libphonenumber-js": "^1.12.
|
|
25
|
-
"logrocket": "^10.
|
|
26
|
-
"nanoid": "^5.1.
|
|
24
|
+
"libphonenumber-js": "^1.12.23",
|
|
25
|
+
"logrocket": "^10.1.0",
|
|
26
|
+
"nanoid": "^5.1.6",
|
|
27
27
|
"react-draft-wysiwyg": "^1.15.0",
|
|
28
28
|
"react-google-recaptcha": "^3.1.0",
|
|
29
|
-
"react-hook-form": "^7.
|
|
30
|
-
"react-international-phone": "^4.
|
|
29
|
+
"react-hook-form": "^7.64.0",
|
|
30
|
+
"react-international-phone": "^4.6.0",
|
|
31
31
|
"react-redux": "^9.2.0",
|
|
32
|
-
"typescript": "^5.
|
|
32
|
+
"typescript": "^5.9.3"
|
|
33
33
|
},
|
|
34
34
|
"eslintConfig": {},
|
|
35
35
|
"browserslist": {
|
|
@@ -45,61 +45,49 @@
|
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@
|
|
49
|
-
"@
|
|
50
|
-
"@
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
53
|
-
"@
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"@
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
61
|
-
"@
|
|
62
|
-
"@
|
|
63
|
-
"@storybook/addon-links": "^8.6.4",
|
|
64
|
-
"@storybook/addon-onboarding": "^8.6.4",
|
|
65
|
-
"@storybook/addon-themes": "^8.6.4",
|
|
66
|
-
"@storybook/blocks": "^8.6.4",
|
|
67
|
-
"@storybook/react": "^8.6.4",
|
|
68
|
-
"@storybook/react-webpack5": "^8.6.4",
|
|
69
|
-
"@storybook/test": "^8.6.4",
|
|
70
|
-
"@storybook/testing-library": "^0.2.2",
|
|
71
|
-
"@testing-library/dom": "^10.4.0",
|
|
72
|
-
"@testing-library/jest-dom": "^6.6.3",
|
|
73
|
-
"@testing-library/react": "^16.2.0",
|
|
48
|
+
"@eslint/compat": "^1.4.0",
|
|
49
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
50
|
+
"@eslint/js": "^9.37.0",
|
|
51
|
+
"@faker-js/faker": "^10.0.0",
|
|
52
|
+
"@mui/material": "^7.3.4",
|
|
53
|
+
"@mui/x-data-grid-pro": "^8.13.1",
|
|
54
|
+
"@mui/x-date-pickers": "^8.12.0",
|
|
55
|
+
"@mui/x-date-pickers-pro": "^8.12.0",
|
|
56
|
+
"@storybook/addon-docs": "^9.1.10",
|
|
57
|
+
"@storybook/addon-onboarding": "^9.1.10",
|
|
58
|
+
"@storybook/addon-themes": "^9.1.10",
|
|
59
|
+
"@storybook/react-vite": "^9.1.10",
|
|
60
|
+
"@testing-library/dom": "^10.4.1",
|
|
61
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
62
|
+
"@testing-library/react": "^16.3.0",
|
|
74
63
|
"@testing-library/user-event": "^14.6.1",
|
|
75
64
|
"@types/draft-js": "^0.11.18",
|
|
76
65
|
"@types/react": "^18.3.18",
|
|
77
66
|
"@types/react-dom": "^18.3.5",
|
|
78
67
|
"@types/react-draft-wysiwyg": "^1.13.8",
|
|
79
68
|
"@types/react-google-recaptcha": "^2.1.9",
|
|
80
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^8.46.0",
|
|
81
70
|
"@typescript-eslint/parser": "^8.26.0",
|
|
82
|
-
"@vitejs/plugin-react-swc": "^
|
|
83
|
-
"
|
|
84
|
-
"cypress": "^
|
|
85
|
-
"dotenv-webpack": "^8.1.
|
|
86
|
-
"eslint": "^9.
|
|
87
|
-
"eslint-config-prettier": "^10.
|
|
88
|
-
"eslint-plugin-react": "^7.37.
|
|
89
|
-
"eslint-plugin-react-hooks": "^
|
|
90
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
91
|
-
"eslint-plugin-storybook": "^
|
|
92
|
-
"globals": "^16.
|
|
71
|
+
"@vitejs/plugin-react-swc": "^4.1.0",
|
|
72
|
+
"css-loader": "^7.1.2",
|
|
73
|
+
"cypress": "^15.3.0",
|
|
74
|
+
"dotenv-webpack": "^8.1.1",
|
|
75
|
+
"eslint": "^9.37.0",
|
|
76
|
+
"eslint-config-prettier": "^10.1.8",
|
|
77
|
+
"eslint-plugin-react": "^7.37.5",
|
|
78
|
+
"eslint-plugin-react-hooks": "^6.1.1",
|
|
79
|
+
"eslint-plugin-react-refresh": "^0.4.23",
|
|
80
|
+
"eslint-plugin-storybook": "^9.1.10",
|
|
81
|
+
"globals": "^16.4.0",
|
|
93
82
|
"identity-obj-proxy": "^3.0.0",
|
|
94
|
-
"jsdom": "^
|
|
95
|
-
"prettier": "3.
|
|
96
|
-
"react-
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"vite": "^
|
|
101
|
-
"
|
|
102
|
-
"vitest": "^3.1.3"
|
|
83
|
+
"jsdom": "^27.0.0",
|
|
84
|
+
"prettier": "3.6.2",
|
|
85
|
+
"react-refresh": "^0.18.0",
|
|
86
|
+
"storybook": "^9.1.10",
|
|
87
|
+
"style-loader": "^4.0.0",
|
|
88
|
+
"vite": "^7.1.9",
|
|
89
|
+
"vite-plugin-svgr": "^4.5.0",
|
|
90
|
+
"vitest": "^3.2.4"
|
|
103
91
|
},
|
|
104
92
|
"peerDependencies": {
|
|
105
93
|
"@emotion/react": "^11.x.x",
|