@genesislcap/grid-pro 15.27.0-agent-log-submit.3 → 15.27.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.
@@ -91,6 +91,60 @@ 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
+ export declare const GridProColumn: React.ForwardRefExoticComponent<
140
+ React.PropsWithChildren<
141
+ Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
142
+ HTMLWCProps & {
143
+ }
144
+ > & React.RefAttributes<GridProColumnWC>
145
+ >;
146
+ export type GridProColumnRef = GridProColumnWC;
147
+
94
148
  export declare const ActionRenderer: React.ForwardRefExoticComponent<
95
149
  React.PropsWithChildren<
96
150
  Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
@@ -163,60 +217,6 @@ export declare const AgTextRenderer: React.ForwardRefExoticComponent<
163
217
  >;
164
218
  export type AgTextRendererRef = AgTextRendererWC;
165
219
 
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
- export declare const GridProColumn: React.ForwardRefExoticComponent<
212
- React.PropsWithChildren<
213
- Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
214
- HTMLWCProps & {
215
- }
216
- > & React.RefAttributes<GridProColumnWC>
217
- >;
218
- export type GridProColumnRef = GridProColumnWC;
219
-
220
220
  export declare const ColumnSelection: React.ForwardRefExoticComponent<
221
221
  React.PropsWithChildren<
222
222
  Omit<PublicOf<ColumnSelectionWC>, 'children' | 'style'> &
package/dist/react.cjs CHANGED
@@ -98,74 +98,74 @@ 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 ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
101
+ const DateEditor = React.forwardRef(function DateEditor(props, ref) {
102
102
  const { children, ...rest } = props;
103
- return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
103
+ return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
104
104
  });
105
105
 
106
- const ActionsMenuRenderer = React.forwardRef(function ActionsMenuRenderer(props, ref) {
106
+ const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
107
107
  const { children, ...rest } = props;
108
- return React.createElement(customElements.getName(ActionsMenuRendererWC) ?? '%%prefix%%-grid-pro-actions-menu-renderer', { ...rest, ref }, children);
108
+ return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
109
109
  });
110
110
 
111
- const BooleanRenderer = React.forwardRef(function BooleanRenderer(props, ref) {
111
+ const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
112
112
  const { children, ...rest } = props;
113
- return React.createElement(customElements.getName(BooleanRendererWC) ?? '%%prefix%%-boolean-renderer', { ...rest, ref }, children);
113
+ return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
114
114
  });
115
115
 
116
- const EditableRenderer = React.forwardRef(function EditableRenderer(props, ref) {
116
+ const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
117
117
  const { children, ...rest } = props;
118
- return React.createElement(customElements.getName(EditableRendererWC) ?? '%%prefix%%-editable-renderer', { ...rest, ref }, children);
118
+ return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
119
119
  });
120
120
 
