@code-coaching/vuetiful 0.37.0 → 0.41.0

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 (65) hide show
  1. package/dist/vuetiful.es.mjs +2660 -2583
  2. package/dist/vuetiful.umd.cjs +35 -10
  3. package/package.json +1 -1
  4. package/dist/types/components/atoms/VAvatar.vue.d.ts +0 -45
  5. package/dist/types/components/atoms/VBadge.vue.d.ts +0 -36
  6. package/dist/types/components/atoms/VButton.vue.d.ts +0 -48
  7. package/dist/types/components/atoms/VChip.vue.d.ts +0 -35
  8. package/dist/types/components/atoms/VPopover.vue.d.ts +0 -51
  9. package/dist/types/components/atoms/VRadio/VRadioDescription.vue.d.ts +0 -9
  10. package/dist/types/components/atoms/VRadio/VRadioGroup.vue.d.ts +0 -59
  11. package/dist/types/components/atoms/VRadio/VRadioItem.vue.d.ts +0 -51
  12. package/dist/types/components/atoms/VRadio/VRadioLabel.vue.d.ts +0 -9
  13. package/dist/types/components/atoms/VSwitch/VSwitch.vue.d.ts +0 -58
  14. package/dist/types/components/atoms/VSwitch/VSwitchDescription.vue.d.ts +0 -35
  15. package/dist/types/components/atoms/VSwitch/VSwitchGroup.vue.d.ts +0 -35
  16. package/dist/types/components/atoms/VSwitch/VSwitchLabel.vue.d.ts +0 -36
  17. package/dist/types/components/atoms/index.d.ts +0 -14
  18. package/dist/types/components/index.d.ts +0 -2
  19. package/dist/types/components/molecules/VAccordion/VAccordion.vue.d.ts +0 -43
  20. package/dist/types/components/molecules/VAccordion/VAccordionItem.vue.d.ts +0 -38
  21. package/dist/types/components/molecules/VAlert.vue.d.ts +0 -57
  22. package/dist/types/components/molecules/VCard/VCard.vue.d.ts +0 -41
  23. package/dist/types/components/molecules/VCard/VCardBody.vue.d.ts +0 -35
  24. package/dist/types/components/molecules/VCard/VCardFooter.vue.d.ts +0 -39
  25. package/dist/types/components/molecules/VCard/VCardHeader.vue.d.ts +0 -39
  26. package/dist/types/components/molecules/VCodeBlock.vue.d.ts +0 -80
  27. package/dist/types/components/molecules/VDrawer.vue.d.ts +0 -47
  28. package/dist/types/components/molecules/VListbox/VListbox.vue.d.ts +0 -59
  29. package/dist/types/components/molecules/VListbox/VListboxButton.vue.d.ts +0 -24
  30. package/dist/types/components/molecules/VListbox/VListboxItem.vue.d.ts +0 -25
  31. package/dist/types/components/molecules/VListbox/VListboxItems.vue.d.ts +0 -21
  32. package/dist/types/components/molecules/VListbox/VListboxLabel.vue.d.ts +0 -9
  33. package/dist/types/components/molecules/VPreview.vue.d.ts +0 -60
  34. package/dist/types/components/molecules/VRail/VRail.vue.d.ts +0 -43
  35. package/dist/types/components/molecules/VRail/VRailTile.vue.d.ts +0 -75
  36. package/dist/types/components/molecules/VShell.vue.d.ts +0 -118
  37. package/dist/types/components/molecules/VShellConfigurator.vue.d.ts +0 -99
  38. package/dist/types/components/molecules/VTabs/VTab.vue.d.ts +0 -55
  39. package/dist/types/components/molecules/VTabs/VTabPanel.vue.d.ts +0 -9
  40. package/dist/types/components/molecules/VTabs/VTabs.vue.d.ts +0 -46
  41. package/dist/types/components/molecules/Vuetiful.vue.d.ts +0 -22
  42. package/dist/types/components/molecules/index.d.ts +0 -21
  43. package/dist/types/directives/click-outside-group.d.ts +0 -9
  44. package/dist/types/directives/click-outside.d.ts +0 -9
  45. package/dist/types/directives/clipboard.d.ts +0 -3
  46. package/dist/types/directives/index.d.ts +0 -4
  47. package/dist/types/index.d.ts +0 -5
  48. package/dist/types/props/index.d.ts +0 -1
  49. package/dist/types/props/props.d.ts +0 -1
  50. package/dist/types/services/drawer.service.d.ts +0 -23
  51. package/dist/types/services/highlight.service.d.ts +0 -4
  52. package/dist/types/services/index.d.ts +0 -6
  53. package/dist/types/services/rail.service.d.ts +0 -4
  54. package/dist/types/services/settings.service.d.ts +0 -132
  55. package/dist/types/utils/id-generator.d.ts +0 -1
  56. package/dist/types/utils/index.d.ts +0 -9
  57. package/dist/types/utils/platform/platform.service.d.ts +0 -4
  58. package/dist/types/utils/tailwind-merge.d.ts +0 -3
  59. package/dist/types/utils/theme/VLightSwitch.vue.d.ts +0 -16
  60. package/dist/types/utils/theme/VThemeSwitch.vue.d.ts +0 -40
  61. package/dist/types/utils/theme/dark-mode.service.d.ts +0 -19
  62. package/dist/types/utils/theme/rocket.theme.d.ts +0 -223
  63. package/dist/types/utils/theme/theme.service.d.ts +0 -14
  64. package/dist/types/utils/theme/themes.d.ts +0 -3
  65. package/dist/types/utils/theme/vuetiful.theme.d.ts +0 -224
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@code-coaching/vuetiful",
3
3
  "type": "module",
