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.
Files changed (85) hide show
  1. package/package.json +1 -1
  2. package/ui.button/UButton.vue +1 -1
  3. package/ui.button/types.ts +1 -1
  4. package/ui.button-link/ULink.vue +1 -1
  5. package/ui.button-link/types.ts +1 -1
  6. package/ui.button-toggle/UToggle.vue +1 -1
  7. package/ui.button-toggle/types.ts +1 -1
  8. package/ui.button-toggle-item/UToggleItem.vue +1 -1
  9. package/ui.button-toggle-item/types.ts +1 -1
  10. package/ui.container-accordion/UAccordion.vue +1 -1
  11. package/ui.container-accordion/types.ts +1 -1
  12. package/ui.container-card/UCard.vue +1 -1
  13. package/ui.container-card/types.ts +1 -1
  14. package/ui.container-col/UCol.vue +1 -1
  15. package/ui.container-col/types.ts +1 -1
  16. package/ui.container-divider/UDivider.vue +1 -1
  17. package/ui.container-divider/types.ts +1 -1
  18. package/ui.container-group/UGroup.vue +1 -2
  19. package/ui.container-group/config.ts +1 -14
  20. package/ui.container-group/types.ts +1 -6
  21. package/ui.container-groups/UGroups.vue +25 -0
  22. package/ui.container-groups/config.ts +18 -0
  23. package/ui.container-groups/constants.ts +5 -0
  24. package/ui.container-groups/storybook/Docs.mdx +16 -0
  25. package/ui.container-groups/storybook/stories.ts +59 -0
  26. package/ui.container-groups/types.ts +20 -0
  27. package/ui.container-groups/useAttrs.ts +18 -0
  28. package/ui.container-modal/UModal.vue +1 -1
  29. package/ui.container-modal/types.ts +1 -1
  30. package/ui.container-modal-confirm/UModalConfirm.vue +1 -1
  31. package/ui.container-modal-confirm/types.ts +1 -1
  32. package/ui.container-page/UPage.vue +1 -1
  33. package/ui.container-page/types.ts +1 -1
  34. package/ui.container-row/URow.vue +1 -1
  35. package/ui.container-row/types.ts +1 -1
  36. package/ui.data-table/UTable.vue +6 -6
  37. package/ui.data-table/config.ts +5 -4
  38. package/ui.data-table/useAttrs.ts +3 -2
  39. package/ui.form-checkbox/UCheckbox.vue +1 -1
  40. package/ui.form-checkbox/types.ts +1 -1
  41. package/ui.form-checkbox-group/UCheckboxGroup.vue +1 -1
  42. package/ui.form-checkbox-group/types.ts +1 -1
  43. package/ui.form-checkbox-multi-state/UCheckboxMultiState.vue +1 -1
  44. package/ui.form-checkbox-multi-state/types.ts +1 -1
  45. package/ui.form-select/config.js +3 -3
  46. package/ui.image-avatar/UAvatar.vue +1 -1
  47. package/ui.image-avatar/types.ts +1 -1
  48. package/ui.image-icon/UIcon.vue +1 -1
  49. package/ui.image-icon/types.ts +1 -1
  50. package/ui.loader/ULoader.vue +1 -1
  51. package/ui.loader/types.ts +1 -1
  52. package/ui.loader-overlay/ULoaderOverlay.vue +1 -1
  53. package/ui.loader-overlay/types.ts +1 -1
  54. package/ui.loader-progress/ULoaderProgress.vue +1 -1
  55. package/ui.loader-progress/types.ts +1 -1
  56. package/ui.navigation-pagination/UPagination.vue +1 -1
  57. package/ui.navigation-pagination/types.ts +1 -1
  58. package/ui.navigation-progress/StepperProgress.vue +1 -1
  59. package/ui.navigation-progress/UProgress.vue +1 -1
  60. package/ui.navigation-progress/types.ts +2 -2
  61. package/ui.navigation-tab/UTab.vue +1 -1
  62. package/ui.navigation-tab/types.ts +1 -1
  63. package/ui.navigation-tabs/UTabs.vue +1 -1
  64. package/ui.navigation-tabs/types.ts +1 -1
  65. package/ui.other-dot/UDot.vue +1 -1
  66. package/ui.other-dot/types.ts +1 -1
  67. package/ui.text-alert/UAlert.vue +1 -1
  68. package/ui.text-alert/types.ts +1 -1
  69. package/ui.text-badge/UBadge.vue +1 -1
  70. package/ui.text-badge/types.ts +1 -1
  71. package/ui.text-block/UText.vue +1 -1
  72. package/ui.text-block/types.ts +1 -1
  73. package/ui.text-empty/UEmpty.vue +1 -1
  74. package/ui.text-empty/types.ts +1 -1
  75. package/ui.text-file/UFile.vue +1 -1
  76. package/ui.text-file/types.ts +1 -1
  77. package/ui.text-files/UFiles.vue +1 -1
  78. package/ui.text-files/types.ts +1 -1
  79. package/ui.text-header/UHeader.vue +1 -1
  80. package/ui.text-header/types.ts +1 -1
  81. package/ui.text-money/UMoney.vue +1 -1
  82. package/ui.text-money/types.ts +1 -1
  83. package/ui.text-notify/UNotify.vue +1 -1
  84. package/ui.text-notify/types.ts +1 -1
  85. package/web-types.json +90 -163
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { getDefault } from "../utils/ui.ts";
3
3
 
