@genesislcap/foundation-utils 14.230.0 → 14.230.1-alpha-542ce67.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/custom-elements.json +574 -574
  2. package/package.json +10 -10
@@ -171,240 +171,45 @@
171
171
  },
172
172
  {
173
173
  "kind": "javascript-module",
174
- "path": "src/data/inMemoryDatabase.ts",
175
- "declarations": [
176
- {
177
- "kind": "class",
178
- "description": "An in memory database of specific DatabaseRecord types.",
179
- "name": "InMemoryDatabase",
180
- "members": [
181
- {
182
- "kind": "field",
183
- "name": "isWorking",
184
- "type": {
185
- "text": "boolean"
186
- },
187
- "privacy": "public",
188
- "default": "false"
189
- },
190
- {
191
- "kind": "field",
192
- "name": "records",
193
- "type": {
194
- "text": "Record<string, T>"
195
- },
196
- "privacy": "private",
197
- "default": "{}"
198
- },
199
- {
200
- "kind": "field",
201
- "name": "beforeUpdateListeners",
202
- "privacy": "private"
203
- },
204
- {
205
- "kind": "field",
206
- "name": "afterUpdateListeners",
207
- "privacy": "private"
208
- },
209
- {
210
- "kind": "method",
211
- "name": "create",
212
- "privacy": "public",
213
- "return": {
214
- "type": {
215
- "text": "Promise<DatabaseAccessResult.Create<T>>"
216
- }
217
- },
218
- "parameters": [
219
- {
220
- "name": "newValue",
221
- "type": {
222
- "text": "Omit<T, 'id'>"
223
- }
224
- }
225
- ]
226
- },
227
- {
228
- "kind": "method",
229
- "name": "read",
230
- "privacy": "public",
231
- "return": {
232
- "type": {
233
- "text": "Promise<DatabaseAccessResult.Read<T>>"
234
- }
235
- },
236
- "parameters": [
237
- {
238
- "name": "id",
239
- "type": {
240
- "text": "string"
241
- }
242
- }
243
- ]
244
- },
245
- {
246
- "kind": "method",
247
- "name": "update",
248
- "privacy": "public",
249
- "return": {
250
- "type": {
251
- "text": "Promise<DatabaseAccessResult.Update<T>>"
252
- }
253
- },
254
- "parameters": [
255
- {
256
- "name": "id",
257
- "type": {
258
- "text": "string"
259
- }
260
- },
261
- {
262
- "name": "newValue",
263
- "type": {
264
- "text": "Omit<Partial<T>, 'id'>"
265
- }
266
- }
267
- ]
268
- },
269
- {
270
- "kind": "method",
271
- "name": "delete",
272
- "privacy": "public",
273
- "return": {
274
- "type": {
275
- "text": "Promise<DatabaseAccessResult.Delete>"
276
- }
277
- },
278
- "parameters": [
279
- {
280
- "name": "id",
281
- "type": {
282
- "text": "string"
283
- }
284
- }
285
- ]
286
- },
287
- {
288
- "kind": "method",
289
- "name": "visit",
290
- "privacy": "public",
291
- "return": {
292
- "type": {
293
- "text": "Promise<void>"
294
- }
295
- },
296
- "parameters": [
297
- {
298
- "name": "visitor",
299
- "type": {
300
- "text": "(record: T) => void"
301
- }
302
- }
303
- ]
304
- },
305
- {
306
- "kind": "method",
307
- "name": "onBeforeUpdate",
308
- "privacy": "public",
309
- "return": {
310
- "type": {
311
- "text": "() => void"
312
- }
313
- },
314
- "parameters": [
315
- {
316
- "name": "listener",
317
- "type": {
318
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
319
- }
320
- }
321
- ]
322
- },
323
- {
324
- "kind": "method",
325
- "name": "onAfterUpdate",
326
- "privacy": "public",
327
- "return": {
328
- "type": {
329
- "text": "() => void"
330
- }
331
- },
332
- "parameters": [
333
- {
334
- "name": "listener",
335
- "type": {
336
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
337
- }
338
- }
339
- ]
340
- }
341
- ]
342
- }
343
- ],
174
+ "path": "src/directives/index.ts",
175
+ "declarations": [],
344
176
  "exports": [
345
177
  {
346
178
  "kind": "js",
347
- "name": "InMemoryDatabase",
179
+ "name": "*",
348
180
  "declaration": {
349
- "name": "InMemoryDatabase",
350
- "module": "src/data/inMemoryDatabase.ts"
181
+ "name": "*",
182
+ "package": "./sync"
351
183
  }
352
- }
353
- ]
354
- },
355
- {
356
- "kind": "javascript-module",
357
- "path": "src/data/index.ts",
358
- "declarations": [],
359
- "exports": [
184
+ },
360
185
  {
361
186
  "kind": "js",
362
187
  "name": "*",
363
188
  "declaration": {
364
189
  "name": "*",
365
- "package": "./inMemoryDatabase"
190
+ "package": "./when-else"
366
191
  }
367
192
  }
368
193
  ]
369
194
  },
