nuance-ui 0.2.18 → 0.2.20

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 (57) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/center.d.vue.ts +18 -0
  3. package/dist/runtime/components/center.vue +26 -0
  4. package/dist/runtime/components/center.vue.d.ts +18 -0
  5. package/dist/runtime/components/dialog/index.d.ts +2 -0
  6. package/dist/runtime/components/dialog/ui/dialog-footer.d.vue.ts +16 -0
  7. package/dist/runtime/components/dialog/ui/dialog-footer.vue +16 -0
  8. package/dist/runtime/components/dialog/ui/dialog-footer.vue.d.ts +16 -0
  9. package/dist/runtime/components/dialog/ui/dialog-root.d.vue.ts +2 -2
  10. package/dist/runtime/components/dialog/ui/dialog-root.vue +9 -4
  11. package/dist/runtime/components/dialog/ui/dialog-root.vue.d.ts +2 -2
  12. package/dist/runtime/components/dialog/ui/dialog-section.d.vue.ts +17 -0
  13. package/dist/runtime/components/dialog/ui/dialog-section.vue +17 -0
  14. package/dist/runtime/components/dialog/ui/dialog-section.vue.d.ts +17 -0
  15. package/dist/runtime/components/dialog/ui/dialog.module.css +1 -1
  16. package/dist/runtime/components/drawer/drawer-footer.d.vue.ts +16 -0
  17. package/dist/runtime/components/drawer/drawer-footer.vue +13 -0
  18. package/dist/runtime/components/drawer/drawer-footer.vue.d.ts +16 -0
  19. package/dist/runtime/components/drawer/drawer-root.vue +1 -0
  20. package/dist/runtime/components/drawer/drawer-section.d.vue.ts +16 -0
  21. package/dist/runtime/components/drawer/drawer-section.vue +14 -0
  22. package/dist/runtime/components/drawer/drawer-section.vue.d.ts +16 -0
  23. package/dist/runtime/components/drawer/index.d.ts +2 -0
  24. package/dist/runtime/components/group.d.vue.ts +28 -0
  25. package/dist/runtime/components/group.vue +39 -0
  26. package/dist/runtime/components/group.vue.d.ts +28 -0
  27. package/dist/runtime/components/input/ui/input-base.d.vue.ts +1 -0
  28. package/dist/runtime/components/input/ui/input-base.vue +3 -2
  29. package/dist/runtime/components/input/ui/input-base.vue.d.ts +1 -0
  30. package/dist/runtime/components/modal/index.d.ts +0 -2
  31. package/dist/runtime/components/modal/modal-footer.d.vue.ts +14 -0
  32. package/dist/runtime/components/modal/modal-footer.vue +13 -0
  33. package/dist/runtime/components/modal/modal-footer.vue.d.ts +14 -0
  34. package/dist/runtime/components/modal/modal-header.d.vue.ts +1 -3
  35. package/dist/runtime/components/modal/modal-header.vue.d.ts +1 -3
  36. package/dist/runtime/components/modal/modal-root.d.vue.ts +1 -2
  37. package/dist/runtime/components/modal/modal-root.vue +3 -1
  38. package/dist/runtime/components/modal/modal-root.vue.d.ts +1 -2
  39. package/dist/runtime/components/modal/modal-section.d.vue.ts +14 -0
  40. package/dist/runtime/components/modal/modal-section.vue +14 -0
  41. package/dist/runtime/components/modal/modal-section.vue.d.ts +14 -0
  42. package/dist/runtime/components/modal/modal-title.d.vue.ts +1 -3
  43. package/dist/runtime/components/modal/modal-title.vue.d.ts +1 -3
  44. package/dist/runtime/components/pin-input/lib.d.ts +2 -0
  45. package/dist/runtime/components/pin-input/lib.js +19 -0
  46. package/dist/runtime/components/pin-input/pin-input.d.vue.ts +55 -0
  47. package/dist/runtime/components/pin-input/pin-input.vue +171 -0
  48. package/dist/runtime/components/pin-input/pin-input.vue.d.ts +55 -0
  49. package/dist/runtime/components/pin-input/use-pin-input.d.ts +18 -0
  50. package/dist/runtime/components/pin-input/use-pin-input.js +94 -0
  51. package/dist/runtime/components/stack.d.vue.ts +24 -0
  52. package/dist/runtime/components/stack.vue +33 -0
  53. package/dist/runtime/components/stack.vue.d.ts +24 -0
  54. package/dist/runtime/modals/_confirm-modal/confirm-modal.vue +16 -6
  55. package/dist/runtime/styles/const.css +1 -1
  56. package/dist/runtime/types/styling.d.ts +2 -1
  57. package/package.json +1 -1
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^4.0.0"
6
6
  },
