@genesislcap/foundation-utils 14.70.5 → 14.70.7

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,2466 @@
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": "./error"
62
+ }
63
+ },
64
+ {
65
+ "kind": "js",
66
+ "name": "*",
67
+ "declaration": {
68
+ "name": "*",
69
+ "package": "./formatters"
70
+ }
71
+ },
72
+ {
73
+ "kind": "js",
74
+ "name": "*",
75
+ "declaration": {
76
+ "name": "*",
77
+ "package": "./logger"
78
+ }
79
+ },
80
+ {
81
+ "kind": "js",
82
+ "name": "*",
83
+ "declaration": {
84
+ "name": "*",
85
+ "package": "./mappers"
86
+ }
87
+ },
88
+ {
89
+ "kind": "js",
90
+ "name": "*",
91
+ "declaration": {
92
+ "name": "*",
93
+ "package": "./mixins"
94
+ }
95
+ },
96
+ {
97
+ "kind": "js",
98
+ "name": "*",
99
+ "declaration": {
100
+ "name": "*",
101
+ "package": "./observer"
102
+ }
103
+ },
104
+ {
105
+ "kind": "js",
106
+ "name": "*",
107
+ "declaration": {
108
+ "name": "*",
109
+ "package": "./resource"
110
+ }
111
+ },
112
+ {
113
+ "kind": "js",
114
+ "name": "*",
115
+ "declaration": {
116
+ "name": "*",
117
+ "package": "./serializers"
118
+ }
119
+ },
120
+ {
121
+ "kind": "js",
122
+ "name": "*",
123
+ "declaration": {
124
+ "name": "*",
125
+ "package": "./styles"
126
+ }
127
+ },
128
+ {
129
+ "kind": "js",
130
+ "name": "*",
131
+ "declaration": {
132
+ "name": "*",
133
+ "package": "./uuid"
134
+ }
135
+ },
136
+ {
137
+ "kind": "js",
138
+ "name": "*",
139
+ "declaration": {
140
+ "name": "*",
141
+ "package": "./window"
142
+ }
143
+ }
144
+ ]
145
+ },
146
+ {
147
+ "kind": "javascript-module",
148
+ "path": "src/data/inMemoryDatabase.ts",
149
+ "declarations": [
150
+ {
151
+ "kind": "class",
152
+ "description": "An in memory database of specific DatabaseRecord types.",
153
+ "name": "InMemoryDatabase",
154
+ "members": [
155
+ {
156
+ "kind": "field",
157
+ "name": "isWorking",
158
+ "type": {
159
+ "text": "boolean"
160
+ },
161
+ "privacy": "public",
162
+ "default": "false"
163
+ },
164
+ {
165
+ "kind": "field",
166
+ "name": "records",
167
+ "type": {
168
+ "text": "Record<string, T>"
169
+ },
170
+ "privacy": "private",
171
+ "default": "{}"
172
+ },
173
+ {
174
+ "kind": "field",
175
+ "name": "beforeUpdateListeners",
176
+ "privacy": "private"
177
+ },
178
+ {
179
+ "kind": "field",
180
+ "name": "afterUpdateListeners",
181
+ "privacy": "private"
182
+ },
183
+ {
184
+ "kind": "method",
185
+ "name": "create",
186
+ "privacy": "public",
187
+ "return": {
188
+ "type": {
189
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
190
+ }
191
+ },
192
+ "parameters": [
193
+ {
194
+ "name": "newValue",
195
+ "type": {
196
+ "text": "Omit<T, 'id'>"
197
+ }
198
+ }
199
+ ]
200
+ },
201
+ {
202
+ "kind": "method",
203
+ "name": "read",
204
+ "privacy": "public",
205
+ "return": {
206
+ "type": {
207
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
208
+ }
209
+ },
210
+ "parameters": [
211
+ {
212
+ "name": "id",
213
+ "type": {
214
+ "text": "string"
215
+ }
216
+ }
217
+ ]
218
+ },
219
+ {
220
+ "kind": "method",
221
+ "name": "update",
222
+ "privacy": "public",
223
+ "return": {
224
+ "type": {
225
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
226
+ }
227
+ },
228
+ "parameters": [
229
+ {
230
+ "name": "id",
231
+ "type": {
232
+ "text": "string"
233
+ }
234
+ },
235
+ {
236
+ "name": "newValue",
237
+ "type": {
238
+ "text": "Omit<Partial<T>, 'id'>"
239
+ }
240
+ }
241
+ ]
242
+ },
243
+ {
244
+ "kind": "method",
245
+ "name": "delete",
246
+ "privacy": "public",
247
+ "return": {
248
+ "type": {
249
+ "text": "Promise<DatabaseAccessResult.Delete>"
250
+ }
251
+ },
252
+ "parameters": [
253
+ {
254
+ "name": "id",
255
+ "type": {
256
+ "text": "string"
257
+ }
258
+ }
259
+ ]
260
+ },
261
+ {
262
+ "kind": "method",
263
+ "name": "visit",
264
+ "privacy": "public",
265
+ "return": {
266
+ "type": {
267
+ "text": "Promise<void>"
268
+ }
269
+ },
270
+ "parameters": [
271
+ {
272
+ "name": "visitor",
273
+ "type": {
274
+ "text": "(record: T) => void"
275
+ }
276
+ }
277
+ ]
278
+ },
279
+ {
280
+ "kind": "method",
281
+ "name": "onBeforeUpdate",
282
+ "privacy": "public",
283
+ "return": {
284
+ "type": {
285
+ "text": "() => void"
286
+ }
287
+ },
288
+ "parameters": [
289
+ {
290
+ "name": "listener",
291
+ "type": {
292
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
293
+ }
294
+ }
295
+ ]
296
+ },
297
+ {
298
+ "kind": "method",
299
+ "name": "onAfterUpdate",
300
+ "privacy": "public",
301
+ "return": {
302
+ "type": {
303
+ "text": "() => void"
304
+ }
305
+ },
306
+ "parameters": [
307
+ {
308
+ "name": "listener",
309
+ "type": {
310
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
311
+ }
312
+ }
313
+ ]
314
+ }
315
+ ]
316
+ }
317
+ ],
318
+ "exports": [
319
+ {
320
+ "kind": "js",
321
+ "name": "InMemoryDatabase",
322
+ "declaration": {
323
+ "name": "InMemoryDatabase",
324
+ "module": "src/data/inMemoryDatabase.ts"
325
+ }
326
+ }
327
+ ]
328
+ },
329
+ {
330
+ "kind": "javascript-module",
331
+ "path": "src/data/index.ts",
332
+ "declarations": [],
333
+ "exports": [
334
+ {
335
+ "kind": "js",
336
+ "name": "*",
337
+ "declaration": {
338
+ "name": "*",
339
+ "package": "./inMemoryDatabase"
340
+ }
341
+ }
342
+ ]
343
+ },
344
+ {
345
+ "kind": "javascript-module",
346
+ "path": "src/decorators/index.ts",
347
+ "declarations": [],
348
+ "exports": [
349
+ {
350
+ "kind": "js",
351
+ "name": "*",
352
+ "declaration": {
353
+ "name": "*",
354
+ "package": "./renderOnChange"
355
+ }
356
+ }
357
+ ]
358
+ },
359
+ {
360
+ "kind": "javascript-module",
361
+ "path": "src/decorators/renderOnChange.ts",
362
+ "declarations": [
363
+ {
364
+ "kind": "function",
365
+ "name": "renderOnChange",
366
+ "parameters": [
367
+ {
368
+ "name": "target",
369
+ "type": {
370
+ "text": "FASTElement & { render(): void }"
371
+ },
372
+ "description": "The target to define the property change handler on."
373
+ },
374
+ {
375
+ "name": "name",
376
+ "type": {
377
+ "text": "string"
378
+ },
379
+ "description": "The property name."
380
+ }
381
+ ],
382
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
383
+ "privacy": "public"
384
+ }
385
+ ],
386
+ "exports": [
387
+ {
388
+ "kind": "js",
389
+ "name": "renderOnChange",
390
+ "declaration": {
391
+ "name": "renderOnChange",
392
+ "module": "src/decorators/renderOnChange.ts"
393
+ }
394
+ }
395
+ ]
396
+ },
397
+ {
398
+ "kind": "javascript-module",
399
+ "path": "src/design-system/design-system.ts",
400
+ "declarations": [
401
+ {
402
+ "kind": "function",
403
+ "name": "assureDesignSystem",
404
+ "return": {
405
+ "type": {
406
+ "text": "DesignSystemModule"
407
+ }
408
+ },
409
+ "parameters": [
410
+ {
411
+ "name": "module",
412
+ "type": {
413
+ "text": "DesignSystemModule"
414
+ }
415
+ }
416
+ ],
417
+ "privacy": "public"
418
+ }
419
+ ],
420
+ "exports": [
421
+ {
422
+ "kind": "js",
423
+ "name": "assureDesignSystem",
424
+ "declaration": {
425
+ "name": "assureDesignSystem",
426
+ "module": "src/design-system/design-system.ts"
427
+ }
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "kind": "javascript-module",
433
+ "path": "src/design-system/index.ts",
434
+ "declarations": [],
435
+ "exports": [
436
+ {
437
+ "kind": "js",
438
+ "name": "*",
439
+ "declaration": {
440
+ "name": "*",
441
+ "package": "./design-system"
442
+ }
443
+ }
444
+ ]
445
+ },
446
+ {
447
+ "kind": "javascript-module",
448
+ "path": "src/directives/index.ts",
449
+ "declarations": [],
450
+ "exports": [
451
+ {
452
+ "kind": "js",
453
+ "name": "*",
454
+ "declaration": {
455
+ "name": "*",
456
+ "package": "./sync"
457
+ }
458
+ },
459
+ {
460
+ "kind": "js",
461
+ "name": "*",
462
+ "declaration": {
463
+ "name": "*",
464
+ "package": "./when-else"
465
+ }
466
+ }
467
+ ]
468
+ },
469
+ {
470
+ "kind": "javascript-module",
471
+ "path": "src/env/index.ts",
472
+ "declarations": [],
473
+ "exports": [
474
+ {
475
+ "kind": "js",
476
+ "name": "*",
477
+ "declaration": {
478
+ "name": "*",
479
+ "package": "./is-dev"
480
+ }
481
+ },
482
+ {
483
+ "kind": "js",
484
+ "name": "*",
485
+ "declaration": {
486
+ "name": "*",
487
+ "package": "./variables"
488
+ }
489
+ }
490
+ ]
491
+ },
492
+ {
493
+ "kind": "javascript-module",
494
+ "path": "src/env/is-dev.ts",
495
+ "declarations": [
496
+ {
497
+ "kind": "function",
498
+ "name": "isDev",
499
+ "description": "Determines if the current environment is a development environment.",
500
+ "privacy": "public"
501
+ }
502
+ ],
503
+ "exports": [
504
+ {
505
+ "kind": "js",
506
+ "name": "isDev",
507
+ "declaration": {
508
+ "name": "isDev",
509
+ "module": "src/env/is-dev.ts"
510
+ }
511
+ }
512
+ ]
513
+ },
514
+ {
515
+ "kind": "javascript-module",
516
+ "path": "src/env/variables.ts",
517
+ "declarations": [
518
+ {
519
+ "kind": "variable",
520
+ "name": "SOCKET_EXT",
521
+ "type": {
522
+ "text": "string"
523
+ }
524
+ },
525
+ {
526
+ "kind": "variable",
527
+ "name": "_SOCKET_EXT",
528
+ "type": {
529
+ "text": "string"
530
+ },
531
+ "default": "'gwf'",
532
+ "description": "The sub-path used for WebSocket connections when API_HOST is not set",
533
+ "privacy": "public"
534
+ },
535
+ {
536
+ "kind": "variable",
537
+ "name": "FORCE_HTTP",
538
+ "type": {
539
+ "text": "string"
540
+ }
541
+ },
542
+ {
543
+ "kind": "variable",
544
+ "name": "_FORCE_HTTP",
545
+ "type": {
546
+ "text": "string"
547
+ },
548
+ "description": "The path to a JSON config file for the HTTP mode.",
549
+ "privacy": "public"
550
+ },
551
+ {
552
+ "kind": "variable",
553
+ "name": "API_HOST",
554
+ "type": {
555
+ "text": "string"
556
+ }
557
+ },
558
+ {
559
+ "kind": "variable",
560
+ "name": "_API_HOST",
561
+ "type": {
562
+ "text": "string"
563
+ },
564
+ "default": "`${PROTOCOL}//${location.host}/${_SOCKET_EXT}/`",
565
+ "description": "The Genesis Server URL (WebSocket or HTTP).",
566
+ "privacy": "public"
567
+ },
568
+ {
569
+ "kind": "variable",
570
+ "name": "HTTP_CONFIG",
571
+ "type": {
572
+ "text": "string"
573
+ }
574
+ },
575
+ {
576
+ "kind": "variable",
577
+ "name": "_HTTP_CONFIG",
578
+ "type": {
579
+ "text": "string"
580
+ },
581
+ "description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
582
+ "privacy": "public"
583
+ },
584
+ {
585
+ "kind": "variable",
586
+ "name": "DEFAULT_ORGANISATION",
587
+ "type": {
588
+ "text": "string"
589
+ }
590
+ },
591
+ {
592
+ "kind": "variable",
593
+ "name": "_DEFAULT_ORGANISATION",
594
+ "type": {
595
+ "text": "string"
596
+ },
597
+ "description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
598
+ "privacy": "public"
599
+ },
600
+ {
601
+ "kind": "variable",
602
+ "name": "DEFAULT_PASSWORD",
603
+ "type": {
604
+ "text": "string"
605
+ }
606
+ },
607
+ {
608
+ "kind": "variable",
609
+ "name": "_DEFAULT_PASSWORD",
610
+ "type": {
611
+ "text": "string"
612
+ },
613
+ "description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
614
+ "privacy": "public"
615
+ },
616
+ {
617
+ "kind": "variable",
618
+ "name": "DEFAULT_USER",
619
+ "type": {
620
+ "text": "string"
621
+ }
622
+ },
623
+ {
624
+ "kind": "variable",
625
+ "name": "_DEFAULT_USER",
626
+ "type": {
627
+ "text": "string"
628
+ },
629
+ "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
630
+ "privacy": "public"
631
+ }
632
+ ],
633
+ "exports": [
634
+ {
635
+ "kind": "js",
636
+ "name": "SOCKET_EXT",
637
+ "declaration": {
638
+ "name": "_SOCKET_EXT",
639
+ "module": "src/env/variables.ts"
640
+ }
641
+ },
642
+ {
643
+ "kind": "js",
644
+ "name": "FORCE_HTTP",
645
+ "declaration": {
646
+ "name": "_FORCE_HTTP",
647
+ "module": "src/env/variables.ts"
648
+ }
649
+ },
650
+ {
651
+ "kind": "js",
652
+ "name": "API_HOST",
653
+ "declaration": {
654
+ "name": "_API_HOST",
655
+ "module": "src/env/variables.ts"
656
+ }
657
+ },
658
+ {
659
+ "kind": "js",
660
+ "name": "HTTP_CONFIG",
661
+ "declaration": {
662
+ "name": "_HTTP_CONFIG",
663
+ "module": "src/env/variables.ts"
664
+ }
665
+ },
666
+ {
667
+ "kind": "js",
668
+ "name": "DEFAULT_ORGANISATION",
669
+ "declaration": {
670
+ "name": "_DEFAULT_ORGANISATION",
671
+ "module": "src/env/variables.ts"
672
+ }
673
+ },
674
+ {
675
+ "kind": "js",
676
+ "name": "DEFAULT_PASSWORD",
677
+ "declaration": {
678
+ "name": "_DEFAULT_PASSWORD",
679
+ "module": "src/env/variables.ts"
680
+ }
681
+ },
682
+ {
683
+ "kind": "js",
684
+ "name": "DEFAULT_USER",
685
+ "declaration": {
686
+ "name": "_DEFAULT_USER",
687
+ "module": "src/env/variables.ts"
688
+ }
689
+ }
690
+ ]
691
+ },
692
+ {
693
+ "kind": "javascript-module",
694
+ "path": "src/error/errorMap.ts",
695
+ "declarations": [
696
+ {
697
+ "kind": "class",
698
+ "description": "",
699
+ "name": "DefaultErrorMap",
700
+ "members": [
701
+ {
702
+ "kind": "field",
703
+ "name": "map",
704
+ "privacy": "private",
705
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
706
+ },
707
+ {
708
+ "kind": "field",
709
+ "name": "lastError",
710
+ "type": {
711
+ "text": "Error"
712
+ },
713
+ "description": "{@inheritDoc ErrorMap.lastError}"
714
+ },
715
+ {
716
+ "kind": "method",
717
+ "name": "set",
718
+ "return": {
719
+ "type": {
720
+ "text": "void"
721
+ }
722
+ },
723
+ "parameters": [
724
+ {
725
+ "name": "key",
726
+ "type": {
727
+ "text": "keyof TErrorDetailMap"
728
+ }
729
+ },
730
+ {
731
+ "name": "error",
732
+ "type": {
733
+ "text": "Error"
734
+ }
735
+ }
736
+ ],
737
+ "description": "{@inheritDoc ErrorMap.set}"
738
+ },
739
+ {
740
+ "kind": "method",
741
+ "name": "get",
742
+ "return": {
743
+ "type": {
744
+ "text": ""
745
+ }
746
+ },
747
+ "parameters": [
748
+ {
749
+ "name": "key",
750
+ "type": {
751
+ "text": "keyof TErrorDetailMap"
752
+ },
753
+ "description": "The key."
754
+ }
755
+ ],
756
+ "description": "Get an error by key.",
757
+ "privacy": "public"
758
+ },
759
+ {
760
+ "kind": "method",
761
+ "name": "has",
762
+ "return": {
763
+ "type": {
764
+ "text": ""
765
+ }
766
+ },
767
+ "parameters": [
768
+ {
769
+ "name": "key",
770
+ "type": {
771
+ "text": "keyof TErrorDetailMap"
772
+ },
773
+ "description": "The key."
774
+ }
775
+ ],
776
+ "description": "Has an error for key.",
777
+ "privacy": "public"
778
+ },
779
+ {
780
+ "kind": "method",
781
+ "name": "delete",
782
+ "return": {
783
+ "type": {
784
+ "text": ""
785
+ }
786
+ },
787
+ "parameters": [
788
+ {
789
+ "name": "key",
790
+ "type": {
791
+ "text": "keyof TErrorDetailMap"
792
+ },
793
+ "description": "The key."
794
+ }
795
+ ],
796
+ "description": "Delete an error.",
797
+ "privacy": "public"
798
+ },
799
+ {
800
+ "kind": "method",
801
+ "name": "clear",
802
+ "description": "Clear errors.",
803
+ "privacy": "public"
804
+ },
805
+ {
806
+ "kind": "field",
807
+ "name": "size",
808
+ "type": {
809
+ "text": "number"
810
+ },
811
+ "description": "The size of the error map.",
812
+ "return": {
813
+ "type": {
814
+ "text": ""
815
+ }
816
+ },
817
+ "privacy": "public",
818
+ "readonly": true
819
+ },
820
+ {
821
+ "kind": "field",
822
+ "name": "messages",
823
+ "type": {
824
+ "text": "string"
825
+ },
826
+ "description": "{@inheritDoc ErrorMap.messages}",
827
+ "readonly": true
828
+ }
829
+ ]
830
+ },
831
+ {
832
+ "kind": "function",
833
+ "name": "createErrorMap",
834
+ "return": {
835
+ "type": {
836
+ "text": ""
837
+ }
838
+ },
839
+ "parameters": [
840
+ {
841
+ "name": "logger",
842
+ "type": {
843
+ "text": "ErrorMapLogger"
844
+ },
845
+ "description": "A logger error method reference."
846
+ }
847
+ ],
848
+ "description": "A factory to create the error map.",
849
+ "privacy": "public"
850
+ }
851
+ ],
852
+ "exports": [
853
+ {
854
+ "kind": "js",
855
+ "name": "DefaultErrorMap",
856
+ "declaration": {
857
+ "name": "DefaultErrorMap",
858
+ "module": "src/error/errorMap.ts"
859
+ }
860
+ },
861
+ {
862
+ "kind": "js",
863
+ "name": "createErrorMap",
864
+ "declaration": {
865
+ "name": "createErrorMap",
866
+ "module": "src/error/errorMap.ts"
867
+ }
868
+ }
869
+ ]
870
+ },
871
+ {
872
+ "kind": "javascript-module",
873
+ "path": "src/error/index.ts",
874
+ "declarations": [],
875
+ "exports": [
876
+ {
877
+ "kind": "js",
878
+ "name": "*",
879
+ "declaration": {
880
+ "name": "*",
881
+ "package": "./errorMap"
882
+ }
883
+ }
884
+ ]
885
+ },
886
+ {
887
+ "kind": "javascript-module",
888
+ "path": "src/formatters/datetime.ts",
889
+ "declarations": [
890
+ {
891
+ "kind": "function",
892
+ "name": "formatDateTimestamp",
893
+ "return": {
894
+ "type": {
895
+ "text": "string"
896
+ }
897
+ },
898
+ "parameters": [
899
+ {
900
+ "name": "timestamp",
901
+ "type": {
902
+ "text": "number"
903
+ }
904
+ }
905
+ ],
906
+ "description": "Formats [DATE] UNIX Timestamps (without time) to readable strings",
907
+ "privacy": "public"
908
+ },
909
+ {
910
+ "kind": "function",
911
+ "name": "formatDateTimeTimestamp",
912
+ "return": {
913
+ "type": {
914
+ "text": "string"
915
+ }
916
+ },
917
+ "parameters": [
918
+ {
919
+ "name": "timestamp",
920
+ "type": {
921
+ "text": "number"
922
+ }
923
+ }
924
+ ],
925
+ "description": "Formats [DATETIME] UNIX Timestamps (with time) to readable strings",
926
+ "privacy": "public"
927
+ },
928
+ {
929
+ "kind": "function",
930
+ "name": "formatTimestamp",
931
+ "return": {
932
+ "type": {
933
+ "text": "string"
934
+ }
935
+ },
936
+ "parameters": [
937
+ {
938
+ "name": "timestamp",
939
+ "type": {
940
+ "text": "number"
941
+ },
942
+ "description": "The UNIX Timestamp."
943
+ },
944
+ {
945
+ "name": "withTime",
946
+ "type": {
947
+ "text": "boolean"
948
+ },
949
+ "description": "The flag to determine if formatted value should contain 'time' info."
950
+ }
951
+ ],
952
+ "description": "Formats [DATE|DATETIME] Unix Timestamps to readable strings",
953
+ "privacy": "public"
954
+ }
955
+ ],
956
+ "exports": [
957
+ {
958
+ "kind": "js",
959
+ "name": "formatDateTimestamp",
960
+ "declaration": {
961
+ "name": "formatDateTimestamp",
962
+ "module": "src/formatters/datetime.ts"
963
+ }
964
+ },
965
+ {
966
+ "kind": "js",
967
+ "name": "formatDateTimeTimestamp",
968
+ "declaration": {
969
+ "name": "formatDateTimeTimestamp",
970
+ "module": "src/formatters/datetime.ts"
971
+ }
972
+ },
973
+ {
974
+ "kind": "js",
975
+ "name": "formatTimestamp",
976
+ "declaration": {
977
+ "name": "formatTimestamp",
978
+ "module": "src/formatters/datetime.ts"
979
+ }
980
+ }
981
+ ]
982
+ },
983
+ {
984
+ "kind": "javascript-module",
985
+ "path": "src/formatters/index.ts",
986
+ "declarations": [],
987
+ "exports": [
988
+ {
989
+ "kind": "js",
990
+ "name": "*",
991
+ "declaration": {
992
+ "name": "*",
993
+ "package": "./datetime"
994
+ }
995
+ },
996
+ {
997
+ "kind": "js",
998
+ "name": "*",
999
+ "declaration": {
1000
+ "name": "*",
1001
+ "package": "./localeNumberParser"
1002
+ }
1003
+ }
1004
+ ]
1005
+ },
1006
+ {
1007
+ "kind": "javascript-module",
1008
+ "path": "src/formatters/localeNumberParser.ts",
1009
+ "declarations": [
1010
+ {
1011
+ "kind": "class",
1012
+ "description": "",
1013
+ "name": "NumberParser",
1014
+ "members": [
1015
+ {
1016
+ "kind": "field",
1017
+ "name": "_decimal",
1018
+ "type": {
1019
+ "text": "RegExp"
1020
+ },
1021
+ "privacy": "private",
1022
+ "default": "new RegExp(`[${parts.find((d) => d.type === 'decimal').value}]`)"
1023
+ },
1024
+ {
1025
+ "kind": "field",
1026
+ "name": "_separator",
1027
+ "type": {
1028
+ "text": "RegExp"
1029
+ },
1030
+ "privacy": "private",
1031
+ "default": "new RegExp(\n `[$${parts.find((d) => d.type === 'decimal').value}](?:0*$|[^0]0+$)`,\n )"
1032
+ },
1033
+ {
1034
+ "kind": "field",
1035
+ "name": "_numeral",
1036
+ "type": {
1037
+ "text": "RegExp"
1038
+ },
1039
+ "privacy": "private",
1040
+ "default": "new RegExp(`[${numerals.join('')}]`, 'g')"
1041
+ },
1042
+ {
1043
+ "kind": "field",
1044
+ "name": "_index",
1045
+ "type": {
1046
+ "text": "any"
1047
+ },
1048
+ "privacy": "private"
1049
+ },
1050
+ {
1051
+ "kind": "method",
1052
+ "name": "parse",
1053
+ "parameters": [
1054
+ {
1055
+ "name": "localeNumber",
1056
+ "type": {
1057
+ "text": "string"
1058
+ }
1059
+ }
1060
+ ]
1061
+ },
1062
+ {
1063
+ "kind": "method",
1064
+ "name": "hasSeparator",
1065
+ "return": {
1066
+ "type": {
1067
+ "text": "boolean"
1068
+ }
1069
+ },
1070
+ "parameters": [
1071
+ {
1072
+ "name": "localeNumber",
1073
+ "type": {
1074
+ "text": "string"
1075
+ }
1076
+ }
1077
+ ]
1078
+ },
1079
+ {
1080
+ "kind": "field",
1081
+ "name": "_group",
1082
+ "default": "new RegExp(`[${parts.find((d) => d.type === 'group').value}]`, 'g')"
1083
+ }
1084
+ ]
1085
+ }
1086
+ ],
1087
+ "exports": [
1088
+ {
1089
+ "kind": "js",
1090
+ "name": "NumberParser",
1091
+ "declaration": {
1092
+ "name": "NumberParser",
1093
+ "module": "src/formatters/localeNumberParser.ts"
1094
+ }
1095
+ }
1096
+ ]
1097
+ },
1098
+ {
1099
+ "kind": "javascript-module",
1100
+ "path": "src/logger/index.ts",
1101
+ "declarations": [],
1102
+ "exports": [
1103
+ {
1104
+ "kind": "js",
1105
+ "name": "*",
1106
+ "declaration": {
1107
+ "name": "*",
1108
+ "package": "./logger"
1109
+ }
1110
+ }
1111
+ ]
1112
+ },
1113
+ {
1114
+ "kind": "javascript-module",
1115
+ "path": "src/logger/logger.ts",
1116
+ "declarations": [
1117
+ {
1118
+ "kind": "variable",
1119
+ "name": "defaultLoggerOptions",
1120
+ "type": {
1121
+ "text": "LoggerOptions"
1122
+ },
1123
+ "default": "{\n level: logLevelDebug,\n}",
1124
+ "description": "The default logger options.",
1125
+ "privacy": "public"
1126
+ },
1127
+ {
1128
+ "kind": "function",
1129
+ "name": "createLogger",
1130
+ "return": {
1131
+ "type": {
1132
+ "text": ""
1133
+ }
1134
+ },
1135
+ "parameters": [
1136
+ {
1137
+ "name": "name",
1138
+ "type": {
1139
+ "text": "string"
1140
+ },
1141
+ "description": "The name to give the logger."
1142
+ },
1143
+ {
1144
+ "name": "options",
1145
+ "default": "defaultLoggerOptions",
1146
+ "type": {
1147
+ "text": "LoggerOptions"
1148
+ },
1149
+ "description": "The options to use when creating the logger."
1150
+ }
1151
+ ],
1152
+ "description": "Creates a logger with the given name and options.",
1153
+ "privacy": "public"
1154
+ }
1155
+ ],
1156
+ "exports": [
1157
+ {
1158
+ "kind": "js",
1159
+ "name": "LogLevel",
1160
+ "declaration": {
1161
+ "name": "LogLevel",
1162
+ "package": "consola"
1163
+ }
1164
+ },
1165
+ {
1166
+ "kind": "js",
1167
+ "name": "defaultLoggerOptions",
1168
+ "declaration": {
1169
+ "name": "defaultLoggerOptions",
1170
+ "module": "src/logger/logger.ts"
1171
+ }
1172
+ },
1173
+ {
1174
+ "kind": "js",
1175
+ "name": "createLogger",
1176
+ "declaration": {
1177
+ "name": "createLogger",
1178
+ "module": "src/logger/logger.ts"
1179
+ }
1180
+ }
1181
+ ]
1182
+ },
1183
+ {
1184
+ "kind": "javascript-module",
1185
+ "path": "src/mappers/index.ts",
1186
+ "declarations": [],
1187
+ "exports": [
1188
+ {
1189
+ "kind": "js",
1190
+ "name": "*",
1191
+ "declaration": {
1192
+ "name": "*",
1193
+ "package": "./dto"
1194
+ }
1195
+ }
1196
+ ]
1197
+ },
1198
+ {
1199
+ "kind": "javascript-module",
1200
+ "path": "src/mixins/index.ts",
1201
+ "declarations": [],
1202
+ "exports": [
1203
+ {
1204
+ "kind": "js",
1205
+ "name": "*",
1206
+ "declaration": {
1207
+ "name": "*",
1208
+ "package": "./pendingState"
1209
+ }
1210
+ },
1211
+ {
1212
+ "kind": "js",
1213
+ "name": "*",
1214
+ "declaration": {
1215
+ "name": "*",
1216
+ "package": "./lifecycle"
1217
+ }
1218
+ }
1219
+ ]
1220
+ },
1221
+ {
1222
+ "kind": "javascript-module",
1223
+ "path": "src/observer/index.ts",
1224
+ "declarations": [],
1225
+ "exports": [
1226
+ {
1227
+ "kind": "js",
1228
+ "name": "*",
1229
+ "declaration": {
1230
+ "name": "*",
1231
+ "package": "./observer"
1232
+ }
1233
+ }
1234
+ ]
1235
+ },
1236
+ {
1237
+ "kind": "javascript-module",
1238
+ "path": "src/observer/observer.ts",
1239
+ "declarations": [
1240
+ {
1241
+ "kind": "function",
1242
+ "name": "createObserver",
1243
+ "return": {
1244
+ "type": {
1245
+ "text": "Observer<EventType>"
1246
+ }
1247
+ },
1248
+ "description": "Creates a new event observer instance.",
1249
+ "privacy": "public"
1250
+ },
1251
+ {
1252
+ "kind": "function",
1253
+ "name": "respondToVisibility",
1254
+ "parameters": [
1255
+ {
1256
+ "name": "element",
1257
+ "type": {
1258
+ "text": "HTMLElement"
1259
+ },
1260
+ "description": "HTMLElement to observe"
1261
+ },
1262
+ {
1263
+ "name": "callback",
1264
+ "type": {
1265
+ "text": "(arg0: boolean) => any"
1266
+ },
1267
+ "description": "any function called when the visibility changes"
1268
+ }
1269
+ ],
1270
+ "description": "Setup an `IntersectionObserver` which will activate a callback function when an element becomes visible on screen",
1271
+ "privacy": "public"
1272
+ }
1273
+ ],
1274
+ "exports": [
1275
+ {
1276
+ "kind": "js",
1277
+ "name": "createObserver",
1278
+ "declaration": {
1279
+ "name": "createObserver",
1280
+ "module": "src/observer/observer.ts"
1281
+ }
1282
+ },
1283
+ {
1284
+ "kind": "js",
1285
+ "name": "respondToVisibility",
1286
+ "declaration": {
1287
+ "name": "respondToVisibility",
1288
+ "module": "src/observer/observer.ts"
1289
+ }
1290
+ }
1291
+ ]
1292
+ },
1293
+ {
1294
+ "kind": "javascript-module",
1295
+ "path": "src/resource/index.ts",
1296
+ "declarations": [],
1297
+ "exports": [
1298
+ {
1299
+ "kind": "js",
1300
+ "name": "*",
1301
+ "declaration": {
1302
+ "name": "*",
1303
+ "package": "./types"
1304
+ }
1305
+ }
1306
+ ]
1307
+ },
1308
+ {
1309
+ "kind": "javascript-module",
1310
+ "path": "src/resource/types.ts",
1311
+ "declarations": [
1312
+ {
1313
+ "kind": "variable",
1314
+ "name": "ResourceType",
1315
+ "type": {
1316
+ "text": "{\n local: 'local',\n remote: 'remote',\n}"
1317
+ },
1318
+ "default": "{\n local: 'local',\n remote: 'remote',\n}",
1319
+ "description": "An object that defines two resource types: \"local\" and \"remote\".",
1320
+ "privacy": "public"
1321
+ }
1322
+ ],
1323
+ "exports": [
1324
+ {
1325
+ "kind": "js",
1326
+ "name": "ResourceType",
1327
+ "declaration": {
1328
+ "name": "ResourceType",
1329
+ "module": "src/resource/types.ts"
1330
+ }
1331
+ }
1332
+ ]
1333
+ },
1334
+ {
1335
+ "kind": "javascript-module",
1336
+ "path": "src/serializers/index.ts",
1337
+ "declarations": [],
1338
+ "exports": [
1339
+ {
1340
+ "kind": "js",
1341
+ "name": "*",
1342
+ "declaration": {
1343
+ "name": "*",
1344
+ "package": "./json"
1345
+ }
1346
+ }
1347
+ ]
1348
+ },
1349
+ {
1350
+ "kind": "javascript-module",
1351
+ "path": "src/styles/color.ts",
1352
+ "declarations": [
1353
+ {
1354
+ "kind": "variable",
1355
+ "name": "activeColorScheme",
1356
+ "description": "A design token that represents the active color scheme (light or dark).",
1357
+ "privacy": "public"
1358
+ }
1359
+ ],
1360
+ "exports": [
1361
+ {
1362
+ "kind": "js",
1363
+ "name": "activeColorScheme",
1364
+ "declaration": {
1365
+ "name": "activeColorScheme",
1366
+ "module": "src/styles/color.ts"
1367
+ }
1368
+ }
1369
+ ]
1370
+ },
1371
+ {
1372
+ "kind": "javascript-module",
1373
+ "path": "src/styles/dom.ts",
1374
+ "declarations": [
1375
+ {
1376
+ "kind": "function",
1377
+ "name": "insertDocumentCSSRule",
1378
+ "return": {
1379
+ "type": {
1380
+ "text": ""
1381
+ }
1382
+ },
1383
+ "parameters": [
1384
+ {
1385
+ "name": "cssRule",
1386
+ "type": {
1387
+ "text": "string"
1388
+ },
1389
+ "description": "The CSS rule to insert."
1390
+ },
1391
+ {
1392
+ "name": "styleElementId",
1393
+ "type": {
1394
+ "text": "string"
1395
+ },
1396
+ "description": "The ID of the style element to use or create."
1397
+ }
1398
+ ],
1399
+ "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.",
1400
+ "privacy": "public"
1401
+ },
1402
+ {
1403
+ "kind": "function",
1404
+ "name": "insertDocumentLink",
1405
+ "parameters": [
1406
+ {
1407
+ "name": "href",
1408
+ "type": {
1409
+ "text": "string"
1410
+ },
1411
+ "description": "The URL of the CSS file to insert."
1412
+ }
1413
+ ],
1414
+ "description": "Inserts a CSS link into the document if it doesn't already exist.",
1415
+ "privacy": "public"
1416
+ }
1417
+ ],
1418
+ "exports": [
1419
+ {
1420
+ "kind": "js",
1421
+ "name": "insertDocumentCSSRule",
1422
+ "declaration": {
1423
+ "name": "insertDocumentCSSRule",
1424
+ "module": "src/styles/dom.ts"
1425
+ }
1426
+ },
1427
+ {
1428
+ "kind": "js",
1429
+ "name": "insertDocumentLink",
1430
+ "declaration": {
1431
+ "name": "insertDocumentLink",
1432
+ "module": "src/styles/dom.ts"
1433
+ }
1434
+ }
1435
+ ]
1436
+ },
1437
+ {
1438
+ "kind": "javascript-module",
1439
+ "path": "src/styles/index.ts",
1440
+ "declarations": [],
1441
+ "exports": [
1442
+ {
1443
+ "kind": "js",
1444
+ "name": "*",
1445
+ "declaration": {
1446
+ "name": "*",
1447
+ "package": "./color"
1448
+ }
1449
+ },
1450
+ {
1451
+ "kind": "js",
1452
+ "name": "*",
1453
+ "declaration": {
1454
+ "name": "*",
1455
+ "package": "./dom"
1456
+ }
1457
+ },
1458
+ {
1459
+ "kind": "js",
1460
+ "name": "*",
1461
+ "declaration": {
1462
+ "name": "*",
1463
+ "package": "./slotted-styles"
1464
+ }
1465
+ },
1466
+ {
1467
+ "kind": "js",
1468
+ "name": "*",
1469
+ "declaration": {
1470
+ "name": "*",
1471
+ "package": "./typography"
1472
+ }
1473
+ }
1474
+ ]
1475
+ },
1476
+ {
1477
+ "kind": "javascript-module",
1478
+ "path": "src/styles/slotted-styles.ts",
1479
+ "declarations": [
1480
+ {
1481
+ "kind": "class",
1482
+ "description": "A custom element that encapsulates a set of styles that can be applied to slotted elements.",
1483
+ "name": "SlottedStyles",
1484
+ "members": [
1485
+ {
1486
+ "kind": "field",
1487
+ "name": "styles",
1488
+ "type": {
1489
+ "text": "ElementStyles"
1490
+ },
1491
+ "description": "The styles to apply to slotted elements."
1492
+ },
1493
+ {
1494
+ "kind": "method",
1495
+ "name": "stylesChanged",
1496
+ "return": {
1497
+ "type": {
1498
+ "text": "void"
1499
+ }
1500
+ },
1501
+ "parameters": [
1502
+ {
1503
+ "name": "prev",
1504
+ "type": {
1505
+ "text": "ElementStyles"
1506
+ },
1507
+ "description": "The previous value of the `styles` property."
1508
+ },
1509
+ {
1510
+ "name": "next",
1511
+ "type": {
1512
+ "text": "ElementStyles"
1513
+ },
1514
+ "description": "The new value of the `styles` property."
1515
+ }
1516
+ ],
1517
+ "description": "Called when the `styles` property changes.\nRemoves the previous styles from the parent element's FAST controller and adds the new styles."
1518
+ }
1519
+ ],
1520
+ "superclass": {
1521
+ "name": "FASTElement",
1522
+ "package": "@microsoft/fast-element"
1523
+ },
1524
+ "tagName": "slotted-styles",
1525
+ "customElement": true
1526
+ }
1527
+ ],
1528
+ "exports": [
1529
+ {
1530
+ "kind": "js",
1531
+ "name": "SlottedStyles",
1532
+ "declaration": {
1533
+ "name": "SlottedStyles",
1534
+ "module": "src/styles/slotted-styles.ts"
1535
+ }
1536
+ },
1537
+ {
1538
+ "kind": "custom-element-definition",
1539
+ "name": "slotted-styles",
1540
+ "declaration": {
1541
+ "name": "SlottedStyles",
1542
+ "module": "src/styles/slotted-styles.ts"
1543
+ }
1544
+ }
1545
+ ]
1546
+ },
1547
+ {
1548
+ "kind": "javascript-module",
1549
+ "path": "src/styles/typography.ts",
1550
+ "declarations": [
1551
+ {
1552
+ "kind": "function",
1553
+ "name": "loadFontFaces",
1554
+ "return": {
1555
+ "type": {
1556
+ "text": "void"
1557
+ }
1558
+ },
1559
+ "parameters": [
1560
+ {
1561
+ "name": "fontFaceRules",
1562
+ "type": {
1563
+ "text": "string"
1564
+ },
1565
+ "description": "The CSS rules for the font faces."
1566
+ },
1567
+ {
1568
+ "name": "styleElementId",
1569
+ "type": {
1570
+ "text": "string"
1571
+ },
1572
+ "description": "The ID of the style element to insert into the document."
1573
+ }
1574
+ ],
1575
+ "description": "Loads font faces by inserting a style element with the specified font face rules into the document.",
1576
+ "privacy": "public"
1577
+ },
1578
+ {
1579
+ "kind": "function",
1580
+ "name": "getFontMixin",
1581
+ "return": {
1582
+ "type": {
1583
+ "text": ""
1584
+ }
1585
+ },
1586
+ "parameters": [
1587
+ {
1588
+ "name": "family",
1589
+ "type": {
1590
+ "text": "string"
1591
+ },
1592
+ "description": "The font family."
1593
+ },
1594
+ {
1595
+ "name": "style",
1596
+ "default": "FontStyle.Normal",
1597
+ "type": {
1598
+ "text": "FontStyle"
1599
+ },
1600
+ "description": "Optional. The font style. Defaults to FontStyle.Normal."
1601
+ },
1602
+ {
1603
+ "name": "weight",
1604
+ "default": "FontWeight.Regular",
1605
+ "type": {
1606
+ "text": "FontWeight"
1607
+ },
1608
+ "description": "Optional. The font weight. Defaults to FontWeight.Regular."
1609
+ }
1610
+ ],
1611
+ "description": "Generates a CSS mixin for the specified font family, style, and weight.",
1612
+ "privacy": "public"
1613
+ },
1614
+ {
1615
+ "kind": "variable",
1616
+ "name": "TypeRampValues",
1617
+ "type": {
1618
+ "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}"
1619
+ },
1620
+ "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}",
1621
+ "description": "An object containing type ramp values.",
1622
+ "privacy": "public"
1623
+ }
1624
+ ],
1625
+ "exports": [
1626
+ {
1627
+ "kind": "js",
1628
+ "name": "loadFontFaces",
1629
+ "declaration": {
1630
+ "name": "loadFontFaces",
1631
+ "module": "src/styles/typography.ts"
1632
+ }
1633
+ },
1634
+ {
1635
+ "kind": "js",
1636
+ "name": "getFontMixin",
1637
+ "declaration": {
1638
+ "name": "getFontMixin",
1639
+ "module": "src/styles/typography.ts"
1640
+ }
1641
+ },
1642
+ {
1643
+ "kind": "js",
1644
+ "name": "TypeRampValues",
1645
+ "declaration": {
1646
+ "name": "TypeRampValues",
1647
+ "module": "src/styles/typography.ts"
1648
+ }
1649
+ }
1650
+ ]
1651
+ },
1652
+ {
1653
+ "kind": "javascript-module",
1654
+ "path": "src/utils/index.ts",
1655
+ "declarations": [],
1656
+ "exports": [
1657
+ {
1658
+ "kind": "js",
1659
+ "name": "*",
1660
+ "declaration": {
1661
+ "name": "*",
1662
+ "package": "./logger"
1663
+ }
1664
+ }
1665
+ ]
1666
+ },
1667
+ {
1668
+ "kind": "javascript-module",
1669
+ "path": "src/utils/logger.ts",
1670
+ "declarations": [
1671
+ {
1672
+ "kind": "variable",
1673
+ "name": "logger"
1674
+ }
1675
+ ],
1676
+ "exports": [
1677
+ {
1678
+ "kind": "js",
1679
+ "name": "logger",
1680
+ "declaration": {
1681
+ "name": "logger",
1682
+ "module": "src/utils/logger.ts"
1683
+ }
1684
+ }
1685
+ ]
1686
+ },
1687
+ {
1688
+ "kind": "javascript-module",
1689
+ "path": "src/uuid/index.ts",
1690
+ "declarations": [],
1691
+ "exports": [
1692
+ {
1693
+ "kind": "js",
1694
+ "name": "*",
1695
+ "declaration": {
1696
+ "name": "*",
1697
+ "package": "./uuid"
1698
+ }
1699
+ }
1700
+ ]
1701
+ },
1702
+ {
1703
+ "kind": "javascript-module",
1704
+ "path": "src/uuid/uuid.ts",
1705
+ "declarations": [
1706
+ {
1707
+ "kind": "variable",
1708
+ "name": "UUID",
1709
+ "description": "A dependency injection token for the UUID interface.",
1710
+ "privacy": "public"
1711
+ }
1712
+ ],
1713
+ "exports": [
1714
+ {
1715
+ "kind": "js",
1716
+ "name": "UUID",
1717
+ "declaration": {
1718
+ "name": "UUID",
1719
+ "module": "src/uuid/uuid.ts"
1720
+ }
1721
+ }
1722
+ ]
1723
+ },
1724
+ {
1725
+ "kind": "javascript-module",
1726
+ "path": "src/window/index.ts",
1727
+ "declarations": [],
1728
+ "exports": [
1729
+ {
1730
+ "kind": "js",
1731
+ "name": "*",
1732
+ "declaration": {
1733
+ "name": "*",
1734
+ "package": "./window"
1735
+ }
1736
+ }
1737
+ ]
1738
+ },
1739
+ {
1740
+ "kind": "javascript-module",
1741
+ "path": "src/window/window.ts",
1742
+ "declarations": [
1743
+ {
1744
+ "kind": "function",
1745
+ "name": "inIFrame",
1746
+ "return": {
1747
+ "type": {
1748
+ "text": ""
1749
+ }
1750
+ },
1751
+ "description": "Returns a boolean value indicating whether the current window is inside an iframe.",
1752
+ "privacy": "public"
1753
+ },
1754
+ {
1755
+ "kind": "function",
1756
+ "name": "inSymphonyDesktop",
1757
+ "return": {
1758
+ "type": {
1759
+ "text": ""
1760
+ }
1761
+ },
1762
+ "description": "Returns a boolean value indicating whether the user is running the Symphony desktop app.",
1763
+ "privacy": "public"
1764
+ },
1765
+ {
1766
+ "kind": "variable",
1767
+ "name": "POPUP_DEFAULT_WIDTH",
1768
+ "type": {
1769
+ "text": "number"
1770
+ },
1771
+ "default": "483",
1772
+ "description": "The default width (in pixels) for pop-up windows.",
1773
+ "privacy": "public"
1774
+ },
1775
+ {
1776
+ "kind": "variable",
1777
+ "name": "POPUP_DEFAULT_HEIGHT",
1778
+ "type": {
1779
+ "text": "number"
1780
+ },
1781
+ "default": "600",
1782
+ "description": "The default height (in pixels) for pop-up windows.",
1783
+ "privacy": "public"
1784
+ },
1785
+ {
1786
+ "kind": "function",
1787
+ "name": "openPopup",
1788
+ "return": {
1789
+ "type": {
1790
+ "text": ""
1791
+ }
1792
+ },
1793
+ "parameters": [
1794
+ {
1795
+ "name": "urlNavigate",
1796
+ "type": {
1797
+ "text": "string"
1798
+ },
1799
+ "description": "The URL to navigate to."
1800
+ },
1801
+ {
1802
+ "name": "target",
1803
+ "type": {
1804
+ "text": "string"
1805
+ },
1806
+ "description": "The name of the new window."
1807
+ },
1808
+ {
1809
+ "name": "popUpWidth",
1810
+ "default": "POPUP_DEFAULT_WIDTH",
1811
+ "type": {
1812
+ "text": "number"
1813
+ },
1814
+ "description": "The width of the new window (optional)."
1815
+ },
1816
+ {
1817
+ "name": "popUpHeight",
1818
+ "default": "POPUP_DEFAULT_HEIGHT",
1819
+ "type": {
1820
+ "text": "number"
1821
+ },
1822
+ "description": "The height of the new window (optional)."
1823
+ }
1824
+ ],
1825
+ "description": "Opens a new browser window with the specified URL, target, width, and height.",
1826
+ "privacy": "public"
1827
+ }
1828
+ ],
1829
+ "exports": [
1830
+ {
1831
+ "kind": "js",
1832
+ "name": "inIFrame",
1833
+ "declaration": {
1834
+ "name": "inIFrame",
1835
+ "module": "src/window/window.ts"
1836
+ }
1837
+ },
1838
+ {
1839
+ "kind": "js",
1840
+ "name": "inSymphonyDesktop",
1841
+ "declaration": {
1842
+ "name": "inSymphonyDesktop",
1843
+ "module": "src/window/window.ts"
1844
+ }
1845
+ },
1846
+ {
1847
+ "kind": "js",
1848
+ "name": "POPUP_DEFAULT_WIDTH",
1849
+ "declaration": {
1850
+ "name": "POPUP_DEFAULT_WIDTH",
1851
+ "module": "src/window/window.ts"
1852
+ }
1853
+ },
1854
+ {
1855
+ "kind": "js",
1856
+ "name": "POPUP_DEFAULT_HEIGHT",
1857
+ "declaration": {
1858
+ "name": "POPUP_DEFAULT_HEIGHT",
1859
+ "module": "src/window/window.ts"
1860
+ }
1861
+ },
1862
+ {
1863
+ "kind": "js",
1864
+ "name": "openPopup",
1865
+ "declaration": {
1866
+ "name": "openPopup",
1867
+ "module": "src/window/window.ts"
1868
+ }
1869
+ }
1870
+ ]
1871
+ },
1872
+ {
1873
+ "kind": "javascript-module",
1874
+ "path": "src/directives/sync/index.ts",
1875
+ "declarations": [],
1876
+ "exports": [
1877
+ {
1878
+ "kind": "js",
1879
+ "name": "*",
1880
+ "declaration": {
1881
+ "name": "*",
1882
+ "package": "./sync"
1883
+ }
1884
+ }
1885
+ ]
1886
+ },
1887
+ {
1888
+ "kind": "javascript-module",
1889
+ "path": "src/directives/sync/sync.ts",
1890
+ "declarations": [
1891
+ {
1892
+ "kind": "variable",
1893
+ "name": "defaultEventMap",
1894
+ "type": {
1895
+ "text": "Map<string, EventName>"
1896
+ },
1897
+ "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])",
1898
+ "description": "A map that associates specific HTML element tags with their corresponding default event names.",
1899
+ "privacy": "public"
1900
+ },
1901
+ {
1902
+ "kind": "function",
1903
+ "name": "sync",
1904
+ "return": {
1905
+ "type": {
1906
+ "text": "CaptureType<TSource>"
1907
+ }
1908
+ },
1909
+ "parameters": [
1910
+ {
1911
+ "name": "binding",
1912
+ "type": {
1913
+ "text": "Binding<TSource, TReturn>"
1914
+ }
1915
+ },
1916
+ {
1917
+ "name": "conversionType",
1918
+ "default": "'string'",
1919
+ "type": {
1920
+ "text": "ConversionType"
1921
+ }
1922
+ },
1923
+ {
1924
+ "name": "eventName",
1925
+ "default": "'default'",
1926
+ "type": {
1927
+ "text": "EventName"
1928
+ }
1929
+ },
1930
+ {
1931
+ "name": "keyAttr",
1932
+ "optional": true,
1933
+ "type": {
1934
+ "text": "string"
1935
+ }
1936
+ }
1937
+ ],
1938
+ "description": "Creates a synchronization directive that binds a data source to an HTML element,",
1939
+ "privacy": "public"
1940
+ }
1941
+ ],
1942
+ "exports": [
1943
+ {
1944
+ "kind": "js",
1945
+ "name": "defaultEventMap",
1946
+ "declaration": {
1947
+ "name": "defaultEventMap",
1948
+ "module": "src/directives/sync/sync.ts"
1949
+ }
1950
+ },
1951
+ {
1952
+ "kind": "js",
1953
+ "name": "sync",
1954
+ "declaration": {
1955
+ "name": "sync",
1956
+ "module": "src/directives/sync/sync.ts"
1957
+ }
1958
+ }
1959
+ ]
1960
+ },
1961
+ {
1962
+ "kind": "javascript-module",
1963
+ "path": "src/directives/when-else/index.ts",
1964
+ "declarations": [],
1965
+ "exports": [
1966
+ {
1967
+ "kind": "js",
1968
+ "name": "*",
1969
+ "declaration": {
1970
+ "name": "*",
1971
+ "package": "./when-else"
1972
+ }
1973
+ }
1974
+ ]
1975
+ },
1976
+ {
1977
+ "kind": "javascript-module",
1978
+ "path": "src/directives/when-else/when-else.ts",
1979
+ "declarations": [
1980
+ {
1981
+ "kind": "function",
1982
+ "name": "whenElse",
1983
+ "return": {
1984
+ "type": {
1985
+ "text": "CaptureType<TSource>"
1986
+ }
1987
+ },
1988
+ "parameters": [
1989
+ {
1990
+ "name": "binding",
1991
+ "type": {
1992
+ "text": "Binding<TSource, TReturn>"
1993
+ },
1994
+ "description": "The condition to test for rendering."
1995
+ },
1996
+ {
1997
+ "name": "trueTemplateOrTemplateBinding",
1998
+ "type": {
1999
+ "text": "WhenTemplate<TSource>"
2000
+ },
2001
+ "description": "The template or a binding that gets the template to render when the condition is true."
2002
+ },
2003
+ {
2004
+ "name": "falseTemplateOrTemplateBinding",
2005
+ "type": {
2006
+ "text": "WhenTemplate<TSource>"
2007
+ },
2008
+ "description": "The template or a binding that gets the template to render when the condition is false."
2009
+ }
2010
+ ],
2011
+ "description": "Directive that allows supplying an \"else\" template to the traditional https://www.fast.design/docs/api/fast-element.when/#when-function directive",
2012
+ "privacy": "public"
2013
+ }
2014
+ ],
2015
+ "exports": [
2016
+ {
2017
+ "kind": "js",
2018
+ "name": "whenElse",
2019
+ "declaration": {
2020
+ "name": "whenElse",
2021
+ "module": "src/directives/when-else/when-else.ts"
2022
+ }
2023
+ }
2024
+ ]
2025
+ },
2026
+ {
2027
+ "kind": "javascript-module",
2028
+ "path": "src/mappers/dto/index.ts",
2029
+ "declarations": [],
2030
+ "exports": [
2031
+ {
2032
+ "kind": "js",
2033
+ "name": "*",
2034
+ "declaration": {
2035
+ "name": "*",
2036
+ "package": "./serverRow"
2037
+ }
2038
+ },
2039
+ {
2040
+ "kind": "js",
2041
+ "name": "*",
2042
+ "declaration": {
2043
+ "name": "*",
2044
+ "package": "./types"
2045
+ }
2046
+ }
2047
+ ]
2048
+ },
2049
+ {
2050
+ "kind": "javascript-module",
2051
+ "path": "src/mappers/dto/serverRow.ts",
2052
+ "declarations": [
2053
+ {
2054
+ "kind": "class",
2055
+ "description": "The default `ServerRowDTOMapper`.",
2056
+ "name": "DefaultServerRowDTOMapper",
2057
+ "members": [
2058
+ {
2059
+ "kind": "field",
2060
+ "name": "fromDTO",
2061
+ "description": "Converts a server row DTO to an entity.",
2062
+ "parameters": [
2063
+ {
2064
+ "description": "The DTO to convert.",
2065
+ "name": "dto"
2066
+ }
2067
+ ],
2068
+ "return": {
2069
+ "type": {
2070
+ "text": ""
2071
+ }
2072
+ },
2073
+ "privacy": "public"
2074
+ },
2075
+ {
2076
+ "kind": "field",
2077
+ "name": "toDTO",
2078
+ "description": "Converts a server row entity to a DTO.",
2079
+ "parameters": [
2080
+ {
2081
+ "description": "The entity to convert.",
2082
+ "name": "entity"
2083
+ }
2084
+ ],
2085
+ "return": {
2086
+ "type": {
2087
+ "text": ""
2088
+ }
2089
+ },
2090
+ "privacy": "public"
2091
+ }
2092
+ ]
2093
+ },
2094
+ {
2095
+ "kind": "variable",
2096
+ "name": "ServerRowDTOMapper",
2097
+ "description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
2098
+ "privacy": "public"
2099
+ }
2100
+ ],
2101
+ "exports": [
2102
+ {
2103
+ "kind": "js",
2104
+ "name": "DefaultServerRowDTOMapper",
2105
+ "declaration": {
2106
+ "name": "DefaultServerRowDTOMapper",
2107
+ "module": "src/mappers/dto/serverRow.ts"
2108
+ }
2109
+ },
2110
+ {
2111
+ "kind": "js",
2112
+ "name": "ServerRowDTOMapper",
2113
+ "declaration": {
2114
+ "name": "ServerRowDTOMapper",
2115
+ "module": "src/mappers/dto/serverRow.ts"
2116
+ }
2117
+ }
2118
+ ]
2119
+ },
2120
+ {
2121
+ "kind": "javascript-module",
2122
+ "path": "src/mappers/dto/types.ts",
2123
+ "declarations": [],
2124
+ "exports": []
2125
+ },
2126
+ {
2127
+ "kind": "javascript-module",
2128
+ "path": "src/mixins/lifecycle/index.ts",
2129
+ "declarations": [],
2130
+ "exports": [
2131
+ {
2132
+ "kind": "js",
2133
+ "name": "*",
2134
+ "declaration": {
2135
+ "name": "*",
2136
+ "package": "./lifecycle"
2137
+ }
2138
+ }
2139
+ ]
2140
+ },
2141
+ {
2142
+ "kind": "javascript-module",
2143
+ "path": "src/mixins/lifecycle/lifecycle.ts",
2144
+ "declarations": [
2145
+ {
2146
+ "kind": "mixin",
2147
+ "description": "",
2148
+ "name": "LifecycleMixin",
2149
+ "members": [
2150
+ {
2151
+ "kind": "method",
2152
+ "name": "cloneNode",
2153
+ "return": {
2154
+ "type": {
2155
+ "text": "Node"
2156
+ }
2157
+ },
2158
+ "parameters": [
2159
+ {
2160
+ "name": "deep",
2161
+ "optional": true,
2162
+ "type": {
2163
+ "text": "boolean"
2164
+ }
2165
+ }
2166
+ ]
2167
+ },
2168
+ {
2169
+ "kind": "method",
2170
+ "name": "deepClone",
2171
+ "return": {
2172
+ "type": {
2173
+ "text": "Node"
2174
+ }
2175
+ }
2176
+ },
2177
+ {
2178
+ "kind": "field",
2179
+ "name": "shouldRunDisconnect",
2180
+ "return": {
2181
+ "type": {
2182
+ "text": ""
2183
+ }
2184
+ },
2185
+ "readonly": true
2186
+ },
2187
+ {
2188
+ "kind": "field",
2189
+ "name": "shouldRunConnect",
2190
+ "return": {
2191
+ "type": {
2192
+ "text": ""
2193
+ }
2194
+ },
2195
+ "readonly": true
2196
+ }
2197
+ ],
2198
+ "parameters": [
2199
+ {
2200
+ "name": "Base",
2201
+ "type": {
2202
+ "text": "T"
2203
+ }
2204
+ }
2205
+ ]
2206
+ },
2207
+ {
2208
+ "kind": "variable",
2209
+ "name": "layoutCacheDocument",
2210
+ "description": "Stored on the layout's internal cache to signify that the document is not part of the DOM",
2211
+ "privacy": "public"
2212
+ }
2213
+ ],
2214
+ "exports": [
2215
+ {
2216
+ "kind": "js",
2217
+ "name": "LifecycleMixin",
2218
+ "declaration": {
2219
+ "name": "LifecycleMixin",
2220
+ "module": "src/mixins/lifecycle/lifecycle.ts"
2221
+ }
2222
+ },
2223
+ {
2224
+ "kind": "js",
2225
+ "name": "layoutCacheDocument",
2226
+ "declaration": {
2227
+ "name": "layoutCacheDocument",
2228
+ "module": "src/mixins/lifecycle/lifecycle.ts"
2229
+ }
2230
+ }
2231
+ ]
2232
+ },
2233
+ {
2234
+ "kind": "javascript-module",
2235
+ "path": "src/mixins/pendingState/index.ts",
2236
+ "declarations": [],
2237
+ "exports": [
2238
+ {
2239
+ "kind": "js",
2240
+ "name": "*",
2241
+ "declaration": {
2242
+ "name": "*",
2243
+ "package": "./pendingState"
2244
+ }
2245
+ }
2246
+ ]
2247
+ },
2248
+ {
2249
+ "kind": "javascript-module",
2250
+ "path": "src/mixins/pendingState/pendingState.ts",
2251
+ "declarations": [
2252
+ {
2253
+ "kind": "mixin",
2254
+ "description": "The `PendingState` mixin.",
2255
+ "name": "PendingState",
2256
+ "members": [
2257
+ {
2258
+ "kind": "field",
2259
+ "name": "pendingCount",
2260
+ "type": {
2261
+ "text": "number"
2262
+ },
2263
+ "privacy": "public",
2264
+ "default": "0",
2265
+ "description": "The number of promises that are currently pending."
2266
+ },
2267
+ {
2268
+ "kind": "field",
2269
+ "name": "resolvedCount",
2270
+ "type": {
2271
+ "text": "number"
2272
+ },
2273
+ "privacy": "public",
2274
+ "default": "0",
2275
+ "description": "The number of promises that have been resolved."
2276
+ },
2277
+ {
2278
+ "kind": "field",
2279
+ "name": "hasPendingChildren",
2280
+ "type": {
2281
+ "text": "boolean"
2282
+ },
2283
+ "privacy": "public",
2284
+ "default": "false",
2285
+ "description": "A boolean indicating whether there are any pending children."
2286
+ },
2287
+ {
2288
+ "kind": "field",
2289
+ "name": "progress",
2290
+ "type": {
2291
+ "text": "number"
2292
+ },
2293
+ "privacy": "public",
2294
+ "description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
2295
+ "readonly": true
2296
+ }
2297
+ ],
2298
+ "parameters": [
2299
+ {
2300
+ "name": "Base",
2301
+ "type": {
2302
+ "text": "TBase"
2303
+ }
2304
+ }
2305
+ ],
2306
+ "privacy": "public"
2307
+ }
2308
+ ],
2309
+ "exports": [
2310
+ {
2311
+ "kind": "js",
2312
+ "name": "PendingState",
2313
+ "declaration": {
2314
+ "name": "PendingState",
2315
+ "module": "src/mixins/pendingState/pendingState.ts"
2316
+ }
2317
+ }
2318
+ ]
2319
+ },
2320
+ {
2321
+ "kind": "javascript-module",
2322
+ "path": "src/serializers/json/index.ts",
2323
+ "declarations": [],
2324
+ "exports": [
2325
+ {
2326
+ "kind": "js",
2327
+ "name": "*",
2328
+ "declaration": {
2329
+ "name": "*",
2330
+ "package": "./json"
2331
+ }
2332
+ },
2333
+ {
2334
+ "kind": "js",
2335
+ "name": "*",
2336
+ "declaration": {
2337
+ "name": "*",
2338
+ "package": "./jsonReplacer"
2339
+ }
2340
+ },
2341
+ {
2342
+ "kind": "js",
2343
+ "name": "*",
2344
+ "declaration": {
2345
+ "name": "*",
2346
+ "package": "./jsonReviver"
2347
+ }
2348
+ }
2349
+ ]
2350
+ },
2351
+ {
2352
+ "kind": "javascript-module",
2353
+ "path": "src/serializers/json/json.ts",
2354
+ "declarations": [
2355
+ {
2356
+ "kind": "variable",
2357
+ "name": "JSONSerializer",
2358
+ "description": "A DI token for the JSON serializer.",
2359
+ "privacy": "public"
2360
+ }
2361
+ ],
2362
+ "exports": [
2363
+ {
2364
+ "kind": "js",
2365
+ "name": "JSONSerializer",
2366
+ "declaration": {
2367
+ "name": "JSONSerializer",
2368
+ "module": "src/serializers/json/json.ts"
2369
+ }
2370
+ }
2371
+ ]
2372
+ },
2373
+ {
2374
+ "kind": "javascript-module",
2375
+ "path": "src/serializers/json/jsonReplacer.ts",
2376
+ "declarations": [
2377
+ {
2378
+ "kind": "function",
2379
+ "name": "JSONReplacer",
2380
+ "return": {
2381
+ "type": {
2382
+ "text": ""
2383
+ }
2384
+ },
2385
+ "parameters": [
2386
+ {
2387
+ "name": "key",
2388
+ "type": {
2389
+ "text": "string"
2390
+ },
2391
+ "description": "The object key."
2392
+ },
2393
+ {
2394
+ "name": "value",
2395
+ "type": {
2396
+ "text": "any"
2397
+ },
2398
+ "description": "The key value."
2399
+ }
2400
+ ],
2401
+ "description": "JSON replacer function.",
2402
+ "privacy": "public"
2403
+ }
2404
+ ],
2405
+ "exports": [
2406
+ {
2407
+ "kind": "js",
2408
+ "name": "JSONReplacer",
2409
+ "declaration": {
2410
+ "name": "JSONReplacer",
2411
+ "module": "src/serializers/json/jsonReplacer.ts"
2412
+ }
2413
+ }
2414
+ ]
2415
+ },
2416
+ {
2417
+ "kind": "javascript-module",
2418
+ "path": "src/serializers/json/jsonReviver.ts",
2419
+ "declarations": [
2420
+ {
2421
+ "kind": "function",
2422
+ "name": "JSONReviver",
2423
+ "return": {
2424
+ "type": {
2425
+ "text": ""
2426
+ }
2427
+ },
2428
+ "parameters": [
2429
+ {
2430
+ "name": "key",
2431
+ "type": {
2432
+ "text": "string"
2433
+ },
2434
+ "description": "The object key."
2435
+ },
2436
+ {
2437
+ "name": "value",
2438
+ "type": {
2439
+ "text": "any"
2440
+ },
2441
+ "description": "The key value."
2442
+ }
2443
+ ],
2444
+ "description": "JSON reviver function.",
2445
+ "privacy": "public"
2446
+ }
2447
+ ],
2448
+ "exports": [
2449
+ {
2450
+ "kind": "js",
2451
+ "name": "JSONReviver",
2452
+ "declaration": {
2453
+ "name": "JSONReviver",
2454
+ "module": "src/serializers/json/jsonReviver.ts"
2455
+ }
2456
+ }
2457
+ ]
2458
+ },
2459
+ {
2460
+ "kind": "javascript-module",
2461
+ "path": "src/serializers/json/types.ts",
2462
+ "declarations": [],
2463
+ "exports": []
2464
+ }
2465
+ ]
2466
+ }