@nimbus-ds/table 1.2.0 → 1.2.1-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 +7 -1
- package/dist/index.d.ts +1 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
The Table component allows us to organize data with a tabular structure in a table.
|
|
4
4
|
|
|
5
|
+
## 2023-02-24 `1.2.1`
|
|
6
|
+
|
|
7
|
+
### 🐛 Bug fixes
|
|
8
|
+
|
|
9
|
+
- Fixed a bug where `rest` condition selector sprinkle would not work. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
|
|
10
|
+
|
|
5
11
|
## 2023-02-23 `1.2.0`
|
|
6
12
|
|
|
7
13
|
### 🎉 New features
|
|
8
14
|
|
|
9
|
-
- Added server side-rendering support to component. ([#
|
|
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
|
## 2023-01-15 `1.1.0`
|
|
12
18
|
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/table",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1-rc.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -27,5 +27,6 @@
|
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"webpack": "^5.74.0"
|
|
30
|
-
}
|
|
30
|
+
},
|
|
31
|
+
"stableVersion": "1.2.0"
|
|
31
32
|
}
|