7
- "version": "0.2.18",
7
+ "version": "0.2.20",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
@@ -0,0 +1,18 @@
1
+ import type { BoxProps } from './box.vue.js';
2
+ export interface CenterProps extends BoxProps {
3
+ /** If set, `inline-flex` is used instead of `flex` */
4
+ inline?: boolean;
5
+ }
6
+ declare var __VLS_8: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_8) => any;
9
+ };
10
+ declare const __VLS_base: import("vue").DefineComponent<CenterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<CenterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,26 @@
1
+ <script setup>
2
+ import Box from "./box.vue";
3
+ const {
4
+ inline,
5
+ mod,
6
+ ...props
7
+ } = defineProps({
8
+ inline: { type: Boolean, required: false },
9
+ is: { type: null, required: false },
10
+ mod: { type: [Object, Array, null], required: false }
11
+ });
12
+ </script>
13
+
14
+ <template>
15
+ <Box
16
+ v-bind='props'
17
+ :class='$style.root'
18
+ :mod='[{ inline }, mod]'
19
+ >
20
+ <slot />
21
+ </Box>
22
+ </template>
23
+
24
+ <style module>
25
+ .root{align-items:center;display:flex;justify-content:center}.root:where([data-inline]){display:inline-flex}
26
+ </style>
@@ -0,0 +1,18 @@
1
+ import type { BoxProps } from './box.vue.js';
2
+ export interface CenterProps extends BoxProps {
3
+ /** If set, `inline-flex` is used instead of `flex` */
4
+ inline?: boolean;
5
+ }
6
+ declare var __VLS_8: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_8) => any;
9
+ };
10
+ declare const __VLS_base: import("vue").DefineComponent<CenterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<CenterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -1,5 +1,7 @@
1
1
  export { useDialogState } from './lib.js';
2
2
  export type * from './types';
3
+ export type * from './ui/dialog-footer.vue';
3
4
  export type * from './ui/dialog-header.vue';
4
5
  export type * from './ui/dialog-root.vue';
6
+ export type * from './ui/dialog-section.vue';
5
7
  export type * from './ui/dialog-title.vue';
@@ -0,0 +1,16 @@
1
+ import type { BoxProps } from '../../box.vue.js';
2
+ export interface DialogFooterProps extends BoxProps {
3
+ }
4
+ declare var __VLS_14: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_14) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
12
+ type __VLS_WithSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import Box from "../../box.vue";
3
+ import css from "./dialog.module.css";
4
+ const { is = "footer", mod } = defineProps({
5
+ is: { type: null, required: false },
6
+ mod: { type: [Object, Array, null], required: false }
7
+ });
8
+ </script>
9
+
10
+ <template>
11
+ <ClientOnly>
12
+ <Box :is :mod :class='css.footer'>
13
+ <slot />
14
+ </Box>
15
+ </ClientOnly>
16
+ </template>
@@ -0,0 +1,16 @@
1
+ import type { BoxProps } from '../../box.vue.js';
2
+ export interface DialogFooterProps extends BoxProps {
3
+ }
4
+ declare var __VLS_14: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_14) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
12
+ type __VLS_WithSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -1,4 +1,4 @@
1
- import type { NuanceRadius, NuanceShadow, NuanceSize, NuanceSpacing } from '@nui/types';
1
+ import type { Classes, NuanceRadius, NuanceShadow, NuanceSize, NuanceSpacing } from '@nui/types';
2
2
  import type { CSSProperties, RendererElement } from 'vue';
3
3
  import type { BoxProps } from '../../box.vue.js';
4
4
  import type { TransitionName } from '../../transition.vue.js';
@@ -27,7 +27,7 @@ export interface DialogRootProps extends BoxProps, StyleProps {
27
27
  /** If set, the component is rendered with `Overlay` @default `true` */
28
28
  withoutOverlay?: boolean;
29
29
  /** Passes a class to root element */
30
- rootClass?: string;
30
+ classes?: Classes<'root' | 'content'>;
31
31
  /** Portal target to render element @default 'body' */
32
32
  portalTarget?: string | RendererElement | null;
33
33
  }
