vueless 0.0.217 → 0.0.218

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 (53) hide show
  1. package/package.json +2 -2
  2. package/ui.button/configs/default.config.js +19 -19
  3. package/ui.button-link/configs/default.config.js +6 -13
  4. package/ui.button-link/index.vue +1 -1
  5. package/ui.button-toggle/index.vue +1 -1
  6. package/ui.container-page/configs/default.config.js +1 -1
  7. package/ui.dropdown-button/index.vue +6 -3
  8. package/ui.dropdown-item/configs/default.config.js +3 -3
  9. package/ui.dropdown-link/index.vue +1 -1
  10. package/ui.dropdown-list/configs/default.config.js +10 -10
  11. package/ui.dropdown-list/index.vue +1 -1
  12. package/ui.form-calendar/index.vue +1 -1
  13. package/ui.form-checkbox/configs/default.config.js +8 -12
  14. package/ui.form-checkbox/index.vue +5 -7
  15. package/ui.form-checkbox-group/configs/default.config.js +10 -1
  16. package/ui.form-checkbox-group/index.stories.js +21 -28
  17. package/ui.form-checkbox-group/index.vue +3 -3
  18. package/ui.form-date-picker-range/configs/default.config.js +1 -1
  19. package/ui.form-date-picker-range/index.vue +28 -21
  20. package/ui.form-input/composables/attrs.composable.js +10 -10
  21. package/ui.form-input/configs/default.config.js +20 -15
  22. package/ui.form-input/index.vue +2 -1
  23. package/ui.form-input-file/configs/default.config.js +9 -18
  24. package/ui.form-input-file/index.vue +1 -1
  25. package/ui.form-input-money/index.vue +1 -1
  26. package/ui.form-input-rating/index.vue +1 -1
  27. package/ui.form-input-search/index.vue +1 -1
  28. package/ui.form-label/configs/default.config.js +40 -48
  29. package/ui.form-label/index.vue +10 -2
  30. package/ui.form-radio/configs/default.config.js +5 -10
  31. package/ui.form-radio/index.vue +3 -3
  32. package/ui.form-radio-group/configs/default.config.js +3 -4
  33. package/ui.form-radio-group/index.stories.js +7 -15
  34. package/ui.form-radio-group/index.vue +1 -1
  35. package/ui.form-select/configs/default.config.js +15 -21
  36. package/ui.form-select/index.vue +2 -2
  37. package/ui.form-switch/configs/default.config.js +14 -14
  38. package/ui.form-switch/index.vue +1 -1
  39. package/ui.form-textarea/configs/default.config.js +11 -16
  40. package/ui.form-textarea/index.vue +1 -1
  41. package/ui.image-icon/configs/default.config.js +11 -11
  42. package/ui.text-badge/configs/default.config.js +4 -4
  43. package/ui.text-block/configs/default.config.js +3 -4
  44. package/ui.text-block/index.vue +1 -1
  45. package/ui.text-empty/configs/default.config.js +12 -12
  46. package/ui.text-empty/index.vue +16 -9
  47. package/ui.text-file/configs/default.config.js +13 -4
  48. package/ui.text-file/index.vue +12 -2
  49. package/ui.text-files/configs/default.config.js +3 -10
  50. package/ui.text-files/index.vue +1 -1
  51. package/ui.text-money/configs/default.config.js +7 -8
  52. package/ui.text-money/index.stories.js +2 -9
  53. package/web-types.json +39 -30
