@versini/ui-table 4.0.14 → 4.0.16
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 +3 -3
- package/dist/components/Table/Table.js +3 -3
- package/dist/index.js +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# @versini/ui-table
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@versini/ui-table)
|
|
4
|
+
>)
|
|
4
5
|
|
|
5
6
|
> An accessible and feature-rich React table component built with TypeScript and TailwindCSS.
|
|
6
7
|
|
|
7
8
|
The Table component provides data tables with sorting, accessibility features, and customizable styling for displaying tabular data.
|
|
8
9
|
|
|
9
|
-
|
|
10
10
|
## Table of Contents
|
|
11
11
|
|
|
12
12
|
- [Features](#features)
|
|
@@ -19,7 +19,7 @@ The Table component provides data tables with sorting, accessibility features, a
|
|
|
19
19
|
npm install @versini/ui-table
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
> **Note**: This component requires TailwindCSS and the `@versini/ui-styles` plugin for proper styling. See the [
|
|
22
|
+
> **Note**: This component requires TailwindCSS and the `@versini/ui-styles` plugin for proper styling. See the [installation documentation](https://versini-org.github.io/ui-components/?path=/docs/getting-started-installation--docs) for complete setup instructions.
|
|
23
23
|
|
|
24
24
|
## Usage
|
|
25
25
|
|
|
@@ -31,7 +31,7 @@ function App() {
|
|
|
31
31
|
{ id: 1, name: "John Doe", email: "john@example.com" },
|
|
32
32
|
{ id: 2, name: "Jane Smith", email: "jane@example.com" }
|
|
33
33
|
];
|
|
34
|
-
|
|
34
|
+
|
|
35
35
|
return (
|
|
36
36
|
<Table
|
|
37
37
|
columns={[
|
|
@@ -504,13 +504,13 @@ const R = {
|
|
|
504
504
|
);
|
|
505
505
|
Z.displayName = "ButtonIcon";
|
|
506
506
|
/*!
|
|
507
|
-
@versini/ui-button v7.1.
|
|
507
|
+
@versini/ui-button v7.1.5
|
|
508
508
|
© 2025 gizmette.com
|
|
509
509
|
*/
|
|
510
510
|
try {
|
|
511
511
|
window.__VERSINI_UI_BUTTON__ || (window.__VERSINI_UI_BUTTON__ = {
|
|
512
|
-
version: "7.1.
|
|
513
|
-
buildTime: "08/23/2025
|
|
512
|
+
version: "7.1.5",
|
|
513
|
+
buildTime: "08/23/2025 12:21 PM EDT",
|
|
514
514
|
homepage: "https://github.com/aversini/ui-components",
|
|
515
515
|
license: "MIT"
|
|
516
516
|
});
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { Table as i, TableBody as T, TableCell as a, TableCellSort as r, TableCellSortDirections as _, TableFooter as t, TableHead as b, TableRow as n } from "./components/Table/Table.js";
|
|
2
2
|
/*!
|
|
3
|
-
@versini/ui-table v4.0.
|
|
3
|
+
@versini/ui-table v4.0.16
|
|
4
4
|
© 2025 gizmette.com
|
|
5
5
|
*/
|
|
6
6
|
try {
|
|
7
7
|
window.__VERSINI_UI_TABLE__ || (window.__VERSINI_UI_TABLE__ = {
|
|
8
|
-
version: "4.0.
|
|
9
|
-
buildTime: "08/23/2025
|
|
8
|
+
version: "4.0.16",
|
|
9
|
+
buildTime: "08/23/2025 12:23 PM EDT",
|
|
10
10
|
homepage: "https://github.com/aversini/ui-components",
|
|
11
11
|
license: "MIT"
|
|
12
12
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-table",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.16",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"sideEffects": [
|
|
55
55
|
"**/*.css"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "d568e20474c6c87f836c4cb6548f2cc0143a353c"
|
|
58
58
|
}
|