@genesislcap/grid-pro 15.29.0 → 15.30.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 +531 -531
- 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,15 +136,6 @@ 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
|
-
|
|
148
139
|
export declare const ActionRenderer: React.ForwardRefExoticComponent<
|
|
149
140
|
React.PropsWithChildren<
|
|
150
141
|
Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
|
|
@@ -217,6 +208,15 @@ export declare const AgTextRenderer: React.ForwardRefExoticComponent<
|
|
|
217
208
|
>;
|
|
218
209
|
export type AgTextRendererRef = AgTextRendererWC;
|
|
219
210
|
|
|
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,11 +123,6 @@ 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
|
-
|
|
131
126
|
const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
|
|
132
127
|
const { children, ...rest } = props;
|
|
133
128
|
return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
@@ -168,6 +163,11 @@ const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
|
|
|
168
163
|
return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
|
|
169
164
|
});
|
|
170
165
|
|
|
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,7 +590,6 @@ module.exports = {
|
|
|
590
590
|
NumberEditor,
|
|
591
591
|
SelectEditor,
|
|
592
592
|
StringEditor,
|
|
593
|
-
GridProColumn,
|
|
594
593
|
ActionRenderer,
|
|
595
594
|
ActionsMenuRenderer,
|
|
596
595
|
BooleanRenderer,
|
|
@@ -599,6 +598,7 @@ module.exports = {
|
|
|
599
598
|
StatusPillRenderer,
|
|
600
599
|
AgTextFieldRenderer,
|
|
601
600
|
AgTextRenderer,
|
|
601
|
+
GridProColumn,
|
|
602
602
|
ColumnSelection,
|
|
603
603
|
GridProClientSideDatasource,
|
|
604
604
|
GridProInfiniteDatasource,
|
package/dist/react.mjs
CHANGED
|
@@ -121,11 +121,6 @@ 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
|
-
|
|
129
124
|
export 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);
|
|
@@ -166,6 +161,11 @@ export const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, re
|
|
|
166
161
|
return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
|
|
167
162
|
});
|
|
168
163
|
|
|
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.30.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.30.0",
|
|
44
|
+
"@genesislcap/genx": "15.30.0",
|
|
45
|
+
"@genesislcap/rollup-builder": "15.30.0",
|
|
46
|
+
"@genesislcap/ts-builder": "15.30.0",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "15.30.0",
|
|
48
|
+
"@genesislcap/vite-builder": "15.30.0",
|
|
49
|
+
"@genesislcap/webpack-builder": "15.30.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.30.0",
|
|
53
|
+
"@genesislcap/foundation-criteria": "15.30.0",
|
|
54
|
+
"@genesislcap/foundation-logger": "15.30.0",
|
|
55
|
+
"@genesislcap/foundation-ui": "15.30.0",
|
|
56
|
+
"@genesislcap/foundation-utils": "15.30.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",
|