@amirjalili1374/ui-kit 1.4.12 → 1.4.14
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/components/shared/CustomDataTable.vue.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/componentTypes/DataTableTypes.d.ts +21 -4
- package/dist/types/componentTypes/DataTableTypes.d.ts.map +1 -1
- package/dist/ui-kit.cjs.js +1 -1
- package/dist/ui-kit.cjs.js.map +1 -1
- package/dist/ui-kit.es.js +452 -189
- package/dist/ui-kit.es.js.map +1 -1
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amirjalili1374/ui-kit",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.14",
|
|
4
4
|
"description": "A reusable UI component library built with Vue 3, Vuetify, and TypeScript",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/ui-kit.cjs.js",
|
|
@@ -60,7 +60,11 @@
|
|
|
60
60
|
"format:check": "prettier --check \"src/**/*.{js,ts,vue,scss,css,json}\"",
|
|
61
61
|
"test": "echo \"No tests specified\" && exit 0",
|
|
62
62
|
"clean": "rimraf dist node_modules/.vite",
|
|
63
|
-
"serve": "vue-cli-service serve"
|
|
63
|
+
"serve": "vue-cli-service serve",
|
|
64
|
+
"release:patch": "npm version patch && npm publish --access public",
|
|
65
|
+
"release:minor": "npm version minor && npm publish --access public",
|
|
66
|
+
"release:major": "npm version major && npm publish --access public",
|
|
67
|
+
"publish:current": "npm publish --access public"
|
|
64
68
|
},
|
|
65
69
|
"dependencies": {
|
|
66
70
|
"@amirjalili1374/ui-kit": "^1.2.1",
|