vueless 0.0.273 → 0.0.275
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",
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default /*tw*/ {
|
|
2
2
|
wrapper: {
|
|
3
|
-
base:
|
|
3
|
+
base: "w-max text-center cursor-pointer -mb-px",
|
|
4
4
|
variants: {
|
|
5
5
|
size: {
|
|
6
|
-
sm: "text-xs",
|
|
7
|
-
md: "text-sm",
|
|
8
|
-
lg: "text-base",
|
|
6
|
+
sm: "text-xs pb-1",
|
|
7
|
+
md: "text-sm pb-2",
|
|
8
|
+
lg: "text-base pb-3",
|
|
9
9
|
},
|
|
10
10
|
disabled: {
|
|
11
|
-
true: "text-gray-
|
|
11
|
+
true: "text-gray-400 cursor-not-allowed",
|
|
12
12
|
},
|
|
13
13
|
selected: {
|
|
14
|
-
true: "border-b-2 text-brand-
|
|
14
|
+
true: "border-b-2 text-brand-700 border-brand-700",
|
|
15
15
|
},
|
|
16
16
|
},
|
|
17
17
|
},
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
export default /*tw*/ {
|
|
2
2
|
wrapper: {
|
|
3
|
-
base: "mb-6 flex
|
|
3
|
+
base: "mb-6 flex",
|
|
4
4
|
variants: {
|
|
5
|
+
size: {
|
|
6
|
+
sm: "gap-5",
|
|
7
|
+
md: "gap-6",
|
|
8
|
+
lg: "gap-7",
|
|
9
|
+
},
|
|
5
10
|
underlined: {
|
|
6
|
-
true: "border-b border-
|
|
11
|
+
true: "border-b border-gray-100",
|
|
7
12
|
},
|
|
8
13
|
},
|
|
9
14
|
},
|
|
@@ -3,9 +3,9 @@ export default /*tw*/ {
|
|
|
3
3
|
base: "p-4 flex flex-col rounded-dynamic",
|
|
4
4
|
variants: {
|
|
5
5
|
variant: {
|
|
6
|
-
primary: "bg-{color}-
|
|
7
|
-
secondary: "bg-transparent border border-{color}-
|
|
8
|
-
thirdary: "bg-{color}-50 text-{color}-
|
|
6
|
+
primary: "bg-{color}-600 text-white",
|
|
7
|
+
secondary: "bg-transparent border border-{color}-600 text-{color}-600",
|
|
8
|
+
thirdary: "bg-{color}-50 text-{color}-600",
|
|
9
9
|
},
|
|
10
10
|
size: {
|
|
11
11
|
xs: "text-2xs",
|
|
@@ -58,10 +58,9 @@ export default /*tw*/ {
|
|
|
58
58
|
},
|
|
59
59
|
safelist: (colors) => [
|
|
60
60
|
{ pattern: `bg-(${colors})-50` },
|
|
61
|
-
{ pattern: `bg-(${colors})-
|
|
62
|
-
{ pattern: `text-(${colors})-
|
|
63
|
-
{ pattern: `text-(${colors})-700` },
|
|
61
|
+
{ pattern: `bg-(${colors})-600` },
|
|
62
|
+
{ pattern: `text-(${colors})-600` },
|
|
64
63
|
{ pattern: `border-(${colors})-100` },
|
|
65
|
-
{ pattern: `border-(${colors})-
|
|
64
|
+
{ pattern: `border-(${colors})-600` },
|
|
66
65
|
],
|
|
67
66
|
};
|