@yuneta/gobj-ui 2.6.0 → 3.0.0
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 +6 -4
- package/dist/gobj-ui.cjs.js +13034 -15452
- package/dist/gobj-ui.es.js +13036 -15441
- package/index.js +0 -8
- package/package.json +1 -1
- package/src/c_yui_form.css +9 -0
- package/src/c_yui_form.js +1 -0
- package/src/c_yui_shell.css +87 -0
- package/src/c_yui_treedb_topic_with_form.css +53 -0
- package/src/c_yui_treedb_topic_with_form.js +1 -0
- package/src/c_yui_window.css +22 -0
- package/src/c_yui_window.js +2 -0
- package/src/shell_modals.js +54 -22
- package/src/tabulator.css +178 -0
- package/src/yui_toolbar.css +28 -0
- package/src/c_yui_main.css +0 -501
- package/src/c_yui_main.js +0 -1623
- package/src/c_yui_routing.css +0 -18
- package/src/c_yui_routing.js +0 -837
- package/src/c_yui_tabs.js +0 -487
- package/src/themes.js +0 -215
- package/src/ytable.css +0 -63
- package/src/ytable.js +0 -505
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# gobj-ui — Yuneta UI Library
|
|
2
2
|
|
|
3
3
|
Reusable GUI components for Yuneta GClass front-ends: a declarative shell
|
|
4
|
-
(`C_YUI_SHELL`/`NAV`/`PAGER`/`WIZARD`),
|
|
5
|
-
(`
|
|
4
|
+
(`C_YUI_SHELL`/`NAV`/`PAGER`/`WIZARD`), floating windows
|
|
5
|
+
(`C_YUI_WINDOW`/`WINDOW_MANAGER`), TreeDB editors, charts and maps. The
|
|
6
|
+
legacy GClass GUI stack (`C_YUI_MAIN`/`TABS`/`ROUTING`) was removed from
|
|
7
|
+
this line in `3.0.0` — the frozen v1 npm line still ships it.
|
|
6
8
|
|
|
7
9
|
Published as `@yuneta/gobj-ui`. Built on top of [`@yuneta/gobj-js`](https://github.com/artgins/gobj-js).
|
|
8
10
|
|
|
@@ -16,8 +18,8 @@ consumers. They are independent snapshots (no shared git ancestry):
|
|
|
16
18
|
| **v2** | `main` | `2.0.0`+ | `src/` subdir | **wattyzer** | local `file:` dep on the yunetas submodule | active development |
|
|
17
19
|
| **v1** | `v1` | `1.0.0` | `src/` subdir | **estadodelaire**, **hidraulia** | published npm `@yuneta/gobj-ui@^1.0.0` | frozen, maintenance-only |
|
|
18
20
|
|
|
19
|
-
- **v2 / `main`** is the active development line: the declarative shell
|
|
20
|
-
|
|
21
|
+
- **v2 / `main`** is the active development line: the declarative shell
|
|
22
|
+
(legacy-stack-free since `3.0.0`). It is embedded as a git submodule in **yunetas** at
|
|
21
23
|
`kernel/js/gobj-ui`, and **wattyzer** consumes that checkout as a `file:`
|
|
22
24
|
dependency (`@yuneta/gobj-ui` → `../../../yunetas/kernel/js/gobj-ui`),
|
|
23
25
|
importing by package specifier (`@yuneta/gobj-ui/src/*.js`, exports map
|