@ironsource/shared-ui 2.1.3-rc.10 → 2.1.3-rc.12
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/AppHeader.vue_vue_type_style_index_0_scoped_f9d4e49d_lang.css +1 -0
- package/Autocomplete.vue_vue_type_style_index_0_scoped_e36c9442_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_9b108af3_lang.css +1 -0
- package/FormRow.vue_vue_type_style_index_0_scoped_fc3897fd_lang.css +1 -0
- package/HelpIcon.vue_vue_type_style_index_0_scoped_7a611779_lang.css +1 -0
- package/components/appHeader/AppHeader.vue.js +3 -3
- package/components/appHeader/AppHeader.vue2.js +29 -26
- package/components/autocomplete/Autocomplete.vue.d.ts +117 -0
- package/components/autocomplete/Autocomplete.vue.js +7 -0
- package/components/autocomplete/Autocomplete.vue2.js +84 -0
- package/components/autocomplete/index.d.ts +366 -0
- package/components/autocomplete/index.js +6 -0
- package/components/checkbox/v3/index.d.ts +12 -12
- package/components/checkbox/v4/index.d.ts +12 -12
- package/components/chip/v3/Chip.vue.d.ts +1 -1
- package/components/chip/v3/index.d.ts +20 -20
- package/components/chip/v4/ChipV4.vue.d.ts +1 -1
- package/components/chip/v4/index.d.ts +20 -20
- package/components/dialog/v4/index.d.ts +16 -16
- package/components/dropdown/v3/Dropdown.vue.d.ts +11 -11
- package/components/dropdown/v3/index.d.ts +159 -159
- package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +4 -4
- package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +1 -1
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +7 -7
- package/components/dropdown/v4/DropdownV4.vue.d.ts +13 -13
- package/components/dropdown/v4/index.d.ts +573 -573
- package/components/filterDropdown/index.d.ts +8 -8
- package/components/forms/FormRow.vue.js +2 -2
- package/components/forms/FormRow.vue2.js +9 -9
- package/components/includeExclude/IncludeExclude.vue.d.ts +3 -3
- package/components/includeExclude/IncludeExcludeAppHeader.vue.d.ts +2 -2
- package/components/includeExclude/IncludeExcludeChipFilter.vue.d.ts +3 -3
- package/components/includeExclude/IncludeExcludeDragDrop.vue.d.ts +3 -3
- package/components/includeExclude/index.d.ts +168 -168
- package/components/input/v3/Input.vue.d.ts +3 -3
- package/components/input/v3/index.d.ts +82 -82
- package/components/input/v4/TextField.vue.d.ts +6 -6
- package/components/input/v4/index.d.ts +115 -115
- package/components/table/common/Table.types.d.ts +3 -0
- package/components/table/v4/DataGrid.vue.d.ts +2 -2
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +129 -123
- package/components/table/v4/HelpIcon.vue.d.ts +40 -0
- package/components/table/v4/HelpIcon.vue.js +7 -0
- package/components/table/v4/HelpIcon.vue2.js +32 -0
- package/components/table/v4/index.d.ts +39 -39
- package/components/table-cells/v4/EditableV4.vue.d.ts +1 -1
- package/components/table-cells/v4/index.d.ts +20 -20
- package/components/textArea/v4/TextAreaV4.vue.d.ts +3 -3
- package/components/textArea/v4/index.d.ts +23 -23
- package/components/toggle/v3/Toggle.vue.d.ts +1 -1
- package/components/toggle/v3/index.d.ts +9 -9
- package/components/toggle/v4/ToggleV4.vue.d.ts +1 -1
- package/components/toggle/v4/index.d.ts +28 -28
- package/index.d.ts +1869 -1868
- package/index.js +74 -70
- package/package.json +5 -1
- package/testids/index.d.ts +2 -1
- package/testids/index.js +10 -10
- package/AppHeader.vue_vue_type_style_index_0_scoped_95908b8d_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_4baf9e57_lang.css +0 -1
- package/FormRow.vue_vue_type_style_index_0_scoped_c5265707_lang.css +0 -1
|
@@ -114,14 +114,14 @@ declare const FilterDropdownTypes: () => (({
|
|
|
114
114
|
type: import("vue").PropType<any[]>;
|
|
115
115
|
required: true;
|
|
116
116
|
};
|
|
117
|
-
displayValue: {
|
|
118
|
-
type: import("vue").PropType<(item: unknown) => string>;
|
|
119
|
-
required: true;
|
|
120
|
-
};
|
|
121
117
|
onSearch: {
|
|
122
118
|
type: import("vue").PropType<(item: unknown) => boolean>;
|
|
123
119
|
required: true;
|
|
124
120
|
};
|
|
121
|
+
displayValue: {
|
|
122
|
+
type: import("vue").PropType<(item: unknown) => string>;
|
|
123
|
+
required: true;
|
|
124
|
+
};
|
|
125
125
|
addNewFilter: {
|
|
126
126
|
type: import("vue").PropType<(filter: import("../filtersPanel/v3").Filter) => void>;
|
|
127
127
|
required: true;
|
|
@@ -143,14 +143,14 @@ declare const FilterDropdownTypes: () => (({
|
|
|
143
143
|
type: import("vue").PropType<any[]>;
|
|
144
144
|
required: true;
|
|
145
145
|
};
|
|
146
|
-
displayValue: {
|
|
147
|
-
type: import("vue").PropType<(item: unknown) => string>;
|
|
148
|
-
required: true;
|
|
149
|
-
};
|
|
150
146
|
onSearch: {
|
|
151
147
|
type: import("vue").PropType<(item: unknown) => boolean>;
|
|
152
148
|
required: true;
|
|
153
149
|
};
|
|
150
|
+
displayValue: {
|
|
151
|
+
type: import("vue").PropType<(item: unknown) => string>;
|
|
152
|
+
required: true;
|
|
153
|
+
};
|
|
154
154
|
addNewFilter: {
|
|
155
155
|
type: import("vue").PropType<(filter: import("../filtersPanel/v3").Filter) => void>;
|
|
156
156
|
required: true;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./FormRow.vue2.js";
|
|
2
2
|
/* empty css */import _ from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../FormRow.
|
|
4
|
-
const c = /* @__PURE__ */ _(o, [["__scopeId", "data-v-
|
|
3
|
+
// import "../../FormRow.vue_vue_type_style_index_0_scoped_fc3897fd_lang.css"; //*');
|
|
4
|
+
const c = /* @__PURE__ */ _(o, [["__scopeId", "data-v-fc3897fd"]]);
|
|
5
5
|
export {
|
|
6
6
|
c as default
|
|
7
7
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import "../../FormRow.
|
|
1
|
+
import "../../FormRow.vue_vue_type_style_index_0_scoped_fc3897fd_lang.css"; import { defineComponent as a, openBlock as t, createElementBlock as l, createVNode as n, createCommentVNode as r, createElementVNode as d, renderSlot as c } from "vue";
|
|
2
2
|
import m from "../shared/FieldLabel.vue.js";
|
|
3
3
|
const s = { class: "form-row" }, h = {
|
|
4
4
|
key: 0,
|
|
5
5
|
class: "label-container"
|
|
6
|
-
}, i = { class: "content" }, p = /* @__PURE__ */
|
|
6
|
+
}, i = { class: "content" }, p = /* @__PURE__ */ a({
|
|
7
7
|
__name: "FormRow",
|
|
8
8
|
props: {
|
|
9
9
|
label: { default: "" },
|
|
@@ -13,18 +13,18 @@ const s = { class: "form-row" }, h = {
|
|
|
13
13
|
hoverHelpTextPlacement: { default: "top" }
|
|
14
14
|
},
|
|
15
15
|
setup(e) {
|
|
16
|
-
return (
|
|
16
|
+
return (o, f) => (t(), l("div", s, [
|
|
17
17
|
e.label ? (t(), l("div", h, [
|
|
18
|
-
|
|
18
|
+
n(m, {
|
|
19
19
|
label: e.label,
|
|
20
20
|
mandatory: e.mandatory,
|
|
21
21
|
"hover-help-text": e.hoverHelpText,
|
|
22
22
|
"hover-help-text-placement": e.hoverHelpTextPlacement,
|
|
23
|
-
"
|
|
24
|
-
}, null, 8, ["label", "mandatory", "hover-help-text", "hover-help-text-placement", "
|
|
25
|
-
])) :
|
|
26
|
-
|
|
27
|
-
c(
|
|
23
|
+
"test-id": e.testId
|
|
24
|
+
}, null, 8, ["label", "mandatory", "hover-help-text", "hover-help-text-placement", "test-id"])
|
|
25
|
+
])) : r("", !0),
|
|
26
|
+
d("div", i, [
|
|
27
|
+
c(o.$slots, "default", {}, void 0, !0)
|
|
28
28
|
])
|
|
29
29
|
]));
|
|
30
30
|
}
|
|
@@ -85,12 +85,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
85
85
|
testId: string;
|
|
86
86
|
placement: Placement;
|
|
87
87
|
distance: number;
|
|
88
|
+
autoFocus: boolean;
|
|
88
89
|
hasSubtitle: boolean;
|
|
89
|
-
searchPlaceholder: string;
|
|
90
|
-
isOnTop: boolean;
|
|
91
90
|
defaultOpen: boolean;
|
|
92
|
-
|
|
91
|
+
isOnTop: boolean;
|
|
93
92
|
onSearch: (option: any, term: string) => boolean;
|
|
93
|
+
searchPlaceholder: string;
|
|
94
94
|
titleText: string;
|
|
95
95
|
alwayesOpen: boolean;
|
|
96
96
|
showClearAll: boolean;
|
|
@@ -59,9 +59,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
59
59
|
isLoading: boolean;
|
|
60
60
|
}>>>, {
|
|
61
61
|
searchAttribute: string;
|
|
62
|
-
searchPlaceholder: string;
|
|
63
|
-
showIcon: boolean;
|
|
64
62
|
isLoading: boolean;
|
|
63
|
+
showIcon: boolean;
|
|
64
|
+
searchPlaceholder: string;
|
|
65
65
|
titleText: string;
|
|
66
66
|
distanceOffset: number;
|
|
67
67
|
skiddingOffset: number;
|
|
@@ -82,11 +82,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
82
82
|
"onUpdate:modelValue"?: (val: unknown[]) => any;
|
|
83
83
|
}, {
|
|
84
84
|
searchAttribute: string;
|
|
85
|
-
|
|
86
|
-
clearable: boolean;
|
|
85
|
+
isLoading: boolean;
|
|
87
86
|
showIcon: boolean;
|
|
88
87
|
iconKey: string;
|
|
89
|
-
|
|
88
|
+
searchPlaceholder: string;
|
|
89
|
+
clearable: boolean;
|
|
90
90
|
titleText: string;
|
|
91
91
|
distanceOffset: number;
|
|
92
92
|
skiddingOffset: number;
|
|
@@ -92,12 +92,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
92
92
|
loading: boolean;
|
|
93
93
|
placement: Placement;
|
|
94
94
|
distance: number;
|
|
95
|
+
autoFocus: boolean;
|
|
95
96
|
hasSubtitle: boolean;
|
|
96
|
-
searchPlaceholder: string;
|
|
97
|
-
isOnTop: boolean;
|
|
98
97
|
defaultOpen: boolean;
|
|
99
|
-
|
|
98
|
+
isOnTop: boolean;
|
|
100
99
|
onSearch: (option: any, term: string) => boolean;
|
|
100
|
+
searchPlaceholder: string;
|
|
101
101
|
titleText: string;
|
|
102
102
|
alwayesOpen: boolean;
|
|
103
103
|
showClearAll: boolean;
|