@codeandfunction/callaloo 3.15.2 → 3.16.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 +7 -3
- package/dist/assets/CLFormCharCounter.css +1 -0
- package/dist/assets/CLInputMessages.css +1 -0
- package/dist/chunks/CLA11yButton.vue_vue_type_style_index_0_lang-COGwQtRU.js +45 -0
- package/dist/chunks/CLButton.vue_vue_type_style_index_0_lang-CqgySW52.js +128 -0
- package/dist/chunks/CLCard.vue_vue_type_style_index_0_lang-DSvubJfG.js +252 -0
- package/dist/chunks/CLFormCharCounter.vue_vue_type_style_index_0_lang-CJ4VrvmR.js +38 -0
- package/dist/chunks/CLFormLabel.vue_vue_type_script_setup_true_lang-ORvye4vi.js +43 -0
- package/dist/chunks/CLHeading.vue_vue_type_style_index_0_lang-CbHdHW2E.js +50 -0
- package/dist/chunks/CLIcon.vue_vue_type_style_index_0_lang-zZ4zGuBt.js +83 -0
- package/dist/chunks/CLInputMessages.vue_vue_type_style_index_0_lang-xm2qDJGJ.js +121 -0
- package/dist/chunks/CLLink.vue_vue_type_style_index_0_lang-D7BqWIqs.js +60 -0
- package/dist/chunks/CLNavLink.vue_vue_type_script_setup_true_lang-Dp3SsIfq.js +44 -0
- package/dist/chunks/CLPill.vue_vue_type_style_index_0_lang-BXGTb6A6.js +88 -0
- package/dist/chunks/CLProgress.vue_vue_type_style_index_0_lang-5-cwF-oh.js +65 -0
- package/dist/chunks/CLSkeleton.vue_vue_type_style_index_0_lang-D7_swcoA.js +33 -0
- package/dist/chunks/CLSpinner.vue_vue_type_style_index_0_lang-CLccujHE.js +53 -0
- package/dist/chunks/CLText.vue_vue_type_style_index_0_lang-CTc6UiQV.js +46 -0
- package/dist/chunks/CLToast.vue_vue_type_style_index_0_lang-BIiSNSlg.js +178 -0
- package/dist/chunks/base-theme-B89pbWnC.js +841 -0
- package/dist/chunks/useEsc-BGAp0d_1.js +19 -0
- package/dist/chunks/useHasSlotContent-DDqs5uK9.js +14 -0
- package/dist/chunks/utils-CFL9veAf.js +30 -0
- package/dist/chunks/utils-D2P_fCSp.js +73 -0
- package/dist/chunks/utils-DYzsHCvl.js +15 -0
- package/dist/chunks/utils-DaKwZixu.js +26 -0
- package/dist/chunks/utils-Dg9e9uLW.js +29 -0
- package/dist/chunks/utils-Dz_31dEE.js +387 -0
- package/dist/components/Buttons/CLA11yButton/CLA11yButton.css +1 -0
- package/dist/components/Buttons/CLA11yButton/CLA11yButton.js +6 -0
- package/dist/components/Buttons/CLA11yButton/CLA11yButton.vue.d.ts +2 -2
- package/dist/components/Buttons/CLButton/CLButton.css +1 -0
- package/dist/components/Buttons/CLButton/CLButton.js +6 -0
- package/dist/components/Buttons/CLButton/CLButton.vue.d.ts +7 -7
- package/dist/components/CLIcon/CLIcon.css +1 -0
- package/dist/components/CLIcon/CLIcon.js +6 -0
- package/dist/components/{Assets/CLIcon → CLIcon}/CLIcon.vue.d.ts +1 -1
- package/dist/components/CLTable/CLTable.css +1 -0
- package/dist/components/CLTable/CLTable.js +197 -0
- package/dist/components/{Table → CLTable}/index.d.ts +0 -7
- package/dist/components/Containers/CLCard/CLCard.css +1 -0
- package/dist/components/Containers/CLCard/CLCard.js +6 -0
- package/dist/components/Containers/CLCard/CLCard.vue.d.ts +6 -6
- package/dist/components/Containers/CLCarousel/CLCarousel.css +1 -0
- package/dist/components/Containers/CLCarousel/CLCarousel.js +436 -0
- package/dist/components/Containers/CLCarousel/CLCarousel.vue.d.ts +2 -2
- package/dist/components/Containers/CLCarousel/CLCarouselNavigation.vue.d.ts +1 -1
- package/dist/components/Containers/CLDisclosure/CLDisclosure.css +1 -0
- package/dist/components/Containers/CLDisclosure/CLDisclosure.js +137 -0
- package/dist/components/Containers/CLDisclosure/CLDisclosure.vue.d.ts +3 -3
- package/dist/components/Form/CLCheckbox/CLCheckbox.css +1 -0
- package/dist/components/Form/CLCheckbox/CLCheckbox.js +147 -0
- package/dist/components/Form/CLCheckbox/CLCheckbox.vue.d.ts +4 -4
- package/dist/components/Form/CLFormCharCounter/CLFormCharCounter.vue.d.ts +24 -0
- package/dist/components/Form/CLFormLabel/CLFormLabel.vue.d.ts +22 -0
- package/dist/components/Form/CLInput/CLInput.css +1 -0
- package/dist/components/Form/CLInput/CLInput.js +378 -0
- package/dist/components/Form/CLInput/CLInput.vue.d.ts +8 -8
- package/dist/components/Form/CLInput/CLInputColorTools.vue.d.ts +29 -0
- package/dist/components/Form/CLInput/CLInputPill.vue.d.ts +14 -0
- package/dist/components/Form/CLInput/CLInputPrefix.vue.d.ts +20 -0
- package/dist/components/Form/CLInput/CLInputSuffix.vue.d.ts +20 -0
- package/dist/components/Form/CLInput/index.d.ts +18 -3
- package/dist/components/Form/CLRadioButton/CLRadioButton.css +1 -0
- package/dist/components/Form/CLRadioButton/CLRadioButton.js +132 -0
- package/dist/components/Form/CLRadioButton/CLRadioButton.vue.d.ts +1 -1
- package/dist/components/Form/CLSelect/CLSelect.css +1 -0
- package/dist/components/Form/CLSelect/CLSelect.js +137 -0
- package/dist/components/Form/CLSelect/CLSelect.vue.d.ts +9 -9
- package/dist/components/Form/CLTextArea/CLTextArea.css +1 -0
- package/dist/components/Form/CLTextArea/CLTextArea.js +149 -0
- package/dist/components/Form/CLTextArea/CLTextArea.vue.d.ts +2 -2
- package/dist/components/Form/index.d.ts +5 -6
- package/dist/components/Indicators/CLBadge/CLBadge.css +1 -0
- package/dist/components/Indicators/CLBadge/CLBadge.js +40 -0
- package/dist/components/Indicators/CLBadge/CLBadge.vue.d.ts +1 -1
- package/dist/components/Indicators/CLBanner/CLBanner.css +1 -0
- package/dist/components/Indicators/CLBanner/CLBanner.js +147 -0
- package/dist/components/Indicators/CLBanner/CLBanner.vue.d.ts +3 -3
- package/dist/components/Indicators/CLPill/CLPill.css +1 -0
- package/dist/components/Indicators/CLPill/CLPill.js +6 -0
- package/dist/components/Indicators/CLPill/CLPill.vue.d.ts +3 -3
- package/dist/components/Indicators/CLProgress/CLProgress.css +1 -0
- package/dist/components/Indicators/CLProgress/CLProgress.js +6 -0
- package/dist/components/Indicators/CLProgress/CLProgress.vue.d.ts +2 -2
- package/dist/components/Loading/CLSkeleton/CLSkeleton.css +1 -0
- package/dist/components/Loading/CLSkeleton/CLSkeleton.js +6 -0
- package/dist/components/Loading/CLSkeleton/CLSkeleton.vue.d.ts +1 -1
- package/dist/components/Loading/CLSpinner/CLSpinner.css +1 -0
- package/dist/components/Loading/CLSpinner/CLSpinner.js +6 -0
- package/dist/components/Loading/CLSpinner/CLSpinner.vue.d.ts +1 -1
- package/dist/components/Modals/CLModal/CLModal.css +1 -0
- package/dist/components/Modals/CLModal/CLModal.js +175 -0
- package/dist/components/Modals/CLModal/CLModal.vue.d.ts +2 -2
- package/dist/components/Navigation/CLLink/CLLink.css +1 -0
- package/dist/components/Navigation/CLLink/CLLink.js +6 -0
- package/dist/components/Navigation/CLLink/CLLink.vue.d.ts +2 -2
- package/dist/components/Navigation/CLNavLink/CLNavLink.js +5 -0
- package/dist/components/Navigation/CLNavLink/CLNavLink.vue.d.ts +1 -1
- package/dist/components/Navigation/CLNavSection/CLNavSection.css +1 -0
- package/dist/components/Navigation/CLNavSection/CLNavSection.js +55 -0
- package/dist/components/Navigation/CLNavSection/CLNavSection.vue.d.ts +1 -1
- package/dist/components/Popups/CLDropdownMenu/CLDropdownMenu.css +1 -0
- package/dist/components/Popups/CLDropdownMenu/CLDropdownMenu.js +1233 -0
- package/dist/components/Popups/CLDropdownMenu/CLDropdownMenu.vue.d.ts +29 -29
- package/dist/components/Popups/CLToast/CLToast.css +1 -0
- package/dist/components/Popups/CLToast/CLToast.js +6 -0
- package/dist/components/Popups/CLToast/CLToast.vue.d.ts +2 -2
- package/dist/components/Providers/CLThemeProvider/CLThemeProvider.js +42 -0
- package/dist/components/Providers/CLThemeProvider/CLThemeProvider.vue.d.ts +27 -0
- package/dist/components/Providers/CLThemeProvider/index.d.ts +4 -0
- package/dist/components/Providers/CLToastProvider/CLToastProvider.js +45 -0
- package/dist/components/Providers/{Toast → CLToastProvider}/CLToastProvider.vue.d.ts +1 -7
- package/dist/components/Providers/CLToastProvider/index.d.ts +4 -0
- package/dist/components/Providers/index.d.ts +2 -6
- package/dist/components/Typography/CLHeading/CLHeading.css +1 -0
- package/dist/components/Typography/CLHeading/CLHeading.js +6 -0
- package/dist/components/Typography/CLText/CLText.css +1 -0
- package/dist/components/Typography/CLText/CLText.js +6 -0
- package/dist/index.d.ts +1 -16
- package/dist/index.js +27 -5769
- package/dist/types.d.ts +4 -0
- package/dist/utils/helper.d.ts +1 -0
- package/package.json +133 -10
- package/dist/assets/styles.css +0 -1
- package/dist/components/Assets/index.d.ts +0 -2
- package/dist/components/Providers/Theme/CLThemeProvider.vue.d.ts +0 -26
- package/dist/constants.d.ts +0 -22
- package/dist/stats.json +0 -41
- package/dist/chunks/{icons.QRYZHNAf.js → icons-QRYZHNAf.js} +0 -0
- package/dist/components/{Assets/CLIcon → CLIcon}/index.d.ts +0 -0
- package/dist/components/{Assets → CLIcon}/utils.d.ts +0 -0
- package/dist/components/{Table → CLTable}/CLTable.vue.d.ts +1 -1
- /package/dist/components/{Table → CLTable}/CLTableBody.vue.d.ts +0 -0
- /package/dist/components/{Table → CLTable}/CLTableCell.vue.d.ts +0 -0
- /package/dist/components/{Table → CLTable}/CLTableFooter.vue.d.ts +0 -0
- /package/dist/components/{Table → CLTable}/CLTableHeader.vue.d.ts +0 -0
- /package/dist/components/{Table → CLTable}/CLTableNestedCell.vue.d.ts +0 -0
- /package/dist/components/{Table → CLTable}/CLTableRow.vue.d.ts +0 -0
- /package/dist/components/{Table → CLTable}/utils.d.ts +0 -0
- /package/dist/components/Providers/{Theme → CLThemeProvider}/base-theme.d.ts +0 -0
- /package/dist/components/Providers/{Theme → CLThemeProvider}/utils.d.ts +0 -0
package/dist/types.d.ts
CHANGED
|
@@ -44,6 +44,10 @@ export declare enum CLColorVariants {
|
|
|
44
44
|
Solid = "solid",
|
|
45
45
|
Text = "text"
|
|
46
46
|
}
|
|
47
|
+
export declare enum CLCharCounterLayout {
|
|
48
|
+
Block = "block",
|
|
49
|
+
Inline = "inline"
|
|
50
|
+
}
|
|
47
51
|
export type CLButtonForwardRefFunction = (elem: HTMLButtonElement) => void;
|
|
48
52
|
export type CLGenericFunction = (event?: Event) => void;
|
|
49
53
|
export type CLGenericFocusFunction = (event: FocusEvent) => void;
|
package/dist/utils/helper.d.ts
CHANGED
|
@@ -15,5 +15,6 @@ export declare const debounce: (fn: () => void, ms?: number) => (this: any, ...a
|
|
|
15
15
|
export declare const getMaxZIndex: () => number;
|
|
16
16
|
export declare const isBrowser: boolean;
|
|
17
17
|
export declare const isDarkMode: () => boolean;
|
|
18
|
+
export declare const isString: (str: unknown) => str is string;
|
|
18
19
|
export declare const isNodeEmpty: (elem: HTMLElement | null) => boolean;
|
|
19
20
|
export {};
|
package/package.json
CHANGED
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
"ui components",
|
|
18
18
|
"vuejs"
|
|
19
19
|
],
|
|
20
|
-
"version": "3.
|
|
20
|
+
"version": "3.16.0",
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"type": "module",
|
|
23
23
|
"scripts": {
|
|
24
|
-
"build": "pnpm export:icons && vite build",
|
|
24
|
+
"build": "pnpm export:icons && vite build && pnpm generate:exports",
|
|
25
25
|
"build:storybook": "pnpm export:icons && pnpm storybook build",
|
|
26
|
-
"
|
|
26
|
+
"generate:exports": "npx tsx scripts/generate-exports.ts",
|
|
27
27
|
"coverage": "vitest run --coverage",
|
|
28
28
|
"export:icons": "npx tsx scripts/export-icons.ts",
|
|
29
29
|
"export:meta": "npx tsx scripts/export-meta.ts",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"lint:prettier": "prettier --check 'src/**/*.{ts,vue}'",
|
|
34
34
|
"package": "npm pack",
|
|
35
35
|
"publish": "pnpm semantic-release",
|
|
36
|
+
"size": "size-limit",
|
|
36
37
|
"start": "pnpm export:icons && storybook dev -p 4400 --no-open",
|
|
37
38
|
"test": "vitest --run --passWithNoTests",
|
|
38
39
|
"test:watch": "vitest",
|
|
@@ -43,17 +44,129 @@
|
|
|
43
44
|
"dist",
|
|
44
45
|
"!dist/stats.html"
|
|
45
46
|
],
|
|
46
|
-
"main": "./dist/index.umd.cjs",
|
|
47
47
|
"module": "./dist/index.js",
|
|
48
48
|
"types": "./dist/index.d.ts",
|
|
49
49
|
"typings": "./dist/index.d.ts",
|
|
50
50
|
"exports": {
|
|
51
51
|
".": {
|
|
52
52
|
"types": "./dist/index.d.ts",
|
|
53
|
-
"import": "./dist/index.js"
|
|
54
|
-
"require": "./dist/index.umd.cjs"
|
|
53
|
+
"import": "./dist/index.js"
|
|
55
54
|
},
|
|
56
|
-
"./
|
|
55
|
+
"./CLIcon": {
|
|
56
|
+
"types": "./dist/components/CLIcon/CLIcon.vue.d.ts",
|
|
57
|
+
"import": "./dist/components/CLIcon/CLIcon.js"
|
|
58
|
+
},
|
|
59
|
+
"./CLTable": {
|
|
60
|
+
"types": "./dist/components/CLTable/CLTable.vue.d.ts",
|
|
61
|
+
"import": "./dist/components/CLTable/CLTable.js"
|
|
62
|
+
},
|
|
63
|
+
"./CLA11yButton": {
|
|
64
|
+
"types": "./dist/components/Buttons/CLA11yButton/CLA11yButton.vue.d.ts",
|
|
65
|
+
"import": "./dist/components/Buttons/CLA11yButton/CLA11yButton.js"
|
|
66
|
+
},
|
|
67
|
+
"./CLButton": {
|
|
68
|
+
"types": "./dist/components/Buttons/CLButton/CLButton.vue.d.ts",
|
|
69
|
+
"import": "./dist/components/Buttons/CLButton/CLButton.js"
|
|
70
|
+
},
|
|
71
|
+
"./CLCard": {
|
|
72
|
+
"types": "./dist/components/Containers/CLCard/CLCard.vue.d.ts",
|
|
73
|
+
"import": "./dist/components/Containers/CLCard/CLCard.js"
|
|
74
|
+
},
|
|
75
|
+
"./CLCarousel": {
|
|
76
|
+
"types": "./dist/components/Containers/CLCarousel/CLCarousel.vue.d.ts",
|
|
77
|
+
"import": "./dist/components/Containers/CLCarousel/CLCarousel.js"
|
|
78
|
+
},
|
|
79
|
+
"./CLDisclosure": {
|
|
80
|
+
"types": "./dist/components/Containers/CLDisclosure/CLDisclosure.vue.d.ts",
|
|
81
|
+
"import": "./dist/components/Containers/CLDisclosure/CLDisclosure.js"
|
|
82
|
+
},
|
|
83
|
+
"./CLCheckbox": {
|
|
84
|
+
"types": "./dist/components/Form/CLCheckbox/CLCheckbox.vue.d.ts",
|
|
85
|
+
"import": "./dist/components/Form/CLCheckbox/CLCheckbox.js"
|
|
86
|
+
},
|
|
87
|
+
"./CLInput": {
|
|
88
|
+
"types": "./dist/components/Form/CLInput/CLInput.vue.d.ts",
|
|
89
|
+
"import": "./dist/components/Form/CLInput/CLInput.js"
|
|
90
|
+
},
|
|
91
|
+
"./CLRadioButton": {
|
|
92
|
+
"types": "./dist/components/Form/CLRadioButton/CLRadioButton.vue.d.ts",
|
|
93
|
+
"import": "./dist/components/Form/CLRadioButton/CLRadioButton.js"
|
|
94
|
+
},
|
|
95
|
+
"./CLSelect": {
|
|
96
|
+
"types": "./dist/components/Form/CLSelect/CLSelect.vue.d.ts",
|
|
97
|
+
"import": "./dist/components/Form/CLSelect/CLSelect.js"
|
|
98
|
+
},
|
|
99
|
+
"./CLTextArea": {
|
|
100
|
+
"types": "./dist/components/Form/CLTextArea/CLTextArea.vue.d.ts",
|
|
101
|
+
"import": "./dist/components/Form/CLTextArea/CLTextArea.js"
|
|
102
|
+
},
|
|
103
|
+
"./CLBadge": {
|
|
104
|
+
"types": "./dist/components/Indicators/CLBadge/CLBadge.vue.d.ts",
|
|
105
|
+
"import": "./dist/components/Indicators/CLBadge/CLBadge.js"
|
|
106
|
+
},
|
|
107
|
+
"./CLBanner": {
|
|
108
|
+
"types": "./dist/components/Indicators/CLBanner/CLBanner.vue.d.ts",
|
|
109
|
+
"import": "./dist/components/Indicators/CLBanner/CLBanner.js"
|
|
110
|
+
},
|
|
111
|
+
"./CLPill": {
|
|
112
|
+
"types": "./dist/components/Indicators/CLPill/CLPill.vue.d.ts",
|
|
113
|
+
"import": "./dist/components/Indicators/CLPill/CLPill.js"
|
|
114
|
+
},
|
|
115
|
+
"./CLProgress": {
|
|
116
|
+
"types": "./dist/components/Indicators/CLProgress/CLProgress.vue.d.ts",
|
|
117
|
+
"import": "./dist/components/Indicators/CLProgress/CLProgress.js"
|
|
118
|
+
},
|
|
119
|
+
"./CLSkeleton": {
|
|
120
|
+
"types": "./dist/components/Loading/CLSkeleton/CLSkeleton.vue.d.ts",
|
|
121
|
+
"import": "./dist/components/Loading/CLSkeleton/CLSkeleton.js"
|
|
122
|
+
},
|
|
123
|
+
"./CLSpinner": {
|
|
124
|
+
"types": "./dist/components/Loading/CLSpinner/CLSpinner.vue.d.ts",
|
|
125
|
+
"import": "./dist/components/Loading/CLSpinner/CLSpinner.js"
|
|
126
|
+
},
|
|
127
|
+
"./CLModal": {
|
|
128
|
+
"types": "./dist/components/Modals/CLModal/CLModal.vue.d.ts",
|
|
129
|
+
"import": "./dist/components/Modals/CLModal/CLModal.js"
|
|
130
|
+
},
|
|
131
|
+
"./CLLink": {
|
|
132
|
+
"types": "./dist/components/Navigation/CLLink/CLLink.vue.d.ts",
|
|
133
|
+
"import": "./dist/components/Navigation/CLLink/CLLink.js"
|
|
134
|
+
},
|
|
135
|
+
"./CLNavLink": {
|
|
136
|
+
"types": "./dist/components/Navigation/CLNavLink/CLNavLink.vue.d.ts",
|
|
137
|
+
"import": "./dist/components/Navigation/CLNavLink/CLNavLink.js"
|
|
138
|
+
},
|
|
139
|
+
"./CLNavSection": {
|
|
140
|
+
"types": "./dist/components/Navigation/CLNavSection/CLNavSection.vue.d.ts",
|
|
141
|
+
"import": "./dist/components/Navigation/CLNavSection/CLNavSection.js"
|
|
142
|
+
},
|
|
143
|
+
"./CLDropdownMenu": {
|
|
144
|
+
"types": "./dist/components/Popups/CLDropdownMenu/CLDropdownMenu.vue.d.ts",
|
|
145
|
+
"import": "./dist/components/Popups/CLDropdownMenu/CLDropdownMenu.js"
|
|
146
|
+
},
|
|
147
|
+
"./CLToast": {
|
|
148
|
+
"types": "./dist/components/Popups/CLToast/CLToast.vue.d.ts",
|
|
149
|
+
"import": "./dist/components/Popups/CLToast/CLToast.js"
|
|
150
|
+
},
|
|
151
|
+
"./CLThemeProvider": {
|
|
152
|
+
"types": "./dist/components/Providers/CLThemeProvider/CLThemeProvider.vue.d.ts",
|
|
153
|
+
"import": "./dist/components/Providers/CLThemeProvider/CLThemeProvider.js"
|
|
154
|
+
},
|
|
155
|
+
"./CLToastProvider": {
|
|
156
|
+
"types": "./dist/components/Providers/CLToastProvider/CLToastProvider.vue.d.ts",
|
|
157
|
+
"import": "./dist/components/Providers/CLToastProvider/CLToastProvider.js"
|
|
158
|
+
},
|
|
159
|
+
"./CLHeading": {
|
|
160
|
+
"types": "./dist/components/Typography/CLHeading/CLHeading.vue.d.ts",
|
|
161
|
+
"import": "./dist/components/Typography/CLHeading/CLHeading.js"
|
|
162
|
+
},
|
|
163
|
+
"./CLText": {
|
|
164
|
+
"types": "./dist/components/Typography/CLText/CLText.vue.d.ts",
|
|
165
|
+
"import": "./dist/components/Typography/CLText/CLText.js"
|
|
166
|
+
},
|
|
167
|
+
"./composables/useToast": {
|
|
168
|
+
"types": "./dist/composables/useToast.d.ts"
|
|
169
|
+
}
|
|
57
170
|
},
|
|
58
171
|
"devDependencies": {
|
|
59
172
|
"@chromatic-com/storybook": "^4.1.1",
|
|
@@ -64,6 +177,9 @@
|
|
|
64
177
|
"@semantic-release/changelog": "^6.0.3",
|
|
65
178
|
"@semantic-release/git": "^10.0.1",
|
|
66
179
|
"@semantic-release/gitlab": "^13.2.6",
|
|
180
|
+
"@size-limit/esbuild": "^11.2.0",
|
|
181
|
+
"@size-limit/esbuild-why": "^11.2.0",
|
|
182
|
+
"@size-limit/preset-small-lib": "^11.0.0",
|
|
67
183
|
"@storybook/addon-a11y": "^9.1.9",
|
|
68
184
|
"@storybook/addon-docs": "^9.1.9",
|
|
69
185
|
"@storybook/cli": "^9.1.9",
|
|
@@ -93,13 +209,13 @@
|
|
|
93
209
|
"rollup-plugin-visualizer": "^6.0.4",
|
|
94
210
|
"sass": "^1.89.2",
|
|
95
211
|
"semantic-release": "^24.2.7",
|
|
212
|
+
"size-limit": "^11.0.0",
|
|
96
213
|
"storybook": "^9.1.9",
|
|
97
214
|
"storybook-addon-deep-controls": "^0.9.5",
|
|
98
215
|
"stylis": "^4.3.6",
|
|
99
216
|
"tsx": "^4.20.6",
|
|
100
217
|
"unplugin-auto-import": "^19.3.0",
|
|
101
218
|
"vite": "^6.3.6",
|
|
102
|
-
"vite-bundle-analyzer": "^1.2.3",
|
|
103
219
|
"vite-plugin-dts": "^4.5.4",
|
|
104
220
|
"vite-tsconfig-paths": "^5.1.4",
|
|
105
221
|
"vitest": "3.2.4",
|
|
@@ -114,7 +230,14 @@
|
|
|
114
230
|
},
|
|
115
231
|
"packageManager": "pnpm@10.1.0+sha256.3ee53e914011ec7f1a6e3ab0c58b9a024a052bfe18295b23b68567d6a6a5ebcd",
|
|
116
232
|
"sideEffects": [
|
|
117
|
-
"
|
|
118
|
-
"
|
|
233
|
+
"**/*.css",
|
|
234
|
+
"dist/**/*.js"
|
|
235
|
+
],
|
|
236
|
+
"size-limit": [
|
|
237
|
+
{
|
|
238
|
+
"name": "Full library (exported)",
|
|
239
|
+
"path": "dist/index.js",
|
|
240
|
+
"limit": "210 KB"
|
|
241
|
+
}
|
|
119
242
|
]
|
|
120
243
|
}
|