@m3ui-vue/m3ui-vue 0.1.7 → 0.1.9

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 (88) hide show
  1. package/dist/components/MAbsolute.vue.d.ts +27 -0
  2. package/dist/components/MAppLayout.vue.d.ts +27 -0
  3. package/dist/components/MAspectRatio.vue.d.ts +18 -0
  4. package/dist/components/MBox.vue.d.ts +27 -0
  5. package/dist/components/MCenter.vue.d.ts +18 -0
  6. package/dist/components/MContainer.vue.d.ts +1 -1
  7. package/dist/components/MDivider.vue.d.ts +1 -1
  8. package/dist/components/MFab.vue.d.ts +2 -0
  9. package/dist/components/MFixed.vue.d.ts +28 -0
  10. package/dist/components/MFlex.vue.d.ts +28 -0
  11. package/dist/components/MFullscreen.vue.d.ts +20 -0
  12. package/dist/components/MGrid.vue.d.ts +1 -1
  13. package/dist/components/MList.vue.d.ts +30 -0
  14. package/dist/components/MListItem.vue.d.ts +60 -0
  15. package/dist/components/MListSubheader.vue.d.ts +18 -0
  16. package/dist/components/MMasonry.vue.d.ts +1 -1
  17. package/dist/components/MOverlay.vue.d.ts +26 -0
  18. package/dist/components/MRating.vue.d.ts +1 -1
  19. package/dist/components/MRelative.vue.d.ts +13 -0
  20. package/dist/components/MResponsive.vue.d.ts +21 -0
  21. package/dist/components/MScrollable.vue.d.ts +20 -0
  22. package/dist/components/MSection.vue.d.ts +31 -0
  23. package/dist/components/MSpacer.vue.d.ts +3 -0
  24. package/dist/components/MStack.vue.d.ts +2 -2
  25. package/dist/components/MSticky.vue.d.ts +20 -0
  26. package/dist/components/MSubtitle.vue.d.ts +22 -0
  27. package/dist/components/MText.vue.d.ts +27 -0
  28. package/dist/components/MTitle.vue.d.ts +22 -0
  29. package/dist/composables/useToast.d.ts +15 -18
  30. package/dist/index.d.ts +25 -1
  31. package/dist/m3ui-vue.css +1 -1
  32. package/dist/m3ui.js +1714 -921
  33. package/dist/m3ui.js.map +1 -1
  34. package/dist/styles/theme.css +4 -0
  35. package/dist/styles.css +1 -1
  36. package/package.json +1 -1
  37. package/src/components/MAbsolute.vue +68 -0
  38. package/src/components/MAppLayout.vue +45 -0
  39. package/src/components/MAspectRatio.vue +20 -0
  40. package/src/components/MBottomSheet.vue +2 -2
  41. package/src/components/MBox.vue +66 -0
  42. package/src/components/MCalendar.vue +1 -1
  43. package/src/components/MCenter.vue +21 -0
  44. package/src/components/MColorPicker.vue +2 -2
  45. package/src/components/MContextMenu.vue +1 -1
  46. package/src/components/MDataTable.vue +27 -6
  47. package/src/components/MDatePicker.vue +2 -2
  48. package/src/components/MDateRangePicker.vue +2 -2
  49. package/src/components/MFab.vue +4 -2
  50. package/src/components/MFixed.vue +64 -0
  51. package/src/components/MFlex.vue +63 -0
  52. package/src/components/MFullscreen.vue +23 -0
  53. package/src/components/MIconButton.vue +0 -1
  54. package/src/components/MJsonViewer.vue +1 -1
  55. package/src/components/MList.vue +40 -0
  56. package/src/components/MListItem.vue +299 -0
  57. package/src/components/MListSubheader.vue +18 -0
  58. package/src/components/MLoadingOverlay.vue +1 -1
  59. package/src/components/MMenu.vue +1 -1
  60. package/src/components/MMultiSelect.vue +1 -1
  61. package/src/components/MNavigationDrawer.vue +24 -9
  62. package/src/components/MOverlay.vue +46 -0
  63. package/src/components/MRelative.vue +5 -0
  64. package/src/components/MResponsive.vue +48 -0
  65. package/src/components/MScheduler.vue +2 -2
  66. package/src/components/MScrollable.vue +31 -0
  67. package/src/components/MSection.vue +65 -0
  68. package/src/components/MSelect.vue +1 -1
  69. package/src/components/MSideSheet.vue +1 -1
  70. package/src/components/MSnackbar.vue +7 -6
  71. package/src/components/MSpacer.vue +3 -0
  72. package/src/components/MStepper.vue +2 -2
  73. package/src/components/MSticky.vue +27 -0
  74. package/src/components/MSubtitle.vue +29 -0
  75. package/src/components/MTable.vue +2 -2
  76. package/src/components/MText.vue +107 -0
  77. package/src/components/MTimePicker.vue +2 -2
  78. package/src/components/MTimeline.vue +2 -2
  79. package/src/components/MTitle.vue +29 -0
  80. package/src/components/MTooltip.vue +1 -1
  81. package/src/components/MTour.vue +2 -2
  82. package/src/components/MTreeTable.vue +1 -1
  83. package/src/components/MVirtualTable.vue +1 -1
  84. package/src/components/_MContextMenuPanel.vue +1 -1
  85. package/src/components/_MTreeNode.vue +2 -2
  86. package/src/composables/useToast.ts +15 -10
  87. package/src/index.ts +25 -1
  88. package/src/styles/theme.css +4 -0
