@mekari/pixel3-theme 0.0.9-dev.1 → 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 +17 -11
- package/dist/index.mjs +17 -11
- package/package.json +1 -1
- package/src/recipes/button.ts +7 -5
- package/src/recipes/date-picker.ts +1 -2
- package/src/recipes/icon.ts +3 -1
- package/src/recipes/input-tag.ts +1 -0
- package/src/recipes/input.ts +3 -1
- package/src/recipes/progress.ts +1 -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
|
|
@@ -2071,7 +2077,7 @@ var progressSlotRecipe = (0, import_dev22.defineSlotRecipe)({
|
|
|
2071
2077
|
top: "50%",
|
|
2072
2078
|
left: "50%",
|
|
2073
2079
|
transform: "translate(-50%, -50%)",
|
|
2074
|
-
backgroundColor: "
|
|
2080
|
+
backgroundColor: "var(--mp-progress-bg-color)",
|
|
2075
2081
|
borderRadius: "full"
|
|
2076
2082
|
}
|
|
2077
2083
|
},
|
|
@@ -2215,7 +2221,8 @@ var inputTagSlotRecipe = (0, import_dev24.defineSlotRecipe)({
|
|
|
2215
2221
|
},
|
|
2216
2222
|
input: {
|
|
2217
2223
|
padding: "0 !important",
|
|
2218
|
-
margin: "0 !important"
|
|
2224
|
+
margin: "0 !important",
|
|
2225
|
+
borderWidth: "0 !important"
|
|
2219
2226
|
},
|
|
2220
2227
|
content: {
|
|
2221
2228
|
maxHeight: "300px",
|
|
@@ -3016,8 +3023,7 @@ var calendarPanelRangeRecipe = (0, import_dev33.defineRecipe)({
|
|
|
3016
3023
|
className: "calendarPanelRange",
|
|
3017
3024
|
base: {
|
|
3018
3025
|
display: "grid",
|
|
3019
|
-
|
|
3020
|
-
gridTemplateColumns: "2"
|
|
3026
|
+
gridTemplateColumns: "repeat(2, 1fr)"
|
|
3021
3027
|
}
|
|
3022
3028
|
});
|
|
3023
3029
|
var tableDateSlotRecipe = (0, import_dev33.defineSlotRecipe)({
|
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
|
|
@@ -2045,7 +2051,7 @@ var progressSlotRecipe = defineSlotRecipe10({
|
|
|
2045
2051
|
top: "50%",
|
|
2046
2052
|
left: "50%",
|
|
2047
2053
|
transform: "translate(-50%, -50%)",
|
|
2048
|
-
backgroundColor: "
|
|
2054
|
+
backgroundColor: "var(--mp-progress-bg-color)",
|
|
2049
2055
|
borderRadius: "full"
|
|
2050
2056
|
}
|
|
2051
2057
|
},
|
|
@@ -2189,7 +2195,8 @@ var inputTagSlotRecipe = defineSlotRecipe12({
|
|
|
2189
2195
|
},
|
|
2190
2196
|
input: {
|
|
2191
2197
|
padding: "0 !important",
|
|
2192
|
-
margin: "0 !important"
|
|
2198
|
+
margin: "0 !important",
|
|
2199
|
+
borderWidth: "0 !important"
|
|
2193
2200
|
},
|
|
2194
2201
|
content: {
|
|
2195
2202
|
maxHeight: "300px",
|
|
@@ -2990,8 +2997,7 @@ var calendarPanelRangeRecipe = defineRecipe13({
|
|
|
2990
2997
|
className: "calendarPanelRange",
|
|
2991
2998
|
base: {
|
|
2992
2999
|
display: "grid",
|
|
2993
|
-
|
|
2994
|
-
gridTemplateColumns: "2"
|
|
3000
|
+
gridTemplateColumns: "repeat(2, 1fr)"
|
|
2995
3001
|
}
|
|
2996
3002
|
});
|
|
2997
3003
|
var tableDateSlotRecipe = defineSlotRecipe20({
|
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-tag.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 }
|
package/src/recipes/progress.ts
CHANGED