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

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,12 @@
1
1
  # @mekari/pixel3-styled-system
2
2
 
3
+ ## 0.0.11-dev.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 503602d: - Update styled system
8
+ - 33bc859: - Updated recipe for `MpInput`.
9
+
3
10
  ## 0.0.10
4
11
 
5
12
  ### 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.10",
4
+ "version": "0.0.11-dev.0",
5
5
  "type": "module",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -16,7 +16,7 @@ export type AutocompleteSlotRecipeVariantProps = {
16
16
 
17
17
  export interface AutocompleteSlotRecipeRecipe {
18
18
  __type: AutocompleteSlotRecipeVariantProps
19
- (props?: AutocompleteSlotRecipeVariantProps): Pretty<Record<"groupText" | "popoverContent" | "buttonAction" | "emptyText" | "contentLoading", string>>
19
+ (props?: AutocompleteSlotRecipeVariantProps): Pretty<Record<"groupText" | "popoverContent" | "buttonAction" | "emptyText" | "contentLoading" | "input", string>>
20
20
  raw: (props?: AutocompleteSlotRecipeVariantProps) => AutocompleteSlotRecipeVariantProps
21
21
  variantMap: AutocompleteSlotRecipeVariantMap
22
22
  variantKeys: Array<keyof AutocompleteSlotRecipeVariant>
@@ -24,6 +24,10 @@ const autocompleteSlotRecipeSlotNames = [
24
24
  [
25
25
  "contentLoading",
26
26
  "autocomplete__contentLoading"
27
+ ],
28
+ [
29
+ "input",
30
+ "autocomplete__input"
27
31
  ]
28
32
  ]
29
33
  const autocompleteSlotRecipeSlotFns = /* @__PURE__ */ autocompleteSlotRecipeSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, autocompleteSlotRecipeDefaultVariants, getSlotCompoundVariant(autocompleteSlotRecipeCompoundVariants, slotName))])