@genesislcap/foundation-utils 14.15.1 → 14.16.0

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.
@@ -0,0 +1,1937 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "src/index.federated.ts",
8
+ "declarations": [],
9
+ "exports": []
10
+ },
11
+ {
12
+ "kind": "javascript-module",
13
+ "path": "src/index.ts",
14
+ "declarations": [],
15
+ "exports": [
16
+ {
17
+ "kind": "js",
18
+ "name": "*",
19
+ "declaration": {
20
+ "name": "*",
21
+ "package": "./data"
22
+ }
23
+ },
24
+ {
25
+ "kind": "js",
26
+ "name": "*",
27
+ "declaration": {
28
+ "name": "*",
29
+ "package": "./decorators"
30
+ }
31
+ },
32
+ {
33
+ "kind": "js",
34
+ "name": "*",
35
+ "declaration": {
36
+ "name": "*",
37
+ "package": "./design-system"
38
+ }
39
+ },
40
+ {
41
+ "kind": "js",
42
+ "name": "*",
43
+ "declaration": {
44
+ "name": "*",
45
+ "package": "./directives"
46
+ }
47
+ },
48
+ {
49
+ "kind": "js",
50
+ "name": "*",
51
+ "declaration": {
52
+ "name": "*",
53
+ "package": "./env"
54
+ }
55
+ },
56
+ {
57
+ "kind": "js",
58
+ "name": "*",
59
+ "declaration": {
60
+ "name": "*",
61
+ "package": "./formatters"
62
+ }
63
+ },
64
+ {
65
+ "kind": "js",
66
+ "name": "*",
67
+ "declaration": {
68
+ "name": "*",
69
+ "package": "./logger"
70
+ }
71
+ },
72
+ {
73
+ "kind": "js",
74
+ "name": "*",
75
+ "declaration": {
76
+ "name": "*",
77
+ "package": "./mappers"
78
+ }
79
+ },
80
+ {
81
+ "kind": "js",
82
+ "name": "*",
83
+ "declaration": {
84
+ "name": "*",
85
+ "package": "./mixins"
86
+ }
87
+ },
88
+ {
89
+ "kind": "js",
90
+ "name": "*",
91
+ "declaration": {
92
+ "name": "*",
93
+ "package": "./observer"
94
+ }
95
+ },
96
+ {
97
+ "kind": "js",
98
+ "name": "*",
99
+ "declaration": {
100
+ "name": "*",
101
+ "package": "./resource"
102
+ }
103
+ },
104
+ {
105
+ "kind": "js",
106
+ "name": "*",
107
+ "declaration": {
108
+ "name": "*",
109
+ "package": "./serializers"
110
+ }
111
+ },
112
+ {
113
+ "kind": "js",
114
+ "name": "*",
115
+ "declaration": {
116
+ "name": "*",
117
+ "package": "./styles"
118
+ }
119
+ },
120
+ {
121
+ "kind": "js",
122
+ "name": "*",
123
+ "declaration": {
124
+ "name": "*",
125
+ "package": "./uuid"
126
+ }
127
+ },
128
+ {
129
+ "kind": "js",
130
+ "name": "*",
131
+ "declaration": {
132
+ "name": "*",
133
+ "package": "./window"
134
+ }
135
+ }
136
+ ]
137
+ },
138
+ {
139
+ "kind": "javascript-module",
140
+ "path": "src/data/inMemoryDatabase.ts",
141
+ "declarations": [
142
+ {
143
+ "kind": "class",
144
+ "description": "An in memory database of specific DatabaseRecord types.",
145
+ "name": "InMemoryDatabase",
146
+ "members": [
147
+ {
148
+ "kind": "field",
149
+ "name": "isWorking",
150
+ "type": {
151
+ "text": "boolean"
152
+ },
153
+ "privacy": "public",
154
+ "default": "false"
155
+ },
156
+ {
157
+ "kind": "field",
158
+ "name": "records",
159
+ "type": {
160
+ "text": "Record<string, T>"
161
+ },
162
+ "privacy": "private",
163
+ "default": "{}"
164
+ },
165
+ {
166
+ "kind": "field",
167
+ "name": "beforeUpdateListeners",
168
+ "privacy": "private"
169
+ },
170
+ {
171
+ "kind": "field",
172
+ "name": "afterUpdateListeners",
173
+ "privacy": "private"
174
+ },
175
+ {
176
+ "kind": "method",
177
+ "name": "create",
178
+ "privacy": "public",
179
+ "return": {
180
+ "type": {
181
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
182
+ }
183
+ },
184
+ "parameters": [
185
+ {
186
+ "name": "newValue",
187
+ "type": {
188
+ "text": "Omit<T, 'id'>"
189
+ }
190
+ }
191
+ ]
192
+ },
193
+ {
194
+ "kind": "method",
195
+ "name": "read",
196
+ "privacy": "public",
197
+ "return": {
198
+ "type": {
199
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
200
+ }
201
+ },
202
+ "parameters": [
203
+ {
204
+ "name": "id",
205
+ "type": {
206
+ "text": "string"
207
+ }
208
+ }
209
+ ]
210
+ },
211
+ {
212
+ "kind": "method",
213
+ "name": "update",
214
+ "privacy": "public",
215
+ "return": {
216
+ "type": {
217
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
218
+ }
219
+ },
220
+ "parameters": [
221
+ {
222
+ "name": "id",
223
+ "type": {
224
+ "text": "string"
225
+ }
226
+ },
227
+ {
228
+ "name": "newValue",
229
+ "type": {
230
+ "text": "Omit<Partial<T>, 'id'>"
231
+ }
232
+ }
233
+ ]
234
+ },
235
+ {
236
+ "kind": "method",
237
+ "name": "delete",
238
+ "privacy": "public",
239
+ "return": {
240
+ "type": {
241
+ "text": "Promise<DatabaseAccessResult.Delete>"
242
+ }
243
+ },
244
+ "parameters": [
245
+ {
246
+ "name": "id",
247
+ "type": {
248
+ "text": "string"
249
+ }
250
+ }
251
+ ]
252
+ },
253
+ {
254
+ "kind": "method",
255
+ "name": "visit",
256
+ "privacy": "public",
257
+ "return": {
258
+ "type": {
259
+ "text": "Promise<void>"
260
+ }
261
+ },
262
+ "parameters": [
263
+ {
264
+ "name": "visitor",
265
+ "type": {
266
+ "text": "(record: T) => void"
267
+ }
268
+ }
269
+ ]
270
+ },
271
+ {
272
+ "kind": "method",
273
+ "name": "onBeforeUpdate",
274
+ "privacy": "public",
275
+ "return": {
276
+ "type": {
277
+ "text": "() => void"
278
+ }
279
+ },
280
+ "parameters": [
281
+ {
282
+ "name": "listener",
283
+ "type": {
284
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
285
+ }
286
+ }
287
+ ]
288
+ },
289
+ {
290
+ "kind": "method",
291
+ "name": "onAfterUpdate",
292
+ "privacy": "public",
293
+ "return": {
294
+ "type": {
295
+ "text": "() => void"
296
+ }
297
+ },
298
+ "parameters": [
299
+ {
300
+ "name": "listener",
301
+ "type": {
302
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
303
+ }
304
+ }
305
+ ]
306
+ }
307
+ ]
308
+ }
309
+ ],
310
+ "exports": [
311
+ {
312
+ "kind": "js",
313
+ "name": "InMemoryDatabase",
314
+ "declaration": {
315
+ "name": "InMemoryDatabase",
316
+ "module": "src/data/inMemoryDatabase.ts"
317
+ }
318
+ }
319
+ ]
320
+ },
321
+ {
322
+ "kind": "javascript-module",
323
+ "path": "src/data/index.ts",
324
+ "declarations": [],
325
+ "exports": [
326
+ {
327
+ "kind": "js",
328
+ "name": "*",
329
+ "declaration": {
330
+ "name": "*",
331
+ "package": "./inMemoryDatabase"
332
+ }
333
+ }
334
+ ]
335
+ },
336
+ {
337
+ "kind": "javascript-module",
338
+ "path": "src/decorators/index.ts",
339
+ "declarations": [],
340
+ "exports": [
341
+ {
342
+ "kind": "js",
343
+ "name": "*",
344
+ "declaration": {
345
+ "name": "*",
346
+ "package": "./renderOnChange"
347
+ }
348
+ }
349
+ ]
350
+ },
351
+ {
352
+ "kind": "javascript-module",
353
+ "path": "src/decorators/renderOnChange.ts",
354
+ "declarations": [
355
+ {
356
+ "kind": "function",
357
+ "name": "renderOnChange",
358
+ "parameters": [
359
+ {
360
+ "name": "target",
361
+ "type": {
362
+ "text": "FASTElement & { render(): void }"
363
+ },
364
+ "description": "The target to define the property change handler on."
365
+ },
366
+ {
367
+ "name": "name",
368
+ "type": {
369
+ "text": "string"
370
+ },
371
+ "description": "The property name."
372
+ }
373
+ ],
374
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
375
+ "privacy": "public"
376
+ }
377
+ ],
378
+ "exports": [
379
+ {
380
+ "kind": "js",
381
+ "name": "renderOnChange",
382
+ "declaration": {
383
+ "name": "renderOnChange",
384
+ "module": "src/decorators/renderOnChange.ts"
385
+ }
386
+ }
387
+ ]
388
+ },
389
+ {
390
+ "kind": "javascript-module",
391
+ "path": "src/design-system/design-system.ts",
392
+ "declarations": [
393
+ {
394
+ "kind": "function",
395
+ "name": "assureDesignSystem",
396
+ "return": {
397
+ "type": {
398
+ "text": "DesignSystemModule"
399
+ }
400
+ },
401
+ "parameters": [
402
+ {
403
+ "name": "module",
404
+ "type": {
405
+ "text": "DesignSystemModule"
406
+ }
407
+ }
408
+ ],
409
+ "privacy": "public"
410
+ }
411
+ ],
412
+ "exports": [
413
+ {
414
+ "kind": "js",
415
+ "name": "assureDesignSystem",
416
+ "declaration": {
417
+ "name": "assureDesignSystem",
418
+ "module": "src/design-system/design-system.ts"
419
+ }
420
+ }
421
+ ]
422
+ },
423
+ {
424
+ "kind": "javascript-module",
425
+ "path": "src/design-system/index.ts",
426
+ "declarations": [],
427
+ "exports": [
428
+ {
429
+ "kind": "js",
430
+ "name": "*",
431
+ "declaration": {
432
+ "name": "*",
433
+ "package": "./design-system"
434
+ }
435
+ }
436
+ ]
437
+ },
438
+ {
439
+ "kind": "javascript-module",
440
+ "path": "src/directives/index.ts",
441
+ "declarations": [],
442
+ "exports": [
443
+ {
444
+ "kind": "js",
445
+ "name": "*",
446
+ "declaration": {
447
+ "name": "*",
448
+ "package": "./sync"
449
+ }
450
+ },
451
+ {
452
+ "kind": "js",
453
+ "name": "*",
454
+ "declaration": {
455
+ "name": "*",
456
+ "package": "./when-else"
457
+ }
458
+ }
459
+ ]
460
+ },
461
+ {
462
+ "kind": "javascript-module",
463
+ "path": "src/env/index.ts",
464
+ "declarations": [],
465
+ "exports": [
466
+ {
467
+ "kind": "js",
468
+ "name": "*",
469
+ "declaration": {
470
+ "name": "*",
471
+ "package": "./is-dev"
472
+ }
473
+ },
474
+ {
475
+ "kind": "js",
476
+ "name": "*",
477
+ "declaration": {
478
+ "name": "*",
479
+ "package": "./variables"
480
+ }
481
+ }
482
+ ]
483
+ },
484
+ {
485
+ "kind": "javascript-module",
486
+ "path": "src/env/is-dev.ts",
487
+ "declarations": [
488
+ {
489
+ "kind": "function",
490
+ "name": "isDev"
491
+ }
492
+ ],
493
+ "exports": [
494
+ {
495
+ "kind": "js",
496
+ "name": "isDev",
497
+ "declaration": {
498
+ "name": "isDev",
499
+ "module": "src/env/is-dev.ts"
500
+ }
501
+ }
502
+ ]
503
+ },
504
+ {
505
+ "kind": "javascript-module",
506
+ "path": "src/env/variables.ts",
507
+ "declarations": [
508
+ {
509
+ "kind": "variable",
510
+ "name": "API_HOST",
511
+ "type": {
512
+ "text": "string"
513
+ }
514
+ },
515
+ {
516
+ "kind": "variable",
517
+ "name": "_API_HOST",
518
+ "type": {
519
+ "text": "string"
520
+ }
521
+ },
522
+ {
523
+ "kind": "variable",
524
+ "name": "FORCE_HTTP",
525
+ "type": {
526
+ "text": "string"
527
+ }
528
+ },
529
+ {
530
+ "kind": "variable",
531
+ "name": "_FORCE_HTTP",
532
+ "type": {
533
+ "text": "string"
534
+ }
535
+ },
536
+ {
537
+ "kind": "variable",
538
+ "name": "HTTP_CONFIG",
539
+ "type": {
540
+ "text": "string"
541
+ }
542
+ },
543
+ {
544
+ "kind": "variable",
545
+ "name": "_HTTP_CONFIG",
546
+ "type": {
547
+ "text": "string"
548
+ }
549
+ },
550
+ {
551
+ "kind": "variable",
552
+ "name": "DEFAULT_ORGANISATION",
553
+ "type": {
554
+ "text": "string"
555
+ }
556
+ },
557
+ {
558
+ "kind": "variable",
559
+ "name": "_DEFAULT_ORGANISATION",
560
+ "type": {
561
+ "text": "string"
562
+ }
563
+ },
564
+ {
565
+ "kind": "variable",
566
+ "name": "DEFAULT_PASSWORD",
567
+ "type": {
568
+ "text": "string"
569
+ }
570
+ },
571
+ {
572
+ "kind": "variable",
573
+ "name": "_DEFAULT_PASSWORD",
574
+ "type": {
575
+ "text": "string"
576
+ }
577
+ },
578
+ {
579
+ "kind": "variable",
580
+ "name": "DEFAULT_USER",
581
+ "type": {
582
+ "text": "string"
583
+ }
584
+ },
585
+ {
586
+ "kind": "variable",
587
+ "name": "_DEFAULT_USER",
588
+ "type": {
589
+ "text": "string"
590
+ }
591
+ },
592
+ {
593
+ "kind": "variable",
594
+ "name": "SOCKET_EXT",
595
+ "type": {
596
+ "text": "string"
597
+ }
598
+ },
599
+ {
600
+ "kind": "variable",
601
+ "name": "_SOCKET_EXT",
602
+ "type": {
603
+ "text": "string"
604
+ }
605
+ }
606
+ ],
607
+ "exports": [
608
+ {
609
+ "kind": "js",
610
+ "name": "API_HOST",
611
+ "declaration": {
612
+ "name": "_API_HOST",
613
+ "module": "src/env/variables.ts"
614
+ }
615
+ },
616
+ {
617
+ "kind": "js",
618
+ "name": "FORCE_HTTP",
619
+ "declaration": {
620
+ "name": "_FORCE_HTTP",
621
+ "module": "src/env/variables.ts"
622
+ }
623
+ },
624
+ {
625
+ "kind": "js",
626
+ "name": "HTTP_CONFIG",
627
+ "declaration": {
628
+ "name": "_HTTP_CONFIG",
629
+ "module": "src/env/variables.ts"
630
+ }
631
+ },
632
+ {
633
+ "kind": "js",
634
+ "name": "DEFAULT_ORGANISATION",
635
+ "declaration": {
636
+ "name": "_DEFAULT_ORGANISATION",
637
+ "module": "src/env/variables.ts"
638
+ }
639
+ },
640
+ {
641
+ "kind": "js",
642
+ "name": "DEFAULT_PASSWORD",
643
+ "declaration": {
644
+ "name": "_DEFAULT_PASSWORD",
645
+ "module": "src/env/variables.ts"
646
+ }
647
+ },
648
+ {
649
+ "kind": "js",
650
+ "name": "DEFAULT_USER",
651
+ "declaration": {
652
+ "name": "_DEFAULT_USER",
653
+ "module": "src/env/variables.ts"
654
+ }
655
+ },
656
+ {
657
+ "kind": "js",
658
+ "name": "SOCKET_EXT",
659
+ "declaration": {
660
+ "name": "_SOCKET_EXT",
661
+ "module": "src/env/variables.ts"
662
+ }
663
+ }
664
+ ]
665
+ },
666
+ {
667
+ "kind": "javascript-module",
668
+ "path": "src/formatters/datetime.ts",
669
+ "declarations": [
670
+ {
671
+ "kind": "function",
672
+ "name": "formatDateTimestamp",
673
+ "return": {
674
+ "type": {
675
+ "text": "string"
676
+ }
677
+ },
678
+ "parameters": [
679
+ {
680
+ "name": "timestamp",
681
+ "type": {
682
+ "text": "number"
683
+ }
684
+ }
685
+ ],
686
+ "description": "Formats [DATE] UNIX Timestamps (without time) to readable strings",
687
+ "privacy": "public"
688
+ },
689
+ {
690
+ "kind": "function",
691
+ "name": "formatDateTimeTimestamp",
692
+ "return": {
693
+ "type": {
694
+ "text": "string"
695
+ }
696
+ },
697
+ "parameters": [
698
+ {
699
+ "name": "timestamp",
700
+ "type": {
701
+ "text": "number"
702
+ }
703
+ }
704
+ ],
705
+ "description": "Formats [DATETIME] UNIX Timestamps (with time) to readable strings",
706
+ "privacy": "public"
707
+ },
708
+ {
709
+ "kind": "function",
710
+ "name": "formatTimestamp",
711
+ "return": {
712
+ "type": {
713
+ "text": "string"
714
+ }
715
+ },
716
+ "parameters": [
717
+ {
718
+ "name": "timestamp",
719
+ "type": {
720
+ "text": "number"
721
+ },
722
+ "description": "The UNIX Timestamp."
723
+ },
724
+ {
725
+ "name": "withTime",
726
+ "type": {
727
+ "text": "boolean"
728
+ },
729
+ "description": "The flag to determine if formatted value should contain 'time' info."
730
+ }
731
+ ],
732
+ "description": "Formats [DATE|DATETIME] Unix Timestamps to readable strings",
733
+ "privacy": "public"
734
+ }
735
+ ],
736
+ "exports": [
737
+ {
738
+ "kind": "js",
739
+ "name": "formatDateTimestamp",
740
+ "declaration": {
741
+ "name": "formatDateTimestamp",
742
+ "module": "src/formatters/datetime.ts"
743
+ }
744
+ },
745
+ {
746
+ "kind": "js",
747
+ "name": "formatDateTimeTimestamp",
748
+ "declaration": {
749
+ "name": "formatDateTimeTimestamp",
750
+ "module": "src/formatters/datetime.ts"
751
+ }
752
+ },
753
+ {
754
+ "kind": "js",
755
+ "name": "formatTimestamp",
756
+ "declaration": {
757
+ "name": "formatTimestamp",
758
+ "module": "src/formatters/datetime.ts"
759
+ }
760
+ }
761
+ ]
762
+ },
763
+ {
764
+ "kind": "javascript-module",
765
+ "path": "src/formatters/index.ts",
766
+ "declarations": [],
767
+ "exports": [
768
+ {
769
+ "kind": "js",
770
+ "name": "*",
771
+ "declaration": {
772
+ "name": "*",
773
+ "package": "./datetime"
774
+ }
775
+ }
776
+ ]
777
+ },
778
+ {
779
+ "kind": "javascript-module",
780
+ "path": "src/logger/index.ts",
781
+ "declarations": [],
782
+ "exports": [
783
+ {
784
+ "kind": "js",
785
+ "name": "*",
786
+ "declaration": {
787
+ "name": "*",
788
+ "package": "./logger"
789
+ }
790
+ }
791
+ ]
792
+ },
793
+ {
794
+ "kind": "javascript-module",
795
+ "path": "src/logger/logger.ts",
796
+ "declarations": [
797
+ {
798
+ "kind": "variable",
799
+ "name": "defaultLoggerOptions",
800
+ "type": {
801
+ "text": "LoggerOptions"
802
+ },
803
+ "default": "{\n level: logLevelDebug,\n}"
804
+ },
805
+ {
806
+ "kind": "function",
807
+ "name": "createLogger",
808
+ "return": {
809
+ "type": {
810
+ "text": "Logger"
811
+ }
812
+ },
813
+ "parameters": [
814
+ {
815
+ "name": "name",
816
+ "type": {
817
+ "text": "string"
818
+ }
819
+ },
820
+ {
821
+ "name": "options",
822
+ "default": "defaultLoggerOptions",
823
+ "type": {
824
+ "text": "LoggerOptions"
825
+ }
826
+ }
827
+ ]
828
+ }
829
+ ],
830
+ "exports": [
831
+ {
832
+ "kind": "js",
833
+ "name": "LogLevel",
834
+ "declaration": {
835
+ "name": "LogLevel",
836
+ "package": "consola"
837
+ }
838
+ },
839
+ {
840
+ "kind": "js",
841
+ "name": "defaultLoggerOptions",
842
+ "declaration": {
843
+ "name": "defaultLoggerOptions",
844
+ "module": "src/logger/logger.ts"
845
+ }
846
+ },
847
+ {
848
+ "kind": "js",
849
+ "name": "createLogger",
850
+ "declaration": {
851
+ "name": "createLogger",
852
+ "module": "src/logger/logger.ts"
853
+ }
854
+ }
855
+ ]
856
+ },
857
+ {
858
+ "kind": "javascript-module",
859
+ "path": "src/mappers/index.ts",
860
+ "declarations": [],
861
+ "exports": [
862
+ {
863
+ "kind": "js",
864
+ "name": "*",
865
+ "declaration": {
866
+ "name": "*",
867
+ "package": "./dto"
868
+ }
869
+ }
870
+ ]
871
+ },
872
+ {
873
+ "kind": "javascript-module",
874
+ "path": "src/mixins/index.ts",
875
+ "declarations": [],
876
+ "exports": [
877
+ {
878
+ "kind": "js",
879
+ "name": "*",
880
+ "declaration": {
881
+ "name": "*",
882
+ "package": "./pendingState"
883
+ }
884
+ },
885
+ {
886
+ "kind": "js",
887
+ "name": "*",
888
+ "declaration": {
889
+ "name": "*",
890
+ "package": "./lifecycle"
891
+ }
892
+ }
893
+ ]
894
+ },
895
+ {
896
+ "kind": "javascript-module",
897
+ "path": "src/observer/index.ts",
898
+ "declarations": [],
899
+ "exports": [
900
+ {
901
+ "kind": "js",
902
+ "name": "*",
903
+ "declaration": {
904
+ "name": "*",
905
+ "package": "./observer"
906
+ }
907
+ }
908
+ ]
909
+ },
910
+ {
911
+ "kind": "javascript-module",
912
+ "path": "src/observer/observer.ts",
913
+ "declarations": [
914
+ {
915
+ "kind": "function",
916
+ "name": "createObserver",
917
+ "return": {
918
+ "type": {
919
+ "text": "Observer<EventType>"
920
+ }
921
+ }
922
+ },
923
+ {
924
+ "kind": "function",
925
+ "name": "respondToVisibility",
926
+ "parameters": [
927
+ {
928
+ "name": "element",
929
+ "type": {
930
+ "text": "HTMLElement"
931
+ },
932
+ "description": "HTMLElement to observe"
933
+ },
934
+ {
935
+ "name": "callback",
936
+ "type": {
937
+ "text": "(arg0: boolean) => any"
938
+ },
939
+ "description": "(boolean) => any function called when the visibility changes"
940
+ }
941
+ ],
942
+ "description": "Setup an `IntersectionObserver` which will activate a callback function when an element becomes visible on screen",
943
+ "privacy": "public"
944
+ }
945
+ ],
946
+ "exports": [
947
+ {
948
+ "kind": "js",
949
+ "name": "createObserver",
950
+ "declaration": {
951
+ "name": "createObserver",
952
+ "module": "src/observer/observer.ts"
953
+ }
954
+ },
955
+ {
956
+ "kind": "js",
957
+ "name": "respondToVisibility",
958
+ "declaration": {
959
+ "name": "respondToVisibility",
960
+ "module": "src/observer/observer.ts"
961
+ }
962
+ }
963
+ ]
964
+ },
965
+ {
966
+ "kind": "javascript-module",
967
+ "path": "src/resource/index.ts",
968
+ "declarations": [],
969
+ "exports": [
970
+ {
971
+ "kind": "js",
972
+ "name": "*",
973
+ "declaration": {
974
+ "name": "*",
975
+ "package": "./types"
976
+ }
977
+ }
978
+ ]
979
+ },
980
+ {
981
+ "kind": "javascript-module",
982
+ "path": "src/resource/types.ts",
983
+ "declarations": [
984
+ {
985
+ "kind": "variable",
986
+ "name": "ResourceType",
987
+ "type": {
988
+ "text": "{\n local: 'local',\n remote: 'remote',\n}"
989
+ },
990
+ "default": "{\n local: 'local',\n remote: 'remote',\n}",
991
+ "privacy": "public"
992
+ }
993
+ ],
994
+ "exports": [
995
+ {
996
+ "kind": "js",
997
+ "name": "ResourceType",
998
+ "declaration": {
999
+ "name": "ResourceType",
1000
+ "module": "src/resource/types.ts"
1001
+ }
1002
+ }
1003
+ ]
1004
+ },
1005
+ {
1006
+ "kind": "javascript-module",
1007
+ "path": "src/serializers/index.ts",
1008
+ "declarations": [],
1009
+ "exports": [
1010
+ {
1011
+ "kind": "js",
1012
+ "name": "*",
1013
+ "declaration": {
1014
+ "name": "*",
1015
+ "package": "./json"
1016
+ }
1017
+ }
1018
+ ]
1019
+ },
1020
+ {
1021
+ "kind": "javascript-module",
1022
+ "path": "src/styles/color.ts",
1023
+ "declarations": [
1024
+ {
1025
+ "kind": "variable",
1026
+ "name": "activeColorScheme"
1027
+ }
1028
+ ],
1029
+ "exports": [
1030
+ {
1031
+ "kind": "js",
1032
+ "name": "activeColorScheme",
1033
+ "declaration": {
1034
+ "name": "activeColorScheme",
1035
+ "module": "src/styles/color.ts"
1036
+ }
1037
+ }
1038
+ ]
1039
+ },
1040
+ {
1041
+ "kind": "javascript-module",
1042
+ "path": "src/styles/dom.ts",
1043
+ "declarations": [
1044
+ {
1045
+ "kind": "function",
1046
+ "name": "insertDocumentCSSRule",
1047
+ "return": {
1048
+ "type": {
1049
+ "text": "(() => void)"
1050
+ }
1051
+ },
1052
+ "parameters": [
1053
+ {
1054
+ "name": "cssRule",
1055
+ "type": {
1056
+ "text": "string"
1057
+ }
1058
+ },
1059
+ {
1060
+ "name": "styleElementId",
1061
+ "type": {
1062
+ "text": "string"
1063
+ }
1064
+ }
1065
+ ]
1066
+ },
1067
+ {
1068
+ "kind": "function",
1069
+ "name": "insertDocumentLink",
1070
+ "parameters": [
1071
+ {
1072
+ "name": "href",
1073
+ "type": {
1074
+ "text": "string"
1075
+ }
1076
+ }
1077
+ ]
1078
+ }
1079
+ ],
1080
+ "exports": [
1081
+ {
1082
+ "kind": "js",
1083
+ "name": "insertDocumentCSSRule",
1084
+ "declaration": {
1085
+ "name": "insertDocumentCSSRule",
1086
+ "module": "src/styles/dom.ts"
1087
+ }
1088
+ },
1089
+ {
1090
+ "kind": "js",
1091
+ "name": "insertDocumentLink",
1092
+ "declaration": {
1093
+ "name": "insertDocumentLink",
1094
+ "module": "src/styles/dom.ts"
1095
+ }
1096
+ }
1097
+ ]
1098
+ },
1099
+ {
1100
+ "kind": "javascript-module",
1101
+ "path": "src/styles/index.ts",
1102
+ "declarations": [],
1103
+ "exports": [
1104
+ {
1105
+ "kind": "js",
1106
+ "name": "*",
1107
+ "declaration": {
1108
+ "name": "*",
1109
+ "package": "./color"
1110
+ }
1111
+ },
1112
+ {
1113
+ "kind": "js",
1114
+ "name": "*",
1115
+ "declaration": {
1116
+ "name": "*",
1117
+ "package": "./dom"
1118
+ }
1119
+ },
1120
+ {
1121
+ "kind": "js",
1122
+ "name": "*",
1123
+ "declaration": {
1124
+ "name": "*",
1125
+ "package": "./slotted-styles"
1126
+ }
1127
+ },
1128
+ {
1129
+ "kind": "js",
1130
+ "name": "*",
1131
+ "declaration": {
1132
+ "name": "*",
1133
+ "package": "./typography"
1134
+ }
1135
+ }
1136
+ ]
1137
+ },
1138
+ {
1139
+ "kind": "javascript-module",
1140
+ "path": "src/styles/slotted-styles.ts",
1141
+ "declarations": [
1142
+ {
1143
+ "kind": "class",
1144
+ "description": "",
1145
+ "name": "SlottedStyles",
1146
+ "members": [
1147
+ {
1148
+ "kind": "field",
1149
+ "name": "styles",
1150
+ "type": {
1151
+ "text": "ElementStyles"
1152
+ }
1153
+ },
1154
+ {
1155
+ "kind": "method",
1156
+ "name": "stylesChanged",
1157
+ "return": {
1158
+ "type": {
1159
+ "text": "void"
1160
+ }
1161
+ },
1162
+ "parameters": [
1163
+ {
1164
+ "name": "prev",
1165
+ "type": {
1166
+ "text": "ElementStyles"
1167
+ }
1168
+ },
1169
+ {
1170
+ "name": "next",
1171
+ "type": {
1172
+ "text": "ElementStyles"
1173
+ }
1174
+ }
1175
+ ]
1176
+ }
1177
+ ],
1178
+ "superclass": {
1179
+ "name": "FASTElement",
1180
+ "package": "@microsoft/fast-element"
1181
+ },
1182
+ "tagName": "slotted-styles",
1183
+ "customElement": true
1184
+ }
1185
+ ],
1186
+ "exports": [
1187
+ {
1188
+ "kind": "js",
1189
+ "name": "SlottedStyles",
1190
+ "declaration": {
1191
+ "name": "SlottedStyles",
1192
+ "module": "src/styles/slotted-styles.ts"
1193
+ }
1194
+ },
1195
+ {
1196
+ "kind": "custom-element-definition",
1197
+ "name": "slotted-styles",
1198
+ "declaration": {
1199
+ "name": "SlottedStyles",
1200
+ "module": "src/styles/slotted-styles.ts"
1201
+ }
1202
+ }
1203
+ ]
1204
+ },
1205
+ {
1206
+ "kind": "javascript-module",
1207
+ "path": "src/styles/typography.ts",
1208
+ "declarations": [
1209
+ {
1210
+ "kind": "function",
1211
+ "name": "loadFontFaces",
1212
+ "parameters": [
1213
+ {
1214
+ "name": "fontFaceRules"
1215
+ },
1216
+ {
1217
+ "name": "styleElementId"
1218
+ }
1219
+ ]
1220
+ },
1221
+ {
1222
+ "kind": "function",
1223
+ "name": "getFontMixin",
1224
+ "parameters": [
1225
+ {
1226
+ "name": "family",
1227
+ "type": {
1228
+ "text": "string"
1229
+ }
1230
+ },
1231
+ {
1232
+ "name": "style",
1233
+ "default": "FontStyle.Normal",
1234
+ "type": {
1235
+ "text": "FontStyle"
1236
+ }
1237
+ },
1238
+ {
1239
+ "name": "weight",
1240
+ "default": "FontWeight.Regular",
1241
+ "type": {
1242
+ "text": "FontWeight"
1243
+ }
1244
+ }
1245
+ ]
1246
+ },
1247
+ {
1248
+ "kind": "variable",
1249
+ "name": "TypeRampValues",
1250
+ "type": {
1251
+ "text": "{\n minusOne: -1,\n minusTwo: -2,\n plusOne: 1,\n plusTwo: 2,\n plusThree: 3,\n plusFour: 4,\n plusFive: 5,\n plusSix: 6,\n}"
1252
+ },
1253
+ "default": "{\n minusOne: -1,\n minusTwo: -2,\n plusOne: 1,\n plusTwo: 2,\n plusThree: 3,\n plusFour: 4,\n plusFive: 5,\n plusSix: 6,\n}"
1254
+ }
1255
+ ],
1256
+ "exports": [
1257
+ {
1258
+ "kind": "js",
1259
+ "name": "loadFontFaces",
1260
+ "declaration": {
1261
+ "name": "loadFontFaces",
1262
+ "module": "src/styles/typography.ts"
1263
+ }
1264
+ },
1265
+ {
1266
+ "kind": "js",
1267
+ "name": "getFontMixin",
1268
+ "declaration": {
1269
+ "name": "getFontMixin",
1270
+ "module": "src/styles/typography.ts"
1271
+ }
1272
+ },
1273
+ {
1274
+ "kind": "js",
1275
+ "name": "TypeRampValues",
1276
+ "declaration": {
1277
+ "name": "TypeRampValues",
1278
+ "module": "src/styles/typography.ts"
1279
+ }
1280
+ }
1281
+ ]
1282
+ },
1283
+ {
1284
+ "kind": "javascript-module",
1285
+ "path": "src/utils/index.ts",
1286
+ "declarations": [],
1287
+ "exports": [
1288
+ {
1289
+ "kind": "js",
1290
+ "name": "*",
1291
+ "declaration": {
1292
+ "name": "*",
1293
+ "package": "./logger"
1294
+ }
1295
+ }
1296
+ ]
1297
+ },
1298
+ {
1299
+ "kind": "javascript-module",
1300
+ "path": "src/utils/logger.ts",
1301
+ "declarations": [
1302
+ {
1303
+ "kind": "variable",
1304
+ "name": "logger"
1305
+ }
1306
+ ],
1307
+ "exports": [
1308
+ {
1309
+ "kind": "js",
1310
+ "name": "logger",
1311
+ "declaration": {
1312
+ "name": "logger",
1313
+ "module": "src/utils/logger.ts"
1314
+ }
1315
+ }
1316
+ ]
1317
+ },
1318
+ {
1319
+ "kind": "javascript-module",
1320
+ "path": "src/uuid/index.ts",
1321
+ "declarations": [],
1322
+ "exports": [
1323
+ {
1324
+ "kind": "js",
1325
+ "name": "*",
1326
+ "declaration": {
1327
+ "name": "*",
1328
+ "package": "./uuid"
1329
+ }
1330
+ }
1331
+ ]
1332
+ },
1333
+ {
1334
+ "kind": "javascript-module",
1335
+ "path": "src/uuid/uuid.ts",
1336
+ "declarations": [
1337
+ {
1338
+ "kind": "variable",
1339
+ "name": "UUID"
1340
+ }
1341
+ ],
1342
+ "exports": [
1343
+ {
1344
+ "kind": "js",
1345
+ "name": "UUID",
1346
+ "declaration": {
1347
+ "name": "UUID",
1348
+ "module": "src/uuid/uuid.ts"
1349
+ }
1350
+ }
1351
+ ]
1352
+ },
1353
+ {
1354
+ "kind": "javascript-module",
1355
+ "path": "src/window/index.ts",
1356
+ "declarations": [],
1357
+ "exports": [
1358
+ {
1359
+ "kind": "js",
1360
+ "name": "*",
1361
+ "declaration": {
1362
+ "name": "*",
1363
+ "package": "./window"
1364
+ }
1365
+ }
1366
+ ]
1367
+ },
1368
+ {
1369
+ "kind": "javascript-module",
1370
+ "path": "src/window/window.ts",
1371
+ "declarations": [
1372
+ {
1373
+ "kind": "function",
1374
+ "name": "inIFrame"
1375
+ },
1376
+ {
1377
+ "kind": "function",
1378
+ "name": "inSymphonyDesktop"
1379
+ },
1380
+ {
1381
+ "kind": "variable",
1382
+ "name": "POPUP_DEFAULT_WIDTH",
1383
+ "type": {
1384
+ "text": "number"
1385
+ },
1386
+ "default": "483"
1387
+ },
1388
+ {
1389
+ "kind": "variable",
1390
+ "name": "POPUP_DEFAULT_HEIGHT",
1391
+ "type": {
1392
+ "text": "number"
1393
+ },
1394
+ "default": "600"
1395
+ },
1396
+ {
1397
+ "kind": "function",
1398
+ "name": "openPopup",
1399
+ "parameters": [
1400
+ {
1401
+ "name": "urlNavigate",
1402
+ "type": {
1403
+ "text": "string"
1404
+ }
1405
+ },
1406
+ {
1407
+ "name": "target",
1408
+ "type": {
1409
+ "text": "string"
1410
+ }
1411
+ },
1412
+ {
1413
+ "name": "popUpWidth",
1414
+ "default": "POPUP_DEFAULT_WIDTH",
1415
+ "type": {
1416
+ "text": "number"
1417
+ }
1418
+ },
1419
+ {
1420
+ "name": "popUpHeight",
1421
+ "default": "POPUP_DEFAULT_HEIGHT",
1422
+ "type": {
1423
+ "text": "number"
1424
+ }
1425
+ }
1426
+ ]
1427
+ }
1428
+ ],
1429
+ "exports": [
1430
+ {
1431
+ "kind": "js",
1432
+ "name": "inIFrame",
1433
+ "declaration": {
1434
+ "name": "inIFrame",
1435
+ "module": "src/window/window.ts"
1436
+ }
1437
+ },
1438
+ {
1439
+ "kind": "js",
1440
+ "name": "inSymphonyDesktop",
1441
+ "declaration": {
1442
+ "name": "inSymphonyDesktop",
1443
+ "module": "src/window/window.ts"
1444
+ }
1445
+ },
1446
+ {
1447
+ "kind": "js",
1448
+ "name": "POPUP_DEFAULT_WIDTH",
1449
+ "declaration": {
1450
+ "name": "POPUP_DEFAULT_WIDTH",
1451
+ "module": "src/window/window.ts"
1452
+ }
1453
+ },
1454
+ {
1455
+ "kind": "js",
1456
+ "name": "POPUP_DEFAULT_HEIGHT",
1457
+ "declaration": {
1458
+ "name": "POPUP_DEFAULT_HEIGHT",
1459
+ "module": "src/window/window.ts"
1460
+ }
1461
+ },
1462
+ {
1463
+ "kind": "js",
1464
+ "name": "openPopup",
1465
+ "declaration": {
1466
+ "name": "openPopup",
1467
+ "module": "src/window/window.ts"
1468
+ }
1469
+ }
1470
+ ]
1471
+ },
1472
+ {
1473
+ "kind": "javascript-module",
1474
+ "path": "src/directives/sync/index.ts",
1475
+ "declarations": [],
1476
+ "exports": [
1477
+ {
1478
+ "kind": "js",
1479
+ "name": "*",
1480
+ "declaration": {
1481
+ "name": "*",
1482
+ "package": "./sync"
1483
+ }
1484
+ }
1485
+ ]
1486
+ },
1487
+ {
1488
+ "kind": "javascript-module",
1489
+ "path": "src/directives/sync/sync.ts",
1490
+ "declarations": [
1491
+ {
1492
+ "kind": "variable",
1493
+ "name": "defaultEventMap",
1494
+ "type": {
1495
+ "text": "Map<string, EventName>"
1496
+ },
1497
+ "default": "new Map([\n ['FAST-TEXT-AREA', 'input'],\n ['FAST-TEXT-FIELD', 'input'],\n ['FOUNDATION-TEXT-AREA', 'input'],\n ['FOUNDATION-TEXT-FIELD', 'input'],\n ['INPUT', 'input'],\n ['ZERO-TEXT-FIELD', 'input'],\n])"
1498
+ },
1499
+ {
1500
+ "kind": "function",
1501
+ "name": "sync",
1502
+ "return": {
1503
+ "type": {
1504
+ "text": "CaptureType<TSource>"
1505
+ }
1506
+ },
1507
+ "parameters": [
1508
+ {
1509
+ "name": "binding",
1510
+ "type": {
1511
+ "text": "Binding<TSource, TReturn>"
1512
+ }
1513
+ },
1514
+ {
1515
+ "name": "conversionType",
1516
+ "default": "'string'",
1517
+ "type": {
1518
+ "text": "ConversionType"
1519
+ }
1520
+ },
1521
+ {
1522
+ "name": "eventName",
1523
+ "default": "'default'",
1524
+ "type": {
1525
+ "text": "EventName"
1526
+ }
1527
+ },
1528
+ {
1529
+ "name": "keyAttr",
1530
+ "optional": true,
1531
+ "type": {
1532
+ "text": "string"
1533
+ }
1534
+ }
1535
+ ]
1536
+ }
1537
+ ],
1538
+ "exports": [
1539
+ {
1540
+ "kind": "js",
1541
+ "name": "defaultEventMap",
1542
+ "declaration": {
1543
+ "name": "defaultEventMap",
1544
+ "module": "src/directives/sync/sync.ts"
1545
+ }
1546
+ },
1547
+ {
1548
+ "kind": "js",
1549
+ "name": "sync",
1550
+ "declaration": {
1551
+ "name": "sync",
1552
+ "module": "src/directives/sync/sync.ts"
1553
+ }
1554
+ }
1555
+ ]
1556
+ },
1557
+ {
1558
+ "kind": "javascript-module",
1559
+ "path": "src/directives/when-else/index.ts",
1560
+ "declarations": [],
1561
+ "exports": [
1562
+ {
1563
+ "kind": "js",
1564
+ "name": "*",
1565
+ "declaration": {
1566
+ "name": "*",
1567
+ "package": "./when-else"
1568
+ }
1569
+ }
1570
+ ]
1571
+ },
1572
+ {
1573
+ "kind": "javascript-module",
1574
+ "path": "src/directives/when-else/when-else.ts",
1575
+ "declarations": [
1576
+ {
1577
+ "kind": "function",
1578
+ "name": "whenElse",
1579
+ "return": {
1580
+ "type": {
1581
+ "text": "CaptureType<TSource>"
1582
+ }
1583
+ },
1584
+ "parameters": [
1585
+ {
1586
+ "name": "binding",
1587
+ "type": {
1588
+ "text": "Binding<TSource, TReturn>"
1589
+ },
1590
+ "description": "The condition to test for rendering."
1591
+ },
1592
+ {
1593
+ "name": "trueTemplateOrTemplateBinding",
1594
+ "type": {
1595
+ "text": "WhenTemplate<TSource>"
1596
+ },
1597
+ "description": "The template or a binding that gets the template to render when the condition is true."
1598
+ },
1599
+ {
1600
+ "name": "falseTemplateOrTemplateBinding",
1601
+ "type": {
1602
+ "text": "WhenTemplate<TSource>"
1603
+ },
1604
+ "description": "The template or a binding that gets the template to render when the condition is false."
1605
+ }
1606
+ ],
1607
+ "description": "Directive that allows supplying an \"else\" template to the traditional @link @microsoft/fast-element#when directive",
1608
+ "privacy": "public"
1609
+ }
1610
+ ],
1611
+ "exports": [
1612
+ {
1613
+ "kind": "js",
1614
+ "name": "whenElse",
1615
+ "declaration": {
1616
+ "name": "whenElse",
1617
+ "module": "src/directives/when-else/when-else.ts"
1618
+ }
1619
+ }
1620
+ ]
1621
+ },
1622
+ {
1623
+ "kind": "javascript-module",
1624
+ "path": "src/mappers/dto/index.ts",
1625
+ "declarations": [],
1626
+ "exports": [
1627
+ {
1628
+ "kind": "js",
1629
+ "name": "*",
1630
+ "declaration": {
1631
+ "name": "*",
1632
+ "package": "./serverRow"
1633
+ }
1634
+ },
1635
+ {
1636
+ "kind": "js",
1637
+ "name": "*",
1638
+ "declaration": {
1639
+ "name": "*",
1640
+ "package": "./types"
1641
+ }
1642
+ }
1643
+ ]
1644
+ },
1645
+ {
1646
+ "kind": "javascript-module",
1647
+ "path": "src/mappers/dto/serverRow.ts",
1648
+ "declarations": [
1649
+ {
1650
+ "kind": "class",
1651
+ "description": "",
1652
+ "name": "DefaultServerRowDTOMapper",
1653
+ "members": [
1654
+ {
1655
+ "kind": "field",
1656
+ "name": "fromDTO"
1657
+ },
1658
+ {
1659
+ "kind": "field",
1660
+ "name": "toDTO"
1661
+ }
1662
+ ]
1663
+ },
1664
+ {
1665
+ "kind": "variable",
1666
+ "name": "ServerRowDTOMapper"
1667
+ }
1668
+ ],
1669
+ "exports": [
1670
+ {
1671
+ "kind": "js",
1672
+ "name": "DefaultServerRowDTOMapper",
1673
+ "declaration": {
1674
+ "name": "DefaultServerRowDTOMapper",
1675
+ "module": "src/mappers/dto/serverRow.ts"
1676
+ }
1677
+ },
1678
+ {
1679
+ "kind": "js",
1680
+ "name": "ServerRowDTOMapper",
1681
+ "declaration": {
1682
+ "name": "ServerRowDTOMapper",
1683
+ "module": "src/mappers/dto/serverRow.ts"
1684
+ }
1685
+ }
1686
+ ]
1687
+ },
1688
+ {
1689
+ "kind": "javascript-module",
1690
+ "path": "src/mappers/dto/types.ts",
1691
+ "declarations": [],
1692
+ "exports": []
1693
+ },
1694
+ {
1695
+ "kind": "javascript-module",
1696
+ "path": "src/mixins/lifecycle/index.ts",
1697
+ "declarations": [],
1698
+ "exports": [
1699
+ {
1700
+ "kind": "js",
1701
+ "name": "*",
1702
+ "declaration": {
1703
+ "name": "*",
1704
+ "package": "./lifecycle"
1705
+ }
1706
+ }
1707
+ ]
1708
+ },
1709
+ {
1710
+ "kind": "javascript-module",
1711
+ "path": "src/mixins/lifecycle/lifecycle.ts",
1712
+ "declarations": [
1713
+ {
1714
+ "kind": "mixin",
1715
+ "description": "",
1716
+ "name": "LifecycleMixin",
1717
+ "members": [
1718
+ {
1719
+ "kind": "method",
1720
+ "name": "cloneNode",
1721
+ "return": {
1722
+ "type": {
1723
+ "text": "Node"
1724
+ }
1725
+ },
1726
+ "parameters": [
1727
+ {
1728
+ "name": "deep",
1729
+ "optional": true,
1730
+ "type": {
1731
+ "text": "boolean"
1732
+ }
1733
+ }
1734
+ ]
1735
+ },
1736
+ {
1737
+ "kind": "method",
1738
+ "name": "deepClone",
1739
+ "return": {
1740
+ "type": {
1741
+ "text": "Node"
1742
+ }
1743
+ }
1744
+ },
1745
+ {
1746
+ "kind": "field",
1747
+ "name": "shouldRunDisconnect",
1748
+ "return": {
1749
+ "type": {
1750
+ "text": ""
1751
+ }
1752
+ },
1753
+ "readonly": true
1754
+ },
1755
+ {
1756
+ "kind": "field",
1757
+ "name": "shouldRunConnect",
1758
+ "return": {
1759
+ "type": {
1760
+ "text": ""
1761
+ }
1762
+ },
1763
+ "readonly": true
1764
+ }
1765
+ ],
1766
+ "parameters": [
1767
+ {
1768
+ "name": "Base",
1769
+ "type": {
1770
+ "text": "T"
1771
+ }
1772
+ }
1773
+ ]
1774
+ },
1775
+ {
1776
+ "kind": "variable",
1777
+ "name": "layoutCacheDocument",
1778
+ "description": "Stored on the layout's internal cache to signify that the document is not part of the DOM",
1779
+ "privacy": "public"
1780
+ }
1781
+ ],
1782
+ "exports": [
1783
+ {
1784
+ "kind": "js",
1785
+ "name": "LifecycleMixin",
1786
+ "declaration": {
1787
+ "name": "LifecycleMixin",
1788
+ "module": "src/mixins/lifecycle/lifecycle.ts"
1789
+ }
1790
+ },
1791
+ {
1792
+ "kind": "js",
1793
+ "name": "layoutCacheDocument",
1794
+ "declaration": {
1795
+ "name": "layoutCacheDocument",
1796
+ "module": "src/mixins/lifecycle/lifecycle.ts"
1797
+ }
1798
+ }
1799
+ ]
1800
+ },
1801
+ {
1802
+ "kind": "javascript-module",
1803
+ "path": "src/mixins/pendingState/index.ts",
1804
+ "declarations": [],
1805
+ "exports": [
1806
+ {
1807
+ "kind": "js",
1808
+ "name": "*",
1809
+ "declaration": {
1810
+ "name": "*",
1811
+ "package": "./pendingState"
1812
+ }
1813
+ }
1814
+ ]
1815
+ },
1816
+ {
1817
+ "kind": "javascript-module",
1818
+ "path": "src/mixins/pendingState/pendingState.ts",
1819
+ "declarations": [
1820
+ {
1821
+ "kind": "mixin",
1822
+ "description": "",
1823
+ "name": "PendingState",
1824
+ "members": [
1825
+ {
1826
+ "kind": "field",
1827
+ "name": "pendingCount",
1828
+ "type": {
1829
+ "text": "number"
1830
+ },
1831
+ "privacy": "public",
1832
+ "default": "0"
1833
+ },
1834
+ {
1835
+ "kind": "field",
1836
+ "name": "resolvedCount",
1837
+ "type": {
1838
+ "text": "number"
1839
+ },
1840
+ "privacy": "public",
1841
+ "default": "0"
1842
+ },
1843
+ {
1844
+ "kind": "field",
1845
+ "name": "hasPendingChildren",
1846
+ "type": {
1847
+ "text": "boolean"
1848
+ },
1849
+ "privacy": "public",
1850
+ "default": "false"
1851
+ },
1852
+ {
1853
+ "kind": "field",
1854
+ "name": "progress",
1855
+ "type": {
1856
+ "text": "number"
1857
+ },
1858
+ "privacy": "public",
1859
+ "readonly": true
1860
+ },
1861
+ {
1862
+ "kind": "method",
1863
+ "name": "onPendingState",
1864
+ "privacy": "public",
1865
+ "return": {
1866
+ "type": {
1867
+ "text": "Promise<void>"
1868
+ }
1869
+ },
1870
+ "parameters": [
1871
+ {
1872
+ "name": "{ detail }",
1873
+ "type": {
1874
+ "text": "PendingStateEvent"
1875
+ }
1876
+ }
1877
+ ]
1878
+ }
1879
+ ],
1880
+ "parameters": [
1881
+ {
1882
+ "name": "Base",
1883
+ "type": {
1884
+ "text": "TBase"
1885
+ }
1886
+ }
1887
+ ]
1888
+ }
1889
+ ],
1890
+ "exports": [
1891
+ {
1892
+ "kind": "js",
1893
+ "name": "PendingState",
1894
+ "declaration": {
1895
+ "name": "PendingState",
1896
+ "module": "src/mixins/pendingState/pendingState.ts"
1897
+ }
1898
+ }
1899
+ ]
1900
+ },
1901
+ {
1902
+ "kind": "javascript-module",
1903
+ "path": "src/serializers/json/index.ts",
1904
+ "declarations": [],
1905
+ "exports": [
1906
+ {
1907
+ "kind": "js",
1908
+ "name": "*",
1909
+ "declaration": {
1910
+ "name": "*",
1911
+ "package": "./json"
1912
+ }
1913
+ }
1914
+ ]
1915
+ },
1916
+ {
1917
+ "kind": "javascript-module",
1918
+ "path": "src/serializers/json/json.ts",
1919
+ "declarations": [
1920
+ {
1921
+ "kind": "variable",
1922
+ "name": "JSONSerializer"
1923
+ }
1924
+ ],
1925
+ "exports": [
1926
+ {
1927
+ "kind": "js",
1928
+ "name": "JSONSerializer",
1929
+ "declaration": {
1930
+ "name": "JSONSerializer",
1931
+ "module": "src/serializers/json/json.ts"
1932
+ }
1933
+ }
1934
+ ]
1935
+ }
1936
+ ]
1937
+ }