@ironsource/shared-ui 2.1.7-rc.4 → 2.1.7-rc.6

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 (100) hide show
  1. package/Autocomplete.vue_vue_type_style_index_0_scoped_e361f9fd_lang.css +1 -0
  2. package/Chart.vue_vue_type_style_index_0_scoped_f06a4764_lang.css +1 -0
  3. package/ChartHeader.vue_vue_type_style_index_0_scoped_88d4532f_lang.css +1 -0
  4. package/ChartLegend.vue_vue_type_style_index_0_scoped_efc608f9_lang.css +1 -0
  5. package/ChartLoader.vue_vue_type_style_index_0_scoped_142c444a_lang.css +1 -0
  6. package/ChartTooltip.vue_vue_type_style_index_0_scoped_ec636f18_lang.css +1 -0
  7. package/DropdownV4.vue_vue_type_style_index_0_scoped_938772ee_lang.css +1 -0
  8. package/FieldMaxLength.vue_vue_type_style_index_0_scoped_47877984_lang.css +1 -0
  9. package/IncludeExclude.vue_vue_type_style_index_0_scoped_cc2adbf5_lang.css +1 -0
  10. package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_bd6145ce_lang.css +1 -0
  11. package/OptionV4.vue_vue_type_style_index_0_scoped_b6a06f00_lang.css +1 -0
  12. package/Popover.vue_vue_type_style_index_0_scoped_c607b770_lang.css +1 -0
  13. package/PopoverV4.vue_vue_type_style_index_0_scoped_c54cd089_lang.css +1 -0
  14. package/PopoverV4.vue_vue_type_style_index_1_lang.css +1 -0
  15. package/SortableItem.vue_vue_type_style_index_0_scoped_9dd4d372_lang.css +1 -0
  16. package/SortableItemLabel.vue_vue_type_style_index_0_scoped_1386ae20_lang.css +1 -0
  17. package/SortableList.vue_vue_type_style_index_0_scoped_21842d59_lang.css +1 -0
  18. package/TextAreaV4.vue_vue_type_style_index_0_scoped_4114ef89_lang.css +1 -0
  19. package/TextField.vue_vue_type_style_index_0_scoped_eb472aa3_lang.css +1 -0
  20. package/components/autocomplete/Autocomplete.vue.d.ts +5 -0
  21. package/components/autocomplete/Autocomplete.vue.js +2 -2
  22. package/components/autocomplete/Autocomplete.vue2.js +57 -45
  23. package/components/autocomplete/index.d.ts +20 -1
  24. package/components/chart/Chart.vue.js +7 -0
  25. package/components/chart/Chart.vue2.js +281 -0
  26. package/components/chart/ChartHeader.vue.js +7 -0
  27. package/components/chart/ChartHeader.vue2.js +51 -0
  28. package/components/chart/ChartLegend.vue.js +7 -0
  29. package/components/chart/ChartLegend.vue2.js +65 -0
  30. package/components/chart/ChartLoader.vue.js +25 -0
  31. package/components/chart/ChartLoader.vue2.js +0 -0
  32. package/components/chart/ChartTooltip.vue.js +7 -0
  33. package/components/chart/ChartTooltip.vue2.js +81 -0
  34. package/components/chart/composables/useChartValues.js +32 -0
  35. package/components/chart/composables/useTooltipPosition.js +22 -0
  36. package/components/chart/consts.js +21 -0
  37. package/components/chart/index.js +6 -0
  38. package/components/chart/plugins/HoverVerticalLine.js +12 -0
  39. package/components/chart/types.js +4 -0
  40. package/components/chart/utils/formatNumber.js +11 -0
  41. package/components/chart/utils/utils.js +12 -0
  42. package/components/dropdown/v4/DropdownV4.vue.d.ts +10 -0
  43. package/components/dropdown/v4/DropdownV4.vue.js +3 -3
  44. package/components/dropdown/v4/DropdownV4.vue2.js +151 -147
  45. package/components/dropdown/v4/OptionV4.vue.d.ts +10 -0
  46. package/components/dropdown/v4/OptionV4.vue.js +2 -2
  47. package/components/dropdown/v4/OptionV4.vue2.js +70 -53
  48. package/components/dropdown/v4/dropdownStoryArgs.d.ts +14 -0
  49. package/components/dropdown/v4/index.d.ts +78 -2
  50. package/components/includeExclude/IncludeExclude.vue.js +4 -4
  51. package/components/includeExclude/IncludeExclude.vue2.js +2 -2
  52. package/components/includeExclude/IncludeExcludeDragDrop.vue.js +4 -4
  53. package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +2 -2
  54. package/components/input/v4/TextField.vue.d.ts +6 -1
  55. package/components/input/v4/TextField.vue.js +3 -3
  56. package/components/input/v4/TextField.vue2.js +95 -90
  57. package/components/input/v4/index.d.ts +20 -1
  58. package/components/popover/common/Popover.common.d.ts +6 -0
  59. package/components/popover/common/Popover.common.js +17 -0
  60. package/components/popover/v3/Popover.vue.js +8 -0
  61. package/components/popover/{Popover.vue2.js → v3/Popover.vue2.js} +1 -1
  62. package/components/popover/v4/PopoverV4.vue.d.ts +73 -0
  63. package/components/popover/v4/PopoverV4.vue.js +7 -0
  64. package/components/popover/v4/PopoverV4.vue2.js +54 -0
  65. package/components/popover/v4/index.d.ts +209 -0
  66. package/components/popover/v4/index.js +6 -0
  67. package/components/shared/FieldMaxLength.vue.js +3 -3
  68. package/components/shared/FieldMaxLength.vue2.js +2 -2
  69. package/components/shared/commonTypes.d.ts +2 -0
  70. package/components/sortableList/SortableItem.vue.js +7 -0
  71. package/components/sortableList/SortableItem.vue2.js +140 -0
  72. package/components/sortableList/SortableItemLabel.vue.js +7 -0
  73. package/components/sortableList/SortableItemLabel.vue2.js +60 -0
  74. package/components/sortableList/SortableList.vue.js +7 -0
  75. package/components/sortableList/SortableList.vue2.js +120 -0
  76. package/components/sortableList/composables/useHoverEffect.js +19 -0
  77. package/components/sortableList/consts.js +4 -0
  78. package/components/sortableList/index.js +6 -0
  79. package/components/textArea/v4/TextAreaV4.vue.d.ts +6 -1
  80. package/components/textArea/v4/TextAreaV4.vue.js +3 -3
  81. package/components/textArea/v4/TextAreaV4.vue2.js +18 -12
  82. package/components/textArea/v4/index.d.ts +9 -0
  83. package/index.d.ts +1314 -100
  84. package/index.js +136 -131
  85. package/package.json +15 -3
  86. package/testids/index.js +5 -4
  87. package/utils/search.js +4 -0
  88. package/Autocomplete.vue_vue_type_style_index_0_scoped_a7bfd237_lang.css +0 -1
  89. package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +0 -1
  90. package/FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css +0 -1
  91. package/IncludeExclude.vue_vue_type_style_index_0_scoped_fb054d88_lang.css +0 -1
  92. package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_5764fd61_lang.css +0 -1
  93. package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +0 -1
  94. package/Popover.vue_vue_type_style_index_0_scoped_25eb53db_lang.css +0 -1
  95. package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +0 -1
  96. package/TextField.vue_vue_type_style_index_0_scoped_a6457440_lang.css +0 -1
  97. package/components/popover/Popover.vue.js +0 -8
  98. /package/components/popover/{Popover.vue.d.ts → v3/Popover.vue.d.ts} +0 -0
  99. /package/components/popover/{index.d.ts → v3/index.d.ts} +0 -0
  100. /package/components/popover/{index.js → v3/index.js} +0 -0
