@genesislcap/foundation-utils 14.30.3 → 14.31.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.
@@ -1,2054 +0,0 @@
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
- "description": "Determines if the current environment is a development environment.",
492
- "privacy": "public"
493
- }
494
- ],
495
- "exports": [
496
- {
497
- "kind": "js",
498
- "name": "isDev",
499
- "declaration": {
500
- "name": "isDev",
501
- "module": "src/env/is-dev.ts"
502
- }
503
- }
504
- ]
505
- },
506
- {
507
- "kind": "javascript-module",
508
- "path": "src/env/variables.ts",
509
- "declarations": [
510
- {
511
- "kind": "variable",
512
- "name": "API_HOST",
513
- "type": {
514
- "text": "string"
515
- }
516
- },
517
- {
518
- "kind": "variable",
519
- "name": "_API_HOST",
520
- "type": {
521
- "text": "string"
522
- },
523
- "description": "The Genesis Server (host0 to establish a connection (WebSocket or HTTP)).\nExample: wss://localhost:9064",
524
- "privacy": "public"
525
- },
526
- {
527
- "kind": "variable",
528
- "name": "FORCE_HTTP",
529
- "type": {
530
- "text": "string"
531
- }
532
- },
533
- {
534
- "kind": "variable",
535
- "name": "_FORCE_HTTP",
536
- "type": {
537
- "text": "string"
538
- },
539
- "description": "The path to a JSON config file for the HTTP mode.",
540
- "privacy": "public"
541
- },
542
- {
543
- "kind": "variable",
544
- "name": "HTTP_CONFIG",
545
- "type": {
546
- "text": "string"
547
- }
548
- },
549
- {
550
- "kind": "variable",
551
- "name": "_HTTP_CONFIG",
552
- "type": {
553
- "text": "string"
554
- },
555
- "description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
556
- "privacy": "public"
557
- },
558
- {
559
- "kind": "variable",
560
- "name": "DEFAULT_ORGANISATION",
561
- "type": {
562
- "text": "string"
563
- }
564
- },
565
- {
566
- "kind": "variable",
567
- "name": "_DEFAULT_ORGANISATION",
568
- "type": {
569
- "text": "string"
570
- },
571
- "description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
572
- "privacy": "public"
573
- },
574
- {
575
- "kind": "variable",
576
- "name": "DEFAULT_PASSWORD",
577
- "type": {
578
- "text": "string"
579
- }
580
- },
581
- {
582
- "kind": "variable",
583
- "name": "_DEFAULT_PASSWORD",
584
- "type": {
585
- "text": "string"
586
- },
587
- "description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
588
- "privacy": "public"
589
- },
590
- {
591
- "kind": "variable",
592
- "name": "DEFAULT_USER",
593
- "type": {
594
- "text": "string"
595
- }
596
- },
597
- {
598
- "kind": "variable",
599
- "name": "_DEFAULT_USER",
600
- "type": {
601
- "text": "string"
602
- },
603
- "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
604
- "privacy": "public"
605
- },
606
- {
607
- "kind": "variable",
608
- "name": "SOCKET_EXT",
609
- "type": {
610
- "text": "string"
611
- }
612
- },
613
- {
614
- "kind": "variable",
615
- "name": "_SOCKET_EXT",
616
- "type": {
617
- "text": "string"
618
- },
619
- "description": "The sub-path used for WebSocket connections.\nExample: API_HOST + '/' + SOCKET_EXT - wss://localhost:9064/gwf.",
620
- "privacy": "public"
621
- }
622
- ],
623
- "exports": [
624
- {
625
- "kind": "js",
626
- "name": "API_HOST",
627
- "declaration": {
628
- "name": "_API_HOST",
629
- "module": "src/env/variables.ts"
630
- }
631
- },
632
- {
633
- "kind": "js",
634
- "name": "FORCE_HTTP",
635
- "declaration": {
636
- "name": "_FORCE_HTTP",
637
- "module": "src/env/variables.ts"
638
- }
639
- },
640
- {
641
- "kind": "js",
642
- "name": "HTTP_CONFIG",
643
- "declaration": {
644
- "name": "_HTTP_CONFIG",
645
- "module": "src/env/variables.ts"
646
- }
647
- },
648
- {
649
- "kind": "js",
650
- "name": "DEFAULT_ORGANISATION",
651
- "declaration": {
652
- "name": "_DEFAULT_ORGANISATION",
653
- "module": "src/env/variables.ts"
654
- }
655
- },
656
- {
657
- "kind": "js",
658
- "name": "DEFAULT_PASSWORD",
659
- "declaration": {
660
- "name": "_DEFAULT_PASSWORD",
661
- "module": "src/env/variables.ts"
662
- }
663
- },
664
- {
665
- "kind": "js",
666
- "name": "DEFAULT_USER",
667
- "declaration": {
668
- "name": "_DEFAULT_USER",
669
- "module": "src/env/variables.ts"
670
- }
671
- },
672
- {
673
- "kind": "js",
674
- "name": "SOCKET_EXT",
675
- "declaration": {
676
- "name": "_SOCKET_EXT",
677
- "module": "src/env/variables.ts"
678
- }
679
- }
680
- ]
681
- },
682
- {
683
- "kind": "javascript-module",
684
- "path": "src/formatters/datetime.ts",
685
- "declarations": [
686
- {
687
- "kind": "function",
688
- "name": "formatDateTimestamp",
689
- "return": {
690
- "type": {
691
- "text": "string"
692
- }
693
- },
694
- "parameters": [
695
- {
696
- "name": "timestamp",
697
- "type": {
698
- "text": "number"
699
- }
700
- }
701
- ],
702
- "description": "Formats [DATE] UNIX Timestamps (without time) to readable strings",
703
- "privacy": "public"
704
- },
705
- {
706
- "kind": "function",
707
- "name": "formatDateTimeTimestamp",
708
- "return": {
709
- "type": {
710
- "text": "string"
711
- }
712
- },
713
- "parameters": [
714
- {
715
- "name": "timestamp",
716
- "type": {
717
- "text": "number"
718
- }
719
- }
720
- ],
721
- "description": "Formats [DATETIME] UNIX Timestamps (with time) to readable strings",
722
- "privacy": "public"
723
- },
724
- {
725
- "kind": "function",
726
- "name": "formatTimestamp",
727
- "return": {
728
- "type": {
729
- "text": "string"
730
- }
731
- },
732
- "parameters": [
733
- {
734
- "name": "timestamp",
735
- "type": {
736
- "text": "number"
737
- },
738
- "description": "The UNIX Timestamp."
739
- },
740
- {
741
- "name": "withTime",
742
- "type": {
743
- "text": "boolean"
744
- },
745
- "description": "The flag to determine if formatted value should contain 'time' info."
746
- }
747
- ],
748
- "description": "Formats [DATE|DATETIME] Unix Timestamps to readable strings",
749
- "privacy": "public"
750
- }
751
- ],
752
- "exports": [
753
- {
754
- "kind": "js",
755
- "name": "formatDateTimestamp",
756
- "declaration": {
757
- "name": "formatDateTimestamp",
758
- "module": "src/formatters/datetime.ts"
759
- }
760
- },
761
- {
762
- "kind": "js",
763
- "name": "formatDateTimeTimestamp",
764
- "declaration": {
765
- "name": "formatDateTimeTimestamp",
766
- "module": "src/formatters/datetime.ts"
767
- }
768
- },
769
- {
770
- "kind": "js",
771
- "name": "formatTimestamp",
772
- "declaration": {
773
- "name": "formatTimestamp",
774
- "module": "src/formatters/datetime.ts"
775
- }
776
- }
777
- ]
778
- },
779
- {
780
- "kind": "javascript-module",
781
- "path": "src/formatters/index.ts",
782
- "declarations": [],
783
- "exports": [
784
- {
785
- "kind": "js",
786
- "name": "*",
787
- "declaration": {
788
- "name": "*",
789
- "package": "./datetime"
790
- }
791
- }
792
- ]
793
- },
794
- {
795
- "kind": "javascript-module",
796
- "path": "src/logger/index.ts",
797
- "declarations": [],
798
- "exports": [
799
- {
800
- "kind": "js",
801
- "name": "*",
802
- "declaration": {
803
- "name": "*",
804
- "package": "./logger"
805
- }
806
- }
807
- ]
808
- },
809
- {
810
- "kind": "javascript-module",
811
- "path": "src/logger/logger.ts",
812
- "declarations": [
813
- {
814
- "kind": "variable",
815
- "name": "defaultLoggerOptions",
816
- "type": {
817
- "text": "LoggerOptions"
818
- },
819
- "default": "{\n level: logLevelDebug,\n}",
820
- "description": "The default logger options.",
821
- "privacy": "public"
822
- },
823
- {
824
- "kind": "function",
825
- "name": "createLogger",
826
- "return": {
827
- "type": {
828
- "text": ""
829
- }
830
- },
831
- "parameters": [
832
- {
833
- "name": "name",
834
- "type": {
835
- "text": "string"
836
- },
837
- "description": "The name to give the logger."
838
- },
839
- {
840
- "name": "options",
841
- "default": "defaultLoggerOptions",
842
- "type": {
843
- "text": "LoggerOptions"
844
- },
845
- "description": "The options to use when creating the logger."
846
- }
847
- ],
848
- "description": "Creates a logger with the given name and options.",
849
- "privacy": "public"
850
- }
851
- ],
852
- "exports": [
853
- {
854
- "kind": "js",
855
- "name": "LogLevel",
856
- "declaration": {
857
- "name": "LogLevel",
858
- "package": "consola"
859
- }
860
- },
861
- {
862
- "kind": "js",
863
- "name": "defaultLoggerOptions",
864
- "declaration": {
865
- "name": "defaultLoggerOptions",
866
- "module": "src/logger/logger.ts"
867
- }
868
- },
869
- {
870
- "kind": "js",
871
- "name": "createLogger",
872
- "declaration": {
873
- "name": "createLogger",
874
- "module": "src/logger/logger.ts"
875
- }
876
- }
877
- ]
878
- },
879
- {
880
- "kind": "javascript-module",
881
- "path": "src/mappers/index.ts",
882
- "declarations": [],
883
- "exports": [
884
- {
885
- "kind": "js",
886
- "name": "*",
887
- "declaration": {
888
- "name": "*",
889
- "package": "./dto"
890
- }
891
- }
892
- ]
893
- },
894
- {
895
- "kind": "javascript-module",
896
- "path": "src/mixins/index.ts",
897
- "declarations": [],
898
- "exports": [
899
- {
900
- "kind": "js",
901
- "name": "*",
902
- "declaration": {
903
- "name": "*",
904
- "package": "./pendingState"
905
- }
906
- },
907
- {
908
- "kind": "js",
909
- "name": "*",
910
- "declaration": {
911
- "name": "*",
912
- "package": "./lifecycle"
913
- }
914
- }
915
- ]
916
- },
917
- {
918
- "kind": "javascript-module",
919
- "path": "src/observer/index.ts",
920
- "declarations": [],
921
- "exports": [
922
- {
923
- "kind": "js",
924
- "name": "*",
925
- "declaration": {
926
- "name": "*",
927
- "package": "./observer"
928
- }
929
- }
930
- ]
931
- },
932
- {
933
- "kind": "javascript-module",
934
- "path": "src/observer/observer.ts",
935
- "declarations": [
936
- {
937
- "kind": "function",
938
- "name": "createObserver",
939
- "return": {
940
- "type": {
941
- "text": "Observer<EventType>"
942
- }
943
- },
944
- "description": "Creates a new event observer instance.",
945
- "privacy": "public"
946
- },
947
- {
948
- "kind": "function",
949
- "name": "respondToVisibility",
950
- "parameters": [
951
- {
952
- "name": "element",
953
- "type": {
954
- "text": "HTMLElement"
955
- },
956
- "description": "HTMLElement to observe"
957
- },
958
- {
959
- "name": "callback",
960
- "type": {
961
- "text": "(arg0: boolean) => any"
962
- },
963
- "description": "any function called when the visibility changes"
964
- }
965
- ],
966
- "description": "Setup an `IntersectionObserver` which will activate a callback function when an element becomes visible on screen",
967
- "privacy": "public"
968
- }
969
- ],
970
- "exports": [
971
- {
972
- "kind": "js",
973
- "name": "createObserver",
974
- "declaration": {
975
- "name": "createObserver",
976
- "module": "src/observer/observer.ts"
977
- }
978
- },
979
- {
980
- "kind": "js",
981
- "name": "respondToVisibility",
982
- "declaration": {
983
- "name": "respondToVisibility",
984
- "module": "src/observer/observer.ts"
985
- }
986
- }
987
- ]
988
- },
989
- {
990
- "kind": "javascript-module",
991
- "path": "src/resource/index.ts",
992
- "declarations": [],
993
- "exports": [
994
- {
995
- "kind": "js",
996
- "name": "*",
997
- "declaration": {
998
- "name": "*",
999
- "package": "./types"
1000
- }
1001
- }
1002
- ]
1003
- },
1004
- {
1005
- "kind": "javascript-module",
1006
- "path": "src/resource/types.ts",
1007
- "declarations": [
1008
- {
1009
- "kind": "variable",
1010
- "name": "ResourceType",
1011
- "type": {
1012
- "text": "{\n local: 'local',\n remote: 'remote',\n}"
1013
- },
1014
- "default": "{\n local: 'local',\n remote: 'remote',\n}",
1015
- "description": "An object that defines two resource types: \"local\" and \"remote\".",
1016
- "privacy": "public"
1017
- }
1018
- ],
1019
- "exports": [
1020
- {
1021
- "kind": "js",
1022
- "name": "ResourceType",
1023
- "declaration": {
1024
- "name": "ResourceType",
1025
- "module": "src/resource/types.ts"
1026
- }
1027
- }
1028
- ]
1029
- },
1030
- {
1031
- "kind": "javascript-module",
1032
- "path": "src/serializers/index.ts",
1033
- "declarations": [],
1034
- "exports": [
1035
- {
1036
- "kind": "js",
1037
- "name": "*",
1038
- "declaration": {
1039
- "name": "*",
1040
- "package": "./json"
1041
- }
1042
- }
1043
- ]
1044
- },
1045
- {
1046
- "kind": "javascript-module",
1047
- "path": "src/styles/color.ts",
1048
- "declarations": [
1049
- {
1050
- "kind": "variable",
1051
- "name": "activeColorScheme",
1052
- "description": "A design token that represents the active color scheme (light or dark).",
1053
- "privacy": "public"
1054
- }
1055
- ],
1056
- "exports": [
1057
- {
1058
- "kind": "js",
1059
- "name": "activeColorScheme",
1060
- "declaration": {
1061
- "name": "activeColorScheme",
1062
- "module": "src/styles/color.ts"
1063
- }
1064
- }
1065
- ]
1066
- },
1067
- {
1068
- "kind": "javascript-module",
1069
- "path": "src/styles/dom.ts",
1070
- "declarations": [
1071
- {
1072
- "kind": "function",
1073
- "name": "insertDocumentCSSRule",
1074
- "return": {
1075
- "type": {
1076
- "text": ""
1077
- }
1078
- },
1079
- "parameters": [
1080
- {
1081
- "name": "cssRule",
1082
- "type": {
1083
- "text": "string"
1084
- },
1085
- "description": "The CSS rule to insert."
1086
- },
1087
- {
1088
- "name": "styleElementId",
1089
- "type": {
1090
- "text": "string"
1091
- },
1092
- "description": "The ID of the style element to use or create."
1093
- }
1094
- ],
1095
- "description": "Inserts a CSS rule into the document by creating a new style element or using an existing one with the specified ID.\nReturns a function that can be called to remove the rule from the document.",
1096
- "privacy": "public"
1097
- },
1098
- {
1099
- "kind": "function",
1100
- "name": "insertDocumentLink",
1101
- "parameters": [
1102
- {
1103
- "name": "href",
1104
- "type": {
1105
- "text": "string"
1106
- },
1107
- "description": "The URL of the CSS file to insert."
1108
- }
1109
- ],
1110
- "description": "Inserts a CSS link into the document if it doesn't already exist.",
1111
- "privacy": "public"
1112
- }
1113
- ],
1114
- "exports": [
1115
- {
1116
- "kind": "js",
1117
- "name": "insertDocumentCSSRule",
1118
- "declaration": {
1119
- "name": "insertDocumentCSSRule",
1120
- "module": "src/styles/dom.ts"
1121
- }
1122
- },
1123
- {
1124
- "kind": "js",
1125
- "name": "insertDocumentLink",
1126
- "declaration": {
1127
- "name": "insertDocumentLink",
1128
- "module": "src/styles/dom.ts"
1129
- }
1130
- }
1131
- ]
1132
- },
1133
- {
1134
- "kind": "javascript-module",
1135
- "path": "src/styles/index.ts",
1136
- "declarations": [],
1137
- "exports": [
1138
- {
1139
- "kind": "js",
1140
- "name": "*",
1141
- "declaration": {
1142
- "name": "*",
1143
- "package": "./color"
1144
- }
1145
- },
1146
- {
1147
- "kind": "js",
1148
- "name": "*",
1149
- "declaration": {
1150
- "name": "*",
1151
- "package": "./dom"
1152
- }
1153
- },
1154
- {
1155
- "kind": "js",
1156
- "name": "*",
1157
- "declaration": {
1158
- "name": "*",
1159
- "package": "./slotted-styles"
1160
- }
1161
- },
1162
- {
1163
- "kind": "js",
1164
- "name": "*",
1165
- "declaration": {
1166
- "name": "*",
1167
- "package": "./typography"
1168
- }
1169
- }
1170
- ]
1171
- },
1172
- {
1173
- "kind": "javascript-module",
1174
- "path": "src/styles/slotted-styles.ts",
1175
- "declarations": [
1176
- {
1177
- "kind": "class",
1178
- "description": "A custom element that encapsulates a set of styles that can be applied to slotted elements.",
1179
- "name": "SlottedStyles",
1180
- "members": [
1181
- {
1182
- "kind": "field",
1183
- "name": "styles",
1184
- "type": {
1185
- "text": "ElementStyles"
1186
- },
1187
- "description": "The styles to apply to slotted elements."
1188
- },
1189
- {
1190
- "kind": "method",
1191
- "name": "stylesChanged",
1192
- "return": {
1193
- "type": {
1194
- "text": "void"
1195
- }
1196
- },
1197
- "parameters": [
1198
- {
1199
- "name": "prev",
1200
- "type": {
1201
- "text": "ElementStyles"
1202
- },
1203
- "description": "The previous value of the `styles` property."
1204
- },
1205
- {
1206
- "name": "next",
1207
- "type": {
1208
- "text": "ElementStyles"
1209
- },
1210
- "description": "The new value of the `styles` property."
1211
- }
1212
- ],
1213
- "description": "Called when the `styles` property changes.\nRemoves the previous styles from the parent element's FAST controller and adds the new styles."
1214
- }
1215
- ],
1216
- "superclass": {
1217
- "name": "FASTElement",
1218
- "package": "@microsoft/fast-element"
1219
- },
1220
- "tagName": "slotted-styles",
1221
- "customElement": true
1222
- }
1223
- ],
1224
- "exports": [
1225
- {
1226
- "kind": "js",
1227
- "name": "SlottedStyles",
1228
- "declaration": {
1229
- "name": "SlottedStyles",
1230
- "module": "src/styles/slotted-styles.ts"
1231
- }
1232
- },
1233
- {
1234
- "kind": "custom-element-definition",
1235
- "name": "slotted-styles",
1236
- "declaration": {
1237
- "name": "SlottedStyles",
1238
- "module": "src/styles/slotted-styles.ts"
1239
- }
1240
- }
1241
- ]
1242
- },
1243
- {
1244
- "kind": "javascript-module",
1245
- "path": "src/styles/typography.ts",
1246
- "declarations": [
1247
- {
1248
- "kind": "function",
1249
- "name": "loadFontFaces",
1250
- "return": {
1251
- "type": {
1252
- "text": "void"
1253
- }
1254
- },
1255
- "parameters": [
1256
- {
1257
- "name": "fontFaceRules",
1258
- "type": {
1259
- "text": "string"
1260
- },
1261
- "description": "The CSS rules for the font faces."
1262
- },
1263
- {
1264
- "name": "styleElementId",
1265
- "type": {
1266
- "text": "string"
1267
- },
1268
- "description": "The ID of the style element to insert into the document."
1269
- }
1270
- ],
1271
- "description": "Loads font faces by inserting a style element with the specified font face rules into the document.",
1272
- "privacy": "public"
1273
- },
1274
- {
1275
- "kind": "function",
1276
- "name": "getFontMixin",
1277
- "return": {
1278
- "type": {
1279
- "text": ""
1280
- }
1281
- },
1282
- "parameters": [
1283
- {
1284
- "name": "family",
1285
- "type": {
1286
- "text": "string"
1287
- },
1288
- "description": "The font family."
1289
- },
1290
- {
1291
- "name": "style",
1292
- "default": "FontStyle.Normal",
1293
- "type": {
1294
- "text": "FontStyle"
1295
- },
1296
- "description": "Optional. The font style. Defaults to FontStyle.Normal."
1297
- },
1298
- {
1299
- "name": "weight",
1300
- "default": "FontWeight.Regular",
1301
- "type": {
1302
- "text": "FontWeight"
1303
- },
1304
- "description": "Optional. The font weight. Defaults to FontWeight.Regular."
1305
- }
1306
- ],
1307
- "description": "Generates a CSS mixin for the specified font family, style, and weight.",
1308
- "privacy": "public"
1309
- },
1310
- {
1311
- "kind": "variable",
1312
- "name": "TypeRampValues",
1313
- "type": {
1314
- "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}"
1315
- },
1316
- "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}",
1317
- "description": "An object containing type ramp values.",
1318
- "privacy": "public"
1319
- }
1320
- ],
1321
- "exports": [
1322
- {
1323
- "kind": "js",
1324
- "name": "loadFontFaces",
1325
- "declaration": {
1326
- "name": "loadFontFaces",
1327
- "module": "src/styles/typography.ts"
1328
- }
1329
- },
1330
- {
1331
- "kind": "js",
1332
- "name": "getFontMixin",
1333
- "declaration": {
1334
- "name": "getFontMixin",
1335
- "module": "src/styles/typography.ts"
1336
- }
1337
- },
1338
- {
1339
- "kind": "js",
1340
- "name": "TypeRampValues",
1341
- "declaration": {
1342
- "name": "TypeRampValues",
1343
- "module": "src/styles/typography.ts"
1344
- }
1345
- }
1346
- ]
1347
- },
1348
- {
1349
- "kind": "javascript-module",
1350
- "path": "src/utils/index.ts",
1351
- "declarations": [],
1352
- "exports": [
1353
- {
1354
- "kind": "js",
1355
- "name": "*",
1356
- "declaration": {
1357
- "name": "*",
1358
- "package": "./logger"
1359
- }
1360
- }
1361
- ]
1362
- },
1363
- {
1364
- "kind": "javascript-module",
1365
- "path": "src/utils/logger.ts",
1366
- "declarations": [
1367
- {
1368
- "kind": "variable",
1369
- "name": "logger"
1370
- }
1371
- ],
1372
- "exports": [
1373
- {
1374
- "kind": "js",
1375
- "name": "logger",
1376
- "declaration": {
1377
- "name": "logger",
1378
- "module": "src/utils/logger.ts"
1379
- }
1380
- }
1381
- ]
1382
- },
1383
- {
1384
- "kind": "javascript-module",
1385
- "path": "src/uuid/index.ts",
1386
- "declarations": [],
1387
- "exports": [
1388
- {
1389
- "kind": "js",
1390
- "name": "*",
1391
- "declaration": {
1392
- "name": "*",
1393
- "package": "./uuid"
1394
- }
1395
- }
1396
- ]
1397
- },
1398
- {
1399
- "kind": "javascript-module",
1400
- "path": "src/uuid/uuid.ts",
1401
- "declarations": [
1402
- {
1403
- "kind": "variable",
1404
- "name": "UUID",
1405
- "description": "A dependency injection token for the UUID interface.",
1406
- "privacy": "public"
1407
- }
1408
- ],
1409
- "exports": [
1410
- {
1411
- "kind": "js",
1412
- "name": "UUID",
1413
- "declaration": {
1414
- "name": "UUID",
1415
- "module": "src/uuid/uuid.ts"
1416
- }
1417
- }
1418
- ]
1419
- },
1420
- {
1421
- "kind": "javascript-module",
1422
- "path": "src/window/index.ts",
1423
- "declarations": [],
1424
- "exports": [
1425
- {
1426
- "kind": "js",
1427
- "name": "*",
1428
- "declaration": {
1429
- "name": "*",
1430
- "package": "./window"
1431
- }
1432
- }
1433
- ]
1434
- },
1435
- {
1436
- "kind": "javascript-module",
1437
- "path": "src/window/window.ts",
1438
- "declarations": [
1439
- {
1440
- "kind": "function",
1441
- "name": "inIFrame",
1442
- "return": {
1443
- "type": {
1444
- "text": ""
1445
- }
1446
- },
1447
- "description": "Returns a boolean value indicating whether the current window is inside an iframe.",
1448
- "privacy": "public"
1449
- },
1450
- {
1451
- "kind": "function",
1452
- "name": "inSymphonyDesktop",
1453
- "return": {
1454
- "type": {
1455
- "text": ""
1456
- }
1457
- },
1458
- "description": "Returns a boolean value indicating whether the user is running the Symphony desktop app.",
1459
- "privacy": "public"
1460
- },
1461
- {
1462
- "kind": "variable",
1463
- "name": "POPUP_DEFAULT_WIDTH",
1464
- "type": {
1465
- "text": "number"
1466
- },
1467
- "default": "483",
1468
- "description": "The default width (in pixels) for pop-up windows.",
1469
- "privacy": "public"
1470
- },
1471
- {
1472
- "kind": "variable",
1473
- "name": "POPUP_DEFAULT_HEIGHT",
1474
- "type": {
1475
- "text": "number"
1476
- },
1477
- "default": "600",
1478
- "description": "The default height (in pixels) for pop-up windows.",
1479
- "privacy": "public"
1480
- },
1481
- {
1482
- "kind": "function",
1483
- "name": "openPopup",
1484
- "return": {
1485
- "type": {
1486
- "text": ""
1487
- }
1488
- },
1489
- "parameters": [
1490
- {
1491
- "name": "urlNavigate",
1492
- "type": {
1493
- "text": "string"
1494
- },
1495
- "description": "The URL to navigate to."
1496
- },
1497
- {
1498
- "name": "target",
1499
- "type": {
1500
- "text": "string"
1501
- },
1502
- "description": "The name of the new window."
1503
- },
1504
- {
1505
- "name": "popUpWidth",
1506
- "default": "POPUP_DEFAULT_WIDTH",
1507
- "type": {
1508
- "text": "number"
1509
- },
1510
- "description": "The width of the new window (optional)."
1511
- },
1512
- {
1513
- "name": "popUpHeight",
1514
- "default": "POPUP_DEFAULT_HEIGHT",
1515
- "type": {
1516
- "text": "number"
1517
- },
1518
- "description": "The height of the new window (optional)."
1519
- }
1520
- ],
1521
- "description": "Opens a new browser window with the specified URL, target, width, and height.",
1522
- "privacy": "public"
1523
- }
1524
- ],
1525
- "exports": [
1526
- {
1527
- "kind": "js",
1528
- "name": "inIFrame",
1529
- "declaration": {
1530
- "name": "inIFrame",
1531
- "module": "src/window/window.ts"
1532
- }
1533
- },
1534
- {
1535
- "kind": "js",
1536
- "name": "inSymphonyDesktop",
1537
- "declaration": {
1538
- "name": "inSymphonyDesktop",
1539
- "module": "src/window/window.ts"
1540
- }
1541
- },
1542
- {
1543
- "kind": "js",
1544
- "name": "POPUP_DEFAULT_WIDTH",
1545
- "declaration": {
1546
- "name": "POPUP_DEFAULT_WIDTH",
1547
- "module": "src/window/window.ts"
1548
- }
1549
- },
1550
- {
1551
- "kind": "js",
1552
- "name": "POPUP_DEFAULT_HEIGHT",
1553
- "declaration": {
1554
- "name": "POPUP_DEFAULT_HEIGHT",
1555
- "module": "src/window/window.ts"
1556
- }
1557
- },
1558
- {
1559
- "kind": "js",
1560
- "name": "openPopup",
1561
- "declaration": {
1562
- "name": "openPopup",
1563
- "module": "src/window/window.ts"
1564
- }
1565
- }
1566
- ]
1567
- },
1568
- {
1569
- "kind": "javascript-module",
1570
- "path": "src/directives/sync/index.ts",
1571
- "declarations": [],
1572
- "exports": [
1573
- {
1574
- "kind": "js",
1575
- "name": "*",
1576
- "declaration": {
1577
- "name": "*",
1578
- "package": "./sync"
1579
- }
1580
- }
1581
- ]
1582
- },
1583
- {
1584
- "kind": "javascript-module",
1585
- "path": "src/directives/sync/sync.ts",
1586
- "declarations": [
1587
- {
1588
- "kind": "variable",
1589
- "name": "defaultEventMap",
1590
- "type": {
1591
- "text": "Map<string, EventName>"
1592
- },
1593
- "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])",
1594
- "description": "A map that associates specific HTML element tags with their corresponding default event names.",
1595
- "privacy": "public"
1596
- },
1597
- {
1598
- "kind": "function",
1599
- "name": "sync",
1600
- "return": {
1601
- "type": {
1602
- "text": "CaptureType<TSource>"
1603
- }
1604
- },
1605
- "parameters": [
1606
- {
1607
- "name": "binding",
1608
- "type": {
1609
- "text": "Binding<TSource, TReturn>"
1610
- }
1611
- },
1612
- {
1613
- "name": "conversionType",
1614
- "default": "'string'",
1615
- "type": {
1616
- "text": "ConversionType"
1617
- }
1618
- },
1619
- {
1620
- "name": "eventName",
1621
- "default": "'default'",
1622
- "type": {
1623
- "text": "EventName"
1624
- }
1625
- },
1626
- {
1627
- "name": "keyAttr",
1628
- "optional": true,
1629
- "type": {
1630
- "text": "string"
1631
- }
1632
- }
1633
- ],
1634
- "description": "Creates a synchronization directive that binds a data source to an HTML element,",
1635
- "privacy": "public"
1636
- }
1637
- ],
1638
- "exports": [
1639
- {
1640
- "kind": "js",
1641
- "name": "defaultEventMap",
1642
- "declaration": {
1643
- "name": "defaultEventMap",
1644
- "module": "src/directives/sync/sync.ts"
1645
- }
1646
- },
1647
- {
1648
- "kind": "js",
1649
- "name": "sync",
1650
- "declaration": {
1651
- "name": "sync",
1652
- "module": "src/directives/sync/sync.ts"
1653
- }
1654
- }
1655
- ]
1656
- },
1657
- {
1658
- "kind": "javascript-module",
1659
- "path": "src/directives/when-else/index.ts",
1660
- "declarations": [],
1661
- "exports": [
1662
- {
1663
- "kind": "js",
1664
- "name": "*",
1665
- "declaration": {
1666
- "name": "*",
1667
- "package": "./when-else"
1668
- }
1669
- }
1670
- ]
1671
- },
1672
- {
1673
- "kind": "javascript-module",
1674
- "path": "src/directives/when-else/when-else.ts",
1675
- "declarations": [
1676
- {
1677
- "kind": "function",
1678
- "name": "whenElse",
1679
- "return": {
1680
- "type": {
1681
- "text": "CaptureType<TSource>"
1682
- }
1683
- },
1684
- "parameters": [
1685
- {
1686
- "name": "binding",
1687
- "type": {
1688
- "text": "Binding<TSource, TReturn>"
1689
- },
1690
- "description": "The condition to test for rendering."
1691
- },
1692
- {
1693
- "name": "trueTemplateOrTemplateBinding",
1694
- "type": {
1695
- "text": "WhenTemplate<TSource>"
1696
- },
1697
- "description": "The template or a binding that gets the template to render when the condition is true."
1698
- },
1699
- {
1700
- "name": "falseTemplateOrTemplateBinding",
1701
- "type": {
1702
- "text": "WhenTemplate<TSource>"
1703
- },
1704
- "description": "The template or a binding that gets the template to render when the condition is false."
1705
- }
1706
- ],
1707
- "description": "Directive that allows supplying an \"else\" template to the traditional https://www.fast.design/docs/api/fast-element.when/#when-function directive",
1708
- "privacy": "public"
1709
- }
1710
- ],
1711
- "exports": [
1712
- {
1713
- "kind": "js",
1714
- "name": "whenElse",
1715
- "declaration": {
1716
- "name": "whenElse",
1717
- "module": "src/directives/when-else/when-else.ts"
1718
- }
1719
- }
1720
- ]
1721
- },
1722
- {
1723
- "kind": "javascript-module",
1724
- "path": "src/mappers/dto/index.ts",
1725
- "declarations": [],
1726
- "exports": [
1727
- {
1728
- "kind": "js",
1729
- "name": "*",
1730
- "declaration": {
1731
- "name": "*",
1732
- "package": "./serverRow"
1733
- }
1734
- },
1735
- {
1736
- "kind": "js",
1737
- "name": "*",
1738
- "declaration": {
1739
- "name": "*",
1740
- "package": "./types"
1741
- }
1742
- }
1743
- ]
1744
- },
1745
- {
1746
- "kind": "javascript-module",
1747
- "path": "src/mappers/dto/serverRow.ts",
1748
- "declarations": [
1749
- {
1750
- "kind": "class",
1751
- "description": "The default `ServerRowDTOMapper`.",
1752
- "name": "DefaultServerRowDTOMapper",
1753
- "members": [
1754
- {
1755
- "kind": "field",
1756
- "name": "fromDTO",
1757
- "description": "Converts a server row DTO to an entity.",
1758
- "parameters": [
1759
- {
1760
- "description": "The DTO to convert.",
1761
- "name": "dto"
1762
- }
1763
- ],
1764
- "return": {
1765
- "type": {
1766
- "text": ""
1767
- }
1768
- },
1769
- "privacy": "public"
1770
- },
1771
- {
1772
- "kind": "field",
1773
- "name": "toDTO",
1774
- "description": "Converts a server row entity to a DTO.",
1775
- "parameters": [
1776
- {
1777
- "description": "The entity to convert.",
1778
- "name": "entity"
1779
- }
1780
- ],
1781
- "return": {
1782
- "type": {
1783
- "text": ""
1784
- }
1785
- },
1786
- "privacy": "public"
1787
- }
1788
- ]
1789
- },
1790
- {
1791
- "kind": "variable",
1792
- "name": "ServerRowDTOMapper",
1793
- "description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
1794
- "privacy": "public"
1795
- }
1796
- ],
1797
- "exports": [
1798
- {
1799
- "kind": "js",
1800
- "name": "DefaultServerRowDTOMapper",
1801
- "declaration": {
1802
- "name": "DefaultServerRowDTOMapper",
1803
- "module": "src/mappers/dto/serverRow.ts"
1804
- }
1805
- },
1806
- {
1807
- "kind": "js",
1808
- "name": "ServerRowDTOMapper",
1809
- "declaration": {
1810
- "name": "ServerRowDTOMapper",
1811
- "module": "src/mappers/dto/serverRow.ts"
1812
- }
1813
- }
1814
- ]
1815
- },
1816
- {
1817
- "kind": "javascript-module",
1818
- "path": "src/mappers/dto/types.ts",
1819
- "declarations": [],
1820
- "exports": []
1821
- },
1822
- {
1823
- "kind": "javascript-module",
1824
- "path": "src/mixins/lifecycle/index.ts",
1825
- "declarations": [],
1826
- "exports": [
1827
- {
1828
- "kind": "js",
1829
- "name": "*",
1830
- "declaration": {
1831
- "name": "*",
1832
- "package": "./lifecycle"
1833
- }
1834
- }
1835
- ]
1836
- },
1837
- {
1838
- "kind": "javascript-module",
1839
- "path": "src/mixins/lifecycle/lifecycle.ts",
1840
- "declarations": [
1841
- {
1842
- "kind": "mixin",
1843
- "description": "",
1844
- "name": "LifecycleMixin",
1845
- "members": [
1846
- {
1847
- "kind": "method",
1848
- "name": "cloneNode",
1849
- "return": {
1850
- "type": {
1851
- "text": "Node"
1852
- }
1853
- },
1854
- "parameters": [
1855
- {
1856
- "name": "deep",
1857
- "optional": true,
1858
- "type": {
1859
- "text": "boolean"
1860
- }
1861
- }
1862
- ]
1863
- },
1864
- {
1865
- "kind": "method",
1866
- "name": "deepClone",
1867
- "return": {
1868
- "type": {
1869
- "text": "Node"
1870
- }
1871
- }
1872
- },
1873
- {
1874
- "kind": "field",
1875
- "name": "shouldRunDisconnect",
1876
- "return": {
1877
- "type": {
1878
- "text": ""
1879
- }
1880
- },
1881
- "readonly": true
1882
- },
1883
- {
1884
- "kind": "field",
1885
- "name": "shouldRunConnect",
1886
- "return": {
1887
- "type": {
1888
- "text": ""
1889
- }
1890
- },
1891
- "readonly": true
1892
- }
1893
- ],
1894
- "parameters": [
1895
- {
1896
- "name": "Base",
1897
- "type": {
1898
- "text": "T"
1899
- }
1900
- }
1901
- ]
1902
- },
1903
- {
1904
- "kind": "variable",
1905
- "name": "layoutCacheDocument",
1906
- "description": "Stored on the layout's internal cache to signify that the document is not part of the DOM",
1907
- "privacy": "public"
1908
- }
1909
- ],
1910
- "exports": [
1911
- {
1912
- "kind": "js",
1913
- "name": "LifecycleMixin",
1914
- "declaration": {
1915
- "name": "LifecycleMixin",
1916
- "module": "src/mixins/lifecycle/lifecycle.ts"
1917
- }
1918
- },
1919
- {
1920
- "kind": "js",
1921
- "name": "layoutCacheDocument",
1922
- "declaration": {
1923
- "name": "layoutCacheDocument",
1924
- "module": "src/mixins/lifecycle/lifecycle.ts"
1925
- }
1926
- }
1927
- ]
1928
- },
1929
- {
1930
- "kind": "javascript-module",
1931
- "path": "src/mixins/pendingState/index.ts",
1932
- "declarations": [],
1933
- "exports": [
1934
- {
1935
- "kind": "js",
1936
- "name": "*",
1937
- "declaration": {
1938
- "name": "*",
1939
- "package": "./pendingState"
1940
- }
1941
- }
1942
- ]
1943
- },
1944
- {
1945
- "kind": "javascript-module",
1946
- "path": "src/mixins/pendingState/pendingState.ts",
1947
- "declarations": [
1948
- {
1949
- "kind": "mixin",
1950
- "description": "The `PendingState` mixin.",
1951
- "name": "PendingState",
1952
- "members": [
1953
- {
1954
- "kind": "field",
1955
- "name": "pendingCount",
1956
- "type": {
1957
- "text": "number"
1958
- },
1959
- "privacy": "public",
1960
- "default": "0",
1961
- "description": "The number of promises that are currently pending."
1962
- },
1963
- {
1964
- "kind": "field",
1965
- "name": "resolvedCount",
1966
- "type": {
1967
- "text": "number"
1968
- },
1969
- "privacy": "public",
1970
- "default": "0",
1971
- "description": "The number of promises that have been resolved."
1972
- },
1973
- {
1974
- "kind": "field",
1975
- "name": "hasPendingChildren",
1976
- "type": {
1977
- "text": "boolean"
1978
- },
1979
- "privacy": "public",
1980
- "default": "false",
1981
- "description": "A boolean indicating whether there are any pending children."
1982
- },
1983
- {
1984
- "kind": "field",
1985
- "name": "progress",
1986
- "type": {
1987
- "text": "number"
1988
- },
1989
- "privacy": "public",
1990
- "description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
1991
- "readonly": true
1992
- }
1993
- ],
1994
- "parameters": [
1995
- {
1996
- "name": "Base",
1997
- "type": {
1998
- "text": "TBase"
1999
- }
2000
- }
2001
- ],
2002
- "privacy": "public"
2003
- }
2004
- ],
2005
- "exports": [
2006
- {
2007
- "kind": "js",
2008
- "name": "PendingState",
2009
- "declaration": {
2010
- "name": "PendingState",
2011
- "module": "src/mixins/pendingState/pendingState.ts"
2012
- }
2013
- }
2014
- ]
2015
- },
2016
- {
2017
- "kind": "javascript-module",
2018
- "path": "src/serializers/json/index.ts",
2019
- "declarations": [],
2020
- "exports": [
2021
- {
2022
- "kind": "js",
2023
- "name": "*",
2024
- "declaration": {
2025
- "name": "*",
2026
- "package": "./json"
2027
- }
2028
- }
2029
- ]
2030
- },
2031
- {
2032
- "kind": "javascript-module",
2033
- "path": "src/serializers/json/json.ts",
2034
- "declarations": [
2035
- {
2036
- "kind": "variable",
2037
- "name": "JSONSerializer",
2038
- "description": "A DI token for the JSON serializer.",
2039
- "privacy": "public"
2040
- }
2041
- ],
2042
- "exports": [
2043
- {
2044
- "kind": "js",
2045
- "name": "JSONSerializer",
2046
- "declaration": {
2047
- "name": "JSONSerializer",
2048
- "module": "src/serializers/json/json.ts"
2049
- }
2050
- }
2051
- ]
2052
- }
2053
- ]
2054
- }