@autoafleveren/ui 0.9.20 → 0.9.23
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/icons.cjs +40 -40
- package/dist/icons.js +3517 -3486
- package/dist/style.css +1 -1
- package/dist/types/components/AppInput/AppInput.vue.d.ts +2 -1
- package/dist/types/components/AppInput/Input.vue.d.ts +12 -3
- package/dist/types/components/AppInput/index.d.ts +4 -3
- package/dist/types/components/AppLicensePlate/AppLicensePlate.vue.d.ts +12 -3
- package/dist/types/index.d.ts +6 -3
- package/dist/types/plugins/Toast/Toast.vue.d.ts +31 -0
- package/dist/types/plugins/Toast/index.d.ts +4 -0
- package/dist/types/plugins/Toast/types.d.ts +265 -0
- package/dist/types/plugins/index.d.ts +9 -0
- package/dist/ui-library.css +1 -2
- package/dist/ui.cjs +19 -15
- package/dist/ui.css +1 -1
- package/dist/ui.js +10028 -6944
- package/package.json +9 -5
- package/plugins.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autoafleveren/ui",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/*",
|
|
7
7
|
"index.d.ts",
|
|
8
8
|
"icons.d.ts",
|
|
9
9
|
"composables.d.ts",
|
|
10
|
+
"plugins.d.ts",
|
|
10
11
|
"components.d.ts",
|
|
11
12
|
"layouts.d.ts",
|
|
12
13
|
"tailwind.config.js"
|
|
@@ -24,6 +25,7 @@
|
|
|
24
25
|
"types": "./dist/types/icons/index.d.ts"
|
|
25
26
|
},
|
|
26
27
|
"./dist/ui.css": "./dist/ui.css",
|
|
28
|
+
"./dist/ui-library.css": "./dist/ui-library.css",
|
|
27
29
|
"./tailwind.config.js": "./tailwind.config.js",
|
|
28
30
|
"./dist/config/eslint.cjs": "./dist/config/eslint.cjs",
|
|
29
31
|
"./dist/config/tailwind/config.cjs": "./dist/config/tailwind/config.cjs"
|
|
@@ -37,15 +39,16 @@
|
|
|
37
39
|
"build:ui": "LIB_NAME=ui NODE_ENV=production vite build && mv dist/style.css dist/ui.css",
|
|
38
40
|
"build:icons": "LIB_NAME=icons NODE_ENV=production vite build",
|
|
39
41
|
"build:config": "cp -R ./src/config dist/config",
|
|
40
|
-
"build:typescript": "vue-tsc -p tsconfig.build.json && mv dist/src dist/types",
|
|
41
|
-
"build:css": "NODE_ENV=production tailwindcss -i src/css/
|
|
42
|
-
"build:storybook": "
|
|
42
|
+
"build:typescript": "vue-tsc -p tsconfig.build.json && mv dist/src dist/types && cp ./src/modules/plugins/Toast/types.d.ts ./dist/types/plugins/Toast/types.d.ts",
|
|
43
|
+
"build:css": "NODE_ENV=production tailwindcss -i src/css/build.css -o dist/ui-library.css -m",
|
|
44
|
+
"build:storybook-css": "NODE_ENV=production tailwindcss -i src/css/main.css -o dist/ui-storybook.css -m",
|
|
45
|
+
"build:storybook": "rm -rf ./dist && yarn build:css && yarn build:storybook-css && storybook build && cp -r storybook-static/. dist/. && rm -rf storybook-static",
|
|
43
46
|
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
|
44
47
|
"lint": "yarn install && eslint src/modules src/stories --ext .js,.ts,.vue",
|
|
45
48
|
"test": "vitest --dir ./src --run",
|
|
46
49
|
"test-watch": "vitest --dir ./src --watch",
|
|
47
50
|
"coverage": "vitest run --coverage",
|
|
48
|
-
"storybook": "yarn build:css && storybook dev -p 80",
|
|
51
|
+
"storybook": "yarn build:storybook-css && storybook dev -p 80",
|
|
49
52
|
"prepublishOnly": "yarn build"
|
|
50
53
|
},
|
|
51
54
|
"license": "ISC",
|
|
@@ -70,6 +73,7 @@
|
|
|
70
73
|
"vue": "^3.3.4",
|
|
71
74
|
"vue-docgen-api": "^4.74.0",
|
|
72
75
|
"vue-tippy": "v6",
|
|
76
|
+
"vue-toastification": "^2.0.0-rc.5",
|
|
73
77
|
"vue3-easy-data-table": "^1.5.47"
|
|
74
78
|
},
|
|
75
79
|
"devDependencies": {
|
package/plugins.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dist/types/plugins';
|