121
- const SelectRenderer = React.forwardRef(function SelectRenderer(props, ref) {
121
+ const StringEditor = React.forwardRef(function StringEditor(props, ref) {
122
122
  const { children, ...rest } = props;
123
- return React.createElement(customElements.getName(SelectRendererWC) ?? '%%prefix%%-select-renderer', { ...rest, ref }, children);
123
+ return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
124
124
  });
125
125
 
126
- const StatusPillRenderer = React.forwardRef(function StatusPillRenderer(props, ref) {
126
+ const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
127
127
  const { children, ...rest } = props;
128
- return React.createElement(customElements.getName(StatusPillRendererWC) ?? '%%prefix%%-status-pill-renderer', { ...rest, ref }, children);
128
+ return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
129
129
  });
130
130
 
131
- const AgTextFieldRenderer = React.forwardRef(function AgTextFieldRenderer(props, ref) {
131
+ const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
132
132
  const { children, ...rest } = props;
133
- return React.createElement(customElements.getName(AgTextFieldRendererWC) ?? '%%prefix%%-grid-text-field-renderer', { ...rest, ref }, children);
133
+ return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
134
134
  });
135
135
 
136
- const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
136
+ const ActionsMenuRenderer = React.forwardRef(function ActionsMenuRenderer(props, ref) {
137
137
  const { children, ...rest } = props;
138
- return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
138
+ return React.createElement(customElements.getName(ActionsMenuRendererWC) ?? '%%prefix%%-grid-pro-actions-menu-renderer', { ...rest, ref }, children);
139
139
  });
140
140
 
141
- const DateEditor = React.forwardRef(function DateEditor(props, ref) {
141
+ const BooleanRenderer = React.forwardRef(function BooleanRenderer(props, ref) {
142
142
  const { children, ...rest } = props;
143
- return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
143
+ return React.createElement(customElements.getName(BooleanRendererWC) ?? '%%prefix%%-boolean-renderer', { ...rest, ref }, children);
144
144
  });
145
145
 
146
- const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
146
+ const EditableRenderer = React.forwardRef(function EditableRenderer(props, ref) {
147
147
  const { children, ...rest } = props;
148
- return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
148
+ return React.createElement(customElements.getName(EditableRendererWC) ?? '%%prefix%%-editable-renderer', { ...rest, ref }, children);
149
149
  });
150
150
 
151
- const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
151
+ const SelectRenderer = React.forwardRef(function SelectRenderer(props, ref) {
152
152
  const { children, ...rest } = props;
153
- return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
153
+ return React.createElement(customElements.getName(SelectRendererWC) ?? '%%prefix%%-select-renderer', { ...rest, ref }, children);
154
154
  });
155
155
 
156
- const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
156
+ const StatusPillRenderer = React.forwardRef(function StatusPillRenderer(props, ref) {
157
157
  const { children, ...rest } = props;
158
- return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
158
+ return React.createElement(customElements.getName(StatusPillRendererWC) ?? '%%prefix%%-status-pill-renderer', { ...rest, ref }, children);
159
159
  });
160
160
 
161
- const StringEditor = React.forwardRef(function StringEditor(props, ref) {
161
+ const AgTextFieldRenderer = React.forwardRef(function AgTextFieldRenderer(props, ref) {
162
162
  const { children, ...rest } = props;
163
- return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
163
+ return React.createElement(customElements.getName(AgTextFieldRendererWC) ?? '%%prefix%%-grid-text-field-renderer', { ...rest, ref }, children);
164
164
  });
165
165
 
166
- const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
166
+ const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
167
167
  const { children, ...rest } = props;
168
- return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
168
+ return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
169
169
  });
170
170
 
171
171
  const ColumnSelection = React.forwardRef(function ColumnSelection(props, ref) {
@@ -585,6 +585,12 @@ module.exports = {
585
585
  GridProBeta,
586
586
  GridPro,
587
587
  GridProCell,
588
+ DateEditor,
589
+ MultiselectEditor,
590
+ NumberEditor,
591
+ SelectEditor,
592
+ StringEditor,
593
+ GridProColumn,
588
594
  ActionRenderer,
589
595
  ActionsMenuRenderer,
590
596
  BooleanRenderer,
@@ -593,12 +599,6 @@ module.exports = {
593
599
  StatusPillRenderer,
594
600
  AgTextFieldRenderer,
595
601
  AgTextRenderer,
596
- DateEditor,
597
- MultiselectEditor,
598
- NumberEditor,
599
- SelectEditor,
600
- StringEditor,
601
- GridProColumn,
602
602
  ColumnSelection,
603
603
  GridProClientSideDatasource,
604
604
  GridProInfiniteDatasource,
package/dist/react.mjs CHANGED
@@ -96,74 +96,74 @@ 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 ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
99
+ export const DateEditor = React.forwardRef(function DateEditor(props, ref) {
100
100
  const { children, ...rest } = props;
101
- return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
101
+ return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
102
102
  });
103
103
 
104
- export const ActionsMenuRenderer = React.forwardRef(function ActionsMenuRenderer(props, ref) {
104
+ export const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
105
105
  const { children, ...rest } = props;
106
- return React.createElement(customElements.getName(ActionsMenuRendererWC) ?? '%%prefix%%-grid-pro-actions-menu-renderer', { ...rest, ref }, children);
106
+ return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
107
107
  });
108
108
 
109
- export const BooleanRenderer = React.forwardRef(function BooleanRenderer(props, ref) {
109
+ export const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
110
110
  const { children, ...rest } = props;
111
- return React.createElement(customElements.getName(BooleanRendererWC) ?? '%%prefix%%-boolean-renderer', { ...rest, ref }, children);
111
+ return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
112
112
  });
113
113
 
114
- export const EditableRenderer = React.forwardRef(function EditableRenderer(props, ref) {
114
+ export const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
115
115
  const { children, ...rest } = props;
116
- return React.createElement(customElements.getName(EditableRendererWC) ?? '%%prefix%%-editable-renderer', { ...rest, ref }, children);
116
+ return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
117
117
  });
118
118
 
119
- export const SelectRenderer = React.forwardRef(function SelectRenderer(props, ref) {
119
+ export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
120
120
  const { children, ...rest } = props;
121
- return React.createElement(customElements.getName(SelectRendererWC) ?? '%%prefix%%-select-renderer', { ...rest, ref }, children);
121
+ return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
122
122
  });
123
123
 
124
- export const StatusPillRenderer = React.forwardRef(function StatusPillRenderer(props, ref) {
124
+ export const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
125
125
  const { children, ...rest } = props;
126
- return React.createElement(customElements.getName(StatusPillRendererWC) ?? '%%prefix%%-status-pill-renderer', { ...rest, ref }, children);
126
+ return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
127
127
  });
128
128
 
129
- export const AgTextFieldRenderer = React.forwardRef(function AgTextFieldRenderer(props, ref) {
129
+ export const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
130
130
  const { children, ...rest } = props;
131
- return React.createElement(customElements.getName(AgTextFieldRendererWC) ?? '%%prefix%%-grid-text-field-renderer', { ...rest, ref }, children);
131
+ return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
132
132
  });
133
133
 
134
- export const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
134
+ export const ActionsMenuRenderer = React.forwardRef(function ActionsMenuRenderer(props, ref) {
135
135
  const { children, ...rest } = props;
136
- return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
136
+ return React.createElement(customElements.getName(ActionsMenuRendererWC) ?? '%%prefix%%-grid-pro-actions-menu-renderer', { ...rest, ref }, children);
137
137
  });
138
138
 
139
- export const DateEditor = React.forwardRef(function DateEditor(props, ref) {
139
+ export const BooleanRenderer = React.forwardRef(function BooleanRenderer(props, ref) {
140
140
  const { children, ...rest } = props;
141
- return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
141
+ return React.createElement(customElements.getName(BooleanRendererWC) ?? '%%prefix%%-boolean-renderer', { ...rest, ref }, children);
142
142
  });
143
143
 
144
- export const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
144
+ export const EditableRenderer = React.forwardRef(function EditableRenderer(props, ref) {
145
145
  const { children, ...rest } = props;
146
- return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
146
+ return React.createElement(customElements.getName(EditableRendererWC) ?? '%%prefix%%-editable-renderer', { ...rest, ref }, children);
147
147
  });
148
148
 
149
- export const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
149
+ export const SelectRenderer = React.forwardRef(function SelectRenderer(props, ref) {
150
150
  const { children, ...rest } = props;
151
- return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
151
+ return React.createElement(customElements.getName(SelectRendererWC) ?? '%%prefix%%-select-renderer', { ...rest, ref }, children);
152
152
  });
153
153
 
154
- export const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
154
+ export const StatusPillRenderer = React.forwardRef(function StatusPillRenderer(props, ref) {
155
155
  const { children, ...rest } = props;
156
- return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
156
+ return React.createElement(customElements.getName(StatusPillRendererWC) ?? '%%prefix%%-status-pill-renderer', { ...rest, ref }, children);
157
157
  });
158
158
 
159
- export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
159
+ export const AgTextFieldRenderer = React.forwardRef(function AgTextFieldRenderer(props, ref) {
160
160
  const { children, ...rest } = props;
161
- return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
161
+ return React.createElement(customElements.getName(AgTextFieldRendererWC) ?? '%%prefix%%-grid-text-field-renderer', { ...rest, ref }, children);
162
162
  });
163
163
 
164
- export const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
164
+ export const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
165
165
  const { children, ...rest } = props;
166
- return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
166
+ return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
167
167
  });
168
168
 
169
169
  export const ColumnSelection = React.forwardRef(function ColumnSelection(props, ref) {
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.27.0-agent-log-submit.3",
4
+ "version": "15.27.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": "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"
43
+ "@genesislcap/foundation-testing": "15.27.1",
44
+ "@genesislcap/genx": "15.27.1",
45
+ "@genesislcap/rollup-builder": "15.27.1",
46
+ "@genesislcap/ts-builder": "15.27.1",
47
+ "@genesislcap/uvu-playwright-builder": "15.27.1",
48
+ "@genesislcap/vite-builder": "15.27.1",
49
+ "@genesislcap/webpack-builder": "15.27.1"
50
50
  },
51
51
  "dependencies": {
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",
52
+ "@genesislcap/foundation-comms": "15.27.1",
53
+ "@genesislcap/foundation-criteria": "15.27.1",
54
+ "@genesislcap/foundation-logger": "15.27.1",
55
+ "@genesislcap/foundation-ui": "15.27.1",
56
+ "@genesislcap/foundation-utils": "15.27.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",