@genesislcap/expression-builder 14.489.0-GENC-1351.10 → 14.489.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +501 -501
- package/package.json +10 -10
|
@@ -157,46 +157,50 @@
|
|
|
157
157
|
},
|
|
158
158
|
{
|
|
159
159
|
"kind": "javascript-module",
|
|
160
|
-
"path": "src/
|
|
161
|
-
"declarations": [],
|
|
162
|
-
"exports": [
|
|
163
|
-
{
|
|
164
|
-
"kind": "js",
|
|
165
|
-
"name": "*",
|
|
166
|
-
"declaration": {
|
|
167
|
-
"name": "*",
|
|
168
|
-
"package": "./public.types"
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
"kind": "js",
|
|
173
|
-
"name": "*",
|
|
174
|
-
"declaration": {
|
|
175
|
-
"name": "*",
|
|
176
|
-
"package": "./private.types"
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
]
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"kind": "javascript-module",
|
|
183
|
-
"path": "src/types/private.types.ts",
|
|
184
|
-
"declarations": [],
|
|
185
|
-
"exports": []
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"kind": "javascript-module",
|
|
189
|
-
"path": "src/types/public.types.ts",
|
|
160
|
+
"path": "src/main/events.ts",
|
|
190
161
|
"declarations": [],
|
|
191
162
|
"exports": []
|
|
192
163
|
},
|
|
193
164
|
{
|
|
194
165
|
"kind": "javascript-module",
|
|
195
|
-
"path": "src/
|
|
166
|
+
"path": "src/main/expression-builder.helpers.ts",
|
|
196
167
|
"declarations": [
|
|
197
168
|
{
|
|
198
169
|
"kind": "function",
|
|
199
|
-
"name": "
|
|
170
|
+
"name": "findOperateOnGroup",
|
|
171
|
+
"return": {
|
|
172
|
+
"type": {
|
|
173
|
+
"text": ""
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"parameters": [
|
|
177
|
+
{
|
|
178
|
+
"name": "model",
|
|
179
|
+
"type": {
|
|
180
|
+
"text": "ModelGroup"
|
|
181
|
+
},
|
|
182
|
+
"description": "The root group to start searching from"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "groupId",
|
|
186
|
+
"type": {
|
|
187
|
+
"text": "string"
|
|
188
|
+
},
|
|
189
|
+
"description": "The Group ID to find"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "fn",
|
|
193
|
+
"type": {
|
|
194
|
+
"text": "ChildrenOperatorFn"
|
|
195
|
+
},
|
|
196
|
+
"description": "The function to apply to the children of the found group. A *new* object must be created and returned"
|
|
197
|
+
}
|
|
198
|
+
],
|
|
199
|
+
"description": "Finds a group within a model and applies a function to create a new children"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"kind": "function",
|
|
203
|
+
"name": "addGroupOrRule",
|
|
200
204
|
"return": {
|
|
201
205
|
"type": {
|
|
202
206
|
"text": "ModelGroup"
|
|
@@ -204,505 +208,177 @@
|
|
|
204
208
|
},
|
|
205
209
|
"parameters": [
|
|
206
210
|
{
|
|
207
|
-
"name": "
|
|
211
|
+
"name": "model",
|
|
208
212
|
"type": {
|
|
209
|
-
"text": "
|
|
213
|
+
"text": "ModelGroup"
|
|
210
214
|
}
|
|
211
215
|
},
|
|
212
216
|
{
|
|
213
|
-
"name": "
|
|
217
|
+
"name": "parentGroupId",
|
|
214
218
|
"type": {
|
|
215
|
-
"text": "
|
|
219
|
+
"text": "string"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"name": "newItem",
|
|
224
|
+
"type": {
|
|
225
|
+
"text": "ModelGroup | ModelRule"
|
|
216
226
|
}
|
|
217
227
|
}
|
|
218
|
-
]
|
|
219
|
-
"description": "Converts a Group to a ModelGroup (adds required metadata)"
|
|
228
|
+
]
|
|
220
229
|
},
|
|
221
230
|
{
|
|
222
231
|
"kind": "function",
|
|
223
|
-
"name": "
|
|
232
|
+
"name": "deleteGroup",
|
|
224
233
|
"return": {
|
|
225
234
|
"type": {
|
|
226
|
-
"text": ""
|
|
235
|
+
"text": "ModelGroup"
|
|
227
236
|
}
|
|
228
237
|
},
|
|
229
238
|
"parameters": [
|
|
230
239
|
{
|
|
231
|
-
"name": "
|
|
240
|
+
"name": "model",
|
|
232
241
|
"type": {
|
|
233
242
|
"text": "ModelGroup"
|
|
234
|
-
}
|
|
235
|
-
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "groupIdToDelete",
|
|
247
|
+
"type": {
|
|
248
|
+
"text": "string"
|
|
249
|
+
}
|
|
236
250
|
}
|
|
237
|
-
]
|
|
238
|
-
"description": "Converts a ModelGroup (internal data structure) to a public Group structure.\nThis function recursively processes the rules within the group."
|
|
251
|
+
]
|
|
239
252
|
},
|
|
240
253
|
{
|
|
241
254
|
"kind": "function",
|
|
242
|
-
"name": "
|
|
255
|
+
"name": "deleteRule",
|
|
243
256
|
"return": {
|
|
244
257
|
"type": {
|
|
245
|
-
"text": ""
|
|
258
|
+
"text": "ModelGroup"
|
|
246
259
|
}
|
|
247
260
|
},
|
|
248
261
|
"parameters": [
|
|
249
262
|
{
|
|
250
|
-
"name": "
|
|
263
|
+
"name": "model",
|
|
251
264
|
"type": {
|
|
252
|
-
"text": "
|
|
253
|
-
}
|
|
254
|
-
|
|
265
|
+
"text": "ModelGroup"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "ruleIdToDelete",
|
|
270
|
+
"type": {
|
|
271
|
+
"text": "string"
|
|
272
|
+
}
|
|
255
273
|
}
|
|
256
|
-
]
|
|
257
|
-
"description": "Converts a ModelRule (internal data structure) to a public Rule structure."
|
|
258
|
-
}
|
|
259
|
-
],
|
|
260
|
-
"exports": [
|
|
261
|
-
{
|
|
262
|
-
"kind": "js",
|
|
263
|
-
"name": "groupToModelGroup",
|
|
264
|
-
"declaration": {
|
|
265
|
-
"name": "groupToModelGroup",
|
|
266
|
-
"module": "src/utils/data-model.ts"
|
|
267
|
-
}
|
|
274
|
+
]
|
|
268
275
|
},
|
|
269
276
|
{
|
|
270
|
-
"kind": "
|
|
271
|
-
"name": "
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
-
|
|
275
|
-
|
|
277
|
+
"kind": "variable",
|
|
278
|
+
"name": "ROOT_GROUP",
|
|
279
|
+
"type": {
|
|
280
|
+
"text": "string"
|
|
281
|
+
},
|
|
282
|
+
"default": "'group-root'"
|
|
276
283
|
},
|
|
277
|
-
{
|
|
278
|
-
"kind": "js",
|
|
279
|
-
"name": "modelRuleToRule",
|
|
280
|
-
"declaration": {
|
|
281
|
-
"name": "modelRuleToRule",
|
|
282
|
-
"module": "src/utils/data-model.ts"
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
]
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"kind": "javascript-module",
|
|
289
|
-
"path": "src/utils/formatting.ts",
|
|
290
|
-
"declarations": [
|
|
291
284
|
{
|
|
292
285
|
"kind": "function",
|
|
293
|
-
"name": "
|
|
286
|
+
"name": "updateGroupData",
|
|
287
|
+
"return": {
|
|
288
|
+
"type": {
|
|
289
|
+
"text": "ModelGroup"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
294
292
|
"parameters": [
|
|
295
293
|
{
|
|
296
|
-
"name": "
|
|
294
|
+
"name": "model",
|
|
297
295
|
"type": {
|
|
298
|
-
"text": "
|
|
296
|
+
"text": "ModelGroup"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"name": "groupIdToUpdate",
|
|
301
|
+
"type": {
|
|
302
|
+
"text": "string"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"name": "newData",
|
|
307
|
+
"type": {
|
|
308
|
+
"text": "EventsDetailMap[Events.UpdateGroup]['newData']"
|
|
299
309
|
}
|
|
300
310
|
}
|
|
301
|
-
]
|
|
302
|
-
"description": "Gets the string representation from a `Date` which is the format a `date` input uses.\n`yyyy-mm-dd`.\nUses UTC methods to ensure consistent output regardless of timezone.\n\nUsed to convert a javascript date object into the required string format expected by the expression builder."
|
|
311
|
+
]
|
|
303
312
|
},
|
|
304
313
|
{
|
|
305
314
|
"kind": "function",
|
|
306
|
-
"name": "
|
|
315
|
+
"name": "updateRuleData",
|
|
316
|
+
"return": {
|
|
317
|
+
"type": {
|
|
318
|
+
"text": "ModelGroup"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
307
321
|
"parameters": [
|
|
308
322
|
{
|
|
309
|
-
"name": "
|
|
323
|
+
"name": "model",
|
|
310
324
|
"type": {
|
|
311
|
-
"text": "
|
|
325
|
+
"text": "ModelGroup"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"name": "ruleIdToUpdate",
|
|
330
|
+
"type": {
|
|
331
|
+
"text": "string"
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"name": "newData",
|
|
336
|
+
"type": {
|
|
337
|
+
"text": "EventsDetailMap[Events.UpdateRule]['newData']"
|
|
312
338
|
}
|
|
313
339
|
}
|
|
314
|
-
]
|
|
315
|
-
"description": "Gets the string representation from a `Date` which is the format a `datetime-local` input uses.\n`yyyy-mm-ddThh:mm:ss`.\nUses UTC methods to ensure consistent output regardless of timezone.\n\nUsed to convert a javascript date object into the required string format expected by the expression builder."
|
|
340
|
+
]
|
|
316
341
|
}
|
|
317
342
|
],
|
|
318
343
|
"exports": [
|
|
319
344
|
{
|
|
320
345
|
"kind": "js",
|
|
321
|
-
"name": "
|
|
346
|
+
"name": "findOperateOnGroup",
|
|
322
347
|
"declaration": {
|
|
323
|
-
"name": "
|
|
324
|
-
"module": "src/
|
|
348
|
+
"name": "findOperateOnGroup",
|
|
349
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
325
350
|
}
|
|
326
351
|
},
|
|
327
352
|
{
|
|
328
353
|
"kind": "js",
|
|
329
|
-
"name": "
|
|
354
|
+
"name": "addGroupOrRule",
|
|
330
355
|
"declaration": {
|
|
331
|
-
"name": "
|
|
332
|
-
"module": "src/
|
|
356
|
+
"name": "addGroupOrRule",
|
|
357
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
333
358
|
}
|
|
334
|
-
}
|
|
335
|
-
]
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"kind": "javascript-module",
|
|
339
|
-
"path": "src/utils/index.ts",
|
|
340
|
-
"declarations": [],
|
|
341
|
-
"exports": [
|
|
359
|
+
},
|
|
342
360
|
{
|
|
343
361
|
"kind": "js",
|
|
344
|
-
"name": "
|
|
362
|
+
"name": "deleteGroup",
|
|
345
363
|
"declaration": {
|
|
346
|
-
"name": "
|
|
347
|
-
"
|
|
364
|
+
"name": "deleteGroup",
|
|
365
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
348
366
|
}
|
|
349
367
|
},
|
|
350
368
|
{
|
|
351
369
|
"kind": "js",
|
|
352
|
-
"name": "
|
|
370
|
+
"name": "deleteRule",
|
|
353
371
|
"declaration": {
|
|
354
|
-
"name": "
|
|
355
|
-
"
|
|
372
|
+
"name": "deleteRule",
|
|
373
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
356
374
|
}
|
|
357
375
|
},
|
|
358
376
|
{
|
|
359
377
|
"kind": "js",
|
|
360
|
-
"name": "
|
|
378
|
+
"name": "ROOT_GROUP",
|
|
361
379
|
"declaration": {
|
|
362
|
-
"name": "
|
|
363
|
-
"
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
]
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
"kind": "javascript-module",
|
|
370
|
-
"path": "src/utils/misc.ts",
|
|
371
|
-
"declarations": [
|
|
372
|
-
{
|
|
373
|
-
"kind": "function",
|
|
374
|
-
"name": "getFieldInput",
|
|
375
|
-
"parameters": [
|
|
376
|
-
{
|
|
377
|
-
"name": "context",
|
|
378
|
-
"type": {
|
|
379
|
-
"text": "RuleValue | ModelRule"
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
]
|
|
383
|
-
},
|
|
384
|
-
{
|
|
385
|
-
"kind": "function",
|
|
386
|
-
"name": "getFieldType",
|
|
387
|
-
"parameters": [
|
|
388
|
-
{
|
|
389
|
-
"name": "context",
|
|
390
|
-
"type": {
|
|
391
|
-
"text": "RuleValue | ModelRule"
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
]
|
|
395
|
-
},
|
|
396
|
-
{
|
|
397
|
-
"kind": "function",
|
|
398
|
-
"name": "processOptGroups",
|
|
399
|
-
"return": {
|
|
400
|
-
"type": {
|
|
401
|
-
"text": "(T | { optgroup: string | null; xs: T[] })[]"
|
|
402
|
-
}
|
|
403
|
-
},
|
|
404
|
-
"parameters": [
|
|
405
|
-
{
|
|
406
|
-
"name": "xs",
|
|
407
|
-
"type": {
|
|
408
|
-
"text": "T[]"
|
|
409
|
-
}
|
|
410
|
-
}
|
|
411
|
-
]
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
"kind": "function",
|
|
415
|
-
"name": "applyCustomStyles",
|
|
416
|
-
"return": {
|
|
417
|
-
"type": {
|
|
418
|
-
"text": "void"
|
|
419
|
-
}
|
|
420
|
-
},
|
|
421
|
-
"parameters": [
|
|
422
|
-
{
|
|
423
|
-
"name": "component",
|
|
424
|
-
"type": {
|
|
425
|
-
"text": "HTMLElement"
|
|
426
|
-
},
|
|
427
|
-
"description": "The web component instance"
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
"name": "styles",
|
|
431
|
-
"type": {
|
|
432
|
-
"text": "Styles | undefined | null"
|
|
433
|
-
},
|
|
434
|
-
"description": "The styles configuration object"
|
|
435
|
-
},
|
|
436
|
-
{
|
|
437
|
-
"name": "styleKey",
|
|
438
|
-
"type": {
|
|
439
|
-
"text": "keyof NonNullable<Styles['customStyles']>"
|
|
440
|
-
},
|
|
441
|
-
"description": "The key in styles.customStyles to use for custom styles"
|
|
442
|
-
}
|
|
443
|
-
],
|
|
444
|
-
"description": "Utility function to add custom styles to a web component's shadow root"
|
|
445
|
-
}
|
|
446
|
-
],
|
|
447
|
-
"exports": [
|
|
448
|
-
{
|
|
449
|
-
"kind": "js",
|
|
450
|
-
"name": "getFieldInput",
|
|
451
|
-
"declaration": {
|
|
452
|
-
"name": "getFieldInput",
|
|
453
|
-
"module": "src/utils/misc.ts"
|
|
454
|
-
}
|
|
455
|
-
},
|
|
456
|
-
{
|
|
457
|
-
"kind": "js",
|
|
458
|
-
"name": "getFieldType",
|
|
459
|
-
"declaration": {
|
|
460
|
-
"name": "getFieldType",
|
|
461
|
-
"module": "src/utils/misc.ts"
|
|
462
|
-
}
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
"kind": "js",
|
|
466
|
-
"name": "processOptGroups",
|
|
467
|
-
"declaration": {
|
|
468
|
-
"name": "processOptGroups",
|
|
469
|
-
"module": "src/utils/misc.ts"
|
|
470
|
-
}
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
"kind": "js",
|
|
474
|
-
"name": "applyCustomStyles",
|
|
475
|
-
"declaration": {
|
|
476
|
-
"name": "applyCustomStyles",
|
|
477
|
-
"module": "src/utils/misc.ts"
|
|
478
|
-
}
|
|
479
|
-
}
|
|
480
|
-
]
|
|
481
|
-
},
|
|
482
|
-
{
|
|
483
|
-
"kind": "javascript-module",
|
|
484
|
-
"path": "src/main/events.ts",
|
|
485
|
-
"declarations": [],
|
|
486
|
-
"exports": []
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
"kind": "javascript-module",
|
|
490
|
-
"path": "src/main/expression-builder.helpers.ts",
|
|
491
|
-
"declarations": [
|
|
492
|
-
{
|
|
493
|
-
"kind": "function",
|
|
494
|
-
"name": "findOperateOnGroup",
|
|
495
|
-
"return": {
|
|
496
|
-
"type": {
|
|
497
|
-
"text": ""
|
|
498
|
-
}
|
|
499
|
-
},
|
|
500
|
-
"parameters": [
|
|
501
|
-
{
|
|
502
|
-
"name": "model",
|
|
503
|
-
"type": {
|
|
504
|
-
"text": "ModelGroup"
|
|
505
|
-
},
|
|
506
|
-
"description": "The root group to start searching from"
|
|
507
|
-
},
|
|
508
|
-
{
|
|
509
|
-
"name": "groupId",
|
|
510
|
-
"type": {
|
|
511
|
-
"text": "string"
|
|
512
|
-
},
|
|
513
|
-
"description": "The Group ID to find"
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"name": "fn",
|
|
517
|
-
"type": {
|
|
518
|
-
"text": "ChildrenOperatorFn"
|
|
519
|
-
},
|
|
520
|
-
"description": "The function to apply to the children of the found group. A *new* object must be created and returned"
|
|
521
|
-
}
|
|
522
|
-
],
|
|
523
|
-
"description": "Finds a group within a model and applies a function to create a new children"
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
"kind": "function",
|
|
527
|
-
"name": "addGroupOrRule",
|
|
528
|
-
"return": {
|
|
529
|
-
"type": {
|
|
530
|
-
"text": "ModelGroup"
|
|
531
|
-
}
|
|
532
|
-
},
|
|
533
|
-
"parameters": [
|
|
534
|
-
{
|
|
535
|
-
"name": "model",
|
|
536
|
-
"type": {
|
|
537
|
-
"text": "ModelGroup"
|
|
538
|
-
}
|
|
539
|
-
},
|
|
540
|
-
{
|
|
541
|
-
"name": "parentGroupId",
|
|
542
|
-
"type": {
|
|
543
|
-
"text": "string"
|
|
544
|
-
}
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
"name": "newItem",
|
|
548
|
-
"type": {
|
|
549
|
-
"text": "ModelGroup | ModelRule"
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
]
|
|
553
|
-
},
|
|
554
|
-
{
|
|
555
|
-
"kind": "function",
|
|
556
|
-
"name": "deleteGroup",
|
|
557
|
-
"return": {
|
|
558
|
-
"type": {
|
|
559
|
-
"text": "ModelGroup"
|
|
560
|
-
}
|
|
561
|
-
},
|
|
562
|
-
"parameters": [
|
|
563
|
-
{
|
|
564
|
-
"name": "model",
|
|
565
|
-
"type": {
|
|
566
|
-
"text": "ModelGroup"
|
|
567
|
-
}
|
|
568
|
-
},
|
|
569
|
-
{
|
|
570
|
-
"name": "groupIdToDelete",
|
|
571
|
-
"type": {
|
|
572
|
-
"text": "string"
|
|
573
|
-
}
|
|
574
|
-
}
|
|
575
|
-
]
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
"kind": "function",
|
|
579
|
-
"name": "deleteRule",
|
|
580
|
-
"return": {
|
|
581
|
-
"type": {
|
|
582
|
-
"text": "ModelGroup"
|
|
583
|
-
}
|
|
584
|
-
},
|
|
585
|
-
"parameters": [
|
|
586
|
-
{
|
|
587
|
-
"name": "model",
|
|
588
|
-
"type": {
|
|
589
|
-
"text": "ModelGroup"
|
|
590
|
-
}
|
|
591
|
-
},
|
|
592
|
-
{
|
|
593
|
-
"name": "ruleIdToDelete",
|
|
594
|
-
"type": {
|
|
595
|
-
"text": "string"
|
|
596
|
-
}
|
|
597
|
-
}
|
|
598
|
-
]
|
|
599
|
-
},
|
|
600
|
-
{
|
|
601
|
-
"kind": "variable",
|
|
602
|
-
"name": "ROOT_GROUP",
|
|
603
|
-
"type": {
|
|
604
|
-
"text": "string"
|
|
605
|
-
},
|
|
606
|
-
"default": "'group-root'"
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
"kind": "function",
|
|
610
|
-
"name": "updateGroupData",
|
|
611
|
-
"return": {
|
|
612
|
-
"type": {
|
|
613
|
-
"text": "ModelGroup"
|
|
614
|
-
}
|
|
615
|
-
},
|
|
616
|
-
"parameters": [
|
|
617
|
-
{
|
|
618
|
-
"name": "model",
|
|
619
|
-
"type": {
|
|
620
|
-
"text": "ModelGroup"
|
|
621
|
-
}
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
"name": "groupIdToUpdate",
|
|
625
|
-
"type": {
|
|
626
|
-
"text": "string"
|
|
627
|
-
}
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
"name": "newData",
|
|
631
|
-
"type": {
|
|
632
|
-
"text": "EventsDetailMap[Events.UpdateGroup]['newData']"
|
|
633
|
-
}
|
|
634
|
-
}
|
|
635
|
-
]
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"kind": "function",
|
|
639
|
-
"name": "updateRuleData",
|
|
640
|
-
"return": {
|
|
641
|
-
"type": {
|
|
642
|
-
"text": "ModelGroup"
|
|
643
|
-
}
|
|
644
|
-
},
|
|
645
|
-
"parameters": [
|
|
646
|
-
{
|
|
647
|
-
"name": "model",
|
|
648
|
-
"type": {
|
|
649
|
-
"text": "ModelGroup"
|
|
650
|
-
}
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
"name": "ruleIdToUpdate",
|
|
654
|
-
"type": {
|
|
655
|
-
"text": "string"
|
|
656
|
-
}
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
"name": "newData",
|
|
660
|
-
"type": {
|
|
661
|
-
"text": "EventsDetailMap[Events.UpdateRule]['newData']"
|
|
662
|
-
}
|
|
663
|
-
}
|
|
664
|
-
]
|
|
665
|
-
}
|
|
666
|
-
],
|
|
667
|
-
"exports": [
|
|
668
|
-
{
|
|
669
|
-
"kind": "js",
|
|
670
|
-
"name": "findOperateOnGroup",
|
|
671
|
-
"declaration": {
|
|
672
|
-
"name": "findOperateOnGroup",
|
|
673
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
674
|
-
}
|
|
675
|
-
},
|
|
676
|
-
{
|
|
677
|
-
"kind": "js",
|
|
678
|
-
"name": "addGroupOrRule",
|
|
679
|
-
"declaration": {
|
|
680
|
-
"name": "addGroupOrRule",
|
|
681
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
682
|
-
}
|
|
683
|
-
},
|
|
684
|
-
{
|
|
685
|
-
"kind": "js",
|
|
686
|
-
"name": "deleteGroup",
|
|
687
|
-
"declaration": {
|
|
688
|
-
"name": "deleteGroup",
|
|
689
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
690
|
-
}
|
|
691
|
-
},
|
|
692
|
-
{
|
|
693
|
-
"kind": "js",
|
|
694
|
-
"name": "deleteRule",
|
|
695
|
-
"declaration": {
|
|
696
|
-
"name": "deleteRule",
|
|
697
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
698
|
-
}
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
"kind": "js",
|
|
702
|
-
"name": "ROOT_GROUP",
|
|
703
|
-
"declaration": {
|
|
704
|
-
"name": "ROOT_GROUP",
|
|
705
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
380
|
+
"name": "ROOT_GROUP",
|
|
381
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
706
382
|
}
|
|
707
383
|
},
|
|
708
384
|
{
|
|
@@ -964,67 +640,250 @@
|
|
|
964
640
|
],
|
|
965
641
|
"events": [
|
|
966
642
|
{
|
|
967
|
-
"name": "change",
|
|
643
|
+
"name": "change",
|
|
644
|
+
"type": {
|
|
645
|
+
"text": "CustomEvent"
|
|
646
|
+
},
|
|
647
|
+
"description": "Fired when the expression model changes. detail: `ChangeEventDetail`"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"description": "Bubbled when a nested group add is requested. detail: `AddGroupEventDetail`",
|
|
651
|
+
"name": "add-group"
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"description": "Bubbled when a group delete is requested. detail: `DelGroupEventDetail`",
|
|
655
|
+
"name": "del-group"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"description": "Bubbled when a rule add is requested. detail: `AddRuleEventDetail`",
|
|
659
|
+
"name": "add-rule"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"description": "Bubbled when a rule delete is requested. detail: `DelRuleEventDetail`",
|
|
663
|
+
"name": "del-rule"
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"description": "Bubbled when group data changes. detail: `UpdateGroupEventDetail`",
|
|
667
|
+
"name": "update-group"
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"description": "Bubbled when rule data changes. detail: `UpdateRuleEventDetail`",
|
|
671
|
+
"name": "update-rule"
|
|
672
|
+
}
|
|
673
|
+
],
|
|
674
|
+
"superclass": {
|
|
675
|
+
"name": "GenesisElement",
|
|
676
|
+
"package": "@genesislcap/web-core"
|
|
677
|
+
},
|
|
678
|
+
"tagName": "expression-builder",
|
|
679
|
+
"customElement": true
|
|
680
|
+
}
|
|
681
|
+
],
|
|
682
|
+
"exports": [
|
|
683
|
+
{
|
|
684
|
+
"kind": "js",
|
|
685
|
+
"name": "ExpressionBuilder",
|
|
686
|
+
"declaration": {
|
|
687
|
+
"name": "ExpressionBuilder",
|
|
688
|
+
"module": "src/main/expression-builder.ts"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"kind": "custom-element-definition",
|
|
693
|
+
"name": "expression-builder",
|
|
694
|
+
"declaration": {
|
|
695
|
+
"name": "ExpressionBuilder",
|
|
696
|
+
"module": "src/main/expression-builder.ts"
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
]
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"kind": "javascript-module",
|
|
703
|
+
"path": "src/main/index.ts",
|
|
704
|
+
"declarations": [],
|
|
705
|
+
"exports": [
|
|
706
|
+
{
|
|
707
|
+
"kind": "js",
|
|
708
|
+
"name": "*",
|
|
709
|
+
"declaration": {
|
|
710
|
+
"name": "*",
|
|
711
|
+
"package": "./events"
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"kind": "js",
|
|
716
|
+
"name": "*",
|
|
717
|
+
"declaration": {
|
|
718
|
+
"name": "*",
|
|
719
|
+
"package": "./expression-builder"
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"kind": "js",
|
|
724
|
+
"name": "*",
|
|
725
|
+
"declaration": {
|
|
726
|
+
"name": "*",
|
|
727
|
+
"package": "./expression-builder.styles"
|
|
728
|
+
}
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"kind": "js",
|
|
732
|
+
"name": "*",
|
|
733
|
+
"declaration": {
|
|
734
|
+
"name": "*",
|
|
735
|
+
"package": "./expression-builder.template"
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
]
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"kind": "javascript-module",
|
|
742
|
+
"path": "src/utils/data-model.ts",
|
|
743
|
+
"declarations": [
|
|
744
|
+
{
|
|
745
|
+
"kind": "function",
|
|
746
|
+
"name": "groupToModelGroup",
|
|
747
|
+
"return": {
|
|
748
|
+
"type": {
|
|
749
|
+
"text": "ModelGroup"
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
"parameters": [
|
|
753
|
+
{
|
|
754
|
+
"name": "group",
|
|
755
|
+
"type": {
|
|
756
|
+
"text": "Group"
|
|
757
|
+
}
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"name": "provider",
|
|
761
|
+
"type": {
|
|
762
|
+
"text": "MetadataProvider"
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
],
|
|
766
|
+
"description": "Converts a Group to a ModelGroup (adds required metadata)"
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"kind": "function",
|
|
770
|
+
"name": "modelGroupToGroup",
|
|
771
|
+
"return": {
|
|
772
|
+
"type": {
|
|
773
|
+
"text": ""
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"parameters": [
|
|
777
|
+
{
|
|
778
|
+
"name": "modelGroup",
|
|
779
|
+
"type": {
|
|
780
|
+
"text": "ModelGroup"
|
|
781
|
+
},
|
|
782
|
+
"description": "The internal ModelGroup to convert."
|
|
783
|
+
}
|
|
784
|
+
],
|
|
785
|
+
"description": "Converts a ModelGroup (internal data structure) to a public Group structure.\nThis function recursively processes the rules within the group."
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"kind": "function",
|
|
789
|
+
"name": "modelRuleToRule",
|
|
790
|
+
"return": {
|
|
791
|
+
"type": {
|
|
792
|
+
"text": ""
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
"parameters": [
|
|
796
|
+
{
|
|
797
|
+
"name": "modelRule",
|
|
968
798
|
"type": {
|
|
969
|
-
"text": "
|
|
799
|
+
"text": "ModelRule"
|
|
970
800
|
},
|
|
971
|
-
"description": "
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
801
|
+
"description": "The internal ModelRule to convert."
|
|
802
|
+
}
|
|
803
|
+
],
|
|
804
|
+
"description": "Converts a ModelRule (internal data structure) to a public Rule structure."
|
|
805
|
+
}
|
|
806
|
+
],
|
|
807
|
+
"exports": [
|
|
808
|
+
{
|
|
809
|
+
"kind": "js",
|
|
810
|
+
"name": "groupToModelGroup",
|
|
811
|
+
"declaration": {
|
|
812
|
+
"name": "groupToModelGroup",
|
|
813
|
+
"module": "src/utils/data-model.ts"
|
|
814
|
+
}
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"kind": "js",
|
|
818
|
+
"name": "modelGroupToGroup",
|
|
819
|
+
"declaration": {
|
|
820
|
+
"name": "modelGroupToGroup",
|
|
821
|
+
"module": "src/utils/data-model.ts"
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"kind": "js",
|
|
826
|
+
"name": "modelRuleToRule",
|
|
827
|
+
"declaration": {
|
|
828
|
+
"name": "modelRuleToRule",
|
|
829
|
+
"module": "src/utils/data-model.ts"
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
]
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"kind": "javascript-module",
|
|
836
|
+
"path": "src/utils/formatting.ts",
|
|
837
|
+
"declarations": [
|
|
838
|
+
{
|
|
839
|
+
"kind": "function",
|
|
840
|
+
"name": "formatDateString",
|
|
841
|
+
"parameters": [
|
|
989
842
|
{
|
|
990
|
-
"
|
|
991
|
-
"
|
|
992
|
-
|
|
843
|
+
"name": "date",
|
|
844
|
+
"type": {
|
|
845
|
+
"text": "Date"
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
],
|
|
849
|
+
"description": "Gets the string representation from a `Date` which is the format a `date` input uses.\n`yyyy-mm-dd`.\nUses UTC methods to ensure consistent output regardless of timezone.\n\nUsed to convert a javascript date object into the required string format expected by the expression builder."
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"kind": "function",
|
|
853
|
+
"name": "formatDateTimeString",
|
|
854
|
+
"parameters": [
|
|
993
855
|
{
|
|
994
|
-
"
|
|
995
|
-
"
|
|
856
|
+
"name": "date",
|
|
857
|
+
"type": {
|
|
858
|
+
"text": "Date"
|
|
859
|
+
}
|
|
996
860
|
}
|
|
997
861
|
],
|
|
998
|
-
"
|
|
999
|
-
"name": "GenesisElement",
|
|
1000
|
-
"package": "@genesislcap/web-core"
|
|
1001
|
-
},
|
|
1002
|
-
"tagName": "expression-builder",
|
|
1003
|
-
"customElement": true
|
|
862
|
+
"description": "Gets the string representation from a `Date` which is the format a `datetime-local` input uses.\n`yyyy-mm-ddThh:mm:ss`.\nUses UTC methods to ensure consistent output regardless of timezone.\n\nUsed to convert a javascript date object into the required string format expected by the expression builder."
|
|
1004
863
|
}
|
|
1005
864
|
],
|
|
1006
865
|
"exports": [
|
|
1007
866
|
{
|
|
1008
867
|
"kind": "js",
|
|
1009
|
-
"name": "
|
|
868
|
+
"name": "formatDateString",
|
|
1010
869
|
"declaration": {
|
|
1011
|
-
"name": "
|
|
1012
|
-
"module": "src/
|
|
870
|
+
"name": "formatDateString",
|
|
871
|
+
"module": "src/utils/formatting.ts"
|
|
1013
872
|
}
|
|
1014
873
|
},
|
|
1015
874
|
{
|
|
1016
|
-
"kind": "
|
|
1017
|
-
"name": "
|
|
875
|
+
"kind": "js",
|
|
876
|
+
"name": "formatDateTimeString",
|
|
1018
877
|
"declaration": {
|
|
1019
|
-
"name": "
|
|
1020
|
-
"module": "src/
|
|
878
|
+
"name": "formatDateTimeString",
|
|
879
|
+
"module": "src/utils/formatting.ts"
|
|
1021
880
|
}
|
|
1022
881
|
}
|
|
1023
882
|
]
|
|
1024
883
|
},
|
|
1025
884
|
{
|
|
1026
885
|
"kind": "javascript-module",
|
|
1027
|
-
"path": "src/
|
|
886
|
+
"path": "src/utils/index.ts",
|
|
1028
887
|
"declarations": [],
|
|
1029
888
|
"exports": [
|
|
1030
889
|
{
|
|
@@ -1032,7 +891,7 @@
|
|
|
1032
891
|
"name": "*",
|
|
1033
892
|
"declaration": {
|
|
1034
893
|
"name": "*",
|
|
1035
|
-
"package": "./
|
|
894
|
+
"package": "./data-model"
|
|
1036
895
|
}
|
|
1037
896
|
},
|
|
1038
897
|
{
|
|
@@ -1040,7 +899,7 @@
|
|
|
1040
899
|
"name": "*",
|
|
1041
900
|
"declaration": {
|
|
1042
901
|
"name": "*",
|
|
1043
|
-
"package": "./
|
|
902
|
+
"package": "./formatting"
|
|
1044
903
|
}
|
|
1045
904
|
},
|
|
1046
905
|
{
|
|
@@ -1048,7 +907,136 @@
|
|
|
1048
907
|
"name": "*",
|
|
1049
908
|
"declaration": {
|
|
1050
909
|
"name": "*",
|
|
1051
|
-
"package": "./
|
|
910
|
+
"package": "./misc"
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
]
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"kind": "javascript-module",
|
|
917
|
+
"path": "src/utils/misc.ts",
|
|
918
|
+
"declarations": [
|
|
919
|
+
{
|
|
920
|
+
"kind": "function",
|
|
921
|
+
"name": "getFieldInput",
|
|
922
|
+
"parameters": [
|
|
923
|
+
{
|
|
924
|
+
"name": "context",
|
|
925
|
+
"type": {
|
|
926
|
+
"text": "RuleValue | ModelRule"
|
|
927
|
+
}
|
|
928
|
+
}
|
|
929
|
+
]
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"kind": "function",
|
|
933
|
+
"name": "getFieldType",
|
|
934
|
+
"parameters": [
|
|
935
|
+
{
|
|
936
|
+
"name": "context",
|
|
937
|
+
"type": {
|
|
938
|
+
"text": "RuleValue | ModelRule"
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
]
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"kind": "function",
|
|
945
|
+
"name": "processOptGroups",
|
|
946
|
+
"return": {
|
|
947
|
+
"type": {
|
|
948
|
+
"text": "(T | { optgroup: string | null; xs: T[] })[]"
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
"parameters": [
|
|
952
|
+
{
|
|
953
|
+
"name": "xs",
|
|
954
|
+
"type": {
|
|
955
|
+
"text": "T[]"
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
]
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"kind": "function",
|
|
962
|
+
"name": "applyCustomStyles",
|
|
963
|
+
"return": {
|
|
964
|
+
"type": {
|
|
965
|
+
"text": "void"
|
|
966
|
+
}
|
|
967
|
+
},
|
|
968
|
+
"parameters": [
|
|
969
|
+
{
|
|
970
|
+
"name": "component",
|
|
971
|
+
"type": {
|
|
972
|
+
"text": "HTMLElement"
|
|
973
|
+
},
|
|
974
|
+
"description": "The web component instance"
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"name": "styles",
|
|
978
|
+
"type": {
|
|
979
|
+
"text": "Styles | undefined | null"
|
|
980
|
+
},
|
|
981
|
+
"description": "The styles configuration object"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"name": "styleKey",
|
|
985
|
+
"type": {
|
|
986
|
+
"text": "keyof NonNullable<Styles['customStyles']>"
|
|
987
|
+
},
|
|
988
|
+
"description": "The key in styles.customStyles to use for custom styles"
|
|
989
|
+
}
|
|
990
|
+
],
|
|
991
|
+
"description": "Utility function to add custom styles to a web component's shadow root"
|
|
992
|
+
}
|
|
993
|
+
],
|
|
994
|
+
"exports": [
|
|
995
|
+
{
|
|
996
|
+
"kind": "js",
|
|
997
|
+
"name": "getFieldInput",
|
|
998
|
+
"declaration": {
|
|
999
|
+
"name": "getFieldInput",
|
|
1000
|
+
"module": "src/utils/misc.ts"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"kind": "js",
|
|
1005
|
+
"name": "getFieldType",
|
|
1006
|
+
"declaration": {
|
|
1007
|
+
"name": "getFieldType",
|
|
1008
|
+
"module": "src/utils/misc.ts"
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"kind": "js",
|
|
1013
|
+
"name": "processOptGroups",
|
|
1014
|
+
"declaration": {
|
|
1015
|
+
"name": "processOptGroups",
|
|
1016
|
+
"module": "src/utils/misc.ts"
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"kind": "js",
|
|
1021
|
+
"name": "applyCustomStyles",
|
|
1022
|
+
"declaration": {
|
|
1023
|
+
"name": "applyCustomStyles",
|
|
1024
|
+
"module": "src/utils/misc.ts"
|
|
1025
|
+
}
|
|
1026
|
+
}
|
|
1027
|
+
]
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
"kind": "javascript-module",
|
|
1031
|
+
"path": "src/types/index.ts",
|
|
1032
|
+
"declarations": [],
|
|
1033
|
+
"exports": [
|
|
1034
|
+
{
|
|
1035
|
+
"kind": "js",
|
|
1036
|
+
"name": "*",
|
|
1037
|
+
"declaration": {
|
|
1038
|
+
"name": "*",
|
|
1039
|
+
"package": "./public.types"
|
|
1052
1040
|
}
|
|
1053
1041
|
},
|
|
1054
1042
|
{
|
|
@@ -1056,11 +1044,23 @@
|
|
|
1056
1044
|
"name": "*",
|
|
1057
1045
|
"declaration": {
|
|
1058
1046
|
"name": "*",
|
|
1059
|
-
"package": "./
|
|
1047
|
+
"package": "./private.types"
|
|
1060
1048
|
}
|
|
1061
1049
|
}
|
|
1062
1050
|
]
|
|
1063
1051
|
},
|
|
1052
|
+
{
|
|
1053
|
+
"kind": "javascript-module",
|
|
1054
|
+
"path": "src/types/private.types.ts",
|
|
1055
|
+
"declarations": [],
|
|
1056
|
+
"exports": []
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"kind": "javascript-module",
|
|
1060
|
+
"path": "src/types/public.types.ts",
|
|
1061
|
+
"declarations": [],
|
|
1062
|
+
"exports": []
|
|
1063
|
+
},
|
|
1064
1064
|
{
|
|
1065
1065
|
"kind": "javascript-module",
|
|
1066
1066
|
"path": "src/main/expression-group/expression-group.styles.ts",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/expression-builder",
|
|
3
3
|
"description": "Genesis Foundation Expression Builder",
|
|
4
|
-
"version": "14.489.0
|
|
4
|
+
"version": "14.489.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/expression-builder.d.ts",
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@genesislcap/foundation-testing": "14.489.0
|
|
42
|
-
"@genesislcap/genx": "14.489.0
|
|
43
|
-
"@genesislcap/rollup-builder": "14.489.0
|
|
44
|
-
"@genesislcap/ts-builder": "14.489.0
|
|
45
|
-
"@genesislcap/uvu-playwright-builder": "14.489.0
|
|
46
|
-
"@genesislcap/vite-builder": "14.489.0
|
|
47
|
-
"@genesislcap/webpack-builder": "14.489.0
|
|
41
|
+
"@genesislcap/foundation-testing": "14.489.0",
|
|
42
|
+
"@genesislcap/genx": "14.489.0",
|
|
43
|
+
"@genesislcap/rollup-builder": "14.489.0",
|
|
44
|
+
"@genesislcap/ts-builder": "14.489.0",
|
|
45
|
+
"@genesislcap/uvu-playwright-builder": "14.489.0",
|
|
46
|
+
"@genesislcap/vite-builder": "14.489.0",
|
|
47
|
+
"@genesislcap/webpack-builder": "14.489.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@genesislcap/web-core": "14.489.0
|
|
50
|
+
"@genesislcap/web-core": "14.489.0",
|
|
51
51
|
"rfdc": "1.4.1"
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"require": "./dist/react.cjs"
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "6c2cd6192531517879d0cf306d86e84a194fe961"
|
|
74
74
|
}
|