@mekari/pixel3-styled-system 0.0.11-dev.0 → 0.0.11

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @mekari/pixel3-styled-system
2
2
 
3
+ ## 0.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 903caf8: - Update `MpDivider` recipe
8
+ - 503602d: - Update styled system
9
+ - 33bc859: - Updated recipe for `MpInput`.
10
+
11
+ ## 0.0.11-dev.1
12
+
13
+ ### Patch Changes
14
+
15
+ - 903caf8: - Update `MpDivider` recipe
16
+
3
17
  ## 0.0.11-dev.0
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mekari/pixel3-styled-system",
3
3
  "description": "This package is auto-generated by Panda CSS",
4
- "version": "0.0.11-dev.0",
4
+ "version": "0.0.11",
5
5
  "type": "module",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -3,7 +3,8 @@ import type { ConditionalValue } from '../types/index';
3
3
  import type { DistributiveOmit, Pretty } from '../types/system-types';
4
4
 
5
5
  interface DividerRecipeVariant {
6
- orientation: "horizontal" | "vertical"
6
+ variant: "solid" | "dashed"
7
+ orientation: "horizontal" | "vertical"
7
8
  }
8
9
 
9
10
  type DividerRecipeVariantMap = {
@@ -6,6 +6,10 @@ const dividerRecipeFn = /* @__PURE__ */ createRecipe('divider', {
6
6
  }, [])
7
7
 
8
8
  const dividerRecipeVariantMap = {
9
+ "variant": [
10
+ "solid",
11
+ "dashed"
12
+ ],
9
13
  "orientation": [
10
14
  "horizontal",
11
15
  "vertical"