@genesislcap/grid-tabulator 14.443.0 → 14.443.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/dist/custom-elements.json +1137 -1137
- package/dist/dts/react.d.ts +9 -9
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +13 -13
package/dist/dts/react.d.ts
CHANGED
|
@@ -57,15 +57,6 @@ export declare const GridTabulatorCell: React.ForwardRefExoticComponent<
|
|
|
57
57
|
>;
|
|
58
58
|
export type GridTabulatorCellRef = GridTabulatorCellWC;
|
|
59
59
|
|
|
60
|
-
export declare const GridTabulatorColumn: React.ForwardRefExoticComponent<
|
|
61
|
-
React.PropsWithChildren<
|
|
62
|
-
Omit<PublicOf<GridTabulatorColumnWC>, 'children' | 'style'> &
|
|
63
|
-
HTMLWCProps & {
|
|
64
|
-
}
|
|
65
|
-
> & React.RefAttributes<GridTabulatorColumnWC>
|
|
66
|
-
>;
|
|
67
|
-
export type GridTabulatorColumnRef = GridTabulatorColumnWC;
|
|
68
|
-
|
|
69
60
|
export declare const GridTabulatorClientSideDatasource: React.ForwardRefExoticComponent<
|
|
70
61
|
React.PropsWithChildren<
|
|
71
62
|
Omit<PublicOf<GridTabulatorClientSideDatasourceWC>, 'children' | 'style'> &
|
|
@@ -78,4 +69,13 @@ export declare const GridTabulatorClientSideDatasource: React.ForwardRefExoticCo
|
|
|
78
69
|
>;
|
|
79
70
|
export type GridTabulatorClientSideDatasourceRef = GridTabulatorClientSideDatasourceWC;
|
|
80
71
|
|
|
72
|
+
export declare const GridTabulatorColumn: React.ForwardRefExoticComponent<
|
|
73
|
+
React.PropsWithChildren<
|
|
74
|
+
Omit<PublicOf<GridTabulatorColumnWC>, 'children' | 'style'> &
|
|
75
|
+
HTMLWCProps & {
|
|
76
|
+
}
|
|
77
|
+
> & React.RefAttributes<GridTabulatorColumnWC>
|
|
78
|
+
>;
|
|
79
|
+
export type GridTabulatorColumnRef = GridTabulatorColumnWC;
|
|
80
|
+
|
|
81
81
|
export {};
|
package/dist/react.cjs
CHANGED
|
@@ -42,11 +42,6 @@ const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref
|
|
|
42
42
|
return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
|
|
43
43
|
});
|
|
44
44
|
|
|
45
|
-
const GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
|
|
46
|
-
const { children, ...rest } = props;
|
|
47
|
-
return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...rest, ref }, children);
|
|
48
|
-
});
|
|
49
|
-
|
|
50
45
|
const GridTabulatorClientSideDatasource = React.forwardRef(function GridTabulatorClientSideDatasource(props, ref) {
|
|
51
46
|
const { onGridTabulatorError, onDataInit, onSizeChanged, children, ...rest } = props;
|
|
52
47
|
const _innerRef = React.useRef(null);
|
|
@@ -74,9 +69,14 @@ const GridTabulatorClientSideDatasource = React.forwardRef(function GridTabulato
|
|
|
74
69
|
return React.createElement(customElements.getName(GridTabulatorClientSideDatasourceWC) ?? 'grid-tabulator-client-side-datasource', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
75
70
|
});
|
|
76
71
|
|
|
72
|
+
const GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
|
|
73
|
+
const { children, ...rest } = props;
|
|
74
|
+
return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...rest, ref }, children);
|
|
75
|
+
});
|
|
76
|
+
|
|
77
77
|
module.exports = {
|
|
78
78
|
GridTabulator,
|
|
79
79
|
GridTabulatorCell,
|
|
80
|
-
GridTabulatorColumn,
|
|
81
80
|
GridTabulatorClientSideDatasource,
|
|
81
|
+
GridTabulatorColumn,
|
|
82
82
|
};
|
package/dist/react.mjs
CHANGED
|
@@ -40,11 +40,6 @@ export const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(pro
|
|
|
40
40
|
return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
|
|
41
41
|
});
|
|
42
42
|
|
|
43
|
-
export const GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
|
|
44
|
-
const { children, ...rest } = props;
|
|
45
|
-
return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...rest, ref }, children);
|
|
46
|
-
});
|
|
47
|
-
|
|
48
43
|
export const GridTabulatorClientSideDatasource = React.forwardRef(function GridTabulatorClientSideDatasource(props, ref) {
|
|
49
44
|
const { onGridTabulatorError, onDataInit, onSizeChanged, children, ...rest } = props;
|
|
50
45
|
const _innerRef = React.useRef(null);
|
|
@@ -71,3 +66,8 @@ export const GridTabulatorClientSideDatasource = React.forwardRef(function GridT
|
|
|
71
66
|
}, []);
|
|
72
67
|
return React.createElement(customElements.getName(GridTabulatorClientSideDatasourceWC) ?? 'grid-tabulator-client-side-datasource', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
73
68
|
});
|
|
69
|
+
|
|
70
|
+
export const GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
|
|
71
|
+
const { children, ...rest } = props;
|
|
72
|
+
return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...rest, ref }, children);
|
|
73
|
+
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/grid-tabulator",
|
|
3
3
|
"description": "Genesis Foundation Grid Tabulator",
|
|
4
|
-
"version": "14.443.
|
|
4
|
+
"version": "14.443.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -41,20 +41,20 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@genesislcap/foundation-testing": "14.443.
|
|
45
|
-
"@genesislcap/genx": "14.443.
|
|
46
|
-
"@genesislcap/rollup-builder": "14.443.
|
|
47
|
-
"@genesislcap/ts-builder": "14.443.
|
|
48
|
-
"@genesislcap/uvu-playwright-builder": "14.443.
|
|
49
|
-
"@genesislcap/vite-builder": "14.443.
|
|
50
|
-
"@genesislcap/webpack-builder": "14.443.
|
|
44
|
+
"@genesislcap/foundation-testing": "14.443.1",
|
|
45
|
+
"@genesislcap/genx": "14.443.1",
|
|
46
|
+
"@genesislcap/rollup-builder": "14.443.1",
|
|
47
|
+
"@genesislcap/ts-builder": "14.443.1",
|
|
48
|
+
"@genesislcap/uvu-playwright-builder": "14.443.1",
|
|
49
|
+
"@genesislcap/vite-builder": "14.443.1",
|
|
50
|
+
"@genesislcap/webpack-builder": "14.443.1",
|
|
51
51
|
"@types/tabulator-tables": "6.2.6"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@genesislcap/foundation-comms": "14.443.
|
|
55
|
-
"@genesislcap/foundation-logger": "14.443.
|
|
56
|
-
"@genesislcap/foundation-ui": "14.443.
|
|
57
|
-
"@genesislcap/foundation-utils": "14.443.
|
|
54
|
+
"@genesislcap/foundation-comms": "14.443.1",
|
|
55
|
+
"@genesislcap/foundation-logger": "14.443.1",
|
|
56
|
+
"@genesislcap/foundation-ui": "14.443.1",
|
|
57
|
+
"@genesislcap/foundation-utils": "14.443.1",
|
|
58
58
|
"@microsoft/fast-colors": "5.3.1",
|
|
59
59
|
"@microsoft/fast-components": "2.30.6",
|
|
60
60
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"require": "./dist/react.cjs"
|
|
87
87
|
}
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "a10ca31c4ba209c31a50b507dc473ecd5791fc21"
|
|
90
90
|
}
|