@bscjc/webui 1.4.1 → 1.4.2
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/JcCascader/index.d.ts +25 -187
- package/dist/components/JcCascader/index.vue.d.ts +37 -100
- package/dist/components/JcColumnConfig/index.d.ts +7 -106
- package/dist/components/JcColumnConfig/index.vue.d.ts +23 -71
- package/dist/components/JcDatePicker/index.d.ts +24 -105
- package/dist/components/JcDatePicker/index.vue.d.ts +26 -58
- package/dist/components/JcImportButton/index.d.ts +14 -41
- package/dist/components/JcImportButton/index.vue.d.ts +19 -26
- package/dist/components/JcImportDialog/index.d.ts +14 -74
- package/dist/components/JcImportDialog/index.vue.d.ts +25 -48
- package/dist/components/JcInputComplex/index.d.ts +48 -90
- package/dist/components/JcInputComplex/index.vue.d.ts +32 -48
- package/dist/components/JcInputSwitch/index.d.ts +42 -90
- package/dist/components/JcInputSwitch/index.vue.d.ts +30 -48
- package/dist/components/JcMoreQueryContain/index.d.ts +14 -197
- package/dist/components/JcMoreQueryContain/index.vue.d.ts +23 -88
- package/dist/components/JcSelectQuery/index.d.ts +19 -178
- package/dist/components/JcSelectQuery/index.vue.d.ts +37 -106
- package/dist/components/JcTagQuery/index.d.ts +4 -19
- package/dist/components/JcTagQuery/index.vue.d.ts +7 -12
- package/dist/es/index.mjs +2098 -2167
- package/dist/index.css +2 -2
- package/dist/index.d.ts +3 -1
- package/dist/lib/index.cjs +8 -8
- package/dist/types/components/JcCascader/index.d.ts +25 -187
- package/dist/types/components/JcCascader/index.vue.d.ts +37 -100
- package/dist/types/components/JcColumnConfig/index.d.ts +7 -106
- package/dist/types/components/JcColumnConfig/index.vue.d.ts +23 -71
- package/dist/types/components/JcDatePicker/index.d.ts +24 -105
- package/dist/types/components/JcDatePicker/index.vue.d.ts +26 -58
- package/dist/types/components/JcImportButton/index.d.ts +14 -41
- package/dist/types/components/JcImportButton/index.vue.d.ts +19 -26
- package/dist/types/components/JcImportDialog/index.d.ts +14 -74
- package/dist/types/components/JcImportDialog/index.vue.d.ts +25 -48
- package/dist/types/components/JcInputComplex/index.d.ts +51 -93
- package/dist/types/components/JcInputComplex/index.vue.d.ts +126 -141
- package/dist/types/components/JcInputSwitch/index.d.ts +45 -93
- package/dist/types/components/JcInputSwitch/index.vue.d.ts +74 -91
- package/dist/types/components/JcMoreQueryContain/index.d.ts +14 -197
- package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +108 -172
- package/dist/types/components/JcSelectQuery/index.d.ts +19 -178
- package/dist/types/components/JcSelectQuery/index.vue.d.ts +137 -206
- package/dist/types/components/JcTagQuery/index.d.ts +4 -19
- package/dist/types/components/JcTagQuery/index.vue.d.ts +7 -12
- package/dist/types/index.d.ts +3 -1
- package/package.json +2 -2
|
@@ -1,41 +1,27 @@
|
|
|
1
1
|
export declare const JcInputComplex: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').
|
|
3
|
-
|
|
4
|
-
type: import('vue').PropType<Array<{
|
|
5
|
-
label: string;
|
|
6
|
-
value: string;
|
|
7
|
-
}>>;
|
|
8
|
-
require: boolean;
|
|
9
|
-
default: () => never[];
|
|
10
|
-
};
|
|
11
|
-
size: {
|
|
12
|
-
type: import('vue').PropType<"small" | "default" | "large">;
|
|
13
|
-
default: string;
|
|
14
|
-
validator: (value: string) => boolean;
|
|
15
|
-
};
|
|
16
|
-
width: {
|
|
17
|
-
type: StringConstructor;
|
|
18
|
-
default: string;
|
|
19
|
-
};
|
|
20
|
-
injectionKey: {
|
|
21
|
-
type: StringConstructor;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
|
-
}>> & Readonly<{
|
|
25
|
-
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./index.vue').Props> & Readonly<{
|
|
3
|
+
onFieldChange?: ((val: string) => any) | undefined;
|
|
26
4
|
}>, {
|
|
27
|
-
|
|
5
|
+
blur: () => void | undefined;
|
|
6
|
+
clear: () => void | undefined;
|
|
7
|
+
focus: () => void | undefined;
|
|
8
|
+
select: () => void | undefined;
|
|
9
|
+
resizeTextarea: () => void | undefined;
|
|
10
|
+
setInputValueMult: (query: any) => void;
|
|
11
|
+
setInputByOutside: () => void;
|
|
12
|
+
input: HTMLInputElement | undefined;
|
|
13
|
+
ref: HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
14
|
+
textarea: HTMLTextAreaElement | undefined;
|
|
15
|
+
textareaStyle: import('vue').StyleValue;
|
|
16
|
+
isComposing: boolean | undefined;
|
|
28
17
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
-
fieldChange: (
|
|
18
|
+
fieldChange: (val: string) => any;
|
|
30
19
|
}, import('vue').PublicProps, {
|
|
31
20
|
size: "small" | "default" | "large";
|
|
32
21
|
injectionKey: string;
|
|
33
22
|
width: string;
|
|
34
|
-
fieldList:
|
|
35
|
-
|
|
36
|
-
value: string;
|
|
37
|
-
}[];
|
|
38
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
23
|
+
fieldList: import('./index.vue').InputComplexFieldItem[];
|
|
24
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
39
25
|
inputRef: ({
|
|
40
26
|
$: import('vue').ComponentInternalInstance;
|
|
41
27
|
$data: {};
|
|
@@ -57,13 +43,13 @@ export declare const JcInputComplex: {
|
|
|
57
43
|
readonly showWordLimit: boolean;
|
|
58
44
|
readonly autofocus: boolean;
|
|
59
45
|
}> & Omit<{
|
|
60
|
-
readonly type: string;
|
|
61
46
|
readonly modelValue: string | number | null;
|
|
62
47
|
readonly autocomplete: string;
|
|
63
48
|
readonly disabled: boolean;
|
|
64
49
|
readonly clearable: boolean;
|
|
65
50
|
readonly validateEvent: boolean;
|
|
66
51
|
readonly tabindex: string | number;
|
|
52
|
+
readonly type: string;
|
|
67
53
|
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
68
54
|
readonly autofocus: boolean;
|
|
69
55
|
readonly readonly: boolean;
|
|
@@ -96,7 +82,7 @@ export declare const JcInputComplex: {
|
|
|
96
82
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
97
83
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
98
84
|
onClear?: (() => any) | undefined | undefined;
|
|
99
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "
|
|
85
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "type" | "inputStyle" | "autofocus" | "readonly" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows">;
|
|
100
86
|
$attrs: {
|
|
101
87
|
[x: string]: unknown;
|
|
102
88
|
};
|
|
@@ -512,7 +498,7 @@ export declare const JcInputComplex: {
|
|
|
512
498
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
513
499
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
514
500
|
onClear?: (() => any) | undefined;
|
|
515
|
-
}, "clear" | "
|
|
501
|
+
}, "clear" | "blur" | "focus" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "type" | "inputStyle" | "select" | "autofocus" | "ref" | "input" | "textarea" | "readonly" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
516
502
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
517
503
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
518
504
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -1343,79 +1329,51 @@ export declare const JcInputComplex: {
|
|
|
1343
1329
|
C: {};
|
|
1344
1330
|
M: {};
|
|
1345
1331
|
Defaults: {};
|
|
1346
|
-
}, Readonly<import('vue').
|
|
1347
|
-
|
|
1348
|
-
type: import('vue').PropType<Array<{
|
|
1349
|
-
label: string;
|
|
1350
|
-
value: string;
|
|
1351
|
-
}>>;
|
|
1352
|
-
require: boolean;
|
|
1353
|
-
default: () => never[];
|
|
1354
|
-
};
|
|
1355
|
-
size: {
|
|
1356
|
-
type: import('vue').PropType<"small" | "default" | "large">;
|
|
1357
|
-
default: string;
|
|
1358
|
-
validator: (value: string) => boolean;
|
|
1359
|
-
};
|
|
1360
|
-
width: {
|
|
1361
|
-
type: StringConstructor;
|
|
1362
|
-
default: string;
|
|
1363
|
-
};
|
|
1364
|
-
injectionKey: {
|
|
1365
|
-
type: StringConstructor;
|
|
1366
|
-
default: string;
|
|
1367
|
-
};
|
|
1368
|
-
}>> & Readonly<{
|
|
1369
|
-
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
1332
|
+
}, Readonly<import('./index.vue').Props> & Readonly<{
|
|
1333
|
+
onFieldChange?: ((val: string) => any) | undefined;
|
|
1370
1334
|
}>, {
|
|
1371
|
-
|
|
1335
|
+
blur: () => void | undefined;
|
|
1336
|
+
clear: () => void | undefined;
|
|
1337
|
+
focus: () => void | undefined;
|
|
1338
|
+
select: () => void | undefined;
|
|
1339
|
+
resizeTextarea: () => void | undefined;
|
|
1340
|
+
setInputValueMult: (query: any) => void;
|
|
1341
|
+
setInputByOutside: () => void;
|
|
1342
|
+
input: HTMLInputElement | undefined;
|
|
1343
|
+
ref: HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
1344
|
+
textarea: HTMLTextAreaElement | undefined;
|
|
1345
|
+
textareaStyle: import('vue').StyleValue;
|
|
1346
|
+
isComposing: boolean | undefined;
|
|
1372
1347
|
}, {}, {}, {}, {
|
|
1373
1348
|
size: "small" | "default" | "large";
|
|
1374
1349
|
injectionKey: string;
|
|
1375
1350
|
width: string;
|
|
1376
|
-
fieldList:
|
|
1377
|
-
label: string;
|
|
1378
|
-
value: string;
|
|
1379
|
-
}[];
|
|
1351
|
+
fieldList: import('./index.vue').InputComplexFieldItem[];
|
|
1380
1352
|
}>;
|
|
1381
1353
|
__isFragment?: never;
|
|
1382
1354
|
__isTeleport?: never;
|
|
1383
1355
|
__isSuspense?: never;
|
|
1384
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('vue').
|
|
1385
|
-
|
|
1386
|
-
type: import('vue').PropType<Array<{
|
|
1387
|
-
label: string;
|
|
1388
|
-
value: string;
|
|
1389
|
-
}>>;
|
|
1390
|
-
require: boolean;
|
|
1391
|
-
default: () => never[];
|
|
1392
|
-
};
|
|
1393
|
-
size: {
|
|
1394
|
-
type: import('vue').PropType<"small" | "default" | "large">;
|
|
1395
|
-
default: string;
|
|
1396
|
-
validator: (value: string) => boolean;
|
|
1397
|
-
};
|
|
1398
|
-
width: {
|
|
1399
|
-
type: StringConstructor;
|
|
1400
|
-
default: string;
|
|
1401
|
-
};
|
|
1402
|
-
injectionKey: {
|
|
1403
|
-
type: StringConstructor;
|
|
1404
|
-
default: string;
|
|
1405
|
-
};
|
|
1406
|
-
}>> & Readonly<{
|
|
1407
|
-
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
1356
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./index.vue').Props> & Readonly<{
|
|
1357
|
+
onFieldChange?: ((val: string) => any) | undefined;
|
|
1408
1358
|
}>, {
|
|
1409
|
-
|
|
1359
|
+
blur: () => void | undefined;
|
|
1360
|
+
clear: () => void | undefined;
|
|
1361
|
+
focus: () => void | undefined;
|
|
1362
|
+
select: () => void | undefined;
|
|
1363
|
+
resizeTextarea: () => void | undefined;
|
|
1364
|
+
setInputValueMult: (query: any) => void;
|
|
1365
|
+
setInputByOutside: () => void;
|
|
1366
|
+
input: HTMLInputElement | undefined;
|
|
1367
|
+
ref: HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
1368
|
+
textarea: HTMLTextAreaElement | undefined;
|
|
1369
|
+
textareaStyle: import('vue').StyleValue;
|
|
1370
|
+
isComposing: boolean | undefined;
|
|
1410
1371
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1411
|
-
fieldChange: (
|
|
1372
|
+
fieldChange: (val: string) => any;
|
|
1412
1373
|
}, string, {
|
|
1413
1374
|
size: "small" | "default" | "large";
|
|
1414
1375
|
injectionKey: string;
|
|
1415
1376
|
width: string;
|
|
1416
|
-
fieldList:
|
|
1417
|
-
label: string;
|
|
1418
|
-
value: string;
|
|
1419
|
-
}[];
|
|
1377
|
+
fieldList: import('./index.vue').InputComplexFieldItem[];
|
|
1420
1378
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin;
|
|
1421
1379
|
export default JcInputComplex;
|