370
195
  {
371
196
  "kind": "javascript-module",
372
- "path": "src/design-system/design-system.ts",
373
- "declarations": [
374
- {
375
- "kind": "function",
376
- "name": "assureDesignSystem",
377
- "return": {
378
- "type": {
379
- "text": "DesignSystemModule"
380
- }
381
- },
382
- "parameters": [
383
- {
384
- "name": "module",
385
- "type": {
386
- "text": "DesignSystemModule"
387
- }
388
- }
389
- ],
390
- "description": "assureDesignSystem.",
391
- "privacy": "public"
392
- }
393
- ],
197
+ "path": "src/encoding/index.ts",
198
+ "declarations": [],
394
199
  "exports": [
395
200
  {
396
201
  "kind": "js",
397
- "name": "assureDesignSystem",
202
+ "name": "*",
398
203
  "declaration": {
399
- "name": "assureDesignSystem",
400
- "module": "src/design-system/design-system.ts"
204
+ "name": "*",
205
+ "package": "./base64"
401
206
  }
402
207
  }
403
208
  ]
404
209
  },
405
210
  {
406
211
  "kind": "javascript-module",
407
- "path": "src/design-system/index.ts",
212
+ "path": "src/env/index.ts",
408
213
  "declarations": [],
409
214
  "exports": [
410
215
  {
@@ -412,133 +217,27 @@
412
217
  "name": "*",
413
218
  "declaration": {
414
219
  "name": "*",
415
- "package": "./design-system"
220
+ "package": "./is-dev"
416
221
  }
417
- }
418
- ]
419
- },
420
- {
421
- "kind": "javascript-module",
422
- "path": "src/decorators/index.ts",
423
- "declarations": [],
424
- "exports": [
222
+ },
425
223
  {
426
224
  "kind": "js",
427
225
  "name": "*",
428
226
  "declaration": {
429
227
  "name": "*",
430
- "package": "./renderOnChange"
228
+ "package": "./variables"
431
229
  }
432
230
  }
433
231
  ]
434
232
  },
435
233
  {
436
234
  "kind": "javascript-module",
437
- "path": "src/decorators/renderOnChange.ts",
235
+ "path": "src/env/is-dev.ts",
438
236
  "declarations": [
439
237
  {
440
238
  "kind": "function",
441
- "name": "renderOnChange",
442
- "parameters": [
443
- {
444
- "name": "target",
445
- "type": {
446
- "text": "FASTElement & { render(): void }"
447
- },
448
- "description": "The target to define the property change handler on."
449
- },
450
- {
451
- "name": "name",
452
- "type": {
453
- "text": "string"
454
- },
455
- "description": "The property name."
456
- }
457
- ],
458
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
459
- "privacy": "public"
460
- }
461
- ],
462
- "exports": [
463
- {
464
- "kind": "js",
465
- "name": "renderOnChange",
466
- "declaration": {
467
- "name": "renderOnChange",
468
- "module": "src/decorators/renderOnChange.ts"
469
- }
470
- }
471
- ]
472
- },
473
- {
474
- "kind": "javascript-module",
475
- "path": "src/directives/index.ts",
476
- "declarations": [],
477
- "exports": [
478
- {
479
- "kind": "js",
480
- "name": "*",
481
- "declaration": {
482
- "name": "*",
483
- "package": "./sync"
484
- }
485
- },
486
- {
487
- "kind": "js",
488
- "name": "*",
489
- "declaration": {
490
- "name": "*",
491
- "package": "./when-else"
492
- }
493
- }
494
- ]
495
- },
496
- {
497
- "kind": "javascript-module",
498
- "path": "src/encoding/index.ts",
499
- "declarations": [],
500
- "exports": [
501
- {
502
- "kind": "js",
503
- "name": "*",
504
- "declaration": {
505
- "name": "*",
506
- "package": "./base64"
507
- }
508
- }
509
- ]
510
- },
511
- {
512
- "kind": "javascript-module",
513
- "path": "src/env/index.ts",
514
- "declarations": [],
515
- "exports": [
516
- {
517
- "kind": "js",
518
- "name": "*",
519
- "declaration": {
520
- "name": "*",
521
- "package": "./is-dev"
522
- }
523
- },
524
- {
525
- "kind": "js",
526
- "name": "*",
527
- "declaration": {
528
- "name": "*",
529
- "package": "./variables"
530
- }
531
- }
532
- ]
533
- },
534
- {
535
- "kind": "javascript-module",
536
- "path": "src/env/is-dev.ts",
537
- "declarations": [
538
- {
539
- "kind": "function",
540
- "name": "isDev",
541
- "description": "Determines if the current environment is a development environment.",
239
+ "name": "isDev",
240
+ "description": "Determines if the current environment is a development environment.",
542
241
  "privacy": "public"
543
242
  }
544
243
  ],
@@ -796,6 +495,56 @@
796
495
  }
797
496
  ]
798
497
  },
