@genesislcap/grid-pro 14.481.1 → 14.481.2-alpha-829ad82.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.
- package/dist/custom-elements.json +518 -518
- package/dist/dts/react.d.ts +9 -9
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +14 -14
package/dist/dts/react.d.ts
CHANGED
|
@@ -133,15 +133,6 @@ export declare const StringEditor: React.ForwardRefExoticComponent<
|
|
|
133
133
|
>;
|
|
134
134
|
export type StringEditorRef = StringEditorWC;
|
|
135
135
|
|
|
136
|
-
export declare const GridProColumn: React.ForwardRefExoticComponent<
|
|
137
|
-
React.PropsWithChildren<
|
|
138
|
-
Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
|
|
139
|
-
HTMLWCProps & {
|
|
140
|
-
}
|
|
141
|
-
> & React.RefAttributes<GridProColumnWC>
|
|
142
|
-
>;
|
|
143
|
-
export type GridProColumnRef = GridProColumnWC;
|
|
144
|
-
|
|
145
136
|
export declare const ActionRenderer: React.ForwardRefExoticComponent<
|
|
146
137
|
React.PropsWithChildren<
|
|
147
138
|
Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
|
|
@@ -269,6 +260,15 @@ export declare const GridProServerSideDatasource: React.ForwardRefExoticComponen
|
|
|
269
260
|
>;
|
|
270
261
|
export type GridProServerSideDatasourceRef = GridProServerSideDatasourceWC;
|
|
271
262
|
|
|
263
|
+
export declare const GridProColumn: React.ForwardRefExoticComponent<
|
|
264
|
+
React.PropsWithChildren<
|
|
265
|
+
Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
|
|
266
|
+
HTMLWCProps & {
|
|
267
|
+
}
|
|
268
|
+
> & React.RefAttributes<GridProColumnWC>
|
|
269
|
+
>;
|
|
270
|
+
export type GridProColumnRef = GridProColumnWC;
|
|
271
|
+
|
|
272
272
|
export declare const GridProGenesisDatasource: React.ForwardRefExoticComponent<
|
|
273
273
|
React.PropsWithChildren<
|
|
274
274
|
Omit<PublicOf<GridProGenesisDatasourceWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -121,11 +121,6 @@ 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
|
-
|
|
129
124
|
const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
|
|
130
125
|
const { children, ...rest } = props;
|
|
131
126
|
return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
@@ -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);
|
|
@@ -491,7 +491,6 @@ module.exports = {
|
|
|
491
491
|
NumberEditor,
|
|
492
492
|
SelectEditor,
|
|
493
493
|
StringEditor,
|
|
494
|
-
GridProColumn,
|
|
495
494
|
ActionRenderer,
|
|
496
495
|
ActionsMenuRenderer,
|
|
497
496
|
BooleanRenderer,
|
|
@@ -502,6 +501,7 @@ module.exports = {
|
|
|
502
501
|
AgTextRenderer,
|
|
503
502
|
GridProClientSideDatasource,
|
|
504
503
|
GridProServerSideDatasource,
|
|
504
|
+
GridProColumn,
|
|
505
505
|
GridProGenesisDatasource,
|
|
506
506
|
MulticolumnDropdown,
|
|
507
507
|
};
|
package/dist/react.mjs
CHANGED
|
@@ -119,11 +119,6 @@ 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
|
-
|
|
127
122
|
export const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
|
|
128
123
|
const { children, ...rest } = props;
|
|
129
124
|
return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
@@ -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.481.
|
|
4
|
+
"version": "14.481.2-alpha-829ad82.0",
|
|
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.481.
|
|
44
|
-
"@genesislcap/genx": "14.481.
|
|
45
|
-
"@genesislcap/rollup-builder": "14.481.
|
|
46
|
-
"@genesislcap/ts-builder": "14.481.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "14.481.
|
|
48
|
-
"@genesislcap/vite-builder": "14.481.
|
|
49
|
-
"@genesislcap/webpack-builder": "14.481.
|
|
43
|
+
"@genesislcap/foundation-testing": "14.481.2-alpha-829ad82.0",
|
|
44
|
+
"@genesislcap/genx": "14.481.2-alpha-829ad82.0",
|
|
45
|
+
"@genesislcap/rollup-builder": "14.481.2-alpha-829ad82.0",
|
|
46
|
+
"@genesislcap/ts-builder": "14.481.2-alpha-829ad82.0",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "14.481.2-alpha-829ad82.0",
|
|
48
|
+
"@genesislcap/vite-builder": "14.481.2-alpha-829ad82.0",
|
|
49
|
+
"@genesislcap/webpack-builder": "14.481.2-alpha-829ad82.0"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@genesislcap/foundation-comms": "14.481.
|
|
53
|
-
"@genesislcap/foundation-criteria": "14.481.
|
|
54
|
-
"@genesislcap/foundation-logger": "14.481.
|
|
55
|
-
"@genesislcap/foundation-ui": "14.481.
|
|
56
|
-
"@genesislcap/foundation-utils": "14.481.
|
|
52
|
+
"@genesislcap/foundation-comms": "14.481.2-alpha-829ad82.0",
|
|
53
|
+
"@genesislcap/foundation-criteria": "14.481.2-alpha-829ad82.0",
|
|
54
|
+
"@genesislcap/foundation-logger": "14.481.2-alpha-829ad82.0",
|
|
55
|
+
"@genesislcap/foundation-ui": "14.481.2-alpha-829ad82.0",
|
|
56
|
+
"@genesislcap/foundation-utils": "14.481.2-alpha-829ad82.0",
|
|
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": "074779b7bd0998af5157821fa5739ecce0ac36a8"
|
|
95
95
|
}
|