bonkers-ui 1.0.62 → 1.0.64

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 (59) hide show
  1. package/README.md +152 -0
  2. package/_types/sizing.js.map +1 -1
  3. package/bonkers-ui.umd.js +7 -7
  4. package/bonkers-ui.umd.js.map +1 -1
  5. package/components/ui-alert/index.d.ts +23 -56
  6. package/components/ui-badge/index.d.ts +33 -68
  7. package/components/ui-ber-rank/index.js +1 -0
  8. package/components/ui-ber-rank/ui-ber-rank.vue3.js +1 -0
  9. package/components/ui-button/index.d.ts +51 -86
  10. package/components/ui-card-cta/index.d.ts +39 -75
  11. package/components/ui-card-result/index.d.ts +39 -75
  12. package/components/ui-card-result/ui-card-result.vue.js +1 -0
  13. package/components/ui-card-simple/index.d.ts +9 -39
  14. package/components/ui-checkbox/index.d.ts +47 -84
  15. package/components/ui-checkbox/ui-checkbox.vue.js +1 -0
  16. package/components/ui-dropdown/index.d.ts +47 -90
  17. package/components/ui-dropdown/ui-dropdown.vue.d.ts +0 -3
  18. package/components/ui-dropdown/ui-dropdown.vue.js +19 -20
  19. package/components/ui-dropdown/ui-dropdown.vue.js.map +1 -1
  20. package/components/ui-icon-wrapper/index.d.ts +31 -64
  21. package/components/ui-icon-wrapper/ui-icon-wrapper.vue.js +1 -0
  22. package/components/ui-input/_typings.d.ts +2 -2
  23. package/components/ui-input/index.d.ts +148 -193
  24. package/components/ui-input-range/ui-input-range.vue.js +1 -0
  25. package/components/ui-list-item/index.d.ts +74 -111
  26. package/components/ui-modal/index.d.ts +31 -64
  27. package/components/ui-modal/ui-backdrop/index.d.ts +9 -39
  28. package/components/ui-modal/ui-backdrop/ui-backdrop.vue.js +1 -0
  29. package/components/ui-modal/ui-modal.vue.js +1 -0
  30. package/components/ui-notification-badge/index.d.ts +22 -54
  31. package/components/ui-notification-badge/index.js +1 -0
  32. package/components/ui-notification-badge/ui-notification-badge.vue3.js +1 -0
  33. package/components/ui-order-card/index.d.ts +29 -62
  34. package/components/ui-plain-radio/index.d.ts +60 -98
  35. package/components/ui-radio/index.d.ts +60 -98
  36. package/components/ui-radio/ui-radio.vue.js +1 -0
  37. package/components/ui-radio-compact/index.d.ts +45 -81
  38. package/components/ui-radio-fancy/index.d.ts +70 -108
  39. package/components/ui-result-card-range/index.d.ts +33 -68
  40. package/components/ui-ripple/index.d.ts +9 -39
  41. package/components/ui-ripple/index.js +1 -0
  42. package/components/ui-ripple/ui-ripple.vue3.js +1 -0
  43. package/components/ui-select/index.d.ts +41 -77
  44. package/components/ui-snackbar/index.d.ts +29 -62
  45. package/components/ui-table/index.d.ts +22 -54
  46. package/components/ui-table/ui-table-cell/index.d.ts +21 -54
  47. package/components/ui-table/ui-table-row/index.d.ts +16 -48
  48. package/components/ui-table/ui-table-row/ui-table-row.vue.js +1 -0
  49. package/components/ui-table/ui-table.vue.js +1 -0
  50. package/components/ui-tabs/ui-tabs.vue.js +1 -0
  51. package/components/ui-toggle/index.d.ts +62 -101
  52. package/components/ui-toggle/ui-toggle.vue.js +1 -0
  53. package/components/ui-typography/index.d.ts +61 -100
  54. package/components/ui-typography/ui-typography.vue.js +2 -2
  55. package/components/ui-verification-input/index.d.ts +29 -63
  56. package/components/ui-verification-input/ui-verification-input.vue.js +1 -0
  57. package/index.js +5 -2
  58. package/package.json +38 -38
  59. package/types.js +11 -5
@@ -1,118 +1,13 @@
1
1
  import { ERadioSizes } from './_typings';
