@formio/js 5.0.0-dev.5950.723a551 → 5.0.0-dev.5951.84e7c13

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/README.md CHANGED
@@ -6,7 +6,34 @@ This library is a plain JavaScript form renderer and SDK for Form.io. This allow
6
6
  - Complete Form Builder which creates the JSON schema used to render the forms.
7
7
  - Nested components, layouts, Date/Time, Select, Input Masks, and many more included features
8
8
  - Full JavaScript API SDK library on top of Form.io
9
-
9
+
10
+ ## Important Updates
11
+
12
+ ### Namespace Change
13
+
14
+ Starting with version 5.x, this library has moved to a new namespace. Please update your npm install command as follows:
15
+
16
+ `npm install --save @formio/js`
17
+
18
+ If you are upgrading from version 4.x, please ensure you update your imports and dependencies to use the new namespace @formio/js.
19
+
20
+ ### CDN update
21
+
22
+ Our cdn endpoints also reflect the changes to the new namespace when retrieving versions >4.x:
23
+
24
+ Example:
25
+ - https://cdn.form.io/js/formio.full.min.js
26
+ - https://cdn.form.io/js/5.0.0/formio.full.min.js
27
+
28
+ ### Maintenance Mode for Version 4.x
29
+
30
+ Version 4.x of this library is now in maintenance mode. This means:
31
+
32
+ - No new features will be added to version 4.x.
33
+ - Only bug fixes and security updates will be provided.
34
+
35
+ For the latest features and improvements, we strongly recommend upgrading to version 5.x.
36
+
10
37
  ## Examples and Demonstration
11
38
  To find out more about this library as well as see a demonstration of what you can do with this library, go to the Examples and Demo site @ [https://formio.github.io/formio.js](https://formio.github.io/formio.js)
12
39