@genesislcap/pbc-notify-ui 15.3.2-FUI-2571-formatters.1 → 15.3.2-FUI-2591.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5448,70 +5448,70 @@
5448
5448
  },
5449
5449
  {
5450
5450
  "kind": "javascript-module",
5451
- "path": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts",
5451
+ "path": "src/components/foundation-notification-dashboard/components/routes/route-management.ts",
5452
5452
  "declarations": [
5453
5453
  {
5454
5454
  "kind": "class",
5455
5455
  "description": "",
5456
- "name": "NotifyAuditManagement",
5456
+ "name": "RouteManagement",
5457
5457
  "superclass": {
5458
5458
  "name": "GenesisElement",
5459
5459
  "package": "@genesislcap/web-core"
5460
5460
  },
5461
- "tagName": "notify-audit-management",
5461
+ "tagName": "route-management",
5462
5462
  "customElement": true
5463
5463
  }
5464
5464
  ],
5465
5465
  "exports": [
5466
5466
  {
5467
5467
  "kind": "js",
5468
- "name": "NotifyAuditManagement",
5468
+ "name": "RouteManagement",
5469
5469
  "declaration": {
5470
- "name": "NotifyAuditManagement",
5471
- "module": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts"
5470
+ "name": "RouteManagement",
5471
+ "module": "src/components/foundation-notification-dashboard/components/routes/route-management.ts"
5472
5472
  }
5473
5473
  },
5474
5474
  {
5475
5475
  "kind": "custom-element-definition",
5476
- "name": "notify-audit-management",
5476
+ "name": "route-management",
5477
5477
  "declaration": {
5478
- "name": "NotifyAuditManagement",
5479
- "module": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts"
5478
+ "name": "RouteManagement",
5479
+ "module": "src/components/foundation-notification-dashboard/components/routes/route-management.ts"
5480
5480
  }
5481
5481
  }
5482
5482
  ]
5483
5483
  },
5484
5484
  {
5485
5485
  "kind": "javascript-module",
5486
- "path": "src/components/foundation-notification-dashboard/components/routes/route-management.ts",
5486
+ "path": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts",
5487
5487
  "declarations": [
5488
5488
  {
5489
5489
  "kind": "class",
5490
5490
  "description": "",
5491
- "name": "RouteManagement",
5491
+ "name": "NotifyAuditManagement",
5492
5492
  "superclass": {
5493
5493
  "name": "GenesisElement",
5494
5494
  "package": "@genesislcap/web-core"
5495
5495
  },
5496
- "tagName": "route-management",
5496
+ "tagName": "notify-audit-management",
5497
5497
  "customElement": true
5498
5498
  }
5499
5499
  ],
5500
5500
  "exports": [
5501
5501
  {
5502
5502
  "kind": "js",
5503
- "name": "RouteManagement",
5503
+ "name": "NotifyAuditManagement",
5504
5504
  "declaration": {
5505
- "name": "RouteManagement",
5506
- "module": "src/components/foundation-notification-dashboard/components/routes/route-management.ts"
5505
+ "name": "NotifyAuditManagement",
5506
+ "module": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts"
5507
5507
  }
5508
5508
  },
5509
5509
  {
5510
5510
  "kind": "custom-element-definition",
5511
- "name": "route-management",
5511
+ "name": "notify-audit-management",
5512
5512
  "declaration": {
5513
- "name": "RouteManagement",
5514
- "module": "src/components/foundation-notification-dashboard/components/routes/route-management.ts"
5513
+ "name": "NotifyAuditManagement",
5514
+ "module": "src/components/foundation-notification-dashboard/components/notify-audit/notify-audit-management.ts"
5515
5515
  }
5516
5516
  }
5517
5517
  ]
@@ -7534,164 +7534,6 @@
7534
7534
  }
7535
7535
  ]
7536
7536
  },
