@indielayer/ui 1.8.0 → 1.8.2

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 (33) hide show
  1. package/docs/pages/component/form/usage.vue +1 -0
  2. package/docs/pages/component/modal/composed.vue +10 -1
  3. package/docs/pages/component/select/usage.vue +2 -2
  4. package/docs/pages/component/tag/usage.vue +5 -4
  5. package/lib/components/checkbox/Checkbox.vue.d.ts +4 -0
  6. package/lib/components/datepicker/Datepicker.vue.d.ts +4 -0
  7. package/lib/components/formGroup/FormGroup.vue.d.ts +4 -0
  8. package/lib/components/input/Input.vue.d.ts +4 -0
  9. package/lib/components/modal/Modal.vue.js +74 -70
  10. package/lib/components/radio/Radio.vue.d.ts +4 -0
  11. package/lib/components/select/Select.vue.d.ts +4 -0
  12. package/lib/components/select/Select.vue.js +188 -200
  13. package/lib/components/slider/Slider.vue.d.ts +4 -0
  14. package/lib/components/tag/Tag.vue.d.ts +4 -0
  15. package/lib/components/tag/Tag.vue.js +32 -31
  16. package/lib/components/tag/theme/Tag.base.theme.js +2 -2
  17. package/lib/components/tag/theme/Tag.carbon.theme.js +1 -1
  18. package/lib/components/textarea/Textarea.vue.d.ts +4 -0
  19. package/lib/components/toggle/Toggle.vue.d.ts +4 -0
  20. package/lib/composables/useInputtable.d.ts +1 -0
  21. package/lib/composables/useInputtable.js +31 -30
  22. package/lib/index.js +1 -1
  23. package/lib/index.umd.js +4 -4
  24. package/lib/version.d.ts +1 -1
  25. package/lib/version.js +1 -1
  26. package/package.json +1 -1
  27. package/src/components/modal/Modal.vue +11 -2
  28. package/src/components/select/Select.vue +17 -21
  29. package/src/components/tag/Tag.vue +9 -5
  30. package/src/components/tag/theme/Tag.base.theme.ts +6 -6
  31. package/src/components/tag/theme/Tag.carbon.theme.ts +1 -1
  32. package/src/composables/useInputtable.ts +6 -3
  33. package/src/version.ts +1 -1
