@ironsource/shared-ui 2.1.12-rc.1 → 2.1.12-rc.11
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_0123c361_lang.css +1 -0
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_0198fee8_lang.css +1 -0
- package/Chart.vue_vue_type_style_index_0_scoped_78d3f5a8_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_32001725_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_e4c673e7_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_532f23bc_lang.css +1 -0
- package/ChartPlane.vue_vue_type_style_index_0_scoped_4396faf6_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_25d0e129_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8d5521da_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_86ea5d2a_lang.css +1 -0
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_a849128a_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_d154c5da_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_4ba9e4bd_lang.css +1 -0
- package/components/chart/Chart.vue.d.ts +57 -39
- package/components/chart/Chart.vue.js +3 -3
- package/components/chart/Chart.vue2.js +98 -297
- package/components/chart/ChartHeader.vue.d.ts +20 -10
- package/components/chart/ChartHeader.vue.js +2 -2
- package/components/chart/ChartHeader.vue2.js +74 -52
- package/components/chart/ChartHeaderTrend.vue.d.ts +34 -0
- package/components/chart/ChartHeaderTrend.vue.js +7 -0
- package/components/chart/ChartHeaderTrend.vue2.js +32 -0
- package/components/chart/ChartLegend.vue.js +2 -2
- package/components/chart/ChartLegend.vue2.js +36 -35
- package/components/chart/ChartPlane.vue.d.ts +143 -0
- package/components/chart/ChartPlane.vue.js +7 -0
- package/components/chart/ChartPlane.vue2.js +306 -0
- package/components/chart/ChartStoryArgs.d.ts +135 -0
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +36 -35
- package/components/chart/composables/useChartHeight.d.ts +5 -0
- package/components/chart/composables/useChartHeight.js +22 -0
- package/components/chart/composables/useColorsMap.d.ts +10 -0
- package/components/chart/composables/useColorsMap.js +17 -0
- package/components/chart/composables/useTooltipPosition.d.ts +1 -1
- package/components/chart/composables/useTooltipPosition.js +11 -15
- package/components/chart/consts.d.ts +5 -0
- package/components/chart/consts.js +20 -15
- package/components/chart/index.d.ts +189 -113
- package/components/chart/mockData.d.ts +27 -1
- package/components/chart/types.d.ts +4 -0
- package/components/chart/utils/formatNumber.d.ts +0 -1
- package/components/chart/utils/utils.js +5 -5
- package/components/dateRange/v4/DateRangeV4.vue.js +2 -2
- package/components/dateRange/v4/DateRangeV4.vue2.js +1 -1
- package/components/dropdown/common/Dropdown.common.js +92 -85
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +1 -1
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +1 -1
- package/components/dropdown/v4/ConditionalDropdown.vue.js +3 -3
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +76 -76
- package/components/dropdown/v4/DropdownV4.vue.js +4 -4
- package/components/dropdown/v4/DropdownV4.vue2.js +96 -86
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +68 -73
- package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
- package/components/emptyState/v4/index.d.ts +7 -7
- package/components/table/v4/DataGrid.vue.d.ts +4 -3
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +152 -142
- package/components/table/v4/MultipleDataGrid.vue.d.ts +3 -3
- package/components/table/v4/index.d.ts +15 -14
- package/composables/useFullPageHeight.d.ts +10 -0
- package/composables/useFullPageHeight.js +15 -0
- package/index.d.ts +48 -42
- package/index.js +103 -101
- package/package.json +1 -1
- package/testids/index.d.ts +2 -1
- package/testids/index.js +10 -10
- package/utils/formatNumbers.d.ts +1 -1
- package/utils/formatNumbers.js +18 -5
- package/utils/index.js +7 -0
- package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_604dfc6f_lang.css +0 -1
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_ea1c4589_lang.css +0 -1
- package/Chart.vue_vue_type_style_index_0_scoped_026d82c5_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_b8213498_lang.css +0 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_4fe1c7d1_lang.css +0 -1
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_6744325c_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_3a2aeea3_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_26488faf_lang.css +0 -1
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_8a2714eb_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_48ba81e5_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_b883d1fa_lang.css +0 -1
- package/components/chart/utils/formatNumber.js +0 -11
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import "../../../DataGrid.
|
|
1
|
+
import "../../../DataGrid.vue_vue_type_style_index_0_scoped_86ea5d2a_lang.css"; import { defineComponent as ce, useCssVars as re, unref as t, useSlots as ue, computed as m, openBlock as i, createElementBlock as d, createElementVNode as u, normalizeStyle as T, normalizeClass as S, renderSlot as c, createVNode as h, withCtx as w, createTextVNode as E, toDisplayString as B, createCommentVNode as r, isRef as he, Fragment as p, renderList as I, mergeProps as M, createBlock as z } from "vue";
|
|
2
2
|
import A from "../../typography/v4/Typography.vue.js";
|
|
3
|
-
import
|
|
4
|
-
import
|
|
3
|
+
import ye from "../../skeleton/v4/SkeletonV4.vue.js";
|
|
4
|
+
import fe from "../../emptyState/v4/EmptyStateV4.vue.js";
|
|
5
5
|
import G from "../../checkbox/v4/CheckboxV4.vue.js";
|
|
6
|
-
import { TableTestIdModifiers as
|
|
7
|
-
import { tableCommon as
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import { useVModel as
|
|
13
|
-
import { CHECKBOX_COLUMN_ID as
|
|
14
|
-
const Ce = ["data-testid"],
|
|
6
|
+
import { TableTestIdModifiers as y } from "../../../testids/index.js";
|
|
7
|
+
import { tableCommon as Se } from "../common/Table.common.js";
|
|
8
|
+
import ke from "./SortIcon.vue.js";
|
|
9
|
+
import me from "./HelpIcon.vue.js";
|
|
10
|
+
import ge from "./ExpandRowToggle.vue.js";
|
|
11
|
+
import ve from "../../search/v4/SearchV4.vue.js";
|
|
12
|
+
import { useVModel as be } from "@vueuse/core";
|
|
13
|
+
import { CHECKBOX_COLUMN_ID as $e } from "../common/consts.js";
|
|
14
|
+
const Re = ["data-testid"], Ce = ["data-testid"], xe = ["data-testid"], Te = ["data-testid"], we = ["data-testid"], Ee = ["data-testid"], Be = { class: "search-wrapper" }, pe = ["data-testid"], Ie = ["data-testid"], Ae = {
|
|
15
15
|
key: 1,
|
|
16
16
|
class: "expand-toggle-cell"
|
|
17
|
-
},
|
|
17
|
+
}, He = ["onClick"], Pe = { class: "table-head-container" }, Le = ["data-testid"], Me = ["onMouseenter", "onClick"], Ve = {
|
|
18
18
|
key: 1,
|
|
19
19
|
class: "expand-toggle-cell"
|
|
20
|
-
},
|
|
20
|
+
}, Ne = {
|
|
21
21
|
key: 2,
|
|
22
22
|
class: "expanded-row"
|
|
23
|
-
},
|
|
23
|
+
}, Fe = {
|
|
24
24
|
key: 3,
|
|
25
25
|
class: "floating-row"
|
|
26
|
-
},
|
|
26
|
+
}, Oe = { key: 1 }, De = {
|
|
27
27
|
key: 0,
|
|
28
28
|
class: "table-footer"
|
|
29
|
-
},
|
|
29
|
+
}, et = /* @__PURE__ */ ce({
|
|
30
30
|
__name: "DataGrid",
|
|
31
31
|
props: {
|
|
32
32
|
title: { default: "" },
|
|
@@ -61,167 +61,176 @@ const Ce = ["data-testid"], $e = ["data-testid"], Re = ["data-testid"], xe = ["d
|
|
|
61
61
|
isSelectionBordered: { type: Boolean, default: !1 }
|
|
62
62
|
},
|
|
63
63
|
emits: ["update:sort", "update:search", "update:selection", "onScroll", "onClearSearch", "saveRow", "loadMore", "selectAll", "selectRow", "clickRow"],
|
|
64
|
-
setup(s, { expose: k, emit:
|
|
65
|
-
const
|
|
66
|
-
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
"
|
|
64
|
+
setup(s, { expose: k, emit: f }) {
|
|
65
|
+
const l = s;
|
|
66
|
+
re((a) => ({
|
|
67
|
+
"1d1d1477": s.zIndexBase,
|
|
68
|
+
"2f1951ab": t(_),
|
|
69
|
+
d450b438: t(N),
|
|
70
|
+
"43af326c": t(Z)
|
|
71
71
|
}));
|
|
72
|
-
const
|
|
73
|
-
list:
|
|
72
|
+
const g = ue(), Y = (a) => l.rowCustomClassKey && l.rows[a] ? l.rows[a][l.rowCustomClassKey] : "", {
|
|
73
|
+
list: V,
|
|
74
74
|
containerProps: Q,
|
|
75
75
|
wrapperProps: W,
|
|
76
|
-
activeRow:
|
|
76
|
+
activeRow: $,
|
|
77
77
|
gridColumnTemplate: N,
|
|
78
78
|
toggleSortOrder: X,
|
|
79
|
-
columnsStickyPositions:
|
|
79
|
+
columnsStickyPositions: H,
|
|
80
80
|
hasSearchSlot: j,
|
|
81
81
|
containerStyle: q,
|
|
82
82
|
onScroll: F,
|
|
83
83
|
savingRows: O,
|
|
84
|
-
hasExpandSlot:
|
|
84
|
+
hasExpandSlot: R,
|
|
85
85
|
toggleExpandRow: J,
|
|
86
86
|
cssRowHeight: Z,
|
|
87
87
|
cssExpandGridCol: _,
|
|
88
|
-
isRowExpanded:
|
|
88
|
+
isRowExpanded: P,
|
|
89
89
|
hasCheckboxes: D,
|
|
90
90
|
activeMenuRow: ee,
|
|
91
91
|
scrollTo: te
|
|
92
|
-
} =
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
92
|
+
} = Se(l, f), K = m(() => !!g.footer), se = m(
|
|
93
|
+
() => l.title || g.title || j.value || g["table-header-actions"] || g["table-header-pre-search"]
|
|
94
|
+
), b = be(l, "search", f), ae = m(() => l.selection.length || 0), L = m(() => {
|
|
95
|
+
const a = l.rows.map((o, e) => l.getRowId(o, e));
|
|
96
|
+
return !!a.length && a.every((o) => C(o));
|
|
97
|
+
}), C = (a) => l.selection.findIndex((o) => l.selectedMatcher(a, o)) !== -1, le = (a) => {
|
|
98
|
+
C(a) ? (x(
|
|
99
|
+
l.selection.filter(
|
|
100
|
+
(o) => !l.selectedMatcher(a, o)
|
|
99
101
|
)
|
|
100
|
-
),
|
|
101
|
-
},
|
|
102
|
-
if (
|
|
103
|
-
x([]),
|
|
102
|
+
), f("selectRow", !1)) : (x([...l.selection, a]), f("selectRow", !0));
|
|
103
|
+
}, ie = () => {
|
|
104
|
+
if (L.value)
|
|
105
|
+
x([]), f("selectAll", !1);
|
|
104
106
|
else {
|
|
105
|
-
const
|
|
106
|
-
x([...
|
|
107
|
+
const a = l.rows.map((o, e) => l.getRowId(o, e)).filter((o) => !C(o));
|
|
108
|
+
x([...l.selection, ...a]), f("selectAll", !0);
|
|
107
109
|
}
|
|
108
|
-
}, x = (
|
|
109
|
-
|
|
110
|
-
},
|
|
111
|
-
() =>
|
|
112
|
-
),
|
|
113
|
-
() =>
|
|
114
|
-
), U =
|
|
110
|
+
}, x = (a) => {
|
|
111
|
+
f("update:selection", a);
|
|
112
|
+
}, de = (a) => !l.isLoading && $.value === a, oe = m(
|
|
113
|
+
() => l.emptyStateVariant ?? (b.value ? "no-results" : "no-data")
|
|
114
|
+
), ne = m(
|
|
115
|
+
() => l.emptyStateSubtitle ? l.emptyStateSubtitle : b.value ? "Search again with different filters" : void 0
|
|
116
|
+
), U = m(() => ({
|
|
115
117
|
class: {
|
|
116
|
-
sticky:
|
|
117
|
-
bordered:
|
|
118
|
+
sticky: l.isSelectionSticky,
|
|
119
|
+
bordered: l.isSelectionBordered
|
|
118
120
|
},
|
|
119
|
-
style:
|
|
121
|
+
style: l.isSelectionSticky ? H.value[$e] : null
|
|
120
122
|
}));
|
|
121
123
|
return k({
|
|
122
124
|
scrollTo: te
|
|
123
|
-
}), (
|
|
125
|
+
}), (a, o) => (i(), d("div", {
|
|
124
126
|
class: "table-container",
|
|
125
|
-
"data-testid": `${s.testId}-${t(
|
|
126
|
-
onMouseleave:
|
|
127
|
+
"data-testid": `${s.testId}-${t(y).CONTAINER}`,
|
|
128
|
+
onMouseleave: o[3] || (o[3] = (e) => $.value = null)
|
|
127
129
|
}, [
|
|
128
130
|
u("table", {
|
|
129
131
|
ref: t(Q).ref,
|
|
130
132
|
style: T(t(q)),
|
|
131
|
-
class:
|
|
133
|
+
class: S({
|
|
132
134
|
hasFooter: t(K)
|
|
133
135
|
}),
|
|
134
|
-
"data-testid": `${s.testId}-${t(
|
|
135
|
-
onScrollPassive:
|
|
136
|
+
"data-testid": `${s.testId}-${t(y).TABLE}`,
|
|
137
|
+
onScrollPassive: o[2] || (o[2] = //@ts-ignore
|
|
136
138
|
(...e) => t(F) && t(F)(...e))
|
|
137
139
|
}, [
|
|
138
|
-
|
|
140
|
+
t(se) ? (i(), d("div", {
|
|
139
141
|
key: 0,
|
|
140
|
-
class:
|
|
141
|
-
"data-testid": `${s.testId}-${t(
|
|
142
|
+
class: S(["table-header", { isStickyHeader: s.isStickyHeader }]),
|
|
143
|
+
"data-testid": `${s.testId}-${t(y).HEADER}`
|
|
142
144
|
}, [
|
|
143
145
|
u("div", {
|
|
144
146
|
class: "table-title",
|
|
145
|
-
"data-testid": `${s.testId}-${t(
|
|
147
|
+
"data-testid": `${s.testId}-${t(y).TITLE}`
|
|
146
148
|
}, [
|
|
147
|
-
c(
|
|
149
|
+
c(a.$slots, "title", {}, () => [
|
|
148
150
|
h(t(A), { variant: "h3" }, {
|
|
149
151
|
default: w(() => [
|
|
150
|
-
B(
|
|
152
|
+
E(B(s.title), 1)
|
|
151
153
|
]),
|
|
152
154
|
_: 1
|
|
153
155
|
})
|
|
154
156
|
])
|
|
155
|
-
], 8,
|
|
157
|
+
], 8, Te),
|
|
158
|
+
t(g)["table-header-pre-search"] ? (i(), d("div", {
|
|
159
|
+
key: 0,
|
|
160
|
+
class: "table-header-pre-search-content",
|
|
161
|
+
"data-testid": `${s.testId}-${t(y).PRE_SEARCH_HEADER}`
|
|
162
|
+
}, [
|
|
163
|
+
c(a.$slots, "table-header-pre-search")
|
|
164
|
+
], 8, we)) : r("", !0),
|
|
156
165
|
u("div", {
|
|
157
166
|
class: "table-header-right",
|
|
158
|
-
"data-testid": `${s.testId}-${t(
|
|
167
|
+
"data-testid": `${s.testId}-${t(y).HEADER_RIGHT}`
|
|
159
168
|
}, [
|
|
160
|
-
s.showSearch ? c(
|
|
161
|
-
u("div",
|
|
162
|
-
h(t(
|
|
163
|
-
modelValue: t(
|
|
164
|
-
"onUpdate:modelValue":
|
|
169
|
+
s.showSearch ? c(a.$slots, "search", { key: 0 }, () => [
|
|
170
|
+
u("div", Be, [
|
|
171
|
+
h(t(ve), {
|
|
172
|
+
modelValue: t(b),
|
|
173
|
+
"onUpdate:modelValue": o[0] || (o[0] = (e) => he(b) ? b.value = e : null),
|
|
165
174
|
placeholder: s.searchPlaceholder,
|
|
166
175
|
"auto-focus": s.searchAutoFocus,
|
|
167
176
|
"test-id": s.testId,
|
|
168
|
-
onOnClear:
|
|
177
|
+
onOnClear: o[1] || (o[1] = (e) => f("onClearSearch"))
|
|
169
178
|
}, null, 8, ["modelValue", "placeholder", "auto-focus", "test-id"])
|
|
170
179
|
])
|
|
171
180
|
]) : r("", !0)
|
|
172
|
-
], 8,
|
|
173
|
-
t(
|
|
174
|
-
key:
|
|
181
|
+
], 8, Ee),
|
|
182
|
+
t(g)["table-header-actions"] ? (i(), d("div", {
|
|
183
|
+
key: 1,
|
|
175
184
|
class: "table-header-actions",
|
|
176
|
-
"data-testid": `${s.testId}-${t(
|
|
185
|
+
"data-testid": `${s.testId}-${t(y).ACTIONS}`
|
|
177
186
|
}, [
|
|
178
|
-
c(
|
|
179
|
-
], 8,
|
|
180
|
-
], 10,
|
|
187
|
+
c(a.$slots, "table-header-actions")
|
|
188
|
+
], 8, pe)) : r("", !0)
|
|
189
|
+
], 10, xe)) : r("", !0),
|
|
181
190
|
u("thead", {
|
|
182
|
-
class:
|
|
191
|
+
class: S({ sticky: s.isSticky, isStickyHeader: s.isStickyHeader })
|
|
183
192
|
}, [
|
|
184
193
|
u("div", {
|
|
185
194
|
class: "sections",
|
|
186
|
-
"data-testid": `${s.testId}-${t(
|
|
195
|
+
"data-testid": `${s.testId}-${t(y).SECTIONS}`
|
|
187
196
|
}, [
|
|
188
|
-
(i(!0),
|
|
197
|
+
(i(!0), d(p, null, I(s.sections, (e) => (i(), d("div", {
|
|
189
198
|
key: e.id,
|
|
190
|
-
class:
|
|
199
|
+
class: S(["section-container", { sticky: e.isSticky }])
|
|
191
200
|
}, [
|
|
192
|
-
c(
|
|
201
|
+
c(a.$slots, `section-${e.id}`, {}, () => [
|
|
193
202
|
u("div", {
|
|
194
203
|
style: T({ width: e.width + "px" }),
|
|
195
|
-
class:
|
|
204
|
+
class: S({ section: !0 })
|
|
196
205
|
}, [
|
|
197
206
|
h(t(A), { variant: "body2" }, {
|
|
198
207
|
default: w(() => [
|
|
199
|
-
B(
|
|
208
|
+
E(B(e.title), 1)
|
|
200
209
|
]),
|
|
201
210
|
_: 2
|
|
202
211
|
}, 1024)
|
|
203
212
|
], 4)
|
|
204
213
|
])
|
|
205
214
|
], 2))), 128))
|
|
206
|
-
], 8,
|
|
215
|
+
], 8, Ie),
|
|
207
216
|
u("tr", null, [
|
|
208
|
-
t(D) ? (i(),
|
|
217
|
+
t(D) ? (i(), d("th", M({
|
|
209
218
|
key: 0,
|
|
210
219
|
class: "checkbox-cell"
|
|
211
220
|
}, t(U)), [
|
|
212
|
-
c(
|
|
221
|
+
c(a.$slots, "select-all-checkbox", {}, () => [
|
|
213
222
|
h(t(G), {
|
|
214
223
|
disabled: s.isLoading,
|
|
215
|
-
"is-checked": t(
|
|
216
|
-
"is-indeterminate": !t(
|
|
217
|
-
"onUpdate:isChecked":
|
|
224
|
+
"is-checked": t(L),
|
|
225
|
+
"is-indeterminate": !t(L) && t(ae) > 0,
|
|
226
|
+
"onUpdate:isChecked": ie
|
|
218
227
|
}, null, 8, ["disabled", "is-checked", "is-indeterminate"])
|
|
219
228
|
])
|
|
220
229
|
], 16)) : r("", !0),
|
|
221
|
-
t(
|
|
222
|
-
(i(!0),
|
|
230
|
+
t(R) ? (i(), d("th", Ae)) : r("", !0),
|
|
231
|
+
(i(!0), d(p, null, I(s.columns, (e) => (i(), d("th", {
|
|
223
232
|
key: e.id,
|
|
224
|
-
class:
|
|
233
|
+
class: S({
|
|
225
234
|
sticky: e.isSticky,
|
|
226
235
|
isStickyRight: e.isStickyRight,
|
|
227
236
|
bordered: e.isBordered,
|
|
@@ -229,67 +238,67 @@ const Ce = ["data-testid"], $e = ["data-testid"], Re = ["data-testid"], xe = ["d
|
|
|
229
238
|
isSortable: e.isSortable,
|
|
230
239
|
[`column-${e.id}`]: !0
|
|
231
240
|
}),
|
|
232
|
-
style: T(e.isSticky ? t(
|
|
233
|
-
onClick: (
|
|
241
|
+
style: T(e.isSticky ? t(H)[e.id] : null),
|
|
242
|
+
onClick: (v) => e.isSortable ? t(X)(e) : null
|
|
234
243
|
}, [
|
|
235
|
-
u("div",
|
|
236
|
-
c(
|
|
244
|
+
u("div", Pe, [
|
|
245
|
+
c(a.$slots, `header-${e.id}`, { column: e }, () => [
|
|
237
246
|
h(t(A), { variant: "tableLabel" }, {
|
|
238
247
|
default: w(() => [
|
|
239
|
-
B(
|
|
248
|
+
E(B(e.title), 1)
|
|
240
249
|
]),
|
|
241
250
|
_: 2
|
|
242
251
|
}, 1024)
|
|
243
252
|
]),
|
|
244
|
-
e.helpText ? (i(), z(
|
|
253
|
+
e.helpText ? (i(), z(me, {
|
|
245
254
|
key: 0,
|
|
246
255
|
"hover-help-text": e.helpText,
|
|
247
256
|
"hover-help-text-placement": e.helpTextPlacement
|
|
248
257
|
}, null, 8, ["hover-help-text", "hover-help-text-placement"])) : r("", !0),
|
|
249
|
-
e.isSortable && e.id === s.sort?.sortBy ? (i(), z(
|
|
258
|
+
e.isSortable && e.id === s.sort?.sortBy ? (i(), z(ke, {
|
|
250
259
|
key: 1,
|
|
251
260
|
"sort-order": s.sort.sortOrder
|
|
252
261
|
}, null, 8, ["sort-order"])) : r("", !0)
|
|
253
262
|
])
|
|
254
|
-
], 14,
|
|
263
|
+
], 14, He))), 128))
|
|
255
264
|
])
|
|
256
265
|
], 2),
|
|
257
266
|
u("tbody", null, [
|
|
258
|
-
t(
|
|
267
|
+
t(V).length > 0 ? (i(), d("div", M({
|
|
259
268
|
key: 0,
|
|
260
269
|
class: "table-body-wrapper",
|
|
261
|
-
"data-testid": `${s.testId}-${t(
|
|
270
|
+
"data-testid": `${s.testId}-${t(y).BODY_WRAPPER}`
|
|
262
271
|
}, t(W)), [
|
|
263
|
-
(i(!0),
|
|
272
|
+
(i(!0), d(p, null, I(t(V), (e) => (i(), d("tr", {
|
|
264
273
|
key: s.getRowKey(e.data, e.index),
|
|
265
|
-
class:
|
|
274
|
+
class: S(["table-row", {
|
|
266
275
|
loading: s.isLoading || s.isLoading && !e.data || t(O).includes(e.index),
|
|
267
|
-
active: t(
|
|
276
|
+
active: t($) === e.index,
|
|
268
277
|
activeMenu: t(ee) === e.index,
|
|
269
|
-
expanded: t(
|
|
278
|
+
expanded: t(R) && t(P)(e.index),
|
|
270
279
|
[Y(e.index)]: !0
|
|
271
280
|
}]),
|
|
272
|
-
onMouseenter: (
|
|
273
|
-
onClick: (
|
|
281
|
+
onMouseenter: (v) => $.value = e.index,
|
|
282
|
+
onClick: (v) => f("clickRow", e.index)
|
|
274
283
|
}, [
|
|
275
|
-
t(D) ? (i(),
|
|
284
|
+
t(D) ? (i(), d("td", M({
|
|
276
285
|
key: 0,
|
|
277
286
|
class: "checkbox-cell"
|
|
278
287
|
}, t(U)), [
|
|
279
288
|
h(t(G), {
|
|
280
|
-
"is-checked":
|
|
281
|
-
"onUpdate:isChecked": (
|
|
289
|
+
"is-checked": C(s.getRowId(e.data, e.index)),
|
|
290
|
+
"onUpdate:isChecked": (v) => le(s.getRowId(e.data, e.index))
|
|
282
291
|
}, null, 8, ["is-checked", "onUpdate:isChecked"])
|
|
283
292
|
], 16)) : r("", !0),
|
|
284
|
-
t(
|
|
285
|
-
h(
|
|
286
|
-
expanded: t(
|
|
287
|
-
onClick: (
|
|
293
|
+
t(R) ? (i(), d("td", Ve, [
|
|
294
|
+
h(ge, {
|
|
295
|
+
expanded: t(P)(e.index),
|
|
296
|
+
onClick: (v) => t(J)(e.index, v)
|
|
288
297
|
}, null, 8, ["expanded", "onClick"])
|
|
289
298
|
])) : r("", !0),
|
|
290
|
-
(i(!0),
|
|
299
|
+
(i(!0), d(p, null, I(s.columns, (v, n) => (i(), d("td", {
|
|
291
300
|
key: n,
|
|
292
|
-
class:
|
|
301
|
+
class: S({
|
|
293
302
|
sticky: s.columns[n].isSticky,
|
|
294
303
|
isStickyRight: s.columns[n].isStickyRight,
|
|
295
304
|
bordered: s.columns[n].isBordered,
|
|
@@ -297,14 +306,14 @@ const Ce = ["data-testid"], $e = ["data-testid"], Re = ["data-testid"], xe = ["d
|
|
|
297
306
|
[`column-${s.columns[n].id}`]: !0
|
|
298
307
|
}),
|
|
299
308
|
style: T(
|
|
300
|
-
s.columns[n].isSticky ? t(
|
|
309
|
+
s.columns[n].isSticky ? t(H)[s.columns[n].id] : null
|
|
301
310
|
)
|
|
302
311
|
}, [
|
|
303
|
-
!s.isLoading || s.isLoading && e.data[n] ? (i(),
|
|
312
|
+
!s.isLoading || s.isLoading && e.data[n] ? (i(), d("div", {
|
|
304
313
|
key: 0,
|
|
305
|
-
class:
|
|
314
|
+
class: S(["table-cell", { last: n === e.data.length - 1 }])
|
|
306
315
|
}, [
|
|
307
|
-
c(
|
|
316
|
+
c(a.$slots, `cell-${s.columns[n].id}`, {
|
|
308
317
|
cell: e.data[n],
|
|
309
318
|
isLoading: t(O).includes(e.index),
|
|
310
319
|
cellIndex: n,
|
|
@@ -313,47 +322,48 @@ const Ce = ["data-testid"], $e = ["data-testid"], Re = ["data-testid"], xe = ["d
|
|
|
313
322
|
}, () => [
|
|
314
323
|
h(t(A), { variant: "body1" }, {
|
|
315
324
|
default: w(() => [
|
|
316
|
-
B(
|
|
325
|
+
E(B(e.data[n]), 1)
|
|
317
326
|
]),
|
|
318
327
|
_: 2
|
|
319
328
|
}, 1024)
|
|
320
329
|
])
|
|
321
|
-
], 2)) : c(
|
|
322
|
-
h(t(
|
|
330
|
+
], 2)) : c(a.$slots, "loader", { key: 1 }, () => [
|
|
331
|
+
h(t(ye), { round: "" })
|
|
323
332
|
])
|
|
324
333
|
], 6))), 128)),
|
|
325
|
-
t(
|
|
326
|
-
c(
|
|
334
|
+
t(R) && t(P)(e.index) ? (i(), d("div", Ne, [
|
|
335
|
+
c(a.$slots, "expanded", {
|
|
327
336
|
row: e,
|
|
328
337
|
gridColumnTemplate: t(N)
|
|
329
338
|
})
|
|
330
339
|
])) : r("", !0),
|
|
331
|
-
|
|
332
|
-
c(
|
|
340
|
+
de(e.index) ? (i(), d("div", Fe, [
|
|
341
|
+
c(a.$slots, "floating-row", {
|
|
333
342
|
row: e,
|
|
334
343
|
rowIndex: e.index
|
|
335
344
|
})
|
|
336
345
|
])) : r("", !0)
|
|
337
346
|
], 42, Me))), 128))
|
|
338
|
-
], 16, Le)) : (i(),
|
|
339
|
-
c(
|
|
340
|
-
h(t(
|
|
347
|
+
], 16, Le)) : (i(), d("div", Oe, [
|
|
348
|
+
c(a.$slots, "empty-state", {}, () => [
|
|
349
|
+
h(t(fe), {
|
|
341
350
|
class: "empty-state",
|
|
342
351
|
title: s.emptyStateTitle,
|
|
343
|
-
subtitle: t(
|
|
352
|
+
subtitle: t(ne),
|
|
344
353
|
variant: t(oe),
|
|
345
|
-
"
|
|
354
|
+
"icon-name": "file-search",
|
|
355
|
+
"test-id": `${s.testId}-${t(y).EMPTY_STATE}`
|
|
346
356
|
}, null, 8, ["title", "subtitle", "variant", "test-id"])
|
|
347
357
|
])
|
|
348
358
|
]))
|
|
349
359
|
])
|
|
350
|
-
], 46,
|
|
351
|
-
t(K) ? (i(),
|
|
352
|
-
c(
|
|
360
|
+
], 46, Ce),
|
|
361
|
+
t(K) ? (i(), d("div", De, [
|
|
362
|
+
c(a.$slots, "footer")
|
|
353
363
|
])) : r("", !0)
|
|
354
|
-
], 40,
|
|
364
|
+
], 40, Re));
|
|
355
365
|
}
|
|
356
366
|
});
|
|
357
367
|
export {
|
|
358
|
-
|
|
368
|
+
et as default
|
|
359
369
|
};
|
|
@@ -7,7 +7,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
7
7
|
getRowKey?: (row: Row, index: number) => string | number;
|
|
8
8
|
isSticky?: boolean;
|
|
9
9
|
isLoading?: boolean;
|
|
10
|
-
emptyStateVariant?: "error" | "no-access" | "no-results" | "no-data" | "files"
|
|
10
|
+
emptyStateVariant?: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
11
11
|
emptyStateTitle?: string;
|
|
12
12
|
emptyStateSubtitle?: string;
|
|
13
13
|
loadingRowCount?: number;
|
|
@@ -61,7 +61,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
61
61
|
getRowKey?: (row: Row, index: number) => string | number;
|
|
62
62
|
isSticky?: boolean;
|
|
63
63
|
isLoading?: boolean;
|
|
64
|
-
emptyStateVariant?: "error" | "no-access" | "no-results" | "no-data" | "files"
|
|
64
|
+
emptyStateVariant?: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
65
65
|
emptyStateTitle?: string;
|
|
66
66
|
emptyStateSubtitle?: string;
|
|
67
67
|
loadingRowCount?: number;
|
|
@@ -122,7 +122,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
122
122
|
emptyStateSubtitle: string;
|
|
123
123
|
getRowId: (row: Row, index: number) => unknown;
|
|
124
124
|
getRowKey: (row: Row, index: number) => string | number;
|
|
125
|
-
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files"
|
|
125
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
126
126
|
rowCustomClassKey: string;
|
|
127
127
|
rowDataKey: string;
|
|
128
128
|
totalCount: number;
|