@code-coaching/vuetiful 0.26.0 → 0.27.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 (262) hide show
  1. package/README.md +47 -55
  2. package/dist/css/animations.css +2 -0
  3. package/{src → dist}/css/overrides/quasar.css +73 -58
  4. package/{src/styles → dist/css}/transitions/slide.css +6 -0
  5. package/dist/favicon.ico +0 -0
  6. package/dist/types/components/atoms/VAvatar.vue.d.ts +39 -90
  7. package/dist/types/components/atoms/VBadge.vue.d.ts +34 -21
  8. package/dist/types/components/atoms/VButton.vue.d.ts +42 -48
  9. package/dist/types/components/atoms/VChip.vue.d.ts +33 -21
  10. package/dist/types/components/atoms/VLightSwitch.vue.d.ts +5 -5
  11. package/dist/types/components/atoms/VRadio/VRadioDescription.vue.d.ts +7 -12
  12. package/dist/types/components/atoms/VRadio/VRadioGroup.vue.d.ts +53 -83
  13. package/dist/types/components/atoms/VRadio/VRadioItem.vue.d.ts +46 -12
  14. package/dist/types/components/atoms/VRadio/VRadioLabel.vue.d.ts +7 -12
  15. package/dist/types/components/atoms/VSwitch/VSwitch.vue.d.ts +51 -72
  16. package/dist/types/components/atoms/VSwitch/VSwitchDescription.vue.d.ts +32 -11
  17. package/dist/types/components/atoms/VSwitch/VSwitchGroup.vue.d.ts +32 -11
  18. package/dist/types/components/atoms/VSwitch/VSwitchLabel.vue.d.ts +33 -20
  19. package/dist/types/components/molecules/VAccordion/VAccordion.vue.d.ts +39 -28
  20. package/dist/types/components/molecules/VAccordion/VAccordionItem.vue.d.ts +35 -19
  21. package/dist/types/components/molecules/VAlert.vue.d.ts +50 -73
  22. package/dist/types/components/molecules/VCard/VCard.vue.d.ts +37 -48
  23. package/dist/types/components/molecules/VCard/VCardBody.vue.d.ts +33 -12
  24. package/dist/types/components/molecules/VCard/VCardFooter.vue.d.ts +36 -20
  25. package/dist/types/components/molecules/VCard/VCardHeader.vue.d.ts +36 -20
  26. package/dist/types/components/molecules/VCodeBlock.vue.d.ts +15 -16
  27. package/dist/types/components/molecules/VDrawer.vue.d.ts +13 -7
  28. package/dist/types/components/molecules/VListbox/VListbox.vue.d.ts +54 -132
  29. package/dist/types/components/molecules/VListbox/VListboxButton.vue.d.ts +22 -21
  30. package/dist/types/components/molecules/VListbox/VListboxItem.vue.d.ts +22 -19
  31. package/dist/types/components/molecules/VListbox/VListboxItems.vue.d.ts +19 -30
  32. package/dist/types/components/molecules/VListbox/VListboxLabel.vue.d.ts +7 -12
  33. package/dist/types/components/molecules/VPreview.vue.d.ts +57 -74
  34. package/dist/types/components/molecules/VRail/VRail.vue.d.ts +28 -13
  35. package/dist/types/components/molecules/VRail/VRailTile.vue.d.ts +49 -16
  36. package/dist/types/components/molecules/VShell.vue.d.ts +76 -44
  37. package/dist/types/components/molecules/VShellConfigurator.vue.d.ts +99 -0
  38. package/dist/types/components/molecules/VTabs/VTab.vue.d.ts +52 -20
  39. package/dist/types/components/molecules/VTabs/VTabPanel.vue.d.ts +8 -1
  40. package/dist/types/components/molecules/VTabs/VTabs.vue.d.ts +43 -101
  41. package/dist/types/components/molecules/Vuetiful.vue.d.ts +22 -0
  42. package/dist/types/components/molecules/index.d.ts +3 -4
  43. package/dist/types/directives/click-outside-group.d.ts +1 -1
  44. package/dist/types/directives/click-outside.d.ts +1 -1
  45. package/dist/types/directives/clipboard.d.ts +1 -1
  46. package/dist/types/index.d.ts +1 -8
  47. package/dist/types/props/props.d.ts +1 -14
  48. package/dist/types/services/dark-mode.service.d.ts +1 -1
  49. package/dist/types/services/drawer.service.d.ts +3 -3
  50. package/dist/types/services/index.d.ts +2 -2
  51. package/dist/types/utils/id-generator.d.ts +1 -0
  52. package/dist/types/utils/index.d.ts +3 -4
  53. package/dist/types/utils/tailwind-merge.d.ts +1 -0
  54. package/dist/types/utils/theme/rocket.theme.d.ts +223 -0
  55. package/dist/types/utils/theme/theme-switcher.vue.d.ts +14 -5
  56. package/dist/types/utils/theme/theme.service.d.ts +6 -9
  57. package/dist/types/utils/theme/themes.d.ts +3 -39
  58. package/dist/types/utils/theme/vuetiful.theme.d.ts +224 -0
  59. package/dist/vuetiful.es.mjs +54831 -49535
  60. package/dist/vuetiful.umd.cjs +189 -0
  61. package/package.json +53 -37
  62. package/dist/style.css +0 -10
  63. package/dist/types/components/VBootstrap.vue.d.ts +0 -15
  64. package/dist/types/components/atoms/VAvatar.test.d.ts +0 -1
  65. package/dist/types/components/atoms/VBadge.test.d.ts +0 -1
  66. package/dist/types/components/atoms/VButton.test.d.ts +0 -1
  67. package/dist/types/components/atoms/VChip.test.d.ts +0 -1
  68. package/dist/types/components/atoms/VLightSwitch.test.d.ts +0 -1
  69. package/dist/types/components/atoms/VRadio/VRadioDescription.test.d.ts +0 -1
  70. package/dist/types/components/atoms/VRadio/VRadioGroup.test.d.ts +0 -1
  71. package/dist/types/components/atoms/VRadio/VRadioItem.test.d.ts +0 -1
  72. package/dist/types/components/atoms/VRadio/VRadioLabel.test.d.ts +0 -1
  73. package/dist/types/components/atoms/VSwitch/VSwitch.test.d.ts +0 -1
  74. package/dist/types/components/atoms/VSwitch/VSwitchDescription.test.d.ts +0 -1
  75. package/dist/types/components/atoms/VSwitch/VSwitchGroup.test.d.ts +0 -1
  76. package/dist/types/components/atoms/VSwitch/VSwitchLabel.test.d.ts +0 -1
  77. package/dist/types/components/molecules/VAccordion/VAccordion.test.d.ts +0 -1
  78. package/dist/types/components/molecules/VAccordion/VAccordionItem.test.d.ts +0 -1
  79. package/dist/types/components/molecules/VAlert.test.d.ts +0 -1
  80. package/dist/types/components/molecules/VCard/VCard.test.d.ts +0 -1
  81. package/dist/types/components/molecules/VCard/VCardBody.test.d.ts +0 -1
  82. package/dist/types/components/molecules/VCard/VCardFooter.test.d.ts +0 -1
  83. package/dist/types/components/molecules/VCard/VCardHeader.test.d.ts +0 -1
  84. package/dist/types/components/molecules/VCodeBlock.test.d.ts +0 -1
  85. package/dist/types/components/molecules/VDrawer.test.d.ts +0 -1
  86. package/dist/types/components/molecules/VListbox/VListbox.test.d.ts +0 -1
  87. package/dist/types/components/molecules/VListbox/VListboxButton.test.d.ts +0 -1
  88. package/dist/types/components/molecules/VListbox/VListboxItem.test.d.ts +0 -1
  89. package/dist/types/components/molecules/VListbox/VListboxItems.test.d.ts +0 -1
  90. package/dist/types/components/molecules/VListbox/VListboxLabel.test.d.ts +0 -1
  91. package/dist/types/components/molecules/VPreview.test.d.ts +0 -1
  92. package/dist/types/components/molecules/VRail/VRail.test.d.ts +0 -1
  93. package/dist/types/components/molecules/VRail/VRailTile.test.d.ts +0 -1
  94. package/dist/types/components/molecules/VShell.test.d.ts +0 -1
  95. package/dist/types/components/molecules/VTabs/VTab.test.d.ts +0 -1
  96. package/dist/types/components/molecules/VTabs/VTabPanel.test.d.ts +0 -1
  97. package/dist/types/components/molecules/VTabs/VTabs.test.d.ts +0 -1
  98. package/dist/types/directives/click-outside-group.test.d.ts +0 -1
  99. package/dist/types/directives/click-outside.test.d.ts +0 -1
  100. package/dist/types/directives/clipboard.test.d.ts +0 -1
  101. package/dist/types/services/dark-mode.service.test.d.ts +0 -1
  102. package/dist/types/services/drawer.service.test.d.ts +0 -1
  103. package/dist/types/services/highlight.service.test.d.ts +0 -1
  104. package/dist/types/services/rail.service.test.d.ts +0 -1
  105. package/dist/types/services/settings.service.test.d.ts +0 -1
  106. package/dist/types/types/index.d.ts +0 -54
  107. package/dist/types/types/tailwind.d.ts +0 -4
  108. package/dist/types/utils/colors/colors.service.d.ts +0 -69
  109. package/dist/types/utils/platform/platform.service.test.d.ts +0 -1
  110. package/dist/types/utils/theme/callback.test.d.ts +0 -1
  111. package/dist/types/utils/theme/remove.test.d.ts +0 -1
  112. package/dist/types/utils/theme/theme.service.test.d.ts +0 -1
  113. package/dist/vuetiful.umd.js +0 -99
  114. package/src/assets/fonts/myfont.woff +0 -0
  115. package/src/assets/main.css +0 -17
  116. package/src/components/VBootstrap.vue +0 -62
  117. package/src/components/atoms/VAvatar.test.ts +0 -175
  118. package/src/components/atoms/VAvatar.vue +0 -89
  119. package/src/components/atoms/VBadge.test.ts +0 -28
  120. package/src/components/atoms/VBadge.vue +0 -17
  121. package/src/components/atoms/VButton.test.ts +0 -180
  122. package/src/components/atoms/VButton.vue +0 -76
  123. package/src/components/atoms/VChip.test.ts +0 -33
  124. package/src/components/atoms/VChip.vue +0 -17
  125. package/src/components/atoms/VLightSwitch.test.ts +0 -69
  126. package/src/components/atoms/VLightSwitch.vue +0 -121
  127. package/src/components/atoms/VRadio/VRadioDescription.test.ts +0 -55
  128. package/src/components/atoms/VRadio/VRadioDescription.vue +0 -14
  129. package/src/components/atoms/VRadio/VRadioGroup.test.ts +0 -81
  130. package/src/components/atoms/VRadio/VRadioGroup.vue +0 -88
  131. package/src/components/atoms/VRadio/VRadioItem.test.ts +0 -183
  132. package/src/components/atoms/VRadio/VRadioItem.vue +0 -36
  133. package/src/components/atoms/VRadio/VRadioLabel.test.ts +0 -55
  134. package/src/components/atoms/VRadio/VRadioLabel.vue +0 -16
  135. package/src/components/atoms/VSwitch/VSwitch.test.ts +0 -100
  136. package/src/components/atoms/VSwitch/VSwitch.vue +0 -106
  137. package/src/components/atoms/VSwitch/VSwitchDescription.test.ts +0 -55
  138. package/src/components/atoms/VSwitch/VSwitchDescription.vue +0 -16
  139. package/src/components/atoms/VSwitch/VSwitchGroup.test.ts +0 -26
  140. package/src/components/atoms/VSwitch/VSwitchGroup.vue +0 -16
  141. package/src/components/atoms/VSwitch/VSwitchLabel.test.ts +0 -89
  142. package/src/components/atoms/VSwitch/VSwitchLabel.vue +0 -20
  143. package/src/components/atoms/index.ts +0 -31
  144. package/src/components/index.ts +0 -2
  145. package/src/components/molecules/VAccordion/VAccordion.test.ts +0 -27
  146. package/src/components/molecules/VAccordion/VAccordion.vue +0 -32
  147. package/src/components/molecules/VAccordion/VAccordionItem.test.ts +0 -134
  148. package/src/components/molecules/VAccordion/VAccordionItem.vue +0 -68
  149. package/src/components/molecules/VAlert.test.ts +0 -100
  150. package/src/components/molecules/VAlert.vue +0 -137
  151. package/src/components/molecules/VCard/VCard.test.ts +0 -47
  152. package/src/components/molecules/VCard/VCard.vue +0 -74
  153. package/src/components/molecules/VCard/VCardBody.test.ts +0 -39
  154. package/src/components/molecules/VCard/VCardBody.vue +0 -16
  155. package/src/components/molecules/VCard/VCardFooter.test.ts +0 -63
  156. package/src/components/molecules/VCard/VCardFooter.vue +0 -31
  157. package/src/components/molecules/VCard/VCardHeader.test.ts +0 -86
  158. package/src/components/molecules/VCard/VCardHeader.vue +0 -53
  159. package/src/components/molecules/VCodeBlock.test.ts +0 -133
  160. package/src/components/molecules/VCodeBlock.vue +0 -113
  161. package/src/components/molecules/VDrawer.test.ts +0 -14
  162. package/src/components/molecules/VDrawer.vue +0 -87
  163. package/src/components/molecules/VListbox/VListbox.test.ts +0 -146
  164. package/src/components/molecules/VListbox/VListbox.vue +0 -149
  165. package/src/components/molecules/VListbox/VListboxButton.test.ts +0 -66
  166. package/src/components/molecules/VListbox/VListboxButton.vue +0 -57
  167. package/src/components/molecules/VListbox/VListboxItem.test.ts +0 -51
  168. package/src/components/molecules/VListbox/VListboxItem.vue +0 -39
  169. package/src/components/molecules/VListbox/VListboxItems.test.ts +0 -44
  170. package/src/components/molecules/VListbox/VListboxItems.vue +0 -42
  171. package/src/components/molecules/VListbox/VListboxLabel.test.ts +0 -30
  172. package/src/components/molecules/VListbox/VListboxLabel.vue +0 -14
  173. package/src/components/molecules/VPreview.test.ts +0 -73
  174. package/src/components/molecules/VPreview.vue +0 -230
  175. package/src/components/molecules/VRail/VRail.test.ts +0 -14
  176. package/src/components/molecules/VRail/VRail.vue +0 -33
  177. package/src/components/molecules/VRail/VRailTile.test.ts +0 -97
  178. package/src/components/molecules/VRail/VRailTile.vue +0 -49
  179. package/src/components/molecules/VShell.test.ts +0 -14
  180. package/src/components/molecules/VShell.vue +0 -63
  181. package/src/components/molecules/VTabs/VTab.test.ts +0 -143
  182. package/src/components/molecules/VTabs/VTab.vue +0 -50
  183. package/src/components/molecules/VTabs/VTabPanel.test.ts +0 -24
  184. package/src/components/molecules/VTabs/VTabPanel.vue +0 -9
  185. package/src/components/molecules/VTabs/VTabs.test.ts +0 -92
  186. package/src/components/molecules/VTabs/VTabs.vue +0 -104
  187. package/src/components/molecules/index.ts +0 -51
  188. package/src/directives/click-outside-group.test.ts +0 -44
  189. package/src/directives/click-outside-group.ts +0 -39
  190. package/src/directives/click-outside.test.ts +0 -38
  191. package/src/directives/click-outside.ts +0 -28
  192. package/src/directives/clipboard.test.ts +0 -26
  193. package/src/directives/clipboard.ts +0 -9
  194. package/src/directives/index.ts +0 -5
  195. package/src/env.d.ts +0 -8
  196. package/src/index.ts +0 -21
  197. package/src/props/index.ts +0 -1
  198. package/src/props/props.ts +0 -62
  199. package/src/services/dark-mode.service.test.ts +0 -104
  200. package/src/services/dark-mode.service.ts +0 -75
  201. package/src/services/drawer.service.test.ts +0 -45
  202. package/src/services/drawer.service.ts +0 -46
  203. package/src/services/highlight.service.test.ts +0 -24
  204. package/src/services/highlight.service.ts +0 -19
  205. package/src/services/index.ts +0 -8
  206. package/src/services/rail.service.test.ts +0 -13
  207. package/src/services/rail.service.ts +0 -11
  208. package/src/services/settings.service.test.ts +0 -17
  209. package/src/services/settings.service.ts +0 -136
  210. package/src/styles/all.css +0 -24
  211. package/src/styles/core.css +0 -66
  212. package/src/styles/elements/alerts.css +0 -17
  213. package/src/styles/elements/badges.css +0 -31
  214. package/src/styles/elements/breadcrumbs.css +0 -26
  215. package/src/styles/elements/buttons.css +0 -103
  216. package/src/styles/elements/cards.css +0 -32
  217. package/src/styles/elements/chips.css +0 -22
  218. package/src/styles/elements/forms.css +0 -269
  219. package/src/styles/elements/lists.css +0 -48
  220. package/src/styles/elements/logo-clouds.css +0 -29
  221. package/src/styles/elements/modals.css +0 -15
  222. package/src/styles/elements/placeholders.css +0 -17
  223. package/src/styles/elements/popups.css +0 -16
  224. package/src/styles/elements/tables.css +0 -102
  225. package/src/styles/elements.css +0 -19
  226. package/src/styles/highlight-js.css +0 -116
  227. package/src/styles/tailwind.css +0 -16
  228. package/src/styles/transitions.css +0 -2
  229. package/src/styles/typography.css +0 -101
  230. package/src/styles/variants.css +0 -156
  231. package/src/tailwind/core.cjs +0 -37
  232. package/src/tailwind/generated/intellisense-classes.cjs +0 -558
  233. package/src/tailwind/intellisense.cjs +0 -21
  234. package/src/tailwind/settings.cjs +0 -20
  235. package/src/tailwind/theme/colors.cjs +0 -20
  236. package/src/tailwind/tokens/backgrounds.cjs +0 -48
  237. package/src/tailwind/tokens/border-radius.cjs +0 -21
  238. package/src/tailwind/tokens/borders.cjs +0 -24
  239. package/src/tailwind/tokens/fills.cjs +0 -20
  240. package/src/tailwind/tokens/rings.cjs +0 -50
  241. package/src/tailwind/tokens/text.cjs +0 -35
  242. package/src/tailwind/vuetiful.cjs +0 -19
  243. package/src/themes/theme-rocket.css +0 -119
  244. package/src/themes/theme-sahara.css +0 -128
  245. package/src/themes/theme-seafoam.css +0 -120
  246. package/src/themes/theme-seasonal.css +0 -115
  247. package/src/themes/theme-skeleton.css +0 -115
  248. package/src/themes/theme-vintage.css +0 -125
  249. package/src/themes/theme-vuetiful.css +0 -136
  250. package/src/types/index.ts +0 -59
  251. package/src/types/tailwind.ts +0 -7
  252. package/src/utils/colors/colors.service.ts +0 -293
  253. package/src/utils/index.ts +0 -8
  254. package/src/utils/platform/platform.service.test.ts +0 -19
  255. package/src/utils/platform/platform.service.ts +0 -8
  256. package/src/utils/theme/callback.test.ts +0 -28
  257. package/src/utils/theme/remove.test.ts +0 -27
  258. package/src/utils/theme/theme-switcher.vue +0 -78
  259. package/src/utils/theme/theme.service.test.ts +0 -269
  260. package/src/utils/theme/theme.service.ts +0 -173
  261. package/src/utils/theme/themes.ts +0 -282
  262. /package/{src/styles → dist/css}/transitions/fade.css +0 -0
