@ironsource/shared-ui 2.1.6-test.14 → 2.1.6-test.15

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 (109) hide show
  1. package/Alert.vue_vue_type_style_index_0_scoped_06e0871a_lang.css +1 -0
  2. package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_858cefbf_lang.css +1 -0
  3. package/ChipV4.vue_vue_type_style_index_0_scoped_12c0f396_lang.css +1 -0
  4. package/DataGrid.vue_vue_type_style_index_0_scoped_057abdf5_lang.css +1 -0
  5. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_0345d6b1_lang.css +1 -0
  6. package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +1 -0
  7. package/FoldableSection.vue_vue_type_style_index_0_scoped_1a5f0e2e_lang.css +1 -0
  8. package/HelpIcon.vue_vue_type_style_index_0_scoped_06fce2e3_lang.css +1 -0
  9. package/IconV4.vue_vue_type_style_index_0_scoped_9d3c9cda_lang.css +1 -0
  10. package/InlineCopy.vue_vue_type_style_index_0_scoped_893a203c_lang.css +1 -0
  11. package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +1 -0
  12. package/README.md +35 -0
  13. package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +1 -0
  14. package/ToggleV4.vue_vue_type_style_index_0_scoped_a4aa32fb_lang.css +1 -0
  15. package/TreeDropdown.vue_vue_type_style_index_0_scoped_142eab98_lang.css +1 -0
  16. package/components/alert/Alert.vue.d.ts +28 -0
  17. package/components/alert/Alert.vue.js +4 -4
  18. package/components/alert/Alert.vue2.js +67 -46
  19. package/components/alert/index.d.ts +104 -2
  20. package/components/autocomplete/Autocomplete.vue.d.ts +1 -0
  21. package/components/autocomplete/Autocomplete.vue2.js +6 -5
  22. package/components/autocomplete/index.d.ts +1 -0
  23. package/components/button/v4/ButtonV4.vue.d.ts +7 -7
  24. package/components/button/v4/IconButtonV4.vue.d.ts +4 -4
  25. package/components/button/v4/index.d.ts +61 -61
  26. package/components/chip/v4/Chip.types.d.ts +6 -0
  27. package/components/chip/v4/ChipV4.vue.d.ts +28 -35
  28. package/components/chip/v4/ChipV4.vue.js +3 -3
  29. package/components/chip/v4/ChipV4.vue2.js +28 -59
  30. package/components/chip/v4/index.d.ts +45 -148
  31. package/components/datePicker/common/DatePicker.common.js +14 -14
  32. package/components/datePicker/v4/DatePickerV4.vue2.js +3 -2
  33. package/components/dateRange/v4/DateRangeV4.vue2.js +3 -2
  34. package/components/dialog/v3/Dialog.vue.d.ts +1 -1
  35. package/components/dialog/v3/index.d.ts +20 -20
  36. package/components/dropdown/common/Dropdown.common.js +80 -75
  37. package/components/dropdown/common/Option.common.d.ts +1 -1
  38. package/components/dropdown/common/Option.common.js +9 -9
  39. package/components/dropdown/composables/useChildOptions.d.ts +7 -0
  40. package/components/dropdown/composables/useChildOptions.js +14 -0
  41. package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +14 -3
  42. package/components/dropdown/v4/AppDropdownTrigger.vue.js +3 -3
  43. package/components/dropdown/v4/AppDropdownTrigger.vue2.js +102 -61
  44. package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +8 -3
  45. package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
  46. package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +22 -21
  47. package/components/dropdown/v4/DropdownV4.vue.d.ts +22 -6
  48. package/components/dropdown/v4/DropdownV4.vue.js +2 -2
  49. package/components/dropdown/v4/DropdownV4.vue2.js +81 -73
  50. package/components/dropdown/v4/OptionV4.vue.d.ts +6 -6
  51. package/components/dropdown/v4/OptionV4.vue.js +3 -3
  52. package/components/dropdown/v4/OptionV4.vue2.js +51 -45
  53. package/components/dropdown/v4/TreeDropdown.vue.d.ts +112 -0
  54. package/components/dropdown/v4/TreeDropdown.vue.js +7 -0
  55. package/components/dropdown/v4/TreeDropdown.vue2.js +122 -0
  56. package/components/dropdown/v4/dropdownStoryArgs.d.ts +1 -1
  57. package/components/dropdown/v4/index.d.ts +332 -49
  58. package/components/dropdown/v4/index.js +7 -4
  59. package/components/emptyState/v3/EmptyState.vue.d.ts +2 -2
  60. package/components/emptyState/v3/index.d.ts +47 -47
  61. package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
  62. package/components/emptyState/v4/index.d.ts +7 -7
  63. package/components/icon/v4/Icon.types.d.ts +1 -1
  64. package/components/icon/v4/IconV4.vue.d.ts +16 -6
  65. package/components/icon/v4/IconV4.vue.js +4 -4
  66. package/components/icon/v4/IconV4.vue2.js +36 -33
  67. package/components/icon/v4/index.d.ts +53 -15
  68. package/components/inlineCopy/InlineCopy.vue.js +2 -2
  69. package/components/inlineCopy/InlineCopy.vue2.js +1 -1
  70. package/components/layout/FoldableSection.vue.js +5 -5
  71. package/components/layout/FoldableSection.vue2.js +1 -1
  72. package/components/multibar/MultiBarMenu.vue2.js +12 -11
  73. package/components/snackbar/v4/SnackbarV4.vue.d.ts +20 -20
  74. package/components/table/common/Table.common.d.ts +1 -0
  75. package/components/table/common/Table.common.js +65 -61
  76. package/components/table/v4/DataGrid.vue.d.ts +5 -1
  77. package/components/table/v4/DataGrid.vue.js +3 -3
  78. package/components/table/v4/DataGrid.vue2.js +166 -162
  79. package/components/table/v4/DataGridMenu.vue2.js +3 -2
  80. package/components/table/v4/HelpIcon.vue.js +5 -5
  81. package/components/table/v4/HelpIcon.vue2.js +5 -5
  82. package/components/table/v4/index.d.ts +16 -4
  83. package/components/textArea/v4/TextAreaV4.vue.js +3 -3
  84. package/components/textArea/v4/TextAreaV4.vue2.js +1 -1
  85. package/components/toggle/v4/ToggleV4.vue.d.ts +1 -1
  86. package/components/toggle/v4/ToggleV4.vue.js +3 -3
  87. package/components/toggle/v4/ToggleV4.vue2.js +12 -12
  88. package/components/toggle/v4/index.d.ts +20 -20
  89. package/composables/useFormValidation.js +19 -13
  90. package/design-foundation.stories/icons/iconsData.d.ts +5 -1
  91. package/index.d.ts +1091 -632
  92. package/mocks/apps.d.ts +1 -0
  93. package/mocks/options.d.ts +12 -0
  94. package/package.json +1 -1
  95. package/utils/text.d.ts +1 -0
  96. package/utils/text.js +9 -0
  97. package/Alert.vue_vue_type_style_index_0_scoped_d6680a72_lang.css +0 -1
  98. package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_39c47ad1_lang.css +0 -1
  99. package/ChipV4.vue_vue_type_style_index_0_scoped_78d7c9c0_lang.css +0 -1
  100. package/DataGrid.vue_vue_type_style_index_0_scoped_6df3b70f_lang.css +0 -1
  101. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_ad524750_lang.css +0 -1
  102. package/DropdownV4.vue_vue_type_style_index_0_scoped_0363db63_lang.css +0 -1
  103. package/FoldableSection.vue_vue_type_style_index_0_scoped_8d0fd203_lang.css +0 -1
  104. package/HelpIcon.vue_vue_type_style_index_0_scoped_7a611779_lang.css +0 -1
  105. package/IconV4.vue_vue_type_style_index_0_scoped_a78f8a3e_lang.css +0 -1
  106. package/InlineCopy.vue_vue_type_style_index_0_scoped_6a7b3795_lang.css +0 -1
  107. package/OptionV4.vue_vue_type_style_index_0_scoped_e0c24b6a_lang.css +0 -1
  108. package/TextAreaV4.vue_vue_type_style_index_0_scoped_8199b662_lang.css +0 -1
  109. package/ToggleV4.vue_vue_type_style_index_0_scoped_ad231e8c_lang.css +0 -1
