@genesislcap/pbc-notify-ui 15.23.1 → 15.23.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.
@@ -479,27 +479,6 @@
479
479
  }
480
480
  ]
481
481
  },
482
- {
483
- "kind": "javascript-module",
484
- "path": "src/styles/scrollbar.styles.ts",
485
- "declarations": [
486
- {
487
- "kind": "variable",
488
- "name": "scrollbarStyles",
489
- "default": "css`\n ::-webkit-scrollbar {\n width: calc((var(--base-height-multiplier) + var(--design-unit)) * 1px);\n }\n\n ::-webkit-scrollbar-track {\n background: var(--neutral-layer-1);\n }\n\n ::-webkit-scrollbar-thumb {\n background: var(--neutral-fill-rest);\n }\n`"
490
- }
491
- ],
492
- "exports": [
493
- {
494
- "kind": "js",
495
- "name": "scrollbarStyles",
496
- "declaration": {
497
- "name": "scrollbarStyles",
498
- "module": "src/styles/scrollbar.styles.ts"
499
- }
500
- }
501
- ]
502
- },
503
482
  {
504
483
  "kind": "javascript-module",
505
484
  "path": "src/utils/eventDetail.ts",
@@ -821,6 +800,27 @@
821
800
  }
822
801
  ]
823
802
  },
803
+ {
804
+ "kind": "javascript-module",
805
+ "path": "src/styles/scrollbar.styles.ts",
806
+ "declarations": [
807
+ {
808
+ "kind": "variable",
809
+ "name": "scrollbarStyles",
810
+ "default": "css`\n ::-webkit-scrollbar {\n width: calc((var(--base-height-multiplier) + var(--design-unit)) * 1px);\n }\n\n ::-webkit-scrollbar-track {\n background: var(--neutral-layer-1);\n }\n\n ::-webkit-scrollbar-thumb {\n background: var(--neutral-fill-rest);\n }\n`"
811
+ }
812
+ ],
813
+ "exports": [
814
+ {
815
+ "kind": "js",
816
+ "name": "scrollbarStyles",
817
+ "declaration": {
818
+ "name": "scrollbarStyles",
819
+ "module": "src/styles/scrollbar.styles.ts"
820
+ }
821
+ }
822
+ ]
823
+ },
824
824
  {
825
825
  "kind": "javascript-module",
826
826
  "path": "src/components/foundation-inbox/inbox.styles.ts",
@@ -8779,220 +8779,6 @@
8779
8779
  }
8780
8780
  ]
8781
8781
  },
