@genesislcap/grid-pro 15.26.0 → 15.27.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 +541 -541
- package/dist/dts/react.d.ts +9 -9
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +13 -13
package/dist/dts/react.d.ts
CHANGED
|
@@ -136,6 +136,15 @@ export declare const StringEditor: React.ForwardRefExoticComponent<
|
|
|
136
136
|
>;
|
|
137
137
|
export type StringEditorRef = StringEditorWC;
|
|
138
138
|
|
|
139
|
+
export declare const GridProColumn: React.ForwardRefExoticComponent<
|
|
140
|
+
React.PropsWithChildren<
|
|
141
|
+
Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
|
|
142
|
+
HTMLWCProps & {
|
|
143
|
+
}
|
|
144
|
+
> & React.RefAttributes<GridProColumnWC>
|
|
145
|
+
>;
|
|
146
|
+
export type GridProColumnRef = GridProColumnWC;
|
|
147
|
+
|
|
139
148
|
export declare const ActionRenderer: React.ForwardRefExoticComponent<
|
|
140
149
|
React.PropsWithChildren<
|
|
141
150
|
Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
|
|
@@ -208,15 +217,6 @@ export declare const AgTextRenderer: React.ForwardRefExoticComponent<
|
|
|
208
217
|
>;
|
|
209
218
|
export type AgTextRendererRef = AgTextRendererWC;
|
|
210
219
|
|
|
211
|
-
export declare const GridProColumn: React.ForwardRefExoticComponent<
|
|
212
|
-
React.PropsWithChildren<
|
|
213
|
-
Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
|
|
214
|
-
HTMLWCProps & {
|
|
215
|
-
}
|
|
216
|
-
> & React.RefAttributes<GridProColumnWC>
|
|
217
|
-
>;
|
|
218
|
-
export type GridProColumnRef = GridProColumnWC;
|
|
219
|
-
|
|
220
220
|
export declare const ColumnSelection: React.ForwardRefExoticComponent<
|
|
221
221
|
React.PropsWithChildren<
|
|
222
222
|
Omit<PublicOf<ColumnSelectionWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -123,6 +123,11 @@ const StringEditor = React.forwardRef(function StringEditor(props, ref) {
|
|
|
123
123
|
return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
124
124
|
});
|
|
125
125
|
|
|
126
|
+
const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
|
|
127
|
+
const { children, ...rest } = props;
|
|
128
|
+
return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
|
|
129
|
+
});
|
|
130
|
+
|
|
126
131
|
const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
|
|
127
132
|
const { children, ...rest } = props;
|
|
128
133
|
return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
@@ -163,11 +168,6 @@ const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
|
|
|
163
168
|
return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
|
|
164
169
|
});
|
|
165
170
|
|
|
166
|
-
const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
|
|
167
|
-
const { children, ...rest } = props;
|
|
168
|
-
return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
|
|
169
|
-
});
|
|
170
|
-
|
|
171
171
|
const ColumnSelection = React.forwardRef(function ColumnSelection(props, ref) {
|
|
172
172
|
const { children, ...rest } = props;
|
|
173
173
|
return React.createElement(customElements.getName(ColumnSelectionWC) ?? '%%prefix%%-column-selection', { ...rest, ref }, children);
|
|
@@ -590,6 +590,7 @@ module.exports = {
|
|
|
590
590
|
NumberEditor,
|
|
591
591
|
SelectEditor,
|
|
592
592
|
StringEditor,
|
|
593
|
+
GridProColumn,
|
|
593
594
|
ActionRenderer,
|
|
594
595
|
ActionsMenuRenderer,
|
|
595
596
|
BooleanRenderer,
|
|
@@ -598,7 +599,6 @@ module.exports = {
|
|
|
598
599
|
StatusPillRenderer,
|
|
599
600
|
AgTextFieldRenderer,
|
|
600
601
|
AgTextRenderer,
|
|
601
|
-
GridProColumn,
|
|
602
602
|
ColumnSelection,
|
|
603
603
|
GridProClientSideDatasource,
|
|
604
604
|
GridProInfiniteDatasource,
|
package/dist/react.mjs
CHANGED
|
@@ -121,6 +121,11 @@ export 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
|
+
export 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
|
export 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 @@ export const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, re
|
|
|
161
166
|
return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
|
|
162
167
|
});
|
|
163
168
|
|
|
164
|
-
export 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
|
export const ColumnSelection = React.forwardRef(function ColumnSelection(props, ref) {
|
|
170
170
|
const { children, ...rest } = props;
|
|
171
171
|
return React.createElement(customElements.getName(ColumnSelectionWC) ?? '%%prefix%%-column-selection', { ...rest, ref }, children);
|
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.
|
|
4
|
+
"version": "15.27.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": "15.
|
|
44
|
-
"@genesislcap/genx": "15.
|
|
45
|
-
"@genesislcap/rollup-builder": "15.
|
|
46
|
-
"@genesislcap/ts-builder": "15.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "15.
|
|
48
|
-
"@genesislcap/vite-builder": "15.
|
|
49
|
-
"@genesislcap/webpack-builder": "15.
|
|
43
|
+
"@genesislcap/foundation-testing": "15.27.0",
|
|
44
|
+
"@genesislcap/genx": "15.27.0",
|
|
45
|
+
"@genesislcap/rollup-builder": "15.27.0",
|
|
46
|
+
"@genesislcap/ts-builder": "15.27.0",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "15.27.0",
|
|
48
|
+
"@genesislcap/vite-builder": "15.27.0",
|
|
49
|
+
"@genesislcap/webpack-builder": "15.27.0"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@genesislcap/foundation-comms": "15.
|
|
53
|
-
"@genesislcap/foundation-criteria": "15.
|
|
54
|
-
"@genesislcap/foundation-logger": "15.
|
|
55
|
-
"@genesislcap/foundation-ui": "15.
|
|
56
|
-
"@genesislcap/foundation-utils": "15.
|
|
52
|
+
"@genesislcap/foundation-comms": "15.27.0",
|
|
53
|
+
"@genesislcap/foundation-criteria": "15.27.0",
|
|
54
|
+
"@genesislcap/foundation-logger": "15.27.0",
|
|
55
|
+
"@genesislcap/foundation-ui": "15.27.0",
|
|
56
|
+
"@genesislcap/foundation-utils": "15.27.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",
|