@genesislcap/pbc-notify-ui 14.488.0 → 14.488.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.
@@ -67,6 +67,15 @@ export declare const ReconciliationSandbox: React.ForwardRefExoticComponent<
67
67
  >;
68
68
  export type ReconciliationSandboxRef = ReconciliationSandboxWC;
69
69
 
70
+ export declare const FoundationInbox: React.ForwardRefExoticComponent<
71
+ React.PropsWithChildren<
72
+ Omit<PublicOf<FoundationInboxWC>, 'children' | 'style'> &
73
+ HTMLWCProps & {
74
+ }
75
+ > & React.RefAttributes<FoundationInboxWC>
76
+ >;
77
+ export type FoundationInboxRef = FoundationInboxWC;
78
+
70
79
  export declare const FoundationNotificationDashboard: React.ForwardRefExoticComponent<
71
80
  React.PropsWithChildren<
72
81
  Omit<PublicOf<FoundationNotificationDashboardWC>, 'children' | 'style'> &
@@ -76,14 +85,34 @@ export declare const FoundationNotificationDashboard: React.ForwardRefExoticComp
76
85
  >;
77
86
  export type FoundationNotificationDashboardRef = FoundationNotificationDashboardWC;
78
87
 
79
- export declare const FoundationInbox: React.ForwardRefExoticComponent<
88
+ export declare const FoundationInboxCounter: React.ForwardRefExoticComponent<
80
89
  React.PropsWithChildren<
81
- Omit<PublicOf<FoundationInboxWC>, 'children' | 'style'> &
90
+ Omit<PublicOf<FoundationInboxCounterWC>, 'children' | 'style'> &
82
91
  HTMLWCProps & {
83
92
  }
84
- > & React.RefAttributes<FoundationInboxWC>
93
+ > & React.RefAttributes<FoundationInboxCounterWC>
85
94
  >;
86
- export type FoundationInboxRef = FoundationInboxWC;
95
+ export type FoundationInboxCounterRef = FoundationInboxCounterWC;
96
+
97
+ export declare const FoundationInboxFlyout: React.ForwardRefExoticComponent<
98
+ React.PropsWithChildren<
99
+ Omit<PublicOf<FoundationInboxFlyoutWC>, 'children' | 'style'> &
100
+ HTMLWCProps & {
101
+ }
102
+ > & React.RefAttributes<FoundationInboxFlyoutWC>
103
+ >;
104
+ export type FoundationInboxFlyoutRef = FoundationInboxFlyoutWC;
105
+
106
+ export declare const InboxSubscription: React.ForwardRefExoticComponent<
107
+ React.PropsWithChildren<
108
+ Omit<PublicOf<InboxSubscriptionWC>, 'children' | 'style'> &
109
+ HTMLWCProps & {
110
+ onTemplateSubscribed?: (event: CustomEvent<unknown>) => void;
111
+ onSubscribeCancelled?: (event: CustomEvent<unknown>) => void;
112
+ }
113
+ > & React.RefAttributes<InboxSubscriptionWC>
114
+ >;
115
+ export type InboxSubscriptionRef = InboxSubscriptionWC;
87
116
 
88
117
  export declare const NotifyAuditManagement: React.ForwardRefExoticComponent<
89
118
  React.PropsWithChildren<
@@ -121,34 +150,15 @@ export declare const TemplateManagement: React.ForwardRefExoticComponent<
121
150
  >;
122
151
  export type TemplateManagementRef = TemplateManagementWC;
123
152
 
124
- export declare const FoundationInboxCounter: React.ForwardRefExoticComponent<
125
- React.PropsWithChildren<
126
- Omit<PublicOf<FoundationInboxCounterWC>, 'children' | 'style'> &
127
- HTMLWCProps & {
128
- }
129
- > & React.RefAttributes<FoundationInboxCounterWC>
130
- >;
131
- export type FoundationInboxCounterRef = FoundationInboxCounterWC;
132
-
133
- export declare const FoundationInboxFlyout: React.ForwardRefExoticComponent<
134
- React.PropsWithChildren<
135
- Omit<PublicOf<FoundationInboxFlyoutWC>, 'children' | 'style'> &
136
- HTMLWCProps & {
137
- }
138
- > & React.RefAttributes<FoundationInboxFlyoutWC>
139
- >;
140
- export type FoundationInboxFlyoutRef = FoundationInboxFlyoutWC;
141
-
142
- export declare const InboxSubscription: React.ForwardRefExoticComponent<
153
+ export declare const RuleParameter: React.ForwardRefExoticComponent<
143
154
  React.PropsWithChildren<
