@genesislcap/pbc-notify-ui 15.14.1 → 15.14.2
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 +432 -432
- package/dist/dts/react.d.ts +19 -19
- package/dist/react.cjs +24 -24
- package/dist/react.mjs +22 -22
- package/package.json +23 -23
|
@@ -4918,6 +4918,149 @@
|
|
|
4918
4918
|
}
|
|
4919
4919
|
]
|
|
4920
4920
|
},
|
|
4921
|
+
{
|
|
4922
|
+
"kind": "javascript-module",
|
|
4923
|
+
"path": "src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.styles.ts",
|
|
4924
|
+
"declarations": [
|
|
4925
|
+
{
|
|
4926
|
+
"kind": "variable",
|
|
4927
|
+
"name": "noItemsClass",
|
|
4928
|
+
"type": {
|
|
4929
|
+
"text": "string"
|
|
4930
|
+
},
|
|
4931
|
+
"default": "'no-items'",
|
|
4932
|
+
"description": "Class to use when there are no items"
|
|
4933
|
+
},
|
|
4934
|
+
{
|
|
4935
|
+
"kind": "variable",
|
|
4936
|
+
"name": "FoundationInboxCounterStyles",
|
|
4937
|
+
"default": "css`\n :host {\n display: inline-block;\n min-width: 16px;\n height: 16px;\n border-radius: 9px;\n text-align: center;\n color: #fff;\n line-height: 16px;\n font-size: 9px;\n font-weight: 700;\n background: ${BACKGROUND_COLOR};\n pointer-events: none;\n }\n\n .hidden {\n visibility: hidden;\n }\n\n :host(.${noItemsClass}) {\n display: none;\n }\n`"
|
|
4938
|
+
}
|
|
4939
|
+
],
|
|
4940
|
+
"exports": [
|
|
4941
|
+
{
|
|
4942
|
+
"kind": "js",
|
|
4943
|
+
"name": "noItemsClass",
|
|
4944
|
+
"declaration": {
|
|
4945
|
+
"name": "noItemsClass",
|
|
4946
|
+
"module": "src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.styles.ts"
|
|
4947
|
+
}
|
|
4948
|
+
},
|
|
4949
|
+
{
|
|
4950
|
+
"kind": "js",
|
|
4951
|
+
"name": "FoundationInboxCounterStyles",
|
|
4952
|
+
"declaration": {
|
|
4953
|
+
"name": "FoundationInboxCounterStyles",
|
|
4954
|
+
"module": "src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.styles.ts"
|
|
4955
|
+
}
|
|
4956
|
+
}
|
|
4957
|
+
]
|
|
4958
|
+
},
|
|
4959
|
+
{
|
|
4960
|
+
"kind": "javascript-module",
|
|
4961
|
+
"path": "src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.template.ts",
|
|
4962
|
+
"declarations": [
|
|
4963
|
+
{
|
|
4964
|
+
"kind": "variable",
|
|
4965
|
+
"name": "FoundationInboxCounterTemplate",
|
|
4966
|
+
"default": "html<FoundationInboxCounter>`\n <template class=\"${(x) => classNames([noItemsClass, x.value < 1])}\">\n ${when(\n (x) => x.value > 0,\n html`\n ${(x) => (x.value > MAX_NUMBER_TO_DISPLAY ? `${MAX_NUMBER_TO_DISPLAY}+` : x.value)}\n `,\n )}\n </template>\n`"
|
|
4967
|
+
}
|
|
4968
|
+
],
|
|
4969
|
+
"exports": [
|
|
4970
|
+
{
|
|
4971
|
+
"kind": "js",
|
|
4972
|
+
"name": "FoundationInboxCounterTemplate",
|
|
4973
|
+
"declaration": {
|
|
4974
|
+
"name": "FoundationInboxCounterTemplate",
|
|
4975
|
+
"module": "src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.template.ts"
|
|
4976
|
+
}
|
|
4977
|
+
}
|
|
4978
|
+
]
|
|
4979
|
+
},
|
|
4980
|
+
{
|
|
4981
|
+
"kind": "javascript-module",
|
|
4982
|
+
"path": "src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.ts",
|
|
4983
|
+
"declarations": [
|
|
4984
|
+
{
|
|
4985
|
+
"kind": "class",
|
|
4986
|
+
"description": "",
|
|
4987
|
+
"name": "FoundationInboxCounter",
|
|
4988
|
+
"members": [
|
|
4989
|
+
{
|
|
4990
|
+
"kind": "field",
|
|
4991
|
+
"name": "value",
|
|
4992
|
+
"type": {
|
|
4993
|
+
"text": "number"
|
|
4994
|
+
},
|
|
4995
|
+
"default": "0"
|
|
4996
|
+
},
|
|
4997
|
+
{
|
|
4998
|
+
"kind": "field",
|
|
4999
|
+
"name": "connect",
|
|
5000
|
+
"type": {
|
|
5001
|
+
"text": "Connect"
|
|
5002
|
+
}
|
|
5003
|
+
},
|
|
5004
|
+
{
|
|
5005
|
+
"kind": "field",
|
|
5006
|
+
"name": "inboxService",
|
|
5007
|
+
"type": {
|
|
5008
|
+
"text": "FoundationInboxService"
|
|
5009
|
+
}
|
|
5010
|
+
},
|
|
5011
|
+
{
|
|
5012
|
+
"kind": "field",
|
|
5013
|
+
"name": "connectionSub",
|
|
5014
|
+
"type": {
|
|
5015
|
+
"text": "Subscription"
|
|
5016
|
+
},
|
|
5017
|
+
"privacy": "private"
|
|
5018
|
+
},
|
|
5019
|
+
{
|
|
5020
|
+
"kind": "method",
|
|
5021
|
+
"name": "subscribeToAlerts",
|
|
5022
|
+
"privacy": "private",
|
|
5023
|
+
"return": {
|
|
5024
|
+
"type": {
|
|
5025
|
+
"text": "Promise<void>"
|
|
5026
|
+
}
|
|
5027
|
+
},
|
|
5028
|
+
"description": "Subscribes to alerts from the inbox service"
|
|
5029
|
+
},
|
|
5030
|
+
{
|
|
5031
|
+
"kind": "field",
|
|
5032
|
+
"name": "subscriptionHandler",
|
|
5033
|
+
"privacy": "private",
|
|
5034
|
+
"description": "Handles subscription updates from the inbox service"
|
|
5035
|
+
}
|
|
5036
|
+
],
|
|
5037
|
+
"superclass": {
|
|
5038
|
+
"name": "GenesisElement",
|
|
5039
|
+
"package": "@genesislcap/web-core"
|
|
5040
|
+
},
|
|
5041
|
+
"tagName": "foundation-inbox-counter",
|
|
5042
|
+
"customElement": true
|
|
5043
|
+
}
|
|
5044
|
+
],
|
|
5045
|
+
"exports": [
|
|
5046
|
+
{
|
|
5047
|
+
"kind": "js",
|
|
5048
|
+
"name": "FoundationInboxCounter",
|
|
5049
|
+
"declaration": {
|
|
5050
|
+
"name": "FoundationInboxCounter",
|
|
5051
|
+
"module": "src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.ts"
|
|
5052
|
+
}
|
|
5053
|
+
},
|
|
5054
|
+
{
|
|
5055
|
+
"kind": "custom-element-definition",
|
|
5056
|
+
"name": "foundation-inbox-counter",
|
|
5057
|
+
"declaration": {
|
|
5058
|
+
"name": "FoundationInboxCounter",
|
|
5059
|
+
"module": "src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.ts"
|
|
5060
|
+
}
|
|
5061
|
+
}
|
|
5062
|
+
]
|
|
5063
|
+
},
|
|
4921
5064
|
{
|
|
4922
5065
|
"kind": "javascript-module",
|
|
4923
5066
|
"path": "src/components/foundation-inbox/components/foundation-inbox-flyout/foundation-inbox-flyout.styles.ts",
|
|
@@ -6246,271 +6389,128 @@
|
|
|
6246
6389
|
},
|
|
6247
6390
|
{
|
|
6248
6391
|
"kind": "javascript-module",
|
|
6249
|
-
"path": "src/components/foundation-
|
|
6392
|
+
"path": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts",
|
|
6250
6393
|
"declarations": [
|
|
6251
6394
|
{
|
|
6252
|
-
"kind": "
|
|
6253
|
-
"
|
|
6254
|
-
"
|
|
6255
|
-
|
|
6395
|
+
"kind": "class",
|
|
6396
|
+
"description": "",
|
|
6397
|
+
"name": "NotifyAuditManagement",
|
|
6398
|
+
"superclass": {
|
|
6399
|
+
"name": "GenesisElement",
|
|
6400
|
+
"package": "@genesislcap/web-core"
|
|
6256
6401
|
},
|
|
6257
|
-
"
|
|
6258
|
-
"
|
|
6402
|
+
"tagName": "notify-audit-management",
|
|
6403
|
+
"customElement": true
|
|
6404
|
+
}
|
|
6405
|
+
],
|
|
6406
|
+
"exports": [
|
|
6407
|
+
{
|
|
6408
|
+
"kind": "js",
|
|
6409
|
+
"name": "NotifyAuditManagement",
|
|
6410
|
+
"declaration": {
|
|
6411
|
+
"name": "NotifyAuditManagement",
|
|
6412
|
+
"module": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts"
|
|
6413
|
+
}
|
|
6259
6414
|
},
|
|
6260
6415
|
{
|
|
6261
|
-
"kind": "
|
|
6262
|
-
"name": "
|
|
6263
|
-
"
|
|
6416
|
+
"kind": "custom-element-definition",
|
|
6417
|
+
"name": "notify-audit-management",
|
|
6418
|
+
"declaration": {
|
|
6419
|
+
"name": "NotifyAuditManagement",
|
|
6420
|
+
"module": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts"
|
|
6421
|
+
}
|
|
6422
|
+
}
|
|
6423
|
+
]
|
|
6424
|
+
},
|
|
6425
|
+
{
|
|
6426
|
+
"kind": "javascript-module",
|
|
6427
|
+
"path": "src/components/foundation-notification-dashboard/components/routes/route-management.ts",
|
|
6428
|
+
"declarations": [
|
|
6429
|
+
{
|
|
6430
|
+
"kind": "class",
|
|
6431
|
+
"description": "",
|
|
6432
|
+
"name": "RouteManagement",
|
|
6433
|
+
"superclass": {
|
|
6434
|
+
"name": "GenesisElement",
|
|
6435
|
+
"package": "@genesislcap/web-core"
|
|
6436
|
+
},
|
|
6437
|
+
"tagName": "route-management",
|
|
6438
|
+
"customElement": true
|
|
6264
6439
|
}
|
|
6265
6440
|
],
|
|
6266
6441
|
"exports": [
|
|
6267
6442
|
{
|
|
6268
6443
|
"kind": "js",
|
|
6269
|
-
"name": "
|
|
6444
|
+
"name": "RouteManagement",
|
|
6270
6445
|
"declaration": {
|
|
6271
|
-
"name": "
|
|
6272
|
-
"module": "src/components/foundation-
|
|
6446
|
+
"name": "RouteManagement",
|
|
6447
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/route-management.ts"
|
|
6273
6448
|
}
|
|
6274
6449
|
},
|
|
6275
6450
|
{
|
|
6276
|
-
"kind": "
|
|
6277
|
-
"name": "
|
|
6451
|
+
"kind": "custom-element-definition",
|
|
6452
|
+
"name": "route-management",
|
|
6278
6453
|
"declaration": {
|
|
6279
|
-
"name": "
|
|
6280
|
-
"module": "src/components/foundation-
|
|
6454
|
+
"name": "RouteManagement",
|
|
6455
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/route-management.ts"
|
|
6281
6456
|
}
|
|
6282
6457
|
}
|
|
6283
6458
|
]
|
|
6284
6459
|
},
|
|
6285
6460
|
{
|
|
6286
6461
|
"kind": "javascript-module",
|
|
6287
|
-
"path": "src/components/foundation-
|
|
6462
|
+
"path": "src/components/foundation-notification-dashboard/components/rules/columns.ts",
|
|
6288
6463
|
"declarations": [
|
|
6289
6464
|
{
|
|
6290
|
-
"kind": "
|
|
6291
|
-
"name": "
|
|
6292
|
-
"
|
|
6465
|
+
"kind": "function",
|
|
6466
|
+
"name": "RULE_MANAGEMENT_COLUMNS",
|
|
6467
|
+
"parameters": [
|
|
6468
|
+
{
|
|
6469
|
+
"name": "context",
|
|
6470
|
+
"type": {
|
|
6471
|
+
"text": "RuleManagement"
|
|
6472
|
+
}
|
|
6473
|
+
}
|
|
6474
|
+
]
|
|
6293
6475
|
}
|
|
6294
6476
|
],
|
|
6295
6477
|
"exports": [
|
|
6296
6478
|
{
|
|
6297
6479
|
"kind": "js",
|
|
6298
|
-
"name": "
|
|
6480
|
+
"name": "RULE_MANAGEMENT_COLUMNS",
|
|
6299
6481
|
"declaration": {
|
|
6300
|
-
"name": "
|
|
6301
|
-
"module": "src/components/foundation-
|
|
6482
|
+
"name": "RULE_MANAGEMENT_COLUMNS",
|
|
6483
|
+
"module": "src/components/foundation-notification-dashboard/components/rules/columns.ts"
|
|
6302
6484
|
}
|
|
6303
6485
|
}
|
|
6304
6486
|
]
|
|
6305
6487
|
},
|
|
6306
6488
|
{
|
|
6307
6489
|
"kind": "javascript-module",
|
|
6308
|
-
"path": "src/components/foundation-
|
|
6490
|
+
"path": "src/components/foundation-notification-dashboard/components/rules/rule-management.ts",
|
|
6309
6491
|
"declarations": [
|
|
6310
6492
|
{
|
|
6311
6493
|
"kind": "class",
|
|
6312
6494
|
"description": "",
|
|
6313
|
-
"name": "
|
|
6495
|
+
"name": "RuleManagement",
|
|
6314
6496
|
"members": [
|
|
6315
6497
|
{
|
|
6316
6498
|
"kind": "field",
|
|
6317
|
-
"name": "
|
|
6499
|
+
"name": "ruleService",
|
|
6318
6500
|
"type": {
|
|
6319
|
-
"text": "
|
|
6320
|
-
}
|
|
6321
|
-
"default": "0"
|
|
6501
|
+
"text": "RuleService"
|
|
6502
|
+
}
|
|
6322
6503
|
},
|
|
6323
6504
|
{
|
|
6324
6505
|
"kind": "field",
|
|
6325
|
-
"name": "
|
|
6506
|
+
"name": "ruleDialog",
|
|
6326
6507
|
"type": {
|
|
6327
|
-
"text": "
|
|
6508
|
+
"text": "RuleDialog"
|
|
6328
6509
|
}
|
|
6329
6510
|
},
|
|
6330
6511
|
{
|
|
6331
|
-
"kind": "
|
|
6332
|
-
"name": "
|
|
6333
|
-
"type": {
|
|
6334
|
-
"text": "FoundationInboxService"
|
|
6335
|
-
}
|
|
6336
|
-
},
|
|
6337
|
-
{
|
|
6338
|
-
"kind": "field",
|
|
6339
|
-
"name": "connectionSub",
|
|
6340
|
-
"type": {
|
|
6341
|
-
"text": "Subscription"
|
|
6342
|
-
},
|
|
6343
|
-
"privacy": "private"
|
|
6344
|
-
},
|
|
6345
|
-
{
|
|
6346
|
-
"kind": "method",
|
|
6347
|
-
"name": "subscribeToAlerts",
|
|
6348
|
-
"privacy": "private",
|
|
6349
|
-
"return": {
|
|
6350
|
-
"type": {
|
|
6351
|
-
"text": "Promise<void>"
|
|
6352
|
-
}
|
|
6353
|
-
},
|
|
6354
|
-
"description": "Subscribes to alerts from the inbox service"
|
|
6355
|
-
},
|
|
6356
|
-
{
|
|
6357
|
-
"kind": "field",
|
|
6358
|
-
"name": "subscriptionHandler",
|
|
6359
|
-
"privacy": "private",
|
|
6360
|
-
"description": "Handles subscription updates from the inbox service"
|
|
6361
|
-
}
|
|
6362
|
-
],
|
|
6363
|
-
"superclass": {
|
|
6364
|
-
"name": "GenesisElement",
|
|
6365
|
-
"package": "@genesislcap/web-core"
|
|
6366
|
-
},
|
|
6367
|
-
"tagName": "foundation-inbox-counter",
|
|
6368
|
-
"customElement": true
|
|
6369
|
-
}
|
|
6370
|
-
],
|
|
6371
|
-
"exports": [
|
|
6372
|
-
{
|
|
6373
|
-
"kind": "js",
|
|
6374
|
-
"name": "FoundationInboxCounter",
|
|
6375
|
-
"declaration": {
|
|
6376
|
-
"name": "FoundationInboxCounter",
|
|
6377
|
-
"module": "src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.ts"
|
|
6378
|
-
}
|
|
6379
|
-
},
|
|
6380
|
-
{
|
|
6381
|
-
"kind": "custom-element-definition",
|
|
6382
|
-
"name": "foundation-inbox-counter",
|
|
6383
|
-
"declaration": {
|
|
6384
|
-
"name": "FoundationInboxCounter",
|
|
6385
|
-
"module": "src/components/foundation-inbox/components/foundation-inbox-counter/foundation-inbox-counter.ts"
|
|
6386
|
-
}
|
|
6387
|
-
}
|
|
6388
|
-
]
|
|
6389
|
-
},
|
|
6390
|
-
{
|
|
6391
|
-
"kind": "javascript-module",
|
|
6392
|
-
"path": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts",
|
|
6393
|
-
"declarations": [
|
|
6394
|
-
{
|
|
6395
|
-
"kind": "class",
|
|
6396
|
-
"description": "",
|
|
6397
|
-
"name": "NotifyAuditManagement",
|
|
6398
|
-
"superclass": {
|
|
6399
|
-
"name": "GenesisElement",
|
|
6400
|
-
"package": "@genesislcap/web-core"
|
|
6401
|
-
},
|
|
6402
|
-
"tagName": "notify-audit-management",
|
|
6403
|
-
"customElement": true
|
|
6404
|
-
}
|
|
6405
|
-
],
|
|
6406
|
-
"exports": [
|
|
6407
|
-
{
|
|
6408
|
-
"kind": "js",
|
|
6409
|
-
"name": "NotifyAuditManagement",
|
|
6410
|
-
"declaration": {
|
|
6411
|
-
"name": "NotifyAuditManagement",
|
|
6412
|
-
"module": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts"
|
|
6413
|
-
}
|
|
6414
|
-
},
|
|
6415
|
-
{
|
|
6416
|
-
"kind": "custom-element-definition",
|
|
6417
|
-
"name": "notify-audit-management",
|
|
6418
|
-
"declaration": {
|
|
6419
|
-
"name": "NotifyAuditManagement",
|
|
6420
|
-
"module": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts"
|
|
6421
|
-
}
|
|
6422
|
-
}
|
|
6423
|
-
]
|
|
6424
|
-
},
|
|
6425
|
-
{
|
|
6426
|
-
"kind": "javascript-module",
|
|
6427
|
-
"path": "src/components/foundation-notification-dashboard/components/routes/route-management.ts",
|
|
6428
|
-
"declarations": [
|
|
6429
|
-
{
|
|
6430
|
-
"kind": "class",
|
|
6431
|
-
"description": "",
|
|
6432
|
-
"name": "RouteManagement",
|
|
6433
|
-
"superclass": {
|
|
6434
|
-
"name": "GenesisElement",
|
|
6435
|
-
"package": "@genesislcap/web-core"
|
|
6436
|
-
},
|
|
6437
|
-
"tagName": "route-management",
|
|
6438
|
-
"customElement": true
|
|
6439
|
-
}
|
|
6440
|
-
],
|
|
6441
|
-
"exports": [
|
|
6442
|
-
{
|
|
6443
|
-
"kind": "js",
|
|
6444
|
-
"name": "RouteManagement",
|
|
6445
|
-
"declaration": {
|
|
6446
|
-
"name": "RouteManagement",
|
|
6447
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/route-management.ts"
|
|
6448
|
-
}
|
|
6449
|
-
},
|
|
6450
|
-
{
|
|
6451
|
-
"kind": "custom-element-definition",
|
|
6452
|
-
"name": "route-management",
|
|
6453
|
-
"declaration": {
|
|
6454
|
-
"name": "RouteManagement",
|
|
6455
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/route-management.ts"
|
|
6456
|
-
}
|
|
6457
|
-
}
|
|
6458
|
-
]
|
|
6459
|
-
},
|
|
6460
|
-
{
|
|
6461
|
-
"kind": "javascript-module",
|
|
6462
|
-
"path": "src/components/foundation-notification-dashboard/components/rules/columns.ts",
|
|
6463
|
-
"declarations": [
|
|
6464
|
-
{
|
|
6465
|
-
"kind": "function",
|
|
6466
|
-
"name": "RULE_MANAGEMENT_COLUMNS",
|
|
6467
|
-
"parameters": [
|
|
6468
|
-
{
|
|
6469
|
-
"name": "context",
|
|
6470
|
-
"type": {
|
|
6471
|
-
"text": "RuleManagement"
|
|
6472
|
-
}
|
|
6473
|
-
}
|
|
6474
|
-
]
|
|
6475
|
-
}
|
|
6476
|
-
],
|
|
6477
|
-
"exports": [
|
|
6478
|
-
{
|
|
6479
|
-
"kind": "js",
|
|
6480
|
-
"name": "RULE_MANAGEMENT_COLUMNS",
|
|
6481
|
-
"declaration": {
|
|
6482
|
-
"name": "RULE_MANAGEMENT_COLUMNS",
|
|
6483
|
-
"module": "src/components/foundation-notification-dashboard/components/rules/columns.ts"
|
|
6484
|
-
}
|
|
6485
|
-
}
|
|
6486
|
-
]
|
|
6487
|
-
},
|
|
6488
|
-
{
|
|
6489
|
-
"kind": "javascript-module",
|
|
6490
|
-
"path": "src/components/foundation-notification-dashboard/components/rules/rule-management.ts",
|
|
6491
|
-
"declarations": [
|
|
6492
|
-
{
|
|
6493
|
-
"kind": "class",
|
|
6494
|
-
"description": "",
|
|
6495
|
-
"name": "RuleManagement",
|
|
6496
|
-
"members": [
|
|
6497
|
-
{
|
|
6498
|
-
"kind": "field",
|
|
6499
|
-
"name": "ruleService",
|
|
6500
|
-
"type": {
|
|
6501
|
-
"text": "RuleService"
|
|
6502
|
-
}
|
|
6503
|
-
},
|
|
6504
|
-
{
|
|
6505
|
-
"kind": "field",
|
|
6506
|
-
"name": "ruleDialog",
|
|
6507
|
-
"type": {
|
|
6508
|
-
"text": "RuleDialog"
|
|
6509
|
-
}
|
|
6510
|
-
},
|
|
6511
|
-
{
|
|
6512
|
-
"kind": "method",
|
|
6513
|
-
"name": "openRuleDialog"
|
|
6512
|
+
"kind": "method",
|
|
6513
|
+
"name": "openRuleDialog"
|
|
6514
6514
|
},
|
|
6515
6515
|
{
|
|
6516
6516
|
"kind": "method",
|
|
@@ -6831,25 +6831,235 @@
|
|
|
6831
6831
|
"name": "GenesisElement",
|
|
6832
6832
|
"package": "@genesislcap/web-core"
|
|
6833
6833
|
},
|
|
6834
|
-
"tagName": "rule-parameter",
|
|
6834
|
+
"tagName": "rule-parameter",
|
|
6835
|
+
"customElement": true
|
|
6836
|
+
}
|
|
6837
|
+
],
|
|
6838
|
+
"exports": [
|
|
6839
|
+
{
|
|
6840
|
+
"kind": "js",
|
|
6841
|
+
"name": "RuleParameter",
|
|
6842
|
+
"declaration": {
|
|
6843
|
+
"name": "RuleParameter",
|
|
6844
|
+
"module": "src/components/foundation-inbox/components/inbox-subscription/rule-parameter/rule-parameter.ts"
|
|
6845
|
+
}
|
|
6846
|
+
},
|
|
6847
|
+
{
|
|
6848
|
+
"kind": "custom-element-definition",
|
|
6849
|
+
"name": "rule-parameter",
|
|
6850
|
+
"declaration": {
|
|
6851
|
+
"name": "RuleParameter",
|
|
6852
|
+
"module": "src/components/foundation-inbox/components/inbox-subscription/rule-parameter/rule-parameter.ts"
|
|
6853
|
+
}
|
|
6854
|
+
}
|
|
6855
|
+
]
|
|
6856
|
+
},
|
|
6857
|
+
{
|
|
6858
|
+
"kind": "javascript-module",
|
|
6859
|
+
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/email-distribution-route-management.ts",
|
|
6860
|
+
"declarations": [
|
|
6861
|
+
{
|
|
6862
|
+
"kind": "class",
|
|
6863
|
+
"description": "",
|
|
6864
|
+
"name": "EmailDistributionRouteManagement",
|
|
6865
|
+
"superclass": {
|
|
6866
|
+
"name": "GenesisElement",
|
|
6867
|
+
"package": "@genesislcap/web-core"
|
|
6868
|
+
},
|
|
6869
|
+
"tagName": "email-distribution-route-management",
|
|
6870
|
+
"customElement": true
|
|
6871
|
+
}
|
|
6872
|
+
],
|
|
6873
|
+
"exports": [
|
|
6874
|
+
{
|
|
6875
|
+
"kind": "js",
|
|
6876
|
+
"name": "EmailDistributionRouteManagement",
|
|
6877
|
+
"declaration": {
|
|
6878
|
+
"name": "EmailDistributionRouteManagement",
|
|
6879
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/email-distribution-route-management.ts"
|
|
6880
|
+
}
|
|
6881
|
+
},
|
|
6882
|
+
{
|
|
6883
|
+
"kind": "custom-element-definition",
|
|
6884
|
+
"name": "email-distribution-route-management",
|
|
6885
|
+
"declaration": {
|
|
6886
|
+
"name": "EmailDistributionRouteManagement",
|
|
6887
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/email-distribution-route-management.ts"
|
|
6888
|
+
}
|
|
6889
|
+
}
|
|
6890
|
+
]
|
|
6891
|
+
},
|
|
6892
|
+
{
|
|
6893
|
+
"kind": "javascript-module",
|
|
6894
|
+
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/email-user-route-management.ts",
|
|
6895
|
+
"declarations": [
|
|
6896
|
+
{
|
|
6897
|
+
"kind": "class",
|
|
6898
|
+
"description": "",
|
|
6899
|
+
"name": "EmailUserRouteManagement",
|
|
6900
|
+
"superclass": {
|
|
6901
|
+
"name": "GenesisElement",
|
|
6902
|
+
"package": "@genesislcap/web-core"
|
|
6903
|
+
},
|
|
6904
|
+
"tagName": "email-user-route-management",
|
|
6905
|
+
"customElement": true
|
|
6906
|
+
}
|
|
6907
|
+
],
|
|
6908
|
+
"exports": [
|
|
6909
|
+
{
|
|
6910
|
+
"kind": "js",
|
|
6911
|
+
"name": "EmailUserRouteManagement",
|
|
6912
|
+
"declaration": {
|
|
6913
|
+
"name": "EmailUserRouteManagement",
|
|
6914
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/email-user-route-management.ts"
|
|
6915
|
+
}
|
|
6916
|
+
},
|
|
6917
|
+
{
|
|
6918
|
+
"kind": "custom-element-definition",
|
|
6919
|
+
"name": "email-user-route-management",
|
|
6920
|
+
"declaration": {
|
|
6921
|
+
"name": "EmailUserRouteManagement",
|
|
6922
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/email-user-route-management.ts"
|
|
6923
|
+
}
|
|
6924
|
+
}
|
|
6925
|
+
]
|
|
6926
|
+
},
|
|
6927
|
+
{
|
|
6928
|
+
"kind": "javascript-module",
|
|
6929
|
+
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/log-route-management.ts",
|
|
6930
|
+
"declarations": [
|
|
6931
|
+
{
|
|
6932
|
+
"kind": "class",
|
|
6933
|
+
"description": "",
|
|
6934
|
+
"name": "LogRouteManagement",
|
|
6935
|
+
"superclass": {
|
|
6936
|
+
"name": "GenesisElement",
|
|
6937
|
+
"package": "@genesislcap/web-core"
|
|
6938
|
+
},
|
|
6939
|
+
"tagName": "log-route-management",
|
|
6940
|
+
"customElement": true
|
|
6941
|
+
}
|
|
6942
|
+
],
|
|
6943
|
+
"exports": [
|
|
6944
|
+
{
|
|
6945
|
+
"kind": "js",
|
|
6946
|
+
"name": "LogRouteManagement",
|
|
6947
|
+
"declaration": {
|
|
6948
|
+
"name": "LogRouteManagement",
|
|
6949
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/log-route-management.ts"
|
|
6950
|
+
}
|
|
6951
|
+
},
|
|
6952
|
+
{
|
|
6953
|
+
"kind": "custom-element-definition",
|
|
6954
|
+
"name": "log-route-management",
|
|
6955
|
+
"declaration": {
|
|
6956
|
+
"name": "LogRouteManagement",
|
|
6957
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/log-route-management.ts"
|
|
6958
|
+
}
|
|
6959
|
+
}
|
|
6960
|
+
]
|
|
6961
|
+
},
|
|
6962
|
+
{
|
|
6963
|
+
"kind": "javascript-module",
|
|
6964
|
+
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/ms-teams-route-management.ts",
|
|
6965
|
+
"declarations": [
|
|
6966
|
+
{
|
|
6967
|
+
"kind": "class",
|
|
6968
|
+
"description": "",
|
|
6969
|
+
"name": "MSTeamsRouteManagement",
|
|
6970
|
+
"superclass": {
|
|
6971
|
+
"name": "GenesisElement",
|
|
6972
|
+
"package": "@genesislcap/web-core"
|
|
6973
|
+
},
|
|
6974
|
+
"tagName": "ms-teams-route-management",
|
|
6975
|
+
"customElement": true
|
|
6976
|
+
}
|
|
6977
|
+
],
|
|
6978
|
+
"exports": [
|
|
6979
|
+
{
|
|
6980
|
+
"kind": "js",
|
|
6981
|
+
"name": "MSTeamsRouteManagement",
|
|
6982
|
+
"declaration": {
|
|
6983
|
+
"name": "MSTeamsRouteManagement",
|
|
6984
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/ms-teams-route-management.ts"
|
|
6985
|
+
}
|
|
6986
|
+
},
|
|
6987
|
+
{
|
|
6988
|
+
"kind": "custom-element-definition",
|
|
6989
|
+
"name": "ms-teams-route-management",
|
|
6990
|
+
"declaration": {
|
|
6991
|
+
"name": "MSTeamsRouteManagement",
|
|
6992
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/ms-teams-route-management.ts"
|
|
6993
|
+
}
|
|
6994
|
+
}
|
|
6995
|
+
]
|
|
6996
|
+
},
|
|
6997
|
+
{
|
|
6998
|
+
"kind": "javascript-module",
|
|
6999
|
+
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/screen-route-management.ts",
|
|
7000
|
+
"declarations": [
|
|
7001
|
+
{
|
|
7002
|
+
"kind": "class",
|
|
7003
|
+
"description": "",
|
|
7004
|
+
"name": "ScreenRouteManagement",
|
|
7005
|
+
"superclass": {
|
|
7006
|
+
"name": "GenesisElement",
|
|
7007
|
+
"package": "@genesislcap/web-core"
|
|
7008
|
+
},
|
|
7009
|
+
"tagName": "screen-route-management",
|
|
7010
|
+
"customElement": true
|
|
7011
|
+
}
|
|
7012
|
+
],
|
|
7013
|
+
"exports": [
|
|
7014
|
+
{
|
|
7015
|
+
"kind": "js",
|
|
7016
|
+
"name": "ScreenRouteManagement",
|
|
7017
|
+
"declaration": {
|
|
7018
|
+
"name": "ScreenRouteManagement",
|
|
7019
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/screen-route-management.ts"
|
|
7020
|
+
}
|
|
7021
|
+
},
|
|
7022
|
+
{
|
|
7023
|
+
"kind": "custom-element-definition",
|
|
7024
|
+
"name": "screen-route-management",
|
|
7025
|
+
"declaration": {
|
|
7026
|
+
"name": "ScreenRouteManagement",
|
|
7027
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/screen-route-management.ts"
|
|
7028
|
+
}
|
|
7029
|
+
}
|
|
7030
|
+
]
|
|
7031
|
+
},
|
|
7032
|
+
{
|
|
7033
|
+
"kind": "javascript-module",
|
|
7034
|
+
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/slack-route-management.ts",
|
|
7035
|
+
"declarations": [
|
|
7036
|
+
{
|
|
7037
|
+
"kind": "class",
|
|
7038
|
+
"description": "",
|
|
7039
|
+
"name": "SlackRouteManagement",
|
|
7040
|
+
"superclass": {
|
|
7041
|
+
"name": "GenesisElement",
|
|
7042
|
+
"package": "@genesislcap/web-core"
|
|
7043
|
+
},
|
|
7044
|
+
"tagName": "slack-route-management",
|
|
6835
7045
|
"customElement": true
|
|
6836
7046
|
}
|
|
6837
7047
|
],
|
|
6838
7048
|
"exports": [
|
|
6839
7049
|
{
|
|
6840
7050
|
"kind": "js",
|
|
6841
|
-
"name": "
|
|
7051
|
+
"name": "SlackRouteManagement",
|
|
6842
7052
|
"declaration": {
|
|
6843
|
-
"name": "
|
|
6844
|
-
"module": "src/components/foundation-
|
|
7053
|
+
"name": "SlackRouteManagement",
|
|
7054
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/slack-route-management.ts"
|
|
6845
7055
|
}
|
|
6846
7056
|
},
|
|
6847
7057
|
{
|
|
6848
7058
|
"kind": "custom-element-definition",
|
|
6849
|
-
"name": "
|
|
7059
|
+
"name": "slack-route-management",
|
|
6850
7060
|
"declaration": {
|
|
6851
|
-
"name": "
|
|
6852
|
-
"module": "src/components/foundation-
|
|
7061
|
+
"name": "SlackRouteManagement",
|
|
7062
|
+
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/slack-route-management.ts"
|
|
6853
7063
|
}
|
|
6854
7064
|
}
|
|
6855
7065
|
]
|
|
@@ -7467,216 +7677,6 @@
|
|
|
7467
7677
|
}
|
|
7468
7678
|
]
|
|
7469
7679
|
},
|
|
7470
|
-
{
|
|
7471
|
-
"kind": "javascript-module",
|
|
7472
|
-
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/email-distribution-route-management.ts",
|
|
7473
|
-
"declarations": [
|
|
7474
|
-
{
|
|
7475
|
-
"kind": "class",
|
|
7476
|
-
"description": "",
|
|
7477
|
-
"name": "EmailDistributionRouteManagement",
|
|
7478
|
-
"superclass": {
|
|
7479
|
-
"name": "GenesisElement",
|
|
7480
|
-
"package": "@genesislcap/web-core"
|
|
7481
|
-
},
|
|
7482
|
-
"tagName": "email-distribution-route-management",
|
|
7483
|
-
"customElement": true
|
|
7484
|
-
}
|
|
7485
|
-
],
|
|
7486
|
-
"exports": [
|
|
7487
|
-
{
|
|
7488
|
-
"kind": "js",
|
|
7489
|
-
"name": "EmailDistributionRouteManagement",
|
|
7490
|
-
"declaration": {
|
|
7491
|
-
"name": "EmailDistributionRouteManagement",
|
|
7492
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/email-distribution-route-management.ts"
|
|
7493
|
-
}
|
|
7494
|
-
},
|
|
7495
|
-
{
|
|
7496
|
-
"kind": "custom-element-definition",
|
|
7497
|
-
"name": "email-distribution-route-management",
|
|
7498
|
-
"declaration": {
|
|
7499
|
-
"name": "EmailDistributionRouteManagement",
|
|
7500
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/email-distribution-route-management.ts"
|
|
7501
|
-
}
|
|
7502
|
-
}
|
|
7503
|
-
]
|
|
7504
|
-
},
|
|
7505
|
-
{
|
|
7506
|
-
"kind": "javascript-module",
|
|
7507
|
-
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/email-user-route-management.ts",
|
|
7508
|
-
"declarations": [
|
|
7509
|
-
{
|
|
7510
|
-
"kind": "class",
|
|
7511
|
-
"description": "",
|
|
7512
|
-
"name": "EmailUserRouteManagement",
|
|
7513
|
-
"superclass": {
|
|
7514
|
-
"name": "GenesisElement",
|
|
7515
|
-
"package": "@genesislcap/web-core"
|
|
7516
|
-
},
|
|
7517
|
-
"tagName": "email-user-route-management",
|
|
7518
|
-
"customElement": true
|
|
7519
|
-
}
|
|
7520
|
-
],
|
|
7521
|
-
"exports": [
|
|
7522
|
-
{
|
|
7523
|
-
"kind": "js",
|
|
7524
|
-
"name": "EmailUserRouteManagement",
|
|
7525
|
-
"declaration": {
|
|
7526
|
-
"name": "EmailUserRouteManagement",
|
|
7527
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/email-user-route-management.ts"
|
|
7528
|
-
}
|
|
7529
|
-
},
|
|
7530
|
-
{
|
|
7531
|
-
"kind": "custom-element-definition",
|
|
7532
|
-
"name": "email-user-route-management",
|
|
7533
|
-
"declaration": {
|
|
7534
|
-
"name": "EmailUserRouteManagement",
|
|
7535
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/email-user-route-management.ts"
|
|
7536
|
-
}
|
|
7537
|
-
}
|
|
7538
|
-
]
|
|
7539
|
-
},
|
|
7540
|
-
{
|
|
7541
|
-
"kind": "javascript-module",
|
|
7542
|
-
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/log-route-management.ts",
|
|
7543
|
-
"declarations": [
|
|
7544
|
-
{
|
|
7545
|
-
"kind": "class",
|
|
7546
|
-
"description": "",
|
|
7547
|
-
"name": "LogRouteManagement",
|
|
7548
|
-
"superclass": {
|
|
7549
|
-
"name": "GenesisElement",
|
|
7550
|
-
"package": "@genesislcap/web-core"
|
|
7551
|
-
},
|
|
7552
|
-
"tagName": "log-route-management",
|
|
7553
|
-
"customElement": true
|
|
7554
|
-
}
|
|
7555
|
-
],
|
|
7556
|
-
"exports": [
|
|
7557
|
-
{
|
|
7558
|
-
"kind": "js",
|
|
7559
|
-
"name": "LogRouteManagement",
|
|
7560
|
-
"declaration": {
|
|
7561
|
-
"name": "LogRouteManagement",
|
|
7562
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/log-route-management.ts"
|
|
7563
|
-
}
|
|
7564
|
-
},
|
|
7565
|
-
{
|
|
7566
|
-
"kind": "custom-element-definition",
|
|
7567
|
-
"name": "log-route-management",
|
|
7568
|
-
"declaration": {
|
|
7569
|
-
"name": "LogRouteManagement",
|
|
7570
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/log-route-management.ts"
|
|
7571
|
-
}
|
|
7572
|
-
}
|
|
7573
|
-
]
|
|
7574
|
-
},
|
|
7575
|
-
{
|
|
7576
|
-
"kind": "javascript-module",
|
|
7577
|
-
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/ms-teams-route-management.ts",
|
|
7578
|
-
"declarations": [
|
|
7579
|
-
{
|
|
7580
|
-
"kind": "class",
|
|
7581
|
-
"description": "",
|
|
7582
|
-
"name": "MSTeamsRouteManagement",
|
|
7583
|
-
"superclass": {
|
|
7584
|
-
"name": "GenesisElement",
|
|
7585
|
-
"package": "@genesislcap/web-core"
|
|
7586
|
-
},
|
|
7587
|
-
"tagName": "ms-teams-route-management",
|
|
7588
|
-
"customElement": true
|
|
7589
|
-
}
|
|
7590
|
-
],
|
|
7591
|
-
"exports": [
|
|
7592
|
-
{
|
|
7593
|
-
"kind": "js",
|
|
7594
|
-
"name": "MSTeamsRouteManagement",
|
|
7595
|
-
"declaration": {
|
|
7596
|
-
"name": "MSTeamsRouteManagement",
|
|
7597
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/ms-teams-route-management.ts"
|
|
7598
|
-
}
|
|
7599
|
-
},
|
|
7600
|
-
{
|
|
7601
|
-
"kind": "custom-element-definition",
|
|
7602
|
-
"name": "ms-teams-route-management",
|
|
7603
|
-
"declaration": {
|
|
7604
|
-
"name": "MSTeamsRouteManagement",
|
|
7605
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/ms-teams-route-management.ts"
|
|
7606
|
-
}
|
|
7607
|
-
}
|
|
7608
|
-
]
|
|
7609
|
-
},
|
|
7610
|
-
{
|
|
7611
|
-
"kind": "javascript-module",
|
|
7612
|
-
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/screen-route-management.ts",
|
|
7613
|
-
"declarations": [
|
|
7614
|
-
{
|
|
7615
|
-
"kind": "class",
|
|
7616
|
-
"description": "",
|
|
7617
|
-
"name": "ScreenRouteManagement",
|
|
7618
|
-
"superclass": {
|
|
7619
|
-
"name": "GenesisElement",
|
|
7620
|
-
"package": "@genesislcap/web-core"
|
|
7621
|
-
},
|
|
7622
|
-
"tagName": "screen-route-management",
|
|
7623
|
-
"customElement": true
|
|
7624
|
-
}
|
|
7625
|
-
],
|
|
7626
|
-
"exports": [
|
|
7627
|
-
{
|
|
7628
|
-
"kind": "js",
|
|
7629
|
-
"name": "ScreenRouteManagement",
|
|
7630
|
-
"declaration": {
|
|
7631
|
-
"name": "ScreenRouteManagement",
|
|
7632
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/screen-route-management.ts"
|
|
7633
|
-
}
|
|
7634
|
-
},
|
|
7635
|
-
{
|
|
7636
|
-
"kind": "custom-element-definition",
|
|
7637
|
-
"name": "screen-route-management",
|
|
7638
|
-
"declaration": {
|
|
7639
|
-
"name": "ScreenRouteManagement",
|
|
7640
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/screen-route-management.ts"
|
|
7641
|
-
}
|
|
7642
|
-
}
|
|
7643
|
-
]
|
|
7644
|
-
},
|
|
7645
|
-
{
|
|
7646
|
-
"kind": "javascript-module",
|
|
7647
|
-
"path": "src/components/foundation-notification-dashboard/components/routes/tabs/slack-route-management.ts",
|
|
7648
|
-
"declarations": [
|
|
7649
|
-
{
|
|
7650
|
-
"kind": "class",
|
|
7651
|
-
"description": "",
|
|
7652
|
-
"name": "SlackRouteManagement",
|
|
7653
|
-
"superclass": {
|
|
7654
|
-
"name": "GenesisElement",
|
|
7655
|
-
"package": "@genesislcap/web-core"
|
|
7656
|
-
},
|
|
7657
|
-
"tagName": "slack-route-management",
|
|
7658
|
-
"customElement": true
|
|
7659
|
-
}
|
|
7660
|
-
],
|
|
7661
|
-
"exports": [
|
|
7662
|
-
{
|
|
7663
|
-
"kind": "js",
|
|
7664
|
-
"name": "SlackRouteManagement",
|
|
7665
|
-
"declaration": {
|
|
7666
|
-
"name": "SlackRouteManagement",
|
|
7667
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/slack-route-management.ts"
|
|
7668
|
-
}
|
|
7669
|
-
},
|
|
7670
|
-
{
|
|
7671
|
-
"kind": "custom-element-definition",
|
|
7672
|
-
"name": "slack-route-management",
|
|
7673
|
-
"declaration": {
|
|
7674
|
-
"name": "SlackRouteManagement",
|
|
7675
|
-
"module": "src/components/foundation-notification-dashboard/components/routes/tabs/slack-route-management.ts"
|
|
7676
|
-
}
|
|
7677
|
-
}
|
|
7678
|
-
]
|
|
7679
|
-
},
|
|
7680
7680
|
{
|
|
7681
7681
|
"kind": "javascript-module",
|
|
7682
7682
|
"path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-dialog.template.ts",
|
package/dist/dts/react.d.ts
CHANGED
|
@@ -106,6 +106,15 @@ export declare const FoundationSounds: React.ForwardRefExoticComponent<
|
|
|
106
106
|
>;
|
|
107
107
|
export type FoundationSoundsRef = FoundationSoundsWC;
|
|
108
108
|
|
|
109
|
+
export declare const FoundationInboxCounter: React.ForwardRefExoticComponent<
|
|
110
|
+
React.PropsWithChildren<
|
|
111
|
+
Omit<PublicOf<FoundationInboxCounterWC>, 'children' | 'style'> &
|
|
112
|
+
HTMLWCProps & {
|
|
113
|
+
}
|
|
114
|
+
> & React.RefAttributes<FoundationInboxCounterWC>
|
|
115
|
+
>;
|
|
116
|
+
export type FoundationInboxCounterRef = FoundationInboxCounterWC;
|
|
117
|
+
|
|
109
118
|
export declare const FoundationInboxFlyout: React.ForwardRefExoticComponent<
|
|
110
119
|
React.PropsWithChildren<
|
|
111
120
|
Omit<PublicOf<FoundationInboxFlyoutWC>, 'children' | 'style'> &
|
|
@@ -126,15 +135,6 @@ export declare const InboxSubscription: React.ForwardRefExoticComponent<
|
|
|
126
135
|
>;
|
|
127
136
|
export type InboxSubscriptionRef = InboxSubscriptionWC;
|
|
128
137
|
|
|
129
|
-
export declare const FoundationInboxCounter: React.ForwardRefExoticComponent<
|
|
130
|
-
React.PropsWithChildren<
|
|
131
|
-
Omit<PublicOf<FoundationInboxCounterWC>, 'children' | 'style'> &
|
|
132
|
-
HTMLWCProps & {
|
|
133
|
-
}
|
|
134
|
-
> & React.RefAttributes<FoundationInboxCounterWC>
|
|
135
|
-
>;
|
|
136
|
-
export type FoundationInboxCounterRef = FoundationInboxCounterWC;
|
|
137
|
-
|
|
138
138
|
export declare const NotifyAuditManagement: React.ForwardRefExoticComponent<
|
|
139
139
|
React.PropsWithChildren<
|
|
140
140
|
Omit<PublicOf<NotifyAuditManagementWC>, 'children' | 'style'> &
|
|
@@ -181,16 +181,6 @@ export declare const RuleParameter: React.ForwardRefExoticComponent<
|
|
|
181
181
|
>;
|
|
182
182
|
export type RuleParameterRef = RuleParameterWC;
|
|
183
183
|
|
|
184
|
-
export declare const RuleDialog: React.ForwardRefExoticComponent<
|
|
185
|
-
React.PropsWithChildren<
|
|
186
|
-
Omit<PublicOf<RuleDialogWC>, 'children' | 'style'> &
|
|
187
|
-
HTMLWCProps & {
|
|
188
|
-
onClose?: (event: CustomEvent<unknown>) => void;
|
|
189
|
-
}
|
|
190
|
-
> & React.RefAttributes<RuleDialogWC>
|
|
191
|
-
>;
|
|
192
|
-
export type RuleDialogRef = RuleDialogWC;
|
|
193
|
-
|
|
194
184
|
export declare const EmailDistributionRouteManagement: React.ForwardRefExoticComponent<
|
|
195
185
|
React.PropsWithChildren<
|
|
196
186
|
Omit<PublicOf<EmailDistributionRouteManagementWC>, 'children' | 'style'> &
|
|
@@ -245,6 +235,16 @@ export declare const SlackRouteManagement: React.ForwardRefExoticComponent<
|
|
|
245
235
|
>;
|
|
246
236
|
export type SlackRouteManagementRef = SlackRouteManagementWC;
|
|
247
237
|
|
|
238
|
+
export declare const RuleDialog: React.ForwardRefExoticComponent<
|
|
239
|
+
React.PropsWithChildren<
|
|
240
|
+
Omit<PublicOf<RuleDialogWC>, 'children' | 'style'> &
|
|
241
|
+
HTMLWCProps & {
|
|
242
|
+
onClose?: (event: CustomEvent<unknown>) => void;
|
|
243
|
+
}
|
|
244
|
+
> & React.RefAttributes<RuleDialogWC>
|
|
245
|
+
>;
|
|
246
|
+
export type RuleDialogRef = RuleDialogWC;
|
|
247
|
+
|
|
248
248
|
export declare const TemplateDialog: React.ForwardRefExoticComponent<
|
|
249
249
|
React.PropsWithChildren<
|
|
250
250
|
Omit<PublicOf<TemplateDialogWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -67,6 +67,11 @@ const FoundationSounds = React.forwardRef(function FoundationSounds(props, ref)
|
|
|
67
67
|
return React.createElement(customElements.getName(FoundationSoundsWC) ?? 'foundation-sounds', { ...rest, ref }, children);
|
|
68
68
|
});
|
|
69
69
|
|
|
70
|
+
const FoundationInboxCounter = React.forwardRef(function FoundationInboxCounter(props, ref) {
|
|
71
|
+
const { children, ...rest } = props;
|
|
72
|
+
return React.createElement(customElements.getName(FoundationInboxCounterWC) ?? 'foundation-inbox-counter', { ...rest, ref }, children);
|
|
73
|
+
});
|
|
74
|
+
|
|
70
75
|
const FoundationInboxFlyout = React.forwardRef(function FoundationInboxFlyout(props, ref) {
|
|
71
76
|
const { children, ...rest } = props;
|
|
72
77
|
return React.createElement(customElements.getName(FoundationInboxFlyoutWC) ?? 'foundation-inbox-flyout', { ...rest, ref }, children);
|
|
@@ -94,11 +99,6 @@ const InboxSubscription = React.forwardRef(function InboxSubscription(props, ref
|
|
|
94
99
|
return React.createElement(customElements.getName(InboxSubscriptionWC) ?? 'inbox-subscription', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
95
100
|
});
|
|
96
101
|
|
|
97
|
-
const FoundationInboxCounter = React.forwardRef(function FoundationInboxCounter(props, ref) {
|
|
98
|
-
const { children, ...rest } = props;
|
|
99
|
-
return React.createElement(customElements.getName(FoundationInboxCounterWC) ?? 'foundation-inbox-counter', { ...rest, ref }, children);
|
|
100
|
-
});
|
|
101
|
-
|
|
102
102
|
const NotifyAuditManagement = React.forwardRef(function NotifyAuditManagement(props, ref) {
|
|
103
103
|
const { children, ...rest } = props;
|
|
104
104
|
return React.createElement(customElements.getName(NotifyAuditManagementWC) ?? 'notify-audit-management', { ...rest, ref }, children);
|
|
@@ -136,23 +136,6 @@ const RuleParameter = React.forwardRef(function RuleParameter(props, ref) {
|
|
|
136
136
|
return React.createElement(customElements.getName(RuleParameterWC) ?? 'rule-parameter', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
137
137
|
});
|
|
138
138
|
|
|
139
|
-
const RuleDialog = React.forwardRef(function RuleDialog(props, ref) {
|
|
140
|
-
const { onClose, children, ...rest } = props;
|
|
141
|
-
const _innerRef = React.useRef(null);
|
|
142
|
-
const _onCloseRef = React.useRef(onClose);
|
|
143
|
-
_onCloseRef.current = onClose;
|
|
144
|
-
React.useLayoutEffect(() => {
|
|
145
|
-
const el = _innerRef.current;
|
|
146
|
-
if (!el) return;
|
|
147
|
-
const _onCloseFn = (e) => _onCloseRef.current?.(e);
|
|
148
|
-
el.addEventListener('close', _onCloseFn);
|
|
149
|
-
return () => {
|
|
150
|
-
el.removeEventListener('close', _onCloseFn);
|
|
151
|
-
};
|
|
152
|
-
}, []);
|
|
153
|
-
return React.createElement(customElements.getName(RuleDialogWC) ?? 'rule-dialog', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
154
|
-
});
|
|
155
|
-
|
|
156
139
|
const EmailDistributionRouteManagement = React.forwardRef(function EmailDistributionRouteManagement(props, ref) {
|
|
157
140
|
const { children, ...rest } = props;
|
|
158
141
|
return React.createElement(customElements.getName(EmailDistributionRouteManagementWC) ?? 'email-distribution-route-management', { ...rest, ref }, children);
|
|
@@ -183,6 +166,23 @@ const SlackRouteManagement = React.forwardRef(function SlackRouteManagement(prop
|
|
|
183
166
|
return React.createElement(customElements.getName(SlackRouteManagementWC) ?? 'slack-route-management', { ...rest, ref }, children);
|
|
184
167
|
});
|
|
185
168
|
|
|
169
|
+
const RuleDialog = React.forwardRef(function RuleDialog(props, ref) {
|
|
170
|
+
const { onClose, children, ...rest } = props;
|
|
171
|
+
const _innerRef = React.useRef(null);
|
|
172
|
+
const _onCloseRef = React.useRef(onClose);
|
|
173
|
+
_onCloseRef.current = onClose;
|
|
174
|
+
React.useLayoutEffect(() => {
|
|
175
|
+
const el = _innerRef.current;
|
|
176
|
+
if (!el) return;
|
|
177
|
+
const _onCloseFn = (e) => _onCloseRef.current?.(e);
|
|
178
|
+
el.addEventListener('close', _onCloseFn);
|
|
179
|
+
return () => {
|
|
180
|
+
el.removeEventListener('close', _onCloseFn);
|
|
181
|
+
};
|
|
182
|
+
}, []);
|
|
183
|
+
return React.createElement(customElements.getName(RuleDialogWC) ?? 'rule-dialog', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
184
|
+
});
|
|
185
|
+
|
|
186
186
|
const TemplateDialog = React.forwardRef(function TemplateDialog(props, ref) {
|
|
187
187
|
const { onClose, children, ...rest } = props;
|
|
188
188
|
const _innerRef = React.useRef(null);
|
|
@@ -316,21 +316,21 @@ module.exports = {
|
|
|
316
316
|
FoundationNotificationDashboard,
|
|
317
317
|
FoundationSoundsPanel,
|
|
318
318
|
FoundationSounds,
|
|
319
|
+
FoundationInboxCounter,
|
|
319
320
|
FoundationInboxFlyout,
|
|
320
321
|
InboxSubscription,
|
|
321
|
-
FoundationInboxCounter,
|
|
322
322
|
NotifyAuditManagement,
|
|
323
323
|
RouteManagement,
|
|
324
324
|
RuleManagement,
|
|
325
325
|
TemplateManagement,
|
|
326
326
|
RuleParameter,
|
|
327
|
-
RuleDialog,
|
|
328
327
|
EmailDistributionRouteManagement,
|
|
329
328
|
EmailUserRouteManagement,
|
|
330
329
|
LogRouteManagement,
|
|
331
330
|
MSTeamsRouteManagement,
|
|
332
331
|
ScreenRouteManagement,
|
|
333
332
|
SlackRouteManagement,
|
|
333
|
+
RuleDialog,
|
|
334
334
|
TemplateDialog,
|
|
335
335
|
RuleConditionBuilder,
|
|
336
336
|
RuleConditionGroup,
|
package/dist/react.mjs
CHANGED
|
@@ -65,6 +65,11 @@ export const FoundationSounds = React.forwardRef(function FoundationSounds(props
|
|
|
65
65
|
return React.createElement(customElements.getName(FoundationSoundsWC) ?? 'foundation-sounds', { ...rest, ref }, children);
|
|
66
66
|
});
|
|
67
67
|
|
|
68
|
+
export const FoundationInboxCounter = React.forwardRef(function FoundationInboxCounter(props, ref) {
|
|
69
|
+
const { children, ...rest } = props;
|
|
70
|
+
return React.createElement(customElements.getName(FoundationInboxCounterWC) ?? 'foundation-inbox-counter', { ...rest, ref }, children);
|
|
71
|
+
});
|
|
72
|
+
|
|
68
73
|
export const FoundationInboxFlyout = React.forwardRef(function FoundationInboxFlyout(props, ref) {
|
|
69
74
|
const { children, ...rest } = props;
|
|
70
75
|
return React.createElement(customElements.getName(FoundationInboxFlyoutWC) ?? 'foundation-inbox-flyout', { ...rest, ref }, children);
|
|
@@ -92,11 +97,6 @@ export const InboxSubscription = React.forwardRef(function InboxSubscription(pro
|
|
|
92
97
|
return React.createElement(customElements.getName(InboxSubscriptionWC) ?? 'inbox-subscription', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
93
98
|
});
|
|
94
99
|
|
|
95
|
-
export const FoundationInboxCounter = React.forwardRef(function FoundationInboxCounter(props, ref) {
|
|
96
|
-
const { children, ...rest } = props;
|
|
97
|
-
return React.createElement(customElements.getName(FoundationInboxCounterWC) ?? 'foundation-inbox-counter', { ...rest, ref }, children);
|
|
98
|
-
});
|
|
99
|
-
|
|
100
100
|
export const NotifyAuditManagement = React.forwardRef(function NotifyAuditManagement(props, ref) {
|
|
101
101
|
const { children, ...rest } = props;
|
|
102
102
|
return React.createElement(customElements.getName(NotifyAuditManagementWC) ?? 'notify-audit-management', { ...rest, ref }, children);
|
|
@@ -134,23 +134,6 @@ export const RuleParameter = React.forwardRef(function RuleParameter(props, ref)
|
|
|
134
134
|
return React.createElement(customElements.getName(RuleParameterWC) ?? 'rule-parameter', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
135
135
|
});
|
|
136
136
|
|
|
137
|
-
export const RuleDialog = React.forwardRef(function RuleDialog(props, ref) {
|
|
138
|
-
const { onClose, children, ...rest } = props;
|
|
139
|
-
const _innerRef = React.useRef(null);
|
|
140
|
-
const _onCloseRef = React.useRef(onClose);
|
|
141
|
-
_onCloseRef.current = onClose;
|
|
142
|
-
React.useLayoutEffect(() => {
|
|
143
|
-
const el = _innerRef.current;
|
|
144
|
-
if (!el) return;
|
|
145
|
-
const _onCloseFn = (e) => _onCloseRef.current?.(e);
|
|
146
|
-
el.addEventListener('close', _onCloseFn);
|
|
147
|
-
return () => {
|
|
148
|
-
el.removeEventListener('close', _onCloseFn);
|
|
149
|
-
};
|
|
150
|
-
}, []);
|
|
151
|
-
return React.createElement(customElements.getName(RuleDialogWC) ?? 'rule-dialog', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
152
|
-
});
|
|
153
|
-
|
|
154
137
|
export const EmailDistributionRouteManagement = React.forwardRef(function EmailDistributionRouteManagement(props, ref) {
|
|
155
138
|
const { children, ...rest } = props;
|
|
156
139
|
return React.createElement(customElements.getName(EmailDistributionRouteManagementWC) ?? 'email-distribution-route-management', { ...rest, ref }, children);
|
|
@@ -181,6 +164,23 @@ export const SlackRouteManagement = React.forwardRef(function SlackRouteManageme
|
|
|
181
164
|
return React.createElement(customElements.getName(SlackRouteManagementWC) ?? 'slack-route-management', { ...rest, ref }, children);
|
|
182
165
|
});
|
|
183
166
|
|
|
167
|
+
export const RuleDialog = React.forwardRef(function RuleDialog(props, ref) {
|
|
168
|
+
const { onClose, children, ...rest } = props;
|
|
169
|
+
const _innerRef = React.useRef(null);
|
|
170
|
+
const _onCloseRef = React.useRef(onClose);
|
|
171
|
+
_onCloseRef.current = onClose;
|
|
172
|
+
React.useLayoutEffect(() => {
|
|
173
|
+
const el = _innerRef.current;
|
|
174
|
+
if (!el) return;
|
|
175
|
+
const _onCloseFn = (e) => _onCloseRef.current?.(e);
|
|
176
|
+
el.addEventListener('close', _onCloseFn);
|
|
177
|
+
return () => {
|
|
178
|
+
el.removeEventListener('close', _onCloseFn);
|
|
179
|
+
};
|
|
180
|
+
}, []);
|
|
181
|
+
return React.createElement(customElements.getName(RuleDialogWC) ?? 'rule-dialog', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
182
|
+
});
|
|
183
|
+
|
|
184
184
|
export const TemplateDialog = React.forwardRef(function TemplateDialog(props, ref) {
|
|
185
185
|
const { onClose, children, ...rest } = props;
|
|
186
186
|
const _innerRef = React.useRef(null);
|
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.14.
|
|
4
|
+
"version": "15.14.2",
|
|
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.14.
|
|
85
|
-
"@genesislcap/eslint-config": "15.14.
|
|
86
|
-
"@genesislcap/eslint-stylelint-builder": "15.14.
|
|
87
|
-
"@genesislcap/foundation-testing": "15.14.
|
|
88
|
-
"@genesislcap/genx": "15.14.
|
|
89
|
-
"@genesislcap/prettier-config": "15.14.
|
|
90
|
-
"@genesislcap/stylelint-config": "15.14.
|
|
91
|
-
"@genesislcap/vite-builder": "15.14.
|
|
92
|
-
"@genesislcap/webpack-builder": "15.14.
|
|
84
|
+
"@genesislcap/design-system-configurator": "15.14.2",
|
|
85
|
+
"@genesislcap/eslint-config": "15.14.2",
|
|
86
|
+
"@genesislcap/eslint-stylelint-builder": "15.14.2",
|
|
87
|
+
"@genesislcap/foundation-testing": "15.14.2",
|
|
88
|
+
"@genesislcap/genx": "15.14.2",
|
|
89
|
+
"@genesislcap/prettier-config": "15.14.2",
|
|
90
|
+
"@genesislcap/stylelint-config": "15.14.2",
|
|
91
|
+
"@genesislcap/vite-builder": "15.14.2",
|
|
92
|
+
"@genesislcap/webpack-builder": "15.14.2",
|
|
93
93
|
"dayjs": "^1.11.7"
|
|
94
94
|
},
|
|
95
95
|
"dependencies": {
|
|
96
|
-
"@genesislcap/foundation-comms": "15.14.
|
|
97
|
-
"@genesislcap/foundation-criteria": "15.14.
|
|
98
|
-
"@genesislcap/foundation-entity-management": "15.14.
|
|
99
|
-
"@genesislcap/foundation-forms": "15.14.
|
|
100
|
-
"@genesislcap/foundation-layout": "15.14.
|
|
101
|
-
"@genesislcap/foundation-logger": "15.14.
|
|
102
|
-
"@genesislcap/foundation-notifications": "15.14.
|
|
103
|
-
"@genesislcap/foundation-ui": "15.14.
|
|
104
|
-
"@genesislcap/foundation-utils": "15.14.
|
|
105
|
-
"@genesislcap/rapid-design-system": "15.14.
|
|
106
|
-
"@genesislcap/rapid-grid-pro": "15.14.
|
|
107
|
-
"@genesislcap/web-core": "15.14.
|
|
96
|
+
"@genesislcap/foundation-comms": "15.14.2",
|
|
97
|
+
"@genesislcap/foundation-criteria": "15.14.2",
|
|
98
|
+
"@genesislcap/foundation-entity-management": "15.14.2",
|
|
99
|
+
"@genesislcap/foundation-forms": "15.14.2",
|
|
100
|
+
"@genesislcap/foundation-layout": "15.14.2",
|
|
101
|
+
"@genesislcap/foundation-logger": "15.14.2",
|
|
102
|
+
"@genesislcap/foundation-notifications": "15.14.2",
|
|
103
|
+
"@genesislcap/foundation-ui": "15.14.2",
|
|
104
|
+
"@genesislcap/foundation-utils": "15.14.2",
|
|
105
|
+
"@genesislcap/rapid-design-system": "15.14.2",
|
|
106
|
+
"@genesislcap/rapid-grid-pro": "15.14.2",
|
|
107
|
+
"@genesislcap/web-core": "15.14.2",
|
|
108
108
|
"lodash.debounce": "^4.0.8",
|
|
109
109
|
"rxjs": "^7.5.4"
|
|
110
110
|
},
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
"access": "public"
|
|
113
113
|
},
|
|
114
114
|
"customElements": "dist/custom-elements.json",
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "bd1cb4a789548d9c7c6777f8adb7bce3f43c3317"
|
|
116
116
|
}
|