@ironsource/shared-ui 2.1.11 → 2.1.12-rc.1
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/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_ea1c4589_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_3a2aeea3_lang.css +1 -0
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_64ae80dd_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_48ba81e5_lang.css +1 -0
- package/SnackbarV4.vue_vue_type_style_index_0_scoped_1b650c39_lang.css +1 -0
- package/components/dropdown/common/Dropdown.common.js +167 -166
- package/components/dropdown/common/useGroupedOptions.d.ts +1 -0
- package/components/dropdown/common/useGroupedOptions.js +40 -39
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +10 -7
- package/components/dropdown/v4/ConditionalDropdown.vue.js +3 -3
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +8 -8
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue.d.ts +5 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +2 -1
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +30 -0
- package/components/dropdown/v4/index.d.ts +20 -1
- package/components/snackbar/v4/SnackbarV4.vue.js +3 -3
- package/components/snackbar/v4/SnackbarV4.vue2.js +1 -1
- package/index.d.ts +40 -2
- package/index.js +1 -1
- package/package.json +1 -1
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_1aa6df01_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8e026669_lang.css +0 -1
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_73bf9b5b_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_75002075_lang.css +0 -1
- package/SnackbarV4.vue_vue_type_style_index_0_scoped_89fe8aa1_lang.css +0 -1
|
@@ -1,57 +1,58 @@
|
|
|
1
|
-
import { GROUP_OPTION_FLAG as
|
|
2
|
-
const
|
|
3
|
-
const
|
|
1
|
+
import { GROUP_OPTION_FLAG as s } from "./consts.js";
|
|
2
|
+
const f = (u) => {
|
|
3
|
+
const r = (t) => t && !!t[s], i = (t) => t.reduce((e, n) => {
|
|
4
4
|
const { options: o = [], ...l } = n, g = {
|
|
5
5
|
...l,
|
|
6
|
-
[
|
|
6
|
+
[s]: !0
|
|
7
7
|
};
|
|
8
|
-
return [...
|
|
9
|
-
}, []), c = (
|
|
10
|
-
const
|
|
11
|
-
if (
|
|
12
|
-
for (let n = 0; n <
|
|
13
|
-
const o =
|
|
14
|
-
if (
|
|
15
|
-
const l =
|
|
16
|
-
if (
|
|
8
|
+
return [...e, g, ...o];
|
|
9
|
+
}, []), c = (t) => i(t).reduce((n, o) => o[s] ? n : n + 1, 0), h = (t) => {
|
|
10
|
+
const e = u.groupedOptions ? [] : t;
|
|
11
|
+
if (u.groupedOptions)
|
|
12
|
+
for (let n = 0; n < t.length; n++) {
|
|
13
|
+
const o = t[n];
|
|
14
|
+
if (r(o)) {
|
|
15
|
+
const l = t[n + 1];
|
|
16
|
+
if (r(l) || !l)
|
|
17
17
|
continue;
|
|
18
|
-
|
|
18
|
+
e.push(o);
|
|
19
19
|
} else
|
|
20
|
-
|
|
20
|
+
e.push(o);
|
|
21
21
|
}
|
|
22
|
-
return
|
|
23
|
-
},
|
|
24
|
-
const n =
|
|
25
|
-
if (
|
|
26
|
-
|
|
22
|
+
return e;
|
|
23
|
+
}, d = (t, e) => {
|
|
24
|
+
const n = u.options.length;
|
|
25
|
+
if (e.value.length === t.value.length - n) {
|
|
26
|
+
e.value = [];
|
|
27
27
|
return;
|
|
28
28
|
}
|
|
29
|
-
|
|
30
|
-
(o) => !
|
|
29
|
+
e.value = t.value.filter(
|
|
30
|
+
(o) => !r(o)
|
|
31
31
|
);
|
|
32
|
-
},
|
|
33
|
-
(
|
|
32
|
+
}, p = (t) => t.value.reduce(
|
|
33
|
+
(e, n) => e + (r(n) ? 0 : 1),
|
|
34
34
|
0
|
|
35
35
|
);
|
|
36
36
|
return {
|
|
37
|
-
isGroup:
|
|
38
|
-
sortOutGroups:
|
|
39
|
-
flattenAndMarkGroupOptions:
|
|
40
|
-
selectAllWithGroups:
|
|
41
|
-
isIndeterminateGrouped: (
|
|
42
|
-
const n =
|
|
43
|
-
return
|
|
37
|
+
isGroup: r,
|
|
38
|
+
sortOutGroups: h,
|
|
39
|
+
flattenAndMarkGroupOptions: i,
|
|
40
|
+
selectAllWithGroups: d,
|
|
41
|
+
isIndeterminateGrouped: (t, e) => {
|
|
42
|
+
const n = p(t);
|
|
43
|
+
return e.value.length > 0 && e.value.length < n;
|
|
44
44
|
},
|
|
45
|
-
allSelectedGrouped: (
|
|
46
|
-
const n =
|
|
47
|
-
return
|
|
45
|
+
allSelectedGrouped: (t, e) => {
|
|
46
|
+
const n = p(t);
|
|
47
|
+
return e.value.length === n;
|
|
48
48
|
},
|
|
49
|
-
areAllPreviousSelected: (
|
|
50
|
-
const n =
|
|
51
|
-
return
|
|
52
|
-
}
|
|
49
|
+
areAllPreviousSelected: (t, e) => {
|
|
50
|
+
const n = u.options.length;
|
|
51
|
+
return t.value.length - n === e.value.length;
|
|
52
|
+
},
|
|
53
|
+
groupedChildOptionsLength: c
|
|
53
54
|
};
|
|
54
55
|
};
|
|
55
56
|
export {
|
|
56
|
-
|
|
57
|
+
f as useGroupedOptions
|
|
57
58
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./ButtonFilterDropdownTrigger.vue2.js";
|
|
2
|
-
/* empty css */import
|
|
3
|
-
// import "../../../ButtonFilterDropdownTrigger.
|
|
4
|
-
const p = /* @__PURE__ */
|
|
2
|
+
/* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../../ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_ea1c4589_lang.css"; //*');
|
|
4
|
+
const p = /* @__PURE__ */ e(o, [["__scopeId", "data-v-ea1c4589"]]);
|
|
5
5
|
export {
|
|
6
6
|
p as default
|
|
7
7
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import "../../../ButtonFilterDropdownTrigger.
|
|
1
|
+
import "../../../ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_ea1c4589_lang.css"; import { defineComponent as m, openBlock as o, createElementBlock as u, mergeProps as l, unref as t, createBlock as d, createCommentVNode as i, createVNode as f, withCtx as p, createTextVNode as I, toDisplayString as T } from "vue";
|
|
2
2
|
import y from "../../typography/v4/Typography.vue.js";
|
|
3
3
|
import s from "../../icon/v4/IconV4.vue.js";
|
|
4
4
|
import "../../icon/v4/IconFlag.vue.js";
|
|
5
5
|
import { useTestIdAttrs as N } from "../../../utils/testIds.js";
|
|
6
|
-
import { DropdownTestIdModifiers as
|
|
7
|
-
const
|
|
6
|
+
import { DropdownTestIdModifiers as a } from "../../../testids/index.js";
|
|
7
|
+
const E = /* @__PURE__ */ m({
|
|
8
8
|
__name: "ButtonFilterDropdownTrigger",
|
|
9
9
|
props: {
|
|
10
10
|
label: null,
|
|
@@ -18,10 +18,10 @@ const h = /* @__PURE__ */ m({
|
|
|
18
18
|
},
|
|
19
19
|
emits: ["click"],
|
|
20
20
|
setup(e, { emit: c }) {
|
|
21
|
-
const
|
|
21
|
+
const n = N(e.testId, a);
|
|
22
22
|
return (g, r) => (o(), u("div", l({
|
|
23
23
|
class: ["button-filter-dropdown-trigger", [e.variant, { disabled: e.disabled, open: e.open }]]
|
|
24
|
-
}, t(
|
|
24
|
+
}, t(n)[t(a).BUTTON], {
|
|
25
25
|
onClick: r[0] || (r[0] = (k) => c("click"))
|
|
26
26
|
}), [
|
|
27
27
|
e.startIconName ? (o(), d(t(s), {
|
|
@@ -31,7 +31,10 @@ const h = /* @__PURE__ */ m({
|
|
|
31
31
|
size: "16px",
|
|
32
32
|
class: "start-icon"
|
|
33
33
|
}, null, 8, ["name", "type"])) : i("", !0),
|
|
34
|
-
f(t(y), l({
|
|
34
|
+
f(t(y), l({
|
|
35
|
+
variant: "chipLabel",
|
|
36
|
+
class: "content"
|
|
37
|
+
}, t(n)[t(a).BUTTON_CONTENT]), {
|
|
35
38
|
default: p(() => [
|
|
36
39
|
I(T(e.label), 1)
|
|
37
40
|
]),
|
|
@@ -47,5 +50,5 @@ const h = /* @__PURE__ */ m({
|
|
|
47
50
|
}
|
|
48
51
|
});
|
|
49
52
|
export {
|
|
50
|
-
|
|
53
|
+
E as default
|
|
51
54
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./ConditionalDropdown.vue2.js";
|
|
2
2
|
/* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../../ConditionalDropdown.
|
|
4
|
-
const
|
|
3
|
+
// import "../../../ConditionalDropdown.vue_vue_type_style_index_0_scoped_3a2aeea3_lang.css"; //*');
|
|
4
|
+
const p = /* @__PURE__ */ e(o, [["__scopeId", "data-v-3a2aeea3"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
p as default
|
|
7
7
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import "../../../ConditionalDropdown.
|
|
2
|
-
import
|
|
1
|
+
import "../../../ConditionalDropdown.vue_vue_type_style_index_0_scoped_3a2aeea3_lang.css"; import { defineComponent as W, computed as O, ref as s, watch as K, onMounted as q, openBlock as D, createBlock as G, unref as d, withCtx as f, createVNode as g, mergeProps as H, createElementVNode as J, isRef as X, normalizeProps as Y, guardReactiveProps as Z, createElementBlock as _, createTextVNode as ee, toDisplayString as le, createCommentVNode as oe } from "vue";
|
|
2
|
+
import F from "./DropdownV4.vue.js";
|
|
3
3
|
import "./DefaultDropdownTrigger.vue.js";
|
|
4
4
|
import "./IconButtonDropdownTrigger.vue.js";
|
|
5
5
|
import ae from "./ChipDropdownTrigger.vue.js";
|
|
6
6
|
import "./AppDropdownTrigger.vue.js";
|
|
7
|
-
import
|
|
8
|
-
import "./ButtonFilterDropdownTrigger.vue.js";
|
|
7
|
+
import "./ButtonDropdownTrigger.vue.js";
|
|
8
|
+
import te from "./ButtonFilterDropdownTrigger.vue.js";
|
|
9
9
|
import "./TreeDropdown.vue.js";
|
|
10
10
|
import "./OptionV4.vue.js";
|
|
11
11
|
import "./ConditionalDropdown.vue.js";
|
|
@@ -52,10 +52,10 @@ const re = { class: "conditional-container" }, se = {
|
|
|
52
52
|
set: (l) => {
|
|
53
53
|
h("update:selectedCondition", l);
|
|
54
54
|
}
|
|
55
|
-
}),
|
|
55
|
+
}), L = () => {
|
|
56
56
|
const { appliedSelections: l } = e;
|
|
57
57
|
return l ? Array.isArray(l) ? l : [l] : [];
|
|
58
|
-
}, w = s(null), c = s(!0), a = s([]), n = s(
|
|
58
|
+
}, w = s(null), c = s(!0), a = s([]), n = s(L()), T = s(!0), p = s(!1), C = s(!1), u = s(e.searchQuery), B = s(""), m = s(e.label), k = s([]), U = O(() => (!u.value || u.value?.length < e.minCharsToStart) && !a.value.length ? `Enter at least ${e.minCharsToStart} characters to begin` : "No results found"), I = O(() => {
|
|
59
59
|
const l = c.value ? 4 : 4.5, t = a.value.length > 4 ? a.value.length : l;
|
|
60
60
|
if (e.groupedOptions) {
|
|
61
61
|
let o = 0;
|
|
@@ -154,7 +154,7 @@ const re = { class: "conditional-container" }, se = {
|
|
|
154
154
|
const $ = () => {
|
|
155
155
|
h("closed");
|
|
156
156
|
};
|
|
157
|
-
return (l, t) => (D(), G(d(
|
|
157
|
+
return (l, t) => (D(), G(d(F), {
|
|
158
158
|
ref_key: "dropdownRef",
|
|
159
159
|
ref: w,
|
|
160
160
|
selected: n.value,
|
|
@@ -200,7 +200,7 @@ const re = { class: "conditional-container" }, se = {
|
|
|
200
200
|
]),
|
|
201
201
|
"dropdown-conditions": f(() => [
|
|
202
202
|
J("div", re, [
|
|
203
|
-
g(d(
|
|
203
|
+
g(d(F), {
|
|
204
204
|
selected: d(i),
|
|
205
205
|
"onUpdate:selected": t[0] || (t[0] = (o) => X(i) ? i.value = o : null),
|
|
206
206
|
options: r.conditionalOptions,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./DefaultDropdownTrigger.vue2.js";
|
|
2
2
|
/* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../../DefaultDropdownTrigger.
|
|
4
|
-
const
|
|
3
|
+
// import "../../../DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_64ae80dd_lang.css"; //*');
|
|
4
|
+
const d = /* @__PURE__ */ e(o, [["__scopeId", "data-v-64ae80dd"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
d as default
|
|
7
7
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../../../DefaultDropdownTrigger.
|
|
1
|
+
import "../../../DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_64ae80dd_lang.css"; import { defineComponent as I, computed as u, openBlock as a, createElementBlock as d, createBlock as m, createCommentVNode as n, createElementVNode as c, mergeProps as h, unref as l, renderSlot as i, createVNode as r, withCtx as O, createTextVNode as B, toDisplayString as $ } from "vue";
|
|
2
2
|
import w from "../../typography/v4/Typography.vue.js";
|
|
3
3
|
import { DropdownTestIdModifiers as f } from "../../../testids/index.js";
|
|
4
4
|
import g from "../../icon/v4/IconV4.vue.js";
|
|
@@ -92,8 +92,8 @@ const N = { class: "default-dropdown-wrapper" }, S = { class: "content" }, x = {
|
|
|
92
92
|
i(o.$slots, "flag", {}, () => [
|
|
93
93
|
t.optionFlagKey ? (a(), m(l(K), {
|
|
94
94
|
key: 0,
|
|
95
|
-
|
|
96
|
-
}, null, 8, ["
|
|
95
|
+
"country-code": l(s)[t.optionFlagKey]
|
|
96
|
+
}, null, 8, ["country-code"])) : n("", !0)
|
|
97
97
|
], !0)
|
|
98
98
|
])) : n("", !0),
|
|
99
99
|
o.$slots["icon-start"] || l(s) && t.optionIconKey ? (a(), d("div", P, [
|
|
@@ -17,6 +17,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
17
17
|
keepOpen?: boolean;
|
|
18
18
|
autoSize?: boolean;
|
|
19
19
|
disableKeyboardEvents?: boolean;
|
|
20
|
+
dynamicFilterMode?: boolean;
|
|
20
21
|
isOnTop?: boolean;
|
|
21
22
|
distance?: number;
|
|
22
23
|
container?: string;
|
|
@@ -89,6 +90,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
89
90
|
disableKeyboardEvents: boolean;
|
|
90
91
|
testId: string;
|
|
91
92
|
showSelectAll: boolean;
|
|
93
|
+
dynamicFilterMode: boolean;
|
|
92
94
|
triggerLabel: string;
|
|
93
95
|
triggerHelperText: string;
|
|
94
96
|
triggerFeedbackText: string;
|
|
@@ -153,6 +155,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
153
155
|
keepOpen?: boolean;
|
|
154
156
|
autoSize?: boolean;
|
|
155
157
|
disableKeyboardEvents?: boolean;
|
|
158
|
+
dynamicFilterMode?: boolean;
|
|
156
159
|
isOnTop?: boolean;
|
|
157
160
|
distance?: number;
|
|
158
161
|
container?: string;
|
|
@@ -225,6 +228,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
225
228
|
disableKeyboardEvents: boolean;
|
|
226
229
|
testId: string;
|
|
227
230
|
showSelectAll: boolean;
|
|
231
|
+
dynamicFilterMode: boolean;
|
|
228
232
|
triggerLabel: string;
|
|
229
233
|
triggerHelperText: string;
|
|
230
234
|
triggerFeedbackText: string;
|
|
@@ -291,6 +295,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
291
295
|
keepOpen: boolean;
|
|
292
296
|
autoSize: boolean;
|
|
293
297
|
disableKeyboardEvents: boolean;
|
|
298
|
+
dynamicFilterMode: boolean;
|
|
294
299
|
isOnTop: boolean;
|
|
295
300
|
triggerLabel: string;
|
|
296
301
|
triggerHelperText: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import o from "./DropdownV4.vue2.js";
|
|
2
|
-
/* empty css *//* empty css */import
|
|
3
|
-
// import "../../../DropdownV4.
|
|
2
|
+
/* empty css *//* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../../DropdownV4.vue_vue_type_style_index_0_scoped_48ba81e5_lang.css"; //*');
|
|
4
4
|
// import "../../../DropdownV4.vue_vue_type_style_index_1_lang.css"; //');
|
|
5
|
-
const r = /* @__PURE__ */
|
|
5
|
+
const r = /* @__PURE__ */ e(o, [["__scopeId", "data-v-48ba81e5"]]);
|
|
6
6
|
export {
|
|
7
7
|
r as default
|
|
8
8
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../../../DropdownV4.
|
|
1
|
+
import "../../../DropdownV4.vue_vue_type_style_index_0_scoped_48ba81e5_lang.css"; import "../../../DropdownV4.vue_vue_type_style_index_1_lang.css"; import { defineComponent as fe, computed as U, openBlock as n, createElementBlock as r, mergeProps as y, unref as t, renderSlot as f, createElementVNode as m, createVNode as i, withCtx as u, Transition as me, normalizeClass as O, normalizeStyle as pe, createTextVNode as T, createCommentVNode as a, isRef as ge, toDisplayString as G, withModifiers as W, Fragment as Te, renderList as ke, toRaw as C, createBlock as X, resolveDynamicComponent as he } from "vue";
|
|
2
2
|
import L from "../../button/v4/ButtonV4.vue.js";
|
|
3
3
|
import "../../button/v4/IconButtonV4.vue.js";
|
|
4
4
|
import "../../button/v4/ButtonGroup.vue.js";
|
|
@@ -56,6 +56,7 @@ const Be = ["tabindex"], Fe = { style: { width: "100%" } }, Ne = { key: 0 }, Ve
|
|
|
56
56
|
keepOpen: { type: Boolean, default: !1 },
|
|
57
57
|
autoSize: { type: Boolean, default: !1 },
|
|
58
58
|
disableKeyboardEvents: { type: Boolean, default: !1 },
|
|
59
|
+
dynamicFilterMode: { type: Boolean, default: !1 },
|
|
59
60
|
isOnTop: { type: Boolean, default: !1 },
|
|
60
61
|
distance: { default: 0 },
|
|
61
62
|
container: { default: "body" },
|
|
@@ -54,36 +54,66 @@ export declare const dropDownStoryArgs: {
|
|
|
54
54
|
control: {
|
|
55
55
|
type: string;
|
|
56
56
|
};
|
|
57
|
+
table: {
|
|
58
|
+
category: string;
|
|
59
|
+
};
|
|
57
60
|
};
|
|
58
61
|
placeholder: {
|
|
59
62
|
control: {
|
|
60
63
|
type: string;
|
|
61
64
|
};
|
|
65
|
+
table: {
|
|
66
|
+
category: string;
|
|
67
|
+
};
|
|
62
68
|
};
|
|
63
69
|
disabled: {
|
|
64
70
|
control: {
|
|
65
71
|
type: string;
|
|
66
72
|
};
|
|
73
|
+
table: {
|
|
74
|
+
category: string;
|
|
75
|
+
};
|
|
67
76
|
};
|
|
68
77
|
mandatory: {
|
|
69
78
|
control: {
|
|
70
79
|
type: string;
|
|
71
80
|
};
|
|
81
|
+
table: {
|
|
82
|
+
category: string;
|
|
83
|
+
};
|
|
72
84
|
};
|
|
73
85
|
loading: {
|
|
74
86
|
control: {
|
|
75
87
|
type: string;
|
|
76
88
|
};
|
|
89
|
+
table: {
|
|
90
|
+
category: string;
|
|
91
|
+
};
|
|
77
92
|
};
|
|
78
93
|
testId: {
|
|
79
94
|
control: {
|
|
80
95
|
type: string;
|
|
81
96
|
};
|
|
97
|
+
table: {
|
|
98
|
+
category: string;
|
|
99
|
+
};
|
|
82
100
|
};
|
|
83
101
|
isOpen: {
|
|
84
102
|
control: {
|
|
85
103
|
type: string;
|
|
86
104
|
};
|
|
105
|
+
table: {
|
|
106
|
+
category: string;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
dynamicFilterMode: {
|
|
110
|
+
control: {
|
|
111
|
+
type: string;
|
|
112
|
+
};
|
|
113
|
+
table: {
|
|
114
|
+
category: string;
|
|
115
|
+
};
|
|
116
|
+
description: string;
|
|
87
117
|
};
|
|
88
118
|
isOnTop: {
|
|
89
119
|
control: {
|
|
@@ -1736,6 +1736,7 @@ declare const DropdownTypes: () => (({
|
|
|
1736
1736
|
keepOpen: boolean;
|
|
1737
1737
|
autoSize: boolean;
|
|
1738
1738
|
disableKeyboardEvents: boolean;
|
|
1739
|
+
dynamicFilterMode: boolean;
|
|
1739
1740
|
isOnTop: boolean;
|
|
1740
1741
|
triggerLabel: string;
|
|
1741
1742
|
triggerHelperText: string;
|
|
@@ -1872,6 +1873,10 @@ declare const DropdownTypes: () => (({
|
|
|
1872
1873
|
type: import("vue").PropType<boolean>;
|
|
1873
1874
|
default: boolean;
|
|
1874
1875
|
};
|
|
1876
|
+
dynamicFilterMode: {
|
|
1877
|
+
type: import("vue").PropType<boolean>;
|
|
1878
|
+
default: boolean;
|
|
1879
|
+
};
|
|
1875
1880
|
isOnTop: {
|
|
1876
1881
|
type: import("vue").PropType<boolean>;
|
|
1877
1882
|
default: boolean;
|
|
@@ -2025,7 +2030,7 @@ declare const DropdownTypes: () => (({
|
|
|
2025
2030
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
2026
2031
|
onOpened?: () => any;
|
|
2027
2032
|
onClosed?: () => any;
|
|
2028
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
2033
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
2029
2034
|
$attrs: {
|
|
2030
2035
|
[x: string]: unknown;
|
|
2031
2036
|
};
|
|
@@ -2141,6 +2146,10 @@ declare const DropdownTypes: () => (({
|
|
|
2141
2146
|
type: import("vue").PropType<boolean>;
|
|
2142
2147
|
default: boolean;
|
|
2143
2148
|
};
|
|
2149
|
+
dynamicFilterMode: {
|
|
2150
|
+
type: import("vue").PropType<boolean>;
|
|
2151
|
+
default: boolean;
|
|
2152
|
+
};
|
|
2144
2153
|
isOnTop: {
|
|
2145
2154
|
type: import("vue").PropType<boolean>;
|
|
2146
2155
|
default: boolean;
|
|
@@ -2333,6 +2342,7 @@ declare const DropdownTypes: () => (({
|
|
|
2333
2342
|
keepOpen: boolean;
|
|
2334
2343
|
autoSize: boolean;
|
|
2335
2344
|
disableKeyboardEvents: boolean;
|
|
2345
|
+
dynamicFilterMode: boolean;
|
|
2336
2346
|
isOnTop: boolean;
|
|
2337
2347
|
triggerLabel: string;
|
|
2338
2348
|
triggerHelperText: string;
|
|
@@ -2489,6 +2499,10 @@ declare const DropdownTypes: () => (({
|
|
|
2489
2499
|
type: import("vue").PropType<boolean>;
|
|
2490
2500
|
default: boolean;
|
|
2491
2501
|
};
|
|
2502
|
+
dynamicFilterMode: {
|
|
2503
|
+
type: import("vue").PropType<boolean>;
|
|
2504
|
+
default: boolean;
|
|
2505
|
+
};
|
|
2492
2506
|
isOnTop: {
|
|
2493
2507
|
type: import("vue").PropType<boolean>;
|
|
2494
2508
|
default: boolean;
|
|
@@ -2751,6 +2765,10 @@ declare const DropdownTypes: () => (({
|
|
|
2751
2765
|
type: import("vue").PropType<boolean>;
|
|
2752
2766
|
default: boolean;
|
|
2753
2767
|
};
|
|
2768
|
+
dynamicFilterMode: {
|
|
2769
|
+
type: import("vue").PropType<boolean>;
|
|
2770
|
+
default: boolean;
|
|
2771
|
+
};
|
|
2754
2772
|
isOnTop: {
|
|
2755
2773
|
type: import("vue").PropType<boolean>;
|
|
2756
2774
|
default: boolean;
|
|
@@ -2943,6 +2961,7 @@ declare const DropdownTypes: () => (({
|
|
|
2943
2961
|
keepOpen: boolean;
|
|
2944
2962
|
autoSize: boolean;
|
|
2945
2963
|
disableKeyboardEvents: boolean;
|
|
2964
|
+
dynamicFilterMode: boolean;
|
|
2946
2965
|
isOnTop: boolean;
|
|
2947
2966
|
triggerLabel: string;
|
|
2948
2967
|
triggerHelperText: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./SnackbarV4.vue2.js";
|
|
2
|
-
/* empty css */import
|
|
3
|
-
// import "../../../SnackbarV4.
|
|
4
|
-
const r = /* @__PURE__ */
|
|
2
|
+
/* empty css */import _ from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../../SnackbarV4.vue_vue_type_style_index_0_scoped_1b650c39_lang.css"; //*');
|
|
4
|
+
const r = /* @__PURE__ */ _(o, [["__scopeId", "data-v-1b650c39"]]);
|
|
5
5
|
export {
|
|
6
6
|
r as default
|
|
7
7
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../../../SnackbarV4.
|
|
1
|
+
import "../../../SnackbarV4.vue_vue_type_style_index_0_scoped_1b650c39_lang.css"; import { defineComponent as $, computed as A, openBlock as n, createBlock as d, Transition as O, withCtx as f, withDirectives as I, createElementVNode as a, mergeProps as l, unref as t, createVNode as z, createTextVNode as T, toDisplayString as h, createCommentVNode as u, renderSlot as B, vShow as N, createElementBlock as S, Fragment as V, renderList as x, withModifiers as U } from "vue";
|
|
2
2
|
import D from "../../icon/v4/IconV4.vue.js";
|
|
3
3
|
import "../../icon/v4/IconFlag.vue.js";
|
|
4
4
|
import H from "../../button/v4/ButtonV4.vue.js";
|
package/index.d.ts
CHANGED
|
@@ -16300,6 +16300,7 @@ declare const _default: {
|
|
|
16300
16300
|
keepOpen: boolean;
|
|
16301
16301
|
autoSize: boolean;
|
|
16302
16302
|
disableKeyboardEvents: boolean;
|
|
16303
|
+
dynamicFilterMode: boolean;
|
|
16303
16304
|
isOnTop: boolean;
|
|
16304
16305
|
triggerLabel: string;
|
|
16305
16306
|
triggerHelperText: string;
|
|
@@ -16436,6 +16437,10 @@ declare const _default: {
|
|
|
16436
16437
|
type: import("vue").PropType<boolean>;
|
|
16437
16438
|
default: boolean;
|
|
16438
16439
|
};
|
|
16440
|
+
dynamicFilterMode: {
|
|
16441
|
+
type: import("vue").PropType<boolean>;
|
|
16442
|
+
default: boolean;
|
|
16443
|
+
};
|
|
16439
16444
|
isOnTop: {
|
|
16440
16445
|
type: import("vue").PropType<boolean>;
|
|
16441
16446
|
default: boolean;
|
|
@@ -16589,7 +16594,7 @@ declare const _default: {
|
|
|
16589
16594
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
16590
16595
|
onOpened?: () => any;
|
|
16591
16596
|
onClosed?: () => any;
|
|
16592
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16597
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16593
16598
|
$attrs: {
|
|
16594
16599
|
[x: string]: unknown;
|
|
16595
16600
|
};
|
|
@@ -16705,6 +16710,10 @@ declare const _default: {
|
|
|
16705
16710
|
type: import("vue").PropType<boolean>;
|
|
16706
16711
|
default: boolean;
|
|
16707
16712
|
};
|
|
16713
|
+
dynamicFilterMode: {
|
|
16714
|
+
type: import("vue").PropType<boolean>;
|
|
16715
|
+
default: boolean;
|
|
16716
|
+
};
|
|
16708
16717
|
isOnTop: {
|
|
16709
16718
|
type: import("vue").PropType<boolean>;
|
|
16710
16719
|
default: boolean;
|
|
@@ -16897,6 +16906,7 @@ declare const _default: {
|
|
|
16897
16906
|
keepOpen: boolean;
|
|
16898
16907
|
autoSize: boolean;
|
|
16899
16908
|
disableKeyboardEvents: boolean;
|
|
16909
|
+
dynamicFilterMode: boolean;
|
|
16900
16910
|
isOnTop: boolean;
|
|
16901
16911
|
triggerLabel: string;
|
|
16902
16912
|
triggerHelperText: string;
|
|
@@ -17053,6 +17063,10 @@ declare const _default: {
|
|
|
17053
17063
|
type: import("vue").PropType<boolean>;
|
|
17054
17064
|
default: boolean;
|
|
17055
17065
|
};
|
|
17066
|
+
dynamicFilterMode: {
|
|
17067
|
+
type: import("vue").PropType<boolean>;
|
|
17068
|
+
default: boolean;
|
|
17069
|
+
};
|
|
17056
17070
|
isOnTop: {
|
|
17057
17071
|
type: import("vue").PropType<boolean>;
|
|
17058
17072
|
default: boolean;
|
|
@@ -17315,6 +17329,10 @@ declare const _default: {
|
|
|
17315
17329
|
type: import("vue").PropType<boolean>;
|
|
17316
17330
|
default: boolean;
|
|
17317
17331
|
};
|
|
17332
|
+
dynamicFilterMode: {
|
|
17333
|
+
type: import("vue").PropType<boolean>;
|
|
17334
|
+
default: boolean;
|
|
17335
|
+
};
|
|
17318
17336
|
isOnTop: {
|
|
17319
17337
|
type: import("vue").PropType<boolean>;
|
|
17320
17338
|
default: boolean;
|
|
@@ -17507,6 +17525,7 @@ declare const _default: {
|
|
|
17507
17525
|
keepOpen: boolean;
|
|
17508
17526
|
autoSize: boolean;
|
|
17509
17527
|
disableKeyboardEvents: boolean;
|
|
17528
|
+
dynamicFilterMode: boolean;
|
|
17510
17529
|
isOnTop: boolean;
|
|
17511
17530
|
triggerLabel: string;
|
|
17512
17531
|
triggerHelperText: string;
|
|
@@ -20902,6 +20921,7 @@ declare const _default: {
|
|
|
20902
20921
|
keepOpen: boolean;
|
|
20903
20922
|
autoSize: boolean;
|
|
20904
20923
|
disableKeyboardEvents: boolean;
|
|
20924
|
+
dynamicFilterMode: boolean;
|
|
20905
20925
|
isOnTop: boolean;
|
|
20906
20926
|
triggerLabel: string;
|
|
20907
20927
|
triggerHelperText: string;
|
|
@@ -21038,6 +21058,10 @@ declare const _default: {
|
|
|
21038
21058
|
type: import("vue").PropType<boolean>;
|
|
21039
21059
|
default: boolean;
|
|
21040
21060
|
};
|
|
21061
|
+
dynamicFilterMode: {
|
|
21062
|
+
type: import("vue").PropType<boolean>;
|
|
21063
|
+
default: boolean;
|
|
21064
|
+
};
|
|
21041
21065
|
isOnTop: {
|
|
21042
21066
|
type: import("vue").PropType<boolean>;
|
|
21043
21067
|
default: boolean;
|
|
@@ -21191,7 +21215,7 @@ declare const _default: {
|
|
|
21191
21215
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
21192
21216
|
onOpened?: () => any;
|
|
21193
21217
|
onClosed?: () => any;
|
|
21194
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
21218
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
21195
21219
|
$attrs: {
|
|
21196
21220
|
[x: string]: unknown;
|
|
21197
21221
|
};
|
|
@@ -21307,6 +21331,10 @@ declare const _default: {
|
|
|
21307
21331
|
type: import("vue").PropType<boolean>;
|
|
21308
21332
|
default: boolean;
|
|
21309
21333
|
};
|
|
21334
|
+
dynamicFilterMode: {
|
|
21335
|
+
type: import("vue").PropType<boolean>;
|
|
21336
|
+
default: boolean;
|
|
21337
|
+
};
|
|
21310
21338
|
isOnTop: {
|
|
21311
21339
|
type: import("vue").PropType<boolean>;
|
|
21312
21340
|
default: boolean;
|
|
@@ -21499,6 +21527,7 @@ declare const _default: {
|
|
|
21499
21527
|
keepOpen: boolean;
|
|
21500
21528
|
autoSize: boolean;
|
|
21501
21529
|
disableKeyboardEvents: boolean;
|
|
21530
|
+
dynamicFilterMode: boolean;
|
|
21502
21531
|
isOnTop: boolean;
|
|
21503
21532
|
triggerLabel: string;
|
|
21504
21533
|
triggerHelperText: string;
|
|
@@ -21655,6 +21684,10 @@ declare const _default: {
|
|
|
21655
21684
|
type: import("vue").PropType<boolean>;
|
|
21656
21685
|
default: boolean;
|
|
21657
21686
|
};
|
|
21687
|
+
dynamicFilterMode: {
|
|
21688
|
+
type: import("vue").PropType<boolean>;
|
|
21689
|
+
default: boolean;
|
|
21690
|
+
};
|
|
21658
21691
|
isOnTop: {
|
|
21659
21692
|
type: import("vue").PropType<boolean>;
|
|
21660
21693
|
default: boolean;
|
|
@@ -21917,6 +21950,10 @@ declare const _default: {
|
|
|
21917
21950
|
type: import("vue").PropType<boolean>;
|
|
21918
21951
|
default: boolean;
|
|
21919
21952
|
};
|
|
21953
|
+
dynamicFilterMode: {
|
|
21954
|
+
type: import("vue").PropType<boolean>;
|
|
21955
|
+
default: boolean;
|
|
21956
|
+
};
|
|
21920
21957
|
isOnTop: {
|
|
21921
21958
|
type: import("vue").PropType<boolean>;
|
|
21922
21959
|
default: boolean;
|
|
@@ -22109,6 +22146,7 @@ declare const _default: {
|
|
|
22109
22146
|
keepOpen: boolean;
|
|
22110
22147
|
autoSize: boolean;
|
|
22111
22148
|
disableKeyboardEvents: boolean;
|
|
22149
|
+
dynamicFilterMode: boolean;
|
|
22112
22150
|
isOnTop: boolean;
|
|
22113
22151
|
triggerLabel: string;
|
|
22114
22152
|
triggerHelperText: string;
|