@das-fed/upf-ui 6.4.0-dev.146 → 6.4.0-dev.148
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/package.json +5 -5
- package/packages/components/select/index.d.ts +3 -0
- package/packages/components/select/index.js +68 -67
- package/packages/components/select/index.js.gz +0 -0
- package/packages/components/select/src/Select.vue.d.ts +1 -0
- package/packages/components/select/src/type.d.ts +2 -0
- package/packages/components/select/style.css +1 -1
- package/packages/components/select/style.css.gz +0 -0
- package/packages/components/table/index.js +3266 -3226
- package/packages/components/table/index.js.gz +0 -0
- package/packages/components/table/src/table-column/index.vue.d.ts +19 -18
- package/packages/components/table/src/table-column/type.d.ts +3 -0
- package/packages/components/table/style.css +1 -1
- package/packages/components/table/style.css.gz +0 -0
- package/packages/components/tree/index.js +241 -239
- package/packages/components/tree/index.js.gz +0 -0
- package/packages/components/tree-select/src/App.vue.d.ts +8 -2
- package/packages/components/tree-select/src/hooks/use-tree-select.d.ts +8 -2
|
Binary file
|
|
@@ -38,6 +38,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
38
38
|
readonly isExterControlCount?: boolean | undefined;
|
|
39
39
|
readonly dropdownMode?: "multiple" | "tags" | "combobox" | "custom" | undefined;
|
|
40
40
|
readonly inputAttrs?: any;
|
|
41
|
+
readonly showSelectAll?: boolean | undefined;
|
|
41
42
|
readonly onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
42
43
|
readonly onFocus?: ((val: any) => any) | undefined;
|
|
43
44
|
readonly onBlur?: ((val: any) => any) | undefined;
|
|
@@ -104,6 +105,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
104
105
|
noDropdown: boolean;
|
|
105
106
|
maxTagsLength: number;
|
|
106
107
|
isExterControlCount: boolean;
|
|
108
|
+
showSelectAll: boolean;
|
|
107
109
|
}, {}, string, {}, {
|
|
108
110
|
VNodes: (_: any, { attrs }: Omit<{
|
|
109
111
|
attrs: {
|
|
@@ -163,6 +165,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
163
165
|
noDropdown: boolean;
|
|
164
166
|
maxTagsLength: number;
|
|
165
167
|
isExterControlCount: boolean;
|
|
168
|
+
showSelectAll: boolean;
|
|
166
169
|
}> & Omit<Readonly<import("../../select/src/type").Props> & Readonly<{
|
|
167
170
|
onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
168
171
|
onFocus?: ((val: any) => any) | undefined;
|
|
@@ -170,7 +173,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
170
173
|
"onUpdate:model-value"?: ((currValue: any) => any) | undefined;
|
|
171
174
|
onDropdownVisibleChange?: ((val: any) => any) | undefined;
|
|
172
175
|
onAddCustomItem?: ((val: any) => any) | undefined;
|
|
173
|
-
}>, "$select" | "toChangeMaxCount" | ("size" | "disabled" | "mode" | "modelValue" | "showArrow" | "open" | "teleported" | "getPopupContainer" | "width" | "borderType" | "placeholder" | "isView" | "error" | "errorMode" | "errorModelZIndex" | "noSetDefaultVal" | "fieldNames" | "optionFilterProp" | "maxTagTextLength" | "dropdownClassName" | "isTooltip" | "showTooltipLength" | "focusOpen" | "isRenderNode" | "noDropdown" | "maxTagsLength" | "isExterControlCount")> & import("vue").ShallowUnwrapRef<{
|
|
176
|
+
}>, "$select" | "toChangeMaxCount" | ("size" | "disabled" | "mode" | "modelValue" | "showArrow" | "open" | "teleported" | "getPopupContainer" | "width" | "borderType" | "placeholder" | "isView" | "error" | "errorMode" | "errorModelZIndex" | "noSetDefaultVal" | "fieldNames" | "optionFilterProp" | "maxTagTextLength" | "dropdownClassName" | "isTooltip" | "showTooltipLength" | "focusOpen" | "isRenderNode" | "noDropdown" | "maxTagsLength" | "isExterControlCount" | "showSelectAll")> & import("vue").ShallowUnwrapRef<{
|
|
174
177
|
$select: import("vue").Ref<any, any>;
|
|
175
178
|
toChangeMaxCount: (isFocus: boolean) => void;
|
|
176
179
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
@@ -225,6 +228,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
225
228
|
readonly isExterControlCount?: boolean | undefined;
|
|
226
229
|
readonly dropdownMode?: "multiple" | "tags" | "combobox" | "custom" | undefined;
|
|
227
230
|
readonly inputAttrs?: any;
|
|
231
|
+
readonly showSelectAll?: boolean | undefined;
|
|
228
232
|
readonly onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
229
233
|
readonly onFocus?: ((val: any) => any) | undefined;
|
|
230
234
|
readonly onBlur?: ((val: any) => any) | undefined;
|
|
@@ -291,6 +295,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
291
295
|
noDropdown: boolean;
|
|
292
296
|
maxTagsLength: number;
|
|
293
297
|
isExterControlCount: boolean;
|
|
298
|
+
showSelectAll: boolean;
|
|
294
299
|
}, {}, string, {}, {
|
|
295
300
|
VNodes: (_: any, { attrs }: Omit<{
|
|
296
301
|
attrs: {
|
|
@@ -350,6 +355,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
350
355
|
noDropdown: boolean;
|
|
351
356
|
maxTagsLength: number;
|
|
352
357
|
isExterControlCount: boolean;
|
|
358
|
+
showSelectAll: boolean;
|
|
353
359
|
}> & Omit<Readonly<import("../../select/src/type").Props> & Readonly<{
|
|
354
360
|
onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
355
361
|
onFocus?: ((val: any) => any) | undefined;
|
|
@@ -357,7 +363,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
357
363
|
"onUpdate:model-value"?: ((currValue: any) => any) | undefined;
|
|
358
364
|
onDropdownVisibleChange?: ((val: any) => any) | undefined;
|
|
359
365
|
onAddCustomItem?: ((val: any) => any) | undefined;
|
|
360
|
-
}>, "$select" | "toChangeMaxCount" | ("size" | "disabled" | "mode" | "modelValue" | "showArrow" | "open" | "teleported" | "getPopupContainer" | "width" | "borderType" | "placeholder" | "isView" | "error" | "errorMode" | "errorModelZIndex" | "noSetDefaultVal" | "fieldNames" | "optionFilterProp" | "maxTagTextLength" | "dropdownClassName" | "isTooltip" | "showTooltipLength" | "focusOpen" | "isRenderNode" | "noDropdown" | "maxTagsLength" | "isExterControlCount")> & import("vue").ShallowUnwrapRef<{
|
|
366
|
+
}>, "$select" | "toChangeMaxCount" | ("size" | "disabled" | "mode" | "modelValue" | "showArrow" | "open" | "teleported" | "getPopupContainer" | "width" | "borderType" | "placeholder" | "isView" | "error" | "errorMode" | "errorModelZIndex" | "noSetDefaultVal" | "fieldNames" | "optionFilterProp" | "maxTagTextLength" | "dropdownClassName" | "isTooltip" | "showTooltipLength" | "focusOpen" | "isRenderNode" | "noDropdown" | "maxTagsLength" | "isExterControlCount" | "showSelectAll")> & import("vue").ShallowUnwrapRef<{
|
|
361
367
|
$select: import("vue").Ref<any, any>;
|
|
362
368
|
toChangeMaxCount: (isFocus: boolean) => void;
|
|
363
369
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
@@ -6383,6 +6383,7 @@ export declare const useTreeSelect: (props: Props, emit: Emits, nodeKey: any, at
|
|
|
6383
6383
|
readonly isExterControlCount?: boolean | undefined;
|
|
6384
6384
|
readonly dropdownMode?: "multiple" | "tags" | "combobox" | "custom" | undefined;
|
|
6385
6385
|
readonly inputAttrs?: any;
|
|
6386
|
+
readonly showSelectAll?: boolean | undefined;
|
|
6386
6387
|
readonly onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
6387
6388
|
readonly onFocus?: ((val: any) => any) | undefined;
|
|
6388
6389
|
readonly onBlur?: ((val: any) => any) | undefined;
|
|
@@ -6449,6 +6450,7 @@ export declare const useTreeSelect: (props: Props, emit: Emits, nodeKey: any, at
|
|
|
6449
6450
|
noDropdown: boolean;
|
|
6450
6451
|
maxTagsLength: number;
|
|
6451
6452
|
isExterControlCount: boolean;
|
|
6453
|
+
showSelectAll: boolean;
|
|
6452
6454
|
}, {}, string, {}, {
|
|
6453
6455
|
VNodes: (_: any, { attrs }: Omit<{
|
|
6454
6456
|
attrs: {
|
|
@@ -6508,6 +6510,7 @@ export declare const useTreeSelect: (props: Props, emit: Emits, nodeKey: any, at
|
|
|
6508
6510
|
noDropdown: boolean;
|
|
6509
6511
|
maxTagsLength: number;
|
|
6510
6512
|
isExterControlCount: boolean;
|
|
6513
|
+
showSelectAll: boolean;
|
|
6511
6514
|
}> & Omit<Readonly<import("../../../select/src/type").Props> & Readonly<{
|
|
6512
6515
|
onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
6513
6516
|
onFocus?: ((val: any) => any) | undefined;
|
|
@@ -6515,7 +6518,7 @@ export declare const useTreeSelect: (props: Props, emit: Emits, nodeKey: any, at
|
|
|
6515
6518
|
"onUpdate:model-value"?: ((currValue: any) => any) | undefined;
|
|
6516
6519
|
onDropdownVisibleChange?: ((val: any) => any) | undefined;
|
|
6517
6520
|
onAddCustomItem?: ((val: any) => any) | undefined;
|
|
6518
|
-
}>, "$select" | "toChangeMaxCount" | ("size" | "disabled" | "mode" | "modelValue" | "showArrow" | "open" | "teleported" | "getPopupContainer" | "width" | "borderType" | "placeholder" | "isView" | "error" | "errorMode" | "errorModelZIndex" | "noSetDefaultVal" | "fieldNames" | "optionFilterProp" | "maxTagTextLength" | "dropdownClassName" | "isTooltip" | "showTooltipLength" | "focusOpen" | "isRenderNode" | "noDropdown" | "maxTagsLength" | "isExterControlCount")> & import("vue").ShallowUnwrapRef<{
|
|
6521
|
+
}>, "$select" | "toChangeMaxCount" | ("size" | "disabled" | "mode" | "modelValue" | "showArrow" | "open" | "teleported" | "getPopupContainer" | "width" | "borderType" | "placeholder" | "isView" | "error" | "errorMode" | "errorModelZIndex" | "noSetDefaultVal" | "fieldNames" | "optionFilterProp" | "maxTagTextLength" | "dropdownClassName" | "isTooltip" | "showTooltipLength" | "focusOpen" | "isRenderNode" | "noDropdown" | "maxTagsLength" | "isExterControlCount" | "showSelectAll")> & import("vue").ShallowUnwrapRef<{
|
|
6519
6522
|
$select: import("vue").Ref<any, any>;
|
|
6520
6523
|
toChangeMaxCount: (isFocus: boolean) => void;
|
|
6521
6524
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
@@ -6570,6 +6573,7 @@ export declare const useTreeSelect: (props: Props, emit: Emits, nodeKey: any, at
|
|
|
6570
6573
|
readonly isExterControlCount?: boolean | undefined;
|
|
6571
6574
|
readonly dropdownMode?: "multiple" | "tags" | "combobox" | "custom" | undefined;
|
|
6572
6575
|
readonly inputAttrs?: any;
|
|
6576
|
+
readonly showSelectAll?: boolean | undefined;
|
|
6573
6577
|
readonly onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
6574
6578
|
readonly onFocus?: ((val: any) => any) | undefined;
|
|
6575
6579
|
readonly onBlur?: ((val: any) => any) | undefined;
|
|
@@ -6636,6 +6640,7 @@ export declare const useTreeSelect: (props: Props, emit: Emits, nodeKey: any, at
|
|
|
6636
6640
|
noDropdown: boolean;
|
|
6637
6641
|
maxTagsLength: number;
|
|
6638
6642
|
isExterControlCount: boolean;
|
|
6643
|
+
showSelectAll: boolean;
|
|
6639
6644
|
}, {}, string, {}, {
|
|
6640
6645
|
VNodes: (_: any, { attrs }: Omit<{
|
|
6641
6646
|
attrs: {
|
|
@@ -6695,6 +6700,7 @@ export declare const useTreeSelect: (props: Props, emit: Emits, nodeKey: any, at
|
|
|
6695
6700
|
noDropdown: boolean;
|
|
6696
6701
|
maxTagsLength: number;
|
|
6697
6702
|
isExterControlCount: boolean;
|
|
6703
|
+
showSelectAll: boolean;
|
|
6698
6704
|
}> & Omit<Readonly<import("../../../select/src/type").Props> & Readonly<{
|
|
6699
6705
|
onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
6700
6706
|
onFocus?: ((val: any) => any) | undefined;
|
|
@@ -6702,7 +6708,7 @@ export declare const useTreeSelect: (props: Props, emit: Emits, nodeKey: any, at
|
|
|
6702
6708
|
"onUpdate:model-value"?: ((currValue: any) => any) | undefined;
|
|
6703
6709
|
onDropdownVisibleChange?: ((val: any) => any) | undefined;
|
|
6704
6710
|
onAddCustomItem?: ((val: any) => any) | undefined;
|
|
6705
|
-
}>, "$select" | "toChangeMaxCount" | ("size" | "disabled" | "mode" | "modelValue" | "showArrow" | "open" | "teleported" | "getPopupContainer" | "width" | "borderType" | "placeholder" | "isView" | "error" | "errorMode" | "errorModelZIndex" | "noSetDefaultVal" | "fieldNames" | "optionFilterProp" | "maxTagTextLength" | "dropdownClassName" | "isTooltip" | "showTooltipLength" | "focusOpen" | "isRenderNode" | "noDropdown" | "maxTagsLength" | "isExterControlCount")> & import("vue").ShallowUnwrapRef<{
|
|
6711
|
+
}>, "$select" | "toChangeMaxCount" | ("size" | "disabled" | "mode" | "modelValue" | "showArrow" | "open" | "teleported" | "getPopupContainer" | "width" | "borderType" | "placeholder" | "isView" | "error" | "errorMode" | "errorModelZIndex" | "noSetDefaultVal" | "fieldNames" | "optionFilterProp" | "maxTagTextLength" | "dropdownClassName" | "isTooltip" | "showTooltipLength" | "focusOpen" | "isRenderNode" | "noDropdown" | "maxTagsLength" | "isExterControlCount" | "showSelectAll")> & import("vue").ShallowUnwrapRef<{
|
|
6706
6712
|
$select: import("vue").Ref<any, any>;
|
|
6707
6713
|
toChangeMaxCount: (isFocus: boolean) => void;
|
|
6708
6714
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|