7537
- {
7538
- "kind": "javascript-module",
7539
- "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.template.ts",
7540
- "declarations": [
7541
- {
7542
- "kind": "variable",
7543
- "name": "TemplateConditionGroupTemplate",
7544
- "default": "html<TemplateConditionGroup>`\n ${when(\n (x) => !x.isFirst,\n html`\n <div class=\"join-toggle-row\">\n <div class=\"join-toggle\">\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'AND'])}\"\n @click=${(x) => (x.joinOperator = 'AND')}\n >\n AND\n </span>\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'OR'])}\"\n @click=${(x) => (x.joinOperator = 'OR')}\n >\n OR\n </span>\n </div>\n </div>\n `,\n )}\n <div class=\"condition-group-row\">\n <div class=\"condition-group-box\">\n ${repeat(\n (x) => x.groupChildren,\n html<ConditionNode, TemplateConditionGroup>`\n ${when(\n (x) => isGroup(x),\n html<ConditionNode>`\n <template-condition-group\n :fields=${(x, c) => c.parent.fields}\n :parameters=${(x, c) => c.parent.parameters}\n :node=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></template-condition-group>\n `,\n )}\n ${when(\n (x) => !isGroup(x),\n html<ConditionNode>`\n <template-condition-builder\n :fields=${(x, c) => c.parent.fields}\n :parameters=${(x, c) => c.parent.parameters}\n :condition=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></template-condition-builder>\n `,\n )}\n `,\n { positioning: true },\n )}\n\n <div class=\"content-row\">\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newCondition()}>\n + Condition\n </rapid-button>\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newGroup()}>+ Group</rapid-button>\n <rapid-button appearance=\"icon\" class=\"delete-group\" @click=${(x) => x.deleteSelf()}>\n <rapid-icon variant=\"regular\" name=\"trash-alt\" size=\"lg\" part=\"icon\"></rapid-icon>\n </rapid-button>\n </div>\n </div>\n </div>\n`"
7545
- }
7546
- ],
7547
- "exports": [
7548
- {
7549
- "kind": "js",
7550
- "name": "TemplateConditionGroupTemplate",
7551
- "declaration": {
7552
- "name": "TemplateConditionGroupTemplate",
7553
- "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.template.ts"
7554
- }
7555
- }
7556
- ]
7557
- },
7558
- {
7559
- "kind": "javascript-module",
7560
- "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.ts",
7561
- "declarations": [
7562
- {
7563
- "kind": "class",
7564
- "description": "Parenthesized group of conditions/nested groups for notification template\ncriteria - see rule-condition-group for the rationale. Also forwards\n:parameters down to nested template-condition-builder rows so parameter\nbinding (USER_ENTRY) keeps working inside a group.",
7565
- "name": "TemplateConditionGroup",
7566
- "members": [
7567
- {
7568
- "kind": "field",
7569
- "name": "node",
7570
- "type": {
7571
- "text": "ConditionGroupEntity"
7572
- }
7573
- },
7574
- {
7575
- "kind": "field",
7576
- "name": "fields",
7577
- "type": {
7578
- "text": "Field[]"
7579
- },
7580
- "default": "[]"
7581
- },
7582
- {
7583
- "kind": "field",
7584
- "name": "parameters",
7585
- "type": {
7586
- "text": "Array<ParameterBuilderEntity>"
7587
- },
7588
- "default": "[]"
7589
- },
7590
- {
7591
- "kind": "field",
7592
- "name": "isFirst",
7593
- "type": {
7594
- "text": "boolean"
7595
- },
7596
- "default": "false"
7597
- },
7598
- {
7599
- "kind": "field",
7600
- "name": "joinOperator",
7601
- "type": {
7602
- "text": "string"
7603
- }
7604
- },
7605
- {
7606
- "kind": "field",
7607
- "name": "groupChildren",
7608
- "type": {
7609
- "text": "ConditionNode[]"
7610
- },
7611
- "default": "[]"
7612
- },
7613
- {
7614
- "kind": "method",
7615
- "name": "nodeChanged"
7616
- },
7617
- {
7618
- "kind": "method",
7619
- "name": "joinOperatorChanged"
7620
- },
7621
- {
7622
- "kind": "method",
7623
- "name": "newCondition"
7624
- },
7625
- {
7626
- "kind": "method",
7627
- "name": "newGroup"
7628
- },
7629
- {
7630
- "kind": "method",
7631
- "name": "editChild",
7632
- "parameters": [
7633
- {
7634
- "name": "_editedChild",
7635
- "type": {
7636
- "text": "ConditionNode"
7637
- }
7638
- }
7639
- ]
7640
- },
7641
- {
7642
- "kind": "method",
7643
- "name": "deleteChild",
7644
- "parameters": [
7645
- {
7646
- "name": "deletedChild",
7647
- "type": {
7648
- "text": "ConditionNode"
7649
- }
7650
- }
7651
- ]
7652
- },
7653
- {
7654
- "kind": "method",
7655
- "name": "deleteSelf"
7656
- }
7657
- ],
7658
- "events": [
7659
- {
7660
- "description": "Fired when this whole group should be removed",
7661
- "name": "delete"
7662
- },
7663
- {
7664
- "description": "Fired when anything inside this group changes",
7665
- "name": "edit"
7666
- }
7667
- ],
7668
- "superclass": {
7669
- "name": "GenesisElement",
7670
- "package": "@genesislcap/web-core"
7671
- },
7672
- "tagName": "template-condition-group",
7673
- "customElement": true
7674
- }
7675
- ],
7676
- "exports": [
7677
- {
7678
- "kind": "js",
7679
- "name": "TemplateConditionGroup",
7680
- "declaration": {
7681
- "name": "TemplateConditionGroup",
7682
- "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.ts"
7683
- }
7684
- },
7685
- {
7686
- "kind": "custom-element-definition",
7687
- "name": "template-condition-group",
7688
- "declaration": {
7689
- "name": "TemplateConditionGroup",
7690
- "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.ts"
7691
- }
7692
- }
7693
- ]
7694
- },
7695
7537
  {
7696
7538
  "kind": "javascript-module",
7697
7539
  "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-builder/template-condition-builder.template.ts",
@@ -7983,6 +7825,164 @@
7983
7825
  }
