@uibit/table 0.1.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/LICENSE +21 -0
- package/README.md +25 -0
- package/custom-elements.json +978 -0
- package/dist/frameworks/angular/index.ts +93 -0
- package/dist/frameworks/astro/index.d.ts +10 -0
- package/dist/frameworks/nuxt/index.ts +7 -0
- package/dist/frameworks/preact/index.d.ts +25 -0
- package/dist/frameworks/qwik/index.tsx +10 -0
- package/dist/frameworks/react/index.d.ts +29 -0
- package/dist/frameworks/solid/index.d.ts +26 -0
- package/dist/frameworks/stencil/index.d.ts +24 -0
- package/dist/frameworks/svelte/index.svelte +91 -0
- package/dist/frameworks/vue/index.ts +34 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/styles.d.ts +2 -0
- package/dist/styles.d.ts.map +1 -0
- package/dist/styles.js +530 -0
- package/dist/styles.js.map +1 -0
- package/dist/table.d.ts +98 -0
- package/dist/table.d.ts.map +1 -0
- package/dist/table.js +1121 -0
- package/dist/table.js.map +1 -0
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/package.json +93 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 UIBit Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Table
|
|
2
|
+
|
|
3
|
+
[Interactive Demonstration](https://rawlings.github.io/uibit/components/table)
|
|
4
|
+
|
|
5
|
+
Table wraps standard HTML `<table>` elements and layers on a full data grid feature set including searching, pagination, sorting, row selection, column resizing, filtering, and CSV export. The source markup is parsed once on slot assignment and never mutated, rendering the enhanced interface entirely inside the shadow DOM.
|
|
6
|
+
|
|
7
|
+
## Value Delivery
|
|
8
|
+
|
|
9
|
+
- **Progressive Enhancement** – Consumers write standard HTML tables for clean SEO and semantic fallback, which are then upgraded with rich features in the browser.
|
|
10
|
+
- **Enhanced Data Density** – Includes column visibility selectors, striped rows, and sticky headers to keep layouts readable even with large datasets.
|
|
11
|
+
- **Client-Side Operations** – Features built-in logic for multi-column sorting, text queries, and pagination with zero external setup required.
|
|
12
|
+
|
|
13
|
+
## Ideal Applications
|
|
14
|
+
|
|
15
|
+
- **Dashboards & Reporting** – Displaying lists of users, logs, transactions, or system parameters.
|
|
16
|
+
- **Data Inventories** – Product directories or catalog management tools where filtering and export are essential.
|
|
17
|
+
- **Settings & Auditing** – Listing configurations, event trails, or batch properties.
|
|
18
|
+
|
|
19
|
+
## Further Information
|
|
20
|
+
|
|
21
|
+
Detailed design guidelines, customizable attributes, and integration examples are available on our documentation site.
|
|
22
|
+
|
|
23
|
+
## Changelog
|
|
24
|
+
|
|
25
|
+
Please see the [Changelog](CHANGELOG.md) for version history.
|