@ironsource/shared-ui 2.1.12-rc.25 → 2.1.12-rc.27
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_adb49e50_lang.css +1 -0
- package/ButtonV4.vue_vue_type_style_index_0_scoped_852be7ec_lang.css +1 -0
- package/Chart.vue_vue_type_style_index_0_scoped_e8f25a03_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_af520313_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_db8a902c_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_6103d8bd_lang.css +1 -0
- package/ChartPlane.vue_vue_type_style_index_0_scoped_4f67d41d_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_3315b68f_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_f5204c04_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_b21a79b1_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_55dd36a7_lang.css +1 -0
- package/Link.vue_vue_type_style_index_0_scoped_ad98fe7b_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_0287cebf_lang.css +1 -0
- package/SwitchV4.vue_vue_type_style_index_0_scoped_cd6621a7_lang.css +1 -0
- package/components/button/v4/ButtonV4.vue.d.ts +1 -0
- package/components/button/v4/ButtonV4.vue.js +3 -3
- package/components/button/v4/ButtonV4.vue2.js +28 -27
- package/components/chart/Chart.vue.d.ts +6 -1
- package/components/chart/Chart.vue.js +3 -3
- package/components/chart/Chart.vue2.js +6 -4
- package/components/chart/ChartHeader.vue.d.ts +5 -0
- package/components/chart/ChartHeader.vue.js +2 -2
- package/components/chart/ChartHeader.vue2.js +43 -35
- package/components/chart/ChartHeaderTrend.vue.js +3 -3
- package/components/chart/ChartHeaderTrend.vue2.js +17 -17
- package/components/chart/ChartLegend.vue.js +3 -3
- package/components/chart/ChartLegend.vue2.js +1 -1
- package/components/chart/ChartPlane.vue.d.ts +6 -1
- package/components/chart/ChartPlane.vue.js +5 -5
- package/components/chart/ChartPlane.vue2.js +140 -138
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +5 -5
- package/components/chart/index.d.ts +43 -24
- package/components/chart/utils/utils.d.ts +1 -2
- package/components/chart/utils/utils.js +13 -19
- package/components/dateRange/common/DateRange.common.js +81 -75
- package/components/dateRange/common/DateServices.common.d.ts +1 -1
- package/components/dateRange/common/DateServices.common.js +1 -0
- package/components/dropdown/common/Dropdown.common.js +82 -78
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.d.ts +1 -0
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +16 -13
- package/components/dropdown/v4/ConditionalDropdown.vue.d.ts +17 -9
- package/components/dropdown/v4/ConditionalDropdown.vue.js +4 -4
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +142 -123
- package/components/dropdown/v4/DropdownV4.vue.d.ts +10 -0
- package/components/dropdown/v4/DropdownV4.vue.js +4 -4
- package/components/dropdown/v4/DropdownV4.vue2.js +174 -163
- package/components/dropdown/v4/OptionV4.vue.d.ts +10 -5
- package/components/dropdown/v4/OptionV4.vue.js +4 -4
- package/components/dropdown/v4/OptionV4.vue2.js +106 -99
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +8 -0
- package/components/dropdown/v4/index.d.ts +510 -127
- package/components/includeExclude/IncludeExclude.vue.d.ts +1 -1
- package/components/includeExclude/IncludeExcludeDragDrop.vue.d.ts +1 -1
- package/components/includeExclude/index.d.ts +40 -40
- package/components/link/Link.vue.d.ts +70 -0
- package/components/link/Link.vue.js +7 -0
- package/components/link/Link.vue2.js +43 -0
- package/components/link/index.d.ts +201 -0
- package/components/link/index.js +6 -0
- package/components/switch/v4/SwitchV4.vue.d.ts +11 -0
- package/components/switch/v4/SwitchV4.vue.js +2 -2
- package/components/switch/v4/SwitchV4.vue2.js +39 -26
- package/components/switch/v4/index.d.ts +18 -0
- package/components/table/v4/DataGrid.vue.d.ts +2 -0
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +111 -110
- package/components/table/v4/index.d.ts +2 -0
- package/composables/useDateService.d.ts +7 -0
- package/composables/useDateService.js +10 -0
- package/index.d.ts +1120 -310
- package/index.js +111 -105
- package/mocks/apps.d.ts +1 -0
- package/mocks/optionsWithIcons.d.ts +2 -0
- package/package.json +9 -1
- package/testids/index.d.ts +4 -0
- package/testids/index.js +31 -30
- package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_0123c361_lang.css +0 -1
- package/ButtonV4.vue_vue_type_style_index_0_scoped_d7948c77_lang.css +0 -1
- package/Chart.vue_vue_type_style_index_0_scoped_03771fa3_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_da34b108_lang.css +0 -1
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_ebc0c582_lang.css +0 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_fd9e4ea2_lang.css +0 -1
- package/ChartPlane.vue_vue_type_style_index_0_scoped_903fc6ae_lang.css +0 -1
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_e53c6287_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_cce87267_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_5b72e35a_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_92ead583_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_3dc741c1_lang.css +0 -1
- package/SwitchV4.vue_vue_type_style_index_0_scoped_fa120cf6_lang.css +0 -1
- package/components/chart/composables/useChartValues.d.ts +0 -12
- package/components/chart/composables/useChartValues.js +0 -32
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.button-trigger.open[data-v-adb49e50]{background:var(--action-selected);outline:2px solid var(--action-active);outline-offset:-2px;transition:outline 0s}.button-trigger.open[data-v-adb49e50]:hover{background:var(--action-selected)}.button-trigger .label-wrapper[data-v-adb49e50]{display:block;width:100%}.button-trigger .label-wrapper .label-text[data-v-adb49e50]{white-space:nowrap}.button-trigger[data-v-adb49e50] .end-icon{color:var(--action-active)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.button-wrap[data-v-852be7ec]{border-radius:var(--border-radius-md);transition:all .2s ease;padding:0;min-width:auto;background-image:none;box-sizing:border-box;border:0;cursor:pointer}.contained.primary[data-v-852be7ec]{color:var(--primary-button-contrast-text);background:var(--primary-main)}.contained.primary[data-v-852be7ec]:hover{background:var(--primary-darker)}.contained.primary[data-v-852be7ec]:disabled{color:var(--text-disabled);background:var(--action-disabled-background)!important;opacity:1}.contained.primary[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.contained.default[data-v-852be7ec]{color:var(--default-button-contrast-text);background:var(--default-main)}.contained.default[data-v-852be7ec]:hover{background:var(--default-light)}.contained.default[data-v-852be7ec]:disabled{color:var(--text-disabled);background:var(--action-disabled-background)!important;opacity:1}.contained.default[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.contained.danger[data-v-852be7ec]{color:var(--error-button-contrast-text);background:var(--error-main)}.contained.danger[data-v-852be7ec]:hover{background:var(--error-dark)}.contained.danger[data-v-852be7ec]:disabled{color:var(--text-disabled);background:var(--action-disabled-background)!important;opacity:1}.contained.danger[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.contained.info[data-v-852be7ec]{color:var(--info-button-contrast-text);background:var(--info-main)}.contained.info[data-v-852be7ec]:hover{background:var(--info-dark)}.contained.info[data-v-852be7ec]:disabled{color:var(--text-disabled);background:var(--action-disabled-background)!important;opacity:1}.contained.info[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.contained.success[data-v-852be7ec]{color:var(--success-button-contrast-text);background:var(--success-main)}.contained.success[data-v-852be7ec]:hover{background:var(--success-dark)}.contained.success[data-v-852be7ec]:disabled{color:var(--text-disabled);background:var(--action-disabled-background)!important;opacity:1}.contained.success[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.contained.warning[data-v-852be7ec]{color:var(--warning-button-contrast-text);background:var(--warning-main)}.contained.warning[data-v-852be7ec]:hover{background:var(--warning-dark)}.contained.warning[data-v-852be7ec]:disabled{color:var(--text-disabled);background:var(--action-disabled-background)!important;opacity:1}.contained.warning[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.contained.loading[data-v-852be7ec],.contained.loading[data-v-852be7ec]:hover{background:var(--action-disabled-background)}.outlined[data-v-852be7ec]{background:transparent}.outlined.primary[data-v-852be7ec]{color:var(--primary-main);border:1px solid var(--primary-main)}.outlined.primary[data-v-852be7ec]:hover{background:var(--primary-lighter)}.outlined.primary[data-v-852be7ec]:disabled{color:var(--text-disabled);background:transparent;border:1px solid var(--default-outlined-border)!important;opacity:1}.outlined.primary[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.outlined.default[data-v-852be7ec]{color:var(--text-primary);border:1px solid var(--default-outlined-border)}.outlined.default[data-v-852be7ec]:hover{border:1px solid var(--action-active);background:var(--action-hover)}.outlined.default[data-v-852be7ec]:disabled{color:var(--text-disabled);background:transparent;border:1px solid var(--default-outlined-border)!important;opacity:1}.outlined.default[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.outlined.danger[data-v-852be7ec]{color:var(--error-main);border:1px solid var(--error-main)}.outlined.danger[data-v-852be7ec]:hover{background:var(--error-lighter)}.outlined.danger[data-v-852be7ec]:disabled{color:var(--text-disabled);background:transparent;border:1px solid var(--default-outlined-border)!important;opacity:1}.outlined.danger[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.outlined.info[data-v-852be7ec]{color:var(--info-main);border:1px solid var(--info-main)}.outlined.info[data-v-852be7ec]:hover{background:var(--info-lighter)}.outlined.info[data-v-852be7ec]:disabled{color:var(--text-disabled);background:transparent;border:1px solid var(--default-outlined-border)!important;opacity:1}.outlined.info[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.outlined.success[data-v-852be7ec]{color:var(--success-main);border:1px solid var(--success-main)}.outlined.success[data-v-852be7ec]:hover{background:var(--success-lighter)}.outlined.success[data-v-852be7ec]:disabled{color:var(--text-disabled);background:transparent;border:1px solid var(--default-outlined-border)!important;opacity:1}.outlined.success[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.outlined.warning[data-v-852be7ec]{color:var(--warning-darker);border:1px solid var(--warning-darker)}.outlined.warning[data-v-852be7ec]:hover{background:var(--warning-lighter)}.outlined.warning[data-v-852be7ec]:disabled{color:var(--text-disabled);background:transparent;border:1px solid var(--default-outlined-border)!important;opacity:1}.outlined.warning[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.outlined.loading[data-v-852be7ec],.outlined.loading[data-v-852be7ec]:hover{border:1px solid var(--common-divider);background:var(--action-disabled-background)}.text[data-v-852be7ec]{background:transparent}.text.primary[data-v-852be7ec]{color:var(--primary-main)}.text.primary[data-v-852be7ec]:hover{background:var(--primary-lighter)}.text.primary[data-v-852be7ec]:disabled{color:var(--text-disabled);opacity:1;background:transparent}.text.primary[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.text.default[data-v-852be7ec]{color:var(--text-primary)}.text.default[data-v-852be7ec]:hover{background:var(--action-hover)}.text.default[data-v-852be7ec]:disabled{color:var(--text-disabled);opacity:1;background:transparent}.text.default[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.text.danger[data-v-852be7ec]{color:var(--error-main)}.text.danger[data-v-852be7ec]:hover{background:var(--error-lighter)}.text.danger[data-v-852be7ec]:disabled{color:var(--text-disabled);opacity:1;background:transparent}.text.danger[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.text.info[data-v-852be7ec]{color:var(--info-main)}.text.info[data-v-852be7ec]:hover{background:var(--info-lighter)}.text.info[data-v-852be7ec]:disabled{color:var(--text-disabled);opacity:1;background:transparent}.text.info[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.text.success[data-v-852be7ec]{color:var(--success-main)}.text.success[data-v-852be7ec]:hover{background:var(--success-lighter)}.text.success[data-v-852be7ec]:disabled{color:var(--text-disabled);opacity:1;background:transparent}.text.success[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.text.warning[data-v-852be7ec]{color:var(--warning-darker)}.text.warning[data-v-852be7ec]:hover{background:var(--warning-lighter)}.text.warning[data-v-852be7ec]:disabled{color:var(--text-disabled);opacity:1;background:transparent}.text.warning[data-v-852be7ec]:disabled:hover{cursor:not-allowed}.text.loading[data-v-852be7ec],.text.loading[data-v-852be7ec]:hover{border:0;background:transparent}.small[data-v-852be7ec]{padding:2px 6px}.small.outlined[data-v-852be7ec]{padding:1px 5px}.medium[data-v-852be7ec]{padding:4px 8px}.medium.outlined[data-v-852be7ec]{padding:3px 7px}.large[data-v-852be7ec]{padding:6px 8px}.large.outlined[data-v-852be7ec]{padding:5px 7px}.extraLarge[data-v-852be7ec]{padding:10px 12px}.extraLarge.outlined[data-v-852be7ec]{padding:9px 11px}.small[data-v-852be7ec],.medium[data-v-852be7ec],.large[data-v-852be7ec],.extraLarge[data-v-852be7ec]{height:auto}.flex[data-v-852be7ec]{display:flex;align-items:center;gap:8px}.loading.with-start-icon .content-with-icon[data-v-852be7ec]{padding-left:22px}.loading.with-end-icon .content-with-icon[data-v-852be7ec]{padding-right:22px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.chart-container[data-v-e8f25a03]{border:1px solid var(--common-divider);background:var(--background-paper);display:flex;border-radius:0 0 6px 6px;width:100%}.chart-planes[data-v-e8f25a03]{width:100%;height:100%;overflow-y:auto}.chart-planes.with-legend[data-v-e8f25a03]{width:calc(100% - 221px)}.chart-planes .extra-chart-plane[data-v-e8f25a03]{border-top:1px solid var(--common-divider)}.chart-sidebar[data-v-e8f25a03]{border-left:1px solid var(--common-divider)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.chart-header[data-v-af520313]{display:flex;align-items:center;justify-content:space-between;padding:24px 24px 0}.chart-header--compact[data-v-af520313]{padding-top:22px}.chart-header--compact .header-texts[data-v-af520313]{flex-direction:row}.chart-header--compact .header-text[data-v-af520313]{color:var(--text-secondary)}.header-row[data-v-af520313]{display:flex;align-items:flex-end;gap:4px}.header-texts[data-v-af520313]{display:flex;flex-direction:column;color:var(--text-primary);gap:4px;cursor:default}.header-actions[data-v-af520313]{display:flex;align-items:center;gap:var(--spacing-200)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.chart-trend[data-v-db8a902c]{display:flex;color:var(--text-secondary)}.chart-trend--up[data-v-db8a902c]{color:var(--success-contrast-text)}.chart-trend--up .trend-icon[data-v-db8a902c]{color:var(--success-darker)}.chart-trend--down[data-v-db8a902c]{color:var(--error-contrast-text)}.chart-trend--down .trend-icon[data-v-db8a902c]{color:var(--error-dark)}.trend-icon[data-v-db8a902c]{display:flex;align-self:normal}.chart-trend-tooltip[data-v-db8a902c]{align-items:normal}.trend-tooltip[data-v-db8a902c]{display:flex;flex-direction:column}.trend-tooltip__header[data-v-db8a902c]{margin-bottom:.375rem}.trend-tooltip__text[data-v-db8a902c]{color:var(--text-secondary)}.separator[data-v-db8a902c]{display:flex;align-items:center;gap:.5rem;justify-content:center;height:1.1875rem}.separator__text[data-v-db8a902c]{display:block;color:var(--text-secondary)}.separator hr[data-v-db8a902c]{width:100%;height:1px;border:0;background:var(--common-divider)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.disabled-tooltip[data-v-6103d8bd],.disabled-tooltip[data-v-6103d8bd] .container{width:100%}.chart-legend[data-v-6103d8bd]{display:flex;flex-direction:column;width:240px;height:100%;padding:0 8px 8px 12px}.search-box[data-v-6103d8bd]{padding:12px 0 4px;display:flex;align-items:center;gap:4px}.legend[data-v-6103d8bd]{overflow-y:auto;color:var(--text-primary);height:100%;overflow-x:hidden}.legend__list[data-v-6103d8bd]{list-style:none;padding:0}.legend__list>li[data-v-6103d8bd]{display:flex;align-items:center;gap:8px;padding:6px 8px}.legend__list>li[data-v-6103d8bd]:hover{background-color:var(--action-hover);border-radius:8px;cursor:pointer}.legend__list>li .icon-color[data-v-6103d8bd]{color:var(--action-active)}.legend__list>li.disabled-item[data-v-6103d8bd]{cursor:not-allowed!important;background:var(--background-paper);color:var(--text-disabled)}.legend__list>li.disabled-item .icon-color[data-v-6103d8bd]{color:var(--text-disabled)}.legend__list>li.empty-list[data-v-6103d8bd]{display:flex;align-items:center;justify-content:flex-start;height:32px;color:var(--text-disabled)}.legend__list>li.empty-list[data-v-6103d8bd]:hover{background-color:transparent;cursor:default}.legend__list>li .item-wrapper[data-v-6103d8bd]{display:flex;align-items:center;gap:8px;width:100%}.legend__list>li .item-wrapper .legend-label[data-v-6103d8bd]{width:80%}.legend__list>li .item-wrapper .label-container[data-v-6103d8bd]{display:flex;flex-direction:column;width:100%}.legend__list>li .item-wrapper .label-container .legend-caption[data-v-6103d8bd]{display:flex;color:var(--text-secondary)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.chart-plane-container[data-v-4f67d41d]{--headerHeight: var(--11153e48);width:100%;height:var(--30644433);position:relative}.header-wrapper[data-v-4f67d41d]{position:absolute;width:100%;height:var(--headerHeight);top:0;z-index:1}.chart-plane[data-v-4f67d41d]{padding-top:var(--headerHeight);height:100%}.chart-empty[data-v-4f67d41d]{background:var(--background-paper)}.chart[data-v-4f67d41d]{width:100%;height:100%;position:relative}.chart__canvas[data-v-4f67d41d]{width:100%;height:100%}.chart__tooltip[data-v-4f67d41d]{position:absolute;pointer-events:none;transition:all .1s ease;min-width:214px;max-width:270px;z-index:1}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.chart-tooltip[data-v-3315b68f]{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);width:280px;padding:calc(var(--spacing-100) - 1px)}.color-box[data-v-3315b68f]{width:12px;height:12px;border-radius:2px;display:inline-block;margin-right:var(--spacing-100)}.color-box+.platform-icon[data-v-3315b68f]{margin-left:calc(var(--spacing-50) - var(--spacing-100))}.list[data-v-3315b68f]{list-style:none;margin:0;padding:0}.list__item[data-v-3315b68f]{display:flex;align-items:center;margin-bottom:var(--spacing-50);color:var(--text-secondary)}.list__item[data-v-3315b68f]:last-child{margin-bottom:0}.platform-icon[data-v-3315b68f]{color:var(--action-active);margin-right:var(--spacing-50)}.popover-label-wrapper[data-v-3315b68f]{display:flex;width:200px;flex-grow:1}.truncated-label[data-v-3315b68f]{max-width:90%}.tooltip-footer[data-v-3315b68f]{display:flex;align-items:center;margin-top:var(--spacing-100);color:var(--text-primary)}.flex-grow[data-v-3315b68f]{flex-grow:1}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.custom-list-area[data-v-f5204c04]{color:var(--text-secondary);width:100%;text-align:center;box-sizing:border-box;padding:63px 10px}.inline-search[data-v-f5204c04]{width:100%}.contain-accept[data-v-f5204c04]{padding:6px 8px;margin-bottom:4px;cursor:pointer}.contain-accept[data-v-f5204c04]:hover{background-color:var(--action-hover);border-radius:.5rem}.contain-accept--query[data-v-f5204c04]{margin-left:4px;display:inline-flex;color:var(--primary-main)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.sticky[data-v-b21a79b1]{position:sticky}.table-container[data-v-b21a79b1]{width:100%;position:relative;display:flex;flex-direction:column}.table-header[data-v-b21a79b1]{display:flex;align-items:center;height:calc(var(--spacing-800) - 1px);border-bottom:1px solid var(--common-divider);background-color:var(--background-paper-elevation-0);position:sticky;left:0;padding:var(--spacing-300)}.table-header .table-title[data-v-b21a79b1]{display:flex;flex:1;align-items:center;justify-content:flex-start;height:100%;color:var(--text-primary)}.table-header .table-header-right[data-v-b21a79b1]{display:flex;align-items:center;height:100%}.table-header .search-wrapper[data-v-b21a79b1]{width:13.75rem}.table-header.isStickyHeader[data-v-b21a79b1]{z-index:calc(var(--fa2ac520) + 3);top:0}.table-head-container[data-v-b21a79b1]{display:flex;align-items:center;white-space:nowrap;color:var(--text-primary)}.table-footer[data-v-b21a79b1]{color:var(--text-primary);background-color:var(--background-paper-elevation-0);padding:0 var(--spacing-300);display:flex;align-items:center;min-height:var(--spacing-600);border:1px solid var(--common-divider);border-radius:var(--border-radius-md);border-top-right-radius:0;border-top-left-radius:0}.table-body-wrapper[data-v-b21a79b1]{display:inline-table}.table-header-pre-search-content[data-v-b21a79b1]{margin-right:var(--spacing-100);display:flex;align-items:center}.table-header-actions[data-v-b21a79b1]{margin-left:var(--spacing-100);display:flex;align-items:center}.table-row[data-v-b21a79b1]{position:relative}.table-row.loading[data-v-b21a79b1]{opacity:.7}.table-row:not(.expanded):last-child>td[data-v-b21a79b1]{border-bottom:none}.table-row.expanded:last-child>.expanded-row[data-v-b21a79b1]{border-bottom:none}.expanded-row[data-v-b21a79b1]{grid-column:var(--0a907be4);border-bottom:1px solid var(--common-divider);background-color:var(--background-default)}table[data-v-b21a79b1]{position:relative;display:block;overflow:auto;background:var(--background-paper-elevation-0);border:1px solid var(--common-divider);color:var(--text-primary);text-align:left;table-layout:fixed;width:100%;max-height:100%;border-radius:var(--border-radius-md);border-collapse:collapse;border-spacing:0}table.hasFooter[data-v-b21a79b1]{border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:none}table td[data-v-b21a79b1],table th[data-v-b21a79b1]{line-height:normal;padding:0 var(--spacing-200)}table td[data-v-b21a79b1]:first-of-type,table th[data-v-b21a79b1]:first-of-type{padding-left:var(--spacing-300)}table td[data-v-b21a79b1]:last-of-type,table th[data-v-b21a79b1]:last-of-type{padding-right:var(--spacing-300)}table td.expand-toggle-cell[data-v-b21a79b1],table th.expand-toggle-cell[data-v-b21a79b1]{padding-left:var(--spacing-150);padding-right:var(--spacing-75)}table>thead[data-v-b21a79b1]{border-bottom:none;z-index:calc(var(--fa2ac520) + 1);display:inline-table;min-width:100%}table>thead>tr[data-v-b21a79b1]{color:var(--text-primary);border-bottom:1px solid var(--common-divider);height:var(--spacing-500);display:grid;grid-template-columns:var(--702d25dd)}table>thead>tr>th[data-v-b21a79b1]{background:var(--background-paper-elevation-0);width:100%;display:flex;align-items:center;cursor:default}table>thead>tr>th.isSortable[data-v-b21a79b1]{cursor:pointer}table>thead>tr>td[data-v-b21a79b1]{display:flex;align-items:center}table>thead>tr>th.bordered[data-v-b21a79b1],table>thead>tr>td.bordered[data-v-b21a79b1]{border-right:1px solid var(--common-divider)}table>thead>tr>th.bordered.isStickyRight[data-v-b21a79b1],table>thead>tr>td.bordered.isStickyRight[data-v-b21a79b1]{border-right:none;border-left:1px solid var(--common-divider)}table>thead>tr>th.isTextRight[data-v-b21a79b1],table>thead>tr>td.isTextRight[data-v-b21a79b1]{justify-content:flex-end}table>thead.sticky[data-v-b21a79b1]{position:sticky;top:0;background:var(--background-default)}table>thead.isStickyHeader[data-v-b21a79b1]{z-index:calc(var(--fa2ac520) + 2);top:calc(var(--spacing-800) - 1px)}table .totals-row[data-v-b21a79b1]{height:40px}table .totals-row[data-v-b21a79b1]:hover{background:var(--background-paper-elevation-1)}table>tbody[data-v-b21a79b1]{display:block}table>tbody>*>tr[data-v-b21a79b1]{background-color:var(--background-default);height:auto;display:grid;align-items:center;grid-template-columns:var(--702d25dd)}table>tbody>*>tr:nth-of-type(2n)>td[data-v-b21a79b1]{background-color:var(--background-default)}table>tbody>*>tr:hover:not(.loading)>td[data-v-b21a79b1],table>tbody>*>tr.activeMenu>td[data-v-b21a79b1]{background-color:var(--background-paper-elevation-1)}table>tbody td[data-v-b21a79b1]{background-color:var(--background-default);border:none;min-width:0;display:flex;height:auto;width:100%;place-items:center;border-bottom:1px solid var(--common-divider);justify-content:start}table>tbody td.bordered[data-v-b21a79b1]{border-right:1px solid var(--common-divider)}table>tbody td.bordered.isStickyRight[data-v-b21a79b1]{border-right:none;border-left:1px solid var(--common-divider)}table>tbody td.isTextRight[data-v-b21a79b1]{justify-content:flex-end;text-align:right}.underlined[data-v-b21a79b1]{border-bottom:.0625rem dashed var(--default-outlined-border)}.underlined[data-v-b21a79b1]:hover{cursor:help}.section-container[data-v-b21a79b1]{left:0}.sections[data-v-b21a79b1]{display:flex}.section[data-v-b21a79b1]{padding:0 1.5rem;background:var(--background-default);left:0;height:32px;display:flex;align-items:flex-end;border-right:1px solid var(--common-divider)}.table-cell[data-v-b21a79b1]{width:100%}.empty-state[data-v-b21a79b1]{min-height:250px}.floating-row[data-v-b21a79b1]{display:flex;inset:0;pointer-events:none;position:absolute;z-index:calc(var(--fa2ac520) + 1)}.floating-row *[data-v-b21a79b1-s]{pointer-events:auto}.bg[data-v-b21a79b1]{background:var(--background-default)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.v-enter-active[data-v-55dd36a7],.v-leave-active[data-v-55dd36a7]{transition:opacity .25s ease}ol[data-v-55dd36a7],ul[data-v-55dd36a7],menu[data-v-55dd36a7]{list-style:none;margin:0;padding:0}.dropdown.full-width[data-v-55dd36a7],.dropdown.full-width .button__container[data-v-55dd36a7]{width:100%}.dropdown-list-wrapper[data-v-55dd36a7]{display:flex;flex-direction:column;padding:.5rem .5rem .25rem}.dropdown-list-wrapper--multi[data-v-55dd36a7]{padding:.5rem}.list-container--multi[data-v-55dd36a7]{margin-bottom:0}.inline-search .inline-search-wrapper[data-v-55dd36a7]{display:flex;gap:4px;padding-bottom:.25rem}.inline-search .inline-search-wrapper .search-container[data-v-55dd36a7]{width:100%}.inline-search .list-container[data-v-55dd36a7]{padding-top:0}.no-result-container[data-v-55dd36a7]{height:100%;display:flex;align-items:center;padding:.375rem .5rem;color:var(--text-disabled)}.no-result[data-v-55dd36a7]{color:var(--text-disabled);padding-left:.5rem}.list[data-v-55dd36a7]{outline:none;display:flex;flex-direction:column;width:100%;min-height:2rem}.list--multi[data-v-55dd36a7]{margin-bottom:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.list--with-conditions[data-v-55dd36a7]{min-height:0;margin-bottom:0}.image-slot[data-v-55dd36a7]{margin-right:.5rem}.actions-wrapper[data-v-55dd36a7]{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-55dd36a7]{margin-left:.5rem}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.link[data-v-ad98fe7b]{cursor:pointer;color:var(--primary-main);display:inline-flex;align-items:center;gap:var(--spacing-50)}.link[data-v-ad98fe7b]:hover{color:var(--primary-dark)}.link--default[data-v-ad98fe7b]{color:var(--text-secondary)}.link--default[data-v-ad98fe7b]:hover{color:var(--text-primary)}.link--disabled[data-v-ad98fe7b]{color:var(--text-disabled);pointer-events:none}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.label[data-v-0287cebf]{color:#41454d}.item-container[data-v-0287cebf]{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-0287cebf]{cursor:not-allowed;color:var(--text-disabled)}.item-container--disabled .item .start-icon[data-v-0287cebf],.item-container--disabled .item .end-icon[data-v-0287cebf],.item-container--disabled .item .end-text-icon[data-v-0287cebf]{color:var(--text-disabled)}.item-container--disabled .item .image img[data-v-0287cebf]{opacity:.5}.item-container[data-v-0287cebf]:hover:not(.item-container--disabled){background-color:var(--action-hover)}.item-container--active[data-v-0287cebf],.item-container[data-v-0287cebf]:active{background-color:var(--action-selected)}.item-container:not(.item-container--multi).item-container--selected[data-v-0287cebf]{background-color:var(--action-selected)}.subtitle[data-v-0287cebf]{color:#7b838c;line-height:1rem}.clear-button[data-v-0287cebf]{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-0287cebf]:hover{color:#3083ff}.item[data-v-0287cebf]{width:100%;display:flex;gap:.5rem;align-items:center}.item--with-icon[data-v-0287cebf],.item--multi[data-v-0287cebf]{display:flex;flex-direction:row;align-items:center;justify-content:start}.item .image[data-v-0287cebf]{width:20px;height:20px;flex:none}.item .image img[data-v-0287cebf]{width:20px;height:20px;border-radius:4px}.item .flag[data-v-0287cebf]{width:16px;height:16px}.item .flag img[data-v-0287cebf]{width:16px;height:16px;border-radius:50%}.item .start-icon[data-v-0287cebf],.item .end-icon[data-v-0287cebf]{display:flex;color:var(--action-active)}.item .end-text-icon[data-v-0287cebf]{display:inline-flex}.item .option-text[data-v-0287cebf]{line-height:1.1875rem}.text-container[data-v-0287cebf]{width:100%;text-overflow:ellipsis;overflow:hidden}.v4-tooltip.tooltip-option[data-v-0287cebf]{display:block}.tooltip-option[data-v-0287cebf] .container{width:100%}.app-trigger--icon[data-v-0287cebf]{color:var(--action-active);transform:rotate(-90deg);transition:transform .2s}.app-trigger--icon.expanded[data-v-0287cebf]{transform:rotate(0)}.option-warning[data-v-0287cebf]{display:flex}.option-warning__icon[data-v-0287cebf]{color:var(--warning-main)}.option-content[data-v-0287cebf]{display:flex}.option-content[data-v-0287cebf]:not(.option-content-vertical){gap:.5rem;align-items:center}.option-content-horizontal[data-v-0287cebf]{justify-content:space-between;gap:.5rem}.option-content-vertical[data-v-0287cebf]{flex-direction:column}.option-text .main-text[data-v-0287cebf]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-align:left}.option-text .main-text .conditional-option-label[data-v-0287cebf]{color:var(--text-secondary);display:inline-flex}.option-text .main-text .conditional-option-value[data-v-0287cebf]{margin-left:4px;display:inline-flex;color:var(--primary-main)}.option-text .caption-text[data-v-0287cebf]{color:var(--text-secondary)}.multiline-tooltip[data-v-0287cebf]{display:flex;flex-direction:column}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.switch[data-v-cd6621a7]{position:relative;display:inline-flex;background:var(--default-main);border-radius:var(--border-radius-md);border:1px solid var(--default-outlined-border);overflow:hidden}.switch--variant-primary .option--selected[data-v-cd6621a7]{background:var(--primary-main-8-p)}.switch--variant-primary .option[data-v-cd6621a7]:hover{background:var(--primary-light)}.switch--variant-primary .option[data-v-cd6621a7]:hover .icon{color:var(--primary-main)}.switch--variant-default .option--selected[data-v-cd6621a7]{background:var(--action-selected)}.switch--variant-default .option--selected[data-v-cd6621a7] .icon{color:var(--text-primary)}.option[data-v-cd6621a7]{border-radius:0;padding:3px}.option-wrapper[data-v-cd6621a7]:not(:last-child){border-right:1px solid var(--default-outlined-border)}
|
|
@@ -61,6 +61,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
61
61
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
62
62
|
}>, {
|
|
63
63
|
default?(_: {}): any;
|
|
64
|
+
"after-label"?(_: {}): any;
|
|
64
65
|
loader?(_: {}): any;
|
|
65
66
|
}>;
|
|
66
67
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./ButtonV4.vue2.js";
|
|
2
|
-
/* empty css */import
|
|
3
|
-
// import "../../../ButtonV4.
|
|
4
|
-
const c = /* @__PURE__ */
|
|
2
|
+
/* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../../ButtonV4.vue_vue_type_style_index_0_scoped_852be7ec_lang.css"; //*');
|
|
4
|
+
const c = /* @__PURE__ */ e(o, [["__scopeId", "data-v-852be7ec"]]);
|
|
5
5
|
export {
|
|
6
6
|
c as default
|
|
7
7
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import "../../../ButtonV4.
|
|
1
|
+
import "../../../ButtonV4.vue_vue_type_style_index_0_scoped_852be7ec_lang.css"; import { defineComponent as N, computed as h, openBlock as n, createElementBlock as s, normalizeClass as c, createElementVNode as r, createBlock as f, unref as t, createCommentVNode as o, createVNode as u, withCtx as m, renderSlot as d, createTextVNode as z, toDisplayString as b } from "vue";
|
|
2
2
|
import I from "../../typography/v4/Typography.vue.js";
|
|
3
3
|
import y from "../../icon/v4/IconV4.vue.js";
|
|
4
4
|
import "../../icon/v4/IconFlag.vue.js";
|
|
5
|
-
import
|
|
6
|
-
const
|
|
5
|
+
import g from "../../loader/v4/Loader.vue.js";
|
|
6
|
+
const v = ["data-testid", "disabled"], k = { key: 0 }, V = /* @__PURE__ */ N({
|
|
7
7
|
__name: "ButtonV4",
|
|
8
8
|
props: {
|
|
9
9
|
variant: { default: "contained" },
|
|
@@ -19,11 +19,11 @@ const k = ["data-testid", "disabled"], v = { key: 0 }, $ = /* @__PURE__ */ N({
|
|
|
19
19
|
endIconType: { default: "regular" }
|
|
20
20
|
},
|
|
21
21
|
setup(e) {
|
|
22
|
-
const
|
|
23
|
-
() =>
|
|
22
|
+
const l = e, i = h(
|
|
23
|
+
() => l.size === "small" || l.size === "medium" ? 16 : 20
|
|
24
24
|
);
|
|
25
|
-
return (
|
|
26
|
-
class:
|
|
25
|
+
return (a, w) => (n(), s("button", {
|
|
26
|
+
class: c([[
|
|
27
27
|
e.size,
|
|
28
28
|
e.color,
|
|
29
29
|
e.variant,
|
|
@@ -33,48 +33,49 @@ const k = ["data-testid", "disabled"], v = { key: 0 }, $ = /* @__PURE__ */ N({
|
|
|
33
33
|
"with-end-icon": !!e.endIconName
|
|
34
34
|
}
|
|
35
35
|
], "button-wrap"]),
|
|
36
|
-
"data-testid":
|
|
36
|
+
"data-testid": l.testId,
|
|
37
37
|
disabled: e.disabled
|
|
38
38
|
}, [
|
|
39
|
-
e.loading ?
|
|
39
|
+
e.loading ? o("", !0) : (n(), s("span", k, [
|
|
40
40
|
r("div", {
|
|
41
|
-
class:
|
|
41
|
+
class: c({
|
|
42
42
|
flex: e.startIconName || e.endIconName
|
|
43
43
|
})
|
|
44
44
|
}, [
|
|
45
|
-
e.startIconName ? (
|
|
45
|
+
e.startIconName ? (n(), f(t(y), {
|
|
46
46
|
key: 0,
|
|
47
47
|
name: e.startIconName,
|
|
48
|
-
size: `${t(
|
|
48
|
+
size: `${t(i)}px`,
|
|
49
49
|
type: e.startIconType,
|
|
50
50
|
class: "start-icon"
|
|
51
|
-
}, null, 8, ["name", "size", "type"])) :
|
|
52
|
-
|
|
51
|
+
}, null, 8, ["name", "size", "type"])) : o("", !0),
|
|
52
|
+
u(t(I), { variant: "button" }, {
|
|
53
53
|
default: m(() => [
|
|
54
|
-
|
|
55
|
-
z(
|
|
54
|
+
d(a.$slots, "default", {}, () => [
|
|
55
|
+
z(b(e.content), 1)
|
|
56
56
|
], !0)
|
|
57
57
|
]),
|
|
58
58
|
_: 3
|
|
59
59
|
}),
|
|
60
|
-
|
|
60
|
+
d(a.$slots, "after-label", {}, void 0, !0),
|
|
61
|
+
e.endIconName ? (n(), f(t(y), {
|
|
61
62
|
key: 1,
|
|
62
63
|
name: e.endIconName,
|
|
63
|
-
size: `${t(
|
|
64
|
+
size: `${t(i)}px`,
|
|
64
65
|
type: e.endIconType,
|
|
65
66
|
class: "end-icon"
|
|
66
|
-
}, null, 8, ["name", "size", "type"])) :
|
|
67
|
+
}, null, 8, ["name", "size", "type"])) : o("", !0)
|
|
67
68
|
], 2)
|
|
68
69
|
])),
|
|
69
|
-
e.loading ?
|
|
70
|
-
|
|
70
|
+
e.loading ? d(a.$slots, "loader", { key: 1 }, () => [
|
|
71
|
+
u(t(g), { "max-width": t(i) }, {
|
|
71
72
|
default: m(() => [
|
|
72
73
|
r("div", {
|
|
73
|
-
class:
|
|
74
|
+
class: c({ "content-with-icon": e.startIconName || e.endIconName })
|
|
74
75
|
}, [
|
|
75
|
-
|
|
76
|
+
u(t(I), { variant: "button" }, {
|
|
76
77
|
default: m(() => [
|
|
77
|
-
|
|
78
|
+
d(a.$slots, "default", {}, void 0, !0)
|
|
78
79
|
]),
|
|
79
80
|
_: 3
|
|
80
81
|
})
|
|
@@ -82,10 +83,10 @@ const k = ["data-testid", "disabled"], v = { key: 0 }, $ = /* @__PURE__ */ N({
|
|
|
82
83
|
]),
|
|
83
84
|
_: 3
|
|
84
85
|
}, 8, ["max-width"])
|
|
85
|
-
], !0) :
|
|
86
|
-
], 10,
|
|
86
|
+
], !0) : o("", !0)
|
|
87
|
+
], 10, v));
|
|
87
88
|
}
|
|
88
89
|
});
|
|
89
90
|
export {
|
|
90
|
-
|
|
91
|
+
V as default
|
|
91
92
|
};
|
|
@@ -33,6 +33,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
33
33
|
rangeCurrent?: string;
|
|
34
34
|
rangePrevious?: string;
|
|
35
35
|
};
|
|
36
|
+
noteText?: string;
|
|
36
37
|
noDataIcon?: string;
|
|
37
38
|
noDataTitle?: string;
|
|
38
39
|
noDataSubtitle?: string;
|
|
@@ -73,6 +74,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
73
74
|
trendValue: any;
|
|
74
75
|
trendDirection: TrendDirection;
|
|
75
76
|
trendTooltip: any;
|
|
77
|
+
noteText: string;
|
|
76
78
|
noDataIcon: string;
|
|
77
79
|
noDataTitle: string;
|
|
78
80
|
noDataSubtitle: string;
|
|
@@ -124,6 +126,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
124
126
|
rangeCurrent?: string;
|
|
125
127
|
rangePrevious?: string;
|
|
126
128
|
};
|
|
129
|
+
noteText?: string;
|
|
127
130
|
noDataIcon?: string;
|
|
128
131
|
noDataTitle?: string;
|
|
129
132
|
noDataSubtitle?: string;
|
|
@@ -164,6 +167,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
164
167
|
trendValue: any;
|
|
165
168
|
trendDirection: TrendDirection;
|
|
166
169
|
trendTooltip: any;
|
|
170
|
+
noteText: string;
|
|
167
171
|
noDataIcon: string;
|
|
168
172
|
noDataTitle: string;
|
|
169
173
|
noDataSubtitle: string;
|
|
@@ -201,12 +205,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
201
205
|
yAxisFormat: ValueFormat;
|
|
202
206
|
valueSuffix: string;
|
|
203
207
|
valuePrefix: string;
|
|
204
|
-
dataSets: ChartDataSet[];
|
|
205
208
|
trendTooltip: any;
|
|
206
209
|
subheader: string;
|
|
207
210
|
subheaderTooltip: any;
|
|
208
211
|
trendValue: string | number;
|
|
209
212
|
trendDirection: TrendDirection;
|
|
213
|
+
noteText: string;
|
|
214
|
+
dataSets: ChartDataSet[];
|
|
210
215
|
tickCount: number;
|
|
211
216
|
truncateTickLabels: boolean;
|
|
212
217
|
keepSubheaderVisible: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./Chart.vue2.js";
|
|
2
|
-
/* empty css */import
|
|
3
|
-
// import "../../Chart.
|
|
4
|
-
const a = /* @__PURE__ */
|
|
2
|
+
/* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../Chart.vue_vue_type_style_index_0_scoped_e8f25a03_lang.css"; //*');
|
|
4
|
+
const a = /* @__PURE__ */ e(o, [["__scopeId", "data-v-e8f25a03"]]);
|
|
5
5
|
export {
|
|
6
6
|
a as default
|
|
7
7
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../../Chart.
|
|
1
|
+
import "../../Chart.vue_vue_type_style_index_0_scoped_e8f25a03_lang.css"; import { defineComponent as U, ref as O, computed as n, openBlock as s, createElementBlock as m, Fragment as C, createBlock as I, unref as i, isRef as b, withCtx as d, renderSlot as u, createCommentVNode as D, createElementVNode as k, mergeProps as g, normalizeClass as E, createVNode as L, createSlots as N, renderList as M } from "vue";
|
|
2
2
|
import { useVModel as A } from "@vueuse/core";
|
|
3
3
|
import $ from "./ChartLegend.vue.js";
|
|
4
4
|
import K from "./SettingsHeader.vue.js";
|
|
@@ -39,6 +39,7 @@ const _ = {
|
|
|
39
39
|
trendValue: { default: null },
|
|
40
40
|
trendDirection: { default: J.UP },
|
|
41
41
|
trendTooltip: { default: null },
|
|
42
|
+
noteText: { default: "" },
|
|
42
43
|
noDataIcon: { default: "file-search" },
|
|
43
44
|
noDataTitle: { default: "No data to display" },
|
|
44
45
|
noDataSubtitle: { default: "Search again with different filters" },
|
|
@@ -67,6 +68,7 @@ const _ = {
|
|
|
67
68
|
truncateTickLabels: e.truncateTickLabels,
|
|
68
69
|
header: e.header,
|
|
69
70
|
subheader: e.subheader,
|
|
71
|
+
noteText: e.noteText,
|
|
70
72
|
loading: e.loading,
|
|
71
73
|
empty: e.empty,
|
|
72
74
|
noDataIcon: e.noDataIcon,
|
|
@@ -89,9 +91,9 @@ const _ = {
|
|
|
89
91
|
highlightedId: h.value,
|
|
90
92
|
valueSuffix: e.valueSuffix,
|
|
91
93
|
valuePrefix: e.valuePrefix
|
|
92
|
-
})), V = n(() => e.dataSets),
|
|
94
|
+
})), V = n(() => e.dataSets), T = n(() => e.visibleIds), v = n(() => e.extraCharts.length), x = n(() => 1 + v.value), F = (t) => t === v.value - 1, { colorsMap: f } = z({
|
|
93
95
|
dataSets: V,
|
|
94
|
-
visibleIds:
|
|
96
|
+
visibleIds: T
|
|
95
97
|
}), w = n(() => e.dataSets.map((t) => ({
|
|
96
98
|
id: t.id,
|
|
97
99
|
label: t.label,
|
|
@@ -155,7 +157,7 @@ const _ = {
|
|
|
155
157
|
"highlighted-id": h.value,
|
|
156
158
|
"onUpdate:highlighted-id": o[3] || (o[3] = (l) => h.value = l),
|
|
157
159
|
items: i(w),
|
|
158
|
-
"visible-ids": i(
|
|
160
|
+
"visible-ids": i(T),
|
|
159
161
|
"max-limit-tooltip-text": a.maxLimitTooltipText,
|
|
160
162
|
"sort-options": a.sortOptions,
|
|
161
163
|
"sort-option-name-key": a.sortOptionNameKey,
|
|
@@ -16,6 +16,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
16
16
|
compact: boolean;
|
|
17
17
|
trendValue?: string | number;
|
|
18
18
|
trendDirection?: TrendDirection;
|
|
19
|
+
noteText?: string;
|
|
19
20
|
}>, {
|
|
20
21
|
chartType: ChartType;
|
|
21
22
|
typeSwitcher: boolean;
|
|
@@ -26,6 +27,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
26
27
|
compact: boolean;
|
|
27
28
|
trendValue: any;
|
|
28
29
|
trendDirection: TrendDirection;
|
|
30
|
+
noteText: string;
|
|
29
31
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
32
|
"update:chartType": (type: ChartType) => void;
|
|
31
33
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -45,6 +47,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
45
47
|
compact: boolean;
|
|
46
48
|
trendValue?: string | number;
|
|
47
49
|
trendDirection?: TrendDirection;
|
|
50
|
+
noteText?: string;
|
|
48
51
|
}>, {
|
|
49
52
|
chartType: ChartType;
|
|
50
53
|
typeSwitcher: boolean;
|
|
@@ -55,6 +58,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
55
58
|
compact: boolean;
|
|
56
59
|
trendValue: any;
|
|
57
60
|
trendDirection: TrendDirection;
|
|
61
|
+
noteText: string;
|
|
58
62
|
}>>> & {
|
|
59
63
|
"onUpdate:chartType"?: (type: ChartType) => any;
|
|
60
64
|
}, {
|
|
@@ -67,6 +71,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
67
71
|
typeSwitcher: boolean;
|
|
68
72
|
trendValue: string | number;
|
|
69
73
|
trendDirection: TrendDirection;
|
|
74
|
+
noteText: string;
|
|
70
75
|
}>, {
|
|
71
76
|
"subheader-tooltip"?(_: {}): any;
|
|
72
77
|
}>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import e from "./ChartHeader.vue2.js";
|
|
2
2
|
/* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../ChartHeader.
|
|
4
|
-
const r = /* @__PURE__ */ o(e, [["__scopeId", "data-v-
|
|
3
|
+
// import "../../ChartHeader.vue_vue_type_style_index_0_scoped_af520313_lang.css"; //*');
|
|
4
|
+
const r = /* @__PURE__ */ o(e, [["__scopeId", "data-v-af520313"]]);
|
|
5
5
|
export {
|
|
6
6
|
r as default
|
|
7
7
|
};
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import "../../ChartHeader.
|
|
2
|
-
import
|
|
1
|
+
import "../../ChartHeader.vue_vue_type_style_index_0_scoped_af520313_lang.css"; import { defineComponent as k, computed as m, openBlock as r, createElementBlock as C, normalizeClass as S, createElementVNode as c, createVNode as p, createSlots as w, withCtx as f, renderSlot as x, unref as a, createTextVNode as B, toDisplayString as N, createBlock as l, normalizeProps as y, mergeProps as T, createCommentVNode as d, isRef as g } from "vue";
|
|
2
|
+
import D from "../typography/v4/Typography.vue.js";
|
|
3
3
|
import P from "../switch/v4/SwitchV4.vue.js";
|
|
4
|
-
import
|
|
4
|
+
import H from "../chip/v4/ChipV4.vue.js";
|
|
5
|
+
import { ChartType as n, TrendDirection as L } from "./types.js";
|
|
5
6
|
import b from "./ChartHeaderTrend.vue.js";
|
|
6
|
-
import
|
|
7
|
-
const z = { class: "header-texts" }, E = { class: "header-row" },
|
|
7
|
+
import $ from "./SubHeader.vue.js";
|
|
8
|
+
const z = { class: "header-texts" }, E = { class: "header-row" }, U = { class: "header-actions" }, I = /* @__PURE__ */ k({
|
|
8
9
|
__name: "ChartHeader",
|
|
9
10
|
props: {
|
|
10
|
-
chartType: { default:
|
|
11
|
+
chartType: { default: n.Line },
|
|
11
12
|
typeSwitcher: { type: Boolean, default: !0 },
|
|
12
13
|
header: { default: "" },
|
|
13
14
|
subheader: { default: "" },
|
|
@@ -15,66 +16,73 @@ const z = { class: "header-texts" }, E = { class: "header-row" }, A = /* @__PURE
|
|
|
15
16
|
trendTooltip: { default: null },
|
|
16
17
|
compact: { type: Boolean, default: !1 },
|
|
17
18
|
trendValue: { default: null },
|
|
18
|
-
trendDirection: { default:
|
|
19
|
+
trendDirection: { default: L.UP },
|
|
20
|
+
noteText: { default: "" }
|
|
19
21
|
},
|
|
20
22
|
emits: ["update:chartType"],
|
|
21
23
|
setup(e, { emit: V }) {
|
|
22
|
-
const
|
|
23
|
-
{ id:
|
|
24
|
-
{ id:
|
|
25
|
-
{ id:
|
|
26
|
-
],
|
|
24
|
+
const o = e, u = [
|
|
25
|
+
{ id: n.Line, icon: "chart-line-up" },
|
|
26
|
+
{ id: n.Bar, icon: "chart-bar" },
|
|
27
|
+
{ id: n.StackedLine, icon: "chart-line" }
|
|
28
|
+
], i = m({
|
|
27
29
|
get() {
|
|
28
|
-
return
|
|
30
|
+
return u.find(({ id: t }) => t === o.chartType);
|
|
29
31
|
},
|
|
30
32
|
set(t) {
|
|
31
33
|
V("update:chartType", t.id);
|
|
32
34
|
}
|
|
33
|
-
}),
|
|
34
|
-
value:
|
|
35
|
-
direction:
|
|
36
|
-
trendTooltip:
|
|
35
|
+
}), s = m(() => ({
|
|
36
|
+
value: o.trendValue,
|
|
37
|
+
direction: o.trendDirection,
|
|
38
|
+
trendTooltip: o.trendTooltip
|
|
37
39
|
}));
|
|
38
|
-
return (t,
|
|
39
|
-
class:
|
|
40
|
+
return (t, h) => (r(), C("div", {
|
|
41
|
+
class: S(["chart-header", { "chart-header--compact": e.compact }])
|
|
40
42
|
}, [
|
|
41
|
-
|
|
42
|
-
p(
|
|
43
|
+
c("div", z, [
|
|
44
|
+
p($, {
|
|
43
45
|
subheader: e.subheader,
|
|
44
46
|
"subheader-tooltip": e.subheaderTooltip,
|
|
45
47
|
"show-separator": e.compact && (!!e.header || !!e.trendValue)
|
|
46
|
-
},
|
|
48
|
+
}, w({ _: 2 }, [
|
|
47
49
|
t.$slots["subheader-tooltip"] ? {
|
|
48
50
|
name: "subheader-tooltip",
|
|
49
51
|
fn: f(() => [
|
|
50
|
-
|
|
52
|
+
x(t.$slots, "subheader-tooltip", {}, void 0, !0)
|
|
51
53
|
]),
|
|
52
54
|
key: "0"
|
|
53
55
|
} : void 0
|
|
54
56
|
]), 1032, ["subheader", "subheader-tooltip", "show-separator"]),
|
|
55
|
-
|
|
56
|
-
p(a(
|
|
57
|
+
c("div", E, [
|
|
58
|
+
p(a(D), {
|
|
57
59
|
class: "header-text",
|
|
58
60
|
variant: e.compact ? "h5" : "chart2"
|
|
59
61
|
}, {
|
|
60
62
|
default: f(() => [
|
|
61
|
-
|
|
63
|
+
B(N(e.header), 1)
|
|
62
64
|
]),
|
|
63
65
|
_: 1
|
|
64
66
|
}, 8, ["variant"]),
|
|
65
|
-
!e.compact && e.trendValue !== null ? (
|
|
67
|
+
!e.compact && e.trendValue !== null ? (r(), l(b, y(T({ key: 0 }, a(s))), null, 16)) : d("", !0)
|
|
66
68
|
]),
|
|
67
|
-
e.compact && e.trendValue !== null ? (
|
|
69
|
+
e.compact && e.trendValue !== null ? (r(), l(b, y(T({ key: 0 }, a(s))), null, 16)) : d("", !0)
|
|
68
70
|
]),
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
71
|
+
c("div", U, [
|
|
72
|
+
e.noteText ? (r(), l(a(H), {
|
|
73
|
+
key: 0,
|
|
74
|
+
label: `Note: ${e.noteText}`
|
|
75
|
+
}, null, 8, ["label"])) : d("", !0),
|
|
76
|
+
e.typeSwitcher ? (r(), l(a(P), {
|
|
77
|
+
key: 1,
|
|
78
|
+
modelValue: a(i),
|
|
79
|
+
"onUpdate:modelValue": h[0] || (h[0] = (v) => g(i) ? i.value = v : null),
|
|
80
|
+
options: u
|
|
81
|
+
}, null, 8, ["modelValue"])) : d("", !0)
|
|
82
|
+
])
|
|
75
83
|
], 2));
|
|
76
84
|
}
|
|
77
85
|
});
|
|
78
86
|
export {
|
|
79
|
-
|
|
87
|
+
I as default
|
|
80
88
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import e from "./ChartHeaderTrend.vue2.js";
|
|
2
2
|
/* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../ChartHeaderTrend.
|
|
4
|
-
const
|
|
3
|
+
// import "../../ChartHeaderTrend.vue_vue_type_style_index_0_scoped_db8a902c_lang.css"; //*');
|
|
4
|
+
const a = /* @__PURE__ */ o(e, [["__scopeId", "data-v-db8a902c"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
a as default
|
|
7
7
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import "../../ChartHeaderTrend.
|
|
1
|
+
import "../../ChartHeaderTrend.vue_vue_type_style_index_0_scoped_db8a902c_lang.css"; import { defineComponent as f, computed as v, openBlock as r, createElementBlock as p, normalizeClass as y, createVNode as u, unref as t, withCtx as o, createElementVNode as s, createBlock as d, createTextVNode as a, toDisplayString as i, createCommentVNode as n, pushScopeId as g, popScopeId as C } from "vue";
|
|
2
2
|
import l from "../typography/v4/Typography.vue.js";
|
|
3
3
|
import b from "../icon/v4/IconV4.vue.js";
|
|
4
4
|
import "../icon/v4/IconFlag.vue.js";
|
|
5
5
|
import k from "../tooltip/v4/TooltipV4.vue.js";
|
|
6
6
|
import { TrendDirection as m } from "./types.js";
|
|
7
|
-
const h = (e) => (g("data-v-
|
|
7
|
+
const h = (e) => (g("data-v-db8a902c"), e = e(), C(), e), x = { class: "trend-tooltip" }, N = {
|
|
8
8
|
key: 2,
|
|
9
9
|
class: "separator"
|
|
10
10
|
}, P = /* @__PURE__ */ h(() => /* @__PURE__ */ s("hr", null, null, -1)), _ = /* @__PURE__ */ h(() => /* @__PURE__ */ s("hr", null, null, -1)), L = /* @__PURE__ */ f({
|
|
@@ -26,26 +26,26 @@ const h = (e) => (g("data-v-ebc0c582"), e = e(), C(), e), x = { class: "trend-to
|
|
|
26
26
|
}, {
|
|
27
27
|
tooltip: o(() => [
|
|
28
28
|
s("div", x, [
|
|
29
|
-
e.trendTooltip?.header ? (r(),
|
|
29
|
+
e.trendTooltip?.header ? (r(), d(t(l), {
|
|
30
30
|
key: 0,
|
|
31
31
|
class: "trend-tooltip__header",
|
|
32
32
|
variant: "subtitle2"
|
|
33
33
|
}, {
|
|
34
34
|
default: o(() => [
|
|
35
|
-
|
|
35
|
+
a(i(e.trendTooltip.header), 1)
|
|
36
36
|
]),
|
|
37
37
|
_: 1
|
|
38
|
-
})) :
|
|
39
|
-
e.trendTooltip?.rangeCurrent ? (r(),
|
|
38
|
+
})) : n("", !0),
|
|
39
|
+
e.trendTooltip?.rangeCurrent ? (r(), d(t(l), {
|
|
40
40
|
key: 1,
|
|
41
41
|
variant: "body2",
|
|
42
42
|
class: "trend-tooltip__text"
|
|
43
43
|
}, {
|
|
44
44
|
default: o(() => [
|
|
45
|
-
|
|
45
|
+
a(i(e.trendTooltip.rangeCurrent), 1)
|
|
46
46
|
]),
|
|
47
47
|
_: 1
|
|
48
|
-
})) :
|
|
48
|
+
})) : n("", !0),
|
|
49
49
|
e.trendTooltip?.rangeCurrent && e.trendTooltip?.rangePrevious ? (r(), p("div", N, [
|
|
50
50
|
P,
|
|
51
51
|
u(t(l), {
|
|
@@ -53,35 +53,35 @@ const h = (e) => (g("data-v-ebc0c582"), e = e(), C(), e), x = { class: "trend-to
|
|
|
53
53
|
variant: "caption"
|
|
54
54
|
}, {
|
|
55
55
|
default: o(() => [
|
|
56
|
-
|
|
56
|
+
a(" vs. ")
|
|
57
57
|
]),
|
|
58
58
|
_: 1
|
|
59
59
|
}),
|
|
60
60
|
_
|
|
61
|
-
])) :
|
|
62
|
-
e.trendTooltip?.rangePrevious ? (r(),
|
|
61
|
+
])) : n("", !0),
|
|
62
|
+
e.trendTooltip?.rangePrevious ? (r(), d(t(l), {
|
|
63
63
|
key: 3,
|
|
64
64
|
variant: "body2",
|
|
65
65
|
class: "trend-tooltip__text"
|
|
66
66
|
}, {
|
|
67
67
|
default: o(() => [
|
|
68
|
-
|
|
68
|
+
a(i(e.trendTooltip.rangePrevious), 1)
|
|
69
69
|
]),
|
|
70
70
|
_: 1
|
|
71
|
-
})) :
|
|
71
|
+
})) : n("", !0)
|
|
72
72
|
])
|
|
73
73
|
]),
|
|
74
74
|
default: o(() => [
|
|
75
|
-
e.direction !== t(m).NEUTRAL ? (r(),
|
|
75
|
+
e.direction !== t(m).NEUTRAL ? (r(), d(t(b), {
|
|
76
76
|
key: 0,
|
|
77
77
|
class: "trend-icon",
|
|
78
78
|
type: "bold",
|
|
79
79
|
name: `arrow-${e.direction}`,
|
|
80
|
-
size: "
|
|
81
|
-
}, null, 8, ["name"])) :
|
|
80
|
+
size: "15px"
|
|
81
|
+
}, null, 8, ["name"])) : n("", !0),
|
|
82
82
|
u(t(l), { variant: "chipLabel" }, {
|
|
83
83
|
default: o(() => [
|
|
84
|
-
|
|
84
|
+
a(i(e.value), 1)
|
|
85
85
|
]),
|
|
86
86
|
_: 1
|
|
87
87
|
})
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import e from "./ChartLegend.vue2.js";
|
|
2
2
|
/* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../ChartLegend.
|
|
4
|
-
const
|
|
3
|
+
// import "../../ChartLegend.vue_vue_type_style_index_0_scoped_6103d8bd_lang.css"; //*');
|
|
4
|
+
const s = /* @__PURE__ */ o(e, [["__scopeId", "data-v-6103d8bd"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
s as default
|
|
7
7
|
};
|