@genesislcap/expression-builder 14.419.1 → 14.419.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +547 -547
- package/package.json +10 -10
|
@@ -157,50 +157,46 @@
|
|
|
157
157
|
},
|
|
158
158
|
{
|
|
159
159
|
"kind": "javascript-module",
|
|
160
|
-
"path": "src/
|
|
160
|
+
"path": "src/types/index.ts",
|
|
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",
|
|
161
184
|
"declarations": [],
|
|
162
185
|
"exports": []
|
|
163
186
|
},
|
|
164
187
|
{
|
|
165
188
|
"kind": "javascript-module",
|
|
166
|
-
"path": "src/
|
|
189
|
+
"path": "src/types/public.types.ts",
|
|
190
|
+
"declarations": [],
|
|
191
|
+
"exports": []
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"kind": "javascript-module",
|
|
195
|
+
"path": "src/utils/data-model.ts",
|
|
167
196
|
"declarations": [
|
|
168
197
|
{
|
|
169
198
|
"kind": "function",
|
|
170
|
-
"name": "
|
|
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",
|
|
199
|
+
"name": "groupToModelGroup",
|
|
204
200
|
"return": {
|
|
205
201
|
"type": {
|
|
206
202
|
"text": "ModelGroup"
|
|
@@ -208,184 +204,512 @@
|
|
|
208
204
|
},
|
|
209
205
|
"parameters": [
|
|
210
206
|
{
|
|
211
|
-
"name": "
|
|
212
|
-
"type": {
|
|
213
|
-
"text": "ModelGroup"
|
|
214
|
-
}
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
"name": "parentGroupId",
|
|
207
|
+
"name": "group",
|
|
218
208
|
"type": {
|
|
219
|
-
"text": "
|
|
209
|
+
"text": "Group"
|
|
220
210
|
}
|
|
221
211
|
},
|
|
222
212
|
{
|
|
223
|
-
"name": "
|
|
213
|
+
"name": "provider",
|
|
224
214
|
"type": {
|
|
225
|
-
"text": "
|
|
215
|
+
"text": "MetadataProvider"
|
|
226
216
|
}
|
|
227
217
|
}
|
|
228
|
-
]
|
|
218
|
+
],
|
|
219
|
+
"description": "Converts a Group to a ModelGroup (adds required metadata)"
|
|
229
220
|
},
|
|
230
221
|
{
|
|
231
222
|
"kind": "function",
|
|
232
|
-
"name": "
|
|
223
|
+
"name": "modelGroupToGroup",
|
|
233
224
|
"return": {
|
|
234
225
|
"type": {
|
|
235
|
-
"text": "
|
|
226
|
+
"text": ""
|
|
236
227
|
}
|
|
237
228
|
},
|
|
238
229
|
"parameters": [
|
|
239
230
|
{
|
|
240
|
-
"name": "
|
|
231
|
+
"name": "modelGroup",
|
|
241
232
|
"type": {
|
|
242
233
|
"text": "ModelGroup"
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
{
|
|
246
|
-
"name": "groupIdToDelete",
|
|
247
|
-
"type": {
|
|
248
|
-
"text": "string"
|
|
249
|
-
}
|
|
234
|
+
},
|
|
235
|
+
"description": "The internal ModelGroup to convert."
|
|
250
236
|
}
|
|
251
|
-
]
|
|
237
|
+
],
|
|
238
|
+
"description": "Converts a ModelGroup (internal data structure) to a public Group structure.\nThis function recursively processes the rules within the group."
|
|
252
239
|
},
|
|
253
240
|
{
|
|
254
241
|
"kind": "function",
|
|
255
|
-
"name": "
|
|
242
|
+
"name": "modelRuleToRule",
|
|
256
243
|
"return": {
|
|
257
244
|
"type": {
|
|
258
|
-
"text": "
|
|
245
|
+
"text": ""
|
|
259
246
|
}
|
|
260
247
|
},
|
|
261
248
|
"parameters": [
|
|
262
249
|
{
|
|
263
|
-
"name": "
|
|
264
|
-
"type": {
|
|
265
|
-
"text": "ModelGroup"
|
|
266
|
-
}
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
"name": "ruleIdToDelete",
|
|
250
|
+
"name": "modelRule",
|
|
270
251
|
"type": {
|
|
271
|
-
"text": "
|
|
272
|
-
}
|
|
252
|
+
"text": "ModelRule"
|
|
253
|
+
},
|
|
254
|
+
"description": "The internal ModelRule to convert."
|
|
273
255
|
}
|
|
274
|
-
]
|
|
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
|
+
}
|
|
275
268
|
},
|
|
276
269
|
{
|
|
277
|
-
"kind": "
|
|
278
|
-
"name": "
|
|
279
|
-
"
|
|
280
|
-
"
|
|
281
|
-
|
|
282
|
-
|
|
270
|
+
"kind": "js",
|
|
271
|
+
"name": "modelGroupToGroup",
|
|
272
|
+
"declaration": {
|
|
273
|
+
"name": "modelGroupToGroup",
|
|
274
|
+
"module": "src/utils/data-model.ts"
|
|
275
|
+
}
|
|
283
276
|
},
|
|
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": [
|
|
284
291
|
{
|
|
285
292
|
"kind": "function",
|
|
286
|
-
"name": "
|
|
287
|
-
"return": {
|
|
288
|
-
"type": {
|
|
289
|
-
"text": "ModelGroup"
|
|
290
|
-
}
|
|
291
|
-
},
|
|
293
|
+
"name": "formatDateString",
|
|
292
294
|
"parameters": [
|
|
293
295
|
{
|
|
294
|
-
"name": "
|
|
295
|
-
"type": {
|
|
296
|
-
"text": "ModelGroup"
|
|
297
|
-
}
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
"name": "groupIdToUpdate",
|
|
301
|
-
"type": {
|
|
302
|
-
"text": "string"
|
|
303
|
-
}
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"name": "newData",
|
|
296
|
+
"name": "date",
|
|
307
297
|
"type": {
|
|
308
|
-
"text": "
|
|
298
|
+
"text": "Date"
|
|
309
299
|
}
|
|
310
300
|
}
|
|
311
|
-
]
|
|
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."
|
|
312
303
|
},
|
|
313
304
|
{
|
|
314
305
|
"kind": "function",
|
|
315
|
-
"name": "
|
|
316
|
-
"return": {
|
|
317
|
-
"type": {
|
|
318
|
-
"text": "ModelGroup"
|
|
319
|
-
}
|
|
320
|
-
},
|
|
306
|
+
"name": "formatDateTimeString",
|
|
321
307
|
"parameters": [
|
|
322
308
|
{
|
|
323
|
-
"name": "
|
|
324
|
-
"type": {
|
|
325
|
-
"text": "ModelGroup"
|
|
326
|
-
}
|
|
327
|
-
},
|
|
328
|
-
{
|
|
329
|
-
"name": "ruleIdToUpdate",
|
|
330
|
-
"type": {
|
|
331
|
-
"text": "string"
|
|
332
|
-
}
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
"name": "newData",
|
|
309
|
+
"name": "date",
|
|
336
310
|
"type": {
|
|
337
|
-
"text": "
|
|
311
|
+
"text": "Date"
|
|
338
312
|
}
|
|
339
313
|
}
|
|
340
|
-
]
|
|
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."
|
|
341
316
|
}
|
|
342
317
|
],
|
|
343
318
|
"exports": [
|
|
344
319
|
{
|
|
345
320
|
"kind": "js",
|
|
346
|
-
"name": "
|
|
321
|
+
"name": "formatDateString",
|
|
347
322
|
"declaration": {
|
|
348
|
-
"name": "
|
|
349
|
-
"module": "src/
|
|
323
|
+
"name": "formatDateString",
|
|
324
|
+
"module": "src/utils/formatting.ts"
|
|
350
325
|
}
|
|
351
326
|
},
|
|
352
327
|
{
|
|
353
328
|
"kind": "js",
|
|
354
|
-
"name": "
|
|
329
|
+
"name": "formatDateTimeString",
|
|
355
330
|
"declaration": {
|
|
356
|
-
"name": "
|
|
357
|
-
"module": "src/
|
|
331
|
+
"name": "formatDateTimeString",
|
|
332
|
+
"module": "src/utils/formatting.ts"
|
|
358
333
|
}
|
|
359
|
-
}
|
|
334
|
+
}
|
|
335
|
+
]
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"kind": "javascript-module",
|
|
339
|
+
"path": "src/utils/index.ts",
|
|
340
|
+
"declarations": [],
|
|
341
|
+
"exports": [
|
|
360
342
|
{
|
|
361
343
|
"kind": "js",
|
|
362
|
-
"name": "
|
|
344
|
+
"name": "*",
|
|
363
345
|
"declaration": {
|
|
364
|
-
"name": "
|
|
365
|
-
"
|
|
346
|
+
"name": "*",
|
|
347
|
+
"package": "./data-model"
|
|
366
348
|
}
|
|
367
349
|
},
|
|
368
350
|
{
|
|
369
351
|
"kind": "js",
|
|
370
|
-
"name": "
|
|
352
|
+
"name": "*",
|
|
371
353
|
"declaration": {
|
|
372
|
-
"name": "
|
|
373
|
-
"
|
|
354
|
+
"name": "*",
|
|
355
|
+
"package": "./formatting"
|
|
374
356
|
}
|
|
375
357
|
},
|
|
376
358
|
{
|
|
377
359
|
"kind": "js",
|
|
378
|
-
"name": "
|
|
360
|
+
"name": "*",
|
|
379
361
|
"declaration": {
|
|
380
|
-
"name": "
|
|
381
|
-
"
|
|
362
|
+
"name": "*",
|
|
363
|
+
"package": "./misc"
|
|
382
364
|
}
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
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"
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"kind": "js",
|
|
710
|
+
"name": "updateGroupData",
|
|
711
|
+
"declaration": {
|
|
712
|
+
"name": "updateGroupData",
|
|
389
713
|
"module": "src/main/expression-builder.helpers.ts"
|
|
390
714
|
}
|
|
391
715
|
},
|
|
@@ -597,430 +921,110 @@
|
|
|
597
921
|
"name": "event",
|
|
598
922
|
"type": {
|
|
599
923
|
"text": "CustomEvent<EventsDetailMap[Events.DelRule]>"
|
|
600
|
-
}
|
|
601
|
-
}
|
|
602
|
-
]
|
|
603
|
-
},
|
|
604
|
-
{
|
|
605
|
-
"kind": "field",
|
|
606
|
-
"name": "handleUpdateGroupData",
|
|
607
|
-
"privacy": "private"
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
"kind": "method",
|
|
611
|
-
"name": "_handleUpdateGroupData",
|
|
612
|
-
"privacy": "private",
|
|
613
|
-
"parameters": [
|
|
614
|
-
{
|
|
615
|
-
"name": "event",
|
|
616
|
-
"type": {
|
|
617
|
-
"text": "CustomEvent<EventsDetailMap[Events.UpdateGroup]>"
|
|
618
|
-
}
|
|
619
|
-
}
|
|
620
|
-
]
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"kind": "field",
|
|
624
|
-
"name": "handleUpdateRuleData",
|
|
625
|
-
"privacy": "private"
|
|
626
|
-
},
|
|
627
|
-
{
|
|
628
|
-
"kind": "method",
|
|
629
|
-
"name": "_handleUpdateRuleData",
|
|
630
|
-
"privacy": "private",
|
|
631
|
-
"parameters": [
|
|
632
|
-
{
|
|
633
|
-
"name": "event",
|
|
634
|
-
"type": {
|
|
635
|
-
"text": "CustomEvent<EventsDetailMap[Events.UpdateRule]>"
|
|
636
|
-
}
|
|
637
|
-
}
|
|
638
|
-
]
|
|
639
|
-
}
|
|
640
|
-
],
|
|
641
|
-
"events": [
|
|
642
|
-
{
|
|
643
|
-
"name": "change",
|
|
644
|
-
"type": {
|
|
645
|
-
"text": "CustomEvent"
|
|
646
|
-
},
|
|
647
|
-
"description": "Fired when the expression model changes"
|
|
648
|
-
},
|
|
649
|
-
{
|
|
650
|
-
"description": "Bubbled when a nested group add is requested",
|
|
651
|
-
"name": "add-group"
|
|
652
|
-
},
|
|
653
|
-
{
|
|
654
|
-
"description": "Bubbled when a group delete is requested",
|
|
655
|
-
"name": "del-group"
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"description": "Bubbled when a rule add is requested",
|
|
659
|
-
"name": "add-rule"
|
|
660
|
-
},
|
|
661
|
-
{
|
|
662
|
-
"description": "Bubbled when a rule delete is requested",
|
|
663
|
-
"name": "del-rule"
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"description": "Bubbled when group data changes",
|
|
667
|
-
"name": "update-group"
|
|
668
|
-
},
|
|
669
|
-
{
|
|
670
|
-
"description": "Bubbled when rule data changes",
|
|
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": "./expression-builder"
|
|
712
|
-
}
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"kind": "js",
|
|
716
|
-
"name": "*",
|
|
717
|
-
"declaration": {
|
|
718
|
-
"name": "*",
|
|
719
|
-
"package": "./expression-builder.styles"
|
|
720
|
-
}
|
|
721
|
-
},
|
|
722
|
-
{
|
|
723
|
-
"kind": "js",
|
|
724
|
-
"name": "*",
|
|
725
|
-
"declaration": {
|
|
726
|
-
"name": "*",
|
|
727
|
-
"package": "./expression-builder.template"
|
|
728
|
-
}
|
|
729
|
-
}
|
|
730
|
-
]
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"kind": "javascript-module",
|
|
734
|
-
"path": "src/utils/data-model.ts",
|
|
735
|
-
"declarations": [
|
|
736
|
-
{
|
|
737
|
-
"kind": "function",
|
|
738
|
-
"name": "groupToModelGroup",
|
|
739
|
-
"return": {
|
|
740
|
-
"type": {
|
|
741
|
-
"text": "ModelGroup"
|
|
742
|
-
}
|
|
743
|
-
},
|
|
744
|
-
"parameters": [
|
|
745
|
-
{
|
|
746
|
-
"name": "group",
|
|
747
|
-
"type": {
|
|
748
|
-
"text": "Group"
|
|
749
|
-
}
|
|
750
|
-
},
|
|
751
|
-
{
|
|
752
|
-
"name": "provider",
|
|
753
|
-
"type": {
|
|
754
|
-
"text": "MetadataProvider"
|
|
755
|
-
}
|
|
756
|
-
}
|
|
757
|
-
],
|
|
758
|
-
"description": "Converts a Group to a ModelGroup (adds required metadata)"
|
|
759
|
-
},
|
|
760
|
-
{
|
|
761
|
-
"kind": "function",
|
|
762
|
-
"name": "modelGroupToGroup",
|
|
763
|
-
"return": {
|
|
764
|
-
"type": {
|
|
765
|
-
"text": ""
|
|
766
|
-
}
|
|
767
|
-
},
|
|
768
|
-
"parameters": [
|
|
769
|
-
{
|
|
770
|
-
"name": "modelGroup",
|
|
771
|
-
"type": {
|
|
772
|
-
"text": "ModelGroup"
|
|
773
|
-
},
|
|
774
|
-
"description": "The internal ModelGroup to convert."
|
|
775
|
-
}
|
|
776
|
-
],
|
|
777
|
-
"description": "Converts a ModelGroup (internal data structure) to a public Group structure.\nThis function recursively processes the rules within the group."
|
|
778
|
-
},
|
|
779
|
-
{
|
|
780
|
-
"kind": "function",
|
|
781
|
-
"name": "modelRuleToRule",
|
|
782
|
-
"return": {
|
|
783
|
-
"type": {
|
|
784
|
-
"text": ""
|
|
785
|
-
}
|
|
786
|
-
},
|
|
787
|
-
"parameters": [
|
|
788
|
-
{
|
|
789
|
-
"name": "modelRule",
|
|
790
|
-
"type": {
|
|
791
|
-
"text": "ModelRule"
|
|
792
|
-
},
|
|
793
|
-
"description": "The internal ModelRule to convert."
|
|
794
|
-
}
|
|
795
|
-
],
|
|
796
|
-
"description": "Converts a ModelRule (internal data structure) to a public Rule structure."
|
|
797
|
-
}
|
|
798
|
-
],
|
|
799
|
-
"exports": [
|
|
800
|
-
{
|
|
801
|
-
"kind": "js",
|
|
802
|
-
"name": "groupToModelGroup",
|
|
803
|
-
"declaration": {
|
|
804
|
-
"name": "groupToModelGroup",
|
|
805
|
-
"module": "src/utils/data-model.ts"
|
|
806
|
-
}
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
"kind": "js",
|
|
810
|
-
"name": "modelGroupToGroup",
|
|
811
|
-
"declaration": {
|
|
812
|
-
"name": "modelGroupToGroup",
|
|
813
|
-
"module": "src/utils/data-model.ts"
|
|
814
|
-
}
|
|
815
|
-
},
|
|
816
|
-
{
|
|
817
|
-
"kind": "js",
|
|
818
|
-
"name": "modelRuleToRule",
|
|
819
|
-
"declaration": {
|
|
820
|
-
"name": "modelRuleToRule",
|
|
821
|
-
"module": "src/utils/data-model.ts"
|
|
822
|
-
}
|
|
823
|
-
}
|
|
824
|
-
]
|
|
825
|
-
},
|
|
826
|
-
{
|
|
827
|
-
"kind": "javascript-module",
|
|
828
|
-
"path": "src/utils/formatting.ts",
|
|
829
|
-
"declarations": [
|
|
830
|
-
{
|
|
831
|
-
"kind": "function",
|
|
832
|
-
"name": "formatDateString",
|
|
833
|
-
"parameters": [
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
]
|
|
927
|
+
},
|
|
834
928
|
{
|
|
835
|
-
"
|
|
836
|
-
"
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
}
|
|
840
|
-
],
|
|
841
|
-
"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."
|
|
842
|
-
},
|
|
843
|
-
{
|
|
844
|
-
"kind": "function",
|
|
845
|
-
"name": "formatDateTimeString",
|
|
846
|
-
"parameters": [
|
|
929
|
+
"kind": "field",
|
|
930
|
+
"name": "handleUpdateGroupData",
|
|
931
|
+
"privacy": "private"
|
|
932
|
+
},
|
|
847
933
|
{
|
|
848
|
-
"
|
|
849
|
-
"
|
|
850
|
-
|
|
851
|
-
|
|
934
|
+
"kind": "method",
|
|
935
|
+
"name": "_handleUpdateGroupData",
|
|
936
|
+
"privacy": "private",
|
|
937
|
+
"parameters": [
|
|
938
|
+
{
|
|
939
|
+
"name": "event",
|
|
940
|
+
"type": {
|
|
941
|
+
"text": "CustomEvent<EventsDetailMap[Events.UpdateGroup]>"
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
]
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"kind": "field",
|
|
948
|
+
"name": "handleUpdateRuleData",
|
|
949
|
+
"privacy": "private"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"kind": "method",
|
|
953
|
+
"name": "_handleUpdateRuleData",
|
|
954
|
+
"privacy": "private",
|
|
955
|
+
"parameters": [
|
|
956
|
+
{
|
|
957
|
+
"name": "event",
|
|
958
|
+
"type": {
|
|
959
|
+
"text": "CustomEvent<EventsDetailMap[Events.UpdateRule]>"
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
]
|
|
852
963
|
}
|
|
853
964
|
],
|
|
854
|
-
"
|
|
855
|
-
}
|
|
856
|
-
],
|
|
857
|
-
"exports": [
|
|
858
|
-
{
|
|
859
|
-
"kind": "js",
|
|
860
|
-
"name": "formatDateString",
|
|
861
|
-
"declaration": {
|
|
862
|
-
"name": "formatDateString",
|
|
863
|
-
"module": "src/utils/formatting.ts"
|
|
864
|
-
}
|
|
865
|
-
},
|
|
866
|
-
{
|
|
867
|
-
"kind": "js",
|
|
868
|
-
"name": "formatDateTimeString",
|
|
869
|
-
"declaration": {
|
|
870
|
-
"name": "formatDateTimeString",
|
|
871
|
-
"module": "src/utils/formatting.ts"
|
|
872
|
-
}
|
|
873
|
-
}
|
|
874
|
-
]
|
|
875
|
-
},
|
|
876
|
-
{
|
|
877
|
-
"kind": "javascript-module",
|
|
878
|
-
"path": "src/utils/index.ts",
|
|
879
|
-
"declarations": [],
|
|
880
|
-
"exports": [
|
|
881
|
-
{
|
|
882
|
-
"kind": "js",
|
|
883
|
-
"name": "*",
|
|
884
|
-
"declaration": {
|
|
885
|
-
"name": "*",
|
|
886
|
-
"package": "./data-model"
|
|
887
|
-
}
|
|
888
|
-
},
|
|
889
|
-
{
|
|
890
|
-
"kind": "js",
|
|
891
|
-
"name": "*",
|
|
892
|
-
"declaration": {
|
|
893
|
-
"name": "*",
|
|
894
|
-
"package": "./formatting"
|
|
895
|
-
}
|
|
896
|
-
},
|
|
897
|
-
{
|
|
898
|
-
"kind": "js",
|
|
899
|
-
"name": "*",
|
|
900
|
-
"declaration": {
|
|
901
|
-
"name": "*",
|
|
902
|
-
"package": "./misc"
|
|
903
|
-
}
|
|
904
|
-
}
|
|
905
|
-
]
|
|
906
|
-
},
|
|
907
|
-
{
|
|
908
|
-
"kind": "javascript-module",
|
|
909
|
-
"path": "src/utils/misc.ts",
|
|
910
|
-
"declarations": [
|
|
911
|
-
{
|
|
912
|
-
"kind": "function",
|
|
913
|
-
"name": "getFieldInput",
|
|
914
|
-
"parameters": [
|
|
965
|
+
"events": [
|
|
915
966
|
{
|
|
916
|
-
"name": "
|
|
967
|
+
"name": "change",
|
|
917
968
|
"type": {
|
|
918
|
-
"text": "
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
},
|
|
923
|
-
{
|
|
924
|
-
"kind": "function",
|
|
925
|
-
"name": "getFieldType",
|
|
926
|
-
"parameters": [
|
|
969
|
+
"text": "CustomEvent"
|
|
970
|
+
},
|
|
971
|
+
"description": "Fired when the expression model changes"
|
|
972
|
+
},
|
|
927
973
|
{
|
|
928
|
-
"
|
|
929
|
-
"
|
|
930
|
-
|
|
931
|
-
}
|
|
932
|
-
}
|
|
933
|
-
]
|
|
934
|
-
},
|
|
935
|
-
{
|
|
936
|
-
"kind": "function",
|
|
937
|
-
"name": "processOptGroups",
|
|
938
|
-
"return": {
|
|
939
|
-
"type": {
|
|
940
|
-
"text": "(T | { optgroup: string | null; xs: T[] })[]"
|
|
941
|
-
}
|
|
942
|
-
},
|
|
943
|
-
"parameters": [
|
|
974
|
+
"description": "Bubbled when a nested group add is requested",
|
|
975
|
+
"name": "add-group"
|
|
976
|
+
},
|
|
944
977
|
{
|
|
945
|
-
"
|
|
946
|
-
"
|
|
947
|
-
|
|
948
|
-
}
|
|
949
|
-
}
|
|
950
|
-
]
|
|
951
|
-
},
|
|
952
|
-
{
|
|
953
|
-
"kind": "function",
|
|
954
|
-
"name": "applyCustomStyles",
|
|
955
|
-
"return": {
|
|
956
|
-
"type": {
|
|
957
|
-
"text": "void"
|
|
958
|
-
}
|
|
959
|
-
},
|
|
960
|
-
"parameters": [
|
|
978
|
+
"description": "Bubbled when a group delete is requested",
|
|
979
|
+
"name": "del-group"
|
|
980
|
+
},
|
|
961
981
|
{
|
|
962
|
-
"
|
|
963
|
-
"
|
|
964
|
-
"text": "HTMLElement"
|
|
965
|
-
},
|
|
966
|
-
"description": "The web component instance"
|
|
982
|
+
"description": "Bubbled when a rule add is requested",
|
|
983
|
+
"name": "add-rule"
|
|
967
984
|
},
|
|
968
985
|
{
|
|
969
|
-
"
|
|
970
|
-
"
|
|
971
|
-
"text": "Styles | undefined | null"
|
|
972
|
-
},
|
|
973
|
-
"description": "The styles configuration object"
|
|
986
|
+
"description": "Bubbled when a rule delete is requested",
|
|
987
|
+
"name": "del-rule"
|
|
974
988
|
},
|
|
975
989
|
{
|
|
976
|
-
"
|
|
977
|
-
"
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
"description": "
|
|
990
|
+
"description": "Bubbled when group data changes",
|
|
991
|
+
"name": "update-group"
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"description": "Bubbled when rule data changes",
|
|
995
|
+
"name": "update-rule"
|
|
981
996
|
}
|
|
982
997
|
],
|
|
983
|
-
"
|
|
998
|
+
"superclass": {
|
|
999
|
+
"name": "GenesisElement",
|
|
1000
|
+
"package": "@genesislcap/web-core"
|
|
1001
|
+
},
|
|
1002
|
+
"tagName": "expression-builder",
|
|
1003
|
+
"customElement": true
|
|
984
1004
|
}
|
|
985
1005
|
],
|
|
986
1006
|
"exports": [
|
|
987
1007
|
{
|
|
988
1008
|
"kind": "js",
|
|
989
|
-
"name": "
|
|
990
|
-
"declaration": {
|
|
991
|
-
"name": "getFieldInput",
|
|
992
|
-
"module": "src/utils/misc.ts"
|
|
993
|
-
}
|
|
994
|
-
},
|
|
995
|
-
{
|
|
996
|
-
"kind": "js",
|
|
997
|
-
"name": "getFieldType",
|
|
998
|
-
"declaration": {
|
|
999
|
-
"name": "getFieldType",
|
|
1000
|
-
"module": "src/utils/misc.ts"
|
|
1001
|
-
}
|
|
1002
|
-
},
|
|
1003
|
-
{
|
|
1004
|
-
"kind": "js",
|
|
1005
|
-
"name": "processOptGroups",
|
|
1009
|
+
"name": "ExpressionBuilder",
|
|
1006
1010
|
"declaration": {
|
|
1007
|
-
"name": "
|
|
1008
|
-
"module": "src/
|
|
1011
|
+
"name": "ExpressionBuilder",
|
|
1012
|
+
"module": "src/main/expression-builder.ts"
|
|
1009
1013
|
}
|
|
1010
1014
|
},
|
|
1011
1015
|
{
|
|
1012
|
-
"kind": "
|
|
1013
|
-
"name": "
|
|
1016
|
+
"kind": "custom-element-definition",
|
|
1017
|
+
"name": "expression-builder",
|
|
1014
1018
|
"declaration": {
|
|
1015
|
-
"name": "
|
|
1016
|
-
"module": "src/
|
|
1019
|
+
"name": "ExpressionBuilder",
|
|
1020
|
+
"module": "src/main/expression-builder.ts"
|
|
1017
1021
|
}
|
|
1018
1022
|
}
|
|
1019
1023
|
]
|
|
1020
1024
|
},
|
|
1021
1025
|
{
|
|
1022
1026
|
"kind": "javascript-module",
|
|
1023
|
-
"path": "src/
|
|
1027
|
+
"path": "src/main/index.ts",
|
|
1024
1028
|
"declarations": [],
|
|
1025
1029
|
"exports": [
|
|
1026
1030
|
{
|
|
@@ -1028,7 +1032,7 @@
|
|
|
1028
1032
|
"name": "*",
|
|
1029
1033
|
"declaration": {
|
|
1030
1034
|
"name": "*",
|
|
1031
|
-
"package": "./
|
|
1035
|
+
"package": "./expression-builder"
|
|
1032
1036
|
}
|
|
1033
1037
|
},
|
|
1034
1038
|
{
|
|
@@ -1036,23 +1040,19 @@
|
|
|
1036
1040
|
"name": "*",
|
|
1037
1041
|
"declaration": {
|
|
1038
1042
|
"name": "*",
|
|
1039
|
-
"package": "./
|
|
1043
|
+
"package": "./expression-builder.styles"
|
|
1044
|
+
}
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"kind": "js",
|
|
1048
|
+
"name": "*",
|
|
1049
|
+
"declaration": {
|
|
1050
|
+
"name": "*",
|
|
1051
|
+
"package": "./expression-builder.template"
|
|
1040
1052
|
}
|
|
1041
1053
|
}
|
|
1042
1054
|
]
|
|
1043
1055
|
},
|
|
1044
|
-
{
|
|
1045
|
-
"kind": "javascript-module",
|
|
1046
|
-
"path": "src/types/private.types.ts",
|
|
1047
|
-
"declarations": [],
|
|
1048
|
-
"exports": []
|
|
1049
|
-
},
|
|
1050
|
-
{
|
|
1051
|
-
"kind": "javascript-module",
|
|
1052
|
-
"path": "src/types/public.types.ts",
|
|
1053
|
-
"declarations": [],
|
|
1054
|
-
"exports": []
|
|
1055
|
-
},
|
|
1056
1056
|
{
|
|
1057
1057
|
"kind": "javascript-module",
|
|
1058
1058
|
"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.419.
|
|
4
|
+
"version": "14.419.2",
|
|
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.419.
|
|
42
|
-
"@genesislcap/genx": "14.419.
|
|
43
|
-
"@genesislcap/rollup-builder": "14.419.
|
|
44
|
-
"@genesislcap/ts-builder": "14.419.
|
|
45
|
-
"@genesislcap/uvu-playwright-builder": "14.419.
|
|
46
|
-
"@genesislcap/vite-builder": "14.419.
|
|
47
|
-
"@genesislcap/webpack-builder": "14.419.
|
|
41
|
+
"@genesislcap/foundation-testing": "14.419.2",
|
|
42
|
+
"@genesislcap/genx": "14.419.2",
|
|
43
|
+
"@genesislcap/rollup-builder": "14.419.2",
|
|
44
|
+
"@genesislcap/ts-builder": "14.419.2",
|
|
45
|
+
"@genesislcap/uvu-playwright-builder": "14.419.2",
|
|
46
|
+
"@genesislcap/vite-builder": "14.419.2",
|
|
47
|
+
"@genesislcap/webpack-builder": "14.419.2"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@genesislcap/web-core": "14.419.
|
|
50
|
+
"@genesislcap/web-core": "14.419.2",
|
|
51
51
|
"rfdc": "1.4.1"
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"peerDependencies": {
|
|
74
74
|
"@microsoft/fast-react-wrapper": ">=0.3.0"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "a9bf0fc6bd28727bf0f95f63b227aee7c418470f"
|
|
77
77
|
}
|