@nethru/ui 1.0.77 → 1.0.79
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/dist/Section.js +6 -3
- package/dist/{Editor.js → editor/Editor.js} +17 -6
- package/dist/editor/nScript.js +274 -0
- package/dist/editor/nScriptKeywords.js +2925 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ export { default as ConfirmDialog } from "./ConfirmDialog";
|
|
|
13
13
|
export { default as DataGrid } from "./DataGrid";
|
|
14
14
|
export { default as Dialog } from "./Dialog";
|
|
15
15
|
export { default as DropdownButton } from "./DropdownButton";
|
|
16
|
-
export { default as Editor } from "./Editor";
|
|
16
|
+
export { default as Editor } from "./editor/Editor";
|
|
17
17
|
export { default as FormLabel } from "./FormLabel";
|
|
18
18
|
export { default as Frame } from "./Frame";
|
|
19
19
|
export { default as GroupSelect } from "./GroupSelect";
|