@genesislcap/grid-pro 15.19.3 → 15.19.4
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 +1135 -1135
- 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
|
@@ -80,6 +80,60 @@ export declare const GridPro: React.ForwardRefExoticComponent<
|
|
|
80
80
|
>;
|
|
81
81
|
export type GridProRef = GridProWC;
|
|
82
82
|
|
|
83
|
+
export declare const GridProCell: React.ForwardRefExoticComponent<
|
|
84
|
+
React.PropsWithChildren<
|
|
85
|
+
Omit<PublicOf<GridProCellWC>, 'children' | 'style'> &
|
|
86
|
+
HTMLWCProps & {
|
|
87
|
+
}
|
|
88
|
+
> & React.RefAttributes<GridProCellWC>
|
|
89
|
+
>;
|
|
90
|
+
export type GridProCellRef = GridProCellWC;
|
|
91
|
+
|
|
92
|
+
export declare const DateEditor: React.ForwardRefExoticComponent<
|
|
93
|
+
React.PropsWithChildren<
|
|
94
|
+
Omit<PublicOf<DateEditorWC>, 'children' | 'style'> &
|
|
95
|
+
HTMLWCProps & {
|
|
96
|
+
}
|
|
97
|
+
> & React.RefAttributes<DateEditorWC>
|
|
98
|
+
>;
|
|
99
|
+
export type DateEditorRef = DateEditorWC;
|
|
100
|
+
|
|
101
|
+
export declare const MultiselectEditor: React.ForwardRefExoticComponent<
|
|
102
|
+
React.PropsWithChildren<
|
|
103
|
+
Omit<PublicOf<MultiselectEditorWC>, 'children' | 'style'> &
|
|
104
|
+
HTMLWCProps & {
|
|
105
|
+
}
|
|
106
|
+
> & React.RefAttributes<MultiselectEditorWC>
|
|
107
|
+
>;
|
|
108
|
+
export type MultiselectEditorRef = MultiselectEditorWC;
|
|
109
|
+
|
|
110
|
+
export declare const NumberEditor: React.ForwardRefExoticComponent<
|
|
111
|
+
React.PropsWithChildren<
|
|
112
|
+
Omit<PublicOf<NumberEditorWC>, 'children' | 'style'> &
|
|
113
|
+
HTMLWCProps & {
|
|
114
|
+
}
|
|
115
|
+
> & React.RefAttributes<NumberEditorWC>
|
|
116
|
+
>;
|
|
117
|
+
export type NumberEditorRef = NumberEditorWC;
|
|
118
|
+
|
|
119
|
+
export declare const SelectEditor: React.ForwardRefExoticComponent<
|
|
120
|
+
React.PropsWithChildren<
|
|
121
|
+
Omit<PublicOf<SelectEditorWC>, 'children' | 'style'> &
|
|
122
|
+
HTMLWCProps & {
|
|
123
|
+
}
|
|
124
|
+
> & React.RefAttributes<SelectEditorWC>
|
|
125
|
+
>;
|
|
126
|
+
export type SelectEditorRef = SelectEditorWC;
|
|
127
|
+
|
|
128
|
+
export declare const StringEditor: React.ForwardRefExoticComponent<
|
|
129
|
+
React.PropsWithChildren<
|
|
130
|
+
Omit<PublicOf<StringEditorWC>, 'children' | 'style'> &
|
|
131
|
+
HTMLWCProps & {
|
|
132
|
+
}
|
|
133
|
+
> & React.RefAttributes<StringEditorWC>
|
|
134
|
+
>;
|
|
135
|
+
export type StringEditorRef = StringEditorWC;
|
|
136
|
+
|
|
83
137
|
export declare const ActionRenderer: React.ForwardRefExoticComponent<
|
|
84
138
|
React.PropsWithChildren<
|
|
85
139
|
Omit<PublicOf<ActionRendererWC>, 'children' | 'style'> &
|
|
@@ -152,60 +206,6 @@ export declare const AgTextRenderer: React.ForwardRefExoticComponent<
|
|
|
152
206
|
>;
|
|
153
207
|
export type AgTextRendererRef = AgTextRendererWC;
|
|
154
208
|
|
|
155
|
-
export declare const GridProCell: React.ForwardRefExoticComponent<
|
|
156
|
-
React.PropsWithChildren<
|
|
157
|
-
Omit<PublicOf<GridProCellWC>, 'children' | 'style'> &
|
|
158
|
-
HTMLWCProps & {
|
|
159
|
-
}
|
|
160
|
-
> & React.RefAttributes<GridProCellWC>
|
|
161
|
-
>;
|
|
162
|
-
export type GridProCellRef = GridProCellWC;
|
|
163
|
-
|
|
164
|
-
export declare const DateEditor: React.ForwardRefExoticComponent<
|
|
165
|
-
React.PropsWithChildren<
|
|
166
|
-
Omit<PublicOf<DateEditorWC>, 'children' | 'style'> &
|
|
167
|
-
HTMLWCProps & {
|
|
168
|
-
}
|
|
169
|
-
> & React.RefAttributes<DateEditorWC>
|
|
170
|
-
>;
|
|
171
|
-
export type DateEditorRef = DateEditorWC;
|
|
172
|
-
|
|
173
|
-
export declare const MultiselectEditor: React.ForwardRefExoticComponent<
|
|
174
|
-
React.PropsWithChildren<
|
|
175
|
-
Omit<PublicOf<MultiselectEditorWC>, 'children' | 'style'> &
|
|
176
|
-
HTMLWCProps & {
|
|
177
|
-
}
|
|
178
|
-
> & React.RefAttributes<MultiselectEditorWC>
|
|
179
|
-
>;
|
|
180
|
-
export type MultiselectEditorRef = MultiselectEditorWC;
|
|
181
|
-
|
|
182
|
-
export declare const NumberEditor: React.ForwardRefExoticComponent<
|
|
183
|
-
React.PropsWithChildren<
|
|
184
|
-
Omit<PublicOf<NumberEditorWC>, 'children' | 'style'> &
|
|
185
|
-
HTMLWCProps & {
|
|
186
|
-
}
|
|
187
|
-
> & React.RefAttributes<NumberEditorWC>
|
|
188
|
-
>;
|
|
189
|
-
export type NumberEditorRef = NumberEditorWC;
|
|
190
|
-
|
|
191
|
-
export declare const SelectEditor: React.ForwardRefExoticComponent<
|
|
192
|
-
React.PropsWithChildren<
|
|
193
|
-
Omit<PublicOf<SelectEditorWC>, 'children' | 'style'> &
|
|
194
|
-
HTMLWCProps & {
|
|
195
|
-
}
|
|
196
|
-
> & React.RefAttributes<SelectEditorWC>
|
|
197
|
-
>;
|
|
198
|
-
export type SelectEditorRef = SelectEditorWC;
|
|
199
|
-
|
|
200
|
-
export declare const StringEditor: React.ForwardRefExoticComponent<
|
|
201
|
-
React.PropsWithChildren<
|
|
202
|
-
Omit<PublicOf<StringEditorWC>, 'children' | 'style'> &
|
|
203
|
-
HTMLWCProps & {
|
|
204
|
-
}
|
|
205
|
-
> & React.RefAttributes<StringEditorWC>
|
|
206
|
-
>;
|
|
207
|
-
export type StringEditorRef = StringEditorWC;
|
|
208
|
-
|
|
209
209
|
export declare const GridProColumn: React.ForwardRefExoticComponent<
|
|
210
210
|
React.PropsWithChildren<
|
|
211
211
|
Omit<PublicOf<GridProColumnWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -91,74 +91,74 @@ const GridPro = React.forwardRef(function GridPro(props, ref) {
|
|
|
91
91
|
return React.createElement(customElements.getName(GridProWC) ?? '%%prefix%%-grid-pro', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
92
92
|
});
|
|
93
93
|
|
|
94
|
-
const
|
|
94
|
+
const GridProCell = React.forwardRef(function GridProCell(props, ref) {
|
|
95
95
|
const { children, ...rest } = props;
|
|
96
|
-
return React.createElement(customElements.getName(
|
|
96
|
+
return React.createElement(customElements.getName(GridProCellWC) ?? 'grid-pro-cell', { ...rest, ref }, children);
|
|
97
97
|
});
|
|
98
98
|
|
|
99
|
-
const
|
|
99
|
+
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
|
-
const
|
|
104
|
+
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
|
-
const
|
|
109
|
+
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
|
-
const
|
|
114
|
+
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
|
-
const
|
|
119
|
+
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
|
-
const
|
|
124
|
+
const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
|
|
125
125
|
const { children, ...rest } = props;
|
|
126
|
-
return React.createElement(customElements.getName(
|
|
126
|
+
return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
127
127
|
});
|
|
128
128
|
|
|
129
|
-
const
|
|
129
|
+
const ActionsMenuRenderer = React.forwardRef(function ActionsMenuRenderer(props, ref) {
|
|
130
130
|
const { children, ...rest } = props;
|
|
131
|
-
return React.createElement(customElements.getName(
|
|
131
|
+
return React.createElement(customElements.getName(ActionsMenuRendererWC) ?? '%%prefix%%-grid-pro-actions-menu-renderer', { ...rest, ref }, children);
|
|
132
132
|
});
|
|
133
133
|
|
|
134
|
-
const
|
|
134
|
+
const BooleanRenderer = React.forwardRef(function BooleanRenderer(props, ref) {
|
|
135
135
|
const { children, ...rest } = props;
|
|
136
|
-
return React.createElement(customElements.getName(
|
|
136
|
+
return React.createElement(customElements.getName(BooleanRendererWC) ?? '%%prefix%%-boolean-renderer', { ...rest, ref }, children);
|
|
137
137
|
});
|
|
138
138
|
|
|
139
|
-
const
|
|
139
|
+
const EditableRenderer = React.forwardRef(function EditableRenderer(props, ref) {
|
|
140
140
|
const { children, ...rest } = props;
|
|
141
|
-
return React.createElement(customElements.getName(
|
|
141
|
+
return React.createElement(customElements.getName(EditableRendererWC) ?? '%%prefix%%-editable-renderer', { ...rest, ref }, children);
|
|
142
142
|
});
|
|
143
143
|
|
|
144
|
-
const
|
|
144
|
+
const SelectRenderer = React.forwardRef(function SelectRenderer(props, ref) {
|
|
145
145
|
const { children, ...rest } = props;
|
|
146
|
-
return React.createElement(customElements.getName(
|
|
146
|
+
return React.createElement(customElements.getName(SelectRendererWC) ?? '%%prefix%%-select-renderer', { ...rest, ref }, children);
|
|
147
147
|
});
|
|
148
148
|
|
|
149
|
-
const
|
|
149
|
+
const StatusPillRenderer = React.forwardRef(function StatusPillRenderer(props, ref) {
|
|
150
150
|
const { children, ...rest } = props;
|
|
151
|
-
return React.createElement(customElements.getName(
|
|
151
|
+
return React.createElement(customElements.getName(StatusPillRendererWC) ?? '%%prefix%%-status-pill-renderer', { ...rest, ref }, children);
|
|
152
152
|
});
|
|
153
153
|
|
|
154
|
-
const
|
|
154
|
+
const AgTextFieldRenderer = React.forwardRef(function AgTextFieldRenderer(props, ref) {
|
|
155
155
|
const { children, ...rest } = props;
|
|
156
|
-
return React.createElement(customElements.getName(
|
|
156
|
+
return React.createElement(customElements.getName(AgTextFieldRendererWC) ?? '%%prefix%%-grid-text-field-renderer', { ...rest, ref }, children);
|
|
157
157
|
});
|
|
158
158
|
|
|
159
|
-
const
|
|
159
|
+
const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
|
|
160
160
|
const { children, ...rest } = props;
|
|
161
|
-
return React.createElement(customElements.getName(
|
|
161
|
+
return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
|
|
162
162
|
});
|
|
163
163
|
|
|
164
164
|
const GridProColumn = React.forwardRef(function GridProColumn(props, ref) {
|
|
@@ -485,6 +485,12 @@ const MulticolumnDropdown = React.forwardRef(function MulticolumnDropdown(props,
|
|
|
485
485
|
module.exports = {
|
|
486
486
|
GridProBeta,
|
|
487
487
|
GridPro,
|
|
488
|
+
GridProCell,
|
|
489
|
+
DateEditor,
|
|
490
|
+
MultiselectEditor,
|
|
491
|
+
NumberEditor,
|
|
492
|
+
SelectEditor,
|
|
493
|
+
StringEditor,
|
|
488
494
|
ActionRenderer,
|
|
489
495
|
ActionsMenuRenderer,
|
|
490
496
|
BooleanRenderer,
|
|
@@ -493,12 +499,6 @@ module.exports = {
|
|
|
493
499
|
StatusPillRenderer,
|
|
494
500
|
AgTextFieldRenderer,
|
|
495
501
|
AgTextRenderer,
|
|
496
|
-
GridProCell,
|
|
497
|
-
DateEditor,
|
|
498
|
-
MultiselectEditor,
|
|
499
|
-
NumberEditor,
|
|
500
|
-
SelectEditor,
|
|
501
|
-
StringEditor,
|
|
502
502
|
GridProColumn,
|
|
503
503
|
GridProClientSideDatasource,
|
|
504
504
|
GridProServerSideDatasource,
|
package/dist/react.mjs
CHANGED
|
@@ -89,74 +89,74 @@ export const GridPro = React.forwardRef(function GridPro(props, ref) {
|
|
|
89
89
|
return React.createElement(customElements.getName(GridProWC) ?? '%%prefix%%-grid-pro', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
90
90
|
});
|
|
91
91
|
|
|
92
|
-
export const
|
|
92
|
+
export const GridProCell = React.forwardRef(function GridProCell(props, ref) {
|
|
93
93
|
const { children, ...rest } = props;
|
|
94
|
-
return React.createElement(customElements.getName(
|
|
94
|
+
return React.createElement(customElements.getName(GridProCellWC) ?? 'grid-pro-cell', { ...rest, ref }, children);
|
|
95
95
|
});
|
|
96
96
|
|
|
97
|
-
export const
|
|
97
|
+
export const DateEditor = React.forwardRef(function DateEditor(props, ref) {
|
|
98
98
|
const { children, ...rest } = props;
|
|
99
|
-
return React.createElement(customElements.getName(
|
|
99
|
+
return React.createElement(customElements.getName(DateEditorWC) ?? '%%prefix%%-date-editor', { ...rest, ref }, children);
|
|
100
100
|
});
|
|
101
101
|
|
|
102
|
-
export const
|
|
102
|
+
export const MultiselectEditor = React.forwardRef(function MultiselectEditor(props, ref) {
|
|
103
103
|
const { children, ...rest } = props;
|
|
104
|
-
return React.createElement(customElements.getName(
|
|
104
|
+
return React.createElement(customElements.getName(MultiselectEditorWC) ?? '%%prefix%%-multiselect-editor', { ...rest, ref }, children);
|
|
105
105
|
});
|
|
106
106
|
|
|
107
|
-
export const
|
|
107
|
+
export const NumberEditor = React.forwardRef(function NumberEditor(props, ref) {
|
|
108
108
|
const { children, ...rest } = props;
|
|
109
|
-
return React.createElement(customElements.getName(
|
|
109
|
+
return React.createElement(customElements.getName(NumberEditorWC) ?? '%%prefix%%-number-editor', { ...rest, ref }, children);
|
|
110
110
|
});
|
|
111
111
|
|
|
112
|
-
export const
|
|
112
|
+
export const SelectEditor = React.forwardRef(function SelectEditor(props, ref) {
|
|
113
113
|
const { children, ...rest } = props;
|
|
114
|
-
return React.createElement(customElements.getName(
|
|
114
|
+
return React.createElement(customElements.getName(SelectEditorWC) ?? '%%prefix%%-select-editor', { ...rest, ref }, children);
|
|
115
115
|
});
|
|
116
116
|
|
|
117
|
-
export const
|
|
117
|
+
export const StringEditor = React.forwardRef(function StringEditor(props, ref) {
|
|
118
118
|
const { children, ...rest } = props;
|
|
119
|
-
return React.createElement(customElements.getName(
|
|
119
|
+
return React.createElement(customElements.getName(StringEditorWC) ?? '%%prefix%%-string-editor', { ...rest, ref }, children);
|
|
120
120
|
});
|
|
121
121
|
|
|
122
|
-
export const
|
|
122
|
+
export const ActionRenderer = React.forwardRef(function ActionRenderer(props, ref) {
|
|
123
123
|
const { children, ...rest } = props;
|
|
124
|
-
return React.createElement(customElements.getName(
|
|
124
|
+
return React.createElement(customElements.getName(ActionRendererWC) ?? '%%prefix%%-grid-pro-action-renderer', { ...rest, ref }, children);
|
|
125
125
|
});
|
|
126
126
|
|
|
127
|
-
export const
|
|
127
|
+
export const ActionsMenuRenderer = React.forwardRef(function ActionsMenuRenderer(props, ref) {
|
|
128
128
|
const { children, ...rest } = props;
|
|
129
|
-
return React.createElement(customElements.getName(
|
|
129
|
+
return React.createElement(customElements.getName(ActionsMenuRendererWC) ?? '%%prefix%%-grid-pro-actions-menu-renderer', { ...rest, ref }, children);
|
|
130
130
|
});
|
|
131
131
|
|
|
132
|
-
export const
|
|
132
|
+
export const BooleanRenderer = React.forwardRef(function BooleanRenderer(props, ref) {
|
|
133
133
|
const { children, ...rest } = props;
|
|
134
|
-
return React.createElement(customElements.getName(
|
|
134
|
+
return React.createElement(customElements.getName(BooleanRendererWC) ?? '%%prefix%%-boolean-renderer', { ...rest, ref }, children);
|
|
135
135
|
});
|
|
136
136
|
|
|
137
|
-
export const
|
|
137
|
+
export const EditableRenderer = React.forwardRef(function EditableRenderer(props, ref) {
|
|
138
138
|
const { children, ...rest } = props;
|
|
139
|
-
return React.createElement(customElements.getName(
|
|
139
|
+
return React.createElement(customElements.getName(EditableRendererWC) ?? '%%prefix%%-editable-renderer', { ...rest, ref }, children);
|
|
140
140
|
});
|
|
141
141
|
|
|
142
|
-
export const
|
|
142
|
+
export const SelectRenderer = React.forwardRef(function SelectRenderer(props, ref) {
|
|
143
143
|
const { children, ...rest } = props;
|
|
144
|
-
return React.createElement(customElements.getName(
|
|
144
|
+
return React.createElement(customElements.getName(SelectRendererWC) ?? '%%prefix%%-select-renderer', { ...rest, ref }, children);
|
|
145
145
|
});
|
|
146
146
|
|
|
147
|
-
export const
|
|
147
|
+
export const StatusPillRenderer = React.forwardRef(function StatusPillRenderer(props, ref) {
|
|
148
148
|
const { children, ...rest } = props;
|
|
149
|
-
return React.createElement(customElements.getName(
|
|
149
|
+
return React.createElement(customElements.getName(StatusPillRendererWC) ?? '%%prefix%%-status-pill-renderer', { ...rest, ref }, children);
|
|
150
150
|
});
|
|
151
151
|
|
|
152
|
-
export const
|
|
152
|
+
export const AgTextFieldRenderer = React.forwardRef(function AgTextFieldRenderer(props, ref) {
|
|
153
153
|
const { children, ...rest } = props;
|
|
154
|
-
return React.createElement(customElements.getName(
|
|
154
|
+
return React.createElement(customElements.getName(AgTextFieldRendererWC) ?? '%%prefix%%-grid-text-field-renderer', { ...rest, ref }, children);
|
|
155
155
|
});
|
|
156
156
|
|
|
157
|
-
export const
|
|
157
|
+
export const AgTextRenderer = React.forwardRef(function AgTextRenderer(props, ref) {
|
|
158
158
|
const { children, ...rest } = props;
|
|
159
|
-
return React.createElement(customElements.getName(
|
|
159
|
+
return React.createElement(customElements.getName(AgTextRendererWC) ?? '%%prefix%%-grid-text-renderer', { ...rest, ref }, children);
|
|
160
160
|
});
|
|
161
161
|
|
|
162
162
|
export const GridProColumn = React.forwardRef(function GridProColumn(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.19.
|
|
4
|
+
"version": "15.19.4",
|
|
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.19.
|
|
44
|
-
"@genesislcap/genx": "15.19.
|
|
45
|
-
"@genesislcap/rollup-builder": "15.19.
|
|
46
|
-
"@genesislcap/ts-builder": "15.19.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "15.19.
|
|
48
|
-
"@genesislcap/vite-builder": "15.19.
|
|
49
|
-
"@genesislcap/webpack-builder": "15.19.
|
|
43
|
+
"@genesislcap/foundation-testing": "15.19.4",
|
|
44
|
+
"@genesislcap/genx": "15.19.4",
|
|
45
|
+
"@genesislcap/rollup-builder": "15.19.4",
|
|
46
|
+
"@genesislcap/ts-builder": "15.19.4",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "15.19.4",
|
|
48
|
+
"@genesislcap/vite-builder": "15.19.4",
|
|
49
|
+
"@genesislcap/webpack-builder": "15.19.4"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@genesislcap/foundation-comms": "15.19.
|
|
53
|
-
"@genesislcap/foundation-criteria": "15.19.
|
|
54
|
-
"@genesislcap/foundation-logger": "15.19.
|
|
55
|
-
"@genesislcap/foundation-ui": "15.19.
|
|
56
|
-
"@genesislcap/foundation-utils": "15.19.
|
|
52
|
+
"@genesislcap/foundation-comms": "15.19.4",
|
|
53
|
+
"@genesislcap/foundation-criteria": "15.19.4",
|
|
54
|
+
"@genesislcap/foundation-logger": "15.19.4",
|
|
55
|
+
"@genesislcap/foundation-ui": "15.19.4",
|
|
56
|
+
"@genesislcap/foundation-utils": "15.19.4",
|
|
57
57
|
"@microsoft/fast-colors": "5.3.1",
|
|
58
58
|
"@microsoft/fast-components": "2.30.6",
|
|
59
59
|
"@microsoft/fast-element": "1.14.0",
|