2
2
  import { TIconName } from '../ui-icon';
3
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
3
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
4
4
  import UiRadioFancy from "./ui-radio-fancy.vue";
5
5
  export { UiRadioFancy };
6
6
  /**
7
7
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
8
8
  */
9
9
  declare const deprecatedDefault: {
10
- new (...args: any[]): {
11
- $: ComponentInternalInstance;
12
- $data: {};
13
- $props: Partial<{
14
- iconName: TIconName;
15
- radioSize: ERadioSizes;
16
- }> & Omit<{
17
- readonly modelValue: string | number | boolean;
18
- readonly value: string | number | boolean;
19
- readonly name: string;
20
- readonly radioSize: ERadioSizes;
21
- readonly iconName?: TIconName | undefined;
22
- readonly disabled?: boolean | undefined;
23
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
24
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
25
- iconName: {
26
- type: PropType<TIconName>;
27
- default: undefined;
28
- };
29
- disabled: {
30
- type: PropType<boolean>;
31
- };
32
- modelValue: {
33
- type: PropType<string | number | boolean>;
34
- required: true;
35
- };
36
- value: {
37
- type: PropType<string | number | boolean>;
38
- required: true;
39
- };
40
- name: {
41
- type: PropType<string>;
42
- required: true;
43
- };
44
- radioSize: {
45
- type: PropType<ERadioSizes>;
46
- default: ERadioSizes;
47
- };
48
- }>> & {
49
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
50
- }, "iconName" | "radioSize">;
51
- $attrs: {
52
- [x: string]: unknown;
53
- };
54
- $refs: {
55
- [x: string]: unknown;
56
- };
57
- $slots: Readonly<{
58
- [name: string]: Slot<any> | undefined;
59
- }>;
60
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
61
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
62
- $emit: (event: "update:modelValue", ...args: any[]) => void;
63
- $el: any;
64
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
65
- iconName: {
66
- type: PropType<TIconName>;
67
- default: undefined;
68
- };
69
- disabled: {
70
- type: PropType<boolean>;
71
- };
72
- modelValue: {
73
- type: PropType<string | number | boolean>;
74
- required: true;
75
- };
76
- value: {
77
- type: PropType<string | number | boolean>;
78
- required: true;
79
- };
80
- name: {
81
- type: PropType<string>;
82
- required: true;
83
- };
84
- radioSize: {
85
- type: PropType<ERadioSizes>;
86
- default: ERadioSizes;
87
- };
88
- }>> & {
89
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
90
- }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
91
- "update:modelValue": (...args: any[]) => void;
92
- }, string, {
93
- iconName: TIconName;
94
- radioSize: ERadioSizes;
95
- }, {}, string, {}> & {
96
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
97
- created?: ((() => void) | (() => void)[]) | undefined;
98
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
99
- mounted?: ((() => void) | (() => void)[]) | undefined;
100
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
101
- updated?: ((() => void) | (() => void)[]) | undefined;
102
- activated?: ((() => void) | (() => void)[]) | undefined;
103
- deactivated?: ((() => void) | (() => void)[]) | undefined;
104
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
105
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
106
- destroyed?: ((() => void) | (() => void)[]) | undefined;
107
- unmounted?: ((() => void) | (() => void)[]) | undefined;
108
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
109
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
110
- errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
111
- };
112
- $forceUpdate: () => void;
113
- $nextTick: typeof nextTick;
114
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
115
- } & Readonly<ExtractPropTypes<{
10
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
116
11
  iconName: {
117
12
  type: PropType<TIconName>;
118
13
  default: undefined;
@@ -138,7 +33,74 @@ declare const deprecatedDefault: {
138
33
  };
139
34
  }>> & {
140
35
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
141
- } & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
36
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
37
+ "update:modelValue": (...args: any[]) => void;
38
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
39
+ iconName: {
40
+ type: PropType<TIconName>;
41
+ default: undefined;
42
+ };
43
+ disabled: {
44
+ type: PropType<boolean>;
45
+ };
46
+ modelValue: {
47
+ type: PropType<string | number | boolean>;
48
+ required: true;
49
+ };
50
+ value: {
51
+ type: PropType<string | number | boolean>;
52
+ required: true;
53
+ };
54
+ name: {
55
+ type: PropType<string>;
56
+ required: true;
57
+ };
58
+ radioSize: {
59
+ type: PropType<ERadioSizes>;
60
+ default: ERadioSizes;
61
+ };
62
+ }>> & {
63
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
64
+ }, {
65
+ iconName: TIconName;
66
+ radioSize: ERadioSizes;
67
+ }, true, {}, {}, {
68
+ P: {};
69
+ B: {};
70
+ D: {};
71
+ C: {};
72
+ M: {};
73
+ Defaults: {};
74
+ }, Readonly<ExtractPropTypes<{
75
+ iconName: {
76
+ type: PropType<TIconName>;
77
+ default: undefined;
78
+ };
79
+ disabled: {
80
+ type: PropType<boolean>;
81
+ };
82
+ modelValue: {
83
+ type: PropType<string | number | boolean>;
84
+ required: true;
85
+ };
86
+ value: {
87
+ type: PropType<string | number | boolean>;
88
+ required: true;
89
+ };
90
+ name: {
91
+ type: PropType<string>;
92
+ required: true;
93
+ };
94
+ radioSize: {
95
+ type: PropType<ERadioSizes>;
96
+ default: ERadioSizes;
97
+ };
98
+ }>> & {
99
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
100
+ }, {}, {}, {}, {}, {
101
+ iconName: TIconName;
102
+ radioSize: ERadioSizes;
103
+ }>;
142
104
  __isFragment?: undefined;
