@ironsource/shared-ui 2.1.10 → 2.1.11-rc.0
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_991a7aad_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_4070942a_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_6ac5f602_lang.css +1 -0
- package/components/dropdown/common/Dropdown.common.js +116 -114
- 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 +10 -9
- package/components/dropdown/v4/OptionV4.vue.js +3 -3
- package/components/dropdown/v4/OptionV4.vue2.js +105 -87
- package/components/dropdown/v4/TreeDropdown.vue.d.ts +4 -2
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +135 -127
- package/components/dropdown/v4/index.d.ts +40 -5
- package/index.d.ts +80 -10
- package/index.js +1 -1
- package/mocks/words.d.ts +1 -0
- package/package.json +1 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_2d635802_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_058de532_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_a51b6929_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -15799,6 +15799,7 @@ declare const _default: {
|
|
|
15799
15799
|
optionTwoLinesKey: string;
|
|
15800
15800
|
groupedOptions: boolean;
|
|
15801
15801
|
comparingKey: string;
|
|
15802
|
+
customNumberOfDisplayedOptions: number;
|
|
15802
15803
|
fullWidth: boolean;
|
|
15803
15804
|
optionsListWidth: string;
|
|
15804
15805
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -16007,6 +16008,10 @@ declare const _default: {
|
|
|
16007
16008
|
type: import("vue").PropType<string>;
|
|
16008
16009
|
default: any;
|
|
16009
16010
|
};
|
|
16011
|
+
customNumberOfDisplayedOptions: {
|
|
16012
|
+
type: import("vue").PropType<number>;
|
|
16013
|
+
default: any;
|
|
16014
|
+
};
|
|
16010
16015
|
fullWidth: {
|
|
16011
16016
|
type: import("vue").PropType<boolean>;
|
|
16012
16017
|
default: boolean;
|
|
@@ -16037,7 +16042,7 @@ declare const _default: {
|
|
|
16037
16042
|
onOnsearch?: (value: string) => any;
|
|
16038
16043
|
onOpened?: () => any;
|
|
16039
16044
|
onClosed?: () => any;
|
|
16040
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "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" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
16045
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "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" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
16041
16046
|
$attrs: {
|
|
16042
16047
|
[x: string]: unknown;
|
|
16043
16048
|
};
|
|
@@ -16254,6 +16259,10 @@ declare const _default: {
|
|
|
16254
16259
|
type: import("vue").PropType<string>;
|
|
16255
16260
|
default: any;
|
|
16256
16261
|
};
|
|
16262
|
+
customNumberOfDisplayedOptions: {
|
|
16263
|
+
type: import("vue").PropType<number>;
|
|
16264
|
+
default: any;
|
|
16265
|
+
};
|
|
16257
16266
|
fullWidth: {
|
|
16258
16267
|
type: import("vue").PropType<boolean>;
|
|
16259
16268
|
default: boolean;
|
|
@@ -16345,6 +16354,7 @@ declare const _default: {
|
|
|
16345
16354
|
optionTwoLinesKey: string;
|
|
16346
16355
|
groupedOptions: boolean;
|
|
16347
16356
|
comparingKey: string;
|
|
16357
|
+
customNumberOfDisplayedOptions: number;
|
|
16348
16358
|
fullWidth: boolean;
|
|
16349
16359
|
optionsListWidth: string;
|
|
16350
16360
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -16573,6 +16583,10 @@ declare const _default: {
|
|
|
16573
16583
|
type: import("vue").PropType<string>;
|
|
16574
16584
|
default: any;
|
|
16575
16585
|
};
|
|
16586
|
+
customNumberOfDisplayedOptions: {
|
|
16587
|
+
type: import("vue").PropType<number>;
|
|
16588
|
+
default: any;
|
|
16589
|
+
};
|
|
16576
16590
|
fullWidth: {
|
|
16577
16591
|
type: import("vue").PropType<boolean>;
|
|
16578
16592
|
default: boolean;
|
|
@@ -16813,6 +16827,10 @@ declare const _default: {
|
|
|
16813
16827
|
type: import("vue").PropType<string>;
|
|
16814
16828
|
default: any;
|
|
16815
16829
|
};
|
|
16830
|
+
customNumberOfDisplayedOptions: {
|
|
16831
|
+
type: import("vue").PropType<number>;
|
|
16832
|
+
default: any;
|
|
16833
|
+
};
|
|
16816
16834
|
fullWidth: {
|
|
16817
16835
|
type: import("vue").PropType<boolean>;
|
|
16818
16836
|
default: boolean;
|
|
@@ -16904,6 +16922,7 @@ declare const _default: {
|
|
|
16904
16922
|
optionTwoLinesKey: string;
|
|
16905
16923
|
groupedOptions: boolean;
|
|
16906
16924
|
comparingKey: string;
|
|
16925
|
+
customNumberOfDisplayedOptions: number;
|
|
16907
16926
|
fullWidth: boolean;
|
|
16908
16927
|
optionsListWidth: string;
|
|
16909
16928
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -20160,6 +20179,7 @@ declare const _default: {
|
|
|
20160
20179
|
optionTwoLinesKey: string;
|
|
20161
20180
|
groupedOptions: boolean;
|
|
20162
20181
|
comparingKey: string;
|
|
20182
|
+
customNumberOfDisplayedOptions: number;
|
|
20163
20183
|
fullWidth: boolean;
|
|
20164
20184
|
optionsListWidth: string;
|
|
20165
20185
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -20368,6 +20388,10 @@ declare const _default: {
|
|
|
20368
20388
|
type: import("vue").PropType<string>;
|
|
20369
20389
|
default: any;
|
|
20370
20390
|
};
|
|
20391
|
+
customNumberOfDisplayedOptions: {
|
|
20392
|
+
type: import("vue").PropType<number>;
|
|
20393
|
+
default: any;
|
|
20394
|
+
};
|
|
20371
20395
|
fullWidth: {
|
|
20372
20396
|
type: import("vue").PropType<boolean>;
|
|
20373
20397
|
default: boolean;
|
|
@@ -20398,7 +20422,7 @@ declare const _default: {
|
|
|
20398
20422
|
onOnsearch?: (value: string) => any;
|
|
20399
20423
|
onOpened?: () => any;
|
|
20400
20424
|
onClosed?: () => any;
|
|
20401
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "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" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
20425
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "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" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
20402
20426
|
$attrs: {
|
|
20403
20427
|
[x: string]: unknown;
|
|
20404
20428
|
};
|
|
@@ -20615,6 +20639,10 @@ declare const _default: {
|
|
|
20615
20639
|
type: import("vue").PropType<string>;
|
|
20616
20640
|
default: any;
|
|
20617
20641
|
};
|
|
20642
|
+
customNumberOfDisplayedOptions: {
|
|
20643
|
+
type: import("vue").PropType<number>;
|
|
20644
|
+
default: any;
|
|
20645
|
+
};
|
|
20618
20646
|
fullWidth: {
|
|
20619
20647
|
type: import("vue").PropType<boolean>;
|
|
20620
20648
|
default: boolean;
|
|
@@ -20706,6 +20734,7 @@ declare const _default: {
|
|
|
20706
20734
|
optionTwoLinesKey: string;
|
|
20707
20735
|
groupedOptions: boolean;
|
|
20708
20736
|
comparingKey: string;
|
|
20737
|
+
customNumberOfDisplayedOptions: number;
|
|
20709
20738
|
fullWidth: boolean;
|
|
20710
20739
|
optionsListWidth: string;
|
|
20711
20740
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -20934,6 +20963,10 @@ declare const _default: {
|
|
|
20934
20963
|
type: import("vue").PropType<string>;
|
|
20935
20964
|
default: any;
|
|
20936
20965
|
};
|
|
20966
|
+
customNumberOfDisplayedOptions: {
|
|
20967
|
+
type: import("vue").PropType<number>;
|
|
20968
|
+
default: any;
|
|
20969
|
+
};
|
|
20937
20970
|
fullWidth: {
|
|
20938
20971
|
type: import("vue").PropType<boolean>;
|
|
20939
20972
|
default: boolean;
|
|
@@ -21174,6 +21207,10 @@ declare const _default: {
|
|
|
21174
21207
|
type: import("vue").PropType<string>;
|
|
21175
21208
|
default: any;
|
|
21176
21209
|
};
|
|
21210
|
+
customNumberOfDisplayedOptions: {
|
|
21211
|
+
type: import("vue").PropType<number>;
|
|
21212
|
+
default: any;
|
|
21213
|
+
};
|
|
21177
21214
|
fullWidth: {
|
|
21178
21215
|
type: import("vue").PropType<boolean>;
|
|
21179
21216
|
default: boolean;
|
|
@@ -21265,6 +21302,7 @@ declare const _default: {
|
|
|
21265
21302
|
optionTwoLinesKey: string;
|
|
21266
21303
|
groupedOptions: boolean;
|
|
21267
21304
|
comparingKey: string;
|
|
21305
|
+
customNumberOfDisplayedOptions: number;
|
|
21268
21306
|
fullWidth: boolean;
|
|
21269
21307
|
optionsListWidth: string;
|
|
21270
21308
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -21492,7 +21530,11 @@ declare const _default: {
|
|
|
21492
21530
|
required: true;
|
|
21493
21531
|
};
|
|
21494
21532
|
optionUniqueIdKey: {
|
|
21495
|
-
type: import("vue").PropType<string>;
|
|
21533
|
+
type: import("vue").PropType<string | number>;
|
|
21534
|
+
required: true;
|
|
21535
|
+
};
|
|
21536
|
+
preExpandedOptions: {
|
|
21537
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
21496
21538
|
required: true;
|
|
21497
21539
|
};
|
|
21498
21540
|
}>> & {
|
|
@@ -21585,7 +21627,11 @@ declare const _default: {
|
|
|
21585
21627
|
required: true;
|
|
21586
21628
|
};
|
|
21587
21629
|
optionUniqueIdKey: {
|
|
21588
|
-
type: import("vue").PropType<string>;
|
|
21630
|
+
type: import("vue").PropType<string | number>;
|
|
21631
|
+
required: true;
|
|
21632
|
+
};
|
|
21633
|
+
preExpandedOptions: {
|
|
21634
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
21589
21635
|
required: true;
|
|
21590
21636
|
};
|
|
21591
21637
|
}>> & {
|
|
@@ -21702,7 +21748,11 @@ declare const _default: {
|
|
|
21702
21748
|
required: true;
|
|
21703
21749
|
};
|
|
21704
21750
|
optionUniqueIdKey: {
|
|
21705
|
-
type: import("vue").PropType<string>;
|
|
21751
|
+
type: import("vue").PropType<string | number>;
|
|
21752
|
+
required: true;
|
|
21753
|
+
};
|
|
21754
|
+
preExpandedOptions: {
|
|
21755
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
21706
21756
|
required: true;
|
|
21707
21757
|
};
|
|
21708
21758
|
}>> & {
|
|
@@ -21785,7 +21835,11 @@ declare const _default: {
|
|
|
21785
21835
|
required: true;
|
|
21786
21836
|
};
|
|
21787
21837
|
optionUniqueIdKey: {
|
|
21788
|
-
type: import("vue").PropType<string>;
|
|
21838
|
+
type: import("vue").PropType<string | number>;
|
|
21839
|
+
required: true;
|
|
21840
|
+
};
|
|
21841
|
+
preExpandedOptions: {
|
|
21842
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
21789
21843
|
required: true;
|
|
21790
21844
|
};
|
|
21791
21845
|
}>> & {
|
|
@@ -22368,7 +22422,11 @@ declare const _default: {
|
|
|
22368
22422
|
required: true;
|
|
22369
22423
|
};
|
|
22370
22424
|
optionUniqueIdKey: {
|
|
22371
|
-
type: import("vue").PropType<string>;
|
|
22425
|
+
type: import("vue").PropType<string | number>;
|
|
22426
|
+
required: true;
|
|
22427
|
+
};
|
|
22428
|
+
preExpandedOptions: {
|
|
22429
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
22372
22430
|
required: true;
|
|
22373
22431
|
};
|
|
22374
22432
|
}>> & {
|
|
@@ -22461,7 +22519,11 @@ declare const _default: {
|
|
|
22461
22519
|
required: true;
|
|
22462
22520
|
};
|
|
22463
22521
|
optionUniqueIdKey: {
|
|
22464
|
-
type: import("vue").PropType<string>;
|
|
22522
|
+
type: import("vue").PropType<string | number>;
|
|
22523
|
+
required: true;
|
|
22524
|
+
};
|
|
22525
|
+
preExpandedOptions: {
|
|
22526
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
22465
22527
|
required: true;
|
|
22466
22528
|
};
|
|
22467
22529
|
}>> & {
|
|
@@ -22578,7 +22640,11 @@ declare const _default: {
|
|
|
22578
22640
|
required: true;
|
|
22579
22641
|
};
|
|
22580
22642
|
optionUniqueIdKey: {
|
|
22581
|
-
type: import("vue").PropType<string>;
|
|
22643
|
+
type: import("vue").PropType<string | number>;
|
|
22644
|
+
required: true;
|
|
22645
|
+
};
|
|
22646
|
+
preExpandedOptions: {
|
|
22647
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
22582
22648
|
required: true;
|
|
22583
22649
|
};
|
|
22584
22650
|
}>> & {
|
|
@@ -22661,7 +22727,11 @@ declare const _default: {
|
|
|
22661
22727
|
required: true;
|
|
22662
22728
|
};
|
|
22663
22729
|
optionUniqueIdKey: {
|
|
22664
|
-
type: import("vue").PropType<string>;
|
|
22730
|
+
type: import("vue").PropType<string | number>;
|
|
22731
|
+
required: true;
|
|
22732
|
+
};
|
|
22733
|
+
preExpandedOptions: {
|
|
22734
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
22665
22735
|
required: true;
|
|
22666
22736
|
};
|
|
22667
22737
|
}>> & {
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './AppTrigger.vue_vue_type_style_index_0_scoped_121aac8b_lang.css';
|
|
2
2
|
import { AppTriggerTypes as ro } from "./components/appTrigger/index.js";
|
|
3
3
|
import { AutocompleteDropdownTypes as mo } from "./components/autocompleteDropdown/index.js";
|
|
4
4
|
import { MenuItemTypes as po } from "./components/menuItem/index.js";
|
package/mocks/words.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const generateText: (length: number) => string;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.v-enter-active[data-v-2d635802],.v-leave-active[data-v-2d635802]{transition:opacity .25s ease}ol[data-v-2d635802],ul[data-v-2d635802],menu[data-v-2d635802]{list-style:none;margin:0;padding:0}.dropdown.full-width[data-v-2d635802],.dropdown.full-width .button__container[data-v-2d635802]{width:100%}.dropdown-list-wrapper[data-v-2d635802]{display:flex;flex-direction:column;padding:.5rem .5rem .25rem}.dropdown-list-wrapper--multi[data-v-2d635802]{padding:.5rem}.list-container--multi[data-v-2d635802]{margin-bottom:0}.inline-search .inline-search-wrapper[data-v-2d635802]{padding-bottom:.25rem}.inline-search .list-container[data-v-2d635802]{padding-top:0}.no-result-container[data-v-2d635802]{height:100%;display:flex;align-items:center;padding:.375rem .5rem;color:var(--text-disabled)}.no-result[data-v-2d635802]{color:var(--text-disabled);padding-left:.5rem}.list[data-v-2d635802]{outline:none;display:flex;flex-direction:column;width:100%;min-height:2rem}.list--multi[data-v-2d635802]{margin-bottom:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.image-slot[data-v-2d635802]{margin-right:.5rem}.actions-wrapper[data-v-2d635802]{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}.apply-button[data-v-2d635802]{margin-left:.5rem}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-058de532]{color:#41454d}.item-container[data-v-058de532]{width:100%;display:flex;align-items:center;cursor:pointer;border-radius:var(--border-radius-lg);margin-bottom:.25rem;color:var(--text-primary);padding:6px 8px}.item-container--disabled[data-v-058de532]{cursor:initial;color:var(--text-disabled)}.item-container[data-v-058de532]:hover:not(.item-container--disabled){background-color:var(--action-hover)}.item-container--active[data-v-058de532],.item-container[data-v-058de532]:active{background-color:var(--action-selected)}.item-container:not(.item-container--multi).item-container--selected[data-v-058de532]{background-color:var(--action-selected)}.subtitle[data-v-058de532]{color:#7b838c;line-height:1rem}.clear-button[data-v-058de532]{display:flex;padding:0 4px;color:#7b838c;align-items:center;height:auto;background-image:none;min-width:auto;border:none;background-color:transparent}.clear-button[data-v-058de532]:hover{color:#3083ff}.item[data-v-058de532]{width:100%;display:flex;gap:.5rem;align-items:center}.item--with-icon[data-v-058de532],.item--multi[data-v-058de532]{display:flex;flex-direction:row;align-items:center;justify-content:start}.item .image[data-v-058de532]{width:20px;height:20px;flex:none}.item .image img[data-v-058de532]{width:20px;height:20px;border-radius:4px}.item .flag[data-v-058de532]{width:16px;height:16px}.item .flag img[data-v-058de532]{width:16px;height:16px;border-radius:50%}.item .start-icon[data-v-058de532],.item .end-icon[data-v-058de532]{display:flex;color:var(--action-active)}.item .option-text[data-v-058de532]{line-height:1.1875rem}.text-container[data-v-058de532]{width:100%;text-overflow:ellipsis;overflow:hidden}.tooltip-option[data-v-058de532]{display:block}.tooltip-option[data-v-058de532] .container{width:100%}.app-trigger--icon[data-v-058de532]{color:var(--action-active);transform:rotate(-90deg);transition:transform .2s}.app-trigger--icon.expanded[data-v-058de532]{transform:rotate(0)}.option-content-horizontal[data-v-058de532]{display:flex;justify-content:space-between;gap:.5rem}.option-content-vertical[data-v-058de532]{display:flex;flex-direction:column}.option-text .main-text[data-v-058de532]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-align:left}.option-text .caption-text[data-v-058de532]{color:var(--text-secondary)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.child-options[data-v-a51b6929]{padding-left:1rem}
|