@@ -71,6 +71,7 @@ function onSubmit(isValid: string) {
71
71
  v-model="country"
72
72
  :rules="[rules.isRequired]"
73
73
  :options="countries"
74
+ filterable
74
75
  name="country"
75
76
  placeholder="Select another country"
76
77
  label="Country"
@@ -9,6 +9,7 @@ const notifications = useNotifications()
9
9
  const email = ref('')
10
10
  const password = ref('')
11
11
  const description = ref('')
12
+ const datetime = ref('')
12
13
 
13
14
  const selected = ref()
14
15
  const options = [
@@ -62,7 +63,15 @@ function onSubmit(isValid: boolean) {
62
63
  placeholder="Description"
63
64
  hide-footer
64
65
  />
65
- <x-select v-model="selected" :options="options" label="Country" :rules="[rules.isRequired]"/>
66
+ <x-select
67
+ v-model="selected"
68
+ filterable
69
+ :options="options"
70
+ label="Country"
71
+ :rules="[rules.isRequired]"
72
+ />
73
+
74
+ <x-datepicker v-model="datetime" label="Start date" :rules="[rules.isRequired]"/>
66
75
 
67
76
  <!-- <template #tertiary-action>
68
77
  <x-button color="gray" size="lg">Tertiary</x-button>
@@ -4,7 +4,7 @@ import { ref } from 'vue'
4
4
  const selected = ref<undefined | string>()
5
5
  const selectedMultiple = ref<string[]>(['A', 'B'])
6
6
  const options = ref([
7
- { value: 'A', label: 'Option A' },
7
+ { value: 'A', label: 'Option A', disabled: true },
8
8
  { value: 'B', label: 'Option B' },
9
9
  ])
10
10
 
@@ -35,8 +35,8 @@ for (let i = 0; i < 20; i++) {
35
35
  v-model="selectedMultiple"
36
36
  label="Multi select"
37
37
  placeholder="Multiple"
38
- filterable
39
38
  :options="options"
39
+ filterable
40
40
  multiple
41
41
  />
42
42
  </div>
@@ -11,9 +11,10 @@ const notifications = useNotifications()
11
11
  <x-tag outlined>I'm a tag</x-tag>
12
12
  <x-tag rounded outlined color="pink">I'm a tag</x-tag>
13
13
  <x-tag color="pink">I'm a tag</x-tag>
14
- <x-tag removable @remove="notifications?.log('remove me')">I'm a tag</x-tag>
15
- <x-tag removable size="xs" @remove="notifications?.log('remove me')">I'm a tag</x-tag>
16
- <x-tag removable size="lg" @remove="notifications?.log('remove me')">I'm a tag</x-tag>
17
- <x-tag removable size="xl" @remove="notifications?.log('remove me')">I'm a tag</x-tag>
14
+ <x-tag removable size="xs" @remove="notifications?.log('remove me')">I'm a xs tag</x-tag>
15
+ <x-tag removable size="sm" @remove="notifications?.log('remove me')">I'm a sm tag</x-tag>
16
+ <x-tag removable disabled @remove="notifications?.log('remove me')">I'm a md tag</x-tag>
17
+ <x-tag removable size="lg" @remove="notifications?.log('remove me')">I'm a lg tag</x-tag>
18
+ <x-tag removable size="xl" @remove="notifications?.log('remove me')">I'm a xl tag</x-tag>
18
19
  </div>
19
20
  </template>
@@ -25,6 +25,7 @@ declare const checkboxProps: {
25
25
  readonly default: () => never[];
26
26
  };
27
27
  tooltip: StringConstructor;
28
+ skipFormRegistry: BooleanConstructor;
28
29
  disabled: BooleanConstructor;
29
30
  loading: BooleanConstructor;
30
31
  loadingLabel: StringConstructor;
@@ -76,6 +77,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
76
77
  readonly default: () => never[];
77
78
  };
78
79
  tooltip: StringConstructor;
80
+ skipFormRegistry: BooleanConstructor;
79
81
  disabled: BooleanConstructor;
80
82
  loading: BooleanConstructor;
81
83
  loadingLabel: StringConstructor;
@@ -124,6 +126,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
124
126
  readonly default: () => never[];
125
127
  };
126
128
  tooltip: StringConstructor;
129
+ skipFormRegistry: BooleanConstructor;
127
130
  disabled: BooleanConstructor;
128
131
  loading: BooleanConstructor;
129
132
  loadingLabel: StringConstructor;
@@ -156,6 +159,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
156
159
  validateOnInput: boolean;
157
160
  hideFooter: boolean;
158
161
  rules: unknown[];
162
+ skipFormRegistry: boolean;
159
163
  }, {}>, {
160
164
  icon?(_: {}): any;
161
165
  default?(_: {}): any;
@@ -552,6 +552,7 @@ declare const datepickerProps: {
552
552
  readonly default: () => never[];
553
553
  };
554
554
  tooltip: StringConstructor;
555
+ skipFormRegistry: BooleanConstructor;
555
556
  disabled: BooleanConstructor;
556
557
  loading: BooleanConstructor;
557
558
  loadingLabel: StringConstructor;
@@ -1118,6 +1119,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
1118
1119
  readonly default: () => never[];
1119
1120
  };
1120
1121
  tooltip: StringConstructor;
1122
+ skipFormRegistry: BooleanConstructor;
1121
1123
  disabled: BooleanConstructor;
1122
1124
  loading: BooleanConstructor;
1123
1125
  loadingLabel: StringConstructor;
@@ -1683,6 +1685,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
1683
1685
  readonly default: () => never[];
1684
1686
  };
1685
1687
  tooltip: StringConstructor;
1688
+ skipFormRegistry: BooleanConstructor;
1686
1689
  disabled: BooleanConstructor;
1687
1690
  loading: BooleanConstructor;
1688
1691
  loadingLabel: StringConstructor;
@@ -1709,6 +1712,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
1709
1712
  validateOnInput: boolean;
1710
1713
  hideFooter: boolean;
1711
1714
  rules: unknown[];