7984
7826
  }
7985
7827
  ]
7828
+ },
7829
+ {
7830
+ "kind": "javascript-module",
7831
+ "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.template.ts",
7832
+ "declarations": [
7833
+ {
7834
+ "kind": "variable",
7835
+ "name": "TemplateConditionGroupTemplate",
7836
+ "default": "html<TemplateConditionGroup>`\n ${when(\n (x) => !x.isFirst,\n html`\n <div class=\"join-toggle-row\">\n <div class=\"join-toggle\">\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'AND'])}\"\n @click=${(x) => (x.joinOperator = 'AND')}\n >\n AND\n </span>\n <span\n class=\"join-text${(x) => classNames(['active', x.joinOperator === 'OR'])}\"\n @click=${(x) => (x.joinOperator = 'OR')}\n >\n OR\n </span>\n </div>\n </div>\n `,\n )}\n <div class=\"condition-group-row\">\n <div class=\"condition-group-box\">\n ${repeat(\n (x) => x.groupChildren,\n html<ConditionNode, TemplateConditionGroup>`\n ${when(\n (x) => isGroup(x),\n html<ConditionNode>`\n <template-condition-group\n :fields=${(x, c) => c.parent.fields}\n :parameters=${(x, c) => c.parent.parameters}\n :node=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></template-condition-group>\n `,\n )}\n ${when(\n (x) => !isGroup(x),\n html<ConditionNode>`\n <template-condition-builder\n :fields=${(x, c) => c.parent.fields}\n :parameters=${(x, c) => c.parent.parameters}\n :condition=${(x) => x}\n :isFirst=${(x, c) => c.index === 0}\n @edit=${(x, c) => c.parent.editChild(eventDetail(c))}\n @delete=${(x, c) => c.parent.deleteChild(eventDetail(c))}\n ></template-condition-builder>\n `,\n )}\n `,\n { positioning: true },\n )}\n\n <div class=\"content-row\">\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newCondition()}>\n + Condition\n </rapid-button>\n <rapid-button appearance=\"lightweight\" @click=${(x) => x.newGroup()}>+ Group</rapid-button>\n <rapid-button appearance=\"icon\" class=\"delete-group\" @click=${(x) => x.deleteSelf()}>\n <rapid-icon variant=\"regular\" name=\"trash-alt\" size=\"lg\" part=\"icon\"></rapid-icon>\n </rapid-button>\n </div>\n </div>\n </div>\n`"
7837
+ }
7838
+ ],
7839
+ "exports": [
7840
+ {
7841
+ "kind": "js",
7842
+ "name": "TemplateConditionGroupTemplate",
7843
+ "declaration": {
7844
+ "name": "TemplateConditionGroupTemplate",
7845
+ "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.template.ts"
7846
+ }
7847
+ }
7848
+ ]
7849
+ },
7850
+ {
7851
+ "kind": "javascript-module",
7852
+ "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.ts",
7853
+ "declarations": [
7854
+ {
7855
+ "kind": "class",
7856
+ "description": "Parenthesized group of conditions/nested groups for notification template\ncriteria - see rule-condition-group for the rationale. Also forwards\n:parameters down to nested template-condition-builder rows so parameter\nbinding (USER_ENTRY) keeps working inside a group.",
7857
+ "name": "TemplateConditionGroup",
7858
+ "members": [
7859
+ {
7860
+ "kind": "field",
7861
+ "name": "node",
7862
+ "type": {
7863
+ "text": "ConditionGroupEntity"
7864
+ }
7865
+ },
7866
+ {
7867
+ "kind": "field",
7868
+ "name": "fields",
7869
+ "type": {
7870
+ "text": "Field[]"
7871
+ },
7872
+ "default": "[]"
7873
+ },
7874
+ {
7875
+ "kind": "field",
7876
+ "name": "parameters",
7877
+ "type": {
7878
+ "text": "Array<ParameterBuilderEntity>"
7879
+ },
7880
+ "default": "[]"
7881
+ },
7882
+ {
7883
+ "kind": "field",
7884
+ "name": "isFirst",
7885
+ "type": {
7886
+ "text": "boolean"
7887
+ },
7888
+ "default": "false"
7889
+ },
7890
+ {
7891
+ "kind": "field",
7892
+ "name": "joinOperator",
7893
+ "type": {
7894
+ "text": "string"
7895
+ }
7896
+ },
7897
+ {
7898
+ "kind": "field",
7899
+ "name": "groupChildren",
7900
+ "type": {
7901
+ "text": "ConditionNode[]"
7902
+ },
7903
+ "default": "[]"
7904
+ },
7905
+ {
7906
+ "kind": "method",
7907
+ "name": "nodeChanged"
7908
+ },
7909
+ {
7910
+ "kind": "method",
7911
+ "name": "joinOperatorChanged"
7912
+ },
7913
+ {
7914
+ "kind": "method",
7915
+ "name": "newCondition"
7916
+ },
7917
+ {
7918
+ "kind": "method",
7919
+ "name": "newGroup"
7920
+ },
7921
+ {
7922
+ "kind": "method",
7923
+ "name": "editChild",
7924
+ "parameters": [
7925
+ {
7926
+ "name": "_editedChild",
7927
+ "type": {
7928
+ "text": "ConditionNode"
7929
+ }
7930
+ }
7931
+ ]
7932
+ },
7933
+ {
7934
+ "kind": "method",
7935
+ "name": "deleteChild",
7936
+ "parameters": [
7937
+ {
7938
+ "name": "deletedChild",
7939
+ "type": {
7940
+ "text": "ConditionNode"
7941
+ }
7942
+ }
7943
+ ]
7944
+ },
7945
+ {
7946
+ "kind": "method",
7947
+ "name": "deleteSelf"
7948
+ }
7949
+ ],
7950
+ "events": [
7951
+ {
7952
+ "description": "Fired when this whole group should be removed",
7953
+ "name": "delete"
7954
+ },
7955
+ {
7956
+ "description": "Fired when anything inside this group changes",
7957
+ "name": "edit"
7958
+ }
7959
+ ],
7960
+ "superclass": {
7961
+ "name": "GenesisElement",
7962
+ "package": "@genesislcap/web-core"
7963
+ },
7964
+ "tagName": "template-condition-group",
7965
+ "customElement": true
7966
+ }
7967
+ ],
7968
+ "exports": [
7969
+ {
7970
+ "kind": "js",
7971
+ "name": "TemplateConditionGroup",
7972
+ "declaration": {
7973
+ "name": "TemplateConditionGroup",
7974
+ "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.ts"
7975
+ }
7976
+ },
7977
+ {
7978
+ "kind": "custom-element-definition",
7979
+ "name": "template-condition-group",
7980
+ "declaration": {
7981
+ "name": "TemplateConditionGroup",
7982
+ "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.ts"
7983
+ }
7984
+ }
7985
+ ]
7986
7986
  }
