@skyux/indicators 6.18.0 → 6.20.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.
- package/documentation.json +1715 -563
- package/esm2020/index.mjs +2 -1
- package/esm2020/lib/modules/icon/icon-stack.component.mjs +1 -1
- package/esm2020/lib/modules/icon/icon.component.mjs +1 -10
- package/esm2020/lib/modules/key-info/key-info-layout-type.mjs +2 -0
- package/esm2020/lib/modules/key-info/key-info.component.mjs +1 -1
- package/esm2020/lib/modules/status-indicator/status-indicator.component.mjs +6 -6
- package/esm2020/lib/modules/tokens/token.component.mjs +31 -29
- package/esm2020/lib/modules/tokens/tokens.component.mjs +100 -86
- package/esm2020/lib/modules/tokens/types/token.mjs +1 -1
- package/esm2020/lib/modules/wait/wait-adapter.service.mjs +131 -128
- package/esm2020/lib/modules/wait/wait-page.component.mjs +1 -1
- package/esm2020/lib/modules/wait/wait.component.mjs +83 -36
- package/esm2020/lib/modules/wait/wait.service.mjs +80 -73
- package/esm2020/testing/alert/alert-harness-filters.mjs +1 -1
- package/esm2020/testing/alert/alert-harness.mjs +53 -8
- package/esm2020/testing/key-info/key-info-harness-filters.mjs +2 -0
- package/esm2020/testing/key-info/key-info-harness.mjs +49 -0
- package/esm2020/testing/key-info/key-info-label-harness.mjs +18 -0
- package/esm2020/testing/key-info/key-info-value-harness.mjs +18 -0
- package/esm2020/testing/label/label-harness-filters.mjs +2 -0
- package/esm2020/testing/label/label-harness.mjs +94 -0
- package/esm2020/testing/public-api.mjs +7 -3
- package/esm2020/testing/tokens/token-harness.mjs +6 -3
- package/esm2020/testing/tokens/tokens-harness.mjs +4 -1
- package/esm2020/testing/wait-fixture.mjs +1 -1
- package/fesm2015/skyux-indicators-testing.mjs +329 -85
- package/fesm2015/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2015/skyux-indicators.mjs +423 -364
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators-testing.mjs +297 -75
- package/fesm2020/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +422 -364
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/modules/icon/icon-stack.component.d.ts +1 -1
- package/lib/modules/icon/icon.component.d.ts +4 -4
- package/lib/modules/key-info/key-info-layout-type.d.ts +1 -0
- package/lib/modules/key-info/key-info.component.d.ts +2 -1
- package/lib/modules/status-indicator/status-indicator.component.d.ts +8 -8
- package/lib/modules/tokens/token.component.d.ts +10 -27
- package/lib/modules/tokens/tokens.component.d.ts +17 -34
- package/lib/modules/tokens/types/token.d.ts +2 -1
- package/lib/modules/wait/wait-adapter.service.d.ts +3 -13
- package/lib/modules/wait/wait-page.component.d.ts +2 -2
- package/lib/modules/wait/wait.component.d.ts +12 -16
- package/lib/modules/wait/wait.service.d.ts +1 -11
- package/package.json +5 -5
- package/testing/alert/alert-harness-filters.d.ts +0 -1
- package/testing/alert/alert-harness.d.ts +12 -2
- package/testing/key-info/key-info-harness-filters.d.ts +6 -0
- package/testing/key-info/key-info-harness.d.ts +31 -0
- package/testing/key-info/key-info-label-harness.d.ts +15 -0
- package/testing/key-info/key-info-value-harness.d.ts +15 -0
- package/testing/label/label-harness-filters.d.ts +6 -0
- package/testing/label/label-harness.d.ts +35 -0
- package/testing/public-api.d.ts +6 -2
- package/testing/tokens/token-harness.d.ts +3 -0
- package/testing/tokens/tokens-harness.d.ts +3 -0
- package/testing/wait-fixture.d.ts +1 -1
package/documentation.json
CHANGED
|
@@ -32,9 +32,14 @@
|
|
|
32
32
|
"SkyIconVariantType": "type-alias-skyiconvarianttype",
|
|
33
33
|
"SkyIndicatorDescriptionType": "type-alias-skyindicatordescriptiontype",
|
|
34
34
|
"SkyIndicatorIconType": "type-alias-skyindicatoricontype",
|
|
35
|
+
"SkyKeyInfoLayoutType": "type-alias-skykeyinfolayouttype",
|
|
35
36
|
"SkyLabelType": "type-alias-skylabeltype",
|
|
36
37
|
"SkyAlertHarness": "class-skyalertharness",
|
|
37
|
-
"
|
|
38
|
+
"SkyKeyInfoHarness": "class-skykeyinfoharness",
|
|
39
|
+
"SkyLabelHarness": "class-skylabelharness",
|
|
40
|
+
"SkyAlertHarnessFilters": "interface-skyalertharnessfilters",
|
|
41
|
+
"SkyKeyInfoHarnessFilters": "interface-skykeyinfoharnessfilters",
|
|
42
|
+
"SkyLabelHarnessFilters": "interface-skylabelharnessfilters"
|
|
38
43
|
},
|
|
39
44
|
"typedoc": {
|
|
40
45
|
"id": 0,
|
|
@@ -44,14 +49,14 @@
|
|
|
44
49
|
"originalName": "",
|
|
45
50
|
"children": [
|
|
46
51
|
{
|
|
47
|
-
"id":
|
|
52
|
+
"id": 385,
|
|
48
53
|
"name": "SkyTokensMessageType",
|
|
49
54
|
"kind": 8,
|
|
50
55
|
"kindString": "Enumeration",
|
|
51
56
|
"flags": {},
|
|
52
57
|
"children": [
|
|
53
58
|
{
|
|
54
|
-
"id":
|
|
59
|
+
"id": 387,
|
|
55
60
|
"name": "FocusActiveToken",
|
|
56
61
|
"kind": 16,
|
|
57
62
|
"kindString": "Enumeration member",
|
|
@@ -69,7 +74,7 @@
|
|
|
69
74
|
"defaultValue": "1"
|
|
70
75
|
},
|
|
71
76
|
{
|
|
72
|
-
"id":
|
|
77
|
+
"id": 386,
|
|
73
78
|
"name": "FocusLastToken",
|
|
74
79
|
"kind": 16,
|
|
75
80
|
"kindString": "Enumeration member",
|
|
@@ -87,7 +92,7 @@
|
|
|
87
92
|
"defaultValue": "0"
|
|
88
93
|
},
|
|
89
94
|
{
|
|
90
|
-
"id":
|
|
95
|
+
"id": 389,
|
|
91
96
|
"name": "FocusNextToken",
|
|
92
97
|
"kind": 16,
|
|
93
98
|
"kindString": "Enumeration member",
|
|
@@ -105,7 +110,7 @@
|
|
|
105
110
|
"defaultValue": "3"
|
|
106
111
|
},
|
|
107
112
|
{
|
|
108
|
-
"id":
|
|
113
|
+
"id": 388,
|
|
109
114
|
"name": "FocusPreviousToken",
|
|
110
115
|
"kind": 16,
|
|
111
116
|
"kindString": "Enumeration member",
|
|
@@ -123,7 +128,7 @@
|
|
|
123
128
|
"defaultValue": "2"
|
|
124
129
|
},
|
|
125
130
|
{
|
|
126
|
-
"id":
|
|
131
|
+
"id": 390,
|
|
127
132
|
"name": "RemoveActiveToken",
|
|
128
133
|
"kind": 16,
|
|
129
134
|
"kindString": "Enumeration member",
|
|
@@ -146,11 +151,11 @@
|
|
|
146
151
|
"title": "Enumeration members",
|
|
147
152
|
"kind": 16,
|
|
148
153
|
"children": [
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
+
387,
|
|
155
|
+
386,
|
|
156
|
+
389,
|
|
157
|
+
388,
|
|
158
|
+
390
|
|
154
159
|
]
|
|
155
160
|
}
|
|
156
161
|
],
|
|
@@ -163,7 +168,7 @@
|
|
|
163
168
|
]
|
|
164
169
|
},
|
|
165
170
|
{
|
|
166
|
-
"id":
|
|
171
|
+
"id": 340,
|
|
167
172
|
"name": "SkyAlertModule",
|
|
168
173
|
"kind": 128,
|
|
169
174
|
"kindString": "Class",
|
|
@@ -188,7 +193,7 @@
|
|
|
188
193
|
"title": "Constructors",
|
|
189
194
|
"kind": 512,
|
|
190
195
|
"children": [
|
|
191
|
-
|
|
196
|
+
341
|
|
192
197
|
]
|
|
193
198
|
}
|
|
194
199
|
],
|
|
@@ -201,7 +206,7 @@
|
|
|
201
206
|
]
|
|
202
207
|
},
|
|
203
208
|
{
|
|
204
|
-
"id":
|
|
209
|
+
"id": 343,
|
|
205
210
|
"name": "SkyChevronModule",
|
|
206
211
|
"kind": 128,
|
|
207
212
|
"kindString": "Class",
|
|
@@ -226,7 +231,7 @@
|
|
|
226
231
|
"title": "Constructors",
|
|
227
232
|
"kind": 512,
|
|
228
233
|
"children": [
|
|
229
|
-
|
|
234
|
+
344
|
|
230
235
|
]
|
|
231
236
|
}
|
|
232
237
|
],
|
|
@@ -239,7 +244,7 @@
|
|
|
239
244
|
]
|
|
240
245
|
},
|
|
241
246
|
{
|
|
242
|
-
"id":
|
|
247
|
+
"id": 346,
|
|
243
248
|
"name": "SkyExpansionIndicatorModule",
|
|
244
249
|
"kind": 128,
|
|
245
250
|
"kindString": "Class",
|
|
@@ -264,7 +269,7 @@
|
|
|
264
269
|
"title": "Constructors",
|
|
265
270
|
"kind": 512,
|
|
266
271
|
"children": [
|
|
267
|
-
|
|
272
|
+
347
|
|
268
273
|
]
|
|
269
274
|
}
|
|
270
275
|
],
|
|
@@ -277,7 +282,7 @@
|
|
|
277
282
|
]
|
|
278
283
|
},
|
|
279
284
|
{
|
|
280
|
-
"id":
|
|
285
|
+
"id": 349,
|
|
281
286
|
"name": "SkyHelpInlineModule",
|
|
282
287
|
"kind": 128,
|
|
283
288
|
"kindString": "Class",
|
|
@@ -302,7 +307,7 @@
|
|
|
302
307
|
"title": "Constructors",
|
|
303
308
|
"kind": 512,
|
|
304
309
|
"children": [
|
|
305
|
-
|
|
310
|
+
350
|
|
306
311
|
]
|
|
307
312
|
}
|
|
308
313
|
],
|
|
@@ -315,7 +320,7 @@
|
|
|
315
320
|
]
|
|
316
321
|
},
|
|
317
322
|
{
|
|
318
|
-
"id":
|
|
323
|
+
"id": 355,
|
|
319
324
|
"name": "SkyIconModule",
|
|
320
325
|
"kind": 128,
|
|
321
326
|
"kindString": "Class",
|
|
@@ -340,7 +345,7 @@
|
|
|
340
345
|
"title": "Constructors",
|
|
341
346
|
"kind": 512,
|
|
342
347
|
"children": [
|
|
343
|
-
|
|
348
|
+
356
|
|
344
349
|
]
|
|
345
350
|
}
|
|
346
351
|
],
|
|
@@ -353,7 +358,7 @@
|
|
|
353
358
|
]
|
|
354
359
|
},
|
|
355
360
|
{
|
|
356
|
-
"id":
|
|
361
|
+
"id": 361,
|
|
357
362
|
"name": "SkyKeyInfoModule",
|
|
358
363
|
"kind": 128,
|
|
359
364
|
"kindString": "Class",
|
|
@@ -378,7 +383,7 @@
|
|
|
378
383
|
"title": "Constructors",
|
|
379
384
|
"kind": 512,
|
|
380
385
|
"children": [
|
|
381
|
-
|
|
386
|
+
362
|
|
382
387
|
]
|
|
383
388
|
}
|
|
384
389
|
],
|
|
@@ -391,7 +396,7 @@
|
|
|
391
396
|
]
|
|
392
397
|
},
|
|
393
398
|
{
|
|
394
|
-
"id":
|
|
399
|
+
"id": 365,
|
|
395
400
|
"name": "SkyLabelModule",
|
|
396
401
|
"kind": 128,
|
|
397
402
|
"kindString": "Class",
|
|
@@ -416,7 +421,7 @@
|
|
|
416
421
|
"title": "Constructors",
|
|
417
422
|
"kind": 512,
|
|
418
423
|
"children": [
|
|
419
|
-
|
|
424
|
+
366
|
|
420
425
|
]
|
|
421
426
|
}
|
|
422
427
|
],
|
|
@@ -429,7 +434,7 @@
|
|
|
429
434
|
]
|
|
430
435
|
},
|
|
431
436
|
{
|
|
432
|
-
"id":
|
|
437
|
+
"id": 370,
|
|
433
438
|
"name": "SkyStatusIndicatorModule",
|
|
434
439
|
"kind": 128,
|
|
435
440
|
"kindString": "Class",
|
|
@@ -454,7 +459,7 @@
|
|
|
454
459
|
"title": "Constructors",
|
|
455
460
|
"kind": 512,
|
|
456
461
|
"children": [
|
|
457
|
-
|
|
462
|
+
371
|
|
458
463
|
]
|
|
459
464
|
}
|
|
460
465
|
],
|
|
@@ -467,7 +472,7 @@
|
|
|
467
472
|
]
|
|
468
473
|
},
|
|
469
474
|
{
|
|
470
|
-
"id":
|
|
475
|
+
"id": 373,
|
|
471
476
|
"name": "SkyTextHighlightModule",
|
|
472
477
|
"kind": 128,
|
|
473
478
|
"kindString": "Class",
|
|
@@ -492,7 +497,7 @@
|
|
|
492
497
|
"title": "Constructors",
|
|
493
498
|
"kind": 512,
|
|
494
499
|
"children": [
|
|
495
|
-
|
|
500
|
+
374
|
|
496
501
|
]
|
|
497
502
|
}
|
|
498
503
|
],
|
|
@@ -505,7 +510,7 @@
|
|
|
505
510
|
]
|
|
506
511
|
},
|
|
507
512
|
{
|
|
508
|
-
"id":
|
|
513
|
+
"id": 376,
|
|
509
514
|
"name": "SkyTokensModule",
|
|
510
515
|
"kind": 128,
|
|
511
516
|
"kindString": "Class",
|
|
@@ -530,7 +535,7 @@
|
|
|
530
535
|
"title": "Constructors",
|
|
531
536
|
"kind": 512,
|
|
532
537
|
"children": [
|
|
533
|
-
|
|
538
|
+
377
|
|
534
539
|
]
|
|
535
540
|
}
|
|
536
541
|
],
|
|
@@ -543,7 +548,7 @@
|
|
|
543
548
|
]
|
|
544
549
|
},
|
|
545
550
|
{
|
|
546
|
-
"id":
|
|
551
|
+
"id": 391,
|
|
547
552
|
"name": "SkyWaitModule",
|
|
548
553
|
"kind": 128,
|
|
549
554
|
"kindString": "Class",
|
|
@@ -568,7 +573,7 @@
|
|
|
568
573
|
"title": "Constructors",
|
|
569
574
|
"kind": 512,
|
|
570
575
|
"children": [
|
|
571
|
-
|
|
576
|
+
392
|
|
572
577
|
]
|
|
573
578
|
}
|
|
574
579
|
],
|
|
@@ -581,7 +586,7 @@
|
|
|
581
586
|
]
|
|
582
587
|
},
|
|
583
588
|
{
|
|
584
|
-
"id":
|
|
589
|
+
"id": 394,
|
|
585
590
|
"name": "SkyWaitService",
|
|
586
591
|
"kind": 128,
|
|
587
592
|
"kindString": "Class",
|
|
@@ -602,7 +607,7 @@
|
|
|
602
607
|
],
|
|
603
608
|
"children": [
|
|
604
609
|
{
|
|
605
|
-
"id":
|
|
610
|
+
"id": 395,
|
|
606
611
|
"name": "constructor",
|
|
607
612
|
"kind": 512,
|
|
608
613
|
"kindString": "Constructor",
|
|
@@ -610,20 +615,20 @@
|
|
|
610
615
|
"sources": [
|
|
611
616
|
{
|
|
612
617
|
"fileName": "projects/indicators/src/modules/wait/wait.service.ts",
|
|
613
|
-
"line":
|
|
618
|
+
"line": 30,
|
|
614
619
|
"character": 2
|
|
615
620
|
}
|
|
616
621
|
],
|
|
617
622
|
"signatures": [
|
|
618
623
|
{
|
|
619
|
-
"id":
|
|
624
|
+
"id": 396,
|
|
620
625
|
"name": "new SkyWaitService",
|
|
621
626
|
"kind": 16384,
|
|
622
627
|
"kindString": "Constructor signature",
|
|
623
628
|
"flags": {},
|
|
624
629
|
"parameters": [
|
|
625
630
|
{
|
|
626
|
-
"id":
|
|
631
|
+
"id": 397,
|
|
627
632
|
"name": "resolver",
|
|
628
633
|
"kind": 32768,
|
|
629
634
|
"kindString": "Parameter",
|
|
@@ -636,7 +641,7 @@
|
|
|
636
641
|
}
|
|
637
642
|
},
|
|
638
643
|
{
|
|
639
|
-
"id":
|
|
644
|
+
"id": 398,
|
|
640
645
|
"name": "appRef",
|
|
641
646
|
"kind": 32768,
|
|
642
647
|
"kindString": "Parameter",
|
|
@@ -649,7 +654,7 @@
|
|
|
649
654
|
}
|
|
650
655
|
},
|
|
651
656
|
{
|
|
652
|
-
"id":
|
|
657
|
+
"id": 399,
|
|
653
658
|
"name": "waitAdapter",
|
|
654
659
|
"kind": 32768,
|
|
655
660
|
"kindString": "Parameter",
|
|
@@ -660,7 +665,7 @@
|
|
|
660
665
|
}
|
|
661
666
|
},
|
|
662
667
|
{
|
|
663
|
-
"id":
|
|
668
|
+
"id": 400,
|
|
664
669
|
"name": "windowSvc",
|
|
665
670
|
"kind": 32768,
|
|
666
671
|
"kindString": "Parameter",
|
|
@@ -673,14 +678,14 @@
|
|
|
673
678
|
],
|
|
674
679
|
"type": {
|
|
675
680
|
"type": "reference",
|
|
676
|
-
"id":
|
|
681
|
+
"id": 394,
|
|
677
682
|
"name": "SkyWaitService"
|
|
678
683
|
}
|
|
679
684
|
}
|
|
680
685
|
]
|
|
681
686
|
},
|
|
682
687
|
{
|
|
683
|
-
"id":
|
|
688
|
+
"id": 405,
|
|
684
689
|
"name": "beginBlockingPageWait",
|
|
685
690
|
"kind": 2048,
|
|
686
691
|
"kindString": "Method",
|
|
@@ -690,13 +695,13 @@
|
|
|
690
695
|
"sources": [
|
|
691
696
|
{
|
|
692
697
|
"fileName": "projects/indicators/src/modules/wait/wait.service.ts",
|
|
693
|
-
"line":
|
|
698
|
+
"line": 45,
|
|
694
699
|
"character": 9
|
|
695
700
|
}
|
|
696
701
|
],
|
|
697
702
|
"signatures": [
|
|
698
703
|
{
|
|
699
|
-
"id":
|
|
704
|
+
"id": 406,
|
|
700
705
|
"name": "beginBlockingPageWait",
|
|
701
706
|
"kind": 4096,
|
|
702
707
|
"kindString": "Call signature",
|
|
@@ -712,7 +717,7 @@
|
|
|
712
717
|
]
|
|
713
718
|
},
|
|
714
719
|
{
|
|
715
|
-
"id":
|
|
720
|
+
"id": 407,
|
|
716
721
|
"name": "beginNonBlockingPageWait",
|
|
717
722
|
"kind": 2048,
|
|
718
723
|
"kindString": "Method",
|
|
@@ -722,13 +727,13 @@
|
|
|
722
727
|
"sources": [
|
|
723
728
|
{
|
|
724
729
|
"fileName": "projects/indicators/src/modules/wait/wait.service.ts",
|
|
725
|
-
"line":
|
|
730
|
+
"line": 52,
|
|
726
731
|
"character": 9
|
|
727
732
|
}
|
|
728
733
|
],
|
|
729
734
|
"signatures": [
|
|
730
735
|
{
|
|
731
|
-
"id":
|
|
736
|
+
"id": 408,
|
|
732
737
|
"name": "beginNonBlockingPageWait",
|
|
733
738
|
"kind": 4096,
|
|
734
739
|
"kindString": "Call signature",
|
|
@@ -744,7 +749,7 @@
|
|
|
744
749
|
]
|
|
745
750
|
},
|
|
746
751
|
{
|
|
747
|
-
"id":
|
|
752
|
+
"id": 417,
|
|
748
753
|
"name": "blockingWrap",
|
|
749
754
|
"kind": 2048,
|
|
750
755
|
"kindString": "Method",
|
|
@@ -754,13 +759,13 @@
|
|
|
754
759
|
"sources": [
|
|
755
760
|
{
|
|
756
761
|
"fileName": "projects/indicators/src/modules/wait/wait.service.ts",
|
|
757
|
-
"line":
|
|
762
|
+
"line": 95,
|
|
758
763
|
"character": 9
|
|
759
764
|
}
|
|
760
765
|
],
|
|
761
766
|
"signatures": [
|
|
762
767
|
{
|
|
763
|
-
"id":
|
|
768
|
+
"id": 418,
|
|
764
769
|
"name": "blockingWrap",
|
|
765
770
|
"kind": 4096,
|
|
766
771
|
"kindString": "Call signature",
|
|
@@ -770,7 +775,7 @@
|
|
|
770
775
|
},
|
|
771
776
|
"typeParameter": [
|
|
772
777
|
{
|
|
773
|
-
"id":
|
|
778
|
+
"id": 419,
|
|
774
779
|
"name": "T",
|
|
775
780
|
"kind": 131072,
|
|
776
781
|
"kindString": "Type parameter",
|
|
@@ -779,7 +784,7 @@
|
|
|
779
784
|
],
|
|
780
785
|
"parameters": [
|
|
781
786
|
{
|
|
782
|
-
"id":
|
|
787
|
+
"id": 420,
|
|
783
788
|
"name": "observable",
|
|
784
789
|
"kind": 32768,
|
|
785
790
|
"kindString": "Parameter",
|
|
@@ -789,7 +794,7 @@
|
|
|
789
794
|
"typeArguments": [
|
|
790
795
|
{
|
|
791
796
|
"type": "reference",
|
|
792
|
-
"id":
|
|
797
|
+
"id": 419,
|
|
793
798
|
"name": "T"
|
|
794
799
|
}
|
|
795
800
|
],
|
|
@@ -804,7 +809,7 @@
|
|
|
804
809
|
"typeArguments": [
|
|
805
810
|
{
|
|
806
811
|
"type": "reference",
|
|
807
|
-
"id":
|
|
812
|
+
"id": 419,
|
|
808
813
|
"name": "T"
|
|
809
814
|
}
|
|
810
815
|
],
|
|
@@ -816,7 +821,7 @@
|
|
|
816
821
|
]
|
|
817
822
|
},
|
|
818
823
|
{
|
|
819
|
-
"id":
|
|
824
|
+
"id": 413,
|
|
820
825
|
"name": "clearAllPageWaits",
|
|
821
826
|
"kind": 2048,
|
|
822
827
|
"kindString": "Method",
|
|
@@ -826,13 +831,13 @@
|
|
|
826
831
|
"sources": [
|
|
827
832
|
{
|
|
828
833
|
"fileName": "projects/indicators/src/modules/wait/wait.service.ts",
|
|
829
|
-
"line":
|
|
834
|
+
"line": 75,
|
|
830
835
|
"character": 9
|
|
831
836
|
}
|
|
832
837
|
],
|
|
833
838
|
"signatures": [
|
|
834
839
|
{
|
|
835
|
-
"id":
|
|
840
|
+
"id": 414,
|
|
836
841
|
"name": "clearAllPageWaits",
|
|
837
842
|
"kind": 4096,
|
|
838
843
|
"kindString": "Call signature",
|
|
@@ -848,7 +853,7 @@
|
|
|
848
853
|
]
|
|
849
854
|
},
|
|
850
855
|
{
|
|
851
|
-
"id":
|
|
856
|
+
"id": 409,
|
|
852
857
|
"name": "endBlockingPageWait",
|
|
853
858
|
"kind": 2048,
|
|
854
859
|
"kindString": "Method",
|
|
@@ -858,13 +863,13 @@
|
|
|
858
863
|
"sources": [
|
|
859
864
|
{
|
|
860
865
|
"fileName": "projects/indicators/src/modules/wait/wait.service.ts",
|
|
861
|
-
"line":
|
|
866
|
+
"line": 60,
|
|
862
867
|
"character": 9
|
|
863
868
|
}
|
|
864
869
|
],
|
|
865
870
|
"signatures": [
|
|
866
871
|
{
|
|
867
|
-
"id":
|
|
872
|
+
"id": 410,
|
|
868
873
|
"name": "endBlockingPageWait",
|
|
869
874
|
"kind": 4096,
|
|
870
875
|
"kindString": "Call signature",
|
|
@@ -880,7 +885,7 @@
|
|
|
880
885
|
]
|
|
881
886
|
},
|
|
882
887
|
{
|
|
883
|
-
"id":
|
|
888
|
+
"id": 411,
|
|
884
889
|
"name": "endNonBlockingPageWait",
|
|
885
890
|
"kind": 2048,
|
|
886
891
|
"kindString": "Method",
|
|
@@ -890,13 +895,13 @@
|
|
|
890
895
|
"sources": [
|
|
891
896
|
{
|
|
892
897
|
"fileName": "projects/indicators/src/modules/wait/wait.service.ts",
|
|
893
|
-
"line":
|
|
898
|
+
"line": 68,
|
|
894
899
|
"character": 9
|
|
895
900
|
}
|
|
896
901
|
],
|
|
897
902
|
"signatures": [
|
|
898
903
|
{
|
|
899
|
-
"id":
|
|
904
|
+
"id": 412,
|
|
900
905
|
"name": "endNonBlockingPageWait",
|
|
901
906
|
"kind": 4096,
|
|
902
907
|
"kindString": "Call signature",
|
|
@@ -912,7 +917,7 @@
|
|
|
912
917
|
]
|
|
913
918
|
},
|
|
914
919
|
{
|
|
915
|
-
"id":
|
|
920
|
+
"id": 421,
|
|
916
921
|
"name": "nonBlockingWrap",
|
|
917
922
|
"kind": 2048,
|
|
918
923
|
"kindString": "Method",
|
|
@@ -922,13 +927,13 @@
|
|
|
922
927
|
"sources": [
|
|
923
928
|
{
|
|
924
929
|
"fileName": "projects/indicators/src/modules/wait/wait.service.ts",
|
|
925
|
-
"line":
|
|
930
|
+
"line": 106,
|
|
926
931
|
"character": 9
|
|
927
932
|
}
|
|
928
933
|
],
|
|
929
934
|
"signatures": [
|
|
930
935
|
{
|
|
931
|
-
"id":
|
|
936
|
+
"id": 422,
|
|
932
937
|
"name": "nonBlockingWrap",
|
|
933
938
|
"kind": 4096,
|
|
934
939
|
"kindString": "Call signature",
|
|
@@ -938,7 +943,7 @@
|
|
|
938
943
|
},
|
|
939
944
|
"typeParameter": [
|
|
940
945
|
{
|
|
941
|
-
"id":
|
|
946
|
+
"id": 423,
|
|
942
947
|
"name": "T",
|
|
943
948
|
"kind": 131072,
|
|
944
949
|
"kindString": "Type parameter",
|
|
@@ -947,7 +952,7 @@
|
|
|
947
952
|
],
|
|
948
953
|
"parameters": [
|
|
949
954
|
{
|
|
950
|
-
"id":
|
|
955
|
+
"id": 424,
|
|
951
956
|
"name": "observable",
|
|
952
957
|
"kind": 32768,
|
|
953
958
|
"kindString": "Parameter",
|
|
@@ -957,7 +962,7 @@
|
|
|
957
962
|
"typeArguments": [
|
|
958
963
|
{
|
|
959
964
|
"type": "reference",
|
|
960
|
-
"id":
|
|
965
|
+
"id": 423,
|
|
961
966
|
"name": "T"
|
|
962
967
|
}
|
|
963
968
|
],
|
|
@@ -972,7 +977,7 @@
|
|
|
972
977
|
"typeArguments": [
|
|
973
978
|
{
|
|
974
979
|
"type": "reference",
|
|
975
|
-
"id":
|
|
980
|
+
"id": 423,
|
|
976
981
|
"name": "T"
|
|
977
982
|
}
|
|
978
983
|
],
|
|
@@ -989,27 +994,27 @@
|
|
|
989
994
|
"title": "Constructors",
|
|
990
995
|
"kind": 512,
|
|
991
996
|
"children": [
|
|
992
|
-
|
|
997
|
+
395
|
|
993
998
|
]
|
|
994
999
|
},
|
|
995
1000
|
{
|
|
996
1001
|
"title": "Methods",
|
|
997
1002
|
"kind": 2048,
|
|
998
1003
|
"children": [
|
|
999
|
-
|
|
1000
|
-
397,
|
|
1004
|
+
405,
|
|
1001
1005
|
407,
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
411
|
|
1006
|
+
417,
|
|
1007
|
+
413,
|
|
1008
|
+
409,
|
|
1009
|
+
411,
|
|
1010
|
+
421
|
|
1006
1011
|
]
|
|
1007
1012
|
}
|
|
1008
1013
|
],
|
|
1009
1014
|
"sources": [
|
|
1010
1015
|
{
|
|
1011
1016
|
"fileName": "projects/indicators/src/modules/wait/wait.service.ts",
|
|
1012
|
-
"line":
|
|
1017
|
+
"line": 24,
|
|
1013
1018
|
"character": 13
|
|
1014
1019
|
}
|
|
1015
1020
|
]
|
|
@@ -1133,7 +1138,7 @@
|
|
|
1133
1138
|
],
|
|
1134
1139
|
"type": {
|
|
1135
1140
|
"type": "reference",
|
|
1136
|
-
"id":
|
|
1141
|
+
"id": 369,
|
|
1137
1142
|
"name": "SkyIndicatorIconType"
|
|
1138
1143
|
},
|
|
1139
1144
|
"defaultValue": "ALERT_TYPE_DEFAULT"
|
|
@@ -1450,7 +1455,7 @@
|
|
|
1450
1455
|
"flags": {},
|
|
1451
1456
|
"type": {
|
|
1452
1457
|
"type": "reference",
|
|
1453
|
-
"id":
|
|
1458
|
+
"id": 368,
|
|
1454
1459
|
"name": "SkyIndicatorDescriptionType"
|
|
1455
1460
|
}
|
|
1456
1461
|
}
|
|
@@ -1661,7 +1666,7 @@
|
|
|
1661
1666
|
"sources": [
|
|
1662
1667
|
{
|
|
1663
1668
|
"fileName": "projects/indicators/src/modules/status-indicator/status-indicator.component.ts",
|
|
1664
|
-
"line":
|
|
1669
|
+
"line": 86,
|
|
1665
1670
|
"character": 2
|
|
1666
1671
|
}
|
|
1667
1672
|
],
|
|
@@ -1783,7 +1788,7 @@
|
|
|
1783
1788
|
],
|
|
1784
1789
|
"type": {
|
|
1785
1790
|
"type": "reference",
|
|
1786
|
-
"id":
|
|
1791
|
+
"id": 369,
|
|
1787
1792
|
"name": "SkyIndicatorIconType"
|
|
1788
1793
|
},
|
|
1789
1794
|
"defaultValue": "INDICATOR_TYPE_DEFAULT"
|
|
@@ -1926,7 +1931,7 @@
|
|
|
1926
1931
|
},
|
|
1927
1932
|
"type": {
|
|
1928
1933
|
"type": "reference",
|
|
1929
|
-
"id":
|
|
1934
|
+
"id": 368,
|
|
1930
1935
|
"name": "SkyIndicatorDescriptionType"
|
|
1931
1936
|
}
|
|
1932
1937
|
}
|
|
@@ -1956,7 +1961,7 @@
|
|
|
1956
1961
|
"flags": {},
|
|
1957
1962
|
"type": {
|
|
1958
1963
|
"type": "reference",
|
|
1959
|
-
"id":
|
|
1964
|
+
"id": 368,
|
|
1960
1965
|
"name": "SkyIndicatorDescriptionType"
|
|
1961
1966
|
}
|
|
1962
1967
|
}
|
|
@@ -2020,7 +2025,7 @@
|
|
|
2020
2025
|
"flags": {},
|
|
2021
2026
|
"type": {
|
|
2022
2027
|
"type": "reference",
|
|
2023
|
-
"id":
|
|
2028
|
+
"id": 369,
|
|
2024
2029
|
"name": "SkyIndicatorIconType"
|
|
2025
2030
|
}
|
|
2026
2031
|
}
|
|
@@ -2043,7 +2048,7 @@
|
|
|
2043
2048
|
"sources": [
|
|
2044
2049
|
{
|
|
2045
2050
|
"fileName": "projects/indicators/src/modules/status-indicator/status-indicator.component.ts",
|
|
2046
|
-
"line":
|
|
2051
|
+
"line": 94,
|
|
2047
2052
|
"character": 9
|
|
2048
2053
|
}
|
|
2049
2054
|
],
|
|
@@ -2485,7 +2490,7 @@
|
|
|
2485
2490
|
"sources": [
|
|
2486
2491
|
{
|
|
2487
2492
|
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
2488
|
-
"line":
|
|
2493
|
+
"line": 93,
|
|
2489
2494
|
"character": 2
|
|
2490
2495
|
}
|
|
2491
2496
|
],
|
|
@@ -2518,7 +2523,7 @@
|
|
|
2518
2523
|
},
|
|
2519
2524
|
{
|
|
2520
2525
|
"id": 179,
|
|
2521
|
-
"name": "
|
|
2526
|
+
"name": "resourcesSvc",
|
|
2522
2527
|
"kind": 32768,
|
|
2523
2528
|
"kindString": "Parameter",
|
|
2524
2529
|
"flags": {},
|
|
@@ -2537,7 +2542,28 @@
|
|
|
2537
2542
|
]
|
|
2538
2543
|
},
|
|
2539
2544
|
{
|
|
2540
|
-
"id":
|
|
2545
|
+
"id": 198,
|
|
2546
|
+
"name": "closeActive",
|
|
2547
|
+
"kind": 1024,
|
|
2548
|
+
"kindString": "Property",
|
|
2549
|
+
"flags": {
|
|
2550
|
+
"isPublic": true
|
|
2551
|
+
},
|
|
2552
|
+
"sources": [
|
|
2553
|
+
{
|
|
2554
|
+
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
2555
|
+
"line": 83,
|
|
2556
|
+
"character": 9
|
|
2557
|
+
}
|
|
2558
|
+
],
|
|
2559
|
+
"type": {
|
|
2560
|
+
"type": "intrinsic",
|
|
2561
|
+
"name": "boolean"
|
|
2562
|
+
},
|
|
2563
|
+
"defaultValue": "false"
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
"id": 195,
|
|
2541
2567
|
"name": "dismiss",
|
|
2542
2568
|
"kind": 1024,
|
|
2543
2569
|
"kindString": "Property",
|
|
@@ -2545,7 +2571,7 @@
|
|
|
2545
2571
|
"isPublic": true
|
|
2546
2572
|
},
|
|
2547
2573
|
"comment": {
|
|
2548
|
-
"shortText": "Fires when users click the close button
|
|
2574
|
+
"shortText": "Fires when users click the close button."
|
|
2549
2575
|
},
|
|
2550
2576
|
"decorators": [
|
|
2551
2577
|
{
|
|
@@ -2562,7 +2588,7 @@
|
|
|
2562
2588
|
"sources": [
|
|
2563
2589
|
{
|
|
2564
2590
|
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
2565
|
-
"line":
|
|
2591
|
+
"line": 74,
|
|
2566
2592
|
"character": 9
|
|
2567
2593
|
}
|
|
2568
2594
|
],
|
|
@@ -2580,8 +2606,50 @@
|
|
|
2580
2606
|
},
|
|
2581
2607
|
"defaultValue": "..."
|
|
2582
2608
|
},
|
|
2609
|
+
{
|
|
2610
|
+
"id": 199,
|
|
2611
|
+
"name": "tabIndex",
|
|
2612
|
+
"kind": 1024,
|
|
2613
|
+
"kindString": "Property",
|
|
2614
|
+
"flags": {
|
|
2615
|
+
"isPublic": true
|
|
2616
|
+
},
|
|
2617
|
+
"sources": [
|
|
2618
|
+
{
|
|
2619
|
+
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
2620
|
+
"line": 84,
|
|
2621
|
+
"character": 9
|
|
2622
|
+
}
|
|
2623
|
+
],
|
|
2624
|
+
"type": {
|
|
2625
|
+
"type": "intrinsic",
|
|
2626
|
+
"name": "number"
|
|
2627
|
+
},
|
|
2628
|
+
"defaultValue": "0"
|
|
2629
|
+
},
|
|
2583
2630
|
{
|
|
2584
2631
|
"id": 197,
|
|
2632
|
+
"name": "tokenActive",
|
|
2633
|
+
"kind": 1024,
|
|
2634
|
+
"kindString": "Property",
|
|
2635
|
+
"flags": {
|
|
2636
|
+
"isPublic": true
|
|
2637
|
+
},
|
|
2638
|
+
"sources": [
|
|
2639
|
+
{
|
|
2640
|
+
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
2641
|
+
"line": 82,
|
|
2642
|
+
"character": 9
|
|
2643
|
+
}
|
|
2644
|
+
],
|
|
2645
|
+
"type": {
|
|
2646
|
+
"type": "intrinsic",
|
|
2647
|
+
"name": "boolean"
|
|
2648
|
+
},
|
|
2649
|
+
"defaultValue": "false"
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"id": 196,
|
|
2585
2653
|
"name": "tokenFocus",
|
|
2586
2654
|
"kind": 1024,
|
|
2587
2655
|
"kindString": "Property",
|
|
@@ -2606,7 +2674,7 @@
|
|
|
2606
2674
|
"sources": [
|
|
2607
2675
|
{
|
|
2608
2676
|
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
2609
|
-
"line":
|
|
2677
|
+
"line": 80,
|
|
2610
2678
|
"character": 9
|
|
2611
2679
|
}
|
|
2612
2680
|
],
|
|
@@ -2748,7 +2816,7 @@
|
|
|
2748
2816
|
"tags": [
|
|
2749
2817
|
{
|
|
2750
2818
|
"tag": "default",
|
|
2751
|
-
"text": "
|
|
2819
|
+
"text": "false\n"
|
|
2752
2820
|
}
|
|
2753
2821
|
]
|
|
2754
2822
|
},
|
|
@@ -2770,7 +2838,7 @@
|
|
|
2770
2838
|
"tags": [
|
|
2771
2839
|
{
|
|
2772
2840
|
"tag": "default",
|
|
2773
|
-
"text": "
|
|
2841
|
+
"text": "false\n"
|
|
2774
2842
|
}
|
|
2775
2843
|
]
|
|
2776
2844
|
},
|
|
@@ -2817,7 +2885,7 @@
|
|
|
2817
2885
|
"sources": [
|
|
2818
2886
|
{
|
|
2819
2887
|
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
2820
|
-
"line":
|
|
2888
|
+
"line": 52,
|
|
2821
2889
|
"character": 13
|
|
2822
2890
|
}
|
|
2823
2891
|
],
|
|
@@ -2829,7 +2897,7 @@
|
|
|
2829
2897
|
"kindString": "Get signature",
|
|
2830
2898
|
"flags": {},
|
|
2831
2899
|
"comment": {
|
|
2832
|
-
"shortText": "Indicates whether users can remove the token from the list by selecting the close button
|
|
2900
|
+
"shortText": "Indicates whether users can remove the token from the list by selecting the close button.",
|
|
2833
2901
|
"tags": [
|
|
2834
2902
|
{
|
|
2835
2903
|
"tag": "default",
|
|
@@ -2851,7 +2919,7 @@
|
|
|
2851
2919
|
"kindString": "Set signature",
|
|
2852
2920
|
"flags": {},
|
|
2853
2921
|
"comment": {
|
|
2854
|
-
"shortText": "Indicates whether users can remove the token from the list by selecting the close button
|
|
2922
|
+
"shortText": "Indicates whether users can remove the token from the list by selecting the close button.",
|
|
2855
2923
|
"tags": [
|
|
2856
2924
|
{
|
|
2857
2925
|
"tag": "default",
|
|
@@ -2902,35 +2970,13 @@
|
|
|
2902
2970
|
"sources": [
|
|
2903
2971
|
{
|
|
2904
2972
|
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
2905
|
-
"line":
|
|
2973
|
+
"line": 66,
|
|
2906
2974
|
"character": 13
|
|
2907
2975
|
}
|
|
2908
2976
|
],
|
|
2909
|
-
"getSignature": [
|
|
2910
|
-
{
|
|
2911
|
-
"id": 193,
|
|
2912
|
-
"name": "focusable",
|
|
2913
|
-
"kind": 524288,
|
|
2914
|
-
"kindString": "Get signature",
|
|
2915
|
-
"flags": {},
|
|
2916
|
-
"comment": {
|
|
2917
|
-
"shortText": "Indicates whether users can press the `Tab` key to place focus on the token. This does not\naffect the ability to select the token, dismiss it, or navigate to it with the arrow keys.",
|
|
2918
|
-
"tags": [
|
|
2919
|
-
{
|
|
2920
|
-
"tag": "default",
|
|
2921
|
-
"text": "true\n"
|
|
2922
|
-
}
|
|
2923
|
-
]
|
|
2924
|
-
},
|
|
2925
|
-
"type": {
|
|
2926
|
-
"type": "intrinsic",
|
|
2927
|
-
"name": "boolean"
|
|
2928
|
-
}
|
|
2929
|
-
}
|
|
2930
|
-
],
|
|
2931
2977
|
"setSignature": [
|
|
2932
2978
|
{
|
|
2933
|
-
"id":
|
|
2979
|
+
"id": 193,
|
|
2934
2980
|
"name": "focusable",
|
|
2935
2981
|
"kind": 1048576,
|
|
2936
2982
|
"kindString": "Set signature",
|
|
@@ -2946,7 +2992,7 @@
|
|
|
2946
2992
|
},
|
|
2947
2993
|
"parameters": [
|
|
2948
2994
|
{
|
|
2949
|
-
"id":
|
|
2995
|
+
"id": 194,
|
|
2950
2996
|
"name": "value",
|
|
2951
2997
|
"kind": 32768,
|
|
2952
2998
|
"kindString": "Parameter",
|
|
@@ -2965,7 +3011,7 @@
|
|
|
2965
3011
|
]
|
|
2966
3012
|
},
|
|
2967
3013
|
{
|
|
2968
|
-
"id":
|
|
3014
|
+
"id": 205,
|
|
2969
3015
|
"name": "dismissToken",
|
|
2970
3016
|
"kind": 2048,
|
|
2971
3017
|
"kindString": "Method",
|
|
@@ -2975,20 +3021,20 @@
|
|
|
2975
3021
|
"sources": [
|
|
2976
3022
|
{
|
|
2977
3023
|
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
2978
|
-
"line":
|
|
3024
|
+
"line": 100,
|
|
2979
3025
|
"character": 9
|
|
2980
3026
|
}
|
|
2981
3027
|
],
|
|
2982
3028
|
"signatures": [
|
|
2983
3029
|
{
|
|
2984
|
-
"id":
|
|
3030
|
+
"id": 206,
|
|
2985
3031
|
"name": "dismissToken",
|
|
2986
3032
|
"kind": 4096,
|
|
2987
3033
|
"kindString": "Call signature",
|
|
2988
3034
|
"flags": {},
|
|
2989
3035
|
"parameters": [
|
|
2990
3036
|
{
|
|
2991
|
-
"id":
|
|
3037
|
+
"id": 207,
|
|
2992
3038
|
"name": "event",
|
|
2993
3039
|
"kind": 32768,
|
|
2994
3040
|
"kindString": "Parameter",
|
|
@@ -3009,7 +3055,7 @@
|
|
|
3009
3055
|
]
|
|
3010
3056
|
},
|
|
3011
3057
|
{
|
|
3012
|
-
"id":
|
|
3058
|
+
"id": 208,
|
|
3013
3059
|
"name": "focusElement",
|
|
3014
3060
|
"kind": 2048,
|
|
3015
3061
|
"kindString": "Method",
|
|
@@ -3019,13 +3065,13 @@
|
|
|
3019
3065
|
"sources": [
|
|
3020
3066
|
{
|
|
3021
3067
|
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
3022
|
-
"line":
|
|
3068
|
+
"line": 105,
|
|
3023
3069
|
"character": 9
|
|
3024
3070
|
}
|
|
3025
3071
|
],
|
|
3026
3072
|
"signatures": [
|
|
3027
3073
|
{
|
|
3028
|
-
"id":
|
|
3074
|
+
"id": 209,
|
|
3029
3075
|
"name": "focusElement",
|
|
3030
3076
|
"kind": 4096,
|
|
3031
3077
|
"kindString": "Call signature",
|
|
@@ -3038,7 +3084,7 @@
|
|
|
3038
3084
|
]
|
|
3039
3085
|
},
|
|
3040
3086
|
{
|
|
3041
|
-
"id":
|
|
3087
|
+
"id": 213,
|
|
3042
3088
|
"name": "setCloseActive",
|
|
3043
3089
|
"kind": 2048,
|
|
3044
3090
|
"kindString": "Method",
|
|
@@ -3048,20 +3094,20 @@
|
|
|
3048
3094
|
"sources": [
|
|
3049
3095
|
{
|
|
3050
3096
|
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
3051
|
-
"line":
|
|
3097
|
+
"line": 113,
|
|
3052
3098
|
"character": 9
|
|
3053
3099
|
}
|
|
3054
3100
|
],
|
|
3055
3101
|
"signatures": [
|
|
3056
3102
|
{
|
|
3057
|
-
"id":
|
|
3103
|
+
"id": 214,
|
|
3058
3104
|
"name": "setCloseActive",
|
|
3059
3105
|
"kind": 4096,
|
|
3060
3106
|
"kindString": "Call signature",
|
|
3061
3107
|
"flags": {},
|
|
3062
3108
|
"parameters": [
|
|
3063
3109
|
{
|
|
3064
|
-
"id":
|
|
3110
|
+
"id": 215,
|
|
3065
3111
|
"name": "closeActive",
|
|
3066
3112
|
"kind": 32768,
|
|
3067
3113
|
"kindString": "Parameter",
|
|
@@ -3080,7 +3126,7 @@
|
|
|
3080
3126
|
]
|
|
3081
3127
|
},
|
|
3082
3128
|
{
|
|
3083
|
-
"id":
|
|
3129
|
+
"id": 210,
|
|
3084
3130
|
"name": "setTokenActive",
|
|
3085
3131
|
"kind": 2048,
|
|
3086
3132
|
"kindString": "Method",
|
|
@@ -3090,20 +3136,20 @@
|
|
|
3090
3136
|
"sources": [
|
|
3091
3137
|
{
|
|
3092
3138
|
"fileName": "projects/indicators/src/modules/tokens/token.component.ts",
|
|
3093
|
-
"line":
|
|
3139
|
+
"line": 109,
|
|
3094
3140
|
"character": 9
|
|
3095
3141
|
}
|
|
3096
3142
|
],
|
|
3097
3143
|
"signatures": [
|
|
3098
3144
|
{
|
|
3099
|
-
"id":
|
|
3145
|
+
"id": 211,
|
|
3100
3146
|
"name": "setTokenActive",
|
|
3101
3147
|
"kind": 4096,
|
|
3102
3148
|
"kindString": "Call signature",
|
|
3103
3149
|
"flags": {},
|
|
3104
3150
|
"parameters": [
|
|
3105
3151
|
{
|
|
3106
|
-
"id":
|
|
3152
|
+
"id": 212,
|
|
3107
3153
|
"name": "tokenActive",
|
|
3108
3154
|
"kind": 32768,
|
|
3109
3155
|
"kindString": "Parameter",
|
|
@@ -3134,8 +3180,11 @@
|
|
|
3134
3180
|
"title": "Properties",
|
|
3135
3181
|
"kind": 1024,
|
|
3136
3182
|
"children": [
|
|
3137
|
-
|
|
3138
|
-
|
|
3183
|
+
198,
|
|
3184
|
+
195,
|
|
3185
|
+
199,
|
|
3186
|
+
197,
|
|
3187
|
+
196
|
|
3139
3188
|
]
|
|
3140
3189
|
},
|
|
3141
3190
|
{
|
|
@@ -3152,10 +3201,10 @@
|
|
|
3152
3201
|
"title": "Methods",
|
|
3153
3202
|
"kind": 2048,
|
|
3154
3203
|
"children": [
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3204
|
+
205,
|
|
3205
|
+
208,
|
|
3206
|
+
213,
|
|
3207
|
+
210
|
|
3159
3208
|
]
|
|
3160
3209
|
}
|
|
3161
3210
|
],
|
|
@@ -3168,11 +3217,14 @@
|
|
|
3168
3217
|
]
|
|
3169
3218
|
},
|
|
3170
3219
|
{
|
|
3171
|
-
"id":
|
|
3220
|
+
"id": 218,
|
|
3172
3221
|
"name": "SkyTokensComponent",
|
|
3173
3222
|
"kind": 128,
|
|
3174
3223
|
"kindString": "Class",
|
|
3175
3224
|
"flags": {},
|
|
3225
|
+
"comment": {
|
|
3226
|
+
"shortText": "Creates a container that enables navigation between tokens using keyboard arrow keys.\nThis is useful when combined with other components where the <kbd>Tab</kbd> key is\nreserved for other functions, such as the SKY UX Lookup component."
|
|
3227
|
+
},
|
|
3176
3228
|
"decorators": [
|
|
3177
3229
|
{
|
|
3178
3230
|
"name": "Component",
|
|
@@ -3189,7 +3241,7 @@
|
|
|
3189
3241
|
],
|
|
3190
3242
|
"children": [
|
|
3191
3243
|
{
|
|
3192
|
-
"id":
|
|
3244
|
+
"id": 219,
|
|
3193
3245
|
"name": "constructor",
|
|
3194
3246
|
"kind": 512,
|
|
3195
3247
|
"kindString": "Constructor",
|
|
@@ -3197,20 +3249,20 @@
|
|
|
3197
3249
|
"sources": [
|
|
3198
3250
|
{
|
|
3199
3251
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3200
|
-
"line":
|
|
3252
|
+
"line": 222,
|
|
3201
3253
|
"character": 2
|
|
3202
3254
|
}
|
|
3203
3255
|
],
|
|
3204
3256
|
"signatures": [
|
|
3205
3257
|
{
|
|
3206
|
-
"id":
|
|
3258
|
+
"id": 220,
|
|
3207
3259
|
"name": "SkyTokensComponent",
|
|
3208
3260
|
"kind": 16384,
|
|
3209
3261
|
"kindString": "Constructor signature",
|
|
3210
3262
|
"flags": {},
|
|
3211
3263
|
"parameters": [
|
|
3212
3264
|
{
|
|
3213
|
-
"id":
|
|
3265
|
+
"id": 221,
|
|
3214
3266
|
"name": "changeDetector",
|
|
3215
3267
|
"kind": 32768,
|
|
3216
3268
|
"kindString": "Parameter",
|
|
@@ -3225,14 +3277,14 @@
|
|
|
3225
3277
|
],
|
|
3226
3278
|
"type": {
|
|
3227
3279
|
"type": "reference",
|
|
3228
|
-
"id":
|
|
3280
|
+
"id": 218,
|
|
3229
3281
|
"name": "SkyTokensComponent"
|
|
3230
3282
|
}
|
|
3231
3283
|
}
|
|
3232
3284
|
]
|
|
3233
3285
|
},
|
|
3234
3286
|
{
|
|
3235
|
-
"id":
|
|
3287
|
+
"id": 247,
|
|
3236
3288
|
"name": "focusIndexOverRange",
|
|
3237
3289
|
"kind": 1024,
|
|
3238
3290
|
"kindString": "Property",
|
|
@@ -3257,7 +3309,7 @@
|
|
|
3257
3309
|
"sources": [
|
|
3258
3310
|
{
|
|
3259
3311
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3260
|
-
"line":
|
|
3312
|
+
"line": 164,
|
|
3261
3313
|
"character": 9
|
|
3262
3314
|
}
|
|
3263
3315
|
],
|
|
@@ -3276,7 +3328,7 @@
|
|
|
3276
3328
|
"defaultValue": "..."
|
|
3277
3329
|
},
|
|
3278
3330
|
{
|
|
3279
|
-
"id":
|
|
3331
|
+
"id": 248,
|
|
3280
3332
|
"name": "focusIndexUnderRange",
|
|
3281
3333
|
"kind": 1024,
|
|
3282
3334
|
"kindString": "Property",
|
|
@@ -3284,7 +3336,7 @@
|
|
|
3284
3336
|
"isPublic": true
|
|
3285
3337
|
},
|
|
3286
3338
|
"comment": {
|
|
3287
|
-
"shortText": "Fires when
|
|
3339
|
+
"shortText": "Fires when users navigate through the tokens list with the `Tab` key\nand attempt to move before the first token in the list."
|
|
3288
3340
|
},
|
|
3289
3341
|
"decorators": [
|
|
3290
3342
|
{
|
|
@@ -3301,7 +3353,7 @@
|
|
|
3301
3353
|
"sources": [
|
|
3302
3354
|
{
|
|
3303
3355
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3304
|
-
"line":
|
|
3356
|
+
"line": 171,
|
|
3305
3357
|
"character": 9
|
|
3306
3358
|
}
|
|
3307
3359
|
],
|
|
@@ -3320,7 +3372,50 @@
|
|
|
3320
3372
|
"defaultValue": "..."
|
|
3321
3373
|
},
|
|
3322
3374
|
{
|
|
3323
|
-
"id":
|
|
3375
|
+
"id": 261,
|
|
3376
|
+
"name": "tokenComponents",
|
|
3377
|
+
"kind": 1024,
|
|
3378
|
+
"kindString": "Property",
|
|
3379
|
+
"flags": {
|
|
3380
|
+
"isPublic": true
|
|
3381
|
+
},
|
|
3382
|
+
"decorators": [
|
|
3383
|
+
{
|
|
3384
|
+
"name": "ViewChildren",
|
|
3385
|
+
"type": {
|
|
3386
|
+
"type": "reference",
|
|
3387
|
+
"qualifiedName": "ViewChildrenDecorator",
|
|
3388
|
+
"package": "@angular/core",
|
|
3389
|
+
"name": "ViewChildren"
|
|
3390
|
+
},
|
|
3391
|
+
"arguments": {
|
|
3392
|
+
"selector": "SkyTokenComponent"
|
|
3393
|
+
}
|
|
3394
|
+
}
|
|
3395
|
+
],
|
|
3396
|
+
"sources": [
|
|
3397
|
+
{
|
|
3398
|
+
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3399
|
+
"line": 213,
|
|
3400
|
+
"character": 9
|
|
3401
|
+
}
|
|
3402
|
+
],
|
|
3403
|
+
"type": {
|
|
3404
|
+
"type": "reference",
|
|
3405
|
+
"typeArguments": [
|
|
3406
|
+
{
|
|
3407
|
+
"type": "reference",
|
|
3408
|
+
"id": 175,
|
|
3409
|
+
"name": "SkyTokenComponent"
|
|
3410
|
+
}
|
|
3411
|
+
],
|
|
3412
|
+
"qualifiedName": "QueryList",
|
|
3413
|
+
"package": "@angular/core",
|
|
3414
|
+
"name": "QueryList"
|
|
3415
|
+
}
|
|
3416
|
+
},
|
|
3417
|
+
{
|
|
3418
|
+
"id": 249,
|
|
3324
3419
|
"name": "tokenSelected",
|
|
3325
3420
|
"kind": 1024,
|
|
3326
3421
|
"kindString": "Property",
|
|
@@ -3345,7 +3440,7 @@
|
|
|
3345
3440
|
"sources": [
|
|
3346
3441
|
{
|
|
3347
3442
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3348
|
-
"line":
|
|
3443
|
+
"line": 177,
|
|
3349
3444
|
"character": 9
|
|
3350
3445
|
}
|
|
3351
3446
|
],
|
|
@@ -3354,7 +3449,7 @@
|
|
|
3354
3449
|
"typeArguments": [
|
|
3355
3450
|
{
|
|
3356
3451
|
"type": "reference",
|
|
3357
|
-
"id":
|
|
3452
|
+
"id": 381,
|
|
3358
3453
|
"name": "SkyTokenSelectedEventArgs"
|
|
3359
3454
|
}
|
|
3360
3455
|
],
|
|
@@ -3365,7 +3460,7 @@
|
|
|
3365
3460
|
"defaultValue": "..."
|
|
3366
3461
|
},
|
|
3367
3462
|
{
|
|
3368
|
-
"id":
|
|
3463
|
+
"id": 250,
|
|
3369
3464
|
"name": "tokensChange",
|
|
3370
3465
|
"kind": 1024,
|
|
3371
3466
|
"kindString": "Property",
|
|
@@ -3390,7 +3485,7 @@
|
|
|
3390
3485
|
"sources": [
|
|
3391
3486
|
{
|
|
3392
3487
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3393
|
-
"line":
|
|
3488
|
+
"line": 184,
|
|
3394
3489
|
"character": 9
|
|
3395
3490
|
}
|
|
3396
3491
|
],
|
|
@@ -3401,7 +3496,7 @@
|
|
|
3401
3496
|
"type": "array",
|
|
3402
3497
|
"elementType": {
|
|
3403
3498
|
"type": "reference",
|
|
3404
|
-
"id":
|
|
3499
|
+
"id": 379,
|
|
3405
3500
|
"name": "SkyToken"
|
|
3406
3501
|
}
|
|
3407
3502
|
}
|
|
@@ -3413,7 +3508,7 @@
|
|
|
3413
3508
|
"defaultValue": "..."
|
|
3414
3509
|
},
|
|
3415
3510
|
{
|
|
3416
|
-
"id":
|
|
3511
|
+
"id": 255,
|
|
3417
3512
|
"name": "trackTokenFn",
|
|
3418
3513
|
"kind": 1024,
|
|
3419
3514
|
"kindString": "Property",
|
|
@@ -3423,64 +3518,26 @@
|
|
|
3423
3518
|
"sources": [
|
|
3424
3519
|
{
|
|
3425
3520
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3426
|
-
"line":
|
|
3521
|
+
"line": 204,
|
|
3427
3522
|
"character": 9
|
|
3428
3523
|
}
|
|
3429
3524
|
],
|
|
3430
3525
|
"type": {
|
|
3431
|
-
"type": "
|
|
3432
|
-
"
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
"kind": 4096,
|
|
3443
|
-
"kindString": "Call signature",
|
|
3444
|
-
"flags": {},
|
|
3445
|
-
"comment": {
|
|
3446
|
-
"shortText": "internal"
|
|
3447
|
-
},
|
|
3448
|
-
"parameters": [
|
|
3449
|
-
{
|
|
3450
|
-
"id": 260,
|
|
3451
|
-
"name": "index",
|
|
3452
|
-
"kind": 32768,
|
|
3453
|
-
"kindString": "Parameter",
|
|
3454
|
-
"flags": {},
|
|
3455
|
-
"type": {
|
|
3456
|
-
"type": "intrinsic",
|
|
3457
|
-
"name": "number"
|
|
3458
|
-
}
|
|
3459
|
-
},
|
|
3460
|
-
{
|
|
3461
|
-
"id": 261,
|
|
3462
|
-
"name": "item",
|
|
3463
|
-
"kind": 32768,
|
|
3464
|
-
"kindString": "Parameter",
|
|
3465
|
-
"flags": {},
|
|
3466
|
-
"type": {
|
|
3467
|
-
"type": "reference",
|
|
3468
|
-
"id": 370,
|
|
3469
|
-
"name": "SkyToken"
|
|
3470
|
-
}
|
|
3471
|
-
}
|
|
3472
|
-
],
|
|
3473
|
-
"type": {
|
|
3474
|
-
"type": "intrinsic",
|
|
3475
|
-
"name": "any"
|
|
3476
|
-
}
|
|
3477
|
-
}
|
|
3478
|
-
]
|
|
3479
|
-
}
|
|
3526
|
+
"type": "reference",
|
|
3527
|
+
"typeArguments": [
|
|
3528
|
+
{
|
|
3529
|
+
"type": "reference",
|
|
3530
|
+
"id": 379,
|
|
3531
|
+
"name": "SkyToken"
|
|
3532
|
+
}
|
|
3533
|
+
],
|
|
3534
|
+
"qualifiedName": "TrackByFunction",
|
|
3535
|
+
"package": "@angular/core",
|
|
3536
|
+
"name": "TrackByFunction"
|
|
3480
3537
|
}
|
|
3481
3538
|
},
|
|
3482
3539
|
{
|
|
3483
|
-
"id":
|
|
3540
|
+
"id": 234,
|
|
3484
3541
|
"name": "trackWith",
|
|
3485
3542
|
"kind": 1024,
|
|
3486
3543
|
"kindString": "Property",
|
|
@@ -3505,7 +3562,7 @@
|
|
|
3505
3562
|
"sources": [
|
|
3506
3563
|
{
|
|
3507
3564
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3508
|
-
"line":
|
|
3565
|
+
"line": 111,
|
|
3509
3566
|
"character": 9
|
|
3510
3567
|
}
|
|
3511
3568
|
],
|
|
@@ -3515,7 +3572,62 @@
|
|
|
3515
3572
|
}
|
|
3516
3573
|
},
|
|
3517
3574
|
{
|
|
3518
|
-
"id":
|
|
3575
|
+
"id": 251,
|
|
3576
|
+
"name": "activeIndex",
|
|
3577
|
+
"kind": 262144,
|
|
3578
|
+
"kindString": "Accessor",
|
|
3579
|
+
"flags": {
|
|
3580
|
+
"isPublic": true
|
|
3581
|
+
},
|
|
3582
|
+
"sources": [
|
|
3583
|
+
{
|
|
3584
|
+
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3585
|
+
"line": 186,
|
|
3586
|
+
"character": 13
|
|
3587
|
+
}
|
|
3588
|
+
],
|
|
3589
|
+
"getSignature": [
|
|
3590
|
+
{
|
|
3591
|
+
"id": 252,
|
|
3592
|
+
"name": "activeIndex",
|
|
3593
|
+
"kind": 524288,
|
|
3594
|
+
"kindString": "Get signature",
|
|
3595
|
+
"flags": {},
|
|
3596
|
+
"type": {
|
|
3597
|
+
"type": "intrinsic",
|
|
3598
|
+
"name": "number"
|
|
3599
|
+
}
|
|
3600
|
+
}
|
|
3601
|
+
],
|
|
3602
|
+
"setSignature": [
|
|
3603
|
+
{
|
|
3604
|
+
"id": 253,
|
|
3605
|
+
"name": "activeIndex",
|
|
3606
|
+
"kind": 1048576,
|
|
3607
|
+
"kindString": "Set signature",
|
|
3608
|
+
"flags": {},
|
|
3609
|
+
"parameters": [
|
|
3610
|
+
{
|
|
3611
|
+
"id": 254,
|
|
3612
|
+
"name": "value",
|
|
3613
|
+
"kind": 32768,
|
|
3614
|
+
"kindString": "Parameter",
|
|
3615
|
+
"flags": {},
|
|
3616
|
+
"type": {
|
|
3617
|
+
"type": "intrinsic",
|
|
3618
|
+
"name": "number"
|
|
3619
|
+
}
|
|
3620
|
+
}
|
|
3621
|
+
],
|
|
3622
|
+
"type": {
|
|
3623
|
+
"type": "intrinsic",
|
|
3624
|
+
"name": "void"
|
|
3625
|
+
}
|
|
3626
|
+
}
|
|
3627
|
+
]
|
|
3628
|
+
},
|
|
3629
|
+
{
|
|
3630
|
+
"id": 222,
|
|
3519
3631
|
"name": "disabled",
|
|
3520
3632
|
"kind": 262144,
|
|
3521
3633
|
"kindString": "Accessor",
|
|
@@ -3537,13 +3649,13 @@
|
|
|
3537
3649
|
"sources": [
|
|
3538
3650
|
{
|
|
3539
3651
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3540
|
-
"line":
|
|
3652
|
+
"line": 72,
|
|
3541
3653
|
"character": 13
|
|
3542
3654
|
}
|
|
3543
3655
|
],
|
|
3544
3656
|
"getSignature": [
|
|
3545
3657
|
{
|
|
3546
|
-
"id":
|
|
3658
|
+
"id": 223,
|
|
3547
3659
|
"name": "disabled",
|
|
3548
3660
|
"kind": 524288,
|
|
3549
3661
|
"kindString": "Get signature",
|
|
@@ -3565,7 +3677,7 @@
|
|
|
3565
3677
|
],
|
|
3566
3678
|
"setSignature": [
|
|
3567
3679
|
{
|
|
3568
|
-
"id":
|
|
3680
|
+
"id": 224,
|
|
3569
3681
|
"name": "disabled",
|
|
3570
3682
|
"kind": 1048576,
|
|
3571
3683
|
"kindString": "Set signature",
|
|
@@ -3581,7 +3693,7 @@
|
|
|
3581
3693
|
},
|
|
3582
3694
|
"parameters": [
|
|
3583
3695
|
{
|
|
3584
|
-
"id":
|
|
3696
|
+
"id": 225,
|
|
3585
3697
|
"name": "value",
|
|
3586
3698
|
"kind": 32768,
|
|
3587
3699
|
"kindString": "Parameter",
|
|
@@ -3600,7 +3712,7 @@
|
|
|
3600
3712
|
]
|
|
3601
3713
|
},
|
|
3602
3714
|
{
|
|
3603
|
-
"id":
|
|
3715
|
+
"id": 226,
|
|
3604
3716
|
"name": "dismissible",
|
|
3605
3717
|
"kind": 262144,
|
|
3606
3718
|
"kindString": "Accessor",
|
|
@@ -3622,19 +3734,19 @@
|
|
|
3622
3734
|
"sources": [
|
|
3623
3735
|
{
|
|
3624
3736
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3625
|
-
"line":
|
|
3737
|
+
"line": 85,
|
|
3626
3738
|
"character": 13
|
|
3627
3739
|
}
|
|
3628
3740
|
],
|
|
3629
3741
|
"getSignature": [
|
|
3630
3742
|
{
|
|
3631
|
-
"id":
|
|
3743
|
+
"id": 227,
|
|
3632
3744
|
"name": "dismissible",
|
|
3633
3745
|
"kind": 524288,
|
|
3634
3746
|
"kindString": "Get signature",
|
|
3635
3747
|
"flags": {},
|
|
3636
3748
|
"comment": {
|
|
3637
|
-
"shortText": "Indicates whether users can remove
|
|
3749
|
+
"shortText": "Indicates whether users can remove a token from the list by selecting a token's close button.",
|
|
3638
3750
|
"tags": [
|
|
3639
3751
|
{
|
|
3640
3752
|
"tag": "default",
|
|
@@ -3650,13 +3762,13 @@
|
|
|
3650
3762
|
],
|
|
3651
3763
|
"setSignature": [
|
|
3652
3764
|
{
|
|
3653
|
-
"id":
|
|
3765
|
+
"id": 228,
|
|
3654
3766
|
"name": "dismissible",
|
|
3655
3767
|
"kind": 1048576,
|
|
3656
3768
|
"kindString": "Set signature",
|
|
3657
3769
|
"flags": {},
|
|
3658
3770
|
"comment": {
|
|
3659
|
-
"shortText": "Indicates whether users can remove
|
|
3771
|
+
"shortText": "Indicates whether users can remove a token from the list by selecting a token's close button.",
|
|
3660
3772
|
"tags": [
|
|
3661
3773
|
{
|
|
3662
3774
|
"tag": "default",
|
|
@@ -3666,7 +3778,7 @@
|
|
|
3666
3778
|
},
|
|
3667
3779
|
"parameters": [
|
|
3668
3780
|
{
|
|
3669
|
-
"id":
|
|
3781
|
+
"id": 229,
|
|
3670
3782
|
"name": "value",
|
|
3671
3783
|
"kind": 32768,
|
|
3672
3784
|
"kindString": "Parameter",
|
|
@@ -3685,7 +3797,7 @@
|
|
|
3685
3797
|
]
|
|
3686
3798
|
},
|
|
3687
3799
|
{
|
|
3688
|
-
"id":
|
|
3800
|
+
"id": 230,
|
|
3689
3801
|
"name": "displayWith",
|
|
3690
3802
|
"kind": 262144,
|
|
3691
3803
|
"kindString": "Accessor",
|
|
@@ -3707,13 +3819,13 @@
|
|
|
3707
3819
|
"sources": [
|
|
3708
3820
|
{
|
|
3709
3821
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3710
|
-
"line":
|
|
3822
|
+
"line": 98,
|
|
3711
3823
|
"character": 13
|
|
3712
3824
|
}
|
|
3713
3825
|
],
|
|
3714
3826
|
"getSignature": [
|
|
3715
3827
|
{
|
|
3716
|
-
"id":
|
|
3828
|
+
"id": 231,
|
|
3717
3829
|
"name": "displayWith",
|
|
3718
3830
|
"kind": 524288,
|
|
3719
3831
|
"kindString": "Get signature",
|
|
@@ -3735,7 +3847,7 @@
|
|
|
3735
3847
|
],
|
|
3736
3848
|
"setSignature": [
|
|
3737
3849
|
{
|
|
3738
|
-
"id":
|
|
3850
|
+
"id": 232,
|
|
3739
3851
|
"name": "displayWith",
|
|
3740
3852
|
"kind": 1048576,
|
|
3741
3853
|
"kindString": "Set signature",
|
|
@@ -3751,7 +3863,7 @@
|
|
|
3751
3863
|
},
|
|
3752
3864
|
"parameters": [
|
|
3753
3865
|
{
|
|
3754
|
-
"id":
|
|
3866
|
+
"id": 233,
|
|
3755
3867
|
"name": "value",
|
|
3756
3868
|
"kind": 32768,
|
|
3757
3869
|
"kindString": "Parameter",
|
|
@@ -3770,7 +3882,7 @@
|
|
|
3770
3882
|
]
|
|
3771
3883
|
},
|
|
3772
3884
|
{
|
|
3773
|
-
"id":
|
|
3885
|
+
"id": 235,
|
|
3774
3886
|
"name": "focusable",
|
|
3775
3887
|
"kind": 262144,
|
|
3776
3888
|
"kindString": "Accessor",
|
|
@@ -3792,13 +3904,13 @@
|
|
|
3792
3904
|
"sources": [
|
|
3793
3905
|
{
|
|
3794
3906
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3795
|
-
"line":
|
|
3907
|
+
"line": 120,
|
|
3796
3908
|
"character": 13
|
|
3797
3909
|
}
|
|
3798
3910
|
],
|
|
3799
3911
|
"getSignature": [
|
|
3800
3912
|
{
|
|
3801
|
-
"id":
|
|
3913
|
+
"id": 236,
|
|
3802
3914
|
"name": "focusable",
|
|
3803
3915
|
"kind": 524288,
|
|
3804
3916
|
"kindString": "Get signature",
|
|
@@ -3820,7 +3932,7 @@
|
|
|
3820
3932
|
],
|
|
3821
3933
|
"setSignature": [
|
|
3822
3934
|
{
|
|
3823
|
-
"id":
|
|
3935
|
+
"id": 237,
|
|
3824
3936
|
"name": "focusable",
|
|
3825
3937
|
"kind": 1048576,
|
|
3826
3938
|
"kindString": "Set signature",
|
|
@@ -3836,7 +3948,7 @@
|
|
|
3836
3948
|
},
|
|
3837
3949
|
"parameters": [
|
|
3838
3950
|
{
|
|
3839
|
-
"id":
|
|
3951
|
+
"id": 238,
|
|
3840
3952
|
"name": "value",
|
|
3841
3953
|
"kind": 32768,
|
|
3842
3954
|
"kindString": "Parameter",
|
|
@@ -3855,7 +3967,7 @@
|
|
|
3855
3967
|
]
|
|
3856
3968
|
},
|
|
3857
3969
|
{
|
|
3858
|
-
"id":
|
|
3970
|
+
"id": 243,
|
|
3859
3971
|
"name": "messageStream",
|
|
3860
3972
|
"kind": 262144,
|
|
3861
3973
|
"kindString": "Accessor",
|
|
@@ -3877,13 +3989,13 @@
|
|
|
3877
3989
|
"sources": [
|
|
3878
3990
|
{
|
|
3879
3991
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3880
|
-
"line":
|
|
3992
|
+
"line": 150,
|
|
3881
3993
|
"character": 13
|
|
3882
3994
|
}
|
|
3883
3995
|
],
|
|
3884
3996
|
"getSignature": [
|
|
3885
3997
|
{
|
|
3886
|
-
"id":
|
|
3998
|
+
"id": 244,
|
|
3887
3999
|
"name": "messageStream",
|
|
3888
4000
|
"kind": 524288,
|
|
3889
4001
|
"kindString": "Get signature",
|
|
@@ -3896,7 +4008,7 @@
|
|
|
3896
4008
|
"typeArguments": [
|
|
3897
4009
|
{
|
|
3898
4010
|
"type": "reference",
|
|
3899
|
-
"id":
|
|
4011
|
+
"id": 383,
|
|
3900
4012
|
"name": "SkyTokensMessage"
|
|
3901
4013
|
}
|
|
3902
4014
|
],
|
|
@@ -3908,7 +4020,7 @@
|
|
|
3908
4020
|
],
|
|
3909
4021
|
"setSignature": [
|
|
3910
4022
|
{
|
|
3911
|
-
"id":
|
|
4023
|
+
"id": 245,
|
|
3912
4024
|
"name": "messageStream",
|
|
3913
4025
|
"kind": 1048576,
|
|
3914
4026
|
"kindString": "Set signature",
|
|
@@ -3918,7 +4030,7 @@
|
|
|
3918
4030
|
},
|
|
3919
4031
|
"parameters": [
|
|
3920
4032
|
{
|
|
3921
|
-
"id":
|
|
4033
|
+
"id": 246,
|
|
3922
4034
|
"name": "value",
|
|
3923
4035
|
"kind": 32768,
|
|
3924
4036
|
"kindString": "Parameter",
|
|
@@ -3928,7 +4040,7 @@
|
|
|
3928
4040
|
"typeArguments": [
|
|
3929
4041
|
{
|
|
3930
4042
|
"type": "reference",
|
|
3931
|
-
"id":
|
|
4043
|
+
"id": 383,
|
|
3932
4044
|
"name": "SkyTokensMessage"
|
|
3933
4045
|
}
|
|
3934
4046
|
],
|
|
@@ -3946,7 +4058,7 @@
|
|
|
3946
4058
|
]
|
|
3947
4059
|
},
|
|
3948
4060
|
{
|
|
3949
|
-
"id":
|
|
4061
|
+
"id": 239,
|
|
3950
4062
|
"name": "tokens",
|
|
3951
4063
|
"kind": 262144,
|
|
3952
4064
|
"kindString": "Accessor",
|
|
@@ -3968,13 +4080,13 @@
|
|
|
3968
4080
|
"sources": [
|
|
3969
4081
|
{
|
|
3970
4082
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
3971
|
-
"line":
|
|
4083
|
+
"line": 132,
|
|
3972
4084
|
"character": 13
|
|
3973
4085
|
}
|
|
3974
4086
|
],
|
|
3975
4087
|
"getSignature": [
|
|
3976
4088
|
{
|
|
3977
|
-
"id":
|
|
4089
|
+
"id": 240,
|
|
3978
4090
|
"name": "tokens",
|
|
3979
4091
|
"kind": 524288,
|
|
3980
4092
|
"kindString": "Get signature",
|
|
@@ -3986,7 +4098,7 @@
|
|
|
3986
4098
|
"type": "array",
|
|
3987
4099
|
"elementType": {
|
|
3988
4100
|
"type": "reference",
|
|
3989
|
-
"id":
|
|
4101
|
+
"id": 379,
|
|
3990
4102
|
"name": "SkyToken"
|
|
3991
4103
|
}
|
|
3992
4104
|
}
|
|
@@ -3994,7 +4106,7 @@
|
|
|
3994
4106
|
],
|
|
3995
4107
|
"setSignature": [
|
|
3996
4108
|
{
|
|
3997
|
-
"id":
|
|
4109
|
+
"id": 241,
|
|
3998
4110
|
"name": "tokens",
|
|
3999
4111
|
"kind": 1048576,
|
|
4000
4112
|
"kindString": "Set signature",
|
|
@@ -4004,7 +4116,7 @@
|
|
|
4004
4116
|
},
|
|
4005
4117
|
"parameters": [
|
|
4006
4118
|
{
|
|
4007
|
-
"id":
|
|
4119
|
+
"id": 242,
|
|
4008
4120
|
"name": "value",
|
|
4009
4121
|
"kind": 32768,
|
|
4010
4122
|
"kindString": "Parameter",
|
|
@@ -4013,7 +4125,7 @@
|
|
|
4013
4125
|
"type": "array",
|
|
4014
4126
|
"elementType": {
|
|
4015
4127
|
"type": "reference",
|
|
4016
|
-
"id":
|
|
4128
|
+
"id": 379,
|
|
4017
4129
|
"name": "SkyToken"
|
|
4018
4130
|
}
|
|
4019
4131
|
}
|
|
@@ -4027,7 +4139,7 @@
|
|
|
4027
4139
|
]
|
|
4028
4140
|
},
|
|
4029
4141
|
{
|
|
4030
|
-
"id":
|
|
4142
|
+
"id": 267,
|
|
4031
4143
|
"name": "ngOnDestroy",
|
|
4032
4144
|
"kind": 2048,
|
|
4033
4145
|
"kindString": "Method",
|
|
@@ -4037,13 +4149,13 @@
|
|
|
4037
4149
|
"sources": [
|
|
4038
4150
|
{
|
|
4039
4151
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
4040
|
-
"line":
|
|
4152
|
+
"line": 237,
|
|
4041
4153
|
"character": 9
|
|
4042
4154
|
}
|
|
4043
4155
|
],
|
|
4044
4156
|
"signatures": [
|
|
4045
4157
|
{
|
|
4046
|
-
"id":
|
|
4158
|
+
"id": 268,
|
|
4047
4159
|
"name": "ngOnDestroy",
|
|
4048
4160
|
"kind": 4096,
|
|
4049
4161
|
"kindString": "Call signature",
|
|
@@ -4064,7 +4176,7 @@
|
|
|
4064
4176
|
}
|
|
4065
4177
|
},
|
|
4066
4178
|
{
|
|
4067
|
-
"id":
|
|
4179
|
+
"id": 269,
|
|
4068
4180
|
"name": "onTokenClick",
|
|
4069
4181
|
"kind": 2048,
|
|
4070
4182
|
"kindString": "Method",
|
|
@@ -4074,27 +4186,27 @@
|
|
|
4074
4186
|
"sources": [
|
|
4075
4187
|
{
|
|
4076
4188
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
4077
|
-
"line":
|
|
4189
|
+
"line": 242,
|
|
4078
4190
|
"character": 9
|
|
4079
4191
|
}
|
|
4080
4192
|
],
|
|
4081
4193
|
"signatures": [
|
|
4082
4194
|
{
|
|
4083
|
-
"id":
|
|
4195
|
+
"id": 270,
|
|
4084
4196
|
"name": "onTokenClick",
|
|
4085
4197
|
"kind": 4096,
|
|
4086
4198
|
"kindString": "Call signature",
|
|
4087
4199
|
"flags": {},
|
|
4088
4200
|
"parameters": [
|
|
4089
4201
|
{
|
|
4090
|
-
"id":
|
|
4202
|
+
"id": 271,
|
|
4091
4203
|
"name": "token",
|
|
4092
4204
|
"kind": 32768,
|
|
4093
4205
|
"kindString": "Parameter",
|
|
4094
4206
|
"flags": {},
|
|
4095
4207
|
"type": {
|
|
4096
4208
|
"type": "reference",
|
|
4097
|
-
"id":
|
|
4209
|
+
"id": 379,
|
|
4098
4210
|
"name": "SkyToken"
|
|
4099
4211
|
}
|
|
4100
4212
|
}
|
|
@@ -4107,7 +4219,7 @@
|
|
|
4107
4219
|
]
|
|
4108
4220
|
},
|
|
4109
4221
|
{
|
|
4110
|
-
"id":
|
|
4222
|
+
"id": 272,
|
|
4111
4223
|
"name": "onTokenKeyDown",
|
|
4112
4224
|
"kind": 2048,
|
|
4113
4225
|
"kindString": "Method",
|
|
@@ -4117,20 +4229,20 @@
|
|
|
4117
4229
|
"sources": [
|
|
4118
4230
|
{
|
|
4119
4231
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
4120
|
-
"line":
|
|
4232
|
+
"line": 250,
|
|
4121
4233
|
"character": 9
|
|
4122
4234
|
}
|
|
4123
4235
|
],
|
|
4124
4236
|
"signatures": [
|
|
4125
4237
|
{
|
|
4126
|
-
"id":
|
|
4238
|
+
"id": 273,
|
|
4127
4239
|
"name": "onTokenKeyDown",
|
|
4128
4240
|
"kind": 4096,
|
|
4129
4241
|
"kindString": "Call signature",
|
|
4130
4242
|
"flags": {},
|
|
4131
4243
|
"parameters": [
|
|
4132
4244
|
{
|
|
4133
|
-
"id":
|
|
4245
|
+
"id": 274,
|
|
4134
4246
|
"name": "event",
|
|
4135
4247
|
"kind": 32768,
|
|
4136
4248
|
"kindString": "Parameter",
|
|
@@ -4151,7 +4263,7 @@
|
|
|
4151
4263
|
]
|
|
4152
4264
|
},
|
|
4153
4265
|
{
|
|
4154
|
-
"id":
|
|
4266
|
+
"id": 278,
|
|
4155
4267
|
"name": "removeToken",
|
|
4156
4268
|
"kind": 2048,
|
|
4157
4269
|
"kindString": "Method",
|
|
@@ -4161,27 +4273,27 @@
|
|
|
4161
4273
|
"sources": [
|
|
4162
4274
|
{
|
|
4163
4275
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
4164
|
-
"line":
|
|
4276
|
+
"line": 278,
|
|
4165
4277
|
"character": 9
|
|
4166
4278
|
}
|
|
4167
4279
|
],
|
|
4168
4280
|
"signatures": [
|
|
4169
4281
|
{
|
|
4170
|
-
"id":
|
|
4282
|
+
"id": 279,
|
|
4171
4283
|
"name": "removeToken",
|
|
4172
4284
|
"kind": 4096,
|
|
4173
4285
|
"kindString": "Call signature",
|
|
4174
4286
|
"flags": {},
|
|
4175
4287
|
"parameters": [
|
|
4176
4288
|
{
|
|
4177
|
-
"id":
|
|
4289
|
+
"id": 280,
|
|
4178
4290
|
"name": "token",
|
|
4179
4291
|
"kind": 32768,
|
|
4180
4292
|
"kindString": "Parameter",
|
|
4181
4293
|
"flags": {},
|
|
4182
4294
|
"type": {
|
|
4183
4295
|
"type": "reference",
|
|
4184
|
-
"id":
|
|
4296
|
+
"id": 379,
|
|
4185
4297
|
"name": "SkyToken"
|
|
4186
4298
|
}
|
|
4187
4299
|
}
|
|
@@ -4194,7 +4306,7 @@
|
|
|
4194
4306
|
]
|
|
4195
4307
|
},
|
|
4196
4308
|
{
|
|
4197
|
-
"id":
|
|
4309
|
+
"id": 275,
|
|
4198
4310
|
"name": "selectToken",
|
|
4199
4311
|
"kind": 2048,
|
|
4200
4312
|
"kindString": "Method",
|
|
@@ -4204,27 +4316,27 @@
|
|
|
4204
4316
|
"sources": [
|
|
4205
4317
|
{
|
|
4206
4318
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
4207
|
-
"line":
|
|
4319
|
+
"line": 272,
|
|
4208
4320
|
"character": 9
|
|
4209
4321
|
}
|
|
4210
4322
|
],
|
|
4211
4323
|
"signatures": [
|
|
4212
4324
|
{
|
|
4213
|
-
"id":
|
|
4325
|
+
"id": 276,
|
|
4214
4326
|
"name": "selectToken",
|
|
4215
4327
|
"kind": 4096,
|
|
4216
4328
|
"kindString": "Call signature",
|
|
4217
4329
|
"flags": {},
|
|
4218
4330
|
"parameters": [
|
|
4219
4331
|
{
|
|
4220
|
-
"id":
|
|
4332
|
+
"id": 277,
|
|
4221
4333
|
"name": "token",
|
|
4222
4334
|
"kind": 32768,
|
|
4223
4335
|
"kindString": "Parameter",
|
|
4224
4336
|
"flags": {},
|
|
4225
4337
|
"type": {
|
|
4226
4338
|
"type": "reference",
|
|
4227
|
-
"id":
|
|
4339
|
+
"id": 379,
|
|
4228
4340
|
"name": "SkyToken"
|
|
4229
4341
|
}
|
|
4230
4342
|
}
|
|
@@ -4242,49 +4354,51 @@
|
|
|
4242
4354
|
"title": "Constructors",
|
|
4243
4355
|
"kind": 512,
|
|
4244
4356
|
"children": [
|
|
4245
|
-
|
|
4357
|
+
219
|
|
4246
4358
|
]
|
|
4247
4359
|
},
|
|
4248
4360
|
{
|
|
4249
4361
|
"title": "Properties",
|
|
4250
4362
|
"kind": 1024,
|
|
4251
4363
|
"children": [
|
|
4364
|
+
247,
|
|
4365
|
+
248,
|
|
4366
|
+
261,
|
|
4252
4367
|
249,
|
|
4253
4368
|
250,
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
257,
|
|
4257
|
-
236
|
|
4369
|
+
255,
|
|
4370
|
+
234
|
|
4258
4371
|
]
|
|
4259
4372
|
},
|
|
4260
4373
|
{
|
|
4261
4374
|
"title": "Accessors",
|
|
4262
4375
|
"kind": 262144,
|
|
4263
4376
|
"children": [
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
|
|
4377
|
+
251,
|
|
4378
|
+
222,
|
|
4379
|
+
226,
|
|
4380
|
+
230,
|
|
4381
|
+
235,
|
|
4382
|
+
243,
|
|
4383
|
+
239
|
|
4270
4384
|
]
|
|
4271
4385
|
},
|
|
4272
4386
|
{
|
|
4273
4387
|
"title": "Methods",
|
|
4274
4388
|
"kind": 2048,
|
|
4275
4389
|
"children": [
|
|
4390
|
+
267,
|
|
4391
|
+
269,
|
|
4276
4392
|
272,
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
283,
|
|
4280
|
-
280
|
|
4393
|
+
278,
|
|
4394
|
+
275
|
|
4281
4395
|
]
|
|
4282
4396
|
}
|
|
4283
4397
|
],
|
|
4284
4398
|
"sources": [
|
|
4285
4399
|
{
|
|
4286
4400
|
"fileName": "projects/indicators/src/modules/tokens/tokens.component.ts",
|
|
4287
|
-
"line":
|
|
4401
|
+
"line": 64,
|
|
4288
4402
|
"character": 13
|
|
4289
4403
|
}
|
|
4290
4404
|
],
|
|
@@ -4298,7 +4412,7 @@
|
|
|
4298
4412
|
]
|
|
4299
4413
|
},
|
|
4300
4414
|
{
|
|
4301
|
-
"id":
|
|
4415
|
+
"id": 296,
|
|
4302
4416
|
"name": "SkyWaitComponent",
|
|
4303
4417
|
"kind": 128,
|
|
4304
4418
|
"kindString": "Class",
|
|
@@ -4319,7 +4433,7 @@
|
|
|
4319
4433
|
],
|
|
4320
4434
|
"children": [
|
|
4321
4435
|
{
|
|
4322
|
-
"id":
|
|
4436
|
+
"id": 297,
|
|
4323
4437
|
"name": "constructor",
|
|
4324
4438
|
"kind": 512,
|
|
4325
4439
|
"kindString": "Constructor",
|
|
@@ -4327,20 +4441,20 @@
|
|
|
4327
4441
|
"sources": [
|
|
4328
4442
|
{
|
|
4329
4443
|
"fileName": "projects/indicators/src/modules/wait/wait.component.ts",
|
|
4330
|
-
"line":
|
|
4444
|
+
"line": 120,
|
|
4331
4445
|
"character": 2
|
|
4332
4446
|
}
|
|
4333
4447
|
],
|
|
4334
4448
|
"signatures": [
|
|
4335
4449
|
{
|
|
4336
|
-
"id":
|
|
4450
|
+
"id": 298,
|
|
4337
4451
|
"name": "SkyWaitComponent",
|
|
4338
4452
|
"kind": 16384,
|
|
4339
4453
|
"kindString": "Constructor signature",
|
|
4340
4454
|
"flags": {},
|
|
4341
4455
|
"parameters": [
|
|
4342
4456
|
{
|
|
4343
|
-
"id":
|
|
4457
|
+
"id": 299,
|
|
4344
4458
|
"name": "elRef",
|
|
4345
4459
|
"kind": 32768,
|
|
4346
4460
|
"kindString": "Parameter",
|
|
@@ -4359,7 +4473,7 @@
|
|
|
4359
4473
|
}
|
|
4360
4474
|
},
|
|
4361
4475
|
{
|
|
4362
|
-
"id":
|
|
4476
|
+
"id": 300,
|
|
4363
4477
|
"name": "adapterService",
|
|
4364
4478
|
"kind": 32768,
|
|
4365
4479
|
"kindString": "Parameter",
|
|
@@ -4370,8 +4484,8 @@
|
|
|
4370
4484
|
}
|
|
4371
4485
|
},
|
|
4372
4486
|
{
|
|
4373
|
-
"id":
|
|
4374
|
-
"name": "
|
|
4487
|
+
"id": 301,
|
|
4488
|
+
"name": "resourceSvc",
|
|
4375
4489
|
"kind": 32768,
|
|
4376
4490
|
"kindString": "Parameter",
|
|
4377
4491
|
"flags": {},
|
|
@@ -4395,47 +4509,12 @@
|
|
|
4395
4509
|
],
|
|
4396
4510
|
"type": {
|
|
4397
4511
|
"type": "reference",
|
|
4398
|
-
"id":
|
|
4512
|
+
"id": 296,
|
|
4399
4513
|
"name": "SkyWaitComponent"
|
|
4400
4514
|
}
|
|
4401
4515
|
}
|
|
4402
4516
|
]
|
|
4403
4517
|
},
|
|
4404
|
-
{
|
|
4405
|
-
"id": 307,
|
|
4406
|
-
"name": "ariaLabel",
|
|
4407
|
-
"kind": 1024,
|
|
4408
|
-
"kindString": "Property",
|
|
4409
|
-
"flags": {
|
|
4410
|
-
"isPublic": true
|
|
4411
|
-
},
|
|
4412
|
-
"comment": {
|
|
4413
|
-
"shortText": "Specifies an ARIA label for the wait icon while an element or page loads.\nThis sets the icon's `aria-label` attribute\n[to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).\nThe default value varies based on whether the wait is for an element or a page\nand whether it is a blocking wait. For example, the default for a page-blocking\nwait is \"Page loading. Please wait.\""
|
|
4414
|
-
},
|
|
4415
|
-
"decorators": [
|
|
4416
|
-
{
|
|
4417
|
-
"name": "Input",
|
|
4418
|
-
"type": {
|
|
4419
|
-
"type": "reference",
|
|
4420
|
-
"qualifiedName": "InputDecorator",
|
|
4421
|
-
"package": "@angular/core",
|
|
4422
|
-
"name": "Input"
|
|
4423
|
-
},
|
|
4424
|
-
"arguments": {}
|
|
4425
|
-
}
|
|
4426
|
-
],
|
|
4427
|
-
"sources": [
|
|
4428
|
-
{
|
|
4429
|
-
"fileName": "projects/indicators/src/modules/wait/wait.component.ts",
|
|
4430
|
-
"line": 26,
|
|
4431
|
-
"character": 9
|
|
4432
|
-
}
|
|
4433
|
-
],
|
|
4434
|
-
"type": {
|
|
4435
|
-
"type": "intrinsic",
|
|
4436
|
-
"name": "string"
|
|
4437
|
-
}
|
|
4438
|
-
},
|
|
4439
4518
|
{
|
|
4440
4519
|
"id": 317,
|
|
4441
4520
|
"name": "ariaLabelStream",
|
|
@@ -4447,7 +4526,7 @@
|
|
|
4447
4526
|
"sources": [
|
|
4448
4527
|
{
|
|
4449
4528
|
"fileName": "projects/indicators/src/modules/wait/wait.component.ts",
|
|
4450
|
-
"line":
|
|
4529
|
+
"line": 106,
|
|
4451
4530
|
"character": 9
|
|
4452
4531
|
}
|
|
4453
4532
|
],
|
|
@@ -4466,22 +4545,13 @@
|
|
|
4466
4545
|
"defaultValue": "..."
|
|
4467
4546
|
},
|
|
4468
4547
|
{
|
|
4469
|
-
"id":
|
|
4470
|
-
"name": "
|
|
4471
|
-
"kind":
|
|
4472
|
-
"kindString": "
|
|
4548
|
+
"id": 302,
|
|
4549
|
+
"name": "ariaLabel",
|
|
4550
|
+
"kind": 262144,
|
|
4551
|
+
"kindString": "Accessor",
|
|
4473
4552
|
"flags": {
|
|
4474
4553
|
"isPublic": true
|
|
4475
4554
|
},
|
|
4476
|
-
"comment": {
|
|
4477
|
-
"shortText": "When set to `true`, wait indication appears in the bottom left corner of the element\ninstead of hiding the entire parent element.",
|
|
4478
|
-
"tags": [
|
|
4479
|
-
{
|
|
4480
|
-
"tag": "default",
|
|
4481
|
-
"text": "false\n"
|
|
4482
|
-
}
|
|
4483
|
-
]
|
|
4484
|
-
},
|
|
4485
4555
|
"decorators": [
|
|
4486
4556
|
{
|
|
4487
4557
|
"name": "Input",
|
|
@@ -4497,17 +4567,42 @@
|
|
|
4497
4567
|
"sources": [
|
|
4498
4568
|
{
|
|
4499
4569
|
"fileName": "projects/indicators/src/modules/wait/wait.component.ts",
|
|
4500
|
-
"line":
|
|
4501
|
-
"character":
|
|
4570
|
+
"line": 34,
|
|
4571
|
+
"character": 13
|
|
4502
4572
|
}
|
|
4503
4573
|
],
|
|
4504
|
-
"
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4574
|
+
"setSignature": [
|
|
4575
|
+
{
|
|
4576
|
+
"id": 303,
|
|
4577
|
+
"name": "ariaLabel",
|
|
4578
|
+
"kind": 1048576,
|
|
4579
|
+
"kindString": "Set signature",
|
|
4580
|
+
"flags": {},
|
|
4581
|
+
"comment": {
|
|
4582
|
+
"shortText": "Specifies an ARIA label for the wait icon while an element or page loads.\nThis sets the icon's `aria-label` attribute\n[to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).\nThe default value varies based on whether the wait is for an element or a page\nand whether it is a blocking wait. For example, the default for a page-blocking\nwait is \"Page loading. Please wait.\""
|
|
4583
|
+
},
|
|
4584
|
+
"parameters": [
|
|
4585
|
+
{
|
|
4586
|
+
"id": 304,
|
|
4587
|
+
"name": "value",
|
|
4588
|
+
"kind": 32768,
|
|
4589
|
+
"kindString": "Parameter",
|
|
4590
|
+
"flags": {},
|
|
4591
|
+
"type": {
|
|
4592
|
+
"type": "intrinsic",
|
|
4593
|
+
"name": "string"
|
|
4594
|
+
}
|
|
4595
|
+
}
|
|
4596
|
+
],
|
|
4597
|
+
"type": {
|
|
4598
|
+
"type": "intrinsic",
|
|
4599
|
+
"name": "void"
|
|
4600
|
+
}
|
|
4601
|
+
}
|
|
4602
|
+
]
|
|
4508
4603
|
},
|
|
4509
4604
|
{
|
|
4510
|
-
"id":
|
|
4605
|
+
"id": 309,
|
|
4511
4606
|
"name": "isFullPage",
|
|
4512
4607
|
"kind": 262144,
|
|
4513
4608
|
"kindString": "Accessor",
|
|
@@ -4529,13 +4624,13 @@
|
|
|
4529
4624
|
"sources": [
|
|
4530
4625
|
{
|
|
4531
4626
|
"fileName": "projects/indicators/src/modules/wait/wait.component.ts",
|
|
4532
|
-
"line":
|
|
4627
|
+
"line": 75,
|
|
4533
4628
|
"character": 13
|
|
4534
4629
|
}
|
|
4535
4630
|
],
|
|
4536
4631
|
"getSignature": [
|
|
4537
4632
|
{
|
|
4538
|
-
"id":
|
|
4633
|
+
"id": 310,
|
|
4539
4634
|
"name": "isFullPage",
|
|
4540
4635
|
"kind": 524288,
|
|
4541
4636
|
"kindString": "Get signature",
|
|
@@ -4557,7 +4652,7 @@
|
|
|
4557
4652
|
],
|
|
4558
4653
|
"setSignature": [
|
|
4559
4654
|
{
|
|
4560
|
-
"id":
|
|
4655
|
+
"id": 311,
|
|
4561
4656
|
"name": "isFullPage",
|
|
4562
4657
|
"kind": 1048576,
|
|
4563
4658
|
"kindString": "Set signature",
|
|
@@ -4573,7 +4668,92 @@
|
|
|
4573
4668
|
},
|
|
4574
4669
|
"parameters": [
|
|
4575
4670
|
{
|
|
4576
|
-
"id":
|
|
4671
|
+
"id": 312,
|
|
4672
|
+
"name": "value",
|
|
4673
|
+
"kind": 32768,
|
|
4674
|
+
"kindString": "Parameter",
|
|
4675
|
+
"flags": {},
|
|
4676
|
+
"type": {
|
|
4677
|
+
"type": "intrinsic",
|
|
4678
|
+
"name": "boolean"
|
|
4679
|
+
}
|
|
4680
|
+
}
|
|
4681
|
+
],
|
|
4682
|
+
"type": {
|
|
4683
|
+
"type": "intrinsic",
|
|
4684
|
+
"name": "void"
|
|
4685
|
+
}
|
|
4686
|
+
}
|
|
4687
|
+
]
|
|
4688
|
+
},
|
|
4689
|
+
{
|
|
4690
|
+
"id": 313,
|
|
4691
|
+
"name": "isNonBlocking",
|
|
4692
|
+
"kind": 262144,
|
|
4693
|
+
"kindString": "Accessor",
|
|
4694
|
+
"flags": {
|
|
4695
|
+
"isPublic": true
|
|
4696
|
+
},
|
|
4697
|
+
"decorators": [
|
|
4698
|
+
{
|
|
4699
|
+
"name": "Input",
|
|
4700
|
+
"type": {
|
|
4701
|
+
"type": "reference",
|
|
4702
|
+
"qualifiedName": "InputDecorator",
|
|
4703
|
+
"package": "@angular/core",
|
|
4704
|
+
"name": "Input"
|
|
4705
|
+
},
|
|
4706
|
+
"arguments": {}
|
|
4707
|
+
}
|
|
4708
|
+
],
|
|
4709
|
+
"sources": [
|
|
4710
|
+
{
|
|
4711
|
+
"fileName": "projects/indicators/src/modules/wait/wait.component.ts",
|
|
4712
|
+
"line": 97,
|
|
4713
|
+
"character": 13
|
|
4714
|
+
}
|
|
4715
|
+
],
|
|
4716
|
+
"getSignature": [
|
|
4717
|
+
{
|
|
4718
|
+
"id": 314,
|
|
4719
|
+
"name": "isNonBlocking",
|
|
4720
|
+
"kind": 524288,
|
|
4721
|
+
"kindString": "Get signature",
|
|
4722
|
+
"flags": {},
|
|
4723
|
+
"comment": {
|
|
4724
|
+
"shortText": "When set to `true`, wait indication appears in the bottom left corner of the element\ninstead of hiding the entire parent element.",
|
|
4725
|
+
"tags": [
|
|
4726
|
+
{
|
|
4727
|
+
"tag": "default",
|
|
4728
|
+
"text": "false\n"
|
|
4729
|
+
}
|
|
4730
|
+
]
|
|
4731
|
+
},
|
|
4732
|
+
"type": {
|
|
4733
|
+
"type": "intrinsic",
|
|
4734
|
+
"name": "boolean"
|
|
4735
|
+
}
|
|
4736
|
+
}
|
|
4737
|
+
],
|
|
4738
|
+
"setSignature": [
|
|
4739
|
+
{
|
|
4740
|
+
"id": 315,
|
|
4741
|
+
"name": "isNonBlocking",
|
|
4742
|
+
"kind": 1048576,
|
|
4743
|
+
"kindString": "Set signature",
|
|
4744
|
+
"flags": {},
|
|
4745
|
+
"comment": {
|
|
4746
|
+
"shortText": "When set to `true`, wait indication appears in the bottom left corner of the element\ninstead of hiding the entire parent element.",
|
|
4747
|
+
"tags": [
|
|
4748
|
+
{
|
|
4749
|
+
"tag": "default",
|
|
4750
|
+
"text": "false\n"
|
|
4751
|
+
}
|
|
4752
|
+
]
|
|
4753
|
+
},
|
|
4754
|
+
"parameters": [
|
|
4755
|
+
{
|
|
4756
|
+
"id": 316,
|
|
4577
4757
|
"name": "value",
|
|
4578
4758
|
"kind": 32768,
|
|
4579
4759
|
"kindString": "Parameter",
|
|
@@ -4592,7 +4772,7 @@
|
|
|
4592
4772
|
]
|
|
4593
4773
|
},
|
|
4594
4774
|
{
|
|
4595
|
-
"id":
|
|
4775
|
+
"id": 305,
|
|
4596
4776
|
"name": "isWaiting",
|
|
4597
4777
|
"kind": 262144,
|
|
4598
4778
|
"kindString": "Accessor",
|
|
@@ -4614,13 +4794,13 @@
|
|
|
4614
4794
|
"sources": [
|
|
4615
4795
|
{
|
|
4616
4796
|
"fileName": "projects/indicators/src/modules/wait/wait.component.ts",
|
|
4617
|
-
"line":
|
|
4797
|
+
"line": 43,
|
|
4618
4798
|
"character": 13
|
|
4619
4799
|
}
|
|
4620
4800
|
],
|
|
4621
4801
|
"getSignature": [
|
|
4622
4802
|
{
|
|
4623
|
-
"id":
|
|
4803
|
+
"id": 306,
|
|
4624
4804
|
"name": "isWaiting",
|
|
4625
4805
|
"kind": 524288,
|
|
4626
4806
|
"kindString": "Get signature",
|
|
@@ -4636,7 +4816,7 @@
|
|
|
4636
4816
|
],
|
|
4637
4817
|
"setSignature": [
|
|
4638
4818
|
{
|
|
4639
|
-
"id":
|
|
4819
|
+
"id": 307,
|
|
4640
4820
|
"name": "isWaiting",
|
|
4641
4821
|
"kind": 1048576,
|
|
4642
4822
|
"kindString": "Set signature",
|
|
@@ -4646,7 +4826,7 @@
|
|
|
4646
4826
|
},
|
|
4647
4827
|
"parameters": [
|
|
4648
4828
|
{
|
|
4649
|
-
"id":
|
|
4829
|
+
"id": 308,
|
|
4650
4830
|
"name": "value",
|
|
4651
4831
|
"kind": 32768,
|
|
4652
4832
|
"kindString": "Parameter",
|
|
@@ -4665,7 +4845,44 @@
|
|
|
4665
4845
|
]
|
|
4666
4846
|
},
|
|
4667
4847
|
{
|
|
4668
|
-
"id":
|
|
4848
|
+
"id": 329,
|
|
4849
|
+
"name": "ngOnDestroy",
|
|
4850
|
+
"kind": 2048,
|
|
4851
|
+
"kindString": "Method",
|
|
4852
|
+
"flags": {
|
|
4853
|
+
"isPublic": true
|
|
4854
|
+
},
|
|
4855
|
+
"sources": [
|
|
4856
|
+
{
|
|
4857
|
+
"fileName": "projects/indicators/src/modules/wait/wait.component.ts",
|
|
4858
|
+
"line": 136,
|
|
4859
|
+
"character": 9
|
|
4860
|
+
}
|
|
4861
|
+
],
|
|
4862
|
+
"signatures": [
|
|
4863
|
+
{
|
|
4864
|
+
"id": 330,
|
|
4865
|
+
"name": "ngOnDestroy",
|
|
4866
|
+
"kind": 4096,
|
|
4867
|
+
"kindString": "Call signature",
|
|
4868
|
+
"flags": {},
|
|
4869
|
+
"type": {
|
|
4870
|
+
"type": "intrinsic",
|
|
4871
|
+
"name": "void"
|
|
4872
|
+
},
|
|
4873
|
+
"implementationOf": {
|
|
4874
|
+
"type": "reference",
|
|
4875
|
+
"name": "OnDestroy.ngOnDestroy"
|
|
4876
|
+
}
|
|
4877
|
+
}
|
|
4878
|
+
],
|
|
4879
|
+
"implementationOf": {
|
|
4880
|
+
"type": "reference",
|
|
4881
|
+
"name": "OnDestroy.ngOnDestroy"
|
|
4882
|
+
}
|
|
4883
|
+
},
|
|
4884
|
+
{
|
|
4885
|
+
"id": 327,
|
|
4669
4886
|
"name": "ngOnInit",
|
|
4670
4887
|
"kind": 2048,
|
|
4671
4888
|
"kindString": "Method",
|
|
@@ -4675,13 +4892,13 @@
|
|
|
4675
4892
|
"sources": [
|
|
4676
4893
|
{
|
|
4677
4894
|
"fileName": "projects/indicators/src/modules/wait/wait.component.ts",
|
|
4678
|
-
"line":
|
|
4895
|
+
"line": 132,
|
|
4679
4896
|
"character": 9
|
|
4680
4897
|
}
|
|
4681
4898
|
],
|
|
4682
4899
|
"signatures": [
|
|
4683
4900
|
{
|
|
4684
|
-
"id":
|
|
4901
|
+
"id": 328,
|
|
4685
4902
|
"name": "ngOnInit",
|
|
4686
4903
|
"kind": 4096,
|
|
4687
4904
|
"kindString": "Call signature",
|
|
@@ -4707,38 +4924,39 @@
|
|
|
4707
4924
|
"title": "Constructors",
|
|
4708
4925
|
"kind": 512,
|
|
4709
4926
|
"children": [
|
|
4710
|
-
|
|
4927
|
+
297
|
|
4711
4928
|
]
|
|
4712
4929
|
},
|
|
4713
4930
|
{
|
|
4714
4931
|
"title": "Properties",
|
|
4715
4932
|
"kind": 1024,
|
|
4716
4933
|
"children": [
|
|
4717
|
-
|
|
4718
|
-
317,
|
|
4719
|
-
316
|
|
4934
|
+
317
|
|
4720
4935
|
]
|
|
4721
4936
|
},
|
|
4722
4937
|
{
|
|
4723
4938
|
"title": "Accessors",
|
|
4724
4939
|
"kind": 262144,
|
|
4725
4940
|
"children": [
|
|
4726
|
-
|
|
4727
|
-
|
|
4941
|
+
302,
|
|
4942
|
+
309,
|
|
4943
|
+
313,
|
|
4944
|
+
305
|
|
4728
4945
|
]
|
|
4729
4946
|
},
|
|
4730
4947
|
{
|
|
4731
4948
|
"title": "Methods",
|
|
4732
4949
|
"kind": 2048,
|
|
4733
4950
|
"children": [
|
|
4734
|
-
|
|
4951
|
+
329,
|
|
4952
|
+
327
|
|
4735
4953
|
]
|
|
4736
4954
|
}
|
|
4737
4955
|
],
|
|
4738
4956
|
"sources": [
|
|
4739
4957
|
{
|
|
4740
4958
|
"fileName": "projects/indicators/src/modules/wait/wait.component.ts",
|
|
4741
|
-
"line":
|
|
4959
|
+
"line": 24,
|
|
4742
4960
|
"character": 13
|
|
4743
4961
|
}
|
|
4744
4962
|
],
|
|
@@ -4748,6 +4966,12 @@
|
|
|
4748
4966
|
"qualifiedName": "OnInit",
|
|
4749
4967
|
"package": "@angular/core",
|
|
4750
4968
|
"name": "OnInit"
|
|
4969
|
+
},
|
|
4970
|
+
{
|
|
4971
|
+
"type": "reference",
|
|
4972
|
+
"qualifiedName": "OnDestroy",
|
|
4973
|
+
"package": "@angular/core",
|
|
4974
|
+
"name": "OnDestroy"
|
|
4751
4975
|
}
|
|
4752
4976
|
]
|
|
4753
4977
|
},
|
|
@@ -5018,10 +5242,9 @@
|
|
|
5018
5242
|
],
|
|
5019
5243
|
"type": {
|
|
5020
5244
|
"type": "reference",
|
|
5021
|
-
"id":
|
|
5245
|
+
"id": 358,
|
|
5022
5246
|
"name": "SkyIconType"
|
|
5023
|
-
}
|
|
5024
|
-
"defaultValue": "'fa'"
|
|
5247
|
+
}
|
|
5025
5248
|
},
|
|
5026
5249
|
{
|
|
5027
5250
|
"id": 65,
|
|
@@ -5090,7 +5313,7 @@
|
|
|
5090
5313
|
],
|
|
5091
5314
|
"type": {
|
|
5092
5315
|
"type": "reference",
|
|
5093
|
-
"id":
|
|
5316
|
+
"id": 359,
|
|
5094
5317
|
"name": "SkyIconVariantType"
|
|
5095
5318
|
}
|
|
5096
5319
|
}
|
|
@@ -5270,7 +5493,7 @@
|
|
|
5270
5493
|
"sources": [
|
|
5271
5494
|
{
|
|
5272
5495
|
"fileName": "projects/indicators/src/modules/key-info/key-info.component.ts",
|
|
5273
|
-
"line":
|
|
5496
|
+
"line": 18,
|
|
5274
5497
|
"character": 9
|
|
5275
5498
|
}
|
|
5276
5499
|
],
|
|
@@ -5300,7 +5523,7 @@
|
|
|
5300
5523
|
"sources": [
|
|
5301
5524
|
{
|
|
5302
5525
|
"fileName": "projects/indicators/src/modules/key-info/key-info.component.ts",
|
|
5303
|
-
"line":
|
|
5526
|
+
"line": 10,
|
|
5304
5527
|
"character": 13
|
|
5305
5528
|
}
|
|
5306
5529
|
]
|
|
@@ -5457,7 +5680,7 @@
|
|
|
5457
5680
|
],
|
|
5458
5681
|
"type": {
|
|
5459
5682
|
"type": "reference",
|
|
5460
|
-
"id":
|
|
5683
|
+
"id": 364,
|
|
5461
5684
|
"name": "SkyLabelType"
|
|
5462
5685
|
},
|
|
5463
5686
|
"defaultValue": "LABEL_TYPE_DEFAULT"
|
|
@@ -5585,7 +5808,7 @@
|
|
|
5585
5808
|
"flags": {},
|
|
5586
5809
|
"type": {
|
|
5587
5810
|
"type": "reference",
|
|
5588
|
-
"id":
|
|
5811
|
+
"id": 368,
|
|
5589
5812
|
"name": "SkyIndicatorDescriptionType"
|
|
5590
5813
|
}
|
|
5591
5814
|
}
|
|
@@ -5649,7 +5872,7 @@
|
|
|
5649
5872
|
"flags": {},
|
|
5650
5873
|
"type": {
|
|
5651
5874
|
"type": "reference",
|
|
5652
|
-
"id":
|
|
5875
|
+
"id": 364,
|
|
5653
5876
|
"name": "SkyLabelType"
|
|
5654
5877
|
}
|
|
5655
5878
|
}
|
|
@@ -5796,25 +6019,25 @@
|
|
|
5796
6019
|
]
|
|
5797
6020
|
},
|
|
5798
6021
|
{
|
|
5799
|
-
"id":
|
|
6022
|
+
"id": 379,
|
|
5800
6023
|
"name": "SkyToken",
|
|
5801
6024
|
"kind": 256,
|
|
5802
6025
|
"kindString": "Interface",
|
|
5803
6026
|
"flags": {},
|
|
5804
6027
|
"children": [
|
|
5805
6028
|
{
|
|
5806
|
-
"id":
|
|
6029
|
+
"id": 380,
|
|
5807
6030
|
"name": "value",
|
|
5808
6031
|
"kind": 1024,
|
|
5809
6032
|
"kindString": "Property",
|
|
5810
6033
|
"flags": {},
|
|
5811
6034
|
"comment": {
|
|
5812
|
-
"shortText": "Specifies the token's
|
|
6035
|
+
"shortText": "Specifies the token's value. The `sky-tokens` component will use its `displayWith`\nproperty to determine which of the value's properties to use as the token's label."
|
|
5813
6036
|
},
|
|
5814
6037
|
"sources": [
|
|
5815
6038
|
{
|
|
5816
6039
|
"fileName": "projects/indicators/src/modules/tokens/types/token.ts",
|
|
5817
|
-
"line":
|
|
6040
|
+
"line": 7,
|
|
5818
6041
|
"character": 2
|
|
5819
6042
|
}
|
|
5820
6043
|
],
|
|
@@ -5829,7 +6052,7 @@
|
|
|
5829
6052
|
"title": "Properties",
|
|
5830
6053
|
"kind": 1024,
|
|
5831
6054
|
"children": [
|
|
5832
|
-
|
|
6055
|
+
380
|
|
5833
6056
|
]
|
|
5834
6057
|
}
|
|
5835
6058
|
],
|
|
@@ -5842,14 +6065,14 @@
|
|
|
5842
6065
|
]
|
|
5843
6066
|
},
|
|
5844
6067
|
{
|
|
5845
|
-
"id":
|
|
6068
|
+
"id": 381,
|
|
5846
6069
|
"name": "SkyTokenSelectedEventArgs",
|
|
5847
6070
|
"kind": 256,
|
|
5848
6071
|
"kindString": "Interface",
|
|
5849
6072
|
"flags": {},
|
|
5850
6073
|
"children": [
|
|
5851
6074
|
{
|
|
5852
|
-
"id":
|
|
6075
|
+
"id": 382,
|
|
5853
6076
|
"name": "token",
|
|
5854
6077
|
"kind": 1024,
|
|
5855
6078
|
"kindString": "Property",
|
|
@@ -5868,7 +6091,7 @@
|
|
|
5868
6091
|
],
|
|
5869
6092
|
"type": {
|
|
5870
6093
|
"type": "reference",
|
|
5871
|
-
"id":
|
|
6094
|
+
"id": 379,
|
|
5872
6095
|
"name": "SkyToken"
|
|
5873
6096
|
}
|
|
5874
6097
|
}
|
|
@@ -5878,7 +6101,7 @@
|
|
|
5878
6101
|
"title": "Properties",
|
|
5879
6102
|
"kind": 1024,
|
|
5880
6103
|
"children": [
|
|
5881
|
-
|
|
6104
|
+
382
|
|
5882
6105
|
]
|
|
5883
6106
|
}
|
|
5884
6107
|
],
|
|
@@ -5891,14 +6114,14 @@
|
|
|
5891
6114
|
]
|
|
5892
6115
|
},
|
|
5893
6116
|
{
|
|
5894
|
-
"id":
|
|
6117
|
+
"id": 383,
|
|
5895
6118
|
"name": "SkyTokensMessage",
|
|
5896
6119
|
"kind": 256,
|
|
5897
6120
|
"kindString": "Interface",
|
|
5898
6121
|
"flags": {},
|
|
5899
6122
|
"children": [
|
|
5900
6123
|
{
|
|
5901
|
-
"id":
|
|
6124
|
+
"id": 384,
|
|
5902
6125
|
"name": "type",
|
|
5903
6126
|
"kind": 1024,
|
|
5904
6127
|
"kindString": "Property",
|
|
@@ -5917,7 +6140,7 @@
|
|
|
5917
6140
|
],
|
|
5918
6141
|
"type": {
|
|
5919
6142
|
"type": "reference",
|
|
5920
|
-
"id":
|
|
6143
|
+
"id": 385,
|
|
5921
6144
|
"name": "SkyTokensMessageType"
|
|
5922
6145
|
}
|
|
5923
6146
|
}
|
|
@@ -5927,7 +6150,7 @@
|
|
|
5927
6150
|
"title": "Properties",
|
|
5928
6151
|
"kind": 1024,
|
|
5929
6152
|
"children": [
|
|
5930
|
-
|
|
6153
|
+
384
|
|
5931
6154
|
]
|
|
5932
6155
|
}
|
|
5933
6156
|
],
|
|
@@ -5940,7 +6163,7 @@
|
|
|
5940
6163
|
]
|
|
5941
6164
|
},
|
|
5942
6165
|
{
|
|
5943
|
-
"id":
|
|
6166
|
+
"id": 358,
|
|
5944
6167
|
"name": "SkyIconType",
|
|
5945
6168
|
"kind": 4194304,
|
|
5946
6169
|
"kindString": "Type alias",
|
|
@@ -5967,7 +6190,7 @@
|
|
|
5967
6190
|
}
|
|
5968
6191
|
},
|
|
5969
6192
|
{
|
|
5970
|
-
"id":
|
|
6193
|
+
"id": 359,
|
|
5971
6194
|
"name": "SkyIconVariantType",
|
|
5972
6195
|
"kind": 4194304,
|
|
5973
6196
|
"kindString": "Type alias",
|
|
@@ -5994,7 +6217,7 @@
|
|
|
5994
6217
|
}
|
|
5995
6218
|
},
|
|
5996
6219
|
{
|
|
5997
|
-
"id":
|
|
6220
|
+
"id": 368,
|
|
5998
6221
|
"name": "SkyIndicatorDescriptionType",
|
|
5999
6222
|
"kind": 4194304,
|
|
6000
6223
|
"kindString": "Type alias",
|
|
@@ -6057,7 +6280,7 @@
|
|
|
6057
6280
|
}
|
|
6058
6281
|
},
|
|
6059
6282
|
{
|
|
6060
|
-
"id":
|
|
6283
|
+
"id": 369,
|
|
6061
6284
|
"name": "SkyIndicatorIconType",
|
|
6062
6285
|
"kind": 4194304,
|
|
6063
6286
|
"kindString": "Type alias",
|
|
@@ -6092,7 +6315,34 @@
|
|
|
6092
6315
|
}
|
|
6093
6316
|
},
|
|
6094
6317
|
{
|
|
6095
|
-
"id":
|
|
6318
|
+
"id": 360,
|
|
6319
|
+
"name": "SkyKeyInfoLayoutType",
|
|
6320
|
+
"kind": 4194304,
|
|
6321
|
+
"kindString": "Type alias",
|
|
6322
|
+
"flags": {},
|
|
6323
|
+
"sources": [
|
|
6324
|
+
{
|
|
6325
|
+
"fileName": "projects/indicators/src/modules/key-info/key-info-layout-type.ts",
|
|
6326
|
+
"line": 1,
|
|
6327
|
+
"character": 12
|
|
6328
|
+
}
|
|
6329
|
+
],
|
|
6330
|
+
"type": {
|
|
6331
|
+
"type": "union",
|
|
6332
|
+
"types": [
|
|
6333
|
+
{
|
|
6334
|
+
"type": "literal",
|
|
6335
|
+
"value": "horizontal"
|
|
6336
|
+
},
|
|
6337
|
+
{
|
|
6338
|
+
"type": "literal",
|
|
6339
|
+
"value": "vertical"
|
|
6340
|
+
}
|
|
6341
|
+
]
|
|
6342
|
+
}
|
|
6343
|
+
},
|
|
6344
|
+
{
|
|
6345
|
+
"id": 364,
|
|
6096
6346
|
"name": "SkyLabelType",
|
|
6097
6347
|
"kind": 4194304,
|
|
6098
6348
|
"kindString": "Type alias",
|
|
@@ -6127,7 +6377,7 @@
|
|
|
6127
6377
|
}
|
|
6128
6378
|
},
|
|
6129
6379
|
{
|
|
6130
|
-
"id":
|
|
6380
|
+
"id": 437,
|
|
6131
6381
|
"name": "SkyAlertHarness",
|
|
6132
6382
|
"kind": 128,
|
|
6133
6383
|
"kindString": "Class",
|
|
@@ -6137,30 +6387,89 @@
|
|
|
6137
6387
|
},
|
|
6138
6388
|
"children": [
|
|
6139
6389
|
{
|
|
6140
|
-
"id":
|
|
6141
|
-
"name": "
|
|
6142
|
-
"kind":
|
|
6143
|
-
"kindString": "
|
|
6390
|
+
"id": 458,
|
|
6391
|
+
"name": "close",
|
|
6392
|
+
"kind": 2048,
|
|
6393
|
+
"kindString": "Method",
|
|
6144
6394
|
"flags": {
|
|
6145
|
-
"isPublic": true
|
|
6146
|
-
"isStatic": true
|
|
6395
|
+
"isPublic": true
|
|
6147
6396
|
},
|
|
6148
6397
|
"sources": [
|
|
6149
6398
|
{
|
|
6150
6399
|
"fileName": "projects/indicators/src/testing/alert/alert-harness.ts",
|
|
6151
|
-
"line":
|
|
6152
|
-
"character":
|
|
6153
|
-
}
|
|
6400
|
+
"line": 65,
|
|
6401
|
+
"character": 15
|
|
6402
|
+
}
|
|
6154
6403
|
],
|
|
6155
|
-
"
|
|
6156
|
-
|
|
6157
|
-
|
|
6404
|
+
"signatures": [
|
|
6405
|
+
{
|
|
6406
|
+
"id": 459,
|
|
6407
|
+
"name": "close",
|
|
6408
|
+
"kind": 4096,
|
|
6409
|
+
"kindString": "Call signature",
|
|
6410
|
+
"flags": {},
|
|
6411
|
+
"comment": {
|
|
6412
|
+
"shortText": "Closes the alert."
|
|
6413
|
+
},
|
|
6414
|
+
"type": {
|
|
6415
|
+
"type": "reference",
|
|
6416
|
+
"typeArguments": [
|
|
6417
|
+
{
|
|
6418
|
+
"type": "intrinsic",
|
|
6419
|
+
"name": "void"
|
|
6420
|
+
}
|
|
6421
|
+
],
|
|
6422
|
+
"qualifiedName": "Promise",
|
|
6423
|
+
"package": "typescript",
|
|
6424
|
+
"name": "Promise"
|
|
6425
|
+
}
|
|
6426
|
+
}
|
|
6427
|
+
]
|
|
6428
|
+
},
|
|
6429
|
+
{
|
|
6430
|
+
"id": 454,
|
|
6431
|
+
"name": "getAlertType",
|
|
6432
|
+
"kind": 2048,
|
|
6433
|
+
"kindString": "Method",
|
|
6434
|
+
"flags": {
|
|
6435
|
+
"isPublic": true
|
|
6158
6436
|
},
|
|
6159
|
-
"
|
|
6437
|
+
"sources": [
|
|
6438
|
+
{
|
|
6439
|
+
"fileName": "projects/indicators/src/testing/alert/alert-harness.ts",
|
|
6440
|
+
"line": 37,
|
|
6441
|
+
"character": 15
|
|
6442
|
+
}
|
|
6443
|
+
],
|
|
6444
|
+
"signatures": [
|
|
6445
|
+
{
|
|
6446
|
+
"id": 455,
|
|
6447
|
+
"name": "getAlertType",
|
|
6448
|
+
"kind": 4096,
|
|
6449
|
+
"kindString": "Call signature",
|
|
6450
|
+
"flags": {},
|
|
6451
|
+
"comment": {
|
|
6452
|
+
"shortText": "Gets the current alert type."
|
|
6453
|
+
},
|
|
6454
|
+
"type": {
|
|
6455
|
+
"type": "reference",
|
|
6456
|
+
"typeArguments": [
|
|
6457
|
+
{
|
|
6458
|
+
"type": "reference",
|
|
6459
|
+
"id": 369,
|
|
6460
|
+
"name": "SkyIndicatorIconType"
|
|
6461
|
+
}
|
|
6462
|
+
],
|
|
6463
|
+
"qualifiedName": "Promise",
|
|
6464
|
+
"package": "typescript",
|
|
6465
|
+
"name": "Promise"
|
|
6466
|
+
}
|
|
6467
|
+
}
|
|
6468
|
+
]
|
|
6160
6469
|
},
|
|
6161
6470
|
{
|
|
6162
|
-
"id":
|
|
6163
|
-
"name": "
|
|
6471
|
+
"id": 466,
|
|
6472
|
+
"name": "getCustomDescription",
|
|
6164
6473
|
"kind": 2048,
|
|
6165
6474
|
"kindString": "Method",
|
|
6166
6475
|
"flags": {
|
|
@@ -6169,26 +6478,26 @@
|
|
|
6169
6478
|
"sources": [
|
|
6170
6479
|
{
|
|
6171
6480
|
"fileName": "projects/indicators/src/testing/alert/alert-harness.ts",
|
|
6172
|
-
"line":
|
|
6481
|
+
"line": 129,
|
|
6173
6482
|
"character": 15
|
|
6174
6483
|
}
|
|
6175
6484
|
],
|
|
6176
6485
|
"signatures": [
|
|
6177
6486
|
{
|
|
6178
|
-
"id":
|
|
6179
|
-
"name": "
|
|
6487
|
+
"id": 467,
|
|
6488
|
+
"name": "getCustomDescription",
|
|
6180
6489
|
"kind": 4096,
|
|
6181
6490
|
"kindString": "Call signature",
|
|
6182
6491
|
"flags": {},
|
|
6183
6492
|
"comment": {
|
|
6184
|
-
"shortText": "
|
|
6493
|
+
"shortText": "Gets the custom text used for the screen reader description of the label component icon."
|
|
6185
6494
|
},
|
|
6186
6495
|
"type": {
|
|
6187
6496
|
"type": "reference",
|
|
6188
6497
|
"typeArguments": [
|
|
6189
6498
|
{
|
|
6190
6499
|
"type": "intrinsic",
|
|
6191
|
-
"name": "
|
|
6500
|
+
"name": "string"
|
|
6192
6501
|
}
|
|
6193
6502
|
],
|
|
6194
6503
|
"qualifiedName": "Promise",
|
|
@@ -6199,8 +6508,8 @@
|
|
|
6199
6508
|
]
|
|
6200
6509
|
},
|
|
6201
6510
|
{
|
|
6202
|
-
"id":
|
|
6203
|
-
"name": "
|
|
6511
|
+
"id": 464,
|
|
6512
|
+
"name": "getDescriptionType",
|
|
6204
6513
|
"kind": 2048,
|
|
6205
6514
|
"kindString": "Method",
|
|
6206
6515
|
"flags": {
|
|
@@ -6209,27 +6518,27 @@
|
|
|
6209
6518
|
"sources": [
|
|
6210
6519
|
{
|
|
6211
6520
|
"fileName": "projects/indicators/src/testing/alert/alert-harness.ts",
|
|
6212
|
-
"line":
|
|
6521
|
+
"line": 93,
|
|
6213
6522
|
"character": 15
|
|
6214
6523
|
}
|
|
6215
6524
|
],
|
|
6216
6525
|
"signatures": [
|
|
6217
6526
|
{
|
|
6218
|
-
"id":
|
|
6219
|
-
"name": "
|
|
6527
|
+
"id": 465,
|
|
6528
|
+
"name": "getDescriptionType",
|
|
6220
6529
|
"kind": 4096,
|
|
6221
6530
|
"kindString": "Call signature",
|
|
6222
6531
|
"flags": {},
|
|
6223
6532
|
"comment": {
|
|
6224
|
-
"shortText": "Gets the
|
|
6533
|
+
"shortText": "Gets the `descriptionType` of the label component."
|
|
6225
6534
|
},
|
|
6226
6535
|
"type": {
|
|
6227
6536
|
"type": "reference",
|
|
6228
6537
|
"typeArguments": [
|
|
6229
6538
|
{
|
|
6230
6539
|
"type": "reference",
|
|
6231
|
-
"id":
|
|
6232
|
-
"name": "
|
|
6540
|
+
"id": 368,
|
|
6541
|
+
"name": "SkyIndicatorDescriptionType"
|
|
6233
6542
|
}
|
|
6234
6543
|
],
|
|
6235
6544
|
"qualifiedName": "Promise",
|
|
@@ -6240,7 +6549,7 @@
|
|
|
6240
6549
|
]
|
|
6241
6550
|
},
|
|
6242
6551
|
{
|
|
6243
|
-
"id":
|
|
6552
|
+
"id": 456,
|
|
6244
6553
|
"name": "getText",
|
|
6245
6554
|
"kind": 2048,
|
|
6246
6555
|
"kindString": "Method",
|
|
@@ -6250,13 +6559,13 @@
|
|
|
6250
6559
|
"sources": [
|
|
6251
6560
|
{
|
|
6252
6561
|
"fileName": "projects/indicators/src/testing/alert/alert-harness.ts",
|
|
6253
|
-
"line":
|
|
6562
|
+
"line": 58,
|
|
6254
6563
|
"character": 15
|
|
6255
6564
|
}
|
|
6256
6565
|
],
|
|
6257
6566
|
"signatures": [
|
|
6258
6567
|
{
|
|
6259
|
-
"id":
|
|
6568
|
+
"id": 457,
|
|
6260
6569
|
"name": "getText",
|
|
6261
6570
|
"kind": 4096,
|
|
6262
6571
|
"kindString": "Call signature",
|
|
@@ -6280,7 +6589,7 @@
|
|
|
6280
6589
|
]
|
|
6281
6590
|
},
|
|
6282
6591
|
{
|
|
6283
|
-
"id":
|
|
6592
|
+
"id": 471,
|
|
6284
6593
|
"name": "host",
|
|
6285
6594
|
"kind": 2048,
|
|
6286
6595
|
"kindString": "Method",
|
|
@@ -6294,7 +6603,7 @@
|
|
|
6294
6603
|
],
|
|
6295
6604
|
"signatures": [
|
|
6296
6605
|
{
|
|
6297
|
-
"id":
|
|
6606
|
+
"id": 472,
|
|
6298
6607
|
"name": "host",
|
|
6299
6608
|
"kind": 4096,
|
|
6300
6609
|
"kindString": "Call signature",
|
|
@@ -6328,7 +6637,7 @@
|
|
|
6328
6637
|
}
|
|
6329
6638
|
},
|
|
6330
6639
|
{
|
|
6331
|
-
"id":
|
|
6640
|
+
"id": 462,
|
|
6332
6641
|
"name": "isCloseable",
|
|
6333
6642
|
"kind": 2048,
|
|
6334
6643
|
"kindString": "Method",
|
|
@@ -6338,13 +6647,13 @@
|
|
|
6338
6647
|
"sources": [
|
|
6339
6648
|
{
|
|
6340
6649
|
"fileName": "projects/indicators/src/testing/alert/alert-harness.ts",
|
|
6341
|
-
"line":
|
|
6650
|
+
"line": 85,
|
|
6342
6651
|
"character": 15
|
|
6343
6652
|
}
|
|
6344
6653
|
],
|
|
6345
6654
|
"signatures": [
|
|
6346
6655
|
{
|
|
6347
|
-
"id":
|
|
6656
|
+
"id": 463,
|
|
6348
6657
|
"name": "isCloseable",
|
|
6349
6658
|
"kind": 4096,
|
|
6350
6659
|
"kindString": "Call signature",
|
|
@@ -6368,7 +6677,7 @@
|
|
|
6368
6677
|
]
|
|
6369
6678
|
},
|
|
6370
6679
|
{
|
|
6371
|
-
"id":
|
|
6680
|
+
"id": 460,
|
|
6372
6681
|
"name": "isClosed",
|
|
6373
6682
|
"kind": 2048,
|
|
6374
6683
|
"kindString": "Method",
|
|
@@ -6378,13 +6687,13 @@
|
|
|
6378
6687
|
"sources": [
|
|
6379
6688
|
{
|
|
6380
6689
|
"fileName": "projects/indicators/src/testing/alert/alert-harness.ts",
|
|
6381
|
-
"line":
|
|
6690
|
+
"line": 76,
|
|
6382
6691
|
"character": 15
|
|
6383
6692
|
}
|
|
6384
6693
|
],
|
|
6385
6694
|
"signatures": [
|
|
6386
6695
|
{
|
|
6387
|
-
"id":
|
|
6696
|
+
"id": 461,
|
|
6388
6697
|
"name": "isClosed",
|
|
6389
6698
|
"kind": 4096,
|
|
6390
6699
|
"kindString": "Call signature",
|
|
@@ -6408,7 +6717,7 @@
|
|
|
6408
6717
|
]
|
|
6409
6718
|
},
|
|
6410
6719
|
{
|
|
6411
|
-
"id":
|
|
6720
|
+
"id": 439,
|
|
6412
6721
|
"name": "with",
|
|
6413
6722
|
"kind": 2048,
|
|
6414
6723
|
"kindString": "Method",
|
|
@@ -6419,13 +6728,13 @@
|
|
|
6419
6728
|
"sources": [
|
|
6420
6729
|
{
|
|
6421
6730
|
"fileName": "projects/indicators/src/testing/alert/alert-harness.ts",
|
|
6422
|
-
"line":
|
|
6731
|
+
"line": 28,
|
|
6423
6732
|
"character": 16
|
|
6424
6733
|
}
|
|
6425
6734
|
],
|
|
6426
6735
|
"signatures": [
|
|
6427
6736
|
{
|
|
6428
|
-
"id":
|
|
6737
|
+
"id": 440,
|
|
6429
6738
|
"name": "with",
|
|
6430
6739
|
"kind": 4096,
|
|
6431
6740
|
"kindString": "Call signature",
|
|
@@ -6435,14 +6744,14 @@
|
|
|
6435
6744
|
},
|
|
6436
6745
|
"parameters": [
|
|
6437
6746
|
{
|
|
6438
|
-
"id":
|
|
6747
|
+
"id": 441,
|
|
6439
6748
|
"name": "filters",
|
|
6440
6749
|
"kind": 32768,
|
|
6441
6750
|
"kindString": "Parameter",
|
|
6442
6751
|
"flags": {},
|
|
6443
6752
|
"type": {
|
|
6444
6753
|
"type": "reference",
|
|
6445
|
-
"id":
|
|
6754
|
+
"id": 491,
|
|
6446
6755
|
"name": "SkyAlertHarnessFilters"
|
|
6447
6756
|
}
|
|
6448
6757
|
}
|
|
@@ -6452,7 +6761,7 @@
|
|
|
6452
6761
|
"typeArguments": [
|
|
6453
6762
|
{
|
|
6454
6763
|
"type": "reference",
|
|
6455
|
-
"id":
|
|
6764
|
+
"id": 437,
|
|
6456
6765
|
"name": "SkyAlertHarness"
|
|
6457
6766
|
}
|
|
6458
6767
|
],
|
|
@@ -6469,34 +6778,29 @@
|
|
|
6469
6778
|
"title": "Constructors",
|
|
6470
6779
|
"kind": 512,
|
|
6471
6780
|
"children": [
|
|
6472
|
-
|
|
6473
|
-
]
|
|
6474
|
-
},
|
|
6475
|
-
{
|
|
6476
|
-
"title": "Properties",
|
|
6477
|
-
"kind": 1024,
|
|
6478
|
-
"children": [
|
|
6479
|
-
566
|
|
6781
|
+
447
|
|
6480
6782
|
]
|
|
6481
6783
|
},
|
|
6482
6784
|
{
|
|
6483
6785
|
"title": "Methods",
|
|
6484
6786
|
"kind": 2048,
|
|
6485
6787
|
"children": [
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
|
|
6788
|
+
458,
|
|
6789
|
+
454,
|
|
6790
|
+
466,
|
|
6791
|
+
464,
|
|
6792
|
+
456,
|
|
6793
|
+
471,
|
|
6794
|
+
462,
|
|
6795
|
+
460,
|
|
6796
|
+
439
|
|
6493
6797
|
]
|
|
6494
6798
|
}
|
|
6495
6799
|
],
|
|
6496
6800
|
"sources": [
|
|
6497
6801
|
{
|
|
6498
6802
|
"fileName": "projects/indicators/src/testing/alert/alert-harness.ts",
|
|
6499
|
-
"line":
|
|
6803
|
+
"line": 13,
|
|
6500
6804
|
"character": 13
|
|
6501
6805
|
}
|
|
6502
6806
|
],
|
|
@@ -6508,135 +6812,973 @@
|
|
|
6508
6812
|
]
|
|
6509
6813
|
},
|
|
6510
6814
|
{
|
|
6511
|
-
"id":
|
|
6512
|
-
"name": "
|
|
6513
|
-
"kind":
|
|
6514
|
-
"kindString": "
|
|
6815
|
+
"id": 495,
|
|
6816
|
+
"name": "SkyKeyInfoHarness",
|
|
6817
|
+
"kind": 128,
|
|
6818
|
+
"kindString": "Class",
|
|
6515
6819
|
"flags": {},
|
|
6516
6820
|
"comment": {
|
|
6517
|
-
"shortText": "
|
|
6821
|
+
"shortText": "Harness for interacting with a key info component in tests."
|
|
6518
6822
|
},
|
|
6519
6823
|
"children": [
|
|
6520
6824
|
{
|
|
6521
|
-
"id":
|
|
6522
|
-
"name": "
|
|
6523
|
-
"kind":
|
|
6524
|
-
"kindString": "
|
|
6825
|
+
"id": 513,
|
|
6826
|
+
"name": "getLabelText",
|
|
6827
|
+
"kind": 2048,
|
|
6828
|
+
"kindString": "Method",
|
|
6525
6829
|
"flags": {
|
|
6526
|
-
"
|
|
6527
|
-
},
|
|
6528
|
-
"comment": {
|
|
6529
|
-
"shortText": "Only find instances that are nested under an element with the given selector."
|
|
6830
|
+
"isPublic": true
|
|
6530
6831
|
},
|
|
6531
6832
|
"sources": [
|
|
6532
6833
|
{
|
|
6533
|
-
"fileName": "
|
|
6534
|
-
"line":
|
|
6535
|
-
"character":
|
|
6834
|
+
"fileName": "projects/indicators/src/testing/key-info/key-info-harness.ts",
|
|
6835
|
+
"line": 42,
|
|
6836
|
+
"character": 15
|
|
6536
6837
|
}
|
|
6537
6838
|
],
|
|
6538
|
-
"
|
|
6539
|
-
|
|
6540
|
-
|
|
6541
|
-
|
|
6542
|
-
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
|
|
6839
|
+
"signatures": [
|
|
6840
|
+
{
|
|
6841
|
+
"id": 514,
|
|
6842
|
+
"name": "getLabelText",
|
|
6843
|
+
"kind": 4096,
|
|
6844
|
+
"kindString": "Call signature",
|
|
6845
|
+
"flags": {},
|
|
6846
|
+
"comment": {
|
|
6847
|
+
"shortText": "Gets the current label text."
|
|
6848
|
+
},
|
|
6849
|
+
"type": {
|
|
6850
|
+
"type": "reference",
|
|
6851
|
+
"typeArguments": [
|
|
6852
|
+
{
|
|
6853
|
+
"type": "intrinsic",
|
|
6854
|
+
"name": "string"
|
|
6855
|
+
}
|
|
6856
|
+
],
|
|
6857
|
+
"qualifiedName": "Promise",
|
|
6858
|
+
"package": "typescript",
|
|
6859
|
+
"name": "Promise"
|
|
6860
|
+
}
|
|
6861
|
+
}
|
|
6862
|
+
]
|
|
6546
6863
|
},
|
|
6547
6864
|
{
|
|
6548
|
-
"id":
|
|
6549
|
-
"name": "
|
|
6550
|
-
"kind":
|
|
6551
|
-
"kindString": "
|
|
6865
|
+
"id": 515,
|
|
6866
|
+
"name": "getLayout",
|
|
6867
|
+
"kind": 2048,
|
|
6868
|
+
"kindString": "Method",
|
|
6552
6869
|
"flags": {
|
|
6553
|
-
"
|
|
6554
|
-
},
|
|
6555
|
-
"comment": {
|
|
6556
|
-
"shortText": "Only find instances whose `data-sky-id` attribute matches the given value."
|
|
6870
|
+
"isPublic": true
|
|
6557
6871
|
},
|
|
6558
6872
|
"sources": [
|
|
6559
6873
|
{
|
|
6560
|
-
"fileName": "
|
|
6561
|
-
"line":
|
|
6562
|
-
"character":
|
|
6874
|
+
"fileName": "projects/indicators/src/testing/key-info/key-info-harness.ts",
|
|
6875
|
+
"line": 49,
|
|
6876
|
+
"character": 15
|
|
6563
6877
|
}
|
|
6564
6878
|
],
|
|
6565
|
-
"
|
|
6566
|
-
|
|
6567
|
-
|
|
6568
|
-
|
|
6569
|
-
|
|
6570
|
-
|
|
6879
|
+
"signatures": [
|
|
6880
|
+
{
|
|
6881
|
+
"id": 516,
|
|
6882
|
+
"name": "getLayout",
|
|
6883
|
+
"kind": 4096,
|
|
6884
|
+
"kindString": "Call signature",
|
|
6885
|
+
"flags": {},
|
|
6886
|
+
"comment": {
|
|
6887
|
+
"shortText": "Gets the current layout type."
|
|
6571
6888
|
},
|
|
6572
|
-
{
|
|
6889
|
+
"type": {
|
|
6573
6890
|
"type": "reference",
|
|
6574
|
-
"
|
|
6891
|
+
"typeArguments": [
|
|
6892
|
+
{
|
|
6893
|
+
"type": "reference",
|
|
6894
|
+
"id": 360,
|
|
6895
|
+
"name": "SkyKeyInfoLayoutType"
|
|
6896
|
+
}
|
|
6897
|
+
],
|
|
6898
|
+
"qualifiedName": "Promise",
|
|
6575
6899
|
"package": "typescript",
|
|
6576
|
-
"name": "
|
|
6900
|
+
"name": "Promise"
|
|
6577
6901
|
}
|
|
6578
|
-
|
|
6579
|
-
|
|
6580
|
-
"inheritedFrom": {
|
|
6581
|
-
"type": "reference",
|
|
6582
|
-
"name": "SkyHarnessFilters.dataSkyId"
|
|
6583
|
-
}
|
|
6902
|
+
}
|
|
6903
|
+
]
|
|
6584
6904
|
},
|
|
6585
6905
|
{
|
|
6586
|
-
"id":
|
|
6587
|
-
"name": "
|
|
6588
|
-
"kind":
|
|
6589
|
-
"kindString": "
|
|
6906
|
+
"id": 511,
|
|
6907
|
+
"name": "getValueText",
|
|
6908
|
+
"kind": 2048,
|
|
6909
|
+
"kindString": "Method",
|
|
6590
6910
|
"flags": {
|
|
6591
|
-
"
|
|
6592
|
-
},
|
|
6593
|
-
"comment": {
|
|
6594
|
-
"shortText": "Only find instances whose host element matches the given selector."
|
|
6911
|
+
"isPublic": true
|
|
6595
6912
|
},
|
|
6596
6913
|
"sources": [
|
|
6597
6914
|
{
|
|
6598
|
-
"fileName": "
|
|
6599
|
-
"line":
|
|
6600
|
-
"character":
|
|
6915
|
+
"fileName": "projects/indicators/src/testing/key-info/key-info-harness.ts",
|
|
6916
|
+
"line": 35,
|
|
6917
|
+
"character": 15
|
|
6601
6918
|
}
|
|
6602
6919
|
],
|
|
6603
|
-
"
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
|
|
6618
|
-
|
|
6619
|
-
|
|
6620
|
-
|
|
6920
|
+
"signatures": [
|
|
6921
|
+
{
|
|
6922
|
+
"id": 512,
|
|
6923
|
+
"name": "getValueText",
|
|
6924
|
+
"kind": 4096,
|
|
6925
|
+
"kindString": "Call signature",
|
|
6926
|
+
"flags": {},
|
|
6927
|
+
"comment": {
|
|
6928
|
+
"shortText": "Gets the current value text."
|
|
6929
|
+
},
|
|
6930
|
+
"type": {
|
|
6931
|
+
"type": "reference",
|
|
6932
|
+
"typeArguments": [
|
|
6933
|
+
{
|
|
6934
|
+
"type": "intrinsic",
|
|
6935
|
+
"name": "string"
|
|
6936
|
+
}
|
|
6937
|
+
],
|
|
6938
|
+
"qualifiedName": "Promise",
|
|
6939
|
+
"package": "typescript",
|
|
6940
|
+
"name": "Promise"
|
|
6941
|
+
}
|
|
6942
|
+
}
|
|
6621
6943
|
]
|
|
6622
|
-
}
|
|
6623
|
-
],
|
|
6624
|
-
"sources": [
|
|
6625
|
-
{
|
|
6626
|
-
"fileName": "projects/indicators/src/testing/alert/alert-harness-filters.ts",
|
|
6627
|
-
"line": 7,
|
|
6628
|
-
"character": 17
|
|
6629
|
-
}
|
|
6630
|
-
],
|
|
6631
|
-
"extendedTypes": [
|
|
6944
|
+
},
|
|
6632
6945
|
{
|
|
6633
|
-
"
|
|
6634
|
-
"name": "
|
|
6635
|
-
|
|
6636
|
-
|
|
6637
|
-
|
|
6638
|
-
|
|
6639
|
-
|
|
6946
|
+
"id": 520,
|
|
6947
|
+
"name": "host",
|
|
6948
|
+
"kind": 2048,
|
|
6949
|
+
"kindString": "Method",
|
|
6950
|
+
"flags": {},
|
|
6951
|
+
"sources": [
|
|
6952
|
+
{
|
|
6953
|
+
"fileName": "node_modules/@angular/cdk/testing/component-harness.d.ts",
|
|
6954
|
+
"line": 221,
|
|
6955
|
+
"character": 4
|
|
6956
|
+
}
|
|
6957
|
+
],
|
|
6958
|
+
"signatures": [
|
|
6959
|
+
{
|
|
6960
|
+
"id": 521,
|
|
6961
|
+
"name": "host",
|
|
6962
|
+
"kind": 4096,
|
|
6963
|
+
"kindString": "Call signature",
|
|
6964
|
+
"flags": {},
|
|
6965
|
+
"comment": {
|
|
6966
|
+
"shortText": "Gets a `Promise` for the `TestElement` representing the host element of the component."
|
|
6967
|
+
},
|
|
6968
|
+
"type": {
|
|
6969
|
+
"type": "reference",
|
|
6970
|
+
"typeArguments": [
|
|
6971
|
+
{
|
|
6972
|
+
"type": "reference",
|
|
6973
|
+
"qualifiedName": "TestElement",
|
|
6974
|
+
"package": "@angular/cdk",
|
|
6975
|
+
"name": "TestElement"
|
|
6976
|
+
}
|
|
6977
|
+
],
|
|
6978
|
+
"qualifiedName": "Promise",
|
|
6979
|
+
"package": "typescript",
|
|
6980
|
+
"name": "Promise"
|
|
6981
|
+
},
|
|
6982
|
+
"inheritedFrom": {
|
|
6983
|
+
"type": "reference",
|
|
6984
|
+
"name": "SkyComponentHarness.host"
|
|
6985
|
+
}
|
|
6986
|
+
}
|
|
6987
|
+
],
|
|
6988
|
+
"inheritedFrom": {
|
|
6989
|
+
"type": "reference",
|
|
6990
|
+
"name": "SkyComponentHarness.host"
|
|
6991
|
+
}
|
|
6992
|
+
},
|
|
6993
|
+
{
|
|
6994
|
+
"id": 497,
|
|
6995
|
+
"name": "with",
|
|
6996
|
+
"kind": 2048,
|
|
6997
|
+
"kindString": "Method",
|
|
6998
|
+
"flags": {
|
|
6999
|
+
"isPublic": true,
|
|
7000
|
+
"isStatic": true
|
|
7001
|
+
},
|
|
7002
|
+
"sources": [
|
|
7003
|
+
{
|
|
7004
|
+
"fileName": "projects/indicators/src/testing/key-info/key-info-harness.ts",
|
|
7005
|
+
"line": 26,
|
|
7006
|
+
"character": 16
|
|
7007
|
+
}
|
|
7008
|
+
],
|
|
7009
|
+
"signatures": [
|
|
7010
|
+
{
|
|
7011
|
+
"id": 498,
|
|
7012
|
+
"name": "with",
|
|
7013
|
+
"kind": 4096,
|
|
7014
|
+
"kindString": "Call signature",
|
|
7015
|
+
"flags": {},
|
|
7016
|
+
"comment": {
|
|
7017
|
+
"shortText": "Gets a `HarnessPredicate` that can be used to search for a\n`SkyKeyInfoHarness` that meets certain criteria."
|
|
7018
|
+
},
|
|
7019
|
+
"parameters": [
|
|
7020
|
+
{
|
|
7021
|
+
"id": 499,
|
|
7022
|
+
"name": "filters",
|
|
7023
|
+
"kind": 32768,
|
|
7024
|
+
"kindString": "Parameter",
|
|
7025
|
+
"flags": {},
|
|
7026
|
+
"type": {
|
|
7027
|
+
"type": "reference",
|
|
7028
|
+
"id": 540,
|
|
7029
|
+
"name": "SkyKeyInfoHarnessFilters"
|
|
7030
|
+
}
|
|
7031
|
+
}
|
|
7032
|
+
],
|
|
7033
|
+
"type": {
|
|
7034
|
+
"type": "reference",
|
|
7035
|
+
"typeArguments": [
|
|
7036
|
+
{
|
|
7037
|
+
"type": "reference",
|
|
7038
|
+
"id": 495,
|
|
7039
|
+
"name": "SkyKeyInfoHarness"
|
|
7040
|
+
}
|
|
7041
|
+
],
|
|
7042
|
+
"qualifiedName": "HarnessPredicate",
|
|
7043
|
+
"package": "@angular/cdk",
|
|
7044
|
+
"name": "HarnessPredicate"
|
|
7045
|
+
}
|
|
7046
|
+
}
|
|
7047
|
+
]
|
|
7048
|
+
}
|
|
7049
|
+
],
|
|
7050
|
+
"groups": [
|
|
7051
|
+
{
|
|
7052
|
+
"title": "Constructors",
|
|
7053
|
+
"kind": 512,
|
|
7054
|
+
"children": [
|
|
7055
|
+
505
|
|
7056
|
+
]
|
|
7057
|
+
},
|
|
7058
|
+
{
|
|
7059
|
+
"title": "Methods",
|
|
7060
|
+
"kind": 2048,
|
|
7061
|
+
"children": [
|
|
7062
|
+
513,
|
|
7063
|
+
515,
|
|
7064
|
+
511,
|
|
7065
|
+
520,
|
|
7066
|
+
497
|
|
7067
|
+
]
|
|
7068
|
+
}
|
|
7069
|
+
],
|
|
7070
|
+
"sources": [
|
|
7071
|
+
{
|
|
7072
|
+
"fileName": "projects/indicators/src/testing/key-info/key-info-harness.ts",
|
|
7073
|
+
"line": 12,
|
|
7074
|
+
"character": 13
|
|
7075
|
+
}
|
|
7076
|
+
],
|
|
7077
|
+
"extendedTypes": [
|
|
7078
|
+
{
|
|
7079
|
+
"type": "reference",
|
|
7080
|
+
"name": "SkyComponentHarness"
|
|
7081
|
+
}
|
|
7082
|
+
]
|
|
7083
|
+
},
|
|
7084
|
+
{
|
|
7085
|
+
"id": 544,
|
|
7086
|
+
"name": "SkyLabelHarness",
|
|
7087
|
+
"kind": 128,
|
|
7088
|
+
"kindString": "Class",
|
|
7089
|
+
"flags": {},
|
|
7090
|
+
"comment": {
|
|
7091
|
+
"shortText": "Harness for interacting with a label component in tests."
|
|
7092
|
+
},
|
|
7093
|
+
"children": [
|
|
7094
|
+
{
|
|
7095
|
+
"id": 566,
|
|
7096
|
+
"name": "getCustomDescription",
|
|
7097
|
+
"kind": 2048,
|
|
7098
|
+
"kindString": "Method",
|
|
7099
|
+
"flags": {
|
|
7100
|
+
"isPublic": true
|
|
7101
|
+
},
|
|
7102
|
+
"sources": [
|
|
7103
|
+
{
|
|
7104
|
+
"fileName": "projects/indicators/src/testing/label/label-harness.ts",
|
|
7105
|
+
"line": 102,
|
|
7106
|
+
"character": 15
|
|
7107
|
+
}
|
|
7108
|
+
],
|
|
7109
|
+
"signatures": [
|
|
7110
|
+
{
|
|
7111
|
+
"id": 567,
|
|
7112
|
+
"name": "getCustomDescription",
|
|
7113
|
+
"kind": 4096,
|
|
7114
|
+
"kindString": "Call signature",
|
|
7115
|
+
"flags": {},
|
|
7116
|
+
"comment": {
|
|
7117
|
+
"shortText": "Gets the custom text used for the screen reader description of the label component icon."
|
|
7118
|
+
},
|
|
7119
|
+
"type": {
|
|
7120
|
+
"type": "reference",
|
|
7121
|
+
"typeArguments": [
|
|
7122
|
+
{
|
|
7123
|
+
"type": "intrinsic",
|
|
7124
|
+
"name": "string"
|
|
7125
|
+
}
|
|
7126
|
+
],
|
|
7127
|
+
"qualifiedName": "Promise",
|
|
7128
|
+
"package": "typescript",
|
|
7129
|
+
"name": "Promise"
|
|
7130
|
+
}
|
|
7131
|
+
}
|
|
7132
|
+
]
|
|
7133
|
+
},
|
|
7134
|
+
{
|
|
7135
|
+
"id": 564,
|
|
7136
|
+
"name": "getDescriptionType",
|
|
7137
|
+
"kind": 2048,
|
|
7138
|
+
"kindString": "Method",
|
|
7139
|
+
"flags": {
|
|
7140
|
+
"isPublic": true
|
|
7141
|
+
},
|
|
7142
|
+
"sources": [
|
|
7143
|
+
{
|
|
7144
|
+
"fileName": "projects/indicators/src/testing/label/label-harness.ts",
|
|
7145
|
+
"line": 66,
|
|
7146
|
+
"character": 15
|
|
7147
|
+
}
|
|
7148
|
+
],
|
|
7149
|
+
"signatures": [
|
|
7150
|
+
{
|
|
7151
|
+
"id": 565,
|
|
7152
|
+
"name": "getDescriptionType",
|
|
7153
|
+
"kind": 4096,
|
|
7154
|
+
"kindString": "Call signature",
|
|
7155
|
+
"flags": {},
|
|
7156
|
+
"comment": {
|
|
7157
|
+
"shortText": "Gets the `descriptionType` of the label component."
|
|
7158
|
+
},
|
|
7159
|
+
"type": {
|
|
7160
|
+
"type": "reference",
|
|
7161
|
+
"typeArguments": [
|
|
7162
|
+
{
|
|
7163
|
+
"type": "reference",
|
|
7164
|
+
"id": 368,
|
|
7165
|
+
"name": "SkyIndicatorDescriptionType"
|
|
7166
|
+
}
|
|
7167
|
+
],
|
|
7168
|
+
"qualifiedName": "Promise",
|
|
7169
|
+
"package": "typescript",
|
|
7170
|
+
"name": "Promise"
|
|
7171
|
+
}
|
|
7172
|
+
}
|
|
7173
|
+
]
|
|
7174
|
+
},
|
|
7175
|
+
{
|
|
7176
|
+
"id": 560,
|
|
7177
|
+
"name": "getLabelText",
|
|
7178
|
+
"kind": 2048,
|
|
7179
|
+
"kindString": "Method",
|
|
7180
|
+
"flags": {
|
|
7181
|
+
"isPublic": true
|
|
7182
|
+
},
|
|
7183
|
+
"sources": [
|
|
7184
|
+
{
|
|
7185
|
+
"fileName": "projects/indicators/src/testing/label/label-harness.ts",
|
|
7186
|
+
"line": 36,
|
|
7187
|
+
"character": 15
|
|
7188
|
+
}
|
|
7189
|
+
],
|
|
7190
|
+
"signatures": [
|
|
7191
|
+
{
|
|
7192
|
+
"id": 561,
|
|
7193
|
+
"name": "getLabelText",
|
|
7194
|
+
"kind": 4096,
|
|
7195
|
+
"kindString": "Call signature",
|
|
7196
|
+
"flags": {},
|
|
7197
|
+
"comment": {
|
|
7198
|
+
"shortText": "Gets the text of the label component."
|
|
7199
|
+
},
|
|
7200
|
+
"type": {
|
|
7201
|
+
"type": "reference",
|
|
7202
|
+
"typeArguments": [
|
|
7203
|
+
{
|
|
7204
|
+
"type": "intrinsic",
|
|
7205
|
+
"name": "string"
|
|
7206
|
+
}
|
|
7207
|
+
],
|
|
7208
|
+
"qualifiedName": "Promise",
|
|
7209
|
+
"package": "typescript",
|
|
7210
|
+
"name": "Promise"
|
|
7211
|
+
}
|
|
7212
|
+
}
|
|
7213
|
+
]
|
|
7214
|
+
},
|
|
7215
|
+
{
|
|
7216
|
+
"id": 562,
|
|
7217
|
+
"name": "getLabelType",
|
|
7218
|
+
"kind": 2048,
|
|
7219
|
+
"kindString": "Method",
|
|
7220
|
+
"flags": {
|
|
7221
|
+
"isPublic": true
|
|
7222
|
+
},
|
|
7223
|
+
"sources": [
|
|
7224
|
+
{
|
|
7225
|
+
"fileName": "projects/indicators/src/testing/label/label-harness.ts",
|
|
7226
|
+
"line": 43,
|
|
7227
|
+
"character": 15
|
|
7228
|
+
}
|
|
7229
|
+
],
|
|
7230
|
+
"signatures": [
|
|
7231
|
+
{
|
|
7232
|
+
"id": 563,
|
|
7233
|
+
"name": "getLabelType",
|
|
7234
|
+
"kind": 4096,
|
|
7235
|
+
"kindString": "Call signature",
|
|
7236
|
+
"flags": {},
|
|
7237
|
+
"comment": {
|
|
7238
|
+
"shortText": "Gets the `labelType` of the label component."
|
|
7239
|
+
},
|
|
7240
|
+
"type": {
|
|
7241
|
+
"type": "reference",
|
|
7242
|
+
"typeArguments": [
|
|
7243
|
+
{
|
|
7244
|
+
"type": "reference",
|
|
7245
|
+
"id": 364,
|
|
7246
|
+
"name": "SkyLabelType"
|
|
7247
|
+
}
|
|
7248
|
+
],
|
|
7249
|
+
"qualifiedName": "Promise",
|
|
7250
|
+
"package": "typescript",
|
|
7251
|
+
"name": "Promise"
|
|
7252
|
+
}
|
|
7253
|
+
}
|
|
7254
|
+
]
|
|
7255
|
+
},
|
|
7256
|
+
{
|
|
7257
|
+
"id": 571,
|
|
7258
|
+
"name": "host",
|
|
7259
|
+
"kind": 2048,
|
|
7260
|
+
"kindString": "Method",
|
|
7261
|
+
"flags": {},
|
|
7262
|
+
"sources": [
|
|
7263
|
+
{
|
|
7264
|
+
"fileName": "node_modules/@angular/cdk/testing/component-harness.d.ts",
|
|
7265
|
+
"line": 221,
|
|
7266
|
+
"character": 4
|
|
7267
|
+
}
|
|
7268
|
+
],
|
|
7269
|
+
"signatures": [
|
|
7270
|
+
{
|
|
7271
|
+
"id": 572,
|
|
7272
|
+
"name": "host",
|
|
7273
|
+
"kind": 4096,
|
|
7274
|
+
"kindString": "Call signature",
|
|
7275
|
+
"flags": {},
|
|
7276
|
+
"comment": {
|
|
7277
|
+
"shortText": "Gets a `Promise` for the `TestElement` representing the host element of the component."
|
|
7278
|
+
},
|
|
7279
|
+
"type": {
|
|
7280
|
+
"type": "reference",
|
|
7281
|
+
"typeArguments": [
|
|
7282
|
+
{
|
|
7283
|
+
"type": "reference",
|
|
7284
|
+
"qualifiedName": "TestElement",
|
|
7285
|
+
"package": "@angular/cdk",
|
|
7286
|
+
"name": "TestElement"
|
|
7287
|
+
}
|
|
7288
|
+
],
|
|
7289
|
+
"qualifiedName": "Promise",
|
|
7290
|
+
"package": "typescript",
|
|
7291
|
+
"name": "Promise"
|
|
7292
|
+
},
|
|
7293
|
+
"inheritedFrom": {
|
|
7294
|
+
"type": "reference",
|
|
7295
|
+
"name": "SkyComponentHarness.host"
|
|
7296
|
+
}
|
|
7297
|
+
}
|
|
7298
|
+
],
|
|
7299
|
+
"inheritedFrom": {
|
|
7300
|
+
"type": "reference",
|
|
7301
|
+
"name": "SkyComponentHarness.host"
|
|
7302
|
+
}
|
|
7303
|
+
},
|
|
7304
|
+
{
|
|
7305
|
+
"id": 546,
|
|
7306
|
+
"name": "with",
|
|
7307
|
+
"kind": 2048,
|
|
7308
|
+
"kindString": "Method",
|
|
7309
|
+
"flags": {
|
|
7310
|
+
"isPublic": true,
|
|
7311
|
+
"isStatic": true
|
|
7312
|
+
},
|
|
7313
|
+
"sources": [
|
|
7314
|
+
{
|
|
7315
|
+
"fileName": "projects/indicators/src/testing/label/label-harness.ts",
|
|
7316
|
+
"line": 27,
|
|
7317
|
+
"character": 16
|
|
7318
|
+
}
|
|
7319
|
+
],
|
|
7320
|
+
"signatures": [
|
|
7321
|
+
{
|
|
7322
|
+
"id": 547,
|
|
7323
|
+
"name": "with",
|
|
7324
|
+
"kind": 4096,
|
|
7325
|
+
"kindString": "Call signature",
|
|
7326
|
+
"flags": {},
|
|
7327
|
+
"comment": {
|
|
7328
|
+
"shortText": "Gets a `HarnessPredicate` that can be used to search for a\n`SkyLookupHarness` that meets certain criteria."
|
|
7329
|
+
},
|
|
7330
|
+
"parameters": [
|
|
7331
|
+
{
|
|
7332
|
+
"id": 548,
|
|
7333
|
+
"name": "filters",
|
|
7334
|
+
"kind": 32768,
|
|
7335
|
+
"kindString": "Parameter",
|
|
7336
|
+
"flags": {},
|
|
7337
|
+
"type": {
|
|
7338
|
+
"type": "reference",
|
|
7339
|
+
"id": 591,
|
|
7340
|
+
"name": "SkyLabelHarnessFilters"
|
|
7341
|
+
}
|
|
7342
|
+
}
|
|
7343
|
+
],
|
|
7344
|
+
"type": {
|
|
7345
|
+
"type": "reference",
|
|
7346
|
+
"typeArguments": [
|
|
7347
|
+
{
|
|
7348
|
+
"type": "reference",
|
|
7349
|
+
"id": 544,
|
|
7350
|
+
"name": "SkyLabelHarness"
|
|
7351
|
+
}
|
|
7352
|
+
],
|
|
7353
|
+
"qualifiedName": "HarnessPredicate",
|
|
7354
|
+
"package": "@angular/cdk",
|
|
7355
|
+
"name": "HarnessPredicate"
|
|
7356
|
+
}
|
|
7357
|
+
}
|
|
7358
|
+
]
|
|
7359
|
+
}
|
|
7360
|
+
],
|
|
7361
|
+
"groups": [
|
|
7362
|
+
{
|
|
7363
|
+
"title": "Constructors",
|
|
7364
|
+
"kind": 512,
|
|
7365
|
+
"children": [
|
|
7366
|
+
554
|
|
7367
|
+
]
|
|
7368
|
+
},
|
|
7369
|
+
{
|
|
7370
|
+
"title": "Methods",
|
|
7371
|
+
"kind": 2048,
|
|
7372
|
+
"children": [
|
|
7373
|
+
566,
|
|
7374
|
+
564,
|
|
7375
|
+
560,
|
|
7376
|
+
562,
|
|
7377
|
+
571,
|
|
7378
|
+
546
|
|
7379
|
+
]
|
|
7380
|
+
}
|
|
7381
|
+
],
|
|
7382
|
+
"sources": [
|
|
7383
|
+
{
|
|
7384
|
+
"fileName": "projects/indicators/src/testing/label/label-harness.ts",
|
|
7385
|
+
"line": 13,
|
|
7386
|
+
"character": 13
|
|
7387
|
+
}
|
|
7388
|
+
],
|
|
7389
|
+
"extendedTypes": [
|
|
7390
|
+
{
|
|
7391
|
+
"type": "reference",
|
|
7392
|
+
"name": "SkyComponentHarness"
|
|
7393
|
+
}
|
|
7394
|
+
]
|
|
7395
|
+
},
|
|
7396
|
+
{
|
|
7397
|
+
"id": 491,
|
|
7398
|
+
"name": "SkyAlertHarnessFilters",
|
|
7399
|
+
"kind": 256,
|
|
7400
|
+
"kindString": "Interface",
|
|
7401
|
+
"flags": {},
|
|
7402
|
+
"comment": {
|
|
7403
|
+
"shortText": "A set of criteria that can be used to filter a list of SkyAlertHarness instances."
|
|
7404
|
+
},
|
|
7405
|
+
"children": [
|
|
7406
|
+
{
|
|
7407
|
+
"id": 494,
|
|
7408
|
+
"name": "ancestor",
|
|
7409
|
+
"kind": 1024,
|
|
7410
|
+
"kindString": "Property",
|
|
7411
|
+
"flags": {
|
|
7412
|
+
"isOptional": true
|
|
7413
|
+
},
|
|
7414
|
+
"comment": {
|
|
7415
|
+
"shortText": "Only find instances that are nested under an element with the given selector."
|
|
7416
|
+
},
|
|
7417
|
+
"sources": [
|
|
7418
|
+
{
|
|
7419
|
+
"fileName": "node_modules/@angular/cdk/testing/component-harness.d.ts",
|
|
7420
|
+
"line": 351,
|
|
7421
|
+
"character": 4
|
|
7422
|
+
}
|
|
7423
|
+
],
|
|
7424
|
+
"type": {
|
|
7425
|
+
"type": "intrinsic",
|
|
7426
|
+
"name": "string"
|
|
7427
|
+
},
|
|
7428
|
+
"inheritedFrom": {
|
|
7429
|
+
"type": "reference",
|
|
7430
|
+
"name": "SkyHarnessFilters.ancestor"
|
|
7431
|
+
}
|
|
7432
|
+
},
|
|
7433
|
+
{
|
|
7434
|
+
"id": 492,
|
|
7435
|
+
"name": "dataSkyId",
|
|
7436
|
+
"kind": 1024,
|
|
7437
|
+
"kindString": "Property",
|
|
7438
|
+
"flags": {
|
|
7439
|
+
"isOptional": true
|
|
7440
|
+
},
|
|
7441
|
+
"comment": {
|
|
7442
|
+
"shortText": "Only find instances whose `data-sky-id` attribute matches the given value."
|
|
7443
|
+
},
|
|
7444
|
+
"sources": [
|
|
7445
|
+
{
|
|
7446
|
+
"fileName": "libs/components/core/testing/src/shared/harness-filters.ts",
|
|
7447
|
+
"line": 11,
|
|
7448
|
+
"character": 2
|
|
7449
|
+
}
|
|
7450
|
+
],
|
|
7451
|
+
"type": {
|
|
7452
|
+
"type": "union",
|
|
7453
|
+
"types": [
|
|
7454
|
+
{
|
|
7455
|
+
"type": "intrinsic",
|
|
7456
|
+
"name": "string"
|
|
7457
|
+
},
|
|
7458
|
+
{
|
|
7459
|
+
"type": "reference",
|
|
7460
|
+
"qualifiedName": "RegExp",
|
|
7461
|
+
"package": "typescript",
|
|
7462
|
+
"name": "RegExp"
|
|
7463
|
+
}
|
|
7464
|
+
]
|
|
7465
|
+
},
|
|
7466
|
+
"inheritedFrom": {
|
|
7467
|
+
"type": "reference",
|
|
7468
|
+
"name": "SkyHarnessFilters.dataSkyId"
|
|
7469
|
+
}
|
|
7470
|
+
},
|
|
7471
|
+
{
|
|
7472
|
+
"id": 493,
|
|
7473
|
+
"name": "selector",
|
|
7474
|
+
"kind": 1024,
|
|
7475
|
+
"kindString": "Property",
|
|
7476
|
+
"flags": {
|
|
7477
|
+
"isOptional": true
|
|
7478
|
+
},
|
|
7479
|
+
"comment": {
|
|
7480
|
+
"shortText": "Only find instances whose host element matches the given selector."
|
|
7481
|
+
},
|
|
7482
|
+
"sources": [
|
|
7483
|
+
{
|
|
7484
|
+
"fileName": "node_modules/@angular/cdk/testing/component-harness.d.ts",
|
|
7485
|
+
"line": 349,
|
|
7486
|
+
"character": 4
|
|
7487
|
+
}
|
|
7488
|
+
],
|
|
7489
|
+
"type": {
|
|
7490
|
+
"type": "intrinsic",
|
|
7491
|
+
"name": "string"
|
|
7492
|
+
},
|
|
7493
|
+
"inheritedFrom": {
|
|
7494
|
+
"type": "reference",
|
|
7495
|
+
"name": "SkyHarnessFilters.selector"
|
|
7496
|
+
}
|
|
7497
|
+
}
|
|
7498
|
+
],
|
|
7499
|
+
"groups": [
|
|
7500
|
+
{
|
|
7501
|
+
"title": "Properties",
|
|
7502
|
+
"kind": 1024,
|
|
7503
|
+
"children": [
|
|
7504
|
+
494,
|
|
7505
|
+
492,
|
|
7506
|
+
493
|
|
7507
|
+
]
|
|
7508
|
+
}
|
|
7509
|
+
],
|
|
7510
|
+
"sources": [
|
|
7511
|
+
{
|
|
7512
|
+
"fileName": "projects/indicators/src/testing/alert/alert-harness-filters.ts",
|
|
7513
|
+
"line": 7,
|
|
7514
|
+
"character": 17
|
|
7515
|
+
}
|
|
7516
|
+
],
|
|
7517
|
+
"extendedTypes": [
|
|
7518
|
+
{
|
|
7519
|
+
"type": "reference",
|
|
7520
|
+
"name": "SkyHarnessFilters"
|
|
7521
|
+
}
|
|
7522
|
+
]
|
|
7523
|
+
},
|
|
7524
|
+
{
|
|
7525
|
+
"id": 540,
|
|
7526
|
+
"name": "SkyKeyInfoHarnessFilters",
|
|
7527
|
+
"kind": 256,
|
|
7528
|
+
"kindString": "Interface",
|
|
7529
|
+
"flags": {},
|
|
7530
|
+
"comment": {
|
|
7531
|
+
"shortText": "A set of criteria that can be used to filter a list of SkyKeyInfoHarness instances."
|
|
7532
|
+
},
|
|
7533
|
+
"children": [
|
|
7534
|
+
{
|
|
7535
|
+
"id": 543,
|
|
7536
|
+
"name": "ancestor",
|
|
7537
|
+
"kind": 1024,
|
|
7538
|
+
"kindString": "Property",
|
|
7539
|
+
"flags": {
|
|
7540
|
+
"isOptional": true
|
|
7541
|
+
},
|
|
7542
|
+
"comment": {
|
|
7543
|
+
"shortText": "Only find instances that are nested under an element with the given selector."
|
|
7544
|
+
},
|
|
7545
|
+
"sources": [
|
|
7546
|
+
{
|
|
7547
|
+
"fileName": "node_modules/@angular/cdk/testing/component-harness.d.ts",
|
|
7548
|
+
"line": 351,
|
|
7549
|
+
"character": 4
|
|
7550
|
+
}
|
|
7551
|
+
],
|
|
7552
|
+
"type": {
|
|
7553
|
+
"type": "intrinsic",
|
|
7554
|
+
"name": "string"
|
|
7555
|
+
},
|
|
7556
|
+
"inheritedFrom": {
|
|
7557
|
+
"type": "reference",
|
|
7558
|
+
"name": "SkyHarnessFilters.ancestor"
|
|
7559
|
+
}
|
|
7560
|
+
},
|
|
7561
|
+
{
|
|
7562
|
+
"id": 541,
|
|
7563
|
+
"name": "dataSkyId",
|
|
7564
|
+
"kind": 1024,
|
|
7565
|
+
"kindString": "Property",
|
|
7566
|
+
"flags": {
|
|
7567
|
+
"isOptional": true
|
|
7568
|
+
},
|
|
7569
|
+
"comment": {
|
|
7570
|
+
"shortText": "Only find instances whose `data-sky-id` attribute matches the given value."
|
|
7571
|
+
},
|
|
7572
|
+
"sources": [
|
|
7573
|
+
{
|
|
7574
|
+
"fileName": "libs/components/core/testing/src/shared/harness-filters.ts",
|
|
7575
|
+
"line": 11,
|
|
7576
|
+
"character": 2
|
|
7577
|
+
}
|
|
7578
|
+
],
|
|
7579
|
+
"type": {
|
|
7580
|
+
"type": "union",
|
|
7581
|
+
"types": [
|
|
7582
|
+
{
|
|
7583
|
+
"type": "intrinsic",
|
|
7584
|
+
"name": "string"
|
|
7585
|
+
},
|
|
7586
|
+
{
|
|
7587
|
+
"type": "reference",
|
|
7588
|
+
"qualifiedName": "RegExp",
|
|
7589
|
+
"package": "typescript",
|
|
7590
|
+
"name": "RegExp"
|
|
7591
|
+
}
|
|
7592
|
+
]
|
|
7593
|
+
},
|
|
7594
|
+
"inheritedFrom": {
|
|
7595
|
+
"type": "reference",
|
|
7596
|
+
"name": "SkyHarnessFilters.dataSkyId"
|
|
7597
|
+
}
|
|
7598
|
+
},
|
|
7599
|
+
{
|
|
7600
|
+
"id": 542,
|
|
7601
|
+
"name": "selector",
|
|
7602
|
+
"kind": 1024,
|
|
7603
|
+
"kindString": "Property",
|
|
7604
|
+
"flags": {
|
|
7605
|
+
"isOptional": true
|
|
7606
|
+
},
|
|
7607
|
+
"comment": {
|
|
7608
|
+
"shortText": "Only find instances whose host element matches the given selector."
|
|
7609
|
+
},
|
|
7610
|
+
"sources": [
|
|
7611
|
+
{
|
|
7612
|
+
"fileName": "node_modules/@angular/cdk/testing/component-harness.d.ts",
|
|
7613
|
+
"line": 349,
|
|
7614
|
+
"character": 4
|
|
7615
|
+
}
|
|
7616
|
+
],
|
|
7617
|
+
"type": {
|
|
7618
|
+
"type": "intrinsic",
|
|
7619
|
+
"name": "string"
|
|
7620
|
+
},
|
|
7621
|
+
"inheritedFrom": {
|
|
7622
|
+
"type": "reference",
|
|
7623
|
+
"name": "SkyHarnessFilters.selector"
|
|
7624
|
+
}
|
|
7625
|
+
}
|
|
7626
|
+
],
|
|
7627
|
+
"groups": [
|
|
7628
|
+
{
|
|
7629
|
+
"title": "Properties",
|
|
7630
|
+
"kind": 1024,
|
|
7631
|
+
"children": [
|
|
7632
|
+
543,
|
|
7633
|
+
541,
|
|
7634
|
+
542
|
|
7635
|
+
]
|
|
7636
|
+
}
|
|
7637
|
+
],
|
|
7638
|
+
"sources": [
|
|
7639
|
+
{
|
|
7640
|
+
"fileName": "projects/indicators/src/testing/key-info/key-info-harness-filters.ts",
|
|
7641
|
+
"line": 7,
|
|
7642
|
+
"character": 17
|
|
7643
|
+
}
|
|
7644
|
+
],
|
|
7645
|
+
"extendedTypes": [
|
|
7646
|
+
{
|
|
7647
|
+
"type": "reference",
|
|
7648
|
+
"name": "SkyHarnessFilters"
|
|
7649
|
+
}
|
|
7650
|
+
]
|
|
7651
|
+
},
|
|
7652
|
+
{
|
|
7653
|
+
"id": 591,
|
|
7654
|
+
"name": "SkyLabelHarnessFilters",
|
|
7655
|
+
"kind": 256,
|
|
7656
|
+
"kindString": "Interface",
|
|
7657
|
+
"flags": {},
|
|
7658
|
+
"comment": {
|
|
7659
|
+
"shortText": "A set of criteria that can be used to filter a list of `SkyLabelHarness` instances."
|
|
7660
|
+
},
|
|
7661
|
+
"children": [
|
|
7662
|
+
{
|
|
7663
|
+
"id": 594,
|
|
7664
|
+
"name": "ancestor",
|
|
7665
|
+
"kind": 1024,
|
|
7666
|
+
"kindString": "Property",
|
|
7667
|
+
"flags": {
|
|
7668
|
+
"isOptional": true
|
|
7669
|
+
},
|
|
7670
|
+
"comment": {
|
|
7671
|
+
"shortText": "Only find instances that are nested under an element with the given selector."
|
|
7672
|
+
},
|
|
7673
|
+
"sources": [
|
|
7674
|
+
{
|
|
7675
|
+
"fileName": "node_modules/@angular/cdk/testing/component-harness.d.ts",
|
|
7676
|
+
"line": 351,
|
|
7677
|
+
"character": 4
|
|
7678
|
+
}
|
|
7679
|
+
],
|
|
7680
|
+
"type": {
|
|
7681
|
+
"type": "intrinsic",
|
|
7682
|
+
"name": "string"
|
|
7683
|
+
},
|
|
7684
|
+
"inheritedFrom": {
|
|
7685
|
+
"type": "reference",
|
|
7686
|
+
"name": "SkyHarnessFilters.ancestor"
|
|
7687
|
+
}
|
|
7688
|
+
},
|
|
7689
|
+
{
|
|
7690
|
+
"id": 592,
|
|
7691
|
+
"name": "dataSkyId",
|
|
7692
|
+
"kind": 1024,
|
|
7693
|
+
"kindString": "Property",
|
|
7694
|
+
"flags": {
|
|
7695
|
+
"isOptional": true
|
|
7696
|
+
},
|
|
7697
|
+
"comment": {
|
|
7698
|
+
"shortText": "Only find instances whose `data-sky-id` attribute matches the given value."
|
|
7699
|
+
},
|
|
7700
|
+
"sources": [
|
|
7701
|
+
{
|
|
7702
|
+
"fileName": "libs/components/core/testing/src/shared/harness-filters.ts",
|
|
7703
|
+
"line": 11,
|
|
7704
|
+
"character": 2
|
|
7705
|
+
}
|
|
7706
|
+
],
|
|
7707
|
+
"type": {
|
|
7708
|
+
"type": "union",
|
|
7709
|
+
"types": [
|
|
7710
|
+
{
|
|
7711
|
+
"type": "intrinsic",
|
|
7712
|
+
"name": "string"
|
|
7713
|
+
},
|
|
7714
|
+
{
|
|
7715
|
+
"type": "reference",
|
|
7716
|
+
"qualifiedName": "RegExp",
|
|
7717
|
+
"package": "typescript",
|
|
7718
|
+
"name": "RegExp"
|
|
7719
|
+
}
|
|
7720
|
+
]
|
|
7721
|
+
},
|
|
7722
|
+
"inheritedFrom": {
|
|
7723
|
+
"type": "reference",
|
|
7724
|
+
"name": "SkyHarnessFilters.dataSkyId"
|
|
7725
|
+
}
|
|
7726
|
+
},
|
|
7727
|
+
{
|
|
7728
|
+
"id": 593,
|
|
7729
|
+
"name": "selector",
|
|
7730
|
+
"kind": 1024,
|
|
7731
|
+
"kindString": "Property",
|
|
7732
|
+
"flags": {
|
|
7733
|
+
"isOptional": true
|
|
7734
|
+
},
|
|
7735
|
+
"comment": {
|
|
7736
|
+
"shortText": "Only find instances whose host element matches the given selector."
|
|
7737
|
+
},
|
|
7738
|
+
"sources": [
|
|
7739
|
+
{
|
|
7740
|
+
"fileName": "node_modules/@angular/cdk/testing/component-harness.d.ts",
|
|
7741
|
+
"line": 349,
|
|
7742
|
+
"character": 4
|
|
7743
|
+
}
|
|
7744
|
+
],
|
|
7745
|
+
"type": {
|
|
7746
|
+
"type": "intrinsic",
|
|
7747
|
+
"name": "string"
|
|
7748
|
+
},
|
|
7749
|
+
"inheritedFrom": {
|
|
7750
|
+
"type": "reference",
|
|
7751
|
+
"name": "SkyHarnessFilters.selector"
|
|
7752
|
+
}
|
|
7753
|
+
}
|
|
7754
|
+
],
|
|
7755
|
+
"groups": [
|
|
7756
|
+
{
|
|
7757
|
+
"title": "Properties",
|
|
7758
|
+
"kind": 1024,
|
|
7759
|
+
"children": [
|
|
7760
|
+
594,
|
|
7761
|
+
592,
|
|
7762
|
+
593
|
|
7763
|
+
]
|
|
7764
|
+
}
|
|
7765
|
+
],
|
|
7766
|
+
"sources": [
|
|
7767
|
+
{
|
|
7768
|
+
"fileName": "projects/indicators/src/testing/label/label-harness-filters.ts",
|
|
7769
|
+
"line": 7,
|
|
7770
|
+
"character": 17
|
|
7771
|
+
}
|
|
7772
|
+
],
|
|
7773
|
+
"extendedTypes": [
|
|
7774
|
+
{
|
|
7775
|
+
"type": "reference",
|
|
7776
|
+
"name": "SkyHarnessFilters"
|
|
7777
|
+
}
|
|
7778
|
+
]
|
|
7779
|
+
}
|
|
7780
|
+
],
|
|
7781
|
+
"groups": [
|
|
6640
7782
|
{
|
|
6641
7783
|
"title": "Modules",
|
|
6642
7784
|
"kind": 2,
|
|
@@ -6701,12 +7843,17 @@
|
|
|
6701
7843
|
{
|
|
6702
7844
|
"fileName": "key-info-demo.component.html",
|
|
6703
7845
|
"filePath": "/projects/indicators/documentation/code-examples/key-info/basic/key-info-demo.component.html",
|
|
6704
|
-
"rawContents": "<sky-key-info [layout]=\"layout\">\n <sky-key-info-value>
|
|
7846
|
+
"rawContents": "<sky-key-info [layout]=\"layout\" data-sky-id=\"key-info-demo\">\n <sky-key-info-value>{{ value }}</sky-key-info-value>\n <sky-key-info-label> New members </sky-key-info-label>\n</sky-key-info>\n"
|
|
7847
|
+
},
|
|
7848
|
+
{
|
|
7849
|
+
"fileName": "key-info-demo.component.spec.ts",
|
|
7850
|
+
"filePath": "/projects/indicators/documentation/code-examples/key-info/basic/key-info-demo.component.spec.ts",
|
|
7851
|
+
"rawContents": "import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed';\nimport { TestBed } from '@angular/core/testing';\nimport { SkyKeyInfoHarness } from '@skyux/indicators/testing';\n\nimport { KeyInfoDemoComponent } from './key-info-demo.component';\nimport { KeyInfoDemoModule } from './key-info-demo.module';\n\ndescribe('Basic key info', () => {\n async function setupTest(options?: { value?: number }) {\n const fixture = TestBed.createComponent(KeyInfoDemoComponent);\n\n if (options?.value !== undefined) {\n fixture.componentInstance.value = options.value;\n }\n\n const loader = TestbedHarnessEnvironment.loader(fixture);\n\n const keyInfoHarness = await loader.getHarness(\n SkyKeyInfoHarness.with({ dataSkyId: 'key-info-demo' })\n );\n\n return { keyInfoHarness, fixture };\n }\n\n beforeEach(() => {\n TestBed.configureTestingModule({\n imports: [KeyInfoDemoModule],\n });\n });\n\n it('should display a vertical key info', async () => {\n const { keyInfoHarness } = await setupTest({ value: 101 });\n\n await expectAsync(keyInfoHarness.getLayout()).toBeResolvedTo('vertical');\n await expectAsync(keyInfoHarness.getValueText()).toBeResolvedTo('101');\n await expectAsync(keyInfoHarness.getLabelText()).toBeResolvedTo(\n 'New members'\n );\n });\n\n it('should display a horizontal key info', async () => {\n const { keyInfoHarness } = await setupTest({ value: 50 });\n\n await expectAsync(keyInfoHarness.getLayout()).toBeResolvedTo('horizontal');\n await expectAsync(keyInfoHarness.getValueText()).toBeResolvedTo('50');\n await expectAsync(keyInfoHarness.getLabelText()).toBeResolvedTo(\n 'New members'\n );\n });\n});\n"
|
|
6705
7852
|
},
|
|
6706
7853
|
{
|
|
6707
7854
|
"fileName": "key-info-demo.component.ts",
|
|
6708
7855
|
"filePath": "/projects/indicators/documentation/code-examples/key-info/basic/key-info-demo.component.ts",
|
|
6709
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-key-info-demo',\n templateUrl: './key-info-demo.component.html',\n})\nexport class KeyInfoDemoComponent {\n public layout = 'vertical';\n}\n"
|
|
7856
|
+
"rawContents": "import { Component, Input } from '@angular/core';\nimport { SkyKeyInfoLayoutType } from '@skyux/indicators';\n\n@Component({\n selector: 'app-key-info-demo',\n templateUrl: './key-info-demo.component.html',\n})\nexport class KeyInfoDemoComponent {\n @Input()\n public set value(value: number) {\n this.#_value = value;\n this.layout = this.#_value >= 100 ? 'vertical' : 'horizontal';\n }\n\n public get value(): number {\n return this.#_value;\n }\n\n public layout: SkyKeyInfoLayoutType = 'vertical';\n\n #_value: number | undefined;\n}\n"
|
|
6710
7857
|
},
|
|
6711
7858
|
{
|
|
6712
7859
|
"fileName": "key-info-demo.module.ts",
|
|
@@ -6731,12 +7878,17 @@
|
|
|
6731
7878
|
{
|
|
6732
7879
|
"fileName": "label-demo.component.html",
|
|
6733
7880
|
"filePath": "/projects/indicators/documentation/code-examples/label/basic/label-demo.component.html",
|
|
6734
|
-
"rawContents": "<sky-label\n
|
|
7881
|
+
"rawContents": "<sky-label\n data-sky-id=\"label-demo\"\n [labelType]=\"labelType\"\n [descriptionType]=\"descriptionType\"\n>\n {{ labelText }}\n</sky-label>\n"
|
|
7882
|
+
},
|
|
7883
|
+
{
|
|
7884
|
+
"fileName": "label-demo.component.spec.ts",
|
|
7885
|
+
"filePath": "/projects/indicators/documentation/code-examples/label/basic/label-demo.component.spec.ts",
|
|
7886
|
+
"rawContents": "import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed';\nimport { TestBed } from '@angular/core/testing';\nimport { SkyLabelHarness } from '@skyux/indicators/testing';\n\nimport { LabelDemoComponent } from './label-demo.component';\nimport { LabelDemoModule } from './label-demo.module';\n\ndescribe('Basic label', () => {\n async function setupTest(options?: {\n daysUntilDue?: number;\n submitted?: boolean;\n }) {\n const fixture = TestBed.createComponent(LabelDemoComponent);\n\n if (options?.daysUntilDue !== undefined) {\n fixture.componentInstance.daysUntilDue = options.daysUntilDue;\n }\n\n if (options?.submitted !== undefined) {\n fixture.componentInstance.submitted = options.submitted;\n }\n\n const loader = TestbedHarnessEnvironment.loader(fixture);\n\n const labelHarness = await loader.getHarness(\n SkyLabelHarness.with({ dataSkyId: 'label-demo' })\n );\n\n return { labelHarness, fixture };\n }\n\n beforeEach(() => {\n TestBed.configureTestingModule({\n imports: [LabelDemoModule],\n });\n });\n\n it('should show an info label when submitted is false and there is more than a week until due', async () => {\n const { labelHarness, fixture } = await setupTest({ daysUntilDue: 8 });\n fixture.detectChanges();\n\n await expectAsync(labelHarness.getLabelType()).toBeResolvedTo('info');\n await expectAsync(labelHarness.getDescriptionType()).toBeResolvedTo(\n 'attention'\n );\n await expectAsync(labelHarness.getLabelText()).toBeResolvedTo('Incomplete');\n });\n\n it('should show a warning label when submitted is false and there is less than a week until due', async () => {\n const { labelHarness, fixture } = await setupTest({ daysUntilDue: 6 });\n fixture.detectChanges();\n\n await expectAsync(labelHarness.getLabelType()).toBeResolvedTo('warning');\n await expectAsync(labelHarness.getDescriptionType()).toBeResolvedTo(\n 'important-warning'\n );\n await expectAsync(labelHarness.getLabelText()).toBeResolvedTo('Due soon');\n });\n\n it('should show a danger label when submitted is false and it is past due', async () => {\n const { labelHarness, fixture } = await setupTest({ daysUntilDue: -1 });\n fixture.detectChanges();\n\n await expectAsync(labelHarness.getLabelType()).toBeResolvedTo('danger');\n await expectAsync(labelHarness.getDescriptionType()).toBeResolvedTo(\n 'danger'\n );\n await expectAsync(labelHarness.getLabelText()).toBeResolvedTo('Overdue');\n });\n\n it('should show a success label when submitted is true', async () => {\n const { labelHarness, fixture } = await setupTest({ submitted: true });\n fixture.detectChanges();\n\n await expectAsync(labelHarness.getLabelType()).toBeResolvedTo('success');\n await expectAsync(labelHarness.getDescriptionType()).toBeResolvedTo(\n 'completed'\n );\n await expectAsync(labelHarness.getLabelText()).toBeResolvedTo('Submitted');\n });\n});\n"
|
|
6735
7887
|
},
|
|
6736
7888
|
{
|
|
6737
7889
|
"fileName": "label-demo.component.ts",
|
|
6738
7890
|
"filePath": "/projects/indicators/documentation/code-examples/label/basic/label-demo.component.ts",
|
|
6739
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-label-demo',\n templateUrl: './label-demo.component.html',\n})\nexport class LabelDemoComponent {}\n"
|
|
7891
|
+
"rawContents": "import { Component, Input } from '@angular/core';\nimport { SkyIndicatorDescriptionType, SkyLabelType } from '@skyux/indicators';\n\n@Component({\n selector: 'app-label-demo',\n templateUrl: './label-demo.component.html',\n})\nexport class LabelDemoComponent {\n @Input()\n public get daysUntilDue(): number {\n return this.#_daysUntilDue;\n }\n\n public set daysUntilDue(days: number) {\n this.#_daysUntilDue = days;\n this.updateLabelProperties(this.submitted, days);\n }\n\n @Input()\n public get submitted(): boolean {\n return this.#_submitted;\n }\n\n public set submitted(submitted: boolean) {\n this.#_submitted = submitted;\n this.updateLabelProperties(submitted, this.daysUntilDue);\n }\n\n public labelType: SkyLabelType = 'info';\n public descriptionType: SkyIndicatorDescriptionType = 'attention';\n public labelText = 'Incomplete';\n public todaysDate = new Date('9/14/22');\n #_daysUntilDue = 14;\n #_submitted = false;\n\n private updateLabelProperties(submitted: boolean, days: number) {\n if (submitted) {\n this.labelType = 'success';\n this.descriptionType = 'completed';\n this.labelText = 'Submitted';\n } else if (days <= 0) {\n this.labelType = 'danger';\n this.descriptionType = 'danger';\n this.labelText = 'Overdue';\n } else if (days <= 7) {\n this.labelType = 'warning';\n this.descriptionType = 'important-warning';\n this.labelText = 'Due soon';\n } else {\n this.labelType = 'info';\n this.descriptionType = 'attention';\n this.labelText = 'Incomplete';\n }\n }\n}\n"
|
|
6740
7892
|
},
|
|
6741
7893
|
{
|
|
6742
7894
|
"fileName": "label-demo.module.ts",
|