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