@nimbus-ds/file-uploader 2.1.0 → 2.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/package.json +5 -5
package/CHANGELOG.md ADDED
@@ -0,0 +1,49 @@
1
+ # Changelog
2
+
3
+ The File Uploader component is used to upload files.
4
+
5
+ ## 2022-12-22 `2.0.0`
6
+
7
+ ### 💡 Others
8
+
9
+ - Removed direct dependency on `nimbus-ds/styles` package from component build. ([#69](https://github.com/TiendaNube/nimbus-design-system/pull/69) by [@juniorconquista](https://github.com/juniorconquista))
10
+
11
+ ## 2022-12-07 `1.2.0`
12
+
13
+ ### 🎉 New features
14
+
15
+ - Changed build build to consume inner package `@nimbus-ds/webpack`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
16
+
17
+ ### 📚 3rd party library updates
18
+
19
+ - Removed `@vanilla-extract/webpack-plugin@2.1.11`. ([#21](https://github.com/TiendaNube/nimbus-design-system/pull/21) by [@juniorconquista](https://github.com/juniorconquista))
20
+ - Removed `terser-webpack-plugin@5.3.5`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
21
+ - Removed `ts-loader@9.3.1`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
22
+ - Removed `webpack-cli@4.10.0`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
23
+ - Removed `typescript@4.7.4`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
24
+
25
+ ## 2022-11-18 `1.1.0`
26
+
27
+ ### 📚 3rd party library updates
28
+
29
+ - Updated `@tiendanube/icons@0.3.1`. ([#57](https://github.com/TiendaNube/nimbus-design-system/pull/#57) by [@juniorconquista](https://github.com/juniorconquista))
30
+
31
+ ## 2022-10-28 `1.0.0`
32
+
33
+ ### 📚 3rd party library updates
34
+
35
+ - Added `@vanilla-extract/dynamic@2.0.2`. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
36
+ - Added `@vanilla-extract/webpack-plugin@2.1.11`. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
37
+ - Added `terser-webpack-plugin@5.3.5`. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
38
+ - Added `ts-loader@9.3.1`. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
39
+ - Added `typescript@4.7.4`. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
40
+ - Added `webpack@5.74.0`. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
41
+ - Added `webpack-cli@4.10.0`. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
42
+
43
+ ### 🎉 New features
44
+
45
+ - Added `children`, `aspectRatio`, `width`, `placeholder`, `accept`, `height` and `flexDirection` properties to the Component. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
46
+ - Added stories on Component. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
47
+ - Created new `FileUploader.Skeleton` subcomponent. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
48
+ - Added `width`, `aspectRatio` and `height` properties to the Component `FileUploader.Skeleton`. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
49
+ - Added stories on Component `FileUploader.Skeleton`. ([#51](https://github.com/TiendaNube/nimbus-design-system/pull/51) by [@juniorconquista](https://github.com/juniorconquista))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimbus-ds/file-uploader",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -14,9 +14,9 @@
14
14
  "version": "yarn version"
15
15
  },
16
16
  "dependencies": {
17
- "@nimbus-ds/icon": "workspace:^",
18
- "@nimbus-ds/skeleton": "workspace:^",
19
- "@nimbus-ds/text": "workspace:^",
17
+ "@nimbus-ds/icon": "^2.0.0",
18
+ "@nimbus-ds/skeleton": "^2.0.0",
19
+ "@nimbus-ds/text": "^5.0.0",
20
20
  "@tiendanube/icons": "^0.3.1"
21
21
  },
22
22
  "peerDependencies": {
@@ -35,4 +35,4 @@
35
35
  "@vanilla-extract/dynamic": "^2.0.2",
36
36
  "webpack": "^5.74.0"
37
37
  }
38
- }
38
+ }