jedison 0.1.1 → 0.2.1

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 CHANGED
@@ -0,0 +1,9 @@
1
+ ### 0.2.1
2
+
3
+ - Fixed issue with table array
4
+ - Fixed fontawesome 3 missing button
5
+
6
+ ### 0.2.0
7
+
8
+ - Added option `'constraints'` to add custom constraints (validators)
9
+ - Added type property to error messages `'error'` | `'warning'`
package/README.md CHANGED
@@ -4,7 +4,13 @@
4
4
 
5
5
  Generates forms from JSON schemas. Can be used in backend to validate JSON data too.
6
6
 
7
- Check Out the [PLAYGROUND](https://germanbisurgi.github.io/jedison/index.html?theme=bootstrap5)
7
+ ## 🚀 Quick Links
8
+
9
+ 🎮 **[Playground](https://germanbisurgi.github.io/jedison/index.html?theme=bootstrap5)**
10
+ Test and experiment with configuration options in a live environment.
11
+
12
+ 📖 **[Documentation](https://germanbisurgi.github.io/jedison-docs/)**
13
+ Learn how to use Jedison with detailed guides and interactive examples.
8
14
 
9
15
  # Table of Contents
10
16
 
@@ -109,6 +115,24 @@ Check Out the [PLAYGROUND](https://germanbisurgi.github.io/jedison/index.html?th
109
115
 
110
116
  ## Getting Started
111
117
 
118
+ ## Install
119
+
120
+ ### Package manager
121
+
122
+ ```bash
123
+ npm install jedison
124
+ ```
125
+
126
+ ```bash
127
+ yarn add jedison
128
+ ```
129
+
130
+ ### CDN
131
+
132
+ ```html
133
+ <script src="https://cdn.jsdelivr.net/npm/jedison@0.1.1/dist/umd/jedison.umd.js"></script>
134
+ ```
135
+
112
136
  ### As a Validator
113
137
 
114
138
  ```javascript
@@ -133,7 +157,6 @@ init()
133
157
  ### As an Editor
134
158
 
135
159
  ```html
136
-
137
160
  <div id="jedison-container"></div>
138
161
  ```
139
162