@ironsource/shared-ui 2.1.7-rc.6 → 2.1.7-rc.7

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.
@@ -0,0 +1 @@
1
+ .data-grid-rows-counter[data-v-0ce71f73]{color:var(--text-secondary)}.text-strong[data-v-0ce71f73]{color:var(--text-primary)}
@@ -0,0 +1 @@
1
+ .multi-table-container[data-v-efbbc0bc]{border-radius:var(--border-radius-md);border:1px solid var(--common-divider);display:flex;flex-direction:column;overflow-y:auto;width:100%}.multi-table-container .table-header-container[data-v-efbbc0bc]{align-items:center;background-color:var(--background-paper-elevation-0);display:flex;height:calc(var(--spacing-800) - 2px);justify-content:space-between;padding:var(--spacing-300);width:100%}.multi-table-container .table-header-container.sticky[data-v-efbbc0bc]{position:sticky;top:0;z-index:calc(var(--3e16946e) + 3)}.multi-table-container[data-v-efbbc0bc] table{display:table;border:unset;border-radius:unset}.multi-table-container[data-v-efbbc0bc] thead{border-top:1px solid var(--common-divider)}.multi-table-container .tables-container[data-v-efbbc0bc] thead.sticky{top:62px}
@@ -4,25 +4,30 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
4
4
  displayingText?: string;
5
5
  outOfText?: string;
6
6
  totalText?: string;
