@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.
@@ -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 __VLS_9: {
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
- }, __VLS_19: {
43
+ }, __VLS_21: {
41
44
  fieldKey: string;
42
45
  };
43
46
  type __VLS_Slots = {} & {
44
- tag?: (props: typeof __VLS_9) => any;
47
+ suffix?: (props: typeof __VLS_1) => any;
48
+ } & {
49
+ tag?: (props: typeof __VLS_11) => any;
45
50
  } & {
46
- empty?: (props: typeof __VLS_19) => any;
51
+ empty?: (props: typeof __VLS_21) => any;
47
52
  };
48
53
  declare const __VLS_component: import("vue").DefineComponent<Props, {
49
54
  focus: () => void | undefined;