144
- Omit<PublicOf<InboxSubscriptionWC>, 'children' | 'style'> &
155
+ Omit<PublicOf<RuleParameterWC>, 'children' | 'style'> &
145
156
  HTMLWCProps & {
146
- onTemplateSubscribed?: (event: CustomEvent<unknown>) => void;
147
- onSubscribeCancelled?: (event: CustomEvent<unknown>) => void;
157
+ onParameterEdited?: (event: CustomEvent<ParameterEditedEventDetail>) => void;
148
158
  }
149
- > & React.RefAttributes<InboxSubscriptionWC>
159
+ > & React.RefAttributes<RuleParameterWC>
150
160
  >;
151
- export type InboxSubscriptionRef = InboxSubscriptionWC;
161
+ export type RuleParameterRef = RuleParameterWC;
152
162
 
153
163
  export declare const EmailDistributionRouteManagement: React.ForwardRefExoticComponent<
154
164
  React.PropsWithChildren<
@@ -215,16 +225,6 @@ export declare const TemplateDialog: React.ForwardRefExoticComponent<
215
225
  >;
216
226
  export type TemplateDialogRef = TemplateDialogWC;
217
227
 
218
- export declare const RuleParameter: React.ForwardRefExoticComponent<
219
- React.PropsWithChildren<
220
- Omit<PublicOf<RuleParameterWC>, 'children' | 'style'> &
221
- HTMLWCProps & {
222
- onParameterEdited?: (event: CustomEvent<ParameterEditedEventDetail>) => void;
223
- }
224
- > & React.RefAttributes<RuleParameterWC>
225
- >;
226
- export type RuleParameterRef = RuleParameterWC;
227
-
228
228
  export declare const RuleConditionBuilder: React.ForwardRefExoticComponent<
229
229
  React.PropsWithChildren<
230
230
  Omit<PublicOf<RuleConditionBuilderWC>, 'children' | 'style'> &
@@ -258,17 +258,6 @@ export declare const ParameterBuilder: React.ForwardRefExoticComponent<
258
258
  >;
259
259
  export type ParameterBuilderRef = ParameterBuilderWC;
260
260
 
261
- export declare const TemplateConditionBuilder: React.ForwardRefExoticComponent<
262
- React.PropsWithChildren<
263
- Omit<PublicOf<TemplateConditionBuilderWC>, 'children' | 'style'> &
264
- HTMLWCProps & {
265
- onDelete?: (event: CustomEvent<ConditionBuilderEntity>) => void;
266
- onEdit?: (event: CustomEvent<ConditionBuilderEntity>) => void;
267
- }
268
- > & React.RefAttributes<TemplateConditionBuilderWC>
269
- >;
270
- export type TemplateConditionBuilderRef = TemplateConditionBuilderWC;
271
-
272
261
  export declare const TemplateConditionGroup: React.ForwardRefExoticComponent<
273
262
  React.PropsWithChildren<
274
263
  Omit<PublicOf<TemplateConditionGroupWC>, 'children' | 'style'> &
@@ -280,4 +269,15 @@ export declare const TemplateConditionGroup: React.ForwardRefExoticComponent<
280
269
  >;
281
270
  export type TemplateConditionGroupRef = TemplateConditionGroupWC;
282
271
 
272
+ export declare const TemplateConditionBuilder: React.ForwardRefExoticComponent<
273
+ React.PropsWithChildren<
274
+ Omit<PublicOf<TemplateConditionBuilderWC>, 'children' | 'style'> &
275
+ HTMLWCProps & {
276
+ onDelete?: (event: CustomEvent<ConditionBuilderEntity>) => void;
277
+ onEdit?: (event: CustomEvent<ConditionBuilderEntity>) => void;
278
+ }
279
+ > & React.RefAttributes<TemplateConditionBuilderWC>
280
+ >;
281
+ export type TemplateConditionBuilderRef = TemplateConditionBuilderWC;
282
+
283
283
  export {};
