@ironsource/shared-ui 2.1.11-test.92 → 2.1.11-test.99

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 (60) hide show
  1. package/Chart.vue_vue_type_style_index_0_scoped_04b9d6b3_lang.css +1 -0
  2. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_b2684c5f_lang.css +1 -0
  3. package/EditableV4.vue_vue_type_style_index_0_scoped_e0c047b4_lang.css +1 -0
  4. package/IconFlag.vue_vue_type_style_index_0_scoped_7b09cc85_lang.css +1 -0
  5. package/SortableItem.vue_vue_type_style_index_0_scoped_7cb676f1_lang.css +1 -0
  6. package/SortableList.vue_vue_type_style_index_0_scoped_156c01ca_lang.css +1 -0
  7. package/TextField.vue_vue_type_style_index_0_scoped_2e327aa1_lang.css +1 -0
  8. package/TooltipV4.vue_vue_type_style_index_0_scoped_82b46d6d_lang.css +1 -0
  9. package/TooltipV4.vue_vue_type_style_index_1_lang.css +1 -1
  10. package/TreeDropdown.vue_vue_type_style_index_0_scoped_bdfb0aef_lang.css +1 -0
  11. package/Typography.vue_vue_type_style_index_0_scoped_a14013a5_lang.css +1 -0
  12. package/components/chart/Chart.vue.d.ts +0 -5
  13. package/components/chart/Chart.vue.js +3 -3
  14. package/components/chart/Chart.vue2.js +66 -69
  15. package/components/chart/index.d.ts +1 -20
  16. package/components/dropdown/v4/ConditionalDropdown.vue.d.ts +8 -5
  17. package/components/dropdown/v4/ConditionalDropdown.vue.js +2 -2
  18. package/components/dropdown/v4/ConditionalDropdown.vue2.js +89 -88
  19. package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
  20. package/components/dropdown/v4/TreeDropdown.vue2.js +86 -86
  21. package/components/dropdown/v4/index.d.ts +12 -5
  22. package/components/icon/v4/IconFlag.vue.js +3 -3
  23. package/components/icon/v4/IconFlag.vue2.js +1 -1
  24. package/components/input/v4/TextField.vue.js +3 -3
  25. package/components/input/v4/TextField.vue2.js +164 -184
  26. package/components/sortableList/SortableItem.vue.d.ts +0 -5
  27. package/components/sortableList/SortableItem.vue.js +3 -3
  28. package/components/sortableList/SortableItem.vue2.js +65 -80
  29. package/components/sortableList/SortableList.vue.d.ts +0 -16
  30. package/components/sortableList/SortableList.vue.js +3 -3
  31. package/components/sortableList/SortableList.vue2.js +87 -100
  32. package/components/sortableList/index.d.ts +1 -59
  33. package/components/table/v4/DataGrid.vue.d.ts +1 -1
  34. package/components/table/v4/MultipleDataGrid.vue.d.ts +1 -1
  35. package/components/table/v4/index.d.ts +40 -40
  36. package/components/table-cells/common/Editable.common.js +7 -8
  37. package/components/table-cells/common/EditableContext.d.ts +0 -1
  38. package/components/table-cells/v4/EditableV4.vue.d.ts +0 -5
  39. package/components/table-cells/v4/EditableV4.vue.js +3 -3
  40. package/components/table-cells/v4/EditableV4.vue2.js +10 -11
  41. package/components/table-cells/v4/index.d.ts +1 -20
  42. package/components/tooltip/v4/TooltipV4.vue.js +3 -3
  43. package/components/tooltip/v4/TooltipV4.vue2.js +1 -1
  44. package/components/typography/v4/Typography.vue.js +4 -4
  45. package/components/typography/v4/Typography.vue2.js +1 -1
  46. package/index.d.ts +108 -248
  47. package/index.js +1 -1
  48. package/package.json +1 -1
  49. package/testids/index.d.ts +0 -1
  50. package/testids/index.js +13 -13
  51. package/Chart.vue_vue_type_style_index_0_scoped_277fde76_lang.css +0 -1
  52. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_2ba23450_lang.css +0 -1
  53. package/EditableV4.vue_vue_type_style_index_0_scoped_1bbe222a_lang.css +0 -1
  54. package/IconFlag.vue_vue_type_style_index_0_scoped_be9dc7bb_lang.css +0 -1
  55. package/SortableItem.vue_vue_type_style_index_0_scoped_2ca7b24c_lang.css +0 -1
  56. package/SortableList.vue_vue_type_style_index_0_scoped_8f267f88_lang.css +0 -1
  57. package/TextField.vue_vue_type_style_index_0_scoped_fce3948c_lang.css +0 -1
  58. package/TooltipV4.vue_vue_type_style_index_0_scoped_66eab856_lang.css +0 -1
  59. package/TreeDropdown.vue_vue_type_style_index_0_scoped_b883d1fa_lang.css +0 -1
  60. package/Typography.vue_vue_type_style_index_0_scoped_5714d43e_lang.css +0 -1
