@genesislcap/pbc-notify-ui 1.0.64 → 14.308.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/api-extractor.json +4 -0
- package/dist/dts/components/foundation-inbox/components/inbox-subscription/inbox-subscription.d.ts.map +1 -1
- package/dist/dts/components/foundation-inbox/inbox.utils.d.ts.map +1 -1
- package/dist/dts/components/foundation-notification-dashboard/components/rules/columns.d.ts.map +1 -1
- package/dist/dts/components/foundation-notification-dashboard/components/templates/columns.d.ts.map +1 -1
- package/dist/dts/components/foundation-notification-dashboard/notification-dashboard.utils.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +11 -0
- package/dist/dts/utils/gridConfig.d.ts.map +1 -1
- package/dist/dts/utils/humanize.d.ts.map +1 -1
- package/dist/dts/utils/toBoolean.d.ts.map +1 -1
- package/dist/dts/utils/updateArray.d.ts.map +1 -1
- package/dist/esm/index.federated.js +0 -1
- package/dist/pbc-notify-ui.api.json +889 -0
- package/dist/pbc-notify-ui.d.ts +252 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/docs/api/index.md +30 -0
- package/docs/api/pbc-notify-ui.foundationinbox.connectedcallback.md +18 -0
- package/docs/api/pbc-notify-ui.foundationinbox.disconnectedcallback.md +18 -0
- package/docs/api/pbc-notify-ui.foundationinbox.md +66 -0
- package/docs/api/pbc-notify-ui.foundationinboxcounter.connectedcallback.md +15 -0
- package/docs/api/pbc-notify-ui.foundationinboxcounter.disconnectedcallback.md +15 -0
- package/docs/api/pbc-notify-ui.foundationinboxcounter.inboxservice.md +11 -0
- package/docs/api/pbc-notify-ui.foundationinboxcounter.md +116 -0
- package/docs/api/pbc-notify-ui.foundationinboxcounter.value.md +11 -0
- package/docs/api/pbc-notify-ui.foundationinboxflyout.close.md +15 -0
- package/docs/api/pbc-notify-ui.foundationinboxflyout.connectedcallback.md +15 -0
- package/docs/api/pbc-notify-ui.foundationinboxflyout.disconnectedcallback.md +15 -0
- package/docs/api/pbc-notify-ui.foundationinboxflyout.flyout.md +11 -0
- package/docs/api/pbc-notify-ui.foundationinboxflyout.flyoutclosed.md +11 -0
- package/docs/api/pbc-notify-ui.foundationinboxflyout.loadremotes.md +15 -0
- package/docs/api/pbc-notify-ui.foundationinboxflyout.md +169 -0
- package/docs/api/pbc-notify-ui.foundationinboxflyout.open.md +15 -0
- package/docs/api/pbc-notify-ui.foundationinboxflyout.ready.md +11 -0
- package/docs/api/pbc-notify-ui.foundationnotificationdashboard.auth.md +11 -0
- package/docs/api/pbc-notify-ui.foundationnotificationdashboard.connectedcallback.md +15 -0
- package/docs/api/pbc-notify-ui.foundationnotificationdashboard.haspermissions.md +11 -0
- package/docs/api/pbc-notify-ui.foundationnotificationdashboard.md +122 -0
- package/docs/api/pbc-notify-ui.foundationnotificationdashboard.ready.md +11 -0
- package/docs/api/pbc-notify-ui.md +60 -0
- package/docs/api-report.md.api.md +76 -0
- package/license.txt +46 -0
- package/package.json +26 -39
- package/src/components/components.ts +54 -0
- package/src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.styles.ts +30 -0
- package/src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.template.ts +16 -0
- package/src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.ts +33 -0
- package/src/components/foundation-inbox/components/foundation-inbox-flyout/foundation-inbox-flyout.styles.ts +18 -0
- package/src/components/foundation-inbox/components/foundation-inbox-flyout/foundation-inbox-flyout.template.ts +22 -0
- package/src/components/foundation-inbox/components/foundation-inbox-flyout/foundation-inbox-flyout.ts +43 -0
- package/src/components/foundation-inbox/components/inbox-subscription/inbox-subscription.styles.ts +37 -0
- package/src/components/foundation-inbox/components/inbox-subscription/inbox-subscription.template.ts +50 -0
- package/src/components/foundation-inbox/components/inbox-subscription/inbox-subscription.ts +81 -0
- package/src/components/foundation-inbox/components/inbox-subscription/rule-parameter/rule-parameter.styles.ts +25 -0
- package/src/components/foundation-inbox/components/inbox-subscription/rule-parameter/rule-parameter.template.ts +96 -0
- package/src/components/foundation-inbox/components/inbox-subscription/rule-parameter/rule-parameter.ts +55 -0
- package/src/components/foundation-inbox/inbox-base/inbox-base.ts +320 -0
- package/src/components/foundation-inbox/inbox.styles.ts +309 -0
- package/src/components/foundation-inbox/inbox.template.ts +317 -0
- package/src/components/foundation-inbox/inbox.ts +26 -0
- package/src/components/foundation-inbox/inbox.types.ts +84 -0
- package/src/components/foundation-inbox/inbox.utils.ts +33 -0
- package/src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts +96 -0
- package/src/components/foundation-notification-dashboard/components/routes/route-management.ts +56 -0
- package/src/components/foundation-notification-dashboard/components/routes/tabs/email-distribution-route-management.ts +58 -0
- package/src/components/foundation-notification-dashboard/components/routes/tabs/email-user-route-management.ts +68 -0
- package/src/components/foundation-notification-dashboard/components/routes/tabs/log-route-management.ts +43 -0
- package/src/components/foundation-notification-dashboard/components/routes/tabs/ms-teams-route-management.ts +48 -0
- package/src/components/foundation-notification-dashboard/components/routes/tabs/screen-route-management.ts +73 -0
- package/src/components/foundation-notification-dashboard/components/rules/columns.ts +48 -0
- package/src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.template.ts +139 -0
- package/src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.ts +255 -0
- package/src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.types.ts +4 -0
- package/src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-dialog.template.ts +159 -0
- package/src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-dialog.ts +202 -0
- package/src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-dialog.types.ts +28 -0
- package/src/components/foundation-notification-dashboard/components/rules/rule-management.ts +72 -0
- package/src/components/foundation-notification-dashboard/components/templates/columns.ts +48 -0
- package/src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.styles.ts +59 -0
- package/src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.template.ts +95 -0
- package/src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts +124 -0
- package/src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-builder/template-condition-builder.template.ts +107 -0
- package/src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-builder/template-condition-builder.ts +185 -0
- package/src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.template.ts +139 -0
- package/src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.ts +246 -0
- package/src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.types.ts +38 -0
- package/src/components/foundation-notification-dashboard/components/templates/template-management.ts +72 -0
- package/src/components/foundation-notification-dashboard/index.ts +1 -0
- package/src/components/foundation-notification-dashboard/notification-dashboard.styles.ts +21 -0
- package/src/components/foundation-notification-dashboard/notification-dashboard.tabs.ts +35 -0
- package/src/components/foundation-notification-dashboard/notification-dashboard.template.ts +58 -0
- package/src/components/foundation-notification-dashboard/notification-dashboard.ts +40 -0
- package/src/components/foundation-notification-dashboard/notification-dashboard.utils.ts +295 -0
- package/src/components/foundation-notification-dashboard/styles/condition-builder.styles.ts +66 -0
- package/src/components/foundation-notification-dashboard/styles/dynamic-rule.styles.ts +159 -0
- package/src/components/foundation-notification-dashboard/styles/management.styles.ts +21 -0
- package/src/components/foundation-notification-dashboard/types/expression-type.ts +13 -0
- package/src/components/foundation-notification-dashboard/types/logical-operator.ts +18 -0
- package/src/components/foundation-notification-dashboard/types/param-source-type.ts +11 -0
- package/src/components/foundation-notification-dashboard/types/param-type.ts +13 -0
- package/src/components/foundation-notification-dashboard/types/right-criteria.ts +6 -0
- package/src/components/foundation-notification-dashboard/types/rule-execution-strategy.ts +6 -0
- package/src/components/foundation-notification-dashboard/types/severity.ts +13 -0
- package/src/globals.d.ts +7 -0
- package/src/index.federated.ts +1 -0
- package/src/index.ts +4 -0
- package/src/notify.types.ts +143 -0
- package/src/sandbox.ts +83 -0
- package/src/services/alert.service.ts +36 -0
- package/src/services/inbox.service.ts +85 -0
- package/src/services/notify.service.ts +21 -0
- package/src/services/rule.service.ts +129 -0
- package/src/services/system.service.ts +43 -0
- package/src/services/template.service.ts +71 -0
- package/src/styles/scrollbar.styles.ts +15 -0
- package/src/utils/eventDetail.ts +5 -0
- package/src/utils/gridConfig.ts +14 -0
- package/src/utils/humanize.ts +14 -0
- package/src/utils/icons.ts +15 -0
- package/src/utils/index.ts +6 -0
- package/src/utils/logger.ts +3 -0
- package/src/utils/notifyPermissions.ts +6 -0
- package/src/utils/toBoolean.ts +7 -0
- package/src/utils/updateArray.ts +33 -0
- package/temp/api-report.md.api.md +76 -0
- package/tsconfig.json +11 -0
- package/.husky/commit-msg +0 -3
- package/.husky/pre-commit +0 -4
- package/README.md +0 -31
- package/commitlint.config.js +0 -25
- package/index.html +0 -28
- package/scripts/commitlint.js +0 -24
- package/sonar-project.properties +0 -5
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
import { Auth } from '@genesislcap/foundation-comms';
|
|
2
|
+
import { Expression } from '@genesislcap/foundation-criteria';
|
|
3
|
+
import type { Flyout } from '@genesislcap/rapid-design-system';
|
|
4
|
+
import { GenesisElement } from '@genesislcap/web-core';
|
|
5
|
+
import { InterfaceSymbol } from '@microsoft/fast-foundation';
|
|
6
|
+
import { Message } from '@genesislcap/foundation-comms';
|
|
7
|
+
import { SocketObservable } from '@genesislcap/foundation-comms';
|
|
8
|
+
import type { Tabs } from '@genesislcap/foundation-ui';
|
|
9
|
+
|
|
10
|
+
declare interface Alert {
|
|
11
|
+
ALERT_ID: string;
|
|
12
|
+
ALERT_STATUS: AlertStatus;
|
|
13
|
+
CREATED_AT: number;
|
|
14
|
+
HEADER: string;
|
|
15
|
+
MESSAGE: string;
|
|
16
|
+
USER_NAME: string;
|
|
17
|
+
EXPIRY: number;
|
|
18
|
+
NOTIFY_SEVERITY: string;
|
|
19
|
+
TABLE_ENTITY_ID: string;
|
|
20
|
+
TOPIC: string;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
declare interface AlertService {
|
|
24
|
+
getAlerts(): SocketObservable<Message<any>>;
|
|
25
|
+
dismissNotifyAlert(alertId: string): any;
|
|
26
|
+
dismissAllNotifyAlerts(): any;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
declare const AlertService: InterfaceSymbol<AlertService>;
|
|
30
|
+
|
|
31
|
+
declare enum AlertStatus {
|
|
32
|
+
NEW = "NEW",
|
|
33
|
+
DISMISSED = "DISMISSED"
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Foundation inbox component for displaying notifies list.
|
|
38
|
+
* Allow searching, filtering and deleting notifies
|
|
39
|
+
* @beta
|
|
40
|
+
*/
|
|
41
|
+
export declare class FoundationInbox extends FoundationInboxBase {
|
|
42
|
+
connectedCallback(): Promise<void>;
|
|
43
|
+
disconnectedCallback(): void;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
declare class FoundationInboxBase extends GenesisElement {
|
|
47
|
+
auth: Auth;
|
|
48
|
+
alertService: AlertService;
|
|
49
|
+
inboxService: FoundationInboxService;
|
|
50
|
+
private alertSubscription;
|
|
51
|
+
private alerts;
|
|
52
|
+
alertsFilter: Alert[];
|
|
53
|
+
ruleService: RuleService;
|
|
54
|
+
rules: Rule_2[];
|
|
55
|
+
rulesFilter: Rule_2[];
|
|
56
|
+
templateService: TemplateService;
|
|
57
|
+
templates: RuleTemplate[];
|
|
58
|
+
templatesFilter: RuleTemplate[];
|
|
59
|
+
searchAlertLog: string;
|
|
60
|
+
titleSearchValue: string;
|
|
61
|
+
bodySearchValue: string;
|
|
62
|
+
searchSubscribe: string;
|
|
63
|
+
ruleTemplateDetails: NotificationRuleTemplateReply;
|
|
64
|
+
selectedTab: InboxTab;
|
|
65
|
+
fromDatePickerValue: string;
|
|
66
|
+
toDatePickerValue: string;
|
|
67
|
+
criteriaMatchAlertStatus: Expression;
|
|
68
|
+
reverse: boolean;
|
|
69
|
+
showLoadingIndicator: boolean;
|
|
70
|
+
severityType: any[];
|
|
71
|
+
tabs: Tabs;
|
|
72
|
+
connectedCallback(): Promise<void>;
|
|
73
|
+
disconnectedCallback(): void;
|
|
74
|
+
inboxTabChanged(inboxTab: InboxTab): Promise<void>;
|
|
75
|
+
alertsChanged: () => Alert[];
|
|
76
|
+
rulesChanged: () => Rule_2[];
|
|
77
|
+
templatesChanged: () => RuleTemplate[];
|
|
78
|
+
debouncedFilterSearchAlertLog: any;
|
|
79
|
+
filterSearchAlertLog(): void;
|
|
80
|
+
reverseOrder(reverse: boolean): void;
|
|
81
|
+
filterSearchSubscribe(): void;
|
|
82
|
+
clearSearch(): void;
|
|
83
|
+
dismissAlert(alertId: string): void;
|
|
84
|
+
validateResponse(response: any): void;
|
|
85
|
+
dismissAllAlerts(): void;
|
|
86
|
+
editAlert(): void;
|
|
87
|
+
playPauseAlert(ruleClicked: Rule_2): Promise<void>;
|
|
88
|
+
deleteAlert(ruleClicked: Rule_2): Promise<void>;
|
|
89
|
+
openTemplateSubscription(ruleTemplate: any): Promise<void>;
|
|
90
|
+
formatDateStrForMatchCriteria(date?: string): string;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export declare class FoundationInboxCounter extends GenesisElement {
|
|
94
|
+
value: number;
|
|
95
|
+
inboxService: FoundationInboxService;
|
|
96
|
+
private subscriptionHandler;
|
|
97
|
+
connectedCallback(): Promise<void>;
|
|
98
|
+
disconnectedCallback(): void;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export declare class FoundationInboxFlyout extends FoundationInboxBase {
|
|
102
|
+
ready: boolean;
|
|
103
|
+
flyout: Flyout;
|
|
104
|
+
flyoutClosed: boolean;
|
|
105
|
+
connectedCallback(): Promise<void>;
|
|
106
|
+
disconnectedCallback(): void;
|
|
107
|
+
open(): Promise<void>;
|
|
108
|
+
close(): void;
|
|
109
|
+
loadRemotes(): Promise<void>;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
declare interface FoundationInboxService {
|
|
113
|
+
subscribe(callback: SubscribeCallback, reverse: boolean, criteriaMatch: string): void;
|
|
114
|
+
unsubscribe(callback: SubscribeCallback): void;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
declare const FoundationInboxService: InterfaceSymbol<FoundationInboxService>;
|
|
118
|
+
|
|
119
|
+
declare interface FoundationInboxServiceStore {
|
|
120
|
+
items: Array<any>;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
export declare class FoundationNotificationDashboard extends GenesisElement {
|
|
127
|
+
auth: Auth;
|
|
128
|
+
ready: boolean;
|
|
129
|
+
hasPermissions: boolean;
|
|
130
|
+
connectedCallback(): Promise<void>;
|
|
131
|
+
/**
|
|
132
|
+
* Load remote components
|
|
133
|
+
* @remarks With regards to module federation
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
136
|
+
loadRemotes(): Promise<void>;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
declare enum InboxTab {
|
|
140
|
+
ALERTS_NEW = 0,
|
|
141
|
+
ALERT_HISTORY = 1,
|
|
142
|
+
MY_ALERTS = 2,
|
|
143
|
+
SUBSCRIBE = 3
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
declare interface NotificationRuleTemplateReply {
|
|
147
|
+
DYNAMIC_RULE_ID: string;
|
|
148
|
+
RULE_NAME: string;
|
|
149
|
+
RULE_DESCRIPTION: string;
|
|
150
|
+
RULE_TABLE: string;
|
|
151
|
+
RULE_EXECUTION_STRATEGY: string;
|
|
152
|
+
RULE_EXPRESSION: {
|
|
153
|
+
CONDITIONS: Array<any>;
|
|
154
|
+
};
|
|
155
|
+
RAW_RULE_EXPRESSION: string;
|
|
156
|
+
RESULT_EXPRESSION: {
|
|
157
|
+
ASSIGNMENTS: Array<any>;
|
|
158
|
+
};
|
|
159
|
+
PARAMETERS: any;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
declare type Rule = {
|
|
163
|
+
DYNAMIC_RULE_ID?: string;
|
|
164
|
+
RULE_NAME: string;
|
|
165
|
+
RULE_DESCRIPTION: string;
|
|
166
|
+
RULE_TABLE: string;
|
|
167
|
+
TABLE_OPERATIONS: UpdateType[];
|
|
168
|
+
RULE_EXPRESSION?: any;
|
|
169
|
+
RAW_RULE_EXPRESSION?: string;
|
|
170
|
+
RESULT_EXPRESSION?: {
|
|
171
|
+
ASSIGNMENTS: Array<any>;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
declare interface Rule_2 {
|
|
176
|
+
ID: string;
|
|
177
|
+
NAME: string;
|
|
178
|
+
DESCRIPTION: string;
|
|
179
|
+
RULE_EXPRESSION: string;
|
|
180
|
+
RULE_EXECUTION_STRATEGY: string;
|
|
181
|
+
RULE_STATUS: string;
|
|
182
|
+
RULE_TABLE: string;
|
|
183
|
+
PROCESS_NAME: string;
|
|
184
|
+
TABLE_OPERATION: string;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
declare interface RuleService {
|
|
188
|
+
subscribeRule(dynamicRuleId: string, parameterDetails: any): any;
|
|
189
|
+
unsubscribeRule(dynamicRuleId: string): any;
|
|
190
|
+
enableRule(dynamicRuleId: string): any;
|
|
191
|
+
disableRule(dynamicRuleId: string): any;
|
|
192
|
+
getRules(): Promise<any>;
|
|
193
|
+
getRuleDetails(ruleId: string): Promise<Rule>;
|
|
194
|
+
createRule(rule: Rule): Promise<Message>;
|
|
195
|
+
updateRule(rule: Rule): Promise<Message>;
|
|
196
|
+
deleteRule(ruleId: string): void;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
declare const RuleService: InterfaceSymbol<RuleService>;
|
|
200
|
+
|
|
201
|
+
declare interface RuleTemplate {
|
|
202
|
+
ID: string;
|
|
203
|
+
NAME: string;
|
|
204
|
+
DESCRIPTION: string;
|
|
205
|
+
USER_NAME: string;
|
|
206
|
+
RULE_TABLE: string;
|
|
207
|
+
RULE_STATUS: string;
|
|
208
|
+
RULE_EXPRESSION: string;
|
|
209
|
+
PROCESS_NAME: string;
|
|
210
|
+
MESSAGE_TYPE: string;
|
|
211
|
+
RESULT_EXPRESSION: string;
|
|
212
|
+
TABLE_OPERATION: string;
|
|
213
|
+
IS_TEMPLATE: boolean;
|
|
214
|
+
RULE_EXECUTION_STRATEGY: string;
|
|
215
|
+
RULE_TYPE: string;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
declare type SubscribeCallback = ({ store }: {
|
|
219
|
+
store: FoundationInboxServiceStore;
|
|
220
|
+
}) => any;
|
|
221
|
+
|
|
222
|
+
declare type Template = {
|
|
223
|
+
DYNAMIC_RULE_ID?: string;
|
|
224
|
+
RULE_NAME: string;
|
|
225
|
+
RULE_DESCRIPTION: string;
|
|
226
|
+
RULE_TABLE: string;
|
|
227
|
+
RULE_EXPRESSION?: any;
|
|
228
|
+
TABLE_OPERATIONS: UpdateType[];
|
|
229
|
+
RAW_RULE_EXPRESSION?: string;
|
|
230
|
+
RESULT_EXPRESSION?: {
|
|
231
|
+
ASSIGNMENTS: Array<any>;
|
|
232
|
+
};
|
|
233
|
+
PARAMETER_DETAILS: any;
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
declare interface TemplateService {
|
|
237
|
+
createRuleTemplate(ruleTemplate: Template): Promise<any>;
|
|
238
|
+
editRuleTemplate(ruleTemplate: Template): Promise<any>;
|
|
239
|
+
getRuleTemplates(): any;
|
|
240
|
+
getRuleTemplateDetails(dynamicRuleId: string): any;
|
|
241
|
+
deleteRuleTemplate(dynamicRuleId: string): any;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
declare const TemplateService: InterfaceSymbol<TemplateService>;
|
|
245
|
+
|
|
246
|
+
declare enum UpdateType {
|
|
247
|
+
INSERT = "INSERT",
|
|
248
|
+
MODIFY = "MODIFY",
|
|
249
|
+
DELETE = "DELETE"
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
export { }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"root":["../src/globals.d.ts","../src/index.federated.ts","../src/index.ts","../src/notify.types.ts","../src/sandbox.ts","../src/components/components.ts","../src/components/foundation-inbox/inbox.styles.ts","../src/components/foundation-inbox/inbox.template.ts","../src/components/foundation-inbox/inbox.ts","../src/components/foundation-inbox/inbox.types.ts","../src/components/foundation-inbox/inbox.utils.ts","../src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.styles.ts","../src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.template.ts","../src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.ts","../src/components/foundation-inbox/components/foundation-inbox-flyout/foundation-inbox-flyout.styles.ts","../src/components/foundation-inbox/components/foundation-inbox-flyout/foundation-inbox-flyout.template.ts","../src/components/foundation-inbox/components/foundation-inbox-flyout/foundation-inbox-flyout.ts","../src/components/foundation-inbox/components/inbox-subscription/inbox-subscription.styles.ts","../src/components/foundation-inbox/components/inbox-subscription/inbox-subscription.template.ts","../src/components/foundation-inbox/components/inbox-subscription/inbox-subscription.ts","../src/components/foundation-inbox/components/inbox-subscription/rule-parameter/rule-parameter.styles.ts","../src/components/foundation-inbox/components/inbox-subscription/rule-parameter/rule-parameter.template.ts","../src/components/foundation-inbox/components/inbox-subscription/rule-parameter/rule-parameter.ts","../src/components/foundation-inbox/inbox-base/inbox-base.ts","../src/components/foundation-notification-dashboard/index.ts","../src/components/foundation-notification-dashboard/notification-dashboard.styles.ts","../src/components/foundation-notification-dashboard/notification-dashboard.tabs.ts","../src/components/foundation-notification-dashboard/notification-dashboard.template.ts","../src/components/foundation-notification-dashboard/notification-dashboard.ts","../src/components/foundation-notification-dashboard/notification-dashboard.utils.ts","../src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts","../src/components/foundation-notification-dashboard/components/routes/route-management.ts","../src/components/foundation-notification-dashboard/components/routes/tabs/email-distribution-route-management.ts","../src/components/foundation-notification-dashboard/components/routes/tabs/email-user-route-management.ts","../src/components/foundation-notification-dashboard/components/routes/tabs/log-route-management.ts","../src/components/foundation-notification-dashboard/components/routes/tabs/ms-teams-route-management.ts","../src/components/foundation-notification-dashboard/components/routes/tabs/screen-route-management.ts","../src/components/foundation-notification-dashboard/components/rules/columns.ts","../src/components/foundation-notification-dashboard/components/rules/rule-management.ts","../src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-dialog.template.ts","../src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-dialog.ts","../src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-dialog.types.ts","../src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.template.ts","../src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.ts","../src/components/foundation-notification-dashboard/components/rules/rule-dialog/rule-condition-builder/rule-condition-builder.types.ts","../src/components/foundation-notification-dashboard/components/templates/columns.ts","../src/components/foundation-notification-dashboard/components/templates/template-management.ts","../src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.template.ts","../src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.ts","../src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.types.ts","../src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.styles.ts","../src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.template.ts","../src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts","../src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-builder/template-condition-builder.template.ts","../src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-builder/template-condition-builder.ts","../src/components/foundation-notification-dashboard/styles/condition-builder.styles.ts","../src/components/foundation-notification-dashboard/styles/dynamic-rule.styles.ts","../src/components/foundation-notification-dashboard/styles/management.styles.ts","../src/components/foundation-notification-dashboard/types/expression-type.ts","../src/components/foundation-notification-dashboard/types/logical-operator.ts","../src/components/foundation-notification-dashboard/types/param-source-type.ts","../src/components/foundation-notification-dashboard/types/param-type.ts","../src/components/foundation-notification-dashboard/types/right-criteria.ts","../src/components/foundation-notification-dashboard/types/rule-execution-strategy.ts","../src/components/foundation-notification-dashboard/types/severity.ts","../src/services/alert.service.ts","../src/services/inbox.service.ts","../src/services/notify.service.ts","../src/services/rule.service.ts","../src/services/system.service.ts","../src/services/template.service.ts","../src/styles/scrollbar.styles.ts","../src/utils/eventDetail.ts","../src/utils/gridConfig.ts","../src/utils/humanize.ts","../src/utils/icons.ts","../src/utils/index.ts","../src/utils/logger.ts","../src/utils/notifyPermissions.ts","../src/utils/toBoolean.ts","../src/utils/updateArray.ts"],"version":"5.9.2"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md)
|
|
4
|
+
|
|
5
|
+
## API Reference
|
|
6
|
+
|
|
7
|
+
## Packages
|
|
8
|
+
|
|
9
|
+
<table><thead><tr><th>
|
|
10
|
+
|
|
11
|
+
Package
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
</th><th>
|
|
15
|
+
|
|
16
|
+
Description
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
</th></tr></thead>
|
|
20
|
+
<tbody><tr><td>
|
|
21
|
+
|
|
22
|
+
[@genesislcap/pbc-notify-ui](./pbc-notify-ui.md)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
</td><td>
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
</td></tr>
|
|
29
|
+
</tbody></table>
|
|
30
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInbox](./pbc-notify-ui.foundationinbox.md) > [connectedCallback](./pbc-notify-ui.foundationinbox.connectedcallback.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInbox.connectedCallback() method
|
|
6
|
+
|
|
7
|
+
> This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
**Signature:**
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
connectedCallback(): Promise<void>;
|
|
14
|
+
```
|
|
15
|
+
**Returns:**
|
|
16
|
+
|
|
17
|
+
Promise<void>
|
|
18
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInbox](./pbc-notify-ui.foundationinbox.md) > [disconnectedCallback](./pbc-notify-ui.foundationinbox.disconnectedcallback.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInbox.disconnectedCallback() method
|
|
6
|
+
|
|
7
|
+
> This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
**Signature:**
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
disconnectedCallback(): void;
|
|
14
|
+
```
|
|
15
|
+
**Returns:**
|
|
16
|
+
|
|
17
|
+
void
|
|
18
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInbox](./pbc-notify-ui.foundationinbox.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInbox class
|
|
6
|
+
|
|
7
|
+
> This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
Foundation inbox component for displaying notifies list. Allow searching, filtering and deleting notifies
|
|
11
|
+
|
|
12
|
+
**Signature:**
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
export declare class FoundationInbox extends FoundationInboxBase
|
|
16
|
+
```
|
|
17
|
+
**Extends:** FoundationInboxBase
|
|
18
|
+
|
|
19
|
+
## Methods
|
|
20
|
+
|
|
21
|
+
<table><thead><tr><th>
|
|
22
|
+
|
|
23
|
+
Method
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
</th><th>
|
|
27
|
+
|
|
28
|
+
Modifiers
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
</th><th>
|
|
32
|
+
|
|
33
|
+
Description
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
</th></tr></thead>
|
|
37
|
+
<tbody><tr><td>
|
|
38
|
+
|
|
39
|
+
[connectedCallback()](./pbc-notify-ui.foundationinbox.connectedcallback.md)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
</td><td>
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
</td><td>
|
|
46
|
+
|
|
47
|
+
**_(BETA)_**
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
</td></tr>
|
|
51
|
+
<tr><td>
|
|
52
|
+
|
|
53
|
+
[disconnectedCallback()](./pbc-notify-ui.foundationinbox.disconnectedcallback.md)
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
</td><td>
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
</td><td>
|
|
60
|
+
|
|
61
|
+
**_(BETA)_**
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
</td></tr>
|
|
65
|
+
</tbody></table>
|
|
66
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxCounter](./pbc-notify-ui.foundationinboxcounter.md) > [connectedCallback](./pbc-notify-ui.foundationinboxcounter.connectedcallback.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxCounter.connectedCallback() method
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
connectedCallback(): Promise<void>;
|
|
11
|
+
```
|
|
12
|
+
**Returns:**
|
|
13
|
+
|
|
14
|
+
Promise<void>
|
|
15
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxCounter](./pbc-notify-ui.foundationinboxcounter.md) > [disconnectedCallback](./pbc-notify-ui.foundationinboxcounter.disconnectedcallback.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxCounter.disconnectedCallback() method
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
disconnectedCallback(): void;
|
|
11
|
+
```
|
|
12
|
+
**Returns:**
|
|
13
|
+
|
|
14
|
+
void
|
|
15
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxCounter](./pbc-notify-ui.foundationinboxcounter.md) > [inboxService](./pbc-notify-ui.foundationinboxcounter.inboxservice.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxCounter.inboxService property
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
inboxService: FoundationInboxService;
|
|
11
|
+
```
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxCounter](./pbc-notify-ui.foundationinboxcounter.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxCounter class
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
export declare class FoundationInboxCounter extends GenesisElement
|
|
11
|
+
```
|
|
12
|
+
**Extends:** GenesisElement
|
|
13
|
+
|
|
14
|
+
## Properties
|
|
15
|
+
|
|
16
|
+
<table><thead><tr><th>
|
|
17
|
+
|
|
18
|
+
Property
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
</th><th>
|
|
22
|
+
|
|
23
|
+
Modifiers
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
</th><th>
|
|
27
|
+
|
|
28
|
+
Type
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
</th><th>
|
|
32
|
+
|
|
33
|
+
Description
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
</th></tr></thead>
|
|
37
|
+
<tbody><tr><td>
|
|
38
|
+
|
|
39
|
+
[inboxService](./pbc-notify-ui.foundationinboxcounter.inboxservice.md)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
</td><td>
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
</td><td>
|
|
46
|
+
|
|
47
|
+
FoundationInboxService
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
</td><td>
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
</td></tr>
|
|
54
|
+
<tr><td>
|
|
55
|
+
|
|
56
|
+
[value](./pbc-notify-ui.foundationinboxcounter.value.md)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
</td><td>
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
</td><td>
|
|
63
|
+
|
|
64
|
+
number
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
</td><td>
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
</td></tr>
|
|
71
|
+
</tbody></table>
|
|
72
|
+
|
|
73
|
+
## Methods
|
|
74
|
+
|
|
75
|
+
<table><thead><tr><th>
|
|
76
|
+
|
|
77
|
+
Method
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
</th><th>
|
|
81
|
+
|
|
82
|
+
Modifiers
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
</th><th>
|
|
86
|
+
|
|
87
|
+
Description
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
</th></tr></thead>
|
|
91
|
+
<tbody><tr><td>
|
|
92
|
+
|
|
93
|
+
[connectedCallback()](./pbc-notify-ui.foundationinboxcounter.connectedcallback.md)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
</td><td>
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
</td><td>
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
</td></tr>
|
|
103
|
+
<tr><td>
|
|
104
|
+
|
|
105
|
+
[disconnectedCallback()](./pbc-notify-ui.foundationinboxcounter.disconnectedcallback.md)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
</td><td>
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
</td><td>
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
</td></tr>
|
|
115
|
+
</tbody></table>
|
|
116
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxCounter](./pbc-notify-ui.foundationinboxcounter.md) > [value](./pbc-notify-ui.foundationinboxcounter.value.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxCounter.value property
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
value: number;
|
|
11
|
+
```
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxFlyout](./pbc-notify-ui.foundationinboxflyout.md) > [close](./pbc-notify-ui.foundationinboxflyout.close.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxFlyout.close() method
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
close(): void;
|
|
11
|
+
```
|
|
12
|
+
**Returns:**
|
|
13
|
+
|
|
14
|
+
void
|
|
15
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxFlyout](./pbc-notify-ui.foundationinboxflyout.md) > [connectedCallback](./pbc-notify-ui.foundationinboxflyout.connectedcallback.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxFlyout.connectedCallback() method
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
connectedCallback(): Promise<void>;
|
|
11
|
+
```
|
|
12
|
+
**Returns:**
|
|
13
|
+
|
|
14
|
+
Promise<void>
|
|
15
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxFlyout](./pbc-notify-ui.foundationinboxflyout.md) > [disconnectedCallback](./pbc-notify-ui.foundationinboxflyout.disconnectedcallback.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxFlyout.disconnectedCallback() method
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
disconnectedCallback(): void;
|
|
11
|
+
```
|
|
12
|
+
**Returns:**
|
|
13
|
+
|
|
14
|
+
void
|
|
15
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxFlyout](./pbc-notify-ui.foundationinboxflyout.md) > [flyout](./pbc-notify-ui.foundationinboxflyout.flyout.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxFlyout.flyout property
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
flyout: Flyout;
|
|
11
|
+
```
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxFlyout](./pbc-notify-ui.foundationinboxflyout.md) > [flyoutClosed](./pbc-notify-ui.foundationinboxflyout.flyoutclosed.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxFlyout.flyoutClosed property
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
flyoutClosed: boolean;
|
|
11
|
+
```
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/pbc-notify-ui](./pbc-notify-ui.md) > [FoundationInboxFlyout](./pbc-notify-ui.foundationinboxflyout.md) > [loadRemotes](./pbc-notify-ui.foundationinboxflyout.loadremotes.md)
|
|
4
|
+
|
|
5
|
+
## FoundationInboxFlyout.loadRemotes() method
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
loadRemotes(): Promise<void>;
|
|
11
|
+
```
|
|
12
|
+
**Returns:**
|
|
13
|
+
|
|
14
|
+
Promise<void>
|
|
15
|
+
|