@@ -0,0 +1,27 @@
1
+ export type Placement = 'top-left' | 'top-center' | 'top-right' | 'center-left' | 'center' | 'center-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
2
+ type __VLS_Props = {
3
+ placement?: Placement;
4
+ offset?: string | number;
5
+ top?: string | number;
6
+ right?: string | number;
7
+ bottom?: string | number;
8
+ left?: string | number;
9
+ inset?: boolean;
10
+ zIndex?: number;
11
+ };
12
+ declare var __VLS_1: {};
13
+ type __VLS_Slots = {} & {
14
+ default?: (props: typeof __VLS_1) => any;
15
+ };
16
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
+ offset: string | number;
18
+ inset: boolean;
19
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
21
+ declare const _default: typeof __VLS_export;
22
+ export default _default;
23
+ type __VLS_WithSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
@@ -0,0 +1,27 @@
1
+ type __VLS_Props = {
2
+ drawerWidth?: string;
3
+ height?: string;
4
+ };
5
+ declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {}, __VLS_9: {};
6
+ type __VLS_Slots = {} & {
7
+ drawer?: (props: typeof __VLS_1) => any;
8
+ } & {
9
+ header?: (props: typeof __VLS_3) => any;
10
+ } & {
11
+ default?: (props: typeof __VLS_5) => any;
12
+ } & {
13
+ footer?: (props: typeof __VLS_7) => any;
14
+ } & {
15
+ fab?: (props: typeof __VLS_9) => any;
16
+ };
17
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
18
+ drawerWidth: string;
19
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
21
+ declare const _default: typeof __VLS_export;
22
+ export default _default;
23
+ type __VLS_WithSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
@@ -0,0 +1,18 @@
1
+ type __VLS_Props = {
2
+ ratio?: string | number;
3
+ };
4
+ declare var __VLS_1: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
9
+ ratio: string | number;
10
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,27 @@
1
+ type __VLS_Props = {
2
+ surface?: 'default' | 'container' | 'container-low' | 'container-high' | 'container-highest' | 'primary-container' | 'secondary-container' | 'tertiary-container' | 'inverse';
3
+ padding?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
+ rounded?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
5
+ elevation?: 0 | 1 | 2 | 3;
6
+ border?: boolean;
7
+ tag?: string;
8
+ };
9
+ declare var __VLS_8: {};
10
+ type __VLS_Slots = {} & {
11
+ default?: (props: typeof __VLS_8) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
+ padding: "none" | "xs" | "sm" | "md" | "lg" | "xl";
15
+ rounded: "none" | "sm" | "md" | "lg" | "xl" | "full";
16
+ elevation: 0 | 1 | 2 | 3;
17
+ border: boolean;
18
+ tag: string;
19
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
21
+ declare const _default: typeof __VLS_export;
22
+ export default _default;
23
+ type __VLS_WithSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
@@ -0,0 +1,18 @@
1
+ type __VLS_Props = {
2
+ inline?: boolean;
3
+ };
4
+ declare var __VLS_1: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
9
+ inline: boolean;
10
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -9,10 +9,10 @@ type __VLS_Slots = {} & {
9
9
  default?: (props: typeof __VLS_1) => any;
10
10
  };
11
11
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
12
+ padding: boolean;
12
13
  maxWidth: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "full";
13
14
  fluid: boolean;
14
15
  centered: boolean;
15
- padding: boolean;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
18
18
  declare const _default: typeof __VLS_export;
@@ -4,8 +4,8 @@ type __VLS_Props = {
4
4
  inset?: boolean;
5
5
  };
6
6
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
- vertical: boolean;
8
7
  inset: boolean;
8
+ vertical: boolean;
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
10
  declare const _default: typeof __VLS_export;
11
11
  export default _default;
@@ -13,6 +13,7 @@ type __VLS_Props = {
13
13
  items?: SpeedDialItem[];
14
14
  direction?: 'up' | 'down' | 'left' | 'right' | 'radial';
15
15
  to?: string | Record<string, any>;
16
+ persistent?: boolean;
16
17
  };
17
18
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
19
  click: (args_0: MouseEvent) => any;
@@ -22,6 +23,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
22
23
  size: "small" | "regular" | "large";
23
24
  color: "primary" | "secondary" | "tertiary" | "surface";
24
25
  disabled: boolean;
26
+ persistent: boolean;
25
27
  direction: "up" | "down" | "left" | "right" | "radial";
26
28
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
27
29
  declare const _default: typeof __VLS_export;
@@ -0,0 +1,28 @@
1
+ import type { Placement } from './MAbsolute.vue';
2
+ type __VLS_Props = {
3
+ placement?: Placement;
4
+ offset?: string | number;
5
+ top?: string | number;
6
+ right?: string | number;
7
+ bottom?: string | number;
8
+ left?: string | number;
9
+ inset?: boolean;
10
+ zIndex?: number;
11
+ };
12
+ declare var __VLS_1: {};
13
+ type __VLS_Slots = {} & {
14
+ default?: (props: typeof __VLS_1) => any;
15
+ };
16
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
+ offset: string | number;
18
+ inset: boolean;
19
+ zIndex: number;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
22
+ declare const _default: typeof __VLS_export;
23
+ export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
@@ -0,0 +1,28 @@
1
+ type __VLS_Props = {
2
+ direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
3
+ align?: 'start' | 'center' | 'end' | 'stretch' | 'baseline';
4
+ justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
5
+ gap?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
6
+ wrap?: boolean;
7
+ inline?: boolean;
8
+ };
9
+ declare var __VLS_1: {};
10
+ type __VLS_Slots = {} & {
11
+ default?: (props: typeof __VLS_1) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
+ wrap: boolean;
15
+ inline: boolean;
16
+ direction: "row" | "column" | "row-reverse" | "column-reverse";
17
+ align: "start" | "center" | "end" | "stretch" | "baseline";
18
+ justify: "start" | "center" | "end" | "between" | "around" | "evenly";
19
+ gap: "none" | "xs" | "sm" | "md" | "lg" | "xl";
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
22
+ declare const _default: typeof __VLS_export;
23
+ export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
@@ -0,0 +1,20 @@
1
+ type __VLS_Props = {
2
+ fixed?: boolean;
3
+ zIndex?: number;
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
10
+ fixed: boolean;
11
+ zIndex: number;
12
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
16
+ type __VLS_WithSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -12,8 +12,8 @@ type __VLS_Slots = {} & {
12
12
  default?: (props: typeof __VLS_1) => any;
13
13
  };
14
14
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
15
- cols: 1 | 2 | 3 | 4 | 5 | 6 | 12;
16
15
  gap: "none" | "xs" | "sm" | "md" | "lg" | "xl";
16
+ cols: 1 | 2 | 3 | 4 | 5 | 6 | 12;
17
17
  alignItems: "start" | "center" | "end" | "stretch";
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
19
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -0,0 +1,30 @@
1
+ type __VLS_Props = {
2
+ dense?: boolean;
3
+ dividers?: boolean | 'inset';
4
+ nav?: boolean;
5
+ selectable?: boolean;
6
+ selected?: string | number | null;
7
+ lines?: 1 | 2 | 3;
8
+ };
9
+ declare var __VLS_1: {};
10
+ type __VLS_Slots = {} & {
11
+ default?: (props: typeof __VLS_1) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "update:selected": (value: string | number | null) => any;
15
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
16
+ "onUpdate:selected"?: ((value: string | number | null) => any) | undefined;
17
+ }>, {
18
+ nav: boolean;
19
+ dense: boolean;
20
+ selectable: boolean;
21
+ dividers: boolean | "inset";
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
24
+ declare const _default: typeof __VLS_export;
25
+ export default _default;
26
+ type __VLS_WithSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,60 @@
1
+ export type ListItemLeading = 'icon' | 'avatar' | 'checkbox' | 'radio' | 'image' | 'icon-container';
2
+ export type ListItemTrailing = 'icon' | 'text' | 'switch' | 'checkbox';
3
+ type __VLS_Props = {
4
+ title?: string;
5
+ subtitle?: string;
6
+ description?: string;
7
+ lines?: 1 | 2 | 3;
8
+ icon?: string;
9
+ leading?: ListItemLeading;
10
+ avatarName?: string;
11
+ image?: string;
12
+ iconContainerColor?: 'primary' | 'secondary' | 'tertiary' | 'error' | 'success';
13
+ trailingIcon?: string;
14
+ trailingText?: string;
15
+ trailing?: ListItemTrailing;
16
+ trailingValue?: boolean;
17
+ value?: string | number;
18
+ active?: boolean;
19
+ disabled?: boolean;
20
+ clickable?: boolean;
21
+ href?: string;
22
+ to?: string | object;
23
+ expandable?: boolean;
24
+ expanded?: boolean;
25
+ };
26
+ declare var __VLS_1: {}, __VLS_8: {}, __VLS_21: {}, __VLS_32: {}, __VLS_54: {}, __VLS_56: {};
27
+ type __VLS_Slots = {} & {
28
+ leading?: (props: typeof __VLS_1) => any;
29
+ } & {
30
+ default?: (props: typeof __VLS_8) => any;
31
+ } & {
32
+ children?: (props: typeof __VLS_21) => any;
33
+ } & {
34
+ leading?: (props: typeof __VLS_32) => any;
35
+ } & {
36
+ default?: (props: typeof __VLS_54) => any;
37
+ } & {
38
+ trailing?: (props: typeof __VLS_56) => any;
39
+ };
40
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
41
+ click: (e: MouseEvent) => any;
42
+ "update:trailingValue": (value: boolean) => any;
43
+ "update:expanded": (value: boolean) => any;
44
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
45
+ onClick?: ((e: MouseEvent) => any) | undefined;
46
+ "onUpdate:trailingValue"?: ((value: boolean) => any) | undefined;
47
+ "onUpdate:expanded"?: ((value: boolean) => any) | undefined;
48
+ }>, {
49
+ active: boolean;
50
+ disabled: boolean;
51
+ expandable: boolean;
52
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
53
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
54
+ declare const _default: typeof __VLS_export;
55
+ export default _default;
56
+ type __VLS_WithSlots<T, S> = T & {
57
+ new (): {
58
+ $slots: S;
59
+ };
60
+ };
@@ -0,0 +1,18 @@
1
+ type __VLS_Props = {
2
+ inset?: boolean;
3
+ };
4
+ declare var __VLS_1: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
9
+ inset: boolean;
10
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -10,8 +10,8 @@ type __VLS_Slots = {} & {
10
10
  default?: (props: typeof __VLS_1) => any;
11
11
  };
12
12
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
- cols: number;
14
13
  gap: "none" | "xs" | "sm" | "md" | "lg" | "xl";
14
+ cols: number;
15
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
17
  declare const _default: typeof __VLS_export;
@@ -0,0 +1,26 @@
1
+ type __VLS_Props = {
2
+ modelValue?: boolean;
3
+ scrim?: boolean;
4
+ zIndex?: number;
5
+ };
6
+ declare var __VLS_13: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_13) => any;
9
+ };
10
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
+ "update:modelValue": (value: boolean) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
+ }>, {
15
+ modelValue: boolean;
16
+ zIndex: number;
17
+ scrim: boolean;
18
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
20
+ declare const _default: typeof __VLS_export;
21
+ export default _default;
22
+ type __VLS_WithSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -15,8 +15,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
15
15
  }>, {
16
16
  size: number;
17
17
  color: string;
18
- max: number;
19
18
  icon: string;
19
+ max: number;
20
20
  halfIncrements: boolean;
21
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
22
  declare const _default: typeof __VLS_export;
@@ -0,0 +1,13 @@
1
+ declare var __VLS_1: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
4
+ };
5
+ declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -0,0 +1,21 @@
1
+ type Breakpoint = 'sm-up' | 'md-up' | 'lg-up' | 'xl-up' | 'sm-down' | 'md-down' | 'lg-down' | 'xl-down';
2
+ type __VLS_Props = {
3
+ show?: Breakpoint;
4
+ hide?: Breakpoint;
5
+ tag?: string;
6
+ };
7
+ declare var __VLS_8: {};
8
+ type __VLS_Slots = {} & {
9
+ default?: (props: typeof __VLS_8) => any;
10
+ };
11
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
12
+ tag: string;
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
15
+ declare const _default: typeof __VLS_export;
16
+ export default _default;
17
+ type __VLS_WithSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,20 @@
1
+ type __VLS_Props = {
2
+ direction?: 'vertical' | 'horizontal' | 'both';
3
+ height?: string;
4
+ maxHeight?: string;
5
+ };
6
+ declare var __VLS_1: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_1) => any;
9
+ };
10
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
11
+ direction: "vertical" | "horizontal" | "both";
12
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
16
+ type __VLS_WithSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -0,0 +1,31 @@
1
+ import type { TextVariant } from './MText.vue';
2
+ type __VLS_Props = {
3
+ title?: string;
4
+ subtitle?: string;
5
+ divider?: boolean;
6
+ gap?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
7
+ titleVariant?: TextVariant;
8
+ };
9
+ declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {};
10
+ type __VLS_Slots = {} & {
11
+ title?: (props: typeof __VLS_1) => any;
12
+ } & {
13
+ subtitle?: (props: typeof __VLS_3) => any;
14
+ } & {
15
+ actions?: (props: typeof __VLS_5) => any;
16
+ } & {
17
+ default?: (props: typeof __VLS_7) => any;
18
+ };
19
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
20
+ gap: "none" | "xs" | "sm" | "md" | "lg" | "xl";
21
+ divider: boolean;
22
+ titleVariant: TextVariant;
23
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
25
+ declare const _default: typeof __VLS_export;
26
+ export default _default;
27
+ type __VLS_WithSlots<T, S> = T & {
28
+ new (): {
29
+ $slots: S;
30
+ };
31
+ };
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -13,12 +13,12 @@ type __VLS_Slots = {} & {
13
13
  };
