@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 CHANGED
@@ -453,8 +453,8 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
453
453
  },
454
454
  ghost: {
455
455
  color: "gray.600",
456
- background: "white",
457
- borderColor: "white",
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: "white"
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: "white",
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: "white",
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
- gap: 4,
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: "white",
431
- borderColor: "white",
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: "white"
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: "white",
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: "white",
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
- gap: 4,
2994
- gridTemplateColumns: "2"
3000
+ gridTemplateColumns: "repeat(2, 1fr)"
2995
3001
  }
2996
3002
  });
2997
3003
  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.3",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -66,8 +66,8 @@ const buttonRecipe = defineRecipe({
66
66
  },
67
67
  ghost: {
68
68
  color: 'gray.600',
69
- background: 'white',
70
- borderColor: 'white',
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: 'white'
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: 'white',
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({
@@ -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
 
@@ -27,5 +27,7 @@ export const iconRecipe = defineRecipe({
27
27
  },
28
28
  defaultVariants: {
29
29
  size: 'md'
30
- }
30
+ },
31
+ // TODO: Check why this recipe need to generate statically
32
+ staticCss: ['*']
31
33
  })
@@ -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',
@@ -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 }
@@ -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
  },