@shtabapp/ui-kit 1.35.0 → 1.37.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/CHANGELOG.md +16 -0
- package/dist/SPhotoEdit-VW9-n1yU.cjs +1 -0
- package/dist/SPhotoEdit-bXKHcP3x.js +123 -0
- package/dist/components/SBanner/SBanner.types.d.ts +55 -0
- package/dist/components/SBanner/SBanner.types.d.ts.map +1 -0
- package/dist/components/SBanner/SBanner.vue.d.ts +27 -0
- package/dist/components/SBanner/SBanner.vue.d.ts.map +1 -0
- package/dist/components/SBanner/index.d.ts +3 -0
- package/dist/components/SBanner/index.d.ts.map +1 -0
- package/dist/components/SNotification/SNotification.types.d.ts +120 -0
- package/dist/components/SNotification/SNotification.types.d.ts.map +1 -0
- package/dist/components/SNotification/SNotification.vue.d.ts +27 -0
- package/dist/components/SNotification/SNotification.vue.d.ts.map +1 -0
- package/dist/components/SNotification/index.d.ts +3 -0
- package/dist/components/SNotification/index.d.ts.map +1 -0
- package/dist/components/SNotification/resolveNotificationIcon.d.ts +4 -0
- package/dist/components/SNotification/resolveNotificationIcon.d.ts.map +1 -0
- package/dist/components/SPhotoEdit/SPhotoEdit.types.d.ts +27 -0
- package/dist/components/SPhotoEdit/SPhotoEdit.types.d.ts.map +1 -0
- package/dist/components/SPhotoEdit/SPhotoEdit.vue.d.ts +18 -0
- package/dist/components/SPhotoEdit/SPhotoEdit.vue.d.ts.map +1 -0
- package/dist/components/SPhotoEdit/index.d.ts +4 -0
- package/dist/components/SPhotoEdit/index.d.ts.map +1 -0
- package/dist/components/SToast/SToast.types.d.ts +58 -0
- package/dist/components/SToast/SToast.types.d.ts.map +1 -0
- package/dist/components/SToast/SToast.vue.d.ts +27 -0
- package/dist/components/SToast/SToast.vue.d.ts.map +1 -0
- package/dist/components/SToast/index.d.ts +3 -0
- package/dist/components/SToast/index.d.ts.map +1 -0
- package/dist/components/SToastProvider/SToastProvider.vue.d.ts +17 -0
- package/dist/components/SToastProvider/SToastProvider.vue.d.ts.map +1 -0
- package/dist/components/SToastProvider/SToastProviderToast.vue.d.ts +27 -0
- package/dist/components/SToastProvider/SToastProviderToast.vue.d.ts.map +1 -0
- package/dist/components/SToastProvider/index.d.ts +5 -0
- package/dist/components/SToastProvider/index.d.ts.map +1 -0
- package/dist/components/SToastProvider/useToast.d.ts +16 -0
- package/dist/components/SToastProvider/useToast.d.ts.map +1 -0
- package/dist/components/SToastProvider/utils/computeAutoDuration.d.ts +5 -0
- package/dist/components/SToastProvider/utils/computeAutoDuration.d.ts.map +1 -0
- package/dist/components/SToastProvider/utils/toastProviderConstants.d.ts +6 -0
- package/dist/components/SToastProvider/utils/toastProviderConstants.d.ts.map +1 -0
- package/dist/entries/photo-edit.cjs +1 -0
- package/dist/entries/photo-edit.d.ts +4 -0
- package/dist/entries/photo-edit.d.ts.map +1 -0
- package/dist/entries/photo-edit.js +2 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +626 -35
- package/dist/uikit-components.css +1 -1
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shtabapp/ui-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.37.0",
|
|
4
4
|
"description": "Vue 3 component library by Shtab — 30+ typed components, design tokens, light/dark themes",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shtab",
|
|
@@ -168,6 +168,11 @@
|
|
|
168
168
|
"import": "./dist/entries/list-item.js",
|
|
169
169
|
"require": "./dist/entries/list-item.cjs"
|
|
170
170
|
},
|
|
171
|
+
"./photo-edit": {
|
|
172
|
+
"types": "./dist/entries/photo-edit.d.ts",
|
|
173
|
+
"import": "./dist/entries/photo-edit.js",
|
|
174
|
+
"require": "./dist/entries/photo-edit.cjs"
|
|
175
|
+
},
|
|
171
176
|
"./chart-line": {
|
|
172
177
|
"types": "./dist/entries/chart-line.d.ts",
|
|
173
178
|
"import": "./dist/entries/chart-line.js",
|
|
@@ -244,8 +249,8 @@
|
|
|
244
249
|
"dependencies": {
|
|
245
250
|
"chart.js": "^4.5.0",
|
|
246
251
|
"vue-i18n": "^9.14.5",
|
|
247
|
-
"@shtabapp/ui-kit-
|
|
248
|
-
"@shtabapp/ui-kit-
|
|
252
|
+
"@shtabapp/ui-kit-tokens": "^1.16.0",
|
|
253
|
+
"@shtabapp/ui-kit-primitives": "^1.19.0"
|
|
249
254
|
},
|
|
250
255
|
"devDependencies": {
|
|
251
256
|
"@storybook/vue3-vite": "^10.4.1",
|