@paprika/uploader 4.0.0-next.3 → 4.0.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 +42 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - da0d2bc: - Replaced `defaultIsDisabled` prop by `isDisabled` prop
8
+
9
+ - Added `zIndex` prop
10
+
11
+ #### why the change was made:
12
+
13
+ `defaultIsDisabled` can't be changed once mount.
14
+
15
+ #### 👷 Moving from 3.x.x to 4.x.x:
16
+
17
+ If you didn't use `defaultIsDisabled`, you don't need to do anything. Otherwise:
18
+
19
+ Before:
20
+
21
+ ```jsx
22
+ <Uploader defaultIsDisabled={true} />
23
+ ```
24
+
25
+ After:
26
+
27
+ ```jsx
28
+ <Uploader isDisabled={true} />
29
+ ```
30
+
31
+ ### Patch Changes
32
+
33
+ - Updated dependencies [0dcf307]
34
+ - Updated dependencies [0bf34d9]
35
+ - Updated dependencies [0dcf307]
36
+ - Updated dependencies [9ac6aca]
37
+ - @paprika/popover@2.0.4
38
+ - @paprika/helpers@2.3.0
39
+ - @paprika/tokens@2.0.0
40
+ - @paprika/button@1.1.12
41
+ - @paprika/icon@2.1.7
42
+ - @paprika/raw-button@1.0.12
43
+ - @paprika/stylers@1.1.6
44
+
3
45
  ## 4.0.0-next.3
4
46
 
5
47
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paprika/uploader",
3
- "version": "4.0.0-next.3",
3
+ "version": "4.0.0",
4
4
  "description": "The Uploader component lets you upload files and see progress.",
5
5
  "author": "@paprika",
6
6
  "main": "lib/index.js",
@@ -16,13 +16,13 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@babel/runtime-corejs2": "^7.3.1",
19
- "@paprika/button": "^1.1.12-next.2",
20
- "@paprika/helpers": "^2.3.0-next.0",
21
- "@paprika/icon": "^2.1.7-next.1",
22
- "@paprika/popover": "^2.0.4-next.2",
23
- "@paprika/raw-button": "^1.0.12-next.1",
24
- "@paprika/stylers": "^1.1.6-next.1",
25
- "@paprika/tokens": "^2.0.0-next.1",
19
+ "@paprika/button": "^1.1.12",
20
+ "@paprika/helpers": "^2.3.0",
21
+ "@paprika/icon": "^2.1.7",
22
+ "@paprika/popover": "^2.0.4",
23
+ "@paprika/raw-button": "^1.0.12",
24
+ "@paprika/stylers": "^1.1.6",
25
+ "@paprika/tokens": "^2.0.0",
26
26
  "prop-types": "^15.7.2",
27
27
  "superagent": "^5.1.0",
28
28
  "uuid": "^8.3.2"