jedison 0.2.3 → 0.3.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
@@ -1,3 +1,12 @@
1
+ ### 0.3.1
2
+
3
+ - Fixed "x-format": "table" naming
4
+
5
+ ### 0.3.0
6
+
7
+ - Fixed trailing 0 in number inputs
8
+ - Array "x-format": "table" (generic) and "x-format": "table-object" (objects items specific)
9
+
1
10
  ### 0.2.3
2
11
 
3
12
  - Fixed array table issue with ref parser
package/README.md CHANGED
@@ -75,11 +75,11 @@ yarn add jedison
75
75
  ### Using fromCDN
76
76
 
77
77
  ```html
78
- <div id="jedison-container"></div>
78
+ <script src="https://cdn.jsdelivr.net/npm/jedison@latest/dist/umd/jedison.umd.js"></script>
79
79
 
80
- <script type="module">
81
- import Jedison from 'jedison'
80
+ <div id="jedison-container"></div>
82
81
 
82
+ <script>
83
83
  const jedison = new Jedison.Create({
84
84
  container: document.querySelector('#jedison-container'),
85
85
  theme: new Jedison.Theme(),