@genesislcap/grid-pro 14.491.0 → 14.491.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 +2922 -2922
- package/dist/dts/react.d.ts +18 -18
- package/dist/react.cjs +12 -12
- package/dist/react.mjs +10 -10
- package/package.json +14 -14
package/dist/dts/react.d.ts
CHANGED
|
@@ -80,6 +80,15 @@ export declare const GridPro: React.ForwardRefExoticComponent<
|
|
|
80
80
|
>;
|
|
81
81
|
export type GridProRef = GridProWC;
|
|
82
82
|
|
|
83
|
+
export declare const GridProCell: React.ForwardRefExoticComponent<
|
|
84
|
+
React.PropsWithChildren<
|
|
85
|
+
Omit<PublicOf<GridProCellWC>, 'children' | 'style'> &
|
|
86
|
+
HTMLWCProps & {
|
|
87
|
+
}
|
|
88
|
+
> & React.RefAttributes<GridProCellWC>
|
|
89
|
+
>;
|
|
90
|
+
export type GridProCellRef = GridProCellWC;
|
|
91
|
+
|
|
83
92
|
export declare const DateEditor: React.ForwardRefExoticComponent<
|
|
84
93
|
React.PropsWithChildren<
|
|
85
94
|
Omit<PublicOf<DateEditorWC>, 'children' | 'style'> &
|
|
@@ -125,15 +134,6 @@ export declare const StringEditor: React.ForwardRefExoticComponent<
|
|
|
125
134
|
>;
|
|
126
135
|
export type StringEditorRef = StringEditorWC;
|
|
127
136
|
|
|
128
|
-
export declare const GridProCell: React.ForwardRefExoticComponent<
|
|
129
|
-
React.PropsWithChildren<
|
|
130
|
-
Omit<PublicOf<GridProCellWC>, 'children' | 'style'> &
|
|
131
|
-
HTMLWCProps & {
|
|
132
|
-
}
|
|
133
|
-
> & React.RefAttributes<GridProCellWC>
|
|
134
|
-
>;
|
|
135
|
-
export type GridProCellRef = GridProCellWC;
|
|
136
|
-
|
|
137
137
|
export declare const ActionRenderer: React.ForwardRefExoticComponent<
|
|
138
138
|
React.PropsWithChildren<
|
|
139
139
|
Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
|
|
@@ -206,15 +206,6 @@ export declare const AgTextRenderer: React.ForwardRefExoticComponent<
|
|
|
206
206
|
>;
|
|
207
207
|
export type AgTextRendererRef = AgTextRendererWC;
|
|
208
208
|
|
|
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
209
|
export declare const GridProClientSideDatasource: React.ForwardRefExoticComponent<
|
|
219
210
|
React.PropsWithChildren<
|
|
220
211
|
Omit<PublicOf<GridProClientSideDatasourceWC>, 'children' | 'style'> &
|
|
@@ -270,6 +261,15 @@ export declare const GridProServerSideDatasource: React.ForwardRefExoticComponen
|
|
|
270
261
|
>;
|
|
271
262
|
export type GridProServerSideDatasourceRef = GridProServerSideDatasourceWC;
|
|
272
263
|
|
|
264
|
+
export declare const GridProColumn: React.ForwardRefExoticComponent<
|
|
265
|
+
React.PropsWithChildren<
|
|
266
|
+
Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
|
|
267
|
+
HTMLWCProps & {
|
|
268
|
+
}
|
|
269
|
+
> & React.RefAttributes<GridProColumnWC>
|
|
270
|
+
>;
|
|
271
|
+
export type GridProColumnRef = GridProColumnWC;
|
|
272
|
+
|
|
273
273
|
export declare const GridProGenesisDatasource: React.ForwardRefExoticComponent<
|
|
274
274
|
React.PropsWithChildren<
|
|
275
275
|
Omit<PublicOf<GridProGenesisDatasourceWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -91,6 +91,11 @@ const GridPro = React.forwardRef(function GridPro(props, ref) {
|
|
|
91
91
|
return React.createElement(customElements.getName(GridProWC) ?? '%%prefix%%-grid-pro', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
92
92
|
});
|
|
93
93
|
|
|
94
|
+
const GridProCell = React.forwardRef(function GridProCell(props, ref) {
|
|
95
|
+
const { children, ...rest } = props;
|
|
96
|
+
return React.createElement(customElements.getName(GridProCellWC) ?? 'grid-pro-cell', { ...rest, ref }, children);
|
|
97
|
+
});
|
|
98
|
+
|
|
94
99
|
const DateEditor = React.forwardRef(function DateEditor(props, ref) {
|
|
95
100
|
const { children, ...rest } = props;
|
|
96
101
|
return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
@@ -116,11 +121,6 @@ const StringEditor = React.forwardRef(function StringEditor(props, ref) {
|
|
|
116
121
|
return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
117
122
|
});
|
|
118
123
|
|
|
119
|
-
const GridProCell = React.forwardRef(function GridProCell(props, ref) {
|
|
120
|
-
const { children, ...rest } = props;
|
|
121
|
-
return React.createElement(customElements.getName(GridProCellWC) ?? 'grid-pro-cell', { ...rest, ref }, children);
|
|
122
|
-
});
|
|
123
|
-
|
|
124
124
|
const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
|
|
125
125
|
const { children, ...rest } = props;
|
|
126
126
|
return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
@@ -161,11 +161,6 @@ const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
|
|
|
161
161
|
return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
|
|
162
162
|
});
|
|
163
163
|
|
|
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
164
|
const GridProClientSideDatasource = React.forwardRef(function GridProClientSideDatasource(props, ref) {
|
|
170
165
|
const { onBaseDatasourceError, onDatasourceError, onBaseDatasourceConnected, onDatasourceLoadingFinished, onDatasourceNoDataAvailable, onDatasourceDataChanged, onDatasourceInitialize, onDatasourceDestroy, onDatasourceDataCleared, onDatasourceSchemaUpdated, onDatasourceFiltersRestored, onDatasourceDataLoaded, onDatasourceLoadingStarted, onDatasourceMoreDataAvailable, onDatasourceReady, onDatasourceInit, onMoreRowsChanged, onDatasourceSizeChanged, children, ...rest } = props;
|
|
171
166
|
const _innerRef = React.useRef(null);
|
|
@@ -375,6 +370,11 @@ const GridProServerSideDatasource = React.forwardRef(function GridProServerSideD
|
|
|
375
370
|
return React.createElement(customElements.getName(GridProServerSideDatasourceWC) ?? 'grid-pro-server-side-datasource', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
376
371
|
});
|
|
377
372
|
|
|
373
|
+
const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
|
|
374
|
+
const { children, ...rest } = props;
|
|
375
|
+
return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
|
|
376
|
+
});
|
|
377
|
+
|
|
378
378
|
const GridProGenesisDatasource = React.forwardRef(function GridProGenesisDatasource(props, ref) {
|
|
379
379
|
const { onBaseDatasourceError, onDatasourceError, onBaseDatasourceConnected, onDatasourceLoadingFinished, onDatasourceNoDataAvailable, onDatasourceDataChanged, onDatasourceInitialize, onDatasourceDestroy, onDatasourceDataCleared, onDatasourceSchemaUpdated, onDatasourceFiltersRestored, onDatasourceDataLoaded, onDatasourceLoadingStarted, onDatasourceMoreDataAvailable, onDatasourceReady, onDatasourceInit, onMoreRowsChanged, onDatasourceSizeChanged, children, ...rest } = props;
|
|
380
380
|
const _innerRef = React.useRef(null);
|
|
@@ -485,12 +485,12 @@ const MulticolumnDropdown = React.forwardRef(function MulticolumnDropdown(props,
|
|
|
485
485
|
module.exports = {
|
|
486
486
|
GridProBeta,
|
|
487
487
|
GridPro,
|
|
488
|
+
GridProCell,
|
|
488
489
|
DateEditor,
|
|
489
490
|
MultiselectEditor,
|
|
490
491
|
NumberEditor,
|
|
491
492
|
SelectEditor,
|
|
492
493
|
StringEditor,
|
|
493
|
-
GridProCell,
|
|
494
494
|
ActionRenderer,
|
|
495
495
|
ActionsMenuRenderer,
|
|
496
496
|
BooleanRenderer,
|
|
@@ -499,9 +499,9 @@ module.exports = {
|
|
|
499
499
|
StatusPillRenderer,
|
|
500
500
|
AgTextFieldRenderer,
|
|
501
501
|
AgTextRenderer,
|
|
502
|
-
GridProColumn,
|
|
503
502
|
GridProClientSideDatasource,
|
|
504
503
|
GridProServerSideDatasource,
|
|
504
|
+
GridProColumn,
|
|
505
505
|
GridProGenesisDatasource,
|
|
506
506
|
MulticolumnDropdown,
|
|
507
507
|
};
|
package/dist/react.mjs
CHANGED
|
@@ -89,6 +89,11 @@ export const GridPro = React.forwardRef(function GridPro(props, ref) {
|
|
|
89
89
|
return React.createElement(customElements.getName(GridProWC) ?? '%%prefix%%-grid-pro', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
90
90
|
});
|
|
91
91
|
|
|
92
|
+
export const GridProCell = React.forwardRef(function GridProCell(props, ref) {
|
|
93
|
+
const { children, ...rest } = props;
|
|
94
|
+
return React.createElement(customElements.getName(GridProCellWC) ?? 'grid-pro-cell', { ...rest, ref }, children);
|
|
95
|
+
});
|
|
96
|
+
|
|
92
97
|
export const DateEditor = React.forwardRef(function DateEditor(props, ref) {
|
|
93
98
|
const { children, ...rest } = props;
|
|
94
99
|
return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
@@ -114,11 +119,6 @@ export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
|
|
|
114
119
|
return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
115
120
|
});
|
|
116
121
|
|
|
117
|
-
export const GridProCell = React.forwardRef(function GridProCell(props, ref) {
|
|
118
|
-
const { children, ...rest } = props;
|
|
119
|
-
return React.createElement(customElements.getName(GridProCellWC) ?? 'grid-pro-cell', { ...rest, ref }, children);
|
|
120
|
-
});
|
|
121
|
-
|
|
122
122
|
export const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
|
|
123
123
|
const { children, ...rest } = props;
|
|
124
124
|
return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
@@ -159,11 +159,6 @@ export const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, re
|
|
|
159
159
|
return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
|
|
160
160
|
});
|
|
161
161
|
|
|
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
162
|
export const GridProClientSideDatasource = React.forwardRef(function GridProClientSideDatasource(props, ref) {
|
|
168
163
|
const { onBaseDatasourceError, onDatasourceError, onBaseDatasourceConnected, onDatasourceLoadingFinished, onDatasourceNoDataAvailable, onDatasourceDataChanged, onDatasourceInitialize, onDatasourceDestroy, onDatasourceDataCleared, onDatasourceSchemaUpdated, onDatasourceFiltersRestored, onDatasourceDataLoaded, onDatasourceLoadingStarted, onDatasourceMoreDataAvailable, onDatasourceReady, onDatasourceInit, onMoreRowsChanged, onDatasourceSizeChanged, children, ...rest } = props;
|
|
169
164
|
const _innerRef = React.useRef(null);
|
|
@@ -373,6 +368,11 @@ export const GridProServerSideDatasource = React.forwardRef(function GridProServ
|
|
|
373
368
|
return React.createElement(customElements.getName(GridProServerSideDatasourceWC) ?? 'grid-pro-server-side-datasource', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
374
369
|
});
|
|
375
370
|
|
|
371
|
+
export const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
|
|
372
|
+
const { children, ...rest } = props;
|
|
373
|
+
return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
|
|
374
|
+
});
|
|
375
|
+
|
|
376
376
|
export const GridProGenesisDatasource = React.forwardRef(function GridProGenesisDatasource(props, ref) {
|
|
377
377
|
const { onBaseDatasourceError, onDatasourceError, onBaseDatasourceConnected, onDatasourceLoadingFinished, onDatasourceNoDataAvailable, onDatasourceDataChanged, onDatasourceInitialize, onDatasourceDestroy, onDatasourceDataCleared, onDatasourceSchemaUpdated, onDatasourceFiltersRestored, onDatasourceDataLoaded, onDatasourceLoadingStarted, onDatasourceMoreDataAvailable, onDatasourceReady, onDatasourceInit, onMoreRowsChanged, onDatasourceSizeChanged, children, ...rest } = props;
|
|
378
378
|
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.491.
|
|
4
|
+
"version": "14.491.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.491.
|
|
44
|
-
"@genesislcap/genx": "14.491.
|
|
45
|
-
"@genesislcap/rollup-builder": "14.491.
|
|
46
|
-
"@genesislcap/ts-builder": "14.491.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "14.491.
|
|
48
|
-
"@genesislcap/vite-builder": "14.491.
|
|
49
|
-
"@genesislcap/webpack-builder": "14.491.
|
|
43
|
+
"@genesislcap/foundation-testing": "14.491.1",
|
|
44
|
+
"@genesislcap/genx": "14.491.1",
|
|
45
|
+
"@genesislcap/rollup-builder": "14.491.1",
|
|
46
|
+
"@genesislcap/ts-builder": "14.491.1",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "14.491.1",
|
|
48
|
+
"@genesislcap/vite-builder": "14.491.1",
|
|
49
|
+
"@genesislcap/webpack-builder": "14.491.1"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@genesislcap/foundation-comms": "14.491.
|
|
53
|
-
"@genesislcap/foundation-criteria": "14.491.
|
|
54
|
-
"@genesislcap/foundation-logger": "14.491.
|
|
55
|
-
"@genesislcap/foundation-ui": "14.491.
|
|
56
|
-
"@genesislcap/foundation-utils": "14.491.
|
|
52
|
+
"@genesislcap/foundation-comms": "14.491.1",
|
|
53
|
+
"@genesislcap/foundation-criteria": "14.491.1",
|
|
54
|
+
"@genesislcap/foundation-logger": "14.491.1",
|
|
55
|
+
"@genesislcap/foundation-ui": "14.491.1",
|
|
56
|
+
"@genesislcap/foundation-utils": "14.491.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": "
|
|
94
|
+
"gitHead": "f4f0c1e530c16f54fda208dd503b79f14cc9200c"
|
|
95
95
|
}
|