@mekari/pixel3-theme 0.0.9-dev.1 → 0.0.9-dev.2
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 +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
- package/src/recipes/date-picker.ts +1 -2
- package/src/recipes/input-tag.ts +1 -0
- package/src/recipes/progress.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -2071,7 +2071,7 @@ var progressSlotRecipe = (0, import_dev22.defineSlotRecipe)({
|
|
|
2071
2071
|
top: "50%",
|
|
2072
2072
|
left: "50%",
|
|
2073
2073
|
transform: "translate(-50%, -50%)",
|
|
2074
|
-
backgroundColor: "
|
|
2074
|
+
backgroundColor: "var(--mp-progress-bg-color)",
|
|
2075
2075
|
borderRadius: "full"
|
|
2076
2076
|
}
|
|
2077
2077
|
},
|
|
@@ -2215,7 +2215,8 @@ var inputTagSlotRecipe = (0, import_dev24.defineSlotRecipe)({
|
|
|
2215
2215
|
},
|
|
2216
2216
|
input: {
|
|
2217
2217
|
padding: "0 !important",
|
|
2218
|
-
margin: "0 !important"
|
|
2218
|
+
margin: "0 !important",
|
|
2219
|
+
borderWidth: "0 !important"
|
|
2219
2220
|
},
|
|
2220
2221
|
content: {
|
|
2221
2222
|
maxHeight: "300px",
|
|
@@ -3016,8 +3017,7 @@ var calendarPanelRangeRecipe = (0, import_dev33.defineRecipe)({
|
|
|
3016
3017
|
className: "calendarPanelRange",
|
|
3017
3018
|
base: {
|
|
3018
3019
|
display: "grid",
|
|
3019
|
-
|
|
3020
|
-
gridTemplateColumns: "2"
|
|
3020
|
+
gridTemplateColumns: "repeat(2, 1fr)"
|
|
3021
3021
|
}
|
|
3022
3022
|
});
|
|
3023
3023
|
var tableDateSlotRecipe = (0, import_dev33.defineSlotRecipe)({
|
package/dist/index.mjs
CHANGED
|
@@ -2045,7 +2045,7 @@ var progressSlotRecipe = defineSlotRecipe10({
|
|
|
2045
2045
|
top: "50%",
|
|
2046
2046
|
left: "50%",
|
|
2047
2047
|
transform: "translate(-50%, -50%)",
|
|
2048
|
-
backgroundColor: "
|
|
2048
|
+
backgroundColor: "var(--mp-progress-bg-color)",
|
|
2049
2049
|
borderRadius: "full"
|
|
2050
2050
|
}
|
|
2051
2051
|
},
|
|
@@ -2189,7 +2189,8 @@ var inputTagSlotRecipe = defineSlotRecipe12({
|
|
|
2189
2189
|
},
|
|
2190
2190
|
input: {
|
|
2191
2191
|
padding: "0 !important",
|
|
2192
|
-
margin: "0 !important"
|
|
2192
|
+
margin: "0 !important",
|
|
2193
|
+
borderWidth: "0 !important"
|
|
2193
2194
|
},
|
|
2194
2195
|
content: {
|
|
2195
2196
|
maxHeight: "300px",
|
|
@@ -2990,8 +2991,7 @@ var calendarPanelRangeRecipe = defineRecipe13({
|
|
|
2990
2991
|
className: "calendarPanelRange",
|
|
2991
2992
|
base: {
|
|
2992
2993
|
display: "grid",
|
|
2993
|
-
|
|
2994
|
-
gridTemplateColumns: "2"
|
|
2994
|
+
gridTemplateColumns: "repeat(2, 1fr)"
|
|
2995
2995
|
}
|
|
2996
2996
|
});
|
|
2997
2997
|
var tableDateSlotRecipe = defineSlotRecipe20({
|
package/package.json
CHANGED
package/src/recipes/input-tag.ts
CHANGED
package/src/recipes/progress.ts
CHANGED