@genesislcap/pbc-reporting-ui 15.19.4 → 15.19.6
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 +4331 -5466
- package/dist/dts/react.d.ts +53 -53
- package/dist/react.cjs +64 -64
- package/dist/react.mjs +57 -57
- package/package.json +21 -21
package/dist/dts/react.d.ts
CHANGED
|
@@ -93,14 +93,14 @@ export declare const RapidReporting: React.ForwardRefExoticComponent<
|
|
|
93
93
|
>;
|
|
94
94
|
export type RapidReportingRef = RapidReportingWC;
|
|
95
95
|
|
|
96
|
-
export declare const
|
|
96
|
+
export declare const ZeroReporting: React.ForwardRefExoticComponent<
|
|
97
97
|
React.PropsWithChildren<
|
|
98
|
-
Omit<PublicOf<
|
|
98
|
+
Omit<PublicOf<ZeroReportingWC>, 'children' | 'style'> &
|
|
99
99
|
HTMLWCProps & {
|
|
100
100
|
}
|
|
101
|
-
> & React.RefAttributes<
|
|
101
|
+
> & React.RefAttributes<ZeroReportingWC>
|
|
102
102
|
>;
|
|
103
|
-
export type
|
|
103
|
+
export type ZeroReportingRef = ZeroReportingWC;
|
|
104
104
|
|
|
105
105
|
export declare const FoundationReporting: React.ForwardRefExoticComponent<
|
|
106
106
|
React.PropsWithChildren<
|
|
@@ -120,109 +120,109 @@ export declare const RapidReporting: React.ForwardRefExoticComponent<
|
|
|
120
120
|
>;
|
|
121
121
|
export type RapidReportingRef = RapidReportingWC;
|
|
122
122
|
|
|
123
|
-
export declare const
|
|
123
|
+
export declare const NotPermitted: React.ForwardRefExoticComponent<
|
|
124
124
|
React.PropsWithChildren<
|
|
125
|
-
Omit<PublicOf<
|
|
125
|
+
Omit<PublicOf<NotPermittedWC>, 'children' | 'style'> &
|
|
126
126
|
HTMLWCProps & {
|
|
127
127
|
}
|
|
128
|
-
> & React.RefAttributes<
|
|
128
|
+
> & React.RefAttributes<NotPermittedWC>
|
|
129
129
|
>;
|
|
130
|
-
export type
|
|
130
|
+
export type NotPermittedRef = NotPermittedWC;
|
|
131
131
|
|
|
132
|
-
export declare const
|
|
132
|
+
export declare const FilterValueRenderer: React.ForwardRefExoticComponent<
|
|
133
133
|
React.PropsWithChildren<
|
|
134
|
-
Omit<PublicOf<
|
|
134
|
+
Omit<PublicOf<FilterValueRendererWC>, 'children' | 'style'> &
|
|
135
135
|
HTMLWCProps & {
|
|
136
136
|
}
|
|
137
|
-
> & React.RefAttributes<
|
|
137
|
+
> & React.RefAttributes<FilterValueRendererWC>
|
|
138
138
|
>;
|
|
139
|
-
export type
|
|
139
|
+
export type FilterValueRendererRef = FilterValueRendererWC;
|
|
140
140
|
|
|
141
|
-
export declare const
|
|
141
|
+
export declare const RowSelectRenderer: React.ForwardRefExoticComponent<
|
|
142
142
|
React.PropsWithChildren<
|
|
143
|
-
Omit<PublicOf<
|
|
143
|
+
Omit<PublicOf<RowSelectRendererWC>, 'children' | 'style'> &
|
|
144
144
|
HTMLWCProps & {
|
|
145
145
|
}
|
|
146
|
-
> & React.RefAttributes<
|
|
146
|
+
> & React.RefAttributes<RowSelectRendererWC>
|
|
147
147
|
>;
|
|
148
|
-
export type
|
|
148
|
+
export type RowSelectRendererRef = RowSelectRendererWC;
|
|
149
149
|
|
|
150
|
-
export declare const
|
|
150
|
+
export declare const SelectFields: React.ForwardRefExoticComponent<
|
|
151
151
|
React.PropsWithChildren<
|
|
152
|
-
Omit<PublicOf<
|
|
152
|
+
Omit<PublicOf<SelectFieldsWC>, 'children' | 'style'> &
|
|
153
153
|
HTMLWCProps & {
|
|
154
|
-
|
|
155
|
-
onHighlightGridRow?: (event: CustomEvent<unknown>) => void;
|
|
154
|
+
onSetSelectedFields?: (event: CustomEvent<SelectedFieldsEventDetail>) => void;
|
|
156
155
|
}
|
|
157
|
-
> & React.RefAttributes<
|
|
156
|
+
> & React.RefAttributes<SelectFieldsWC>
|
|
158
157
|
>;
|
|
159
|
-
export type
|
|
158
|
+
export type SelectFieldsRef = SelectFieldsWC;
|
|
160
159
|
|
|
161
|
-
export declare const
|
|
160
|
+
export declare const SelectFilters: React.ForwardRefExoticComponent<
|
|
162
161
|
React.PropsWithChildren<
|
|
163
|
-
Omit<PublicOf<
|
|
162
|
+
Omit<PublicOf<SelectFiltersWC>, 'children' | 'style'> &
|
|
164
163
|
HTMLWCProps & {
|
|
165
|
-
|
|
164
|
+
onSetSelectedFilters?: (event: CustomEvent<SelectedFiltersEventDetail>) => void;
|
|
166
165
|
}
|
|
167
|
-
> & React.RefAttributes<
|
|
166
|
+
> & React.RefAttributes<SelectFiltersWC>
|
|
168
167
|
>;
|
|
169
|
-
export type
|
|
168
|
+
export type SelectFiltersRef = SelectFiltersWC;
|
|
170
169
|
|
|
171
|
-
export declare const
|
|
170
|
+
export declare const CloneReportConfigModal: React.ForwardRefExoticComponent<
|
|
172
171
|
React.PropsWithChildren<
|
|
173
|
-
Omit<PublicOf<
|
|
172
|
+
Omit<PublicOf<CloneReportConfigModalWC>, 'children' | 'style'> &
|
|
174
173
|
HTMLWCProps & {
|
|
175
174
|
}
|
|
176
|
-
> & React.RefAttributes<
|
|
175
|
+
> & React.RefAttributes<CloneReportConfigModalWC>
|
|
177
176
|
>;
|
|
178
|
-
export type
|
|
177
|
+
export type CloneReportConfigModalRef = CloneReportConfigModalWC;
|
|
179
178
|
|
|
180
|
-
export declare const
|
|
179
|
+
export declare const DataTransformRenderer: React.ForwardRefExoticComponent<
|
|
181
180
|
React.PropsWithChildren<
|
|
182
|
-
Omit<PublicOf<
|
|
181
|
+
Omit<PublicOf<DataTransformRendererWC>, 'children' | 'style'> &
|
|
183
182
|
HTMLWCProps & {
|
|
184
183
|
}
|
|
185
|
-
> & React.RefAttributes<
|
|
184
|
+
> & React.RefAttributes<DataTransformRendererWC>
|
|
186
185
|
>;
|
|
187
|
-
export type
|
|
186
|
+
export type DataTransformRendererRef = DataTransformRendererWC;
|
|
188
187
|
|
|
189
|
-
export declare const
|
|
188
|
+
export declare const ReportingConfigurations: React.ForwardRefExoticComponent<
|
|
190
189
|
React.PropsWithChildren<
|
|
191
|
-
Omit<PublicOf<
|
|
190
|
+
Omit<PublicOf<ReportingConfigurationsWC>, 'children' | 'style'> &
|
|
192
191
|
HTMLWCProps & {
|
|
192
|
+
onSetReportConfigDispMode?: (event: CustomEvent<'edit' | 'list'>) => void;
|
|
193
|
+
onHighlightGridRow?: (event: CustomEvent<unknown>) => void;
|
|
193
194
|
}
|
|
194
|
-
> & React.RefAttributes<
|
|
195
|
+
> & React.RefAttributes<ReportingConfigurationsWC>
|
|
195
196
|
>;
|
|
196
|
-
export type
|
|
197
|
+
export type ReportingConfigurationsRef = ReportingConfigurationsWC;
|
|
197
198
|
|
|
198
|
-
export declare const
|
|
199
|
+
export declare const GeneratedReports: React.ForwardRefExoticComponent<
|
|
199
200
|
React.PropsWithChildren<
|
|
200
|
-
Omit<PublicOf<
|
|
201
|
+
Omit<PublicOf<GeneratedReportsWC>, 'children' | 'style'> &
|
|
201
202
|
HTMLWCProps & {
|
|
202
203
|
}
|
|
203
|
-
> & React.RefAttributes<
|
|
204
|
+
> & React.RefAttributes<GeneratedReportsWC>
|
|
204
205
|
>;
|
|
205
|
-
export type
|
|
206
|
+
export type GeneratedReportsRef = GeneratedReportsWC;
|
|
206
207
|
|
|
207
|
-
export declare const
|
|
208
|
+
export declare const ConfigJourneyOrchestrator: React.ForwardRefExoticComponent<
|
|
208
209
|
React.PropsWithChildren<
|
|
209
|
-
Omit<PublicOf<
|
|
210
|
+
Omit<PublicOf<ConfigJourneyOrchestratorWC>, 'children' | 'style'> &
|
|
210
211
|
HTMLWCProps & {
|
|
211
|
-
|
|
212
|
+
onSetReportConfigDispMode?: (event: CustomEvent<'edit' | 'list'>) => void;
|
|
212
213
|
}
|
|
213
|
-
> & React.RefAttributes<
|
|
214
|
+
> & React.RefAttributes<ConfigJourneyOrchestratorWC>
|
|
214
215
|
>;
|
|
215
|
-
export type
|
|
216
|
+
export type ConfigJourneyOrchestratorRef = ConfigJourneyOrchestratorWC;
|
|
216
217
|
|
|
217
|
-
export declare const
|
|
218
|
+
export declare const ReportDestinations: React.ForwardRefExoticComponent<
|
|
218
219
|
React.PropsWithChildren<
|
|
219
|
-
Omit<PublicOf<
|
|
220
|
+
Omit<PublicOf<ReportDestinationsWC>, 'children' | 'style'> &
|
|
220
221
|
HTMLWCProps & {
|
|
221
|
-
onSetSelectedFilters?: (event: CustomEvent<SelectedFiltersEventDetail>) => void;
|
|
222
222
|
}
|
|
223
|
-
> & React.RefAttributes<
|
|
223
|
+
> & React.RefAttributes<ReportDestinationsWC>
|
|
224
224
|
>;
|
|
225
|
-
export type
|
|
225
|
+
export type ReportDestinationsRef = ReportDestinationsWC;
|
|
226
226
|
|
|
227
227
|
export declare const BaseConfig: React.ForwardRefExoticComponent<
|
|
228
228
|
React.PropsWithChildren<
|
package/dist/react.cjs
CHANGED
|
@@ -54,32 +54,76 @@ const ReportingSandbox = React.forwardRef(function ReportingSandbox(props, ref)
|
|
|
54
54
|
|
|
55
55
|
const FoundationReporting = React.forwardRef(function FoundationReporting(props, ref) {
|
|
56
56
|
const { children, ...rest } = props;
|
|
57
|
-
return React.createElement(customElements.getName(FoundationReportingWC) ?? 'foundation-reporting', { ...rest, ref }, children);
|
|
57
|
+
return React.createElement(customElements.getName(FoundationReportingWC) ?? 'foundation-reporting-legacy', { ...rest, ref }, children);
|
|
58
58
|
});
|
|
59
59
|
|
|
60
60
|
const RapidReporting = React.forwardRef(function RapidReporting(props, ref) {
|
|
61
61
|
const { children, ...rest } = props;
|
|
62
|
-
return React.createElement(customElements.getName(RapidReportingWC) ?? 'rapid-reporting', { ...rest, ref }, children);
|
|
62
|
+
return React.createElement(customElements.getName(RapidReportingWC) ?? 'rapid-reporting-legacy', { ...rest, ref }, children);
|
|
63
63
|
});
|
|
64
64
|
|
|
65
|
-
const
|
|
65
|
+
const ZeroReporting = React.forwardRef(function ZeroReporting(props, ref) {
|
|
66
66
|
const { children, ...rest } = props;
|
|
67
|
-
return React.createElement(customElements.getName(
|
|
67
|
+
return React.createElement(customElements.getName(ZeroReportingWC) ?? 'zero-reporting-legacy', { ...rest, ref }, children);
|
|
68
68
|
});
|
|
69
69
|
|
|
70
70
|
const FoundationReporting = React.forwardRef(function FoundationReporting(props, ref) {
|
|
71
71
|
const { children, ...rest } = props;
|
|
72
|
-
return React.createElement(customElements.getName(FoundationReportingWC) ?? 'foundation-reporting', { ...rest, ref }, children);
|
|
72
|
+
return React.createElement(customElements.getName(FoundationReportingWC) ?? 'foundation-reporting-legacy', { ...rest, ref }, children);
|
|
73
73
|
});
|
|
74
74
|
|
|
75
75
|
const RapidReporting = React.forwardRef(function RapidReporting(props, ref) {
|
|
76
76
|
const { children, ...rest } = props;
|
|
77
|
-
return React.createElement(customElements.getName(RapidReportingWC) ?? 'rapid-reporting', { ...rest, ref }, children);
|
|
77
|
+
return React.createElement(customElements.getName(RapidReportingWC) ?? 'rapid-reporting-legacy', { ...rest, ref }, children);
|
|
78
78
|
});
|
|
79
79
|
|
|
80
|
-
const
|
|
80
|
+
const NotPermitted = React.forwardRef(function NotPermitted(props, ref) {
|
|
81
81
|
const { children, ...rest } = props;
|
|
82
|
-
return React.createElement(customElements.getName(
|
|
82
|
+
return React.createElement(customElements.getName(NotPermittedWC) ?? 'not-permitted', { ...rest, ref }, children);
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
const FilterValueRenderer = React.forwardRef(function FilterValueRenderer(props, ref) {
|
|
86
|
+
const { children, ...rest } = props;
|
|
87
|
+
return React.createElement(customElements.getName(FilterValueRendererWC) ?? '%%prefix%%-filter-value-renderer', { ...rest, ref }, children);
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
const RowSelectRenderer = React.forwardRef(function RowSelectRenderer(props, ref) {
|
|
91
|
+
const { children, ...rest } = props;
|
|
92
|
+
return React.createElement(customElements.getName(RowSelectRendererWC) ?? '%%prefix%%-row-select-renderer', { ...rest, ref }, children);
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
const SelectFields = React.forwardRef(function SelectFields(props, ref) {
|
|
96
|
+
const { onSetSelectedFields, children, ...rest } = props;
|
|
97
|
+
const _innerRef = React.useRef(null);
|
|
98
|
+
const _onSetSelectedFieldsRef = React.useRef(onSetSelectedFields);
|
|
99
|
+
_onSetSelectedFieldsRef.current = onSetSelectedFields;
|
|
100
|
+
React.useLayoutEffect(() => {
|
|
101
|
+
const el = _innerRef.current;
|
|
102
|
+
if (!el) return;
|
|
103
|
+
const _onSetSelectedFieldsFn = (e) => _onSetSelectedFieldsRef.current?.(e);
|
|
104
|
+
el.addEventListener('setSelectedFields', _onSetSelectedFieldsFn);
|
|
105
|
+
return () => {
|
|
106
|
+
el.removeEventListener('setSelectedFields', _onSetSelectedFieldsFn);
|
|
107
|
+
};
|
|
108
|
+
}, []);
|
|
109
|
+
return React.createElement(customElements.getName(SelectFieldsWC) ?? 'reporting-select-fields', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
const SelectFilters = React.forwardRef(function SelectFilters(props, ref) {
|
|
113
|
+
const { onSetSelectedFilters, children, ...rest } = props;
|
|
114
|
+
const _innerRef = React.useRef(null);
|
|
115
|
+
const _onSetSelectedFiltersRef = React.useRef(onSetSelectedFilters);
|
|
116
|
+
_onSetSelectedFiltersRef.current = onSetSelectedFilters;
|
|
117
|
+
React.useLayoutEffect(() => {
|
|
118
|
+
const el = _innerRef.current;
|
|
119
|
+
if (!el) return;
|
|
120
|
+
const _onSetSelectedFiltersFn = (e) => _onSetSelectedFiltersRef.current?.(e);
|
|
121
|
+
el.addEventListener('setSelectedFilters', _onSetSelectedFiltersFn);
|
|
122
|
+
return () => {
|
|
123
|
+
el.removeEventListener('setSelectedFilters', _onSetSelectedFiltersFn);
|
|
124
|
+
};
|
|
125
|
+
}, []);
|
|
126
|
+
return React.createElement(customElements.getName(SelectFiltersWC) ?? 'reporting-select-filters', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
83
127
|
});
|
|
84
128
|
|
|
85
129
|
const CloneReportConfigModal = React.forwardRef(function CloneReportConfigModal(props, ref) {
|
|
@@ -114,6 +158,11 @@ const ReportingConfigurations = React.forwardRef(function ReportingConfiguration
|
|
|
114
158
|
return React.createElement(customElements.getName(ReportingConfigurationsWC) ?? 'reporting-configurations', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
115
159
|
});
|
|
116
160
|
|
|
161
|
+
const GeneratedReports = React.forwardRef(function GeneratedReports(props, ref) {
|
|
162
|
+
const { children, ...rest } = props;
|
|
163
|
+
return React.createElement(customElements.getName(GeneratedReportsWC) ?? 'generated-reports', { ...rest, ref }, children);
|
|
164
|
+
});
|
|
165
|
+
|
|
117
166
|
const ConfigJourneyOrchestrator = React.forwardRef(function ConfigJourneyOrchestrator(props, ref) {
|
|
118
167
|
const { onSetReportConfigDispMode, children, ...rest } = props;
|
|
119
168
|
const _innerRef = React.useRef(null);
|
|
@@ -131,60 +180,11 @@ const ConfigJourneyOrchestrator = React.forwardRef(function ConfigJourneyOrchest
|
|
|
131
180
|
return React.createElement(customElements.getName(ConfigJourneyOrchestratorWC) ?? 'config-journey-orchestrator', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
132
181
|
});
|
|
133
182
|
|
|
134
|
-
const GeneratedReports = React.forwardRef(function GeneratedReports(props, ref) {
|
|
135
|
-
const { children, ...rest } = props;
|
|
136
|
-
return React.createElement(customElements.getName(GeneratedReportsWC) ?? 'generated-reports', { ...rest, ref }, children);
|
|
137
|
-
});
|
|
138
|
-
|
|
139
183
|
const ReportDestinations = React.forwardRef(function ReportDestinations(props, ref) {
|
|
140
184
|
const { children, ...rest } = props;
|
|
141
185
|
return React.createElement(customElements.getName(ReportDestinationsWC) ?? 'report-destinations', { ...rest, ref }, children);
|
|
142
186
|
});
|
|
143
187
|
|
|
144
|
-
const FilterValueRenderer = React.forwardRef(function FilterValueRenderer(props, ref) {
|
|
145
|
-
const { children, ...rest } = props;
|
|
146
|
-
return React.createElement(customElements.getName(FilterValueRendererWC) ?? '%%prefix%%-filter-value-renderer', { ...rest, ref }, children);
|
|
147
|
-
});
|
|
148
|
-
|
|
149
|
-
const RowSelectRenderer = React.forwardRef(function RowSelectRenderer(props, ref) {
|
|
150
|
-
const { children, ...rest } = props;
|
|
151
|
-
return React.createElement(customElements.getName(RowSelectRendererWC) ?? '%%prefix%%-row-select-renderer', { ...rest, ref }, children);
|
|
152
|
-
});
|
|
153
|
-
|
|
154
|
-
const SelectFields = React.forwardRef(function SelectFields(props, ref) {
|
|
155
|
-
const { onSetSelectedFields, children, ...rest } = props;
|
|
156
|
-
const _innerRef = React.useRef(null);
|
|
157
|
-
const _onSetSelectedFieldsRef = React.useRef(onSetSelectedFields);
|
|
158
|
-
_onSetSelectedFieldsRef.current = onSetSelectedFields;
|
|
159
|
-
React.useLayoutEffect(() => {
|
|
160
|
-
const el = _innerRef.current;
|
|
161
|
-
if (!el) return;
|
|
162
|
-
const _onSetSelectedFieldsFn = (e) => _onSetSelectedFieldsRef.current?.(e);
|
|
163
|
-
el.addEventListener('setSelectedFields', _onSetSelectedFieldsFn);
|
|
164
|
-
return () => {
|
|
165
|
-
el.removeEventListener('setSelectedFields', _onSetSelectedFieldsFn);
|
|
166
|
-
};
|
|
167
|
-
}, []);
|
|
168
|
-
return React.createElement(customElements.getName(SelectFieldsWC) ?? 'reporting-select-fields', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
169
|
-
});
|
|
170
|
-
|
|
171
|
-
const SelectFilters = React.forwardRef(function SelectFilters(props, ref) {
|
|
172
|
-
const { onSetSelectedFilters, children, ...rest } = props;
|
|
173
|
-
const _innerRef = React.useRef(null);
|
|
174
|
-
const _onSetSelectedFiltersRef = React.useRef(onSetSelectedFilters);
|
|
175
|
-
_onSetSelectedFiltersRef.current = onSetSelectedFilters;
|
|
176
|
-
React.useLayoutEffect(() => {
|
|
177
|
-
const el = _innerRef.current;
|
|
178
|
-
if (!el) return;
|
|
179
|
-
const _onSetSelectedFiltersFn = (e) => _onSetSelectedFiltersRef.current?.(e);
|
|
180
|
-
el.addEventListener('setSelectedFilters', _onSetSelectedFiltersFn);
|
|
181
|
-
return () => {
|
|
182
|
-
el.removeEventListener('setSelectedFilters', _onSetSelectedFiltersFn);
|
|
183
|
-
};
|
|
184
|
-
}, []);
|
|
185
|
-
return React.createElement(customElements.getName(SelectFiltersWC) ?? 'reporting-select-filters', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
186
|
-
});
|
|
187
|
-
|
|
188
188
|
const BaseConfig = React.forwardRef(function BaseConfig(props, ref) {
|
|
189
189
|
const { children, ...rest } = props;
|
|
190
190
|
return React.createElement(customElements.getName(BaseConfigWC) ?? 'base-config', { ...rest, ref }, children);
|
|
@@ -298,20 +298,20 @@ module.exports = {
|
|
|
298
298
|
ReportingSandbox,
|
|
299
299
|
FoundationReporting,
|
|
300
300
|
RapidReporting,
|
|
301
|
-
|
|
301
|
+
ZeroReporting,
|
|
302
302
|
FoundationReporting,
|
|
303
303
|
RapidReporting,
|
|
304
|
-
|
|
304
|
+
NotPermitted,
|
|
305
|
+
FilterValueRenderer,
|
|
306
|
+
RowSelectRenderer,
|
|
307
|
+
SelectFields,
|
|
308
|
+
SelectFilters,
|
|
305
309
|
CloneReportConfigModal,
|
|
306
310
|
DataTransformRenderer,
|
|
307
311
|
ReportingConfigurations,
|
|
308
|
-
ConfigJourneyOrchestrator,
|
|
309
312
|
GeneratedReports,
|
|
313
|
+
ConfigJourneyOrchestrator,
|
|
310
314
|
ReportDestinations,
|
|
311
|
-
FilterValueRenderer,
|
|
312
|
-
RowSelectRenderer,
|
|
313
|
-
SelectFields,
|
|
314
|
-
SelectFilters,
|
|
315
315
|
BaseConfig,
|
|
316
316
|
ColFiltersGrid,
|
|
317
317
|
ColFiltersTutorial,
|
package/dist/react.mjs
CHANGED
|
@@ -52,32 +52,76 @@ export const ReportingSandbox = React.forwardRef(function ReportingSandbox(props
|
|
|
52
52
|
|
|
53
53
|
export const FoundationReporting = React.forwardRef(function FoundationReporting(props, ref) {
|
|
54
54
|
const { children, ...rest } = props;
|
|
55
|
-
return React.createElement(customElements.getName(FoundationReportingWC) ?? 'foundation-reporting', { ...rest, ref }, children);
|
|
55
|
+
return React.createElement(customElements.getName(FoundationReportingWC) ?? 'foundation-reporting-legacy', { ...rest, ref }, children);
|
|
56
56
|
});
|
|
57
57
|
|
|
58
58
|
export const RapidReporting = React.forwardRef(function RapidReporting(props, ref) {
|
|
59
59
|
const { children, ...rest } = props;
|
|
60
|
-
return React.createElement(customElements.getName(RapidReportingWC) ?? 'rapid-reporting', { ...rest, ref }, children);
|
|
60
|
+
return React.createElement(customElements.getName(RapidReportingWC) ?? 'rapid-reporting-legacy', { ...rest, ref }, children);
|
|
61
61
|
});
|
|
62
62
|
|
|
63
|
-
export const
|
|
63
|
+
export const ZeroReporting = React.forwardRef(function ZeroReporting(props, ref) {
|
|
64
64
|
const { children, ...rest } = props;
|
|
65
|
-
return React.createElement(customElements.getName(
|
|
65
|
+
return React.createElement(customElements.getName(ZeroReportingWC) ?? 'zero-reporting-legacy', { ...rest, ref }, children);
|
|
66
66
|
});
|
|
67
67
|
|
|
68
68
|
export const FoundationReporting = React.forwardRef(function FoundationReporting(props, ref) {
|
|
69
69
|
const { children, ...rest } = props;
|
|
70
|
-
return React.createElement(customElements.getName(FoundationReportingWC) ?? 'foundation-reporting', { ...rest, ref }, children);
|
|
70
|
+
return React.createElement(customElements.getName(FoundationReportingWC) ?? 'foundation-reporting-legacy', { ...rest, ref }, children);
|
|
71
71
|
});
|
|
72
72
|
|
|
73
73
|
export const RapidReporting = React.forwardRef(function RapidReporting(props, ref) {
|
|
74
74
|
const { children, ...rest } = props;
|
|
75
|
-
return React.createElement(customElements.getName(RapidReportingWC) ?? 'rapid-reporting', { ...rest, ref }, children);
|
|
75
|
+
return React.createElement(customElements.getName(RapidReportingWC) ?? 'rapid-reporting-legacy', { ...rest, ref }, children);
|
|
76
76
|
});
|
|
77
77
|
|
|
78
|
-
export const
|
|
78
|
+
export const NotPermitted = React.forwardRef(function NotPermitted(props, ref) {
|
|
79
79
|
const { children, ...rest } = props;
|
|
80
|
-
return React.createElement(customElements.getName(
|
|
80
|
+
return React.createElement(customElements.getName(NotPermittedWC) ?? 'not-permitted', { ...rest, ref }, children);
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
export const FilterValueRenderer = React.forwardRef(function FilterValueRenderer(props, ref) {
|
|
84
|
+
const { children, ...rest } = props;
|
|
85
|
+
return React.createElement(customElements.getName(FilterValueRendererWC) ?? '%%prefix%%-filter-value-renderer', { ...rest, ref }, children);
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
export const RowSelectRenderer = React.forwardRef(function RowSelectRenderer(props, ref) {
|
|
89
|
+
const { children, ...rest } = props;
|
|
90
|
+
return React.createElement(customElements.getName(RowSelectRendererWC) ?? '%%prefix%%-row-select-renderer', { ...rest, ref }, children);
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
export const SelectFields = React.forwardRef(function SelectFields(props, ref) {
|
|
94
|
+
const { onSetSelectedFields, children, ...rest } = props;
|
|
95
|
+
const _innerRef = React.useRef(null);
|
|
96
|
+
const _onSetSelectedFieldsRef = React.useRef(onSetSelectedFields);
|
|
97
|
+
_onSetSelectedFieldsRef.current = onSetSelectedFields;
|
|
98
|
+
React.useLayoutEffect(() => {
|
|
99
|
+
const el = _innerRef.current;
|
|
100
|
+
if (!el) return;
|
|
101
|
+
const _onSetSelectedFieldsFn = (e) => _onSetSelectedFieldsRef.current?.(e);
|
|
102
|
+
el.addEventListener('setSelectedFields', _onSetSelectedFieldsFn);
|
|
103
|
+
return () => {
|
|
104
|
+
el.removeEventListener('setSelectedFields', _onSetSelectedFieldsFn);
|
|
105
|
+
};
|
|
106
|
+
}, []);
|
|
107
|
+
return React.createElement(customElements.getName(SelectFieldsWC) ?? 'reporting-select-fields', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
108
|
+
});
|
|
109
|
+
|
|
110
|
+
export const SelectFilters = React.forwardRef(function SelectFilters(props, ref) {
|
|
111
|
+
const { onSetSelectedFilters, children, ...rest } = props;
|
|
112
|
+
const _innerRef = React.useRef(null);
|
|
113
|
+
const _onSetSelectedFiltersRef = React.useRef(onSetSelectedFilters);
|
|
114
|
+
_onSetSelectedFiltersRef.current = onSetSelectedFilters;
|
|
115
|
+
React.useLayoutEffect(() => {
|
|
116
|
+
const el = _innerRef.current;
|
|
117
|
+
if (!el) return;
|
|
118
|
+
const _onSetSelectedFiltersFn = (e) => _onSetSelectedFiltersRef.current?.(e);
|
|
119
|
+
el.addEventListener('setSelectedFilters', _onSetSelectedFiltersFn);
|
|
120
|
+
return () => {
|
|
121
|
+
el.removeEventListener('setSelectedFilters', _onSetSelectedFiltersFn);
|
|
122
|
+
};
|
|
123
|
+
}, []);
|
|
124
|
+
return React.createElement(customElements.getName(SelectFiltersWC) ?? 'reporting-select-filters', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
81
125
|
});
|
|
82
126
|
|
|
83
127
|
export const CloneReportConfigModal = React.forwardRef(function CloneReportConfigModal(props, ref) {
|
|
@@ -112,6 +156,11 @@ export const ReportingConfigurations = React.forwardRef(function ReportingConfig
|
|
|
112
156
|
return React.createElement(customElements.getName(ReportingConfigurationsWC) ?? 'reporting-configurations', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
113
157
|
});
|
|
114
158
|
|
|
159
|
+
export const GeneratedReports = React.forwardRef(function GeneratedReports(props, ref) {
|
|
160
|
+
const { children, ...rest } = props;
|
|
161
|
+
return React.createElement(customElements.getName(GeneratedReportsWC) ?? 'generated-reports', { ...rest, ref }, children);
|
|
162
|
+
});
|
|
163
|
+
|
|
115
164
|
export const ConfigJourneyOrchestrator = React.forwardRef(function ConfigJourneyOrchestrator(props, ref) {
|
|
116
165
|
const { onSetReportConfigDispMode, children, ...rest } = props;
|
|
117
166
|
const _innerRef = React.useRef(null);
|
|
@@ -129,60 +178,11 @@ export const ConfigJourneyOrchestrator = React.forwardRef(function ConfigJourney
|
|
|
129
178
|
return React.createElement(customElements.getName(ConfigJourneyOrchestratorWC) ?? 'config-journey-orchestrator', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
130
179
|
});
|
|
131
180
|
|
|
132
|
-
export const GeneratedReports = React.forwardRef(function GeneratedReports(props, ref) {
|
|
133
|
-
const { children, ...rest } = props;
|
|
134
|
-
return React.createElement(customElements.getName(GeneratedReportsWC) ?? 'generated-reports', { ...rest, ref }, children);
|
|
135
|
-
});
|
|
136
|
-
|
|
137
181
|
export const ReportDestinations = React.forwardRef(function ReportDestinations(props, ref) {
|
|
138
182
|
const { children, ...rest } = props;
|
|
139
183
|
return React.createElement(customElements.getName(ReportDestinationsWC) ?? 'report-destinations', { ...rest, ref }, children);
|
|
140
184
|
});
|
|
141
185
|
|
|
142
|
-
export const FilterValueRenderer = React.forwardRef(function FilterValueRenderer(props, ref) {
|
|
143
|
-
const { children, ...rest } = props;
|
|
144
|
-
return React.createElement(customElements.getName(FilterValueRendererWC) ?? '%%prefix%%-filter-value-renderer', { ...rest, ref }, children);
|
|
145
|
-
});
|
|
146
|
-
|
|
147
|
-
export const RowSelectRenderer = React.forwardRef(function RowSelectRenderer(props, ref) {
|
|
148
|
-
const { children, ...rest } = props;
|
|
149
|
-
return React.createElement(customElements.getName(RowSelectRendererWC) ?? '%%prefix%%-row-select-renderer', { ...rest, ref }, children);
|
|
150
|
-
});
|
|
151
|
-
|
|
152
|
-
export const SelectFields = React.forwardRef(function SelectFields(props, ref) {
|
|
153
|
-
const { onSetSelectedFields, children, ...rest } = props;
|
|
154
|
-
const _innerRef = React.useRef(null);
|
|
155
|
-
const _onSetSelectedFieldsRef = React.useRef(onSetSelectedFields);
|
|
156
|
-
_onSetSelectedFieldsRef.current = onSetSelectedFields;
|
|
157
|
-
React.useLayoutEffect(() => {
|
|
158
|
-
const el = _innerRef.current;
|
|
159
|
-
if (!el) return;
|
|
160
|
-
const _onSetSelectedFieldsFn = (e) => _onSetSelectedFieldsRef.current?.(e);
|
|
161
|
-
el.addEventListener('setSelectedFields', _onSetSelectedFieldsFn);
|
|
162
|
-
return () => {
|
|
163
|
-
el.removeEventListener('setSelectedFields', _onSetSelectedFieldsFn);
|
|
164
|
-
};
|
|
165
|
-
}, []);
|
|
166
|
-
return React.createElement(customElements.getName(SelectFieldsWC) ?? 'reporting-select-fields', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
167
|
-
});
|
|
168
|
-
|
|
169
|
-
export const SelectFilters = React.forwardRef(function SelectFilters(props, ref) {
|
|
170
|
-
const { onSetSelectedFilters, children, ...rest } = props;
|
|
171
|
-
const _innerRef = React.useRef(null);
|
|
172
|
-
const _onSetSelectedFiltersRef = React.useRef(onSetSelectedFilters);
|
|
173
|
-
_onSetSelectedFiltersRef.current = onSetSelectedFilters;
|
|
174
|
-
React.useLayoutEffect(() => {
|
|
175
|
-
const el = _innerRef.current;
|
|
176
|
-
if (!el) return;
|
|
177
|
-
const _onSetSelectedFiltersFn = (e) => _onSetSelectedFiltersRef.current?.(e);
|
|
178
|
-
el.addEventListener('setSelectedFilters', _onSetSelectedFiltersFn);
|
|
179
|
-
return () => {
|
|
180
|
-
el.removeEventListener('setSelectedFilters', _onSetSelectedFiltersFn);
|
|
181
|
-
};
|
|
182
|
-
}, []);
|
|
183
|
-
return React.createElement(customElements.getName(SelectFiltersWC) ?? 'reporting-select-filters', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
184
|
-
});
|
|
185
|
-
|
|
186
186
|
export const BaseConfig = React.forwardRef(function BaseConfig(props, ref) {
|
|
187
187
|
const { children, ...rest } = props;
|
|
188
188
|
return React.createElement(customElements.getName(BaseConfigWC) ?? 'base-config', { ...rest, ref }, children);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/pbc-reporting-ui",
|
|
3
3
|
"description": "Genesis PBC Reporting UI",
|
|
4
|
-
"version": "15.19.
|
|
4
|
+
"version": "15.19.6",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/dts/index.d.ts",
|
|
@@ -86,32 +86,32 @@
|
|
|
86
86
|
"@ag-grid-community/core": "29.2.0"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@genesislcap/foundation-comms": "15.19.
|
|
90
|
-
"@genesislcap/foundation-entity-management": "15.19.
|
|
91
|
-
"@genesislcap/foundation-events": "15.19.
|
|
92
|
-
"@genesislcap/foundation-forms": "15.19.
|
|
93
|
-
"@genesislcap/foundation-logger": "15.19.
|
|
94
|
-
"@genesislcap/foundation-notifications": "15.19.
|
|
95
|
-
"@genesislcap/foundation-ui": "15.19.
|
|
96
|
-
"@genesislcap/foundation-user": "15.19.
|
|
97
|
-
"@genesislcap/foundation-utils": "15.19.
|
|
98
|
-
"@genesislcap/foundation-zero": "15.19.
|
|
99
|
-
"@genesislcap/foundation-zero-grid-pro": "15.19.
|
|
100
|
-
"@genesislcap/grid-pro": "15.19.
|
|
101
|
-
"@genesislcap/rapid-design-system": "15.19.
|
|
102
|
-
"@genesislcap/rapid-grid-pro": "15.19.
|
|
103
|
-
"@genesislcap/web-core": "15.19.
|
|
89
|
+
"@genesislcap/foundation-comms": "15.19.6",
|
|
90
|
+
"@genesislcap/foundation-entity-management": "15.19.6",
|
|
91
|
+
"@genesislcap/foundation-events": "15.19.6",
|
|
92
|
+
"@genesislcap/foundation-forms": "15.19.6",
|
|
93
|
+
"@genesislcap/foundation-logger": "15.19.6",
|
|
94
|
+
"@genesislcap/foundation-notifications": "15.19.6",
|
|
95
|
+
"@genesislcap/foundation-ui": "15.19.6",
|
|
96
|
+
"@genesislcap/foundation-user": "15.19.6",
|
|
97
|
+
"@genesislcap/foundation-utils": "15.19.6",
|
|
98
|
+
"@genesislcap/foundation-zero": "15.19.6",
|
|
99
|
+
"@genesislcap/foundation-zero-grid-pro": "15.19.6",
|
|
100
|
+
"@genesislcap/grid-pro": "15.19.6",
|
|
101
|
+
"@genesislcap/rapid-design-system": "15.19.6",
|
|
102
|
+
"@genesislcap/rapid-grid-pro": "15.19.6",
|
|
103
|
+
"@genesislcap/web-core": "15.19.6",
|
|
104
104
|
"@reduxjs/toolkit": "^2.2.5",
|
|
105
105
|
"@types/node": "^22.10.2",
|
|
106
106
|
"change-case": "^5.4.3",
|
|
107
107
|
"lodash": "^4.17.21"
|
|
108
108
|
},
|
|
109
109
|
"devDependencies": {
|
|
110
|
-
"@genesislcap/eslint-config": "15.19.
|
|
111
|
-
"@genesislcap/foundation-testing": "15.19.
|
|
112
|
-
"@genesislcap/genx": "15.19.
|
|
113
|
-
"@genesislcap/prettier-config": "15.19.
|
|
114
|
-
"@genesislcap/stylelint-config": "15.19.
|
|
110
|
+
"@genesislcap/eslint-config": "15.19.6",
|
|
111
|
+
"@genesislcap/foundation-testing": "15.19.6",
|
|
112
|
+
"@genesislcap/genx": "15.19.6",
|
|
113
|
+
"@genesislcap/prettier-config": "15.19.6",
|
|
114
|
+
"@genesislcap/stylelint-config": "15.19.6",
|
|
115
115
|
"@types/json-schema": "^7.0.11",
|
|
116
116
|
"playwright-lighthouse": "^4.0.0",
|
|
117
117
|
"rimraf": "^5.0.0"
|