7987
7987
  ]
7988
7988
  }
@@ -115,23 +115,23 @@ export declare const InboxSubscription: React.ForwardRefExoticComponent<
115
115
  >;
116
116
  export type InboxSubscriptionRef = InboxSubscriptionWC;
117
117
 
118
- export declare const NotifyAuditManagement: React.ForwardRefExoticComponent<
118
+ export declare const RouteManagement: React.ForwardRefExoticComponent<
119
119
  React.PropsWithChildren<
120
- Omit<PublicOf<NotifyAuditManagementWC>, 'children' | 'style'> &
120
+ Omit<PublicOf<RouteManagementWC>, 'children' | 'style'> &
121
121
  HTMLWCProps & {
122
122
  }
123
- > & React.RefAttributes<NotifyAuditManagementWC>
123
+ > & React.RefAttributes<RouteManagementWC>
124
124
  >;
125
- export type NotifyAuditManagementRef = NotifyAuditManagementWC;
125
+ export type RouteManagementRef = RouteManagementWC;
126
126
 
127
- export declare const RouteManagement: React.ForwardRefExoticComponent<
127
+ export declare const NotifyAuditManagement: React.ForwardRefExoticComponent<
128
128
  React.PropsWithChildren<
129
- Omit<PublicOf<RouteManagementWC>, 'children' | 'style'> &
129
+ Omit<PublicOf<NotifyAuditManagementWC>, 'children' | 'style'> &
130
130
  HTMLWCProps & {
131
131
  }
