@ironsource/shared-ui 2.1.12-rc.48 → 2.1.12-rc.49

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.
Files changed (74) hide show
  1. package/ColumnConfigurator.vue_vue_type_style_index_0_scoped_c13770d4_lang.css +1 -0
  2. package/DataGrid.vue_vue_type_style_index_0_scoped_ef67c78e_lang.css +1 -0
  3. package/DataGridContainer.vue_vue_type_style_index_0_scoped_9a30b10c_lang.css +1 -0
  4. package/Link.vue_vue_type_style_index_0_scoped_1a766750_lang.css +1 -0
  5. package/LoaderBars.vue_vue_type_style_index_0_scoped_d976ec65_lang.css +1 -0
  6. package/SectionDropdown.vue_vue_type_style_index_0_scoped_cfad60a8_lang.css +1 -0
  7. package/SectionHeaderText.vue_vue_type_style_index_0_scoped_0b8d3d79_lang.css +1 -0
  8. package/ShowMoreLink.vue_vue_type_style_index_0_scoped_9fc3bc1b_lang.css +1 -0
  9. package/SortableItem.vue_vue_type_style_index_0_scoped_c72be7ed_lang.css +1 -0
  10. package/SortableList.vue_vue_type_style_index_0_scoped_9aec4e9b_lang.css +1 -0
  11. package/SortableSelectableList.vue_vue_type_style_index_0_scoped_40b0a4de_lang.css +1 -0
  12. package/components/columnConfigurator/ColumnConfigurator.types.d.ts +12 -0
  13. package/components/columnConfigurator/ColumnConfigurator.vue.d.ts +61 -0
  14. package/components/columnConfigurator/ColumnConfigurator.vue.js +7 -0
  15. package/components/columnConfigurator/ColumnConfigurator.vue2.js +113 -0
  16. package/components/columnConfigurator/SectionDropdown.vue.d.ts +39 -0
  17. package/components/columnConfigurator/SectionDropdown.vue.js +7 -0
  18. package/components/columnConfigurator/SectionDropdown.vue2.js +57 -0
  19. package/components/columnConfigurator/SectionHeaderText.vue.d.ts +34 -0
  20. package/components/columnConfigurator/SectionHeaderText.vue.js +7 -0
  21. package/components/columnConfigurator/SectionHeaderText.vue2.js +22 -0
  22. package/components/columnConfigurator/ShowMoreLink.vue.d.ts +33 -0
  23. package/components/columnConfigurator/ShowMoreLink.vue.js +7 -0
  24. package/components/columnConfigurator/ShowMoreLink.vue2.js +41 -0
  25. package/components/columnConfigurator/consts.d.ts +1 -0
  26. package/components/columnConfigurator/consts.js +4 -0
  27. package/components/columnConfigurator/index.d.ts +72 -0
  28. package/components/columnConfigurator/index.js +6 -0
  29. package/components/columnConfigurator/mockData.d.ts +30 -0
  30. package/components/columnConfigurator/utils.d.ts +2 -0
  31. package/components/columnConfigurator/utils.js +18 -0
  32. package/components/columnPicker/ColumnPicker.vue.d.ts +1 -1
  33. package/components/columnPicker/index.d.ts +20 -20
  34. package/components/link/Link.vue.d.ts +5 -0
  35. package/components/link/Link.vue.js +3 -3
  36. package/components/link/Link.vue2.js +36 -28
  37. package/components/link/index.d.ts +20 -1
  38. package/components/sortableList/LoaderBars.vue.d.ts +34 -0
  39. package/components/sortableList/LoaderBars.vue.js +7 -0
  40. package/components/sortableList/LoaderBars.vue2.js +25 -0
  41. package/components/sortableList/SortableItem.vue.js +4 -4
  42. package/components/sortableList/SortableItem.vue2.js +3 -3
  43. package/components/sortableList/SortableList.vue.d.ts +2 -2
  44. package/components/sortableList/SortableList.vue.js +5 -5
  45. package/components/sortableList/SortableList.vue2.js +96 -106
  46. package/components/sortableList/SortableSelectableList.vue.d.ts +107 -0
  47. package/components/sortableList/SortableSelectableList.vue.js +7 -0
  48. package/components/sortableList/SortableSelectableList.vue2.js +128 -0
  49. package/components/sortableList/composables/useDraggableHelpers.d.ts +5 -0
  50. package/components/sortableList/composables/useDraggableHelpers.js +20 -0
  51. package/components/sortableList/consts.d.ts +2 -0
  52. package/components/sortableList/consts.js +4 -2
  53. package/components/sortableList/index.d.ts +39 -39
  54. package/components/table/v4/DataGrid.vue.d.ts +4 -3
  55. package/components/table/v4/DataGrid.vue.js +5 -5
  56. package/components/table/v4/DataGrid.vue2.js +349 -331
  57. package/components/table/v4/DataGridContainer.vue.d.ts +10 -0
  58. package/components/table/v4/DataGridContainer.vue.js +7 -0
  59. package/components/table/v4/DataGridContainer.vue2.js +19 -0
  60. package/components/table/v4/DataGridHeader.vue.d.ts +1 -1
  61. package/components/table/v4/MultipleDataGrid.vue.d.ts +2 -2
  62. package/components/table/v4/index.d.ts +104 -103
  63. package/index.d.ts +287 -284
  64. package/index.js +82 -78
  65. package/package.json +5 -1
  66. package/testids/index.d.ts +8 -0
  67. package/testids/index.js +34 -33
  68. package/utils/object.d.ts +2 -0
  69. package/utils/object.js +9 -5
  70. package/utils/search.js +1 -1
  71. package/DataGrid.vue_vue_type_style_index_0_scoped_da7631e0_lang.css +0 -1
  72. package/Link.vue_vue_type_style_index_0_scoped_b10e2439_lang.css +0 -1
  73. package/SortableItem.vue_vue_type_style_index_0_scoped_800cd503_lang.css +0 -1
  74. package/SortableList.vue_vue_type_style_index_0_scoped_84dc8525_lang.css +0 -1
