@genesislcap/grid-pro 14.431.0 → 14.432.1-FUI-2489.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 +344 -344
- package/dist/dts/multicolumn-dropdown/multicolumn-dropdown.template.d.ts.map +1 -1
- package/dist/dts/react.d.ts +9 -9
- package/dist/esm/cell-renderers/boolean.renderer.js +2 -2
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +14 -14
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multicolumn-dropdown.template.d.ts","sourceRoot":"","sources":["../../../src/multicolumn-dropdown/multicolumn-dropdown.template.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAGlE;;;;;GAKG;AACH,eAAO,MAAM,8BAA8B,
|
|
1
|
+
{"version":3,"file":"multicolumn-dropdown.template.d.ts","sourceRoot":"","sources":["../../../src/multicolumn-dropdown/multicolumn-dropdown.template.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAGlE;;;;;GAKG;AACH,eAAO,MAAM,8BAA8B,GACzC,qBAA2B,6EA8D1B,CAAC;AAEJ;;;GAGG;AACH,eAAO,MAAM,2BAA2B,0EAAmC,CAAC"}
|
package/dist/dts/react.d.ts
CHANGED
|
@@ -79,6 +79,15 @@ 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
|
+
|
|
82
91
|
export declare const DateEditor: React.ForwardRefExoticComponent<
|
|
83
92
|
React.PropsWithChildren<
|
|
84
93
|
Omit<PublicOf<DateEditorWC>, 'children' | 'style'> &
|
|
@@ -124,15 +133,6 @@ export declare const StringEditor: React.ForwardRefExoticComponent<
|
|
|
124
133
|
>;
|
|
125
134
|
export type StringEditorRef = StringEditorWC;
|
|
126
135
|
|
|
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 ActionRenderer: React.ForwardRefExoticComponent<
|
|
137
137
|
React.PropsWithChildren<
|
|
138
138
|
Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
|
|
@@ -57,7 +57,7 @@ export class BooleanRenderer extends FoundationElement {
|
|
|
57
57
|
const eventStarted = {
|
|
58
58
|
type: 'cellEditingStarted',
|
|
59
59
|
column: column,
|
|
60
|
-
colDef: column
|
|
60
|
+
colDef: column.getColDef(),
|
|
61
61
|
data: node.data,
|
|
62
62
|
node,
|
|
63
63
|
rowIndex: node.rowIndex,
|
|
@@ -71,7 +71,7 @@ export class BooleanRenderer extends FoundationElement {
|
|
|
71
71
|
const eventStopped = {
|
|
72
72
|
type: 'cellEditingStopped',
|
|
73
73
|
column: column,
|
|
74
|
-
colDef: column
|
|
74
|
+
colDef: column.getColDef(),
|
|
75
75
|
data: node.data,
|
|
76
76
|
node,
|
|
77
77
|
rowIndex: node.rowIndex,
|
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);
|
|
@@ -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,
|
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);
|
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.
|
|
4
|
+
"version": "14.432.1-FUI-2489.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.
|
|
44
|
-
"@genesislcap/genx": "14.
|
|
45
|
-
"@genesislcap/rollup-builder": "14.
|
|
46
|
-
"@genesislcap/ts-builder": "14.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
48
|
-
"@genesislcap/vite-builder": "14.
|
|
49
|
-
"@genesislcap/webpack-builder": "14.
|
|
43
|
+
"@genesislcap/foundation-testing": "14.432.1-FUI-2489.1",
|
|
44
|
+
"@genesislcap/genx": "14.432.1-FUI-2489.1",
|
|
45
|
+
"@genesislcap/rollup-builder": "14.432.1-FUI-2489.1",
|
|
46
|
+
"@genesislcap/ts-builder": "14.432.1-FUI-2489.1",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "14.432.1-FUI-2489.1",
|
|
48
|
+
"@genesislcap/vite-builder": "14.432.1-FUI-2489.1",
|
|
49
|
+
"@genesislcap/webpack-builder": "14.432.1-FUI-2489.1"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@genesislcap/foundation-comms": "14.
|
|
53
|
-
"@genesislcap/foundation-criteria": "14.
|
|
54
|
-
"@genesislcap/foundation-logger": "14.
|
|
55
|
-
"@genesislcap/foundation-ui": "14.
|
|
56
|
-
"@genesislcap/foundation-utils": "14.
|
|
52
|
+
"@genesislcap/foundation-comms": "14.432.1-FUI-2489.1",
|
|
53
|
+
"@genesislcap/foundation-criteria": "14.432.1-FUI-2489.1",
|
|
54
|
+
"@genesislcap/foundation-logger": "14.432.1-FUI-2489.1",
|
|
55
|
+
"@genesislcap/foundation-ui": "14.432.1-FUI-2489.1",
|
|
56
|
+
"@genesislcap/foundation-utils": "14.432.1-FUI-2489.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": "9bae1c5f931d4787041aae3536be9493c11e6312"
|
|
95
95
|
}
|