@@ -17,7 +17,7 @@ const {
17
17
  padding,
18
18
  size,
19
19
  shadow,
20
- rootClass,
20
+ classes,
21
21
  transition = "fade-down",
22
22
  withoutOverlay = false,
23
23
  portalTarget = "body"
@@ -25,7 +25,7 @@ const {
25
25
  closeOnClickOutside: { type: Boolean, required: false },
26
26
  withinPortal: { type: Boolean, required: false },
27
27
  withoutOverlay: { type: Boolean, required: false },
28
- rootClass: { type: String, required: false },
28
+ classes: { type: Object, required: false },
29
29
  portalTarget: { type: [String, Object, null], required: false },
30
30
  is: { type: null, required: false },
31
31
  mod: { type: [Object, Array, null], required: false },
@@ -79,7 +79,7 @@ const style = computed(() => ({
79
79
  <Box
80
80
  is='dialog'
81
81
  ref='dialogRef'
82
- :class='[css.root, rootClass]'
82
+ :class='[css.root, classes?.root]'
83
83
  :mod='[{ "without-overlay": withoutOverlay }, mod]'
84
84
  :style
85
85
  @click='overlayClick'
@@ -87,7 +87,12 @@ const style = computed(() => ({
87
87
  @cancel.prevent='opened = false'
88
88
  >
89
89
  <NTransition :name='transition'>
90
- <Box is='section' v-if='opened' :class='css.content' v-bind='$attrs'>
90
+ <Box
91
+ is='section'
92
+ v-if='opened'
93
+ :class='[css.content, classes?.content]'
94
+ v-bind='$attrs'
95
+ >
91
96
  <slot />
92
97
  </Box>
93
98
  </NTransition>
@@ -1,4 +1,4 @@
1
- import type { NuanceRadius, NuanceShadow, NuanceSize, NuanceSpacing } from '@nui/types';
1
+ import type { Classes, NuanceRadius, NuanceShadow, NuanceSize, NuanceSpacing } from '@nui/types';
2
2
  import type { CSSProperties, RendererElement } from 'vue';
3
3
  import type { BoxProps } from '../../box.vue.js';
4
4
  import type { TransitionName } from '../../transition.vue.js';
@@ -27,7 +27,7 @@ export interface DialogRootProps extends BoxProps, StyleProps {
27
27
  /** If set, the component is rendered with `Overlay` @default `true` */
28
28
  withoutOverlay?: boolean;
29
29
  /** Passes a class to root element */
30
- rootClass?: string;
30
+ classes?: Classes<'root' | 'content'>;
31
31
  /** Portal target to render element @default 'body' */
32
32
  portalTarget?: string | RendererElement | null;
33
33
  }
@@ -0,0 +1,17 @@
1
+ import type { BoxProps } from '../../box.vue.js';
2
+ export interface DialogSectionProps extends BoxProps {
3
+ bordered?: boolean;
4
+ }
5
+ declare var __VLS_14: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_14) => any;
8
+ };
9
+ declare const __VLS_base: import("vue").DefineComponent<DialogSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogSectionProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,17 @@
1
+ <script setup>
2
+ import Box from "../../box.vue";
3
+ import css from "./dialog.module.css";
4
+ const { is = "section", bordered, mod } = defineProps({
5
+ bordered: { type: Boolean, required: false },
6
+ is: { type: null, required: false },
7
+ mod: { type: [Object, Array, null], required: false }
8
+ });
9
+ </script>
10
+
11
+ <template>
12
+ <ClientOnly>
13
+ <Box :is :mod='[{ bordered }, mod]' :class='css.section'>
14
+ <slot />
15
+ </Box>
16
+ </ClientOnly>
17
+ </template>
@@ -0,0 +1,17 @@
1
+ import type { BoxProps } from '../../box.vue.js';
2
+ export interface DialogSectionProps extends BoxProps {
3
+ bordered?: boolean;
4
+ }
5
+ declare var __VLS_14: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_14) => any;
8
+ };
9
+ declare const __VLS_base: import("vue").DefineComponent<DialogSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogSectionProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -1 +1 @@
1
- .root{--dialog-size-xs:rem(320px);--dialog-size-sm:rem(380px);--dialog-size-md:rem(440px);--dialog-size-lg:rem(620px);--dialog-size-xl:rem(780px);--dialog-size:var(--dialog-size-md);--dialog-y-offset:0;--dialog-x-offset:0;--dialog-shadow:var(--shadow-md);--dialog-radius:var(--radius-default);--overlay-bg:rgba(0,0,0,.4);--overlay-filter:blur(.1rem);background:none;border:none;box-shadow:var(--dialog-shadow);display:grid;left:var(--dialog-x-offset);max-height:100%;max-width:100%;min-height:0;opacity:0;overflow:hidden;padding:0;top:var(--dialog-y-offset);transition:opacity .3s ease,overlay allow-discrete .3s ease,display allow-discrete .3s ease;width:var(--dialog-size);z-index:2}.root::backdrop{backdrop-filter:var(--overlay-filter);background:var(--overlay-bg,rgba(0,0,0,.6));opacity:0;transition:opacity .3s ease,overlay allow-discrete .3s ease,display allow-discrete .3s ease}.root[open]{opacity:1}@starting-style{.root[open]{opacity:0}}.root[open]::backdrop{opacity:1}@starting-style{.root[open]::backdrop{opacity:0}}.root:not([open]){opacity:0;pointer-events:none}.root:not([open])::backdrop{opacity:0}.root[data-without-overlay]::backdrop{display:none}.content{background-color:var(--color-body);border-radius:var(--dialog-radius);color:var(--color-text);height:100%;min-height:0;padding:var(--spacing-sm);width:100%}.header{align-items:center;display:flex;justify-content:space-between}.title{font-weight:400}
1
+ .root{--dialog-size-xs:rem(320px);--dialog-size-sm:rem(380px);--dialog-size-md:rem(440px);--dialog-size-lg:rem(620px);--dialog-size-xl:rem(780px);--dialog-size:var(--dialog-size-md);--dialog-y-offset:0;--dialog-x-offset:0;--dialog-shadow:var(--shadow-md);--dialog-radius:var(--radius-md);--dialog-padding:var(--spacing-sm);--dialog-bd-c:var(--color-gray-4);--overlay-bg:rgba(0,0,0,.4);--overlay-filter:blur(.1rem);background:none;border:none;box-shadow:var(--dialog-shadow);display:grid;left:var(--dialog-x-offset);max-height:100%;max-width:100%;min-height:0;opacity:0;overflow:hidden;padding:0;top:var(--dialog-y-offset);transition:opacity .3s ease,overlay allow-discrete .3s ease,display allow-discrete .3s ease;width:var(--dialog-size);z-index:2}.root::backdrop{backdrop-filter:var(--overlay-filter);background:var(--overlay-bg,rgba(0,0,0,.6));opacity:0;transition:opacity .3s ease,overlay allow-discrete .3s ease,display allow-discrete .3s ease}.root[open]{opacity:1}@starting-style{.root[open]{opacity:0}}.root[open]::backdrop{opacity:1}@starting-style{.root[open]::backdrop{opacity:0}}.root:not([open]){opacity:0;pointer-events:none}.root:not([open])::backdrop{opacity:0}.root[data-without-overlay]::backdrop{display:none}.content{background-color:var(--color-body);border-radius:var(--dialog-radius);color:var(--color-text);height:100%;min-height:0;width:100%}.footer,.header,.section{padding:var(--dialog-padding)}.header{align-items:center;border-bottom:1px solid var(--dialog-bd-c);display:flex;justify-content:space-between}.footer,.section[data-bordered=true]:not(:first-of-type){border-top:1px solid var(--dialog-bd-c)}.title{font-weight:400}
@@ -0,0 +1,16 @@
1
+ import type { DialogFooterProps } from '../dialog/index.js';
2
+ export interface DrawerFooterProps extends DialogFooterProps {
3
+ }
4
+ declare var __VLS_8: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_8) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<DrawerFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
12
+ type __VLS_WithSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -0,0 +1,13 @@
1
+ <script setup>
2
+ import DialogFooter from "../dialog/ui/dialog-footer.vue";
3
+ const props = defineProps({
4
+ is: { type: null, required: false },
5
+ mod: { type: [Object, Array, null], required: false }
6
+ });
7
+ </script>
8
+
9
+ <template>
10
+ <DialogFooter v-bind='props'>
11
+ <slot />
12
+ </DialogFooter>
13
+ </template>
@@ -0,0 +1,16 @@
1
+ import type { DialogFooterProps } from '../dialog/index.js';
2
+ export interface DrawerFooterProps extends DialogFooterProps {
3
+ }
4
+ declare var __VLS_8: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_8) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<DrawerFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
12
+ type __VLS_WithSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -14,6 +14,7 @@ const {
14
14
  closeOnClickOutside: { type: Boolean, required: false },
15
15
  withinPortal: { type: Boolean, required: false },
16
16
  withoutOverlay: { type: Boolean, required: false },
17
+ classes: { type: Object, required: false },
17
18
  portalTarget: { type: [String, Object, null], required: false },
18
19
  is: { type: null, required: false },
19
20
  mod: { type: [Object, Array, null], required: false },
@@ -0,0 +1,16 @@
1
+ import type { DialogSectionProps } from '../dialog/index.js';
2
+ export interface DrawerSectionProps extends DialogSectionProps {
3
+ }
4
+ declare var __VLS_8: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_8) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<DrawerSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerSectionProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
12
+ type __VLS_WithSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -0,0 +1,14 @@
1
+ <script setup>
2
+ import DialogSection from "../dialog/ui/dialog-section.vue";
3
+ const props = defineProps({
4
+ bordered: { type: Boolean, required: false },
5
+ is: { type: null, required: false },
6
+ mod: { type: [Object, Array, null], required: false }
7
+ });
8
+ </script>
9
+
10
+ <template>
11
+ <DialogSection v-bind='props'>
12
+ <slot />
13
+ </DialogSection>
14
+ </template>
@@ -0,0 +1,16 @@
1
+ import type { DialogSectionProps } from '../dialog/index.js';
2
+ export interface DrawerSectionProps extends DialogSectionProps {
3
+ }
4
+ declare var __VLS_8: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_8) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<DrawerSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerSectionProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
12
+ type __VLS_WithSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -1,3 +1,5 @@
1
+ export type * from './drawer-footer.vue';
1
2
  export type * from './drawer-header.vue';
2
3
  export type * from './drawer-root.vue';
4
+ export type * from './drawer-section.vue';
3
5
  export type * from './drawer-title.vue';
@@ -0,0 +1,28 @@
1
+ import type { CSSProperties } from 'vue';
2
+ import type { NuanceSpacing } from '../types/index.js';
3
+ import type { BoxProps } from './box.vue.js';
4
+ export interface GroupProps extends BoxProps {
5
+ /** Controls `justify-content` CSS property @default 'flex-start' */
6
+ justify?: CSSProperties['justifyContent'];
7
+ /** Controls `align-items` CSS property @default 'center' */
8
+ align?: CSSProperties['alignItems'];
9
+ /** Controls `flex-wrap` CSS property @default 'wrap' */
10
+ wrap?: CSSProperties['flexWrap'];
11
+ /** Key of `theme.spacing` or any valid CSS value for `gap`, numbers are converted to rem @default 'md' */
12
+ gap?: NuanceSpacing;
13
+ /** Determines whether each child element should have `flex-grow: 1` style @default false */
14
+ grow?: boolean;
15
+ }
16
+ declare var __VLS_8: {};
17
+ type __VLS_Slots = {} & {
18
+ default?: (props: typeof __VLS_8) => any;
19
+ };
20
+ declare const __VLS_base: import("vue").DefineComponent<GroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<GroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
22
+ declare const _default: typeof __VLS_export;
23
+ export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
@@ -0,0 +1,39 @@
1
+ <script setup>
2
+ import { getSpacing, useVarsResolver } from "#imports";
3
+ import Box from "./box.vue";
4
+ const {
5
+ grow,
6
+ justify,
7
+ align,
8
+ wrap,
9
+ gap,
10
+ mod,
11
+ ...props
12
+ } = defineProps({
13
+ justify: { type: void 0, required: false },
14
+ align: { type: void 0, required: false },
15
+ wrap: { type: void 0, required: false },
16
+ gap: { type: [String, Number], required: false },
17
+ grow: { type: Boolean, required: false },
18
+ is: { type: null, required: false },
19
+ mod: { type: [Object, Array, null], required: false }
20
+ });
21
+ const style = useVarsResolver(() => ({
22
+ root: {
23
+ "--group-gap": getSpacing(gap),
24
+ "--group-align": align ?? void 0,
25
+ "--group-justify": justify ?? void 0,
26
+ "--group-wrap": wrap ?? void 0
27
+ }
28
+ }));
29
+ </script>
30
+
31
+ <template>
32
+ <Box v-bind='props' :style='style.root' :class='$style.root' :mod='[{ grow }, mod]'>
33
+ <slot />
34
+ </Box>
35
+ </template>
36
+
37
+ <style module>
38
+ .root{align-items:var(--group-align,center);display:flex;flex-direction:row;flex-wrap:var(--group-wrap,wrap);gap:var(--group-gap,var(--spacing-md));justify-content:var(--group-justify,flex-start)}.root:where([data-grow])>*{flex-grow:1}
39
+ </style>
@@ -0,0 +1,28 @@
1
+ import type { CSSProperties } from 'vue';
2
+ import type { NuanceSpacing } from '../types/index.js';
3
+ import type { BoxProps } from './box.vue.js';
4
+ export interface GroupProps extends BoxProps {
5
+ /** Controls `justify-content` CSS property @default 'flex-start' */
6
+ justify?: CSSProperties['justifyContent'];
7
+ /** Controls `align-items` CSS property @default 'center' */
8
+ align?: CSSProperties['alignItems'];
9
+ /** Controls `flex-wrap` CSS property @default 'wrap' */
10
+ wrap?: CSSProperties['flexWrap'];
11
+ /** Key of `theme.spacing` or any valid CSS value for `gap`, numbers are converted to rem @default 'md' */
12
+ gap?: NuanceSpacing;
13
+ /** Determines whether each child element should have `flex-grow: 1` style @default false */
14
+ grow?: boolean;
15
+ }
16
+ declare var __VLS_8: {};
17
+ type __VLS_Slots = {} & {
18
+ default?: (props: typeof __VLS_8) => any;
19
+ };
20
+ declare const __VLS_base: import("vue").DefineComponent<GroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<GroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
22
+ declare const _default: typeof __VLS_export;
23
+ export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
@@ -3,6 +3,7 @@ import type { WrapperContext } from '../lib/input-wrapper.context.js';
3
3
  export interface BaseInputProps extends Omit<WrapperContext, 'id'> {
4
4
  /** Styles API */
5
5
  classes?: Classes<'root' | 'section'>;
6
+ error?: boolean;
6
7
  }
7
8
  type __VLS_Slots = {
8
9
  leftSection: [];
@@ -5,6 +5,7 @@ import Box from "../../box.vue";
5
5
  import { useInputWrapperState } from "../lib/input-wrapper.context";
6
6
  const { classes, ...props } = defineProps({
7
7
  classes: { type: Object, required: false },
8
+ error: { type: Boolean, required: false },
8
9
  required: { type: Boolean, required: false },
9
10
  radius: { type: [String, Number, Object], required: false },
10
11
  size: { type: [String, Object], required: false },
@@ -35,7 +36,7 @@ const style = computed(() => ({
35
36
  "with-left-section": !!$slots.leftSection,
36
37
  "with-right-section": !!$slots.rightSection,
37
38
  "variant": api.variant,
38
- "error": !!api?.error
39
+ "error": !!api?.error || props.error
39
40
  }]'
40
41
  >
41
42
  <span
@@ -59,5 +60,5 @@ const style = computed(() => ({
59
60
  </template>
60
61
 
61
62
  <style module>
62
- .root{--input-height-xs:rem(30px);--input-height-sm:rem(36px);--input-height-md:rem(42px);--input-height-lg:rem(50px);--input-height-xl:rem(60px);--input-padding-y-xs:rem(5px);--input-padding-y-sm:rem(6px);--input-padding-y-md:rem(8px);--input-padding-y-lg:rem(10px);--input-padding-y-xl:rem(13px);--input-height:var(--input-height-sm);--input-radius:var(--radius-default);--input-cursor:text;--input-text-align:left;--input-line-height:calc(var(--input-height) - rem(2px));--input-padding:calc(var(--input-height)/3);--input-padding-inline-start:var(--input-padding);--input-padding-inline-end:var(--input-padding);--input-placeholder-color:var(--color-placeholder);--input-color:var(--color-text);--input-left-section-width:calc(var(--input-height) - rem(2px));--input-right-section-width:calc(var(--input-height) - rem(2px));--input-left-section-pointer-events:none;--input-right-section-pointer-events:none;--input-left-section-size:var(--input-left-section-width);--input-right-section-size:var(--input-right-section-width);--input-fz:var(--font-size-sm);--input-size:var(--input-height);--input-resize:none;--section-y:1px;--left-section-start:1px;--left-section-border-radius:var(--input-radius) 0 0 var(--input-radius);--right-section-end:1px;--right-section-border-radius:0 var(--input-radius) var(--input-radius) 0;position:relative}.root[data-variant=unstyled]{--input-padding:0;--input-padding-y:0;--input-padding-inline-start:0;--input-padding-inline-end:0}.root[data-pointer]{--input-cursor:pointer}.root[data-multiline]{--input-padding-y-xs:4.5px;--input-padding-y-sm:5.5px;--input-padding-y-md:7px;--input-padding-y-lg:9.5px;--input-padding-y-xl:13px;--input-size:auto;--input-line-height:var(--line-height);--input-padding-y:var(--input-padding-y-sm)}.root[data-with-left-section]{--input-padding-inline-start:var(--input-left-section-size)}.root[data-with-right-section]{--input-padding-inline-end:var(--input-right-section-size)}.root[data-error]{--input-color:var(--color-error);--input-placeholder-color:var(--color-error);--input-section-color:var(--color-error);--input-bd:var(--color-error)}.root{@mixin where-light{--input-disabled-bg:var(--color-gray-1);--input-disabled-color:var(--color-gray-6);&[data-variant=default]:not(&[data-error]){--input-bd:var(--color-gray-4);--input-bg:var(--color-white);--input-bd-focus:var(--color-primary-filled)}&[data-variant=filled]:not(&[data-error]){--input-bd:transparent;--input-bg:var(--color-gray-1);--input-bd-focus:var(--color-primary-filled)}&[data-variant=unstyled]:not(&[data-error]){--input-bd:transparent;--input-bg:transparent;--input-bd-focus:transparent}}}.root{@mixin where-dark{--input-disabled-bg:var(--color-dark-6);--input-disabled-color:var(--color-dark-2);&[data-variant=default]:not(&[data-error]){--input-bd:var(--color-dark-4);--input-bg:var(--color-dark-6);--input-bd-focus:var(--color-primary-filled)}&[data-variant=filled]:not(&[data-error]){--input-bd:transparent;--input-bg:var(--color-dark-5);--input-bd-focus:var(--color-primary-filled)}&[data-variant=unstyled]:not(&[data-error]){--input-bd:transparent;--input-bg:transparent;--input-bd-focus:transparent}}}.root{@mixin where-rtl{--input-text-align:right;--left-section-border-radius:0 var(--input-radius) var(--input-radius) 0;--right-section-border-radius:var(--input-radius) 0 0 var(--input-radius)}}.input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--input-bg);border:rem(1px) solid var(--input-bd);border-radius:var(--input-radius);color:var(--input-color);cursor:var(--input-cursor);display:block;font-family:var(--font-family),serif;font-size:var(--input-fz);height:var(--input-size);line-height:var(--input-line-height);min-height:var(--input-height);overflow:var(--input-overflow);padding-bottom:var(--input-padding-y,0);padding-inline-end:var(--input-padding-inline-end);padding-top:var(--input-padding-y,0);padding-inline-start:var(--input-padding-inline-start);resize:var(--input-resize,none);text-align:var(--input-text-align);transition:border-color .1s ease;width:100%;-webkit-tap-highlight-color:transparent}.input[data-no-overflow]{--input-overflow:hidden}.input:focus,.input:focus-within{--input-bd:var(--input-bd-focus);outline:none}[data-error] .input:focus,[data-error] .input:focus-within{--input-bd:var(--color-error)}.input::-moz-placeholder{color:var(--input-placeholder-color);opacity:1}.input::placeholder{color:var(--input-placeholder-color);opacity:1}.input::-webkit-inner-spin-button,.input::-webkit-outer-spin-button,.input::-webkit-search-cancel-button,.input::-webkit-search-decoration,.input::-webkit-search-results-button,.input::-webkit-search-results-decoration{-webkit-appearance:none;appearance:none}.input[type=number]{-moz-appearance:textfield;-webkit-appearance:textfield;appearance:textfield}.input:disabled,.input[data-disabled]{background-color:var(--input-disabled-bg);color:var(--input-disabled-color);cursor:not-allowed;opacity:.6}.input:has(input:disabled){background-color:var(--input-disabled-bg);color:var(--input-disabled-color);cursor:not-allowed;opacity:.6}.section{align-items:center;border-radius:var(--section-border-radius);bottom:var(--section-y);color:var(--input-section-color,var(--color-dimmed));display:flex;inset-inline-end:var(--section-end);inset-inline-start:var(--section-start);justify-content:center;pointer-events:var(--section-pointer-events);position:absolute;top:var(--section-y);width:var(--section-size);z-index:1}.section[data-position=right]{--section-pointer-events:var(--input-right-section-pointer-events);--section-end:var(--right-section-end);--section-size:var(--input-right-section-size);--section-border-radius:var(--right-section-border-radius)}.section[data-position=left]{--section-pointer-events:var(--input-left-section-pointer-events);--section-start:var(--left-section-start);--section-size:var(--input-left-section-size);--section-border-radius:var(--left-section-border-radius)}
63
+ .root{--input-height-xs:rem(30px);--input-height-sm:rem(36px);--input-height-md:rem(42px);--input-height-lg:rem(50px);--input-height-xl:rem(60px);--input-padding-y-xs:rem(5px);--input-padding-y-sm:rem(6px);--input-padding-y-md:rem(8px);--input-padding-y-lg:rem(10px);--input-padding-y-xl:rem(13px);--input-height:var(--input-height-sm);--input-radius:var(--radius-default);--input-cursor:text;--input-text-align:left;--input-line-height:calc(var(--input-height) - rem(2px));--input-padding:calc(var(--input-height)/3);--input-padding-inline-start:var(--input-padding);--input-padding-inline-end:var(--input-padding);--input-placeholder-color:var(--color-placeholder);--input-color:var(--color-text);--input-left-section-width:calc(var(--input-height) - rem(2px));--input-right-section-width:calc(var(--input-height) - rem(2px));--input-left-section-pointer-events:none;--input-right-section-pointer-events:none;--input-left-section-size:var(--input-left-section-width);--input-right-section-size:var(--input-right-section-width);--input-fz:var(--font-size-sm);--input-size:var(--input-height);--input-resize:none;--section-y:1px;--left-section-start:1px;--left-section-border-radius:var(--input-radius) 0 0 var(--input-radius);--right-section-end:1px;--right-section-border-radius:0 var(--input-radius) var(--input-radius) 0;position:relative}.root[data-variant=unstyled]{--input-padding:0;--input-padding-y:0;--input-padding-inline-start:0;--input-padding-inline-end:0}.root[data-pointer]{--input-cursor:pointer}.root[data-multiline]{--input-padding-y-xs:4.5px;--input-padding-y-sm:5.5px;--input-padding-y-md:7px;--input-padding-y-lg:9.5px;--input-padding-y-xl:13px;--input-size:auto;--input-line-height:var(--line-height);--input-padding-y:var(--input-padding-y-sm)}.root[data-with-left-section]{--input-padding-inline-start:var(--input-left-section-size)}.root[data-with-right-section]{--input-padding-inline-end:var(--input-right-section-size)}.root{@mixin where-light{--input-disabled-bg:var(--color-gray-1);--input-disabled-color:var(--color-gray-6);&[data-variant=default]:not(&[data-error]){--input-bd:var(--color-gray-4);--input-bg:var(--color-white);--input-bd-focus:var(--color-primary-filled)}&[data-variant=filled]:not(&[data-error]){--input-bd:transparent;--input-bg:var(--color-gray-1);--input-bd-focus:var(--color-primary-filled)}&[data-variant=unstyled]:not(&[data-error]){--input-bd:transparent;--input-bg:transparent;--input-bd-focus:transparent}}}.root{@mixin where-dark{--input-disabled-bg:var(--color-dark-6);--input-disabled-color:var(--color-dark-2);&[data-variant=default]:not(&[data-error]){--input-bd:var(--color-dark-4);--input-bg:var(--color-dark-6);--input-bd-focus:var(--color-primary-filled)}&[data-variant=filled]:not(&[data-error]){--input-bd:transparent;--input-bg:var(--color-dark-5);--input-bd-focus:var(--color-primary-filled)}&[data-variant=unstyled]:not(&[data-error]){--input-bd:transparent;--input-bg:transparent;--input-bd-focus:transparent}}}.root[data-error]{--input-color:var(--color-error);--input-placeholder-color:var(--color-error);--input-section-color:var(--color-error);--input-bd:var(--color-error)}.root{@mixin where-rtl{--input-text-align:right;--left-section-border-radius:0 var(--input-radius) var(--input-radius) 0;--right-section-border-radius:var(--input-radius) 0 0 var(--input-radius)}}.input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--input-bg);border:rem(1px) solid var(--input-bd);border-radius:var(--input-radius);color:var(--input-color);cursor:var(--input-cursor);display:block;font-family:var(--font-family),serif;font-size:var(--input-fz);height:var(--input-size);line-height:var(--input-line-height);min-height:var(--input-height);overflow:var(--input-overflow);padding-bottom:var(--input-padding-y,0);padding-inline-end:var(--input-padding-inline-end);padding-top:var(--input-padding-y,0);padding-inline-start:var(--input-padding-inline-start);resize:var(--input-resize,none);text-align:var(--input-text-align);transition:border-color .1s ease;width:100%;-webkit-tap-highlight-color:transparent}.input[data-no-overflow]{--input-overflow:hidden}.input:focus,.input:focus-within{--input-bd:var(--input-bd-focus);outline:none}[data-error] .input:focus,[data-error] .input:focus-within{--input-bd:var(--color-error)}.input::-moz-placeholder{color:var(--input-placeholder-color);opacity:1}.input::placeholder{color:var(--input-placeholder-color);opacity:1}.input::-webkit-inner-spin-button,.input::-webkit-outer-spin-button,.input::-webkit-search-cancel-button,.input::-webkit-search-decoration,.input::-webkit-search-results-button,.input::-webkit-search-results-decoration{-webkit-appearance:none;appearance:none}.input[type=number]{-moz-appearance:textfield;-webkit-appearance:textfield;appearance:textfield}.input:disabled,.input:has(input:disabled),.input[data-disabled]{background-color:var(--input-disabled-bg);color:var(--input-disabled-color);cursor:not-allowed;opacity:.6}.input:-moz-read-only{cursor:default}.input:read-only{cursor:default}.section{align-items:center;border-radius:var(--section-border-radius);bottom:var(--section-y);color:var(--input-section-color,var(--color-dimmed));display:flex;inset-inline-end:var(--section-end);inset-inline-start:var(--section-start);justify-content:center;pointer-events:var(--section-pointer-events);position:absolute;top:var(--section-y);width:var(--section-size);z-index:1}.section[data-position=right]{--section-pointer-events:var(--input-right-section-pointer-events);--section-end:var(--right-section-end);--section-size:var(--input-right-section-size);--section-border-radius:var(--right-section-border-radius)}.section[data-position=left]{--section-pointer-events:var(--input-left-section-pointer-events);--section-start:var(--left-section-start);--section-size:var(--input-left-section-size);--section-border-radius:var(--left-section-border-radius)}
63
64
  </style>
@@ -3,6 +3,7 @@ import type { WrapperContext } from '../lib/input-wrapper.context.js';
3
3
  export interface BaseInputProps extends Omit<WrapperContext, 'id'> {
4
4
  /** Styles API */
5
5
  classes?: Classes<'root' | 'section'>;
6
+ error?: boolean;
6
7
  }
7
8
  type __VLS_Slots = {
8
9
  leftSection: [];
@@ -1,3 +1 @@
1
- export type * from './modal-header.vue';
2
1
  export type * from './modal-root.vue';
3
- export type * from './modal-title.vue';
@@ -0,0 +1,14 @@
1
+ import type { DialogFooterProps } from '../dialog/index.js';
2
+ declare var __VLS_8: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_8) => any;
5
+ };
6
+ declare const __VLS_base: import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
8
+ declare const _default: typeof __VLS_export;
9
+ export default _default;
10
+ type __VLS_WithSlots<T, S> = T & {
11
+ new (): {
12
+ $slots: S;
13
+ };
14
+ };
@@ -0,0 +1,13 @@
1
+ <script setup>
2
+ import DialogFooter from "../dialog/ui/dialog-footer.vue";
3
+ const props = defineProps({
4
+ is: { type: null, required: false },
5
+ mod: { type: [Object, Array, null], required: false }
6
+ });
7
+ </script>
8
+
9
+ <template>
10
+ <DialogFooter v-bind='props'>
11
+ <slot />
12
+ </DialogFooter>
13
+ </template>
@@ -0,0 +1,14 @@
1
+ import type { DialogFooterProps } from '../dialog/index.js';
2
+ declare var __VLS_8: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_8) => any;
5
+ };
6
+ declare const __VLS_base: import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
8
+ declare const _default: typeof __VLS_export;
9
+ export default _default;
10
+ type __VLS_WithSlots<T, S> = T & {
11
+ new (): {
12
+ $slots: S;
13
+ };
14
+ };
@@ -1,11 +1,9 @@
1
1
  import type { DialogHeaderProps } from '../dialog/index.js';
2
- export interface ModalHeaderProps extends DialogHeaderProps {
3
- }
4
2
  declare var __VLS_8: {};
5
3
  type __VLS_Slots = {} & {
6
4
  default?: (props: typeof __VLS_8) => any;
7
5
  };
8
- declare const __VLS_base: import("vue").DefineComponent<ModalHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ModalHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const __VLS_base: import("vue").DefineComponent<DialogHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
7
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
10
8
  declare const _default: typeof __VLS_export;
11
9
  export default _default;