@genesislcap/grid-pro 15.24.2 → 15.25.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.
@@ -135,6 +135,15 @@ export declare const StringEditor: React.ForwardRefExoticComponent<
135
135
  >;
136
136
  export type StringEditorRef = StringEditorWC;
137
137
 
138
+ export declare const GridProColumn: React.ForwardRefExoticComponent<
139
+ React.PropsWithChildren<
140
+ Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
141
+ HTMLWCProps & {
142
+ }
143
+ > & React.RefAttributes<GridProColumnWC>
144
+ >;
145
+ export type GridProColumnRef = GridProColumnWC;
146
+
138
147
  export declare const ActionRenderer: React.ForwardRefExoticComponent<
139
148
  React.PropsWithChildren<
140
149
  Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
@@ -207,15 +216,6 @@ export declare const AgTextRenderer: React.ForwardRefExoticComponent<
207
216
  >;
208
217
  export type AgTextRendererRef = AgTextRendererWC;
209
218
 
210
- export declare const GridProColumn: React.ForwardRefExoticComponent<
211
- React.PropsWithChildren<
212
- Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
213
- HTMLWCProps & {
214
- }
215
- > & React.RefAttributes<GridProColumnWC>
216
- >;
217
- export type GridProColumnRef = GridProColumnWC;
218
-
219
219
  export declare const GridProClientSideDatasource: React.ForwardRefExoticComponent<
220
220
  React.PropsWithChildren<
221
221
  Omit<PublicOf<GridProClientSideDatasourceWC>, 'children' | 'style'> &
package/dist/react.cjs CHANGED
@@ -122,6 +122,11 @@ const StringEditor = React.forwardRef(function StringEditor(props, ref) {
122
122
  return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
123
123
  });
124
124
 
125
+ const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
126
+ const { children, ...rest } = props;
127
+ return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
128
+ });
129
+
125
130
  const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
126
131
  const { children, ...rest } = props;
127
132
  return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
@@ -162,11 +167,6 @@ const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
162
167
  return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
163
168
  });
164
169
 
165
- const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
166
- const { children, ...rest } = props;
167
- return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
168
- });
169
-
170
170
  const GridProClientSideDatasource = React.forwardRef(function GridProClientSideDatasource(props, ref) {
171
171
  const { onBaseDatasourceError, onDatasourceError, onBaseDatasourceConnected, onDatasourceLoadingFinished, onDatasourceNoDataAvailable, onDatasourceDataChanged, onDatasourceInitialize, onDatasourceDestroy, onDatasourceDataCleared, onDatasourceSchemaUpdated, onDatasourceFiltersRestored, onDatasourceDataLoaded, onDatasourceLoadingStarted, onDatasourceMoreDataAvailable, onDatasourceReady, onDatasourceInit, onMoreRowsChanged, onDatasourceSizeChanged, children, ...rest } = props;
172
172
  const _innerRef = React.useRef(null);
@@ -584,6 +584,7 @@ module.exports = {
584
584
  NumberEditor,
585
585
  SelectEditor,
586
586
  StringEditor,
587
+ GridProColumn,
587
588
  ActionRenderer,
588
589
  ActionsMenuRenderer,
589
590
  BooleanRenderer,
@@ -592,7 +593,6 @@ module.exports = {
592
593
  StatusPillRenderer,
593
594
  AgTextFieldRenderer,
594
595
  AgTextRenderer,
595
- GridProColumn,
596
596
  GridProClientSideDatasource,
597
597
  GridProInfiniteDatasource,
598
598
  GridProServerSideDatasource,
package/dist/react.mjs CHANGED
@@ -120,6 +120,11 @@ export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
120
120
  return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
121
121
  });
122
122
 
123
+ export const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
124
+ const { children, ...rest } = props;
125
+ return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
126
+ });
127
+
123
128
  export const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
124
129
  const { children, ...rest } = props;
125
130
  return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
@@ -160,11 +165,6 @@ export const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, re
160
165
  return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
161
166
  });
162
167
 
163
- export const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
164
- const { children, ...rest } = props;
165
- return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
166
- });
167
-
168
168
  export const GridProClientSideDatasource = React.forwardRef(function GridProClientSideDatasource(props, ref) {
169
169
  const { onBaseDatasourceError, onDatasourceError, onBaseDatasourceConnected, onDatasourceLoadingFinished, onDatasourceNoDataAvailable, onDatasourceDataChanged, onDatasourceInitialize, onDatasourceDestroy, onDatasourceDataCleared, onDatasourceSchemaUpdated, onDatasourceFiltersRestored, onDatasourceDataLoaded, onDatasourceLoadingStarted, onDatasourceMoreDataAvailable, onDatasourceReady, onDatasourceInit, onMoreRowsChanged, onDatasourceSizeChanged, children, ...rest } = props;
170
170
  const _innerRef = React.useRef(null);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/grid-pro",
3
3
  "description": "Genesis Foundation AG Grid",
4
- "version": "15.24.2",
4
+ "version": "15.25.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -40,20 +40,20 @@
40
40
  }
41
41
  },
42
42
  "devDependencies": {
43
- "@genesislcap/foundation-testing": "15.24.2",
44
- "@genesislcap/genx": "15.24.2",
45
- "@genesislcap/rollup-builder": "15.24.2",
46
- "@genesislcap/ts-builder": "15.24.2",
47
- "@genesislcap/uvu-playwright-builder": "15.24.2",
48
- "@genesislcap/vite-builder": "15.24.2",
49
- "@genesislcap/webpack-builder": "15.24.2"
43
+ "@genesislcap/foundation-testing": "15.25.1",
44
+ "@genesislcap/genx": "15.25.1",
45
+ "@genesislcap/rollup-builder": "15.25.1",
46
+ "@genesislcap/ts-builder": "15.25.1",
47
+ "@genesislcap/uvu-playwright-builder": "15.25.1",
48
+ "@genesislcap/vite-builder": "15.25.1",
49
+ "@genesislcap/webpack-builder": "15.25.1"
50
50
  },
51
51
  "dependencies": {
52
- "@genesislcap/foundation-comms": "15.24.2",
53
- "@genesislcap/foundation-criteria": "15.24.2",
54
- "@genesislcap/foundation-logger": "15.24.2",
55
- "@genesislcap/foundation-ui": "15.24.2",
56
- "@genesislcap/foundation-utils": "15.24.2",
52
+ "@genesislcap/foundation-comms": "15.25.1",
53
+ "@genesislcap/foundation-criteria": "15.25.1",
54
+ "@genesislcap/foundation-logger": "15.25.1",
55
+ "@genesislcap/foundation-ui": "15.25.1",
56
+ "@genesislcap/foundation-utils": "15.25.1",
57
57
  "@microsoft/fast-colors": "5.3.1",
58
58
  "@microsoft/fast-components": "2.30.6",
59
59
  "@microsoft/fast-element": "1.14.0",