@genesislcap/grid-pro 14.458.0 → 14.458.1-GENC-0.2

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.
@@ -88,51 +88,6 @@ export declare const GridProCell: React.ForwardRefExoticComponent<
88
88
  >;
89
89
  export type GridProCellRef = GridProCellWC;
90
90
 
91
- export declare const DateEditor: React.ForwardRefExoticComponent<
92
- React.PropsWithChildren<
93
- Omit<PublicOf<DateEditorWC>, 'children' | 'style'> &
94
- HTMLWCProps & {
95
- }
96
- > & React.RefAttributes<DateEditorWC>
97
- >;
98
- export type DateEditorRef = DateEditorWC;
99
-
100
- export declare const MultiselectEditor: React.ForwardRefExoticComponent<
101
- React.PropsWithChildren<
102
- Omit<PublicOf<MultiselectEditorWC>, 'children' | 'style'> &
103
- HTMLWCProps & {
104
- }
105
- > & React.RefAttributes<MultiselectEditorWC>
106
- >;
107
- export type MultiselectEditorRef = MultiselectEditorWC;
108
-
109
- export declare const NumberEditor: React.ForwardRefExoticComponent<
110
- React.PropsWithChildren<
111
- Omit<PublicOf<NumberEditorWC>, 'children' | 'style'> &
112
- HTMLWCProps & {
113
- }
114
- > & React.RefAttributes<NumberEditorWC>
115
- >;
116
- export type NumberEditorRef = NumberEditorWC;
117
-
118
- export declare const SelectEditor: React.ForwardRefExoticComponent<
119
- React.PropsWithChildren<
120
- Omit<PublicOf<SelectEditorWC>, 'children' | 'style'> &
121
- HTMLWCProps & {
122
- }
123
- > & React.RefAttributes<SelectEditorWC>
124
- >;
125
- export type SelectEditorRef = SelectEditorWC;
126
-
127
- export declare const StringEditor: React.ForwardRefExoticComponent<
128
- React.PropsWithChildren<
129
- Omit<PublicOf<StringEditorWC>, 'children' | 'style'> &
130
- HTMLWCProps & {
131
- }
132
- > & React.RefAttributes<StringEditorWC>
133
- >;
134
- export type StringEditorRef = StringEditorWC;
135
-
136
91
  export declare const ActionRenderer: React.ForwardRefExoticComponent<
137
92
  React.PropsWithChildren<
138
93
  Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
@@ -305,4 +260,49 @@ export declare const MulticolumnDropdown: React.ForwardRefExoticComponent<
305
260
  >;
306
261
  export type MulticolumnDropdownRef = MulticolumnDropdownWC;
307
262
 
263
+ export declare const DateEditor: React.ForwardRefExoticComponent<
264
+ React.PropsWithChildren<
265
+ Omit<PublicOf<DateEditorWC>, 'children' | 'style'> &
266
+ HTMLWCProps & {
267
+ }
268
+ > & React.RefAttributes<DateEditorWC>
269
+ >;
270
+ export type DateEditorRef = DateEditorWC;
271
+
272
+ export declare const MultiselectEditor: React.ForwardRefExoticComponent<
273
+ React.PropsWithChildren<
274
+ Omit<PublicOf<MultiselectEditorWC>, 'children' | 'style'> &
275
+ HTMLWCProps & {
276
+ }
277
+ > & React.RefAttributes<MultiselectEditorWC>
278
+ >;
279
+ export type MultiselectEditorRef = MultiselectEditorWC;
280
+
281
+ export declare const NumberEditor: React.ForwardRefExoticComponent<
282
+ React.PropsWithChildren<
283
+ Omit<PublicOf<NumberEditorWC>, 'children' | 'style'> &
284
+ HTMLWCProps & {
285
+ }
286
+ > & React.RefAttributes<NumberEditorWC>
287
+ >;
288
+ export type NumberEditorRef = NumberEditorWC;
289
+
290
+ export declare const SelectEditor: React.ForwardRefExoticComponent<
291
+ React.PropsWithChildren<
292
+ Omit<PublicOf<SelectEditorWC>, 'children' | 'style'> &
293
+ HTMLWCProps & {
294
+ }
295
+ > & React.RefAttributes<SelectEditorWC>
296
+ >;
297
+ export type SelectEditorRef = SelectEditorWC;
298
+
299
+ export declare const StringEditor: React.ForwardRefExoticComponent<
300
+ React.PropsWithChildren<
301
+ Omit<PublicOf<StringEditorWC>, 'children' | 'style'> &
302
+ HTMLWCProps & {
303
+ }
304
+ > & React.RefAttributes<StringEditorWC>
305
+ >;
306
+ export type StringEditorRef = StringEditorWC;
307
+
308
308
  export {};
package/dist/react.cjs CHANGED
@@ -96,31 +96,6 @@ const GridProCell = React.forwardRef(function GridProCell(props, ref) {
96
96
  return React.createElement(customElements.getName(GridProCellWC) ?? 'grid-pro-cell', { ...rest, ref }, children);
97
97
  });
98
98
 
99
- const DateEditor = React.forwardRef(function DateEditor(props, ref) {
100
- const { children, ...rest } = props;
101
- return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
102
- });
103
-
104
- const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
105
- const { children, ...rest } = props;
106
- return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
107
- });
108
-
109
- const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
110
- const { children, ...rest } = props;
111
- return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
112
- });
113
-
114
- const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
115
- const { children, ...rest } = props;
116
- return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
117
- });
118
-
119
- const StringEditor = React.forwardRef(function StringEditor(props, ref) {
120
- const { children, ...rest } = props;
121
- return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
122
- });
123
-
124
99
  const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
125
100
  const { children, ...rest } = props;