8782
- {
8783
- "kind": "javascript-module",
8784
- "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.styles.ts",
8785
- "declarations": [
8786
- {
8787
- "kind": "variable",
8788
- "name": "ParameterBuilderStyles",
8789
- "default": "css`\n .parameter-builder {\n display: flex;\n gap: calc(var(--design-unit) * 2px);\n margin-bottom: calc(var(--design-unit) * 2px);\n }\n\n rapid-button {\n margin: 0;\n }\n\n .delete {\n margin: 0;\n display: flex;\n justify-content: center;\n height: calc(var(--design-unit) * 9px);\n }\n\n .delete:hover {\n background-color: color-mix(in srgb, var(--neutral-foreground-rest), transparent 89%);\n }\n\n rapid-text-field {\n width: 100%;\n margin-bottom: 0;\n }\n\n rapid-text-field::part(root) {\n height: calc(var(--design-unit) * 9px);\n }\n\n rapid-select {\n min-width: auto;\n }\n\n rapid-select.param-type::part(control) {\n width: 115px;\n }\n\n rapid-select.param-source-type::part(control) {\n width: 160px;\n }\n\n rapid-select.param-source::part(control) {\n width: ${PARAM_SOURCE_WIDTH}px;\n }\n\n rapid-text-field.param-source::part(root) {\n width: calc(${PARAM_SOURCE_WIDTH}px + 2px);\n }\n\n rapid-select::part(listbox) {\n max-height: 160px;\n }\n`"
8790
- }
8791
- ],
8792
- "exports": [
8793
- {
8794
- "kind": "js",
8795
- "name": "ParameterBuilderStyles",
8796
- "declaration": {
8797
- "name": "ParameterBuilderStyles",
8798
- "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.styles.ts"
8799
- }
8800
- }
8801
- ]
8802
- },
8803
- {
8804
- "kind": "javascript-module",
8805
- "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.template.ts",
8806
- "declarations": [
8807
- {
8808
- "kind": "variable",
8809
- "name": "ParameterBuilderTemplate",
8810
- "default": "html<ParameterBuilder>`\n <div class=\"parameter-builder\">\n <rapid-text-field\n id=\"param-name\"\n placeholder=\"Name\"\n :value=${sync((x) => x.name)}\n ></rapid-text-field>\n\n <rapid-text-field\n id=\"param-label\"\n placeholder=\"Label\"\n :value=${sync((x) => x.label)}\n ></rapid-text-field>\n\n <rapid-select\n id=\"param-source-type\"\n :value=${sync((x) => x.sourceType)}\n class=\"param-source-type\"\n >\n ${repeat(\n (x) => ALL_PARAM_SOURCE_TYPES,\n html`\n <rapid-option value=${(x) => x}>${(x) => x}</rapid-option>\n `,\n )}\n </rapid-select>\n\n ${when(\n (x) => x.sourceType === PARAM_SOURCE_TYPE_USER_TEXT,\n html<ParameterBuilder>`\n <rapid-text-field class=\"param-source\" disabled></rapid-text-field>\n `,\n )}\n ${when(\n (x) => x.sourceType === PARAM_SOURCE_TYPE_REQ_REP,\n html<ParameterBuilder>`\n <rapid-select\n ${ref('sourceSelect')}\n id=\"param-source\"\n :value=${sync((x) => x.sourceSelected)}\n class=\"param-source\"\n ?disabled=${(x) => x.sourceType !== PARAM_SOURCE_TYPE_REQ_REP}\n >\n ${repeat(\n (x) => x.reqRepItems,\n html`\n <rapid-option value=${(x) => x}>${(x) => x}</rapid-option>\n `,\n )}\n </rapid-select>\n `,\n )}\n ${when(\n (x) => x.sourceType === PARAM_SOURCE_TYPE_DEFINED_GROUP,\n html<ParameterBuilder>`\n <rapid-text-field\n ${ref('sourceTextField')}\n class=\"param-source\"\n placeholder=\"item1,item2,item3\"\n :value=${sync((x) => x.sourceTyped)}\n ></rapid-text-field>\n `,\n )}\n\n <rapid-select id=\"param-type\" :value=${sync((x) => x.type)} class=\"param-type\">\n ${repeat(\n (x) => ALL_PARAM_TYPES,\n html`\n <rapid-option value=${(x) => x}>${(x) => x}</rapid-option>\n `,\n )}\n </rapid-select>\n\n <rapid-button appearance=\"icon\" class=\"delete\" @click=${(x) => x.deleteParameter()}>\n <rapid-icon\n style=\"opacity: 0.5\"\n variant=\"regular\"\n name=\"trash-alt\"\n size=\"lg\"\n part=\"icon\"\n ></rapid-icon>\n </rapid-button>\n </div>\n`"
8811
- }
8812
- ],
8813
- "exports": [
8814
- {
8815
- "kind": "js",
8816
- "name": "ParameterBuilderTemplate",
8817
- "declaration": {
8818
- "name": "ParameterBuilderTemplate",
8819
- "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.template.ts"
8820
- }
8821
- }
8822
- ]
8823
- },
8824
- {
8825
- "kind": "javascript-module",
8826
- "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts",
8827
- "declarations": [
8828
- {
8829
- "kind": "class",
8830
- "description": "Parameter builder for notification templates.",
8831
- "name": "ParameterBuilder",
8832
- "members": [
8833
- {
8834
- "kind": "field",
8835
- "name": "parameter",
8836
- "type": {
8837
- "text": "ParameterBuilderEntity"
8838
- }
8839
- },
8840
- {
8841
- "kind": "field",
8842
- "name": "name",
8843
- "type": {
8844
- "text": "string"
8845
- }
8846
- },
8847
- {
8848
- "kind": "field",
8849
- "name": "label",
8850
- "type": {
8851
- "text": "string"
8852
- }
8853
- },
8854
- {
8855
- "kind": "field",
8856
- "name": "type",
8857
- "type": {
8858
- "text": "string"
8859
- }
8860
- },
8861
- {
8862
- "kind": "field",
8863
- "name": "sourceType",
8864
- "type": {
8865
- "text": "string"
8866
- }
8867
- },
8868
- {
8869
- "kind": "field",
8870
- "name": "sourceSelected",
8871
- "type": {
8872
- "text": "string"
8873
- }
8874
- },
8875
- {
8876
- "kind": "field",
8877
- "name": "sourceTyped",
8878
- "type": {
8879
- "text": "string"
8880
- }
8881
- },
8882
- {
8883
- "kind": "field",
8884
- "name": "sourceTextField",
8885
- "type": {
8886
- "text": "TextField"
8887
- }
8888
- },
8889
- {
8890
- "kind": "field",
8891
- "name": "sourceSelect",
8892
- "type": {
8893
- "text": "Select"
8894
- }
8895
- },
8896
- {
8897
- "kind": "field",
8898
- "name": "reqRepItems",
8899
- "type": {
8900
- "text": "array"
8901
- },
8902
- "default": "['REQUEST_1', 'REQUEST_2', 'REQUEST_3']"
8903
- },
8904
- {
8905
- "kind": "method",
8906
- "name": "deleteParameter"
8907
- },
8908
- {
8909
- "kind": "method",
8910
- "name": "parameterChanged"
8911
- },
8912
- {
8913
- "kind": "method",
8914
- "name": "nameChanged"
8915
- },
8916
- {
8917
- "kind": "method",
8918
- "name": "labelChanged"
8919
- },
8920
- {
8921
- "kind": "method",
8922
- "name": "typeChanged"
8923
- },
8924
- {
8925
- "kind": "method",
8926
- "name": "sourceTypeChanged"
8927
- },
8928
- {
8929
- "kind": "method",
8930
- "name": "sourceSelectedChanged"
8931
- },
8932
- {
8933
- "kind": "method",
8934
- "name": "sourceTypedChanged"
8935
- },
8936
- {
8937
- "kind": "method",
8938
- "name": "genericChanged",
8939
- "privacy": "private",
8940
- "parameters": [
8941
- {
8942
- "name": "parameterAttribute"
8943
- },
8944
- {
8945
- "name": "value"
8946
- }
8947
- ]
8948
- }
8949
- ],
8950
- "events": [
8951
- {
8952
- "description": "Fired when a parameter is deleted. detail: `ParameterBuilderEntity`",
8953
- "name": "delete"
8954
- },
8955
- {
8956
- "description": "Fired when a parameter is edited. detail: `ParameterBuilderEntity`",
8957
- "name": "edit"
8958
- }
8959
- ],
8960
- "attributes": [
8961
- {
8962
- "name": "parameter",
8963
- "type": {
8964
- "text": "ParameterBuilderEntity"
8965
- },
8966
- "fieldName": "parameter"
8967
- }
8968
- ],
8969
- "superclass": {
8970
- "name": "GenesisElement",
8971
- "package": "@genesislcap/web-core"
8972
- },
8973
- "tagName": "parameter-builder",
8974
- "customElement": true
8975
- }
8976
- ],
8977
- "exports": [
8978
- {
8979
- "kind": "js",
8980
- "name": "ParameterBuilder",
8981
- "declaration": {
8982
- "name": "ParameterBuilder",
8983
- "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts"
8984
- }
8985
- },
8986
- {
8987
- "kind": "custom-element-definition",
8988
- "name": "parameter-builder",
8989
- "declaration": {
8990
- "name": "ParameterBuilder",
8991
- "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts"
8992
- }
8993
- }
8994
- ]
8995
- },
8996
8782
  {
8997
8783
  "kind": "javascript-module",
8998
8784
  "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-builder/template-condition-builder.template.ts",
@@ -9260,6 +9046,220 @@
9260
9046
  }
