@ironsource/shared-ui 2.1.8 → 2.1.9-test.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/Chart.vue_vue_type_style_index_0_scoped_ea1e5c3e_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_4c37736e_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_c0f71a49_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_119e4bc3_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_9b6cd9d9_lang.css +1 -0
- package/Typography.vue_vue_type_style_index_0_scoped_992962bc_lang.css +1 -0
- package/components/chart/Chart.vue.d.ts +5 -0
- package/components/chart/Chart.vue.js +4 -4
- package/components/chart/Chart.vue2.js +51 -49
- package/components/chart/ChartHeader.vue.d.ts +5 -0
- package/components/chart/ChartHeader.vue.js +2 -2
- package/components/chart/ChartHeader.vue2.js +35 -22
- package/components/chart/ChartLegend.vue.js +3 -3
- package/components/chart/ChartLegend.vue2.js +35 -28
- package/components/chart/SettingsHeader.vue.js +3 -3
- package/components/chart/SettingsHeader.vue2.js +33 -26
- package/components/chart/index.d.ts +20 -1
- package/components/dropdown/v4/DropdownV4.vue.d.ts +6 -0
- package/components/dropdown/v4/DropdownV4.vue.js +2 -2
- package/components/dropdown/v4/DropdownV4.vue2.js +118 -107
- package/components/dropdown/v4/index.d.ts +25 -1
- package/components/typography/v4/Typography.vue.js +2 -2
- package/components/typography/v4/Typography.vue2.js +1 -1
- package/index.d.ts +50 -2
- package/index.js +1 -1
- package/package.json +1 -1
- package/Chart.vue_vue_type_style_index_0_scoped_df85e0af_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_2e3de9c5_lang.css +0 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_efc608f9_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_62a620ee_lang.css +0 -1
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_1791e4fe_lang.css +0 -1
- package/Typography.vue_vue_type_style_index_0_scoped_b00956b7_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -15548,6 +15548,7 @@ declare const _default: {
|
|
|
15548
15548
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
15549
15549
|
disableVirtualScroll: boolean;
|
|
15550
15550
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
15551
|
+
withConditions: boolean;
|
|
15551
15552
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
15552
15553
|
theme: {
|
|
15553
15554
|
type: import("vue").PropType<string>;
|
|
@@ -15763,6 +15764,11 @@ declare const _default: {
|
|
|
15763
15764
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
15764
15765
|
default: any;
|
|
15765
15766
|
};
|
|
15767
|
+
withConditions: {
|
|
15768
|
+
type: import("vue").PropType<boolean>;
|
|
15769
|
+
required: true;
|
|
15770
|
+
default: boolean;
|
|
15771
|
+
};
|
|
15766
15772
|
}>> & {
|
|
15767
15773
|
onCopyToClipboard?: () => any;
|
|
15768
15774
|
onClear?: () => any;
|
|
@@ -15773,7 +15779,7 @@ declare const _default: {
|
|
|
15773
15779
|
onOnsearch?: (value: string) => any;
|
|
15774
15780
|
onOpened?: () => any;
|
|
15775
15781
|
onClosed?: () => any;
|
|
15776
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
15782
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
15777
15783
|
$attrs: {
|
|
15778
15784
|
[x: string]: unknown;
|
|
15779
15785
|
};
|
|
@@ -16002,6 +16008,11 @@ declare const _default: {
|
|
|
16002
16008
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16003
16009
|
default: any;
|
|
16004
16010
|
};
|
|
16011
|
+
withConditions: {
|
|
16012
|
+
type: import("vue").PropType<boolean>;
|
|
16013
|
+
required: true;
|
|
16014
|
+
default: boolean;
|
|
16015
|
+
};
|
|
16005
16016
|
}>> & {
|
|
16006
16017
|
onCopyToClipboard?: () => any;
|
|
16007
16018
|
onClear?: () => any;
|
|
@@ -16076,6 +16087,7 @@ declare const _default: {
|
|
|
16076
16087
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
16077
16088
|
disableVirtualScroll: boolean;
|
|
16078
16089
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
16090
|
+
withConditions: boolean;
|
|
16079
16091
|
}, {}, string> & {
|
|
16080
16092
|
beforeCreate?: (() => void) | (() => void)[];
|
|
16081
16093
|
created?: (() => void) | (() => void)[];
|
|
@@ -16311,6 +16323,11 @@ declare const _default: {
|
|
|
16311
16323
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16312
16324
|
default: any;
|
|
16313
16325
|
};
|
|
16326
|
+
withConditions: {
|
|
16327
|
+
type: import("vue").PropType<boolean>;
|
|
16328
|
+
required: true;
|
|
16329
|
+
default: boolean;
|
|
16330
|
+
};
|
|
16314
16331
|
}>> & {
|
|
16315
16332
|
onCopyToClipboard?: () => any;
|
|
16316
16333
|
onClear?: () => any;
|
|
@@ -16543,6 +16560,11 @@ declare const _default: {
|
|
|
16543
16560
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
16544
16561
|
default: any;
|
|
16545
16562
|
};
|
|
16563
|
+
withConditions: {
|
|
16564
|
+
type: import("vue").PropType<boolean>;
|
|
16565
|
+
required: true;
|
|
16566
|
+
default: boolean;
|
|
16567
|
+
};
|
|
16546
16568
|
}>> & {
|
|
16547
16569
|
onCopyToClipboard?: () => any;
|
|
16548
16570
|
onClear?: () => any;
|
|
@@ -16617,6 +16639,7 @@ declare const _default: {
|
|
|
16617
16639
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
16618
16640
|
disableVirtualScroll: boolean;
|
|
16619
16641
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
16642
|
+
withConditions: boolean;
|
|
16620
16643
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
16621
16644
|
$slots: {
|
|
16622
16645
|
label?(_: {}): any;
|
|
@@ -16654,6 +16677,7 @@ declare const _default: {
|
|
|
16654
16677
|
onClick: () => void;
|
|
16655
16678
|
};
|
|
16656
16679
|
}): any;
|
|
16680
|
+
"dropdown-conditions"?(_: {}): any;
|
|
16657
16681
|
"inline-search"?(_: {}): any;
|
|
16658
16682
|
"input-list"?(_: {
|
|
16659
16683
|
open: true;
|
|
@@ -19607,6 +19631,7 @@ declare const _default: {
|
|
|
19607
19631
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
19608
19632
|
disableVirtualScroll: boolean;
|
|
19609
19633
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
19634
|
+
withConditions: boolean;
|
|
19610
19635
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
19611
19636
|
theme: {
|
|
19612
19637
|
type: import("vue").PropType<string>;
|
|
@@ -19822,6 +19847,11 @@ declare const _default: {
|
|
|
19822
19847
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
19823
19848
|
default: any;
|
|
19824
19849
|
};
|
|
19850
|
+
withConditions: {
|
|
19851
|
+
type: import("vue").PropType<boolean>;
|
|
19852
|
+
required: true;
|
|
19853
|
+
default: boolean;
|
|
19854
|
+
};
|
|
19825
19855
|
}>> & {
|
|
19826
19856
|
onCopyToClipboard?: () => any;
|
|
19827
19857
|
onClear?: () => any;
|
|
@@ -19832,7 +19862,7 @@ declare const _default: {
|
|
|
19832
19862
|
onOnsearch?: (value: string) => any;
|
|
19833
19863
|
onOpened?: () => any;
|
|
19834
19864
|
onClosed?: () => any;
|
|
19835
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
19865
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
19836
19866
|
$attrs: {
|
|
19837
19867
|
[x: string]: unknown;
|
|
19838
19868
|
};
|
|
@@ -20061,6 +20091,11 @@ declare const _default: {
|
|
|
20061
20091
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
20062
20092
|
default: any;
|
|
20063
20093
|
};
|
|
20094
|
+
withConditions: {
|
|
20095
|
+
type: import("vue").PropType<boolean>;
|
|
20096
|
+
required: true;
|
|
20097
|
+
default: boolean;
|
|
20098
|
+
};
|
|
20064
20099
|
}>> & {
|
|
20065
20100
|
onCopyToClipboard?: () => any;
|
|
20066
20101
|
onClear?: () => any;
|
|
@@ -20135,6 +20170,7 @@ declare const _default: {
|
|
|
20135
20170
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
20136
20171
|
disableVirtualScroll: boolean;
|
|
20137
20172
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
20173
|
+
withConditions: boolean;
|
|
20138
20174
|
}, {}, string> & {
|
|
20139
20175
|
beforeCreate?: (() => void) | (() => void)[];
|
|
20140
20176
|
created?: (() => void) | (() => void)[];
|
|
@@ -20370,6 +20406,11 @@ declare const _default: {
|
|
|
20370
20406
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
20371
20407
|
default: any;
|
|
20372
20408
|
};
|
|
20409
|
+
withConditions: {
|
|
20410
|
+
type: import("vue").PropType<boolean>;
|
|
20411
|
+
required: true;
|
|
20412
|
+
default: boolean;
|
|
20413
|
+
};
|
|
20373
20414
|
}>> & {
|
|
20374
20415
|
onCopyToClipboard?: () => any;
|
|
20375
20416
|
onClear?: () => any;
|
|
@@ -20602,6 +20643,11 @@ declare const _default: {
|
|
|
20602
20643
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
20603
20644
|
default: any;
|
|
20604
20645
|
};
|
|
20646
|
+
withConditions: {
|
|
20647
|
+
type: import("vue").PropType<boolean>;
|
|
20648
|
+
required: true;
|
|
20649
|
+
default: boolean;
|
|
20650
|
+
};
|
|
20605
20651
|
}>> & {
|
|
20606
20652
|
onCopyToClipboard?: () => any;
|
|
20607
20653
|
onClear?: () => any;
|
|
@@ -20676,6 +20722,7 @@ declare const _default: {
|
|
|
20676
20722
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
20677
20723
|
disableVirtualScroll: boolean;
|
|
20678
20724
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
20725
|
+
withConditions: boolean;
|
|
20679
20726
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
20680
20727
|
$slots: {
|
|
20681
20728
|
label?(_: {}): any;
|
|
@@ -20713,6 +20760,7 @@ declare const _default: {
|
|
|
20713
20760
|
onClick: () => void;
|
|
20714
20761
|
};
|
|
20715
20762
|
}): any;
|
|
20763
|
+
"dropdown-conditions"?(_: {}): any;
|
|
20716
20764
|
"inline-search"?(_: {}): any;
|
|
20717
20765
|
"input-list"?(_: {
|
|
20718
20766
|
open: true;
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './MultiBar.vue_vue_type_style_index_0_scoped_71617643_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
|
-
.chart-container[data-v-df85e0af]{border:1px solid var(--common-divider);background:var(--background-paper);display:flex;height:388px;border-radius:0 0 6px 6px}.header-wrapper[data-v-df85e0af]{height:76px}.chart-content[data-v-df85e0af]{flex:1}.chart-sidebar[data-v-df85e0af]{border-left:1px solid var(--common-divider)}.chart[data-v-df85e0af]{width:100%;height:312px;position:relative}.chart__canvas[data-v-df85e0af]{width:100%;height:100%}.chart__tooltip[data-v-df85e0af]{position:absolute;pointer-events:none;transition:all .1s ease;min-width:214px;max-width:270px}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.chart-header[data-v-2e3de9c5]{display:flex;align-items:center;justify-content:space-between;padding:24px 24px 0}.header-texts[data-v-2e3de9c5]{display:flex;flex-direction:column;color:var(--text-primary);gap:4px}.type-switch[data-v-2e3de9c5]{display:flex;align-items:center;gap:4px}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.chart-legend[data-v-efc608f9]{display:flex;flex-direction:column;width:220px;height:100%;padding-bottom:8px}.search-box[data-v-efc608f9]{padding:12px 12px 4px}.legend[data-v-efc608f9]{overflow-y:auto;color:var(--text-primary)}.legend__list[data-v-efc608f9]{list-style:none;padding:0 12px 0 20px}.legend__list>li[data-v-efc608f9]{display:flex;align-items:center;gap:8px;height:32px}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.v-enter-active[data-v-62a620ee],.v-leave-active[data-v-62a620ee]{transition:opacity .25s ease}ol[data-v-62a620ee],ul[data-v-62a620ee],menu[data-v-62a620ee]{list-style:none;margin:0;padding:0}.dropdown.full-width[data-v-62a620ee],.dropdown.full-width .button__container[data-v-62a620ee]{width:100%}.dropdown-list-wrapper[data-v-62a620ee]{display:flex;flex-direction:column;padding:.5rem .5rem .25rem}.dropdown-list-wrapper--multi[data-v-62a620ee]{padding:.5rem}.list-container--multi[data-v-62a620ee]{margin-bottom:0}.inline-search .inline-search-wrapper[data-v-62a620ee]{padding-bottom:.25rem}.inline-search .list-container[data-v-62a620ee]{padding-top:0}.no-result-container[data-v-62a620ee]{height:100%;display:flex;align-items:center;padding:.375rem .5rem;color:var(--text-disabled)}.no-result[data-v-62a620ee]{color:var(--text-disabled);padding-left:.5rem}.list[data-v-62a620ee]{outline:none;display:flex;flex-direction:column;width:100%;min-height:2rem}.list--multi[data-v-62a620ee]{margin-bottom:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.image-slot[data-v-62a620ee]{margin-right:.5rem}.actions-wrapper[data-v-62a620ee]{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-62a620ee]{margin-left:.5rem}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.settings-header-container[data-v-1791e4fe]{display:flex;border:.0625rem solid var(--common-divider);border-radius:.375rem .375rem 0 0;border-bottom:none;background-color:var(--background-paper-elevation-0, #f9f9f9);justify-content:space-between}.settings-header-container .settings[data-v-1791e4fe]{display:flex;flex-direction:row;justify-content:space-between;height:4rem;padding:.75rem 0 .75rem 1.5rem;align-items:center;gap:.75rem;flex:1}.settings-header-container .settings .chart-type-selection[data-v-1791e4fe]{display:flex;height:1.75rem;max-width:8.125rem}.settings-header-container .settings .chart-type-selection[data-v-1791e4fe] .displayed-value{font-weight:600}.settings-header-container .settings-spacer[data-v-1791e4fe]{padding:.75rem 1.5rem}.settings-header-container .breakdowns[data-v-1791e4fe]{display:flex;width:13.8125rem;height:4rem;padding:0 .75rem;flex-direction:column;justify-content:center;align-items:flex-start;gap:.75rem}.settings-header-container .breakdowns-border[data-v-1791e4fe]{border-left:.0625rem solid var(--common-divider)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";.font-tab-label2[data-v-b00956b7],.font-chart-2[data-v-b00956b7],.font-chart-1[data-v-b00956b7]{font-family:Inter,sans-serif;font-weight:700}.font-chip-label[data-v-b00956b7],.font-table-label[data-v-b00956b7],.font-button[data-v-b00956b7],.font-heading-6[data-v-b00956b7],.font-heading-5[data-v-b00956b7],.font-heading-4[data-v-b00956b7],.font-heading-3[data-v-b00956b7],.font-heading-2[data-v-b00956b7],.font-heading-1[data-v-b00956b7],.font-title[data-v-b00956b7]{font-family:Inter,sans-serif;font-weight:600}.font-tab-label1[data-v-b00956b7],.font-input-label[data-v-b00956b7],.font-overline[data-v-b00956b7],.font-subtitle-2[data-v-b00956b7],.font-subtitle-1[data-v-b00956b7]{font-family:Inter,sans-serif;font-weight:500}.font-caption[data-v-b00956b7],.font-body-2[data-v-b00956b7],.font-body-1[data-v-b00956b7]{font-family:Inter,sans-serif;font-weight:400}.font-title[data-v-b00956b7]{font-size:2.5rem;line-height:3rem;letter-spacing:-.055rem}.font-heading-1[data-v-b00956b7]{font-size:1.5rem;line-height:1.75rem;letter-spacing:-.0285rem}.font-heading-2[data-v-b00956b7]{font-size:1.125rem;line-height:1.75rem;letter-spacing:-.01575rem}.font-heading-3[data-v-b00956b7]{font-size:1rem;line-height:1.5rem;letter-spacing:-.011rem}.font-heading-4[data-v-b00956b7]{font-size:.875rem;line-height:1rem;letter-spacing:unset}.font-heading-5[data-v-b00956b7]{font-size:.8125rem;line-height:16px;letter-spacing:unset}.font-heading-6[data-v-b00956b7]{font-size:.75rem;line-height:.75rem;letter-spacing:0}.font-body-1[data-v-b00956b7]{font-size:.875rem;line-height:1.25rem;letter-spacing:-.00525rem}.font-body-2[data-v-b00956b7]{font-size:.8125rem;line-height:1.25rem;letter-spacing:-.00244rem}.font-subtitle-1[data-v-b00956b7]{font-size:.875rem;line-height:1.25rem;letter-spacing:-.00525rem}.font-subtitle-2[data-v-b00956b7]{font-size:.8125rem;line-height:1.25rem;letter-spacing:-.00244rem}.font-chart-1[data-v-b00956b7]{font-size:1.5rem;line-height:1.5rem;letter-spacing:-.015rem}.font-chart-2[data-v-b00956b7]{font-size:1.25rem;line-height:1.25rem;letter-spacing:-.0125rem}.font-button[data-v-b00956b7]{font-size:.875rem;line-height:1.25rem;letter-spacing:.00875rem}.font-overline[data-v-b00956b7]{font-size:.75rem;line-height:1rem;letter-spacing:.045rem;text-transform:uppercase}.font-caption[data-v-b00956b7]{font-size:.75rem;line-height:1rem}.font-table-label[data-v-b00956b7]{font-size:.8125rem;line-height:1.25rem;letter-spacing:.00813rem}.font-input-label[data-v-b00956b7]{font-size:.8125rem;line-height:1rem;letter-spacing:.00813rem}.font-tab-label1[data-v-b00956b7],.font-tab-label2[data-v-b00956b7]{font-size:.875rem;line-height:1rem}.font-chip-label[data-v-b00956b7]{font-size:.75rem;line-height:1rem}h1[data-v-b00956b7],h2[data-v-b00956b7],h3[data-v-b00956b7],h4[data-v-b00956b7],h5[data-v-b00956b7],h6[data-v-b00956b7]{margin:0}.antialiased[data-v-b00956b7]{-webkit-font-smoothing:antialiased}.truncate[data-v-b00956b7]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block}.typography-tooltip[data-v-b00956b7],.typography-tooltip[data-v-b00956b7] .container{display:block}
|