498
+ {
499
+ "kind": "javascript-module",
500
+ "path": "src/design-system/design-system.ts",
501
+ "declarations": [
502
+ {
503
+ "kind": "function",
504
+ "name": "assureDesignSystem",
505
+ "return": {
506
+ "type": {
507
+ "text": "DesignSystemModule"
508
+ }
509
+ },
510
+ "parameters": [
511
+ {
512
+ "name": "module",
513
+ "type": {
514
+ "text": "DesignSystemModule"
515
+ }
516
+ }
517
+ ],
518
+ "description": "assureDesignSystem.",
519
+ "privacy": "public"
520
+ }
521
+ ],
522
+ "exports": [
523
+ {
524
+ "kind": "js",
525
+ "name": "assureDesignSystem",
526
+ "declaration": {
527
+ "name": "assureDesignSystem",
528
+ "module": "src/design-system/design-system.ts"
529
+ }
530
+ }
531
+ ]
532
+ },
533
+ {
534
+ "kind": "javascript-module",
535
+ "path": "src/design-system/index.ts",
536
+ "declarations": [],
537
+ "exports": [
538
+ {
539
+ "kind": "js",
540
+ "name": "*",
541
+ "declaration": {
542
+ "name": "*",
543
+ "package": "./design-system"
544
+ }
545
+ }
546
+ ]
547
+ },
799
548
  {
800
549
  "kind": "javascript-module",
801
550
  "path": "src/error/errorMap.ts",
@@ -845,144 +594,357 @@
845
594
  },
846
595
  {
847
596
  "kind": "method",
848
- "name": "get",
597
+ "name": "get",
598
+ "return": {
599
+ "type": {
600
+ "text": ""
601
+ }
602
+ },
603
+ "parameters": [
604
+ {
605
+ "name": "key",
606
+ "type": {
607
+ "text": "keyof TErrorDetailMap"
608
+ },
609
+ "description": "The key."
610
+ }
611
+ ],
612
+ "description": "Get an error by key.",
613
+ "privacy": "public"
614
+ },
615
+ {
616
+ "kind": "method",
617
+ "name": "has",
618
+ "return": {
619
+ "type": {
620
+ "text": ""
621
+ }
622
+ },
623
+ "parameters": [
624
+ {
625
+ "name": "key",
626
+ "type": {
627
+ "text": "keyof TErrorDetailMap"
628
+ },
629
+ "description": "The key."
630
+ }
631
+ ],
632
+ "description": "Has an error for key.",
633
+ "privacy": "public"
634
+ },
635
+ {
636
+ "kind": "method",
637
+ "name": "delete",
638
+ "return": {
639
+ "type": {
640
+ "text": ""
641
+ }
642
+ },
643
+ "parameters": [
644
+ {
645
+ "name": "key",
646
+ "type": {
647
+ "text": "keyof TErrorDetailMap"
648
+ },
649
+ "description": "The key."
650
+ }
651
+ ],
652
+ "description": "Delete an error.",
653
+ "privacy": "public"
654
+ },
655
+ {
656
+ "kind": "method",
657
+ "name": "clear",
658
+ "description": "Clear errors.",
659
+ "privacy": "public"
660
+ },
661
+ {
662
+ "kind": "field",
663
+ "name": "size",
664
+ "type": {
665
+ "text": "number"
666
+ },
667
+ "description": "The size of the error map.",
668
+ "return": {
669
+ "type": {
670
+ "text": ""
671
+ }
672
+ },
673
+ "privacy": "public",
674
+ "readonly": true
675
+ },
676
+ {
677
+ "kind": "method",
678
+ "name": "values",
679
+ "privacy": "public"
680
+ },
681
+ {
682
+ "kind": "field",
683
+ "name": "messages",
684
+ "type": {
685
+ "text": "string"
686
+ },
687
+ "description": "{@inheritDoc ErrorMap.messages}",
688
+ "readonly": true
689
+ }
690
+ ]
691
+ },
692
+ {
693
+ "kind": "function",
694
+ "name": "createErrorMap",
695
+ "return": {
696
+ "type": {
697
+ "text": ""
698
+ }
699
+ },
700
+ "parameters": [
701
+ {
702
+ "name": "logger",
703
+ "type": {
704
+ "text": "ErrorMapLogger"
705
+ },
706
+ "description": "A logger error method reference."
707
+ }
708
+ ],
709
+ "description": "A factory to create the error map.",
710
+ "privacy": "public"
711
+ }
712
+ ],
713
+ "exports": [
714
+ {
715
+ "kind": "js",
716
+ "name": "DefaultErrorMap",
717
+ "declaration": {
718
+ "name": "DefaultErrorMap",
719
+ "module": "src/error/errorMap.ts"
720
+ }
721
+ },
722
+ {
723
+ "kind": "js",
724
+ "name": "createErrorMap",
725
+ "declaration": {
726
+ "name": "createErrorMap",
727
+ "module": "src/error/errorMap.ts"
728
+ }
729
+ }
730
+ ]
731
+ },
732
+ {
733
+ "kind": "javascript-module",
734
+ "path": "src/error/index.ts",
735
+ "declarations": [],
736
+ "exports": [
737
+ {
738
+ "kind": "js",
739
+ "name": "*",
740
+ "declaration": {
741
+ "name": "*",
742
+ "package": "./errorMap"
743
+ }
744
+ }
745
+ ]
746
+ },
747
+ {
748
+ "kind": "javascript-module",
749
+ "path": "src/data/inMemoryDatabase.ts",
750
+ "declarations": [
751
+ {
752
+ "kind": "class",
753
+ "description": "An in memory database of specific DatabaseRecord types.",
754
+ "name": "InMemoryDatabase",
755
+ "members": [
756
+ {
757
+ "kind": "field",
758
+ "name": "isWorking",
759
+ "type": {
760
+ "text": "boolean"
761
+ },
762
+ "privacy": "public",
763
+ "default": "false"
764
+ },
765
+ {
766
+ "kind": "field",
767
+ "name": "records",
768
+ "type": {
769
+ "text": "Record<string, T>"
770
+ },
771
+ "privacy": "private",
772
+ "default": "{}"
773
+ },
774
+ {
775
+ "kind": "field",
776
+ "name": "beforeUpdateListeners",
777
+ "privacy": "private"
778
+ },
779
+ {
780
+ "kind": "field",
781
+ "name": "afterUpdateListeners",
782
+ "privacy": "private"
783
+ },
784
+ {
785
+ "kind": "method",
786
+ "name": "create",
787
+ "privacy": "public",
788
+ "return": {
789
+ "type": {
790
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
791
+ }
792
+ },
793
+ "parameters": [
794
+ {
795
+ "name": "newValue",
796
+ "type": {
797
+ "text": "Omit<T, 'id'>"
798
+ }
799
+ }
800
+ ]
801
+ },
802
+ {
803
+ "kind": "method",
804
+ "name": "read",
805
+ "privacy": "public",
806
+ "return": {
807
+ "type": {
808
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
809
+ }
810
+ },
811
+ "parameters": [
812
+ {
813
+ "name": "id",
814
+ "type": {
815
+ "text": "string"
816
+ }
817
+ }
818
+ ]
819
+ },
820
+ {
821
+ "kind": "method",
822
+ "name": "update",
823
+ "privacy": "public",
824
+ "return": {
825
+ "type": {
826
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
827
+ }
828
+ },
829
+ "parameters": [
830
+ {
831
+ "name": "id",
832
+ "type": {
833
+ "text": "string"
834
+ }
835
+ },
836
+ {
837
+ "name": "newValue",
838
+ "type": {
839
+ "text": "Omit<Partial<T>, 'id'>"
840
+ }
841
+ }
842
+ ]
843
+ },
844
+ {
845
+ "kind": "method",
846
+ "name": "delete",
847
+ "privacy": "public",
849
848
  "return": {
850
849
  "type": {
851
- "text": ""
850
+ "text": "Promise<DatabaseAccessResult.Delete>"
852
851
  }
853
852
  },
854
853
  "parameters": [
855
854
  {
856
- "name": "key",
855
+ "name": "id",
857
856
  "type": {
858
- "text": "keyof TErrorDetailMap"
859
- },
860
- "description": "The key."
857
+ "text": "string"
858
+ }
861
859
  }
862
- ],
863
- "description": "Get an error by key.",
864
- "privacy": "public"
860
+ ]
865
861
  },
866
862
  {
867
863
  "kind": "method",
868
- "name": "has",
864
+ "name": "visit",
865
+ "privacy": "public",
869
866
  "return": {
870
867
  "type": {
871
- "text": ""
868
+ "text": "Promise<void>"
872
869
  }
873
870
  },
874
871
  "parameters": [
875
872
  {
876
- "name": "key",
873
+ "name": "visitor",
877
874
  "type": {
878
- "text": "keyof TErrorDetailMap"
879
- },
880
- "description": "The key."
875
+ "text": "(record: T) => void"
876
+ }
881
877
  }
882
- ],
883
- "description": "Has an error for key.",
884
- "privacy": "public"
878
+ ]
885
879
  },
