@genesislcap/foundation-utils 14.438.1-chore-fix-ag-grid-types-react.1 → 14.438.1-chore-fix-ag-grid-types-react.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 +253 -253
- package/package.json +11 -11
|
@@ -250,6 +250,257 @@
|
|
|
250
250
|
}
|
|
251
251
|
]
|
|
252
252
|
},
|
|
253
|
+
{
|
|
254
|
+
"kind": "javascript-module",
|
|
255
|
+
"path": "src/decorators/index.ts",
|
|
256
|
+
"declarations": [],
|
|
257
|
+
"exports": [
|
|
258
|
+
{
|
|
259
|
+
"kind": "js",
|
|
260
|
+
"name": "*",
|
|
261
|
+
"declaration": {
|
|
262
|
+
"name": "*",
|
|
263
|
+
"package": "./renderOnChange"
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"kind": "javascript-module",
|
|
270
|
+
"path": "src/decorators/renderOnChange.ts",
|
|
271
|
+
"declarations": [
|
|
272
|
+
{
|
|
273
|
+
"kind": "function",
|
|
274
|
+
"name": "renderOnChange",
|
|
275
|
+
"parameters": [
|
|
276
|
+
{
|
|
277
|
+
"name": "target",
|
|
278
|
+
"type": {
|
|
279
|
+
"text": "FASTElement & { render(): void }"
|
|
280
|
+
},
|
|
281
|
+
"description": "The target to define the property change handler on."
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"name": "name",
|
|
285
|
+
"type": {
|
|
286
|
+
"text": "string"
|
|
287
|
+
},
|
|
288
|
+
"description": "The property name."
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
292
|
+
"privacy": "public"
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
"exports": [
|
|
296
|
+
{
|
|
297
|
+
"kind": "js",
|
|
298
|
+
"name": "renderOnChange",
|
|
299
|
+
"declaration": {
|
|
300
|
+
"name": "renderOnChange",
|
|
301
|
+
"module": "src/decorators/renderOnChange.ts"
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"kind": "javascript-module",
|
|
308
|
+
"path": "src/data/inMemoryDatabase.ts",
|
|
309
|
+
"declarations": [
|
|
310
|
+
{
|
|
311
|
+
"kind": "class",
|
|
312
|
+
"description": "An in memory database of specific DatabaseRecord types.",
|
|
313
|
+
"name": "InMemoryDatabase",
|
|
314
|
+
"members": [
|
|
315
|
+
{
|
|
316
|
+
"kind": "field",
|
|
317
|
+
"name": "isWorking",
|
|
318
|
+
"type": {
|
|
319
|
+
"text": "boolean"
|
|
320
|
+
},
|
|
321
|
+
"privacy": "public",
|
|
322
|
+
"default": "false"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"kind": "field",
|
|
326
|
+
"name": "records",
|
|
327
|
+
"type": {
|
|
328
|
+
"text": "Record<string, T>"
|
|
329
|
+
},
|
|
330
|
+
"privacy": "private",
|
|
331
|
+
"default": "{}"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"kind": "field",
|
|
335
|
+
"name": "beforeUpdateListeners",
|
|
336
|
+
"privacy": "private"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"kind": "field",
|
|
340
|
+
"name": "afterUpdateListeners",
|
|
341
|
+
"privacy": "private"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"kind": "method",
|
|
345
|
+
"name": "create",
|
|
346
|
+
"privacy": "public",
|
|
347
|
+
"return": {
|
|
348
|
+
"type": {
|
|
349
|
+
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"parameters": [
|
|
353
|
+
{
|
|
354
|
+
"name": "newValue",
|
|
355
|
+
"type": {
|
|
356
|
+
"text": "Omit<T, 'id'>"
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
]
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"kind": "method",
|
|
363
|
+
"name": "read",
|
|
364
|
+
"privacy": "public",
|
|
365
|
+
"return": {
|
|
366
|
+
"type": {
|
|
367
|
+
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"parameters": [
|
|
371
|
+
{
|
|
372
|
+
"name": "id",
|
|
373
|
+
"type": {
|
|
374
|
+
"text": "string"
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
]
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"kind": "method",
|
|
381
|
+
"name": "update",
|
|
382
|
+
"privacy": "public",
|
|
383
|
+
"return": {
|
|
384
|
+
"type": {
|
|
385
|
+
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
"parameters": [
|
|
389
|
+
{
|
|
390
|
+
"name": "id",
|
|
391
|
+
"type": {
|
|
392
|
+
"text": "string"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"name": "newValue",
|
|
397
|
+
"type": {
|
|
398
|
+
"text": "Omit<Partial<T>, 'id'>"
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
]
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"kind": "method",
|
|
405
|
+
"name": "delete",
|
|
406
|
+
"privacy": "public",
|
|
407
|
+
"return": {
|
|
408
|
+
"type": {
|
|
409
|
+
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
"parameters": [
|
|
413
|
+
{
|
|
414
|
+
"name": "id",
|
|
415
|
+
"type": {
|
|
416
|
+
"text": "string"
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
]
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"kind": "method",
|
|
423
|
+
"name": "visit",
|
|
424
|
+
"privacy": "public",
|
|
425
|
+
"return": {
|
|
426
|
+
"type": {
|
|
427
|
+
"text": "Promise<void>"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"parameters": [
|
|
431
|
+
{
|
|
432
|
+
"name": "visitor",
|
|
433
|
+
"type": {
|
|
434
|
+
"text": "(record: T) => void"
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
]
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"kind": "method",
|
|
441
|
+
"name": "onBeforeUpdate",
|
|
442
|
+
"privacy": "public",
|
|
443
|
+
"return": {
|
|
444
|
+
"type": {
|
|
445
|
+
"text": "() => void"
|
|
446
|
+
}
|
|
447
|
+
},
|
|
448
|
+
"parameters": [
|
|
449
|
+
{
|
|
450
|
+
"name": "listener",
|
|
451
|
+
"type": {
|
|
452
|
+
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
]
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"kind": "method",
|
|
459
|
+
"name": "onAfterUpdate",
|
|
460
|
+
"privacy": "public",
|
|
461
|
+
"return": {
|
|
462
|
+
"type": {
|
|
463
|
+
"text": "() => void"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"parameters": [
|
|
467
|
+
{
|
|
468
|
+
"name": "listener",
|
|
469
|
+
"type": {
|
|
470
|
+
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
]
|
|
474
|
+
}
|
|
475
|
+
]
|
|
476
|
+
}
|
|
477
|
+
],
|
|
478
|
+
"exports": [
|
|
479
|
+
{
|
|
480
|
+
"kind": "js",
|
|
481
|
+
"name": "InMemoryDatabase",
|
|
482
|
+
"declaration": {
|
|
483
|
+
"name": "InMemoryDatabase",
|
|
484
|
+
"module": "src/data/inMemoryDatabase.ts"
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
]
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"kind": "javascript-module",
|
|
491
|
+
"path": "src/data/index.ts",
|
|
492
|
+
"declarations": [],
|
|
493
|
+
"exports": [
|
|
494
|
+
{
|
|
495
|
+
"kind": "js",
|
|
496
|
+
"name": "*",
|
|
497
|
+
"declaration": {
|
|
498
|
+
"name": "*",
|
|
499
|
+
"package": "./inMemoryDatabase"
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
]
|
|
503
|
+
},
|
|
253
504
|
{
|
|
254
505
|
"kind": "javascript-module",
|
|
255
506
|
"path": "src/design-system/design-system.ts",
|
|
@@ -477,190 +728,7 @@
|
|
|
477
728
|
},
|
|
478
729
|
{
|
|
479
730
|
"kind": "javascript-module",
|
|
480
|
-
"path": "src/
|
|
481
|
-
"declarations": [
|
|
482
|
-
{
|
|
483
|
-
"kind": "class",
|
|
484
|
-
"description": "An in memory database of specific DatabaseRecord types.",
|
|
485
|
-
"name": "InMemoryDatabase",
|
|
486
|
-
"members": [
|
|
487
|
-
{
|
|
488
|
-
"kind": "field",
|
|
489
|
-
"name": "isWorking",
|
|
490
|
-
"type": {
|
|
491
|
-
"text": "boolean"
|
|
492
|
-
},
|
|
493
|
-
"privacy": "public",
|
|
494
|
-
"default": "false"
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
"kind": "field",
|
|
498
|
-
"name": "records",
|
|
499
|
-
"type": {
|
|
500
|
-
"text": "Record<string, T>"
|
|
501
|
-
},
|
|
502
|
-
"privacy": "private",
|
|
503
|
-
"default": "{}"
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"kind": "field",
|
|
507
|
-
"name": "beforeUpdateListeners",
|
|
508
|
-
"privacy": "private"
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
"kind": "field",
|
|
512
|
-
"name": "afterUpdateListeners",
|
|
513
|
-
"privacy": "private"
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"kind": "method",
|
|
517
|
-
"name": "create",
|
|
518
|
-
"privacy": "public",
|
|
519
|
-
"return": {
|
|
520
|
-
"type": {
|
|
521
|
-
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
522
|
-
}
|
|
523
|
-
},
|
|
524
|
-
"parameters": [
|
|
525
|
-
{
|
|
526
|
-
"name": "newValue",
|
|
527
|
-
"type": {
|
|
528
|
-
"text": "Omit<T, 'id'>"
|
|
529
|
-
}
|
|
530
|
-
}
|
|
531
|
-
]
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"kind": "method",
|
|
535
|
-
"name": "read",
|
|
536
|
-
"privacy": "public",
|
|
537
|
-
"return": {
|
|
538
|
-
"type": {
|
|
539
|
-
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
540
|
-
}
|
|
541
|
-
},
|
|
542
|
-
"parameters": [
|
|
543
|
-
{
|
|
544
|
-
"name": "id",
|
|
545
|
-
"type": {
|
|
546
|
-
"text": "string"
|
|
547
|
-
}
|
|
548
|
-
}
|
|
549
|
-
]
|
|
550
|
-
},
|
|
551
|
-
{
|
|
552
|
-
"kind": "method",
|
|
553
|
-
"name": "update",
|
|
554
|
-
"privacy": "public",
|
|
555
|
-
"return": {
|
|
556
|
-
"type": {
|
|
557
|
-
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
558
|
-
}
|
|
559
|
-
},
|
|
560
|
-
"parameters": [
|
|
561
|
-
{
|
|
562
|
-
"name": "id",
|
|
563
|
-
"type": {
|
|
564
|
-
"text": "string"
|
|
565
|
-
}
|
|
566
|
-
},
|
|
567
|
-
{
|
|
568
|
-
"name": "newValue",
|
|
569
|
-
"type": {
|
|
570
|
-
"text": "Omit<Partial<T>, 'id'>"
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
]
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"kind": "method",
|
|
577
|
-
"name": "delete",
|
|
578
|
-
"privacy": "public",
|
|
579
|
-
"return": {
|
|
580
|
-
"type": {
|
|
581
|
-
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
582
|
-
}
|
|
583
|
-
},
|
|
584
|
-
"parameters": [
|
|
585
|
-
{
|
|
586
|
-
"name": "id",
|
|
587
|
-
"type": {
|
|
588
|
-
"text": "string"
|
|
589
|
-
}
|
|
590
|
-
}
|
|
591
|
-
]
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
"kind": "method",
|
|
595
|
-
"name": "visit",
|
|
596
|
-
"privacy": "public",
|
|
597
|
-
"return": {
|
|
598
|
-
"type": {
|
|
599
|
-
"text": "Promise<void>"
|
|
600
|
-
}
|
|
601
|
-
},
|
|
602
|
-
"parameters": [
|
|
603
|
-
{
|
|
604
|
-
"name": "visitor",
|
|
605
|
-
"type": {
|
|
606
|
-
"text": "(record: T) => void"
|
|
607
|
-
}
|
|
608
|
-
}
|
|
609
|
-
]
|
|
610
|
-
},
|
|
611
|
-
{
|
|
612
|
-
"kind": "method",
|
|
613
|
-
"name": "onBeforeUpdate",
|
|
614
|
-
"privacy": "public",
|
|
615
|
-
"return": {
|
|
616
|
-
"type": {
|
|
617
|
-
"text": "() => void"
|
|
618
|
-
}
|
|
619
|
-
},
|
|
620
|
-
"parameters": [
|
|
621
|
-
{
|
|
622
|
-
"name": "listener",
|
|
623
|
-
"type": {
|
|
624
|
-
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
625
|
-
}
|
|
626
|
-
}
|
|
627
|
-
]
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
"kind": "method",
|
|
631
|
-
"name": "onAfterUpdate",
|
|
632
|
-
"privacy": "public",
|
|
633
|
-
"return": {
|
|
634
|
-
"type": {
|
|
635
|
-
"text": "() => void"
|
|
636
|
-
}
|
|
637
|
-
},
|
|
638
|
-
"parameters": [
|
|
639
|
-
{
|
|
640
|
-
"name": "listener",
|
|
641
|
-
"type": {
|
|
642
|
-
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
643
|
-
}
|
|
644
|
-
}
|
|
645
|
-
]
|
|
646
|
-
}
|
|
647
|
-
]
|
|
648
|
-
}
|
|
649
|
-
],
|
|
650
|
-
"exports": [
|
|
651
|
-
{
|
|
652
|
-
"kind": "js",
|
|
653
|
-
"name": "InMemoryDatabase",
|
|
654
|
-
"declaration": {
|
|
655
|
-
"name": "InMemoryDatabase",
|
|
656
|
-
"module": "src/data/inMemoryDatabase.ts"
|
|
657
|
-
}
|
|
658
|
-
}
|
|
659
|
-
]
|
|
660
|
-
},
|
|
661
|
-
{
|
|
662
|
-
"kind": "javascript-module",
|
|
663
|
-
"path": "src/data/index.ts",
|
|
731
|
+
"path": "src/encoding/index.ts",
|
|
664
732
|
"declarations": [],
|
|
665
733
|
"exports": [
|
|
666
734
|
{
|
|
@@ -668,7 +736,7 @@
|
|
|
668
736
|
"name": "*",
|
|
669
737
|
"declaration": {
|
|
670
738
|
"name": "*",
|
|
671
|
-
"package": "./
|
|
739
|
+
"package": "./base64"
|
|
672
740
|
}
|
|
673
741
|
}
|
|
674
742
|
]
|
|
@@ -1148,74 +1216,6 @@
|
|
|
1148
1216
|
}
|
|
1149
1217
|
]
|
|
1150
1218
|
},
|
|
1151
|
-
{
|
|
1152
|
-
"kind": "javascript-module",
|
|
1153
|
-
"path": "src/encoding/index.ts",
|
|
1154
|
-
"declarations": [],
|
|
1155
|
-
"exports": [
|
|
1156
|
-
{
|
|
1157
|
-
"kind": "js",
|
|
1158
|
-
"name": "*",
|
|
1159
|
-
"declaration": {
|
|
1160
|
-
"name": "*",
|
|
1161
|
-
"package": "./base64"
|
|
1162
|
-
}
|
|
1163
|
-
}
|
|
1164
|
-
]
|
|
1165
|
-
},
|
|
1166
|
-
{
|
|
1167
|
-
"kind": "javascript-module",
|
|
1168
|
-
"path": "src/decorators/index.ts",
|
|
1169
|
-
"declarations": [],
|
|
1170
|
-
"exports": [
|
|
1171
|
-
{
|
|
1172
|
-
"kind": "js",
|
|
1173
|
-
"name": "*",
|
|
1174
|
-
"declaration": {
|
|
1175
|
-
"name": "*",
|
|
1176
|
-
"package": "./renderOnChange"
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1179
|
-
]
|
|
1180
|
-
},
|
|
1181
|
-
{
|
|
1182
|
-
"kind": "javascript-module",
|
|
1183
|
-
"path": "src/decorators/renderOnChange.ts",
|
|
1184
|
-
"declarations": [
|
|
1185
|
-
{
|
|
1186
|
-
"kind": "function",
|
|
1187
|
-
"name": "renderOnChange",
|
|
1188
|
-
"parameters": [
|
|
1189
|
-
{
|
|
1190
|
-
"name": "target",
|
|
1191
|
-
"type": {
|
|
1192
|
-
"text": "FASTElement & { render(): void }"
|
|
1193
|
-
},
|
|
1194
|
-
"description": "The target to define the property change handler on."
|
|
1195
|
-
},
|
|
1196
|
-
{
|
|
1197
|
-
"name": "name",
|
|
1198
|
-
"type": {
|
|
1199
|
-
"text": "string"
|
|
1200
|
-
},
|
|
1201
|
-
"description": "The property name."
|
|
1202
|
-
}
|
|
1203
|
-
],
|
|
1204
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
1205
|
-
"privacy": "public"
|
|
1206
|
-
}
|
|
1207
|
-
],
|
|
1208
|
-
"exports": [
|
|
1209
|
-
{
|
|
1210
|
-
"kind": "js",
|
|
1211
|
-
"name": "renderOnChange",
|
|
1212
|
-
"declaration": {
|
|
1213
|
-
"name": "renderOnChange",
|
|
1214
|
-
"module": "src/decorators/renderOnChange.ts"
|
|
1215
|
-
}
|
|
1216
|
-
}
|
|
1217
|
-
]
|
|
1218
|
-
},
|
|
1219
1219
|
{
|
|
1220
1220
|
"kind": "javascript-module",
|
|
1221
1221
|
"path": "src/error/errorMap.ts",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-utils",
|
|
3
3
|
"description": "Genesis Foundation Utils",
|
|
4
|
-
"version": "14.438.1-chore-fix-ag-grid-types-react.
|
|
4
|
+
"version": "14.438.1-chore-fix-ag-grid-types-react.2",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -29,18 +29,18 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@genesislcap/foundation-testing": "14.438.1-chore-fix-ag-grid-types-react.
|
|
33
|
-
"@genesislcap/genx": "14.438.1-chore-fix-ag-grid-types-react.
|
|
34
|
-
"@genesislcap/rollup-builder": "14.438.1-chore-fix-ag-grid-types-react.
|
|
35
|
-
"@genesislcap/ts-builder": "14.438.1-chore-fix-ag-grid-types-react.
|
|
36
|
-
"@genesislcap/uvu-playwright-builder": "14.438.1-chore-fix-ag-grid-types-react.
|
|
37
|
-
"@genesislcap/vite-builder": "14.438.1-chore-fix-ag-grid-types-react.
|
|
38
|
-
"@genesislcap/webpack-builder": "14.438.1-chore-fix-ag-grid-types-react.
|
|
32
|
+
"@genesislcap/foundation-testing": "14.438.1-chore-fix-ag-grid-types-react.2",
|
|
33
|
+
"@genesislcap/genx": "14.438.1-chore-fix-ag-grid-types-react.2",
|
|
34
|
+
"@genesislcap/rollup-builder": "14.438.1-chore-fix-ag-grid-types-react.2",
|
|
35
|
+
"@genesislcap/ts-builder": "14.438.1-chore-fix-ag-grid-types-react.2",
|
|
36
|
+
"@genesislcap/uvu-playwright-builder": "14.438.1-chore-fix-ag-grid-types-react.2",
|
|
37
|
+
"@genesislcap/vite-builder": "14.438.1-chore-fix-ag-grid-types-react.2",
|
|
38
|
+
"@genesislcap/webpack-builder": "14.438.1-chore-fix-ag-grid-types-react.2",
|
|
39
39
|
"@types/json-schema": "^7.0.11"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@genesislcap/expression-builder": "14.438.1-chore-fix-ag-grid-types-react.
|
|
43
|
-
"@genesislcap/foundation-logger": "14.438.1-chore-fix-ag-grid-types-react.
|
|
42
|
+
"@genesislcap/expression-builder": "14.438.1-chore-fix-ag-grid-types-react.2",
|
|
43
|
+
"@genesislcap/foundation-logger": "14.438.1-chore-fix-ag-grid-types-react.2",
|
|
44
44
|
"@microsoft/fast-components": "2.30.6",
|
|
45
45
|
"@microsoft/fast-element": "1.14.0",
|
|
46
46
|
"@microsoft/fast-foundation": "2.50.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"customElements": "dist/custom-elements.json",
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "dcd4c791ebec32a7eeb9183d5568c3361a18f8d0"
|
|
62
62
|
}
|