@ironsource/shared-ui 2.2.0-rc.9 → 2.2.0-test.10

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 (62) hide show
  1. package/CalendarMonth.vue_vue_type_style_index_0_scoped_a44769fd_lang.css +1 -0
  2. package/CalendarMonthV4.vue_vue_type_style_index_0_scoped_6eae923a_lang.css +1 -0
  3. package/ChartHeader.vue_vue_type_style_index_0_scoped_3a061c08_lang.css +1 -0
  4. package/ColumnPicker.vue_vue_type_style_index_0_scoped_d59af062_lang.css +1 -0
  5. package/DataGrid.vue_vue_type_style_index_0_scoped_0967498f_lang.css +1 -0
  6. package/DateRange.vue_vue_type_style_index_0_scoped_25d03907_lang.css +1 -0
  7. package/DateRangeV4.vue_vue_type_style_index_0_scoped_f8826716_lang.css +1 -0
  8. package/SectionDropdown.vue_vue_type_style_index_0_scoped_65877e48_lang.css +1 -0
  9. package/SwitchV4.vue_vue_type_style_index_0_scoped_b71a806e_lang.css +1 -0
  10. package/Tag.vue_vue_type_style_index_0_scoped_211651e9_lang.css +1 -0
  11. package/components/chart/ChartHeader.vue.js +2 -2
  12. package/components/chart/ChartHeader.vue2.js +2 -2
  13. package/components/columnConfigurator/SectionDropdown.vue.js +3 -3
  14. package/components/columnConfigurator/SectionDropdown.vue2.js +6 -7
  15. package/components/columnPicker/ColumnPicker.vue.d.ts +2 -0
  16. package/components/columnPicker/ColumnPicker.vue.js +3 -3
  17. package/components/columnPicker/ColumnPicker.vue2.js +173 -153
  18. package/components/columnPicker/index.d.ts +7 -1
  19. package/components/dateRange/common/CalendarMonth.common.js +46 -41
  20. package/components/dateRange/common/DateRange.common.d.ts +1 -0
  21. package/components/dateRange/common/DateRange.common.js +39 -38
  22. package/components/dateRange/v3/CalendarMonth.vue.d.ts +5 -0
  23. package/components/dateRange/v3/CalendarMonth.vue.js +3 -3
  24. package/components/dateRange/v3/CalendarMonth.vue2.js +6 -5
  25. package/components/dateRange/v3/DateRange.vue.d.ts +5 -0
  26. package/components/dateRange/v3/DateRange.vue.js +2 -2
  27. package/components/dateRange/v3/DateRange.vue2.js +2 -1
  28. package/components/dateRange/v3/index.d.ts +20 -1
  29. package/components/dateRange/v4/CalendarMonthV4.vue.d.ts +5 -0
  30. package/components/dateRange/v4/CalendarMonthV4.vue.js +4 -4
  31. package/components/dateRange/v4/CalendarMonthV4.vue2.js +12 -11
  32. package/components/dateRange/v4/DateRangeV4.vue.d.ts +5 -0
  33. package/components/dateRange/v4/DateRangeV4.vue.js +3 -3
  34. package/components/dateRange/v4/DateRangeV4.vue2.js +104 -101
  35. package/components/dateRange/v4/index.d.ts +20 -1
  36. package/components/switch/v4/SwitchV4.vue.d.ts +5 -0
  37. package/components/switch/v4/SwitchV4.vue.js +4 -4
  38. package/components/switch/v4/SwitchV4.vue2.js +14 -13
  39. package/components/switch/v4/index.d.ts +9 -0
  40. package/components/table/v4/DataGrid.vue.d.ts +2 -0
  41. package/components/table/v4/DataGrid.vue.js +2 -2
  42. package/components/table/v4/DataGrid.vue2.js +116 -115
  43. package/components/table/v4/index.d.ts +7 -1
  44. package/components/tag/Tag.vue.d.ts +110 -0
  45. package/components/tag/Tag.vue.js +7 -0
  46. package/components/tag/Tag.vue2.js +225 -0
  47. package/components/tag/index.d.ts +159 -0
  48. package/components/tag/index.js +6 -0
  49. package/components/tagsField/index.d.ts +42 -3
  50. package/components/tagsField/index.js +6 -4
  51. package/index.d.ts +73 -4
  52. package/index.js +84 -78
  53. package/package.json +6 -2
  54. package/CalendarMonth.vue_vue_type_style_index_0_scoped_acd3440c_lang.css +0 -1
  55. package/CalendarMonthV4.vue_vue_type_style_index_0_scoped_b0d3ea50_lang.css +0 -1
  56. package/ChartHeader.vue_vue_type_style_index_0_scoped_9a603520_lang.css +0 -1
  57. package/ColumnPicker.vue_vue_type_style_index_0_scoped_01c4e08f_lang.css +0 -1
  58. package/DataGrid.vue_vue_type_style_index_0_scoped_46851fcb_lang.css +0 -1
  59. package/DateRange.vue_vue_type_style_index_0_scoped_70e316e9_lang.css +0 -1
  60. package/DateRangeV4.vue_vue_type_style_index_0_scoped_a849128a_lang.css +0 -1
  61. package/SectionDropdown.vue_vue_type_style_index_0_scoped_cfad60a8_lang.css +0 -1
  62. package/SwitchV4.vue_vue_type_style_index_0_scoped_0a80c49f_lang.css +0 -1
