@validol4ik/uikit 0.3.15 → 0.3.17
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/boot/boot.cjs +1 -0
- package/dist/boot/boot.d.ts +1 -0
- package/dist/boot/boot.es.js +7 -0
- package/dist/components/buttons/AppButton/index.vue.d.ts +4 -11
- package/dist/components/components.d.ts +5 -0
- package/dist/index-CB1B_4xi.cjs +1 -0
- package/dist/index-Dnd8fH4m.js +4453 -0
- package/dist/plugin/plugin.cjs +1 -0
- package/dist/plugin/plugin.d.ts +1 -0
- package/dist/plugin/plugin.es.js +9 -0
- package/dist/style.css +1 -1
- package/dist/uikit.cjs +1 -1
- package/dist/uikit.d.ts +0 -1
- package/dist/uikit.es.js +5 -4449
- package/package.json +12 -1
- package/dist/index.d.ts +0 -7
- package/dist/plugin.d.ts +0 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@validol4ik/uikit",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.17",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/uikit.cjs",
|
|
6
6
|
"module": "./dist/uikit.es.js",
|
|
@@ -21,6 +21,16 @@
|
|
|
21
21
|
"import": "./dist/uikit.es.js",
|
|
22
22
|
"require": "./dist/uikit.cjs"
|
|
23
23
|
},
|
|
24
|
+
"./plugin": {
|
|
25
|
+
"types": "./dist/plugin/plugin.d.ts",
|
|
26
|
+
"import": "./dist/plugin/plugin.es.js",
|
|
27
|
+
"require": "./dist/plugin/plugin.cjs"
|
|
28
|
+
},
|
|
29
|
+
"./boot": {
|
|
30
|
+
"types": "./dist/boot/boot.d.ts",
|
|
31
|
+
"import": "./dist/boot/boot.es.js",
|
|
32
|
+
"require": "./dist/boot/boot.cjs"
|
|
33
|
+
},
|
|
24
34
|
"./styles": "./dist/style.css",
|
|
25
35
|
"./font": "./dist/kl.woff"
|
|
26
36
|
},
|
|
@@ -31,6 +41,7 @@
|
|
|
31
41
|
},
|
|
32
42
|
"devDependencies": {
|
|
33
43
|
"@chromatic-com/storybook": "^3.2.2",
|
|
44
|
+
"@quasar/app-vite": "1.10.2",
|
|
34
45
|
"@quasar/quasar-app-extension-testing-unit-vitest": "^1.1.0",
|
|
35
46
|
"@quasar/vite-plugin": "^1.7.0",
|
|
36
47
|
"@storybook/addon-essentials": "^8.4.4",
|
package/dist/index.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { default as AppButton } from './components/buttons/AppButton/index.vue';
|
|
2
|
-
import { AppButtonProps } from './components/buttons/AppButton/types';
|
|
3
|
-
import { default as AppIcon } from './components/AppIcon/index.vue';
|
|
4
|
-
import { default as AppSelect } from './components/form/AppSelect/index.vue';
|
|
5
|
-
import { default as AppButtonCopy } from './components/buttons/CopyButton/index.vue';
|
|
6
|
-
import { default as uiKitPlugin } from './plugin';
|
|
7
|
-
export { uiKitPlugin, AppButton, AppButtonProps, AppIcon, AppButtonCopy, AppSelect, };
|