886
880
  {
887
881
  "kind": "method",
888
- "name": "delete",
882
+ "name": "onBeforeUpdate",
883
+ "privacy": "public",
889
884
  "return": {
890
885
  "type": {
891
- "text": ""
886
+ "text": "() => void"
892
887
  }
893
888
  },
894
889
  "parameters": [
895
890
  {
896
- "name": "key",
891
+ "name": "listener",
897
892
  "type": {
898
- "text": "keyof TErrorDetailMap"
899
- },
900
- "description": "The key."
893
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
894
+ }
901
895
  }
902
- ],
903
- "description": "Delete an error.",
904
- "privacy": "public"
896
+ ]
905
897
  },
906
898
  {
907
899
  "kind": "method",
908
- "name": "clear",
909
- "description": "Clear errors.",
910
- "privacy": "public"
911
- },
912
- {
913
- "kind": "field",
914
- "name": "size",
915
- "type": {
916
- "text": "number"
917
- },
918
- "description": "The size of the error map.",
900
+ "name": "onAfterUpdate",
901
+ "privacy": "public",
919
902
  "return": {
920
903
  "type": {
921
- "text": ""
904
+ "text": "() => void"
922
905
  }
923
906
  },
924
- "privacy": "public",
925
- "readonly": true
926
- },
927
- {
928
- "kind": "method",
929
- "name": "values",
930
- "privacy": "public"
931
- },
932
- {
933
- "kind": "field",
934
- "name": "messages",
935
- "type": {
936
- "text": "string"
937
- },
938
- "description": "{@inheritDoc ErrorMap.messages}",
939
- "readonly": true
907
+ "parameters": [
908
+ {
909
+ "name": "listener",
910
+ "type": {
911
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
912
+ }
913
+ }
914
+ ]
940
915
  }