9261
9047
  ]
9262
9048
  },
9049
+ {
9050
+ "kind": "javascript-module",
9051
+ "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.styles.ts",
9052
+ "declarations": [
9053
+ {
9054
+ "kind": "variable",
9055
+ "name": "ParameterBuilderStyles",
9056
+ "default": "css`\n .parameter-builder {\n display: flex;\n gap: calc(var(--design-unit) * 2px);\n margin-bottom: calc(var(--design-unit) * 2px);\n }\n\n rapid-button {\n margin: 0;\n }\n\n .delete {\n margin: 0;\n display: flex;\n justify-content: center;\n height: calc(var(--design-unit) * 9px);\n }\n\n .delete:hover {\n background-color: color-mix(in srgb, var(--neutral-foreground-rest), transparent 89%);\n }\n\n rapid-text-field {\n width: 100%;\n margin-bottom: 0;\n }\n\n rapid-text-field::part(root) {\n height: calc(var(--design-unit) * 9px);\n }\n\n rapid-select {\n min-width: auto;\n }\n\n rapid-select.param-type::part(control) {\n width: 115px;\n }\n\n rapid-select.param-source-type::part(control) {\n width: 160px;\n }\n\n rapid-select.param-source::part(control) {\n width: ${PARAM_SOURCE_WIDTH}px;\n }\n\n rapid-text-field.param-source::part(root) {\n width: calc(${PARAM_SOURCE_WIDTH}px + 2px);\n }\n\n rapid-select::part(listbox) {\n max-height: 160px;\n }\n`"
9057
+ }
9058
+ ],
9059
+ "exports": [
9060
+ {
9061
+ "kind": "js",
9062
+ "name": "ParameterBuilderStyles",
9063
+ "declaration": {
9064
+ "name": "ParameterBuilderStyles",
9065
+ "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.styles.ts"
9066
+ }
9067
+ }
9068
+ ]
9069
+ },
9070
+ {
9071
+ "kind": "javascript-module",
9072
+ "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.template.ts",
9073
+ "declarations": [
9074
+ {
9075
+ "kind": "variable",
9076
+ "name": "ParameterBuilderTemplate",
9077
+ "default": "html<ParameterBuilder>`\n <div class=\"parameter-builder\">\n <rapid-text-field\n id=\"param-name\"\n placeholder=\"Name\"\n :value=${sync((x) => x.name)}\n ></rapid-text-field>\n\n <rapid-text-field\n id=\"param-label\"\n placeholder=\"Label\"\n :value=${sync((x) => x.label)}\n ></rapid-text-field>\n\n <rapid-select\n id=\"param-source-type\"\n :value=${sync((x) => x.sourceType)}\n class=\"param-source-type\"\n >\n ${repeat(\n (x) => ALL_PARAM_SOURCE_TYPES,\n html`\n <rapid-option value=${(x) => x}>${(x) => x}</rapid-option>\n `,\n )}\n </rapid-select>\n\n ${when(\n (x) => x.sourceType === PARAM_SOURCE_TYPE_USER_TEXT,\n html<ParameterBuilder>`\n <rapid-text-field class=\"param-source\" disabled></rapid-text-field>\n `,\n )}\n ${when(\n (x) => x.sourceType === PARAM_SOURCE_TYPE_REQ_REP,\n html<ParameterBuilder>`\n <rapid-select\n ${ref('sourceSelect')}\n id=\"param-source\"\n :value=${sync((x) => x.sourceSelected)}\n class=\"param-source\"\n ?disabled=${(x) => x.sourceType !== PARAM_SOURCE_TYPE_REQ_REP}\n >\n ${repeat(\n (x) => x.reqRepItems,\n html`\n <rapid-option value=${(x) => x}>${(x) => x}</rapid-option>\n `,\n )}\n </rapid-select>\n `,\n )}\n ${when(\n (x) => x.sourceType === PARAM_SOURCE_TYPE_DEFINED_GROUP,\n html<ParameterBuilder>`\n <rapid-text-field\n ${ref('sourceTextField')}\n class=\"param-source\"\n placeholder=\"item1,item2,item3\"\n :value=${sync((x) => x.sourceTyped)}\n ></rapid-text-field>\n `,\n )}\n\n <rapid-select id=\"param-type\" :value=${sync((x) => x.type)} class=\"param-type\">\n ${repeat(\n (x) => ALL_PARAM_TYPES,\n html`\n <rapid-option value=${(x) => x}>${(x) => x}</rapid-option>\n `,\n )}\n </rapid-select>\n\n <rapid-button appearance=\"icon\" class=\"delete\" @click=${(x) => x.deleteParameter()}>\n <rapid-icon\n style=\"opacity: 0.5\"\n variant=\"regular\"\n name=\"trash-alt\"\n size=\"lg\"\n part=\"icon\"\n ></rapid-icon>\n </rapid-button>\n </div>\n`"
9078
+ }
9079
+ ],
9080
+ "exports": [
9081
+ {
9082
+ "kind": "js",
9083
+ "name": "ParameterBuilderTemplate",
9084
+ "declaration": {
9085
+ "name": "ParameterBuilderTemplate",
9086
+ "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.template.ts"
9087
+ }
9088
+ }
9089
+ ]
9090
+ },
9091
+ {
9092
+ "kind": "javascript-module",
9093
+ "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts",
9094
+ "declarations": [
9095
+ {
9096
+ "kind": "class",
9097
+ "description": "Parameter builder for notification templates.",
9098
+ "name": "ParameterBuilder",
9099
+ "members": [
9100
+ {
9101
+ "kind": "field",
9102
+ "name": "parameter",
9103
+ "type": {
9104
+ "text": "ParameterBuilderEntity"
9105
+ }
9106
+ },
9107
+ {
9108
+ "kind": "field",
9109
+ "name": "name",
9110
+ "type": {
9111
+ "text": "string"
9112
+ }
9113
+ },
9114
+ {
9115
+ "kind": "field",
9116
+ "name": "label",
9117
+ "type": {
9118
+ "text": "string"
9119
+ }
9120
+ },
9121
+ {
9122
+ "kind": "field",
9123
+ "name": "type",
9124
+ "type": {
9125
+ "text": "string"
9126
+ }
9127
+ },
9128
+ {
9129
+ "kind": "field",
9130
+ "name": "sourceType",
9131
+ "type": {
9132
+ "text": "string"
9133
+ }
9134
+ },
9135
+ {
9136
+ "kind": "field",
9137
+ "name": "sourceSelected",
9138
+ "type": {
9139
+ "text": "string"
9140
+ }
9141
+ },
9142
+ {
9143
+ "kind": "field",
9144
+ "name": "sourceTyped",
9145
+ "type": {
9146
+ "text": "string"
9147
+ }
9148
+ },
9149
+ {
9150
+ "kind": "field",
9151
+ "name": "sourceTextField",
9152
+ "type": {
9153
+ "text": "TextField"
9154
+ }
9155
+ },
9156
+ {
9157
+ "kind": "field",
9158
+ "name": "sourceSelect",
9159
+ "type": {
9160
+ "text": "Select"
9161
+ }
9162
+ },
9163
+ {
9164
+ "kind": "field",
9165
+ "name": "reqRepItems",
9166
+ "type": {
9167
+ "text": "array"
9168
+ },
9169
+ "default": "['REQUEST_1', 'REQUEST_2', 'REQUEST_3']"
9170
+ },
9171
+ {
9172
+ "kind": "method",
9173
+ "name": "deleteParameter"
9174
+ },
9175
+ {
9176
+ "kind": "method",
9177
+ "name": "parameterChanged"
9178
+ },
9179
+ {
9180
+ "kind": "method",
9181
+ "name": "nameChanged"
9182
+ },
9183
+ {
9184
+ "kind": "method",
9185
+ "name": "labelChanged"
9186
+ },
9187
+ {
9188
+ "kind": "method",
9189
+ "name": "typeChanged"
9190
+ },
9191
+ {
9192
+ "kind": "method",
9193
+ "name": "sourceTypeChanged"
9194
+ },
9195
+ {
9196
+ "kind": "method",
9197
+ "name": "sourceSelectedChanged"
9198
+ },
9199
+ {
9200
+ "kind": "method",
9201
+ "name": "sourceTypedChanged"
9202
+ },
9203
+ {
9204
+ "kind": "method",
9205
+ "name": "genericChanged",
9206
+ "privacy": "private",
9207
+ "parameters": [
9208
+ {
9209
+ "name": "parameterAttribute"
9210
+ },
9211
+ {
9212
+ "name": "value"
9213
+ }
9214
+ ]
9215
+ }
9216
+ ],
9217
+ "events": [
9218
+ {
9219
+ "description": "Fired when a parameter is deleted. detail: `ParameterBuilderEntity`",
9220
+ "name": "delete"
9221
+ },
9222
+ {
9223
+ "description": "Fired when a parameter is edited. detail: `ParameterBuilderEntity`",
9224
+ "name": "edit"
9225
+ }
9226
+ ],
9227
+ "attributes": [
9228
+ {
9229
+ "name": "parameter",
9230
+ "type": {
9231
+ "text": "ParameterBuilderEntity"
9232
+ },
9233
+ "fieldName": "parameter"
9234
+ }
9235
+ ],
9236
+ "superclass": {
9237
+ "name": "GenesisElement",
9238
+ "package": "@genesislcap/web-core"
9239
+ },
9240
+ "tagName": "parameter-builder",
9241
+ "customElement": true
9242
+ }
9243
+ ],
9244
+ "exports": [
9245
+ {
9246
+ "kind": "js",
9247
+ "name": "ParameterBuilder",
9248
+ "declaration": {
9249
+ "name": "ParameterBuilder",
9250
+ "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts"
9251
+ }
9252
+ },
9253
+ {
9254
+ "kind": "custom-element-definition",
9255
+ "name": "parameter-builder",
9256
+ "declaration": {
9257
+ "name": "ParameterBuilder",
9258
+ "module": "src/components/foundation-notification-dashboard/components/templates/template-dialog/parameter-builder/parameter-builder.ts"
9259
+ }
9260
+ }
9261
+ ]
9262
+ },
9263
9263
  {
9264
9264
  "kind": "javascript-module",
9265
9265
  "path": "src/components/foundation-notification-dashboard/components/templates/template-dialog/template-condition-group/template-condition-group.template.ts",
@@ -277,17 +277,6 @@ export declare const RuleConditionGroup: React.ForwardRefExoticComponent<
277
277
  >;
278
278
  export type RuleConditionGroupRef = RuleConditionGroupWC;
279
279
 
280
- export declare const ParameterBuilder: React.ForwardRefExoticComponent<
281
- React.PropsWithChildren<
282
- Omit<PublicOf<ParameterBuilderWC>, 'children' | 'style'> &
283
- HTMLWCProps & {
284
- onDelete?: (event: CustomEvent<ParameterBuilderEntity>) => void;
285
- onEdit?: (event: CustomEvent<ParameterBuilderEntity>) => void;
286
- }
287
- > & React.RefAttributes<ParameterBuilderWC>
288
- >;
289
- export type ParameterBuilderRef = ParameterBuilderWC;
290
-
291
280
  export declare const TemplateConditionBuilder: React.ForwardRefExoticComponent<
292
281
  React.PropsWithChildren<
293
282
  Omit<PublicOf<TemplateConditionBuilderWC>, 'children' | 'style'> &
@@ -299,6 +288,17 @@ export declare const TemplateConditionBuilder: React.ForwardRefExoticComponent<
299
288
  >;
300
289
  export type TemplateConditionBuilderRef = TemplateConditionBuilderWC;
301
290
 
291
+ export declare const ParameterBuilder: React.ForwardRefExoticComponent<
292
+ React.PropsWithChildren<
293
+ Omit<PublicOf<ParameterBuilderWC>, 'children' | 'style'> &
294
+ HTMLWCProps & {
295
+ onDelete?: (event: CustomEvent<ParameterBuilderEntity>) => void;
296
+ onEdit?: (event: CustomEvent<ParameterBuilderEntity>) => void;
297
+ }
298
+ > & React.RefAttributes<ParameterBuilderWC>
299
+ >;
300
+ export type ParameterBuilderRef = ParameterBuilderWC;
301
+
302
302
  export declare const TemplateConditionGroup: React.ForwardRefExoticComponent<
303
303
  React.PropsWithChildren<
304
304
  Omit<PublicOf<TemplateConditionGroupWC>, 'children' | 'style'> &
package/dist/react.cjs CHANGED
@@ -244,7 +244,7 @@ const RuleConditionGroup = React.forwardRef(function RuleConditionGroup(props, r
244
244
  return React.createElement(customElements.getName(RuleConditionGroupWC) ?? 'rule-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
245
245
  });
246
246
 
247
- const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref) {
247
+ const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
248
248
  const { onDelete, onEdit, children, ...rest } = props;
249
249
  const _innerRef = React.useRef(null);
250
250
  const _onDeleteRef = React.useRef(onDelete);
@@ -263,10 +263,10 @@ const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref)
263
263
  el.removeEventListener('edit', _onEditFn);
264
264
  };