14
14
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
15
15
  wrap: boolean;
16
+ inline: boolean;
16
17
  direction: "column" | "row";
17
- gap: "none" | "xs" | "sm" | "md" | "lg" | "xl";
18
18
  align: "start" | "center" | "end" | "stretch" | "baseline";
19
19
  justify: "start" | "center" | "end" | "between" | "around" | "evenly";
20
+ gap: "none" | "xs" | "sm" | "md" | "lg" | "xl";
20
21
  divider: boolean;
21
- inline: boolean;
22
22
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
23
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
24
24
  declare const _default: typeof __VLS_export;
@@ -0,0 +1,20 @@
1
+ type __VLS_Props = {
2
+ top?: string | number;
3
+ zIndex?: number;
4
+ };
5
+ declare var __VLS_1: {};
6
+ type __VLS_Slots = {} & {
7
+ default?: (props: typeof __VLS_1) => any;
8
+ };
9
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
10
+ top: string | number;
11
+ zIndex: number;
12
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
16
+ type __VLS_WithSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -0,0 +1,22 @@
1
+ type __VLS_Props = {
2
+ size?: 'large' | 'medium' | 'small';
3
+ color?: 'on-surface' | 'on-surface-variant' | 'primary' | 'secondary' | 'tertiary' | 'error' | 'inherit';
4
+ align?: 'left' | 'center' | 'right';
5
+ truncate?: boolean;
6
+ };
7
+ declare var __VLS_8: {};
8
+ type __VLS_Slots = {} & {
9
+ default?: (props: typeof __VLS_8) => any;
10
+ };
11
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
12
+ size: "large" | "medium" | "small";
13
+ color: "on-surface" | "on-surface-variant" | "primary" | "secondary" | "tertiary" | "error" | "inherit";
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
18
+ type __VLS_WithSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,27 @@
1
+ export type TextVariant = 'display-large' | 'display-medium' | 'display-small' | 'headline-large' | 'headline-medium' | 'headline-small' | 'title-large' | 'title-medium' | 'title-small' | 'body-large' | 'body-medium' | 'body-small' | 'label-large' | 'label-medium' | 'label-small';
2
+ type __VLS_Props = {
3
+ variant?: TextVariant;
4
+ tag?: string;
5
+ color?: 'on-surface' | 'on-surface-variant' | 'primary' | 'secondary' | 'tertiary' | 'error' | 'inherit';
6
+ align?: 'left' | 'center' | 'right';
7
+ truncate?: boolean;
8
+ lines?: 1 | 2 | 3 | 4 | 5 | 6;
9
+ weight?: 'regular' | 'medium' | 'bold';
10
+ };
11
+ declare var __VLS_8: {};
12
+ type __VLS_Slots = {} & {
13
+ default?: (props: typeof __VLS_8) => any;
14
+ };
15
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
16
+ color: "on-surface" | "on-surface-variant" | "primary" | "secondary" | "tertiary" | "error" | "inherit";
17
+ variant: TextVariant;
18
+ align: "left" | "center" | "right";
19
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
21
+ declare const _default: typeof __VLS_export;
22
+ export default _default;
23
+ type __VLS_WithSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
@@ -0,0 +1,22 @@
1
+ type __VLS_Props = {
2
+ size?: 'large' | 'medium' | 'small';
3
+ color?: 'on-surface' | 'on-surface-variant' | 'primary' | 'secondary' | 'tertiary' | 'error' | 'inherit';
4
+ align?: 'left' | 'center' | 'right';
5
+ truncate?: boolean;
6
+ };
7
+ declare var __VLS_8: {};
8
+ type __VLS_Slots = {} & {
9
+ default?: (props: typeof __VLS_8) => any;
10
+ };
11
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
12
+ size: "large" | "medium" | "small";
13
+ color: "on-surface" | "on-surface-variant" | "primary" | "secondary" | "tertiary" | "error" | "inherit";
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
18
+ type __VLS_WithSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };