@genesislcap/grid-pro 15.23.1-agent-rules.1 → 15.23.1-agent-log-submit.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.
@@ -90,51 +90,6 @@ export declare const GridProCell: React.ForwardRefExoticComponent<
90
90
  >;
91
91
  export type GridProCellRef = GridProCellWC;
92
92
 
93
- export declare const DateEditor: React.ForwardRefExoticComponent<
94
- React.PropsWithChildren<
95
- Omit<PublicOf<DateEditorWC>, 'children' | 'style'> &
96
- HTMLWCProps & {
97
- }
98
- > & React.RefAttributes<DateEditorWC>
99
- >;
100
- export type DateEditorRef = DateEditorWC;
101
-
102
- export declare const MultiselectEditor: React.ForwardRefExoticComponent<
103
- React.PropsWithChildren<
104
- Omit<PublicOf<MultiselectEditorWC>, 'children' | 'style'> &
105
- HTMLWCProps & {
106
- }
107
- > & React.RefAttributes<MultiselectEditorWC>
108
- >;
109
- export type MultiselectEditorRef = MultiselectEditorWC;
110
-
111
- export declare const NumberEditor: React.ForwardRefExoticComponent<
112
- React.PropsWithChildren<
113
- Omit<PublicOf<NumberEditorWC>, 'children' | 'style'> &
114
- HTMLWCProps & {
115
- }
116
- > & React.RefAttributes<NumberEditorWC>
117
- >;
118
- export type NumberEditorRef = NumberEditorWC;
119
-
120
- export declare const SelectEditor: React.ForwardRefExoticComponent<
121
- React.PropsWithChildren<
122
- Omit<PublicOf<SelectEditorWC>, 'children' | 'style'> &
123
- HTMLWCProps & {
124
- }
125
- > & React.RefAttributes<SelectEditorWC>
126
- >;
127
- export type SelectEditorRef = SelectEditorWC;
128
-
129
- export declare const StringEditor: React.ForwardRefExoticComponent<
130
- React.PropsWithChildren<
131
- Omit<PublicOf<StringEditorWC>, 'children' | 'style'> &
132
- HTMLWCProps & {
133
- }
134
- > & React.RefAttributes<StringEditorWC>
135
- >;
136
- export type StringEditorRef = StringEditorWC;
137
-
138
93
  export declare const ActionRenderer: React.ForwardRefExoticComponent<
139
94
  React.PropsWithChildren<
140
95
  Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
@@ -207,6 +162,51 @@ export declare const AgTextRenderer: React.ForwardRefExoticComponent<
207
162
  >;
208
163
  export type AgTextRendererRef = AgTextRendererWC;
209
164
 
165
+ export declare const DateEditor: React.ForwardRefExoticComponent<
166
+ React.PropsWithChildren<
167
+ Omit<PublicOf<DateEditorWC>, 'children' | 'style'> &
168
+ HTMLWCProps & {
169
+ }
170
+ > & React.RefAttributes<DateEditorWC>
171
+ >;
172
+ export type DateEditorRef = DateEditorWC;
173
+
174
+ export declare const MultiselectEditor: React.ForwardRefExoticComponent<
175
+ React.PropsWithChildren<
176
+ Omit<PublicOf<MultiselectEditorWC>, 'children' | 'style'> &
177
+ HTMLWCProps & {
178
+ }
179
+ > & React.RefAttributes<MultiselectEditorWC>
180
+ >;
181
+ export type MultiselectEditorRef = MultiselectEditorWC;
182
+
183
+ export declare const NumberEditor: React.ForwardRefExoticComponent<
184
+ React.PropsWithChildren<
185
+ Omit<PublicOf<NumberEditorWC>, 'children' | 'style'> &
186
+ HTMLWCProps & {
187
+ }
188
+ > & React.RefAttributes<NumberEditorWC>
189
+ >;
190
+ export type NumberEditorRef = NumberEditorWC;
191
+
192
+ export declare const SelectEditor: React.ForwardRefExoticComponent<
193
+ React.PropsWithChildren<
194
+ Omit<PublicOf<SelectEditorWC>, 'children' | 'style'> &
195
+ HTMLWCProps & {
196
+ }
197
+ > & React.RefAttributes<SelectEditorWC>
198
+ >;
199
+ export type SelectEditorRef = SelectEditorWC;
200
+
201
+ export declare const StringEditor: React.ForwardRefExoticComponent<
202
+ React.PropsWithChildren<
203
+ Omit<PublicOf<StringEditorWC>, 'children' | 'style'> &
204
+ HTMLWCProps & {
205
+ }
206
+ > & React.RefAttributes<StringEditorWC>
207
+ >;
208
+ export type StringEditorRef = StringEditorWC;
209
+
210
210
  export declare const GridProColumn: React.ForwardRefExoticComponent<
211
211
  React.PropsWithChildren<
212
212
  Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
package/dist/react.cjs CHANGED
@@ -97,31 +97,6 @@ const GridProCell = React.forwardRef(function GridProCell(props, ref) {
97
97
  return React.createElement(customElements.getName(GridProCellWC) ?? 'grid-pro-cell', { ...rest, ref }, children);
98
98
  });
99
99
 
100
- const DateEditor = React.forwardRef(function DateEditor(props, ref) {
101
- const { children, ...rest } = props;
102
- return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
103
- });
104
-
105
- const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
106
- const { children, ...rest } = props;
107
- return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
108
- });
109
-
110
- const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
111
- const { children, ...rest } = props;
112
- return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
113
- });
114
-
115
- const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
116
- const { children, ...rest } = props;
117
- return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
118
- });
119
-
120
- const StringEditor = React.forwardRef(function StringEditor(props, ref) {
121
- const { children, ...rest } = props;
122
- return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
123
- });
124
-
125
100
  const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
126
101
  const { children, ...rest } = props;
127
102
  return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
@@ -162,6 +137,31 @@ const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
162
137
  return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
163
138
  });
164
139
 
140
+ const DateEditor = React.forwardRef(function DateEditor(props, ref) {
141
+ const { children, ...rest } = props;
142
+ return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
143
+ });
144
+
145
+ const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
146
+ const { children, ...rest } = props;
147
+ return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
148
+ });
149
+
150
+ const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
151
+ const { children, ...rest } = props;
152
+ return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
153
+ });
154
+
155
+ const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
156
+ const { children, ...rest } = props;
157
+ return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
158
+ });
159
+
160
+ const StringEditor = React.forwardRef(function StringEditor(props, ref) {
161
+ const { children, ...rest } = props;
162
+ return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
163
+ });
164
+
165
165
  const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
166
166
  const { children, ...rest } = props;
167
167
  return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
@@ -569,11 +569,6 @@ module.exports = {
569
569
  GridProBeta,
570
570
  GridPro,
571
571
  GridProCell,
572
- DateEditor,
573
- MultiselectEditor,
574
- NumberEditor,
575
- SelectEditor,
576
- StringEditor,
577
572
  ActionRenderer,
578
573
  ActionsMenuRenderer,
579
574
  BooleanRenderer,
@@ -582,6 +577,11 @@ module.exports = {
582
577
  StatusPillRenderer,
583
578
  AgTextFieldRenderer,
584
579
  AgTextRenderer,
580
+ DateEditor,
581
+ MultiselectEditor,
582
+ NumberEditor,
583
+ SelectEditor,
584
+ StringEditor,
585
585
  GridProColumn,
586
586
  GridProClientSideDatasource,
587
587
  GridProInfiniteDatasource,
package/dist/react.mjs CHANGED
@@ -95,31 +95,6 @@ export const GridProCell = React.forwardRef(function GridProCell(props, ref) {
95
95
  return React.createElement(customElements.getName(GridProCellWC) ?? 'grid-pro-cell', { ...rest, ref }, children);
96
96
  });
97
97
 
98
- export const DateEditor = React.forwardRef(function DateEditor(props, ref) {
99
- const { children, ...rest } = props;
100
- return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
101
- });
102
-
103
- export const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
104
- const { children, ...rest } = props;
105
- return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
106
- });
107
-
108
- export const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
109
- const { children, ...rest } = props;
110
- return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
111
- });
112
-
113
- export const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
114
- const { children, ...rest } = props;
115
- return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
116
- });
117
-
118
- export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
119
- const { children, ...rest } = props;
120
- return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
121
- });
122
-
123
98
  export const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
124
99
  const { children, ...rest } = props;
125
100
  return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
@@ -160,6 +135,31 @@ export const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, re
160
135
  return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
161
136
  });
162
137
 
138
+ export const DateEditor = React.forwardRef(function DateEditor(props, ref) {
139
+ const { children, ...rest } = props;
140
+ return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
141
+ });
142
+
143
+ export const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
144
+ const { children, ...rest } = props;
145
+ return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
146
+ });
147
+
148
+ export const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
149
+ const { children, ...rest } = props;
150
+ return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
151
+ });
152
+
153
+ export const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
154
+ const { children, ...rest } = props;
155
+ return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
156
+ });
157
+
158
+ export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
159
+ const { children, ...rest } = props;
160
+ return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
161
+ });
162
+
163
163
  export const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
164
164
  const { children, ...rest } = props;
165
165
  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": "15.23.1-agent-rules.1",
4
+ "version": "15.23.1-agent-log-submit.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": "15.23.1-agent-rules.1",
44
- "@genesislcap/genx": "15.23.1-agent-rules.1",
45
- "@genesislcap/rollup-builder": "15.23.1-agent-rules.1",
46
- "@genesislcap/ts-builder": "15.23.1-agent-rules.1",
47
- "@genesislcap/uvu-playwright-builder": "15.23.1-agent-rules.1",
48
- "@genesislcap/vite-builder": "15.23.1-agent-rules.1",
49
- "@genesislcap/webpack-builder": "15.23.1-agent-rules.1"
43
+ "@genesislcap/foundation-testing": "15.23.1-agent-log-submit.2",
44
+ "@genesislcap/genx": "15.23.1-agent-log-submit.2",
45
+ "@genesislcap/rollup-builder": "15.23.1-agent-log-submit.2",
46
+ "@genesislcap/ts-builder": "15.23.1-agent-log-submit.2",
47
+ "@genesislcap/uvu-playwright-builder": "15.23.1-agent-log-submit.2",
48
+ "@genesislcap/vite-builder": "15.23.1-agent-log-submit.2",
49
+ "@genesislcap/webpack-builder": "15.23.1-agent-log-submit.2"
50
50
  },
51
51
  "dependencies": {
52
- "@genesislcap/foundation-comms": "15.23.1-agent-rules.1",
53
- "@genesislcap/foundation-criteria": "15.23.1-agent-rules.1",
54
- "@genesislcap/foundation-logger": "15.23.1-agent-rules.1",
55
- "@genesislcap/foundation-ui": "15.23.1-agent-rules.1",
56
- "@genesislcap/foundation-utils": "15.23.1-agent-rules.1",
52
+ "@genesislcap/foundation-comms": "15.23.1-agent-log-submit.2",
53
+ "@genesislcap/foundation-criteria": "15.23.1-agent-log-submit.2",
54
+ "@genesislcap/foundation-logger": "15.23.1-agent-log-submit.2",
55
+ "@genesislcap/foundation-ui": "15.23.1-agent-log-submit.2",
56
+ "@genesislcap/foundation-utils": "15.23.1-agent-log-submit.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",