@genesislcap/expression-builder 15.3.2-FUI-2571-formatters.1 → 15.3.2-FUI-2591.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +490 -490
- package/package.json +10 -10
|
@@ -157,11 +157,50 @@
|
|
|
157
157
|
},
|
|
158
158
|
{
|
|
159
159
|
"kind": "javascript-module",
|
|
160
|
-
"path": "src/
|
|
160
|
+
"path": "src/main/events.ts",
|
|
161
|
+
"declarations": [],
|
|
162
|
+
"exports": []
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"kind": "javascript-module",
|
|
166
|
+
"path": "src/main/expression-builder.helpers.ts",
|
|
161
167
|
"declarations": [
|
|
162
168
|
{
|
|
163
169
|
"kind": "function",
|
|
164
|
-
"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",
|
|
165
204
|
"return": {
|
|
166
205
|
"type": {
|
|
167
206
|
"text": "ModelGroup"
|
|
@@ -169,528 +208,200 @@
|
|
|
169
208
|
},
|
|
170
209
|
"parameters": [
|
|
171
210
|
{
|
|
172
|
-
"name": "
|
|
211
|
+
"name": "model",
|
|
173
212
|
"type": {
|
|
174
|
-
"text": "
|
|
213
|
+
"text": "ModelGroup"
|
|
175
214
|
}
|
|
176
215
|
},
|
|
177
216
|
{
|
|
178
|
-
"name": "
|
|
217
|
+
"name": "parentGroupId",
|
|
179
218
|
"type": {
|
|
180
|
-
"text": "
|
|
219
|
+
"text": "string"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"name": "newItem",
|
|
224
|
+
"type": {
|
|
225
|
+
"text": "ModelGroup | ModelRule"
|
|
181
226
|
}
|
|
182
227
|
}
|
|
183
|
-
]
|
|
184
|
-
"description": "Converts a Group to a ModelGroup (adds required metadata)"
|
|
228
|
+
]
|
|
185
229
|
},
|
|
186
230
|
{
|
|
187
231
|
"kind": "function",
|
|
188
|
-
"name": "
|
|
232
|
+
"name": "deleteGroup",
|
|
189
233
|
"return": {
|
|
190
234
|
"type": {
|
|
191
|
-
"text": ""
|
|
235
|
+
"text": "ModelGroup"
|
|
192
236
|
}
|
|
193
237
|
},
|
|
194
238
|
"parameters": [
|
|
195
239
|
{
|
|
196
|
-
"name": "
|
|
240
|
+
"name": "model",
|
|
197
241
|
"type": {
|
|
198
242
|
"text": "ModelGroup"
|
|
199
|
-
}
|
|
200
|
-
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "groupIdToDelete",
|
|
247
|
+
"type": {
|
|
248
|
+
"text": "string"
|
|
249
|
+
}
|
|
201
250
|
}
|
|
202
|
-
]
|
|
203
|
-
"description": "Converts a ModelGroup (internal data structure) to a public Group structure.\nThis function recursively processes the rules within the group."
|
|
251
|
+
]
|
|
204
252
|
},
|
|
205
253
|
{
|
|
206
254
|
"kind": "function",
|
|
207
|
-
"name": "
|
|
255
|
+
"name": "deleteRule",
|
|
208
256
|
"return": {
|
|
209
257
|
"type": {
|
|
210
|
-
"text": ""
|
|
258
|
+
"text": "ModelGroup"
|
|
211
259
|
}
|
|
212
260
|
},
|
|
213
261
|
"parameters": [
|
|
214
262
|
{
|
|
215
|
-
"name": "
|
|
263
|
+
"name": "model",
|
|
216
264
|
"type": {
|
|
217
|
-
"text": "
|
|
218
|
-
}
|
|
219
|
-
|
|
265
|
+
"text": "ModelGroup"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "ruleIdToDelete",
|
|
270
|
+
"type": {
|
|
271
|
+
"text": "string"
|
|
272
|
+
}
|
|
220
273
|
}
|
|
221
|
-
]
|
|
222
|
-
"description": "Converts a ModelRule (internal data structure) to a public Rule structure."
|
|
223
|
-
}
|
|
224
|
-
],
|
|
225
|
-
"exports": [
|
|
226
|
-
{
|
|
227
|
-
"kind": "js",
|
|
228
|
-
"name": "groupToModelGroup",
|
|
229
|
-
"declaration": {
|
|
230
|
-
"name": "groupToModelGroup",
|
|
231
|
-
"module": "src/utils/data-model.ts"
|
|
232
|
-
}
|
|
274
|
+
]
|
|
233
275
|
},
|
|
234
276
|
{
|
|
235
|
-
"kind": "
|
|
236
|
-
"name": "
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
|
|
240
|
-
|
|
277
|
+
"kind": "variable",
|
|
278
|
+
"name": "ROOT_GROUP",
|
|
279
|
+
"type": {
|
|
280
|
+
"text": "string"
|
|
281
|
+
},
|
|
282
|
+
"default": "'group-root'"
|
|
241
283
|
},
|
|
242
|
-
{
|
|
243
|
-
"kind": "js",
|
|
244
|
-
"name": "modelRuleToRule",
|
|
245
|
-
"declaration": {
|
|
246
|
-
"name": "modelRuleToRule",
|
|
247
|
-
"module": "src/utils/data-model.ts"
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
]
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"kind": "javascript-module",
|
|
254
|
-
"path": "src/utils/formatting.ts",
|
|
255
|
-
"declarations": [
|
|
256
284
|
{
|
|
257
285
|
"kind": "function",
|
|
258
|
-
"name": "
|
|
286
|
+
"name": "updateGroupData",
|
|
287
|
+
"return": {
|
|
288
|
+
"type": {
|
|
289
|
+
"text": "ModelGroup"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
259
292
|
"parameters": [
|
|
260
293
|
{
|
|
261
|
-
"name": "
|
|
294
|
+
"name": "model",
|
|
262
295
|
"type": {
|
|
263
|
-
"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']"
|
|
264
309
|
}
|
|
265
310
|
}
|
|
266
|
-
]
|
|
267
|
-
"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
|
+
]
|
|
268
312
|
},
|
|
269
313
|
{
|
|
270
314
|
"kind": "function",
|
|
271
|
-
"name": "
|
|
315
|
+
"name": "updateRuleData",
|
|
316
|
+
"return": {
|
|
317
|
+
"type": {
|
|
318
|
+
"text": "ModelGroup"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
272
321
|
"parameters": [
|
|
273
322
|
{
|
|
274
|
-
"name": "
|
|
323
|
+
"name": "model",
|
|
275
324
|
"type": {
|
|
276
|
-
"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']"
|
|
277
338
|
}
|
|
278
339
|
}
|
|
279
|
-
]
|
|
280
|
-
"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
|
+
]
|
|
281
341
|
}
|
|
282
342
|
],
|
|
283
343
|
"exports": [
|
|
284
344
|
{
|
|
285
345
|
"kind": "js",
|
|
286
|
-
"name": "
|
|
346
|
+
"name": "findOperateOnGroup",
|
|
287
347
|
"declaration": {
|
|
288
|
-
"name": "
|
|
289
|
-
"module": "src/
|
|
348
|
+
"name": "findOperateOnGroup",
|
|
349
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
290
350
|
}
|
|
291
351
|
},
|
|
292
352
|
{
|
|
293
353
|
"kind": "js",
|
|
294
|
-
"name": "
|
|
354
|
+
"name": "addGroupOrRule",
|
|
295
355
|
"declaration": {
|
|
296
|
-
"name": "
|
|
297
|
-
"module": "src/
|
|
356
|
+
"name": "addGroupOrRule",
|
|
357
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
298
358
|
}
|
|
299
|
-
}
|
|
300
|
-
]
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
"kind": "javascript-module",
|
|
304
|
-
"path": "src/utils/index.ts",
|
|
305
|
-
"declarations": [],
|
|
306
|
-
"exports": [
|
|
359
|
+
},
|
|
307
360
|
{
|
|
308
361
|
"kind": "js",
|
|
309
|
-
"name": "
|
|
362
|
+
"name": "deleteGroup",
|
|
310
363
|
"declaration": {
|
|
311
|
-
"name": "
|
|
312
|
-
"
|
|
364
|
+
"name": "deleteGroup",
|
|
365
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
313
366
|
}
|
|
314
367
|
},
|
|
315
368
|
{
|
|
316
369
|
"kind": "js",
|
|
317
|
-
"name": "
|
|
370
|
+
"name": "deleteRule",
|
|
318
371
|
"declaration": {
|
|
319
|
-
"name": "
|
|
320
|
-
"
|
|
372
|
+
"name": "deleteRule",
|
|
373
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
321
374
|
}
|
|
322
375
|
},
|
|
323
376
|
{
|
|
324
377
|
"kind": "js",
|
|
325
|
-
"name": "
|
|
378
|
+
"name": "ROOT_GROUP",
|
|
326
379
|
"declaration": {
|
|
327
|
-
"name": "
|
|
328
|
-
"
|
|
380
|
+
"name": "ROOT_GROUP",
|
|
381
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"kind": "js",
|
|
386
|
+
"name": "updateGroupData",
|
|
387
|
+
"declaration": {
|
|
388
|
+
"name": "updateGroupData",
|
|
389
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"kind": "js",
|
|
394
|
+
"name": "updateRuleData",
|
|
395
|
+
"declaration": {
|
|
396
|
+
"name": "updateRuleData",
|
|
397
|
+
"module": "src/main/expression-builder.helpers.ts"
|
|
329
398
|
}
|
|
330
399
|
}
|
|
331
400
|
]
|
|
332
401
|
},
|
|
333
402
|
{
|
|
334
403
|
"kind": "javascript-module",
|
|
335
|
-
"path": "src/
|
|
336
|
-
"declarations": [
|
|
337
|
-
{
|
|
338
|
-
"kind": "function",
|
|
339
|
-
"name": "getFieldInput",
|
|
340
|
-
"parameters": [
|
|
341
|
-
{
|
|
342
|
-
"name": "context",
|
|
343
|
-
"type": {
|
|
344
|
-
"text": "RuleValue | ModelRule"
|
|
345
|
-
}
|
|
346
|
-
}
|
|
347
|
-
]
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
"kind": "function",
|
|
351
|
-
"name": "getFieldType",
|
|
352
|
-
"parameters": [
|
|
353
|
-
{
|
|
354
|
-
"name": "context",
|
|
355
|
-
"type": {
|
|
356
|
-
"text": "RuleValue | ModelRule"
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
]
|
|
360
|
-
},
|
|
361
|
-
{
|
|
362
|
-
"kind": "function",
|
|
363
|
-
"name": "processOptGroups",
|
|
364
|
-
"return": {
|
|
365
|
-
"type": {
|
|
366
|
-
"text": "(T | { optgroup: string | null; xs: T[] })[]"
|
|
367
|
-
}
|
|
368
|
-
},
|
|
369
|
-
"parameters": [
|
|
370
|
-
{
|
|
371
|
-
"name": "xs",
|
|
372
|
-
"type": {
|
|
373
|
-
"text": "T[]"
|
|
374
|
-
}
|
|
375
|
-
}
|
|
376
|
-
]
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
"kind": "function",
|
|
380
|
-
"name": "applyCustomStyles",
|
|
381
|
-
"return": {
|
|
382
|
-
"type": {
|
|
383
|
-
"text": "void"
|
|
384
|
-
}
|
|
385
|
-
},
|
|
386
|
-
"parameters": [
|
|
387
|
-
{
|
|
388
|
-
"name": "component",
|
|
389
|
-
"type": {
|
|
390
|
-
"text": "HTMLElement"
|
|
391
|
-
},
|
|
392
|
-
"description": "The web component instance"
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"name": "styles",
|
|
396
|
-
"type": {
|
|
397
|
-
"text": "Styles | undefined | null"
|
|
398
|
-
},
|
|
399
|
-
"description": "The styles configuration object"
|
|
400
|
-
},
|
|
401
|
-
{
|
|
402
|
-
"name": "styleKey",
|
|
403
|
-
"type": {
|
|
404
|
-
"text": "keyof NonNullable<Styles['customStyles']>"
|
|
405
|
-
},
|
|
406
|
-
"description": "The key in styles.customStyles to use for custom styles"
|
|
407
|
-
}
|
|
408
|
-
],
|
|
409
|
-
"description": "Utility function to add custom styles to a web component's shadow root"
|
|
410
|
-
}
|
|
411
|
-
],
|
|
412
|
-
"exports": [
|
|
413
|
-
{
|
|
414
|
-
"kind": "js",
|
|
415
|
-
"name": "getFieldInput",
|
|
416
|
-
"declaration": {
|
|
417
|
-
"name": "getFieldInput",
|
|
418
|
-
"module": "src/utils/misc.ts"
|
|
419
|
-
}
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
"kind": "js",
|
|
423
|
-
"name": "getFieldType",
|
|
424
|
-
"declaration": {
|
|
425
|
-
"name": "getFieldType",
|
|
426
|
-
"module": "src/utils/misc.ts"
|
|
427
|
-
}
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
"kind": "js",
|
|
431
|
-
"name": "processOptGroups",
|
|
432
|
-
"declaration": {
|
|
433
|
-
"name": "processOptGroups",
|
|
434
|
-
"module": "src/utils/misc.ts"
|
|
435
|
-
}
|
|
436
|
-
},
|
|
437
|
-
{
|
|
438
|
-
"kind": "js",
|
|
439
|
-
"name": "applyCustomStyles",
|
|
440
|
-
"declaration": {
|
|
441
|
-
"name": "applyCustomStyles",
|
|
442
|
-
"module": "src/utils/misc.ts"
|
|
443
|
-
}
|
|
444
|
-
}
|
|
445
|
-
]
|
|
446
|
-
},
|
|
447
|
-
{
|
|
448
|
-
"kind": "javascript-module",
|
|
449
|
-
"path": "src/main/events.ts",
|
|
450
|
-
"declarations": [],
|
|
451
|
-
"exports": []
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
"kind": "javascript-module",
|
|
455
|
-
"path": "src/main/expression-builder.helpers.ts",
|
|
456
|
-
"declarations": [
|
|
457
|
-
{
|
|
458
|
-
"kind": "function",
|
|
459
|
-
"name": "findOperateOnGroup",
|
|
460
|
-
"return": {
|
|
461
|
-
"type": {
|
|
462
|
-
"text": ""
|
|
463
|
-
}
|
|
464
|
-
},
|
|
465
|
-
"parameters": [
|
|
466
|
-
{
|
|
467
|
-
"name": "model",
|
|
468
|
-
"type": {
|
|
469
|
-
"text": "ModelGroup"
|
|
470
|
-
},
|
|
471
|
-
"description": "The root group to start searching from"
|
|
472
|
-
},
|
|
473
|
-
{
|
|
474
|
-
"name": "groupId",
|
|
475
|
-
"type": {
|
|
476
|
-
"text": "string"
|
|
477
|
-
},
|
|
478
|
-
"description": "The Group ID to find"
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"name": "fn",
|
|
482
|
-
"type": {
|
|
483
|
-
"text": "ChildrenOperatorFn"
|
|
484
|
-
},
|
|
485
|
-
"description": "The function to apply to the children of the found group. A *new* object must be created and returned"
|
|
486
|
-
}
|
|
487
|
-
],
|
|
488
|
-
"description": "Finds a group within a model and applies a function to create a new children"
|
|
489
|
-
},
|
|
490
|
-
{
|
|
491
|
-
"kind": "function",
|
|
492
|
-
"name": "addGroupOrRule",
|
|
493
|
-
"return": {
|
|
494
|
-
"type": {
|
|
495
|
-
"text": "ModelGroup"
|
|
496
|
-
}
|
|
497
|
-
},
|
|
498
|
-
"parameters": [
|
|
499
|
-
{
|
|
500
|
-
"name": "model",
|
|
501
|
-
"type": {
|
|
502
|
-
"text": "ModelGroup"
|
|
503
|
-
}
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"name": "parentGroupId",
|
|
507
|
-
"type": {
|
|
508
|
-
"text": "string"
|
|
509
|
-
}
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
"name": "newItem",
|
|
513
|
-
"type": {
|
|
514
|
-
"text": "ModelGroup | ModelRule"
|
|
515
|
-
}
|
|
516
|
-
}
|
|
517
|
-
]
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
"kind": "function",
|
|
521
|
-
"name": "deleteGroup",
|
|
522
|
-
"return": {
|
|
523
|
-
"type": {
|
|
524
|
-
"text": "ModelGroup"
|
|
525
|
-
}
|
|
526
|
-
},
|
|
527
|
-
"parameters": [
|
|
528
|
-
{
|
|
529
|
-
"name": "model",
|
|
530
|
-
"type": {
|
|
531
|
-
"text": "ModelGroup"
|
|
532
|
-
}
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
"name": "groupIdToDelete",
|
|
536
|
-
"type": {
|
|
537
|
-
"text": "string"
|
|
538
|
-
}
|
|
539
|
-
}
|
|
540
|
-
]
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
"kind": "function",
|
|
544
|
-
"name": "deleteRule",
|
|
545
|
-
"return": {
|
|
546
|
-
"type": {
|
|
547
|
-
"text": "ModelGroup"
|
|
548
|
-
}
|
|
549
|
-
},
|
|
550
|
-
"parameters": [
|
|
551
|
-
{
|
|
552
|
-
"name": "model",
|
|
553
|
-
"type": {
|
|
554
|
-
"text": "ModelGroup"
|
|
555
|
-
}
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
"name": "ruleIdToDelete",
|
|
559
|
-
"type": {
|
|
560
|
-
"text": "string"
|
|
561
|
-
}
|
|
562
|
-
}
|
|
563
|
-
]
|
|
564
|
-
},
|
|
565
|
-
{
|
|
566
|
-
"kind": "variable",
|
|
567
|
-
"name": "ROOT_GROUP",
|
|
568
|
-
"type": {
|
|
569
|
-
"text": "string"
|
|
570
|
-
},
|
|
571
|
-
"default": "'group-root'"
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
"kind": "function",
|
|
575
|
-
"name": "updateGroupData",
|
|
576
|
-
"return": {
|
|
577
|
-
"type": {
|
|
578
|
-
"text": "ModelGroup"
|
|
579
|
-
}
|
|
580
|
-
},
|
|
581
|
-
"parameters": [
|
|
582
|
-
{
|
|
583
|
-
"name": "model",
|
|
584
|
-
"type": {
|
|
585
|
-
"text": "ModelGroup"
|
|
586
|
-
}
|
|
587
|
-
},
|
|
588
|
-
{
|
|
589
|
-
"name": "groupIdToUpdate",
|
|
590
|
-
"type": {
|
|
591
|
-
"text": "string"
|
|
592
|
-
}
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
"name": "newData",
|
|
596
|
-
"type": {
|
|
597
|
-
"text": "EventsDetailMap[Events.UpdateGroup]['newData']"
|
|
598
|
-
}
|
|
599
|
-
}
|
|
600
|
-
]
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
"kind": "function",
|
|
604
|
-
"name": "updateRuleData",
|
|
605
|
-
"return": {
|
|
606
|
-
"type": {
|
|
607
|
-
"text": "ModelGroup"
|
|
608
|
-
}
|
|
609
|
-
},
|
|
610
|
-
"parameters": [
|
|
611
|
-
{
|
|
612
|
-
"name": "model",
|
|
613
|
-
"type": {
|
|
614
|
-
"text": "ModelGroup"
|
|
615
|
-
}
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
"name": "ruleIdToUpdate",
|
|
619
|
-
"type": {
|
|
620
|
-
"text": "string"
|
|
621
|
-
}
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
"name": "newData",
|
|
625
|
-
"type": {
|
|
626
|
-
"text": "EventsDetailMap[Events.UpdateRule]['newData']"
|
|
627
|
-
}
|
|
628
|
-
}
|
|
629
|
-
]
|
|
630
|
-
}
|
|
631
|
-
],
|
|
632
|
-
"exports": [
|
|
633
|
-
{
|
|
634
|
-
"kind": "js",
|
|
635
|
-
"name": "findOperateOnGroup",
|
|
636
|
-
"declaration": {
|
|
637
|
-
"name": "findOperateOnGroup",
|
|
638
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
639
|
-
}
|
|
640
|
-
},
|
|
641
|
-
{
|
|
642
|
-
"kind": "js",
|
|
643
|
-
"name": "addGroupOrRule",
|
|
644
|
-
"declaration": {
|
|
645
|
-
"name": "addGroupOrRule",
|
|
646
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
647
|
-
}
|
|
648
|
-
},
|
|
649
|
-
{
|
|
650
|
-
"kind": "js",
|
|
651
|
-
"name": "deleteGroup",
|
|
652
|
-
"declaration": {
|
|
653
|
-
"name": "deleteGroup",
|
|
654
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
655
|
-
}
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"kind": "js",
|
|
659
|
-
"name": "deleteRule",
|
|
660
|
-
"declaration": {
|
|
661
|
-
"name": "deleteRule",
|
|
662
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
663
|
-
}
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"kind": "js",
|
|
667
|
-
"name": "ROOT_GROUP",
|
|
668
|
-
"declaration": {
|
|
669
|
-
"name": "ROOT_GROUP",
|
|
670
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
671
|
-
}
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
"kind": "js",
|
|
675
|
-
"name": "updateGroupData",
|
|
676
|
-
"declaration": {
|
|
677
|
-
"name": "updateGroupData",
|
|
678
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
679
|
-
}
|
|
680
|
-
},
|
|
681
|
-
{
|
|
682
|
-
"kind": "js",
|
|
683
|
-
"name": "updateRuleData",
|
|
684
|
-
"declaration": {
|
|
685
|
-
"name": "updateRuleData",
|
|
686
|
-
"module": "src/main/expression-builder.helpers.ts"
|
|
687
|
-
}
|
|
688
|
-
}
|
|
689
|
-
]
|
|
690
|
-
},
|
|
691
|
-
{
|
|
692
|
-
"kind": "javascript-module",
|
|
693
|
-
"path": "src/main/expression-builder.styles.ts",
|
|
404
|
+
"path": "src/main/expression-builder.styles.ts",
|
|
694
405
|
"declarations": [
|
|
695
406
|
{
|
|
696
407
|
"kind": "variable",
|
|
@@ -927,69 +638,252 @@
|
|
|
927
638
|
]
|
|
928
639
|
}
|
|
929
640
|
],
|
|
930
|
-
"events": [
|
|
641
|
+
"events": [
|
|
642
|
+
{
|
|
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": [
|
|
931
777
|
{
|
|
932
|
-
"name": "
|
|
778
|
+
"name": "modelGroup",
|
|
933
779
|
"type": {
|
|
934
|
-
"text": "
|
|
780
|
+
"text": "ModelGroup"
|
|
935
781
|
},
|
|
936
|
-
"description": "
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
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": [
|
|
950
796
|
{
|
|
951
|
-
"
|
|
952
|
-
"
|
|
953
|
-
|
|
797
|
+
"name": "modelRule",
|
|
798
|
+
"type": {
|
|
799
|
+
"text": "ModelRule"
|
|
800
|
+
},
|
|
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": [
|
|
954
842
|
{
|
|
955
|
-
"
|
|
956
|
-
"
|
|
957
|
-
|
|
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": [
|
|
958
855
|
{
|
|
959
|
-
"
|
|
960
|
-
"
|
|
856
|
+
"name": "date",
|
|
857
|
+
"type": {
|
|
858
|
+
"text": "Date"
|
|
859
|
+
}
|
|
961
860
|
}
|
|
962
861
|
],
|
|
963
|
-
"
|
|
964
|
-
"name": "GenesisElement",
|
|
965
|
-
"package": "@genesislcap/web-core"
|
|
966
|
-
},
|
|
967
|
-
"tagName": "expression-builder",
|
|
968
|
-
"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."
|
|
969
863
|
}
|
|
970
864
|
],
|
|
971
865
|
"exports": [
|
|
972
866
|
{
|
|
973
867
|
"kind": "js",
|
|
974
|
-
"name": "
|
|
868
|
+
"name": "formatDateString",
|
|
975
869
|
"declaration": {
|
|
976
|
-
"name": "
|
|
977
|
-
"module": "src/
|
|
870
|
+
"name": "formatDateString",
|
|
871
|
+
"module": "src/utils/formatting.ts"
|
|
978
872
|
}
|
|
979
873
|
},
|
|
980
874
|
{
|
|
981
|
-
"kind": "
|
|
982
|
-
"name": "
|
|
875
|
+
"kind": "js",
|
|
876
|
+
"name": "formatDateTimeString",
|
|
983
877
|
"declaration": {
|
|
984
|
-
"name": "
|
|
985
|
-
"module": "src/
|
|
878
|
+
"name": "formatDateTimeString",
|
|
879
|
+
"module": "src/utils/formatting.ts"
|
|
986
880
|
}
|
|
987
881
|
}
|
|
988
882
|
]
|
|
989
883
|
},
|
|
990
884
|
{
|
|
991
885
|
"kind": "javascript-module",
|
|
992
|
-
"path": "src/
|
|
886
|
+
"path": "src/utils/index.ts",
|
|
993
887
|
"declarations": [],
|
|
994
888
|
"exports": [
|
|
995
889
|
{
|
|
@@ -997,7 +891,7 @@
|
|
|
997
891
|
"name": "*",
|
|
998
892
|
"declaration": {
|
|
999
893
|
"name": "*",
|
|
1000
|
-
"package": "./
|
|
894
|
+
"package": "./data-model"
|
|
1001
895
|
}
|
|
1002
896
|
},
|
|
1003
897
|
{
|
|
@@ -1005,7 +899,7 @@
|
|
|
1005
899
|
"name": "*",
|
|
1006
900
|
"declaration": {
|
|
1007
901
|
"name": "*",
|
|
1008
|
-
"package": "./
|
|
902
|
+
"package": "./formatting"
|
|
1009
903
|
}
|
|
1010
904
|
},
|
|
1011
905
|
{
|
|
@@ -1013,15 +907,121 @@
|
|
|
1013
907
|
"name": "*",
|
|
1014
908
|
"declaration": {
|
|
1015
909
|
"name": "*",
|
|
1016
|
-
"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"
|
|
1017
1001
|
}
|
|
1018
1002
|
},
|
|
1019
1003
|
{
|
|
1020
1004
|
"kind": "js",
|
|
1021
|
-
"name": "
|
|
1005
|
+
"name": "getFieldType",
|
|
1022
1006
|
"declaration": {
|
|
1023
|
-
"name": "
|
|
1024
|
-
"
|
|
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
1025
|
}
|
|
1026
1026
|
}
|
|
1027
1027
|
]
|
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": "15.3.2-FUI-
|
|
4
|
+
"version": "15.3.2-FUI-2591.1",
|
|
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": "15.3.2-FUI-
|
|
42
|
-
"@genesislcap/genx": "15.3.2-FUI-
|
|
43
|
-
"@genesislcap/rollup-builder": "15.3.2-FUI-
|
|
44
|
-
"@genesislcap/ts-builder": "15.3.2-FUI-
|
|
45
|
-
"@genesislcap/uvu-playwright-builder": "15.3.2-FUI-
|
|
46
|
-
"@genesislcap/vite-builder": "15.3.2-FUI-
|
|
47
|
-
"@genesislcap/webpack-builder": "15.3.2-FUI-
|
|
41
|
+
"@genesislcap/foundation-testing": "15.3.2-FUI-2591.1",
|
|
42
|
+
"@genesislcap/genx": "15.3.2-FUI-2591.1",
|
|
43
|
+
"@genesislcap/rollup-builder": "15.3.2-FUI-2591.1",
|
|
44
|
+
"@genesislcap/ts-builder": "15.3.2-FUI-2591.1",
|
|
45
|
+
"@genesislcap/uvu-playwright-builder": "15.3.2-FUI-2591.1",
|
|
46
|
+
"@genesislcap/vite-builder": "15.3.2-FUI-2591.1",
|
|
47
|
+
"@genesislcap/webpack-builder": "15.3.2-FUI-2591.1"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@genesislcap/web-core": "15.3.2-FUI-
|
|
50
|
+
"@genesislcap/web-core": "15.3.2-FUI-2591.1",
|
|
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": "36595b8ce13d31fda4bb2638948c78931133159a"
|
|
74
74
|
}
|