vueless 0.0.536 → 0.0.538
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/package.json +1 -1
- package/ui.button/UButton.vue +1 -1
- package/ui.button/types.ts +1 -1
- package/ui.button-link/ULink.vue +1 -1
- package/ui.button-link/types.ts +1 -1
- package/ui.button-toggle/UToggle.vue +1 -1
- package/ui.button-toggle/types.ts +1 -1
- package/ui.button-toggle-item/UToggleItem.vue +1 -1
- package/ui.button-toggle-item/types.ts +1 -1
- package/ui.container-accordion/UAccordion.vue +1 -1
- package/ui.container-accordion/types.ts +1 -1
- package/ui.container-card/UCard.vue +1 -1
- package/ui.container-card/types.ts +1 -1
- package/ui.container-col/UCol.vue +1 -1
- package/ui.container-col/types.ts +1 -1
- package/ui.container-divider/UDivider.vue +1 -1
- package/ui.container-divider/types.ts +1 -1
- package/ui.container-group/UGroup.vue +1 -2
- package/ui.container-group/config.ts +1 -14
- package/ui.container-group/types.ts +1 -6
- package/ui.container-groups/UGroups.vue +25 -0
- package/ui.container-groups/config.ts +18 -0
- package/ui.container-groups/constants.ts +5 -0
- package/ui.container-groups/storybook/Docs.mdx +16 -0
- package/ui.container-groups/storybook/stories.ts +59 -0
- package/ui.container-groups/types.ts +20 -0
- package/ui.container-groups/useAttrs.ts +18 -0
- package/ui.container-modal/UModal.vue +1 -1
- package/ui.container-modal/types.ts +1 -1
- package/ui.container-modal-confirm/UModalConfirm.vue +1 -1
- package/ui.container-modal-confirm/types.ts +1 -1
- package/ui.container-page/UPage.vue +1 -1
- package/ui.container-page/types.ts +1 -1
- package/ui.container-row/URow.vue +1 -1
- package/ui.container-row/types.ts +1 -1
- package/ui.data-table/UTable.vue +6 -6
- package/ui.data-table/config.ts +5 -4
- package/ui.data-table/useAttrs.ts +3 -2
- package/ui.form-checkbox/UCheckbox.vue +1 -1
- package/ui.form-checkbox/types.ts +1 -1
- package/ui.form-checkbox-group/UCheckboxGroup.vue +1 -1
- package/ui.form-checkbox-group/types.ts +1 -1
- package/ui.form-checkbox-multi-state/UCheckboxMultiState.vue +1 -1
- package/ui.form-checkbox-multi-state/types.ts +1 -1
- package/ui.form-select/config.js +3 -3
- package/ui.image-avatar/UAvatar.vue +1 -1
- package/ui.image-avatar/types.ts +1 -1
- package/ui.image-icon/UIcon.vue +1 -1
- package/ui.image-icon/types.ts +1 -1
- package/ui.loader/ULoader.vue +1 -1
- package/ui.loader/types.ts +1 -1
- package/ui.loader-overlay/ULoaderOverlay.vue +1 -1
- package/ui.loader-overlay/types.ts +1 -1
- package/ui.loader-progress/ULoaderProgress.vue +1 -1
- package/ui.loader-progress/types.ts +1 -1
- package/ui.navigation-pagination/UPagination.vue +1 -1
- package/ui.navigation-pagination/types.ts +1 -1
- package/ui.navigation-progress/StepperProgress.vue +1 -1
- package/ui.navigation-progress/UProgress.vue +1 -1
- package/ui.navigation-progress/types.ts +2 -2
- package/ui.navigation-tab/UTab.vue +1 -1
- package/ui.navigation-tab/types.ts +1 -1
- package/ui.navigation-tabs/UTabs.vue +1 -1
- package/ui.navigation-tabs/types.ts +1 -1
- package/ui.other-dot/UDot.vue +1 -1
- package/ui.other-dot/types.ts +1 -1
- package/ui.text-alert/UAlert.vue +1 -1
- package/ui.text-alert/types.ts +1 -1
- package/ui.text-badge/UBadge.vue +1 -1
- package/ui.text-badge/types.ts +1 -1
- package/ui.text-block/UText.vue +1 -1
- package/ui.text-block/types.ts +1 -1
- package/ui.text-empty/UEmpty.vue +1 -1
- package/ui.text-empty/types.ts +1 -1
- package/ui.text-file/UFile.vue +1 -1
- package/ui.text-file/types.ts +1 -1
- package/ui.text-files/UFiles.vue +1 -1
- package/ui.text-files/types.ts +1 -1
- package/ui.text-header/UHeader.vue +1 -1
- package/ui.text-header/types.ts +1 -1
- package/ui.text-money/UMoney.vue +1 -1
- package/ui.text-money/types.ts +1 -1
- package/ui.text-notify/UNotify.vue +1 -1
- package/ui.text-notify/types.ts +1 -1
- package/web-types.json +90 -163
package/ui.loader/ULoader.vue
CHANGED
package/ui.loader/types.ts
CHANGED
|
@@ -38,7 +38,7 @@ export interface UProgressProps {
|
|
|
38
38
|
/**
|
|
39
39
|
* Component config object.
|
|
40
40
|
*/
|
|
41
|
-
config?:
|
|
41
|
+
config?: Config;
|
|
42
42
|
|
|
43
43
|
/**
|
|
44
44
|
* Data-test attribute for automated testing.
|
|
@@ -65,7 +65,7 @@ export interface StepperProgressProps {
|
|
|
65
65
|
/**
|
|
66
66
|
* Component config object.
|
|
67
67
|
*/
|
|
68
|
-
config?:
|
|
68
|
+
config?: Config;
|
|
69
69
|
|
|
70
70
|
/**
|
|
71
71
|
* Data-test attribute for automated testing.
|
package/ui.other-dot/UDot.vue
CHANGED
package/ui.other-dot/types.ts
CHANGED
package/ui.text-alert/UAlert.vue
CHANGED
package/ui.text-alert/types.ts
CHANGED
package/ui.text-badge/UBadge.vue
CHANGED
package/ui.text-badge/types.ts
CHANGED
package/ui.text-block/UText.vue
CHANGED
package/ui.text-block/types.ts
CHANGED
package/ui.text-empty/UEmpty.vue
CHANGED
package/ui.text-empty/types.ts
CHANGED
package/ui.text-file/UFile.vue
CHANGED
package/ui.text-file/types.ts
CHANGED
package/ui.text-files/UFiles.vue
CHANGED
package/ui.text-files/types.ts
CHANGED
package/ui.text-header/types.ts
CHANGED
package/ui.text-money/UMoney.vue
CHANGED
package/ui.text-money/types.ts
CHANGED
package/ui.text-notify/types.ts
CHANGED