@@ -1,5 +1,24 @@
1
- import type { CssClasses } from '@/index';
2
- declare const _default: import("vue").DefineComponent<{
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ class: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ classIcon: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ classLabel: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ classActive: {
15
+ type: () => string;
16
+ default: string;
17
+ };
18
+ classHover: {
19
+ type: () => string;
20
+ default: string;
21
+ };
3
22
  value: {
4
23
  type: StringConstructor;
5
24
  default: string;
@@ -8,35 +27,49 @@ declare const _default: import("vue").DefineComponent<{
8
27
  type: () => string;
9
28
  default: string;
10
29
  };
11
- regionIcon: {
12
- type: () => CssClasses;
30
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
31
+ class: {
32
+ type: StringConstructor;
13
33
  default: string;
14
34
  };
15
- regionLabel: {
16
- type: () => CssClasses;
35
+ classIcon: {
36
+ type: StringConstructor;
17
37
  default: string;
18
38
  };
19
- }, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
20
- value: {
39
+ classLabel: {
21
40
  type: StringConstructor;
22
41
  default: string;
23
42
  };
24
- label: {
43
+ classActive: {
44
+ type: () => string;
45
+ default: string;
46
+ };
47
+ classHover: {
25
48
  type: () => string;
26
49
  default: string;
27
50
  };
28
- regionIcon: {
29
- type: () => CssClasses;
51
+ value: {
52
+ type: StringConstructor;
30
53
  default: string;
31
54
  };
32
- regionLabel: {
33
- type: () => CssClasses;
55
+ label: {
56
+ type: () => string;
34
57
  default: string;
35
58
  };
36
59
  }>>, {
37
- value: string;
60
+ class: string;
38
61
  label: string;
39
- regionIcon: string;
40
- regionLabel: string;
62
+ value: string;
63
+ classActive: string;
64
+ classHover: string;
65
+ classIcon: string;
66
+ classLabel: string;
67
+ }, {}>, {
68
+ default?(_: {}): any;
41
69
  }>;
42
70
  export default _default;
71
+ type __VLS_WithTemplateSlots<T, S> = T & {
72
+ new (): {
73
+ $slots: S;
74
+ };
75
+ };
@@ -6,81 +6,113 @@
6
6
  * @slot pageFooter - Insert content that resides below your page content. Recommended for most layouts.
7
7
  * @slot fixedFooter - Insert fixed footer content. Not recommended for most layouts.
8
8
  */
9
- export declare type CssClasses = string;
10
- declare const _default: import("vue").DefineComponent<{
11
- regionPage: {
12
- type: () => CssClasses;
9
+ export type CssClasses = string;
10
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
11
+ fixedHeaderHeight: {
12
+ type: StringConstructor;
13
13
  default: string;
14
14
  };
15
- slotFixedHeader: {
16
- type: () => CssClasses;
15
+ fixedFooterHeight: {
16
+ type: StringConstructor;
17
17
  default: string;
18
18
  };
19
- slotSidebarLeft: {
20
- type: () => CssClasses;
19
+ class: {
20
+ type: StringConstructor;
21
21
  default: string;
22
22
  };
23
- slotSidebarRight: {
24
- type: () => CssClasses;
23
+ classFixedHeader: {
24
+ type: StringConstructor;
25
25
  default: string;
26
26
  };
27
- slotPageHeader: {
28
- type: () => CssClasses;
27
+ classPageContainer: {
28
+ type: StringConstructor;
29
29
  default: string;
30
30
  };
31
- slotPageContent: {
32
- type: () => CssClasses;
31
+ classPageSidebarLeft: {
32
+ type: StringConstructor;
33
33
  default: string;
34
34
  };
35
- slotPageFooter: {
36
- type: () => CssClasses;
35
+ classPageSidebarRight: {
36
+ type: StringConstructor;
37
37
  default: string;
38
38
  };
39
- slotFixedFooter: {
40
- type: () => CssClasses;
39
+ classPageHeader: {
40
+ type: StringConstructor;
41
41
  default: string;
42
42
  };
43
- }, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
44
- regionPage: {
45
- type: () => CssClasses;
43
+ classPageContent: {
44
+ type: StringConstructor;
46
45
  default: string;
47
46
  };
48
- slotFixedHeader: {
49
- type: () => CssClasses;
47
+ classPageFooter: {
48
+ type: StringConstructor;
50
49
  default: string;
51
50
  };
52
- slotSidebarLeft: {
53
- type: () => CssClasses;
51
+ classFixedFooter: {
52
+ type: StringConstructor;
54
53
  default: string;
55
54
  };
56
- slotSidebarRight: {
57
- type: () => CssClasses;
55
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
56
+ fixedHeaderHeight: {
57
+ type: StringConstructor;
58
58
  default: string;
59
59
  };
60
- slotPageHeader: {
61
- type: () => CssClasses;
60
+ fixedFooterHeight: {
61
+ type: StringConstructor;
62
62
  default: string;
63
63
  };
64
- slotPageContent: {
65
- type: () => CssClasses;
64
+ class: {
65
+ type: StringConstructor;
66
66
  default: string;
67
67
  };
68
- slotPageFooter: {
69
- type: () => CssClasses;
68
+ classFixedHeader: {
69
+ type: StringConstructor;
70
70
  default: string;
71
71
  };
72
- slotFixedFooter: {
73
- type: () => CssClasses;
72
+ classPageContainer: {
73
+ type: StringConstructor;
74
+ default: string;
75
+ };
76
+ classPageSidebarLeft: {
77
+ type: StringConstructor;
78
+ default: string;
79
+ };
80
+ classPageSidebarRight: {
81
+ type: StringConstructor;
82
+ default: string;
83
+ };
84
+ classPageHeader: {
85
+ type: StringConstructor;
86
+ default: string;
87
+ };
88
+ classPageContent: {
89
+ type: StringConstructor;
90
+ default: string;
91
+ };
92
+ classPageFooter: {
93
+ type: StringConstructor;
94
+ default: string;
95
+ };
96
+ classFixedFooter: {
97
+ type: StringConstructor;
74
98
  default: string;
75
99
  };
76
100
  }>>, {
77
- regionPage: string;
78
- slotFixedHeader: string;
79
- slotSidebarLeft: string;
80
- slotSidebarRight: string;
81
- slotPageHeader: string;
82
- slotPageContent: string;
83
- slotPageFooter: string;
84
- slotFixedFooter: string;
85
- }>;
101
+ class: string;
102
+ fixedHeaderHeight: string;
103
+ fixedFooterHeight: string;
104
+ classFixedHeader: string;
105
+ classPageContainer: string;
106
+ classPageSidebarLeft: string;
107
+ classPageSidebarRight: string;
108
+ classPageHeader: string;
109
+ classPageContent: string;
110
+ classPageFooter: string;
111
+ classFixedFooter: string;
112
+ }, {}>, Readonly<Record<string, any>> & Record<string, any>>;
86
113
  export default _default;
114
+ type __VLS_WithTemplateSlots<T, S> = T & {
115
+ new (): {
116
+ $slots: S;
117
+ };
118
+ };
@@ -0,0 +1,99 @@
1
+ /**
2
+ * @slot fixedHeader - Insert fixed header content, such as Skeleton's App Bar component.
3
+ * @slot sidebarLeft - Hidden when empty. Allows you to set fixed left sidebar content.
4
+ * @slot sidebarRight - Hidden when empty. Allows you to set fixed right sidebar content.
5
+ * @slot pageHeader - Insert content that resides above your page content. Great for global alerts.
6
+ * @slot pageFooter - Insert content that resides below your page content. Recommended for most layouts.
7
+ * @slot fixedFooter - Insert fixed footer content. Not recommended for most layouts.
8
+ */
9
+ export type CssClasses = string;
10
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
11
+ regionPage: {
12
+ type: () => string;
13
+ default: string;
14
+ };
15
+ slotFixedHeader: {
16
+ type: () => string;
17
+ default: string;
18
+ };
19
+ slotSidebarLeft: {
20
+ type: () => string;
21
+ default: string;
22
+ };
23
+ slotSidebarRight: {
24
+ type: () => string;
25
+ default: string;
26
+ };
27
+ slotPageHeader: {
28
+ type: () => string;
29
+ default: string;
30
+ };
31
+ slotPageContent: {
32
+ type: () => string;
33
+ default: string;
34
+ };
35
+ slotPageFooter: {
36
+ type: () => string;
37
+ default: string;
38
+ };
39
+ slotFixedFooter: {
40
+ type: () => string;
41
+ default: string;
42
+ };
43
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
44
+ regionPage: {
45
+ type: () => string;
46
+ default: string;
47
+ };
48
+ slotFixedHeader: {
49
+ type: () => string;
50
+ default: string;
51
+ };
52
+ slotSidebarLeft: {
53
+ type: () => string;
54
+ default: string;
55
+ };
56
+ slotSidebarRight: {
57
+ type: () => string;
58
+ default: string;
59
+ };
60
+ slotPageHeader: {
61
+ type: () => string;
62
+ default: string;
63
+ };
64
+ slotPageContent: {
65
+ type: () => string;
66
+ default: string;
67
+ };
68
+ slotPageFooter: {
69
+ type: () => string;
70
+ default: string;
71
+ };
72
+ slotFixedFooter: {
73
+ type: () => string;
74
+ default: string;
75
+ };
76
+ }>>, {
77
+ regionPage: string;
78
+ slotFixedHeader: string;
79
+ slotSidebarLeft: string;
80
+ slotSidebarRight: string;
81
+ slotPageHeader: string;
82
+ slotPageContent: string;
83
+ slotPageFooter: string;
84
+ slotFixedFooter: string;
85
+ }, {}>, {
86
+ fixedHeader?(_: {}): any;
87
+ sidebarLeft?(_: {}): any;
88
+ pageHeader?(_: {}): any;
89
+ default?(_: {}): any;
90
+ pageFooter?(_: {}): any;
91
+ sidebarRight?(_: {}): any;
92
+ fixedFooter?(_: {}): any;
93
+ }>;
94
+ export default _default;
95
+ type __VLS_WithTemplateSlots<T, S> = T & {
96
+ new (): {
97
+ $slots: S;
98
+ };
99
+ };
@@ -1,23 +1,55 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- disabled: {
3
- type: BooleanConstructor;
4
- default: boolean;
5
- };
6
- unstyled: {
7
- type: BooleanConstructor;
8
- default: boolean;
9
- };
10
- }, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
11
- disabled: {
12
- type: BooleanConstructor;
13
- default: boolean;
14
- };
15
- unstyled: {
16
- type: BooleanConstructor;
17
- default: boolean;
18
- };
19
- }>>, {
20
- unstyled: boolean;
1
+ interface TabProps {
2
+ class?: string;
3
+ classActive?: string;
4
+ classHover?: string;
5
+ classTab?: string;
6
+ classSeparator?: string;
7
+ disabled?: boolean;
8
+ }
9
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TabProps>, {
10
+ class: string;
11
+ classActive: string;
12
+ classHover: string;
13
+ classTab: string;
14
+ classSeparator: string;
21
15
  disabled: boolean;
16
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TabProps>, {
17
+ class: string;
18
+ classActive: string;
19
+ classHover: string;
20
+ classTab: string;
21
+ classSeparator: string;
22
+ disabled: boolean;
23
+ }>>>, {
24
+ class: string;
25
+ disabled: boolean;
26
+ classActive: string;
27
+ classHover: string;
28
+ classTab: string;
29
+ classSeparator: string;
30
+ }, {}>, {
31
+ default?(_: {}): any;
22
32
  }>;
23
33
  export default _default;
34
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
35
+ type __VLS_TypePropsToRuntimeProps<T> = {
36
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
37
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
38
+ } : {
39
+ type: import('vue').PropType<T[K]>;
40
+ required: true;
41
+ };
42
+ };
43
+ type __VLS_WithDefaults<P, D> = {
44
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
45
+ default: D[K];
46
+ }> : P[K];
47
+ };
48
+ type __VLS_Prettify<T> = {
49
+ [K in keyof T]: T[K];
50
+ } & {};
51
+ type __VLS_WithTemplateSlots<T, S> = T & {
52
+ new (): {
53
+ $slots: S;
54
+ };
55
+ };
@@ -1,2 +1,9 @@
1
- declare const _default: import("vue").DefineComponent<{}, () => void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
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
+ }>;
2
4
  export default _default;
5
+ type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -1,104 +1,46 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- hideSeparator: {
3
- type: BooleanConstructor;
4
- default: boolean;
5
- };
6
- vertical: {
7
- type: BooleanConstructor;
8
- default: boolean;
9
- };
10
- active: {
11
- type: StringConstructor;
12
- default: string;
13
- };
14
- hover: {
15
- type: StringConstructor;
16
- default: string;
17
- };
18
- classPanels: {
19
- type: StringConstructor;
20
- default: string;
21
- };
22
- classTabs: {
23
- type: StringConstructor;
24
- default: string;
25
- };
26
- classTab: {
27
- type: StringConstructor;
28
- default: string;
29
- };
30
- classSeparator: {
31
- type: StringConstructor;
32
- default: string;
33
- };
34
- classTabSeparator: {
35
- type: StringConstructor;
36
- default: string;
37
- };
38
- defaultIndex: {
39
- type: NumberConstructor;
40
- default: number;
41
- };
42
- unstyled: {
43
- type: BooleanConstructor;
44
- default: boolean;
45
- };
46
- }, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
47
- hideSeparator: {
48
- type: BooleanConstructor;
49
- default: boolean;
50
- };
51
- vertical: {
52
- type: BooleanConstructor;
53
- default: boolean;
54
- };
55
- active: {
56
- type: StringConstructor;
57
- default: string;
58
- };
59
- hover: {
60
- type: StringConstructor;
61
- default: string;
62
- };
63
- classPanels: {
64
- type: StringConstructor;
65
- default: string;
66
- };
67
- classTabs: {
68
- type: StringConstructor;
69
- default: string;
70
- };
71
- classTab: {
72
- type: StringConstructor;
73
- default: string;
74
- };
75
- classSeparator: {
76
- type: StringConstructor;
77
- default: string;
78
- };
79
- classTabSeparator: {
80
- type: StringConstructor;
81
- default: string;
82
- };
83
- defaultIndex: {
84
- type: NumberConstructor;
85
- default: number;
86
- };
87
- unstyled: {
88
- type: BooleanConstructor;
89
- default: boolean;
90
- };
91
- }>>, {
92
- unstyled: boolean;
93
- active: string;
94
- hover: string;
95
- vertical: boolean;
96
- classTab: string;
97
- hideSeparator: boolean;
98
- classTabSeparator: string;
99
- classPanels: string;
100
- classTabs: string;
101
- classSeparator: string;
1
+ interface TabsProps {
2
+ class?: string;
3
+ classPanels?: string;
4
+ classTabs?: string;
5
+ classTab?: string;
6
+ classTabActive?: string;
7
+ classTabHover?: string;
8
+ classSeparator?: string;
9
+ classTabSeparator?: string;
10
+ hideSeparator?: boolean;
11
+ vertical?: boolean;
12
+ defaultIndex?: number;
13
+ }
14
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TabsProps>, {
15
+ defaultIndex: number;
16
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TabsProps>, {
17
+ defaultIndex: number;
18
+ }>>>, {
102
19
  defaultIndex: number;
20
+ }, {}>, {
21
+ tabs?(_: {}): any;
22
+ default?(_: {}): any;
103
23
  }>;
104
24
  export default _default;
25
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
26
+ type __VLS_TypePropsToRuntimeProps<T> = {
27
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
28
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
29
+ } : {
30
+ type: import('vue').PropType<T[K]>;
31
+ required: true;
32
+ };
33
+ };
34
+ type __VLS_WithDefaults<P, D> = {
35
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
36
+ default: D[K];
37
+ }> : P[K];
38
+ };
39
+ type __VLS_Prettify<T> = {
40
+ [K in keyof T]: T[K];
41
+ } & {};
42
+ type __VLS_WithTemplateSlots<T, S> = T & {
43
+ new (): {
44
+ $slots: S;
45
+ };
46
+ };
@@ -0,0 +1,22 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
+ idGenerator?: (() => string) | undefined;
3
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
+ idGenerator?: (() => string) | undefined;
5
+ }>>>, {}, {}>, {
6
+ default?(_: {}): any;
7
+ }>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -3,11 +3,9 @@ import VPreview from './VPreview.vue';
3
3
  import VRail from './VRail/VRail.vue';
4
4
  import VRailTile from './VRail/VRailTile.vue';
5
5
  import VShell from './VShell.vue';
6
+ import VShellConfigurator from './VShellConfigurator.vue';
6
7
  import VListbox from './VListbox/VListbox.vue';
7
- import VListboxButton from './VListbox/VListboxButton.vue';
8
8
  import VListboxItem from './VListbox/VListboxItem.vue';
9
- import VListboxItems from './VListbox/VListboxItems.vue';
10
- import VListboxLabel from './VListbox/VListboxLabel.vue';
11
9
  import VTab from './VTabs/VTab.vue';
12
10
  import VTabPanel from './VTabs/VTabPanel.vue';
13
11
  import VTabs from './VTabs/VTabs.vue';
@@ -19,4 +17,5 @@ import VCardBody from './VCard/VCardBody.vue';
19
17
  import VCardFooter from './VCard/VCardFooter.vue';
20
18
  import VCardHeader from './VCard/VCardHeader.vue';
21
19
  import VCodeBlock from './VCodeBlock.vue';
22
- export { VAccordion, VAccordionItem, VAlert, VCard, VCardBody, VCardFooter, VCardHeader, VCodeBlock, VDrawer, VListbox, VListboxButton, VListboxItem, VListboxItems, VListboxLabel, VPreview, VRail, VRailTile, VShell, VTab, VTabPanel, VTabs, };
20
+ import Vuetiful from './Vuetiful.vue';
21
+ export { VAccordion, VAccordionItem, VAlert, VCard, VCardBody, VCardFooter, VCardHeader, VCodeBlock, VDrawer, VListbox, VListboxItem, VPreview, VRail, VRailTile, VShell, VShellConfigurator, VTab, VTabPanel, VTabs, Vuetiful };
@@ -1,4 +1,4 @@
1
- import { DirectiveBinding } from 'vue';
1
+ import { type DirectiveBinding } from 'vue';
2
2
  interface HTMLElementWithClickOutsideHandler extends HTMLElement {
3
3
  _clickOutsideHandler?: (event: MouseEvent) => void;
4
4
  }
@@ -1,4 +1,4 @@
1
- import { DirectiveBinding } from 'vue';
1
+ import { type DirectiveBinding } from 'vue';
2
2
  interface HTMLElementWithClickOutsideHandler extends HTMLElement {
3
3
  _clickOutsideHandler?: (event: MouseEvent) => void;
4
4
  }
@@ -1,3 +1,3 @@
1
- import { DirectiveBinding } from 'vue';
1
+ import { type DirectiveBinding } from 'vue';
2
2
  declare const clipboard: (el: HTMLElement, binding: DirectiveBinding) => void;
3
3
  export default clipboard;
@@ -1,12 +1,5 @@
1
- declare function install(app: any): void;
2
- import './assets/main.css';
3
- import './styles/tailwind.css';
4
- declare const _default: {
5
- install: typeof install;
6
- };
7
- export default _default;
8
1
  export * from './components';
9
2
  export * from './utils';
10
3
  export * from './directives';
11
4
  export * from './services';
12
- export declare type CssClasses = string;
5
+ export type CssClasses = string;
@@ -1,14 +1 @@
1
- import { PropType } from 'vue';
2
- declare const sizeProp: {
3
- type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
4
- default: string;
5
- };
6
- declare const unstyledProp: {
7
- type: BooleanConstructor;
8
- default: boolean;
9
- };
10
- declare const variantProp: {
11
- type: PropType<"" | "filled" | "filled-primary" | "filled-secondary" | "filled-tertiary" | "filled-success" | "filled-warning" | "filled-error" | "filled-surface" | "ringed" | "ringed-primary" | "ringed-secondary" | "ringed-tertiary" | "ringed-success" | "ringed-warning" | "ringed-error" | "ringed-surface" | "ghost" | "ghost-primary" | "ghost-secondary" | "ghost-tertiary" | "ghost-success" | "ghost-warning" | "ghost-error" | "ghost-surface" | "soft" | "soft-primary" | "soft-secondary" | "soft-tertiary" | "soft-success" | "soft-warning" | "soft-error" | "soft-surface" | "glass" | "glass-primary" | "glass-secondary" | "glass-tertiary" | "glass-success" | "glass-warning" | "glass-error" | "glass-surface">;
12
- default: string;
13
- };
14
- export { sizeProp, unstyledProp, variantProp };
1
+ export type SizeProp = 'xs' | 'sm' | 'md' | 'lg' | 'xl';