143
105
  __isTeleport?: undefined;
144
106
  __isSuspense?: undefined;
@@ -1,80 +1,45 @@
1
1
  import { TIconName } from '../ui-icon';
2
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
3
3
  import UiResultCardRange from "./ui-result-card-range.vue";
4
4
  export { UiResultCardRange };
5
5
  /**
6
6
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
7
7
  */
8
8
  declare const deprecatedDefault: {
9
- new (...args: any[]): {
10
- $: ComponentInternalInstance;
11
- $data: {};
12
- $props: Partial<{}> & Omit<{
13
- readonly size?: string | undefined;
14
- readonly title?: string | undefined;
15
- readonly iconName?: TIconName | undefined;
16
- readonly description?: string | undefined;
17
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
18
- iconName: {
19
- type: PropType<TIconName>;
20
- };
21
- title: {
22
- type: PropType<string>;
23
- };
24
- size: {
25
- type: PropType<string>;
26
- };
27
- description: {
28
- type: PropType<string>;
29
- };
30
- }>>, never>;
31
- $attrs: {
32
- [x: string]: unknown;
9
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
10
+ iconName: {
11
+ type: PropType<TIconName>;
33
12
  };
34
- $refs: {
35
- [x: string]: unknown;
13
+ title: {
14
+ type: PropType<string>;
36
15
  };
37
- $slots: Readonly<{
38
- [name: string]: Slot<any> | undefined;
39
- }>;
40
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
41
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
42
- $emit: (event: string, ...args: any[]) => void;
43
- $el: any;
44
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
45
- iconName: {
46
- type: PropType<TIconName>;
47
- };
48
- title: {
49
- type: PropType<string>;
50
- };
51
- size: {
52
- type: PropType<string>;
53
- };
54
- description: {
55
- type: PropType<string>;
56
- };
57
- }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
58
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
59
- created?: ((() => void) | (() => void)[]) | undefined;
60
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
61
- mounted?: ((() => void) | (() => void)[]) | undefined;
62
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
63
- updated?: ((() => void) | (() => void)[]) | undefined;
64
- activated?: ((() => void) | (() => void)[]) | undefined;
65
- deactivated?: ((() => void) | (() => void)[]) | undefined;
66
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
67
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
68
- destroyed?: ((() => void) | (() => void)[]) | undefined;
69
- unmounted?: ((() => void) | (() => void)[]) | undefined;
70
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
71
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
72
- errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
16
+ size: {
17
+ type: PropType<string>;
18
+ };
19
+ description: {
20
+ type: PropType<string>;
21
+ };
22
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
23
+ iconName: {
24
+ type: PropType<TIconName>;
25
+ };
26
+ title: {
27
+ type: PropType<string>;
28
+ };
29
+ size: {
30
+ type: PropType<string>;
31
+ };
32
+ description: {
33
+ type: PropType<string>;
73
34
  };
74
- $forceUpdate: () => void;
75
- $nextTick: typeof nextTick;
76
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
77
- } & Readonly<ExtractPropTypes<{
35
+ }>>, {}, true, {}, {}, {
36
+ P: {};
37
+ B: {};
38
+ D: {};
39
+ C: {};
40
+ M: {};
41
+ Defaults: {};
42
+ }, Readonly<ExtractPropTypes<{
78
43
  iconName: {
79
44
  type: PropType<TIconName>;
80
45
  };
@@ -87,7 +52,7 @@ declare const deprecatedDefault: {
87
52
  description: {
88
53
  type: PropType<string>;
89
54
  };
90
- }>> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
55
+ }>>, {}, {}, {}, {}, {}>;
91
56
  __isFragment?: undefined;
92
57
  __isTeleport?: undefined;
93
58
  __isSuspense?: undefined;
@@ -1,48 +1,18 @@
1
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
2
2
  import UiRipple from "./ui-ripple.vue";
3
3
  export { UiRipple };
4
4
  /**
5
5
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
6
6
  */
7
7
  declare const deprecatedDefault: {
8
- new (...args: any[]): {
9
- $: ComponentInternalInstance;
10
- $data: {};
11
- $props: Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{}>>, never>;
12
- $attrs: {
13
- [x: string]: unknown;
14
- };
15
- $refs: {
16
- [x: string]: unknown;
17
- };
18
- $slots: Readonly<{
19
- [name: string]: Slot<any> | undefined;
20
- }>;
21
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
22
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
23
- $emit: (event: string, ...args: any[]) => void;
24
- $el: any;
25
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
26
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
27
- created?: ((() => void) | (() => void)[]) | undefined;
28
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
29
- mounted?: ((() => void) | (() => void)[]) | undefined;
30
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
31
- updated?: ((() => void) | (() => void)[]) | undefined;
32
- activated?: ((() => void) | (() => void)[]) | undefined;
33
- deactivated?: ((() => void) | (() => void)[]) | undefined;
34
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
35
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
36
- destroyed?: ((() => void) | (() => void)[]) | undefined;
37
- unmounted?: ((() => void) | (() => void)[]) | undefined;
38
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
39
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
40
- errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
41
- };
42
- $forceUpdate: () => void;
43
- $nextTick: typeof nextTick;
44
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
45
- } & Readonly<ExtractPropTypes<{}>> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
8
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{}>>, {}, true, {}, {}, {
9
+ P: {};
10
+ B: {};
11
+ D: {};
12
+ C: {};
13
+ M: {};
14
+ Defaults: {};
15
+ }, Readonly<ExtractPropTypes<{}>>, {}, {}, {}, {}, {}>;
46
16
  __isFragment?: undefined;
47
17
  __isTeleport?: undefined;
48
18
  __isSuspense?: undefined;
@@ -1,5 +1,6 @@
1
1
  (function(){"use strict";try{if(typeof document<"u"){var e=document.createElement("style");e.appendChild(document.createTextNode(".ui-ripple{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}.ripple{position:absolute;will-change:transform,opacity;transform:translate3d(-50%,-50%,0) scale(0);mix-blend-mode:screen;animation:ripple 1s ease-out forwards,fade 1s ease-out forwards;z-index:1}@keyframes ripple{0%{transform:translate3d(-50%,-50%,0) scale(0)}80%{transform:translate3d(-50%,-50%,0) scale(10)}to{transform:translate3d(-50%,-50%,0) scale(10)}}@keyframes fade{0%{opacity:1}to{opacity:0}}")),document.head.appendChild(e)}}catch(t){console.error("vite-plugin-css-injected-by-js",t)}})();
2
2
  import e from "./ui-ripple.vue.js";
3
+
3
4
  const p = e;
4
5
  export {
5
6
  e as UiRipple,
@@ -1,5 +1,6 @@
1
1
  (function(){"use strict";try{if(typeof document<"u"){var e=document.createElement("style");e.appendChild(document.createTextNode(".ui-ripple{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}.ripple{position:absolute;will-change:transform,opacity;transform:translate3d(-50%,-50%,0) scale(0);mix-blend-mode:screen;animation:ripple 1s ease-out forwards,fade 1s ease-out forwards;z-index:1}@keyframes ripple{0%{transform:translate3d(-50%,-50%,0) scale(0)}80%{transform:translate3d(-50%,-50%,0) scale(10)}to{transform:translate3d(-50%,-50%,0) scale(10)}}@keyframes fade{0%{opacity:1}to{opacity:0}}")),document.head.appendChild(e)}}catch(t){console.error("vite-plugin-css-injected-by-js",t)}})();
2
2
  import o from "./ui-ripple.vue.js";
3
+
3
4
  export {
4
5
  o as default
5
6
  };
@@ -1,88 +1,52 @@
1
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
2
2
  import UiSelect from "./ui-select.vue";
3
3
  export { UiSelect };
4
4
  /**
5
5
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
6
6
  */
7
7
  declare const deprecatedDefault: {
8
- new (...args: any[]): {
9
- $: ComponentInternalInstance;
10
- $data: {};
11
- $props: Partial<{}> & Omit<{
12
- readonly modelValue: string | number;
13
- readonly disabled?: boolean | undefined;
14
- readonly heading?: string | undefined;
15
- readonly subLabel?: string | undefined;
16
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
17
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
18
- modelValue: {
19
- type: PropType<string | number>;
20
- required: true;
21
- };
22
- heading: {
23
- type: PropType<string>;
24
- };
25
- subLabel: {
26
- type: PropType<string>;
27
- };
28
- disabled: {
29
- type: PropType<boolean>;
30
- };
31
- }>> & {
32
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
33
- }, never>;
34
- $attrs: {
35
- [x: string]: unknown;
8
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
9
+ modelValue: {
10
+ type: PropType<string | number>;
11
+ required: true;
36
12
  };
37
- $refs: {
38
- [x: string]: unknown;
13
+ heading: {
14
+ type: PropType<string>;
15
+ };
16
+ subLabel: {
17
+ type: PropType<string>;
39
18
  };
40
- $slots: Readonly<{
41
- [name: string]: Slot<any> | undefined;
42
- }>;
43
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
44
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
45
- $emit: (event: "update:modelValue", ...args: any[]) => void;
46
- $el: any;
47
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
48
- modelValue: {
49
- type: PropType<string | number>;
50
- required: true;
51
- };
52
- heading: {
53
- type: PropType<string>;
54
- };
55
- subLabel: {
56
- type: PropType<string>;
57
- };
58
- disabled: {
59
- type: PropType<boolean>;
60
- };
61
- }>> & {
62
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
63
- }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
64
- "update:modelValue": (...args: any[]) => void;
65
- }, string, {}, {}, string, {}> & {
66
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
67
- created?: ((() => void) | (() => void)[]) | undefined;
68
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
69
- mounted?: ((() => void) | (() => void)[]) | undefined;
70
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
71
- updated?: ((() => void) | (() => void)[]) | undefined;
72
- activated?: ((() => void) | (() => void)[]) | undefined;
73
- deactivated?: ((() => void) | (() => void)[]) | undefined;
74
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
75
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
76
- destroyed?: ((() => void) | (() => void)[]) | undefined;
77
- unmounted?: ((() => void) | (() => void)[]) | undefined;
78
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
79
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
80
- errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
19
+ disabled: {
20
+ type: PropType<boolean>;
81
21
  };
82
- $forceUpdate: () => void;
83
- $nextTick: typeof nextTick;
84
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
85
- } & Readonly<ExtractPropTypes<{
22
+ }>> & {
23
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
24
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
25
+ "update:modelValue": (...args: any[]) => void;
26
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
27
+ modelValue: {
28
+ type: PropType<string | number>;
29
+ required: true;
30
+ };
31
+ heading: {
32
+ type: PropType<string>;
33
+ };
34
+ subLabel: {
35
+ type: PropType<string>;
36
+ };
37
+ disabled: {
38
+ type: PropType<boolean>;
39
+ };
40
+ }>> & {
41
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
42
+ }, {}, true, {}, {}, {
43
+ P: {};
44
+ B: {};
45
+ D: {};
46
+ C: {};
47
+ M: {};
48
+ Defaults: {};
49
+ }, Readonly<ExtractPropTypes<{
86
50
  modelValue: {
87
51
  type: PropType<string | number>;
88
52
  required: true;
@@ -98,7 +62,7 @@ declare const deprecatedDefault: {
98
62
  };
99
63
  }>> & {
100
64
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
101
- } & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
65
+ }, {}, {}, {}, {}, {}>;
102
66
  __isFragment?: undefined;
103
67
  __isTeleport?: undefined;
104
68
  __isSuspense?: undefined;
@@ -1,5 +1,5 @@
1
1
  import { ESnackbarTypes } from './_types';
2
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
3
3
  import UiSnackbar from "./ui-snackbar.vue";
4
4
  export { UiSnackbar };
5
5
  export { ESnackbarTypes } from "./_types";
@@ -7,69 +7,34 @@ export { ESnackbarTypes } from "./_types";
7
7
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
8
8
  */
9
9
  declare const deprecatedDefault: {
10
- new (...args: any[]): {
11
- $: ComponentInternalInstance;
12
- $data: {};
13
- $props: Partial<{
14
- kind: ESnackbarTypes;
15
- }> & Omit<{
16
- readonly title: string;
17
- readonly kind: ESnackbarTypes;
18
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
19
- title: {
20
- type: PropType<string>;
21
- required: true;
22
- };
23
- kind: {
24
- type: PropType<ESnackbarTypes>;
25
- default: ESnackbarTypes;
26
- };
27
- }>>, "kind">;
28
- $attrs: {
29
- [x: string]: unknown;
10
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
11
+ title: {
12
+ type: PropType<string>;
13
+ required: true;
30
14
  };
31
- $refs: {
32
- [x: string]: unknown;
15
+ kind: {
16
+ type: PropType<ESnackbarTypes>;
17
+ default: ESnackbarTypes;
33
18
  };
34
- $slots: Readonly<{
35
- [name: string]: Slot<any> | undefined;
36
- }>;
37
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
38
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
39
- $emit: (event: string, ...args: any[]) => void;
40
- $el: any;
41
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
42
- title: {
43
- type: PropType<string>;
44
- required: true;
45
- };
46
- kind: {
47
- type: PropType<ESnackbarTypes>;
48
- default: ESnackbarTypes;
49
- };
50
- }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
51
- kind: ESnackbarTypes;
52
- }, {}, string, {}> & {
53
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
54
- created?: ((() => void) | (() => void)[]) | undefined;
55
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
56
- mounted?: ((() => void) | (() => void)[]) | undefined;
57
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
58
- updated?: ((() => void) | (() => void)[]) | undefined;
59
- activated?: ((() => void) | (() => void)[]) | undefined;
60
- deactivated?: ((() => void) | (() => void)[]) | undefined;
61
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
62
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
63
- destroyed?: ((() => void) | (() => void)[]) | undefined;
64
- unmounted?: ((() => void) | (() => void)[]) | undefined;
65
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
66
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
67
- errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
19
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
20
+ title: {
21
+ type: PropType<string>;
22
+ required: true;
23
+ };
24
+ kind: {
25
+ type: PropType<ESnackbarTypes>;
26
+ default: ESnackbarTypes;
68
27
  };
69
- $forceUpdate: () => void;
70
- $nextTick: typeof nextTick;
71
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
72
- } & Readonly<ExtractPropTypes<{
28
+ }>>, {
29
+ kind: ESnackbarTypes;
30
+ }, true, {}, {}, {
31
+ P: {};
32
+ B: {};
33
+ D: {};
34
+ C: {};
35
+ M: {};
36
+ Defaults: {};
37
+ }, Readonly<ExtractPropTypes<{
73
38
  title: {
74
39
  type: PropType<string>;
75
40
  required: true;
@@ -78,7 +43,9 @@ declare const deprecatedDefault: {
78
43
  type: PropType<ESnackbarTypes>;
79
44
  default: ESnackbarTypes;
80
45
  };
81
- }>> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
46
+ }>>, {}, {}, {}, {}, {
47
+ kind: ESnackbarTypes;
48
+ }>;
82
49
  __isFragment?: undefined;
83
50
  __isTeleport?: undefined;
84
51
  __isSuspense?: undefined;