@bscjc/webui 0.0.2 → 0.0.4
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 +53 -53
- package/dist/es/index.mjs +534 -1654
- package/dist/index.css +1 -1
- package/dist/lib/index.cjs +7 -8
- package/dist/types/components/JcDatePicker/index.d.ts +4 -0
- package/dist/types/components/JcDatePicker/index.vue.d.ts +4 -0
- package/dist/types/components/JcInputComplex/index.d.ts +33 -10
- package/dist/types/components/JcInputComplex/index.vue.d.ts +33 -10
- package/dist/types/components/JcInputSwitch/index.d.ts +25 -2
- package/dist/types/components/JcInputSwitch/index.vue.d.ts +25 -2
- package/dist/types/components/JcMoreQueryContain/index.d.ts +3 -3
- package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +6 -6
- package/dist/types/components/JcSelectQuery/index.d.ts +8 -8
- package/dist/types/components/JcSelectQuery/index.vue.d.ts +16 -16
- package/package.json +7 -3
- package/dist/es/index.mjs.map +0 -1
- package/dist/lib/index.cjs.map +0 -1
|
@@ -66,6 +66,7 @@ export declare const JcInputSwitch: SFCWithInstall<import('vue').DefineComponent
|
|
|
66
66
|
readonly validateEvent: boolean;
|
|
67
67
|
readonly inputStyle: import('vue').StyleValue;
|
|
68
68
|
readonly rows: number;
|
|
69
|
+
readonly inputmode: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
69
70
|
readonly clearable: boolean;
|
|
70
71
|
readonly showPassword: boolean;
|
|
71
72
|
readonly showWordLimit: boolean;
|
|
@@ -86,6 +87,7 @@ export declare const JcInputSwitch: SFCWithInstall<import('vue').DefineComponent
|
|
|
86
87
|
readonly showWordLimit: boolean;
|
|
87
88
|
readonly rows: number;
|
|
88
89
|
readonly size?: ("" | "small" | "default" | "large") | undefined;
|
|
90
|
+
readonly name?: string | undefined;
|
|
89
91
|
readonly ariaLabel?: string | undefined;
|
|
90
92
|
readonly id?: string | undefined;
|
|
91
93
|
readonly placeholder?: string | undefined;
|
|
@@ -93,6 +95,7 @@ export declare const JcInputSwitch: SFCWithInstall<import('vue').DefineComponent
|
|
|
93
95
|
readonly form?: string | undefined;
|
|
94
96
|
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
95
97
|
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
98
|
+
readonly inputmode?: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
96
99
|
readonly maxlength?: (string | number) | undefined;
|
|
97
100
|
readonly minlength?: (string | number) | undefined;
|
|
98
101
|
readonly formatter?: Function | undefined;
|
|
@@ -110,7 +113,7 @@ export declare const JcInputSwitch: SFCWithInstall<import('vue').DefineComponent
|
|
|
110
113
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
111
114
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
112
115
|
onClear?: (() => any) | undefined | undefined;
|
|
113
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "inputStyle" | "autofocus" | "readonly" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows">;
|
|
116
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "inputStyle" | "autofocus" | "readonly" | "inputmode" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows">;
|
|
114
117
|
$attrs: {
|
|
115
118
|
[x: string]: unknown;
|
|
116
119
|
};
|
|
@@ -126,6 +129,15 @@ export declare const JcInputSwitch: SFCWithInstall<import('vue').DefineComponent
|
|
|
126
129
|
$emit: ((event: "clear") => void) & ((event: "update:modelValue", value: string) => void) & ((event: "change", value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "input", value: string) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void);
|
|
127
130
|
$el: any;
|
|
128
131
|
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
132
|
+
readonly inputmode: {
|
|
133
|
+
readonly type: import('vue').PropType<"search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
|
|
134
|
+
readonly required: false;
|
|
135
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
136
|
+
__epPropKey: true;
|
|
137
|
+
} & {
|
|
138
|
+
readonly default: undefined;
|
|
139
|
+
};
|
|
140
|
+
readonly name: StringConstructor;
|
|
129
141
|
readonly ariaLabel: StringConstructor;
|
|
130
142
|
readonly id: {
|
|
131
143
|
readonly type: import('vue').PropType<string>;
|
|
@@ -324,6 +336,7 @@ export declare const JcInputSwitch: SFCWithInstall<import('vue').DefineComponent
|
|
|
324
336
|
readonly validateEvent: boolean;
|
|
325
337
|
readonly inputStyle: import('vue').StyleValue;
|
|
326
338
|
readonly rows: number;
|
|
339
|
+
readonly inputmode: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
327
340
|
readonly clearable: boolean;
|
|
328
341
|
readonly showPassword: boolean;
|
|
329
342
|
readonly showWordLimit: boolean;
|
|
@@ -361,11 +374,21 @@ export declare const JcInputSwitch: SFCWithInstall<import('vue').DefineComponent
|
|
|
361
374
|
readonly validateEvent: boolean;
|
|
362
375
|
readonly inputStyle: import('vue').StyleValue;
|
|
363
376
|
readonly rows: number;
|
|
377
|
+
readonly inputmode: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
364
378
|
readonly clearable: boolean;
|
|
365
379
|
readonly showPassword: boolean;
|
|
366
380
|
readonly showWordLimit: boolean;
|
|
367
381
|
readonly autofocus: boolean;
|
|
368
382
|
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
383
|
+
readonly inputmode: {
|
|
384
|
+
readonly type: import('vue').PropType<"search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
|
|
385
|
+
readonly required: false;
|
|
386
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
387
|
+
__epPropKey: true;
|
|
388
|
+
} & {
|
|
389
|
+
readonly default: undefined;
|
|
390
|
+
};
|
|
391
|
+
readonly name: StringConstructor;
|
|
369
392
|
readonly ariaLabel: StringConstructor;
|
|
370
393
|
readonly id: {
|
|
371
394
|
readonly type: import('vue').PropType<string>;
|
|
@@ -526,7 +549,7 @@ export declare const JcInputSwitch: SFCWithInstall<import('vue').DefineComponent
|
|
|
526
549
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
527
550
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
528
551
|
onClear?: (() => any) | undefined;
|
|
529
|
-
}, "clear" | "type" | "blur" | "focus" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "inputStyle" | "select" | "autofocus" | "ref" | "input" | "textarea" | "readonly" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
552
|
+
}, "clear" | "type" | "blur" | "focus" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "inputStyle" | "select" | "autofocus" | "ref" | "input" | "textarea" | "readonly" | "inputmode" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
530
553
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
531
554
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
532
555
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -60,6 +60,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
60
60
|
readonly validateEvent: boolean;
|
|
61
61
|
readonly inputStyle: import('vue').StyleValue;
|
|
62
62
|
readonly rows: number;
|
|
63
|
+
readonly inputmode: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
63
64
|
readonly clearable: boolean;
|
|
64
65
|
readonly showPassword: boolean;
|
|
65
66
|
readonly showWordLimit: boolean;
|
|
@@ -80,6 +81,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
80
81
|
readonly showWordLimit: boolean;
|
|
81
82
|
readonly rows: number;
|
|
82
83
|
readonly size?: ("" | "small" | "default" | "large") | undefined;
|
|
84
|
+
readonly name?: string | undefined;
|
|
83
85
|
readonly ariaLabel?: string | undefined;
|
|
84
86
|
readonly id?: string | undefined;
|
|
85
87
|
readonly placeholder?: string | undefined;
|
|
@@ -87,6 +89,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
87
89
|
readonly form?: string | undefined;
|
|
88
90
|
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
89
91
|
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
92
|
+
readonly inputmode?: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
90
93
|
readonly maxlength?: (string | number) | undefined;
|
|
91
94
|
readonly minlength?: (string | number) | undefined;
|
|
92
95
|
readonly formatter?: Function | undefined;
|
|
@@ -104,7 +107,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
104
107
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
105
108
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
106
109
|
onClear?: (() => any) | undefined | undefined;
|
|
107
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "inputStyle" | "autofocus" | "readonly" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows">;
|
|
110
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "inputStyle" | "autofocus" | "readonly" | "inputmode" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows">;
|
|
108
111
|
$attrs: {
|
|
109
112
|
[x: string]: unknown;
|
|
110
113
|
};
|
|
@@ -120,6 +123,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
120
123
|
$emit: ((event: "clear") => void) & ((event: "update:modelValue", value: string) => void) & ((event: "change", value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "input", value: string) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void);
|
|
121
124
|
$el: any;
|
|
122
125
|
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
126
|
+
readonly inputmode: {
|
|
127
|
+
readonly type: PropType<"search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
|
|
128
|
+
readonly required: false;
|
|
129
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
130
|
+
__epPropKey: true;
|
|
131
|
+
} & {
|
|
132
|
+
readonly default: undefined;
|
|
133
|
+
};
|
|
134
|
+
readonly name: StringConstructor;
|
|
123
135
|
readonly ariaLabel: StringConstructor;
|
|
124
136
|
readonly id: {
|
|
125
137
|
readonly type: PropType<string>;
|
|
@@ -318,6 +330,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
318
330
|
readonly validateEvent: boolean;
|
|
319
331
|
readonly inputStyle: import('vue').StyleValue;
|
|
320
332
|
readonly rows: number;
|
|
333
|
+
readonly inputmode: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
321
334
|
readonly clearable: boolean;
|
|
322
335
|
readonly showPassword: boolean;
|
|
323
336
|
readonly showWordLimit: boolean;
|
|
@@ -355,11 +368,21 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
355
368
|
readonly validateEvent: boolean;
|
|
356
369
|
readonly inputStyle: import('vue').StyleValue;
|
|
357
370
|
readonly rows: number;
|
|
371
|
+
readonly inputmode: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
358
372
|
readonly clearable: boolean;
|
|
359
373
|
readonly showPassword: boolean;
|
|
360
374
|
readonly showWordLimit: boolean;
|
|
361
375
|
readonly autofocus: boolean;
|
|
362
376
|
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
377
|
+
readonly inputmode: {
|
|
378
|
+
readonly type: PropType<"search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
|
|
379
|
+
readonly required: false;
|
|
380
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
381
|
+
__epPropKey: true;
|
|
382
|
+
} & {
|
|
383
|
+
readonly default: undefined;
|
|
384
|
+
};
|
|
385
|
+
readonly name: StringConstructor;
|
|
363
386
|
readonly ariaLabel: StringConstructor;
|
|
364
387
|
readonly id: {
|
|
365
388
|
readonly type: PropType<string>;
|
|
@@ -520,7 +543,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
520
543
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
521
544
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
522
545
|
onClear?: (() => any) | undefined;
|
|
523
|
-
}, "clear" | "type" | "blur" | "focus" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "inputStyle" | "select" | "autofocus" | "ref" | "input" | "textarea" | "readonly" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
546
|
+
}, "clear" | "type" | "blur" | "focus" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "inputStyle" | "select" | "autofocus" | "ref" | "input" | "textarea" | "readonly" | "inputmode" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
524
547
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
525
548
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
526
549
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -80,8 +80,8 @@ export declare const JcMoreQueryContain: SFCWithInstall<{
|
|
|
80
80
|
readonly showAfter: number;
|
|
81
81
|
readonly hideAfter: number;
|
|
82
82
|
readonly autoClose: number;
|
|
83
|
-
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
84
83
|
readonly tabindex: string | number;
|
|
84
|
+
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
85
85
|
readonly popperOptions: Partial<Options>;
|
|
86
86
|
readonly enterable: boolean;
|
|
87
87
|
readonly triggerKeys: string[];
|
|
@@ -364,8 +364,8 @@ export declare const JcMoreQueryContain: SFCWithInstall<{
|
|
|
364
364
|
readonly showAfter: number;
|
|
365
365
|
readonly hideAfter: number;
|
|
366
366
|
readonly autoClose: number;
|
|
367
|
-
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
368
367
|
readonly tabindex: string | number;
|
|
368
|
+
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
369
369
|
readonly popperOptions: Partial<Options>;
|
|
370
370
|
readonly enterable: boolean;
|
|
371
371
|
readonly triggerKeys: string[];
|
|
@@ -403,8 +403,8 @@ export declare const JcMoreQueryContain: SFCWithInstall<{
|
|
|
403
403
|
readonly showAfter: number;
|
|
404
404
|
readonly hideAfter: number;
|
|
405
405
|
readonly autoClose: number;
|
|
406
|
-
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
407
406
|
readonly tabindex: string | number;
|
|
407
|
+
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
408
408
|
readonly popperOptions: Partial<Options>;
|
|
409
409
|
readonly enterable: boolean;
|
|
410
410
|
readonly triggerKeys: string[];
|
|
@@ -25,8 +25,8 @@ declare function __VLS_template(): {
|
|
|
25
25
|
readonly showAfter: number;
|
|
26
26
|
readonly hideAfter: number;
|
|
27
27
|
readonly autoClose: number;
|
|
28
|
-
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
29
28
|
readonly tabindex: string | number;
|
|
29
|
+
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
30
30
|
readonly popperOptions: Partial<Options>;
|
|
31
31
|
readonly enterable: boolean;
|
|
32
32
|
readonly triggerKeys: string[];
|
|
@@ -309,8 +309,8 @@ declare function __VLS_template(): {
|
|
|
309
309
|
readonly showAfter: number;
|
|
310
310
|
readonly hideAfter: number;
|
|
311
311
|
readonly autoClose: number;
|
|
312
|
-
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
313
312
|
readonly tabindex: string | number;
|
|
313
|
+
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
314
314
|
readonly popperOptions: Partial<Options>;
|
|
315
315
|
readonly enterable: boolean;
|
|
316
316
|
readonly triggerKeys: string[];
|
|
@@ -348,8 +348,8 @@ declare function __VLS_template(): {
|
|
|
348
348
|
readonly showAfter: number;
|
|
349
349
|
readonly hideAfter: number;
|
|
350
350
|
readonly autoClose: number;
|
|
351
|
-
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
352
351
|
readonly tabindex: string | number;
|
|
352
|
+
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
353
353
|
readonly popperOptions: Partial<Options>;
|
|
354
354
|
readonly enterable: boolean;
|
|
355
355
|
readonly triggerKeys: string[];
|
|
@@ -651,8 +651,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
651
651
|
readonly showAfter: number;
|
|
652
652
|
readonly hideAfter: number;
|
|
653
653
|
readonly autoClose: number;
|
|
654
|
-
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
655
654
|
readonly tabindex: string | number;
|
|
655
|
+
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
656
656
|
readonly popperOptions: Partial<Options>;
|
|
657
657
|
readonly enterable: boolean;
|
|
658
658
|
readonly triggerKeys: string[];
|
|
@@ -935,8 +935,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
935
935
|
readonly showAfter: number;
|
|
936
936
|
readonly hideAfter: number;
|
|
937
937
|
readonly autoClose: number;
|
|
938
|
-
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
939
938
|
readonly tabindex: string | number;
|
|
939
|
+
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
940
940
|
readonly popperOptions: Partial<Options>;
|
|
941
941
|
readonly enterable: boolean;
|
|
942
942
|
readonly triggerKeys: string[];
|
|
@@ -974,8 +974,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
974
974
|
readonly showAfter: number;
|
|
975
975
|
readonly hideAfter: number;
|
|
976
976
|
readonly autoClose: number;
|
|
977
|
-
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
978
977
|
readonly tabindex: string | number;
|
|
978
|
+
readonly trigger: import('element-plus').TooltipTriggerType | import('element-plus').TooltipTriggerType[];
|
|
979
979
|
readonly popperOptions: Partial<Options>;
|
|
980
980
|
readonly enterable: boolean;
|
|
981
981
|
readonly triggerKeys: string[];
|
|
@@ -204,7 +204,7 @@ export declare const JcSelectQuery: SFCWithInstall<{
|
|
|
204
204
|
};
|
|
205
205
|
tagType: {
|
|
206
206
|
default: string;
|
|
207
|
-
type: import('vue').PropType<"
|
|
207
|
+
type: import('vue').PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
208
208
|
required: false;
|
|
209
209
|
validator: ((val: unknown) => boolean) | undefined;
|
|
210
210
|
__epPropKey: true;
|
|
@@ -367,13 +367,13 @@ export declare const JcSelectQuery: SFCWithInstall<{
|
|
|
367
367
|
showClose: import('vue').ComputedRef<boolean>;
|
|
368
368
|
iconComponent: import('vue').ComputedRef<(string | import('vue').Component) | undefined>;
|
|
369
369
|
iconReverse: import('vue').ComputedRef<string>;
|
|
370
|
-
validateState: import('vue').ComputedRef<"" | "error" | "
|
|
370
|
+
validateState: import('vue').ComputedRef<"" | "error" | "success" | "validating">;
|
|
371
371
|
validateIcon: import('vue').ComputedRef<"" | import('vue').Component>;
|
|
372
372
|
showNewOption: import('vue').ComputedRef<boolean>;
|
|
373
373
|
updateOptions: () => void;
|
|
374
374
|
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
375
375
|
setSelected: () => void;
|
|
376
|
-
selectDisabled: import('vue').ComputedRef<boolean
|
|
376
|
+
selectDisabled: import('vue').ComputedRef<boolean>;
|
|
377
377
|
emptyText: import('vue').ComputedRef<string | null>;
|
|
378
378
|
handleCompositionStart: (event: CompositionEvent) => void;
|
|
379
379
|
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
@@ -449,7 +449,7 @@ export declare const JcSelectQuery: SFCWithInstall<{
|
|
|
449
449
|
collapseTags: boolean;
|
|
450
450
|
maxCollapseTags: number;
|
|
451
451
|
collapseTagsTooltip: boolean;
|
|
452
|
-
tagType: "
|
|
452
|
+
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
453
453
|
tagEffect: "light" | "dark" | "plain";
|
|
454
454
|
automaticDropdown: boolean;
|
|
455
455
|
allowCreate: boolean;
|
|
@@ -609,7 +609,7 @@ export declare const JcSelectQuery: SFCWithInstall<{
|
|
|
609
609
|
};
|
|
610
610
|
tagType: {
|
|
611
611
|
default: string;
|
|
612
|
-
type: import('vue').PropType<"
|
|
612
|
+
type: import('vue').PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
613
613
|
required: false;
|
|
614
614
|
validator: ((val: unknown) => boolean) | undefined;
|
|
615
615
|
__epPropKey: true;
|
|
@@ -772,13 +772,13 @@ export declare const JcSelectQuery: SFCWithInstall<{
|
|
|
772
772
|
showClose: import('vue').ComputedRef<boolean>;
|
|
773
773
|
iconComponent: import('vue').ComputedRef<(string | import('vue').Component) | undefined>;
|
|
774
774
|
iconReverse: import('vue').ComputedRef<string>;
|
|
775
|
-
validateState: import('vue').ComputedRef<"" | "error" | "
|
|
775
|
+
validateState: import('vue').ComputedRef<"" | "error" | "success" | "validating">;
|
|
776
776
|
validateIcon: import('vue').ComputedRef<"" | import('vue').Component>;
|
|
777
777
|
showNewOption: import('vue').ComputedRef<boolean>;
|
|
778
778
|
updateOptions: () => void;
|
|
779
779
|
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
780
780
|
setSelected: () => void;
|
|
781
|
-
selectDisabled: import('vue').ComputedRef<boolean
|
|
781
|
+
selectDisabled: import('vue').ComputedRef<boolean>;
|
|
782
782
|
emptyText: import('vue').ComputedRef<string | null>;
|
|
783
783
|
handleCompositionStart: (event: CompositionEvent) => void;
|
|
784
784
|
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
@@ -854,7 +854,7 @@ export declare const JcSelectQuery: SFCWithInstall<{
|
|
|
854
854
|
collapseTags: boolean;
|
|
855
855
|
maxCollapseTags: number;
|
|
856
856
|
collapseTagsTooltip: boolean;
|
|
857
|
-
tagType: "
|
|
857
|
+
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
858
858
|
tagEffect: "light" | "dark" | "plain";
|
|
859
859
|
automaticDropdown: boolean;
|
|
860
860
|
allowCreate: boolean;
|
|
@@ -155,7 +155,7 @@ declare function __VLS_template(): {
|
|
|
155
155
|
};
|
|
156
156
|
tagType: {
|
|
157
157
|
default: string;
|
|
158
|
-
type: PropType<"
|
|
158
|
+
type: PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
159
159
|
required: false;
|
|
160
160
|
validator: ((val: unknown) => boolean) | undefined;
|
|
161
161
|
__epPropKey: true;
|
|
@@ -318,13 +318,13 @@ declare function __VLS_template(): {
|
|
|
318
318
|
showClose: import('vue').ComputedRef<boolean>;
|
|
319
319
|
iconComponent: import('vue').ComputedRef<(string | import('vue').Component) | undefined>;
|
|
320
320
|
iconReverse: import('vue').ComputedRef<string>;
|
|
321
|
-
validateState: import('vue').ComputedRef<"" | "error" | "
|
|
321
|
+
validateState: import('vue').ComputedRef<"" | "error" | "success" | "validating">;
|
|
322
322
|
validateIcon: import('vue').ComputedRef<"" | import('vue').Component>;
|
|
323
323
|
showNewOption: import('vue').ComputedRef<boolean>;
|
|
324
324
|
updateOptions: () => void;
|
|
325
325
|
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
326
326
|
setSelected: () => void;
|
|
327
|
-
selectDisabled: import('vue').ComputedRef<boolean
|
|
327
|
+
selectDisabled: import('vue').ComputedRef<boolean>;
|
|
328
328
|
emptyText: import('vue').ComputedRef<string | null>;
|
|
329
329
|
handleCompositionStart: (event: CompositionEvent) => void;
|
|
330
330
|
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
@@ -400,7 +400,7 @@ declare function __VLS_template(): {
|
|
|
400
400
|
collapseTags: boolean;
|
|
401
401
|
maxCollapseTags: number;
|
|
402
402
|
collapseTagsTooltip: boolean;
|
|
403
|
-
tagType: "
|
|
403
|
+
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
404
404
|
tagEffect: "light" | "dark" | "plain";
|
|
405
405
|
automaticDropdown: boolean;
|
|
406
406
|
allowCreate: boolean;
|
|
@@ -560,7 +560,7 @@ declare function __VLS_template(): {
|
|
|
560
560
|
};
|
|
561
561
|
tagType: {
|
|
562
562
|
default: string;
|
|
563
|
-
type: PropType<"
|
|
563
|
+
type: PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
564
564
|
required: false;
|
|
565
565
|
validator: ((val: unknown) => boolean) | undefined;
|
|
566
566
|
__epPropKey: true;
|
|
@@ -723,13 +723,13 @@ declare function __VLS_template(): {
|
|
|
723
723
|
showClose: import('vue').ComputedRef<boolean>;
|
|
724
724
|
iconComponent: import('vue').ComputedRef<(string | import('vue').Component) | undefined>;
|
|
725
725
|
iconReverse: import('vue').ComputedRef<string>;
|
|
726
|
-
validateState: import('vue').ComputedRef<"" | "error" | "
|
|
726
|
+
validateState: import('vue').ComputedRef<"" | "error" | "success" | "validating">;
|
|
727
727
|
validateIcon: import('vue').ComputedRef<"" | import('vue').Component>;
|
|
728
728
|
showNewOption: import('vue').ComputedRef<boolean>;
|
|
729
729
|
updateOptions: () => void;
|
|
730
730
|
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
731
731
|
setSelected: () => void;
|
|
732
|
-
selectDisabled: import('vue').ComputedRef<boolean
|
|
732
|
+
selectDisabled: import('vue').ComputedRef<boolean>;
|
|
733
733
|
emptyText: import('vue').ComputedRef<string | null>;
|
|
734
734
|
handleCompositionStart: (event: CompositionEvent) => void;
|
|
735
735
|
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
@@ -805,7 +805,7 @@ declare function __VLS_template(): {
|
|
|
805
805
|
collapseTags: boolean;
|
|
806
806
|
maxCollapseTags: number;
|
|
807
807
|
collapseTagsTooltip: boolean;
|
|
808
|
-
tagType: "
|
|
808
|
+
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
809
809
|
tagEffect: "light" | "dark" | "plain";
|
|
810
810
|
automaticDropdown: boolean;
|
|
811
811
|
allowCreate: boolean;
|
|
@@ -1057,7 +1057,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1057
1057
|
};
|
|
1058
1058
|
tagType: {
|
|
1059
1059
|
default: string;
|
|
1060
|
-
type: PropType<"
|
|
1060
|
+
type: PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
1061
1061
|
required: false;
|
|
1062
1062
|
validator: ((val: unknown) => boolean) | undefined;
|
|
1063
1063
|
__epPropKey: true;
|
|
@@ -1220,13 +1220,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1220
1220
|
showClose: import('vue').ComputedRef<boolean>;
|
|
1221
1221
|
iconComponent: import('vue').ComputedRef<(string | import('vue').Component) | undefined>;
|
|
1222
1222
|
iconReverse: import('vue').ComputedRef<string>;
|
|
1223
|
-
validateState: import('vue').ComputedRef<"" | "error" | "
|
|
1223
|
+
validateState: import('vue').ComputedRef<"" | "error" | "success" | "validating">;
|
|
1224
1224
|
validateIcon: import('vue').ComputedRef<"" | import('vue').Component>;
|
|
1225
1225
|
showNewOption: import('vue').ComputedRef<boolean>;
|
|
1226
1226
|
updateOptions: () => void;
|
|
1227
1227
|
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
1228
1228
|
setSelected: () => void;
|
|
1229
|
-
selectDisabled: import('vue').ComputedRef<boolean
|
|
1229
|
+
selectDisabled: import('vue').ComputedRef<boolean>;
|
|
1230
1230
|
emptyText: import('vue').ComputedRef<string | null>;
|
|
1231
1231
|
handleCompositionStart: (event: CompositionEvent) => void;
|
|
1232
1232
|
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
@@ -1302,7 +1302,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1302
1302
|
collapseTags: boolean;
|
|
1303
1303
|
maxCollapseTags: number;
|
|
1304
1304
|
collapseTagsTooltip: boolean;
|
|
1305
|
-
tagType: "
|
|
1305
|
+
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
1306
1306
|
tagEffect: "light" | "dark" | "plain";
|
|
1307
1307
|
automaticDropdown: boolean;
|
|
1308
1308
|
allowCreate: boolean;
|
|
@@ -1462,7 +1462,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1462
1462
|
};
|
|
1463
1463
|
tagType: {
|
|
1464
1464
|
default: string;
|
|
1465
|
-
type: PropType<"
|
|
1465
|
+
type: PropType<"primary" | "success" | "warning" | "info" | "danger">;
|
|
1466
1466
|
required: false;
|
|
1467
1467
|
validator: ((val: unknown) => boolean) | undefined;
|
|
1468
1468
|
__epPropKey: true;
|
|
@@ -1625,13 +1625,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1625
1625
|
showClose: import('vue').ComputedRef<boolean>;
|
|
1626
1626
|
iconComponent: import('vue').ComputedRef<(string | import('vue').Component) | undefined>;
|
|
1627
1627
|
iconReverse: import('vue').ComputedRef<string>;
|
|
1628
|
-
validateState: import('vue').ComputedRef<"" | "error" | "
|
|
1628
|
+
validateState: import('vue').ComputedRef<"" | "error" | "success" | "validating">;
|
|
1629
1629
|
validateIcon: import('vue').ComputedRef<"" | import('vue').Component>;
|
|
1630
1630
|
showNewOption: import('vue').ComputedRef<boolean>;
|
|
1631
1631
|
updateOptions: () => void;
|
|
1632
1632
|
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
1633
1633
|
setSelected: () => void;
|
|
1634
|
-
selectDisabled: import('vue').ComputedRef<boolean
|
|
1634
|
+
selectDisabled: import('vue').ComputedRef<boolean>;
|
|
1635
1635
|
emptyText: import('vue').ComputedRef<string | null>;
|
|
1636
1636
|
handleCompositionStart: (event: CompositionEvent) => void;
|
|
1637
1637
|
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
@@ -1707,7 +1707,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1707
1707
|
collapseTags: boolean;
|
|
1708
1708
|
maxCollapseTags: number;
|
|
1709
1709
|
collapseTagsTooltip: boolean;
|
|
1710
|
-
tagType: "
|
|
1710
|
+
tagType: "primary" | "success" | "warning" | "info" | "danger";
|
|
1711
1711
|
tagEffect: "light" | "dark" | "plain";
|
|
1712
1712
|
automaticDropdown: boolean;
|
|
1713
1713
|
allowCreate: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bscjc/webui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/lib/index.cjs",
|
|
7
7
|
"module": "./dist/es/index.mjs",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@element-plus/icons-vue": "^2.3.1",
|
|
34
34
|
"@vueuse/shared": "^13.4.0",
|
|
35
|
-
"element-plus": "^2.10.
|
|
35
|
+
"element-plus": "^2.10.3",
|
|
36
36
|
"fuse.js": "^7.1.0",
|
|
37
37
|
"vue-virtual-scroller": "^2.0.0-beta.8"
|
|
38
38
|
},
|
|
@@ -41,8 +41,12 @@
|
|
|
41
41
|
"vue": ">=3.2.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
+
"@types/autoprefixer": "^10.2.4",
|
|
45
|
+
"@types/cssnano": "^5.1.3",
|
|
44
46
|
"@types/node": "^24.0.7",
|
|
47
|
+
"autoprefixer": "^10.4.21",
|
|
48
|
+
"cssnano": "^7.0.7",
|
|
45
49
|
"unplugin-element-plus": "^0.10.0"
|
|
46
50
|
},
|
|
47
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "964c3664eda76d9bf8b1f1bb892e6d7e0070a380"
|
|
48
52
|
}
|