@quidgest/ui 0.17.5 → 0.17.6
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/json/api.json +1 -1
- package/dist/ui.css +1 -1
- package/dist/ui.esm.js +72 -73
- package/dist/ui.js +72 -73
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +72 -73
- package/dist/ui.scss +2 -2
- package/esm/components/QDateTimePicker/QDateTimePicker.d.ts.map +1 -1
- package/esm/components/QDateTimePicker/QDateTimePicker.vue.js +347 -349
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quidgest/ui",
|
|
3
3
|
"description": "Quidgest's UI framework",
|
|
4
|
-
"version": "0.17.
|
|
4
|
+
"version": "0.17.6",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": "Quidgest",
|
|
@@ -69,13 +69,15 @@
|
|
|
69
69
|
"uuid": "^13.0.0"
|
|
70
70
|
},
|
|
71
71
|
"scripts": {
|
|
72
|
-
"clean": "rimraf dist esm coverage
|
|
73
|
-
"
|
|
72
|
+
"clean:build": "rimraf dist esm coverage",
|
|
73
|
+
"clean:storybook": "rimraf storybook-static",
|
|
74
|
+
"clean": "pnpm clean:build && pnpm clean:storybook",
|
|
75
|
+
"build": "pnpm clean:build && pnpm build:dist && pnpm build:esm && pnpm build:css",
|
|
74
76
|
"build:dist": "vite build",
|
|
75
77
|
"build:esm": "node build/esm.js",
|
|
76
78
|
"build:css": "node build/css.js",
|
|
77
79
|
"type-check": "vue-tsc --noEmit --composite false",
|
|
78
80
|
"storybook": "storybook dev -p 6006",
|
|
79
|
-
"build:storybook": "storybook build"
|
|
81
|
+
"build:storybook": "pnpm clean:storybook && storybook build"
|
|
80
82
|
}
|
|
81
83
|
}
|