1715
+ skipFormRegistry: boolean;
1712
1716
  multiCalendars: import("@vuepic/vue-datepicker").DpOptionEnabled | Partial<{
1713
1717
  static: boolean;
1714
1718
  solo: boolean;
@@ -26,6 +26,7 @@ declare const formGroupProps: {
26
26
  readonly default: () => never[];
27
27
  };
28
28
  tooltip: StringConstructor;
29
+ skipFormRegistry: BooleanConstructor;
29
30
  disabled: BooleanConstructor;
30
31
  loading: BooleanConstructor;
31
32
  loadingLabel: StringConstructor;
@@ -75,6 +76,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
75
76
  readonly default: () => never[];
76
77
  };
77
78
  tooltip: StringConstructor;
79
+ skipFormRegistry: BooleanConstructor;
78
80
  disabled: BooleanConstructor;
79
81
  loading: BooleanConstructor;
80
82
  loadingLabel: StringConstructor;
@@ -114,6 +116,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
114
116
  readonly default: () => never[];
115
117
  };
116
118
  tooltip: StringConstructor;
119
+ skipFormRegistry: BooleanConstructor;
117
120
  disabled: BooleanConstructor;
118
121
  loading: BooleanConstructor;
119
122
  loadingLabel: StringConstructor;
@@ -133,6 +136,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
133
136
  validateOnInput: boolean;
134
137
  hideFooter: boolean;
135
138
  rules: unknown[];
139
+ skipFormRegistry: boolean;
136
140
  vertical: boolean;
137
141
  }, {}>, {
138
142
  default?(_: {}): any;
@@ -44,6 +44,7 @@ declare const inputProps: {
44
44
  readonly default: () => never[];
45
45
  };
46
46
  tooltip: StringConstructor;
47
+ skipFormRegistry: BooleanConstructor;
47
48
  disabled: BooleanConstructor;
48
49
  loading: BooleanConstructor;
49
50
  loadingLabel: StringConstructor;
@@ -112,6 +113,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
112
113
  readonly default: () => never[];
113
114
  };
114
115
  tooltip: StringConstructor;
116
+ skipFormRegistry: BooleanConstructor;
115
117
  disabled: BooleanConstructor;
116
118
  loading: BooleanConstructor;
117
119
  loadingLabel: StringConstructor;
@@ -178,6 +180,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
178
180
  readonly default: () => never[];
179
181
  };
180
182
  tooltip: StringConstructor;
183
+ skipFormRegistry: BooleanConstructor;
181
184
  disabled: BooleanConstructor;
182
185
  loading: BooleanConstructor;
183
186
  loadingLabel: StringConstructor;
@@ -210,6 +213,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
210
213
  validateOnInput: boolean;
211
214
  hideFooter: boolean;
212
215
  rules: unknown[];
216
+ skipFormRegistry: boolean;
213
217
  showPasswordToggle: boolean;
214
218
  dir: "rtl" | "ltr";
