skyflow-js 1.34.1 → 1.34.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 +8 -0
- package/README.md +2 -0
- package/dist/sdkNodeBuild/index.js +1 -1
- package/dist/sdkNodeBuild/index.js.gz +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.34.1] - 2024-01-10
|
|
6
|
+
### Added
|
|
7
|
+
- File name validations in file upload
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Invalid styles applied on expiry date and expiry month on initial render
|
|
11
|
+
- Custom validation error text overridden by required error text on empty values.
|
|
12
|
+
|
|
5
13
|
## [1.34.0] - 2023-12-15
|
|
6
14
|
### Added
|
|
7
15
|
- Ability to update Collect and Reveal element properties dynamically.
|
package/README.md
CHANGED
|
@@ -2708,6 +2708,8 @@ collectContainer.uploadFiles();
|
|
|
2708
2708
|
}
|
|
2709
2709
|
```
|
|
2710
2710
|
|
|
2711
|
+
Note: File name should contain only alphanumeric characters and !-_.*()
|
|
2712
|
+
|
|
2711
2713
|
## Render a file with a File Element
|
|
2712
2714
|
|
|
2713
2715
|
You can render files using the Skyflow File Element. Use the following steps to securely render a file.
|