@stokelp/styled-system 2.65.1 → 2.66.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stokelp/styled-system",
3
- "version": "2.65.1",
3
+ "version": "2.66.0",
4
4
  "description": "Stokelp UI styled-system",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -123,6 +123,13 @@
123
123
  "severity]___[value:danger]___[recipe:iconButton",
124
124
  "severity]___[value:success]___[recipe:iconButton"
125
125
  ],
126
+ "icon": [
127
+ "size]___[value:md]___[recipe:icon",
128
+ "size]___[value:xs]___[recipe:icon",
129
+ "size]___[value:sm]___[recipe:icon",
130
+ "size]___[value:lg]___[recipe:icon",
131
+ "size]___[value:xl]___[recipe:icon"
132
+ ],
126
133
  "priceTag": [
127
134
  "size]___[value:md]___[recipe:priceTag",
128
135
  "size]___[value:sm]___[recipe:priceTag",
@@ -193,13 +200,6 @@
193
200
  ],
194
201
  "collapsible": [],
195
202
  "productCardCatalog": [],
196
- "icon": [
197
- "size]___[value:md]___[recipe:icon",
198
- "size]___[value:xs]___[recipe:icon",
199
- "size]___[value:sm]___[recipe:icon",
200
- "size]___[value:lg]___[recipe:icon",
201
- "size]___[value:xl]___[recipe:icon"
202
- ],
203
203
  "accordion": [
204
204
  "size]___[value:md]___[recipe:accordion"
205
205
  ],
@@ -19,7 +19,7 @@ export type AppNavigationVariantProps = {
19
19
 
20
20
  export interface AppNavigationRecipe {
21
21
  __type: AppNavigationVariantProps
22
- (props?: AppNavigationVariantProps): Pretty<Record<"root" | "header" | "body" | "item" | "itemLabel" | "itemIcon" | "itemContent" | "itemSubItems" | "footer", string>>
22
+ (props?: AppNavigationVariantProps): Pretty<Record<"root" | "header" | "miniaturizeTrigger" | "body" | "item" | "itemLabel" | "itemIcon" | "itemContent" | "itemSubItems" | "footer", string>>
23
23
  raw: (props?: AppNavigationVariantProps) => AppNavigationVariantProps
24
24
  variantMap: AppNavigationVariantMap
25
25
  variantKeys: Array<keyof AppNavigationVariant>
@@ -15,6 +15,10 @@ const appNavigationSlotNames = [
15
15
  "header",
16
16
  "app-navigation__header"
17
17
  ],
18
+ [
19
+ "miniaturizeTrigger",
20
+ "app-navigation__miniaturizeTrigger"
21
+ ],
18
22
  [
19
23
  "body",
20
24
  "app-navigation__body"