@genesislcap/grid-tabulator 14.437.6 → 14.438.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.
@@ -48,23 +48,23 @@ export declare const GridTabulator: React.ForwardRefExoticComponent<
48
48
  >;
49
49
  export type GridTabulatorRef = GridTabulatorWC;
50
50
 
51
- export declare const GridTabulatorColumn: React.ForwardRefExoticComponent<
51
+ export declare const GridTabulatorCell: React.ForwardRefExoticComponent<
52
52
  React.PropsWithChildren<
53
- Omit<PublicOf<GridTabulatorColumnWC>, 'children' | 'style'> &
53
+ Omit<PublicOf<GridTabulatorCellWC>, 'children' | 'style'> &
54
54
  HTMLWCProps & {
55
55
  }
56
- > & React.RefAttributes<GridTabulatorColumnWC>
56
+ > & React.RefAttributes<GridTabulatorCellWC>
57
57
  >;
58
- export type GridTabulatorColumnRef = GridTabulatorColumnWC;
58
+ export type GridTabulatorCellRef = GridTabulatorCellWC;
59
59
 
60
- export declare const GridTabulatorCell: React.ForwardRefExoticComponent<
60
+ export declare const GridTabulatorColumn: React.ForwardRefExoticComponent<
61
61
  React.PropsWithChildren<
62
- Omit<PublicOf<GridTabulatorCellWC>, 'children' | 'style'> &
62
+ Omit<PublicOf<GridTabulatorColumnWC>, 'children' | 'style'> &
63
63
  HTMLWCProps & {
64
64
  }
65
- > & React.RefAttributes<GridTabulatorCellWC>
65
+ > & React.RefAttributes<GridTabulatorColumnWC>
66
66
  >;
67
- export type GridTabulatorCellRef = GridTabulatorCellWC;
67
+ export type GridTabulatorColumnRef = GridTabulatorColumnWC;
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 GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
40
+ const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref) {
41
41
  const { children, ...rest } = props;
42
- return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...rest, ref }, children);
42
+ return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
43
43
  });
44
44
 
45
- const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref) {
45
+ const GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
46
46
  const { children, ...rest } = props;
47
- return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
47
+ return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...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
- GridTabulatorColumn,
80
79
  GridTabulatorCell,
80
+ GridTabulatorColumn,
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 GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
38
+ export const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref) {
39
39
  const { children, ...rest } = props;
40
- return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...rest, ref }, children);
40
+ return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
41
41
  });
42
42
 
43
- export const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref) {
43
+ export const GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
44
44
  const { children, ...rest } = props;
45
- return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
45
+ return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...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.6",
4
+ "version": "14.438.0",
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.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",
44
+ "@genesislcap/foundation-testing": "14.438.0",
45
+ "@genesislcap/genx": "14.438.0",
46
+ "@genesislcap/rollup-builder": "14.438.0",
47
+ "@genesislcap/ts-builder": "14.438.0",
48
+ "@genesislcap/uvu-playwright-builder": "14.438.0",
49
+ "@genesislcap/vite-builder": "14.438.0",
50
+ "@genesislcap/webpack-builder": "14.438.0",
51
51
  "@types/tabulator-tables": "6.2.6"
52
52
  },
53
53
  "dependencies": {
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",
54
+ "@genesislcap/foundation-comms": "14.438.0",
55
+ "@genesislcap/foundation-logger": "14.438.0",
56
+ "@genesislcap/foundation-ui": "14.438.0",
57
+ "@genesislcap/foundation-utils": "14.438.0",
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": "8e8032f3226d1e6fa13ade21262a4ef7768caa9d"
89
+ "gitHead": "2aadae08b54d594c850d65c00a18e3ce5064069c"
90
90
  }