265
265
  }, []);
266
- return React.createElement(customElements.getName(ParameterBuilderWC) ?? 'parameter-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
266
+ return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
267
267
  });
268
268
 
269
- const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
269
+ const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref) {
270
270
  const { onDelete, onEdit, children, ...rest } = props;
271
271
  const _innerRef = React.useRef(null);
272
272
  const _onDeleteRef = React.useRef(onDelete);
@@ -285,7 +285,7 @@ const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuil
285
285
  el.removeEventListener('edit', _onEditFn);
286
286
  };
287
287
  }, []);
288
- return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
288
+ return React.createElement(customElements.getName(ParameterBuilderWC) ?? 'parameter-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
289
289
  });
290
290
 
291
291
  const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(props, ref) {
@@ -334,7 +334,7 @@ module.exports = {
334
334
  TemplateDialog,
335
335
  RuleConditionBuilder,
336
336
  RuleConditionGroup,
337
- ParameterBuilder,
338
337
  TemplateConditionBuilder,
338
+ ParameterBuilder,
339
339
  TemplateConditionGroup,
340
340
  };
package/dist/react.mjs CHANGED
@@ -242,7 +242,7 @@ export const RuleConditionGroup = React.forwardRef(function RuleConditionGroup(p
242
242
  return React.createElement(customElements.getName(RuleConditionGroupWC) ?? 'rule-condition-group', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
243
243
  });
244
244
 
245
- export const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref) {
245
+ export const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
246
246
  const { onDelete, onEdit, children, ...rest } = props;
247
247
  const _innerRef = React.useRef(null);
248
248
  const _onDeleteRef = React.useRef(onDelete);
@@ -261,10 +261,10 @@ export const ParameterBuilder = React.forwardRef(function ParameterBuilder(props
261
261
  el.removeEventListener('edit', _onEditFn);
262
262
  };
263
263
  }, []);
264
- return React.createElement(customElements.getName(ParameterBuilderWC) ?? 'parameter-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
264
+ return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
265
265
  });
