@genesislcap/pbc-notify-ui 15.23.3 → 15.24.0
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 +1139 -1139
- package/dist/dts/react.d.ts +20 -20
- package/dist/react.cjs +11 -11
- package/dist/react.mjs +9 -9
- package/package.json +22 -22
package/dist/dts/react.d.ts
CHANGED
|
@@ -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'> &
|
|
@@ -277,17 +277,6 @@ export declare const RuleConditionGroup: React.ForwardRefExoticComponent<
|
|
|
277
277
|
>;
|
|
278
278
|
export type RuleConditionGroupRef = RuleConditionGroupWC;
|
|
279
279
|
|
|
280
|
-
export declare const TemplateConditionBuilder: React.ForwardRefExoticComponent<
|
|
281
|
-
React.PropsWithChildren<
|
|
282
|
-
Omit<PublicOf<TemplateConditionBuilderWC>, 'children' | 'style'> &
|
|
283
|
-
HTMLWCProps & {
|
|
284
|
-
onDelete?: (event: CustomEvent<ConditionBuilderEntity>) => void;
|
|
285
|
-
onEdit?: (event: CustomEvent<ConditionBuilderEntity>) => void;
|
|
286
|
-
}
|
|
287
|
-
> & React.RefAttributes<TemplateConditionBuilderWC>
|
|
288
|
-
>;
|
|
289
|
-
export type TemplateConditionBuilderRef = TemplateConditionBuilderWC;
|
|
290
|
-
|
|
291
280
|
export declare const ParameterBuilder: React.ForwardRefExoticComponent<
|
|
292
281
|
React.PropsWithChildren<
|
|
293
282
|
Omit<PublicOf<ParameterBuilderWC>, 'children' | 'style'> &
|
|
@@ -299,6 +288,17 @@ export declare const ParameterBuilder: React.ForwardRefExoticComponent<
|
|
|
299
288
|
>;
|
|
300
289
|
export type ParameterBuilderRef = ParameterBuilderWC;
|
|
301
290
|
|
|
291
|
+
export declare const TemplateConditionBuilder: React.ForwardRefExoticComponent<
|
|
292
|
+
React.PropsWithChildren<
|
|
293
|
+
Omit<PublicOf<TemplateConditionBuilderWC>, 'children' | 'style'> &
|
|
294
|
+
HTMLWCProps & {
|
|
295
|
+
onDelete?: (event: CustomEvent<ConditionBuilderEntity>) => void;
|
|
296
|
+
onEdit?: (event: CustomEvent<ConditionBuilderEntity>) => void;
|
|
297
|
+
}
|
|
298
|
+
> & React.RefAttributes<TemplateConditionBuilderWC>
|
|
299
|
+
>;
|
|
300
|
+
export type TemplateConditionBuilderRef = TemplateConditionBuilderWC;
|
|
301
|
+
|
|
302
302
|
export declare const TemplateConditionGroup: React.ForwardRefExoticComponent<
|
|
303
303
|
React.PropsWithChildren<
|
|
304
304
|
Omit<PublicOf<TemplateConditionGroupWC>, '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);
|
|
@@ -244,7 +244,7 @@ const RuleConditionGroup = React.forwardRef(function RuleConditionGroup(props, r
|
|
|
244
244
|
return React.createElement(customElements.getName(RuleConditionGroupWC) ?? 'rule-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
245
245
|
});
|
|
246
246
|
|
|
247
|
-
const
|
|
247
|
+
const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref) {
|
|
248
248
|
const { onDelete, onEdit, children, ...rest } = props;
|
|
249
249
|
const _innerRef = React.useRef(null);
|
|
250
250
|
const _onDeleteRef = React.useRef(onDelete);
|
|
@@ -263,10 +263,10 @@ const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuil
|
|
|
263
263
|
el.removeEventListener('edit', _onEditFn);
|
|
264
264
|
};
|
|
265
265
|
}, []);
|
|
266
|
-
return React.createElement(customElements.getName(
|
|
266
|
+
return React.createElement(customElements.getName(ParameterBuilderWC) ?? 'parameter-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
267
267
|
});
|
|
268
268
|
|
|
269
|
-
const
|
|
269
|
+
const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
|
|
270
270
|
const { onDelete, onEdit, children, ...rest } = props;
|
|
271
271
|
const _innerRef = React.useRef(null);
|
|
272
272
|
const _onDeleteRef = React.useRef(onDelete);
|
|
@@ -285,7 +285,7 @@ const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref)
|
|
|
285
285
|
el.removeEventListener('edit', _onEditFn);
|
|
286
286
|
};
|
|
287
287
|
}, []);
|
|
288
|
-
return React.createElement(customElements.getName(
|
|
288
|
+
return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
289
289
|
});
|
|
290
290
|
|
|
291
291
|
const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(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,
|
|
@@ -334,7 +334,7 @@ module.exports = {
|
|
|
334
334
|
TemplateDialog,
|
|
335
335
|
RuleConditionBuilder,
|
|
336
336
|
RuleConditionGroup,
|
|
337
|
-
TemplateConditionBuilder,
|
|
338
337
|
ParameterBuilder,
|
|
338
|
+
TemplateConditionBuilder,
|
|
339
339
|
TemplateConditionGroup,
|
|
340
340
|
};
|
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);
|
|
@@ -242,7 +242,7 @@ export const RuleConditionGroup = React.forwardRef(function RuleConditionGroup(p
|
|
|
242
242
|
return React.createElement(customElements.getName(RuleConditionGroupWC) ?? 'rule-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
243
243
|
});
|
|
244
244
|
|
|
245
|
-
export const
|
|
245
|
+
export const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref) {
|
|
246
246
|
const { onDelete, onEdit, children, ...rest } = props;
|
|
247
247
|
const _innerRef = React.useRef(null);
|
|
248
248
|
const _onDeleteRef = React.useRef(onDelete);
|
|
@@ -261,10 +261,10 @@ export const TemplateConditionBuilder = React.forwardRef(function TemplateCondit
|
|
|
261
261
|
el.removeEventListener('edit', _onEditFn);
|
|
262
262
|
};
|
|
263
263
|
}, []);
|
|
264
|
-
return React.createElement(customElements.getName(
|
|
264
|
+
return React.createElement(customElements.getName(ParameterBuilderWC) ?? 'parameter-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
265
265
|
});
|
|
266
266
|
|
|
267
|
-
export const
|
|
267
|
+
export const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
|
|
268
268
|
const { onDelete, onEdit, children, ...rest } = props;
|
|
269
269
|
const _innerRef = React.useRef(null);
|
|
270
270
|
const _onDeleteRef = React.useRef(onDelete);
|
|
@@ -283,7 +283,7 @@ export const ParameterBuilder = React.forwardRef(function ParameterBuilder(props
|
|
|
283
283
|
el.removeEventListener('edit', _onEditFn);
|
|
284
284
|
};
|
|
285
285
|
}, []);
|
|
286
|
-
return React.createElement(customElements.getName(
|
|
286
|
+
return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
287
287
|
});
|
|
288
288
|
|
|
289
289
|
export const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(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.
|
|
4
|
+
"version": "15.24.0",
|
|
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.
|
|
85
|
-
"@genesislcap/eslint-config": "15.
|
|
86
|
-
"@genesislcap/eslint-stylelint-builder": "15.
|
|
87
|
-
"@genesislcap/foundation-testing": "15.
|
|
88
|
-
"@genesislcap/genx": "15.
|
|
89
|
-
"@genesislcap/prettier-config": "15.
|
|
90
|
-
"@genesislcap/stylelint-config": "15.
|
|
91
|
-
"@genesislcap/vite-builder": "15.
|
|
92
|
-
"@genesislcap/webpack-builder": "15.
|
|
84
|
+
"@genesislcap/design-system-configurator": "15.24.0",
|
|
85
|
+
"@genesislcap/eslint-config": "15.24.0",
|
|
86
|
+
"@genesislcap/eslint-stylelint-builder": "15.24.0",
|
|
87
|
+
"@genesislcap/foundation-testing": "15.24.0",
|
|
88
|
+
"@genesislcap/genx": "15.24.0",
|
|
89
|
+
"@genesislcap/prettier-config": "15.24.0",
|
|
90
|
+
"@genesislcap/stylelint-config": "15.24.0",
|
|
91
|
+
"@genesislcap/vite-builder": "15.24.0",
|
|
92
|
+
"@genesislcap/webpack-builder": "15.24.0",
|
|
93
93
|
"dayjs": "^1.11.7"
|
|
94
94
|
},
|
|
95
95
|
"dependencies": {
|
|
96
|
-
"@genesislcap/foundation-comms": "15.
|
|
97
|
-
"@genesislcap/foundation-criteria": "15.
|
|
98
|
-
"@genesislcap/foundation-entity-management": "15.
|
|
99
|
-
"@genesislcap/foundation-forms": "15.
|
|
100
|
-
"@genesislcap/foundation-layout": "15.
|
|
101
|
-
"@genesislcap/foundation-logger": "15.
|
|
102
|
-
"@genesislcap/foundation-notifications": "15.
|
|
103
|
-
"@genesislcap/foundation-ui": "15.
|
|
104
|
-
"@genesislcap/foundation-utils": "15.
|
|
105
|
-
"@genesislcap/rapid-design-system": "15.
|
|
106
|
-
"@genesislcap/rapid-grid-pro": "15.
|
|
107
|
-
"@genesislcap/web-core": "15.
|
|
96
|
+
"@genesislcap/foundation-comms": "15.24.0",
|
|
97
|
+
"@genesislcap/foundation-criteria": "15.24.0",
|
|
98
|
+
"@genesislcap/foundation-entity-management": "15.24.0",
|
|
99
|
+
"@genesislcap/foundation-forms": "15.24.0",
|
|
100
|
+
"@genesislcap/foundation-layout": "15.24.0",
|
|
101
|
+
"@genesislcap/foundation-logger": "15.24.0",
|
|
102
|
+
"@genesislcap/foundation-notifications": "15.24.0",
|
|
103
|
+
"@genesislcap/foundation-ui": "15.24.0",
|
|
104
|
+
"@genesislcap/foundation-utils": "15.24.0",
|
|
105
|
+
"@genesislcap/rapid-design-system": "15.24.0",
|
|
106
|
+
"@genesislcap/rapid-grid-pro": "15.24.0",
|
|
107
|
+
"@genesislcap/web-core": "15.24.0",
|
|
108
108
|
"lodash.debounce": "^4.0.8",
|
|
109
109
|
"rxjs": "^7.5.4"
|
|
110
110
|
},
|