package/dist/react.cjs CHANGED
@@ -44,34 +44,14 @@ const ReconciliationSandbox = React.forwardRef(function ReconciliationSandbox(pr
44
44
  return React.createElement(customElements.getName(ReconciliationSandboxWC) ?? 'notify-sandbox', { ...rest, ref }, children);
45
45
  });
46
46
 
47
- const FoundationNotificationDashboard = React.forwardRef(function FoundationNotificationDashboard(props, ref) {
48
- const { children, ...rest } = props;
49
- return React.createElement(customElements.getName(FoundationNotificationDashboardWC) ?? 'foundation-notification-dashboard', { ...rest, ref }, children);
50
- });
51
-
52
47
  const FoundationInbox = React.forwardRef(function FoundationInbox(props, ref) {
53
48
  const { children, ...rest } = props;
54
49
  return React.createElement(customElements.getName(FoundationInboxWC) ?? 'foundation-inbox', { ...rest, ref }, children);
55
50
  });
56
51
 
57
- const NotifyAuditManagement = React.forwardRef(function NotifyAuditManagement(props, ref) {
58
- const { children, ...rest } = props;
59
- return React.createElement(customElements.getName(NotifyAuditManagementWC) ?? 'notify-audit-management', { ...rest, ref }, children);
60
- });
61
-
62
- const RouteManagement = React.forwardRef(function RouteManagement(props, ref) {
63
- const { children, ...rest } = props;
64
- return React.createElement(customElements.getName(RouteManagementWC) ?? 'route-management', { ...rest, ref }, children);
65
- });
66
-
67
- const RuleManagement = React.forwardRef(function RuleManagement(props, ref) {
68
- const { children, ...rest } = props;
69
- return React.createElement(customElements.getName(RuleManagementWC) ?? 'rule-management', { ...rest, ref }, children);
70
- });
71
-
72
- const TemplateManagement = React.forwardRef(function TemplateManagement(props, ref) {
52
+ const FoundationNotificationDashboard = React.forwardRef(function FoundationNotificationDashboard(props, ref) {
73
53
  const { children, ...rest } = props;
74
- return React.createElement(customElements.getName(TemplateManagementWC) ?? 'template-management', { ...rest, ref }, children);
54
+ return React.createElement(customElements.getName(FoundationNotificationDashboardWC) ?? 'foundation-notification-dashboard', { ...rest, ref }, children);
75
55
  });
76
56
 
77
57
  const FoundationInboxCounter = React.forwardRef(function FoundationInboxCounter(props, ref) {
@@ -106,6 +86,43 @@ const InboxSubscription = React.forwardRef(function InboxSubscription(props, ref
106
86
  return React.createElement(customElements.getName(InboxSubscriptionWC) ?? 'inbox-subscription', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
107
87
  });
108
88
 
89
+ const NotifyAuditManagement = React.forwardRef(function NotifyAuditManagement(props, ref) {
90
+ const { children, ...rest } = props;
91
+ return React.createElement(customElements.getName(NotifyAuditManagementWC) ?? 'notify-audit-management', { ...rest, ref }, children);
92
+ });
93
+
94
+ const RouteManagement = React.forwardRef(function RouteManagement(props, ref) {
95
+ const { children, ...rest } = props;
96
+ return React.createElement(customElements.getName(RouteManagementWC) ?? 'route-management', { ...rest, ref }, children);
97
+ });
98
+
99
+ const RuleManagement = React.forwardRef(function RuleManagement(props, ref) {
100
+ const { children, ...rest } = props;
101
+ return React.createElement(customElements.getName(RuleManagementWC) ?? 'rule-management', { ...rest, ref }, children);
102
+ });
103
+
104
+ const TemplateManagement = React.forwardRef(function TemplateManagement(props, ref) {
105
+ const { children, ...rest } = props;
106
+ return React.createElement(customElements.getName(TemplateManagementWC) ?? 'template-management', { ...rest, ref }, children);
107
+ });
108
+
109
+ const RuleParameter = React.forwardRef(function RuleParameter(props, ref) {
110
+ const { onParameterEdited, children, ...rest } = props;
111
+ const _innerRef = React.useRef(null);
112
+ const _onParameterEditedRef = React.useRef(onParameterEdited);
113
+ _onParameterEditedRef.current = onParameterEdited;
114
+ React.useLayoutEffect(() => {
115
+ const el = _innerRef.current;
116
+ if (!el) return;
117
+ const _onParameterEditedFn = (e) => _onParameterEditedRef.current?.(e);
118
+ el.addEventListener('parameterEdited', _onParameterEditedFn);
119
+ return () => {
120
+ el.removeEventListener('parameterEdited', _onParameterEditedFn);
121
+ };
122
+ }, []);
123
+ return React.createElement(customElements.getName(RuleParameterWC) ?? 'rule-parameter', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
124
+ });
125
+
109
126
  const EmailDistributionRouteManagement = React.forwardRef(function EmailDistributionRouteManagement(props, ref) {
110
127
  const { children, ...rest } = props;
111
128
  return React.createElement(customElements.getName(EmailDistributionRouteManagementWC) ?? 'email-distribution-route-management', { ...rest, ref }, children);
@@ -165,23 +182,6 @@ const TemplateDialog = React.forwardRef(function TemplateDialog(props, ref) {
165
182
  return React.createElement(customElements.getName(TemplateDialogWC) ?? 'template-dialog', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
166
183
  });
167
184
 
168
- const RuleParameter = React.forwardRef(function RuleParameter(props, ref) {
169
- const { onParameterEdited, children, ...rest } = props;
170
- const _innerRef = React.useRef(null);
171
- const _onParameterEditedRef = React.useRef(onParameterEdited);
172
- _onParameterEditedRef.current = onParameterEdited;
173
- React.useLayoutEffect(() => {
174
- const el = _innerRef.current;
175
- if (!el) return;
176
- const _onParameterEditedFn = (e) => _onParameterEditedRef.current?.(e);
177
- el.addEventListener('parameterEdited', _onParameterEditedFn);
178
- return () => {
179
- el.removeEventListener('parameterEdited', _onParameterEditedFn);
180
- };
181
- }, []);
182
- return React.createElement(customElements.getName(RuleParameterWC) ?? 'rule-parameter', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
183
- });
184
-
185
185
  const RuleConditionBuilder = React.forwardRef(function RuleConditionBuilder(props, ref) {
186
186
  const { onDelete, onEdit, children, ...rest } = props;
187
187
  const _innerRef = React.useRef(null);
@@ -248,7 +248,7 @@ const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref)
248
248
  return React.createElement(customElements.getName(ParameterBuilderWC) ?? 'parameter-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
249
249
  });
250
250
 
251
- const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
251
+ const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(props, ref) {
252
252
  const { onDelete, onEdit, children, ...rest } = props;
253
253
  const _innerRef = React.useRef(null);
254
254
  const _onDeleteRef = React.useRef(onDelete);
@@ -267,10 +267,10 @@ const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuil
267
267
  el.removeEventListener('edit', _onEditFn);
268
268
  };
269
269
  }, []);
270
- return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
270
+ return React.createElement(customElements.getName(TemplateConditionGroupWC) ?? 'template-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
271
271
  });
272
272
 
273
- const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(props, ref) {
273
+ const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
274
274
  const { onDelete, onEdit, children, ...rest } = props;
275
275
  const _innerRef = React.useRef(null);
276
276
  const _onDeleteRef = React.useRef(onDelete);
@@ -289,20 +289,21 @@ const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(
289
289
  el.removeEventListener('edit', _onEditFn);
290
290
  };
291
291
  }, []);
292
- return React.createElement(customElements.getName(TemplateConditionGroupWC) ?? 'template-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
292
+ return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
293
293
  });
294
294
 
295
295
  module.exports = {
296
296
  ReconciliationSandbox,
297
- FoundationNotificationDashboard,
298
297
  FoundationInbox,
298
+ FoundationNotificationDashboard,
299
+ FoundationInboxCounter,
300
+ FoundationInboxFlyout,
301
+ InboxSubscription,
299
302
  NotifyAuditManagement,
300
303
  RouteManagement,
301
304
  RuleManagement,
302
305
  TemplateManagement,
303
- FoundationInboxCounter,
304
- FoundationInboxFlyout,
305
- InboxSubscription,
306
+ RuleParameter,
306
307
  EmailDistributionRouteManagement,
307
308
  EmailUserRouteManagement,
308
309
  LogRouteManagement,
@@ -310,10 +311,9 @@ module.exports = {
310
311
  ScreenRouteManagement,
311
312
  RuleDialog,
312
313
  TemplateDialog,
313
- RuleParameter,
314
314
  RuleConditionBuilder,
315
315
  RuleConditionGroup,
316
316
  ParameterBuilder,
317
- TemplateConditionBuilder,
318
317
  TemplateConditionGroup,
318
+ TemplateConditionBuilder,
319
319
  };
package/dist/react.mjs CHANGED
@@ -42,34 +42,14 @@ export const ReconciliationSandbox = React.forwardRef(function ReconciliationSan
42
42
  return React.createElement(customElements.getName(ReconciliationSandboxWC) ?? 'notify-sandbox', { ...rest, ref }, children);
43
43
  });
44
44
 
45
- export const FoundationNotificationDashboard = React.forwardRef(function FoundationNotificationDashboard(props, ref) {
46
- const { children, ...rest } = props;
47
- return React.createElement(customElements.getName(FoundationNotificationDashboardWC) ?? 'foundation-notification-dashboard', { ...rest, ref }, children);
48
- });
49
-
50
45
  export const FoundationInbox = React.forwardRef(function FoundationInbox(props, ref) {
51
46
  const { children, ...rest } = props;
52
47
  return React.createElement(customElements.getName(FoundationInboxWC) ?? 'foundation-inbox', { ...rest, ref }, children);
53
48
  });
54
49
 
55
- export const NotifyAuditManagement = React.forwardRef(function NotifyAuditManagement(props, ref) {
56
- const { children, ...rest } = props;
57
- return React.createElement(customElements.getName(NotifyAuditManagementWC) ?? 'notify-audit-management', { ...rest, ref }, children);
58
- });
59
-
60
- export const RouteManagement = React.forwardRef(function RouteManagement(props, ref) {
61
- const { children, ...rest } = props;
62
- return React.createElement(customElements.getName(RouteManagementWC) ?? 'route-management', { ...rest, ref }, children);
63
- });
64
-
65
- export const RuleManagement = React.forwardRef(function RuleManagement(props, ref) {
66
- const { children, ...rest } = props;
67
- return React.createElement(customElements.getName(RuleManagementWC) ?? 'rule-management', { ...rest, ref }, children);
68
- });
69
-
70
- export const TemplateManagement = React.forwardRef(function TemplateManagement(props, ref) {
50
+ export const FoundationNotificationDashboard = React.forwardRef(function FoundationNotificationDashboard(props, ref) {
71
51
  const { children, ...rest } = props;
72
- return React.createElement(customElements.getName(TemplateManagementWC) ?? 'template-management', { ...rest, ref }, children);
52
+ return React.createElement(customElements.getName(FoundationNotificationDashboardWC) ?? 'foundation-notification-dashboard', { ...rest, ref }, children);
73
53
  });
74
54
 
75
55
  export const FoundationInboxCounter = React.forwardRef(function FoundationInboxCounter(props, ref) {
@@ -104,6 +84,43 @@ export const InboxSubscription = React.forwardRef(function InboxSubscription(pro
104
84
  return React.createElement(customElements.getName(InboxSubscriptionWC) ?? 'inbox-subscription', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
105
85
  });
106
86
 
87
+ export const NotifyAuditManagement = React.forwardRef(function NotifyAuditManagement(props, ref) {
88
+ const { children, ...rest } = props;
89
+ return React.createElement(customElements.getName(NotifyAuditManagementWC) ?? 'notify-audit-management', { ...rest, ref }, children);
90
+ });
91
+
92
+ export const RouteManagement = React.forwardRef(function RouteManagement(props, ref) {
93
+ const { children, ...rest } = props;
94
+ return React.createElement(customElements.getName(RouteManagementWC) ?? 'route-management', { ...rest, ref }, children);
95
+ });
96
+
97
+ export const RuleManagement = React.forwardRef(function RuleManagement(props, ref) {
98
+ const { children, ...rest } = props;
99
+ return React.createElement(customElements.getName(RuleManagementWC) ?? 'rule-management', { ...rest, ref }, children);
100
+ });
101
+
102
+ export const TemplateManagement = React.forwardRef(function TemplateManagement(props, ref) {
103
+ const { children, ...rest } = props;
104
+ return React.createElement(customElements.getName(TemplateManagementWC) ?? 'template-management', { ...rest, ref }, children);
105
+ });
106
+
107
+ export const RuleParameter = React.forwardRef(function RuleParameter(props, ref) {
108
+ const { onParameterEdited, children, ...rest } = props;
109
+ const _innerRef = React.useRef(null);
110
+ const _onParameterEditedRef = React.useRef(onParameterEdited);
111
+ _onParameterEditedRef.current = onParameterEdited;
112
+ React.useLayoutEffect(() => {
113
+ const el = _innerRef.current;
114
+ if (!el) return;
115
+ const _onParameterEditedFn = (e) => _onParameterEditedRef.current?.(e);
116
+ el.addEventListener('parameterEdited', _onParameterEditedFn);
117
+ return () => {
118
+ el.removeEventListener('parameterEdited', _onParameterEditedFn);
119
+ };
120
+ }, []);
121
+ return React.createElement(customElements.getName(RuleParameterWC) ?? 'rule-parameter', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
122
+ });
123
+
107
124
  export const EmailDistributionRouteManagement = React.forwardRef(function EmailDistributionRouteManagement(props, ref) {
108
125
  const { children, ...rest } = props;
109
126
  return React.createElement(customElements.getName(EmailDistributionRouteManagementWC) ?? 'email-distribution-route-management', { ...rest, ref }, children);
@@ -163,23 +180,6 @@ export const TemplateDialog = React.forwardRef(function TemplateDialog(props, re
163
180
  return React.createElement(customElements.getName(TemplateDialogWC) ?? 'template-dialog', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
164
181
  });
165
182
 
166
- export const RuleParameter = React.forwardRef(function RuleParameter(props, ref) {
167
- const { onParameterEdited, children, ...rest } = props;
168
- const _innerRef = React.useRef(null);
169
- const _onParameterEditedRef = React.useRef(onParameterEdited);
170
- _onParameterEditedRef.current = onParameterEdited;
171
- React.useLayoutEffect(() => {
172
- const el = _innerRef.current;
173
- if (!el) return;
174
- const _onParameterEditedFn = (e) => _onParameterEditedRef.current?.(e);
175
- el.addEventListener('parameterEdited', _onParameterEditedFn);
176
- return () => {
177
- el.removeEventListener('parameterEdited', _onParameterEditedFn);
178
- };
179
- }, []);
180
- return React.createElement(customElements.getName(RuleParameterWC) ?? 'rule-parameter', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
181
- });
182
-
183
183
  export const RuleConditionBuilder = React.forwardRef(function RuleConditionBuilder(props, ref) {
184
184
  const { onDelete, onEdit, children, ...rest } = props;
185
185
  const _innerRef = React.useRef(null);
@@ -246,7 +246,7 @@ export const ParameterBuilder = React.forwardRef(function ParameterBuilder(props
246
246
  return React.createElement(customElements.getName(ParameterBuilderWC) ?? 'parameter-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
247
247
  });
248
248
 
249
- export const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
249
+ export const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(props, ref) {
250
250
  const { onDelete, onEdit, children, ...rest } = props;
251
251
  const _innerRef = React.useRef(null);
252
252
  const _onDeleteRef = React.useRef(onDelete);
@@ -265,10 +265,10 @@ export const TemplateConditionBuilder = React.forwardRef(function TemplateCondit
265
265
  el.removeEventListener('edit', _onEditFn);
266
266
  };
267
267
  }, []);
268
- return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
268
+ return React.createElement(customElements.getName(TemplateConditionGroupWC) ?? 'template-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
269
269
  });
270
270
 
271
- export const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(props, ref) {
271
+ export const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
272
272
  const { onDelete, onEdit, children, ...rest } = props;
273
273
  const _innerRef = React.useRef(null);
274
274
  const _onDeleteRef = React.useRef(onDelete);
@@ -287,5 +287,5 @@ export const TemplateConditionGroup = React.forwardRef(function TemplateConditio
287
287
  el.removeEventListener('edit', _onEditFn);
288
288
  };
289
289
  }, []);
290
- return React.createElement(customElements.getName(TemplateConditionGroupWC) ?? 'template-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
290
+ return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
291
291
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/pbc-notify-ui",
3
3
  "description": "Genesis PBC Notify UI",
4
- "version": "14.488.0",
4
+ "version": "14.488.1",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "workspaces": [
7
7
  "client"
@@ -83,30 +83,30 @@
83
83
  "@commitlint/format": "^19.0.3",
84
84
  "@genesiscommunitysuccess/cep-fast-plugin": "5.0.3",
85
85
  "@genesiscommunitysuccess/custom-elements-lsp": "5.0.3",
86
- "@genesislcap/design-system-configurator": "14.488.0",
87
- "@genesislcap/eslint-config": "14.488.0",
88
- "@genesislcap/eslint-stylelint-builder": "14.488.0",
89
- "@genesislcap/foundation-testing": "14.488.0",
90
- "@genesislcap/genx": "14.488.0",
91
- "@genesislcap/prettier-config": "14.488.0",
92
- "@genesislcap/stylelint-config": "14.488.0",
93
- "@genesislcap/vite-builder": "14.488.0",
94
- "@genesislcap/webpack-builder": "14.488.0",
86
+ "@genesislcap/design-system-configurator": "14.488.1",
87
+ "@genesislcap/eslint-config": "14.488.1",
88
+ "@genesislcap/eslint-stylelint-builder": "14.488.1",
89
+ "@genesislcap/foundation-testing": "14.488.1",
90
+ "@genesislcap/genx": "14.488.1",
91
+ "@genesislcap/prettier-config": "14.488.1",
92
+ "@genesislcap/stylelint-config": "14.488.1",
93
+ "@genesislcap/vite-builder": "14.488.1",
94
+ "@genesislcap/webpack-builder": "14.488.1",
95
95
  "dayjs": "^1.11.7"
96
96
  },
97
97
  "dependencies": {
98
- "@genesislcap/foundation-comms": "14.488.0",
99
- "@genesislcap/foundation-criteria": "14.488.0",
100
- "@genesislcap/foundation-entity-management": "14.488.0",
101
- "@genesislcap/foundation-forms": "14.488.0",
102
- "@genesislcap/foundation-layout": "14.488.0",
103
- "@genesislcap/foundation-logger": "14.488.0",
104
- "@genesislcap/foundation-notifications": "14.488.0",
105
- "@genesislcap/foundation-ui": "14.488.0",
106
- "@genesislcap/foundation-utils": "14.488.0",
107
- "@genesislcap/rapid-design-system": "14.488.0",
108
- "@genesislcap/rapid-grid-pro": "14.488.0",
109
- "@genesislcap/web-core": "14.488.0",
98
+ "@genesislcap/foundation-comms": "14.488.1",
99
+ "@genesislcap/foundation-criteria": "14.488.1",
100
+ "@genesislcap/foundation-entity-management": "14.488.1",
101
+ "@genesislcap/foundation-forms": "14.488.1",
102
+ "@genesislcap/foundation-layout": "14.488.1",
103
+ "@genesislcap/foundation-logger": "14.488.1",
104
+ "@genesislcap/foundation-notifications": "14.488.1",
105
+ "@genesislcap/foundation-ui": "14.488.1",
106
+ "@genesislcap/foundation-utils": "14.488.1",
107
+ "@genesislcap/rapid-design-system": "14.488.1",
108
+ "@genesislcap/rapid-grid-pro": "14.488.1",
109
+ "@genesislcap/web-core": "14.488.1",
110
110
  "lodash.debounce": "^4.0.8",
111
111
  "rxjs": "^7.5.4"
112
112
  },
@@ -114,5 +114,5 @@
114
114
  "access": "public"
115
115
  },
116
116
  "customElements": "dist/custom-elements.json",
117
- "gitHead": "621daeb7e3612007d300f8510bb6d12b80a5cb53"
117
+ "gitHead": "59f08be328928035b4591fa97da580cc650f96c3"
118
118
  }