sprintify-ui 0.0.201 → 0.0.203
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 +4 -6
- package/dist/sprintify-ui.es.js +554 -552
- package/dist/types/src/components/index.d.ts +2 -1
- package/package.json +6 -2
- package/src/components/index.ts +2 -0
|
@@ -58,6 +58,7 @@ import BaseModalSide from './BaseModalSide.vue';
|
|
|
58
58
|
import BaseNavbar from './BaseNavbar.vue';
|
|
59
59
|
import BaseNavbarItem from './BaseNavbarItem.vue';
|
|
60
60
|
import BaseNavbarItemContent from './BaseNavbarItemContent.vue';
|
|
61
|
+
import BaseNavbarSideItem from './BaseNavbarSideItem.vue';
|
|
61
62
|
import BaseNumber from './BaseNumber.vue';
|
|
62
63
|
import BasePagination from './BasePagination.vue';
|
|
63
64
|
import BasePanel from './BasePanel.vue';
|
|
@@ -88,4 +89,4 @@ import BaseLayoutStacked from './BaseLayoutStacked.vue';
|
|
|
88
89
|
import BaseLayoutStackedConfigurable from './BaseLayoutStackedConfigurable.vue';
|
|
89
90
|
import BaseLayoutSidebar from './BaseLayoutSidebar.vue';
|
|
90
91
|
import BaseLayoutSidebarConfigurable from './BaseLayoutSidebarConfigurable.vue';
|
|
91
|
-
export { BaseActionItem, BaseAddressForm, BaseAlert, BaseApp, BaseAppDialogs, BaseAppNotifications, BaseAutocomplete, BaseAutocompleteFetch, BaseAvatar, BaseAvatarGroup, BaseBadge, BaseBelongsTo, BaseBoolean, BaseBreadcrumbs, BaseButton, BaseButtonGroup, BaseCard, BaseCardRow, BaseCharacterCounter, BaseClickOutside, BaseClipboard, BaseColor, BaseContainer, BaseCounter, BaseCropper, BaseCropperModal, BaseDataIterator, BaseDataTable, BaseDatePicker, BaseDateSelect, BaseDescriptionList, BaseDescriptionListItem, BaseDialog, BaseDisplayRelativeTime, BaseDropdown, BaseDropdownAutocomplete, BaseEmptyState, BaseField, BaseFieldI18n, BaseFilePicker, BaseFilePickerCrop, BaseFileUploader, BaseForm, BaseHasMany, BaseIcon, BaseIconPicker, BaseInput, BaseInputLabel, BaseInputPercent, BaseLoadingCover, BaseMediaItem, BaseMediaLibrary, BaseMediaPreview, BaseMenu, BaseMenuItem, BaseModalCenter, BaseModalSide, BaseNavbar, BaseNavbarItem, BaseNavbarItemContent, BaseNumber, BasePagination, BasePanel, BasePassword, BaseProgressCircle, BaseRadioGroup, BaseReadMore, BaseRichText, BaseSelect, BaseShortcut, BaseSideNavigation, BaseSideNavigationItem, BaseSkeleton, BaseStatistic, BaseSwitch, BaseSystemAlert, BaseTabs, BaseTabItem, BaseTagAutocomplete, BaseTagAutocompleteFetch, BaseTable, BaseTableColumn, BaseTextarea, BaseTextareaAutoresize, BaseTimeline, BaseTimelineItem, BaseLayoutStacked, BaseLayoutStackedConfigurable, BaseLayoutSidebar, BaseLayoutSidebarConfigurable, };
|
|
92
|
+
export { BaseActionItem, BaseAddressForm, BaseAlert, BaseApp, BaseAppDialogs, BaseAppNotifications, BaseAutocomplete, BaseAutocompleteFetch, BaseAvatar, BaseAvatarGroup, BaseBadge, BaseBelongsTo, BaseBoolean, BaseBreadcrumbs, BaseButton, BaseButtonGroup, BaseCard, BaseCardRow, BaseCharacterCounter, BaseClickOutside, BaseClipboard, BaseColor, BaseContainer, BaseCounter, BaseCropper, BaseCropperModal, BaseDataIterator, BaseDataTable, BaseDatePicker, BaseDateSelect, BaseDescriptionList, BaseDescriptionListItem, BaseDialog, BaseDisplayRelativeTime, BaseDropdown, BaseDropdownAutocomplete, BaseEmptyState, BaseField, BaseFieldI18n, BaseFilePicker, BaseFilePickerCrop, BaseFileUploader, BaseForm, BaseHasMany, BaseIcon, BaseIconPicker, BaseInput, BaseInputLabel, BaseInputPercent, BaseLoadingCover, BaseMediaItem, BaseMediaLibrary, BaseMediaPreview, BaseMenu, BaseMenuItem, BaseModalCenter, BaseModalSide, BaseNavbar, BaseNavbarItem, BaseNavbarItemContent, BaseNavbarSideItem, BaseNumber, BasePagination, BasePanel, BasePassword, BaseProgressCircle, BaseRadioGroup, BaseReadMore, BaseRichText, BaseSelect, BaseShortcut, BaseSideNavigation, BaseSideNavigationItem, BaseSkeleton, BaseStatistic, BaseSwitch, BaseSystemAlert, BaseTabs, BaseTabItem, BaseTagAutocomplete, BaseTagAutocompleteFetch, BaseTable, BaseTableColumn, BaseTextarea, BaseTextareaAutoresize, BaseTimeline, BaseTimelineItem, BaseLayoutStacked, BaseLayoutStackedConfigurable, BaseLayoutSidebar, BaseLayoutSidebarConfigurable, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sprintify-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.203",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "rimraf dist && vue-tsc && vite build",
|
|
6
6
|
"build-fast": "rimraf dist && vite build",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"storybook": "start-storybook -p 6006",
|
|
11
11
|
"build-storybook": "build-storybook",
|
|
12
12
|
"prepack": "npm run build",
|
|
13
|
+
"prepare": "husky install",
|
|
13
14
|
"release": "standard-version",
|
|
14
15
|
"commit": "cz"
|
|
15
16
|
},
|
|
@@ -42,6 +43,8 @@
|
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
45
|
"@babel/core": "^7.20.12",
|
|
46
|
+
"@commitlint/cli": "^17.4.4",
|
|
47
|
+
"@commitlint/config-conventional": "^17.4.4",
|
|
45
48
|
"@iconify/vue": "^4.1.0",
|
|
46
49
|
"@storybook/addon-actions": "^6.5.16",
|
|
47
50
|
"@storybook/addon-essentials": "^6.5.16",
|
|
@@ -80,6 +83,7 @@
|
|
|
80
83
|
"eslint-plugin-vue-scoped-css": "^2.4.0",
|
|
81
84
|
"flatpickr": "^4.6.13",
|
|
82
85
|
"humanize-duration": "^3.28.0",
|
|
86
|
+
"husky": "^8.0.3",
|
|
83
87
|
"lodash": "^4.17.21",
|
|
84
88
|
"luxon": "^3.2.1",
|
|
85
89
|
"maska": "^2.1.6",
|
|
@@ -125,7 +129,7 @@
|
|
|
125
129
|
},
|
|
126
130
|
"config": {
|
|
127
131
|
"commitizen": {
|
|
128
|
-
"path": "
|
|
132
|
+
"path": "cz-conventional-changelog"
|
|
129
133
|
}
|
|
130
134
|
}
|
|
131
135
|
}
|
package/src/components/index.ts
CHANGED
|
@@ -58,6 +58,7 @@ import BaseModalSide from './BaseModalSide.vue';
|
|
|
58
58
|
import BaseNavbar from './BaseNavbar.vue';
|
|
59
59
|
import BaseNavbarItem from './BaseNavbarItem.vue';
|
|
60
60
|
import BaseNavbarItemContent from './BaseNavbarItemContent.vue';
|
|
61
|
+
import BaseNavbarSideItem from './BaseNavbarSideItem.vue';
|
|
61
62
|
import BaseNumber from './BaseNumber.vue';
|
|
62
63
|
import BasePagination from './BasePagination.vue';
|
|
63
64
|
import BasePanel from './BasePanel.vue';
|
|
@@ -151,6 +152,7 @@ export {
|
|
|
151
152
|
BaseNavbar,
|
|
152
153
|
BaseNavbarItem,
|
|
153
154
|
BaseNavbarItemContent,
|
|
155
|
+
BaseNavbarSideItem,
|
|
154
156
|
BaseNumber,
|
|
155
157
|
BasePagination,
|
|
156
158
|
BasePanel,
|