@genesislcap/foundation-utils 14.219.2 → 14.219.3-alpha-cbd5fc5.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/custom-elements.json +275 -275
- package/package.json +10 -10
@@ -167,280 +167,6 @@
|
|
167
167
|
}
|
168
168
|
]
|
169
169
|
},
|
170
|
-
{
|
171
|
-
"kind": "javascript-module",
|
172
|
-
"path": "src/data/inMemoryDatabase.ts",
|
173
|
-
"declarations": [
|
174
|
-
{
|
175
|
-
"kind": "class",
|
176
|
-
"description": "An in memory database of specific DatabaseRecord types.",
|
177
|
-
"name": "InMemoryDatabase",
|
178
|
-
"members": [
|
179
|
-
{
|
180
|
-
"kind": "field",
|
181
|
-
"name": "isWorking",
|
182
|
-
"type": {
|
183
|
-
"text": "boolean"
|
184
|
-
},
|
185
|
-
"privacy": "public",
|
186
|
-
"default": "false"
|
187
|
-
},
|
188
|
-
{
|
189
|
-
"kind": "field",
|
190
|
-
"name": "records",
|
191
|
-
"type": {
|
192
|
-
"text": "Record<string, T>"
|
193
|
-
},
|
194
|
-
"privacy": "private",
|
195
|
-
"default": "{}"
|
196
|
-
},
|
197
|
-
{
|
198
|
-
"kind": "field",
|
199
|
-
"name": "beforeUpdateListeners",
|
200
|
-
"privacy": "private"
|
201
|
-
},
|
202
|
-
{
|
203
|
-
"kind": "field",
|
204
|
-
"name": "afterUpdateListeners",
|
205
|
-
"privacy": "private"
|
206
|
-
},
|
207
|
-
{
|
208
|
-
"kind": "method",
|
209
|
-
"name": "create",
|
210
|
-
"privacy": "public",
|
211
|
-
"return": {
|
212
|
-
"type": {
|
213
|
-
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
214
|
-
}
|
215
|
-
},
|
216
|
-
"parameters": [
|
217
|
-
{
|
218
|
-
"name": "newValue",
|
219
|
-
"type": {
|
220
|
-
"text": "Omit<T, 'id'>"
|
221
|
-
}
|
222
|
-
}
|
223
|
-
]
|
224
|
-
},
|
225
|
-
{
|
226
|
-
"kind": "method",
|
227
|
-
"name": "read",
|
228
|
-
"privacy": "public",
|
229
|
-
"return": {
|
230
|
-
"type": {
|
231
|
-
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
232
|
-
}
|
233
|
-
},
|
234
|
-
"parameters": [
|
235
|
-
{
|
236
|
-
"name": "id",
|
237
|
-
"type": {
|
238
|
-
"text": "string"
|
239
|
-
}
|
240
|
-
}
|
241
|
-
]
|
242
|
-
},
|
243
|
-
{
|
244
|
-
"kind": "method",
|
245
|
-
"name": "update",
|
246
|
-
"privacy": "public",
|
247
|
-
"return": {
|
248
|
-
"type": {
|
249
|
-
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
250
|
-
}
|
251
|
-
},
|
252
|
-
"parameters": [
|
253
|
-
{
|
254
|
-
"name": "id",
|
255
|
-
"type": {
|
256
|
-
"text": "string"
|
257
|
-
}
|
258
|
-
},
|
259
|
-
{
|
260
|
-
"name": "newValue",
|
261
|
-
"type": {
|
262
|
-
"text": "Omit<Partial<T>, 'id'>"
|
263
|
-
}
|
264
|
-
}
|
265
|
-
]
|
266
|
-
},
|
267
|
-
{
|
268
|
-
"kind": "method",
|
269
|
-
"name": "delete",
|
270
|
-
"privacy": "public",
|
271
|
-
"return": {
|
272
|
-
"type": {
|
273
|
-
"text": "Promise<DatabaseAccessResult.Delete>"
|
274
|
-
}
|
275
|
-
},
|
276
|
-
"parameters": [
|
277
|
-
{
|
278
|
-
"name": "id",
|
279
|
-
"type": {
|
280
|
-
"text": "string"
|
281
|
-
}
|
282
|
-
}
|
283
|
-
]
|
284
|
-
},
|
285
|
-
{
|
286
|
-
"kind": "method",
|
287
|
-
"name": "visit",
|
288
|
-
"privacy": "public",
|
289
|
-
"return": {
|
290
|
-
"type": {
|
291
|
-
"text": "Promise<void>"
|
292
|
-
}
|
293
|
-
},
|
294
|
-
"parameters": [
|
295
|
-
{
|
296
|
-
"name": "visitor",
|
297
|
-
"type": {
|
298
|
-
"text": "(record: T) => void"
|
299
|
-
}
|
300
|
-
}
|
301
|
-
]
|
302
|
-
},
|
303
|
-
{
|
304
|
-
"kind": "method",
|
305
|
-
"name": "onBeforeUpdate",
|
306
|
-
"privacy": "public",
|
307
|
-
"return": {
|
308
|
-
"type": {
|
309
|
-
"text": "() => void"
|
310
|
-
}
|
311
|
-
},
|
312
|
-
"parameters": [
|
313
|
-
{
|
314
|
-
"name": "listener",
|
315
|
-
"type": {
|
316
|
-
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
317
|
-
}
|
318
|
-
}
|
319
|
-
]
|
320
|
-
},
|
321
|
-
{
|
322
|
-
"kind": "method",
|
323
|
-
"name": "onAfterUpdate",
|
324
|
-
"privacy": "public",
|
325
|
-
"return": {
|
326
|
-
"type": {
|
327
|
-
"text": "() => void"
|
328
|
-
}
|
329
|
-
},
|
330
|
-
"parameters": [
|
331
|
-
{
|
332
|
-
"name": "listener",
|
333
|
-
"type": {
|
334
|
-
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
335
|
-
}
|
336
|
-
}
|
337
|
-
]
|
338
|
-
}
|
339
|
-
]
|
340
|
-
}
|
341
|
-
],
|
342
|
-
"exports": [
|
343
|
-
{
|
344
|
-
"kind": "js",
|
345
|
-
"name": "InMemoryDatabase",
|
346
|
-
"declaration": {
|
347
|
-
"name": "InMemoryDatabase",
|
348
|
-
"module": "src/data/inMemoryDatabase.ts"
|
349
|
-
}
|
350
|
-
}
|
351
|
-
]
|
352
|
-
},
|
353
|
-
{
|
354
|
-
"kind": "javascript-module",
|
355
|
-
"path": "src/data/index.ts",
|
356
|
-
"declarations": [],
|
357
|
-
"exports": [
|
358
|
-
{
|
359
|
-
"kind": "js",
|
360
|
-
"name": "*",
|
361
|
-
"declaration": {
|
362
|
-
"name": "*",
|
363
|
-
"package": "./inMemoryDatabase"
|
364
|
-
}
|
365
|
-
}
|
366
|
-
]
|
367
|
-
},
|
368
|
-
{
|
369
|
-
"kind": "javascript-module",
|
370
|
-
"path": "src/decorators/index.ts",
|
371
|
-
"declarations": [],
|
372
|
-
"exports": [
|
373
|
-
{
|
374
|
-
"kind": "js",
|
375
|
-
"name": "*",
|
376
|
-
"declaration": {
|
377
|
-
"name": "*",
|
378
|
-
"package": "./renderOnChange"
|
379
|
-
}
|
380
|
-
}
|
381
|
-
]
|
382
|
-
},
|
383
|
-
{
|
384
|
-
"kind": "javascript-module",
|
385
|
-
"path": "src/decorators/renderOnChange.ts",
|
386
|
-
"declarations": [
|
387
|
-
{
|
388
|
-
"kind": "function",
|
389
|
-
"name": "renderOnChange",
|
390
|
-
"parameters": [
|
391
|
-
{
|
392
|
-
"name": "target",
|
393
|
-
"type": {
|
394
|
-
"text": "FASTElement & { render(): void }"
|
395
|
-
},
|
396
|
-
"description": "The target to define the property change handler on."
|
397
|
-
},
|
398
|
-
{
|
399
|
-
"name": "name",
|
400
|
-
"type": {
|
401
|
-
"text": "string"
|
402
|
-
},
|
403
|
-
"description": "The property name."
|
404
|
-
}
|
405
|
-
],
|
406
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
407
|
-
"privacy": "public"
|
408
|
-
}
|
409
|
-
],
|
410
|
-
"exports": [
|
411
|
-
{
|
412
|
-
"kind": "js",
|
413
|
-
"name": "renderOnChange",
|
414
|
-
"declaration": {
|
415
|
-
"name": "renderOnChange",
|
416
|
-
"module": "src/decorators/renderOnChange.ts"
|
417
|
-
}
|
418
|
-
}
|
419
|
-
]
|
420
|
-
},
|
421
|
-
{
|
422
|
-
"kind": "javascript-module",
|
423
|
-
"path": "src/directives/index.ts",
|
424
|
-
"declarations": [],
|
425
|
-
"exports": [
|
426
|
-
{
|
427
|
-
"kind": "js",
|
428
|
-
"name": "*",
|
429
|
-
"declaration": {
|
430
|
-
"name": "*",
|
431
|
-
"package": "./sync"
|
432
|
-
}
|
433
|
-
},
|
434
|
-
{
|
435
|
-
"kind": "js",
|
436
|
-
"name": "*",
|
437
|
-
"declaration": {
|
438
|
-
"name": "*",
|
439
|
-
"package": "./when-else"
|
440
|
-
}
|
441
|
-
}
|
442
|
-
]
|
443
|
-
},
|
444
170
|
{
|
445
171
|
"kind": "javascript-module",
|
446
172
|
"path": "src/design-system/design-system.ts",
|
@@ -486,7 +212,30 @@
|
|
486
212
|
"name": "*",
|
487
213
|
"declaration": {
|
488
214
|
"name": "*",
|
489
|
-
"package": "./design-system"
|
215
|
+
"package": "./design-system"
|
216
|
+
}
|
217
|
+
}
|
218
|
+
]
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"kind": "javascript-module",
|
222
|
+
"path": "src/directives/index.ts",
|
223
|
+
"declarations": [],
|
224
|
+
"exports": [
|
225
|
+
{
|
226
|
+
"kind": "js",
|
227
|
+
"name": "*",
|
228
|
+
"declaration": {
|
229
|
+
"name": "*",
|
230
|
+
"package": "./sync"
|
231
|
+
}
|
232
|
+
},
|
233
|
+
{
|
234
|
+
"kind": "js",
|
235
|
+
"name": "*",
|
236
|
+
"declaration": {
|
237
|
+
"name": "*",
|
238
|
+
"package": "./when-else"
|
490
239
|
}
|
491
240
|
}
|
492
241
|
]
|
@@ -729,6 +478,257 @@
|
|
729
478
|
}
|
730
479
|
]
|
731
480
|
},
|
481
|
+
{
|
482
|
+
"kind": "javascript-module",
|
483
|
+
"path": "src/data/inMemoryDatabase.ts",
|
484
|
+
"declarations": [
|
485
|
+
{
|
486
|
+
"kind": "class",
|
487
|
+
"description": "An in memory database of specific DatabaseRecord types.",
|
488
|
+
"name": "InMemoryDatabase",
|
489
|
+
"members": [
|
490
|
+
{
|
491
|
+
"kind": "field",
|
492
|
+
"name": "isWorking",
|
493
|
+
"type": {
|
494
|
+
"text": "boolean"
|
495
|
+
},
|
496
|
+
"privacy": "public",
|
497
|
+
"default": "false"
|
498
|
+
},
|
499
|
+
{
|
500
|
+
"kind": "field",
|
501
|
+
"name": "records",
|
502
|
+
"type": {
|
503
|
+
"text": "Record<string, T>"
|
504
|
+
},
|
505
|
+
"privacy": "private",
|
506
|
+
"default": "{}"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"kind": "field",
|
510
|
+
"name": "beforeUpdateListeners",
|
511
|
+
"privacy": "private"
|
512
|
+
},
|
513
|
+
{
|
514
|
+
"kind": "field",
|
515
|
+
"name": "afterUpdateListeners",
|
516
|
+
"privacy": "private"
|
517
|
+
},
|
518
|
+
{
|
519
|
+
"kind": "method",
|
520
|
+
"name": "create",
|
521
|
+
"privacy": "public",
|
522
|
+
"return": {
|
523
|
+
"type": {
|
524
|
+
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
525
|
+
}
|
526
|
+
},
|
527
|
+
"parameters": [
|
528
|
+
{
|
529
|
+
"name": "newValue",
|
530
|
+
"type": {
|
531
|
+
"text": "Omit<T, 'id'>"
|
532
|
+
}
|
533
|
+
}
|
534
|
+
]
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"kind": "method",
|
538
|
+
"name": "read",
|
539
|
+
"privacy": "public",
|
540
|
+
"return": {
|
541
|
+
"type": {
|
542
|
+
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
543
|
+
}
|
544
|
+
},
|
545
|
+
"parameters": [
|
546
|
+
{
|
547
|
+
"name": "id",
|
548
|
+
"type": {
|
549
|
+
"text": "string"
|
550
|
+
}
|
551
|
+
}
|
552
|
+
]
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"kind": "method",
|
556
|
+
"name": "update",
|
557
|
+
"privacy": "public",
|
558
|
+
"return": {
|
559
|
+
"type": {
|
560
|
+
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
561
|
+
}
|
562
|
+
},
|
563
|
+
"parameters": [
|
564
|
+
{
|
565
|
+
"name": "id",
|
566
|
+
"type": {
|
567
|
+
"text": "string"
|
568
|
+
}
|
569
|
+
},
|
570
|
+
{
|
571
|
+
"name": "newValue",
|
572
|
+
"type": {
|
573
|
+
"text": "Omit<Partial<T>, 'id'>"
|
574
|
+
}
|
575
|
+
}
|
576
|
+
]
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"kind": "method",
|
580
|
+
"name": "delete",
|
581
|
+
"privacy": "public",
|
582
|
+
"return": {
|
583
|
+
"type": {
|
584
|
+
"text": "Promise<DatabaseAccessResult.Delete>"
|
585
|
+
}
|
586
|
+
},
|
587
|
+
"parameters": [
|
588
|
+
{
|
589
|
+
"name": "id",
|
590
|
+
"type": {
|
591
|
+
"text": "string"
|
592
|
+
}
|
593
|
+
}
|
594
|
+
]
|
595
|
+
},
|
596
|
+
{
|
597
|
+
"kind": "method",
|
598
|
+
"name": "visit",
|
599
|
+
"privacy": "public",
|
600
|
+
"return": {
|
601
|
+
"type": {
|
602
|
+
"text": "Promise<void>"
|
603
|
+
}
|
604
|
+
},
|
605
|
+
"parameters": [
|
606
|
+
{
|
607
|
+
"name": "visitor",
|
608
|
+
"type": {
|
609
|
+
"text": "(record: T) => void"
|
610
|
+
}
|
611
|
+
}
|
612
|
+
]
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"kind": "method",
|
616
|
+
"name": "onBeforeUpdate",
|
617
|
+
"privacy": "public",
|
618
|
+
"return": {
|
619
|
+
"type": {
|
620
|
+
"text": "() => void"
|
621
|
+
}
|
622
|
+
},
|
623
|
+
"parameters": [
|
624
|
+
{
|
625
|
+
"name": "listener",
|
626
|
+
"type": {
|
627
|
+
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
628
|
+
}
|
629
|
+
}
|
630
|
+
]
|
631
|
+
},
|
632
|
+
{
|
633
|
+
"kind": "method",
|
634
|
+
"name": "onAfterUpdate",
|
635
|
+
"privacy": "public",
|
636
|
+
"return": {
|
637
|
+
"type": {
|
638
|
+
"text": "() => void"
|
639
|
+
}
|
640
|
+
},
|
641
|
+
"parameters": [
|
642
|
+
{
|
643
|
+
"name": "listener",
|
644
|
+
"type": {
|
645
|
+
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
646
|
+
}
|
647
|
+
}
|
648
|
+
]
|
649
|
+
}
|
650
|
+
]
|
651
|
+
}
|
652
|
+
],
|
653
|
+
"exports": [
|
654
|
+
{
|
655
|
+
"kind": "js",
|
656
|
+
"name": "InMemoryDatabase",
|
657
|
+
"declaration": {
|
658
|
+
"name": "InMemoryDatabase",
|
659
|
+
"module": "src/data/inMemoryDatabase.ts"
|
660
|
+
}
|
661
|
+
}
|
662
|
+
]
|
663
|
+
},
|
664
|
+
{
|
665
|
+
"kind": "javascript-module",
|
666
|
+
"path": "src/data/index.ts",
|
667
|
+
"declarations": [],
|
668
|
+
"exports": [
|
669
|
+
{
|
670
|
+
"kind": "js",
|
671
|
+
"name": "*",
|
672
|
+
"declaration": {
|
673
|
+
"name": "*",
|
674
|
+
"package": "./inMemoryDatabase"
|
675
|
+
}
|
676
|
+
}
|
677
|
+
]
|
678
|
+
},
|
679
|
+
{
|
680
|
+
"kind": "javascript-module",
|
681
|
+
"path": "src/decorators/index.ts",
|
682
|
+
"declarations": [],
|
683
|
+
"exports": [
|
684
|
+
{
|
685
|
+
"kind": "js",
|
686
|
+
"name": "*",
|
687
|
+
"declaration": {
|
688
|
+
"name": "*",
|
689
|
+
"package": "./renderOnChange"
|
690
|
+
}
|
691
|
+
}
|
692
|
+
]
|
693
|
+
},
|
694
|
+
{
|
695
|
+
"kind": "javascript-module",
|
696
|
+
"path": "src/decorators/renderOnChange.ts",
|
697
|
+
"declarations": [
|
698
|
+
{
|
699
|
+
"kind": "function",
|
700
|
+
"name": "renderOnChange",
|
701
|
+
"parameters": [
|
702
|
+
{
|
703
|
+
"name": "target",
|
704
|
+
"type": {
|
705
|
+
"text": "FASTElement & { render(): void }"
|
706
|
+
},
|
707
|
+
"description": "The target to define the property change handler on."
|
708
|
+
},
|
709
|
+
{
|
710
|
+
"name": "name",
|
711
|
+
"type": {
|
712
|
+
"text": "string"
|
713
|
+
},
|
714
|
+
"description": "The property name."
|
715
|
+
}
|
716
|
+
],
|
717
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
718
|
+
"privacy": "public"
|
719
|
+
}
|
720
|
+
],
|
721
|
+
"exports": [
|
722
|
+
{
|
723
|
+
"kind": "js",
|
724
|
+
"name": "renderOnChange",
|
725
|
+
"declaration": {
|
726
|
+
"name": "renderOnChange",
|
727
|
+
"module": "src/decorators/renderOnChange.ts"
|
728
|
+
}
|
729
|
+
}
|
730
|
+
]
|
731
|
+
},
|
732
732
|
{
|
733
733
|
"kind": "javascript-module",
|
734
734
|
"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.219.
|
4
|
+
"version": "14.219.3-alpha-cbd5fc5.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -27,17 +27,17 @@
|
|
27
27
|
}
|
28
28
|
},
|
29
29
|
"devDependencies": {
|
30
|
-
"@genesislcap/foundation-testing": "14.219.
|
31
|
-
"@genesislcap/genx": "14.219.
|
32
|
-
"@genesislcap/rollup-builder": "14.219.
|
33
|
-
"@genesislcap/ts-builder": "14.219.
|
34
|
-
"@genesislcap/uvu-playwright-builder": "14.219.
|
35
|
-
"@genesislcap/vite-builder": "14.219.
|
36
|
-
"@genesislcap/webpack-builder": "14.219.
|
30
|
+
"@genesislcap/foundation-testing": "14.219.3-alpha-cbd5fc5.0",
|
31
|
+
"@genesislcap/genx": "14.219.3-alpha-cbd5fc5.0",
|
32
|
+
"@genesislcap/rollup-builder": "14.219.3-alpha-cbd5fc5.0",
|
33
|
+
"@genesislcap/ts-builder": "14.219.3-alpha-cbd5fc5.0",
|
34
|
+
"@genesislcap/uvu-playwright-builder": "14.219.3-alpha-cbd5fc5.0",
|
35
|
+
"@genesislcap/vite-builder": "14.219.3-alpha-cbd5fc5.0",
|
36
|
+
"@genesislcap/webpack-builder": "14.219.3-alpha-cbd5fc5.0",
|
37
37
|
"rimraf": "^5.0.0"
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@genesislcap/foundation-logger": "14.219.
|
40
|
+
"@genesislcap/foundation-logger": "14.219.3-alpha-cbd5fc5.0",
|
41
41
|
"@microsoft/fast-components": "^2.30.6",
|
42
42
|
"@microsoft/fast-element": "^1.12.0",
|
43
43
|
"@microsoft/fast-foundation": "2.49.6",
|
@@ -55,5 +55,5 @@
|
|
55
55
|
"access": "public"
|
56
56
|
},
|
57
57
|
"customElements": "dist/custom-elements.json",
|
58
|
-
"gitHead": "
|
58
|
+
"gitHead": "1882a14a52bd115b82d360b63510b3102fac2aa8"
|
59
59
|
}
|