@genesislcap/grid-pro 14.484.0 → 14.484.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.
@@ -134,6 +134,15 @@ export declare const StringEditor: React.ForwardRefExoticComponent<
134
134
  >;
135
135
  export type StringEditorRef = StringEditorWC;
136
136
 
137
+ export declare const GridProColumn: React.ForwardRefExoticComponent<
138
+ React.PropsWithChildren<
139
+ Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
140
+ HTMLWCProps & {
141
+ }
142
+ > & React.RefAttributes<GridProColumnWC>
143
+ >;
144
+ export type GridProColumnRef = GridProColumnWC;
145
+
137
146
  export declare const ActionRenderer: React.ForwardRefExoticComponent<
138
147
  React.PropsWithChildren<
139
148
  Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
@@ -206,15 +215,6 @@ export declare const AgTextRenderer: React.ForwardRefExoticComponent<
206
215
  >;
207
216
  export type AgTextRendererRef = AgTextRendererWC;
208
217
 
209
- export declare const GridProColumn: React.ForwardRefExoticComponent<
210
- React.PropsWithChildren<
211
- Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
212
- HTMLWCProps & {
213
- }
214
- > & React.RefAttributes<GridProColumnWC>
215
- >;
216
- export type GridProColumnRef = GridProColumnWC;
217
-
218
218
  export declare const GridProClientSideDatasource: React.ForwardRefExoticComponent<
219
219
  React.PropsWithChildren<
220
220
  Omit<PublicOf<GridProClientSideDatasourceWC>, 'children' | 'style'> &
package/dist/react.cjs CHANGED
@@ -121,6 +121,11 @@ const StringEditor = React.forwardRef(function StringEditor(props, ref) {
121
121
  return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
122
122
  });
123
123
 
124
+ const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
125
+ const { children, ...rest } = props;
126
+ return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
127
+ });
128
+
124
129
  const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
125
130
  const { children, ...rest } = props;
126
131
  return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
@@ -161,11 +166,6 @@ const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
161
166
  return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
162
167
  });
163
168
 
164
- const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
165
- const { children, ...rest } = props;
166
- return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
167
- });
168
-
169
169
  const GridProClientSideDatasource = React.forwardRef(function GridProClientSideDatasource(props, ref) {
170
170
  const { onBaseDatasourceError, onDatasourceError, onBaseDatasourceConnected, onDatasourceLoadingFinished, onDatasourceNoDataAvailable, onDatasourceDataChanged, onDatasourceInitialize, onDatasourceDestroy, onDatasourceDataCleared, onDatasourceSchemaUpdated, onDatasourceFiltersRestored, onDatasourceDataLoaded, onDatasourceLoadingStarted, onDatasourceMoreDataAvailable, onDatasourceReady, onDatasourceInit, onMoreRowsChanged, onDatasourceSizeChanged, children, ...rest } = props;
171
171
  const _innerRef = React.useRef(null);
@@ -491,6 +491,7 @@ module.exports = {
491
491
  NumberEditor,
492
492
  SelectEditor,
493
493
  StringEditor,
494
+ GridProColumn,
494
495
  ActionRenderer,
495
496
  ActionsMenuRenderer,
496
497
  BooleanRenderer,
@@ -499,7 +500,6 @@ module.exports = {
499
500
  StatusPillRenderer,
500
501
  AgTextFieldRenderer,
501
502
  AgTextRenderer,
502
- GridProColumn,
503
503
  GridProClientSideDatasource,
504
504
  GridProServerSideDatasource,
505
505
  GridProGenesisDatasource,
package/dist/react.mjs CHANGED
@@ -119,6 +119,11 @@ export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
119
119
  return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
120
120
  });
121
121
 
122
+ export const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
123
+ const { children, ...rest } = props;
124
+ return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
125
+ });
126
+
122
127
  export const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
123
128
  const { children, ...rest } = props;
124
129
  return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
@@ -159,11 +164,6 @@ export const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, re
159
164
  return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
160
165
  });
161
166
 
162
- export const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
163
- const { children, ...rest } = props;
164
- return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
165
- });
166
-
167
167
  export const GridProClientSideDatasource = React.forwardRef(function GridProClientSideDatasource(props, ref) {
168
168
  const { onBaseDatasourceError, onDatasourceError, onBaseDatasourceConnected, onDatasourceLoadingFinished, onDatasourceNoDataAvailable, onDatasourceDataChanged, onDatasourceInitialize, onDatasourceDestroy, onDatasourceDataCleared, onDatasourceSchemaUpdated, onDatasourceFiltersRestored, onDatasourceDataLoaded, onDatasourceLoadingStarted, onDatasourceMoreDataAvailable, onDatasourceReady, onDatasourceInit, onMoreRowsChanged, onDatasourceSizeChanged, children, ...rest } = props;
169
169
  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": "14.484.0",
4
+ "version": "14.484.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": "14.484.0",
44
- "@genesislcap/genx": "14.484.0",
45
- "@genesislcap/rollup-builder": "14.484.0",
46
- "@genesislcap/ts-builder": "14.484.0",
47
- "@genesislcap/uvu-playwright-builder": "14.484.0",
48
- "@genesislcap/vite-builder": "14.484.0",
49
- "@genesislcap/webpack-builder": "14.484.0"
43
+ "@genesislcap/foundation-testing": "14.484.1",
44
+ "@genesislcap/genx": "14.484.1",
45
+ "@genesislcap/rollup-builder": "14.484.1",
46
+ "@genesislcap/ts-builder": "14.484.1",
47
+ "@genesislcap/uvu-playwright-builder": "14.484.1",
48
+ "@genesislcap/vite-builder": "14.484.1",
49
+ "@genesislcap/webpack-builder": "14.484.1"
50
50
  },
51
51
  "dependencies": {
52
- "@genesislcap/foundation-comms": "14.484.0",
53
- "@genesislcap/foundation-criteria": "14.484.0",
54
- "@genesislcap/foundation-logger": "14.484.0",
55
- "@genesislcap/foundation-ui": "14.484.0",
56
- "@genesislcap/foundation-utils": "14.484.0",
52
+ "@genesislcap/foundation-comms": "14.484.1",
53
+ "@genesislcap/foundation-criteria": "14.484.1",
54
+ "@genesislcap/foundation-logger": "14.484.1",
55
+ "@genesislcap/foundation-ui": "14.484.1",
56
+ "@genesislcap/foundation-utils": "14.484.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",
@@ -91,5 +91,5 @@
91
91
  "require": "./dist/react.cjs"
92
92
  }
93
93
  },
94
- "gitHead": "1ec7b2318e2447c2cd3ad877666b6fd1f3b87c05"
94
+ "gitHead": "805c947c8df90977fa68f5da82e358de498ada51"
95
95
  }