@bscjc/webui 1.6.0 → 1.6.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/dist/components/JcInputTag/index.d.ts +5 -0
- package/dist/components/JcInputTag/index.vue.d.ts +9 -4
- package/dist/es/index.mjs +497 -486
- package/dist/index.css +2 -2
- package/dist/lib/index.cjs +5 -5
- package/dist/types/components/JcInputTag/index.d.ts +4 -0
- package/dist/types/components/JcInputTag/index.vue.d.ts +4 -0
- package/package.json +2 -2
|
@@ -198,6 +198,11 @@ export declare const JcInputTag: {
|
|
|
198
198
|
bulkAdd: boolean;
|
|
199
199
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
200
200
|
$slots: {
|
|
201
|
+
suffix?: (props: {
|
|
202
|
+
fieldKey: string;
|
|
203
|
+
tags: string[];
|
|
204
|
+
}) => any;
|
|
205
|
+
} & {
|
|
201
206
|
tag?: (props: {
|
|
202
207
|
key: string;
|
|
203
208
|
tag: string;
|
|
@@ -31,19 +31,24 @@ export interface Props {
|
|
|
31
31
|
declare function addTags(tags: string[], source: "enter" | "paste" | "bulk"): void;
|
|
32
32
|
declare function removeTag(tag: string): void;
|
|
33
33
|
declare function clearTags(): void;
|
|
34
|
-
declare var
|
|
34
|
+
declare var __VLS_1: {
|
|
35
|
+
fieldKey: string;
|
|
36
|
+
tags: string[];
|
|
37
|
+
}, __VLS_11: {
|
|
35
38
|
key: string;
|
|
36
39
|
tag: string;
|
|
37
40
|
index: number;
|
|
38
41
|
fieldKey: string;
|
|
39
42
|
remove: () => void;
|
|
40
|
-
},
|
|
43
|
+
}, __VLS_21: {
|
|
41
44
|
fieldKey: string;
|
|
42
45
|
};
|
|
43
46
|
type __VLS_Slots = {} & {
|
|
44
|
-
|
|
47
|
+
suffix?: (props: typeof __VLS_1) => any;
|
|
48
|
+
} & {
|
|
49
|
+
tag?: (props: typeof __VLS_11) => any;
|
|
45
50
|
} & {
|
|
46
|
-
empty?: (props: typeof
|
|
51
|
+
empty?: (props: typeof __VLS_21) => any;
|
|
47
52
|
};
|
|
48
53
|
declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
49
54
|
focus: () => void | undefined;
|