@davra/ui-core 1.0.0-alpha.4 → 1.0.1
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/README.md +9 -162
- package/dist/types/components/utils/index.d.ts +1 -2
- package/dist/ui-core.es.js +423 -470
- package/package.json +14 -11
- package/dist/types/components/utils/ColorInput.vue.d.ts +0 -14
- package/dist/types/components/utils/IconInput.vue.d.ts +0 -14
- package/dist/types/components/utils/colorInput.test.d.ts +0 -1
package/package.json
CHANGED
@@ -1,40 +1,44 @@
|
|
1
1
|
{
|
2
2
|
"name": "@davra/ui-core",
|
3
3
|
"types": "./dist/types/index.d.ts",
|
4
|
-
"version": "1.0.
|
4
|
+
"version": "1.0.1",
|
5
5
|
"scripts": {
|
6
6
|
"build": "rimraf dist && vue-tsc && vite build",
|
7
7
|
"build:watch": "rimraf dist && vue-tsc && vite build --watch",
|
8
8
|
"docs:dev": "vitepress dev docs",
|
9
9
|
"docs:build": "vitepress build docs",
|
10
|
-
"docs:serve": "vitepress serve docs"
|
10
|
+
"docs:serve": "vitepress serve docs",
|
11
|
+
"test": "LC_ALL=en_US.UTF-8 TZ=UTC vitest",
|
12
|
+
"test:ci": "LC_ALL=en_US.UTF-8 TZ=UTC vitest run",
|
13
|
+
"coverage": "LC_ALL=en_US.UTF-8 TZ=UTC vitest run --coverage"
|
11
14
|
},
|
12
15
|
"peerDependencies": {
|
16
|
+
"@vueuse/core": "^9.1.0",
|
17
|
+
"@vueuse/head": "^0.7.9",
|
13
18
|
"axios": "^1.6.0",
|
14
|
-
"pinia": "2.1.4",
|
19
|
+
"pinia": "^2.1.4",
|
15
20
|
"primeflex": "^3.3.1",
|
16
21
|
"primeicons": "^6.0.1",
|
17
22
|
"primevue": "^3.29.2",
|
18
23
|
"vue": "^3.3.4",
|
19
|
-
"
|
20
|
-
"@vueuse/head": "^0.7.9",
|
21
|
-
"vuetify": "3.3.16"
|
24
|
+
"vuetify": "^3.3.16"
|
22
25
|
},
|
23
26
|
"devDependencies": {
|
24
27
|
"@pinia/testing": "^0.0.14",
|
25
28
|
"@types/node": "^20.3.3",
|
26
29
|
"@vitejs/plugin-vue": "^4.2.3",
|
27
30
|
"@vue/test-utils": "^2.4.1",
|
31
|
+
"jsdom": "^22.1.0",
|
28
32
|
"rimraf": "^5.0.1",
|
29
33
|
"sass": "^1.63.6",
|
30
34
|
"typescript": "^5.1.6",
|
35
|
+
"unplugin-auto-import": "^0.16.7",
|
36
|
+
"unplugin-vue-components": "^0.24.0",
|
31
37
|
"vite": "^4.3.9",
|
38
|
+
"vite-plugin-vuetify": "^1.0.1",
|
32
39
|
"vitepress": "^0.22.4",
|
33
40
|
"vitest": "^0.34.6",
|
34
|
-
"vue-tsc": "^1.8.3"
|
35
|
-
"unplugin-vue-components": "^0.24.0",
|
36
|
-
"vite-plugin-vuetify": "^1.0.1",
|
37
|
-
"unplugin-auto-import": "^0.16.7"
|
41
|
+
"vue-tsc": "^1.8.3"
|
38
42
|
},
|
39
43
|
"files": [
|
40
44
|
"dist"
|
@@ -47,5 +51,4 @@
|
|
47
51
|
},
|
48
52
|
"./dist/style.css": "./dist/style.css"
|
49
53
|
}
|
50
|
-
|
51
54
|
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
2
|
-
modelValue: {
|
3
|
-
type: globalThis.PropType<any>;
|
4
|
-
required: true;
|
5
|
-
};
|
6
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
7
|
-
modelValue: {
|
8
|
-
type: globalThis.PropType<any>;
|
9
|
-
required: true;
|
10
|
-
};
|
11
|
-
}>> & {
|
12
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
13
|
-
}, {}, {}>;
|
14
|
-
export default _default;
|
@@ -1,14 +0,0 @@
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
2
|
-
modelValue: {
|
3
|
-
type: globalThis.PropType<any>;
|
4
|
-
required: true;
|
5
|
-
};
|
6
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
7
|
-
modelValue: {
|
8
|
-
type: globalThis.PropType<any>;
|
9
|
-
required: true;
|
10
|
-
};
|
11
|
-
}>> & {
|
12
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
13
|
-
}, {}, {}>;
|
14
|
-
export default _default;
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|