@genesislcap/grid-tabulator 14.437.5 → 14.437.6
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 +1037 -1037
- package/dist/dts/react.d.ts +8 -8
- package/dist/react.cjs +5 -5
- package/dist/react.mjs +4 -4
- package/package.json +13 -13
package/dist/dts/react.d.ts
CHANGED
|
@@ -48,23 +48,23 @@ export declare const GridTabulator: React.ForwardRefExoticComponent<
|
|
|
48
48
|
>;
|
|
49
49
|
export type GridTabulatorRef = GridTabulatorWC;
|
|
50
50
|
|
|
51
|
-
export declare const
|
|
51
|
+
export declare const GridTabulatorColumn: React.ForwardRefExoticComponent<
|
|
52
52
|
React.PropsWithChildren<
|
|
53
|
-
Omit<PublicOf<
|
|
53
|
+
Omit<PublicOf<GridTabulatorColumnWC>, 'children' | 'style'> &
|
|
54
54
|
HTMLWCProps & {
|
|
55
55
|
}
|
|
56
|
-
> & React.RefAttributes<
|
|
56
|
+
> & React.RefAttributes<GridTabulatorColumnWC>
|
|
57
57
|
>;
|
|
58
|
-
export type
|
|
58
|
+
export type GridTabulatorColumnRef = GridTabulatorColumnWC;
|
|
59
59
|
|
|
60
|
-
export declare const
|
|
60
|
+
export declare const GridTabulatorCell: React.ForwardRefExoticComponent<
|
|
61
61
|
React.PropsWithChildren<
|
|
62
|
-
Omit<PublicOf<
|
|
62
|
+
Omit<PublicOf<GridTabulatorCellWC>, 'children' | 'style'> &
|
|
63
63
|
HTMLWCProps & {
|
|
64
64
|
}
|
|
65
|
-
> & React.RefAttributes<
|
|
65
|
+
> & React.RefAttributes<GridTabulatorCellWC>
|
|
66
66
|
>;
|
|
67
|
-
export type
|
|
67
|
+
export type GridTabulatorCellRef = GridTabulatorCellWC;
|
|
68
68
|
|
|
69
69
|
export declare const GridTabulatorClientSideDatasource: React.ForwardRefExoticComponent<
|
|
70
70
|
React.PropsWithChildren<
|
package/dist/react.cjs
CHANGED
|
@@ -37,14 +37,14 @@ const GridTabulator = React.forwardRef(function GridTabulator(props, ref) {
|
|
|
37
37
|
return React.createElement(customElements.getName(GridTabulatorWC) ?? '%%prefix%%-grid-tabulator', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
38
38
|
});
|
|
39
39
|
|
|
40
|
-
const
|
|
40
|
+
const GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
|
|
41
41
|
const { children, ...rest } = props;
|
|
42
|
-
return React.createElement(customElements.getName(
|
|
42
|
+
return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...rest, ref }, children);
|
|
43
43
|
});
|
|
44
44
|
|
|
45
|
-
const
|
|
45
|
+
const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref) {
|
|
46
46
|
const { children, ...rest } = props;
|
|
47
|
-
return React.createElement(customElements.getName(
|
|
47
|
+
return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
|
|
48
48
|
});
|
|
49
49
|
|
|
50
50
|
const GridTabulatorClientSideDatasource = React.forwardRef(function GridTabulatorClientSideDatasource(props, ref) {
|
|
@@ -76,7 +76,7 @@ const GridTabulatorClientSideDatasource = React.forwardRef(function GridTabulato
|
|
|
76
76
|
|
|
77
77
|
module.exports = {
|
|
78
78
|
GridTabulator,
|
|
79
|
-
GridTabulatorCell,
|
|
80
79
|
GridTabulatorColumn,
|
|
80
|
+
GridTabulatorCell,
|
|
81
81
|
GridTabulatorClientSideDatasource,
|
|
82
82
|
};
|
package/dist/react.mjs
CHANGED
|
@@ -35,14 +35,14 @@ export const GridTabulator = React.forwardRef(function GridTabulator(props, ref)
|
|
|
35
35
|
return React.createElement(customElements.getName(GridTabulatorWC) ?? '%%prefix%%-grid-tabulator', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
36
36
|
});
|
|
37
37
|
|
|
38
|
-
export const
|
|
38
|
+
export const GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
|
|
39
39
|
const { children, ...rest } = props;
|
|
40
|
-
return React.createElement(customElements.getName(
|
|
40
|
+
return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...rest, ref }, children);
|
|
41
41
|
});
|
|
42
42
|
|
|
43
|
-
export const
|
|
43
|
+
export const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref) {
|
|
44
44
|
const { children, ...rest } = props;
|
|
45
|
-
return React.createElement(customElements.getName(
|
|
45
|
+
return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
|
|
46
46
|
});
|
|
47
47
|
|
|
48
48
|
export const GridTabulatorClientSideDatasource = React.forwardRef(function GridTabulatorClientSideDatasource(props, ref) {
|
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.437.
|
|
4
|
+
"version": "14.437.6",
|
|
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.437.
|
|
45
|
-
"@genesislcap/genx": "14.437.
|
|
46
|
-
"@genesislcap/rollup-builder": "14.437.
|
|
47
|
-
"@genesislcap/ts-builder": "14.437.
|
|
48
|
-
"@genesislcap/uvu-playwright-builder": "14.437.
|
|
49
|
-
"@genesislcap/vite-builder": "14.437.
|
|
50
|
-
"@genesislcap/webpack-builder": "14.437.
|
|
44
|
+
"@genesislcap/foundation-testing": "14.437.6",
|
|
45
|
+
"@genesislcap/genx": "14.437.6",
|
|
46
|
+
"@genesislcap/rollup-builder": "14.437.6",
|
|
47
|
+
"@genesislcap/ts-builder": "14.437.6",
|
|
48
|
+
"@genesislcap/uvu-playwright-builder": "14.437.6",
|
|
49
|
+
"@genesislcap/vite-builder": "14.437.6",
|
|
50
|
+
"@genesislcap/webpack-builder": "14.437.6",
|
|
51
51
|
"@types/tabulator-tables": "6.2.6"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@genesislcap/foundation-comms": "14.437.
|
|
55
|
-
"@genesislcap/foundation-logger": "14.437.
|
|
56
|
-
"@genesislcap/foundation-ui": "14.437.
|
|
57
|
-
"@genesislcap/foundation-utils": "14.437.
|
|
54
|
+
"@genesislcap/foundation-comms": "14.437.6",
|
|
55
|
+
"@genesislcap/foundation-logger": "14.437.6",
|
|
56
|
+
"@genesislcap/foundation-ui": "14.437.6",
|
|
57
|
+
"@genesislcap/foundation-utils": "14.437.6",
|
|
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": "8e8032f3226d1e6fa13ade21262a4ef7768caa9d"
|
|
90
90
|
}
|