@ironsource/shared-ui 2.1.12-rc.54 → 2.1.12-rc.56
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/DropdownV4.vue_vue_type_style_index_0_scoped_a594c97e_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_63dc057e_lang.css +1 -0
- package/components/dropdown/v4/DropdownV4.vue.d.ts +5 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +68 -64
- package/components/dropdown/v4/TreeDropdown.vue.d.ts +10 -0
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +155 -151
- package/components/dropdown/v4/index.d.ts +59 -2
- package/index.d.ts +118 -4
- package/index.js +1 -1
- package/package.json +1 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_2d66b7b6_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_4ba9e4bd_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -17115,6 +17115,7 @@ declare const _default: {
|
|
|
17115
17115
|
dynamicFilterMode: boolean;
|
|
17116
17116
|
minSelections: number;
|
|
17117
17117
|
maxSelections: number;
|
|
17118
|
+
alwaysShowScroll: boolean;
|
|
17118
17119
|
isOnTop: boolean;
|
|
17119
17120
|
triggerLabel: string;
|
|
17120
17121
|
triggerHelperText: string;
|
|
@@ -17270,6 +17271,10 @@ declare const _default: {
|
|
|
17270
17271
|
type: import("vue").PropType<number>;
|
|
17271
17272
|
default: any;
|
|
17272
17273
|
};
|
|
17274
|
+
alwaysShowScroll: {
|
|
17275
|
+
type: import("vue").PropType<boolean>;
|
|
17276
|
+
default: boolean;
|
|
17277
|
+
};
|
|
17273
17278
|
isOnTop: {
|
|
17274
17279
|
type: import("vue").PropType<boolean>;
|
|
17275
17280
|
default: boolean;
|
|
@@ -17435,7 +17440,7 @@ declare const _default: {
|
|
|
17435
17440
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
17436
17441
|
onOpened?: () => any;
|
|
17437
17442
|
onClosed?: () => any;
|
|
17438
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
17443
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "alwaysShowScroll" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
17439
17444
|
$attrs: {
|
|
17440
17445
|
[x: string]: unknown;
|
|
17441
17446
|
};
|
|
@@ -17567,6 +17572,10 @@ declare const _default: {
|
|
|
17567
17572
|
type: import("vue").PropType<number>;
|
|
17568
17573
|
default: any;
|
|
17569
17574
|
};
|
|
17575
|
+
alwaysShowScroll: {
|
|
17576
|
+
type: import("vue").PropType<boolean>;
|
|
17577
|
+
default: boolean;
|
|
17578
|
+
};
|
|
17570
17579
|
isOnTop: {
|
|
17571
17580
|
type: import("vue").PropType<boolean>;
|
|
17572
17581
|
default: boolean;
|
|
@@ -17775,6 +17784,7 @@ declare const _default: {
|
|
|
17775
17784
|
dynamicFilterMode: boolean;
|
|
17776
17785
|
minSelections: number;
|
|
17777
17786
|
maxSelections: number;
|
|
17787
|
+
alwaysShowScroll: boolean;
|
|
17778
17788
|
isOnTop: boolean;
|
|
17779
17789
|
triggerLabel: string;
|
|
17780
17790
|
triggerHelperText: string;
|
|
@@ -17950,6 +17960,10 @@ declare const _default: {
|
|
|
17950
17960
|
type: import("vue").PropType<number>;
|
|
17951
17961
|
default: any;
|
|
17952
17962
|
};
|
|
17963
|
+
alwaysShowScroll: {
|
|
17964
|
+
type: import("vue").PropType<boolean>;
|
|
17965
|
+
default: boolean;
|
|
17966
|
+
};
|
|
17953
17967
|
isOnTop: {
|
|
17954
17968
|
type: import("vue").PropType<boolean>;
|
|
17955
17969
|
default: boolean;
|
|
@@ -18240,6 +18254,10 @@ declare const _default: {
|
|
|
18240
18254
|
type: import("vue").PropType<number>;
|
|
18241
18255
|
default: any;
|
|
18242
18256
|
};
|
|
18257
|
+
alwaysShowScroll: {
|
|
18258
|
+
type: import("vue").PropType<boolean>;
|
|
18259
|
+
default: boolean;
|
|
18260
|
+
};
|
|
18243
18261
|
isOnTop: {
|
|
18244
18262
|
type: import("vue").PropType<boolean>;
|
|
18245
18263
|
default: boolean;
|
|
@@ -18448,6 +18466,7 @@ declare const _default: {
|
|
|
18448
18466
|
dynamicFilterMode: boolean;
|
|
18449
18467
|
minSelections: number;
|
|
18450
18468
|
maxSelections: number;
|
|
18469
|
+
alwaysShowScroll: boolean;
|
|
18451
18470
|
isOnTop: boolean;
|
|
18452
18471
|
triggerLabel: string;
|
|
18453
18472
|
triggerHelperText: string;
|
|
@@ -21970,6 +21989,7 @@ declare const _default: {
|
|
|
21970
21989
|
dynamicFilterMode: boolean;
|
|
21971
21990
|
minSelections: number;
|
|
21972
21991
|
maxSelections: number;
|
|
21992
|
+
alwaysShowScroll: boolean;
|
|
21973
21993
|
isOnTop: boolean;
|
|
21974
21994
|
triggerLabel: string;
|
|
21975
21995
|
triggerHelperText: string;
|
|
@@ -22125,6 +22145,10 @@ declare const _default: {
|
|
|
22125
22145
|
type: import("vue").PropType<number>;
|
|
22126
22146
|
default: any;
|
|
22127
22147
|
};
|
|
22148
|
+
alwaysShowScroll: {
|
|
22149
|
+
type: import("vue").PropType<boolean>;
|
|
22150
|
+
default: boolean;
|
|
22151
|
+
};
|
|
22128
22152
|
isOnTop: {
|
|
22129
22153
|
type: import("vue").PropType<boolean>;
|
|
22130
22154
|
default: boolean;
|
|
@@ -22290,7 +22314,7 @@ declare const _default: {
|
|
|
22290
22314
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
22291
22315
|
onOpened?: () => any;
|
|
22292
22316
|
onClosed?: () => any;
|
|
22293
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
22317
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "alwaysShowScroll" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
22294
22318
|
$attrs: {
|
|
22295
22319
|
[x: string]: unknown;
|
|
22296
22320
|
};
|
|
@@ -22422,6 +22446,10 @@ declare const _default: {
|
|
|
22422
22446
|
type: import("vue").PropType<number>;
|
|
22423
22447
|
default: any;
|
|
22424
22448
|
};
|
|
22449
|
+
alwaysShowScroll: {
|
|
22450
|
+
type: import("vue").PropType<boolean>;
|
|
22451
|
+
default: boolean;
|
|
22452
|
+
};
|
|
22425
22453
|
isOnTop: {
|
|
22426
22454
|
type: import("vue").PropType<boolean>;
|
|
22427
22455
|
default: boolean;
|
|
@@ -22630,6 +22658,7 @@ declare const _default: {
|
|
|
22630
22658
|
dynamicFilterMode: boolean;
|
|
22631
22659
|
minSelections: number;
|
|
22632
22660
|
maxSelections: number;
|
|
22661
|
+
alwaysShowScroll: boolean;
|
|
22633
22662
|
isOnTop: boolean;
|
|
22634
22663
|
triggerLabel: string;
|
|
22635
22664
|
triggerHelperText: string;
|
|
@@ -22805,6 +22834,10 @@ declare const _default: {
|
|
|
22805
22834
|
type: import("vue").PropType<number>;
|
|
22806
22835
|
default: any;
|
|
22807
22836
|
};
|
|
22837
|
+
alwaysShowScroll: {
|
|
22838
|
+
type: import("vue").PropType<boolean>;
|
|
22839
|
+
default: boolean;
|
|
22840
|
+
};
|
|
22808
22841
|
isOnTop: {
|
|
22809
22842
|
type: import("vue").PropType<boolean>;
|
|
22810
22843
|
default: boolean;
|
|
@@ -23095,6 +23128,10 @@ declare const _default: {
|
|
|
23095
23128
|
type: import("vue").PropType<number>;
|
|
23096
23129
|
default: any;
|
|
23097
23130
|
};
|
|
23131
|
+
alwaysShowScroll: {
|
|
23132
|
+
type: import("vue").PropType<boolean>;
|
|
23133
|
+
default: boolean;
|
|
23134
|
+
};
|
|
23098
23135
|
isOnTop: {
|
|
23099
23136
|
type: import("vue").PropType<boolean>;
|
|
23100
23137
|
default: boolean;
|
|
@@ -23303,6 +23340,7 @@ declare const _default: {
|
|
|
23303
23340
|
dynamicFilterMode: boolean;
|
|
23304
23341
|
minSelections: number;
|
|
23305
23342
|
maxSelections: number;
|
|
23343
|
+
alwaysShowScroll: boolean;
|
|
23306
23344
|
isOnTop: boolean;
|
|
23307
23345
|
triggerLabel: string;
|
|
23308
23346
|
triggerHelperText: string;
|
|
@@ -23490,6 +23528,8 @@ declare const _default: {
|
|
|
23490
23528
|
valueToCopy: string;
|
|
23491
23529
|
selected: unknown[];
|
|
23492
23530
|
placeholder: string;
|
|
23531
|
+
triggerFeedbackText: string;
|
|
23532
|
+
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
23493
23533
|
inlineSearchPlaceholder: string;
|
|
23494
23534
|
optionNameKey: string;
|
|
23495
23535
|
optionIconKey: string;
|
|
@@ -23531,6 +23571,14 @@ declare const _default: {
|
|
|
23531
23571
|
type: import("vue").PropType<string>;
|
|
23532
23572
|
default: string;
|
|
23533
23573
|
};
|
|
23574
|
+
triggerFeedbackText: {
|
|
23575
|
+
type: import("vue").PropType<string>;
|
|
23576
|
+
default: string;
|
|
23577
|
+
};
|
|
23578
|
+
triggerFeedbackVariant: {
|
|
23579
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
23580
|
+
default: any;
|
|
23581
|
+
};
|
|
23534
23582
|
inlineSearchPlaceholder: {
|
|
23535
23583
|
type: import("vue").PropType<string>;
|
|
23536
23584
|
default: string;
|
|
@@ -23586,7 +23634,7 @@ declare const _default: {
|
|
|
23586
23634
|
}>> & {
|
|
23587
23635
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
23588
23636
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
23589
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "valueToCopy" | "selected" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "disabledOptionKey" | "optionEndTextIconKey">;
|
|
23637
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "valueToCopy" | "selected" | "placeholder" | "triggerFeedbackText" | "triggerFeedbackVariant" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "disabledOptionKey" | "optionEndTextIconKey">;
|
|
23590
23638
|
$attrs: {
|
|
23591
23639
|
[x: string]: unknown;
|
|
23592
23640
|
};
|
|
@@ -23632,6 +23680,14 @@ declare const _default: {
|
|
|
23632
23680
|
type: import("vue").PropType<string>;
|
|
23633
23681
|
default: string;
|
|
23634
23682
|
};
|
|
23683
|
+
triggerFeedbackText: {
|
|
23684
|
+
type: import("vue").PropType<string>;
|
|
23685
|
+
default: string;
|
|
23686
|
+
};
|
|
23687
|
+
triggerFeedbackVariant: {
|
|
23688
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
23689
|
+
default: any;
|
|
23690
|
+
};
|
|
23635
23691
|
inlineSearchPlaceholder: {
|
|
23636
23692
|
type: import("vue").PropType<string>;
|
|
23637
23693
|
default: string;
|
|
@@ -23697,6 +23753,8 @@ declare const _default: {
|
|
|
23697
23753
|
valueToCopy: string;
|
|
23698
23754
|
selected: unknown[];
|
|
23699
23755
|
placeholder: string;
|
|
23756
|
+
triggerFeedbackText: string;
|
|
23757
|
+
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
23700
23758
|
inlineSearchPlaceholder: string;
|
|
23701
23759
|
optionNameKey: string;
|
|
23702
23760
|
optionIconKey: string;
|
|
@@ -23758,6 +23816,14 @@ declare const _default: {
|
|
|
23758
23816
|
type: import("vue").PropType<string>;
|
|
23759
23817
|
default: string;
|
|
23760
23818
|
};
|
|
23819
|
+
triggerFeedbackText: {
|
|
23820
|
+
type: import("vue").PropType<string>;
|
|
23821
|
+
default: string;
|
|
23822
|
+
};
|
|
23823
|
+
triggerFeedbackVariant: {
|
|
23824
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
23825
|
+
default: any;
|
|
23826
|
+
};
|
|
23761
23827
|
inlineSearchPlaceholder: {
|
|
23762
23828
|
type: import("vue").PropType<string>;
|
|
23763
23829
|
default: string;
|
|
@@ -23849,6 +23915,14 @@ declare const _default: {
|
|
|
23849
23915
|
type: import("vue").PropType<string>;
|
|
23850
23916
|
default: string;
|
|
23851
23917
|
};
|
|
23918
|
+
triggerFeedbackText: {
|
|
23919
|
+
type: import("vue").PropType<string>;
|
|
23920
|
+
default: string;
|
|
23921
|
+
};
|
|
23922
|
+
triggerFeedbackVariant: {
|
|
23923
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
23924
|
+
default: any;
|
|
23925
|
+
};
|
|
23852
23926
|
inlineSearchPlaceholder: {
|
|
23853
23927
|
type: import("vue").PropType<string>;
|
|
23854
23928
|
default: string;
|
|
@@ -23914,6 +23988,8 @@ declare const _default: {
|
|
|
23914
23988
|
valueToCopy: string;
|
|
23915
23989
|
selected: unknown[];
|
|
23916
23990
|
placeholder: string;
|
|
23991
|
+
triggerFeedbackText: string;
|
|
23992
|
+
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
23917
23993
|
inlineSearchPlaceholder: string;
|
|
23918
23994
|
optionNameKey: string;
|
|
23919
23995
|
optionIconKey: string;
|
|
@@ -25062,6 +25138,8 @@ declare const _default: {
|
|
|
25062
25138
|
valueToCopy: string;
|
|
25063
25139
|
selected: unknown[];
|
|
25064
25140
|
placeholder: string;
|
|
25141
|
+
triggerFeedbackText: string;
|
|
25142
|
+
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
25065
25143
|
inlineSearchPlaceholder: string;
|
|
25066
25144
|
optionNameKey: string;
|
|
25067
25145
|
optionIconKey: string;
|
|
@@ -25103,6 +25181,14 @@ declare const _default: {
|
|
|
25103
25181
|
type: import("vue").PropType<string>;
|
|
25104
25182
|
default: string;
|
|
25105
25183
|
};
|
|
25184
|
+
triggerFeedbackText: {
|
|
25185
|
+
type: import("vue").PropType<string>;
|
|
25186
|
+
default: string;
|
|
25187
|
+
};
|
|
25188
|
+
triggerFeedbackVariant: {
|
|
25189
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
25190
|
+
default: any;
|
|
25191
|
+
};
|
|
25106
25192
|
inlineSearchPlaceholder: {
|
|
25107
25193
|
type: import("vue").PropType<string>;
|
|
25108
25194
|
default: string;
|
|
@@ -25158,7 +25244,7 @@ declare const _default: {
|
|
|
25158
25244
|
}>> & {
|
|
25159
25245
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
25160
25246
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
25161
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "valueToCopy" | "selected" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "disabledOptionKey" | "optionEndTextIconKey">;
|
|
25247
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "valueToCopy" | "selected" | "placeholder" | "triggerFeedbackText" | "triggerFeedbackVariant" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "disabledOptionKey" | "optionEndTextIconKey">;
|
|
25162
25248
|
$attrs: {
|
|
25163
25249
|
[x: string]: unknown;
|
|
25164
25250
|
};
|
|
@@ -25204,6 +25290,14 @@ declare const _default: {
|
|
|
25204
25290
|
type: import("vue").PropType<string>;
|
|
25205
25291
|
default: string;
|
|
25206
25292
|
};
|
|
25293
|
+
triggerFeedbackText: {
|
|
25294
|
+
type: import("vue").PropType<string>;
|
|
25295
|
+
default: string;
|
|
25296
|
+
};
|
|
25297
|
+
triggerFeedbackVariant: {
|
|
25298
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
25299
|
+
default: any;
|
|
25300
|
+
};
|
|
25207
25301
|
inlineSearchPlaceholder: {
|
|
25208
25302
|
type: import("vue").PropType<string>;
|
|
25209
25303
|
default: string;
|
|
@@ -25269,6 +25363,8 @@ declare const _default: {
|
|
|
25269
25363
|
valueToCopy: string;
|
|
25270
25364
|
selected: unknown[];
|
|
25271
25365
|
placeholder: string;
|
|
25366
|
+
triggerFeedbackText: string;
|
|
25367
|
+
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
25272
25368
|
inlineSearchPlaceholder: string;
|
|
25273
25369
|
optionNameKey: string;
|
|
25274
25370
|
optionIconKey: string;
|
|
@@ -25330,6 +25426,14 @@ declare const _default: {
|
|
|
25330
25426
|
type: import("vue").PropType<string>;
|
|
25331
25427
|
default: string;
|
|
25332
25428
|
};
|
|
25429
|
+
triggerFeedbackText: {
|
|
25430
|
+
type: import("vue").PropType<string>;
|
|
25431
|
+
default: string;
|
|
25432
|
+
};
|
|
25433
|
+
triggerFeedbackVariant: {
|
|
25434
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
25435
|
+
default: any;
|
|
25436
|
+
};
|
|
25333
25437
|
inlineSearchPlaceholder: {
|
|
25334
25438
|
type: import("vue").PropType<string>;
|
|
25335
25439
|
default: string;
|
|
@@ -25421,6 +25525,14 @@ declare const _default: {
|
|
|
25421
25525
|
type: import("vue").PropType<string>;
|
|
25422
25526
|
default: string;
|
|
25423
25527
|
};
|
|
25528
|
+
triggerFeedbackText: {
|
|
25529
|
+
type: import("vue").PropType<string>;
|
|
25530
|
+
default: string;
|
|
25531
|
+
};
|
|
25532
|
+
triggerFeedbackVariant: {
|
|
25533
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
25534
|
+
default: any;
|
|
25535
|
+
};
|
|
25424
25536
|
inlineSearchPlaceholder: {
|
|
25425
25537
|
type: import("vue").PropType<string>;
|
|
25426
25538
|
default: string;
|
|
@@ -25486,6 +25598,8 @@ declare const _default: {
|
|
|
25486
25598
|
valueToCopy: string;
|
|
25487
25599
|
selected: unknown[];
|
|
25488
25600
|
placeholder: string;
|
|
25601
|
+
triggerFeedbackText: string;
|
|
25602
|
+
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
25489
25603
|
inlineSearchPlaceholder: string;
|
|
25490
25604
|
optionNameKey: string;
|
|
25491
25605
|
optionIconKey: string;
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './FloatingToolbar.vue_vue_type_style_index_0_scoped_04d485be_lang.css';
|
|
2
2
|
import { AppTriggerTypes as eo } from "./components/appTrigger/index.js";
|
|
3
3
|
import { AutocompleteDropdownTypes as mo } from "./components/autocompleteDropdown/index.js";
|
|
4
4
|
import { MenuItemTypes as ao } from "./components/menuItem/index.js";
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.v-enter-active[data-v-2d66b7b6],.v-leave-active[data-v-2d66b7b6]{transition:opacity .25s ease}ol[data-v-2d66b7b6],ul[data-v-2d66b7b6],menu[data-v-2d66b7b6]{list-style:none;margin:0;padding:0}.dropdown.full-width[data-v-2d66b7b6],.dropdown.full-width .button__container[data-v-2d66b7b6]{width:100%}.dropdown-list-wrapper[data-v-2d66b7b6]{display:flex;flex-direction:column;padding:.5rem .5rem .25rem}.dropdown-list-wrapper--multi[data-v-2d66b7b6]{padding:.5rem}.list-container--multi[data-v-2d66b7b6]{margin-bottom:0}.inline-search .inline-search-wrapper[data-v-2d66b7b6]{display:flex;gap:4px;padding-bottom:.25rem}.inline-search .inline-search-wrapper .search-container[data-v-2d66b7b6]{width:100%}.inline-search .list-container[data-v-2d66b7b6]{padding-top:0}.no-result-container[data-v-2d66b7b6]{height:100%;display:flex;align-items:center;padding:.375rem .5rem;color:var(--text-disabled)}.no-result[data-v-2d66b7b6]{color:var(--text-disabled);padding-left:.5rem}.list[data-v-2d66b7b6]{outline:none;display:flex;flex-direction:column;width:100%;min-height:2rem}.list--multi[data-v-2d66b7b6]{margin-bottom:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.list--with-conditions[data-v-2d66b7b6]{min-height:0;margin-bottom:0}.image-slot[data-v-2d66b7b6]{margin-right:.5rem}.actions-wrapper[data-v-2d66b7b6]{display:flex;width:100%;padding:.5rem .5rem .5rem .125rem;padding-bottom:0;border-top:1px solid var(--common-divider);justify-content:space-between;margin-top:.25rem}.dropdown-footer[data-v-2d66b7b6]{display:flex;width:100%;padding:.5rem .5rem .375rem .4375rem;border-top:1px solid var(--common-divider);margin-top:.25rem}.apply-button[data-v-2d66b7b6]{margin-left:.5rem}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.child-options[data-v-4ba9e4bd]{padding-left:1rem}.tree-search[data-v-4ba9e4bd]{width:100%}
|