@ironsource/shared-ui 2.1.11-test.27 → 2.1.11-test.41
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/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_604dfc6f_lang.css +1 -0
- package/Chart.vue_vue_type_style_index_0_scoped_04b9d6b3_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_b8213498_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_a1c626cd_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_6744325c_lang.css +1 -0
- package/CheckboxV4.vue_vue_type_style_index_0_scoped_af4ae3c3_lang.css +1 -0
- package/DialogV4.vue_vue_type_style_index_0_scoped_c65df8d7_lang.css +1 -0
- package/SnackbarV4.vue_vue_type_style_index_0_scoped_89fe8aa1_lang.css +1 -0
- package/components/chart/Chart.vue.d.ts +11 -3
- package/components/chart/Chart.vue.js +2 -2
- package/components/chart/Chart.vue2.js +108 -96
- package/components/chart/ChartHeader.vue.d.ts +13 -6
- package/components/chart/ChartHeader.vue.js +2 -2
- package/components/chart/ChartHeader.vue2.js +32 -29
- package/components/chart/ChartLegend.vue.d.ts +5 -0
- package/components/chart/ChartLegend.vue.js +3 -3
- package/components/chart/ChartLegend.vue2.js +99 -49
- package/components/chart/ChartTooltip.vue.d.ts +4 -5
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +64 -43
- package/components/chart/index.d.ts +36 -16
- package/components/chart/mockData.d.ts +15 -2
- package/components/chart/types.d.ts +15 -1
- package/components/chart/utils/utils.js +5 -5
- package/components/checkbox/v4/CheckboxV4.vue.js +3 -3
- package/components/checkbox/v4/CheckboxV4.vue2.js +2 -2
- package/components/dialog/v4/DialogV4.vue.d.ts +10 -0
- package/components/dialog/v4/DialogV4.vue.js +3 -3
- package/components/dialog/v4/DialogV4.vue2.js +64 -60
- package/components/dialog/v4/index.d.ts +39 -1
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.d.ts +15 -0
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +42 -20
- package/components/snackbar/v4/SnackbarV4.vue.d.ts +7 -116
- package/components/snackbar/v4/SnackbarV4.vue.js +5 -5
- package/components/snackbar/v4/SnackbarV4.vue2.js +62 -60
- package/index.d.ts +136 -3
- package/index.js +1 -1
- package/package.json +1 -1
- package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_f9a13e27_lang.css +0 -1
- package/Chart.vue_vue_type_style_index_0_scoped_8f471697_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_4c37736e_lang.css +0 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_c0f71a49_lang.css +0 -1
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_ec636f18_lang.css +0 -1
- package/CheckboxV4.vue_vue_type_style_index_0_scoped_8e5b619a_lang.css +0 -1
- package/DialogV4.vue_vue_type_style_index_0_scoped_09c488cf_lang.css +0 -1
- package/SnackbarV4.vue_vue_type_style_index_0_scoped_49c5ccea_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -10330,6 +10330,8 @@ declare const _default: {
|
|
|
10330
10330
|
closeOnClickOutside: boolean;
|
|
10331
10331
|
beforeClose: (show: () => void) => void;
|
|
10332
10332
|
showCloseButton: boolean;
|
|
10333
|
+
showCancelButton: boolean;
|
|
10334
|
+
showSaveButton: boolean;
|
|
10333
10335
|
showFooter: boolean;
|
|
10334
10336
|
saveButtonLabel: string;
|
|
10335
10337
|
saveButtonLoading: boolean;
|
|
@@ -10393,6 +10395,14 @@ declare const _default: {
|
|
|
10393
10395
|
type: import("vue").PropType<boolean>;
|
|
10394
10396
|
default: boolean;
|
|
10395
10397
|
};
|
|
10398
|
+
showCancelButton: {
|
|
10399
|
+
type: import("vue").PropType<boolean>;
|
|
10400
|
+
default: boolean;
|
|
10401
|
+
};
|
|
10402
|
+
showSaveButton: {
|
|
10403
|
+
type: import("vue").PropType<boolean>;
|
|
10404
|
+
default: boolean;
|
|
10405
|
+
};
|
|
10396
10406
|
showFooter: {
|
|
10397
10407
|
type: import("vue").PropType<boolean>;
|
|
10398
10408
|
default: boolean;
|
|
@@ -10423,7 +10433,7 @@ declare const _default: {
|
|
|
10423
10433
|
onCancel?: () => any;
|
|
10424
10434
|
onOpen?: () => any;
|
|
10425
10435
|
onSave?: () => any;
|
|
10426
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "testId" | "size" | "content" | "subtitle" | "appendToBody" | "closeDelay" | "openDelay" | "escapeToClose" | "showBackdrop" | "closeOnClickOutside" | "beforeClose" | "showCloseButton" | "showFooter" | "saveButtonLabel" | "saveButtonLoading" | "saveButtonColor" | "cancelButtonLabel" | "cancelButtonColor">;
|
|
10436
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "testId" | "size" | "content" | "subtitle" | "appendToBody" | "closeDelay" | "openDelay" | "escapeToClose" | "showBackdrop" | "closeOnClickOutside" | "beforeClose" | "showCloseButton" | "showCancelButton" | "showSaveButton" | "showFooter" | "saveButtonLabel" | "saveButtonLoading" | "saveButtonColor" | "cancelButtonLabel" | "cancelButtonColor">;
|
|
10427
10437
|
$attrs: {
|
|
10428
10438
|
[x: string]: unknown;
|
|
10429
10439
|
};
|
|
@@ -10494,6 +10504,14 @@ declare const _default: {
|
|
|
10494
10504
|
type: import("vue").PropType<boolean>;
|
|
10495
10505
|
default: boolean;
|
|
10496
10506
|
};
|
|
10507
|
+
showCancelButton: {
|
|
10508
|
+
type: import("vue").PropType<boolean>;
|
|
10509
|
+
default: boolean;
|
|
10510
|
+
};
|
|
10511
|
+
showSaveButton: {
|
|
10512
|
+
type: import("vue").PropType<boolean>;
|
|
10513
|
+
default: boolean;
|
|
10514
|
+
};
|
|
10497
10515
|
showFooter: {
|
|
10498
10516
|
type: import("vue").PropType<boolean>;
|
|
10499
10517
|
default: boolean;
|
|
@@ -10544,6 +10562,8 @@ declare const _default: {
|
|
|
10544
10562
|
closeOnClickOutside: boolean;
|
|
10545
10563
|
beforeClose: (show: () => void) => void;
|
|
10546
10564
|
showCloseButton: boolean;
|
|
10565
|
+
showCancelButton: boolean;
|
|
10566
|
+
showSaveButton: boolean;
|
|
10547
10567
|
showFooter: boolean;
|
|
10548
10568
|
saveButtonLabel: string;
|
|
10549
10569
|
saveButtonLoading: boolean;
|
|
@@ -10627,6 +10647,14 @@ declare const _default: {
|
|
|
10627
10647
|
type: import("vue").PropType<boolean>;
|
|
10628
10648
|
default: boolean;
|
|
10629
10649
|
};
|
|
10650
|
+
showCancelButton: {
|
|
10651
|
+
type: import("vue").PropType<boolean>;
|
|
10652
|
+
default: boolean;
|
|
10653
|
+
};
|
|
10654
|
+
showSaveButton: {
|
|
10655
|
+
type: import("vue").PropType<boolean>;
|
|
10656
|
+
default: boolean;
|
|
10657
|
+
};
|
|
10630
10658
|
showFooter: {
|
|
10631
10659
|
type: import("vue").PropType<boolean>;
|
|
10632
10660
|
default: boolean;
|
|
@@ -10718,6 +10746,14 @@ declare const _default: {
|
|
|
10718
10746
|
type: import("vue").PropType<boolean>;
|
|
10719
10747
|
default: boolean;
|
|
10720
10748
|
};
|
|
10749
|
+
showCancelButton: {
|
|
10750
|
+
type: import("vue").PropType<boolean>;
|
|
10751
|
+
default: boolean;
|
|
10752
|
+
};
|
|
10753
|
+
showSaveButton: {
|
|
10754
|
+
type: import("vue").PropType<boolean>;
|
|
10755
|
+
default: boolean;
|
|
10756
|
+
};
|
|
10721
10757
|
showFooter: {
|
|
10722
10758
|
type: import("vue").PropType<boolean>;
|
|
10723
10759
|
default: boolean;
|
|
@@ -10768,6 +10804,8 @@ declare const _default: {
|
|
|
10768
10804
|
closeOnClickOutside: boolean;
|
|
10769
10805
|
beforeClose: (show: () => void) => void;
|
|
10770
10806
|
showCloseButton: boolean;
|
|
10807
|
+
showCancelButton: boolean;
|
|
10808
|
+
showSaveButton: boolean;
|
|
10771
10809
|
showFooter: boolean;
|
|
10772
10810
|
saveButtonLabel: string;
|
|
10773
10811
|
saveButtonLoading: boolean;
|
|
@@ -10799,6 +10837,8 @@ declare const _default: {
|
|
|
10799
10837
|
closeOnClickOutside: boolean;
|
|
10800
10838
|
beforeClose: (show: () => void) => void;
|
|
10801
10839
|
showCloseButton: boolean;
|
|
10840
|
+
showCancelButton: boolean;
|
|
10841
|
+
showSaveButton: boolean;
|
|
10802
10842
|
showFooter: boolean;
|
|
10803
10843
|
saveButtonLabel: string;
|
|
10804
10844
|
saveButtonLoading: boolean;
|
|
@@ -10862,6 +10902,14 @@ declare const _default: {
|
|
|
10862
10902
|
type: import("vue").PropType<boolean>;
|
|
10863
10903
|
default: boolean;
|
|
10864
10904
|
};
|
|
10905
|
+
showCancelButton: {
|
|
10906
|
+
type: import("vue").PropType<boolean>;
|
|
10907
|
+
default: boolean;
|
|
10908
|
+
};
|
|
10909
|
+
showSaveButton: {
|
|
10910
|
+
type: import("vue").PropType<boolean>;
|
|
10911
|
+
default: boolean;
|
|
10912
|
+
};
|
|
10865
10913
|
showFooter: {
|
|
10866
10914
|
type: import("vue").PropType<boolean>;
|
|
10867
10915
|
default: boolean;
|
|
@@ -10892,7 +10940,7 @@ declare const _default: {
|
|
|
10892
10940
|
onCancel?: () => any;
|
|
10893
10941
|
onOpen?: () => any;
|
|
10894
10942
|
onSave?: () => any;
|
|
10895
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "testId" | "size" | "content" | "subtitle" | "appendToBody" | "closeDelay" | "openDelay" | "escapeToClose" | "showBackdrop" | "closeOnClickOutside" | "beforeClose" | "showCloseButton" | "showFooter" | "saveButtonLabel" | "saveButtonLoading" | "saveButtonColor" | "cancelButtonLabel" | "cancelButtonColor">;
|
|
10943
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "testId" | "size" | "content" | "subtitle" | "appendToBody" | "closeDelay" | "openDelay" | "escapeToClose" | "showBackdrop" | "closeOnClickOutside" | "beforeClose" | "showCloseButton" | "showCancelButton" | "showSaveButton" | "showFooter" | "saveButtonLabel" | "saveButtonLoading" | "saveButtonColor" | "cancelButtonLabel" | "cancelButtonColor">;
|
|
10896
10944
|
$attrs: {
|
|
10897
10945
|
[x: string]: unknown;
|
|
10898
10946
|
};
|
|
@@ -10963,6 +11011,14 @@ declare const _default: {
|
|
|
10963
11011
|
type: import("vue").PropType<boolean>;
|
|
10964
11012
|
default: boolean;
|
|
10965
11013
|
};
|
|
11014
|
+
showCancelButton: {
|
|
11015
|
+
type: import("vue").PropType<boolean>;
|
|
11016
|
+
default: boolean;
|
|
11017
|
+
};
|
|
11018
|
+
showSaveButton: {
|
|
11019
|
+
type: import("vue").PropType<boolean>;
|
|
11020
|
+
default: boolean;
|
|
11021
|
+
};
|
|
10966
11022
|
showFooter: {
|
|
10967
11023
|
type: import("vue").PropType<boolean>;
|
|
10968
11024
|
default: boolean;
|
|
@@ -11013,6 +11069,8 @@ declare const _default: {
|
|
|
11013
11069
|
closeOnClickOutside: boolean;
|
|
11014
11070
|
beforeClose: (show: () => void) => void;
|
|
11015
11071
|
showCloseButton: boolean;
|
|
11072
|
+
showCancelButton: boolean;
|
|
11073
|
+
showSaveButton: boolean;
|
|
11016
11074
|
showFooter: boolean;
|
|
11017
11075
|
saveButtonLabel: string;
|
|
11018
11076
|
saveButtonLoading: boolean;
|
|
@@ -11096,6 +11154,14 @@ declare const _default: {
|
|
|
11096
11154
|
type: import("vue").PropType<boolean>;
|
|
11097
11155
|
default: boolean;
|
|
11098
11156
|
};
|
|
11157
|
+
showCancelButton: {
|
|
11158
|
+
type: import("vue").PropType<boolean>;
|
|
11159
|
+
default: boolean;
|
|
11160
|
+
};
|
|
11161
|
+
showSaveButton: {
|
|
11162
|
+
type: import("vue").PropType<boolean>;
|
|
11163
|
+
default: boolean;
|
|
11164
|
+
};
|
|
11099
11165
|
showFooter: {
|
|
11100
11166
|
type: import("vue").PropType<boolean>;
|
|
11101
11167
|
default: boolean;
|
|
@@ -11187,6 +11253,14 @@ declare const _default: {
|
|
|
11187
11253
|
type: import("vue").PropType<boolean>;
|
|
11188
11254
|
default: boolean;
|
|
11189
11255
|
};
|
|
11256
|
+
showCancelButton: {
|
|
11257
|
+
type: import("vue").PropType<boolean>;
|
|
11258
|
+
default: boolean;
|
|
11259
|
+
};
|
|
11260
|
+
showSaveButton: {
|
|
11261
|
+
type: import("vue").PropType<boolean>;
|
|
11262
|
+
default: boolean;
|
|
11263
|
+
};
|
|
11190
11264
|
showFooter: {
|
|
11191
11265
|
type: import("vue").PropType<boolean>;
|
|
11192
11266
|
default: boolean;
|
|
@@ -11237,6 +11311,8 @@ declare const _default: {
|
|
|
11237
11311
|
closeOnClickOutside: boolean;
|
|
11238
11312
|
beforeClose: (show: () => void) => void;
|
|
11239
11313
|
showCloseButton: boolean;
|
|
11314
|
+
showCancelButton: boolean;
|
|
11315
|
+
showSaveButton: boolean;
|
|
11240
11316
|
showFooter: boolean;
|
|
11241
11317
|
saveButtonLabel: string;
|
|
11242
11318
|
saveButtonLoading: boolean;
|
|
@@ -18021,8 +18097,11 @@ declare const _default: {
|
|
|
18021
18097
|
$props: Partial<{
|
|
18022
18098
|
testId: string;
|
|
18023
18099
|
variant: "text" | "outlined";
|
|
18100
|
+
withTooltip: boolean;
|
|
18101
|
+
tooltipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
18024
18102
|
disabled: boolean;
|
|
18025
18103
|
size: "small" | "medium";
|
|
18104
|
+
maxWidth: number;
|
|
18026
18105
|
open: boolean;
|
|
18027
18106
|
startIconName: string;
|
|
18028
18107
|
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -18040,6 +18119,14 @@ declare const _default: {
|
|
|
18040
18119
|
type: import("vue").PropType<"text" | "outlined">;
|
|
18041
18120
|
default: string;
|
|
18042
18121
|
};
|
|
18122
|
+
withTooltip: {
|
|
18123
|
+
type: import("vue").PropType<boolean>;
|
|
18124
|
+
default: boolean;
|
|
18125
|
+
};
|
|
18126
|
+
tooltipPlacement: {
|
|
18127
|
+
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
18128
|
+
default: string;
|
|
18129
|
+
};
|
|
18043
18130
|
disabled: {
|
|
18044
18131
|
type: import("vue").PropType<boolean>;
|
|
18045
18132
|
default: boolean;
|
|
@@ -18048,6 +18135,10 @@ declare const _default: {
|
|
|
18048
18135
|
type: import("vue").PropType<"small" | "medium">;
|
|
18049
18136
|
default: string;
|
|
18050
18137
|
};
|
|
18138
|
+
maxWidth: {
|
|
18139
|
+
type: import("vue").PropType<number>;
|
|
18140
|
+
default: number;
|
|
18141
|
+
};
|
|
18051
18142
|
open: {
|
|
18052
18143
|
type: import("vue").PropType<boolean>;
|
|
18053
18144
|
default: boolean;
|
|
@@ -18066,7 +18157,7 @@ declare const _default: {
|
|
|
18066
18157
|
};
|
|
18067
18158
|
}>> & {
|
|
18068
18159
|
onClick?: () => any;
|
|
18069
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "variant" | "disabled" | "size" | "open" | "startIconName" | "startIconType" | "hideEndIcon">;
|
|
18160
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "variant" | "withTooltip" | "tooltipPlacement" | "disabled" | "size" | "maxWidth" | "open" | "startIconName" | "startIconType" | "hideEndIcon">;
|
|
18070
18161
|
$attrs: {
|
|
18071
18162
|
[x: string]: unknown;
|
|
18072
18163
|
};
|
|
@@ -18093,6 +18184,14 @@ declare const _default: {
|
|
|
18093
18184
|
type: import("vue").PropType<"text" | "outlined">;
|
|
18094
18185
|
default: string;
|
|
18095
18186
|
};
|
|
18187
|
+
withTooltip: {
|
|
18188
|
+
type: import("vue").PropType<boolean>;
|
|
18189
|
+
default: boolean;
|
|
18190
|
+
};
|
|
18191
|
+
tooltipPlacement: {
|
|
18192
|
+
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
18193
|
+
default: string;
|
|
18194
|
+
};
|
|
18096
18195
|
disabled: {
|
|
18097
18196
|
type: import("vue").PropType<boolean>;
|
|
18098
18197
|
default: boolean;
|
|
@@ -18101,6 +18200,10 @@ declare const _default: {
|
|
|
18101
18200
|
type: import("vue").PropType<"small" | "medium">;
|
|
18102
18201
|
default: string;
|
|
18103
18202
|
};
|
|
18203
|
+
maxWidth: {
|
|
18204
|
+
type: import("vue").PropType<number>;
|
|
18205
|
+
default: number;
|
|
18206
|
+
};
|
|
18104
18207
|
open: {
|
|
18105
18208
|
type: import("vue").PropType<boolean>;
|
|
18106
18209
|
default: boolean;
|
|
@@ -18124,8 +18227,11 @@ declare const _default: {
|
|
|
18124
18227
|
}, string, {
|
|
18125
18228
|
testId: string;
|
|
18126
18229
|
variant: "text" | "outlined";
|
|
18230
|
+
withTooltip: boolean;
|
|
18231
|
+
tooltipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
18127
18232
|
disabled: boolean;
|
|
18128
18233
|
size: "small" | "medium";
|
|
18234
|
+
maxWidth: number;
|
|
18129
18235
|
open: boolean;
|
|
18130
18236
|
startIconName: string;
|
|
18131
18237
|
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -18163,6 +18269,14 @@ declare const _default: {
|
|
|
18163
18269
|
type: import("vue").PropType<"text" | "outlined">;
|
|
18164
18270
|
default: string;
|
|
18165
18271
|
};
|
|
18272
|
+
withTooltip: {
|
|
18273
|
+
type: import("vue").PropType<boolean>;
|
|
18274
|
+
default: boolean;
|
|
18275
|
+
};
|
|
18276
|
+
tooltipPlacement: {
|
|
18277
|
+
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
18278
|
+
default: string;
|
|
18279
|
+
};
|
|
18166
18280
|
disabled: {
|
|
18167
18281
|
type: import("vue").PropType<boolean>;
|
|
18168
18282
|
default: boolean;
|
|
@@ -18171,6 +18285,10 @@ declare const _default: {
|
|
|
18171
18285
|
type: import("vue").PropType<"small" | "medium">;
|
|
18172
18286
|
default: string;
|
|
18173
18287
|
};
|
|
18288
|
+
maxWidth: {
|
|
18289
|
+
type: import("vue").PropType<number>;
|
|
18290
|
+
default: number;
|
|
18291
|
+
};
|
|
18174
18292
|
open: {
|
|
18175
18293
|
type: import("vue").PropType<boolean>;
|
|
18176
18294
|
default: boolean;
|
|
@@ -18206,6 +18324,14 @@ declare const _default: {
|
|
|
18206
18324
|
type: import("vue").PropType<"text" | "outlined">;
|
|
18207
18325
|
default: string;
|
|
18208
18326
|
};
|
|
18327
|
+
withTooltip: {
|
|
18328
|
+
type: import("vue").PropType<boolean>;
|
|
18329
|
+
default: boolean;
|
|
18330
|
+
};
|
|
18331
|
+
tooltipPlacement: {
|
|
18332
|
+
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
18333
|
+
default: string;
|
|
18334
|
+
};
|
|
18209
18335
|
disabled: {
|
|
18210
18336
|
type: import("vue").PropType<boolean>;
|
|
18211
18337
|
default: boolean;
|
|
@@ -18214,6 +18340,10 @@ declare const _default: {
|
|
|
18214
18340
|
type: import("vue").PropType<"small" | "medium">;
|
|
18215
18341
|
default: string;
|
|
18216
18342
|
};
|
|
18343
|
+
maxWidth: {
|
|
18344
|
+
type: import("vue").PropType<number>;
|
|
18345
|
+
default: number;
|
|
18346
|
+
};
|
|
18217
18347
|
open: {
|
|
18218
18348
|
type: import("vue").PropType<boolean>;
|
|
18219
18349
|
default: boolean;
|
|
@@ -18237,8 +18367,11 @@ declare const _default: {
|
|
|
18237
18367
|
}, string, {
|
|
18238
18368
|
testId: string;
|
|
18239
18369
|
variant: "text" | "outlined";
|
|
18370
|
+
withTooltip: boolean;
|
|
18371
|
+
tooltipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
18240
18372
|
disabled: boolean;
|
|
18241
18373
|
size: "small" | "medium";
|
|
18374
|
+
maxWidth: number;
|
|
18242
18375
|
open: boolean;
|
|
18243
18376
|
startIconName: string;
|
|
18244
18377
|
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './MenuItem.vue_vue_type_style_index_0_scoped_67e53b85_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/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.button-trigger.open[data-v-f9a13e27]{background:var(--action-selected);outline:2px solid var(--action-active);outline-offset:-2px;transition:outline 0s}.button-trigger.open[data-v-f9a13e27]:hover{background:var(--action-selected)}.button-trigger .label[data-v-f9a13e27]{white-space:nowrap}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.chart-container[data-v-8f471697]{border:1px solid var(--common-divider);background:var(--background-paper);display:flex;height:388px;border-radius:0 0 6px 6px;width:100%}.header-wrapper[data-v-8f471697]{height:76px}.chart-content[data-v-8f471697]{width:100%}.chart-content.with-legend[data-v-8f471697]{width:calc(100% - 222px)}.chart-sidebar[data-v-8f471697]{border-left:1px solid var(--common-divider)}.chart[data-v-8f471697]{width:100%;height:312px;position:relative}.chart__canvas[data-v-8f471697]{width:100%;height:100%}.chart__tooltip[data-v-8f471697]{position:absolute;pointer-events:none;transition:all .1s ease;min-width:214px;max-width:270px}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.chart-header[data-v-4c37736e]{display:flex;align-items:center;justify-content:space-between;padding:24px 24px 0}.chart-header .subheader[data-v-4c37736e]{color:var(--text-secondary)}.header-texts[data-v-4c37736e]{display:flex;flex-direction:column;color:var(--text-primary);gap:4px}.type-switch[data-v-4c37736e]{display:flex;align-items:center;gap:4px}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.chart-legend[data-v-c0f71a49]{display:flex;flex-direction:column;width:220px;height:100%;padding-bottom:8px}.search-box[data-v-c0f71a49]{padding:12px 12px 4px}.legend[data-v-c0f71a49]{overflow-y:auto;color:var(--text-primary)}.legend__list[data-v-c0f71a49]{list-style:none;padding:0 12px 0 20px}.legend__list>li[data-v-c0f71a49]{display:flex;align-items:center;gap:8px;height:32px}.legend__list>li .legend-label[data-v-c0f71a49]{width:80%}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.chart-tooltip[data-v-ec636f18]{color:var(--text-primary);background:var(--common-white);box-shadow:0 4px 8px -2px #1018281f;border:1px solid var(--common-divider-elevation-0);border-radius:var(--border-radius-md);padding:calc(var(--spacing-100) - 1px)}.tooltip-title[data-v-ec636f18]{color:var(--text-primary);margin-bottom:var(--spacing-100)}.color-box[data-v-ec636f18]{width:var(--spacing-150);height:var(--spacing-150);border-radius:2px;display:inline-block;margin-right:var(--spacing-100)}.list[data-v-ec636f18]{list-style:none;margin:0;padding:0}.list__item[data-v-ec636f18]{display:flex;align-items:center;margin-bottom:var(--spacing-50);color:var(--text-secondary)}.list__item[data-v-ec636f18]:last-child{margin-bottom:0}.tooltip-footer[data-v-ec636f18]{display:flex;align-items:center;margin-top:var(--spacing-100);color:var(--text-primary)}.flex-grow[data-v-ec636f18]{flex-grow:1}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.checkbox[data-v-8e5b619a]{color:var(--primary-light);position:relative;cursor:pointer;display:flex;align-items:center;user-select:none;line-height:0}.checkbox.focus-visible .checkbox__inner[data-v-8e5b619a]{outline:solid;border-radius:4px}.icon.unchecked[data-v-8e5b619a]{color:var(--default-outlined-border)}.checkbox:hover .icon.unchecked[data-v-8e5b619a]{color:var(--action-active)}.checkboxes[data-v-8e5b619a]{display:inline-flex;align-items:center;justify-content:center;position:relative;box-sizing:border-box;background-color:transparent;outline:0;border:0;line-height:0;margin:0;user-select:none;vertical-align:middle;appearance:none;text-decoration:none;border-radius:50%}.input[data-v-8e5b619a]{z-index:-1;cursor:inherit;position:absolute;opacity:0;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.checkbox__inner[data-v-8e5b619a]{overflow:hidden;pointer-events:none;position:absolute;z-index:0;inset:0}.states[data-v-8e5b619a]{width:var(--spacing-200);height:var(--spacing-200)}.disabled[data-v-8e5b619a]{cursor:default}.disabled .checkbox-label[data-v-8e5b619a]{color:var(--text-disabled)}.checkbox-label[data-v-8e5b619a]{margin-left:var(--spacing-100);color:var(--text-primary)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.container[data-v-09c488cf]{position:fixed;z-index:1300;display:flex;align-items:center;justify-content:center;inset:0;padding:0 var(--spacing-300)}.dialog[data-v-09c488cf]{min-height:7rem;overflow-y:auto;box-shadow:var(--elevation-xl);max-height:calc(100% - var(--spacing-800));background:var(--background-model-elevation);border:1px solid var(--common-divider-elevation-0);border-radius:var(--border-radius-lg)}.dialog--medium[data-v-09c488cf]{width:56.25rem}.dialog--small[data-v-09c488cf]{width:37.5rem}.dialog--extraSmall[data-v-09c488cf]{width:27.75rem}.header[data-v-09c488cf]{position:relative;display:flex;align-items:flex-start;width:100%;padding:calc(var(--spacing-200) - 1px) var(--spacing-300);border-bottom:1px solid var(--common-divider);color:var(--text-primary)}.title[data-v-09c488cf]{display:block;min-height:var(--spacing-300);margin-right:var(--spacing-300)}.subtitle[data-v-09c488cf]{display:block;margin-top:var(--spacing-50);color:var(--text-secondary)}.close-button[data-v-09c488cf]{color:var(--text-secondary);position:absolute;right:var(--spacing-250);top:calc(var(--spacing-200) - 3px)}.content[data-v-09c488cf]{color:var(--text-primary);padding:var(--spacing-300);display:flex;overflow-y:auto;flex-direction:column;justify-content:center}.footer[data-v-09c488cf]{height:30%;width:100%;border-top:1px solid var(--common-divider);display:flex;align-items:center}.action-buttons[data-v-09c488cf]{margin-left:auto;padding:calc(var(--spacing-150) - 1px) var(--spacing-300);display:flex}.action-buttons[data-v-09c488cf] .button-wrap:first-child{margin-right:var(--spacing-100)}.dialog-backdrop[data-v-09c488cf]{position:fixed;z-index:-1;display:flex;background-color:var(--background-backdrop);align-items:center;justify-content:center;inset:0}.v-enter-active[data-v-09c488cf],.v-leave-active[data-v-09c488cf]{transition:opacity .25s ease}.v-enter-from[data-v-09c488cf],.v-leave-to[data-v-09c488cf]{opacity:0}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.container[data-v-49c5ccea]{width:100%;display:flex;max-width:22.5rem;background-color:var(--common-white);padding:.75rem 1rem}.texts[data-v-49c5ccea]{width:calc(100% - 20px);display:flex;justify-content:center;flex-direction:column}.message[data-v-49c5ccea]{margin-top:12px;margin-left:32px;width:calc(100% - 52px);color:var(--text-secondary)}.title[data-v-49c5ccea]{display:flex;align-items:center;gap:8px;color:var(--text-primary)}.snackbar[data-v-49c5ccea]{display:flex;width:22.5rem;box-sizing:border-box;position:fixed;transition:opacity .25s,transform .25s,left .25s,right .25s,top .4s,bottom .25s;overflow-wrap:anywhere;overflow:hidden;z-index:9999;border-radius:12px;border:1px solid var(--common-divider-elevation-0);box-shadow:var(--elevation-lg)}.snackbar.right[data-v-49c5ccea]{right:1rem}.snackbar.left[data-v-49c5ccea]{left:1rem}.close-button-wrapper[data-v-49c5ccea]{width:20px}.snackbar-enter-from.right[data-v-49c5ccea]{right:0;transform:translate(100%)}.snackbar-enter-from.left[data-v-49c5ccea]{left:0;transform:translate(-100%)}.snackbar-leave-to[data-v-49c5ccea]{opacity:0}.snackbar-leave-to.right[data-v-49c5ccea]{right:0;transform:translate(100%)}.snackbar-leave-to.left[data-v-49c5ccea]{left:0;transform:translate(-100%)}.icon-container.snackbar-icon-info[data-v-49c5ccea]{color:var(--action-active)}.icon-container.snackbar-icon-error[data-v-49c5ccea]{color:var(--error-main)}.icon-container.snackbar-icon-success[data-v-49c5ccea]{color:var(--success-main)}.action-wrapper[data-v-49c5ccea]{margin-left:32px;width:calc(100% - 52px)}.action-wrapper .actions[data-v-49c5ccea]{margin-top:12px;display:flex;gap:8px;flex-wrap:wrap}
|