@@ -1,13 +1,12 @@
1
1
  export default /*tw*/ {
2
- label: "{ULabel} relative w-full",
2
+ label: "{ULabel}",
3
3
  leftSlot: "flex items-center justify-center h-full w-11 absolute left-0",
4
4
  rightSlot: "flex items-center justify-center h-full w-11 absolute right-0",
5
5
  textareaWrapper: {
6
6
  base: `
7
- transition focus-within:outline-none
8
- rounded-lg border border-solid border-gray-300 ring-0 cursor-text bg-white pr-4
9
- hover:border-gray-400 pl-4 hover:focus-within:border-gray-500
10
- focus-within:border-gray-500 focus-within:ring-4 focus-within:ring-gray-600/[.15]
7
+ px-3 py-2 rounded-md border border-gray-300 cursor-text bg-white transition
8
+ hover:border-gray-400 hover:focus-within:border-gray-500
9
+ focus-within:outline-none focus-within:border-gray-500 focus-within:ring-4 focus-within:ring-gray-600/[.15]
11
10
  `,
12
11
  variants: {
13
12
  error: {
@@ -23,16 +22,12 @@ export default /*tw*/ {
23
22
  readonly: {
24
23
  true: "ring-0 border-gray-300 focus-within:ring-0 focus-within:border-brand-300",
25
24
  },
26
- size: {
27
- sm: "pt-2 pb-2",
28
- md: "pt-2.5 pb-2.5",
29
- lg: "pt-3 pb-3",
30
- },
31
25
  },
32
26
  compoundVariants: [
33
- { labelAlign: "topInside", label: true, class: "pt-5 pb-1.5" },
34
- { labelAlign: "topInside", label: true, class: "pt-6 pb-1.5" },
35
- { labelAlign: "topInside", label: true, class: "pt-7 pb-2" },
27
+ { labelAlign: "topInside", label: true, class: "rounded-lg" },
28
+ { labelAlign: "topInside", label: true, size: "sm", class: "pt-5" },
29
+ { labelAlign: "topInside", label: true, size: "md", class: "pt-6" },
30
+ { labelAlign: "topInside", label: true, size: "lg", class: "pt-7" },
36
31
  ],
37
32
  },
38
33
  textarea: {
@@ -45,16 +40,16 @@ export default /*tw*/ {
45
40
  variants: {
46
41
  size: {
47
42
  sm: "text-xs placeholder:text-xs",
48
- md: "text-base placeholder:text-base",
49
- lg: "text-lg placeholder:text-lg",
43
+ md: "text-sm placeholder:text-sm",
44
+ lg: "text-base placeholder:text-base",
50
45
  },
51
46
  },
52
47
  },
53
48
  defaultVariants: {
49
+ rows: "2",
54
50
  size: "md",
55
51
  type: "text",
56
52
  inputmode: "text",
57
- rows: "2",
58
53
  labelAlign: "topInside",
59
54
  error: false,
60
55
  disabled: false,
@@ -97,7 +97,7 @@ const props = defineProps({
97
97
 
98
98
  /**
99
99
  * Set label placement related from the default slot.
100
- * @values top, topInside, topWithDesc, bottom, left, right
100
+ * @values top, topInside, topWithDesc, left, right
101
101
  */
102
102
  labelAlign: {
103
103
  type: String,
@@ -55,17 +55,17 @@ export default /*tw*/ {
55
55
  icon: {
56
56
  variants: {
57
57
  size: {
58
- "3xs": "h-3 w-3",
59
- "2xs": "h-3.5 w-3.5",
60
- xs: " h-4 w-4",
61
- sm: "h-5 w-5",
62
- md: "h-6 w-6",
63
- lg: "h-8 w-8",
64
- xl: "h-10 w-10",
65
- "2xl": "h-12 w-12",
66
- "3xl": "h-14 w-14",
67
- "4xl": "h-16 w-16",
68
- "5xl": "h-20 w-20",
58
+ "3xs": "size-3",
59
+ "2xs": "size-3.5",
60
+ xs: "size-4",
61
+ sm: "size-5",
62
+ md: "size-6",
63
+ lg: "size-8",
64
+ xl: "size-10",
65
+ "2xl": "size-12",
66
+ "3xl": "size-14",
67
+ "4xl": "size-16",
68
+ "5xl": "size-20",
69
69
  },
70
70
  },
71
71
  },
@@ -8,7 +8,7 @@ export default /*tw*/ {
8
8
  thirdary: "text-{color}-500 border-transparent",
9
9
  },
10
10
  size: {
11
- sm: "p-0.5 px-2 text-2xs",
11
+ sm: "px-2 py-1 text-2xs",
12
12
  md: "px-2 py-1 text-xs",
13
13
  lg: "px-3 py-1.5 text-sm",
14
14
  },
@@ -31,9 +31,9 @@ export default /*tw*/ {
31
31
  base: "flex items-center",
32
32
  variants: {
33
33
  size: {
34
- sm: "space-x-1",
35
- md: "space-x-1.5",
36
- lg: "space-x-2",
34
+ sm: "space-x-0.5",
35
+ md: "space-x-1",
36
+ lg: "space-x-1.5",
37
37
  },
38
38
  },
39
39
  },
@@ -12,10 +12,9 @@ export default /*tw*/ {
12
12
  `,
13
13
  variants: {
14
14
  size: {
15
- xs: "text-xs space-y-2",
16
- sm: "text-sm space-y-3",
17
- md: "text-base space-y-4",
18
- lg: "text-lg space-y-5",
15
+ sm: "text-xs space-y-2",
16
+ md: "text-sm space-y-3",
17
+ lg: "text-base space-y-4",
19
18
  },
20
19
  align: {
21
20
  left: "text-left",
@@ -27,7 +27,7 @@ const props = defineProps({
27
27
 
28
28
  /**
29
29
  * Text size.
30
- * @values xs, sm, md, lg
30
+ * @values sm, md, lg
31
31
  */
32
32
  size: {
33
33
  type: String,
@@ -1,26 +1,26 @@
1
1
  export default /*tw*/ {
2
2
  wrapper: "flex flex-col items-center justify-center size-full",
3
- header: "mb-4 flex justify-center",
4
- icon: "{UIcon}",
5
- iconName: "emoji_food_beverage",
6
- footer: "mt-4 flex justify-center",
7
- title: {
8
- base: "mb-2 font-medium text-center",
3
+ header: {
4
+ base: "flex justify-center",
9
5
  variants: {
10
6
  size: {
11
- sm: "text-base",
12
- md: "text-lg",
13
- lg: "text-xl",
7
+ sm: "mb-4",
8
+ md: "mb-5",
9
+ lg: "mb-6",
14
10
  },
15
11
  },
16
12
  },
13
+ icon: "{UIcon}",
14
+ iconName: "emoji_food_beverage",
15
+ footer: "mt-4 flex justify-center",
16
+ title: "{UHeader}",
17
17
  description: {
18
18
  base: "text-center",
19
19
  variants: {
20
20
  size: {
21
- sm: "text-sm",
22
- md: "text-base",
23
- lg: "text-lg",
21
+ sm: "text-xs",
22
+ md: "text-sm",
23
+ lg: "text-base",
24
24
  },
25
25
  },
26
26
  },
@@ -16,12 +16,8 @@
16
16
 
17
17
  <!-- @slot Use it to add something inside. -->
18
18
  <slot>
19
- <div v-if="title" v-bind="titleAttrs">
20
- {{ title }}
21
- </div>
22
- <div v-if="description" v-bind="descriptionAttrs">
23
- {{ description }}
24
- </div>
19
+ <UHeader v-if="title" :label="title" :size="titleSize" v-bind="titleAttrs" />
20
+ <div v-if="description" v-bind="descriptionAttrs" v-text="description" />
25
21
  </slot>
26
22
 
27
23
  <div v-bind="footerAttrs">
@@ -35,6 +31,7 @@
35
31
  import { computed } from "vue";
36
32
 
37
33
  import UIcon from "../ui.image-icon";
34
+ import UHeader from "../ui.text-header";
38
35
  import UIService from "../service.ui";
39
36
 
40
37
  import { UEmpty } from "./constants";
@@ -92,9 +89,19 @@ const { config, titleAttrs, descriptionAttrs, wrapperAttrs, headerAttrs, footerA
92
89
 
93
90
  const iconSize = computed(() => {
94
91
  const sizes = {
95
- sm: "xl",
96
- md: "2xl",
97
- lg: "3xl",
92
+ sm: "2xl",
93
+ md: "3xl",
94
+ lg: "4xl",
95
+ };
96
+
97
+ return sizes[props.size];
98
+ });
99
+
100
+ const titleSize = computed(() => {
101
+ const sizes = {
102
+ sm: "xs",
103
+ md: "sm",
104
+ lg: "md",
98
105
  };
99
106
 
100
107
  return sizes[props.size];
@@ -1,6 +1,15 @@
1
1
  export default /*tw*/ {
2
2
  file: "{UFile}",
3
- info: "flex items-center gap-2 ",
3
+ info: {
4
+ base: "flex items-center",
5
+ variants: {
6
+ size: {
7
+ sm: "gap-1",
8
+ md: "gap-1.5",
9
+ lg: "gap-2",
10
+ },
11
+ },
12
+ },
4
13
  icon: "{UIcon}",
5
14
  iconName: "description",
6
15
  image: "rounded-sm max-w-7",
@@ -11,9 +20,9 @@ export default /*tw*/ {
11
20
  true: "underline decoration-dashed underline-offset-4",
12
21
  },
13
22
  size: {
14
- sm: "text-sm",
15
- md: "text-base",
16
- lg: "text-lg",
23
+ sm: "text-xs",
24
+ md: "text-sm",
25
+ lg: "text-base",
17
26
  },
18
27
  },
19
28
  },
@@ -11,7 +11,7 @@
11
11
  internal
12
12
  interactive
13
13
  color="gray"
14
- :size="size"
14
+ :size="iconSize"
15
15
  :name="config.iconName"
16
16
  v-bind="iconAttrs"
17
17
  @focus="onFocus"
@@ -27,7 +27,7 @@
27
27
  </template>
28
28
 
29
29
  <script setup>
30
- import { ref } from "vue";
30
+ import { computed, ref } from "vue";
31
31
 
32
32
  import ULink from "../ui.button-link";
33
33
  import UIcon from "../ui.image-icon";
@@ -107,6 +107,16 @@ const { config, fileAttrs, infoAttrs, iconAttrs, labelAttrs, imageAttrs } = useA
107
107
  focus,
108
108
  });
109
109
 
110
+ const iconSize = computed(() => {
111
+ const sizes = {
112
+ sm: "2xs",
113
+ md: "xs",
114
+ lg: "sm",
115
+ };
116
+
117
+ return sizes[props.size];
118
+ });
119
+
110
120
  function onFocus() {
111
121
  focus.value = true;
112
122
  }
@@ -1,16 +1,9 @@
1
1
  export default /*tw*/ {
2
- label: "block text-sm font-normal text-gray-500",
3
- body: {
4
- base: "flex gap-4 flex-col",
5
- variants: {
6
- label: {
7
- true: "mt-4",
8
- },
9
- },
10
- },
2
+ label: "{ULabel}",
3
+ body: "flex flex-col gap-1",
11
4
  file: "{UFile} block",
12
5
  defaultVariants: {
13
- placement: "topInside",
6
+ placement: "top",
14
7
  size: "md",
15
8
  },
16
9
  };
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <ULabel :label="label" :description="description" v-bind="labelAttrs">
2
+ <ULabel :label="label" :description="description" :size="size" v-bind="labelAttrs">
3
3
  <div v-bind="bodyAttrs">
4
4
  <slot>
5
5
  <UFile
@@ -23,14 +23,13 @@ export default /*tw*/ {
23
23
  sum: {
24
24
  variants: {
25
25
  size: {
26
- xs: "text-xs",
27
- sm: "text-sm",
28
- md: "text-base",
29
- lg: "text-lg",
30
- xl: "text-xl",
31
- "2xl": "text-2xl",
32
- "3xl": "text-3xl",
33
- "4xl": "text-4xl",
26
+ sm: "text-xs",
27
+ md: "text-sm",
28
+ lg: "text-base",
29
+ xl: "text-lg",
30
+ "2xl": "text-xl",
31
+ "3xl": "text-2xl",
32
+ "4xl": "text-3xl",
34
33
  },
35
34
  planned: {
36
35
  true: "opacity-75 before:content-['('] after:content-[')']",
@@ -243,10 +243,7 @@ export const slotLeft = SlotTemplate.bind({});
243
243
  slotLeft.args = {
244
244
  slotTemplate: `
245
245
  <template #left>
246
- <UIcon
247
- :src="icons.Debit"
248
- size="xs"
249
- />
246
+ <UIcon :src="icons.Debit" size="3xs" />
250
247
  </template>
251
248
  `,
252
249
  };
@@ -255,11 +252,7 @@ export const slotRight = SlotTemplate.bind({});
255
252
  slotRight.args = {
256
253
  slotTemplate: `
257
254
  <template #right>
258
- <UIcon
259
- :src="icons.Credit"
260
- size="xs"
261
- color="gray"
262
- />
255
+ <UIcon :src="icons.Credit" size="3xs" />
263
256
  </template>
264
257
  `,
265
258
  };
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.217",
4
+ "version": "0.0.218",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
@@ -1324,9 +1324,9 @@
1324
1324
  "description": "Label placement.",
1325
1325
  "value": {
1326
1326
  "kind": "expression",
1327
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
1327
+ "type": "'left' | 'right'"
1328
1328
  },
1329
- "default": "left"
1329
+ "default": "right"
1330
1330
  },
1331
1331
  {
1332
1332
  "name": "color",
@@ -1342,7 +1342,7 @@
1342
1342
  "description": "Checkbox size.",
1343
1343
  "value": {
1344
1344
  "kind": "expression",
1345
- "type": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
1345
+ "type": "'sm' | 'md' | 'lg'"
1346
1346
  },
1347
1347
  "default": "md"
1348
1348
  },
@@ -1479,16 +1479,16 @@
1479
1479
  },
1480
1480
  {
1481
1481
  "name": "size",
1482
- "description": "Radio size.",
1482
+ "description": "Checkbox group size.",
1483
1483
  "value": {
1484
1484
  "kind": "expression",
1485
- "type": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
1485
+ "type": "'sm' | 'md' | 'lg'"
1486
1486
  },
1487
1487
  "default": "md"
1488
1488
  },
1489
1489
  {
1490
1490
  "name": "color",
1491
- "description": "Radio group color.",
1491
+ "description": "Checkbox group color.",
1492
1492
  "value": {
1493
1493
  "kind": "expression",
1494
1494
  "type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose'"
@@ -2752,7 +2752,7 @@
2752
2752
  "description": "Button size.",
2753
2753
  "value": {
2754
2754
  "kind": "expression",
2755
- "type": "'sm' | 'md' | 'lg'"
2755
+ "type": "'2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl'"
2756
2756
  },
2757
2757
  "default": "md"
2758
2758
  },
@@ -2973,7 +2973,7 @@
2973
2973
  "description": "Link size.",
2974
2974
  "value": {
2975
2975
  "kind": "expression",
2976
- "type": "'xs' | 'sm' | 'md' | 'lg'"
2976
+ "type": "'sm' | 'md' | 'lg'"
2977
2977
  },
2978
2978
  "default": "md"
2979
2979
  },
@@ -3481,7 +3481,7 @@
3481
3481
  "kind": "expression",
3482
3482
  "type": "'topInside' | 'top' | 'left' | 'right'"
3483
3483
  },
3484
- "default": "topInside"
3484
+ "default": "top"
3485
3485
  },
3486
3486
  {
3487
3487
  "name": "fileList",
@@ -3981,7 +3981,7 @@
3981
3981
  "description": "Set label placement related from the default slot.",
3982
3982
  "value": {
3983
3983
  "kind": "expression",
3984
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
3984
+ "type": "'top' | 'topInside' | 'topWithDesc' | 'left' | 'right'"
3985
3985
  },
3986
3986
  "default": "topInside"
3987
3987
  },
@@ -4010,7 +4010,7 @@
4010
4010
  "kind": "expression",
4011
4011
  "type": "string"
4012
4012
  },
4013
- "default": "false"
4013
+ "default": "\"\""
4014
4014
  },
4015
4015
  {
4016
4016
  "name": "size",
@@ -4254,7 +4254,7 @@
4254
4254
  "description": "Set label placement related from the default slot.",
4255
4255
  "value": {
4256
4256
  "kind": "expression",
4257
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
4257
+ "type": "'top' | 'topInside' | 'topWithDesc' | 'left' | 'right'"
4258
4258
  },
4259
4259
  "default": "topInside"
4260
4260
  },
@@ -4403,7 +4403,7 @@
4403
4403
  "description": "Set label placement related from the default slot.",
4404
4404
  "value": {
4405
4405
  "kind": "expression",
4406
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
4406
+ "type": "'top' | 'topInside' | 'topWithDesc' | 'left' | 'right'"
4407
4407
  },
4408
4408
  "default": "topInside"
4409
4409
  },
@@ -4726,7 +4726,7 @@
4726
4726
  "description": "Rating label placement.",
4727
4727
  "value": {
4728
4728
  "kind": "expression",
4729
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
4729
+ "type": "'top' | 'topWithDesc' | 'left' | 'right'"
4730
4730
  },
4731
4731
  "default": "top"
4732
4732
  },
@@ -4881,7 +4881,7 @@
4881
4881
  "description": "Label placement.",
4882
4882
  "value": {
4883
4883
  "kind": "expression",
4884
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
4884
+ "type": "'top' | 'topInside' | 'topWithDesc' | 'left' | 'right'"
4885
4885
  },
4886
4886
  "default": "topInside"
4887
4887
  },
@@ -5027,13 +5027,22 @@
5027
5027
  },
5028
5028
  {
5029
5029
  "name": "align",
5030
- "description": "Set label placement related from the default slot.",
5030
+ "description": "Label placement.",
5031
5031
  "value": {
5032
5032
  "kind": "expression",
5033
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
5033
+ "type": "'top' | 'topInside' | 'topWithDesc' | 'left' | 'right'"
5034
5034
  },
5035
5035
  "default": "top"
5036
5036
  },
5037
+ {
5038
+ "name": "centred",
5039
+ "description": "Centre label.",
5040
+ "value": {
5041
+ "kind": "expression",
5042
+ "type": "boolean"
5043
+ },
5044
+ "default": "false"
5045
+ },
5037
5046
  {
5038
5047
  "name": "error",
5039
5048
  "description": "Set error message.",
@@ -5145,7 +5154,7 @@
5145
5154
  "description": "Link size.",
5146
5155
  "value": {
5147
5156
  "kind": "expression",
5148
- "type": "'xs' | 'sm' | 'md' | 'lg'"
5157
+ "type": "'sm' | 'md' | 'lg'"
5149
5158
  },
5150
5159
  "default": "md"
5151
5160
  },
@@ -6481,7 +6490,7 @@
6481
6490
  "description": "Radio size.",
6482
6491
  "value": {
6483
6492
  "kind": "expression",
6484
- "type": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
6493
+ "type": "'sm' | 'md' | 'lg'"
6485
6494
  },
6486
6495
  "default": "md"
6487
6496
  },
@@ -6496,12 +6505,12 @@
6496
6505
  },
6497
6506
  {
6498
6507
  "name": "labelAlign",
6499
- "description": "Set label placement related from the default slot.",
6508
+ "description": "Label placement.",
6500
6509
  "value": {
6501
6510
  "kind": "expression",
6502
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
6511
+ "type": "'left' | 'right'"
6503
6512
  },
6504
- "default": "left"
6513
+ "default": "right"
6505
6514
  },
6506
6515
  {
6507
6516
  "name": "disabled",
@@ -6630,7 +6639,7 @@
6630
6639
  "description": "Radio size.",
6631
6640
  "value": {
6632
6641
  "kind": "expression",
6633
- "type": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
6642
+ "type": "'sm' | 'md' | 'lg'"
6634
6643
  },
6635
6644
  "default": "md"
6636
6645
  },
@@ -6828,7 +6837,7 @@
6828
6837
  "description": "Set label placement related from the default slot.",
6829
6838
  "value": {
6830
6839
  "kind": "expression",
6831
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
6840
+ "type": "'top' | 'topInside' | 'topWithDesc' | 'left' | 'right'"
6832
6841
  },
6833
6842
  "default": "topInside"
6834
6843
  },
@@ -7238,9 +7247,9 @@
7238
7247
  "description": "Label alignment.",
7239
7248
  "value": {
7240
7249
  "kind": "expression",
7241
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
7250
+ "type": "'top' | 'left' | 'right'"
7242
7251
  },
7243
- "default": "left"
7252
+ "default": "right"
7244
7253
  },
7245
7254
  {
7246
7255
  "name": "label",
@@ -7733,7 +7742,7 @@
7733
7742
  "description": "Text size.",
7734
7743
  "value": {
7735
7744
  "kind": "expression",
7736
- "type": "'xs' | 'sm' | 'md' | 'lg'"
7745
+ "type": "'sm' | 'md' | 'lg'"
7737
7746
  },
7738
7747
  "default": "md"
7739
7748
  },
@@ -7830,7 +7839,7 @@
7830
7839
  "description": "Set label placement related from the default slot.",
7831
7840
  "value": {
7832
7841
  "kind": "expression",
7833
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
7842
+ "type": "'top' | 'topInside' | 'topWithDesc' | 'left' | 'right'"
7834
7843
  },
7835
7844
  "default": "topInside"
7836
7845
  },
@@ -8019,7 +8028,7 @@
8019
8028
  "description": "Label placement.",
8020
8029
  "value": {
8021
8030
  "kind": "expression",
8022
- "type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
8031
+ "type": "'top' | 'topWithDesc' | 'left' | 'right'"
8023
8032
  },
8024
8033
  "default": "top"
8025
8034
  },