@unizhen/ui 0.0.26 → 0.0.28
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/lib/components/back/index.vue.d.ts +1 -1
- package/lib/components/camera/index.vue.d.ts +23 -11
- package/lib/components/circle/index.vue.d.ts +91 -13
- package/lib/components/components.d.ts +0 -1
- package/lib/components/fetch.d.ts +1 -1
- package/lib/components/form/draggable.vue.d.ts +1153 -152
- package/lib/components/form/image.vue.d.ts +311 -46
- package/lib/components/form/index.vue.d.ts +1153 -152
- package/lib/components/form/interface.d.ts +1 -0
- package/lib/components/form/item.vue.d.ts +1145 -152
- package/lib/components/form/upload.vue.d.ts +304 -46
- package/lib/components/searchBar/components/timePickRange.vue.d.ts +114 -12
- package/lib/components/searchBar/index.vue.d.ts +1459 -213
- package/lib/components/searchBar/mobile.vue.d.ts +1241 -177
- package/lib/components/spin/index.vue.d.ts +113 -9
- package/lib/components/table/child.vue.d.ts +677 -56
- package/lib/components/table/child_quest.vue.d.ts +675 -54
- package/lib/components/table/drawer.vue.d.ts +7 -6
- package/lib/components/table/index.vue.d.ts +892 -88
- package/lib/components/table/mobile.vue.d.ts +334 -24
- package/lib/components/table/ocr.vue.d.ts +2 -1
- package/lib/components/thumbnail/index.vue.d.ts +126 -25
- package/lib/components/wrap/index.vue.d.ts +7 -1
- package/lib/ui.css +1 -1
- package/lib/ui.js +2526 -2581
- package/package.json +14 -13
- package/volar.d.ts +0 -1
- package/lib/components/numberRoll/index.d.ts +0 -1
- package/lib/components/numberRoll/index.vue.d.ts +0 -47
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unizhen/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.28",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Donovan"
|
|
6
6
|
},
|
|
@@ -40,23 +40,23 @@
|
|
|
40
40
|
"pub": "npm publish"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"axios": "^1.
|
|
43
|
+
"axios": "^1.12.2",
|
|
44
44
|
"csstype": "^3.1.3",
|
|
45
45
|
"md5": "^2.3.0",
|
|
46
|
-
"naive-ui": "^2.
|
|
47
|
-
"vue": "^3.5.
|
|
46
|
+
"naive-ui": "^2.43.1",
|
|
47
|
+
"vue": "^3.5.21",
|
|
48
48
|
"vue-i18n": "^10.0.8",
|
|
49
49
|
"vue-router": "^4.5.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@guolao/vue-monaco-editor": "^1.5.5",
|
|
53
53
|
"@rushstack/eslint-patch": "^1.12.0",
|
|
54
|
-
"@tailwindcss/postcss": "^4.1.
|
|
55
|
-
"@tailwindcss/vite": "^4.1.
|
|
54
|
+
"@tailwindcss/postcss": "^4.1.13",
|
|
55
|
+
"@tailwindcss/vite": "^4.1.13",
|
|
56
56
|
"@tsconfig/node20": "^20.1.6",
|
|
57
57
|
"@types/lodash": "^4.17.20",
|
|
58
58
|
"@types/md5": "^2.3.5",
|
|
59
|
-
"@types/node": "^22.
|
|
59
|
+
"@types/node": "^22.18.6",
|
|
60
60
|
"@types/sortablejs": "^1.15.8",
|
|
61
61
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
62
62
|
"@vitejs/plugin-vue-jsx": "^4.2.0",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
65
65
|
"@vue/tsconfig": "^0.5.1",
|
|
66
66
|
"autoprefixer": "^10.4.21",
|
|
67
|
-
"dayjs": "^1.11.
|
|
68
|
-
"eslint": "^9.
|
|
67
|
+
"dayjs": "^1.11.18",
|
|
68
|
+
"eslint": "^9.36.0",
|
|
69
69
|
"eslint-plugin-vue": "^9.33.0",
|
|
70
70
|
"highlight.js": "^11.11.1",
|
|
71
71
|
"json5": "^2.2.3",
|
|
@@ -77,17 +77,18 @@
|
|
|
77
77
|
"prettier": "^3.6.2",
|
|
78
78
|
"rimraf": "^6.0.1",
|
|
79
79
|
"rollup-plugin-visualizer": "^5.14.0",
|
|
80
|
-
"sass": "^1.
|
|
80
|
+
"sass": "^1.93.0",
|
|
81
81
|
"sortablejs": "^1.15.6",
|
|
82
|
-
"tailwindcss": "^4.1.
|
|
82
|
+
"tailwindcss": "^4.1.13",
|
|
83
83
|
"tesseract.js": "^5.1.1",
|
|
84
84
|
"typescript": "~5.6.3",
|
|
85
|
-
"vite": "^6.3.
|
|
85
|
+
"vite": "^6.3.6",
|
|
86
86
|
"vite-plugin-compression": "^0.5.1",
|
|
87
87
|
"vite-plugin-dts": "^4.5.4",
|
|
88
88
|
"vue-clipboard3": "^2.0.0",
|
|
89
89
|
"vue-global-api": "^0.4.1",
|
|
90
90
|
"vue-tsc": "^2.2.12",
|
|
91
91
|
"vuedraggable": "^4.1.0"
|
|
92
|
-
}
|
|
92
|
+
},
|
|
93
|
+
"packageManager": "pnpm@10.17.0+sha512.fce8a3dd29a4ed2ec566fb53efbb04d8c44a0f05bc6f24a73046910fb9c3ce7afa35a0980500668fa3573345bd644644fa98338fa168235c80f4aa17aa17fbef"
|
|
93
94
|
}
|
package/volar.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ declare module 'vue' {
|
|
|
5
5
|
UzDraggableForm: (typeof import('@unizhen/ui'))['UzDraggableForm']
|
|
6
6
|
UzForm: (typeof import('@unizhen/ui'))['UzForm']
|
|
7
7
|
UzIcon: (typeof import('@unizhen/ui'))['UzIcon']
|
|
8
|
-
UzNumberRoll: (typeof import('@unizhen/ui'))['UzNumberRoll']
|
|
9
8
|
UzSearchBar: (typeof import('@unizhen/ui'))['UzSearchBar']
|
|
10
9
|
UzSpin: (typeof import('@unizhen/ui'))['UzSpin']
|
|
11
10
|
UzTable: (typeof import('@unizhen/ui'))['UzTable']
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as UzNumberRoll } from './index.vue';
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { PropType, DefineComponent, ExtractPropTypes, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
-
import { Fn } from '../interface';
|
|
3
|
-
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
4
|
-
value: {
|
|
5
|
-
required: true;
|
|
6
|
-
type: PropType<number | string>;
|
|
7
|
-
default: number;
|
|
8
|
-
};
|
|
9
|
-
duration: {
|
|
10
|
-
type: PropType<number>;
|
|
11
|
-
default: number;
|
|
12
|
-
};
|
|
13
|
-
precision: {
|
|
14
|
-
type: PropType<number>;
|
|
15
|
-
default: number;
|
|
16
|
-
};
|
|
17
|
-
format: {
|
|
18
|
-
type: PropType<Fn<number, string>>;
|
|
19
|
-
default: undefined;
|
|
20
|
-
};
|
|
21
|
-
}>, {
|
|
22
|
-
displayedValueRef: Ref<string | number, string | number>;
|
|
23
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
24
|
-
value: {
|
|
25
|
-
required: true;
|
|
26
|
-
type: PropType<number | string>;
|
|
27
|
-
default: number;
|
|
28
|
-
};
|
|
29
|
-
duration: {
|
|
30
|
-
type: PropType<number>;
|
|
31
|
-
default: number;
|
|
32
|
-
};
|
|
33
|
-
precision: {
|
|
34
|
-
type: PropType<number>;
|
|
35
|
-
default: number;
|
|
36
|
-
};
|
|
37
|
-
format: {
|
|
38
|
-
type: PropType<Fn<number, string>>;
|
|
39
|
-
default: undefined;
|
|
40
|
-
};
|
|
41
|
-
}>> & Readonly<{}>, {
|
|
42
|
-
duration: number;
|
|
43
|
-
value: string | number;
|
|
44
|
-
format: Fn<number, string>;
|
|
45
|
-
precision: number;
|
|
46
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
47
|
-
export default _default;
|