@nimbus-ds/sidebar 2.1.0 → 2.1.1-rc.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
@@ -2,11 +2,17 @@
2
2
 
3
3
  The Sidebar component is a large floating container that goes into the page from the corners. It allows us to present actions, forms or sections with a lot of information about the context of the page.
4
4
 
5
+ ## 2023-02-24 `2.1.1`
6
+
7
+ ### 💡 Others
8
+
9
+ - Adjust `fontSize` and `lineHeight` properties in `Text` component on stories documentation. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
10
+
5
11
  ## 2023-02-23 `2.1.0`
6
12
 
7
13
  ### 🎉 New features
8
14
 
9
- - Added server side-rendering support to component. ([#99](https://github.com/TiendaNube/nimbus-design-system/pull/99) by [@juniorconquista](https://github.com/juniorconquista))
15
+ - Added server side-rendering support to component. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
10
16
 
11
17
  ## 2022-12-22 `2.0.0`
12
18
 
package/dist/index.d.ts CHANGED
@@ -7,6 +7,7 @@ export interface Conditions<T> {
7
7
  xs?: T;
8
8
  md?: T;
9
9
  lg?: T;
10
+ xl?: T;
10
11
  }
11
12
  declare const sidebarSprinkle: {
12
13
  sprinkle: import("rainbow-sprinkles/dist/declarations/src/createRuntimeFn").SprinklesFn<[
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimbus-ds/sidebar",
3
- "version": "2.1.0",
3
+ "version": "2.1.1-rc.1",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@floating-ui/react-dom-interactions": "^0.10.1",
18
- "@nimbus-ds/title": "^2.1.0"
18
+ "@nimbus-ds/title": "^2.2.0-rc.1"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "react": "^16.8 || ^17.0 || ^18.0",
@@ -30,9 +30,10 @@
30
30
  "url": "https://github.com/TiendaNube/nimbus-design-system/issues"
31
31
  },
32
32
  "devDependencies": {
33
- "@nimbus-ds/box": "^2.6.0",
33
+ "@nimbus-ds/box": "^2.7.0-rc.1",
34
34
  "@nimbus-ds/button": "^2.4.0",
35
- "@nimbus-ds/text": "^5.1.0",
35
+ "@nimbus-ds/text": "^5.2.0-rc.1",
36
36
  "webpack": "^5.74.0"
37
- }
37
+ },
38
+ "stableVersion": "2.1.0"
38
39
  }