vueless 1.3.2-beta.4 → 1.3.2
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/components.d.ts +77 -0
- package/components.ts +77 -0
- package/index.d.ts +0 -78
- package/index.ts +0 -78
- package/package.json +7 -3
- package/tailwind.css +6 -0
- package/ui.button/UButton.vue +1 -0
package/components.d.ts
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/* Buttons & Links */
|
|
2
|
+
export { default as UButton } from "./ui.button/UButton.vue";
|
|
3
|
+
export { default as ULink } from "./ui.button-link/ULink.vue";
|
|
4
|
+
export { default as UToggle } from "./ui.button-toggle/UToggle.vue";
|
|
5
|
+
/* Dropdowns */
|
|
6
|
+
export { default as UDropdownButton } from "./ui.dropdown-button/UDropdownButton.vue";
|
|
7
|
+
export { default as UDropdownBadge } from "./ui.dropdown-badge/UDropdownBadge.vue";
|
|
8
|
+
export { default as UDropdownLink } from "./ui.dropdown-link/UDropdownLink.vue";
|
|
9
|
+
/* Form Inputs & Controls */
|
|
10
|
+
export { default as UInput } from "./ui.form-input/UInput.vue";
|
|
11
|
+
export { default as UInputFile } from "./ui.form-input-file/UInputFile.vue";
|
|
12
|
+
export { default as UInputNumber } from "./ui.form-input-number/UInputNumber.vue";
|
|
13
|
+
export { default as UInputCounter } from "./ui.form-input-counter/UInputCounter.vue";
|
|
14
|
+
export { default as UInputPassword } from "./ui.form-input-password/UInputPassword.vue";
|
|
15
|
+
export { default as UInputRating } from "./ui.form-input-rating/UInputRating.vue";
|
|
16
|
+
export { default as UInputSearch } from "./ui.form-input-search/UInputSearch.vue";
|
|
17
|
+
export { default as UTextarea } from "./ui.form-textarea/UTextarea.vue";
|
|
18
|
+
export { default as USelect } from "./ui.form-select/USelect.vue";
|
|
19
|
+
export { default as UListbox } from "./ui.form-listbox/UListbox.vue";
|
|
20
|
+
export { default as UCheckbox } from "./ui.form-checkbox/UCheckbox.vue";
|
|
21
|
+
export { default as UCheckboxGroup } from "./ui.form-checkbox-group/UCheckboxGroup.vue";
|
|
22
|
+
export { default as UCheckboxMultiState } from "./ui.form-checkbox-multi-state/UCheckboxMultiState.vue";
|
|
23
|
+
export { default as USwitch } from "./ui.form-switch/USwitch.vue";
|
|
24
|
+
export { default as URadio } from "./ui.form-radio/URadio.vue";
|
|
25
|
+
export { default as URadioGroup } from "./ui.form-radio-group/URadioGroup.vue";
|
|
26
|
+
export { default as UCalendar } from "./ui.form-calendar/UCalendar.vue";
|
|
27
|
+
export { default as UDatePicker } from "./ui.form-date-picker/UDatePicker.vue";
|
|
28
|
+
export { default as UDatePickerRange } from "./ui.form-date-picker-range/UDatePickerRange.vue";
|
|
29
|
+
export { default as UColorToggle } from "./ui.form-color-toggle/UColorToggle.vue";
|
|
30
|
+
export { default as ULabel } from "./ui.form-label/ULabel.vue";
|
|
31
|
+
/* Text & Content */
|
|
32
|
+
export { default as UHeader } from "./ui.text-header/UHeader.vue";
|
|
33
|
+
export { default as UText } from "./ui.text-block/UText.vue";
|
|
34
|
+
export { default as UAlert } from "./ui.text-alert/UAlert.vue";
|
|
35
|
+
export { default as UNotify } from "./ui.text-notify/UNotify.vue";
|
|
36
|
+
export { default as UNumber } from "./ui.text-number/UNumber.vue";
|
|
37
|
+
export { default as UFile } from "./ui.text-file/UFile.vue";
|
|
38
|
+
export { default as UFiles } from "./ui.text-files/UFiles.vue";
|
|
39
|
+
export { default as UEmpty } from "./ui.text-empty/UEmpty.vue";
|
|
40
|
+
export { default as UBadge } from "./ui.text-badge/UBadge.vue";
|
|
41
|
+
/* Containers */
|
|
42
|
+
export { default as UDivider } from "./ui.container-divider/UDivider.vue";
|
|
43
|
+
export { default as UCol } from "./ui.container-col/UCol.vue";
|
|
44
|
+
export { default as URow } from "./ui.container-row/URow.vue";
|
|
45
|
+
export { default as UGroup } from "./ui.container-group/UGroup.vue";
|
|
46
|
+
export { default as UGroups } from "./ui.container-groups/UGroups.vue";
|
|
47
|
+
export { default as UAccordion } from "./ui.container-accordion/UAccordion.vue";
|
|
48
|
+
export { default as UAccordionItem } from "./ui.container-accordion-item/UAccordionItem.vue";
|
|
49
|
+
export { default as UCard } from "./ui.container-card/UCard.vue";
|
|
50
|
+
export { default as UModal } from "./ui.container-modal/UModal.vue";
|
|
51
|
+
export { default as UModalConfirm } from "./ui.container-modal-confirm/UModalConfirm.vue";
|
|
52
|
+
export { default as UDrawer } from "./ui.container-drawer/UDrawer.vue";
|
|
53
|
+
export { default as UPage } from "./ui.container-page/UPage.vue";
|
|
54
|
+
/* Images and Icons */
|
|
55
|
+
export { default as UIcon } from "./ui.image-icon/UIcon.vue";
|
|
56
|
+
export { default as UAvatar } from "./ui.image-avatar/UAvatar.vue";
|
|
57
|
+
/* Data */
|
|
58
|
+
export { default as UTable } from "./ui.data-table/UTable.vue";
|
|
59
|
+
export { default as UDataList } from "./ui.data-list/UDataList.vue";
|
|
60
|
+
/* Navigation */
|
|
61
|
+
export { default as UTab } from "./ui.navigation-tab/UTab.vue";
|
|
62
|
+
export { default as UTabs } from "./ui.navigation-tabs/UTabs.vue";
|
|
63
|
+
export { default as UProgress } from "./ui.navigation-progress/UProgress.vue";
|
|
64
|
+
export { default as UPagination } from "./ui.navigation-pagination/UPagination.vue";
|
|
65
|
+
export { default as UBreadcrumbs } from "./ui.navigation-breadcrumbs/UBreadcrumbs.vue";
|
|
66
|
+
/* Loaders and Skeletons */
|
|
67
|
+
export { default as ULoader } from "./ui.loader/ULoader.vue";
|
|
68
|
+
export { default as ULoaderProgress } from "./ui.loader-progress/ULoaderProgress.vue";
|
|
69
|
+
export { default as ULoaderOverlay } from "./ui.loader-overlay/ULoaderOverlay.vue";
|
|
70
|
+
export { default as USkeleton } from "./ui.skeleton/USkeleton.vue";
|
|
71
|
+
export { default as USkeletonText } from "./ui.skeleton-text/USkeletonText.vue";
|
|
72
|
+
export { default as USkeletonInput } from "./ui.skeleton-input/USkeletonInput.vue";
|
|
73
|
+
export { default as USkeletonChoice } from "./ui.skeleton-choice/USkeletonChoice.vue";
|
|
74
|
+
/* Other */
|
|
75
|
+
export { default as UDot } from "./ui.other-dot/UDot.vue";
|
|
76
|
+
export { default as UChip } from "./ui.other-chip/UChip.vue";
|
|
77
|
+
export { default as UThemeColorToggle } from "./ui.other-theme-color-toggle/UThemeColorToggle.vue";
|
package/components.ts
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/* Buttons & Links */
|
|
2
|
+
export { default as UButton } from "./ui.button/UButton.vue";
|
|
3
|
+
export { default as ULink } from "./ui.button-link/ULink.vue";
|
|
4
|
+
export { default as UToggle } from "./ui.button-toggle/UToggle.vue";
|
|
5
|
+
/* Dropdowns */
|
|
6
|
+
export { default as UDropdownButton } from "./ui.dropdown-button/UDropdownButton.vue";
|
|
7
|
+
export { default as UDropdownBadge } from "./ui.dropdown-badge/UDropdownBadge.vue";
|
|
8
|
+
export { default as UDropdownLink } from "./ui.dropdown-link/UDropdownLink.vue";
|
|
9
|
+
/* Form Inputs & Controls */
|
|
10
|
+
export { default as UInput } from "./ui.form-input/UInput.vue";
|
|
11
|
+
export { default as UInputFile } from "./ui.form-input-file/UInputFile.vue";
|
|
12
|
+
export { default as UInputNumber } from "./ui.form-input-number/UInputNumber.vue";
|
|
13
|
+
export { default as UInputCounter } from "./ui.form-input-counter/UInputCounter.vue";
|
|
14
|
+
export { default as UInputPassword } from "./ui.form-input-password/UInputPassword.vue";
|
|
15
|
+
export { default as UInputRating } from "./ui.form-input-rating/UInputRating.vue";
|
|
16
|
+
export { default as UInputSearch } from "./ui.form-input-search/UInputSearch.vue";
|
|
17
|
+
export { default as UTextarea } from "./ui.form-textarea/UTextarea.vue";
|
|
18
|
+
export { default as USelect } from "./ui.form-select/USelect.vue";
|
|
19
|
+
export { default as UListbox } from "./ui.form-listbox/UListbox.vue";
|
|
20
|
+
export { default as UCheckbox } from "./ui.form-checkbox/UCheckbox.vue";
|
|
21
|
+
export { default as UCheckboxGroup } from "./ui.form-checkbox-group/UCheckboxGroup.vue";
|
|
22
|
+
export { default as UCheckboxMultiState } from "./ui.form-checkbox-multi-state/UCheckboxMultiState.vue";
|
|
23
|
+
export { default as USwitch } from "./ui.form-switch/USwitch.vue";
|
|
24
|
+
export { default as URadio } from "./ui.form-radio/URadio.vue";
|
|
25
|
+
export { default as URadioGroup } from "./ui.form-radio-group/URadioGroup.vue";
|
|
26
|
+
export { default as UCalendar } from "./ui.form-calendar/UCalendar.vue";
|
|
27
|
+
export { default as UDatePicker } from "./ui.form-date-picker/UDatePicker.vue";
|
|
28
|
+
export { default as UDatePickerRange } from "./ui.form-date-picker-range/UDatePickerRange.vue";
|
|
29
|
+
export { default as UColorToggle } from "./ui.form-color-toggle/UColorToggle.vue";
|
|
30
|
+
export { default as ULabel } from "./ui.form-label/ULabel.vue";
|
|
31
|
+
/* Text & Content */
|
|
32
|
+
export { default as UHeader } from "./ui.text-header/UHeader.vue";
|
|
33
|
+
export { default as UText } from "./ui.text-block/UText.vue";
|
|
34
|
+
export { default as UAlert } from "./ui.text-alert/UAlert.vue";
|
|
35
|
+
export { default as UNotify } from "./ui.text-notify/UNotify.vue";
|
|
36
|
+
export { default as UNumber } from "./ui.text-number/UNumber.vue";
|
|
37
|
+
export { default as UFile } from "./ui.text-file/UFile.vue";
|
|
38
|
+
export { default as UFiles } from "./ui.text-files/UFiles.vue";
|
|
39
|
+
export { default as UEmpty } from "./ui.text-empty/UEmpty.vue";
|
|
40
|
+
export { default as UBadge } from "./ui.text-badge/UBadge.vue";
|
|
41
|
+
/* Containers */
|
|
42
|
+
export { default as UDivider } from "./ui.container-divider/UDivider.vue";
|
|
43
|
+
export { default as UCol } from "./ui.container-col/UCol.vue";
|
|
44
|
+
export { default as URow } from "./ui.container-row/URow.vue";
|
|
45
|
+
export { default as UGroup } from "./ui.container-group/UGroup.vue";
|
|
46
|
+
export { default as UGroups } from "./ui.container-groups/UGroups.vue";
|
|
47
|
+
export { default as UAccordion } from "./ui.container-accordion/UAccordion.vue";
|
|
48
|
+
export { default as UAccordionItem } from "./ui.container-accordion-item/UAccordionItem.vue";
|
|
49
|
+
export { default as UCard } from "./ui.container-card/UCard.vue";
|
|
50
|
+
export { default as UModal } from "./ui.container-modal/UModal.vue";
|
|
51
|
+
export { default as UModalConfirm } from "./ui.container-modal-confirm/UModalConfirm.vue";
|
|
52
|
+
export { default as UDrawer } from "./ui.container-drawer/UDrawer.vue";
|
|
53
|
+
export { default as UPage } from "./ui.container-page/UPage.vue";
|
|
54
|
+
/* Images and Icons */
|
|
55
|
+
export { default as UIcon } from "./ui.image-icon/UIcon.vue";
|
|
56
|
+
export { default as UAvatar } from "./ui.image-avatar/UAvatar.vue";
|
|
57
|
+
/* Data */
|
|
58
|
+
export { default as UTable } from "./ui.data-table/UTable.vue";
|
|
59
|
+
export { default as UDataList } from "./ui.data-list/UDataList.vue";
|
|
60
|
+
/* Navigation */
|
|
61
|
+
export { default as UTab } from "./ui.navigation-tab/UTab.vue";
|
|
62
|
+
export { default as UTabs } from "./ui.navigation-tabs/UTabs.vue";
|
|
63
|
+
export { default as UProgress } from "./ui.navigation-progress/UProgress.vue";
|
|
64
|
+
export { default as UPagination } from "./ui.navigation-pagination/UPagination.vue";
|
|
65
|
+
export { default as UBreadcrumbs } from "./ui.navigation-breadcrumbs/UBreadcrumbs.vue";
|
|
66
|
+
/* Loaders and Skeletons */
|
|
67
|
+
export { default as ULoader } from "./ui.loader/ULoader.vue";
|
|
68
|
+
export { default as ULoaderProgress } from "./ui.loader-progress/ULoaderProgress.vue";
|
|
69
|
+
export { default as ULoaderOverlay } from "./ui.loader-overlay/ULoaderOverlay.vue";
|
|
70
|
+
export { default as USkeleton } from "./ui.skeleton/USkeleton.vue";
|
|
71
|
+
export { default as USkeletonText } from "./ui.skeleton-text/USkeletonText.vue";
|
|
72
|
+
export { default as USkeletonInput } from "./ui.skeleton-input/USkeletonInput.vue";
|
|
73
|
+
export { default as USkeletonChoice } from "./ui.skeleton-choice/USkeletonChoice.vue";
|
|
74
|
+
/* Other */
|
|
75
|
+
export { default as UDot } from "./ui.other-dot/UDot.vue";
|
|
76
|
+
export { default as UChip } from "./ui.other-chip/UChip.vue";
|
|
77
|
+
export { default as UThemeColorToggle } from "./ui.other-theme-color-toggle/UThemeColorToggle.vue";
|
package/index.d.ts
CHANGED
|
@@ -53,84 +53,6 @@ export { NotificationType, NotificationPosition, NotificationDuration } from "./
|
|
|
53
53
|
/* directives */
|
|
54
54
|
export { default as vTooltip } from "./v.tooltip/vTooltip";
|
|
55
55
|
export { default as vClickOutside } from "./v.click-outside/vClickOutside";
|
|
56
|
-
/* components */
|
|
57
|
-
/* Buttons & Links */
|
|
58
|
-
export { default as UButton } from "./ui.button/UButton.vue";
|
|
59
|
-
export { default as ULink } from "./ui.button-link/ULink.vue";
|
|
60
|
-
export { default as UToggle } from "./ui.button-toggle/UToggle.vue";
|
|
61
|
-
/* Dropdowns */
|
|
62
|
-
export { default as UDropdownButton } from "./ui.dropdown-button/UDropdownButton.vue";
|
|
63
|
-
export { default as UDropdownBadge } from "./ui.dropdown-badge/UDropdownBadge.vue";
|
|
64
|
-
export { default as UDropdownLink } from "./ui.dropdown-link/UDropdownLink.vue";
|
|
65
|
-
/* Form Inputs & Controls */
|
|
66
|
-
export { default as UInput } from "./ui.form-input/UInput.vue";
|
|
67
|
-
export { default as UInputFile } from "./ui.form-input-file/UInputFile.vue";
|
|
68
|
-
export { default as UInputNumber } from "./ui.form-input-number/UInputNumber.vue";
|
|
69
|
-
export { default as UInputCounter } from "./ui.form-input-counter/UInputCounter.vue";
|
|
70
|
-
export { default as UInputPassword } from "./ui.form-input-password/UInputPassword.vue";
|
|
71
|
-
export { default as UInputRating } from "./ui.form-input-rating/UInputRating.vue";
|
|
72
|
-
export { default as UInputSearch } from "./ui.form-input-search/UInputSearch.vue";
|
|
73
|
-
export { default as UTextarea } from "./ui.form-textarea/UTextarea.vue";
|
|
74
|
-
export { default as USelect } from "./ui.form-select/USelect.vue";
|
|
75
|
-
export { default as UListbox } from "./ui.form-listbox/UListbox.vue";
|
|
76
|
-
export { default as UCheckbox } from "./ui.form-checkbox/UCheckbox.vue";
|
|
77
|
-
export { default as UCheckboxGroup } from "./ui.form-checkbox-group/UCheckboxGroup.vue";
|
|
78
|
-
export { default as UCheckboxMultiState } from "./ui.form-checkbox-multi-state/UCheckboxMultiState.vue";
|
|
79
|
-
export { default as USwitch } from "./ui.form-switch/USwitch.vue";
|
|
80
|
-
export { default as URadio } from "./ui.form-radio/URadio.vue";
|
|
81
|
-
export { default as URadioGroup } from "./ui.form-radio-group/URadioGroup.vue";
|
|
82
|
-
export { default as UCalendar } from "./ui.form-calendar/UCalendar.vue";
|
|
83
|
-
export { default as UDatePicker } from "./ui.form-date-picker/UDatePicker.vue";
|
|
84
|
-
export { default as UDatePickerRange } from "./ui.form-date-picker-range/UDatePickerRange.vue";
|
|
85
|
-
export { default as UColorToggle } from "./ui.form-color-toggle/UColorToggle.vue";
|
|
86
|
-
export { default as ULabel } from "./ui.form-label/ULabel.vue";
|
|
87
|
-
/* Text & Content */
|
|
88
|
-
export { default as UHeader } from "./ui.text-header/UHeader.vue";
|
|
89
|
-
export { default as UText } from "./ui.text-block/UText.vue";
|
|
90
|
-
export { default as UAlert } from "./ui.text-alert/UAlert.vue";
|
|
91
|
-
export { default as UNotify } from "./ui.text-notify/UNotify.vue";
|
|
92
|
-
export { default as UNumber } from "./ui.text-number/UNumber.vue";
|
|
93
|
-
export { default as UFile } from "./ui.text-file/UFile.vue";
|
|
94
|
-
export { default as UFiles } from "./ui.text-files/UFiles.vue";
|
|
95
|
-
export { default as UEmpty } from "./ui.text-empty/UEmpty.vue";
|
|
96
|
-
export { default as UBadge } from "./ui.text-badge/UBadge.vue";
|
|
97
|
-
/* Containers */
|
|
98
|
-
export { default as UDivider } from "./ui.container-divider/UDivider.vue";
|
|
99
|
-
export { default as UCol } from "./ui.container-col/UCol.vue";
|
|
100
|
-
export { default as URow } from "./ui.container-row/URow.vue";
|
|
101
|
-
export { default as UGroup } from "./ui.container-group/UGroup.vue";
|
|
102
|
-
export { default as UGroups } from "./ui.container-groups/UGroups.vue";
|
|
103
|
-
export { default as UAccordion } from "./ui.container-accordion/UAccordion.vue";
|
|
104
|
-
export { default as UAccordionItem } from "./ui.container-accordion-item/UAccordionItem.vue";
|
|
105
|
-
export { default as UCard } from "./ui.container-card/UCard.vue";
|
|
106
|
-
export { default as UModal } from "./ui.container-modal/UModal.vue";
|
|
107
|
-
export { default as UModalConfirm } from "./ui.container-modal-confirm/UModalConfirm.vue";
|
|
108
|
-
export { default as UDrawer } from "./ui.container-drawer/UDrawer.vue";
|
|
109
|
-
export { default as UPage } from "./ui.container-page/UPage.vue";
|
|
110
|
-
/* Images and Icons */
|
|
111
|
-
export { default as UIcon } from "./ui.image-icon/UIcon.vue";
|
|
112
|
-
export { default as UAvatar } from "./ui.image-avatar/UAvatar.vue";
|
|
113
|
-
/* Data */
|
|
114
|
-
export { default as UTable } from "./ui.data-table/UTable.vue";
|
|
115
|
-
export { default as UDataList } from "./ui.data-list/UDataList.vue";
|
|
116
|
-
/* Navigation */
|
|
117
|
-
export { default as UTab } from "./ui.navigation-tab/UTab.vue";
|
|
118
|
-
export { default as UTabs } from "./ui.navigation-tabs/UTabs.vue";
|
|
119
|
-
export { default as UProgress } from "./ui.navigation-progress/UProgress.vue";
|
|
120
|
-
export { default as UPagination } from "./ui.navigation-pagination/UPagination.vue";
|
|
121
|
-
export { default as UBreadcrumbs } from "./ui.navigation-breadcrumbs/UBreadcrumbs.vue";
|
|
122
|
-
/* Loaders and Skeletons */
|
|
123
|
-
export { default as ULoader } from "./ui.loader/ULoader.vue";
|
|
124
|
-
export { default as ULoaderProgress } from "./ui.loader-progress/ULoaderProgress.vue";
|
|
125
|
-
export { default as ULoaderOverlay } from "./ui.loader-overlay/ULoaderOverlay.vue";
|
|
126
|
-
export { default as USkeleton } from "./ui.skeleton/USkeleton.vue";
|
|
127
|
-
export { default as USkeletonText } from "./ui.skeleton-text/USkeletonText.vue";
|
|
128
|
-
export { default as USkeletonInput } from "./ui.skeleton-input/USkeletonInput.vue";
|
|
129
|
-
export { default as USkeletonChoice } from "./ui.skeleton-choice/USkeletonChoice.vue";
|
|
130
|
-
/* Other */
|
|
131
|
-
export { default as UDot } from "./ui.other-dot/UDot.vue";
|
|
132
|
-
export { default as UChip } from "./ui.other-chip/UChip.vue";
|
|
133
|
-
export { default as UThemeColorToggle } from "./ui.other-theme-color-toggle/UThemeColorToggle.vue";
|
|
134
56
|
/* eslint-enable prettier/prettier */
|
|
135
57
|
|
|
136
58
|
/* types */
|
package/index.ts
CHANGED
|
@@ -59,84 +59,6 @@ export { NotificationType, NotificationPosition, NotificationDuration } from "./
|
|
|
59
59
|
/* directives */
|
|
60
60
|
export { default as vTooltip } from "./v.tooltip/vTooltip";
|
|
61
61
|
export { default as vClickOutside } from "./v.click-outside/vClickOutside";
|
|
62
|
-
/* components */
|
|
63
|
-
/* Buttons & Links */
|
|
64
|
-
export { default as UButton } from "./ui.button/UButton.vue";
|
|
65
|
-
export { default as ULink } from "./ui.button-link/ULink.vue";
|
|
66
|
-
export { default as UToggle } from "./ui.button-toggle/UToggle.vue";
|
|
67
|
-
/* Dropdowns */
|
|
68
|
-
export { default as UDropdownButton } from "./ui.dropdown-button/UDropdownButton.vue";
|
|
69
|
-
export { default as UDropdownBadge } from "./ui.dropdown-badge/UDropdownBadge.vue";
|
|
70
|
-
export { default as UDropdownLink } from "./ui.dropdown-link/UDropdownLink.vue";
|
|
71
|
-
/* Form Inputs & Controls */
|
|
72
|
-
export { default as UInput } from "./ui.form-input/UInput.vue";
|
|
73
|
-
export { default as UInputFile } from "./ui.form-input-file/UInputFile.vue";
|
|
74
|
-
export { default as UInputNumber } from "./ui.form-input-number/UInputNumber.vue";
|
|
75
|
-
export { default as UInputCounter } from "./ui.form-input-counter/UInputCounter.vue";
|
|
76
|
-
export { default as UInputPassword } from "./ui.form-input-password/UInputPassword.vue";
|
|
77
|
-
export { default as UInputRating } from "./ui.form-input-rating/UInputRating.vue";
|
|
78
|
-
export { default as UInputSearch } from "./ui.form-input-search/UInputSearch.vue";
|
|
79
|
-
export { default as UTextarea } from "./ui.form-textarea/UTextarea.vue";
|
|
80
|
-
export { default as USelect } from "./ui.form-select/USelect.vue";
|
|
81
|
-
export { default as UListbox } from "./ui.form-listbox/UListbox.vue";
|
|
82
|
-
export { default as UCheckbox } from "./ui.form-checkbox/UCheckbox.vue";
|
|
83
|
-
export { default as UCheckboxGroup } from "./ui.form-checkbox-group/UCheckboxGroup.vue";
|
|
84
|
-
export { default as UCheckboxMultiState } from "./ui.form-checkbox-multi-state/UCheckboxMultiState.vue";
|
|
85
|
-
export { default as USwitch } from "./ui.form-switch/USwitch.vue";
|
|
86
|
-
export { default as URadio } from "./ui.form-radio/URadio.vue";
|
|
87
|
-
export { default as URadioGroup } from "./ui.form-radio-group/URadioGroup.vue";
|
|
88
|
-
export { default as UCalendar } from "./ui.form-calendar/UCalendar.vue";
|
|
89
|
-
export { default as UDatePicker } from "./ui.form-date-picker/UDatePicker.vue";
|
|
90
|
-
export { default as UDatePickerRange } from "./ui.form-date-picker-range/UDatePickerRange.vue";
|
|
91
|
-
export { default as UColorToggle } from "./ui.form-color-toggle/UColorToggle.vue";
|
|
92
|
-
export { default as ULabel } from "./ui.form-label/ULabel.vue";
|
|
93
|
-
/* Text & Content */
|
|
94
|
-
export { default as UHeader } from "./ui.text-header/UHeader.vue";
|
|
95
|
-
export { default as UText } from "./ui.text-block/UText.vue";
|
|
96
|
-
export { default as UAlert } from "./ui.text-alert/UAlert.vue";
|
|
97
|
-
export { default as UNotify } from "./ui.text-notify/UNotify.vue";
|
|
98
|
-
export { default as UNumber } from "./ui.text-number/UNumber.vue";
|
|
99
|
-
export { default as UFile } from "./ui.text-file/UFile.vue";
|
|
100
|
-
export { default as UFiles } from "./ui.text-files/UFiles.vue";
|
|
101
|
-
export { default as UEmpty } from "./ui.text-empty/UEmpty.vue";
|
|
102
|
-
export { default as UBadge } from "./ui.text-badge/UBadge.vue";
|
|
103
|
-
/* Containers */
|
|
104
|
-
export { default as UDivider } from "./ui.container-divider/UDivider.vue";
|
|
105
|
-
export { default as UCol } from "./ui.container-col/UCol.vue";
|
|
106
|
-
export { default as URow } from "./ui.container-row/URow.vue";
|
|
107
|
-
export { default as UGroup } from "./ui.container-group/UGroup.vue";
|
|
108
|
-
export { default as UGroups } from "./ui.container-groups/UGroups.vue";
|
|
109
|
-
export { default as UAccordion } from "./ui.container-accordion/UAccordion.vue";
|
|
110
|
-
export { default as UAccordionItem } from "./ui.container-accordion-item/UAccordionItem.vue";
|
|
111
|
-
export { default as UCard } from "./ui.container-card/UCard.vue";
|
|
112
|
-
export { default as UModal } from "./ui.container-modal/UModal.vue";
|
|
113
|
-
export { default as UModalConfirm } from "./ui.container-modal-confirm/UModalConfirm.vue";
|
|
114
|
-
export { default as UDrawer } from "./ui.container-drawer/UDrawer.vue";
|
|
115
|
-
export { default as UPage } from "./ui.container-page/UPage.vue";
|
|
116
|
-
/* Images and Icons */
|
|
117
|
-
export { default as UIcon } from "./ui.image-icon/UIcon.vue";
|
|
118
|
-
export { default as UAvatar } from "./ui.image-avatar/UAvatar.vue";
|
|
119
|
-
/* Data */
|
|
120
|
-
export { default as UTable } from "./ui.data-table/UTable.vue";
|
|
121
|
-
export { default as UDataList } from "./ui.data-list/UDataList.vue";
|
|
122
|
-
/* Navigation */
|
|
123
|
-
export { default as UTab } from "./ui.navigation-tab/UTab.vue";
|
|
124
|
-
export { default as UTabs } from "./ui.navigation-tabs/UTabs.vue";
|
|
125
|
-
export { default as UProgress } from "./ui.navigation-progress/UProgress.vue";
|
|
126
|
-
export { default as UPagination } from "./ui.navigation-pagination/UPagination.vue";
|
|
127
|
-
export { default as UBreadcrumbs } from "./ui.navigation-breadcrumbs/UBreadcrumbs.vue";
|
|
128
|
-
/* Loaders and Skeletons */
|
|
129
|
-
export { default as ULoader } from "./ui.loader/ULoader.vue";
|
|
130
|
-
export { default as ULoaderProgress } from "./ui.loader-progress/ULoaderProgress.vue";
|
|
131
|
-
export { default as ULoaderOverlay } from "./ui.loader-overlay/ULoaderOverlay.vue";
|
|
132
|
-
export { default as USkeleton } from "./ui.skeleton/USkeleton.vue";
|
|
133
|
-
export { default as USkeletonText } from "./ui.skeleton-text/USkeletonText.vue";
|
|
134
|
-
export { default as USkeletonInput } from "./ui.skeleton-input/USkeletonInput.vue";
|
|
135
|
-
export { default as USkeletonChoice } from "./ui.skeleton-choice/USkeletonChoice.vue";
|
|
136
|
-
/* Other */
|
|
137
|
-
export { default as UDot } from "./ui.other-dot/UDot.vue";
|
|
138
|
-
export { default as UChip } from "./ui.other-chip/UChip.vue";
|
|
139
|
-
export { default as UThemeColorToggle } from "./ui.other-theme-color-toggle/UThemeColorToggle.vue";
|
|
140
62
|
/* eslint-enable prettier/prettier */
|
|
141
63
|
|
|
142
64
|
/* types */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vueless",
|
|
3
|
-
"version": "1.3.2
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
|
|
5
5
|
"author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
58
58
|
"@vue/test-utils": "^2.4.6",
|
|
59
59
|
"@vue/tsconfig": "^0.7.0",
|
|
60
|
-
"@vueless/storybook": "^1.2.
|
|
60
|
+
"@vueless/storybook": "^1.2.11",
|
|
61
61
|
"eslint": "^9.32.0",
|
|
62
|
-
"eslint-plugin-storybook": "^
|
|
62
|
+
"eslint-plugin-storybook": "^10.0.2",
|
|
63
63
|
"eslint-plugin-vue": "^10.3.0",
|
|
64
64
|
"globals": "^16.3.0",
|
|
65
65
|
"jsdom": "^26.1.0",
|
|
@@ -98,6 +98,10 @@
|
|
|
98
98
|
"./composables/*": "./composables/*",
|
|
99
99
|
"./constants": "./constants.js",
|
|
100
100
|
"./constants.js": "./constants.js",
|
|
101
|
+
"./components": {
|
|
102
|
+
"import": "./components.ts",
|
|
103
|
+
"types": "./components.d.ts"
|
|
104
|
+
},
|
|
101
105
|
"./plugin-vite": "./plugin-vite.js",
|
|
102
106
|
"./plugin-vite.js": "./plugin-vite.js",
|
|
103
107
|
"./storybook": "./utils/node/storybook.js",
|
package/tailwind.css
CHANGED
|
@@ -28,6 +28,12 @@
|
|
|
28
28
|
[type='checkbox']:checked {
|
|
29
29
|
@apply !bg-none;
|
|
30
30
|
}
|
|
31
|
+
|
|
32
|
+
input:-webkit-autofill,
|
|
33
|
+
input:-webkit-autofill:focus {
|
|
34
|
+
-webkit-box-shadow: 0 0 0px 1000px var(--vl-bg) inset !important;
|
|
35
|
+
-webkit-text-fill-color: var(--vl-text) !important;
|
|
36
|
+
}
|
|
31
37
|
}
|
|
32
38
|
|
|
33
39
|
/* ------ Tailwind theme settings ------ */
|