266
266
 
267
- export const TemplateConditionBuilder = React.forwardRef(function TemplateConditionBuilder(props, ref) {
267
+ export const ParameterBuilder = React.forwardRef(function ParameterBuilder(props, ref) {
268
268
  const { onDelete, onEdit, children, ...rest } = props;
269
269
  const _innerRef = React.useRef(null);
270
270
  const _onDeleteRef = React.useRef(onDelete);
@@ -283,7 +283,7 @@ export const TemplateConditionBuilder = React.forwardRef(function TemplateCondit
283
283
  el.removeEventListener('edit', _onEditFn);
284
284
  };
285
285
  }, []);
286
- return React.createElement(customElements.getName(TemplateConditionBuilderWC) ?? 'template-condition-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
286
+ return React.createElement(customElements.getName(ParameterBuilderWC) ?? 'parameter-builder', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
287
287
  });
288
288
 
289
289
  export const TemplateConditionGroup = React.forwardRef(function TemplateConditionGroup(props, ref) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/pbc-notify-ui",
3
3
  "description": "Genesis PBC Notify UI",
4
- "version": "15.23.1",
4
+ "version": "15.23.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.23.1",
85
- "@genesislcap/eslint-config": "15.23.1",
86
- "@genesislcap/eslint-stylelint-builder": "15.23.1",
87
- "@genesislcap/foundation-testing": "15.23.1",
88
- "@genesislcap/genx": "15.23.1",
89
- "@genesislcap/prettier-config": "15.23.1",
90
- "@genesislcap/stylelint-config": "15.23.1",
91
- "@genesislcap/vite-builder": "15.23.1",
92
- "@genesislcap/webpack-builder": "15.23.1",
84
+ "@genesislcap/design-system-configurator": "15.23.2",
85
+ "@genesislcap/eslint-config": "15.23.2",
86
+ "@genesislcap/eslint-stylelint-builder": "15.23.2",
87
+ "@genesislcap/foundation-testing": "15.23.2",
88
+ "@genesislcap/genx": "15.23.2",
89
+ "@genesislcap/prettier-config": "15.23.2",
90
+ "@genesislcap/stylelint-config": "15.23.2",
91
+ "@genesislcap/vite-builder": "15.23.2",
92
+ "@genesislcap/webpack-builder": "15.23.2",
93
93
  "dayjs": "^1.11.7"
94
94
  },
95
95
  "dependencies": {
96
- "@genesislcap/foundation-comms": "15.23.1",
97
- "@genesislcap/foundation-criteria": "15.23.1",
98
- "@genesislcap/foundation-entity-management": "15.23.1",
99
- "@genesislcap/foundation-forms": "15.23.1",
100
- "@genesislcap/foundation-layout": "15.23.1",
101
- "@genesislcap/foundation-logger": "15.23.1",
102
- "@genesislcap/foundation-notifications": "15.23.1",
103
- "@genesislcap/foundation-ui": "15.23.1",
104
- "@genesislcap/foundation-utils": "15.23.1",
105
- "@genesislcap/rapid-design-system": "15.23.1",
106
- "@genesislcap/rapid-grid-pro": "15.23.1",
107
- "@genesislcap/web-core": "15.23.1",
96
+ "@genesislcap/foundation-comms": "15.23.2",
97
+ "@genesislcap/foundation-criteria": "15.23.2",
98
+ "@genesislcap/foundation-entity-management": "15.23.2",
99
+ "@genesislcap/foundation-forms": "15.23.2",
100
+ "@genesislcap/foundation-layout": "15.23.2",
101
+ "@genesislcap/foundation-logger": "15.23.2",
102
+ "@genesislcap/foundation-notifications": "15.23.2",
103
+ "@genesislcap/foundation-ui": "15.23.2",
104
+ "@genesislcap/foundation-utils": "15.23.2",
105
+ "@genesislcap/rapid-design-system": "15.23.2",
106
+ "@genesislcap/rapid-grid-pro": "15.23.2",
107
+ "@genesislcap/web-core": "15.23.2",
108
108
  "lodash.debounce": "^4.0.8",
109
109
  "rxjs": "^7.5.4"
110
110
  },