@code-coaching/vuetiful 0.16.6 → 0.18.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 (64) hide show
  1. package/README.md +3 -4
  2. package/dist/style.css +1 -1
  3. package/dist/styles/all.css +173 -7
  4. package/dist/types/components/index.d.ts +2 -2
  5. package/dist/types/components/molecules/VListbox/VListbox.test.d.ts +1 -0
  6. package/dist/types/components/molecules/VListbox/VListbox.vue.d.ts +100 -0
  7. package/dist/types/components/molecules/VListbox/VListboxButton.test.d.ts +1 -0
  8. package/dist/types/components/molecules/VListbox/VListboxButton.vue.d.ts +23 -0
  9. package/dist/types/components/molecules/VListbox/VListboxItem.test.d.ts +1 -0
  10. package/dist/types/components/molecules/VListbox/VListboxItem.vue.d.ts +12 -0
  11. package/dist/types/components/molecules/VListbox/VListboxItems.test.d.ts +1 -0
  12. package/dist/types/components/molecules/VListbox/VListboxItems.vue.d.ts +23 -0
  13. package/dist/types/components/molecules/VListbox/VListboxLabel.test.d.ts +1 -0
  14. package/dist/types/components/molecules/VListbox/VListboxLabel.vue.d.ts +14 -0
  15. package/dist/types/components/molecules/VTabs/VTab.test.d.ts +1 -0
  16. package/dist/types/components/molecules/VTabs/VTab.vue.d.ts +14 -0
  17. package/dist/types/components/molecules/VTabs/VTabPanel.test.d.ts +1 -0
  18. package/dist/types/components/molecules/VTabs/VTabPanel.vue.d.ts +2 -0
  19. package/dist/types/components/molecules/VTabs/VTabs.test.d.ts +1 -0
  20. package/dist/types/components/molecules/VTabs/VTabs.vue.d.ts +86 -0
  21. package/dist/types/components/molecules/index.d.ts +10 -2
  22. package/dist/vuetiful.es.mjs +1333 -392
  23. package/dist/vuetiful.umd.js +12 -12
  24. package/package.json +1 -1
  25. package/src/components/atoms/VAvatar.vue +7 -1
  26. package/src/components/atoms/VBadge.test.ts +1 -1
  27. package/src/components/atoms/VChip.test.ts +1 -1
  28. package/src/components/atoms/VCodeBlock.test.ts +2 -2
  29. package/src/components/atoms/VLightSwitch.test.ts +2 -2
  30. package/src/components/atoms/VRadio/VRadioDescription.vue +3 -3
  31. package/src/components/atoms/VRadio/VRadioGroup.test.ts +4 -4
  32. package/src/components/atoms/VRadio/VRadioItem.test.ts +14 -14
  33. package/src/components/atoms/VSwitch/VSwitch.test.ts +4 -27
  34. package/src/components/atoms/VSwitch/VSwitchDescription.test.ts +1 -2
  35. package/src/components/atoms/VSwitch/VSwitchDescription.vue +2 -2
  36. package/src/components/atoms/VSwitch/VSwitchGroup.test.ts +2 -2
  37. package/src/components/atoms/VSwitch/VSwitchGroup.vue +2 -2
  38. package/src/components/atoms/VSwitch/VSwitchLabel.test.ts +3 -3
  39. package/src/components/atoms/VSwitch/VSwitchLabel.vue +3 -3
  40. package/src/components/index.ts +2 -2
  41. package/src/components/molecules/VDrawer.test.ts +2 -2
  42. package/src/components/molecules/VDrawer.vue +1 -1
  43. package/src/components/molecules/VListbox/VListbox.test.ts +119 -0
  44. package/src/components/molecules/VListbox/VListbox.vue +119 -0
  45. package/src/components/molecules/VListbox/VListboxButton.test.ts +57 -0
  46. package/src/components/molecules/VListbox/VListboxButton.vue +48 -0
  47. package/src/components/molecules/VListbox/VListboxItem.test.ts +51 -0
  48. package/src/components/molecules/VListbox/VListboxItem.vue +29 -0
  49. package/src/components/molecules/VListbox/VListboxItems.test.ts +44 -0
  50. package/src/components/molecules/VListbox/VListboxItems.vue +31 -0
  51. package/src/components/molecules/VListbox/VListboxLabel.test.ts +31 -0
  52. package/src/components/molecules/VListbox/VListboxLabel.vue +14 -0
  53. package/src/components/molecules/VPreview.test.ts +2 -2
  54. package/src/components/molecules/VRail.test.ts +2 -2
  55. package/src/components/molecules/VRailTile.test.ts +2 -2
  56. package/src/components/molecules/VShell.test.ts +2 -2
  57. package/src/components/molecules/VTabs/VTab.test.ts +122 -0
  58. package/src/components/molecules/VTabs/VTab.vue +39 -0
  59. package/src/components/molecules/VTabs/VTabPanel.test.ts +23 -0
  60. package/src/components/molecules/VTabs/VTabPanel.vue +9 -0
  61. package/src/components/molecules/VTabs/VTabs.test.ts +90 -0
  62. package/src/components/molecules/VTabs/VTabs.vue +84 -0
  63. package/src/components/molecules/index.ts +26 -2
  64. package/src/styles/elements/buttons.css +1 -1
@@ -1,7 +1,31 @@
1
1
  import VDrawer from "./VDrawer.vue";
2
+ import VPreview from "./VPreview.vue";
2
3
  import VRail from "./VRail.vue";
3
4
  import VRailTile from "./VRailTile.vue";
4
5
  import VShell from "./VShell.vue";
5
- import VPreview from "./VPreview.vue";
6
6
 
7
- export { VRail, VRailTile, VShell, VDrawer, VPreview };
7
+ import VListbox from "./VListbox/VListbox.vue";
8
+ import VListboxButton from "./VListbox/VListboxButton.vue";
9
+ import VListboxItem from "./VListbox/VListboxItem.vue";
10
+ import VListboxItems from "./VListbox/VListboxItems.vue";
11
+ import VListboxLabel from "./VListbox/VListboxLabel.vue";
12
+
13
+ import VTab from "./VTabs/VTab.vue";
14
+ import VTabPanel from "./VTabs/VTabPanel.vue";
15
+ import VTabs from "./VTabs/VTabs.vue";
16
+
17
+ export {
18
+ VDrawer,
19
+ VListbox,
20
+ VListboxButton,
21
+ VListboxItem,
22
+ VListboxItems,
23
+ VListboxLabel,
24
+ VPreview,
25
+ VRail,
26
+ VRailTile,
27
+ VShell,
28
+ VTab,
29
+ VTabPanel,
30
+ VTabs,
31
+ };
@@ -67,7 +67,7 @@
67
67
 
68
68
  /* File Input Button */
69
69
  input[type="file"]:not(.file-dropzone-input)::file-selector-button {
70
- @apply btn variant-filled btn-sm mr-2 border-0;
70
+ @apply variant-filled btn btn-sm mr-2 border-0;
71
71
  }
72
72
 
73
73
  /* === Button Groups === */