@wibetter/json-editor 5.1.21 → 5.1.22
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 +1 -1
- package/lib/index.css +2 -2
- package/lib/index.js +2 -2
- package/package.json +1 -1
- package/sdk/index.css +1 -1
- package/sdk/index.js +2955 -1666
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ React/Mobx/Ant Design
|
|
|
17
17
|
codearea、htmlarea、text-editor([使用说明](https://github.com/wibetter/json-editor/blob/master/docs/TextEditor.md))、quantity、box-style、padding-margin)
|
|
18
18
|
5. 支持json转schema能力,当schemaData为空而jsonData不为空时,自动通过json转换一个对应的schemaData
|
|
19
19
|
6. 支持通过表达式设置数据联动(支持两种数据域:全局数据域、当前局部数据域)
|
|
20
|
-
7.
|
|
20
|
+
7. 支持源码模式切换(开启源码模式后可以开启编辑模式)
|
|
21
21
|
|
|
22
22
|
***
|
|
23
23
|
|
package/lib/index.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @wibetter/json-editor v5.1.
|
|
2
|
+
* @wibetter/json-editor v5.1.21
|
|
3
3
|
* author: wibetter
|
|
4
4
|
* build tool: AKFun
|
|
5
|
-
* build time: Thu Jan 23 2025 18:
|
|
5
|
+
* build time: Thu Jan 23 2025 18:52:03 GMT+0800 (中国标准时间)
|
|
6
6
|
* build tool info: https://github.com/wibetter/akfun
|
|
7
7
|
*/
|
|
8
8
|
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
package/lib/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @wibetter/json-editor v5.1.
|
|
2
|
+
* @wibetter/json-editor v5.1.21
|
|
3
3
|
* author: wibetter
|
|
4
4
|
* build tool: AKFun
|
|
5
|
-
* build time: Thu Jan 23 2025 18:
|
|
5
|
+
* build time: Thu Jan 23 2025 18:52:03 GMT+0800 (中国标准时间)
|
|
6
6
|
* build tool info: https://github.com/wibetter/akfun
|
|
7
7
|
*/
|
|
8
8
|
(function webpackUniversalModuleDefinition(root, factory) {
|
package/package.json
CHANGED
package/sdk/index.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @wibetter/json-editor v5.1.21
|
|
3
3
|
* author: wibetter
|
|
4
4
|
* build tool: AKFun
|
|
5
|
-
* build time: Thu Jan 23 2025 18:
|
|
5
|
+
* build time: Thu Jan 23 2025 18:52:13 GMT+0800 (中国标准时间)
|
|
6
6
|
* build tool info: https://github.com/wibetter/akfun
|
|
7
7
|
*/
|
|
8
8
|
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|