@weni/unnnic-system 3.5.3-alpha.0 → 3.5.3-alpha.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 (43) hide show
  1. package/dist/components/ModalDialog/ModalDialog.vue.d.ts +194 -29
  2. package/dist/components/ModalDialog/ModalDialog.vue.d.ts.map +1 -1
  3. package/dist/components/index.d.ts +862 -78
  4. package/dist/components/index.d.ts.map +1 -1
  5. package/dist/components/ui/dialog/Dialog.vue.d.ts +23 -0
  6. package/dist/components/ui/dialog/Dialog.vue.d.ts.map +1 -0
  7. package/dist/components/ui/dialog/DialogClose.vue.d.ts +19 -0
  8. package/dist/components/ui/dialog/DialogClose.vue.d.ts.map +1 -0
  9. package/dist/components/ui/dialog/DialogContent.vue.d.ts +40 -0
  10. package/dist/components/ui/dialog/DialogContent.vue.d.ts.map +1 -0
  11. package/dist/components/ui/dialog/DialogFooter.vue.d.ts +25 -0
  12. package/dist/components/ui/dialog/DialogFooter.vue.d.ts.map +1 -0
  13. package/dist/components/ui/dialog/DialogHeader.vue.d.ts +29 -0
  14. package/dist/components/ui/dialog/DialogHeader.vue.d.ts.map +1 -0
  15. package/dist/components/ui/dialog/DialogTitle.vue.d.ts +23 -0
  16. package/dist/components/ui/dialog/DialogTitle.vue.d.ts.map +1 -0
  17. package/dist/components/ui/dialog/DialogTrigger.vue.d.ts +19 -0
  18. package/dist/components/ui/dialog/DialogTrigger.vue.d.ts.map +1 -0
  19. package/dist/components/ui/dialog/index.d.ts +8 -0
  20. package/dist/components/ui/dialog/index.d.ts.map +1 -0
  21. package/dist/{es-1c7253d4.mjs → es-dea507ea.mjs} +1 -1
  22. package/dist/{index-ff0a404c.mjs → index-25e40316.mjs} +10953 -10270
  23. package/dist/{pt-br-316f1627.mjs → pt-br-8720ec19.mjs} +1 -1
  24. package/dist/style.css +1 -1
  25. package/dist/unnnic.mjs +185 -171
  26. package/dist/unnnic.umd.js +43 -39
  27. package/package.json +1 -1
  28. package/src/assets/scss/scheme-colors.scss +82 -95
  29. package/src/assets/scss/tailwind.scss +8 -0
  30. package/src/components/ModalDialog/ModalDialog.vue +60 -146
  31. package/src/components/ModalDialog/__tests__/__snapshots__/ModalDialog.spec.js.snap +1 -22
  32. package/src/components/index.ts +28 -0
  33. package/src/components/ui/dialog/Dialog.vue +15 -0
  34. package/src/components/ui/dialog/DialogClose.vue +25 -0
  35. package/src/components/ui/dialog/DialogContent.vue +114 -0
  36. package/src/components/ui/dialog/DialogFooter.vue +46 -0
  37. package/src/components/ui/dialog/DialogHeader.vue +78 -0
  38. package/src/components/ui/dialog/DialogTitle.vue +34 -0
  39. package/src/components/ui/dialog/DialogTrigger.vue +12 -0
  40. package/src/components/ui/dialog/index.ts +7 -0
  41. package/src/stories/Dialog.stories.js +832 -0
  42. package/src/stories/ModalDialog.mdx +3 -0
  43. package/src/stories/ModalDialog.stories.js +1 -1
@@ -4287,20 +4287,6 @@ export declare const unnnicModalDialog: import('vue').DefineComponent<import('vu
4287
4287
  es: string;
4288
4288
  };
4289
4289
  };
4290
- iconsMapper: {
4291
- success: {
4292
- icon: string;
4293
- scheme: string;
4294
- };
4295
- warning: {
4296
- icon: string;
4297
- scheme: string;
4298
- };
4299
- attention: {
4300
- icon: string;
4301
- scheme: string;
4302
- };
4303
- };
4304
4290
  primaryButtonTypeMapper: {
4305
4291
  success: string;
4306
4292
  warning: string;
@@ -4309,6 +4295,7 @@ export declare const unnnicModalDialog: import('vue').DefineComponent<import('vu
4309
4295
  }, {}, {
4310
4296
  close(): void;
4311
4297
  updateBodyOverflow(isHidden: any): void;
4298
+ persistentHandler(event: any): void;
4312
4299
  }, {
4313
4300
  props: {
4314
4301
  locale: {
@@ -4389,21 +4376,6 @@ export declare const unnnicModalDialog: import('vue').DefineComponent<import('vu
4389
4376
  hideSecondaryButton: boolean;
4390
4377
  secondaryButtonProps: Record<string, any>;
4391
4378
  }, {}, {
4392
- UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4393
- click: (event: Event) => any;
4394
- mousedown: (event: Event) => any;
4395
- mouseup: (event: Event) => any;
4396
- }, string, import('vue').PublicProps, Readonly<import('./Icon.vue').IconProps> & Readonly<{
4397
- onClick?: ((event: Event) => any) | undefined;
4398
- onMousedown?: ((event: Event) => any) | undefined;
4399
- onMouseup?: ((event: Event) => any) | undefined;
4400
- }>, {
4401
- size: import('./Icon.vue').IconSize;
4402
- filled: boolean;
4403
- icon: string | null;
4404
- clickable: boolean;
4405
- scheme: import('./Icon.vue').SchemeColor;
4406
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
4407
4379
  UnnnicButton: {
4408
4380
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Button/types').ButtonProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
4409
4381
  size: import('./Button/types').ButtonSize;
@@ -4454,6 +4426,199 @@ export declare const unnnicModalDialog: import('vue').DefineComponent<import('vu
4454
4426
  default?(_: {}): any;
4455
4427
  };
4456
4428
  });
4429
+ UnnnicDialog: {
4430
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogRootProps> & Readonly<{
4431
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
4432
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4433
+ "update:open": (value: boolean) => any;
4434
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
4435
+ P: {};
4436
+ B: {};
4437
+ D: {};
4438
+ C: {};
4439
+ M: {};
4440
+ Defaults: {};
4441
+ }, Readonly<import('reka-ui').DialogRootProps> & Readonly<{
4442
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
4443
+ }>, {}, {}, {}, {}, {}>;
4444
+ __isFragment?: never;
4445
+ __isTeleport?: never;
4446
+ __isSuspense?: never;
4447
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogRootProps> & Readonly<{
4448
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
4449
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4450
+ "update:open": (value: boolean) => any;
4451
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
4452
+ $slots: {
4453
+ default?(_: {}): any;
4454
+ };
4455
+ });
4456
+ UnnnicDialogContent: {
4457
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogContentProps & {
4458
+ class?: import('vue').HTMLAttributes["class"];
4459
+ size?: "small" | "medium" | "large";
4460
+ }> & Readonly<{
4461
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
4462
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
4463
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
4464
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
4465
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
4466
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
4467
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4468
+ escapeKeyDown: (event: KeyboardEvent) => any;
4469
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
4470
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
4471
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
4472
+ openAutoFocus: (event: Event) => any;
4473
+ closeAutoFocus: (event: Event) => any;
4474
+ }, import('vue').PublicProps, {
4475
+ size: "small" | "medium" | "large";
4476
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
4477
+ P: {};
4478
+ B: {};
4479
+ D: {};
4480
+ C: {};
4481
+ M: {};
4482
+ Defaults: {};
4483
+ }, Readonly<import('reka-ui').DialogContentProps & {
4484
+ class?: import('vue').HTMLAttributes["class"];
4485
+ size?: "small" | "medium" | "large";
4486
+ }> & Readonly<{
4487
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
4488
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
4489
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
4490
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
4491
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
4492
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
4493
+ }>, {}, {}, {}, {}, {
4494
+ size: "small" | "medium" | "large";
4495
+ }>;
4496
+ __isFragment?: never;
4497
+ __isTeleport?: never;
4498
+ __isSuspense?: never;
4499
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogContentProps & {
4500
+ class?: import('vue').HTMLAttributes["class"];
4501
+ size?: "small" | "medium" | "large";
4502
+ }> & Readonly<{
4503
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
4504
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
4505
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
4506
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
4507
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
4508
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
4509
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4510
+ escapeKeyDown: (event: KeyboardEvent) => any;
4511
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
4512
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
4513
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
4514
+ openAutoFocus: (event: Event) => any;
4515
+ closeAutoFocus: (event: Event) => any;
4516
+ }, string, {
4517
+ size: "small" | "medium" | "large";
4518
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
4519
+ $slots: {
4520
+ default?(_: {}): any;
4521
+ };
4522
+ });
4523
+ UnnnicDialogHeader: {
4524
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
4525
+ class?: import('vue').HTMLAttributes["class"];
4526
+ divider?: boolean;
4527
+ type?: "default" | "success" | "warning" | "attention";
4528
+ closeButton?: boolean;
4529
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
4530
+ type: "default" | "success" | "warning" | "attention";
4531
+ divider: boolean;
4532
+ closeButton: boolean;
4533
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
4534
+ P: {};
4535
+ B: {};
4536
+ D: {};
4537
+ C: {};
4538
+ M: {};
4539
+ Defaults: {};
4540
+ }, Readonly<{
4541
+ class?: import('vue').HTMLAttributes["class"];
4542
+ divider?: boolean;
4543
+ type?: "default" | "success" | "warning" | "attention";
4544
+ closeButton?: boolean;
4545
+ }> & Readonly<{}>, {}, {}, {}, {}, {
4546
+ type: "default" | "success" | "warning" | "attention";
4547
+ divider: boolean;
4548
+ closeButton: boolean;
4549
+ }>;
4550
+ __isFragment?: never;
4551
+ __isTeleport?: never;
4552
+ __isSuspense?: never;
4553
+ } & import('vue').ComponentOptionsBase<Readonly<{
4554
+ class?: import('vue').HTMLAttributes["class"];
4555
+ divider?: boolean;
4556
+ type?: "default" | "success" | "warning" | "attention";
4557
+ closeButton?: boolean;
4558
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
4559
+ type: "default" | "success" | "warning" | "attention";
4560
+ divider: boolean;
4561
+ closeButton: boolean;
4562
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
4563
+ $slots: {
4564
+ default?(_: {}): any;
4565
+ };
4566
+ });
4567
+ UnnnicDialogTitle: {
4568
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogTitleProps & {
4569
+ class?: import('vue').HTMLAttributes["class"];
4570
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
4571
+ P: {};
4572
+ B: {};
4573
+ D: {};
4574
+ C: {};
4575
+ M: {};
4576
+ Defaults: {};
4577
+ }, Readonly<import('reka-ui').DialogTitleProps & {
4578
+ class?: import('vue').HTMLAttributes["class"];
4579
+ }> & Readonly<{}>, {}, {}, {}, {}, {}>;
4580
+ __isFragment?: never;
4581
+ __isTeleport?: never;
4582
+ __isSuspense?: never;
4583
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogTitleProps & {
4584
+ class?: import('vue').HTMLAttributes["class"];
4585
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
4586
+ $slots: {
4587
+ default?(_: {}): any;
4588
+ };
4589
+ });
4590
+ UnnnicDialogFooter: {
4591
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
4592
+ class?: import('vue').HTMLAttributes["class"];
4593
+ divider?: boolean;
4594
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
4595
+ divider: boolean;
4596
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
4597
+ P: {};
4598
+ B: {};
4599
+ D: {};
4600
+ C: {};
4601
+ M: {};
4602
+ Defaults: {};
4603
+ }, Readonly<{
4604
+ class?: import('vue').HTMLAttributes["class"];
4605
+ divider?: boolean;
4606
+ }> & Readonly<{}>, {}, {}, {}, {}, {
4607
+ divider: boolean;
4608
+ }>;
4609
+ __isFragment?: never;
4610
+ __isTeleport?: never;
4611
+ __isSuspense?: never;
4612
+ } & import('vue').ComponentOptionsBase<Readonly<{
4613
+ class?: import('vue').HTMLAttributes["class"];
4614
+ divider?: boolean;
4615
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
4616
+ divider: boolean;
4617
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
4618
+ $slots: {
4619
+ default?(_: {}): any;
4620
+ };
4621
+ });
4457
4622
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
4458
4623
  export declare const unnnicModalNext: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4459
