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

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,18 @@
1
1
  # @mekari/pixel3-styled-system
2
2
 
3
+ ## 0.0.11-dev.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 903caf8: - Update `MpDivider` recipe
8
+
9
+ ## 0.0.11-dev.0
10
+
11
+ ### Patch Changes
12
+
13
+ - 503602d: - Update styled system
14
+ - 33bc859: - Updated recipe for `MpInput`.
15
+
3
16
  ## 0.0.10
4
17
 
5
18
  ### 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.1",
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))])
@@ -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"