vueless 0.0.279 → 0.0.280

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.279",
3
+ "version": "0.0.280",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -12,35 +12,35 @@ export default /*tw*/ {
12
12
  base: "",
13
13
  variants: {
14
14
  size: {
15
- "2xs": "h-8 w-8",
16
- xs: "h-8 w-8",
17
- sm: "h-10 w-10",
18
- md: "h-12 w-12",
19
- lg: "h-14 w-14",
20
- xl: "h-16 w-16",
21
- "2xl": "h-20 w-20",
15
+ "2xs": "size-8",
16
+ xs: "size-8",
17
+ sm: "size-10",
18
+ md: "size-12",
19
+ lg: "size-14",
20
+ xl: "size-16",
21
+ "2xl": "size-20",
22
22
  },
23
23
  },
24
24
  },
25
- stepperCircle: "stroke-current text-gray-100",
25
+ stepperCircle: "stroke-current text-{color}-100",
26
26
  stepperCount: "text-xl font-bold text-gray-900 translate-y-2 transform",
27
27
  stepperGradient: "",
28
28
  stepperSvg: "",
29
29
  progress: {
30
30
  base: `
31
- text-{color}-500 w-full block appearance-none border-none overflow-hidden
31
+ text-{color}-600 w-full block appearance-none border-none overflow-hidden
32
32
  indeterminate:relative indeterminate:after:rounded-full
33
33
  [&:indeterminate::-webkit-progress-value]:rounded-full [&:indeterminate::-moz-progress-bar]:rounded-full
34
34
  [&::-webkit-progress-bar]:w-full [&::-webkit-progress-bar]:rounded-full
35
- [&::-webkit-progress-bar]:bg-gray-100 [@supports(selector(&::-moz-progress-bar))]:bg-gray-100
35
+ [&::-webkit-progress-bar]:bg-{color}-50 [@supports(selector(&::-moz-progress-bar))]:bg-{color}-50
36
36
  [&::-webkit-progress-value]:rounded-full [&::-moz-progress-bar]:rounded-full
37
37
  [&::-webkit-progress-value]:transition [&::-moz-progress-bar]:transition
38
38
  [&::-webkit-progress-value]:bg-current [&::-moz-progress-bar]:bg-current
39
39
  `,
40
40
  variants: {
41
41
  color: {
42
- white: "text-gray-200",
43
- grayscale: "text-gray-900",
42
+ white: "text-gray-300 [&::-webkit-progress-bar]:bg-gray-100 [@supports(selector(&::-moz-progress-bar))]:bg-gray-100",
43
+ grayscale: "text-gray-900 [&::-webkit-progress-bar]:bg-gray-100 [@supports(selector(&::-moz-progress-bar))]:bg-gray-100",
44
44
  },
45
45
  size: {
46
46
  "2xs": "h-px",
@@ -54,7 +54,7 @@ export default /*tw*/ {
54
54
  },
55
55
  },
56
56
  indicator: {
57
- base: "text-{color}-500 flex justify-end w-full min-w-fit font-medium transition",
57
+ base: "text-{color}-600 flex justify-end w-full min-w-fit font-medium transition",
58
58
  variants: {
59
59
  color: {
60
60
  white: "text-gray-200",
@@ -73,7 +73,7 @@ export default /*tw*/ {
73
73
  },
74
74
  firstStep: "text-gray-500",
75
75
  step: {
76
- base: "text-{color}-500 flex justify-end w-full transition",
76
+ base: "text-{color}-600 flex justify-end w-full transition",
77
77
  variants: {
78
78
  variant: {
79
79
  progress: "justify-end",
@@ -100,5 +100,9 @@ export default /*tw*/ {
100
100
  variant: "progress",
101
101
  indicator: false,
102
102
  },
103
- safelist: (colors) => [{ pattern: `text-(${colors})-500` }],
103
+ safelist: (colors) => [
104
+ { pattern: `text-(${colors})-600` },
105
+ { pattern: `text-(${colors})-100` },
106
+ { pattern: `bg-(${colors})-50`, variants: ["[&::-webkit-progress-bar]", "[@supports(selector(&::-moz-progress-bar))]"] },
107
+ ],
104
108
  };
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.279",
4
+ "version": "0.0.280",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",