@genesislcap/pbc-notify-ui 15.24.2 → 15.25.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.
@@ -79,15 +79,6 @@ export declare const FoundationInbox: React.ForwardRefExoticComponent<
79
79
  >;
80
80
  export type FoundationInboxRef = FoundationInboxWC;
81
81
 
82
- export declare const FoundationNotificationDashboard: React.ForwardRefExoticComponent<
83
- React.PropsWithChildren<
84
- Omit<PublicOf<FoundationNotificationDashboardWC>, 'children' | 'style'> &
85
- HTMLWCProps & {
86
- }
87
- > & React.RefAttributes<FoundationNotificationDashboardWC>
88
- >;
89
- export type FoundationNotificationDashboardRef = FoundationNotificationDashboardWC;
90
-
91
82
  export declare const FoundationSoundsPanel: React.ForwardRefExoticComponent<
92
83
  React.PropsWithChildren<
93
84
  Omit<PublicOf<FoundationSoundsPanelWC>, 'children' | 'style'> &
@@ -106,6 +97,15 @@ export declare const FoundationSounds: React.ForwardRefExoticComponent<
106
97
  >;
107
98
  export type FoundationSoundsRef = FoundationSoundsWC;
108
99
 
100
+ export declare const FoundationNotificationDashboard: React.ForwardRefExoticComponent<
101
+ React.PropsWithChildren<
102
+ Omit<PublicOf<FoundationNotificationDashboardWC>, 'children' | 'style'> &
103
+ HTMLWCProps & {
104
+ }
105
+ > & React.RefAttributes<FoundationNotificationDashboardWC>
106
+ >;
107
+ export type FoundationNotificationDashboardRef = FoundationNotificationDashboardWC;
108
+
109
109
  export declare const FoundationInboxCounter: React.ForwardRefExoticComponent<
110
110
  React.PropsWithChildren<
111
111
  Omit<PublicOf<FoundationInboxCounterWC>, 'children' | 'style'> &
@@ -255,17 +255,6 @@ export declare const TemplateDialog: React.ForwardRefExoticComponent<
255
255
  >;
256
256
  export type TemplateDialogRef = TemplateDialogWC;
257
257
 
258
- export declare const RuleConditionBuilder: React.ForwardRefExoticComponent<
259
- React.PropsWithChildren<
260
- Omit<PublicOf<RuleConditionBuilderWC>, 'children' | 'style'> &
261
- HTMLWCProps & {
262
- onDelete?: (event: CustomEvent<ConditionBuilderEntity>) => void;
263
- onEdit?: (event: CustomEvent<ConditionBuilderEntity>) => void;
264
- }
265
- > & React.RefAttributes<RuleConditionBuilderWC>
266
- >;
267
- export type RuleConditionBuilderRef = RuleConditionBuilderWC;
268
-
269
258
  export declare const RuleConditionGroup: React.ForwardRefExoticComponent<
270
259
  React.PropsWithChildren<
271
260
  Omit<PublicOf<RuleConditionGroupWC>, 'children' | 'style'> &
@@ -277,6 +266,17 @@ export declare const RuleConditionGroup: React.ForwardRefExoticComponent<
277
266
  >;
278
267
  export type RuleConditionGroupRef = RuleConditionGroupWC;
279
268
 
269
+ export declare const RuleConditionBuilder: React.ForwardRefExoticComponent<
270
+ React.PropsWithChildren<
271
+ Omit<PublicOf<RuleConditionBuilderWC>, 'children' | 'style'> &
272
+ HTMLWCProps & {
273
+ onDelete?: (event: CustomEvent<ConditionBuilderEntity>) => void;
274
+ onEdit?: (event: CustomEvent<ConditionBuilderEntity>) => void;
275
+ }
276
+ > & React.RefAttributes<RuleConditionBuilderWC>
277
+ >;
278
+ export type RuleConditionBuilderRef = RuleConditionBuilderWC;
279
+
280
280
  export declare const ParameterBuilder: React.ForwardRefExoticComponent<
281
281
  React.PropsWithChildren<
