@ironsource/shared-ui 2.1.11-test.7 → 2.1.11-test.9
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/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_ba28c717_lang.css +1 -0
- package/ConditionalDroprown.vue_vue_type_style_index_0_scoped_546e19a9_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_f88a132e_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_df830bf5_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_bdfb0aef_lang.css +1 -0
- package/components/autocomplete/Autocomplete.vue2.js +3 -2
- package/components/chart/SettingsHeader.vue2.js +3 -2
- package/components/datePicker/v4/DatePickerV4.vue2.js +8 -7
- package/components/dateRange/v4/DateRangeV4.vue2.js +21 -20
- package/components/dropdown/common/Dropdown.common.js +127 -127
- package/components/dropdown/v3/Dropdown.vue.d.ts +1 -1
- package/components/dropdown/v3/index.d.ts +12 -12
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +66 -44
- package/components/dropdown/v4/ConditionalDroprown.vue.d.ts +68 -0
- package/components/dropdown/v4/ConditionalDroprown.vue.js +7 -0
- package/components/dropdown/v4/ConditionalDroprown.vue2.js +157 -0
- package/components/dropdown/v4/DropdownV4.vue.d.ts +6 -5
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +85 -78
- package/components/dropdown/v4/OptionV4.vue.d.ts +5 -0
- package/components/dropdown/v4/OptionV4.vue.js +2 -2
- package/components/dropdown/v4/OptionV4.vue2.js +119 -93
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +105 -95
- package/components/dropdown/v4/index.d.ts +160 -27
- package/components/dropdown/v4/index.js +6 -3
- package/components/multibar/MultiBarMenu.vue2.js +3 -2
- package/components/popover/v4/PopoverV4.vue.js +3 -2
- package/components/popover/v4/PopoverV4.vue2.js +1 -1
- package/components/table/common/Table.common.js +26 -28
- package/components/table/v4/DataGridMenu.vue2.js +3 -2
- package/index.d.ts +316 -51
- package/index.js +1 -1
- package/mocks/options.d.ts +19 -4
- package/package.json +2 -1
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_49bd7193_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_562f0b72_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_da829544_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_985779f7_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -15830,13 +15830,13 @@ declare const _default: {
|
|
|
15830
15830
|
optionTwoLinesKey: string;
|
|
15831
15831
|
groupedOptions: boolean;
|
|
15832
15832
|
comparingKey: string;
|
|
15833
|
-
withConditions: boolean;
|
|
15834
15833
|
customNumberOfDisplayedOptions: number;
|
|
15835
15834
|
fullWidth: boolean;
|
|
15836
15835
|
optionsListWidth: string;
|
|
15837
15836
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
15838
15837
|
disableVirtualScroll: boolean;
|
|
15839
15838
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
15839
|
+
withConditions: boolean;
|
|
15840
15840
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
15841
15841
|
theme: {
|
|
15842
15842
|
type: import("vue").PropType<string>;
|
|
@@ -16044,11 +16044,6 @@ declare const _default: {
|
|
|
16044
16044
|
type: import("vue").PropType<string>;
|
|
16045
16045
|
default: any;
|
|
16046
16046
|
};
|
|
16047
|
-
withConditions: {
|
|
16048
|
-
type: import("vue").PropType<boolean>;
|
|
16049
|
-
required: true;
|
|
16050
|
-
default: boolean;
|
|
16051
|
-
};
|
|
16052
16047
|
customNumberOfDisplayedOptions: {
|
|
16053
16048
|
type: import("vue").PropType<number>;
|
|
16054
16049
|
default: any;
|
|
@@ -16073,6 +16068,10 @@ declare const _default: {
|
|
|
16073
16068
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16074
16069
|
default: any;
|
|
16075
16070
|
};
|
|
16071
|
+
withConditions: {
|
|
16072
|
+
type: import("vue").PropType<boolean>;
|
|
16073
|
+
default: boolean;
|
|
16074
|
+
};
|
|
16076
16075
|
}>> & {
|
|
16077
16076
|
onCopyToClipboard?: () => any;
|
|
16078
16077
|
onClear?: () => any;
|
|
@@ -16083,7 +16082,7 @@ declare const _default: {
|
|
|
16083
16082
|
onOnsearch?: (value: string) => any;
|
|
16084
16083
|
onOpened?: () => any;
|
|
16085
16084
|
onClosed?: () => any;
|
|
16086
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "
|
|
16085
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16087
16086
|
$attrs: {
|
|
16088
16087
|
[x: string]: unknown;
|
|
16089
16088
|
};
|
|
@@ -16304,11 +16303,6 @@ declare const _default: {
|
|
|
16304
16303
|
type: import("vue").PropType<string>;
|
|
16305
16304
|
default: any;
|
|
16306
16305
|
};
|
|
16307
|
-
withConditions: {
|
|
16308
|
-
type: import("vue").PropType<boolean>;
|
|
16309
|
-
required: true;
|
|
16310
|
-
default: boolean;
|
|
16311
|
-
};
|
|
16312
16306
|
customNumberOfDisplayedOptions: {
|
|
16313
16307
|
type: import("vue").PropType<number>;
|
|
16314
16308
|
default: any;
|
|
@@ -16333,6 +16327,10 @@ declare const _default: {
|
|
|
16333
16327
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16334
16328
|
default: any;
|
|
16335
16329
|
};
|
|
16330
|
+
withConditions: {
|
|
16331
|
+
type: import("vue").PropType<boolean>;
|
|
16332
|
+
default: boolean;
|
|
16333
|
+
};
|
|
16336
16334
|
}>> & {
|
|
16337
16335
|
onCopyToClipboard?: () => any;
|
|
16338
16336
|
onClear?: () => any;
|
|
@@ -16405,13 +16403,13 @@ declare const _default: {
|
|
|
16405
16403
|
optionTwoLinesKey: string;
|
|
16406
16404
|
groupedOptions: boolean;
|
|
16407
16405
|
comparingKey: string;
|
|
16408
|
-
withConditions: boolean;
|
|
16409
16406
|
customNumberOfDisplayedOptions: number;
|
|
16410
16407
|
fullWidth: boolean;
|
|
16411
16408
|
optionsListWidth: string;
|
|
16412
16409
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
16413
16410
|
disableVirtualScroll: boolean;
|
|
16414
16411
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
16412
|
+
withConditions: boolean;
|
|
16415
16413
|
}, {}, string> & {
|
|
16416
16414
|
beforeCreate?: (() => void) | (() => void)[];
|
|
16417
16415
|
created?: (() => void) | (() => void)[];
|
|
@@ -16639,11 +16637,6 @@ declare const _default: {
|
|
|
16639
16637
|
type: import("vue").PropType<string>;
|
|
16640
16638
|
default: any;
|
|
16641
16639
|
};
|
|
16642
|
-
withConditions: {
|
|
16643
|
-
type: import("vue").PropType<boolean>;
|
|
16644
|
-
required: true;
|
|
16645
|
-
default: boolean;
|
|
16646
|
-
};
|
|
16647
16640
|
customNumberOfDisplayedOptions: {
|
|
16648
16641
|
type: import("vue").PropType<number>;
|
|
16649
16642
|
default: any;
|
|
@@ -16668,6 +16661,10 @@ declare const _default: {
|
|
|
16668
16661
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16669
16662
|
default: any;
|
|
16670
16663
|
};
|
|
16664
|
+
withConditions: {
|
|
16665
|
+
type: import("vue").PropType<boolean>;
|
|
16666
|
+
default: boolean;
|
|
16667
|
+
};
|
|
16671
16668
|
}>> & {
|
|
16672
16669
|
onCopyToClipboard?: () => any;
|
|
16673
16670
|
onClear?: () => any;
|
|
@@ -16892,11 +16889,6 @@ declare const _default: {
|
|
|
16892
16889
|
type: import("vue").PropType<string>;
|
|
16893
16890
|
default: any;
|
|
16894
16891
|
};
|
|
16895
|
-
withConditions: {
|
|
16896
|
-
type: import("vue").PropType<boolean>;
|
|
16897
|
-
required: true;
|
|
16898
|
-
default: boolean;
|
|
16899
|
-
};
|
|
16900
16892
|
customNumberOfDisplayedOptions: {
|
|
16901
16893
|
type: import("vue").PropType<number>;
|
|
16902
16894
|
default: any;
|
|
@@ -16921,6 +16913,10 @@ declare const _default: {
|
|
|
16921
16913
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16922
16914
|
default: any;
|
|
16923
16915
|
};
|
|
16916
|
+
withConditions: {
|
|
16917
|
+
type: import("vue").PropType<boolean>;
|
|
16918
|
+
default: boolean;
|
|
16919
|
+
};
|
|
16924
16920
|
}>> & {
|
|
16925
16921
|
onCopyToClipboard?: () => any;
|
|
16926
16922
|
onClear?: () => any;
|
|
@@ -16993,13 +16989,13 @@ declare const _default: {
|
|
|
16993
16989
|
optionTwoLinesKey: string;
|
|
16994
16990
|
groupedOptions: boolean;
|
|
16995
16991
|
comparingKey: string;
|
|
16996
|
-
withConditions: boolean;
|
|
16997
16992
|
customNumberOfDisplayedOptions: number;
|
|
16998
16993
|
fullWidth: boolean;
|
|
16999
16994
|
optionsListWidth: string;
|
|
17000
16995
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
17001
16996
|
disableVirtualScroll: boolean;
|
|
17002
16997
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
16998
|
+
withConditions: boolean;
|
|
17003
16999
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
17004
17000
|
$slots: {
|
|
17005
17001
|
label?(_: {}): any;
|
|
@@ -17045,6 +17041,7 @@ declare const _default: {
|
|
|
17045
17041
|
"input-list"?(_: {
|
|
17046
17042
|
open: true;
|
|
17047
17043
|
}): any;
|
|
17044
|
+
"custom-list-area"?(_: {}): any;
|
|
17048
17045
|
"select-all"?(_: {}): any;
|
|
17049
17046
|
"group-option"?(_: {}): any;
|
|
17050
17047
|
default?(_: {
|
|
@@ -19647,6 +19644,7 @@ declare const _default: {
|
|
|
19647
19644
|
treeMainOptionExpanded: boolean;
|
|
19648
19645
|
stopOptionClickEventPropagation: boolean;
|
|
19649
19646
|
treeChildShown: boolean;
|
|
19647
|
+
isMulti: boolean;
|
|
19650
19648
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
19651
19649
|
option: {
|
|
19652
19650
|
type: import("vue").PropType<unknown>;
|
|
@@ -19732,12 +19730,16 @@ declare const _default: {
|
|
|
19732
19730
|
type: import("vue").PropType<boolean>;
|
|
19733
19731
|
default: boolean;
|
|
19734
19732
|
};
|
|
19733
|
+
isMulti: {
|
|
19734
|
+
type: import("vue").PropType<boolean>;
|
|
19735
|
+
default: boolean;
|
|
19736
|
+
};
|
|
19735
19737
|
selectedProp: {
|
|
19736
19738
|
type: import("vue").PropType<boolean>;
|
|
19737
19739
|
};
|
|
19738
19740
|
}>> & {
|
|
19739
19741
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
19740
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
|
|
19742
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
19741
19743
|
$attrs: {
|
|
19742
19744
|
[x: string]: unknown;
|
|
19743
19745
|
};
|
|
@@ -19836,6 +19838,10 @@ declare const _default: {
|
|
|
19836
19838
|
type: import("vue").PropType<boolean>;
|
|
19837
19839
|
default: boolean;
|
|
19838
19840
|
};
|
|
19841
|
+
isMulti: {
|
|
19842
|
+
type: import("vue").PropType<boolean>;
|
|
19843
|
+
default: boolean;
|
|
19844
|
+
};
|
|
19839
19845
|
selectedProp: {
|
|
19840
19846
|
type: import("vue").PropType<boolean>;
|
|
19841
19847
|
};
|
|
@@ -19865,6 +19871,7 @@ declare const _default: {
|
|
|
19865
19871
|
treeMainOptionExpanded: boolean;
|
|
19866
19872
|
stopOptionClickEventPropagation: boolean;
|
|
19867
19873
|
treeChildShown: boolean;
|
|
19874
|
+
isMulti: boolean;
|
|
19868
19875
|
}, {}, string> & {
|
|
19869
19876
|
beforeCreate?: (() => void) | (() => void)[];
|
|
19870
19877
|
created?: (() => void) | (() => void)[];
|
|
@@ -19970,6 +19977,10 @@ declare const _default: {
|
|
|
19970
19977
|
type: import("vue").PropType<boolean>;
|
|
19971
19978
|
default: boolean;
|
|
19972
19979
|
};
|
|
19980
|
+
isMulti: {
|
|
19981
|
+
type: import("vue").PropType<boolean>;
|
|
19982
|
+
default: boolean;
|
|
19983
|
+
};
|
|
19973
19984
|
selectedProp: {
|
|
19974
19985
|
type: import("vue").PropType<boolean>;
|
|
19975
19986
|
};
|
|
@@ -20064,6 +20075,10 @@ declare const _default: {
|
|
|
20064
20075
|
type: import("vue").PropType<boolean>;
|
|
20065
20076
|
default: boolean;
|
|
20066
20077
|
};
|
|
20078
|
+
isMulti: {
|
|
20079
|
+
type: import("vue").PropType<boolean>;
|
|
20080
|
+
default: boolean;
|
|
20081
|
+
};
|
|
20067
20082
|
selectedProp: {
|
|
20068
20083
|
type: import("vue").PropType<boolean>;
|
|
20069
20084
|
};
|
|
@@ -20093,6 +20108,7 @@ declare const _default: {
|
|
|
20093
20108
|
treeMainOptionExpanded: boolean;
|
|
20094
20109
|
stopOptionClickEventPropagation: boolean;
|
|
20095
20110
|
treeChildShown: boolean;
|
|
20111
|
+
isMulti: boolean;
|
|
20096
20112
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
20097
20113
|
$slots: {
|
|
20098
20114
|
image?(_: {}): any;
|
|
@@ -20274,13 +20290,13 @@ declare const _default: {
|
|
|
20274
20290
|
optionTwoLinesKey: string;
|
|
20275
20291
|
groupedOptions: boolean;
|
|
20276
20292
|
comparingKey: string;
|
|
20277
|
-
withConditions: boolean;
|
|
20278
20293
|
customNumberOfDisplayedOptions: number;
|
|
20279
20294
|
fullWidth: boolean;
|
|
20280
20295
|
optionsListWidth: string;
|
|
20281
20296
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
20282
20297
|
disableVirtualScroll: boolean;
|
|
20283
20298
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
20299
|
+
withConditions: boolean;
|
|
20284
20300
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
20285
20301
|
theme: {
|
|
20286
20302
|
type: import("vue").PropType<string>;
|
|
@@ -20488,11 +20504,6 @@ declare const _default: {
|
|
|
20488
20504
|
type: import("vue").PropType<string>;
|
|
20489
20505
|
default: any;
|
|
20490
20506
|
};
|
|
20491
|
-
withConditions: {
|
|
20492
|
-
type: import("vue").PropType<boolean>;
|
|
20493
|
-
required: true;
|
|
20494
|
-
default: boolean;
|
|
20495
|
-
};
|
|
20496
20507
|
customNumberOfDisplayedOptions: {
|
|
20497
20508
|
type: import("vue").PropType<number>;
|
|
20498
20509
|
default: any;
|
|
@@ -20517,6 +20528,10 @@ declare const _default: {
|
|
|
20517
20528
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
20518
20529
|
default: any;
|
|
20519
20530
|
};
|
|
20531
|
+
withConditions: {
|
|
20532
|
+
type: import("vue").PropType<boolean>;
|
|
20533
|
+
default: boolean;
|
|
20534
|
+
};
|
|
20520
20535
|
}>> & {
|
|
20521
20536
|
onCopyToClipboard?: () => any;
|
|
20522
20537
|
onClear?: () => any;
|
|
@@ -20527,7 +20542,7 @@ declare const _default: {
|
|
|
20527
20542
|
onOnsearch?: (value: string) => any;
|
|
20528
20543
|
onOpened?: () => any;
|
|
20529
20544
|
onClosed?: () => any;
|
|
20530
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "
|
|
20545
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
20531
20546
|
$attrs: {
|
|
20532
20547
|
[x: string]: unknown;
|
|
20533
20548
|
};
|
|
@@ -20748,11 +20763,6 @@ declare const _default: {
|
|
|
20748
20763
|
type: import("vue").PropType<string>;
|
|
20749
20764
|
default: any;
|
|
20750
20765
|
};
|
|
20751
|
-
withConditions: {
|
|
20752
|
-
type: import("vue").PropType<boolean>;
|
|
20753
|
-
required: true;
|
|
20754
|
-
default: boolean;
|
|
20755
|
-
};
|
|
20756
20766
|
customNumberOfDisplayedOptions: {
|
|
20757
20767
|
type: import("vue").PropType<number>;
|
|
20758
20768
|
default: any;
|
|
@@ -20777,6 +20787,10 @@ declare const _default: {
|
|
|
20777
20787
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
20778
20788
|
default: any;
|
|
20779
20789
|
};
|
|
20790
|
+
withConditions: {
|
|
20791
|
+
type: import("vue").PropType<boolean>;
|
|
20792
|
+
default: boolean;
|
|
20793
|
+
};
|
|
20780
20794
|
}>> & {
|
|
20781
20795
|
onCopyToClipboard?: () => any;
|
|
20782
20796
|
onClear?: () => any;
|
|
@@ -20849,13 +20863,13 @@ declare const _default: {
|
|
|
20849
20863
|
optionTwoLinesKey: string;
|
|
20850
20864
|
groupedOptions: boolean;
|
|
20851
20865
|
comparingKey: string;
|
|
20852
|
-
withConditions: boolean;
|
|
20853
20866
|
customNumberOfDisplayedOptions: number;
|
|
20854
20867
|
fullWidth: boolean;
|
|
20855
20868
|
optionsListWidth: string;
|
|
20856
20869
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
20857
20870
|
disableVirtualScroll: boolean;
|
|
20858
20871
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
20872
|
+
withConditions: boolean;
|
|
20859
20873
|
}, {}, string> & {
|
|
20860
20874
|
beforeCreate?: (() => void) | (() => void)[];
|
|
20861
20875
|
created?: (() => void) | (() => void)[];
|
|
@@ -21083,11 +21097,6 @@ declare const _default: {
|
|
|
21083
21097
|
type: import("vue").PropType<string>;
|
|
21084
21098
|
default: any;
|
|
21085
21099
|
};
|
|
21086
|
-
withConditions: {
|
|
21087
|
-
type: import("vue").PropType<boolean>;
|
|
21088
|
-
required: true;
|
|
21089
|
-
default: boolean;
|
|
21090
|
-
};
|
|
21091
21100
|
customNumberOfDisplayedOptions: {
|
|
21092
21101
|
type: import("vue").PropType<number>;
|
|
21093
21102
|
default: any;
|
|
@@ -21112,6 +21121,10 @@ declare const _default: {
|
|
|
21112
21121
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
21113
21122
|
default: any;
|
|
21114
21123
|
};
|
|
21124
|
+
withConditions: {
|
|
21125
|
+
type: import("vue").PropType<boolean>;
|
|
21126
|
+
default: boolean;
|
|
21127
|
+
};
|
|
21115
21128
|
}>> & {
|
|
21116
21129
|
onCopyToClipboard?: () => any;
|
|
21117
21130
|
onClear?: () => any;
|
|
@@ -21336,11 +21349,6 @@ declare const _default: {
|
|
|
21336
21349
|
type: import("vue").PropType<string>;
|
|
21337
21350
|
default: any;
|
|
21338
21351
|
};
|
|
21339
|
-
withConditions: {
|
|
21340
|
-
type: import("vue").PropType<boolean>;
|
|
21341
|
-
required: true;
|
|
21342
|
-
default: boolean;
|
|
21343
|
-
};
|
|
21344
21352
|
customNumberOfDisplayedOptions: {
|
|
21345
21353
|
type: import("vue").PropType<number>;
|
|
21346
21354
|
default: any;
|
|
@@ -21365,6 +21373,10 @@ declare const _default: {
|
|
|
21365
21373
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
21366
21374
|
default: any;
|
|
21367
21375
|
};
|
|
21376
|
+
withConditions: {
|
|
21377
|
+
type: import("vue").PropType<boolean>;
|
|
21378
|
+
default: boolean;
|
|
21379
|
+
};
|
|
21368
21380
|
}>> & {
|
|
21369
21381
|
onCopyToClipboard?: () => any;
|
|
21370
21382
|
onClear?: () => any;
|
|
@@ -21437,13 +21449,13 @@ declare const _default: {
|
|
|
21437
21449
|
optionTwoLinesKey: string;
|
|
21438
21450
|
groupedOptions: boolean;
|
|
21439
21451
|
comparingKey: string;
|
|
21440
|
-
withConditions: boolean;
|
|
21441
21452
|
customNumberOfDisplayedOptions: number;
|
|
21442
21453
|
fullWidth: boolean;
|
|
21443
21454
|
optionsListWidth: string;
|
|
21444
21455
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
21445
21456
|
disableVirtualScroll: boolean;
|
|
21446
21457
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
21458
|
+
withConditions: boolean;
|
|
21447
21459
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
21448
21460
|
$slots: {
|
|
21449
21461
|
label?(_: {}): any;
|
|
@@ -21489,6 +21501,7 @@ declare const _default: {
|
|
|
21489
21501
|
"input-list"?(_: {
|
|
21490
21502
|
open: true;
|
|
21491
21503
|
}): any;
|
|
21504
|
+
"custom-list-area"?(_: {}): any;
|
|
21492
21505
|
"select-all"?(_: {}): any;
|
|
21493
21506
|
"group-option"?(_: {}): any;
|
|
21494
21507
|
default?(_: {
|
|
@@ -22025,7 +22038,123 @@ declare const _default: {
|
|
|
22025
22038
|
$slots: {
|
|
22026
22039
|
"trigger-end-icon"?(_: {}): any;
|
|
22027
22040
|
};
|
|
22028
|
-
})))
|
|
22041
|
+
})) | import("vue").DefineComponent<{
|
|
22042
|
+
label: {
|
|
22043
|
+
type: import("vue").PropType<string>;
|
|
22044
|
+
required: true;
|
|
22045
|
+
default: string;
|
|
22046
|
+
};
|
|
22047
|
+
testId: {
|
|
22048
|
+
type: import("vue").PropType<string>;
|
|
22049
|
+
default: string;
|
|
22050
|
+
};
|
|
22051
|
+
optionNameKey: {
|
|
22052
|
+
type: import("vue").PropType<string>;
|
|
22053
|
+
required: true;
|
|
22054
|
+
default: string;
|
|
22055
|
+
};
|
|
22056
|
+
comparingKey: {
|
|
22057
|
+
type: import("vue").PropType<string>;
|
|
22058
|
+
required: true;
|
|
22059
|
+
default: string;
|
|
22060
|
+
};
|
|
22061
|
+
conditionalOptions: {
|
|
22062
|
+
type: import("vue").PropType<{
|
|
22063
|
+
label: string;
|
|
22064
|
+
value: string;
|
|
22065
|
+
multi: boolean;
|
|
22066
|
+
}[]>;
|
|
22067
|
+
required: true;
|
|
22068
|
+
};
|
|
22069
|
+
selectedCondition: {
|
|
22070
|
+
type: import("vue").PropType<{
|
|
22071
|
+
label: string;
|
|
22072
|
+
value: string;
|
|
22073
|
+
multi: boolean;
|
|
22074
|
+
}>;
|
|
22075
|
+
required: true;
|
|
22076
|
+
};
|
|
22077
|
+
appliedSelections: {
|
|
22078
|
+
type: import("vue").PropType<unknown>;
|
|
22079
|
+
required: true;
|
|
22080
|
+
};
|
|
22081
|
+
fetchFnCallback: {
|
|
22082
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
22083
|
+
required: true;
|
|
22084
|
+
};
|
|
22085
|
+
minCharsToStart: {
|
|
22086
|
+
type: import("vue").PropType<number>;
|
|
22087
|
+
default: number;
|
|
22088
|
+
};
|
|
22089
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22090
|
+
"update:selectedCondition": (value: {
|
|
22091
|
+
label: string;
|
|
22092
|
+
value: string;
|
|
22093
|
+
multi: boolean;
|
|
22094
|
+
}) => void;
|
|
22095
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
22096
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22097
|
+
label: {
|
|
22098
|
+
type: import("vue").PropType<string>;
|
|
22099
|
+
required: true;
|
|
22100
|
+
default: string;
|
|
22101
|
+
};
|
|
22102
|
+
testId: {
|
|
22103
|
+
type: import("vue").PropType<string>;
|
|
22104
|
+
default: string;
|
|
22105
|
+
};
|
|
22106
|
+
optionNameKey: {
|
|
22107
|
+
type: import("vue").PropType<string>;
|
|
22108
|
+
required: true;
|
|
22109
|
+
default: string;
|
|
22110
|
+
};
|
|
22111
|
+
comparingKey: {
|
|
22112
|
+
type: import("vue").PropType<string>;
|
|
22113
|
+
required: true;
|
|
22114
|
+
default: string;
|
|
22115
|
+
};
|
|
22116
|
+
conditionalOptions: {
|
|
22117
|
+
type: import("vue").PropType<{
|
|
22118
|
+
label: string;
|
|
22119
|
+
value: string;
|
|
22120
|
+
multi: boolean;
|
|
22121
|
+
}[]>;
|
|
22122
|
+
required: true;
|
|
22123
|
+
};
|
|
22124
|
+
selectedCondition: {
|
|
22125
|
+
type: import("vue").PropType<{
|
|
22126
|
+
label: string;
|
|
22127
|
+
value: string;
|
|
22128
|
+
multi: boolean;
|
|
22129
|
+
}>;
|
|
22130
|
+
required: true;
|
|
22131
|
+
};
|
|
22132
|
+
appliedSelections: {
|
|
22133
|
+
type: import("vue").PropType<unknown>;
|
|
22134
|
+
required: true;
|
|
22135
|
+
};
|
|
22136
|
+
fetchFnCallback: {
|
|
22137
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
22138
|
+
required: true;
|
|
22139
|
+
};
|
|
22140
|
+
minCharsToStart: {
|
|
22141
|
+
type: import("vue").PropType<number>;
|
|
22142
|
+
default: number;
|
|
22143
|
+
};
|
|
22144
|
+
}>> & {
|
|
22145
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
22146
|
+
label: string;
|
|
22147
|
+
value: string;
|
|
22148
|
+
multi: boolean;
|
|
22149
|
+
}) => any;
|
|
22150
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
22151
|
+
}, {
|
|
22152
|
+
label: string;
|
|
22153
|
+
testId: string;
|
|
22154
|
+
optionNameKey: string;
|
|
22155
|
+
comparingKey: string;
|
|
22156
|
+
minCharsToStart: number;
|
|
22157
|
+
}>)[];
|
|
22029
22158
|
Option: {
|
|
22030
22159
|
new (...args: any[]): {
|
|
22031
22160
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -22052,6 +22181,7 @@ declare const _default: {
|
|
|
22052
22181
|
treeMainOptionExpanded: boolean;
|
|
22053
22182
|
stopOptionClickEventPropagation: boolean;
|
|
22054
22183
|
treeChildShown: boolean;
|
|
22184
|
+
isMulti: boolean;
|
|
22055
22185
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
22056
22186
|
option: {
|
|
22057
22187
|
type: import("vue").PropType<unknown>;
|
|
@@ -22137,12 +22267,16 @@ declare const _default: {
|
|
|
22137
22267
|
type: import("vue").PropType<boolean>;
|
|
22138
22268
|
default: boolean;
|
|
22139
22269
|
};
|
|
22270
|
+
isMulti: {
|
|
22271
|
+
type: import("vue").PropType<boolean>;
|
|
22272
|
+
default: boolean;
|
|
22273
|
+
};
|
|
22140
22274
|
selectedProp: {
|
|
22141
22275
|
type: import("vue").PropType<boolean>;
|
|
22142
22276
|
};
|
|
22143
22277
|
}>> & {
|
|
22144
22278
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
22145
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
|
|
22279
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
22146
22280
|
$attrs: {
|
|
22147
22281
|
[x: string]: unknown;
|
|
22148
22282
|
};
|
|
@@ -22241,6 +22375,10 @@ declare const _default: {
|
|
|
22241
22375
|
type: import("vue").PropType<boolean>;
|
|
22242
22376
|
default: boolean;
|
|
22243
22377
|
};
|
|
22378
|
+
isMulti: {
|
|
22379
|
+
type: import("vue").PropType<boolean>;
|
|
22380
|
+
default: boolean;
|
|
22381
|
+
};
|
|
22244
22382
|
selectedProp: {
|
|
22245
22383
|
type: import("vue").PropType<boolean>;
|
|
22246
22384
|
};
|
|
@@ -22270,6 +22408,7 @@ declare const _default: {
|
|
|
22270
22408
|
treeMainOptionExpanded: boolean;
|
|
22271
22409
|
stopOptionClickEventPropagation: boolean;
|
|
22272
22410
|
treeChildShown: boolean;
|
|
22411
|
+
isMulti: boolean;
|
|
22273
22412
|
}, {}, string> & {
|
|
22274
22413
|
beforeCreate?: (() => void) | (() => void)[];
|
|
22275
22414
|
created?: (() => void) | (() => void)[];
|
|
@@ -22375,6 +22514,10 @@ declare const _default: {
|
|
|
22375
22514
|
type: import("vue").PropType<boolean>;
|
|
22376
22515
|
default: boolean;
|
|
22377
22516
|
};
|
|
22517
|
+
isMulti: {
|
|
22518
|
+
type: import("vue").PropType<boolean>;
|
|
22519
|
+
default: boolean;
|
|
22520
|
+
};
|
|
22378
22521
|
selectedProp: {
|
|
22379
22522
|
type: import("vue").PropType<boolean>;
|
|
22380
22523
|
};
|
|
@@ -22469,6 +22612,10 @@ declare const _default: {
|
|
|
22469
22612
|
type: import("vue").PropType<boolean>;
|
|
22470
22613
|
default: boolean;
|
|
22471
22614
|
};
|
|
22615
|
+
isMulti: {
|
|
22616
|
+
type: import("vue").PropType<boolean>;
|
|
22617
|
+
default: boolean;
|
|
22618
|
+
};
|
|
22472
22619
|
selectedProp: {
|
|
22473
22620
|
type: import("vue").PropType<boolean>;
|
|
22474
22621
|
};
|
|
@@ -22498,6 +22645,7 @@ declare const _default: {
|
|
|
22498
22645
|
treeMainOptionExpanded: boolean;
|
|
22499
22646
|
stopOptionClickEventPropagation: boolean;
|
|
22500
22647
|
treeChildShown: boolean;
|
|
22648
|
+
isMulti: boolean;
|
|
22501
22649
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
22502
22650
|
$slots: {
|
|
22503
22651
|
image?(_: {}): any;
|
|
@@ -22956,6 +23104,123 @@ declare const _default: {
|
|
|
22956
23104
|
"trigger-end-icon"?(_: {}): any;
|
|
22957
23105
|
};
|
|
22958
23106
|
});
|
|
23107
|
+
ConditionalDroprown: import("vue").DefineComponent<{
|
|
23108
|
+
label: {
|
|
23109
|
+
type: import("vue").PropType<string>;
|
|
23110
|
+
required: true;
|
|
23111
|
+
default: string;
|
|
23112
|
+
};
|
|
23113
|
+
testId: {
|
|
23114
|
+
type: import("vue").PropType<string>;
|
|
23115
|
+
default: string;
|
|
23116
|
+
};
|
|
23117
|
+
optionNameKey: {
|
|
23118
|
+
type: import("vue").PropType<string>;
|
|
23119
|
+
required: true;
|
|
23120
|
+
default: string;
|
|
23121
|
+
};
|
|
23122
|
+
comparingKey: {
|
|
23123
|
+
type: import("vue").PropType<string>;
|
|
23124
|
+
required: true;
|
|
23125
|
+
default: string;
|
|
23126
|
+
};
|
|
23127
|
+
conditionalOptions: {
|
|
23128
|
+
type: import("vue").PropType<{
|
|
23129
|
+
label: string;
|
|
23130
|
+
value: string;
|
|
23131
|
+
multi: boolean;
|
|
23132
|
+
}[]>;
|
|
23133
|
+
required: true;
|
|
23134
|
+
};
|
|
23135
|
+
selectedCondition: {
|
|
23136
|
+
type: import("vue").PropType<{
|
|
23137
|
+
label: string;
|
|
23138
|
+
value: string;
|
|
23139
|
+
multi: boolean;
|
|
23140
|
+
}>;
|
|
23141
|
+
required: true;
|
|
23142
|
+
};
|
|
23143
|
+
appliedSelections: {
|
|
23144
|
+
type: import("vue").PropType<unknown>;
|
|
23145
|
+
required: true;
|
|
23146
|
+
};
|
|
23147
|
+
fetchFnCallback: {
|
|
23148
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23149
|
+
required: true;
|
|
23150
|
+
};
|
|
23151
|
+
minCharsToStart: {
|
|
23152
|
+
type: import("vue").PropType<number>;
|
|
23153
|
+
default: number;
|
|
23154
|
+
};
|
|
23155
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23156
|
+
"update:selectedCondition": (value: {
|
|
23157
|
+
label: string;
|
|
23158
|
+
value: string;
|
|
23159
|
+
multi: boolean;
|
|
23160
|
+
}) => void;
|
|
23161
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
23162
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23163
|
+
label: {
|
|
23164
|
+
type: import("vue").PropType<string>;
|
|
23165
|
+
required: true;
|
|
23166
|
+
default: string;
|
|
23167
|
+
};
|
|
23168
|
+
testId: {
|
|
23169
|
+
type: import("vue").PropType<string>;
|
|
23170
|
+
default: string;
|
|
23171
|
+
};
|
|
23172
|
+
optionNameKey: {
|
|
23173
|
+
type: import("vue").PropType<string>;
|
|
23174
|
+
required: true;
|
|
23175
|
+
default: string;
|
|
23176
|
+
};
|
|
23177
|
+
comparingKey: {
|
|
23178
|
+
type: import("vue").PropType<string>;
|
|
23179
|
+
required: true;
|
|
23180
|
+
default: string;
|
|
23181
|
+
};
|
|
23182
|
+
conditionalOptions: {
|
|
23183
|
+
type: import("vue").PropType<{
|
|
23184
|
+
label: string;
|
|
23185
|
+
value: string;
|
|
23186
|
+
multi: boolean;
|
|
23187
|
+
}[]>;
|
|
23188
|
+
required: true;
|
|
23189
|
+
};
|
|
23190
|
+
selectedCondition: {
|
|
23191
|
+
type: import("vue").PropType<{
|
|
23192
|
+
label: string;
|
|
23193
|
+
value: string;
|
|
23194
|
+
multi: boolean;
|
|
23195
|
+
}>;
|
|
23196
|
+
required: true;
|
|
23197
|
+
};
|
|
23198
|
+
appliedSelections: {
|
|
23199
|
+
type: import("vue").PropType<unknown>;
|
|
23200
|
+
required: true;
|
|
23201
|
+
};
|
|
23202
|
+
fetchFnCallback: {
|
|
23203
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23204
|
+
required: true;
|
|
23205
|
+
};
|
|
23206
|
+
minCharsToStart: {
|
|
23207
|
+
type: import("vue").PropType<number>;
|
|
23208
|
+
default: number;
|
|
23209
|
+
};
|
|
23210
|
+
}>> & {
|
|
23211
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23212
|
+
label: string;
|
|
23213
|
+
value: string;
|
|
23214
|
+
multi: boolean;
|
|
23215
|
+
}) => any;
|
|
23216
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23217
|
+
}, {
|
|
23218
|
+
label: string;
|
|
23219
|
+
testId: string;
|
|
23220
|
+
optionNameKey: string;
|
|
23221
|
+
comparingKey: string;
|
|
23222
|
+
minCharsToStart: number;
|
|
23223
|
+
}>;
|
|
22959
23224
|
Label: {
|
|
22960
23225
|
new (...args: any[]): {
|
|
22961
23226
|
$: import("vue").ComponentInternalInstance;
|