132
- > & React.RefAttributes<RouteManagementWC>
132
+ > & React.RefAttributes<NotifyAuditManagementWC>
133
133
  >;
134
- export type RouteManagementRef = RouteManagementWC;
134
+ export type NotifyAuditManagementRef = NotifyAuditManagementWC;
135
135
 
136
136
  export declare const RuleManagement: React.ForwardRefExoticComponent<
137
137
  React.PropsWithChildren<
@@ -268,17 +268,6 @@ export declare const ParameterBuilder: React.ForwardRefExoticComponent<
268
268
  >;
269
269
  export type ParameterBuilderRef = ParameterBuilderWC;
270
270
 
271
- export declare const TemplateConditionGroup: React.ForwardRefExoticComponent<
272
- React.PropsWithChildren<
273
- Omit<PublicOf<TemplateConditionGroupWC>, 'children' | 'style'> &
274
- HTMLWCProps & {
275
- onDelete?: (event: CustomEvent<unknown>) => void;
276
- onEdit?: (event: CustomEvent<unknown>) => void;
277
- }
278
- > & React.RefAttributes<TemplateConditionGroupWC>
279
- >;
280
- export type TemplateConditionGroupRef = TemplateConditionGroupWC;
281
-
282
271
  export declare const TemplateConditionBuilder: React.ForwardRefExoticComponent<
283
272
  React.PropsWithChildren<
284
273
  Omit<PublicOf<TemplateConditionBuilderWC>, 'children' | 'style'> &
@@ -290,4 +279,15 @@ export declare const TemplateConditionBuilder: React.ForwardRefExoticComponent<
290
279
  >;