941
916
  ]
942
- },
943
- {
944
- "kind": "function",
945
- "name": "createErrorMap",
946
- "return": {
947
- "type": {
948
- "text": ""
949
- }
950
- },
951
- "parameters": [
952
- {
953
- "name": "logger",
954
- "type": {
955
- "text": "ErrorMapLogger"
956
- },
957
- "description": "A logger error method reference."
958
- }
959
- ],
960
- "description": "A factory to create the error map.",
961
- "privacy": "public"
962
917
  }
963
918
  ],
964
919
  "exports": [
965
920
  {
966
921
  "kind": "js",
967
- "name": "DefaultErrorMap",
922
+ "name": "InMemoryDatabase",
968
923
  "declaration": {
969
- "name": "DefaultErrorMap",
970
- "module": "src/error/errorMap.ts"
924
+ "name": "InMemoryDatabase",
925
+ "module": "src/data/inMemoryDatabase.ts"
971
926
  }
972
- },
927
+ }
928
+ ]
929
+ },
930
+ {
931
+ "kind": "javascript-module",
932
+ "path": "src/data/index.ts",
933
+ "declarations": [],
934
+ "exports": [
973
935
  {
974
936
  "kind": "js",
975
- "name": "createErrorMap",
937
+ "name": "*",
976
938
  "declaration": {
977
- "name": "createErrorMap",
978
- "module": "src/error/errorMap.ts"
939
+ "name": "*",
940
+ "package": "./inMemoryDatabase"
979
941
  }
980
942
  }
981
943
  ]
982
944
  },
983
945
  {
984
946
  "kind": "javascript-module",
985
- "path": "src/error/index.ts",
947
+ "path": "src/decorators/index.ts",
986
948
  "declarations": [],
987
949
  "exports": [
988
950
  {
@@ -990,7 +952,45 @@
990
952
  "name": "*",
991
953
  "declaration": {
992
954
  "name": "*",
993
- "package": "./errorMap"
955
+ "package": "./renderOnChange"
956
+ }
957
+ }
958
+ ]
959
+ },
960
+ {
961
+ "kind": "javascript-module",
962
+ "path": "src/decorators/renderOnChange.ts",
963
+ "declarations": [
964
+ {
965
+ "kind": "function",
966
+ "name": "renderOnChange",
967
+ "parameters": [
968
+ {
969
+ "name": "target",
970
+ "type": {
971
+ "text": "FASTElement & { render(): void }"
972
+ },
973
+ "description": "The target to define the property change handler on."
974
+ },
975
+ {
976
+ "name": "name",
977
+ "type": {
978
+ "text": "string"
979
+ },
980
+ "description": "The property name."
981
+ }
982
+ ],
983
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
984
+ "privacy": "public"
985
+ }
986
+ ],
987
+ "exports": [
988
+ {
989
+ "kind": "js",
990
+ "name": "renderOnChange",
991
+ "declaration": {
992
+ "name": "renderOnChange",
993
+ "module": "src/decorators/renderOnChange.ts"
994
994
  }
995
995
  }
996
996
  ]
@@ -1366,21 +1366,6 @@
1366
1366
  }
1367
1367
  ]
1368
1368
  },
1369
- {
1370
- "kind": "javascript-module",
1371
- "path": "src/mappers/index.ts",
1372
- "declarations": [],
1373
- "exports": [
1374
- {
1375
- "kind": "js",
1376
- "name": "*",
1377
- "declaration": {
1378
- "name": "*",
1379
- "package": "./dto"
1380
- }
1381
- }
1382
- ]
1383
- },
1384
1369
  {
1385
1370
  "kind": "javascript-module",
1386
1371
  "path": "src/mixins/index.ts",
@@ -1478,7 +1463,7 @@
1478
1463
  },
1479
1464
  {
1480
1465
  "kind": "javascript-module",
1481
- "path": "src/resource/index.ts",
1466
+ "path": "src/mappers/index.ts",
1482
1467
  "declarations": [],
1483
1468
  "exports": [
1484
1469
  {
@@ -1486,40 +1471,70 @@
1486
1471
  "name": "*",
1487
1472
  "declaration": {
1488
1473
  "name": "*",
1489
- "package": "./types"
1474
+ "package": "./dto"
1490
1475
  }
1491
1476
  }
1492
1477
  ]
1493
1478
  },
