@ironsource/shared-ui 2.1.11-rc.49 → 2.1.11-rc.50
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/EditableV4.vue_vue_type_style_index_0_scoped_1bbe222a_lang.css +1 -0
- package/IconFlag.vue_vue_type_style_index_0_scoped_be9dc7bb_lang.css +1 -0
- package/SortableItem.vue_vue_type_style_index_0_scoped_2ca7b24c_lang.css +1 -0
- package/SortableList.vue_vue_type_style_index_0_scoped_8f267f88_lang.css +1 -0
- package/TextField.vue_vue_type_style_index_0_scoped_fce3948c_lang.css +1 -0
- package/TooltipV4.vue_vue_type_style_index_0_scoped_66eab856_lang.css +1 -0
- package/TooltipV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/Typography.vue_vue_type_style_index_0_scoped_5714d43e_lang.css +1 -0
- package/components/icon/v4/IconFlag.vue.js +3 -3
- package/components/icon/v4/IconFlag.vue2.js +1 -1
- package/components/input/v4/TextField.vue.js +3 -3
- package/components/input/v4/TextField.vue2.js +184 -164
- package/components/sortableList/SortableItem.vue.d.ts +5 -0
- package/components/sortableList/SortableItem.vue.js +3 -3
- package/components/sortableList/SortableItem.vue2.js +80 -65
- package/components/sortableList/SortableList.vue.d.ts +16 -0
- package/components/sortableList/SortableList.vue.js +3 -3
- package/components/sortableList/SortableList.vue2.js +100 -87
- package/components/sortableList/index.d.ts +59 -1
- package/components/table/v4/DataGrid.vue.d.ts +1 -1
- package/components/table/v4/MultipleDataGrid.vue.d.ts +1 -1
- package/components/table/v4/index.d.ts +40 -40
- package/components/table-cells/common/Editable.common.js +8 -7
- package/components/table-cells/common/EditableContext.d.ts +1 -0
- package/components/table-cells/v4/EditableV4.vue.d.ts +5 -0
- package/components/table-cells/v4/EditableV4.vue.js +3 -3
- package/components/table-cells/v4/EditableV4.vue2.js +11 -10
- package/components/table-cells/v4/index.d.ts +20 -1
- package/components/tooltip/v4/TooltipV4.vue.js +3 -3
- package/components/tooltip/v4/TooltipV4.vue2.js +1 -1
- package/components/typography/v4/Typography.vue.js +4 -4
- package/components/typography/v4/Typography.vue2.js +1 -1
- package/index.d.ts +238 -84
- package/index.js +1 -1
- package/package.json +1 -1
- package/testids/index.d.ts +1 -0
- package/testids/index.js +13 -13
- package/EditableV4.vue_vue_type_style_index_0_scoped_e0c047b4_lang.css +0 -1
- package/IconFlag.vue_vue_type_style_index_0_scoped_7b09cc85_lang.css +0 -1
- package/SortableItem.vue_vue_type_style_index_0_scoped_7cb676f1_lang.css +0 -1
- package/SortableList.vue_vue_type_style_index_0_scoped_156c01ca_lang.css +0 -1
- package/TextField.vue_vue_type_style_index_0_scoped_2e327aa1_lang.css +0 -1
- package/TooltipV4.vue_vue_type_style_index_0_scoped_82b46d6d_lang.css +0 -1
- package/Typography.vue_vue_type_style_index_0_scoped_a14013a5_lang.css +0 -1
|
@@ -6,6 +6,7 @@ declare const EditableTypes: () => ({
|
|
|
6
6
|
$props: Partial<{
|
|
7
7
|
type: "input" | "dropdown";
|
|
8
8
|
cell: string;
|
|
9
|
+
withIcons: boolean;
|
|
9
10
|
saveOnClickOutside: boolean;
|
|
10
11
|
validateFunction: (value: unknown) => string | boolean;
|
|
11
12
|
isLoading: boolean;
|
|
@@ -20,6 +21,10 @@ declare const EditableTypes: () => ({
|
|
|
20
21
|
type: import("vue").PropType<string>;
|
|
21
22
|
default: string;
|
|
22
23
|
};
|
|
24
|
+
withIcons: {
|
|
25
|
+
type: import("vue").PropType<boolean>;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
23
28
|
saveOnClickOutside: {
|
|
24
29
|
type: import("vue").PropType<boolean>;
|
|
25
30
|
default: boolean;
|
|
@@ -44,7 +49,7 @@ declare const EditableTypes: () => ({
|
|
|
44
49
|
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
45
50
|
default: (cell: unknown) => unknown;
|
|
46
51
|
};
|
|
47
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "saveOnClickOutside" | "validateFunction" | "isLoading" | "displayValue">;
|
|
52
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "withIcons" | "saveOnClickOutside" | "validateFunction" | "isLoading" | "displayValue">;
|
|
48
53
|
$attrs: {
|
|
49
54
|
[x: string]: unknown;
|
|
50
55
|
};
|
|
@@ -68,6 +73,10 @@ declare const EditableTypes: () => ({
|
|
|
68
73
|
type: import("vue").PropType<string>;
|
|
69
74
|
default: string;
|
|
70
75
|
};
|
|
76
|
+
withIcons: {
|
|
77
|
+
type: import("vue").PropType<boolean>;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
71
80
|
saveOnClickOutside: {
|
|
72
81
|
type: import("vue").PropType<boolean>;
|
|
73
82
|
default: boolean;
|
|
@@ -95,6 +104,7 @@ declare const EditableTypes: () => ({
|
|
|
95
104
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
96
105
|
type: "input" | "dropdown";
|
|
97
106
|
cell: string;
|
|
107
|
+
withIcons: boolean;
|
|
98
108
|
saveOnClickOutside: boolean;
|
|
99
109
|
validateFunction: (value: unknown) => string | boolean;
|
|
100
110
|
isLoading: boolean;
|
|
@@ -129,6 +139,10 @@ declare const EditableTypes: () => ({
|
|
|
129
139
|
type: import("vue").PropType<string>;
|
|
130
140
|
default: string;
|
|
131
141
|
};
|
|
142
|
+
withIcons: {
|
|
143
|
+
type: import("vue").PropType<boolean>;
|
|
144
|
+
default: boolean;
|
|
145
|
+
};
|
|
132
146
|
saveOnClickOutside: {
|
|
133
147
|
type: import("vue").PropType<boolean>;
|
|
134
148
|
default: boolean;
|
|
@@ -167,6 +181,10 @@ declare const EditableTypes: () => ({
|
|
|
167
181
|
type: import("vue").PropType<string>;
|
|
168
182
|
default: string;
|
|
169
183
|
};
|
|
184
|
+
withIcons: {
|
|
185
|
+
type: import("vue").PropType<boolean>;
|
|
186
|
+
default: boolean;
|
|
187
|
+
};
|
|
170
188
|
saveOnClickOutside: {
|
|
171
189
|
type: import("vue").PropType<boolean>;
|
|
172
190
|
default: boolean;
|
|
@@ -194,6 +212,7 @@ declare const EditableTypes: () => ({
|
|
|
194
212
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
195
213
|
type: "input" | "dropdown";
|
|
196
214
|
cell: string;
|
|
215
|
+
withIcons: boolean;
|
|
197
216
|
saveOnClickOutside: boolean;
|
|
198
217
|
validateFunction: (value: unknown) => string | boolean;
|
|
199
218
|
isLoading: boolean;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import o from "./TooltipV4.vue2.js";
|
|
2
|
-
/* empty css *//* empty css */import
|
|
3
|
-
// import "../../../TooltipV4.
|
|
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"; //*');
|
|
4
4
|
// import "../../../TooltipV4.vue_vue_type_style_index_1_lang.css"; //');
|
|
5
|
-
const l = /* @__PURE__ */
|
|
5
|
+
const l = /* @__PURE__ */ e(o, [["__scopeId", "data-v-66eab856"]]);
|
|
6
6
|
export {
|
|
7
7
|
l as default
|
|
8
8
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../../../TooltipV4.
|
|
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";
|
|
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
|
|
3
|
-
// import "../../../Typography.
|
|
4
|
-
const
|
|
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"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
t as default
|
|
7
7
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../../../Typography.
|
|
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";
|
|
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({
|