@stokelp/styled-system 2.56.0 → 2.57.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.56.0",
3
+ "version": "2.57.0",
4
4
  "description": "Stokelp UI styled-system",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -300,6 +300,7 @@
300
300
  ],
301
301
  "tabsChip": [
302
302
  "colorScheme]___[value:neutral]___[recipe:tabsChip",
303
+ "colorScheme]___[value:info]___[recipe:tabsChip",
303
304
  "colorScheme]___[value:success]___[recipe:tabsChip",
304
305
  "colorScheme]___[value:warning]___[recipe:tabsChip",
305
306
  "colorScheme]___[value:error]___[recipe:tabsChip",
@@ -6,7 +6,7 @@ interface TabsChipVariant {
6
6
  /**
7
7
  * @default "neutral"
8
8
  */
9
- colorScheme: "neutral" | "success" | "warning" | "error" | "grey"
9
+ colorScheme: "neutral" | "info" | "success" | "warning" | "error" | "grey"
10
10
  }
11
11
 
12
12
  type TabsChipVariantMap = {
@@ -8,6 +8,7 @@ const tabsChipFn = /* @__PURE__ */ createRecipe('tabs-chip', {
8
8
  const tabsChipVariantMap = {
9
9
  "colorScheme": [
10
10
  "neutral",
11
+ "info",
11
12
  "success",
12
13
  "warning",
13
14
  "error",