@htmlbricks/hb-table 0.66.26 → 0.67.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 +5 -4
- package/main.iife.js +134 -254
- package/main.iife.js.map +1 -1
- package/manifest.json +161 -6
- package/package.json +2 -2
- package/types/webcomponent.type.d.json +1 -1
- package/types/webcomponent.type.d.ts +2 -2
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
### What it does
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Bulma-styled data table driven by JSON `headers` and `rows` (`_id` required): column sort, header search (text, enum, date range), formatted values (nested keys, datetime via dayjs), copy-to-clipboard, row highlight and `selectrow` clicks. Global `actions` and per-row `_actions` can open confirm or schema dialogs (`hb-dialog` / `hb-dialogform`). Optional multi-select with `selectactions`, `add_item` slot, and `hb-paginate` for page size, sort sync, and server-style `externalfilter` / `total` workflows.
|
|
9
9
|
|
|
10
|
-
While **`is_loading`** is enabled, the tbody shows
|
|
10
|
+
While **`is_loading`** is enabled, the tbody shows **Bulma skeleton** rows (`skeleton-lines`, **`checkbox.is-skeleton`**, **`button.is-skeleton`**; count follows **`size`**, capped at 100). **`hb-paginate`** stays mounted but is hidden; a single **`skeleton-block`** covers the pagination area so **`page` / `pages`** stay in sync. Optional on the host: **`--hb-table-sk-pagination-height`**, **`--hb-table-sk-pagination-min-width`** (default `min(28rem, 100%)`), **`--hb-table-sk-pagination-offset-inline-end`** (extra end margin while loading, nudges skeleton inward; default `0.65rem`). i18n via `i18nlang`.
|
|
11
11
|
|
|
12
12
|
### Custom element
|
|
13
13
|
|
|
@@ -33,7 +33,7 @@ While **`is_loading`** is enabled, the tbody shows Bootstrap **placeholder** ske
|
|
|
33
33
|
- `disable_paginate_sort` (optional): boolean string.
|
|
34
34
|
- `sort_strict_direction` (optional): boolean string.
|
|
35
35
|
- `sort_direction` (optional): string — current sort direction.
|
|
36
|
-
- **`is_loading` (optional):** boolean string (`"yes"` / `"true"`) or boolean in frameworks —
|
|
36
|
+
- **`is_loading` (optional):** boolean string (`"yes"` / `"true"`) or boolean in frameworks — Bulma skeleton rows in the tbody (row count = `size`) and one **`skeleton-block`** over hidden **`hb-paginate`**.
|
|
37
37
|
|
|
38
38
|
### Actions (`actions` and `_actions`)
|
|
39
39
|
|
|
@@ -101,8 +101,9 @@ Set **`add_item`** to `"yes"` / `"true"` (or boolean `true` in frameworks) to sh
|
|
|
101
101
|
|
|
102
102
|
- **Slots:** `add-button-content` (Add button body), `buttons-container` (extra toolbar content).
|
|
103
103
|
- **CSS parts:** `table`, `table-actions`, `selected-row`, `common-row`.
|
|
104
|
+
- **Toolbar:** multi-select **settings** (gear) button has **`margin-inline-start`** from **`--hb-table-toolbar-settings-margin-inline-start`** (default `--bulma-block-spacing`) so it sits slightly right of the toolbar start.
|
|
104
105
|
- **i18n:** Italian and English in docs metadata; set `i18nlang` accordingly.
|
|
105
|
-
- **`hb-paginate`:** embedded when pagination is enabled
|
|
106
|
+
- **`hb-paginate`:** embedded when pagination is enabled; while **`is_loading`**, it stays in the DOM (hidden) under the skeleton overlay so props stay aligned — user interaction is blocked until loading ends.
|
|
106
107
|
- **Pagination while loading:** `is_loading` does not recalculate `page` / `pages` by itself. With **client-side** pagination, if you clear `rows` during a refresh, the `$effect` that derives `pages` from row count does not run on an empty list, so **`pages` can stay at the previous value** until new rows arrive — keep `page`, `pages`, and `total` aligned with your API if needed.
|
|
107
108
|
- See `extra/docs.ts` for Storybook-style examples.
|
|
108
109
|
|