4624
  type: {
@@ -12546,30 +12711,257 @@ export declare const unnnicPopoverTrigger: {
12546
12711
  default?(_: {}): any;
12547
12712
  };
12548
12713
  });
12549
- export declare const UnnnicFontSize = 16;
12550
- export declare const UnnnicInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
12551
- placeholder: {
12552
- type: StringConstructor;
12553
- default: string;
12554
- };
12555
- type: {
12556
- type: StringConstructor;
12557
- default: string;
12558
- validator(value: unknown): boolean;
12714
+ export declare const unnnicDialog: {
12715
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogRootProps> & Readonly<{
12716
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
12717
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12718
+ "update:open": (value: boolean) => any;
12719
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
12720
+ P: {};
12721
+ B: {};
12722
+ D: {};
12723
+ C: {};
12724
+ M: {};
12725
+ Defaults: {};
12726
+ }, Readonly<import('reka-ui').DialogRootProps> & Readonly<{
12727
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
12728
+ }>, {}, {}, {}, {}, {}>;
12729
+ __isFragment?: never;
12730
+ __isTeleport?: never;
12731
+ __isSuspense?: never;
12732
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogRootProps> & Readonly<{
12733
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
12734
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12735
+ "update:open": (value: boolean) => any;
12736
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
12737
+ $slots: {
12738
+ default?(_: {}): any;
12559
12739
  };
12560
- modelValue: {
12561
- type: StringConstructor;
12562
- default: string;
12740
+ });
12741
+ export declare const unnnicDialogContent: {
12742
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogContentProps & {
12743
+ class?: import('vue').HTMLAttributes["class"];
12744
+ size?: "small" | "medium" | "large";
12745
+ }> & Readonly<{
12746
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
12747
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
12748
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
12749
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
12750
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
12751
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
12752
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12753
+ escapeKeyDown: (event: KeyboardEvent) => any;
12754
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
12755
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
12756
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
12757
+ openAutoFocus: (event: Event) => any;
12758
+ closeAutoFocus: (event: Event) => any;
12759
+ }, import('vue').PublicProps, {
12760
+ size: "small" | "medium" | "large";
12761
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
12762
+ P: {};
12763
+ B: {};
12764
+ D: {};
12765
+ C: {};
12766
+ M: {};
12767
+ Defaults: {};
12768
+ }, Readonly<import('reka-ui').DialogContentProps & {
12769
+ class?: import('vue').HTMLAttributes["class"];
12770
+ size?: "small" | "medium" | "large";
12771
+ }> & Readonly<{
12772
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
12773
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
12774
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
12775
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
12776
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
12777
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
12778
+ }>, {}, {}, {}, {}, {
12779
+ size: "small" | "medium" | "large";
12780
+ }>;
12781
+ __isFragment?: never;
12782
+ __isTeleport?: never;
12783
+ __isSuspense?: never;
12784
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogContentProps & {
12785
+ class?: import('vue').HTMLAttributes["class"];
12786
+ size?: "small" | "medium" | "large";
12787
+ }> & Readonly<{
12788
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
12789
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
12790
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
12791
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
12792
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
12793
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
12794
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12795
+ escapeKeyDown: (event: KeyboardEvent) => any;
12796
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
12797
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
12798
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
12799
+ openAutoFocus: (event: Event) => any;
12800
+ closeAutoFocus: (event: Event) => any;
12801
+ }, string, {
12802
+ size: "small" | "medium" | "large";
12803
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
12804
+ $slots: {
12805
+ default?(_: {}): any;
12563
12806
  };
12564
- nativeType: {
12565
- type: StringConstructor;
12566
- default: string;
12807
+ });
12808
+ export declare const unnnicDialogFooter: {
12809
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
12810
+ class?: import('vue').HTMLAttributes["class"];
12811
+ divider?: boolean;
12812
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
12813
+ divider: boolean;
12814
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
12815
+ P: {};
12816
+ B: {};
12817
+ D: {};
12818
+ C: {};
12819
+ M: {};
12820
+ Defaults: {};
12821
+ }, Readonly<{
12822
+ class?: import('vue').HTMLAttributes["class"];
12823
+ divider?: boolean;
12824
+ }> & Readonly<{}>, {}, {}, {}, {}, {
12825
+ divider: boolean;
12826
+ }>;
12827
+ __isFragment?: never;
12828
+ __isTeleport?: never;
12829
+ __isSuspense?: never;
12830
+ } & import('vue').ComponentOptionsBase<Readonly<{
12831
+ class?: import('vue').HTMLAttributes["class"];
12832
+ divider?: boolean;
12833
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
12834
+ divider: boolean;
12835
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
12836
+ $slots: {
12837
+ default?(_: {}): any;
12567
12838
  };
12568
- message: {
12569
- type: StringConstructor;
12570
- default: string;
12839
+ });
12840
+ export declare const unnnicDialogHeader: {
12841
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
12842
+ class?: import('vue').HTMLAttributes["class"];
12843
+ divider?: boolean;
12844
+ type?: "default" | "success" | "warning" | "attention";
12845
+ closeButton?: boolean;
12846
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
12847
+ type: "default" | "success" | "warning" | "attention";
12848
+ divider: boolean;
12849
+ closeButton: boolean;
12850
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
12851
+ P: {};
12852
+ B: {};
12853
+ D: {};
12854
+ C: {};
12855
+ M: {};
12856
+ Defaults: {};
12857
+ }, Readonly<{
12858
+ class?: import('vue').HTMLAttributes["class"];
12859
+ divider?: boolean;
12860
+ type?: "default" | "success" | "warning" | "attention";
12861
+ closeButton?: boolean;
12862
+ }> & Readonly<{}>, {}, {}, {}, {}, {
12863
+ type: "default" | "success" | "warning" | "attention";
12864
+ divider: boolean;
12865
+ closeButton: boolean;
12866
+ }>;
12867
+ __isFragment?: never;
12868
+ __isTeleport?: never;
12869
+ __isSuspense?: never;
12870
+ } & import('vue').ComponentOptionsBase<Readonly<{
12871
+ class?: import('vue').HTMLAttributes["class"];
12872
+ divider?: boolean;
12873
+ type?: "default" | "success" | "warning" | "attention";
12874
+ closeButton?: boolean;
12875
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
12876
+ type: "default" | "success" | "warning" | "attention";
12877
+ divider: boolean;
12878
+ closeButton: boolean;
12879
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
12880
+ $slots: {
12881
+ default?(_: {}): any;
12571
12882
  };
12572
- errors: {
12883
+ });
12884
+ export declare const unnnicDialogTitle: {
12885
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogTitleProps & {
12886
+ class?: import('vue').HTMLAttributes["class"];
12887
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
12888
+ P: {};
12889
+ B: {};
12890
+ D: {};
12891
+ C: {};
12892
+ M: {};
12893
+ Defaults: {};
12894
+ }, Readonly<import('reka-ui').DialogTitleProps & {
12895
+ class?: import('vue').HTMLAttributes["class"];
12896
+ }> & Readonly<{}>, {}, {}, {}, {}, {}>;
12897
+ __isFragment?: never;
12898
+ __isTeleport?: never;
12899
+ __isSuspense?: never;
12900
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogTitleProps & {
12901
+ class?: import('vue').HTMLAttributes["class"];
12902
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
12903
+ $slots: {
12904
+ default?(_: {}): any;
12905
+ };
12906
+ });
12907
+ export declare const unnnicDialogTrigger: {
12908
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
12909
+ P: {};
12910
+ B: {};
12911
+ D: {};
12912
+ C: {};
12913
+ M: {};
12914
+ Defaults: {};
12915
+ }, Readonly<import('reka-ui').DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
12916
+ __isFragment?: never;
12917
+ __isTeleport?: never;
12918
+ __isSuspense?: never;
12919
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
12920
+ $slots: {
12921
+ default?(_: {}): any;
12922
+ };
12923
+ });
12924
+ export declare const unnnicDialogClose: {
12925
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
12926
+ P: {};
12927
+ B: {};
12928
+ D: {};
12929
+ C: {};
12930
+ M: {};
12931
+ Defaults: {};
12932
+ }, Readonly<import('reka-ui').DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
12933
+ __isFragment?: never;
12934
+ __isTeleport?: never;
12935
+ __isSuspense?: never;
12936
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
12937
+ $slots: {
12938
+ default?(_: {}): any;
12939
+ };
12940
+ });
12941
+ export declare const UnnnicFontSize = 16;
12942
+ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
12943
+ placeholder: {
12944
+ type: StringConstructor;
12945
+ default: string;
12946
+ };
12947
+ type: {
12948
+ type: StringConstructor;
12949
+ default: string;
12950
+ validator(value: unknown): boolean;
12951
+ };
12952
+ modelValue: {
12953
+ type: StringConstructor;
12954
+ default: string;
12955
+ };
12956
+ nativeType: {
12957
+ type: StringConstructor;
12958
+ default: string;
12959
+ };
12960
+ message: {
12961
+ type: StringConstructor;
12962
+ default: string;
12963
+ };
12964
+ errors: {
12573
12965
  type: (StringConstructor | ArrayConstructor)[];
12574
12966
  default: string;
12575
12967
  };
