vueless 0.0.272 → 0.0.274
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
|
@@ -2,7 +2,7 @@ export default /*tw*/ {
|
|
|
2
2
|
button: {
|
|
3
3
|
base: `
|
|
4
4
|
flex items-center justify-center
|
|
5
|
-
|
|
5
|
+
font-medium outline-none
|
|
6
6
|
border border-solid transition
|
|
7
7
|
focus:ring-{color}-700/15 focus:ring-dynamic focus:ring-offset-dynamic
|
|
8
8
|
focus-within:ring-{color}-700/15 focus-within:ring-dynamic focus-within:ring-offset-dynamic
|
|
@@ -43,8 +43,8 @@ export default /*tw*/ {
|
|
|
43
43
|
`,
|
|
44
44
|
},
|
|
45
45
|
color: {
|
|
46
|
-
grayscale: "focus:ring-gray-700/15 focus-within:ring-gray-700/15
|
|
47
|
-
white: "focus:ring-gray-700/15 focus-within:ring-gray-700/15
|
|
46
|
+
grayscale: "focus:ring-gray-700/15 focus-within:ring-gray-700/15",
|
|
47
|
+
white: "focus:ring-gray-700/15 focus-within:ring-gray-700/15",
|
|
48
48
|
},
|
|
49
49
|
loading: {
|
|
50
50
|
true: "pointer-events-none gap-0",
|
|
@@ -3,9 +3,9 @@ export default /*tw*/ {
|
|
|
3
3
|
base: "border border-solid rounded-full inline-block !leading-none",
|
|
4
4
|
variants: {
|
|
5
5
|
variant: {
|
|
6
|
-
primary: "bg-{color}-
|
|
7
|
-
secondary: "border-{color}-
|
|
8
|
-
thirdary: "text-{color}-
|
|
6
|
+
primary: "bg-{color}-50 text-{color}-600 border-transparent",
|
|
7
|
+
secondary: "border-{color}-600 text-{color}-600",
|
|
8
|
+
thirdary: "text-{color}-600 border-transparent",
|
|
9
9
|
},
|
|
10
10
|
size: {
|
|
11
11
|
sm: "px-2 py-1 text-2xs",
|
|
@@ -44,8 +44,8 @@ export default /*tw*/ {
|
|
|
44
44
|
variant: "primary",
|
|
45
45
|
},
|
|
46
46
|
safelist: (colors) => [
|
|
47
|
-
{ pattern: `bg-(${colors})-
|
|
48
|
-
{ pattern: `border-(${colors})-
|
|
49
|
-
{ pattern: `text-(${colors})-
|
|
47
|
+
{ pattern: `bg-(${colors})-50` },
|
|
48
|
+
{ pattern: `border-(${colors})-600` },
|
|
49
|
+
{ pattern: `text-(${colors})-600` },
|
|
50
50
|
],
|
|
51
51
|
};
|