@@ -0,0 +1,110 @@
1
+ import { ChipSize, ChipColor, ChipVariant } from '../chip/v4/Chip.types';
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
+ label: string;
4
+ isSelected: boolean;
5
+ isInvalid?: boolean;
6
+ testId?: string;
7
+ size?: ChipSize;
8
+ rounded?: boolean;
9
+ disabled?: boolean;
10
+ color?: ChipColor;
11
+ variant?: ChipVariant;
12
+ placeholder?: string;
13
+ iconName?: string;
14
+ iconType?: 'regular' | 'fill';
15
+ editable?: boolean;
16
+ selectable?: boolean;
17
+ maxLength?: number;
18
+ maxLengthTooltip?: string;
19
+ }>, {
20
+ isInvalid: boolean;
21
+ label: string;
22
+ testId: string;
23
+ size: string;
24
+ rounded: boolean;
25
+ disabled: boolean;
26
+ color: string;
27
+ variant: string;
28
+ placeholder: string;
29
+ iconName: string;
30
+ editable: boolean;
31
+ selectable: boolean;
32
+ maxLength: any;
33
+ iconType: string;
34
+ maxLengthTooltip: string;
35
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
36
+ "update:label": (value: string) => void;
37
+ remove: () => void;
38
+ stopEditing: () => void;
39
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
40
+ label: string;
41
+ isSelected: boolean;
42
+ isInvalid?: boolean;
43
+ testId?: string;
44
+ size?: ChipSize;
45
+ rounded?: boolean;
46
+ disabled?: boolean;
47
+ color?: ChipColor;
48
+ variant?: ChipVariant;
49
+ placeholder?: string;
50
+ iconName?: string;
51
+ iconType?: 'regular' | 'fill';
52
+ editable?: boolean;
53
+ selectable?: boolean;
54
+ maxLength?: number;
55
+ maxLengthTooltip?: string;
56
+ }>, {
57
+ isInvalid: boolean;
58
+ label: string;
59
+ testId: string;
60
+ size: string;
61
+ rounded: boolean;
62
+ disabled: boolean;
63
+ color: string;
64
+ variant: string;
65
+ placeholder: string;
66
+ iconName: string;
67
+ editable: boolean;
68
+ selectable: boolean;
69
+ maxLength: any;
70
+ iconType: string;
71
+ maxLengthTooltip: string;
72
+ }>>> & {
73
+ onRemove?: () => any;
74
+ "onUpdate:label"?: (value: string) => any;
75
+ onStopEditing?: () => any;
76
+ }, {
77
+ label: string;
78
+ testId: string;
79
+ variant: ChipVariant;
80
+ disabled: boolean;
81
+ color: ChipColor;
82
+ size: ChipSize;
83
+ iconName: string;
84
+ rounded: boolean;
85
+ maxLength: number;
86
+ placeholder: string;
87
+ iconType: 'regular' | 'fill';
88
+ editable: boolean;
89
+ isInvalid: boolean;
90
+ selectable: boolean;
91
+ maxLengthTooltip: string;
92
+ }>;
93
+ export default _default;
94
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
95
+ type __VLS_TypePropsToRuntimeProps<T> = {
96
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
97
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
98
+ } : {
99
+ type: import('vue').PropType<T[K]>;
100
+ required: true;
101
+ };
102
+ };
103
+ type __VLS_WithDefaults<P, D> = {
104
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
105
+ default: D[K];
106
+ }> : P[K];
107
+ };
108
+ type __VLS_Prettify<T> = {
109
+ [K in keyof T]: T[K];
110
+ } & {};
@@ -0,0 +1,7 @@
1
+ import o from "./Tag.vue2.js";
2
+ /* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../Tag.vue_vue_type_style_index_0_scoped_211651e9_lang.css"; //*');
4
+ const p = /* @__PURE__ */ e(o, [["__scopeId", "data-v-211651e9"]]);
5
+ export {
6
+ p as default
7
+ };
@@ -0,0 +1,225 @@
1
+ import "../../Tag.vue_vue_type_style_index_0_scoped_211651e9_lang.css"; import { defineComponent as J, ref as u, computed as d, watch as S, nextTick as E, openBlock as v, createElementBlock as C, normalizeStyle as T, createVNode as y, unref as l, withCtx as f, createElementVNode as V, createTextVNode as R, toDisplayString as z, normalizeClass as h, withModifiers as m, createBlock as $, createCommentVNode as O, withDirectives as H, isRef as Q, withKeys as K, vModelText as X, vShow as Z } from "vue";
2
+ import D from "../typography/v4/Typography.vue.js";
3
+ import W from "../icon/v4/IconV4.vue.js";
4
+ import "../icon/v4/IconFlag.vue.js";
5
+ import _ from "../chip/v4/ChipV4.vue.js";
6
+ import ee from "../popover/v4/PopoverV4.vue.js";
7
+ const ae = { class: "tag-max-length-tooltip" }, le = { class: "tag-content" }, te = ["placeholder", "maxlength", "onKeyup"], se = /* @__PURE__ */ J({
8
+ __name: "Tag",
9
+ props: {
10
+ label: { default: "" },
11
+ isSelected: { type: Boolean },
12
+ isInvalid: { type: Boolean, default: !1 },
13
+ testId: { default: "" },
14
+ size: { default: "medium" },
15
+ rounded: { type: Boolean, default: !1 },
16
+ disabled: { type: Boolean, default: !1 },
17
+ color: { default: "primary" },
18
+ variant: { default: "filled" },
19
+ placeholder: { default: "" },
20
+ iconName: { default: "" },
21
+ iconType: { default: "regular" },
22
+ editable: { type: Boolean, default: !1 },
23
+ selectable: { type: Boolean, default: !0 },
24
+ maxLength: { default: void 0 },
25
+ maxLengthTooltip: { default: "You have reached the maximum number of characters" }
26
+ },
27
+ emits: ["update:label", "remove", "stopEditing"],
28
+ setup(a, { emit: b }) {
29
+ const e = a, r = u(!1), k = u(null), g = u(void 0), x = u(!1), s = u(!1), o = u(e.isSelected || e.editable), I = d(() => !e.label && !r.value && e.placeholder), M = d(() => (console.log(
30
+ "isTooltipOpen",
31
+ e.maxLength && i.value.length >= e.maxLength && r.value
32
+ ), e.maxLength && i.value.length >= e.maxLength && r.value)), p = d(() => e.disabled || !e.selectable || r.value ? "outlined" : s.value ? "filled" : !o.value && !e.editable ? "outlined" : e.variant), F = d(() => e.disabled ? "default" : e.isInvalid ? "error" : o.value || !o.value && e.editable || !e.selectable ? e.color : "default"), i = d({
33
+ get: () => e.label,
34
+ set: (n) => {
35
+ b("update:label", n);
36
+ }
37
+ }), B = u(null), P = () => B.value?.focus(), U = async () => {
38
+ e.disabled || !e.selectable || (e.editable ? (r.value = !0, await E(), P()) : o.value = !o.value);
39
+ }, Y = () => {
40
+ b("stopEditing"), w();
41
+ }, w = () => {
42
+ r.value = !1, !i.value && !e.placeholder && b("remove");
43
+ };
44
+ S(
45
+ () => [i.value, e.placeholder, r.value],
46
+ async () => {
47
+ await E(), r.value && k.value ? g.value = k.value.offsetWidth + "px" : g.value = void 0;
48
+ },
49
+ { immediate: !0 }
50
+ ), S(
51
+ () => e.editable,
52
+ () => {
53
+ e.editable && (o.value = !0);
54
+ }
55
+ );
56
+ const L = {
57
+ default: "var(--default-outlined-border)",
58
+ primary: "var(--primary-main)",
59
+ info: "var(--info-dark)",
60
+ error: "var(--error-main)",
61
+ warning: "var(--warning-main)",
62
+ success: "var(--success-main)",
63
+ dark: "var(--common-divider)"
64
+ }, N = {
65
+ default: "var(--action-active)",
66
+ primary: "var(--primary-dark)",
67
+ info: "var(--info-dark)",
68
+ error: "var(--error-dark)",
69
+ warning: "var(--warning-dark)",
70
+ success: "var(--success-dark)",
71
+ dark: "var(--common-divider)"
72
+ }, j = {
73
+ default: "var(--action-active)",
74
+ primary: "var(--primary-darker)",
75
+ info: "var(--info-darker)",
76
+ error: "var(--error-darker)",
77
+ warning: "var(--warning-darker)",
78
+ success: "var(--success-darker)",
79
+ dark: "var(--common-divider)"
80
+ }, q = d(() => {
81
+ if (e.disabled)
82
+ return "var(--action-disabled)";
83
+ const n = e.isInvalid ? "error" : e.color;
84
+ return x.value ? j[n] : N[n];
85
+ }), A = d(() => {
86
+ if (e.disabled)
87
+ return "var(--action-disabled)";
88
+ const n = e.isInvalid ? "error" : e.color;
89
+ return o.value || !e.selectable ? N[n] : "var(--action-active)";
90
+ }), G = d(() => {
91
+ if (e.editable && e.variant !== "outlined" || !e.selectable) {
92
+ const n = r.value ? L[e.color] : "var(--primary-main-50-p)";
93
+ return {
94
+ "--outline-color": e.isInvalid ? L.error : n
95
+ };
96
+ }
97
+ return s.value && e.variant !== "outlined" && e.color === "primary" && !e.editable ? {
98
+ "--outline-color": o.value ? "var(--primary-main-50-p)" : "var(--action-active)"
99
+ } : {};
100
+ });
101
+ return (n, t) => (v(), C("div", {
102
+ style: T(r.value ? { width: g.value } : void 0)
103
+ }, [
104
+ y(l(ee), {
105
+ placement: "top",
106
+ text: a.maxLengthTooltip,
107
+ "is-open": l(M),
108
+ disabled: !l(M),
109
+ distance: 10,
110
+ skidding: 10
111
+ }, {
112
+ content: f(() => [
113
+ V("div", ae, [
114
+ y(l(D), { variant: "body2" }, {
115
+ default: f(() => [
116
+ R(z(a.maxLengthTooltip), 1)
117
+ ]),
118
+ _: 1
119
+ })
120
+ ])
121
+ ]),
122
+ trigger: f(() => [
123
+ y(l(_), {
124
+ class: h({
125
+ "rounded-tag": a.rounded,
126
+ "tag-editing": r.value && l(p) !== "outlined",
127
+ // outlined chips have an outline
128
+ "tag-hover-outline": a.label && s.value && l(p) !== "outlined",
129
+ // outlined chips have an outline
130
+ "unselected-tag-hover-outline": a.label && s.value && l(p) !== "outlined" && !o.value && !a.editable,
131
+ // for unselected tags that are not editable, we want to show a hover outline
132
+ "tag-disabled": a.disabled,
133
+ "empty-tag": l(I),
134
+ "unselected-tag": !o.value && a.selectable && a.label,
135
+ "editable-tag": a.editable
136
+ }),
137
+ label: l(i),
138
+ "test-id": a.testId,
139
+ color: l(F),
140
+ size: a.size,
141
+ variant: l(p),
142
+ disabled: a.disabled,
143
+ style: T(l(G)),
144
+ onMouseover: t[5] || (t[5] = (c) => s.value = !0),
145
+ onMouseleave: t[6] || (t[6] = (c) => s.value = !1),
146
+ onClick: m(U, ["stop"])
147
+ }, {
148
+ default: f(() => [
149
+ V("div", le, [
150
+ a.iconName ? (v(), $(l(W), {
151
+ key: 0,
152
+ name: a.iconName,
153
+ size: "16px",
154
+ color: l(A),
155
+ class: "tag-icon",
156
+ type: a.iconType
157
+ }, null, 8, ["name", "color", "type"])) : O("", !0),
158
+ r.value ? H((v(), C("input", {
159
+ key: 2,
160
+ ref_key: "inputRef",
161
+ ref: B,
162
+ "onUpdate:modelValue": t[0] || (t[0] = (c) => Q(i) ? i.value = c : null),
163
+ placeholder: a.placeholder,
164
+ class: h(["tag-input", { "tag-input-outline": a.variant === "outlined" }]),
165
+ spellcheck: "false",
166
+ style: T({ width: g.value }),
167
+ maxlength: a.maxLength,
168
+ onBlur: Y,
169
+ onKeyup: [
170
+ K(m(w, ["prevent"]), ["enter"]),
171
+ K(m(w, ["prevent"]), ["esc"])
172
+ ]
173
+ }, null, 46, te)), [
174
+ [
175
+ X,
176
+ l(i),
177
+ void 0,
178
+ { trim: !0 }
179
+ ]
180
+ ]) : (v(), $(l(D), {
181
+ key: 1,
182
+ variant: "chipLabel",
183
+ class: h(["tag-label", {
184
+ "tag-label--placeholder": !l(i) && a.placeholder,
185
+ "tag-label--disabled": a.disabled
186
+ }])
187
+ }, {
188
+ default: f(() => [
189
+ R(z(l(i) || a.placeholder), 1)
190
+ ]),
191
+ _: 1
192
+ }, 8, ["class"])),
193
+ r.value ? (v(), C("span", {
194
+ key: 3,
195
+ ref_key: "sizerRef",
196
+ ref: k,
197
+ class: "tag-input-sizer"
198
+ }, z(l(i) || a.placeholder || ""), 513)) : O("", !0)
199
+ ]),
200
+ H(y(l(W), {
201
+ class: h(["clear-button", { "clear-button--invalid": a.isInvalid }]),
202
+ name: "x-circle",
203
+ size: "16px",
204
+ type: "fill",
205
+ color: l(q),
206
+ onMousedown: t[1] || (t[1] = m(() => {
207
+ }, ["prevent"])),
208
+ onMouseover: t[2] || (t[2] = (c) => x.value = !0),
209
+ onMouseleave: t[3] || (t[3] = (c) => x.value = !1),
210
+ onClick: t[4] || (t[4] = m((c) => b("remove"), ["stop"]))
211
+ }, null, 8, ["class", "color"]), [
212
+ [Z, a.editable && !l(I) && a.selectable]
213
+ ])
214
+ ]),
215
+ _: 1
216
+ }, 8, ["class", "label", "test-id", "color", "size", "variant", "disabled", "style", "onClick"])
217
+ ]),
218
+ _: 1
219
+ }, 8, ["text", "is-open", "disabled"])
220
+ ], 4));
221
+ }
222
+ });
223
+ export {
224
+ se as default
225
+ };
@@ -0,0 +1,159 @@
1
+ import Tag from './Tag.vue';
2
+ declare const TagTypes: () => import("vue").DefineComponent<{
3
+ label: {
4
+ type: import("vue").PropType<string>;
5
+ required: true;
6
+ default: string;
7
+ };
8
+ testId: {
9
+ type: import("vue").PropType<string>;
10
+ default: string;
11
+ };
12
+ variant: {
13
+ type: import("vue").PropType<"filled" | "outlined">;
14
+ default: string;
15
+ };
16
+ disabled: {
17
+ type: import("vue").PropType<boolean>;
18
+ default: boolean;
19
+ };
20
+ color: {
21
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
22
+ default: string;
23
+ };
24
+ size: {
25
+ type: import("vue").PropType<"small" | "medium">;
26
+ default: string;
27
+ };
28
+ iconName: {
29
+ type: import("vue").PropType<string>;
30
+ default: string;
31
+ };
32
+ rounded: {
33
+ type: import("vue").PropType<boolean>;
34
+ default: boolean;
35
+ };
36
+ maxLength: {
37
+ type: import("vue").PropType<number>;
38
+ default: any;
39
+ };
40
+ placeholder: {
41
+ type: import("vue").PropType<string>;
42
+ default: string;
43
+ };
44
+ isSelected: {
45
+ type: import("vue").PropType<boolean>;
46
+ required: true;
47
+ };
48
+ iconType: {
49
+ type: import("vue").PropType<"fill" | "regular">;
50
+ default: string;
51
+ };
52
+ editable: {
53
+ type: import("vue").PropType<boolean>;
54
+ default: boolean;
55
+ };
56
+ isInvalid: {
57
+ type: import("vue").PropType<boolean>;
58
+ default: boolean;
59
+ };
60
+ selectable: {
61
+ type: import("vue").PropType<boolean>;
62
+ default: boolean;
63
+ };
64
+ maxLengthTooltip: {
65
+ type: import("vue").PropType<string>;
66
+ default: string;
67
+ };
68
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
69
+ "update:label": (value: string) => void;
70
+ remove: () => void;
71
+ stopEditing: () => void;
72
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
73
+ label: {
74
+ type: import("vue").PropType<string>;
75
+ required: true;
76
+ default: string;
77
+ };
78
+ testId: {
79
+ type: import("vue").PropType<string>;
80
+ default: string;
81
+ };
82
+ variant: {
83
+ type: import("vue").PropType<"filled" | "outlined">;
84
+ default: string;
85
+ };
86
+ disabled: {
87
+ type: import("vue").PropType<boolean>;
88
+ default: boolean;
89
+ };
90
+ color: {
91
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
92
+ default: string;
93
+ };
94
+ size: {
95
+ type: import("vue").PropType<"small" | "medium">;
96
+ default: string;
97
+ };
98
+ iconName: {
99
+ type: import("vue").PropType<string>;
100
+ default: string;
101
+ };
102
+ rounded: {
103
+ type: import("vue").PropType<boolean>;
104
+ default: boolean;
105
+ };
106
+ maxLength: {
107
+ type: import("vue").PropType<number>;
108
+ default: any;
109
+ };
110
+ placeholder: {
111
+ type: import("vue").PropType<string>;
112
+ default: string;
113
+ };
114
+ isSelected: {
115
+ type: import("vue").PropType<boolean>;
116
+ required: true;
117
+ };
118
+ iconType: {
119
+ type: import("vue").PropType<"fill" | "regular">;
120
+ default: string;
121
+ };
122
+ editable: {
123
+ type: import("vue").PropType<boolean>;
124
+ default: boolean;
125
+ };
126
+ isInvalid: {
127
+ type: import("vue").PropType<boolean>;
128
+ default: boolean;
129
+ };
130
+ selectable: {
131
+ type: import("vue").PropType<boolean>;
132
+ default: boolean;
133
+ };
134
+ maxLengthTooltip: {
135
+ type: import("vue").PropType<string>;
136
+ default: string;
137
+ };
138
+ }>> & {
139
+ onRemove?: () => any;
140
+ "onUpdate:label"?: (value: string) => any;
141
+ onStopEditing?: () => any;
142
+ }, {
143
+ label: string;
144
+ testId: string;
145
+ variant: "filled" | "outlined";
146
+ disabled: boolean;
147
+ color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
148
+ size: "small" | "medium";
149
+ iconName: string;
150
+ rounded: boolean;
151
+ maxLength: number;
152
+ placeholder: string;
153
+ iconType: "fill" | "regular";
154
+ editable: boolean;
155
+ isInvalid: boolean;
156
+ selectable: boolean;
157
+ maxLengthTooltip: string;
158
+ }>[];
159
+ export { Tag, TagTypes };
@@ -0,0 +1,6 @@
1
+ import o from "./Tag.vue.js";
2
+ const r = () => [o];
3
+ export {
4
+ o as Tag,
5
+ r as TagTypes
6
+ };
@@ -1,5 +1,44 @@
1
1
  import TagsField from './TagsField.vue';
