@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 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: "white",
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
- gap: 4,
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: "white",
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
- gap: 4,
2994
- gridTemplateColumns: "2"
2994
+ gridTemplateColumns: "repeat(2, 1fr)"
2995
2995
  }
2996
2996
  });
2997
2997
  var tableDateSlotRecipe = defineSlotRecipe20({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mekari/pixel3-theme",
3
3
  "description": "Theme for mekari pixel 3",
4
- "version": "0.0.9-dev.1",
4
+ "version": "0.0.9-dev.2",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -20,8 +20,7 @@ const calendarPanelRangeRecipe = defineRecipe({
20
20
  className: 'calendarPanelRange',
21
21
  base: {
22
22
  display: 'grid',
23
- gap: 4,
24
- gridTemplateColumns: '2'
23
+ gridTemplateColumns: 'repeat(2, 1fr)'
25
24
  }
26
25
  })
27
26
 
@@ -64,6 +64,7 @@ const inputTagSlotRecipe = defineSlotRecipe({
64
64
  input: {
65
65
  padding: '0 !important',
66
66
  margin: '0 !important',
67
+ borderWidth: '0 !important',
67
68
  },
68
69
  content: {
69
70
  maxHeight: '300px',
@@ -33,7 +33,7 @@ const progressSlotRecipe = defineSlotRecipe({
33
33
  top: '50%',
34
34
  left: '50%',
35
35
  transform: 'translate(-50%, -50%)',
36
- backgroundColor: 'white',
36
+ backgroundColor: 'var(--mp-progress-bg-color)',
37
37
  borderRadius: 'full'
38
38
  }
39
39
  },