4
4
  import { ULoader, ELLIPSES_AMOUNT } from "./constants.ts";
@@ -23,5 +23,5 @@ export interface ULoaderProps {
23
23
  /**
24
24
  * Component config object.
25
25
  */
26
- config?: Partial<typeof defaultConfig>;
26
+ config?: Config;
27
27
  }
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { computed, onMounted, onUnmounted } from "vue";
3
3
 
4
4
  import { getDefault } from "../utils/ui.ts";
@@ -18,5 +18,5 @@ export interface ULoaderOverlayProps {
18
18
  /**
19
19
  * Component config object.
20
20
  */
21
- config?: Partial<typeof defaultConfig>;
21
+ config?: Config;
22
22
  }
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { computed, onBeforeUnmount, watch, ref, onMounted, onUnmounted } from "vue";
3
3
 
4
4
  import { getDefault } from "../utils/ui.ts";
@@ -23,5 +23,5 @@ export interface ULoaderProgressProps {
23
23
  /**
24
24
  * Component config object.
25
25
  */
26
- config?: Partial<typeof defaultConfig>;
26
+ config?: Config;
27
27
  }
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { computed } from "vue";
3
3
  import { range } from "lodash-es";
4
4
 
@@ -76,7 +76,7 @@ export interface UPaginationProps {
76
76
  /**
77
77
  * Component config object.
78
78
  */
79
- config?: Partial<typeof defaultConfig>;
79
+ config?: Config;
80
80
 
81
81
  /**
82
82
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import colors from "tailwindcss/colors.js";
3
3
  import { computed } from "vue";
4
4
 
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { computed } from "vue";
3
3
 
4
4
  import { getDefault } from "../utils/ui.ts";
@@ -38,7 +38,7 @@ export interface UProgressProps {
38
38
  /**
39
39
  * Component config object.
40
40
  */
41
- config?: Partial<typeof defaultConfig>;
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?: Partial<typeof defaultConfig>;
68
+ config?: Config;
69
69
 
70
70
  /**
71
71
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { computed, inject, toValue } from "vue";
3
3
 
4
4
  import { getDefault } from "../utils/ui.ts";
@@ -21,7 +21,7 @@ export interface UTabProps {
21
21
  /**
22
22
  * Component config object.
23
23
  */
24
- config?: Partial<typeof defaultConfig>;
24
+ config?: Config;
25
25
 
26
26
  /**
27
27
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { computed, provide } from "vue";
3
3
 
4
4
  import UTab from "../ui.navigation-tab/UTab.vue";
@@ -28,7 +28,7 @@ export interface UTabsProps {
28
28
  /**
29
29
  * Component config object.
30
30
  */
31
- config?: Partial<typeof defaultConfig>;
31
+ config?: Config;
32
32
 
33
33
  /**
34
34
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { getDefault } from "../utils/ui.ts";
3
3
 
4
4
  import { UDot } from "./constants.ts";
@@ -18,7 +18,7 @@ export interface UDotProps {
18
18
  /**
19
19
  * Component config object.
20
20
  */
21
- config?: Partial<typeof defaultConfig>;
21
+ config?: Config;
22
22
 
23
23
  /**
24
24
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { onMounted, ref, computed } from "vue";
3
3
  import { getDefault } from "../utils/ui.ts";
4
4
 
@@ -48,7 +48,7 @@ export interface UAlertProps {
48
48
  /**
49
49
  * Component config object.
50
50
  */
51
- config?: Partial<typeof defaultConfig>;
51
+ config?: Config;
52
52
 
53
53
  /**
54
54
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { useTemplateRef, computed } from "vue";
3
3
 
4
4
  import { getDefault } from "../utils/ui.ts";
@@ -58,7 +58,7 @@ export interface UBadgeProps {
58
58
  /**
59
59
  * Component config object.
60
60
  */
61
- config?: Partial<typeof defaultConfig>;
61
+ config?: Config;
62
62
 
63
63
  /**
64
64
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { getDefault } from "../utils/ui.ts";
3
3
 
4
4
  import { UText } from "./constants.ts";
@@ -26,7 +26,7 @@ export interface UTextProps {
26
26
  /**
27
27
  * Component config object.
28
28
  */
29
- config?: Partial<typeof defaultConfig>;
29
+ config?: Config;
30
30
 
31
31
  /**
32
32
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { computed } from "vue";
3
3
 
4
4
  import UIcon from "../ui.image-icon/UIcon.vue";
@@ -21,7 +21,7 @@ export interface UEmptyProps {
21
21
  /**
22
22
  * Component config object.
23
23
  */
24
- config?: Partial<typeof defaultConfig>;
24
+ config?: Config;
25
25
 
26
26
  /**
27
27
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { computed, ref, useId } from "vue";
3
3
 
4
4
  import ULink from "../ui.button-link/ULink.vue";
@@ -36,7 +36,7 @@ export interface UFileProps {
36
36
  /**
37
37
  * Component config object.
38
38
  */
39
- config?: Partial<typeof defaultConfig>;
39
+ config?: Config;
40
40
 
41
41
  /**
42
42
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import UFile from "../ui.text-file/UFile.vue";
3
3
  import ULabel from "../ui.form-label/ULabel.vue";
4
4
  import { getDefault } from "../utils/ui.ts";
@@ -36,7 +36,7 @@ export interface UFilesProps {
36
36
  /**
37
37
  * Component config object.
38
38
  */
39
- config?: Partial<typeof defaultConfig>;
39
+ config?: Config;
40
40
 
41
41
  /**
42
42
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { getDefault } from "../utils/ui.ts";
3
3
 
4
4
  import { UHeader } from "./constants.ts";
@@ -38,7 +38,7 @@ export interface UHeaderProps {
38
38
  /**
39
39
  * Component config object.
40
40
  */
41
- config?: Partial<typeof defaultConfig>;
41
+ config?: Config;
42
42
 
43
43
  /**
44
44
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { computed } from "vue";
3
3
 
4
4
  import { getDefault } from "../utils/ui.ts";
@@ -73,7 +73,7 @@ export interface UMoneyProps {
73
73
  /**
74
74
  * Component config object.
75
75
  */
76
- config?: Partial<typeof defaultConfig>;
76
+ config?: Config;
77
77
 
78
78
  /**
79
79
  * Data-test attribute for automated testing.
@@ -1,4 +1,4 @@
1
- <script lang="ts" setup>
1
+ <script setup lang="ts">
2
2
  import { computed, onBeforeUnmount, onMounted, ref } from "vue";
3
3
  import { merge } from "lodash-es";
4
4
 
@@ -21,5 +21,5 @@ export interface UNotifyProps {
21
21
  /**
22
22
  * Component config object.
23
23
  */
24
- config?: Partial<typeof defaultConfig>;
24
+ config?: Config;
25
25
  }