282
282
  Omit<PublicOf<ParameterBuilderWC>, 'children' | 'style'> &
package/dist/react.cjs CHANGED
@@ -52,11 +52,6 @@ const FoundationInbox = React.forwardRef(function FoundationInbox(props, ref) {
52
52
  return React.createElement(customElements.getName(FoundationInboxWC) ?? 'foundation-inbox', { ...rest, ref }, children);
53
53
  });
54
54
 
55
- const FoundationNotificationDashboard = React.forwardRef(function FoundationNotificationDashboard(props, ref) {
56
- const { children, ...rest } = props;
57
- return React.createElement(customElements.getName(FoundationNotificationDashboardWC) ?? 'foundation-notification-dashboard', { ...rest, ref }, children);
58
- });
59
-
60
55
  const FoundationSoundsPanel = React.forwardRef(function FoundationSoundsPanel(props, ref) {
61
56
  const { children, ...rest } = props;
62
57
  return React.createElement(customElements.getName(FoundationSoundsPanelWC) ?? 'foundation-sounds-panel', { ...rest, ref }, children);
@@ -67,6 +62,11 @@ const FoundationSounds = React.forwardRef(function FoundationSounds(props, ref)
67
62
  return React.createElement(customElements.getName(FoundationSoundsWC) ?? 'foundation-sounds', { ...rest, ref }, children);
68
63
  });
69
64
 
65
+ const FoundationNotificationDashboard = React.forwardRef(function FoundationNotificationDashboard(props, ref) {
66
+ const { children, ...rest } = props;
67
+ return React.createElement(customElements.getName(FoundationNotificationDashboardWC) ?? 'foundation-notification-dashboard', { ...rest, ref }, children);
68
+ });
69
+
70
70
  const FoundationInboxCounter = React.forwardRef(function FoundationInboxCounter(props, ref) {
71
71
  const { children, ...rest } = props;
72
72
  return React.createElement(customElements.getName(FoundationInboxCounterWC) ?? 'foundation-inbox-counter', { ...rest, ref }, children);
@@ -200,7 +200,7 @@ const TemplateDialog = React.forwardRef(function TemplateDialog(props, ref) {
200
200
  return React.createElement(customElements.getName(TemplateDialogWC) ?? 'template-dialog', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
201
201
  });
202
202
 
203
- const RuleConditionBuilder = React.forwardRef(function RuleConditionBuilder(props, ref) {
203
+ const RuleConditionGroup = React.forwardRef(function RuleConditionGroup(props, ref) {
204
204
  const { onDelete, onEdit, children, ...rest } = props;
205
205
  const _innerRef = React.useRef(null);
206
206
  const _onDeleteRef = React.useRef(onDelete);
@@ -219,10 +219,10 @@ const RuleConditionBuilder = React.forwardRef(function RuleConditionBuilder(prop
219
219
  el.removeEventListener('edit', _onEditFn);
220
220
  };
221
221
  }, []);
222
- return React.createElement(customElements.getName(RuleConditionBuilderWC) ?? 'rule-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
222
+ return React.createElement(customElements.getName(RuleConditionGroupWC) ?? 'rule-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
223
223
  });
224
224
 
225
- const RuleConditionGroup = React.forwardRef(function RuleConditionGroup(props, ref) {
225
+ const RuleConditionBuilder = React.forwardRef(function RuleConditionBuilder(props, ref) {
226
226
  const { onDelete, onEdit, children, ...rest } = props;
227
227
  const _innerRef = React.useRef(null);
228
228
  const _onDeleteRef = React.useRef(onDelete);
@@ -241,7 +241,7 @@ const RuleConditionGroup = React.forwardRef(function RuleConditionGroup(props, r
241
241
  el.removeEventListener('edit', _onEditFn);
242
242
  };
243
243
  }, []);
244
- return React.createElement(customElements.getName(RuleConditionGroupWC) ?? 'rule-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
244
+ return React.createElement(customElements.getName(RuleConditionBuilderWC) ?? 'rule-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
245
245
  });
246
246
 
247
247
  const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref) {
@@ -313,9 +313,9 @@ const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(
313
313
  module.exports = {
314
314
  ReconciliationSandbox,
315
315
  FoundationInbox,
316
- FoundationNotificationDashboard,
317
316
  FoundationSoundsPanel,
318
317
  FoundationSounds,
318
+ FoundationNotificationDashboard,
319
319
  FoundationInboxCounter,
320
320
  FoundationInboxFlyout,
321
321
  InboxSubscription,
@@ -332,8 +332,8 @@ module.exports = {
332
332
  SlackRouteManagement,
333
333
  RuleDialog,
334
334
  TemplateDialog,
335
- RuleConditionBuilder,
336
335
  RuleConditionGroup,
336
+ RuleConditionBuilder,
337
337
  ParameterBuilder,
338
338
  TemplateConditionBuilder,
339
339
  TemplateConditionGroup,
package/dist/react.mjs CHANGED
@@ -50,11 +50,6 @@ export const FoundationInbox = React.forwardRef(function FoundationInbox(props,
50
50
  return React.createElement(customElements.getName(FoundationInboxWC) ?? 'foundation-inbox', { ...rest, ref }, children);
51
51
  });
52
52
 
53
- export const FoundationNotificationDashboard = React.forwardRef(function FoundationNotificationDashboard(props, ref) {
54
- const { children, ...rest } = props;
55
- return React.createElement(customElements.getName(FoundationNotificationDashboardWC) ?? 'foundation-notification-dashboard', { ...rest, ref }, children);
56
- });
57
-
58
53
  export const FoundationSoundsPanel = React.forwardRef(function FoundationSoundsPanel(props, ref) {
59
54
  const { children, ...rest } = props;
60
55
  return React.createElement(customElements.getName(FoundationSoundsPanelWC) ?? 'foundation-sounds-panel', { ...rest, ref }, children);
@@ -65,6 +60,11 @@ export const FoundationSounds = React.forwardRef(function FoundationSounds(props
65
60
  return React.createElement(customElements.getName(FoundationSoundsWC) ?? 'foundation-sounds', { ...rest, ref }, children);
66
61
  });
67
62
 
63
+ export const FoundationNotificationDashboard = React.forwardRef(function FoundationNotificationDashboard(props, ref) {
64
+ const { children, ...rest } = props;
65
+ return React.createElement(customElements.getName(FoundationNotificationDashboardWC) ?? 'foundation-notification-dashboard', { ...rest, ref }, children);
66
+ });
67
+
68
68
  export const FoundationInboxCounter = React.forwardRef(function FoundationInboxCounter(props, ref) {
69
69
  const { children, ...rest } = props;
70
70
  return React.createElement(customElements.getName(FoundationInboxCounterWC) ?? 'foundation-inbox-counter', { ...rest, ref }, children);
@@ -198,7 +198,7 @@ export const TemplateDialog = React.forwardRef(function TemplateDialog(props, re
198
198
  return React.createElement(customElements.getName(TemplateDialogWC) ?? 'template-dialog', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
199
199
  });
200
200
 
201
- export const RuleConditionBuilder = React.forwardRef(function RuleConditionBuilder(props, ref) {
201
+ export const RuleConditionGroup = React.forwardRef(function RuleConditionGroup(props, ref) {
202
202
  const { onDelete, onEdit, children, ...rest } = props;
203
203
  const _innerRef = React.useRef(null);
204
204
  const _onDeleteRef = React.useRef(onDelete);
@@ -217,10 +217,10 @@ export const RuleConditionBuilder = React.forwardRef(function RuleConditionBuild
217
217
  el.removeEventListener('edit', _onEditFn);
218
218
  };
219
219
  }, []);
220
- return React.createElement(customElements.getName(RuleConditionBuilderWC) ?? 'rule-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
220
+ return React.createElement(customElements.getName(RuleConditionGroupWC) ?? 'rule-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
221
221
  });
222
222
 
223
- export const RuleConditionGroup = React.forwardRef(function RuleConditionGroup(props, ref) {
223
+ export const RuleConditionBuilder = React.forwardRef(function RuleConditionBuilder(props, ref) {
224
224
  const { onDelete, onEdit, children, ...rest } = props;
225
225
  const _innerRef = React.useRef(null);
226
226
  const _onDeleteRef = React.useRef(onDelete);
@@ -239,7 +239,7 @@ export const RuleConditionGroup = React.forwardRef(function RuleConditionGroup(p
239
239
  el.removeEventListener('edit', _onEditFn);
240
240
  };
241
241
  }, []);
242
- return React.createElement(customElements.getName(RuleConditionGroupWC) ?? 'rule-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
242
+ return React.createElement(customElements.getName(RuleConditionBuilderWC) ?? 'rule-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
243
243
  });
244
244
 
245
245
  export const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref) {
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": "15.24.2",
4
+ "version": "15.25.1",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "workspaces": [
7
7
  "client"
@@ -81,30 +81,30 @@
81
81
  "@commitlint/cli": "^19.2.1",
82
82
  "@commitlint/config-conventional": "^19.1.0",
83
83
  "@commitlint/format": "^19.0.3",
84
- "@genesislcap/design-system-configurator": "15.24.2",
85
- "@genesislcap/eslint-config": "15.24.2",
86
- "@genesislcap/eslint-stylelint-builder": "15.24.2",
87
- "@genesislcap/foundation-testing": "15.24.2",
88
- "@genesislcap/genx": "15.24.2",
89
- "@genesislcap/prettier-config": "15.24.2",
90
- "@genesislcap/stylelint-config": "15.24.2",
91
- "@genesislcap/vite-builder": "15.24.2",
92
- "@genesislcap/webpack-builder": "15.24.2",
84
+ "@genesislcap/design-system-configurator": "15.25.1",
85
+ "@genesislcap/eslint-config": "15.25.1",
86
+ "@genesislcap/eslint-stylelint-builder": "15.25.1",
87
+ "@genesislcap/foundation-testing": "15.25.1",
88
+ "@genesislcap/genx": "15.25.1",
89
+ "@genesislcap/prettier-config": "15.25.1",
90
+ "@genesislcap/stylelint-config": "15.25.1",
91
+ "@genesislcap/vite-builder": "15.25.1",
92
+ "@genesislcap/webpack-builder": "15.25.1",
93
93
  "dayjs": "^1.11.7"
94
94
  },
95
95
  "dependencies": {
96
- "@genesislcap/foundation-comms": "15.24.2",
97
- "@genesislcap/foundation-criteria": "15.24.2",
98
- "@genesislcap/foundation-entity-management": "15.24.2",
99
- "@genesislcap/foundation-forms": "15.24.2",
100
- "@genesislcap/foundation-layout": "15.24.2",
101
- "@genesislcap/foundation-logger": "15.24.2",
102
- "@genesislcap/foundation-notifications": "15.24.2",
103
- "@genesislcap/foundation-ui": "15.24.2",
104
- "@genesislcap/foundation-utils": "15.24.2",
105
- "@genesislcap/rapid-design-system": "15.24.2",
106
- "@genesislcap/rapid-grid-pro": "15.24.2",
107
- "@genesislcap/web-core": "15.24.2",
96
+ "@genesislcap/foundation-comms": "15.25.1",
97
+ "@genesislcap/foundation-criteria": "15.25.1",
98
+ "@genesislcap/foundation-entity-management": "15.25.1",
99
+ "@genesislcap/foundation-forms": "15.25.1",
100
+ "@genesislcap/foundation-layout": "15.25.1",
101
+ "@genesislcap/foundation-logger": "15.25.1",
102
+ "@genesislcap/foundation-notifications": "15.25.1",
103
+ "@genesislcap/foundation-ui": "15.25.1",
104
+ "@genesislcap/foundation-utils": "15.25.1",
105
+ "@genesislcap/rapid-design-system": "15.25.1",
106
+ "@genesislcap/rapid-grid-pro": "15.25.1",
107
+ "@genesislcap/web-core": "15.25.1",
108
108
  "lodash.debounce": "^4.0.8",
109
109
  "rxjs": "^7.5.4"
110
110
  },