@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.
- package/README.md +3 -4
- package/dist/style.css +1 -1
- package/dist/styles/all.css +173 -7
- package/dist/types/components/index.d.ts +2 -2
- package/dist/types/components/molecules/VListbox/VListbox.test.d.ts +1 -0
- package/dist/types/components/molecules/VListbox/VListbox.vue.d.ts +100 -0
- package/dist/types/components/molecules/VListbox/VListboxButton.test.d.ts +1 -0
- package/dist/types/components/molecules/VListbox/VListboxButton.vue.d.ts +23 -0
- package/dist/types/components/molecules/VListbox/VListboxItem.test.d.ts +1 -0
- package/dist/types/components/molecules/VListbox/VListboxItem.vue.d.ts +12 -0
- package/dist/types/components/molecules/VListbox/VListboxItems.test.d.ts +1 -0
- package/dist/types/components/molecules/VListbox/VListboxItems.vue.d.ts +23 -0
- package/dist/types/components/molecules/VListbox/VListboxLabel.test.d.ts +1 -0
- package/dist/types/components/molecules/VListbox/VListboxLabel.vue.d.ts +14 -0
- package/dist/types/components/molecules/VTabs/VTab.test.d.ts +1 -0
- package/dist/types/components/molecules/VTabs/VTab.vue.d.ts +14 -0
- package/dist/types/components/molecules/VTabs/VTabPanel.test.d.ts +1 -0
- package/dist/types/components/molecules/VTabs/VTabPanel.vue.d.ts +2 -0
- package/dist/types/components/molecules/VTabs/VTabs.test.d.ts +1 -0
- package/dist/types/components/molecules/VTabs/VTabs.vue.d.ts +86 -0
- package/dist/types/components/molecules/index.d.ts +10 -2
- package/dist/vuetiful.es.mjs +1333 -392
- package/dist/vuetiful.umd.js +12 -12
- package/package.json +1 -1
- package/src/components/atoms/VAvatar.vue +7 -1
- package/src/components/atoms/VBadge.test.ts +1 -1
- package/src/components/atoms/VChip.test.ts +1 -1
- package/src/components/atoms/VCodeBlock.test.ts +2 -2
- package/src/components/atoms/VLightSwitch.test.ts +2 -2
- package/src/components/atoms/VRadio/VRadioDescription.vue +3 -3
- package/src/components/atoms/VRadio/VRadioGroup.test.ts +4 -4
- package/src/components/atoms/VRadio/VRadioItem.test.ts +14 -14
- package/src/components/atoms/VSwitch/VSwitch.test.ts +4 -27
- package/src/components/atoms/VSwitch/VSwitchDescription.test.ts +1 -2
- package/src/components/atoms/VSwitch/VSwitchDescription.vue +2 -2
- package/src/components/atoms/VSwitch/VSwitchGroup.test.ts +2 -2
- package/src/components/atoms/VSwitch/VSwitchGroup.vue +2 -2
- package/src/components/atoms/VSwitch/VSwitchLabel.test.ts +3 -3
- package/src/components/atoms/VSwitch/VSwitchLabel.vue +3 -3
- package/src/components/index.ts +2 -2
- package/src/components/molecules/VDrawer.test.ts +2 -2
- package/src/components/molecules/VDrawer.vue +1 -1
- package/src/components/molecules/VListbox/VListbox.test.ts +119 -0
- package/src/components/molecules/VListbox/VListbox.vue +119 -0
- package/src/components/molecules/VListbox/VListboxButton.test.ts +57 -0
- package/src/components/molecules/VListbox/VListboxButton.vue +48 -0
- package/src/components/molecules/VListbox/VListboxItem.test.ts +51 -0
- package/src/components/molecules/VListbox/VListboxItem.vue +29 -0
- package/src/components/molecules/VListbox/VListboxItems.test.ts +44 -0
- package/src/components/molecules/VListbox/VListboxItems.vue +31 -0
- package/src/components/molecules/VListbox/VListboxLabel.test.ts +31 -0
- package/src/components/molecules/VListbox/VListboxLabel.vue +14 -0
- package/src/components/molecules/VPreview.test.ts +2 -2
- package/src/components/molecules/VRail.test.ts +2 -2
- package/src/components/molecules/VRailTile.test.ts +2 -2
- package/src/components/molecules/VShell.test.ts +2 -2
- package/src/components/molecules/VTabs/VTab.test.ts +122 -0
- package/src/components/molecules/VTabs/VTab.vue +39 -0
- package/src/components/molecules/VTabs/VTabPanel.test.ts +23 -0
- package/src/components/molecules/VTabs/VTabPanel.vue +9 -0
- package/src/components/molecules/VTabs/VTabs.test.ts +90 -0
- package/src/components/molecules/VTabs/VTabs.vue +84 -0
- package/src/components/molecules/index.ts +26 -2
- 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
|
-
|
|
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
|
+
};
|