1494
1479
  {
1495
1480
  "kind": "javascript-module",
1496
- "path": "src/resource/types.ts",
1481
+ "path": "src/promise/index.ts",
1482
+ "declarations": [],
1483
+ "exports": [
1484
+ {
1485
+ "kind": "js",
1486
+ "name": "*",
1487
+ "declaration": {
1488
+ "name": "*",
1489
+ "package": "./resolveAfter"
1490
+ }
1491
+ }
1492
+ ]
1493
+ },
1494
+ {
1495
+ "kind": "javascript-module",
1496
+ "path": "src/promise/resolveAfter.ts",
1497
1497
  "declarations": [
1498
1498
  {
1499
- "kind": "variable",
1500
- "name": "ResourceType",
1501
- "type": {
1502
- "text": "{\n local: 'local',\n remote: 'remote',\n}"
1499
+ "kind": "function",
1500
+ "name": "resolveAfter",
1501
+ "return": {
1502
+ "type": {
1503
+ "text": "Promise<T>"
1504
+ }
1503
1505
  },
1504
- "default": "{\n local: 'local',\n remote: 'remote',\n}",
1505
- "description": "An object that defines two resource types: \"local\" and \"remote\".",
1506
+ "parameters": [
1507
+ {
1508
+ "name": "ms",
1509
+ "type": {
1510
+ "text": "number"
1511
+ }
1512
+ },
1513
+ {
1514
+ "name": "valueCreator",
1515
+ "type": {
1516
+ "text": "() => T"
1517
+ }
1518
+ }
1519
+ ],
1520
+ "description": "Resolve a promise after a timeout.",
1506
1521
  "privacy": "public"
1507
1522
  }
1508
1523
  ],
1509
1524
  "exports": [
1510
1525
  {
1511
1526
  "kind": "js",
1512
- "name": "ResourceType",
1527
+ "name": "resolveAfter",
1513
1528
  "declaration": {
1514
- "name": "ResourceType",
1515
- "module": "src/resource/types.ts"
1529
+ "name": "resolveAfter",
1530
+ "module": "src/promise/resolveAfter.ts"
1516
1531
  }
1517
1532
  }
1518
1533
  ]
1519
1534
  },
1520
1535
  {
1521
1536
  "kind": "javascript-module",
1522
- "path": "src/promise/index.ts",
1537
+ "path": "src/resource/index.ts",
1523
1538
  "declarations": [],
1524
1539
  "exports": [
1525
1540
  {
@@ -1527,48 +1542,33 @@
1527
1542
  "name": "*",
1528
1543
  "declaration": {
1529
1544
  "name": "*",
1530
- "package": "./resolveAfter"
1545
+ "package": "./types"
1531
1546
  }
1532
1547
  }
1533
1548
  ]
1534
1549
  },
1535
- {
1536
- "kind": "javascript-module",
1537
- "path": "src/promise/resolveAfter.ts",
1538
- "declarations": [
1539
- {
1540
- "kind": "function",
1541
- "name": "resolveAfter",
1542
- "return": {
1543
- "type": {
1544
- "text": "Promise<T>"
1545
- }
1550
+ {
1551
+ "kind": "javascript-module",
1552
+ "path": "src/resource/types.ts",
1553
+ "declarations": [
1554
+ {
1555
+ "kind": "variable",
1556
+ "name": "ResourceType",
1557
+ "type": {
1558
+ "text": "{\n local: 'local',\n remote: 'remote',\n}"
1546
1559
  },
1547
- "parameters": [
1548
- {
1549
- "name": "ms",
1550
- "type": {
1551
- "text": "number"
1552
- }
1553
- },
1554
- {
1555
- "name": "valueCreator",
1556
- "type": {
1557
- "text": "() => T"
1558
- }
1559
- }
1560
- ],
1561
- "description": "Resolve a promise after a timeout.",
1560
+ "default": "{\n local: 'local',\n remote: 'remote',\n}",
1561
+ "description": "An object that defines two resource types: \"local\" and \"remote\".",
1562
1562
  "privacy": "public"
1563
1563
  }
1564
1564
  ],
1565
1565
  "exports": [
1566
1566
  {
1567
1567
  "kind": "js",
1568
- "name": "resolveAfter",
1568
+ "name": "ResourceType",
1569
1569
  "declaration": {
1570
- "name": "resolveAfter",
1571
- "module": "src/promise/resolveAfter.ts"
1570
+ "name": "ResourceType",
1571
+ "module": "src/resource/types.ts"
1572
1572
  }
1573
1573
  }
1574
1574
  ]
@@ -2593,7 +2593,7 @@
2593
2593
  },
2594
2594
  {
2595
2595
  "kind": "javascript-module",
2596
- "path": "src/mappers/dto/index.ts",
2596
+ "path": "src/mixins/lifecycle/index.ts",
2597
2597
  "declarations": [],
2598
2598
  "exports": [
2599
2599
  {
@@ -2601,96 +2601,120 @@
2601
2601
  "name": "*",
2602
2602
  "declaration": {
2603
2603
  "name": "*",
2604
- "package": "./serverRow"
2605
- }
2606
- },
2607
- {
2608
- "kind": "js",
2609
- "name": "*",
2610
- "declaration": {
2611
- "name": "*",
2612
- "package": "./types"
2604
+ "package": "./lifecycle"
2613
2605
  }
2614
2606
  }
2615
2607
  ]
2616
2608
  },
2617
2609
  {
2618
2610
  "kind": "javascript-module",
2619
- "path": "src/mappers/dto/serverRow.ts",
2611
+ "path": "src/mixins/lifecycle/lifecycle.ts",
2620
2612
  "declarations": [
2621
2613
  {
2622
- "kind": "class",
2623
- "description": "The default `ServerRowDTOMapper`.",
2624
- "name": "DefaultServerRowDTOMapper",
2614
+ "kind": "mixin",
2615
+ "description": "",
2616
+ "name": "LifecycleMixin",
2625
2617
  "members": [
2626
2618
  {
2627
- "kind": "field",
2628
- "name": "fromDTO",
2629
- "description": "Converts a server row DTO to an entity.",
2619
+ "kind": "method",
2620
+ "name": "cloneNode",
2621
+ "return": {
2622
+ "type": {
2623
+ "text": "Node"
2624
+ }
2625
+ },
2630
2626
  "parameters": [
2631
2627
  {
2632
- "description": "The DTO to convert.",
2633
- "name": "dto"
2628
+ "name": "deep",
2629
+ "optional": true,
2630
+ "type": {
2631
+ "text": "boolean"
2632
+ }
2634
2633
  }
2635
- ],
2634
+ ]
2635
+ },
2636
+ {
2637
+ "kind": "method",
2638
+ "name": "deepClone",
2639
+ "return": {
2640
+ "type": {
2641
+ "text": "Node"
2642
+ }
2643
+ }
2644
+ },
2645
+ {
2646
+ "kind": "field",
2647
+ "name": "shouldRunDisconnect",
2636
2648
  "return": {
2637
2649
  "type": {
2638
2650
  "text": ""
2639
2651
  }
2640
2652
  },
2641
- "privacy": "public"
2653
+ "readonly": true
2642
2654
  },
2643
2655
  {
2644
2656
  "kind": "field",
2645
- "name": "toDTO",
2646
- "description": "Converts a server row entity to a DTO.",
2647
- "parameters": [
2648
- {
2649
- "description": "The entity to convert.",
2650
- "name": "entity"
2651
- }
2652
- ],
2657
+ "name": "shouldRunConnect",
2653
2658
  "return": {
2654
2659
  "type": {
2655
2660
  "text": ""
2656
2661
  }
2657
2662
  },
2658
- "privacy": "public"
2663
+ "readonly": true
2664
+ },
2665
+ {
2666
+ "kind": "method",
2667
+ "name": "#_blockLifecycleDueToTokenChange",
2668
+ "return": {
2669
+ "type": {
2670
+ "text": "boolean"
2671
+ }
2672
+ },
2673
+ "parameters": [
2674
+ {
2675
+ "name": "lifecycleType",
2676
+ "type": {
2677
+ "text": "Lifecycletype"
2678
+ }
2679
+ }
2680
+ ]
2681
+ }
2682
+ ],
2683
+ "parameters": [
2684
+ {
2685
+ "name": "Base",
2686
+ "type": {
2687
+ "text": "T"
2688
+ }
2659
2689
  }
2660
2690
  ]
2661
2691
  },
2662
2692
  {
2663
2693
  "kind": "variable",
2664
- "name": "ServerRowDTOMapper",
2665
- "description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
2694
+ "name": "layoutCacheDocument",
2695
+ "description": "Stored on the layout's internal cache to signify that the document is not part of the DOM",
2666
2696
  "privacy": "public"
2667
2697
  }
2668
2698
  ],
2669
2699
  "exports": [
2670
2700
  {
2671
2701
  "kind": "js",
2672
- "name": "DefaultServerRowDTOMapper",
2702
+ "name": "LifecycleMixin",
2673
2703
  "declaration": {
2674
- "name": "DefaultServerRowDTOMapper",
2675
- "module": "src/mappers/dto/serverRow.ts"
2704
+ "name": "LifecycleMixin",
2705
+ "module": "src/mixins/lifecycle/lifecycle.ts"
2676
2706
  }
2677
2707
  },
2678
2708
  {
2679
2709
  "kind": "js",
2680
- "name": "ServerRowDTOMapper",
2710
+ "name": "layoutCacheDocument",
2681
2711
  "declaration": {
2682
- "name": "ServerRowDTOMapper",
2683
- "module": "src/mappers/dto/serverRow.ts"
2712
+ "name": "layoutCacheDocument",
2713
+ "module": "src/mixins/lifecycle/lifecycle.ts"
2684
2714
  }
2685
2715
  }
2686
2716
  ]
2687
2717
  },
2688
- {
2689
- "kind": "javascript-module",
2690
- "path": "src/mappers/dto/types.ts",
2691
- "declarations": [],
2692
- "exports": []
2693
- },
2694
2718
  {
2695
2719
  "kind": "javascript-module",
2696
2720
  "path": "src/mixins/pendingState/index.ts",
@@ -2780,7 +2804,7 @@
2780
2804
  },
2781
2805
  {
2782
2806
  "kind": "javascript-module",
2783
- "path": "src/mixins/lifecycle/index.ts",
2807
+ "path": "src/mappers/dto/index.ts",
2784
2808
  "declarations": [],
2785
2809
  "exports": [
2786
2810
  {
@@ -2788,120 +2812,96 @@
2788
2812
  "name": "*",
2789
2813
  "declaration": {
2790
2814
  "name": "*",
2791
- "package": "./lifecycle"
2815
+ "package": "./serverRow"
2816
+ }
2817
+ },
2818
+ {
2819
+ "kind": "js",
2820
+ "name": "*",
2821
+ "declaration": {
2822
+ "name": "*",
2823
+ "package": "./types"
2792
2824
  }
2793
2825
  }
2794
2826
  ]
2795
2827
  },
2796
2828
  {
2797
2829
  "kind": "javascript-module",
2798
- "path": "src/mixins/lifecycle/lifecycle.ts",
2830
+ "path": "src/mappers/dto/serverRow.ts",
2799
2831
  "declarations": [
2800
2832
  {
2801
- "kind": "mixin",
2802
- "description": "",
2803
- "name": "LifecycleMixin",
2833
+ "kind": "class",
2834
+ "description": "The default `ServerRowDTOMapper`.",
2835
+ "name": "DefaultServerRowDTOMapper",
2804
2836
  "members": [
2805
2837
  {
2806
- "kind": "method",
2807
- "name": "cloneNode",
2808
- "return": {
2809
- "type": {
2810
- "text": "Node"
2811
- }
2812
- },
2838
+ "kind": "field",
2839
+ "name": "fromDTO",
2840
+ "description": "Converts a server row DTO to an entity.",
2813
2841
  "parameters": [
2814
2842
  {
2815
- "name": "deep",
2816
- "optional": true,
2817
- "type": {
2818
- "text": "boolean"
2819
- }
2820
- }
2821
- ]
2822
- },
2823
- {
2824
- "kind": "method",
2825
- "name": "deepClone",
2826
- "return": {
2827
- "type": {
2828
- "text": "Node"
2843
+ "description": "The DTO to convert.",
2844
+ "name": "dto"
2829
2845
  }
2830
- }
2831
- },
2832
- {
2833
- "kind": "field",
2834
- "name": "shouldRunDisconnect",
2846
+ ],
2835
2847
  "return": {
2836
2848
  "type": {
2837
2849
  "text": ""
2838
2850
  }
2839
2851
  },
2840
- "readonly": true
2852
+ "privacy": "public"
2841
2853
  },
2842
2854
  {
2843
2855
  "kind": "field",
2844
- "name": "shouldRunConnect",
2845
- "return": {
2846
- "type": {
2847
- "text": ""
2856
+ "name": "toDTO",
2857
+ "description": "Converts a server row entity to a DTO.",
2858
+ "parameters": [
2859
+ {
2860
+ "description": "The entity to convert.",
2861
+ "name": "entity"
2848
2862
  }
2849
- },
2850
- "readonly": true
2851
- },
2852
- {
2853
- "kind": "method",
2854
- "name": "#_blockLifecycleDueToTokenChange",
2863
+ ],
2855
2864
  "return": {
2856
2865
  "type": {
2857
- "text": "boolean"
2866
+ "text": ""
2858
2867
  }
2859
2868
  },
2860
- "parameters": [
2861
- {
2862
- "name": "lifecycleType",
2863
- "type": {
2864
- "text": "Lifecycletype"
2865
- }
2866
- }
2867
- ]
2868
- }
2869
- ],
2870
- "parameters": [
2871
- {
2872
- "name": "Base",
2873
- "type": {
2874
- "text": "T"
2875
- }
2869
+ "privacy": "public"
2876
2870
  }
2877
2871
  ]
2878
2872
  },
2879
2873
  {
2880
2874
  "kind": "variable",
2881
- "name": "layoutCacheDocument",
2882
- "description": "Stored on the layout's internal cache to signify that the document is not part of the DOM",
2875
+ "name": "ServerRowDTOMapper",
2876
+ "description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
2883
2877
  "privacy": "public"
2884
2878
  }
2885
2879
  ],
2886
2880
  "exports": [
2887
2881
  {
2888
2882
  "kind": "js",
2889
- "name": "LifecycleMixin",
2883
+ "name": "DefaultServerRowDTOMapper",
2890
2884
  "declaration": {
2891
- "name": "LifecycleMixin",
2892
- "module": "src/mixins/lifecycle/lifecycle.ts"
2885
+ "name": "DefaultServerRowDTOMapper",
2886
+ "module": "src/mappers/dto/serverRow.ts"
2893
2887
  }
2894
2888
  },
2895
2889
  {
2896
2890
  "kind": "js",
2897
- "name": "layoutCacheDocument",
2891
+ "name": "ServerRowDTOMapper",
2898
2892
  "declaration": {
2899
- "name": "layoutCacheDocument",
2900
- "module": "src/mixins/lifecycle/lifecycle.ts"
2893
+ "name": "ServerRowDTOMapper",
2894
+ "module": "src/mappers/dto/serverRow.ts"
2901
2895
  }
2902
2896
  }
2903
2897
  ]
2904
2898
  },
2899
+ {
2900
+ "kind": "javascript-module",
2901
+ "path": "src/mappers/dto/types.ts",
2902
+ "declarations": [],
2903
+ "exports": []
2904
+ },
2905
2905
  {
2906
2906
  "kind": "javascript-module",
2907
2907
  "path": "src/serializers/json/index.ts",