@@ -0,0 +1,209 @@
1
+ import Popover from './PopoverV4.vue';
2
+ declare const PopoverTypes: () => ({
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{
7
+ disabled: boolean;
8
+ testId: string;
9
+ placement: import("floating-vue").Placement;
10
+ distance: number;
11
+ popperClass: string;
12
+ autoHide: boolean;
13
+ skidding: number;
14
+ trigger: "touch" | "click" | "focus" | "hover" | "managed";
15
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16
+ disabled: {
17
+ type: import("vue").PropType<boolean>;
18
+ default: boolean;
19
+ };
20
+ testId: {
21
+ type: import("vue").PropType<string>;
22
+ default: string;
23
+ };
24
+ placement: {
25
+ type: import("vue").PropType<import("floating-vue").Placement>;
26
+ default: string;
27
+ };
28
+ distance: {
29
+ type: import("vue").PropType<number>;
30
+ default: number;
31
+ };
32
+ popperClass: {
33
+ type: import("vue").PropType<string>;
34
+ default: string;
35
+ };
36
+ autoHide: {
37
+ type: import("vue").PropType<boolean>;
38
+ default: boolean;
39
+ };
40
+ skidding: {
41
+ type: import("vue").PropType<number>;
42
+ default: number;
43
+ };
44
+ trigger: {
45
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
46
+ default: string;
47
+ };
48
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "placement" | "distance" | "popperClass" | "autoHide" | "skidding" | "trigger">;
49
+ $attrs: {
50
+ [x: string]: unknown;
51
+ };
52
+ $refs: {
53
+ [x: string]: unknown;
54
+ };
55
+ $slots: Readonly<{
56
+ [name: string]: import("vue").Slot;
57
+ }>;
58
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
59
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
60
+ $emit: (event: string, ...args: any[]) => void;
61
+ $el: any;
62
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
63
+ disabled: {
64
+ type: import("vue").PropType<boolean>;
65
+ default: boolean;
66
+ };
67
+ testId: {
68
+ type: import("vue").PropType<string>;
69
+ default: string;
70
+ };
71
+ placement: {
72
+ type: import("vue").PropType<import("floating-vue").Placement>;
73
+ default: string;
74
+ };
75
+ distance: {
76
+ type: import("vue").PropType<number>;
77
+ default: number;
78
+ };
79
+ popperClass: {
80
+ type: import("vue").PropType<string>;
81
+ default: string;
82
+ };
83
+ autoHide: {
84
+ type: import("vue").PropType<boolean>;
85
+ default: boolean;
86
+ };
87
+ skidding: {
88
+ type: import("vue").PropType<number>;
89
+ default: number;
90
+ };
91
+ trigger: {
92
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
93
+ default: string;
94
+ };
95
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
96
+ disabled: boolean;
97
+ testId: string;
98
+ placement: import("floating-vue").Placement;
99
+ distance: number;
100
+ popperClass: string;
101
+ autoHide: boolean;
102
+ skidding: number;
103
+ trigger: "touch" | "click" | "focus" | "hover" | "managed";
104
+ }, {}, string> & {
105
+ beforeCreate?: (() => void) | (() => void)[];
106
+ created?: (() => void) | (() => void)[];
107
+ beforeMount?: (() => void) | (() => void)[];
108
+ mounted?: (() => void) | (() => void)[];
109
+ beforeUpdate?: (() => void) | (() => void)[];
110
+ updated?: (() => void) | (() => void)[];
111
+ activated?: (() => void) | (() => void)[];
112
+ deactivated?: (() => void) | (() => void)[];
113
+ beforeDestroy?: (() => void) | (() => void)[];
114
+ beforeUnmount?: (() => void) | (() => void)[];
115
+ destroyed?: (() => void) | (() => void)[];
116
+ unmounted?: (() => void) | (() => void)[];
117
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
118
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
119
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
120
+ };
121
+ $forceUpdate: () => void;
122
+ $nextTick: typeof import("vue").nextTick;
123
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
124
+ } & Readonly<import("vue").ExtractPropTypes<{
125
+ disabled: {
126
+ type: import("vue").PropType<boolean>;
127
+ default: boolean;
128
+ };
129
+ testId: {
130
+ type: import("vue").PropType<string>;
131
+ default: string;
132
+ };
133
+ placement: {
134
+ type: import("vue").PropType<import("floating-vue").Placement>;
135
+ default: string;
136
+ };
137
+ distance: {
138
+ type: import("vue").PropType<number>;
139
+ default: number;
140
+ };
141
+ popperClass: {
142
+ type: import("vue").PropType<string>;
143
+ default: string;
144
+ };
145
+ autoHide: {
146
+ type: import("vue").PropType<boolean>;
147
+ default: boolean;
148
+ };
149
+ skidding: {
150
+ type: import("vue").PropType<number>;
151
+ default: number;
152
+ };
153
+ trigger: {
154
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
155
+ default: string;
156
+ };
157
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
158
+ __isFragment?: never;
159
+ __isTeleport?: never;
160
+ __isSuspense?: never;
161
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
162
+ disabled: {
163
+ type: import("vue").PropType<boolean>;
164
+ default: boolean;
165
+ };
166
+ testId: {
167
+ type: import("vue").PropType<string>;
168
+ default: string;
169
+ };
170
+ placement: {
171
+ type: import("vue").PropType<import("floating-vue").Placement>;
172
+ default: string;
173
+ };
174
+ distance: {
175
+ type: import("vue").PropType<number>;
176
+ default: number;
177
+ };
178
+ popperClass: {
179
+ type: import("vue").PropType<string>;
180
+ default: string;
181
+ };
182
+ autoHide: {
183
+ type: import("vue").PropType<boolean>;
184
+ default: boolean;
185
+ };
186
+ skidding: {
187
+ type: import("vue").PropType<number>;
188
+ default: number;
189
+ };
190
+ trigger: {
191
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
192
+ default: string;
193
+ };
194
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
195
+ disabled: boolean;
196
+ testId: string;
197
+ placement: import("floating-vue").Placement;
198
+ distance: number;
199
+ popperClass: string;
200
+ autoHide: boolean;
201
+ skidding: number;
202
+ trigger: "touch" | "click" | "focus" | "hover" | "managed";
203
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
204
+ $slots: {
205
+ trigger?(_: {}): any;
206
+ content?(_: {}): any;
207
+ };
208
+ }))[];
209
+ export { Popover, PopoverTypes };
@@ -0,0 +1,6 @@
1
+ import o from "./PopoverV4.vue.js";
2
+ const r = () => [o];
3
+ export {
4
+ o as Popover,
5
+ r as PopoverTypes
6
+ };
@@ -1,7 +1,7 @@
1
1
  import e from "./FieldMaxLength.vue2.js";
