@vuu-ui/vuu-datatable 3.3.10 → 4.0.0-alpha.1
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/package.json +13 -13
- package/types/filter-table/FilterTable.d.ts +1 -1
- package/types/json-table/JsonCell.d.ts +1 -1
- package/types/json-table/JsonTable.d.ts +1 -1
- package/types/linked-table-view/LinkedTableView.d.ts +1 -1
- package/types/linked-table-view/TableLayoutToggleButton.d.ts +1 -1
- package/types/tree-table/TreeTable.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "4.0.0-alpha.1",
|
|
3
3
|
"author": "heswell",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"main": "./src/index.js",
|
|
5
6
|
"license": "Apache-2.0",
|
|
6
7
|
"scripts": {
|
|
@@ -9,19 +10,19 @@
|
|
|
9
10
|
"type-defs": "node ../../scripts/build-type-defs.mjs"
|
|
10
11
|
},
|
|
11
12
|
"dependencies": {
|
|
12
|
-
"@salt-ds/core": "1.
|
|
13
|
+
"@salt-ds/core": "1.67.0",
|
|
13
14
|
"@salt-ds/styles": "0.2.1",
|
|
14
15
|
"@salt-ds/window": "0.1.1",
|
|
15
|
-
"@vuu-ui/vuu-data-local": "
|
|
16
|
-
"@vuu-ui/vuu-table-types": "
|
|
17
|
-
"@vuu-ui/vuu-filters": "
|
|
18
|
-
"@vuu-ui/vuu-layout": "
|
|
19
|
-
"@vuu-ui/vuu-popups": "
|
|
20
|
-
"@vuu-ui/vuu-shell": "
|
|
21
|
-
"@vuu-ui/vuu-table": "
|
|
22
|
-
"@vuu-ui/vuu-table-extras": "
|
|
23
|
-
"@vuu-ui/vuu-ui-controls": "
|
|
24
|
-
"@vuu-ui/vuu-utils": "
|
|
16
|
+
"@vuu-ui/vuu-data-local": "4.0.0-alpha.1",
|
|
17
|
+
"@vuu-ui/vuu-table-types": "4.0.0-alpha.1",
|
|
18
|
+
"@vuu-ui/vuu-filters": "4.0.0-alpha.1",
|
|
19
|
+
"@vuu-ui/vuu-layout": "4.0.0-alpha.1",
|
|
20
|
+
"@vuu-ui/vuu-popups": "4.0.0-alpha.1",
|
|
21
|
+
"@vuu-ui/vuu-shell": "4.0.0-alpha.1",
|
|
22
|
+
"@vuu-ui/vuu-table": "4.0.0-alpha.1",
|
|
23
|
+
"@vuu-ui/vuu-table-extras": "4.0.0-alpha.1",
|
|
24
|
+
"@vuu-ui/vuu-ui-controls": "4.0.0-alpha.1",
|
|
25
|
+
"@vuu-ui/vuu-utils": "4.0.0-alpha.1"
|
|
25
26
|
},
|
|
26
27
|
"peerDependencies": {
|
|
27
28
|
"clsx": "^2.0.0",
|
|
@@ -41,6 +42,5 @@
|
|
|
41
42
|
},
|
|
42
43
|
"module": "./src/index.js",
|
|
43
44
|
"name": "@vuu-ui/vuu-datatable",
|
|
44
|
-
"type": "module",
|
|
45
45
|
"types": "types/index.d.ts"
|
|
46
46
|
}
|
|
@@ -5,4 +5,4 @@ export interface FilterTableProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
5
5
|
FilterBarProps?: Partial<FilterBarProps>;
|
|
6
6
|
TableProps: Omit<TableProps, "height" | "width">;
|
|
7
7
|
}
|
|
8
|
-
export declare const FilterTable: ({ FilterBarProps, TableProps, style: styleProps, ...htmlAttributes }: FilterTableProps) => import("react
|
|
8
|
+
export declare const FilterTable: ({ FilterBarProps, TableProps, style: styleProps, ...htmlAttributes }: FilterTableProps) => import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TableCellProps } from "@vuu-ui/vuu-table-types";
|
|
2
|
-
export declare const JsonCell: ({ column, dataRow }: TableCellProps) => import("react
|
|
2
|
+
export declare const JsonCell: ({ column, dataRow }: TableCellProps) => import("react").JSX.Element;
|
|
@@ -5,4 +5,4 @@ export interface JsonTableProps extends Omit<TableProps, "config" | "dataSource"
|
|
|
5
5
|
config?: Pick<TableConfig, "columnSeparators" | "rowSeparators" | "zebraStripes">;
|
|
6
6
|
source: JsonData;
|
|
7
7
|
}
|
|
8
|
-
export declare const JsonTable: ({ config, source: sourceProp, ...tableProps }: JsonTableProps) => import("react
|
|
8
|
+
export declare const JsonTable: ({ config, source: sourceProp, ...tableProps }: JsonTableProps) => import("react").JSX.Element | null;
|
|
@@ -51,4 +51,4 @@ export interface LinkedTableViewProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
51
51
|
filter?: Filter;
|
|
52
52
|
linkedDataSources: LinkedDataSources;
|
|
53
53
|
}
|
|
54
|
-
export declare const LinkedTableView: ({ className, linkedDataSources, ...htmlAttributes }: LinkedTableViewProps) => import("react
|
|
54
|
+
export declare const LinkedTableView: ({ className, linkedDataSources, ...htmlAttributes }: LinkedTableViewProps) => import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ToggleButtonGroupProps } from "@salt-ds/core";
|
|
2
|
-
export declare const TableLayoutToggleButton: (props: ToggleButtonGroupProps) => import("react
|
|
2
|
+
export declare const TableLayoutToggleButton: (props: ToggleButtonGroupProps) => import("react").JSX.Element;
|
|
@@ -12,5 +12,5 @@ export type TreeTableProps = Props & ({
|
|
|
12
12
|
} | {
|
|
13
13
|
source: TreeSourceNode[];
|
|
14
14
|
});
|
|
15
|
-
export declare const TreeTable: ({ config, dataSource, source, ...tableProps }: TreeTableProps) => import("react
|
|
15
|
+
export declare const TreeTable: ({ config, dataSource, source, ...tableProps }: TreeTableProps) => import("react").JSX.Element | null;
|
|
16
16
|
export {};
|