2
- declare const TagsFieldTypes: () => import("vue").DefineComponent<{
2
+ import TagsFieldChip from './TagsFieldChip.vue';
3
+ declare const TagsFieldTypes: () => (import("vue").DefineComponent<{
4
+ label: {
5
+ type: import("vue").PropType<string>;
6
+ required: true;
7
+ default: string;
8
+ };
9
+ testId: {
10
+ type: import("vue").PropType<string>;
11
+ default: string;
12
+ };
13
+ isInvalid: {
14
+ type: import("vue").PropType<boolean>;
15
+ default: boolean;
16
+ };
17
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ "update:label": (value: string) => void;
19
+ remove: () => void;
20
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
21
+ label: {
22
+ type: import("vue").PropType<string>;
23
+ required: true;
24
+ default: string;
25
+ };
26
+ testId: {
27
+ type: import("vue").PropType<string>;
28
+ default: string;
29
+ };
30
+ isInvalid: {
31
+ type: import("vue").PropType<boolean>;
32
+ default: boolean;
33
+ };
34
+ }>> & {
35
+ onRemove?: () => any;
36
+ "onUpdate:label"?: (value: string) => any;
37
+ }, {
38
+ label: string;
39
+ testId: string;
40
+ isInvalid: boolean;
41
+ }> | import("vue").DefineComponent<{
3
42
  testId: {
4
43
  type: import("vue").PropType<string>;
5
44
  default: string;
@@ -71,5 +110,5 @@ declare const TagsFieldTypes: () => import("vue").DefineComponent<{
71
110
  feedbackText: string;
72
111
  feedbackVariant: "success" | "warning" | "error";
73
112
  showFeedbackTextIcon: boolean;
74
- }>[];
75
- export { TagsField, TagsFieldTypes };
113
+ }>)[];
114
+ export { TagsField, TagsFieldChip, TagsFieldTypes };
@@ -1,6 +1,8 @@
1
- import e from "./TagsField.vue.js";
2
- const s = () => [e];
1
+ import i from "./TagsField.vue.js";
2
+ import o from "./TagsFieldChip.vue.js";
3
+ const r = () => [i, o];
3
4
  export {
4
- e as TagsField,
5
- s as TagsFieldTypes
5
+ i as TagsField,
6
+ o as TagsFieldChip,
7
+ r as TagsFieldTypes
6
8
  };