2
2
  /* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css"; //*');
4
- const a = /* @__PURE__ */ o(e, [["__scopeId", "data-v-f3c4001a"]]);
3
+ // import "../../FieldMaxLength.vue_vue_type_style_index_0_scoped_47877984_lang.css"; //*');
4
+ const p = /* @__PURE__ */ o(e, [["__scopeId", "data-v-47877984"]]);
5
5
  export {
6
- a as default
6
+ p as default
7
7
  };
@@ -1,6 +1,6 @@
1
- import "../../FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css"; import { defineComponent as n, openBlock as o, createElementBlock as c, createVNode as r, unref as d, withCtx as p, createTextVNode as t, toDisplayString as a, pushScopeId as i, popScopeId as s, createElementVNode as h } from "vue";
1
+ import "../../FieldMaxLength.vue_vue_type_style_index_0_scoped_47877984_lang.css"; import { defineComponent as n, openBlock as o, createElementBlock as c, createVNode as r, unref as d, withCtx as p, createTextVNode as t, toDisplayString as a, pushScopeId as i, popScopeId as s, createElementVNode as h } from "vue";
2
2
  import l from "../typography/v4/Typography.vue.js";
3
- const m = (e) => (i("data-v-f3c4001a"), e = e(), s(), e), _ = { class: "max-length" }, u = /* @__PURE__ */ m(() => /* @__PURE__ */ h("span", { class: "max-length__divider" }, "/", -1)), v = /* @__PURE__ */ n({
3
+ const m = (e) => (i("data-v-47877984"), e = e(), s(), e), _ = { class: "max-length" }, u = /* @__PURE__ */ m(() => /* @__PURE__ */ h("span", { class: "max-length__divider" }, "/", -1)), v = /* @__PURE__ */ n({
4
4
  __name: "FieldMaxLength",
5
5
  props: {
6
6
  currentLength: { default: 0 },
@@ -1,2 +1,4 @@
1
1
  export declare const FEEDBACK_VARIANTS: readonly ["error", "success", "warning"];
2
2
  export type FeedbackVariant = (typeof FEEDBACK_VARIANTS)[number];
3
+ export declare const MAX_LENGTH_COUNTER_POSITION: readonly ["inside", "outside"];
4
+ export type MaxLengthCounterPositions = (typeof MAX_LENGTH_COUNTER_POSITION)[number];
@@ -0,0 +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_9dd4d372_lang.css"; //*');
4
+ const s = /* @__PURE__ */ e(o, [["__scopeId", "data-v-9dd4d372"]]);
5
+ export {
6
+ s as default
7
+ };
@@ -0,0 +1,140 @@
1
+ import "../../SortableItem.vue_vue_type_style_index_0_scoped_9dd4d372_lang.css"; import { defineComponent as P, computed as x, watch as E, ref as $, openBlock as o, createElementBlock as a, normalizeClass as f, unref as e, withModifiers as c, createElementVNode as r, createVNode as h, createBlock as s, withCtx as b, createTextVNode as w, toDisplayString as F, createCommentVNode as u, renderSlot as z, mergeProps as S, normalizeProps as I, Fragment as R, renderList as D } from "vue";
2
+ import V from "../typography/v4/Typography.vue.js";
3
+ import m from "../icon/v4/IconV4.vue.js";
4
+ import L from "../icon/v4/IconFlag.vue.js";
5
+ import j from "./SortableItemLabel.vue.js";
6
+ import { useVirtualList as q } from "@vueuse/core";
7
+ import { matchString as A } from "../../utils/search.js";
8
+ import { useHoverEffect as G } from "./composables/useHoverEffect.js";
9
+ const J = { class: "draggable-handle" }, K = { class: "item__prefix" }, U = ["onClick"], W = { class: "item__text" }, X = ["onClick"], re = /* @__PURE__ */ P({
10
+ __name: "SortableItem",
11
+ props: {
12
+ item: null,
13
+ index: { default: null },
14
+ isOpen: { type: Boolean, default: !1 },
15
+ isSelected: { type: Boolean, default: !1 },
16
+ selectedChildId: { default: null },
17
+ searchQuery: { default: null },
18
+ searchHandler: { type: Function, default: null },
19
+ displayValue: null
20
+ },
21
+ emits: ["toggle", "select", "selectChild"],
22
+ setup(t, { emit: y }) {
23
+ const n = t, Q = () => {
24
+ y("toggle", !n.isOpen);
25
+ }, g = x(() => (n.item.children || []).filter(
26
+ (l) => n.searchHandler ? n.searchHandler(l, n.searchQuery) : A(l.displayText, n.searchQuery)
27
+ )), p = x(() => g.value.length > 0), B = (d) => d.id === n.selectedChildId, {
28
+ list: H,
29
+ containerProps: M,
30
+ wrapperProps: T,
31
+ scrollTo: N
32
+ } = q(g, {
33
+ itemHeight: 34
34
+ });
35
+ E(
36
+ () => n.searchQuery,
37
+ () => N(0)
38
+ );
39
+ const k = $(null), { handleMouseout: v, handleMouseover: C } = G(
40
+ k,
41
+ "sortable-item--hovered"
42
+ );
43
+ return (d, l) => (o(), a("div", {
44
+ ref_key: "itemRef",
45
+ ref: k,
46
+ class: f(["sortable-item", { "sortable-item--selected": t.isSelected }]),
47
+ onMouseover: l[1] || (l[1] = //@ts-ignore
48
+ (...i) => e(C) && e(C)(...i)),
49
+ onMouseout: l[2] || (l[2] = //@ts-ignore
50
+ (...i) => e(v) && e(v)(...i)),
51
+ onClick: l[3] || (l[3] = c((i) => y("select"), ["stop"]))
52
+ }, [
53
+ r("div", {
54
+ class: f(["item", { "drag-allowed": !t.item.isLocked && !t.searchQuery }])
55
+ }, [
56
+ r("div", J, [
57
+ h(e(m), {
58
+ name: "dots-six-vertical",
59
+ width: "20px",
60
+ type: "bold"
61
+ })
62
+ ]),
63
+ r("div", K, [
64
+ t.item.isLocked ? (o(), s(e(m), {
65
+ key: 1,
66
+ class: "locked-icon",
67
+ name: "lock",
68
+ width: "16px"
69
+ })) : (o(), s(e(V), {
70
+ key: 0,
71
+ class: "order-num",
72
+ variant: "subtitle2"
73
+ }, {
74
+ default: b(() => [
75
+ w(F(t.index + 1) + ". ", 1)
76
+ ]),
77
+ _: 1
78
+ }))
79
+ ]),
80
+ e(p) && !t.searchQuery ? (o(), a("div", {
81
+ key: 0,
82
+ class: "expand-icon",
83
+ onClick: c(Q, ["stop"])
84
+ }, [
85
+ t.isOpen ? (o(), s(e(m), {
86
+ key: 0,
87
+ name: "caret-down",
88
+ width: "16px"
89
+ })) : (o(), s(e(m), {
90
+ key: 1,
91
+ name: "caret-right",
92
+ width: "16px"
93
+ }))
94
+ ], 8, U)) : u("", !0),
95
+ r("div", W, [
96
+ t.item.countryFlag ? (o(), s(e(L), {
97
+ key: 0,
98
+ class: "country-flag",
99
+ "country-code": t.item.countryFlag
100
+ }, null, 8, ["country-code"])) : u("", !0),
101
+ h(j, {
102
+ "display-value": t.displayValue,
103
+ item: t.item
104
+ }, null, 8, ["display-value", "item"])
105
+ ]),
106
+ r("div", {
107
+ class: "item__menu",
108
+ onClick: l[0] || (l[0] = c(() => {
109
+ }, ["stop"]))
110
+ }, [
111
+ z(d.$slots, "menu", {}, void 0, !0)
112
+ ])
113
+ ], 2),
114
+ r("div", S(e(M), { class: "child-list" }), [
115
+ e(p) && t.isOpen ? (o(), a("ul", I(S({ key: 0 }, e(T))), [
116
+ (o(!0), a(R, null, D(e(H), ({ data: i, index: O }) => (o(), a("li", {
117
+ key: O,
118
+ class: f({ selected: B(i) }),
119
+ onClick: c((Y) => y("selectChild", i), ["stop"])
120
+ }, [
121
+ i.countryFlag ? (o(), s(e(L), {
122
+ key: 0,
123
+ class: "country-flag",
124
+ "country-code": i.countryFlag
125
+ }, null, 8, ["country-code"])) : u("", !0),
126
+ h(e(V), { variant: "body2" }, {
127
+ default: b(() => [
128
+ w(F(t.displayValue(i)), 1)
129
+ ]),
130
+ _: 2
131
+ }, 1024)
132
+ ], 10, X))), 128))
133
+ ], 16)) : u("", !0)
134
+ ], 16)
135
+ ], 34));
136
+ }
137
+ });
138
+ export {
139
+ re as default
140
+ };
@@ -0,0 +1,7 @@
1
+ import e from "./SortableItemLabel.vue2.js";
2
+ /* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../SortableItemLabel.vue_vue_type_style_index_0_scoped_1386ae20_lang.css"; //*');
4
+ const s = /* @__PURE__ */ o(e, [["__scopeId", "data-v-1386ae20"]]);
5
+ export {
6
+ s as default
7
+ };
@@ -0,0 +1,60 @@
1
+ import "../../SortableItemLabel.vue_vue_type_style_index_0_scoped_1386ae20_lang.css"; import { defineComponent as m, openBlock as a, createBlock as u, unref as l, withCtx as t, createElementVNode as p, createElementBlock as c, Fragment as h, renderList as f, createVNode as i, createTextVNode as o, toDisplayString as r, normalizeClass as x } from "vue";
2
+ import n from "../typography/v4/Typography.vue.js";
3
+ import y from "../tooltip/v4/TooltipV4.vue.js";
4
+ const _ = { class: "tooltip-content" }, k = /* @__PURE__ */ m({
5
+ __name: "SortableItemLabel",
6
+ props: {
7
+ item: null,
8
+ displayValue: null
9
+ },
10
+ setup(e) {
11
+ return (b, T) => (a(), u(l(y), {
12
+ class: "item-label",
13
+ placement: "right",
14
+ disabled: !e.item.helpText
15
+ }, {
16
+ tooltip: t(() => [
17
+ p("div", _, [
18
+ (a(!0), c(h, null, f(e.item.helpText, (s, d) => (a(), c("div", {
19
+ key: d,
20
+ class: "help"
21
+ }, [
22
+ i(l(n), {
23
+ class: "help__title",
24
+ variant: "h5"
25
+ }, {
26
+ default: t(() => [
27
+ o(r(s.title), 1)
28
+ ]),
29
+ _: 2
30
+ }, 1024),
31
+ i(l(n), {
32
+ class: "help__text",
33
+ variant: "body2"
34
+ }, {
35
+ default: t(() => [
36
+ o(r(s.text), 1)
37
+ ]),
38
+ _: 2
39
+ }, 1024)
40
+ ]))), 128))
41
+ ])
42
+ ]),
43
+ default: t(() => [
44
+ i(l(n), {
45
+ variant: "body2",
46
+ class: x({ "decorated-text": e.item.helpText?.length })
47
+ }, {
48
+ default: t(() => [
49
+ o(r(e.displayValue(e.item)), 1)
50
+ ]),
51
+ _: 1
52
+ }, 8, ["class"])
53
+ ]),
54
+ _: 1
55
+ }, 8, ["disabled"]));
56
+ }
57
+ });
58
+ export {
59
+ k as default
60
+ };
@@ -0,0 +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_21842d59_lang.css"; //*');
4
+ const p = /* @__PURE__ */ t(o, [["__scopeId", "data-v-21842d59"]]);
5
+ export {
6
+ p as default
7
+ };
@@ -0,0 +1,120 @@
1
+ import "../../SortableList.vue_vue_type_style_index_0_scoped_21842d59_lang.css"; import { defineComponent as $, computed as p, ref as F, openBlock as c, createElementBlock as m, mergeProps as v, unref as t, createBlock as y, isRef as E, createCommentVNode as P, createVNode as w, withCtx as C, Fragment as x, renderList as B, renderSlot as D, createElementVNode as G } from "vue";
2
+ import { VueDraggable as U } from "vue-draggable-plus";
3
+ import R from "./SortableItem.vue.js";
4
+ import M from "../search/v4/SearchV4.vue.js";
5
+ import { useVModel as K } from "@vueuse/core";
6
+ import { matchString as q } from "../../utils/search.js";
7
+ import { useTestIdAttrs as Q } from "../../utils/testIds.js";
8
+ import { SortableListTestIdModifiers as f } from "../../testids/index.js";
9
+ import { DRAG_CURSOR_CSS_CLASS as H } from "./consts.js";
10
+ const le = /* @__PURE__ */ $({
11
+ __name: "SortableList",
12
+ props: {
13
+ items: { default: () => [] },
14
+ displayValue: { type: Function, default: (d) => d.displayText || d.toString() },
15
+ openId: { default: null },
16
+ selectedId: { default: null },
17
+ selectedChildId: { default: null },
18
+ search: { default: null },
19
+ showSearch: { type: Boolean, default: !1 },
20
+ searchPlaceholder: { default: "Search" },
21
+ searchHandler: { type: Function, default: null },
22
+ testId: { default: "" }
23
+ },
24
+ emits: ["update:items", "update:openId", "update:selectedId", "update:selectedChildId", "update:search", "clearSearch"],
25
+ setup(d, { emit: s }) {
26
+ const r = d, o = K(r, "search", s), S = p(() => !!o.value?.trim()), L = p(() => S.value ? r.items.filter((l) => {
27
+ const a = l.children || [], e = o.value;
28
+ return r.searchHandler ? r.searchHandler(l, e) : q(l.displayText, e) || // match parent item
29
+ a.some((n) => q(n.displayText, e));
30
+ }) : r.items), u = p({
31
+ get() {
32
+ return L.value.filter((l) => !l.isLocked);
33
+ },
34
+ set(l) {
35
+ s("update:items", [...l, ...V.value]);
36
+ }
37
+ }), V = p(
38
+ () => L.value.filter((l) => l.isLocked)
39
+ ), I = F(!1), N = (l) => {
40
+ I.value = !0, setTimeout(() => l.target.classList.add(H), 50);
41
+ }, O = (l) => {
42
+ I.value = !1, l.target.classList.remove(H);
43
+ }, T = (l) => (S.value || l.id === r.openId) && !I.value, b = (l, a) => {
44
+ a ? s("update:openId", l.id) : s("update:openId", null);
45
+ }, i = (l) => l.id === r.selectedId, k = (l) => {
46
+ s("update:selectedId", l.id), s("update:selectedChildId", null);
47
+ }, A = (l, a) => {
48
+ s("update:selectedChildId", l.id), s("update:selectedId", a.id), s("update:openId", a.id);
49
+ }, g = Q(r.testId, f);
50
+ return (l, a) => (c(), m("div", v({ class: "sortable-list-container" }, t(g)[t(f).CONTAINER]), [
51
+ d.showSearch ? (c(), y(t(M), {
52
+ key: 0,
53
+ modelValue: t(o),
54
+ "onUpdate:modelValue": a[0] || (a[0] = (e) => E(o) ? o.value = e : null),
55
+ class: "list-search",
56
+ placeholder: d.searchPlaceholder,
57
+ "test-id": d.testId,
58
+ onOnClear: a[1] || (a[1] = (e) => s("clearSearch"))
59
+ }, null, 8, ["modelValue", "placeholder", "test-id"])) : P("", !0),
60
+ w(t(U), v({
61
+ modelValue: t(u),
62
+ "onUpdate:modelValue": a[2] || (a[2] = (e) => E(u) ? u.value = e : null),
63
+ class: "sortable-list",
64
+ filter: ".expand-icon",
65
+ animation: 150,
66
+ handle: ".draggable-handle",
67
+ disabled: t(S)
68
+ }, t(g)[t(f).DRAGGABLE_LIST], {
69
+ onStart: N,
70
+ onEnd: O
71
+ }), {
72
+ default: C(() => [
73
+ (c(!0), m(x, null, B(t(u), (e, n) => (c(), y(R, {
74
+ key: e.id,
75
+ item: e,
76
+ index: n,
77
+ "is-open": T(e),
78
+ "is-selected": i(e),
79
+ "selected-child-id": i(e) ? d.selectedChildId : null,
80
+ "display-value": d.displayValue,
81
+ "search-query": t(o),
82
+ "search-handler": d.searchHandler,
83
+ onToggle: (h) => b(e, h),
84
+ onSelect: (h) => k(e),
85
+ onSelectChild: (h) => A(h, e)
86
+ }, {
87
+ menu: C(() => [
88
+ D(l.$slots, "menu", { item: e }, void 0, !0)
89
+ ]),
90
+ _: 2
91
+ }, 1032, ["item", "index", "is-open", "is-selected", "selected-child-id", "display-value", "search-query", "search-handler", "onToggle", "onSelect", "onSelectChild"]))), 128))
92
+ ]),
93
+ _: 3
94
+ }, 16, ["modelValue", "disabled"]),
95
+ G("div", v({ class: "locked-list" }, t(g)[t(f).LOCKED_LIST]), [
96
+ (c(!0), m(x, null, B(t(V), (e) => (c(), y(R, {
97
+ key: e.id,
98
+ item: e,
99
+ "is-open": T(e),
100
+ "is-selected": i(e),
101
+ "selected-child-id": i(e) ? d.selectedChildId : null,
102
+ "display-value": d.displayValue,
103
+ "search-query": t(o),
104
+ "on-search": d.searchHandler,
105
+ onToggle: (n) => b(e, n),
106
+ onSelect: (n) => k(e),
107
+ onSelectChild: (n) => A(n, e)
108
+ }, {
109
+ menu: C(() => [
110
+ D(l.$slots, "menu", { item: e }, void 0, !0)
111
+ ]),
112
+ _: 2
113
+ }, 1032, ["item", "is-open", "is-selected", "selected-child-id", "display-value", "search-query", "on-search", "onToggle", "onSelect", "onSelectChild"]))), 128))
114
+ ], 16)
115
+ ], 16));
116
+ }
117
+ });
118
+ export {
119
+ le as default
120
+ };
@@ -0,0 +1,19 @@
1
+ import { computed as t } from "vue";
2
+ const d = (e, r) => {
3
+ const s = t(() => e.value ? Array.from(e.value.parentElement?.children || []) : []);
4
+ return {
5
+ handleMouseover: (n) => {
6
+ s.value.forEach(
7
+ (o) => o.classList.remove(r)
8
+ ), s.value.some(
9
+ (o) => o.classList.contains("sortable-chosen")
10
+ ) || n.currentTarget.classList.add(r);
11
+ },
12
+ handleMouseout: () => {
13
+ e.value.classList.remove(r);
14
+ }
15
+ };
16
+ };
17
+ export {
18
+ d as useHoverEffect
19
+ };
@@ -0,0 +1,4 @@
1
+ const r = "force-grabbing-cursor";
2
+ export {
3
+ r as DRAG_CURSOR_CSS_CLASS
4
+ };
@@ -0,0 +1,6 @@
1
+ import t from "./SortableList.vue.js";
2
+ const r = () => [t];
3
+ export {
4
+ t as SortableList,
5
+ r as SortableListTypes
6
+ };
@@ -1,11 +1,12 @@
1
1
  import { TooltipPositions } from '@/components/tooltip/common/Tooltip.types';
2
- import { FeedbackVariant } from '@/components/shared/commonTypes';
2
+ import { FeedbackVariant, MaxLengthCounterPositions } from '@/components/shared/commonTypes';
3
3
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
4
  modelValue?: string;
5
5
  placeholder?: string;
6
6
  disabled?: boolean;
7
7
  label?: string;
8
8
  maxLength?: number;
9
+ maxLengthCounterPosition?: MaxLengthCounterPositions;
9
10
  mandatory?: boolean;
10
11
  hoverHelpText?: string;
11
12
  hoverHelpTextPlacement?: TooltipPositions;
@@ -21,6 +22,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
21
22
  disabled: boolean;
22
23
  label: string;
23
24
  maxLength: any;
25
+ maxLengthCounterPosition: string;
24
26
  mandatory: boolean;
25
27
  hoverHelpText: string;
26
28
  hoverHelpTextPlacement: string;
@@ -38,6 +40,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
38
40
  disabled?: boolean;
39
41
  label?: string;
40
42
  maxLength?: number;
43
+ maxLengthCounterPosition?: MaxLengthCounterPositions;
41
44
  mandatory?: boolean;
42
45
  hoverHelpText?: string;
43
46
  hoverHelpTextPlacement?: TooltipPositions;
@@ -53,6 +56,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
53
56
  disabled: boolean;
54
57
  label: string;
55
58
  maxLength: any;
59
+ maxLengthCounterPosition: string;
56
60
  mandatory: boolean;
57
61
  hoverHelpText: string;
58
62
  hoverHelpTextPlacement: string;
@@ -76,6 +80,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
76
80
  maxLength: number;
77
81
  modelValue: string;
78
82
  placeholder: string;
83
+ maxLengthCounterPosition: MaxLengthCounterPositions;
79
84
  feedbackText: string;
80
85
  feedbackVariant: FeedbackVariant;
81
86
  showFeedbackTextIcon: boolean;