7
+ testId?: string;
7
8
  }>, {
8
9
  count: number;
9
10
  totalCount: number;
10
11
  displayingText: string;
11
12
  outOfText: string;
12
13
  totalText: string;
14
+ testId: string;
13
15
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
14
16
  count?: number;
15
17
  totalCount?: number;
16
18
  displayingText?: string;
17
19
  outOfText?: string;
18
20
  totalText?: string;
21
+ testId?: string;
19
22
  }>, {
20
23
  count: number;
21
24
  totalCount: number;
22
25
  displayingText: string;
23
26
  outOfText: string;
24
27
  totalText: string;
28
+ testId: string;
25
29
  }>>>, {
30
+ testId: string;
26
31
  count: number;
27
32
  totalCount: number;
28
33
  displayingText: string;
@@ -1,7 +1,7 @@
1
1
  import o from "./DataGridRowsCounter.vue2.js";
2
- /* empty css */import t from "../../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../../DataGridRowsCounter.vue_vue_type_style_index_0_scoped_06751538_lang.css"; //*');
4
- const r = /* @__PURE__ */ t(o, [["__scopeId", "data-v-06751538"]]);
2
+ /* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../DataGridRowsCounter.vue_vue_type_style_index_0_scoped_0ce71f73_lang.css"; //*');
4
+ const r = /* @__PURE__ */ e(o, [["__scopeId", "data-v-0ce71f73"]]);
5
5
  export {
6
6
  r as default
7
7
  };
@@ -1,45 +1,52 @@
1
- import "../../../DataGridRowsCounter.vue_vue_type_style_index_0_scoped_06751538_lang.css"; import { defineComponent as r, openBlock as i, createElementBlock as d, createVNode as o, unref as n, withCtx as l, createTextVNode as e, toDisplayString as a } from "vue";
2
- import u from "../../typography/v4/Typography.vue.js";
3
- const s = { class: "data-grid-rows-counter" }, m = /* @__PURE__ */ r({
1
+ import "../../../DataGridRowsCounter.vue_vue_type_style_index_0_scoped_0ce71f73_lang.css"; import { defineComponent as l, openBlock as u, createElementBlock as r, unref as e, createVNode as o, withCtx as i, createTextVNode as a, toDisplayString as d } from "vue";
2
+ import s from "../../typography/v4/Typography.vue.js";
3
+ import { RowsCounterTestIdModifiers as n } from "../../../testids/index.js";
4
+ const f = ["data-testid"], C = /* @__PURE__ */ l({
4
5
  __name: "DataGridRowsCounter",
5
6
  props: {
6
7
  count: { default: 0 },
7
8
  totalCount: { default: 0 },
8
9
  displayingText: { default: "Displaying" },
9
10
  outOfText: { default: "out of" },
10
- totalText: { default: "total rows" }
11
+ totalText: { default: "total rows" },
12
+ testId: { default: "" }
11
13
  },
12
14
  setup(t) {
13
- return (c, f) => (i(), d("div", s, [
14
- o(n(u), { variant: "body1" }, {
15
- default: l(() => [
16
- e(a(t.displayingText) + " ", 1),
17
- o(n(u), {
15
+ return (c, T) => (u(), r("div", {
16
+ class: "data-grid-rows-counter",
17
+ "data-testid": `${t.testId}-${e(n).CONTAINER}`
18
+ }, [
19
+ o(e(s), { variant: "body1" }, {
20
+ default: i(() => [
21
+ a(d(t.displayingText) + " ", 1),
22
+ o(e(s), {
18
23
  class: "text-strong",
19
- variant: "subtitle1"
24
+ variant: "subtitle1",
25
+ "data-testid": `${t.testId}-${e(n).COUNT}`
20
26
  }, {
21
- default: l(() => [
22
- e(a(t.count), 1)
27
+ default: i(() => [
28
+ a(d(t.count), 1)
23
29
  ]),
24
30
  _: 1
25
- }),
26
- e(" " + a(t.outOfText) + " ", 1),
27
- o(n(u), {
31
+ }, 8, ["data-testid"]),
32
+ a(" " + d(t.outOfText) + " ", 1),
33
+ o(e(s), {
28
34
  class: "text-strong",
29
- variant: "subtitle1"
35
+ variant: "subtitle1",
36
+ "data-testid": `${t.testId}-${e(n).TOTAL}`
30
37
  }, {
31
- default: l(() => [
32
- e(a(t.totalCount), 1)
38
+ default: i(() => [
39
+ a(d(t.totalCount), 1)
33
40
  ]),
34
41
  _: 1
35
- }),
36
- e(" " + a(t.totalText), 1)
42
+ }, 8, ["data-testid"]),
43
+ a(" " + d(t.totalText), 1)
37
44
  ]),
38
45
  _: 1
39
46
  })
40
- ]));
47
+ ], 8, f));
41
48
  }
42
49
  });
43
50
  export {
44
- m as default
51
+ C as default
45
52
  };
@@ -1,7 +1,7 @@
1
- import o from "./MultipleDataGrid.vue2.js";
2
- /* empty css */import t from "../../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../../MultipleDataGrid.vue_vue_type_style_index_0_scoped_260b9cdc_lang.css"; //*');
4
- const p = /* @__PURE__ */ t(o, [["__scopeId", "data-v-260b9cdc"]]);
1
+ import e from "./MultipleDataGrid.vue2.js";
2
+ /* empty css */import o from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../MultipleDataGrid.vue_vue_type_style_index_0_scoped_efbbc0bc_lang.css"; //*');
4
+ const p = /* @__PURE__ */ o(e, [["__scopeId", "data-v-efbbc0bc"]]);
5
5
  export {
6
6
  p as default
7
7
  };
@@ -1,14 +1,15 @@
1
- import "../../../MultipleDataGrid.vue_vue_type_style_index_0_scoped_260b9cdc_lang.css"; import { defineComponent as T, useCssVars as V, computed as L, openBlock as l, createElementBlock as d, createElementVNode as f, normalizeClass as z, createBlock as c, unref as o, createCommentVNode as m, isRef as p, Fragment as E, renderList as g, createSlots as D, withCtx as N, renderSlot as O } from "vue";
1
+ import "../../../MultipleDataGrid.vue_vue_type_style_index_0_scoped_efbbc0bc_lang.css"; import { defineComponent as L, useCssVars as R, computed as V, openBlock as l, createElementBlock as d, createElementVNode as y, normalizeClass as z, unref as o, createBlock as c, createCommentVNode as m, isRef as E, Fragment as $, renderList as g, createSlots as p, withCtx as D, renderSlot as M } from "vue";
2
2
  import S from "./DataGrid.vue.js";
3
3
  import "./DataGridMenu.vue.js";
4
- import G from "./DataGridRowsCounter.vue.js";
4
+ import N from "./DataGridRowsCounter.vue.js";
5
5
  import "./MultipleDataGrid.vue.js";
6
- import M from "../../search/v4/SearchV4.vue.js";
7
- import { useVModel as P } from "@vueuse/core";
8
- const $ = { class: "rows-counter-container" }, A = {
6
+ import O from "../../search/v4/SearchV4.vue.js";
7
+ import { useVModel as G } from "@vueuse/core";
8
+ import { TableTestIdModifiers as P } from "../../../testids/index.js";
9
+ const A = ["data-testid"], F = {
9
10
  key: 0,
10
11
  class: "tables-container"
11
- }, K = /* @__PURE__ */ T({
12
+ }, X = /* @__PURE__ */ L({
12
13
  __name: "MultipleDataGrid",
13
14
  props: {
14
15
  tablesSettings: { default: () => [] },
@@ -32,37 +33,40 @@ const $ = { class: "rows-counter-container" }, A = {
32
33
  },
33
34
  emits: ["update:search", "onScroll", "onClearSearch", "clickRow"],
34
35
  setup(t, { emit: n }) {
35
- const u = t;
36
- V((e) => ({
37
- "6bca14de": t.zIndexBase
36
+ const r = t;
37
+ R((e) => ({
38
+ "3e16946e": t.zIndexBase
38
39
  }));
39
- const h = L(
40
- () => u.isLoading || !u.tablesSettings.flatMap((e) => e.rows).length
41
- ), r = P(u, "search", n), y = (e) => `cell-${e.id}`, w = (e) => {
40
+ const h = V(
41
+ () => r.isLoading || !r.tablesSettings.flatMap((e) => e.rows).length
42
+ ), u = G(r, "search", n), f = (e) => `cell-${e.id}`, w = (e) => {
42
43
  n("onScroll", e.target.scrollTop);
43
44
  }, k = () => n("onClearSearch"), x = (e, s) => n("clickRow", e, s);
44
45
  return (e, s) => (l(), d("div", {
45
46
  class: "multi-table-container",
46
47
  onScrollPassive: w
47
48
  }, [
48
- f("div", {
49
+ y("div", {
49
50
  class: z(["table-header-container", { sticky: t.isSticky }])
50
51
  }, [
51
- f("div", $, [
52
- t.isLoading ? m("", !0) : (l(), c(o(G), {
52
+ y("div", {
53
+ class: "rows-counter-container",
54
+ "data-testid": `${t.testId}-${o(P).TITLE}`
55
+ }, [
56
+ t.isLoading ? m("", !0) : (l(), c(o(N), {
53
57
  key: 0,
54
58
  count: t.count,
55
59
  "total-count": t.totalCount,
56
60
  "total-text": t.totalText,
57
61
  "displaying-text": t.displayingText,
58
62
  "out-of-text": t.outOfText,
59
- "data-testid": t.testId
60
- }, null, 8, ["count", "total-count", "total-text", "displaying-text", "out-of-text", "data-testid"]))
61
- ]),
62
- t.showSearch ? (l(), c(o(M), {
63
+ testid: t.testId
64
+ }, null, 8, ["count", "total-count", "total-text", "displaying-text", "out-of-text", "testid"]))
65
+ ], 8, A),
66
+ t.showSearch ? (l(), c(o(O), {
63
67
  key: 0,
64
- modelValue: o(r),
65
- "onUpdate:modelValue": s[0] || (s[0] = (a) => p(r) ? r.value = a : null),
68
+ modelValue: o(u),
69
+ "onUpdate:modelValue": s[0] || (s[0] = (a) => E(u) ? u.value = a : null),
66
70
  placeholder: t.searchPlaceholder,
67
71
  "test-id": t.testId,
68
72
  onOnClear: k
@@ -78,8 +82,8 @@ const $ = { class: "rows-counter-container" }, A = {
78
82
  "empty-state-title": t.emptyStateTitle,
79
83
  "empty-state-subtitle": t.emptyStateSubtitle,
80
84
  "loading-row-count": t.loadingRowCount
81
- }, null, 8, ["is-loading", "columns", "test-id", "empty-state-variant", "empty-state-title", "empty-state-subtitle", "loading-row-count"])) : (l(), d("div", A, [
82
- (l(!0), d(E, null, g(t.tablesSettings, (a, C) => (l(), d("div", {
85
+ }, null, 8, ["is-loading", "columns", "test-id", "empty-state-variant", "empty-state-title", "empty-state-subtitle", "loading-row-count"])) : (l(), d("div", F, [
86
+ (l(!0), d($, null, g(t.tablesSettings, (a, C) => (l(), d("div", {
83
87
  key: a.testId,
84
88
  class: "table-wrapper"
85
89
  }, [
@@ -93,22 +97,22 @@ const $ = { class: "rows-counter-container" }, A = {
93
97
  "z-index-base": t.zIndexBase,
94
98
  "test-id": a.testId,
95
99
  onClickRow: (i) => x(i, C)
96
- }, D({ _: 2 }, [
100
+ }, p({ _: 2 }, [
97
101
  g(a.columns, (i) => ({
98
- name: y(i),
99
- fn: N(({
102
+ name: f(i),
103
+ fn: D(({
100
104
  cell: b,
101
- rowIndex: v,
102
- isLoading: B,
103
- cellIndex: I,
104
- row: R
105
+ rowIndex: T,
106
+ isLoading: I,
107
+ cellIndex: v,
108
+ row: B
105
109
  }) => [
106
- O(e.$slots, `${y(i)}`, {
110
+ M(e.$slots, `${f(i)}`, {
107
111
  cell: b,
108
- isLoading: B,
109
- cellIndex: I,
110
- row: R,
111
- rowIndex: v
112
+ isLoading: I,
113
+ cellIndex: v,
114
+ row: B,
115
+ rowIndex: T
112
116
  }, void 0, !0)
113
117
  ])
114
118
  }))
@@ -119,5 +123,5 @@ const $ = { class: "rows-counter-container" }, A = {
119
123
  }
120
124
  });
121
125
  export {
122
- K as default
126
+ X as default
123
127
  };
@@ -686,6 +686,10 @@ declare const DataGridTypes: () => (({
686
686
  rowIndex: number;
687
687
  menuItems: import("../common/Table.types").MenuItem[];
688
688
  }> | import("vue").DefineComponent<{
689
+ testId: {
690
+ type: import("vue").PropType<string>;
691
+ default: string;
692
+ };
689
693
  count: {
690
694
  type: import("vue").PropType<number>;
691
695
  default: number;
@@ -707,6 +711,10 @@ declare const DataGridTypes: () => (({
707
711
  default: string;
708
712
  };
709
713
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
714
+ testId: {
715
+ type: import("vue").PropType<string>;
716
+ default: string;
717
+ };
710
718
  count: {
711
719
  type: import("vue").PropType<number>;
712
720
  default: number;
@@ -728,6 +736,7 @@ declare const DataGridTypes: () => (({
728
736
  default: string;
729
737
  };
730
738
  }>>, {
739
+ testId: string;
731
740
  count: number;
732
741
  totalCount: number;
733
742
  displayingText: string;
package/index.d.ts CHANGED
@@ -5654,6 +5654,10 @@ declare const _default: {
5654
5654
  menuItems: tableV4.MenuItem[];
5655
5655
  }>;
5656
5656
  DataGridRowsCounter: import("vue").DefineComponent<{
5657
+ testId: {
5658
+ type: import("vue").PropType<string>;
5659
+ default: string;
5660
+ };
5657
5661
  count: {
5658
5662
  type: import("vue").PropType<number>;
5659
5663
  default: number;
@@ -5675,6 +5679,10 @@ declare const _default: {
5675
5679
  default: string;
5676
5680
  };
5677
5681
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
5682
+ testId: {
5683
+ type: import("vue").PropType<string>;
5684
+ default: string;
5685
+ };
5678
5686
  count: {
5679
5687
  type: import("vue").PropType<number>;
5680
5688
  default: number;
@@ -5696,6 +5704,7 @@ declare const _default: {
5696
5704
  default: string;
5697
5705
  };
5698
5706
  }>>, {
5707
+ testId: string;
5699
5708
  count: number;
5700
5709
  totalCount: number;
5701
5710
  displayingText: string;
@@ -6386,6 +6395,10 @@ declare const _default: {
6386
6395
  rowIndex: number;
6387
6396
  menuItems: tableV4.MenuItem[];
6388
6397
  }> | import("vue").DefineComponent<{
6398
+ testId: {
6399
+ type: import("vue").PropType<string>;
6400
+ default: string;
6401
+ };
6389
6402
  count: {
6390
6403
  type: import("vue").PropType<number>;
6391
6404
  default: number;
@@ -6407,6 +6420,10 @@ declare const _default: {
6407
6420
  default: string;
6408
6421
  };
6409
6422
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
6423
+ testId: {
6424
+ type: import("vue").PropType<string>;
6425
+ default: string;
6426
+ };
6410
6427
  count: {
6411
6428
  type: import("vue").PropType<number>;
6412
6429
  default: number;
@@ -6428,6 +6445,7 @@ declare const _default: {
6428
6445
  default: string;
6429
6446
  };
6430
6447
  }>>, {
6448
+ testId: string;
6431
6449
  count: number;
6432
6450
  totalCount: number;
6433
6451
  displayingText: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ironsource/shared-ui",
3
- "version": "2.1.7-rc.6",
3
+ "version": "2.1.7-rc.7",
4
4
  "engines": {
5
5
  "npm": ">=7.0.0",
6
6
  "node": ">=16.0.0"
@@ -100,6 +100,11 @@ export declare enum TableTestIdModifiers {
100
100
  BODY_WRAPPER = "tbl-body-wrapper",
101
101
  EMPTY_STATE = "tbl-empty-state"
102
102
  }
103
+ export declare enum RowsCounterTestIdModifiers {
104
+ CONTAINER = "rc-container",
105
+ COUNT = "rc-count",
106
+ TOTAL = "rc-total"
107
+ }
103
108
  export declare enum ToggleTestIdModifiers {
104
109
  WRAPPER = "toggle-wrapper",
105
110
  BODY = "toggle-body",
package/testids/index.js CHANGED
@@ -1,35 +1,36 @@
1
- var a = /* @__PURE__ */ ((E) => (E.TRIGGER = "ie-trigger", E.CONTENT = "ie-content", E.SEARCH = "ie-search", E.LIST = "ie-list", E.LIST_SELECTED = "ie-list-selected", E.ACTION_CANCEL = "ie-action-cancel", E.ACTION_APPLY = "ie-action-apply", E.SELECT_ALL = "ie-select-all", E.CLEAR_ALL = "ie-clear-all", E))(a || {}), R = /* @__PURE__ */ ((E) => (E.TRIGGER = "dd-trigger", E.WRAPPER = "dd-wrapper", E.BUTTON = "dd-button", E.BUTTON_WRAPPER = "dd-button-wrapper", E.BUTTON_CONTENT = "dd-button-content", E.BUTTON_CLEAR = "dd-button-clear", E.LABEL = "dd-label", E.LIST_CONTAINER = "dd-list-container", E.SEARCH = "dd-search", E.TITLE = "dd-title", E.ACTION_CANCEL = "dd-action-cancel", E.ACTION_APPLY = "dd-action-apply", E.ACTION_CLEAR_ALL = "dd-action-clear-all", E.HELPER_TEXT = "dd-helper-text", E.HELPER_TEXT_ERROR = "dd-helper-text-error", E.SELECT_ALL = "dd-select-all", E.NO_RESULT = "dd-no-result", E))(R || {}), t = /* @__PURE__ */ ((E) => (E.WRAPPER = "banner-wrapper", E.CONTENT = "banner-content", E))(t || {}), A = /* @__PURE__ */ ((E) => (E.WRAPPER = "alert-wrapper", E.TITLE = "alert-title", E.MESSAGE = "alert-message", E.ACTION_BUTTON = "alert-action-button", E.CLOSE_BUTTON = "alert-close-button", E))(A || {}), O = /* @__PURE__ */ ((E) => (E.WRAPPER = "dialog-wrapper", E.HEADER = "dialog-header", E.ACTION_CLOSE = "dialog-action-close", E.HEADER_SECONDARY = "dialog-header-secondary", E.CONTENT = "dialog-content", E.ACTION_BUTTONS_WRAPPER = "dialog-action-buttons-wrapper", E.BACKDROP = "dialog-backdrop", E.SAVE_BUTTON = "dialog-save-button", E.CANCEL_BUTTON = "dialog-cancel-button", E))(O || {}), N = /* @__PURE__ */ ((E) => (E.WRAPPER = "input-wrapper", E.TOOLTIP = "input-tooltip", E.MANDATORY = "input-mandatory", E.LABEL_CONTAINER = "input-label-container", E.LABEL_TEXT = "input-label-text", E.FIELD = "input-field", E.EXTRA_TEXT = "input-extra-text", E.TOGGLE_PASSWORD = "input-toggle-password-icon", E))(N || {}), L = /* @__PURE__ */ ((E) => (E.WRAPPER = "cb-wrapper", E.LABEL = "cb-label", E.FIELD = "cb-field", E.CHECKED = "cb-checked", E))(L || {}), P = /* @__PURE__ */ ((E) => (E.FIELD = "radio-field", E.LABEL = "radio-label", E.ERROR_TEXT = "radio-error-text", E.GROUP = "radio-group", E))(P || {}), l = /* @__PURE__ */ ((E) => (E.WRAPPER = "swicth-wrapper", E.BUTTON = "swicth-button", E.TEXT = "swicth-text", E))(l || {}), c = /* @__PURE__ */ ((E) => (E.WRAPPER = "ta-wrapper", E.LABEL = "ta-label", E.FIELD = "ta-field", E.TEXT = "ta-text", E))(c || {}), n = /* @__PURE__ */ ((E) => (E.CONTAINER = "search-container", E.FIELD = "search-field", E.CLOSE = "search-close", E.CLEAR = "search-clear", E))(n || {}), _ = /* @__PURE__ */ ((E) => (E.CONTAINER = "tbl-container", E.TABLE = "tbl-table", E.HEADER = "tbl-header", E.TITLE = "tbl-title", E.HEADER_RIGHT = "tbl-header-right", E.ACTIONS = "tbl-actions", E.SECTIONS = "tbl-sections", E.BODY_WRAPPER = "tbl-body-wrapper", E.EMPTY_STATE = "tbl-empty-state", E))(_ || {}), r = /* @__PURE__ */ ((E) => (E.WRAPPER = "toggle-wrapper", E.BODY = "toggle-body", E.FIELD = "toggle-field", E.TEXT = "toggle-text", E.HELPER_TEXT = "toggle-helper-text", E.ERROR_TEXT = "toggle-error-text", E))(r || {}), C = /* @__PURE__ */ ((E) => (E.TEXT = "tt-text", E.TRIGGER = "tt-trigger", E.HEADER = "tt-header", E))(C || {}), b = /* @__PURE__ */ ((E) => (E.WRAPPER = "at-wrapper", E.TITLE_TEXT = "at-title-text", E.TITLE_TOOLTIP_TEXT = "at-tooltip-text", E.DESCRIPTION_TOOLTIP_TEXT = "at-description-tooltip-text", E.DESCRIPTION_TEXT = "at-description-text", E.TRIGGER_BUTTON = "at-trigger-button", E))(b || {}), p = /* @__PURE__ */ ((E) => (E.WRAPPER = "ai-wrapper", E.SELECTED_OPTION = "ai-selected-option", E.SEARCH_FIELD = "ai-search-field", E))(p || {}), v = /* @__PURE__ */ ((E) => (E.WRAPPER = "chip-wrapper", E.CLEAR = "chip-clear", E))(v || {}), u = /* @__PURE__ */ ((E) => (E.WRAPPER = "dp-wrapper", E.INPUT = "dp-input", E))(u || {}), S = /* @__PURE__ */ ((E) => (E.WRAPPER = "cm-wrapper", E.DAYS_HEADER = "cm-days-header", E.PREVIOUS = "cm-previous", E.NEXT = "cm-next", E.DAYS_WRAPPER = "cm-days-wrapper", E.DAY = "cm-day", E.MONTH_HEADER_TEXT = "cm-month-header-text", E.MONTH_HEADER = "cm-month-header", E))(S || {}), B = /* @__PURE__ */ ((E) => (E.WRAPPER = "dr-wrapper", E.FIELD = "dr-field", E.TRIGGER = "dr-trigger", E.CONTAINER = "dr-container", E.MENU = "dr-menu", E.MESSAGE = "dr-message", E.ACTION_APPLY = "dr-action-apply", E.ACTION_CANCEL = "dr-action-cancel", E))(B || {}), m = /* @__PURE__ */ ((E) => (E.WRAPPER = "tabs-wrapper", E.TAB = "tabs-tab", E))(m || {}), W = /* @__PURE__ */ ((E) => (E.TEXT = "t-text", E))(W || {}), X = /* @__PURE__ */ ((E) => (E.HEADER = "h-header", E))(X || {}), h = /* @__PURE__ */ ((E) => (E.CONTAINER = "field-label-container", E.TEXT = "field-label-text", E.MANDATORY = "field-label-mandatory", E.TOOLTIP = "field-label-help-tooltip", E))(h || {}), U = /* @__PURE__ */ ((E) => (E.CONTAINER = "field-help-text-container", E.TEXT = "field-help-text-text", E.ICON = "field-help-text-icon", E))(U || {}), G = /* @__PURE__ */ ((E) => (E.CONTAINER = "sb-container", E.TITLE = "sb-title", E.MESSAGE = "sb-message", E.CLOSE = "sb-close", E.ICON = "sb-icon", E.ACTION_BUTTON = "sb-action-button", E))(G || {}), T = /* @__PURE__ */ ((E) => (E.TITLE = "foldable-section-title", E.CONTENT = "foldable-section-content", E))(T || {}), H = /* @__PURE__ */ ((E) => (E.TITLE = "form-card-title", E.CONTENT = "form-card-content", E.ACTIONS = "form-card-actions", E.SAVE_BUTTON = "form-card-save-btn", E.CANCEL_BUTTON = "form-card-cancel-btn", E))(H || {}), Y = /* @__PURE__ */ ((E) => (E.TITLE = "ah-title", E.APP_KEY = "ah-app-key", E.APP_PLATFORM = "ah-app-platform", E.AB_ICON = "ah-ab-icon", E))(Y || {}), y = /* @__PURE__ */ ((E) => (E.TEXT = "ic-text", E.COPY_BTN = "ic-copy-btn", E))(y || {}), x = /* @__PURE__ */ ((E) => (E.WRAPPER = "multibar-wrapper", E.CLOSE_BTN = "multibar-close-button", E.MENU = "multibar-menu", E.ACTION = "multibar-action", E))(x || {}), w = /* @__PURE__ */ ((E) => (E.CONTAINER = "sortable-list-container", E.DRAGGABLE_LIST = "sortable-list-draggable-list", E.LOCKED_LIST = "sortable-list-locked-list", E))(w || {});
1
+ var a = /* @__PURE__ */ ((E) => (E.TRIGGER = "ie-trigger", E.CONTENT = "ie-content", E.SEARCH = "ie-search", E.LIST = "ie-list", E.LIST_SELECTED = "ie-list-selected", E.ACTION_CANCEL = "ie-action-cancel", E.ACTION_APPLY = "ie-action-apply", E.SELECT_ALL = "ie-select-all", E.CLEAR_ALL = "ie-clear-all", E))(a || {}), t = /* @__PURE__ */ ((E) => (E.TRIGGER = "dd-trigger", E.WRAPPER = "dd-wrapper", E.BUTTON = "dd-button", E.BUTTON_WRAPPER = "dd-button-wrapper", E.BUTTON_CONTENT = "dd-button-content", E.BUTTON_CLEAR = "dd-button-clear", E.LABEL = "dd-label", E.LIST_CONTAINER = "dd-list-container", E.SEARCH = "dd-search", E.TITLE = "dd-title", E.ACTION_CANCEL = "dd-action-cancel", E.ACTION_APPLY = "dd-action-apply", E.ACTION_CLEAR_ALL = "dd-action-clear-all", E.HELPER_TEXT = "dd-helper-text", E.HELPER_TEXT_ERROR = "dd-helper-text-error", E.SELECT_ALL = "dd-select-all", E.NO_RESULT = "dd-no-result", E))(t || {}), R = /* @__PURE__ */ ((E) => (E.WRAPPER = "banner-wrapper", E.CONTENT = "banner-content", E))(R || {}), A = /* @__PURE__ */ ((E) => (E.WRAPPER = "alert-wrapper", E.TITLE = "alert-title", E.MESSAGE = "alert-message", E.ACTION_BUTTON = "alert-action-button", E.CLOSE_BUTTON = "alert-close-button", E))(A || {}), O = /* @__PURE__ */ ((E) => (E.WRAPPER = "dialog-wrapper", E.HEADER = "dialog-header", E.ACTION_CLOSE = "dialog-action-close", E.HEADER_SECONDARY = "dialog-header-secondary", E.CONTENT = "dialog-content", E.ACTION_BUTTONS_WRAPPER = "dialog-action-buttons-wrapper", E.BACKDROP = "dialog-backdrop", E.SAVE_BUTTON = "dialog-save-button", E.CANCEL_BUTTON = "dialog-cancel-button", E))(O || {}), N = /* @__PURE__ */ ((E) => (E.WRAPPER = "input-wrapper", E.TOOLTIP = "input-tooltip", E.MANDATORY = "input-mandatory", E.LABEL_CONTAINER = "input-label-container", E.LABEL_TEXT = "input-label-text", E.FIELD = "input-field", E.EXTRA_TEXT = "input-extra-text", E.TOGGLE_PASSWORD = "input-toggle-password-icon", E))(N || {}), L = /* @__PURE__ */ ((E) => (E.WRAPPER = "cb-wrapper", E.LABEL = "cb-label", E.FIELD = "cb-field", E.CHECKED = "cb-checked", E))(L || {}), c = /* @__PURE__ */ ((E) => (E.FIELD = "radio-field", E.LABEL = "radio-label", E.ERROR_TEXT = "radio-error-text", E.GROUP = "radio-group", E))(c || {}), l = /* @__PURE__ */ ((E) => (E.WRAPPER = "swicth-wrapper", E.BUTTON = "swicth-button", E.TEXT = "swicth-text", E))(l || {}), P = /* @__PURE__ */ ((E) => (E.WRAPPER = "ta-wrapper", E.LABEL = "ta-label", E.FIELD = "ta-field", E.TEXT = "ta-text", E))(P || {}), n = /* @__PURE__ */ ((E) => (E.CONTAINER = "search-container", E.FIELD = "search-field", E.CLOSE = "search-close", E.CLEAR = "search-clear", E))(n || {}), _ = /* @__PURE__ */ ((E) => (E.CONTAINER = "tbl-container", E.TABLE = "tbl-table", E.HEADER = "tbl-header", E.TITLE = "tbl-title", E.HEADER_RIGHT = "tbl-header-right", E.ACTIONS = "tbl-actions", E.SECTIONS = "tbl-sections", E.BODY_WRAPPER = "tbl-body-wrapper", E.EMPTY_STATE = "tbl-empty-state", E))(_ || {}), r = /* @__PURE__ */ ((E) => (E.CONTAINER = "rc-container", E.COUNT = "rc-count", E.TOTAL = "rc-total", E))(r || {}), C = /* @__PURE__ */ ((E) => (E.WRAPPER = "toggle-wrapper", E.BODY = "toggle-body", E.FIELD = "toggle-field", E.TEXT = "toggle-text", E.HELPER_TEXT = "toggle-helper-text", E.ERROR_TEXT = "toggle-error-text", E))(C || {}), b = /* @__PURE__ */ ((E) => (E.TEXT = "tt-text", E.TRIGGER = "tt-trigger", E.HEADER = "tt-header", E))(b || {}), p = /* @__PURE__ */ ((E) => (E.WRAPPER = "at-wrapper", E.TITLE_TEXT = "at-title-text", E.TITLE_TOOLTIP_TEXT = "at-tooltip-text", E.DESCRIPTION_TOOLTIP_TEXT = "at-description-tooltip-text", E.DESCRIPTION_TEXT = "at-description-text", E.TRIGGER_BUTTON = "at-trigger-button", E))(p || {}), v = /* @__PURE__ */ ((E) => (E.WRAPPER = "ai-wrapper", E.SELECTED_OPTION = "ai-selected-option", E.SEARCH_FIELD = "ai-search-field", E))(v || {}), u = /* @__PURE__ */ ((E) => (E.WRAPPER = "chip-wrapper", E.CLEAR = "chip-clear", E))(u || {}), S = /* @__PURE__ */ ((E) => (E.WRAPPER = "dp-wrapper", E.INPUT = "dp-input", E))(S || {}), B = /* @__PURE__ */ ((E) => (E.WRAPPER = "cm-wrapper", E.DAYS_HEADER = "cm-days-header", E.PREVIOUS = "cm-previous", E.NEXT = "cm-next", E.DAYS_WRAPPER = "cm-days-wrapper", E.DAY = "cm-day", E.MONTH_HEADER_TEXT = "cm-month-header-text", E.MONTH_HEADER = "cm-month-header", E))(B || {}), m = /* @__PURE__ */ ((E) => (E.WRAPPER = "dr-wrapper", E.FIELD = "dr-field", E.TRIGGER = "dr-trigger", E.CONTAINER = "dr-container", E.MENU = "dr-menu", E.MESSAGE = "dr-message", E.ACTION_APPLY = "dr-action-apply", E.ACTION_CANCEL = "dr-action-cancel", E))(m || {}), W = /* @__PURE__ */ ((E) => (E.WRAPPER = "tabs-wrapper", E.TAB = "tabs-tab", E))(W || {}), X = /* @__PURE__ */ ((E) => (E.TEXT = "t-text", E))(X || {}), h = /* @__PURE__ */ ((E) => (E.HEADER = "h-header", E))(h || {}), U = /* @__PURE__ */ ((E) => (E.CONTAINER = "field-label-container", E.TEXT = "field-label-text", E.MANDATORY = "field-label-mandatory", E.TOOLTIP = "field-label-help-tooltip", E))(U || {}), T = /* @__PURE__ */ ((E) => (E.CONTAINER = "field-help-text-container", E.TEXT = "field-help-text-text", E.ICON = "field-help-text-icon", E))(T || {}), G = /* @__PURE__ */ ((E) => (E.CONTAINER = "sb-container", E.TITLE = "sb-title", E.MESSAGE = "sb-message", E.CLOSE = "sb-close", E.ICON = "sb-icon", E.ACTION_BUTTON = "sb-action-button", E))(G || {}), H = /* @__PURE__ */ ((E) => (E.TITLE = "foldable-section-title", E.CONTENT = "foldable-section-content", E))(H || {}), Y = /* @__PURE__ */ ((E) => (E.TITLE = "form-card-title", E.CONTENT = "form-card-content", E.ACTIONS = "form-card-actions", E.SAVE_BUTTON = "form-card-save-btn", E.CANCEL_BUTTON = "form-card-cancel-btn", E))(Y || {}), y = /* @__PURE__ */ ((E) => (E.TITLE = "ah-title", E.APP_KEY = "ah-app-key", E.APP_PLATFORM = "ah-app-platform", E.AB_ICON = "ah-ab-icon", E))(y || {}), x = /* @__PURE__ */ ((E) => (E.TEXT = "ic-text", E.COPY_BTN = "ic-copy-btn", E))(x || {}), g = /* @__PURE__ */ ((E) => (E.WRAPPER = "multibar-wrapper", E.CLOSE_BTN = "multibar-close-button", E.MENU = "multibar-menu", E.ACTION = "multibar-action", E))(g || {}), w = /* @__PURE__ */ ((E) => (E.CONTAINER = "sortable-list-container", E.DRAGGABLE_LIST = "sortable-list-draggable-list", E.LOCKED_LIST = "sortable-list-locked-list", E))(w || {});
2
2
  export {
3
3
  A as AlertTestIdModifiers,
4
- Y as AppHeaderTestIdModifiers,
5
- b as AppTriggerTestIdModifiers,
6
- p as AutocompleteInputTestIdModifiers,
7
- t as BannerTestIdModifiers,
8
- S as CalendarMonthTestIdModifiers,
4
+ y as AppHeaderTestIdModifiers,
5
+ p as AppTriggerTestIdModifiers,
6
+ v as AutocompleteInputTestIdModifiers,
7
+ R as BannerTestIdModifiers,
8
+ B as CalendarMonthTestIdModifiers,
9
9
  L as CheckboxTestIdModifiers,
10
- v as ChipTestIdModifiers,
11
- u as DatePickerTestIdModifiers,
12
- B as DateRangeTestIdModifiers,
10
+ u as ChipTestIdModifiers,
11
+ S as DatePickerTestIdModifiers,
12
+ m as DateRangeTestIdModifiers,
13
13
  O as DialogTestIdModifiers,
14
- R as DropdownTestIdModifiers,
15
- U as FieldHelpTextTestIdModifiers,
16
- h as FieldLabelTestIdModifiers,
17
- T as FoldableSectionTestIdModifiers,
18
- H as FormCardTestIdModifiers,
19
- X as HeaderTestIdModifiers,
14
+ t as DropdownTestIdModifiers,
15
+ T as FieldHelpTextTestIdModifiers,
16
+ U as FieldLabelTestIdModifiers,
17
+ H as FoldableSectionTestIdModifiers,
18
+ Y as FormCardTestIdModifiers,
19
+ h as HeaderTestIdModifiers,
20
20
  a as IncludeExcludeTestIdModifiers,
21
- y as InlineCopyTestIdModifiers,
21
+ x as InlineCopyTestIdModifiers,
22
22
  N as InputTestIdModifiers,
23
- x as MultiBarTestIdModifiers,
24
- P as RadioTestIdModifiers,
23
+ g as MultiBarTestIdModifiers,
24
+ c as RadioTestIdModifiers,
25
+ r as RowsCounterTestIdModifiers,
25
26
  n as SearchTestIdModifiers,
26
27
  G as SnackbarTestIdModifiers,
27
28
  w as SortableListTestIdModifiers,
28
29
  l as SwitchTestIdModifiers,
29
30
  _ as TableTestIdModifiers,
30
- m as TabsTestIdModifiers,
31
- c as TextAreaTestIdModifiers,
32
- W as TextTestIdModifiers,
33
- r as ToggleTestIdModifiers,
34
- C as TooltipTestIdModifiers
31
+ W as TabsTestIdModifiers,
32
+ P as TextAreaTestIdModifiers,
33
+ X as TextTestIdModifiers,
34
+ C as ToggleTestIdModifiers,
35
+ b as TooltipTestIdModifiers
35
36
  };
@@ -1 +0,0 @@
1
- .data-grid-rows-counter[data-v-06751538]{color:var(--text-secondary)}.text-strong[data-v-06751538]{color:var(--text-primary)}
@@ -1 +0,0 @@
1
- .multi-table-container[data-v-260b9cdc]{border-radius:var(--border-radius-md);border:1px solid var(--common-divider);display:flex;flex-direction:column;overflow-y:auto;width:100%}.multi-table-container .table-header-container[data-v-260b9cdc]{align-items:center;background-color:var(--background-paper-elevation-0);display:flex;height:calc(var(--spacing-800) - 2px);justify-content:space-between;padding:var(--spacing-300);width:100%}.multi-table-container .table-header-container.sticky[data-v-260b9cdc]{position:sticky;top:0;z-index:calc(var(--6bca14de) + 3)}.multi-table-container[data-v-260b9cdc] table{display:table;border:unset;border-radius:unset}.multi-table-container[data-v-260b9cdc] thead{border-top:1px solid var(--common-divider)}.multi-table-container .tables-container[data-v-260b9cdc] thead.sticky{top:62px}