@@ -16767,20 +17159,6 @@ export declare const UnnnicModalDialog: import('vue').DefineComponent<import('vu
16767
17159
  es: string;
16768
17160
  };
16769
17161
  };
16770
- iconsMapper: {
16771
- success: {
16772
- icon: string;
16773
- scheme: string;
16774
- };
16775
- warning: {
16776
- icon: string;
16777
- scheme: string;
16778
- };
16779
- attention: {
16780
- icon: string;
16781
- scheme: string;
16782
- };
16783
- };
16784
17162
  primaryButtonTypeMapper: {
16785
17163
  success: string;
16786
17164
  warning: string;
@@ -16789,6 +17167,7 @@ export declare const UnnnicModalDialog: import('vue').DefineComponent<import('vu
16789
17167
  }, {}, {
16790
17168
  close(): void;
16791
17169
  updateBodyOverflow(isHidden: any): void;
17170
+ persistentHandler(event: any): void;
16792
17171
  }, {
16793
17172
  props: {
16794
17173
  locale: {
@@ -16869,21 +17248,6 @@ export declare const UnnnicModalDialog: import('vue').DefineComponent<import('vu
16869
17248
  hideSecondaryButton: boolean;
16870
17249
  secondaryButtonProps: Record<string, any>;
16871
17250
  }, {}, {
16872
- UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16873
- click: (event: Event) => any;
16874
- mousedown: (event: Event) => any;
16875
- mouseup: (event: Event) => any;
16876
- }, string, import('vue').PublicProps, Readonly<import('./Icon.vue').IconProps> & Readonly<{
16877
- onClick?: ((event: Event) => any) | undefined;
16878
- onMousedown?: ((event: Event) => any) | undefined;
16879
- onMouseup?: ((event: Event) => any) | undefined;
16880
- }>, {
16881
- size: import('./Icon.vue').IconSize;
16882
- filled: boolean;
16883
- icon: string | null;
16884
- clickable: boolean;
16885
- scheme: import('./Icon.vue').SchemeColor;
16886
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16887
17251
  UnnnicButton: {
16888
17252
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Button/types').ButtonProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
16889
17253
  size: import('./Button/types').ButtonSize;
@@ -16934,6 +17298,199 @@ export declare const UnnnicModalDialog: import('vue').DefineComponent<import('vu
16934
17298
  default?(_: {}): any;
16935
17299
  };
16936
17300
  });
17301
+ UnnnicDialog: {
17302
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogRootProps> & Readonly<{
17303
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
17304
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17305
+ "update:open": (value: boolean) => any;
17306
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
17307
+ P: {};
17308
+ B: {};
17309
+ D: {};
17310
+ C: {};
17311
+ M: {};
17312
+ Defaults: {};
17313
+ }, Readonly<import('reka-ui').DialogRootProps> & Readonly<{
17314
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
17315
+ }>, {}, {}, {}, {}, {}>;
17316
+ __isFragment?: never;
17317
+ __isTeleport?: never;
17318
+ __isSuspense?: never;
17319
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogRootProps> & Readonly<{
17320
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
17321
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17322
+ "update:open": (value: boolean) => any;
17323
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
17324
+ $slots: {
17325
+ default?(_: {}): any;
17326
+ };
17327
+ });
17328
+ UnnnicDialogContent: {
17329
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogContentProps & {
17330
+ class?: import('vue').HTMLAttributes["class"];
17331
+ size?: "small" | "medium" | "large";
17332
+ }> & Readonly<{
17333
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
17334
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
17335
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
17336
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
17337
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
17338
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
17339
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17340
+ escapeKeyDown: (event: KeyboardEvent) => any;
17341
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
17342
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
17343
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
17344
+ openAutoFocus: (event: Event) => any;
17345
+ closeAutoFocus: (event: Event) => any;
17346
+ }, import('vue').PublicProps, {
17347
+ size: "small" | "medium" | "large";
17348
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
17349
+ P: {};
17350
+ B: {};
17351
+ D: {};
17352
+ C: {};
17353
+ M: {};
17354
+ Defaults: {};
17355
+ }, Readonly<import('reka-ui').DialogContentProps & {
17356
+ class?: import('vue').HTMLAttributes["class"];
17357
+ size?: "small" | "medium" | "large";
17358
+ }> & Readonly<{
17359
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
17360
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
17361
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
17362
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
17363
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
17364
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
17365
+ }>, {}, {}, {}, {}, {
17366
+ size: "small" | "medium" | "large";
17367
+ }>;
17368
+ __isFragment?: never;
17369
+ __isTeleport?: never;
17370
+ __isSuspense?: never;
17371
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogContentProps & {
17372
+ class?: import('vue').HTMLAttributes["class"];
17373
+ size?: "small" | "medium" | "large";
17374
+ }> & Readonly<{
17375
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
17376
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
17377
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
17378
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
17379
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
17380
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
17381
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17382
+ escapeKeyDown: (event: KeyboardEvent) => any;
17383
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
17384
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
17385
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
17386
+ openAutoFocus: (event: Event) => any;
17387
+ closeAutoFocus: (event: Event) => any;
17388
+ }, string, {
17389
+ size: "small" | "medium" | "large";
17390
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
17391
+ $slots: {
17392
+ default?(_: {}): any;
17393
+ };
17394
+ });
17395
+ UnnnicDialogHeader: {
17396
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
17397
+ class?: import('vue').HTMLAttributes["class"];
17398
+ divider?: boolean;
17399
+ type?: "default" | "success" | "warning" | "attention";
17400
+ closeButton?: boolean;
17401
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
17402
+ type: "default" | "success" | "warning" | "attention";
17403
+ divider: boolean;
17404
+ closeButton: boolean;
17405
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
17406
+ P: {};
17407
+ B: {};
17408
+ D: {};
17409
+ C: {};
17410
+ M: {};
17411
+ Defaults: {};
17412
+ }, Readonly<{
17413
+ class?: import('vue').HTMLAttributes["class"];
17414
+ divider?: boolean;
17415
+ type?: "default" | "success" | "warning" | "attention";
17416
+ closeButton?: boolean;
17417
+ }> & Readonly<{}>, {}, {}, {}, {}, {
17418
+ type: "default" | "success" | "warning" | "attention";
17419
+ divider: boolean;
17420
+ closeButton: boolean;
17421
+ }>;
17422
+ __isFragment?: never;
17423
+ __isTeleport?: never;
17424
+ __isSuspense?: never;
17425
+ } & import('vue').ComponentOptionsBase<Readonly<{
17426
+ class?: import('vue').HTMLAttributes["class"];
17427
+ divider?: boolean;
17428
+ type?: "default" | "success" | "warning" | "attention";
17429
+ closeButton?: boolean;
17430
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
17431
+ type: "default" | "success" | "warning" | "attention";
17432
+ divider: boolean;
17433
+ closeButton: boolean;
17434
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
17435
+ $slots: {
17436
+ default?(_: {}): any;
17437
+ };
17438
+ });
17439
+ UnnnicDialogTitle: {
17440
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogTitleProps & {
17441
+ class?: import('vue').HTMLAttributes["class"];
17442
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
17443
+ P: {};
17444
+ B: {};
17445
+ D: {};
17446
+ C: {};
17447
+ M: {};
17448
+ Defaults: {};
17449
+ }, Readonly<import('reka-ui').DialogTitleProps & {
17450
+ class?: import('vue').HTMLAttributes["class"];
17451
+ }> & Readonly<{}>, {}, {}, {}, {}, {}>;
17452
+ __isFragment?: never;
17453
+ __isTeleport?: never;
17454
+ __isSuspense?: never;
17455
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogTitleProps & {
17456
+ class?: import('vue').HTMLAttributes["class"];
17457
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
17458
+ $slots: {
17459
+ default?(_: {}): any;
17460
+ };
17461
+ });
17462
+ UnnnicDialogFooter: {
17463
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
17464
+ class?: import('vue').HTMLAttributes["class"];
17465
+ divider?: boolean;
17466
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
17467
+ divider: boolean;
17468
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
17469
+ P: {};
17470
+ B: {};
17471
+ D: {};
17472
+ C: {};
17473
+ M: {};
17474
+ Defaults: {};
17475
+ }, Readonly<{
17476
+ class?: import('vue').HTMLAttributes["class"];
17477
+ divider?: boolean;
17478
+ }> & Readonly<{}>, {}, {}, {}, {}, {
17479
+ divider: boolean;
17480
+ }>;
17481
+ __isFragment?: never;
17482
+ __isTeleport?: never;
17483
+ __isSuspense?: never;
17484
+ } & import('vue').ComponentOptionsBase<Readonly<{
17485
+ class?: import('vue').HTMLAttributes["class"];
17486
+ divider?: boolean;
17487
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
17488
+ divider: boolean;
17489
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
17490
+ $slots: {
17491
+ default?(_: {}): any;
17492
+ };
17493
+ });
16937
17494
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
16938
17495
  export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
