@ironsource/shared-ui 2.1.12-test.53 → 2.1.12-test.54
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_060d02be_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_d90c583e_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_ca558859_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_9c4df598_lang.css +1 -0
- package/ChartPlane.vue_vue_type_style_index_0_scoped_a685cf5e_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_9623dbbd_lang.css +1 -0
- package/ColumnConfigurator.vue_vue_type_style_index_0_scoped_702ad52e_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8cc86a27_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_6db25923_lang.css +1 -0
- package/DataGridContainer.vue_vue_type_style_index_0_scoped_9a30b10c_lang.css +1 -0
- package/DataGridHeader.vue_vue_type_style_index_0_scoped_0e826456_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_2d66b7b6_lang.css +1 -0
- package/EmptyStateV4.vue_vue_type_style_index_0_scoped_76757f22_lang.css +1 -0
- package/Link.vue_vue_type_style_index_0_scoped_1a766750_lang.css +1 -0
- package/LoaderBars.vue_vue_type_style_index_0_scoped_d976ec65_lang.css +1 -0
- package/SectionDropdown.vue_vue_type_style_index_0_scoped_cfad60a8_lang.css +1 -0
- package/SectionHeaderText.vue_vue_type_style_index_0_scoped_0b8d3d79_lang.css +1 -0
- package/{SettingsHeader.vue_vue_type_style_index_0_scoped_01f78cd7_lang.css → SettingsHeader.vue_vue_type_style_index_0_scoped_a869d327_lang.css} +1 -1
- package/ShowMoreLink.vue_vue_type_style_index_0_scoped_9fc3bc1b_lang.css +1 -0
- package/SortableItem.vue_vue_type_style_index_0_scoped_c72be7ed_lang.css +1 -0
- package/SortableList.vue_vue_type_style_index_0_scoped_9aec4e9b_lang.css +1 -0
- package/SortableSelectableList.vue_vue_type_style_index_0_scoped_40b0a4de_lang.css +1 -0
- package/TagsField.vue_vue_type_style_index_0_scoped_9760426b_lang.css +1 -0
- package/TagsFieldChip.vue_vue_type_style_index_0_scoped_d186b7ef_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_63dc057e_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 +122 -112
- package/components/chart/ChartHeader.vue.d.ts +5 -0
- package/components/chart/ChartHeader.vue.js +3 -3
- package/components/chart/ChartHeader.vue2.js +49 -44
- package/components/chart/ChartHeaderTrend.vue.d.ts +5 -0
- package/components/chart/ChartHeaderTrend.vue.js +2 -2
- package/components/chart/ChartHeaderTrend.vue2.js +42 -39
- package/components/chart/ChartLegend.vue.d.ts +5 -0
- package/components/chart/ChartLegend.vue.js +3 -3
- package/components/chart/ChartLegend.vue2.js +76 -71
- package/components/chart/ChartPlane.vue.d.ts +5 -0
- package/components/chart/ChartPlane.vue.js +3 -3
- package/components/chart/ChartPlane.vue2.js +125 -119
- package/components/chart/ChartTooltip.vue.d.ts +5 -0
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +38 -34
- package/components/chart/LegendSorting.vue.d.ts +5 -0
- package/components/chart/LegendSorting.vue.js +16 -14
- package/components/chart/SettingsHeader.vue.d.ts +19 -3
- package/components/chart/SettingsHeader.vue.js +3 -3
- package/components/chart/SettingsHeader.vue2.js +36 -29
- package/components/chart/index.d.ts +20 -1
- package/components/columnConfigurator/ColumnConfigurator.types.d.ts +12 -0
- package/components/columnConfigurator/ColumnConfigurator.vue.d.ts +61 -0
- package/components/columnConfigurator/ColumnConfigurator.vue.js +7 -0
- package/components/columnConfigurator/ColumnConfigurator.vue2.js +113 -0
- package/components/columnConfigurator/SectionDropdown.vue.d.ts +39 -0
- package/components/columnConfigurator/SectionDropdown.vue.js +7 -0
- package/components/columnConfigurator/SectionDropdown.vue2.js +57 -0
- package/components/columnConfigurator/SectionHeaderText.vue.d.ts +34 -0
- package/components/columnConfigurator/SectionHeaderText.vue.js +7 -0
- package/components/columnConfigurator/SectionHeaderText.vue2.js +22 -0
- package/components/columnConfigurator/ShowMoreLink.vue.d.ts +33 -0
- package/components/columnConfigurator/ShowMoreLink.vue.js +7 -0
- package/components/columnConfigurator/ShowMoreLink.vue2.js +41 -0
- package/components/columnConfigurator/consts.d.ts +1 -0
- package/components/columnConfigurator/consts.js +4 -0
- package/components/columnConfigurator/index.d.ts +73 -0
- package/components/columnConfigurator/index.js +6 -0
- package/components/columnConfigurator/mockData.d.ts +30 -0
- package/components/columnConfigurator/utils.d.ts +2 -0
- package/components/columnConfigurator/utils.js +18 -0
- package/components/columnPicker/ColumnPicker.vue.d.ts +1 -1
- package/components/columnPicker/index.d.ts +20 -20
- package/components/dropdown/v4/ConditionalDropdown.vue.js +3 -3
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +99 -97
- package/components/dropdown/v4/DropdownV4.vue.d.ts +2 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +89 -82
- package/components/dropdown/v4/TreeDropdown.vue.d.ts +10 -0
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +155 -151
- package/components/dropdown/v4/index.d.ts +41 -1
- package/components/emptyState/v4/EmptyStateV4.vue.d.ts +5 -0
- package/components/emptyState/v4/EmptyStateV4.vue.js +2 -2
- package/components/emptyState/v4/EmptyStateV4.vue2.js +37 -34
- package/components/emptyState/v4/index.d.ts +20 -1
- package/components/link/Link.vue.d.ts +5 -0
- package/components/link/Link.vue.js +3 -3
- package/components/link/Link.vue2.js +36 -28
- package/components/link/index.d.ts +20 -1
- package/components/sortableList/LoaderBars.vue.d.ts +34 -0
- package/components/sortableList/LoaderBars.vue.js +7 -0
- package/components/sortableList/LoaderBars.vue2.js +25 -0
- package/components/sortableList/SortableItem.vue.js +4 -4
- package/components/sortableList/SortableItem.vue2.js +3 -3
- package/components/sortableList/SortableList.vue.d.ts +2 -2
- package/components/sortableList/SortableList.vue.js +5 -5
- package/components/sortableList/SortableList.vue2.js +96 -106
- package/components/sortableList/SortableSelectableList.vue.d.ts +107 -0
- package/components/sortableList/SortableSelectableList.vue.js +7 -0
- package/components/sortableList/SortableSelectableList.vue2.js +128 -0
- package/components/sortableList/composables/useDraggableHelpers.d.ts +5 -0
- package/components/sortableList/composables/useDraggableHelpers.js +20 -0
- package/components/sortableList/consts.d.ts +2 -0
- package/components/sortableList/consts.js +4 -2
- package/components/sortableList/index.d.ts +39 -39
- package/components/table/common/consts.d.ts +2 -0
- package/components/table/common/consts.js +6 -4
- package/components/table/v4/DataGrid.vue.d.ts +4 -3
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +363 -335
- package/components/table/v4/DataGridContainer.vue.d.ts +10 -0
- package/components/table/v4/DataGridContainer.vue.js +7 -0
- package/components/table/v4/DataGridContainer.vue2.js +19 -0
- package/components/table/v4/DataGridHeader.vue.d.ts +1 -1
- package/components/table/v4/DataGridHeader.vue.js +2 -2
- package/components/table/v4/DataGridHeader.vue2.js +30 -28
- package/components/table/v4/MultipleDataGrid.vue.d.ts +2 -2
- package/components/table/v4/index.d.ts +104 -103
- package/components/tagsField/TagsField.types.d.ts +4 -0
- package/components/tagsField/TagsField.vue.d.ts +65 -0
- package/components/tagsField/TagsField.vue.js +7 -0
- package/components/tagsField/TagsField.vue2.js +90 -0
- package/components/tagsField/TagsFieldChip.vue.d.ts +45 -0
- package/components/tagsField/TagsFieldChip.vue.js +7 -0
- package/components/tagsField/TagsFieldChip.vue2.js +81 -0
- package/components/tagsField/consts.d.ts +1 -0
- package/components/tagsField/consts.js +4 -0
- package/components/tagsField/index.d.ts +75 -0
- package/components/tagsField/index.js +6 -0
- package/index.d.ts +410 -288
- package/index.js +87 -79
- package/package.json +10 -1
- package/testids/index.d.ts +36 -0
- package/testids/index.js +37 -31
- package/utils/object.d.ts +2 -0
- package/utils/object.js +9 -5
- package/utils/search.js +1 -1
- package/Chart.vue_vue_type_style_index_0_scoped_3da25a36_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_af520313_lang.css +0 -1
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_2f916aeb_lang.css +0 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_6103d8bd_lang.css +0 -1
- package/ChartPlane.vue_vue_type_style_index_0_scoped_dd60ff0e_lang.css +0 -1
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_3d0780bb_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_bdd6ee48_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_da7631e0_lang.css +0 -1
- package/DataGridHeader.vue_vue_type_style_index_0_scoped_840e700c_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_55dd36a7_lang.css +0 -1
- package/EmptyStateV4.vue_vue_type_style_index_0_scoped_18728498_lang.css +0 -1
- package/Link.vue_vue_type_style_index_0_scoped_b10e2439_lang.css +0 -1
- package/SortableItem.vue_vue_type_style_index_0_scoped_800cd503_lang.css +0 -1
- package/SortableList.vue_vue_type_style_index_0_scoped_84dc8525_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_4ba9e4bd_lang.css +0 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import e from "./SectionHeaderText.vue2.js";
|
|
2
|
+
/* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../SectionHeaderText.vue_vue_type_style_index_0_scoped_0b8d3d79_lang.css"; //*');
|
|
4
|
+
const s = /* @__PURE__ */ o(e, [["__scopeId", "data-v-0b8d3d79"]]);
|
|
5
|
+
export {
|
|
6
|
+
s as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import "../../SectionHeaderText.vue_vue_type_style_index_0_scoped_0b8d3d79_lang.css"; import { defineComponent as r, openBlock as o, createElementBlock as a, createVNode as n, unref as c, withCtx as d, createTextVNode as i, toDisplayString as t } from "vue";
|
|
2
|
+
import s from "../typography/v4/Typography.vue.js";
|
|
3
|
+
const u = { class: "section-header-text" }, x = /* @__PURE__ */ r({
|
|
4
|
+
__name: "SectionHeaderText",
|
|
5
|
+
props: {
|
|
6
|
+
headerText: { default: "" },
|
|
7
|
+
recordsCount: { default: null }
|
|
8
|
+
},
|
|
9
|
+
setup(e) {
|
|
10
|
+
return (l, f) => (o(), a("div", u, [
|
|
11
|
+
n(c(s), { variant: "h5" }, {
|
|
12
|
+
default: d(() => [
|
|
13
|
+
i(t(e.headerText) + " " + t(e.recordsCount ? `(${e.recordsCount})` : ""), 1)
|
|
14
|
+
]),
|
|
15
|
+
_: 1
|
|
16
|
+
})
|
|
17
|
+
]));
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
export {
|
|
21
|
+
x as default
|
|
22
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
allShown: boolean;
|
|
3
|
+
}>, {
|
|
4
|
+
allShown: boolean;
|
|
5
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
"update:allShown": (value: boolean) => void;
|
|
7
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
+
allShown: boolean;
|
|
9
|
+
}>, {
|
|
10
|
+
allShown: boolean;
|
|
11
|
+
}>>> & {
|
|
12
|
+
"onUpdate:allShown"?: (value: boolean) => any;
|
|
13
|
+
}, {
|
|
14
|
+
allShown: boolean;
|
|
15
|
+
}>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
19
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
20
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
21
|
+
} : {
|
|
22
|
+
type: import('vue').PropType<T[K]>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
type __VLS_WithDefaults<P, D> = {
|
|
27
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
28
|
+
default: D[K];
|
|
29
|
+
}> : P[K];
|
|
30
|
+
};
|
|
31
|
+
type __VLS_Prettify<T> = {
|
|
32
|
+
[K in keyof T]: T[K];
|
|
33
|
+
} & {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import o from "./ShowMoreLink.vue2.js";
|
|
2
|
+
/* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../ShowMoreLink.vue_vue_type_style_index_0_scoped_9fc3bc1b_lang.css"; //*');
|
|
4
|
+
const t = /* @__PURE__ */ e(o, [["__scopeId", "data-v-9fc3bc1b"]]);
|
|
5
|
+
export {
|
|
6
|
+
t as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import "../../ShowMoreLink.vue_vue_type_style_index_0_scoped_9fc3bc1b_lang.css"; import { defineComponent as f, openBlock as n, createElementBlock as k, unref as t, createBlock as r, mergeProps as l, withCtx as a, createTextVNode as i, createCommentVNode as m } from "vue";
|
|
2
|
+
import p from "../link/Link.vue.js";
|
|
3
|
+
import { useVModel as w } from "@vueuse/core";
|
|
4
|
+
const h = { class: "show-more-link" }, y = /* @__PURE__ */ f({
|
|
5
|
+
__name: "ShowMoreLink",
|
|
6
|
+
props: {
|
|
7
|
+
allShown: { type: Boolean, default: !1 }
|
|
8
|
+
},
|
|
9
|
+
emits: ["update:allShown"],
|
|
10
|
+
setup(u, { emit: c }) {
|
|
11
|
+
const e = w(u, "allShown", c), s = {
|
|
12
|
+
variant: "body2",
|
|
13
|
+
iconPosition: "start"
|
|
14
|
+
};
|
|
15
|
+
return (v, o) => (n(), k("div", h, [
|
|
16
|
+
t(e) ? m("", !0) : (n(), r(t(p), l({ key: 0 }, s, {
|
|
17
|
+
"test-id": "show-more",
|
|
18
|
+
"icon-name": "plus",
|
|
19
|
+
onClick: o[0] || (o[0] = (d) => e.value = !0)
|
|
20
|
+
}), {
|
|
21
|
+
default: a(() => [
|
|
22
|
+
i(" Show more ")
|
|
23
|
+
]),
|
|
24
|
+
_: 1
|
|
25
|
+
}, 16)),
|
|
26
|
+
t(e) ? (n(), r(t(p), l({ key: 1 }, s, {
|
|
27
|
+
"test-id": "show-less",
|
|
28
|
+
"icon-name": "minus",
|
|
29
|
+
onClick: o[1] || (o[1] = (d) => e.value = !1)
|
|
30
|
+
}), {
|
|
31
|
+
default: a(() => [
|
|
32
|
+
i(" Show less ")
|
|
33
|
+
]),
|
|
34
|
+
_: 1
|
|
35
|
+
}, 16)) : m("", !0)
|
|
36
|
+
]));
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
export {
|
|
40
|
+
y as default
|
|
41
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DISPLAY_FIELD_NAME = "displayText";
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import ColumnConfigurator from './ColumnConfigurator.vue';
|
|
2
|
+
declare const ColumnConfiguratorTypes: () => import("vue").DefineComponent<{
|
|
3
|
+
testId: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
loading: {
|
|
8
|
+
type: import("vue").PropType<boolean>;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
selection: {
|
|
12
|
+
type: import("vue").PropType<(string | number)[]>;
|
|
13
|
+
required: true;
|
|
14
|
+
default: () => any[];
|
|
15
|
+
};
|
|
16
|
+
alwaysVisibleCount: {
|
|
17
|
+
type: import("vue").PropType<number>;
|
|
18
|
+
default: number;
|
|
19
|
+
};
|
|
20
|
+
columnsConfig: {
|
|
21
|
+
type: import("vue").PropType<import("./ColumnConfigurator.types").ColumnConfigSection[]>;
|
|
22
|
+
required: true;
|
|
23
|
+
default: () => any[];
|
|
24
|
+
};
|
|
25
|
+
childSelection: {
|
|
26
|
+
type: import("vue").PropType<Record<string, string | number>>;
|
|
27
|
+
required: true;
|
|
28
|
+
default: () => {};
|
|
29
|
+
};
|
|
30
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
31
|
+
"update:selection": (value: unknown[]) => void;
|
|
32
|
+
"update:childSelection": (value: Record<string, string | number>) => void;
|
|
33
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
|
+
testId: {
|
|
35
|
+
type: import("vue").PropType<string>;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
loading: {
|
|
39
|
+
type: import("vue").PropType<boolean>;
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
42
|
+
selection: {
|
|
43
|
+
type: import("vue").PropType<(string | number)[]>;
|
|
44
|
+
required: true;
|
|
45
|
+
default: () => any[];
|
|
46
|
+
};
|
|
47
|
+
alwaysVisibleCount: {
|
|
48
|
+
type: import("vue").PropType<number>;
|
|
49
|
+
default: number;
|
|
50
|
+
};
|
|
51
|
+
columnsConfig: {
|
|
52
|
+
type: import("vue").PropType<import("./ColumnConfigurator.types").ColumnConfigSection[]>;
|
|
53
|
+
required: true;
|
|
54
|
+
default: () => any[];
|
|
55
|
+
};
|
|
56
|
+
childSelection: {
|
|
57
|
+
type: import("vue").PropType<Record<string, string | number>>;
|
|
58
|
+
required: true;
|
|
59
|
+
default: () => {};
|
|
60
|
+
};
|
|
61
|
+
}>> & {
|
|
62
|
+
"onUpdate:selection"?: (value: unknown[]) => any;
|
|
63
|
+
"onUpdate:childSelection"?: (value: Record<string, string | number>) => any;
|
|
64
|
+
}, {
|
|
65
|
+
testId: string;
|
|
66
|
+
loading: boolean;
|
|
67
|
+
selection: (string | number)[];
|
|
68
|
+
alwaysVisibleCount: number;
|
|
69
|
+
columnsConfig: import("./ColumnConfigurator.types").ColumnConfigSection[];
|
|
70
|
+
childSelection: Record<string, string | number>;
|
|
71
|
+
}>[];
|
|
72
|
+
export type { ColumnConfigSection } from './ColumnConfigurator.types';
|
|
73
|
+
export { ColumnConfigurator, ColumnConfiguratorTypes };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ColumnConfigSection } from '@/components/columnConfigurator/ColumnConfigurator.types';
|
|
2
|
+
export declare enum ColumnId {
|
|
3
|
+
DATE = "date",
|
|
4
|
+
AD_FORMAT = "adFormat",
|
|
5
|
+
APP = "app",
|
|
6
|
+
PLATFORM = "platform",
|
|
7
|
+
COUNTRY = "country",
|
|
8
|
+
SEGMENT = "segment",
|
|
9
|
+
REVENUE = "revenue",
|
|
10
|
+
DAU = "dau",
|
|
11
|
+
IMPRESSIONS = "impressions",
|
|
12
|
+
CLICKS = "clicks",
|
|
13
|
+
CTR = "ctr",
|
|
14
|
+
ENGAGED_SESSIONS = "engagedSessions",
|
|
15
|
+
ENGAGEMENT_RATE = "engagementRate",
|
|
16
|
+
QCTR = "qctr",
|
|
17
|
+
REACH = "reach",
|
|
18
|
+
UNIQUE_CLICKS = "uniqueClicks",
|
|
19
|
+
VIDEO_VIEWS = "videoViews"
|
|
20
|
+
}
|
|
21
|
+
export declare const TABLE_COLUMNS: ({
|
|
22
|
+
id: ColumnId;
|
|
23
|
+
title: string;
|
|
24
|
+
width?: undefined;
|
|
25
|
+
} | {
|
|
26
|
+
id: ColumnId;
|
|
27
|
+
title: string;
|
|
28
|
+
width: number;
|
|
29
|
+
})[];
|
|
30
|
+
export declare const COLUMNS_CONFIG: ColumnConfigSection[];
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
const s = (n, i) => {
|
|
2
|
+
const t = n.sectionOptions;
|
|
3
|
+
if (!n.isGrouped) {
|
|
4
|
+
t.forEach((o) => i(o));
|
|
5
|
+
return;
|
|
6
|
+
}
|
|
7
|
+
t.forEach((o) => {
|
|
8
|
+
o.options.forEach((r) => i(r));
|
|
9
|
+
});
|
|
10
|
+
}, c = (n, i) => {
|
|
11
|
+
let t = null;
|
|
12
|
+
return s(n, (o) => {
|
|
13
|
+
o.id === i && (t = o);
|
|
14
|
+
}), t;
|
|
15
|
+
};
|
|
16
|
+
export {
|
|
17
|
+
c as findOptionInSection
|
|
18
|
+
};
|
|
@@ -78,10 +78,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
78
78
|
noResultsText: string;
|
|
79
79
|
searchAutoFocus: boolean;
|
|
80
80
|
searchPlaceholder: string;
|
|
81
|
+
headerText: string;
|
|
81
82
|
appendToBody: boolean;
|
|
82
83
|
defaultSelection: unknown[];
|
|
83
84
|
inlineGroupIds: unknown[];
|
|
84
|
-
headerText: string;
|
|
85
85
|
idKey: string;
|
|
86
86
|
displayKey: string;
|
|
87
87
|
childrenKey: string;
|
|
@@ -11,10 +11,10 @@ declare const ColumnPickerTypes: () => ({
|
|
|
11
11
|
noResultsText: string;
|
|
12
12
|
searchAutoFocus: boolean;
|
|
13
13
|
searchPlaceholder: string;
|
|
14
|
+
headerText: string;
|
|
14
15
|
appendToBody: boolean;
|
|
15
16
|
defaultSelection: unknown[];
|
|
16
17
|
inlineGroupIds: unknown[];
|
|
17
|
-
headerText: string;
|
|
18
18
|
idKey: string;
|
|
19
19
|
displayKey: string;
|
|
20
20
|
childrenKey: string;
|
|
@@ -52,6 +52,10 @@ declare const ColumnPickerTypes: () => ({
|
|
|
52
52
|
type: import("vue").PropType<string>;
|
|
53
53
|
default: string;
|
|
54
54
|
};
|
|
55
|
+
headerText: {
|
|
56
|
+
type: import("vue").PropType<string>;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
55
59
|
appendToBody: {
|
|
56
60
|
type: import("vue").PropType<boolean>;
|
|
57
61
|
default: boolean;
|
|
@@ -64,10 +68,6 @@ declare const ColumnPickerTypes: () => ({
|
|
|
64
68
|
type: import("vue").PropType<unknown[]>;
|
|
65
69
|
default: () => any[];
|
|
66
70
|
};
|
|
67
|
-
headerText: {
|
|
68
|
-
type: import("vue").PropType<string>;
|
|
69
|
-
default: string;
|
|
70
|
-
};
|
|
71
71
|
idKey: {
|
|
72
72
|
type: import("vue").PropType<string>;
|
|
73
73
|
default: string;
|
|
@@ -90,7 +90,7 @@ declare const ColumnPickerTypes: () => ({
|
|
|
90
90
|
};
|
|
91
91
|
}>> & {
|
|
92
92
|
"onUpdate:selected"?: (value: unknown[]) => any;
|
|
93
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "selected" | "options" | "minSelections" | "noResultsText" | "searchAutoFocus" | "searchPlaceholder" | "
|
|
93
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "selected" | "options" | "minSelections" | "noResultsText" | "searchAutoFocus" | "searchPlaceholder" | "headerText" | "appendToBody" | "defaultSelection" | "inlineGroupIds" | "idKey" | "displayKey" | "childrenKey" | "disabledKey" | "minSelectionsTooltipMessage">;
|
|
94
94
|
$attrs: {
|
|
95
95
|
[x: string]: unknown;
|
|
96
96
|
};
|
|
@@ -136,6 +136,10 @@ declare const ColumnPickerTypes: () => ({
|
|
|
136
136
|
type: import("vue").PropType<string>;
|
|
137
137
|
default: string;
|
|
138
138
|
};
|
|
139
|
+
headerText: {
|
|
140
|
+
type: import("vue").PropType<string>;
|
|
141
|
+
default: string;
|
|
142
|
+
};
|
|
139
143
|
appendToBody: {
|
|
140
144
|
type: import("vue").PropType<boolean>;
|
|
141
145
|
default: boolean;
|
|
@@ -148,10 +152,6 @@ declare const ColumnPickerTypes: () => ({
|
|
|
148
152
|
type: import("vue").PropType<unknown[]>;
|
|
149
153
|
default: () => any[];
|
|
150
154
|
};
|
|
151
|
-
headerText: {
|
|
152
|
-
type: import("vue").PropType<string>;
|
|
153
|
-
default: string;
|
|
154
|
-
};
|
|
155
155
|
idKey: {
|
|
156
156
|
type: import("vue").PropType<string>;
|
|
157
157
|
default: string;
|
|
@@ -184,10 +184,10 @@ declare const ColumnPickerTypes: () => ({
|
|
|
184
184
|
noResultsText: string;
|
|
185
185
|
searchAutoFocus: boolean;
|
|
186
186
|
searchPlaceholder: string;
|
|
187
|
+
headerText: string;
|
|
187
188
|
appendToBody: boolean;
|
|
188
189
|
defaultSelection: unknown[];
|
|
189
190
|
inlineGroupIds: unknown[];
|
|
190
|
-
headerText: string;
|
|
191
191
|
idKey: string;
|
|
192
192
|
displayKey: string;
|
|
193
193
|
childrenKey: string;
|
|
@@ -245,6 +245,10 @@ declare const ColumnPickerTypes: () => ({
|
|
|
245
245
|
type: import("vue").PropType<string>;
|
|
246
246
|
default: string;
|
|
247
247
|
};
|
|
248
|
+
headerText: {
|
|
249
|
+
type: import("vue").PropType<string>;
|
|
250
|
+
default: string;
|
|
251
|
+
};
|
|
248
252
|
appendToBody: {
|
|
249
253
|
type: import("vue").PropType<boolean>;
|
|
250
254
|
default: boolean;
|
|
@@ -257,10 +261,6 @@ declare const ColumnPickerTypes: () => ({
|
|
|
257
261
|
type: import("vue").PropType<unknown[]>;
|
|
258
262
|
default: () => any[];
|
|
259
263
|
};
|
|
260
|
-
headerText: {
|
|
261
|
-
type: import("vue").PropType<string>;
|
|
262
|
-
default: string;
|
|
263
|
-
};
|
|
264
264
|
idKey: {
|
|
265
265
|
type: import("vue").PropType<string>;
|
|
266
266
|
default: string;
|
|
@@ -319,6 +319,10 @@ declare const ColumnPickerTypes: () => ({
|
|
|
319
319
|
type: import("vue").PropType<string>;
|
|
320
320
|
default: string;
|
|
321
321
|
};
|
|
322
|
+
headerText: {
|
|
323
|
+
type: import("vue").PropType<string>;
|
|
324
|
+
default: string;
|
|
325
|
+
};
|
|
322
326
|
appendToBody: {
|
|
323
327
|
type: import("vue").PropType<boolean>;
|
|
324
328
|
default: boolean;
|
|
@@ -331,10 +335,6 @@ declare const ColumnPickerTypes: () => ({
|
|
|
331
335
|
type: import("vue").PropType<unknown[]>;
|
|
332
336
|
default: () => any[];
|
|
333
337
|
};
|
|
334
|
-
headerText: {
|
|
335
|
-
type: import("vue").PropType<string>;
|
|
336
|
-
default: string;
|
|
337
|
-
};
|
|
338
338
|
idKey: {
|
|
339
339
|
type: import("vue").PropType<string>;
|
|
340
340
|
default: string;
|
|
@@ -367,10 +367,10 @@ declare const ColumnPickerTypes: () => ({
|
|
|
367
367
|
noResultsText: string;
|
|
368
368
|
searchAutoFocus: boolean;
|
|
369
369
|
searchPlaceholder: string;
|
|
370
|
+
headerText: string;
|
|
370
371
|
appendToBody: boolean;
|
|
371
372
|
defaultSelection: unknown[];
|
|
372
373
|
inlineGroupIds: unknown[];
|
|
373
|
-
headerText: string;
|
|
374
374
|
idKey: string;
|
|
375
375
|
displayKey: string;
|
|
376
376
|
childrenKey: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./ConditionalDropdown.vue2.js";
|
|
2
|
-
/* empty css */import
|
|
3
|
-
// import "../../../ConditionalDropdown.
|
|
4
|
-
const p = /* @__PURE__ */
|
|
2
|
+
/* empty css */import _ from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../../ConditionalDropdown.vue_vue_type_style_index_0_scoped_8cc86a27_lang.css"; //*');
|
|
4
|
+
const p = /* @__PURE__ */ _(o, [["__scopeId", "data-v-8cc86a27"]]);
|
|
5
5
|
export {
|
|
6
6
|
p as default
|
|
7
7
|
};
|