@@ -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" | "appendToBody" | "defaultSelection" | "inlineGroupIds" | "headerText" | "idKey" | "displayKey" | "childrenKey" | "disabledKey" | "minSelectionsTooltipMessage">;
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;
@@ -5,6 +5,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
5
5
  variant?: "button" | "body1" | "body2" | "subtitle1" | "subtitle2";
6
6
  iconName?: string;
7
7
  iconType?: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
8
+ iconPosition?: "end" | "start";
8
9
  testId?: string;
9
10
  isTruncated?: boolean;
10
11
  withTooltip?: boolean;
@@ -17,6 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
17
18
  variant: string;
18
19
  iconName: any;
19
20
  iconType: string;
21
+ iconPosition: string;
20
22
  testId: string;
21
23
  isTruncated: boolean;
22
24
  withTooltip: boolean;
@@ -31,6 +33,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
31
33
  variant?: "button" | "body1" | "body2" | "subtitle1" | "subtitle2";
32
34
  iconName?: string;
33
35
  iconType?: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
36
+ iconPosition?: "end" | "start";
34
37
  testId?: string;
35
38
  isTruncated?: boolean;
36
39
  withTooltip?: boolean;
@@ -43,6 +46,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
43
46
  variant: string;
44
47
  iconName: any;
45
48
  iconType: string;
49
+ iconPosition: string;
46
50
  testId: string;
47
51
  isTruncated: boolean;
48
52
  withTooltip: boolean;
@@ -61,6 +65,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
61
65
  href: string;
62
66
  iconName: string;
63
67
  iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
68
+ iconPosition: "end" | "start";
64
69
  navigateToPage: () => void;
