vueless 0.0.114 → 0.0.115

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.
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 -960 960 960"><path d="M182.15-114.02q-27.6 0-47.86-20.27-20.27-20.26-20.27-47.86v-595.7q0-27.7 20.27-48.03 20.26-20.34 47.86-20.34h595.7q27.7 0 48.03 20.34 20.34 20.33 20.34 48.03v595.7q0 27.6-20.34 47.86-20.33 20.27-48.03 20.27h-595.7Zm0-68.13h595.7v-595.7h-595.7v595.7Zm50.74-92.7h495.22L578-476.59l-132 171-93-127-120.11 157.74Zm-50.74 92.7v-595.7 595.7Z"/></svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.114",
3
+ "version": "0.0.115",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -27,8 +27,10 @@ export function useAttrs(props) {
27
27
  );
28
28
 
29
29
  const avatarAttrs = getAttrs("avatar", { classes: avatarClasses });
30
+ const iconAttrs = getAttrs("icon", { isComponent: true });
30
31
 
31
32
  return {
32
33
  avatarAttrs,
34
+ iconAttrs,
33
35
  };
34
36
  }
@@ -1,25 +1,30 @@
1
1
  export default /*tw*/ {
2
2
  avatar: {
3
3
  base: `
4
- flex h-full items-center justify-center font-medium
5
- bg-contain bg-center bg-no-repeat bg-{color}-100 text-{color}-600`,
4
+ flex items-center justify-center shrink-0
5
+ bg-{color}-100 bg-contain bg-center bg-no-repeat
6
+ text-{color}-600
7
+ `,
6
8
  variants: {
7
9
  bordered: {
8
10
  true: "border border-{color}-200",
9
11
  },
10
12
  size: {
11
- "2xs": "size-4 text-2xs",
12
- xs: "size-5 text-2xs",
13
- sm: "size-6 text-xs",
14
- md: "size-8 text-sm",
15
- lg: "size-10 text-lg",
16
- xl: "size-12 text-2xl",
17
- "2xl": "size-14 text-3xl",
13
+ "3xs": "size-4 text-2xs",
14
+ "2xs": "size-5 text-2xs",
15
+ xs: "size-6 text-xs",
16
+ sm: "size-8 text-sm",
17
+ md: "size-10 text-lg",
18
+ lg: "size-12 text-2xl",
19
+ xl: "size-14 text-3xl",
20
+ "2xl": "size-16 text-4xl",
21
+ "3xl": "size-20 text-5xl",
18
22
  },
19
23
  rounded: {
24
+ none: "rounded-none",
20
25
  sm: "rounded",
21
- md: "rounded-lg",
22
- lg: "rounded-xl",
26
+ md: "rounded-md",
27
+ lg: "rounded-lg",
23
28
  full: "rounded-full",
24
29
  },
25
30
  color: {
@@ -28,10 +33,12 @@ export default /*tw*/ {
28
33
  },
29
34
  },
30
35
  },
36
+ icon: "",
31
37
  defaultVariants: {
32
38
  color: "grayscale",
33
- size: "md",
34
39
  rounded: "md",
40
+ size: "md",
41
+ icon: "image",
35
42
  bordered: false,
36
43
  },
37
44
  safelist: (colors) => [
@@ -2,6 +2,7 @@ import { getArgTypes } from "../service.storybook";
2
2
 
3
3
  import UAvatar from "../ui.image-avatar";
4
4
  import URow from "../ui.container-row";
5
+ import UGroup from "../ui.container-group";
5
6
 
6
7
  export default {
7
8
  id: "6030",
@@ -23,7 +24,7 @@ const DefaultTemplate = (args) => ({
23
24
  });
24
25
 
25
26
  const SizesTemplate = (args, { argTypes } = {}) => ({
26
- components: { UAvatar, URow },
27
+ components: { UGroup, URow, UAvatar },
27
28
  setup() {
28
29
  return {
29
30
  args,
@@ -31,19 +32,31 @@ const SizesTemplate = (args, { argTypes } = {}) => ({
31
32
  };
32
33
  },
33
34
  template: `
34
- <URow>
35
- <UAvatar
36
- v-for="(size, index) in sizes"
37
- v-bind="args"
38
- :size="size"
39
- :key="index"
40
- />
41
- </URow>
35
+ <UGroup size="lg">
36
+ <URow>
37
+ <UAvatar
38
+ v-for="(size, index) in sizes"
39
+ :key="index"
40
+ v-bind="args"
41
+ :size="size"
42
+ :label="size"
43
+ />
44
+ </URow>
45
+ <URow>
46
+ <UAvatar
47
+ v-for="(size, index) in sizes"
48
+ :key="index"
49
+ v-bind="args"
50
+ :size="size"
51
+ :label="''"
52
+ />
53
+ </URow>
54
+ </UGroup>
42
55
  `,
43
56
  });
44
57
 
45
58
  const ColorsTemplate = (args, { argTypes } = {}) => ({
46
- components: { UAvatar, URow },
59
+ components: { UGroup, URow, UAvatar },
47
60
  setup() {
48
61
  return {
49
62
  args,
@@ -51,22 +64,31 @@ const ColorsTemplate = (args, { argTypes } = {}) => ({
51
64
  };
52
65
  },
53
66
  template: `
54
- <URow>
55
- <UAvatar
56
- v-for="(color, index) in colors"
57
- v-bind="args"
58
- :color="color"
59
- :key="index"
60
- />
61
- </URow>
67
+ <UGroup size="lg">
68
+ <URow>
69
+ <UAvatar
70
+ v-for="(color, index) in colors"
71
+ v-bind="args"
72
+ :color="color"
73
+ :key="index"
74
+ :label="color"
75
+ />
76
+ </URow>
77
+ <URow>
78
+ <UAvatar
79
+ v-for="(color, index) in colors"
80
+ :key="index"
81
+ v-bind="args"
82
+ :color="color"
83
+ :label="''"
84
+ />
85
+ </URow>
86
+ </UGroup>
62
87
  `,
63
- created() {
64
- this.mxArgTypes = argTypes;
65
- },
66
88
  });
67
89
 
68
90
  const RoundedTemplate = (args, { argTypes } = {}) => ({
69
- components: { UAvatar, URow },
91
+ components: { UGroup, UAvatar, URow },
70
92
  setup() {
71
93
  return {
72
94
  args,
@@ -74,34 +96,52 @@ const RoundedTemplate = (args, { argTypes } = {}) => ({
74
96
  };
75
97
  },
76
98
  template: `
77
- <URow>
78
- <UAvatar
79
- v-for="(rounded, index) in roundedValues"
80
- v-bind="args"
81
- :rounded="rounded"
82
- :key="index"
83
- />
84
- </URow>
99
+ <UGroup>
100
+ <URow>
101
+ <UAvatar
102
+ v-for="(rounded, index) in roundedValues"
103
+ :key="index"
104
+ v-bind="args"
105
+ :rounded="rounded"
106
+ :label="rounded"
107
+ />
108
+ </URow>
109
+ </UGroup>
85
110
  `,
86
111
  });
87
112
 
88
113
  export const Default = DefaultTemplate.bind({});
89
- Default.args = {};
114
+ Default.args = { size: "3xl" };
115
+
116
+ export const src = DefaultTemplate.bind({});
117
+ src.args = {
118
+ src: "https://avatars.githubusercontent.com/u/16276298?v=4",
119
+ size: "3xl",
120
+ };
90
121
 
122
+ export const label = DefaultTemplate.bind({});
123
+ label.args = { label: "Name Surname", size: "3xl" };
124
+
125
+ /**
126
+ * Hold cursor above an avatar to see value.
127
+ */
91
128
  export const sizes = SizesTemplate.bind({});
92
129
  sizes.args = {};
93
130
 
94
- export const colors = ColorsTemplate.bind({});
95
- colors.args = { userName: "Name" };
96
-
131
+ /**
132
+ * Hold cursor above an avatar to see value.
133
+ */
97
134
  export const rounded = RoundedTemplate.bind({});
98
- rounded.args = { userName: "Name", color: "orange" };
99
-
100
- export const bordered = ColorsTemplate.bind({});
101
- bordered.args = { userName: "Name", bordered: true };
135
+ rounded.args = { label: "John Doe", color: "orange" };
102
136
 
103
- export const roundedFull = DefaultTemplate.bind({});
104
- roundedFull.args = { userName: "Name", rounded: "full" };
137
+ /**
138
+ * Hold cursor above an avatar to see value.
139
+ */
140
+ export const colors = ColorsTemplate.bind({});
141
+ colors.args = {};
105
142
 
106
- export const userName = DefaultTemplate.bind({});
107
- userName.args = { userName: "Name Surname" };
143
+ /**
144
+ * Hold cursor above an avatar to see value.
145
+ */
146
+ export const bordered = ColorsTemplate.bind({});
147
+ bordered.args = { bordered: true };
@@ -1,19 +1,28 @@
1
1
  <template>
2
2
  <div
3
3
  :title="label"
4
- :style="bgImage"
4
+ :style="backgroundImage"
5
5
  :data-cy="dataCy"
6
6
  v-bind="avatarAttrs"
7
7
  @click="onClick"
8
- v-text="labelFirstLetters"
9
- />
8
+ >
9
+ <template v-if="!backgroundImage">
10
+ <template v-if="labelFirstLetters">{{ labelFirstLetters }}</template>
11
+ <UIcon
12
+ v-else
13
+ :name="icon"
14
+ :color="color === 'white' ? 'grayscale' : color"
15
+ :size="size"
16
+ v-bind="iconAttrs"
17
+ />
18
+ </template>
19
+ </div>
10
20
  </template>
11
21
 
12
22
  <script setup>
13
23
  import { computed } from "vue";
14
24
 
15
- import defaultAvatar from "./default-avatar.png";
16
-
25
+ import UIcon from "../ui.image-icon";
17
26
  import UIService from "../service.ui";
18
27
 
19
28
  import { UAvatar } from "./constants/index";
@@ -21,14 +30,11 @@ import defaultConfig from "./configs/default.config";
21
30
  import { useAttrs } from "./composables/attrs.composable";
22
31
 
23
32
  /* Should be a string for correct web-types gen */
24
- defineOptions({
25
- name: "UAvatar",
26
- inheritAttrs: false,
27
- });
33
+ defineOptions({ name: "UAvatar", inheritAttrs: false });
28
34
 
29
35
  const props = defineProps({
30
36
  /**
31
- * Set avatar's image. It may be a URL or path from the "public" folder.
37
+ * Avatar image source.
32
38
  */
33
39
  src: {
34
40
  type: String,
@@ -36,33 +42,42 @@ const props = defineProps({
36
42
  },
37
43
 
38
44
  /**
39
- * The size of the avatar.
40
- * @values xs, sm, md, lg, xl, 2xl
45
+ * Avatar label (user name, nickname, etc.).
41
46
  */
42
- size: {
47
+ label: {
43
48
  type: String,
44
- default: UIService.get(defaultConfig, UAvatar).default.size,
49
+ default: "",
45
50
  },
46
51
 
47
52
  /**
48
- * The color of the avatar.
49
- * @values brand, grayscale, gray, red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose, white */
50
- color: {
53
+ * Avatar icon placeholder.
54
+ */
55
+ icon: {
51
56
  type: String,
52
- default: UIService.get(defaultConfig, UAvatar).default.color,
57
+ default: UIService.get(defaultConfig, UAvatar).default.icon,
53
58
  },
54
59
 
55
60
  /**
56
- * Avatar label (user name, nickname, etc.).
61
+ * Avatar size.
62
+ * @values 3xs, 2xs, xs, sm, md, lg, xl, 2xl, 3xl
57
63
  */
58
- label: {
64
+ size: {
59
65
  type: String,
60
- default: "",
66
+ default: UIService.get(defaultConfig, UAvatar).default.size,
61
67
  },
62
68
 
63
69
  /**
64
- * The rounded of the avatar.
65
- * @values sm, md, lg, full
70
+ * Avatar color.
71
+ * @values brand, grayscale, gray, red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose, white
72
+ */
73
+ color: {
74
+ type: String,
75
+ default: UIService.get(defaultConfig, UAvatar).default.color,
76
+ },
77
+
78
+ /**
79
+ * Avatar corner rounding.
80
+ * @values none, sm, md, lg, full
66
81
  */
67
82
  rounded: {
68
83
  type: String,
@@ -70,7 +85,7 @@ const props = defineProps({
70
85
  },
71
86
 
72
87
  /**
73
- * Active / disabled avatar border.
88
+ * Add border to the avatar.
74
89
  */
75
90
  bordered: {
76
91
  type: Boolean,
@@ -78,7 +93,15 @@ const props = defineProps({
78
93
  },
79
94
 
80
95
  /**
81
- * Sets data-cy attribute for automated testing.
96
+ * Component ui config object.
97
+ */
98
+ config: {
99
+ type: Object,
100
+ default: () => ({}),
101
+ },
102
+
103
+ /**
104
+ * Data-cy attribute for automated testing.
82
105
  */
83
106
  dataCy: {
84
107
  type: String,
@@ -97,23 +120,14 @@ const labelFirstLetters = computed(() => {
97
120
  return firstWordLetter + secondWordLetter;
98
121
  });
99
122
 
100
- const imgSrc = computed(() => {
101
- let src;
102
-
103
- if (props.src) {
104
- src = props.src.includes("http") ? props.src : import.meta.env.BASE_URL + props.path;
105
- } else if (!props.label && !props.src) {
106
- src = defaultAvatar;
107
- }
108
-
109
- return src;
110
- });
123
+ const backgroundImage = computed(() => {
124
+ const baseUrl = import.meta.env.BASE_URL;
125
+ const src = props.src && props.src.includes("http") ? props.src : baseUrl + props.src;
111
126
 
112
- const bgImage = computed(() => {
113
- return `background-image: url(${imgSrc.value});`;
127
+ return props.src ? `background-image: url(${src});` : "";
114
128
  });
115
129
 
116
- const { avatarAttrs } = useAttrs(props);
130
+ const { avatarAttrs, iconAttrs } = useAttrs(props);
117
131
 
118
132
  function onClick(event) {
119
133
  emit("click", event);
@@ -5,11 +5,15 @@ export default /*tw*/ {
5
5
  error: {
6
6
  true: "bg-red-500",
7
7
  },
8
+ color: {
9
+ white: "bg-white",
10
+ grayscale: "bg-gray-900",
11
+ },
8
12
  },
9
13
  },
10
14
  progressMobile: "mt-safe-top mx-3 rounded max-w-[calc(100%-1.5rem)]",
11
15
  defaultVariants: {
12
- color: "blue",
16
+ color: "brand",
13
17
  },
14
18
  safelist: (colors) => [{ pattern: `bg-(${colors})-500` }],
15
19
  };
@@ -29,7 +29,7 @@ const props = defineProps({
29
29
 
30
30
  /**
31
31
  * The color of the loader stripe.
32
- * @values gray, red, orange, yellow, green, blue, violet, fuchsia
32
+ * @values brand, grayscale, gray, red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose, white
33
33
  */
34
34
  color: {
35
35
  type: String,
@@ -1,13 +1,13 @@
1
1
  export default /*tw*/ {
2
2
  progress: {
3
3
  base: `
4
- block appearance-none border-none overflow-hidden w-full
5
- [&::-webkit-progress-bar]:w-full h-2 rounded-full [&::-webkit-progress-bar]:rounded-full
6
- [&::-webkit-progress-bar]:bg-{color}-200 [@supports(selector(&::-moz-progress-bar))]:bg-{color}-200
7
- [&::-webkit-progress-value]:rounded-full [&::-webkit-progress-value]:transition-all
4
+ block appearance-none border-none overflow-hidden w-full
5
+ [&::-webkit-progress-bar]:w-full h-2 rounded-full [&::-webkit-progress-bar]:rounded-full
6
+ [&::-webkit-progress-bar]:bg-{color}-200 [@supports(selector(&::-moz-progress-bar))]:bg-{color}-200
7
+ [&::-webkit-progress-value]:rounded-full [&::-webkit-progress-value]:transition-all
8
8
  [&::-webkit-progress-value]:ease-in-out [&::-moz-progress-bar]:rounded-full text-{color}-500
9
- [&::-webkit-progress-value]:bg-current [&::-moz-progress-bar]:bg-current indeterminate:relative
10
- indeterminate:after:rounded-full [&:indeterminate::-webkit-progress-value]:rounded-full
9
+ [&::-webkit-progress-value]:bg-current [&::-moz-progress-bar]:bg-current indeterminate:relative
10
+ indeterminate:after:rounded-full [&:indeterminate::-webkit-progress-value]:rounded-full
11
11
  [&:indeterminate::-moz-progress-bar]:rounded-full
12
12
  `,
13
13
  variants: {
@@ -27,7 +27,7 @@ export default /*tw*/ {
27
27
  },
28
28
  },
29
29
  defaultVariants: {
30
- color: "green",
30
+ color: "brand",
31
31
  size: "md",
32
32
  },
33
33
  safelist: (colors) => [{ pattern: `bg-(${colors})-200` }, { pattern: `text-(${colors})-500` }],
@@ -13,19 +13,36 @@ import { useAttrs } from "./composables/attrs.composable";
13
13
  defineOptions({ name: "UProgress", inheritAttrs: false });
14
14
 
15
15
  const props = defineProps({
16
+ /**
17
+ * Progress value (current step).
18
+ */
16
19
  value: {
17
20
  type: Number,
18
21
  required: true,
19
22
  default: 0,
20
23
  },
24
+
25
+ /**
26
+ * Progress max amount of steps.
27
+ */
21
28
  max: {
22
29
  type: Number,
23
30
  default: 100,
24
31
  },
32
+
33
+ /**
34
+ * Progress size.
35
+ * @values 2xs, xs, sm, md, lg, xl, 2xl
36
+ */
25
37
  size: {
26
38
  type: String,
27
39
  default: UIService.get(defaultConfig, UProgress).default.size,
28
40
  },
41
+
42
+ /**
43
+ * Progress color.
44
+ * @values brand, grayscale, gray, red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose, white
45
+ */
29
46
  color: {
30
47
  type: String,
31
48
  default: UIService.get(defaultConfig, UProgress).default.color,
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.114",
4
+ "version": "0.0.115",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
@@ -349,7 +349,7 @@
349
349
  "attributes": [
350
350
  {
351
351
  "name": "src",
352
- "description": "Set avatar's image. It may be a URL or path from the \"public\" folder.",
352
+ "description": "Avatar image source.",
353
353
  "value": {
354
354
  "kind": "expression",
355
355
  "type": "string"
@@ -357,53 +357,71 @@
357
357
  "default": "\"\""
358
358
  },
359
359
  {
360
- "name": "size",
361
- "description": "The size of the avatar.",
360
+ "name": "label",
361
+ "description": "Avatar label (user name, nickname, etc.).",
362
362
  "value": {
363
363
  "kind": "expression",
364
- "type": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'"
364
+ "type": "string"
365
365
  },
366
- "default": "md"
366
+ "default": "\"\""
367
367
  },
368
368
  {
369
- "name": "color",
370
- "description": "The color of the avatar.",
369
+ "name": "icon",
370
+ "description": "Avatar icon placeholder.",
371
371
  "value": {
372
372
  "kind": "expression",
373
- "type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose' | 'white'"
373
+ "type": "string"
374
374
  },
375
- "default": "grayscale"
375
+ "default": "image"
376
376
  },
377
377
  {
378
- "name": "label",
379
- "description": "Avatar label (user name, nickname, etc.).",
378
+ "name": "size",
379
+ "description": "Avatar size.",
380
380
  "value": {
381
381
  "kind": "expression",
382
- "type": "string"
382
+ "type": "'3xs' | '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl'"
383
383
  },
384
- "default": "\"\""
384
+ "default": "md"
385
+ },
386
+ {
387
+ "name": "color",
388
+ "description": "Avatar color.",
389
+ "value": {
390
+ "kind": "expression",
391
+ "type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose' | 'white'"
392
+ },
393
+ "default": "grayscale"
385
394
  },
386
395
  {
387
396
  "name": "rounded",
388
- "description": "The rounded of the avatar.",
397
+ "description": "Avatar corner rounding.",
389
398
  "value": {
390
399
  "kind": "expression",
391
- "type": "'sm' | 'md' | 'lg' | 'full'"
400
+ "type": "'none' | 'sm' | 'md' | 'lg' | 'full'"
392
401
  },
393
402
  "default": "md"
394
403
  },
395
404
  {
396
405
  "name": "bordered",
397
- "description": "Active / disabled avatar border.",
406
+ "description": "Add border to the avatar.",
398
407
  "value": {
399
408
  "kind": "expression",
400
409
  "type": "boolean"
401
410
  },
402
411
  "default": "false"
403
412
  },
413
+ {
414
+ "name": "config",
415
+ "description": "Component ui config object.",
416
+ "value": {
417
+ "kind": "expression",
418
+ "type": "object"
419
+ },
420
+ "default": "{}"
421
+ },
404
422
  {
405
423
  "name": "dataCy",
406
- "description": "Sets data-cy attribute for automated testing.",
424
+ "description": "Data-cy attribute for automated testing.",
407
425
  "value": {
408
426
  "kind": "expression",
409
427
  "type": "string"
@@ -4502,9 +4520,9 @@
4502
4520
  "description": "The color of the loader stripe.",
4503
4521
  "value": {
4504
4522
  "kind": "expression",
4505
- "type": "'gray' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'violet' | 'fuchsia'"
4523
+ "type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose' | 'white'"
4506
4524
  },
4507
- "default": "blue"
4525
+ "default": "brand"
4508
4526
  }
4509
4527
  ],
4510
4528
  "source": {
@@ -5415,6 +5433,7 @@
5415
5433
  {
5416
5434
  "name": "value",
5417
5435
  "required": true,
5436
+ "description": "Progress value (current step).",
5418
5437
  "value": {
5419
5438
  "kind": "expression",
5420
5439
  "type": "number"
@@ -5423,6 +5442,7 @@
5423
5442
  },
5424
5443
  {
5425
5444
  "name": "max",
5445
+ "description": "Progress max amount of steps.",
5426
5446
  "value": {
5427
5447
  "kind": "expression",
5428
5448
  "type": "number"
@@ -5431,19 +5451,21 @@
5431
5451
  },
5432
5452
  {
5433
5453
  "name": "size",
5454
+ "description": "Progress size.",
5434
5455
  "value": {
5435
5456
  "kind": "expression",
5436
- "type": "string"
5457
+ "type": "'2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'"
5437
5458
  },
5438
5459
  "default": "md"
5439
5460
  },
5440
5461
  {
5441
5462
  "name": "color",
5463
+ "description": "Progress color.",
5442
5464
  "value": {
5443
5465
  "kind": "expression",
5444
- "type": "string"
5466
+ "type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose' | 'white'"
5445
5467
  },
5446
- "default": "green"
5468
+ "default": "brand"
5447
5469
  }
5448
5470
  ],
5449
5471
  "source": {
Binary file