@@ -1,165 +1,62 @@
1
- declare const ChipTypes: () => ({
2
- new (...args: any[]): {
3
- $: import("vue").ComponentInternalInstance;
4
- $data: {};
5
- $props: Partial<{
6
- disabled: boolean;
7
- testId: string;
8
- selected: boolean;
9
- prefix: string;
10
- clearable: boolean;
11
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
12
- disabled: {
13
- type: import("vue").PropType<boolean>;
14
- default: boolean;
15
- };
16
- testId: {
17
- type: import("vue").PropType<string>;
18
- default: string;
19
- };
20
- selected: {
21
- type: import("vue").PropType<boolean>;
22
- default: boolean;
23
- };
24
- prefix: {
25
- type: import("vue").PropType<string>;
26
- default: any;
27
- };
28
- clearable: {
29
- type: import("vue").PropType<boolean>;
30
- default: boolean;
31
- };
32
- }>> & {
33
- onCleared?: (...args: any[]) => any;
34
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "selected" | "prefix" | "clearable">;
35
- $attrs: {
36
- [x: string]: unknown;
37
- };
38
- $refs: {
39
- [x: string]: unknown;
40
- };
41
- $slots: Readonly<{
42
- [name: string]: import("vue").Slot;
43
- }>;
44
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
45
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
46
- $emit: (event: "cleared", ...args: any[]) => void;
47
- $el: any;
48
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
49
- disabled: {
50
- type: import("vue").PropType<boolean>;
51
- default: boolean;
52
- };
53
- testId: {
54
- type: import("vue").PropType<string>;
55
- default: string;
56
- };
57
- selected: {
58
- type: import("vue").PropType<boolean>;
59
- default: boolean;
60
- };
61
- prefix: {
62
- type: import("vue").PropType<string>;
63
- default: any;
64
- };
65
- clearable: {
66
- type: import("vue").PropType<boolean>;
67
- default: boolean;
68
- };
69
- }>> & {
70
- onCleared?: (...args: any[]) => any;
71
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
72
- cleared: (...args: any[]) => void;
73
- }, string, {
74
- disabled: boolean;
75
- testId: string;
76
- selected: boolean;
77
- prefix: string;
78
- clearable: boolean;
79
- }, {}, string> & {
80
- beforeCreate?: (() => void) | (() => void)[];
81
- created?: (() => void) | (() => void)[];
82
- beforeMount?: (() => void) | (() => void)[];
83
- mounted?: (() => void) | (() => void)[];
84
- beforeUpdate?: (() => void) | (() => void)[];
85
- updated?: (() => void) | (() => void)[];
86
- activated?: (() => void) | (() => void)[];
87
- deactivated?: (() => void) | (() => void)[];
88
- beforeDestroy?: (() => void) | (() => void)[];
89
- beforeUnmount?: (() => void) | (() => void)[];
90
- destroyed?: (() => void) | (() => void)[];
91
- unmounted?: (() => void) | (() => void)[];
92
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
93
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
94
- 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)[];
95
- };
96
- $forceUpdate: () => void;
97
- $nextTick: typeof import("vue").nextTick;
98
- $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;
99
- } & Readonly<import("vue").ExtractPropTypes<{
100
- disabled: {
101
- type: import("vue").PropType<boolean>;
102
- default: boolean;
103
- };
104
- testId: {
105
- type: import("vue").PropType<string>;
106
- default: string;
107
- };
108
- selected: {
109
- type: import("vue").PropType<boolean>;
110
- default: boolean;
111
- };
112
- prefix: {
113
- type: import("vue").PropType<string>;
114
- default: any;
115
- };
116
- clearable: {
117
- type: import("vue").PropType<boolean>;
118
- default: boolean;
119
- };
120
- }>> & {
121
- onCleared?: (...args: any[]) => any;
122
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
123
- __isFragment?: never;
124
- __isTeleport?: never;
125
- __isSuspense?: never;
126
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1
+ declare const ChipTypes: () => import("vue").DefineComponent<{
2
+ label: {
3
+ type: import("vue").PropType<string>;
4
+ required: true;
5
+ default: string;
6
+ };
7
+ variant: {
8
+ type: import("vue").PropType<"filled" | "outlined">;
9
+ default: string;
10
+ };
127
11
  disabled: {
128
12
  type: import("vue").PropType<boolean>;
129
13
  default: boolean;
130
14
  };
15
+ color: {
16
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
17
+ default: string;
18
+ };
19
+ size: {
20
+ type: import("vue").PropType<"small" | "medium">;
21
+ default: string;
22
+ };
131
23
  testId: {
132
24
  type: import("vue").PropType<string>;
133
25
  default: string;
134
26
  };
135
- selected: {
136
- type: import("vue").PropType<boolean>;
137
- default: boolean;
138
- };
139
- prefix: {
27
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
28
+ label: {
140
29
  type: import("vue").PropType<string>;
141
- default: any;
30
+ required: true;
31
+ default: string;
142
32
  };
143
- clearable: {
33
+ variant: {
34
+ type: import("vue").PropType<"filled" | "outlined">;
35
+ default: string;
36
+ };
37
+ disabled: {
144
38
  type: import("vue").PropType<boolean>;
145
39
  default: boolean;
146
40
  };
147
- }>> & {
148
- onCleared?: (...args: any[]) => any;
149
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
150
- cleared: (...args: any[]) => void;
151
- }, string, {
41
+ color: {
42
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
43
+ default: string;
44
+ };
45
+ size: {
46
+ type: import("vue").PropType<"small" | "medium">;
47
+ default: string;
48
+ };
49
+ testId: {
50
+ type: import("vue").PropType<string>;
51
+ default: string;
52
+ };
53
+ }>>, {
54
+ label: string;
55
+ variant: "filled" | "outlined";
152
56
  disabled: boolean;
57
+ color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
58
+ size: "small" | "medium";
153
59
  testId: string;
154
- selected: boolean;
155
- prefix: string;
156
- clearable: boolean;
157
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
158
- $slots: {
159
- "icon-start"?(_: {}): any;
160
- default?(_: {}): any;
161
- "icon-end"?(_: {}): any;
162
- };
163
- }))[];
60
+ }>[];
164
61
  export { default as Chip } from './ChipV4.vue';
165
62
  export { ChipTypes };
@@ -1,50 +1,50 @@
1
- import { onClickOutside as p } from "@vueuse/core";
1
+ import { onClickOutside as h } from "@vueuse/core";
2
2
  import { ref as m, computed as a } from "vue";
3
- import { useToggle as v } from "../../../composables/useToggle.js";
3
+ import { useToggle as p } from "../../../composables/useToggle.js";
4
4
  import { isValid as d, format as k, parse as F, isFuture as C } from "date-fns";
5
5
  const T = (t, c) => {
6
- const u = m(null), f = m(null), [o, s] = v({ initialValue: !1 }), l = () => {
6
+ const u = m(null), f = m(null), [l, s] = p({ initialValue: !1 }), o = () => {
7
7
  s(!1);
8
8
  }, g = (e) => {
9
9
  const n = e.target.value;
10
- if (!o) {
10
+ if (!l.value) {
11
11
  c("update:modelValue", n);
12
12
  return;
13
13
  }
14
14
  const i = F(n, t.dateFormat, /* @__PURE__ */ new Date());
15
15
  n.trim() || r(null), d(i) && (!t.allowFutureDates && C(i) || r(i));
16
16
  }, r = (e) => {
17
- l(), c("update:modelValue", e);
17
+ o(), c("update:modelValue", e);
18
18
  }, V = a(() => `datePicker${t.uniqueId || Math.random().toString().substring(2, 7)}`), D = a(() => {
19
19
  const e = new Date(t.modelValue);
20
20
  return d(t.modelValue) ? k(e, t.dateFormat) : t.modelValue;
21
- }), w = a(() => {
22
- if (!u.value || !o)
21
+ }), v = a(() => {
22
+ if (!u.value || !l)
23
23
  return !1;
24
24
  const e = u.value.getBoundingClientRect(), n = 232;
25
25
  return window.innerWidth - (e.x + n) < 0;
26
- }), h = a(() => {
26
+ }), w = a(() => {
27
27
  if (!t.modelValue)
28
28
  return null;
29
29
  const e = new Date(t.modelValue);
30
30
  return d(e) ? e : null;
31
31
  });
32
- return p(
32
+ return h(
33
33
  f,
34
34
  () => {
35
- l();
35
+ o();
36
36
  },
37
37
  { ignore: [u] }
38
38
  ), {
39
- close: l,
39
+ close: o,
40
40
  handleInput: g,
41
41
  updateValue: r,
42
42
  toggle: s,
43
- isOpen: o,
43
+ isOpen: l,
44
44
  componentId: V,
45
45
  formattedValue: D,
46
- nearTheEdge: w,
47
- valueAsDate: h
46
+ nearTheEdge: v,
47
+ valueAsDate: w
48
48
  };
49
49
  };
50
50
  export {
@@ -9,8 +9,9 @@ import "../../dropdown/v4/ChipDropdownTrigger.vue.js";
9
9
  import "../../dropdown/v4/AppDropdownTrigger.vue.js";
10
10
  import "../../dropdown/v4/ButtonDropdownTrigger.vue.js";
11
11
  import w from "../../dropdown/v4/ButtonFilterDropdownTrigger.vue.js";
12
+ import "../../dropdown/v4/TreeDropdown.vue.js";
12
13
  import "../../dropdown/v4/OptionV4.vue.js";
13
- const $ = ["id", "data-testid"], z = /* @__PURE__ */ g({
14
+ const $ = ["id", "data-testid"], O = /* @__PURE__ */ g({
14
15
  __name: "DatePickerV4",
15
16
  props: {
16
17
  uniqueId: { default: Date.now() },
@@ -69,5 +70,5 @@ const $ = ["id", "data-testid"], z = /* @__PURE__ */ g({
69
70
  }
70
71
  });
71
72
  export {
72
- z as default
73
+ O as default
73
74
  };
@@ -10,6 +10,7 @@ import "../../dropdown/v4/ChipDropdownTrigger.vue.js";
10
10
  import "../../dropdown/v4/AppDropdownTrigger.vue.js";
11
11
  import "../../dropdown/v4/ButtonDropdownTrigger.vue.js";
12
12
  import ee from "../../dropdown/v4/ButtonFilterDropdownTrigger.vue.js";
13
+ import "../../dropdown/v4/TreeDropdown.vue.js";
13
14
  import "../../dropdown/v4/OptionV4.vue.js";
14
15
  import { DateRangeTestIdModifiers as o, DatePickerTestIdModifiers as te } from "../../../testids/index.js";
15
16
  import { dateRangeCommon as ae } from "../common/DateRange.common.js";
@@ -17,7 +18,7 @@ import p from "../../typography/v4/Typography.vue.js";
17
18
  const de = ["id", "data-testid"], ne = ["data-testid"], se = ["id", "data-testid"], ie = {
18
19
  key: 0,
19
20
  class: "type-picker"
20
- }, oe = ["onClick"], le = ["data-testid"], re = ["id"], ue = ["id"], ce = ["onClick"], me = { class: "dropdown-rightTriangle" }, pe = ["data-testid"], ye = { class: "date-picker-calendar left-box" }, ge = { class: "buttons-cover" }, fe = { class: "range" }, he = { class: "text-container" }, Me = /* @__PURE__ */ J({
21
+ }, oe = ["onClick"], le = ["data-testid"], re = ["id"], ue = ["id"], ce = ["onClick"], me = { class: "dropdown-rightTriangle" }, pe = ["data-testid"], ye = { class: "date-picker-calendar left-box" }, ge = { class: "buttons-cover" }, fe = { class: "range" }, he = { class: "text-container" }, Se = /* @__PURE__ */ J({
21
22
  __name: "DateRangeV4",
22
23
  props: {
23
24
  range: null,
@@ -258,5 +259,5 @@ const de = ["id", "data-testid"], ne = ["data-testid"], se = ["id", "data-testid
258
259
  }
259
260
  });
260
261
  export {
261
- Me as default
262
+ Se as default
262
263
  };
@@ -72,8 +72,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
72
72
  }, {
73
73
  title: string;
74
74
  themeClass: string;
75
- content: string;
76
75
  width: string | number;
76
+ content: string;
77
77
  testId: string;
78
78
  appendToBody: boolean;
79
79
  closeDelay: number;
@@ -5,8 +5,8 @@ declare const DialogTypes: () => ({
5
5
  $props: Partial<{
6
6
  title: string;
7
7
  themeClass: string;
8
- content: string;
9
8
  width: string | number;
9
+ content: string;
10
10
  testId: string;
11
11
  appendToBody: boolean;
12
12
  closeDelay: number;
@@ -26,14 +26,14 @@ declare const DialogTypes: () => ({
26
26
  type: import("vue").PropType<string>;
27
27
  default: string;
28
28
  };
29
- content: {
30
- type: import("vue").PropType<string>;
31
- default: any;
32
- };
33
29
  width: {
34
30
  type: import("vue").PropType<string | number>;
35
31
  default: string;
36
32
  };
33
+ content: {
34
+ type: import("vue").PropType<string>;
35
+ default: any;
36
+ };
37
37
  testId: {
38
38
  type: import("vue").PropType<string>;
39
39
  default: string;
@@ -82,7 +82,7 @@ declare const DialogTypes: () => ({
82
82
  onClose?: (reason: import("../common/Reason").Reason) => any;
83
83
  "onUpdate:modelValue"?: (value: boolean) => any;
84
84
  onOpen?: () => any;
85
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "themeClass" | "content" | "width" | "testId" | "appendToBody" | "closeDelay" | "openDelay" | "escapeToClose" | "showBackdrop" | "headerBorder" | "closeOnClickOutside" | "beforeClose" | "showCloseButton">;
85
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "themeClass" | "width" | "content" | "testId" | "appendToBody" | "closeDelay" | "openDelay" | "escapeToClose" | "showBackdrop" | "headerBorder" | "closeOnClickOutside" | "beforeClose" | "showCloseButton">;
86
86
  $attrs: {
87
87
  [x: string]: unknown;
88
88
  };
@@ -105,14 +105,14 @@ declare const DialogTypes: () => ({
105
105
  type: import("vue").PropType<string>;
106
106
  default: string;
107
107
  };
108
- content: {
109
- type: import("vue").PropType<string>;
110
- default: any;
111
- };
112
108
  width: {
113
109
  type: import("vue").PropType<string | number>;
114
110
  default: string;
115
111
  };
112
+ content: {
113
+ type: import("vue").PropType<string>;
114
+ default: any;
115
+ };
116
116
  testId: {
117
117
  type: import("vue").PropType<string>;
118
118
  default: string;
@@ -168,8 +168,8 @@ declare const DialogTypes: () => ({
168
168
  }, string, {
169
169
  title: string;
170
170
  themeClass: string;
171
- content: string;
172
171
  width: string | number;
172
+ content: string;
173
173
  testId: string;
174
174
  appendToBody: boolean;
175
175
  closeDelay: number;
@@ -209,14 +209,14 @@ declare const DialogTypes: () => ({
209
209
  type: import("vue").PropType<string>;
210
210
  default: string;
211
211
  };
212
- content: {
213
- type: import("vue").PropType<string>;
214
- default: any;
215
- };
216
212
  width: {
217
213
  type: import("vue").PropType<string | number>;
218
214
  default: string;
219
215
  };
216
+ content: {
217
+ type: import("vue").PropType<string>;
218
+ default: any;
219
+ };
220
220
  testId: {
221
221
  type: import("vue").PropType<string>;
222
222
  default: string;
@@ -278,14 +278,14 @@ declare const DialogTypes: () => ({
278
278
  type: import("vue").PropType<string>;
279
279
  default: string;
280
280
  };
281
- content: {
282
- type: import("vue").PropType<string>;
283
- default: any;
284
- };
285
281
  width: {
286
282
  type: import("vue").PropType<string | number>;
287
283
  default: string;
288
284
  };
285
+ content: {
286
+ type: import("vue").PropType<string>;
287
+ default: any;
288
+ };
289
289
  testId: {
290
290
  type: import("vue").PropType<string>;
291
291
  default: string;
@@ -341,8 +341,8 @@ declare const DialogTypes: () => ({
341
341
  }, string, {
342
342
  title: string;
343
343
  themeClass: string;
344
- content: string;
345
344
  width: string | number;
345
+ content: string;
346
346
  testId: string;
347
347
  appendToBody: boolean;
348
348
  closeDelay: number;