4
- "version": "0.37.0",
4
+ "version": "0.41.0",
5
5
  "license": "MIT",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -1,45 +0,0 @@
1
- type AvatarProps = {
2
- class?: string;
3
- initials?: string;
4
- src?: string;
5
- alt?: string;
6
- fallback?: string;
7
- classImage?: string;
8
- };
9
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AvatarProps>, {
10
- src: string;
11
- alt: string;
12
- fallback: string;
13
- classImage: string;
14
- initials: string;
15
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AvatarProps>, {
16
- src: string;
17
- alt: string;
18
- fallback: string;
19
- classImage: string;
20
- initials: string;
21
- }>>>, {
22
- initials: string;
23
- src: string;
24
- alt: string;
25
- fallback: string;
26
- classImage: string;
27
- }, {}>;
28
- export default _default;
29
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
30
- type __VLS_TypePropsToRuntimeProps<T> = {
31
- [K in keyof T]-?: {} extends Pick<T, K> ? {
32
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
33
- } : {
34
- type: import('vue').PropType<T[K]>;
35
- required: true;
36
- };
37
- };
38
- type __VLS_WithDefaults<P, D> = {
39
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
40
- default: D[K];
41
- }> : P[K];
42
- };
43
- type __VLS_Prettify<T> = {
44
- [K in keyof T]: T[K];
45
- } & {};
@@ -1,36 +0,0 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- class?: string | undefined;
3
- }>, {
4
- class: string;
5
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
6
- class?: string | undefined;
7
- }>, {
8
- class: string;
9
- }>>>, {
10
- class: string;
11
- }, {}>, {
12
- default?(_: {}): any;
13
- }>;
14
- export default _default;
15
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
16
- type __VLS_TypePropsToRuntimeProps<T> = {
17
- [K in keyof T]-?: {} extends Pick<T, K> ? {
18
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
19
- } : {
20
- type: import('vue').PropType<T[K]>;
21
- required: true;
22
- };
23
- };
24
- type __VLS_WithDefaults<P, D> = {
25
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
26
- default: D[K];
27
- }> : P[K];
28
- };
29
- type __VLS_Prettify<T> = {
30
- [K in keyof T]: T[K];
31
- } & {};
32
- type __VLS_WithTemplateSlots<T, S> = T & {
33
- new (): {
34
- $slots: S;
35
- };
36
- };
@@ -1,48 +0,0 @@
1
- interface ButtonProps {
2
- class?: string;
3
- icon?: boolean;
4
- tag?: string;
5
- size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
6
- }
7
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ButtonProps>, {
8
- class: string;
9
- tag: string;
10
- size: string;
11
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
- click: () => void;
13
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ButtonProps>, {
14
- class: string;
15
- tag: string;
16
- size: string;
17
- }>>> & {
18
- onClick?: (() => any) | undefined;
19
- }, {
20
- size: "xs" | "sm" | "md" | "lg" | "xl";
21
- class: string;
22
- tag: string;
23
- }, {}>, {
24
- default?(_: {}): any;
25
- }>;
26
- export default _default;
27
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
- type __VLS_TypePropsToRuntimeProps<T> = {
29
- [K in keyof T]-?: {} extends Pick<T, K> ? {
30
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
- } : {
32
- type: import('vue').PropType<T[K]>;
33
- required: true;
34
- };
35
- };
36
- type __VLS_WithDefaults<P, D> = {
37
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
38
- default: D[K];
39
- }> : P[K];
40
- };
41
- type __VLS_Prettify<T> = {
42
- [K in keyof T]: T[K];
43
- } & {};
44
- type __VLS_WithTemplateSlots<T, S> = T & {
45
- new (): {
46
- $slots: S;
47
- };
48
- };
@@ -1,35 +0,0 @@
1
- type ChipProps = {
2
- class?: string;
3
- };
4
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ChipProps>, {
5
- class: string;
6
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ChipProps>, {
7
- class: string;
8
- }>>>, {
9
- class: string;
10
- }, {}>, {
11
- default?(_: {}): any;
12
- }>;
13
- export default _default;
14
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
- type __VLS_TypePropsToRuntimeProps<T> = {
16
- [K in keyof T]-?: {} extends Pick<T, K> ? {
17
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
18
- } : {
19
- type: import('vue').PropType<T[K]>;
20
- required: true;
21
- };
22
- };
23
- type __VLS_WithDefaults<P, D> = {
24
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
25
- default: D[K];
26
- }> : P[K];
27
- };
28
- type __VLS_Prettify<T> = {
29
- [K in keyof T]: T[K];
30
- } & {};
31
- type __VLS_WithTemplateSlots<T, S> = T & {
32
- new (): {
33
- $slots: S;
34
- };
35
- };
@@ -1,51 +0,0 @@
1
- import { type Placement } from '@floating-ui/vue';
2
- import { type ComponentPublicInstance, type Ref } from 'vue';
3
- interface PopoverProps {
4
- class?: string;
5
- anchor: () => Ref<ComponentPublicInstance>;
6
- placement: Placement;
7
- show: boolean;
8
- showOnClick: boolean;
9
- offset: number;
10
- }
11
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PopoverProps>, {
12
- placement: string;
13
- show: boolean;
14
- showOnClick: boolean;
15
- offset: number;
16
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PopoverProps>, {
17
- placement: string;
18
- show: boolean;
19
- showOnClick: boolean;
20
- offset: number;
21
- }>>>, {
22
- placement: Placement;
23
- show: boolean;
24
- showOnClick: boolean;
25
- offset: number;
26
- }, {}>, {
27
- default?(_: {}): any;
28
- }>;
29
- export default _default;
30
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
31
- type __VLS_TypePropsToRuntimeProps<T> = {
32
- [K in keyof T]-?: {} extends Pick<T, K> ? {
33
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
34
- } : {
35
- type: import('vue').PropType<T[K]>;
36
- required: true;
37
- };
38
- };
39
- type __VLS_WithDefaults<P, D> = {
40
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
41
- default: D[K];
42
- }> : P[K];
43
- };
44
- type __VLS_Prettify<T> = {
45
- [K in keyof T]: T[K];
46
- } & {};
47
- type __VLS_WithTemplateSlots<T, S> = T & {
48
- new (): {
49
- $slots: S;
50
- };
51
- };
@@ -1,9 +0,0 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
- default?(_: {}): any;
3
- }>;
4
- export default _default;
5
- type __VLS_WithTemplateSlots<T, S> = T & {
6
- new (): {
7
- $slots: S;
8
- };
9
- };
@@ -1,59 +0,0 @@
1
- interface RadioGroupProps {
2
- class?: string;
3
- disabled?: boolean;
4
- by?: string | Function;
5
- modelValue?: any;
6
- classItemActive?: string;
7
- classItemHover?: string;
8
- classItemDisabled?: string;
9
- classItem?: string;
10
- vertical?: boolean;
11
- }
12
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RadioGroupProps>, {
13
- class: string;
14
- classItem: string;
15
- classItemActive: string;
16
- classItemHover: string;
17
- classItemDisabled: string;
18
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
- "update:modelValue": (...args: any[]) => void;
20
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RadioGroupProps>, {
21
- class: string;
22
- classItem: string;
23
- classItemActive: string;
24
- classItemHover: string;
25
- classItemDisabled: string;
26
- }>>> & {
27
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
28
- }, {
29
- class: string;
30
- classItemActive: string;
31
- classItemHover: string;
32
- classItemDisabled: string;
33
- classItem: string;
34
- }, {}>, {
35
- default?(_: {}): any;
36
- }>;
37
- export default _default;
38
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
39
- type __VLS_TypePropsToRuntimeProps<T> = {
40
- [K in keyof T]-?: {} extends Pick<T, K> ? {
41
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
42
- } : {
43
- type: import('vue').PropType<T[K]>;
44
- required: true;
45
- };
46
- };
47
- type __VLS_WithDefaults<P, D> = {
48
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
49
- default: D[K];
50
- }> : P[K];
51
- };
52
- type __VLS_Prettify<T> = {
53
- [K in keyof T]: T[K];
54
- } & {};
55
- type __VLS_WithTemplateSlots<T, S> = T & {
56
- new (): {
57
- $slots: S;
58
- };
59
- };
@@ -1,51 +0,0 @@
1
- interface RadioItemProps {
2
- class?: string;
3
- classActive?: string;
4
- classHover?: string;
5
- classDisabled?: string;
6
- value: string | number | boolean | object;
7
- }
8
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RadioItemProps>, {
9
- class: string;
10
- classActive: string;
11
- classHover: string;
12
- classDisabled: string;
13
- value: string;
14
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RadioItemProps>, {
15
- class: string;
16
- classActive: string;
17
- classHover: string;
18
- classDisabled: string;
19
- value: string;
20
- }>>>, {
21
- class: string;
22
- value: string | number | boolean | object;
23
- classActive: string;
24
- classHover: string;
25
- classDisabled: string;
26
- }, {}>, {
27
- default?(_: {}): any;
28
- }>;
29
- export default _default;
30
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
31
- type __VLS_TypePropsToRuntimeProps<T> = {
32
- [K in keyof T]-?: {} extends Pick<T, K> ? {
33
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
34
- } : {
35
- type: import('vue').PropType<T[K]>;
36
- required: true;
37
- };
38
- };
39
- type __VLS_WithDefaults<P, D> = {
40
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
41
- default: D[K];
42
- }> : P[K];
43
- };
44
- type __VLS_Prettify<T> = {
45
- [K in keyof T]: T[K];
46
- } & {};
47
- type __VLS_WithTemplateSlots<T, S> = T & {
48
- new (): {
49
- $slots: S;
50
- };
51
- };
@@ -1,9 +0,0 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
- default?(_: {}): any;
3
- }>;
4
- export default _default;
5
- type __VLS_WithTemplateSlots<T, S> = T & {
6
- new (): {
7
- $slots: S;
8
- };
9
- };
@@ -1,58 +0,0 @@
1
- import { type SizeProp } from '@/lib/props';
2
- interface SwitchProps {
3
- class?: string;
4
- classThumb?: string;
5
- modelValue?: boolean;
6
- disabled?: boolean;
7
- as?: string;
8
- name?: string;
9
- size?: SizeProp;
10
- }
11
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SwitchProps>, {
12
- class: string;
13
- classThumb: string;
14
- name: string;
15
- as: string;
16
- size: string;
17
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
- "update:modelValue": (...args: any[]) => void;
19
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SwitchProps>, {
20
- class: string;
21
- classThumb: string;
22
- name: string;
23
- as: string;
24
- size: string;
25
- }>>> & {
26
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
27
- }, {
28
- size: SizeProp;
29
- class: string;
30
- classThumb: string;
31
- as: string;
32
- name: string;
33
- }, {}>, {
34
- default?(_: {}): any;
35
- }>;
36
- export default _default;
37
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
38
- type __VLS_TypePropsToRuntimeProps<T> = {
39
- [K in keyof T]-?: {} extends Pick<T, K> ? {
40
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
41
- } : {
42
- type: import('vue').PropType<T[K]>;
43
- required: true;
44
- };
45
- };
46
- type __VLS_WithDefaults<P, D> = {
47
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
48
- default: D[K];
49
- }> : P[K];
50
- };
51
- type __VLS_Prettify<T> = {
52
- [K in keyof T]: T[K];
53
- } & {};
54
- type __VLS_WithTemplateSlots<T, S> = T & {
55
- new (): {
56
- $slots: S;
57
- };
58
- };
@@ -1,35 +0,0 @@
1
- interface SwitchDescriptionProps {
2
- as?: string;
3
- }
4
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SwitchDescriptionProps>, {
5
- as: string;
6
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SwitchDescriptionProps>, {
7
- as: string;
8
- }>>>, {
9
- as: string;
10
- }, {}>, {
11
- default?(_: {}): any;
12
- }>;
13
- export default _default;
14
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
- type __VLS_TypePropsToRuntimeProps<T> = {
16
- [K in keyof T]-?: {} extends Pick<T, K> ? {
17
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
18
- } : {
19
- type: import('vue').PropType<T[K]>;
20
- required: true;
21
- };
22
- };
23
- type __VLS_WithDefaults<P, D> = {
24
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
25
- default: D[K];
26
- }> : P[K];
27
- };
28
- type __VLS_Prettify<T> = {
29
- [K in keyof T]: T[K];
30
- } & {};
31
- type __VLS_WithTemplateSlots<T, S> = T & {
32
- new (): {
33
- $slots: S;
34
- };
35
- };
@@ -1,35 +0,0 @@
1
- interface SwitchGroupProps {
2
- as?: string;
3
- }
4
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SwitchGroupProps>, {
5
- as: string;
6
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SwitchGroupProps>, {
7
- as: string;
8
- }>>>, {
9
- as: string;
10
- }, {}>, {
11
- default?(_: {}): any;
12
- }>;
13
- export default _default;
14
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
- type __VLS_TypePropsToRuntimeProps<T> = {
16
- [K in keyof T]-?: {} extends Pick<T, K> ? {
17
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
18
- } : {
19
- type: import('vue').PropType<T[K]>;
20
- required: true;
21
- };
22
- };
23
- type __VLS_WithDefaults<P, D> = {
24
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
25
- default: D[K];
26
- }> : P[K];
27
- };
28
- type __VLS_Prettify<T> = {
29
- [K in keyof T]: T[K];
30
- } & {};
31
- type __VLS_WithTemplateSlots<T, S> = T & {
32
- new (): {
33
- $slots: S;
34
- };
35
- };
@@ -1,36 +0,0 @@
1
- interface SwitchLabelProps {
2
- as?: string;
3
- passive?: boolean;
4
- }
5
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SwitchLabelProps>, {
6
- as: string;
7
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SwitchLabelProps>, {
8
- as: string;
9
- }>>>, {
10
- as: string;
11
- }, {}>, {
12
- default?(_: {}): any;
13
- }>;
14
- export default _default;
15
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
16
- type __VLS_TypePropsToRuntimeProps<T> = {
17
- [K in keyof T]-?: {} extends Pick<T, K> ? {
18
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
19
- } : {
20
- type: import('vue').PropType<T[K]>;
21
- required: true;
22
- };
23
- };
24
- type __VLS_WithDefaults<P, D> = {
25
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
26
- default: D[K];
27
- }> : P[K];
28
- };
29
- type __VLS_Prettify<T> = {
30
- [K in keyof T]: T[K];
31
- } & {};
32
- type __VLS_WithTemplateSlots<T, S> = T & {
33
- new (): {
34
- $slots: S;
35
- };
36
- };
@@ -1,14 +0,0 @@
1
- import VAvatar from './VAvatar.vue';
2
- import VBadge from './VBadge.vue';
3
- import VButton from './VButton.vue';
4
- import VChip from './VChip.vue';
5
- import VRadioDescription from './VRadio/VRadioDescription.vue';
6
- import VRadioGroup from './VRadio/VRadioGroup.vue';
7
- import VRadioItem from './VRadio/VRadioItem.vue';
8
- import VRadioLabel from './VRadio/VRadioLabel.vue';
9
- import VSwitch from './VSwitch/VSwitch.vue';
10
- import VSwitchDescription from './VSwitch/VSwitchDescription.vue';
11
- import VSwitchGroup from './VSwitch/VSwitchGroup.vue';
12
- import VSwitchLabel from './VSwitch/VSwitchLabel.vue';
13
- import VPopover from './VPopover.vue';
14
- export { VAvatar, VButton, VBadge, VChip, VRadioGroup, VRadioItem, VRadioLabel, VRadioDescription, VSwitchGroup, VSwitchLabel, VSwitchDescription, VSwitch, VPopover };
@@ -1,2 +0,0 @@
1
- export * from './atoms';
2
- export * from './molecules';
@@ -1,43 +0,0 @@
1
- interface AccordionProps {
2
- class?: string;
3
- classQuestion?: string;
4
- classAnswer?: string;
5
- }
6
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AccordionProps>, {
7
- class: string;
8
- classQuestion: string;
9
- classAnswer: string;
10
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AccordionProps>, {
11
- class: string;
12
- classQuestion: string;
13
- classAnswer: string;
14
- }>>>, {
15
- class: string;
16
- classQuestion: string;
17
- classAnswer: string;
18
- }, {}>, {
19
- default?(_: {}): any;
20
- }>;
21
- export default _default;
22
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
23
- type __VLS_TypePropsToRuntimeProps<T> = {
24
- [K in keyof T]-?: {} extends Pick<T, K> ? {
25
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
26
- } : {
27
- type: import('vue').PropType<T[K]>;
28
- required: true;
29
- };
30
- };
31
- type __VLS_WithDefaults<P, D> = {
32
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
33
- default: D[K];
34
- }> : P[K];
35
- };
36
- type __VLS_Prettify<T> = {
37
- [K in keyof T]: T[K];
38
- } & {};
39
- type __VLS_WithTemplateSlots<T, S> = T & {
40
- new (): {
41
- $slots: S;
42
- };
43
- };
@@ -1,38 +0,0 @@
1
- interface AccordionItemProps {
2
- class?: string;
3
- title: string;
4
- }
5
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AccordionItemProps>, {
6
- class: string;
7
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AccordionItemProps>, {
8
- class: string;
9
- }>>>, {
10
- class: string;
11
- }, {}>, {
12
- "open-item"?(_: {}): any;
13
- "close-item"?(_: {}): any;
14
- default?(_: {}): any;
15
- }>;
16
- export default _default;
17
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
18
- type __VLS_TypePropsToRuntimeProps<T> = {
19
- [K in keyof T]-?: {} extends Pick<T, K> ? {
20
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
21
- } : {
22
- type: import('vue').PropType<T[K]>;
23
- required: true;
24
- };
25
- };
26
- type __VLS_WithDefaults<P, D> = {
27
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
28
- default: D[K];
29
- }> : P[K];
30
- };
31
- type __VLS_Prettify<T> = {
32
- [K in keyof T]: T[K];
33
- } & {};
34
- type __VLS_WithTemplateSlots<T, S> = T & {
35
- new (): {
36
- $slots: S;
37
- };
38
- };