@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.
- package/dist/custom-elements.json +1296 -1296
- package/dist/dts/react.d.ts +54 -54
- package/dist/react.cjs +34 -34
- package/dist/react.mjs +28 -28
- package/package.json +13 -13
package/dist/dts/react.d.ts
CHANGED
|
@@ -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
|
|
101
|
+
const DateEditor = React.forwardRef(function DateEditor(props, ref) {
|
|
102
102
|
const { children, ...rest } = props;
|
|
103
|
-
return React.createElement(customElements.getName(
|
|
103
|
+
return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
104
104
|
});
|
|
105
105
|
|
|
106
|
-
const
|
|
106
|
+
const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
|
|
107
107
|
const { children, ...rest } = props;
|
|
108
|
-
return React.createElement(customElements.getName(
|
|
108
|
+
return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
|
|
109
109
|
});
|
|
110
110
|
|
|
111
|
-
const
|
|
111
|
+
const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
|
|
112
112
|
const { children, ...rest } = props;
|
|
113
|
-
return React.createElement(customElements.getName(
|
|
113
|
+
return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
|
|
114
114
|
});
|
|
115
115
|
|
|
116
|
-
const
|
|
116
|
+
const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
|
|
117
117
|
const { children, ...rest } = props;
|
|
118
|
-
return React.createElement(customElements.getName(
|
|
118
|
+
return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
|
|
119
119
|
});
|
|
120
120
|
|
|
121
|
-
const
|
|
121
|
+
const StringEditor = React.forwardRef(function StringEditor(props, ref) {
|
|
122
122
|
const { children, ...rest } = props;
|
|
123
|
-
return React.createElement(customElements.getName(
|
|
123
|
+
return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
124
124
|
});
|
|
125
125
|
|
|
126
|
-
const
|
|
126
|
+
const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
|
|
127
127
|
const { children, ...rest } = props;
|
|
128
|
-
return React.createElement(customElements.getName(
|
|
128
|
+
return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
|
|
129
129
|
});
|
|
130
130
|
|
|
131
|
-
const
|
|
131
|
+
const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
|
|
132
132
|
const { children, ...rest } = props;
|
|
133
|
-
return React.createElement(customElements.getName(
|
|
133
|
+
return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
134
134
|
});
|
|
135
135
|
|
|
136
|
-
const
|
|
136
|
+
const ActionsMenuRenderer = React.forwardRef(function ActionsMenuRenderer(props, ref) {
|
|
137
137
|
const { children, ...rest } = props;
|
|
138
|
-
return React.createElement(customElements.getName(
|
|
138
|
+
return React.createElement(customElements.getName(ActionsMenuRendererWC) ?? '%%prefix%%-grid-pro-actions-menu-renderer', { ...rest, ref }, children);
|
|
139
139
|
});
|
|
140
140
|
|
|
141
|
-
const
|
|
141
|
+
const BooleanRenderer = React.forwardRef(function BooleanRenderer(props, ref) {
|
|
142
142
|
const { children, ...rest } = props;
|
|
143
|
-
return React.createElement(customElements.getName(
|
|
143
|
+
return React.createElement(customElements.getName(BooleanRendererWC) ?? '%%prefix%%-boolean-renderer', { ...rest, ref }, children);
|
|
144
144
|
});
|
|
145
145
|
|
|
146
|
-
const
|
|
146
|
+
const EditableRenderer = React.forwardRef(function EditableRenderer(props, ref) {
|
|
147
147
|
const { children, ...rest } = props;
|
|
148
|
-
return React.createElement(customElements.getName(
|
|
148
|
+
return React.createElement(customElements.getName(EditableRendererWC) ?? '%%prefix%%-editable-renderer', { ...rest, ref }, children);
|
|
149
149
|
});
|
|
150
150
|
|
|
151
|
-
const
|
|
151
|
+
const SelectRenderer = React.forwardRef(function SelectRenderer(props, ref) {
|
|
152
152
|
const { children, ...rest } = props;
|
|
153
|
-
return React.createElement(customElements.getName(
|
|
153
|
+
return React.createElement(customElements.getName(SelectRendererWC) ?? '%%prefix%%-select-renderer', { ...rest, ref }, children);
|
|
154
154
|
});
|
|
155
155
|
|
|
156
|
-
const
|
|
156
|
+
const StatusPillRenderer = React.forwardRef(function StatusPillRenderer(props, ref) {
|
|
157
157
|
const { children, ...rest } = props;
|
|
158
|
-
return React.createElement(customElements.getName(
|
|
158
|
+
return React.createElement(customElements.getName(StatusPillRendererWC) ?? '%%prefix%%-status-pill-renderer', { ...rest, ref }, children);
|
|
159
159
|
});
|
|
160
160
|
|
|
161
|
-
const
|
|
161
|
+
const AgTextFieldRenderer = React.forwardRef(function AgTextFieldRenderer(props, ref) {
|
|
162
162
|
const { children, ...rest } = props;
|
|
163
|
-
return React.createElement(customElements.getName(
|
|
163
|
+
return React.createElement(customElements.getName(AgTextFieldRendererWC) ?? '%%prefix%%-grid-text-field-renderer', { ...rest, ref }, children);
|
|
164
164
|
});
|
|
165
165
|
|
|
166
|
-
const
|
|
166
|
+
const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
|
|
167
167
|
const { children, ...rest } = props;
|
|
168
|
-
return React.createElement(customElements.getName(
|
|
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
|
|
99
|
+
export const DateEditor = React.forwardRef(function DateEditor(props, ref) {
|
|
100
100
|
const { children, ...rest } = props;
|
|
101
|
-
return React.createElement(customElements.getName(
|
|
101
|
+
return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
102
102
|
});
|
|
103
103
|
|
|
104
|
-
export const
|
|
104
|
+
export const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
|
|
105
105
|
const { children, ...rest } = props;
|
|
106
|
-
return React.createElement(customElements.getName(
|
|
106
|
+
return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
|
|
107
107
|
});
|
|
108
108
|
|
|
109
|
-
export const
|
|
109
|
+
export const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
|
|
110
110
|
const { children, ...rest } = props;
|
|
111
|
-
return React.createElement(customElements.getName(
|
|
111
|
+
return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
|
|
112
112
|
});
|
|
113
113
|
|
|
114
|
-
export const
|
|
114
|
+
export const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
|
|
115
115
|
const { children, ...rest } = props;
|
|
116
|
-
return React.createElement(customElements.getName(
|
|
116
|
+
return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
|
|
117
117
|
});
|
|
118
118
|
|
|
119
|
-
export const
|
|
119
|
+
export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
|
|
120
120
|
const { children, ...rest } = props;
|
|
121
|
-
return React.createElement(customElements.getName(
|
|
121
|
+
return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
122
122
|
});
|
|
123
123
|
|
|
124
|
-
export const
|
|
124
|
+
export const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
|
|
125
125
|
const { children, ...rest } = props;
|
|
126
|
-
return React.createElement(customElements.getName(
|
|
126
|
+
return React.createElement(customElements.getName(GridProColumnWC) ?? 'grid-pro-column', { ...rest, ref }, children);
|
|
127
127
|
});
|
|
128
128
|
|
|
129
|
-
export const
|
|
129
|
+
export const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
|
|
130
130
|
const { children, ...rest } = props;
|
|
131
|
-
return React.createElement(customElements.getName(
|
|
131
|
+
return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
132
132
|
});
|
|
133
133
|
|
|
134
|
-
export const
|
|
134
|
+
export const ActionsMenuRenderer = React.forwardRef(function ActionsMenuRenderer(props, ref) {
|
|
135
135
|
const { children, ...rest } = props;
|
|
136
|
-
return React.createElement(customElements.getName(
|
|
136
|
+
return React.createElement(customElements.getName(ActionsMenuRendererWC) ?? '%%prefix%%-grid-pro-actions-menu-renderer', { ...rest, ref }, children);
|
|
137
137
|
});
|
|
138
138
|
|
|
139
|
-
export const
|
|
139
|
+
export const BooleanRenderer = React.forwardRef(function BooleanRenderer(props, ref) {
|
|
140
140
|
const { children, ...rest } = props;
|
|
141
|
-
return React.createElement(customElements.getName(
|
|
141
|
+
return React.createElement(customElements.getName(BooleanRendererWC) ?? '%%prefix%%-boolean-renderer', { ...rest, ref }, children);
|
|
142
142
|
});
|
|
143
143
|
|
|
144
|
-
export const
|
|
144
|
+
export const EditableRenderer = React.forwardRef(function EditableRenderer(props, ref) {
|
|
145
145
|
const { children, ...rest } = props;
|
|
146
|
-
return React.createElement(customElements.getName(
|
|
146
|
+
return React.createElement(customElements.getName(EditableRendererWC) ?? '%%prefix%%-editable-renderer', { ...rest, ref }, children);
|
|
147
147
|
});
|
|
148
148
|
|
|
149
|
-
export const
|
|
149
|
+
export const SelectRenderer = React.forwardRef(function SelectRenderer(props, ref) {
|
|
150
150
|
const { children, ...rest } = props;
|
|
151
|
-
return React.createElement(customElements.getName(
|
|
151
|
+
return React.createElement(customElements.getName(SelectRendererWC) ?? '%%prefix%%-select-renderer', { ...rest, ref }, children);
|
|
152
152
|
});
|
|
153
153
|
|
|
154
|
-
export const
|
|
154
|
+
export const StatusPillRenderer = React.forwardRef(function StatusPillRenderer(props, ref) {
|
|
155
155
|
const { children, ...rest } = props;
|
|
156
|
-
return React.createElement(customElements.getName(
|
|
156
|
+
return React.createElement(customElements.getName(StatusPillRendererWC) ?? '%%prefix%%-status-pill-renderer', { ...rest, ref }, children);
|
|
157
157
|
});
|
|
158
158
|
|
|
159
|
-
export const
|
|
159
|
+
export const AgTextFieldRenderer = React.forwardRef(function AgTextFieldRenderer(props, ref) {
|
|
160
160
|
const { children, ...rest } = props;
|
|
161
|
-
return React.createElement(customElements.getName(
|
|
161
|
+
return React.createElement(customElements.getName(AgTextFieldRendererWC) ?? '%%prefix%%-grid-text-field-renderer', { ...rest, ref }, children);
|
|
162
162
|
});
|
|
163
163
|
|
|
164
|
-
export const
|
|
164
|
+
export const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
|
|
165
165
|
const { children, ...rest } = props;
|
|
166
|
-
return React.createElement(customElements.getName(
|
|
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.
|
|
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.
|
|
44
|
-
"@genesislcap/genx": "15.27.
|
|
45
|
-
"@genesislcap/rollup-builder": "15.27.
|
|
46
|
-
"@genesislcap/ts-builder": "15.27.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "15.27.
|
|
48
|
-
"@genesislcap/vite-builder": "15.27.
|
|
49
|
-
"@genesislcap/webpack-builder": "15.27.
|
|
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.
|
|
53
|
-
"@genesislcap/foundation-criteria": "15.27.
|
|
54
|
-
"@genesislcap/foundation-logger": "15.27.
|
|
55
|
-
"@genesislcap/foundation-ui": "15.27.
|
|
56
|
-
"@genesislcap/foundation-utils": "15.27.
|
|
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",
|