@mptw/skylens-ui 1.4.31 → 1.4.32
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/components/SLButton.vue +7 -1
- package/package.json +1 -1
package/components/SLButton.vue
CHANGED
|
@@ -23,7 +23,7 @@ export default defineComponent({
|
|
|
23
23
|
size: {
|
|
24
24
|
type: String,
|
|
25
25
|
default: "",
|
|
26
|
-
validator: (val: string) => ["", "lg", "md", "sm", "xs"].includes(val),
|
|
26
|
+
validator: (val: string) => ["", "lg", "md", "sm", "xs", 'xxs'].includes(val),
|
|
27
27
|
},
|
|
28
28
|
color: {
|
|
29
29
|
type: String,
|
|
@@ -129,6 +129,12 @@ export default defineComponent({
|
|
|
129
129
|
.btn-content
|
|
130
130
|
@apply space-x-1
|
|
131
131
|
|
|
132
|
+
&-xxs
|
|
133
|
+
@apply s("p-0.75") text-sm
|
|
134
|
+
|
|
135
|
+
.btn-content
|
|
136
|
+
@apply space-x-1
|
|
137
|
+
|
|
132
138
|
&-white
|
|
133
139
|
@apply bg-white border-white text-gray-2 s("hover:bg-white") s("hover:border-white")
|
|
134
140
|
|