@genesislcap/grid-pro 14.429.2-alpha-0d0a008.0 → 14.429.3
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 +379 -379
- 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
|
@@ -79,15 +79,6 @@ export declare const GridPro: React.ForwardRefExoticComponent<
|
|
|
79
79
|
>;
|
|
80
80
|
export type GridProRef = GridProWC;
|
|
81
81
|
|
|
82
|
-
export declare const GridProCell: React.ForwardRefExoticComponent<
|
|
83
|
-
React.PropsWithChildren<
|
|
84
|
-
Omit<PublicOf<GridProCellWC>, 'children' | 'style'> &
|
|
85
|
-
HTMLWCProps & {
|
|
86
|
-
}
|
|
87
|
-
> & React.RefAttributes<GridProCellWC>
|
|
88
|
-
>;
|
|
89
|
-
export type GridProCellRef = GridProCellWC;
|
|
90
|
-
|
|
91
82
|
export declare const DateEditor: React.ForwardRefExoticComponent<
|
|
92
83
|
React.PropsWithChildren<
|
|
93
84
|
Omit<PublicOf<DateEditorWC>, 'children' | 'style'> &
|
|
@@ -133,6 +124,15 @@ export declare const StringEditor: React.ForwardRefExoticComponent<
|
|
|
133
124
|
>;
|
|
134
125
|
export type StringEditorRef = StringEditorWC;
|
|
135
126
|
|
|
127
|
+
export declare const GridProCell: React.ForwardRefExoticComponent<
|
|
128
|
+
React.PropsWithChildren<
|
|
129
|
+
Omit<PublicOf<GridProCellWC>, 'children' | 'style'> &
|
|
130
|
+
HTMLWCProps & {
|
|
131
|
+
}
|
|
132
|
+
> & React.RefAttributes<GridProCellWC>
|
|
133
|
+
>;
|
|
134
|
+
export type GridProCellRef = GridProCellWC;
|
|
135
|
+
|
|
136
136
|
export declare const GridProColumn: React.ForwardRefExoticComponent<
|
|
137
137
|
React.PropsWithChildren<
|
|
138
138
|
Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -91,11 +91,6 @@ 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
|
-
|
|
99
94
|
const DateEditor = React.forwardRef(function DateEditor(props, ref) {
|
|
100
95
|
const { children, ...rest } = props;
|
|
101
96
|
return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
@@ -121,6 +116,11 @@ const StringEditor = React.forwardRef(function StringEditor(props, ref) {
|
|
|
121
116
|
return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
122
117
|
});
|
|
123
118
|
|
|
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 GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
|
|
125
125
|
const { children, ...rest } = props;
|
|
126
126
|
return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
|
|
@@ -485,12 +485,12 @@ const MulticolumnDropdown = React.forwardRef(function MulticolumnDropdown(props,
|
|
|
485
485
|
module.exports = {
|
|
486
486
|
GridProBeta,
|
|
487
487
|
GridPro,
|
|
488
|
-
GridProCell,
|
|
489
488
|
DateEditor,
|
|
490
489
|
MultiselectEditor,
|
|
491
490
|
NumberEditor,
|
|
492
491
|
SelectEditor,
|
|
493
492
|
StringEditor,
|
|
493
|
+
GridProCell,
|
|
494
494
|
GridProColumn,
|
|
495
495
|
ActionRenderer,
|
|
496
496
|
ActionsMenuRenderer,
|
package/dist/react.mjs
CHANGED
|
@@ -89,11 +89,6 @@ 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
|
-
|
|
97
92
|
export const DateEditor = React.forwardRef(function DateEditor(props, ref) {
|
|
98
93
|
const { children, ...rest } = props;
|
|
99
94
|
return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
@@ -119,6 +114,11 @@ export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
|
|
|
119
114
|
return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
120
115
|
});
|
|
121
116
|
|
|
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 GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
|
|
123
123
|
const { children, ...rest } = props;
|
|
124
124
|
return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...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": "14.429.
|
|
4
|
+
"version": "14.429.3",
|
|
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.429.
|
|
44
|
-
"@genesislcap/genx": "14.429.
|
|
45
|
-
"@genesislcap/rollup-builder": "14.429.
|
|
46
|
-
"@genesislcap/ts-builder": "14.429.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "14.429.
|
|
48
|
-
"@genesislcap/vite-builder": "14.429.
|
|
49
|
-
"@genesislcap/webpack-builder": "14.429.
|
|
43
|
+
"@genesislcap/foundation-testing": "14.429.3",
|
|
44
|
+
"@genesislcap/genx": "14.429.3",
|
|
45
|
+
"@genesislcap/rollup-builder": "14.429.3",
|
|
46
|
+
"@genesislcap/ts-builder": "14.429.3",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "14.429.3",
|
|
48
|
+
"@genesislcap/vite-builder": "14.429.3",
|
|
49
|
+
"@genesislcap/webpack-builder": "14.429.3"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@genesislcap/foundation-comms": "14.429.
|
|
53
|
-
"@genesislcap/foundation-criteria": "14.429.
|
|
54
|
-
"@genesislcap/foundation-logger": "14.429.
|
|
55
|
-
"@genesislcap/foundation-ui": "14.429.
|
|
56
|
-
"@genesislcap/foundation-utils": "14.429.
|
|
52
|
+
"@genesislcap/foundation-comms": "14.429.3",
|
|
53
|
+
"@genesislcap/foundation-criteria": "14.429.3",
|
|
54
|
+
"@genesislcap/foundation-logger": "14.429.3",
|
|
55
|
+
"@genesislcap/foundation-ui": "14.429.3",
|
|
56
|
+
"@genesislcap/foundation-utils": "14.429.3",
|
|
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": "546466d5d7bcdf8bd5bdca78e61cec9828166ec4"
|
|
95
95
|
}
|