291
280
  export type TemplateConditionBuilderRef = TemplateConditionBuilderWC;
292
281
 
282
+ export declare const TemplateConditionGroup: React.ForwardRefExoticComponent<
283
+ React.PropsWithChildren<
284
+ Omit<PublicOf<TemplateConditionGroupWC>, 'children' | 'style'> &
285
+ HTMLWCProps & {
286
+ onDelete?: (event: CustomEvent<unknown>) => void;
287
+ onEdit?: (event: CustomEvent<unknown>) => void;
288
+ }
289
+ > & React.RefAttributes<TemplateConditionGroupWC>
290
+ >;
291
+ export type TemplateConditionGroupRef = TemplateConditionGroupWC;
292
+
293
293
  export {};
package/dist/react.cjs CHANGED
@@ -87,14 +87,14 @@ const InboxSubscription = React.forwardRef(function InboxSubscription(props, ref
87
87
  return React.createElement(customElements.getName(InboxSubscriptionWC) ?? 'inbox-subscription', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
88
88
  });
89
89
 
90
- const NotifyAuditManagement = React.forwardRef(function NotifyAuditManagement(props, ref) {
90
+ const RouteManagement = React.forwardRef(function RouteManagement(props, ref) {
91
91
  const { children, ...rest } = props;
92
- return React.createElement(customElements.getName(NotifyAuditManagementWC) ?? 'notify-audit-management', { ...rest, ref }, children);
92
+ return React.createElement(customElements.getName(RouteManagementWC) ?? 'route-management', { ...rest, ref }, children);
93
93
  });
94
94
 
95
- const RouteManagement = React.forwardRef(function RouteManagement(props, ref) {
95
+ const NotifyAuditManagement = React.forwardRef(function NotifyAuditManagement(props, ref) {
96
96
  const { children, ...rest } = props;
97
- return React.createElement(customElements.getName(RouteManagementWC) ?? 'route-management', { ...rest, ref }, children);
97
+ return React.createElement(customElements.getName(NotifyAuditManagementWC) ?? 'notify-audit-management', { ...rest, ref }, children);
98
98
  });
99
99
 
100
100
  const RuleManagement = React.forwardRef(function RuleManagement(props, ref) {
@@ -254,7 +254,7 @@ const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref)
254
254
  return React.createElement(customElements.getName(ParameterBuilderWC) ?? 'parameter-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
255
255
  });
256
256
 
257
- const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(props, ref) {
257
+ const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
258
258
  const { onDelete, onEdit, children, ...rest } = props;
259
259
  const _innerRef = React.useRef(null);
260
260
  const _onDeleteRef = React.useRef(onDelete);
@@ -273,10 +273,10 @@ const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(
273
273
  el.removeEventListener('edit', _onEditFn);
274
274
  };
275
275
  }, []);
276
- return React.createElement(customElements.getName(TemplateConditionGroupWC) ?? 'template-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
276
+ return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
277
277
  });
278
278
 
279
- const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
279
+ const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(props, ref) {
280
280
  const { onDelete, onEdit, children, ...rest } = props;
281
281
  const _innerRef = React.useRef(null);
282
282
  const _onDeleteRef = React.useRef(onDelete);
@@ -295,7 +295,7 @@ const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuil
295
295
  el.removeEventListener('edit', _onEditFn);
296
296
  };
297
297
  }, []);
298
- return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
298
+ return React.createElement(customElements.getName(TemplateConditionGroupWC) ?? 'template-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
299
299
  });
300
300
 
