@nimbus-ds/box 2.4.0 → 2.5.0-rc.2

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
@@ -2,6 +2,12 @@
2
2
 
3
3
  A low-level utility component that accepts styled system props to enable custom theme-aware styling
4
4
 
5
+ ## 2023-02-10 `2.5.0`
6
+
7
+ ### 🎉 New features
8
+
9
+ - Added `none` as option in `display` sprinkles type. ([#88](https://github.com/TiendaNube/nimbus-design-system/pull/88) by [@juanchigallego](https://github.com/juanchigallego))
10
+
5
11
  ## 2023-02-10 `2.4.0`
6
12
 
7
13
  ### 🎉 New features
package/dist/index.d.ts CHANGED
@@ -37,7 +37,7 @@ export interface Conditions<T> {
37
37
  export type BorderStyle = "solid" | "none" | "hidden" | "dashed" | "dotted";
38
38
  export type BoxSizing = "border-box" | "content-box";
39
39
  export type Cursor = "auto" | "pointer" | "not-allowed" | "grab";
40
- export type Display = "block" | "flex" | "inline-flex" | "grid" | "inline-grid";
40
+ export type Display = "block" | "flex" | "inline-flex" | "grid" | "inline-grid" | "none";
41
41
  export type FlexWrap = "nowrap" | "wrap" | "wrap-reverse";
42
42
  export type FlexDirection = "row" | "row-reverse" | "column" | "column-reverse";
43
43
  export type JustifyContent = "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimbus-ds/box",
3
- "version": "2.4.0",
3
+ "version": "2.5.0-rc.2",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -28,5 +28,6 @@
28
28
  "devDependencies": {
29
29
  "@vanilla-extract/dynamic": "^2.0.2",
30
30
  "webpack": "^5.74.0"
31
- }
31
+ },
32
+ "stableVersion": "2.4.0"
32
33
  }