16939
17496
  type: {
@@ -25040,5 +25597,232 @@ export declare const UnnnicPopoverTrigger: {
25040
25597
  default?(_: {}): any;
25041
25598
  };
25042
25599
  });
25600
+ export declare const UnnnicDialog: {
25601
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogRootProps> & Readonly<{
25602
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
25603
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25604
+ "update:open": (value: boolean) => any;
25605
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
25606
+ P: {};
25607
+ B: {};
25608
+ D: {};
25609
+ C: {};
25610
+ M: {};
25611
+ Defaults: {};
25612
+ }, Readonly<import('reka-ui').DialogRootProps> & Readonly<{
25613
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
25614
+ }>, {}, {}, {}, {}, {}>;
25615
+ __isFragment?: never;
25616
+ __isTeleport?: never;
25617
+ __isSuspense?: never;
25618
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogRootProps> & Readonly<{
25619
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
25620
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25621
+ "update:open": (value: boolean) => any;
25622
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
25623
+ $slots: {
25624
+ default?(_: {}): any;
25625
+ };
25626
+ });
25627
+ export declare const UnnnicDialogContent: {
25628
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogContentProps & {
25629
+ class?: import('vue').HTMLAttributes["class"];
25630
+ size?: "small" | "medium" | "large";
25631
+ }> & Readonly<{
25632
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
25633
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
25634
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
25635
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
25636
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
25637
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
25638
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25639
+ escapeKeyDown: (event: KeyboardEvent) => any;
25640
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
25641
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
25642
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
25643
+ openAutoFocus: (event: Event) => any;
25644
+ closeAutoFocus: (event: Event) => any;
25645
+ }, import('vue').PublicProps, {
25646
+ size: "small" | "medium" | "large";
25647
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
25648
+ P: {};
25649
+ B: {};
25650
+ D: {};
25651
+ C: {};
25652
+ M: {};
25653
+ Defaults: {};
25654
+ }, Readonly<import('reka-ui').DialogContentProps & {
25655
+ class?: import('vue').HTMLAttributes["class"];
25656
+ size?: "small" | "medium" | "large";
25657
+ }> & Readonly<{
25658
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
25659
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
25660
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
25661
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
25662
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
25663
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
25664
+ }>, {}, {}, {}, {}, {
25665
+ size: "small" | "medium" | "large";
25666
+ }>;
25667
+ __isFragment?: never;
25668
+ __isTeleport?: never;
25669
+ __isSuspense?: never;
25670
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogContentProps & {
25671
+ class?: import('vue').HTMLAttributes["class"];
25672
+ size?: "small" | "medium" | "large";
25673
+ }> & Readonly<{
25674
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
25675
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
25676
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
25677
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
25678
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
25679
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
25680
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25681
+ escapeKeyDown: (event: KeyboardEvent) => any;
25682
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
25683
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
25684
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
25685
+ openAutoFocus: (event: Event) => any;
25686
+ closeAutoFocus: (event: Event) => any;
25687
+ }, string, {
25688
+ size: "small" | "medium" | "large";
25689
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
25690
+ $slots: {
25691
+ default?(_: {}): any;
25692
+ };
25693
+ });
25694
+ export declare const UnnnicDialogFooter: {
25695
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
25696
+ class?: import('vue').HTMLAttributes["class"];
25697
+ divider?: boolean;
25698
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
25699
+ divider: boolean;
25700
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
25701
+ P: {};
25702
+ B: {};
25703
+ D: {};
25704
+ C: {};
25705
+ M: {};
25706
+ Defaults: {};
25707
+ }, Readonly<{
25708
+ class?: import('vue').HTMLAttributes["class"];
25709
+ divider?: boolean;
25710
+ }> & Readonly<{}>, {}, {}, {}, {}, {
25711
+ divider: boolean;
25712
+ }>;
25713
+ __isFragment?: never;
25714
+ __isTeleport?: never;
25715
+ __isSuspense?: never;
25716
+ } & import('vue').ComponentOptionsBase<Readonly<{
25717
+ class?: import('vue').HTMLAttributes["class"];
25718
+ divider?: boolean;
25719
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
25720
+ divider: boolean;
25721
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
25722
+ $slots: {
25723
+ default?(_: {}): any;
25724
+ };
25725
+ });
25726
+ export declare const UnnnicDialogHeader: {
25727
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
25728
+ class?: import('vue').HTMLAttributes["class"];
25729
+ divider?: boolean;
25730
+ type?: "default" | "success" | "warning" | "attention";
25731
+ closeButton?: boolean;
25732
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
25733
+ type: "default" | "success" | "warning" | "attention";
25734
+ divider: boolean;
25735
+ closeButton: boolean;
25736
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
25737
+ P: {};
25738
+ B: {};
25739
+ D: {};
25740
+ C: {};
25741
+ M: {};
25742
+ Defaults: {};
25743
+ }, Readonly<{
25744
+ class?: import('vue').HTMLAttributes["class"];
25745
+ divider?: boolean;
25746
+ type?: "default" | "success" | "warning" | "attention";
25747
+ closeButton?: boolean;
25748
+ }> & Readonly<{}>, {}, {}, {}, {}, {
25749
+ type: "default" | "success" | "warning" | "attention";
25750
+ divider: boolean;
25751
+ closeButton: boolean;
25752
+ }>;
25753
+ __isFragment?: never;
25754
+ __isTeleport?: never;
25755
+ __isSuspense?: never;
25756
+ } & import('vue').ComponentOptionsBase<Readonly<{
25757
+ class?: import('vue').HTMLAttributes["class"];
25758
+ divider?: boolean;
25759
+ type?: "default" | "success" | "warning" | "attention";
25760
+ closeButton?: boolean;
25761
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
25762
+ type: "default" | "success" | "warning" | "attention";
25763
+ divider: boolean;
25764
+ closeButton: boolean;
25765
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
25766
+ $slots: {
25767
+ default?(_: {}): any;
25768
+ };
25769
+ });
25770
+ export declare const UnnnicDialogTitle: {
25771
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogTitleProps & {
25772
+ class?: import('vue').HTMLAttributes["class"];
25773
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
25774
+ P: {};
25775
+ B: {};
25776
+ D: {};
25777
+ C: {};
25778
+ M: {};
25779
+ Defaults: {};
25780
+ }, Readonly<import('reka-ui').DialogTitleProps & {
25781
+ class?: import('vue').HTMLAttributes["class"];
25782
+ }> & Readonly<{}>, {}, {}, {}, {}, {}>;
25783
+ __isFragment?: never;
25784
+ __isTeleport?: never;
25785
+ __isSuspense?: never;
25786
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogTitleProps & {
25787
+ class?: import('vue').HTMLAttributes["class"];
25788
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
25789
+ $slots: {
25790
+ default?(_: {}): any;
25791
+ };
25792
+ });
25793
+ export declare const UnnnicDialogTrigger: {
25794
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
25795
+ P: {};
25796
+ B: {};
25797
+ D: {};
25798
+ C: {};
25799
+ M: {};
25800
+ Defaults: {};
25801
+ }, Readonly<import('reka-ui').DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
25802
+ __isFragment?: never;
25803
+ __isTeleport?: never;
25804
+ __isSuspense?: never;
25805
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
25806
+ $slots: {
25807
+ default?(_: {}): any;
25808
+ };
25809
+ });
25810
+ export declare const UnnnicDialogClose: {
25811
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
25812
+ P: {};
25813
+ B: {};
25814
+ D: {};
25815
+ C: {};
25816
+ M: {};
25817
+ Defaults: {};
25818
+ }, Readonly<import('reka-ui').DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
25819
+ __isFragment?: never;
25820
+ __isTeleport?: never;
25821
+ __isSuspense?: never;
25822
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
25823
+ $slots: {
25824
+ default?(_: {}): any;
25825
+ };
25826
+ });
25043
25827
  export {};
25044
25828
  //# sourceMappingURL=index.d.ts.map