215
219
  }, {}>, {
@@ -1,12 +1,12 @@
1
- import { defineComponent as X, ref as f, watch as g, nextTick as B, useSlots as H, computed as I, openBlock as l, createBlock as p, Teleport as M, createElementBlock as r, normalizeStyle as j, unref as o, normalizeClass as t, createCommentVNode as a, createElementVNode as S, resolveDynamicComponent as K, withCtx as w, renderSlot as i, toDisplayString as v } from "vue";
2
- import { onClickOutside as L, useEventListener as q } from "../../node_modules/.pnpm/@vueuse_core@10.2.0_vue@3.3.9_typescript@5.2.2_/node_modules/@vueuse/core/index.js";
3
- import { useTheme as G } from "../../composables/useTheme.js";
4
- import { useFocusTrap as J } from "../../composables/useFocusTrap.js";
5
- import { closeIcon as Q } from "../../common/icons.js";
6
- import U from "../button/Button.vue.js";
7
- import Y from "../scroll/Scroll.vue.js";
8
- import Z from "../form/Form.vue.js";
9
- const _ = { key: 0 }, x = ["xs", "sm", "md", "lg", "xl", "full"], ee = ["top", "center", "bottom"], oe = {
1
+ import { defineComponent as X, ref as y, watch as S, nextTick as w, useSlots as H, computed as M, openBlock as t, createBlock as v, Teleport as j, createElementBlock as r, normalizeStyle as q, unref as o, normalizeClass as l, createCommentVNode as a, createElementVNode as B, resolveDynamicComponent as K, withCtx as $, renderSlot as i, toDisplayString as k } from "vue";
2
+ import { onClickOutside as L, useEventListener as G } from "../../node_modules/.pnpm/@vueuse_core@10.2.0_vue@3.3.9_typescript@5.2.2_/node_modules/@vueuse/core/index.js";
3
+ import { useTheme as J } from "../../composables/useTheme.js";
4
+ import { useFocusTrap as Q } from "../../composables/useFocusTrap.js";
5
+ import { closeIcon as U } from "../../common/icons.js";
6
+ import Y from "../button/Button.vue.js";
7
+ import Z from "../scroll/Scroll.vue.js";
8
+ import _ from "../form/Form.vue.js";
9
+ const x = { key: 0 }, ee = ["xs", "sm", "md", "lg", "xl", "full"], oe = ["top", "center", "bottom"], te = {
10
10
  size: {
11
11
  type: String,
12
12
  default: "lg"
@@ -52,68 +52,72 @@ const _ = { key: 0 }, x = ["xs", "sm", "md", "lg", "xl", "full"], ee = ["top", "
52
52
  }, le = {
53
53
  name: "XModal",
54
54
  validators: {
55
- size: x,
56
- position: ee
55
+ size: ee,
56
+ position: oe
57
57
  }
58
- }, ce = /* @__PURE__ */ X({
58
+ }, me = /* @__PURE__ */ X({
59
59
  ...le,
60
- props: oe,
60
+ props: te,
61
61
  emits: ["update:modelValue", "submit"],
62
- setup($, { expose: V, emit: C }) {
63
- const n = $, b = C, u = f(n.modelValue), d = f(!1), y = f(null), T = f(null), { initFocusTrap: z, clearFocusTrap: D } = J();
64
- let c;
65
- g(u, (e) => {
66
- c && (c(), c = void 0), e && setTimeout(() => {
67
- c = L(y, F, {
62
+ setup(V, { expose: C, emit: T }) {
63
+ const n = V, h = T, u = y(n.modelValue), d = y(!1), b = y(null), z = y(null), { initFocusTrap: A, clearFocusTrap: D } = Q();
64
+ let m;
65
+ S(u, (e) => {
66
+ m && (m(), m = void 0), e && setTimeout(() => {
67
+ m = L(b, P, {
68
68
  ignore: [".v-popper__popper"]
69
69
  });
70
70
  });
71
- }), g(() => n.modelValue, E, { immediate: !0 });
71
+ }), S(() => n.modelValue, E, { immediate: !0 });
72
72
  async function E() {
73
73
  const e = n.modelValue;
74
- e ? (u.value = e, await B(), d.value = e, await B(), z(y), document.body.style.overflow = "hidden") : (d.value = e, u.value = e, D(), document.body.style.overflow = "auto");
74
+ e ? (u.value = e, await w(), d.value = e, await w(), A(b), document.body.style.overflow = "hidden") : (d.value = e, u.value = e, D(), document.body.style.overflow = "auto");
75
75
  }
76
- typeof window < "u" && q(document, "keydown", A);
77
- function A(e) {
78
- e.key === "Escape" && u.value && !n.persistent && m();
76
+ typeof window < "u" && G(document, "keydown", O);
77
+ const F = (e) => [".v-popper__popper", ".x-datepicker"].some((c) => {
78
+ if (typeof c == "string")
79
+ return Array.from(window.document.querySelectorAll(c)).some((f) => f === e.target || e.composedPath().includes(f));
80
+ });
81
+ function O(e) {
82
+ e.key === "Escape" && !F(e) && u.value && !n.persistent && p();
79
83
  }
80
- function F() {
81
- n.persistent || m();
84
+ function P() {
85
+ n.persistent || p();
82
86
  }
83
- function m() {
87
+ function p() {
84
88
  d.value = !1, setTimeout(() => {
85
- b("update:modelValue", !1);
89
+ h("update:modelValue", !1);
86
90
  }, 150);
87
91
  }
88
- function O() {
89
- b("update:modelValue", !0), d.value = !0;
92
+ function R() {
93
+ h("update:modelValue", !0), d.value = !0;
90
94
  }
91
- const k = H(), R = I(() => !!(k["tertiary-action"] || k["cancel-action"])), { styles: N, classes: s, className: P } = G("Modal", {}, n, {
95
+ const g = H(), I = M(() => !!(g["tertiary-action"] || g["cancel-action"])), { styles: N, classes: s, className: W } = J("Modal", {}, n, {
92
96
  visible: d
93
97
  });
94
- return V({ open: O, close: m }), (e, h) => (l(), p(M, { to: "body" }, [
95
- u.value ? (l(), r("div", {
98
+ return C({ open: R, close: p }), (e, c) => (t(), v(j, { to: "body" }, [
99
+ u.value ? (t(), r("div", {
96
100
  key: 0,
97
101
  ref_key: "modalWrapperRef",
98
- ref: T,
99
- style: j(o(N)),
100
- class: t([
101
- o(P),
102
+ ref: z,
103
+ style: q(o(N)),
104
+ class: l([
105
+ o(W),
102
106
  o(s).wrapper,
103
107
  d.value ? "visible" : "invisible ease-in duration-100"
104
108
  ])
105
109
  }, [
106
- e.backdrop ? (l(), r("div", {
110
+ e.backdrop ? (t(), r("div", {
107
111
  key: 0,
108
- class: t(o(s).backdrop)
112
+ class: l(o(s).backdrop)
109
113
  }, null, 2)) : a("", !0),
110
- S("div", {
111
- class: t(o(s).modalWrapper)
114
+ B("div", {
115
+ class: l(o(s).modalWrapper)
112
116
  }, [
113
- (l(), p(K(e.isForm ? Z : "div"), {
117
+ (t(), v(K(e.isForm ? _ : "div"), {
114
118
  ref_key: "modalRef",
115
- ref: y,
116
- class: t(["max-h-full", o(s).modal]),
119
+ ref: b,
120
+ class: l(["max-h-full", o(s).modal]),
117
121
  disabled: e.formDisabled,
118
122
  "auto-validate": e.formAutoValidate,
119
123
  title: e.formTitle,
@@ -124,65 +128,65 @@ const _ = { key: 0 }, x = ["xs", "sm", "md", "lg", "xl", "full"], ee = ["top", "
124
128
  role: "dialog",
125
129
  "aria-modal": "true",
126
130
  "aria-labelledby": "modal-headline",
127
- onSubmit: h[0] || (h[0] = (W) => e.$emit("submit", W))
131
+ onSubmit: c[0] || (c[0] = (f) => e.$emit("submit", f))
128
132
  }, {
129
- default: w(() => [
133
+ default: $(() => [
130
134
  i(e.$slots, "image"),
131
135
  i(e.$slots, "header", {}, () => [
132
- e.hasHeader ? (l(), r("div", {
136
+ e.hasHeader ? (t(), r("div", {
133
137
  key: 0,
134
- class: t(o(s).header)
138
+ class: l(o(s).header)
135
139
  }, [
136
140
  i(e.$slots, "header-content", {}, () => [
137
- e.label ? (l(), r("div", {
141
+ e.label ? (t(), r("div", {
138
142
  key: 0,
139
- class: t(o(s).label)
140
- }, v(e.label), 3)) : a("", !0),
141
- e.title ? (l(), r("div", {
143
+ class: l(o(s).label)
144
+ }, k(e.label), 3)) : a("", !0),
145
+ e.title ? (t(), r("div", {
142
146
  key: 1,
143
- class: t(o(s).title)
144
- }, v(e.title), 3)) : a("", !0)
147
+ class: l(o(s).title)
148
+ }, k(e.title), 3)) : a("", !0)
145
149
  ])
146
150
  ], 2)) : a("", !0)
147
151
  ]),
148
- e.$slots.default ? (l(), p(Y, {
152
+ e.$slots.default ? (t(), v(Z, {
149
153
  key: 0,
150
154
  scrollbar: !1,
151
- class: t({
155
+ class: l({
152
156
  "h-full": e.size === "full"
153
157
  }),
154
158
  vertical: ""
155
159
  }, {
156
- default: w(() => [
157
- S("div", {
158
- class: t(o(s).content)
160
+ default: $(() => [
161
+ B("div", {
162
+ class: l(o(s).content)
159
163
  }, [
160
- e.description ? (l(), r("div", {
164
+ e.description ? (t(), r("div", {
161
165
  key: 0,
162
- class: t(o(s).description)
163
- }, v(e.description), 3)) : a("", !0),
166
+ class: l(o(s).description)
167
+ }, k(e.description), 3)) : a("", !0),
164
168
  i(e.$slots, "default")
165
169
  ], 2)
166
170
  ]),
167
171
  _: 3
168
172
  }, 8, ["class"])) : a("", !0),
169
- e.showClose ? (l(), p(U, {
173
+ e.showClose ? (t(), v(Y, {
170
174
  key: 1,
171
175
  ghost: "",
172
176
  size: "sm",
173
177
  tabindex: "-1",
174
- icon: o(Q),
175
- class: t(o(s).closeIcon),
176
- onClick: m
178
+ icon: o(U),
179
+ class: l(o(s).closeIcon),
180
+ onClick: p
177
181
  }, null, 8, ["icon", "class"])) : a("", !0),
178
182
  i(e.$slots, "footer", {}, () => [
179
- e.hasActions ? (l(), r("div", {
183
+ e.hasActions ? (t(), r("div", {
180
184
  key: 0,
181
- class: t(o(s).actions)
185
+ class: l(o(s).actions)
182
186
  }, [
183
187
  i(e.$slots, "actions", {}, () => [
184
188
  i(e.$slots, "cancel-action"),
185
- R.value ? (l(), r("div", _)) : a("", !0),
189
+ I.value ? (t(), r("div", x)) : a("", !0),
186
190
  i(e.$slots, "tertiary-action"),
187
191
  i(e.$slots, "secondary-action"),
188
192
  i(e.$slots, "primary-action")
@@ -198,5 +202,5 @@ const _ = { key: 0 }, x = ["xs", "sm", "md", "lg", "xl", "full"], ee = ["top", "
198
202
  }
199
203
  });
200
204
  export {
201
- ce as default
205
+ me as default
202
206
  };
@@ -24,6 +24,7 @@ declare const radioProps: {
24
24
  readonly default: () => never[];
25
25
  };
26
26
  tooltip: StringConstructor;
27
+ skipFormRegistry: BooleanConstructor;
27
28
  disabled: BooleanConstructor;
28
29
  loading: BooleanConstructor;
29
30
  loadingLabel: StringConstructor;
@@ -74,6 +75,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
74
75
  readonly default: () => never[];
75
76
  };
76
77
  tooltip: StringConstructor;
78
+ skipFormRegistry: BooleanConstructor;
77
79
  disabled: BooleanConstructor;
78
80
  loading: BooleanConstructor;
79
81
  loadingLabel: StringConstructor;
@@ -120,6 +122,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
120
122
  readonly default: () => never[];
121
123
  };
122
124
  tooltip: StringConstructor;
125
+ skipFormRegistry: BooleanConstructor;
123
126
  disabled: BooleanConstructor;
124
127
  loading: BooleanConstructor;
125
128
  loadingLabel: StringConstructor;
@@ -151,6 +154,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
151
154
  validateOnInput: boolean;
152
155
  hideFooter: boolean;
153
156
  rules: unknown[];
157
+ skipFormRegistry: boolean;
154
158
  }, {}>, {
155
159
  default?(_: {}): any;
156
160
  }>;
@@ -32,6 +32,7 @@ declare const selectProps: {
32
32
  readonly default: () => never[];
33
33
  };
34
34
  tooltip: StringConstructor;
35
+ skipFormRegistry: BooleanConstructor;
35
36
  disabled: BooleanConstructor;
36
37
  loading: BooleanConstructor;
37
38
  loadingLabel: StringConstructor;
@@ -93,6 +94,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
93
94
  readonly default: () => never[];
94
95
  };
95
96
  tooltip: StringConstructor;
97
+ skipFormRegistry: BooleanConstructor;
96
98
  disabled: BooleanConstructor;
97
99
  loading: BooleanConstructor;
98
100
  loadingLabel: StringConstructor;
@@ -147,6 +149,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
147
149
  readonly default: () => never[];
148
150
  };
149
151
  tooltip: StringConstructor;
152
+ skipFormRegistry: BooleanConstructor;
150
153
  disabled: BooleanConstructor;
151
154
  loading: BooleanConstructor;
152
155
  loadingLabel: StringConstructor;
@@ -178,6 +181,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
178
181
  validateOnInput: boolean;
179
182
  hideFooter: boolean;
180
183
  rules: unknown[];
184
+ skipFormRegistry: boolean;
181
185
  multiple: boolean;
182
186
  native: boolean;
183
187
  filterable: boolean;