126
101
  return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
@@ -482,15 +457,35 @@ const MulticolumnDropdown = React.forwardRef(function MulticolumnDropdown(props,
482
457
  return React.createElement(customElements.getName(MulticolumnDropdownWC) ?? '%%prefix%%-multicolumn-dropdown', { ...rest, ref }, children);
483
458
  });
484
459
 
460
+ const DateEditor = React.forwardRef(function DateEditor(props, ref) {
461
+ const { children, ...rest } = props;
462
+ return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
463
+ });
464
+
465
+ const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
466
+ const { children, ...rest } = props;
467
+ return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
468
+ });
469
+
470
+ const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
471
+ const { children, ...rest } = props;
472
+ return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
473
+ });
474
+
475
+ const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
476
+ const { children, ...rest } = props;
477
+ return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
478
+ });
479
+
480
+ const StringEditor = React.forwardRef(function StringEditor(props, ref) {
481
+ const { children, ...rest } = props;
482
+ return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
483
+ });
484
+
485
485
  module.exports = {
486
486
  GridProBeta,
487
487
  GridPro,
488
488
  GridProCell,
489
- DateEditor,
490
- MultiselectEditor,
491
- NumberEditor,
492
- SelectEditor,
493
- StringEditor,
494
489
  ActionRenderer,
495
490
  ActionsMenuRenderer,
496
491
  BooleanRenderer,
@@ -504,4 +499,9 @@ module.exports = {
504
499
  GridProServerSideDatasource,
505
500
  GridProGenesisDatasource,
506
501
  MulticolumnDropdown,
502
+ DateEditor,
503
+ MultiselectEditor,
504
+ NumberEditor,
505
+ SelectEditor,
506
+ StringEditor,
507
507
  };
package/dist/react.mjs CHANGED
@@ -94,31 +94,6 @@ export const GridProCell = React.forwardRef(function GridProCell(props, ref) {
94
94
  return React.createElement(customElements.getName(GridProCellWC) ?? 'grid-pro-cell', { ...rest, ref }, children);
95
95
  });
96
96
 
97
- export const DateEditor = React.forwardRef(function DateEditor(props, ref) {
98
- const { children, ...rest } = props;
99
- return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
100
- });
101
-
102
- export const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
103
- const { children, ...rest } = props;
104
- return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
105
- });
106
-
107
- export const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
108
- const { children, ...rest } = props;
109
- return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
110
- });
111
-
112
- export const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
113
- const { children, ...rest } = props;
114
- return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
115
- });
116
-
117
- export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
118
- const { children, ...rest } = props;
119
- return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
120
- });
121
-
122
97
  export const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
123
98
  const { children, ...rest } = props;
124
99
  return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
@@ -479,3 +454,28 @@ export const MulticolumnDropdown = React.forwardRef(function MulticolumnDropdown
479
454
  const { children, ...rest } = props;
480
455
  return React.createElement(customElements.getName(MulticolumnDropdownWC) ?? '%%prefix%%-multicolumn-dropdown', { ...rest, ref }, children);
481
456
  });
457
+
458
+ export const DateEditor = React.forwardRef(function DateEditor(props, ref) {
459
+ const { children, ...rest } = props;
460
+ return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
461
+ });
462
+
463
+ export const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
464
+ const { children, ...rest } = props;
465
+ return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
466
+ });
467
+
468
+ export const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
469
+ const { children, ...rest } = props;
470
+ return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
471
+ });
472
+
473
+ export const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
474
+ const { children, ...rest } = props;
475
+ return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
476
+ });
477
+
478
+ export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
479
+ const { children, ...rest } = props;
480
+ return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
481
+ });
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.458.0",
4
+ "version": "14.458.1-GENC-0.2",
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.458.0",
44
- "@genesislcap/genx": "14.458.0",
45
- "@genesislcap/rollup-builder": "14.458.0",
46
- "@genesislcap/ts-builder": "14.458.0",
47
- "@genesislcap/uvu-playwright-builder": "14.458.0",
48
- "@genesislcap/vite-builder": "14.458.0",
49
- "@genesislcap/webpack-builder": "14.458.0"
43
+ "@genesislcap/foundation-testing": "14.458.1-GENC-0.2",
44
+ "@genesislcap/genx": "14.458.1-GENC-0.2",
45
+ "@genesislcap/rollup-builder": "14.458.1-GENC-0.2",
46
+ "@genesislcap/ts-builder": "14.458.1-GENC-0.2",
47
+ "@genesislcap/uvu-playwright-builder": "14.458.1-GENC-0.2",
48
+ "@genesislcap/vite-builder": "14.458.1-GENC-0.2",
49
+ "@genesislcap/webpack-builder": "14.458.1-GENC-0.2"
50
50
  },
51
51
  "dependencies": {
52
- "@genesislcap/foundation-comms": "14.458.0",
53
- "@genesislcap/foundation-criteria": "14.458.0",
54
- "@genesislcap/foundation-logger": "14.458.0",
55
- "@genesislcap/foundation-ui": "14.458.0",
56
- "@genesislcap/foundation-utils": "14.458.0",
52
+ "@genesislcap/foundation-comms": "14.458.1-GENC-0.2",
53
+ "@genesislcap/foundation-criteria": "14.458.1-GENC-0.2",
54
+ "@genesislcap/foundation-logger": "14.458.1-GENC-0.2",
55
+ "@genesislcap/foundation-ui": "14.458.1-GENC-0.2",
56
+ "@genesislcap/foundation-utils": "14.458.1-GENC-0.2",
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": "be04e474ce5154f026d9d01372eec7c6a24b012f"
94
+ "gitHead": "7506d57ff2fb4954bdba714195727a48ebb3d9a3"
95
95
  }