65
70
  }>, {
66
71
  default?(_: {}): any;
@@ -1,7 +1,7 @@
1
1
  import o from "./Link.vue2.js";
2
- /* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../Link.vue_vue_type_style_index_0_scoped_b10e2439_lang.css"; //*');
4
- const p = /* @__PURE__ */ e(o, [["__scopeId", "data-v-b10e2439"]]);
2
+ /* empty css */import _ from "../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../Link.vue_vue_type_style_index_0_scoped_1a766750_lang.css"; //*');
4
+ const p = /* @__PURE__ */ _(o, [["__scopeId", "data-v-1a766750"]]);
5
5
  export {
6
6
  p as default
7
7
  };
@@ -1,10 +1,10 @@
1
- import "../../Link.vue_vue_type_style_index_0_scoped_b10e2439_lang.css"; import { defineComponent as u, openBlock as l, createBlock as n, unref as o, mergeProps as r, withCtx as f, renderSlot as m, createCommentVNode as p } from "vue";
2
- import T from "../typography/v4/Typography.vue.js";
3
- import y from "../icon/v4/IconV4.vue.js";
1
+ import "../../Link.vue_vue_type_style_index_0_scoped_1a766750_lang.css"; import { defineComponent as m, openBlock as n, createBlock as l, unref as t, mergeProps as c, withCtx as y, createCommentVNode as d, renderSlot as T } from "vue";
2
+ import k from "../typography/v4/Typography.vue.js";
3
+ import r from "../icon/v4/IconV4.vue.js";
4
4
  import "../icon/v4/IconFlag.vue.js";
5
- import { useTestIdAttrs as k } from "../../utils/testIds.js";
6
- import { LinkTestIdModifiers as a } from "../../testids/index.js";
7
- const b = /* @__PURE__ */ u({
5
+ import { useTestIdAttrs as p } from "../../utils/testIds.js";
6
+ import { LinkTestIdModifiers as o } from "../../testids/index.js";
7
+ const w = /* @__PURE__ */ m({
8
8
  __name: "Link",
9
9
  props: {
10
10
  href: { default: null },
@@ -13,6 +13,7 @@ const b = /* @__PURE__ */ u({
13
13
  variant: { default: "body1" },
14
14
  iconName: { default: null },
15
15
  iconType: { default: "regular" },
16
+ iconPosition: { default: "end" },
16
17
  testId: { default: "" },
17
18
  isTruncated: { type: Boolean, default: !1 },
18
19
  withTooltip: { type: Boolean, default: !1 },
@@ -20,38 +21,45 @@ const b = /* @__PURE__ */ u({
20
21
  navigateToPage: { type: Function, default: null }
21
22
  },
22
23
  emits: ["click"],
23
- setup(t, { emit: d }) {
24
- const e = t, c = () => {
25
- if (!e.disabled) {
24
+ setup(e, { emit: u }) {
25
+ const i = e, s = () => {
26
+ if (!i.disabled) {
26
27
  {
27
- if (e.navigateToPage)
28
- return e.navigateToPage();
29
- e.href && window.open(e.href);
28
+ if (i.navigateToPage)
29
+ return i.navigateToPage();
30
+ i.href && window.open(i.href);
30
31
  }
31
- d("click");
32
+ u("click");
32
33
  }
33
- }, i = k(e.testId, a);
34
- return (s, h) => (l(), n(o(T), r({
35
- class: ["link", [`link--${t.color}`, { "link--disabled": t.disabled }]],
36
- variant: t.variant,
37
- "is-truncated": t.isTruncated,
38
- "with-tooltip": t.withTooltip,
39
- "tooltip-text": t.tooltipText
40
- }, o(i)[o(a).WRAPPER], { onClick: c }), {
41
- default: f(() => [
42
- m(s.$slots, "default", {}, void 0, !0),
43
- t.iconName ? (l(), n(o(y), r({
34
+ }, a = p(i.testId, o);
35
+ return (f, h) => (n(), l(t(k), c({
36
+ class: ["link", [`link--${e.color}`, { "link--disabled": e.disabled }]],
37
+ variant: e.variant,
38
+ "is-truncated": e.isTruncated,
39
+ "with-tooltip": e.withTooltip,
40
+ "tooltip-text": e.tooltipText
41
+ }, t(a)[t(o).WRAPPER], { onClick: s }), {
42
+ default: y(() => [
43
+ e.iconName && e.iconPosition === "start" ? (n(), l(t(r), c({
44
44
  key: 0,
45
- name: t.iconName,
46
- type: t.iconType,
45
+ name: e.iconName,
46
+ type: e.iconType,
47
47
  size: "16px",
48
48
  class: "icon"
49
- }, o(i)[o(a).ICON]), null, 16, ["name", "type"])) : p("", !0)
49
+ }, t(a)[t(o).ICON]), null, 16, ["name", "type"])) : d("", !0),
50
+ T(f.$slots, "default", {}, void 0, !0),
51
+ e.iconName && e.iconPosition === "end" ? (n(), l(t(r), c({
52
+ key: 1,
53
+ name: e.iconName,
54
+ type: e.iconType,
55
+ size: "16px",
56
+ class: "icon"
57
+ }, t(a)[t(o).ICON]), null, 16, ["name", "type"])) : d("", !0)
50
58
  ]),
51
59
  _: 3
52
60
  }, 16, ["class", "variant", "is-truncated", "with-tooltip", "tooltip-text"]));
53
61
  }
54
62
  });
55
63
  export {
56
- b as default
64
+ w as default
57
65
  };
@@ -13,6 +13,7 @@ declare const LinkTypes: () => ({
13
13
  href: string;
14
14
  iconName: string;
15
15
  iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16
+ iconPosition: "end" | "start";
16
17
  navigateToPage: () => void;
17
18
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
18
19
  testId: {
@@ -55,13 +56,17 @@ declare const LinkTypes: () => ({
55
56
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
56
57
  default: string;
57
58
  };
59
+ iconPosition: {
60
+ type: import("vue").PropType<"end" | "start">;
61
+ default: string;
62
+ };
58
63
  navigateToPage: {
59
64
  type: import("vue").PropType<() => void>;
60
65
  default: any;
61
66
  };
62
67
  }>> & {
63
68
  onClick?: () => any;
64
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "variant" | "withTooltip" | "tooltipText" | "isTruncated" | "disabled" | "color" | "href" | "iconName" | "iconType" | "navigateToPage">;
69
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "variant" | "withTooltip" | "tooltipText" | "isTruncated" | "disabled" | "color" | "href" | "iconName" | "iconType" | "iconPosition" | "navigateToPage">;
65
70
  $attrs: {
66
71
  [x: string]: unknown;
67
72
  };
@@ -116,6 +121,10 @@ declare const LinkTypes: () => ({
116
121
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
117
122
  default: string;
118
123
  };
124
+ iconPosition: {
125
+ type: import("vue").PropType<"end" | "start">;
126
+ default: string;
127
+ };
119
128
  navigateToPage: {
120
129
  type: import("vue").PropType<() => void>;
121
130
  default: any;
@@ -135,6 +144,7 @@ declare const LinkTypes: () => ({
135
144
  href: string;
136
145
  iconName: string;
137
146
  iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
147
+ iconPosition: "end" | "start";
138
148
  navigateToPage: () => void;
139
149
  }, {}, string> & {
140
150
  beforeCreate?: (() => void) | (() => void)[];
@@ -197,6 +207,10 @@ declare const LinkTypes: () => ({
197
207
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
198
208
  default: string;
199
209
  };
210
+ iconPosition: {
211
+ type: import("vue").PropType<"end" | "start">;
212
+ default: string;
213
+ };
200
214
  navigateToPage: {
201
215
  type: import("vue").PropType<() => void>;
202
216
  default: any;
@@ -248,6 +262,10 @@ declare const LinkTypes: () => ({
248
262
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
249
263
  default: string;
250
264
  };
265
+ iconPosition: {
266
+ type: import("vue").PropType<"end" | "start">;
267
+ default: string;
268
+ };
251
269
  navigateToPage: {
252
270
  type: import("vue").PropType<() => void>;
253
271
  default: any;
@@ -267,6 +285,7 @@ declare const LinkTypes: () => ({
267
285
  href: string;
268
286
  iconName: string;
269
287
  iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
288
+ iconPosition: "end" | "start";
270
289
  navigateToPage: () => void;
271
290
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
272
291
  $slots: {
@@ -0,0 +1,34 @@
1
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ loadingRowCount: number;
3
+ variant?: 'default' | 'compact';
4
+ }>, {
5
+ variant: string;
6
+ loadingRowCount: number;
7
+ }>, {}, 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<{
8
+ loadingRowCount: number;
9
+ variant?: 'default' | 'compact';
10
+ }>, {
11
+ variant: string;
12
+ loadingRowCount: number;
13
+ }>>>, {
14
+ variant: 'default' | 'compact';
15
+ loadingRowCount: number;
16
+ }>;
17
+ export default _default;
18
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
19
+ type __VLS_TypePropsToRuntimeProps<T> = {
20
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
21
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
22
+ } : {
23
+ type: import('vue').PropType<T[K]>;
24
+ required: true;
25
+ };
26
+ };
27
+ type __VLS_WithDefaults<P, D> = {
28
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
29
+ default: D[K];
30
+ }> : P[K];
31
+ };
32
+ type __VLS_Prettify<T> = {
33
+ [K in keyof T]: T[K];
34
+ } & {};
@@ -0,0 +1,7 @@
1
+ import o from "./LoaderBars.vue2.js";
2
+ /* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../LoaderBars.vue_vue_type_style_index_0_scoped_d976ec65_lang.css"; //*');
4
+ const t = /* @__PURE__ */ e(o, [["__scopeId", "data-v-d976ec65"]]);
5
+ export {
6
+ t as default
7
+ };
@@ -0,0 +1,25 @@
1
+ import "../../LoaderBars.vue_vue_type_style_index_0_scoped_d976ec65_lang.css"; import { defineComponent as s, computed as d, openBlock as e, createElementBlock as a, normalizeClass as n, unref as o, Fragment as u, renderList as m, createVNode as i } from "vue";
2
+ import p from "../skeleton/v4/SkeletonV4.vue.js";
3
+ const v = /* @__PURE__ */ s({
4
+ __name: "LoaderBars",
5
+ props: {
6
+ loadingRowCount: { default: 3 },
7
+ variant: { default: "default" }
8
+ },
9
+ setup(r) {
10
+ const l = r, t = d(() => l.variant === "compact");
11
+ return (f, C) => (e(), a("div", {
12
+ class: n(["loader-bars", { "loader-bars--compact": o(t) }])
13
+ }, [
14
+ (e(!0), a(u, null, m(r.loadingRowCount, (c) => (e(), a("div", { key: c }, [
15
+ i(o(p), {
16
+ round: "",
17
+ class: n(["loader-bar", { "loader-bar--compact": o(t) }])
18
+ }, null, 8, ["class"])
19
+ ]))), 128))
20
+ ], 2));
21
+ }
22
+ });
23
+ export {
24
+ v as default
25
+ };
@@ -1,7 +1,7 @@
1
- import o from "./SortableItem.vue2.js";
2
- /* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../SortableItem.vue_vue_type_style_index_0_scoped_800cd503_lang.css"; //*');
4
- const c = /* @__PURE__ */ e(o, [["__scopeId", "data-v-800cd503"]]);
1
+ import e from "./SortableItem.vue2.js";
2
+ /* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../SortableItem.vue_vue_type_style_index_0_scoped_c72be7ed_lang.css"; //*');
4
+ const c = /* @__PURE__ */ o(e, [["__scopeId", "data-v-c72be7ed"]]);
5
5
  export {
6
6
  c as default
7
7
  };
@@ -1,4 +1,4 @@
1
- import "../../SortableItem.vue_vue_type_style_index_0_scoped_800cd503_lang.css"; import { defineComponent as P, useCssVars as A, useSlots as E, computed as h, watch as $, ref as I, openBlock as l, createElementBlock as o, normalizeClass as d, unref as e, withModifiers as y, createElementVNode as c, createVNode as b, createBlock as n, withCtx as S, createTextVNode as V, toDisplayString as F, createCommentVNode as u, renderSlot as R, mergeProps as H, normalizeProps as j, Fragment as q, renderList as G } from "vue";
1
+ import "../../SortableItem.vue_vue_type_style_index_0_scoped_c72be7ed_lang.css"; import { defineComponent as P, useCssVars as A, useSlots as E, computed as h, watch as $, ref as I, openBlock as l, createElementBlock as o, normalizeClass as d, unref as e, withModifiers as y, createElementVNode as c, createVNode as b, createBlock as n, withCtx as S, createTextVNode as V, toDisplayString as F, createCommentVNode as u, renderSlot as R, mergeProps as H, normalizeProps as j, Fragment as q, renderList as G } from "vue";
2
2
  import L from "../typography/v4/Typography.vue.js";
3
3
  import f from "../icon/v4/IconV4.vue.js";
4
4
  import w from "../icon/v4/IconFlag.vue.js";
@@ -26,7 +26,7 @@ const X = { class: "item__prefix" }, Y = ["onClick"], Z = ["onClick"], re = /* @
26
26
  setup(t, { emit: g }) {
27
27
  const s = t;
28
28
  A((r) => ({
29
- "41d9b134": t.childListMaxHeight
29
+ "6b8d7a5c": t.childListMaxHeight
30
30
  }));
31
31
  const M = E(), z = () => {
32
32
  g("toggle", !s.isOpen);
@@ -127,7 +127,7 @@ const X = { class: "item__prefix" }, Y = ["onClick"], Z = ["onClick"], re = /* @
127
127
  item: t.item
128
128
  }, null, 8, ["display-value", "item"])
129
129
  ], 2),
130
- e(M).menu ? (l(), o("div", {
130
+ e(M)?.menu ? (l(), o("div", {
131
131
  key: 1,
132
132
  class: "item__menu",
133
133
  onClick: a[0] || (a[0] = y(() => {
@@ -109,13 +109,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
109
109
  childListMaxHeight: string;
110
110
  searchHandler: (item: SortableListItem, searchQuery: string) => boolean;
111
111
  draggableArea: "handle" | "full";
112
+ loadingRowCount: number;
112
113
  openId: string | number;
114
+ zIndexBase: number;
113
115
  selectedId: string | number;
114
116
  showSearch: boolean;
115
- loadingRowCount: number;
116
117
  emptyStateTitle: string;
117
118
  isSticky: boolean;
118
- zIndexBase: number;
119
119
  }>, {
120
120
  header?(_: {}): any;
121
121
  menu?(_: {
@@ -1,7 +1,7 @@
1
- import o from "./SortableList.vue2.js";
2
- /* empty css */import t from "../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../SortableList.vue_vue_type_style_index_0_scoped_84dc8525_lang.css"; //*');
4
- const c = /* @__PURE__ */ t(o, [["__scopeId", "data-v-84dc8525"]]);
1
+ import e from "./SortableList.vue2.js";
2
+ /* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../SortableList.vue_vue_type_style_index_0_scoped_9aec4e9b_lang.css"; //*');
4
+ const a = /* @__PURE__ */ o(e, [["__scopeId", "data-v-9aec4e9b"]]);
5
5
  export {
6
- c as default
6
+ a as default
7
7
  };