@mekari/pixel3-theme 0.0.9-dev.2 → 0.0.9-dev.3
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/dist/index.js +13 -7
- package/dist/index.mjs +13 -7
- package/package.json +1 -1
- package/src/recipes/button.ts +7 -5
- package/src/recipes/icon.ts +3 -1
- package/src/recipes/input.ts +3 -1
package/dist/index.js
CHANGED
|
@@ -453,8 +453,8 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
|
|
|
453
453
|
},
|
|
454
454
|
ghost: {
|
|
455
455
|
color: "gray.600",
|
|
456
|
-
background: "
|
|
457
|
-
borderColor: "
|
|
456
|
+
background: "transparent",
|
|
457
|
+
borderColor: "transparent",
|
|
458
458
|
_hover: {
|
|
459
459
|
background: "gray.50",
|
|
460
460
|
borderColor: "gray.50"
|
|
@@ -464,7 +464,7 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
|
|
|
464
464
|
borderColor: "gray.100"
|
|
465
465
|
},
|
|
466
466
|
_loading: {
|
|
467
|
-
background: "
|
|
467
|
+
background: "transparent"
|
|
468
468
|
}
|
|
469
469
|
},
|
|
470
470
|
danger: {
|
|
@@ -490,7 +490,7 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
|
|
|
490
490
|
textLink: {
|
|
491
491
|
color: "blue.400",
|
|
492
492
|
background: "transparent",
|
|
493
|
-
borderColor: "
|
|
493
|
+
borderColor: "transparent",
|
|
494
494
|
_hover: {
|
|
495
495
|
color: "blue.500"
|
|
496
496
|
},
|
|
@@ -591,7 +591,9 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
|
|
|
591
591
|
defaultVariants: {
|
|
592
592
|
variant: "primary",
|
|
593
593
|
size: "md"
|
|
594
|
-
}
|
|
594
|
+
},
|
|
595
|
+
// TODO: Check why this recipe need to generate statically
|
|
596
|
+
staticCss: ["*"]
|
|
595
597
|
});
|
|
596
598
|
var buttonGroupRecipe = (0, import_dev5.defineRecipe)({
|
|
597
599
|
className: "pixel-button-group",
|
|
@@ -815,7 +817,9 @@ var inputAddonSlotRecipe = (0, import_dev6.defineSlotRecipe)({
|
|
|
815
817
|
defaultVariants: {
|
|
816
818
|
size: "md",
|
|
817
819
|
placement: "left"
|
|
818
|
-
}
|
|
820
|
+
},
|
|
821
|
+
// TODO: Check why this recipe need to generate statically
|
|
822
|
+
staticCss: ["*"]
|
|
819
823
|
});
|
|
820
824
|
|
|
821
825
|
// src/recipes/select.ts
|
|
@@ -1018,7 +1022,9 @@ var iconRecipe = (0, import_dev9.defineRecipe)({
|
|
|
1018
1022
|
},
|
|
1019
1023
|
defaultVariants: {
|
|
1020
1024
|
size: "md"
|
|
1021
|
-
}
|
|
1025
|
+
},
|
|
1026
|
+
// TODO: Check why this recipe need to generate statically
|
|
1027
|
+
staticCss: ["*"]
|
|
1022
1028
|
});
|
|
1023
1029
|
|
|
1024
1030
|
// src/recipes/spinner.ts
|
package/dist/index.mjs
CHANGED
|
@@ -427,8 +427,8 @@ var buttonRecipe = defineRecipe({
|
|
|
427
427
|
},
|
|
428
428
|
ghost: {
|
|
429
429
|
color: "gray.600",
|
|
430
|
-
background: "
|
|
431
|
-
borderColor: "
|
|
430
|
+
background: "transparent",
|
|
431
|
+
borderColor: "transparent",
|
|
432
432
|
_hover: {
|
|
433
433
|
background: "gray.50",
|
|
434
434
|
borderColor: "gray.50"
|
|
@@ -438,7 +438,7 @@ var buttonRecipe = defineRecipe({
|
|
|
438
438
|
borderColor: "gray.100"
|
|
439
439
|
},
|
|
440
440
|
_loading: {
|
|
441
|
-
background: "
|
|
441
|
+
background: "transparent"
|
|
442
442
|
}
|
|
443
443
|
},
|
|
444
444
|
danger: {
|
|
@@ -464,7 +464,7 @@ var buttonRecipe = defineRecipe({
|
|
|
464
464
|
textLink: {
|
|
465
465
|
color: "blue.400",
|
|
466
466
|
background: "transparent",
|
|
467
|
-
borderColor: "
|
|
467
|
+
borderColor: "transparent",
|
|
468
468
|
_hover: {
|
|
469
469
|
color: "blue.500"
|
|
470
470
|
},
|
|
@@ -565,7 +565,9 @@ var buttonRecipe = defineRecipe({
|
|
|
565
565
|
defaultVariants: {
|
|
566
566
|
variant: "primary",
|
|
567
567
|
size: "md"
|
|
568
|
-
}
|
|
568
|
+
},
|
|
569
|
+
// TODO: Check why this recipe need to generate statically
|
|
570
|
+
staticCss: ["*"]
|
|
569
571
|
});
|
|
570
572
|
var buttonGroupRecipe = defineRecipe({
|
|
571
573
|
className: "pixel-button-group",
|
|
@@ -789,7 +791,9 @@ var inputAddonSlotRecipe = defineSlotRecipe3({
|
|
|
789
791
|
defaultVariants: {
|
|
790
792
|
size: "md",
|
|
791
793
|
placement: "left"
|
|
792
|
-
}
|
|
794
|
+
},
|
|
795
|
+
// TODO: Check why this recipe need to generate statically
|
|
796
|
+
staticCss: ["*"]
|
|
793
797
|
});
|
|
794
798
|
|
|
795
799
|
// src/recipes/select.ts
|
|
@@ -992,7 +996,9 @@ var iconRecipe = defineRecipe3({
|
|
|
992
996
|
},
|
|
993
997
|
defaultVariants: {
|
|
994
998
|
size: "md"
|
|
995
|
-
}
|
|
999
|
+
},
|
|
1000
|
+
// TODO: Check why this recipe need to generate statically
|
|
1001
|
+
staticCss: ["*"]
|
|
996
1002
|
});
|
|
997
1003
|
|
|
998
1004
|
// src/recipes/spinner.ts
|
package/package.json
CHANGED
package/src/recipes/button.ts
CHANGED
|
@@ -66,8 +66,8 @@ const buttonRecipe = defineRecipe({
|
|
|
66
66
|
},
|
|
67
67
|
ghost: {
|
|
68
68
|
color: 'gray.600',
|
|
69
|
-
background: '
|
|
70
|
-
borderColor: '
|
|
69
|
+
background: 'transparent',
|
|
70
|
+
borderColor: 'transparent',
|
|
71
71
|
_hover: {
|
|
72
72
|
background: 'gray.50',
|
|
73
73
|
borderColor: 'gray.50'
|
|
@@ -77,7 +77,7 @@ const buttonRecipe = defineRecipe({
|
|
|
77
77
|
borderColor: 'gray.100'
|
|
78
78
|
},
|
|
79
79
|
_loading: {
|
|
80
|
-
background: '
|
|
80
|
+
background: 'transparent'
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
83
|
danger: {
|
|
@@ -103,7 +103,7 @@ const buttonRecipe = defineRecipe({
|
|
|
103
103
|
textLink: {
|
|
104
104
|
color: 'blue.400',
|
|
105
105
|
background: 'transparent',
|
|
106
|
-
borderColor: '
|
|
106
|
+
borderColor: 'transparent',
|
|
107
107
|
_hover: {
|
|
108
108
|
color: 'blue.500'
|
|
109
109
|
},
|
|
@@ -204,7 +204,9 @@ const buttonRecipe = defineRecipe({
|
|
|
204
204
|
defaultVariants: {
|
|
205
205
|
variant: 'primary',
|
|
206
206
|
size: 'md'
|
|
207
|
-
}
|
|
207
|
+
},
|
|
208
|
+
// TODO: Check why this recipe need to generate statically
|
|
209
|
+
staticCss: ['*']
|
|
208
210
|
})
|
|
209
211
|
|
|
210
212
|
const buttonGroupRecipe = defineRecipe({
|
package/src/recipes/icon.ts
CHANGED
package/src/recipes/input.ts
CHANGED
|
@@ -198,7 +198,9 @@ const inputAddonSlotRecipe = defineSlotRecipe({
|
|
|
198
198
|
defaultVariants: {
|
|
199
199
|
size: 'md',
|
|
200
200
|
placement: 'left'
|
|
201
|
-
}
|
|
201
|
+
},
|
|
202
|
+
// TODO: Check why this recipe need to generate statically
|
|
203
|
+
staticCss: ['*']
|
|
202
204
|
})
|
|
203
205
|
|
|
204
206
|
export { inputSlotRecipe, inputGroupSlotRecipe, inputAddonSlotRecipe }
|