301
301
  module.exports = {
@@ -305,8 +305,8 @@ module.exports = {
305
305
  FoundationInboxCounter,
306
306
  FoundationInboxFlyout,
307
307
  InboxSubscription,
308
- NotifyAuditManagement,
309
308
  RouteManagement,
309
+ NotifyAuditManagement,
310
310
  RuleManagement,
311
311
  TemplateManagement,
312
312
  RuleParameter,
@@ -321,6 +321,6 @@ module.exports = {
321
321
  RuleConditionBuilder,
322
322
  RuleConditionGroup,
323
323
  ParameterBuilder,
324
- TemplateConditionGroup,
325
324
  TemplateConditionBuilder,
325
+ TemplateConditionGroup,
326
326
  };
package/dist/react.mjs CHANGED
@@ -85,14 +85,14 @@ export const InboxSubscription = React.forwardRef(function InboxSubscription(pro
85
85
  return React.createElement(customElements.getName(InboxSubscriptionWC) ?? 'inbox-subscription', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
86
86
  });
87
87
 
88
- export const NotifyAuditManagement = React.forwardRef(function NotifyAuditManagement(props, ref) {
88
+ export const RouteManagement = React.forwardRef(function RouteManagement(props, ref) {
89
89
  const { children, ...rest } = props;
90
- return React.createElement(customElements.getName(NotifyAuditManagementWC) ?? 'notify-audit-management', { ...rest, ref }, children);
90
+ return React.createElement(customElements.getName(RouteManagementWC) ?? 'route-management', { ...rest, ref }, children);
91
91
  });
92
92
 
93
- export const RouteManagement = React.forwardRef(function RouteManagement(props, ref) {
93
+ export const NotifyAuditManagement = React.forwardRef(function NotifyAuditManagement(props, ref) {
94
94
  const { children, ...rest } = props;
95
- return React.createElement(customElements.getName(RouteManagementWC) ?? 'route-management', { ...rest, ref }, children);
95
+ return React.createElement(customElements.getName(NotifyAuditManagementWC) ?? 'notify-audit-management', { ...rest, ref }, children);
96
96
  });
97
97
 
98
98
  export const RuleManagement = React.forwardRef(function RuleManagement(props, ref) {
@@ -252,7 +252,7 @@ export const ParameterBuilder = React.forwardRef(function ParameterBuilder(props
252
252
  return React.createElement(customElements.getName(ParameterBuilderWC) ?? 'parameter-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
253
253
  });
254
254
 
255
- export const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(props, ref) {
255
+ export const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
256
256
  const { onDelete, onEdit, children, ...rest } = props;
257
257
  const _innerRef = React.useRef(null);
258
258
  const _onDeleteRef = React.useRef(onDelete);
@@ -271,10 +271,10 @@ export const TemplateConditionGroup = React.forwardRef(function TemplateConditio
271
271
  el.removeEventListener('edit', _onEditFn);
272
272
  };
273
273
  }, []);
274
- return React.createElement(customElements.getName(TemplateConditionGroupWC) ?? 'template-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
274
+ return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
275
275
  });
276
276
 
277
- export const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
277
+ export const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(props, ref) {
278
278
  const { onDelete, onEdit, children, ...rest } = props;
279
279
  const _innerRef = React.useRef(null);
280
280
  const _onDeleteRef = React.useRef(onDelete);
@@ -293,5 +293,5 @@ export const TemplateConditionBuilder = React.forwardRef(function TemplateCondit
293
293
  el.removeEventListener('edit', _onEditFn);
294
294
  };
295
295
  }, []);
296
- return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
296
+ return React.createElement(customElements.getName(TemplateConditionGroupWC) ?? 'template-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
297
297
  });
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.3.2-FUI-2571-formatters.1",
4
+ "version": "15.3.2-FUI-2591.1",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "workspaces": [
7
7
  "client"
@@ -83,30 +83,30 @@
83
83
  "@commitlint/format": "^19.0.3",
84
84
  "@genesiscommunitysuccess/cep-fast-plugin": "5.0.3",
85
85
  "@genesiscommunitysuccess/custom-elements-lsp": "5.0.3",
86
- "@genesislcap/design-system-configurator": "15.3.2-FUI-2571-formatters.1",
87
- "@genesislcap/eslint-config": "15.3.2-FUI-2571-formatters.1",
88
- "@genesislcap/eslint-stylelint-builder": "15.3.2-FUI-2571-formatters.1",
89
- "@genesislcap/foundation-testing": "15.3.2-FUI-2571-formatters.1",
90
- "@genesislcap/genx": "15.3.2-FUI-2571-formatters.1",
91
- "@genesislcap/prettier-config": "15.3.2-FUI-2571-formatters.1",
92
- "@genesislcap/stylelint-config": "15.3.2-FUI-2571-formatters.1",
93
- "@genesislcap/vite-builder": "15.3.2-FUI-2571-formatters.1",
94
- "@genesislcap/webpack-builder": "15.3.2-FUI-2571-formatters.1",
86
+ "@genesislcap/design-system-configurator": "15.3.2-FUI-2591.1",
87
+ "@genesislcap/eslint-config": "15.3.2-FUI-2591.1",
88
+ "@genesislcap/eslint-stylelint-builder": "15.3.2-FUI-2591.1",
89
+ "@genesislcap/foundation-testing": "15.3.2-FUI-2591.1",
90
+ "@genesislcap/genx": "15.3.2-FUI-2591.1",
91
+ "@genesislcap/prettier-config": "15.3.2-FUI-2591.1",
92
+ "@genesislcap/stylelint-config": "15.3.2-FUI-2591.1",
93
+ "@genesislcap/vite-builder": "15.3.2-FUI-2591.1",
94
+ "@genesislcap/webpack-builder": "15.3.2-FUI-2591.1",
95
95
  "dayjs": "^1.11.7"
96
96
  },
97
97
  "dependencies": {
98
- "@genesislcap/foundation-comms": "15.3.2-FUI-2571-formatters.1",
99
- "@genesislcap/foundation-criteria": "15.3.2-FUI-2571-formatters.1",
100
- "@genesislcap/foundation-entity-management": "15.3.2-FUI-2571-formatters.1",
101
- "@genesislcap/foundation-forms": "15.3.2-FUI-2571-formatters.1",
102
- "@genesislcap/foundation-layout": "15.3.2-FUI-2571-formatters.1",
103
- "@genesislcap/foundation-logger": "15.3.2-FUI-2571-formatters.1",
104
- "@genesislcap/foundation-notifications": "15.3.2-FUI-2571-formatters.1",
105
- "@genesislcap/foundation-ui": "15.3.2-FUI-2571-formatters.1",
106
- "@genesislcap/foundation-utils": "15.3.2-FUI-2571-formatters.1",
107
- "@genesislcap/rapid-design-system": "15.3.2-FUI-2571-formatters.1",
108
- "@genesislcap/rapid-grid-pro": "15.3.2-FUI-2571-formatters.1",
109
- "@genesislcap/web-core": "15.3.2-FUI-2571-formatters.1",
98
+ "@genesislcap/foundation-comms": "15.3.2-FUI-2591.1",
99
+ "@genesislcap/foundation-criteria": "15.3.2-FUI-2591.1",
100
+ "@genesislcap/foundation-entity-management": "15.3.2-FUI-2591.1",
101
+ "@genesislcap/foundation-forms": "15.3.2-FUI-2591.1",
102
+ "@genesislcap/foundation-layout": "15.3.2-FUI-2591.1",
103
+ "@genesislcap/foundation-logger": "15.3.2-FUI-2591.1",
104
+ "@genesislcap/foundation-notifications": "15.3.2-FUI-2591.1",
105
+ "@genesislcap/foundation-ui": "15.3.2-FUI-2591.1",
106
+ "@genesislcap/foundation-utils": "15.3.2-FUI-2591.1",
107
+ "@genesislcap/rapid-design-system": "15.3.2-FUI-2591.1",
108
+ "@genesislcap/rapid-grid-pro": "15.3.2-FUI-2591.1",
109
+ "@genesislcap/web-core": "15.3.2-FUI-2591.1",
110
110
  "lodash.debounce": "^4.0.8",
111
111
  "rxjs": "^7.5.4"
112
112
  },
@@ -114,5 +114,5 @@
114
114
  "access": "public"
115
115
  },
116
116
  "customElements": "dist/custom-elements.json",
117
- "gitHead": "9ad72f5f70334fc084dd5042f538a691a463effd"
117
+ "gitHead": "36595b8ce13d31fda4bb2638948c78931133159a"
118
118
  }