jedison 0.3.22 → 0.3.23
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 +4 -0
- package/README.md +45 -2
- package/dist/cjs/jedison.cjs +1 -1
- package/dist/cjs/jedison.cjs.map +1 -1
- package/dist/esm/jedison.js +1 -1
- package/dist/esm/jedison.js.map +1 -1
- package/dist/umd/jedison.umd.js +1 -1
- package/dist/umd/jedison.umd.js.map +1 -1
- package/package.json +12 -10
package/dist/esm/jedison.js
CHANGED
|
@@ -4308,7 +4308,6 @@ class EditorArrayNav extends EditorArray {
|
|
|
4308
4308
|
this.addJsonDataEventListeners();
|
|
4309
4309
|
}
|
|
4310
4310
|
refreshUI() {
|
|
4311
|
-
this.refreshDisabledState();
|
|
4312
4311
|
this.control.childrenSlot.innerHTML = "";
|
|
4313
4312
|
this.clearStoredEventListeners();
|
|
4314
4313
|
const format2 = getSchemaXOption(this.instance.schema, "format");
|
|
@@ -4382,6 +4381,7 @@ class EditorArrayNav extends EditorArray {
|
|
|
4382
4381
|
moveDownBtn.setAttribute("disabled", "");
|
|
4383
4382
|
}
|
|
4384
4383
|
});
|
|
4384
|
+
this.refreshDisabledState();
|
|
4385
4385
|
this.refreshAddBtn();
|
|
4386
4386
|
this.refreshJsonData();
|
|
4387
4387
|
}
|