@zyui/components 0.0.88 → 0.0.90
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/es/index.js +60 -60
- package/es/index.mjs +9609 -9575
- package/es/src/components/NodesEditor/HtmlRender/index.vue.d.ts +9 -0
- package/es/src/components/UserPicker/context.d.ts +3 -0
- package/es/src/components/UserPicker/dialog/picker.vue.d.ts +9 -0
- package/es/src/components/UserPicker/index.vue.d.ts +6 -0
- package/es/src/components/UserPicker/provider.vue.d.ts +15 -0
- package/es/style.css +1 -1
- package/lib/src/components/NodesEditor/HtmlRender/index.vue.d.ts +9 -0
- package/lib/src/components/UserPicker/context.d.ts +3 -0
- package/lib/src/components/UserPicker/dialog/picker.vue.d.ts +9 -0
- package/lib/src/components/UserPicker/index.vue.d.ts +6 -0
- package/lib/src/components/UserPicker/provider.vue.d.ts +15 -0
- package/package.json +3 -3
|
@@ -3,6 +3,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
+
pagesize: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
6
10
|
}>, {
|
|
7
11
|
renderHtml: () => void;
|
|
8
12
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -10,7 +14,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
10
14
|
type: StringConstructor;
|
|
11
15
|
default: string;
|
|
12
16
|
};
|
|
17
|
+
pagesize: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
13
21
|
}>> & Readonly<{}>, {
|
|
22
|
+
pagesize: string;
|
|
14
23
|
headerHtml: string;
|
|
15
24
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
25
|
export default _default;
|
|
@@ -21,6 +21,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
21
21
|
type: PropType<string[]>;
|
|
22
22
|
default: () => never[];
|
|
23
23
|
};
|
|
24
|
+
selectableUsers: {
|
|
25
|
+
type: PropType<any[]>;
|
|
26
|
+
default: () => never[];
|
|
27
|
+
};
|
|
24
28
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
25
29
|
modelValue: import('vue').PropType<string[]>;
|
|
26
30
|
/** 默认显示的内容,是否简写 */
|
|
@@ -42,10 +46,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
42
46
|
type: PropType<string[]>;
|
|
43
47
|
default: () => never[];
|
|
44
48
|
};
|
|
49
|
+
selectableUsers: {
|
|
50
|
+
type: PropType<any[]>;
|
|
51
|
+
default: () => never[];
|
|
52
|
+
};
|
|
45
53
|
}>> & Readonly<{}>, {
|
|
46
54
|
isAbbr: boolean;
|
|
47
55
|
showCount: number;
|
|
48
56
|
multiple: boolean;
|
|
49
57
|
disabledIds: string[];
|
|
58
|
+
selectableUsers: any[];
|
|
50
59
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
51
60
|
export default _default;
|
|
@@ -32,6 +32,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
32
32
|
type: BooleanConstructor;
|
|
33
33
|
default: boolean;
|
|
34
34
|
};
|
|
35
|
+
selectableUsers: {
|
|
36
|
+
type: PropType<any[]>;
|
|
37
|
+
};
|
|
35
38
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
36
39
|
ok: (...args: any[]) => void;
|
|
37
40
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -60,6 +63,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
60
63
|
type: BooleanConstructor;
|
|
61
64
|
default: boolean;
|
|
62
65
|
};
|
|
66
|
+
selectableUsers: {
|
|
67
|
+
type: PropType<any[]>;
|
|
68
|
+
};
|
|
63
69
|
}>> & Readonly<{
|
|
64
70
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
65
71
|
}>, {
|
|
@@ -24,6 +24,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
24
24
|
type: PropType<string[]>;
|
|
25
25
|
default: () => never[];
|
|
26
26
|
};
|
|
27
|
+
disabled: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
selectableUsers: {
|
|
32
|
+
type: PropType<any[]>;
|
|
33
|
+
};
|
|
27
34
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
28
35
|
modelValue: import('vue').PropType<any>;
|
|
29
36
|
/** 默认显示的内容,是否简写 */
|
|
@@ -45,9 +52,17 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
45
52
|
type: PropType<string[]>;
|
|
46
53
|
default: () => never[];
|
|
47
54
|
};
|
|
55
|
+
disabled: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
selectableUsers: {
|
|
60
|
+
type: PropType<any[]>;
|
|
61
|
+
};
|
|
48
62
|
}>> & Readonly<{}>, {
|
|
49
63
|
isAbbr: boolean;
|
|
50
64
|
showCount: number;
|
|
65
|
+
disabled: boolean;
|
|
51
66
|
multiple: boolean;
|
|
52
67
|
disabledIds: string[];
|
|
53
68
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zyui/components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.90",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"module": "./es/index.mjs",
|
|
6
6
|
"types": "./es/index.d.ts",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"vue-hooks-plus": "^2.2.1",
|
|
43
43
|
"xmldom": "^0.6.0",
|
|
44
44
|
"xpath": "^0.0.34",
|
|
45
|
-
"@zyui/
|
|
46
|
-
"@zyui/
|
|
45
|
+
"@zyui/hooks": "0.0.5",
|
|
46
|
+
"@zyui/utils": "0.0.9"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/lodash-es": "^4.17.12"
|