@@ -6,7 +6,6 @@ declare const EditableTypes: () => ({
6
6
  $props: Partial<{
7
7
  type: "input" | "dropdown";
8
8
  cell: string;
9
- withIcons: boolean;
10
9
  saveOnClickOutside: boolean;
11
10
  validateFunction: (value: unknown) => string | boolean;
12
11
  isLoading: boolean;
@@ -21,10 +20,6 @@ declare const EditableTypes: () => ({
21
20
  type: import("vue").PropType<string>;
22
21
  default: string;
23
22
  };
24
- withIcons: {
25
- type: import("vue").PropType<boolean>;
26
- default: boolean;
27
- };
28
23
  saveOnClickOutside: {
29
24
  type: import("vue").PropType<boolean>;
30
25
  default: boolean;
@@ -49,7 +44,7 @@ declare const EditableTypes: () => ({
49
44
  type: import("vue").PropType<(option: unknown) => unknown>;
50
45
  default: (cell: unknown) => unknown;
51
46
  };
52
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "withIcons" | "saveOnClickOutside" | "validateFunction" | "isLoading" | "displayValue">;
47
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "saveOnClickOutside" | "validateFunction" | "isLoading" | "displayValue">;
53
48
  $attrs: {
54
49
  [x: string]: unknown;
55
50
  };
@@ -73,10 +68,6 @@ declare const EditableTypes: () => ({
73
68
  type: import("vue").PropType<string>;
74
69
  default: string;
75
70
  };
76
- withIcons: {
77
- type: import("vue").PropType<boolean>;
78
- default: boolean;
79
- };
80
71
  saveOnClickOutside: {
81
72
  type: import("vue").PropType<boolean>;
82
73
  default: boolean;
@@ -104,7 +95,6 @@ declare const EditableTypes: () => ({
104
95
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
105
96
  type: "input" | "dropdown";
106
97
  cell: string;
107
- withIcons: boolean;
108
98
  saveOnClickOutside: boolean;
109
99
  validateFunction: (value: unknown) => string | boolean;
110
100
  isLoading: boolean;
@@ -139,10 +129,6 @@ declare const EditableTypes: () => ({
139
129
  type: import("vue").PropType<string>;
140
130
  default: string;
141
131
  };
142
- withIcons: {
143
- type: import("vue").PropType<boolean>;
144
- default: boolean;
145
- };
146
132
  saveOnClickOutside: {
147
133
  type: import("vue").PropType<boolean>;
148
134
  default: boolean;
@@ -181,10 +167,6 @@ declare const EditableTypes: () => ({
181
167
  type: import("vue").PropType<string>;
182
168
  default: string;
183
169
  };
184
- withIcons: {
185
- type: import("vue").PropType<boolean>;
186
- default: boolean;
187
- };
188
170
  saveOnClickOutside: {
189
171
  type: import("vue").PropType<boolean>;
190
172
  default: boolean;
@@ -212,7 +194,6 @@ declare const EditableTypes: () => ({
212
194
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
213
195
  type: "input" | "dropdown";
214
196
  cell: string;
215
- withIcons: boolean;
216
197
  saveOnClickOutside: boolean;
217
198
  validateFunction: (value: unknown) => string | boolean;
218
199
  isLoading: boolean;
@@ -1,8 +1,8 @@
1
1
  import o from "./TooltipV4.vue2.js";
2
- /* empty css *//* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../../TooltipV4.vue_vue_type_style_index_0_scoped_66eab856_lang.css"; //*');
2
+ /* empty css *//* empty css */import _ from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../TooltipV4.vue_vue_type_style_index_0_scoped_82b46d6d_lang.css"; //*');
4
4
  // import "../../../TooltipV4.vue_vue_type_style_index_1_lang.css"; //');
5
- const l = /* @__PURE__ */ e(o, [["__scopeId", "data-v-66eab856"]]);
5
+ const l = /* @__PURE__ */ _(o, [["__scopeId", "data-v-82b46d6d"]]);
6
6
  export {
7
7
  l as default
8
8
  };
@@ -1,4 +1,4 @@
1
- import "../../../TooltipV4.vue_vue_type_style_index_0_scoped_66eab856_lang.css"; import "../../../TooltipV4.vue_vue_type_style_index_1_lang.css"; import { defineComponent as c, openBlock as l, createBlock as d, unref as t, mergeProps as f, withCtx as n, renderSlot as m, createTextVNode as p, toDisplayString as y, createElementVNode as T } from "vue";
1
+ import "../../../TooltipV4.vue_vue_type_style_index_0_scoped_82b46d6d_lang.css"; import "../../../TooltipV4.vue_vue_type_style_index_1_lang.css"; import { defineComponent as c, openBlock as l, createBlock as d, unref as t, mergeProps as f, withCtx as n, renderSlot as m, createTextVNode as p, toDisplayString as y, createElementVNode as T } from "vue";
2
2
  import g from "./TextWithTitleContent.vue.js";
3
3
  import { Tooltip as w } from "floating-vue";
4
4
  import { TooltipTestIdModifiers as i } from "../../../testids/index.js";
@@ -1,7 +1,7 @@
1
1
  import o from "./Typography.vue2.js";
2
- /* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../../Typography.vue_vue_type_style_index_0_scoped_5714d43e_lang.css"; //*');
4
- const t = /* @__PURE__ */ e(o, [["__scopeId", "data-v-5714d43e"]]);
2
+ /* empty css */import p from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../Typography.vue_vue_type_style_index_0_scoped_a14013a5_lang.css"; //*');
4
+ const s = /* @__PURE__ */ p(o, [["__scopeId", "data-v-a14013a5"]]);
5
5
  export {
6
- t as default
6
+ s as default
7
7
  };
@@ -1,4 +1,4 @@
1
- import "../../../Typography.vue_vue_type_style_index_0_scoped_5714d43e_lang.css"; import { defineComponent as v, ref as f, computed as d, openBlock as o, createBlock as i, unref as a, withCtx as s, resolveDynamicComponent as h, normalizeClass as b, renderSlot as p } from "vue";
1
+ import "../../../Typography.vue_vue_type_style_index_0_scoped_a14013a5_lang.css"; import { defineComponent as v, ref as f, computed as d, openBlock as o, createBlock as i, unref as a, withCtx as s, resolveDynamicComponent as h, normalizeClass as b, renderSlot as p } from "vue";
2
2
  import y from "../../tooltip/v4/TooltipV4.vue.js";
3
3
  import { useResizeObserver as T } from "@vueuse/core";
4
4
  const L = /* @__PURE__ */ v({