@skyux/modals 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 +867 -223
- package/esm2020/index.mjs +2 -1
- package/esm2020/lib/modules/confirm/confirm-button-config.mjs +1 -1
- package/esm2020/lib/modules/confirm/confirm-button-style-type.mjs +2 -0
- package/esm2020/lib/modules/confirm/confirm-button.mjs +1 -1
- package/esm2020/lib/modules/confirm/confirm.component.mjs +5 -3
- package/esm2020/testing/confirm/confirm-button-harness-filters.mjs +2 -0
- package/esm2020/testing/confirm/confirm-button-harness.mjs +46 -0
- package/esm2020/testing/confirm/confirm-harness.mjs +97 -0
- package/esm2020/testing/public-api.mjs +4 -1
- package/fesm2015/skyux-modals-testing.mjs +166 -2
- package/fesm2015/skyux-modals-testing.mjs.map +1 -1
- package/fesm2015/skyux-modals.mjs +4 -2
- package/fesm2015/skyux-modals.mjs.map +1 -1
- package/fesm2020/skyux-modals-testing.mjs +142 -1
- package/fesm2020/skyux-modals-testing.mjs.map +1 -1
- package/fesm2020/skyux-modals.mjs +4 -2
- package/fesm2020/skyux-modals.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/modules/confirm/confirm-button-config.d.ts +2 -0
- package/lib/modules/confirm/confirm-button-style-type.d.ts +1 -0
- package/lib/modules/confirm/confirm-button.d.ts +2 -1
- package/lib/modules/confirm/confirm.component.d.ts +1 -0
- package/package.json +6 -5
- package/testing/confirm/confirm-button-harness-filters.d.ts +14 -0
- package/testing/confirm/confirm-button-harness.d.ts +27 -0
- package/testing/confirm/confirm-harness.d.ts +39 -0
- package/testing/public-api.d.ts +3 -0
package/documentation.json
CHANGED
|
@@ -17,7 +17,10 @@
|
|
|
17
17
|
"SkyConfirmButtonConfig": "interface-skyconfirmbuttonconfig",
|
|
18
18
|
"SkyConfirmCloseEventArgs": "interface-skyconfirmcloseeventargs",
|
|
19
19
|
"SkyConfirmConfig": "interface-skyconfirmconfig",
|
|
20
|
-
"SkyModalConfigurationInterface": "interface-skymodalconfigurationinterface"
|
|
20
|
+
"SkyModalConfigurationInterface": "interface-skymodalconfigurationinterface",
|
|
21
|
+
"SkyConfirmButtonStyleType": "type-alias-skyconfirmbuttonstyletype",
|
|
22
|
+
"SkyConfirmHarness": "class-skyconfirmharness",
|
|
23
|
+
"SkyConfirmButtonHarnessFilters": "interface-skyconfirmbuttonharnessfilters"
|
|
21
24
|
},
|
|
22
25
|
"typedoc": {
|
|
23
26
|
"id": 0,
|
|
@@ -27,14 +30,14 @@
|
|
|
27
30
|
"originalName": "",
|
|
28
31
|
"children": [
|
|
29
32
|
{
|
|
30
|
-
"id":
|
|
33
|
+
"id": 115,
|
|
31
34
|
"name": "SkyConfirmType",
|
|
32
35
|
"kind": 8,
|
|
33
36
|
"kindString": "Enumeration",
|
|
34
37
|
"flags": {},
|
|
35
38
|
"children": [
|
|
36
39
|
{
|
|
37
|
-
"id":
|
|
40
|
+
"id": 116,
|
|
38
41
|
"name": "Custom",
|
|
39
42
|
"kind": 16,
|
|
40
43
|
"kindString": "Enumeration member",
|
|
@@ -52,7 +55,7 @@
|
|
|
52
55
|
"defaultValue": "0"
|
|
53
56
|
},
|
|
54
57
|
{
|
|
55
|
-
"id":
|
|
58
|
+
"id": 117,
|
|
56
59
|
"name": "OK",
|
|
57
60
|
"kind": 16,
|
|
58
61
|
"kindString": "Enumeration member",
|
|
@@ -70,7 +73,7 @@
|
|
|
70
73
|
"defaultValue": "1"
|
|
71
74
|
},
|
|
72
75
|
{
|
|
73
|
-
"id":
|
|
76
|
+
"id": 118,
|
|
74
77
|
"name": "YesCancel",
|
|
75
78
|
"kind": 16,
|
|
76
79
|
"kindString": "Enumeration member",
|
|
@@ -94,7 +97,7 @@
|
|
|
94
97
|
"defaultValue": "2"
|
|
95
98
|
},
|
|
96
99
|
{
|
|
97
|
-
"id":
|
|
100
|
+
"id": 119,
|
|
98
101
|
"name": "YesNoCancel",
|
|
99
102
|
"kind": 16,
|
|
100
103
|
"kindString": "Enumeration member",
|
|
@@ -123,10 +126,10 @@
|
|
|
123
126
|
"title": "Enumeration members",
|
|
124
127
|
"kind": 16,
|
|
125
128
|
"children": [
|
|
126
|
-
114,
|
|
127
|
-
115,
|
|
128
129
|
116,
|
|
129
|
-
117
|
|
130
|
+
117,
|
|
131
|
+
118,
|
|
132
|
+
119
|
|
130
133
|
]
|
|
131
134
|
}
|
|
132
135
|
],
|
|
@@ -139,14 +142,14 @@
|
|
|
139
142
|
]
|
|
140
143
|
},
|
|
141
144
|
{
|
|
142
|
-
"id":
|
|
145
|
+
"id": 111,
|
|
143
146
|
"name": "SkyConfirmInstance",
|
|
144
147
|
"kind": 128,
|
|
145
148
|
"kindString": "Class",
|
|
146
149
|
"flags": {},
|
|
147
150
|
"children": [
|
|
148
151
|
{
|
|
149
|
-
"id":
|
|
152
|
+
"id": 114,
|
|
150
153
|
"name": "closed",
|
|
151
154
|
"kind": 1024,
|
|
152
155
|
"kindString": "Property",
|
|
@@ -168,7 +171,7 @@
|
|
|
168
171
|
"typeArguments": [
|
|
169
172
|
{
|
|
170
173
|
"type": "reference",
|
|
171
|
-
"id":
|
|
174
|
+
"id": 103,
|
|
172
175
|
"name": "SkyConfirmCloseEventArgs"
|
|
173
176
|
}
|
|
174
177
|
],
|
|
@@ -184,14 +187,14 @@
|
|
|
184
187
|
"title": "Constructors",
|
|
185
188
|
"kind": 512,
|
|
186
189
|
"children": [
|
|
187
|
-
|
|
190
|
+
112
|
|
188
191
|
]
|
|
189
192
|
},
|
|
190
193
|
{
|
|
191
194
|
"title": "Properties",
|
|
192
195
|
"kind": 1024,
|
|
193
196
|
"children": [
|
|
194
|
-
|
|
197
|
+
114
|
|
195
198
|
]
|
|
196
199
|
}
|
|
197
200
|
],
|
|
@@ -204,7 +207,7 @@
|
|
|
204
207
|
]
|
|
205
208
|
},
|
|
206
209
|
{
|
|
207
|
-
"id":
|
|
210
|
+
"id": 120,
|
|
208
211
|
"name": "SkyConfirmModule",
|
|
209
212
|
"kind": 128,
|
|
210
213
|
"kindString": "Class",
|
|
@@ -229,7 +232,7 @@
|
|
|
229
232
|
"title": "Constructors",
|
|
230
233
|
"kind": 512,
|
|
231
234
|
"children": [
|
|
232
|
-
|
|
235
|
+
121
|
|
233
236
|
]
|
|
234
237
|
}
|
|
235
238
|
],
|
|
@@ -242,7 +245,7 @@
|
|
|
242
245
|
]
|
|
243
246
|
},
|
|
244
247
|
{
|
|
245
|
-
"id":
|
|
248
|
+
"id": 123,
|
|
246
249
|
"name": "SkyConfirmService",
|
|
247
250
|
"kind": 128,
|
|
248
251
|
"kindString": "Class",
|
|
@@ -266,7 +269,7 @@
|
|
|
266
269
|
],
|
|
267
270
|
"children": [
|
|
268
271
|
{
|
|
269
|
-
"id":
|
|
272
|
+
"id": 124,
|
|
270
273
|
"name": "constructor",
|
|
271
274
|
"kind": 512,
|
|
272
275
|
"kindString": "Constructor",
|
|
@@ -280,35 +283,35 @@
|
|
|
280
283
|
],
|
|
281
284
|
"signatures": [
|
|
282
285
|
{
|
|
283
|
-
"id":
|
|
286
|
+
"id": 125,
|
|
284
287
|
"name": "new SkyConfirmService",
|
|
285
288
|
"kind": 16384,
|
|
286
289
|
"kindString": "Constructor signature",
|
|
287
290
|
"flags": {},
|
|
288
291
|
"parameters": [
|
|
289
292
|
{
|
|
290
|
-
"id":
|
|
293
|
+
"id": 126,
|
|
291
294
|
"name": "modalService",
|
|
292
295
|
"kind": 32768,
|
|
293
296
|
"kindString": "Parameter",
|
|
294
297
|
"flags": {},
|
|
295
298
|
"type": {
|
|
296
299
|
"type": "reference",
|
|
297
|
-
"id":
|
|
300
|
+
"id": 228,
|
|
298
301
|
"name": "SkyModalService"
|
|
299
302
|
}
|
|
300
303
|
}
|
|
301
304
|
],
|
|
302
305
|
"type": {
|
|
303
306
|
"type": "reference",
|
|
304
|
-
"id":
|
|
307
|
+
"id": 123,
|
|
305
308
|
"name": "SkyConfirmService"
|
|
306
309
|
}
|
|
307
310
|
}
|
|
308
311
|
]
|
|
309
312
|
},
|
|
310
313
|
{
|
|
311
|
-
"id":
|
|
314
|
+
"id": 128,
|
|
312
315
|
"name": "open",
|
|
313
316
|
"kind": 2048,
|
|
314
317
|
"kindString": "Method",
|
|
@@ -324,7 +327,7 @@
|
|
|
324
327
|
],
|
|
325
328
|
"signatures": [
|
|
326
329
|
{
|
|
327
|
-
"id":
|
|
330
|
+
"id": 129,
|
|
328
331
|
"name": "open",
|
|
329
332
|
"kind": 4096,
|
|
330
333
|
"kindString": "Call signature",
|
|
@@ -334,7 +337,7 @@
|
|
|
334
337
|
},
|
|
335
338
|
"parameters": [
|
|
336
339
|
{
|
|
337
|
-
"id":
|
|
340
|
+
"id": 130,
|
|
338
341
|
"name": "config",
|
|
339
342
|
"kind": 32768,
|
|
340
343
|
"kindString": "Parameter",
|
|
@@ -344,14 +347,14 @@
|
|
|
344
347
|
},
|
|
345
348
|
"type": {
|
|
346
349
|
"type": "reference",
|
|
347
|
-
"id":
|
|
350
|
+
"id": 105,
|
|
348
351
|
"name": "SkyConfirmConfig"
|
|
349
352
|
}
|
|
350
353
|
}
|
|
351
354
|
],
|
|
352
355
|
"type": {
|
|
353
356
|
"type": "reference",
|
|
354
|
-
"id":
|
|
357
|
+
"id": 111,
|
|
355
358
|
"name": "SkyConfirmInstance"
|
|
356
359
|
}
|
|
357
360
|
}
|
|
@@ -363,14 +366,14 @@
|
|
|
363
366
|
"title": "Constructors",
|
|
364
367
|
"kind": 512,
|
|
365
368
|
"children": [
|
|
366
|
-
|
|
369
|
+
124
|
|
367
370
|
]
|
|
368
371
|
},
|
|
369
372
|
{
|
|
370
373
|
"title": "Methods",
|
|
371
374
|
"kind": 2048,
|
|
372
375
|
"children": [
|
|
373
|
-
|
|
376
|
+
128
|
|
374
377
|
]
|
|
375
378
|
}
|
|
376
379
|
],
|
|
@@ -383,7 +386,7 @@
|
|
|
383
386
|
]
|
|
384
387
|
},
|
|
385
388
|
{
|
|
386
|
-
"id":
|
|
389
|
+
"id": 131,
|
|
387
390
|
"name": "SkyModalBeforeCloseHandler",
|
|
388
391
|
"kind": 128,
|
|
389
392
|
"kindString": "Class",
|
|
@@ -393,7 +396,7 @@
|
|
|
393
396
|
},
|
|
394
397
|
"children": [
|
|
395
398
|
{
|
|
396
|
-
"id":
|
|
399
|
+
"id": 132,
|
|
397
400
|
"name": "constructor",
|
|
398
401
|
"kind": 512,
|
|
399
402
|
"kindString": "Constructor",
|
|
@@ -407,14 +410,14 @@
|
|
|
407
410
|
],
|
|
408
411
|
"signatures": [
|
|
409
412
|
{
|
|
410
|
-
"id":
|
|
413
|
+
"id": 133,
|
|
411
414
|
"name": "new SkyModalBeforeCloseHandler",
|
|
412
415
|
"kind": 16384,
|
|
413
416
|
"kindString": "Constructor signature",
|
|
414
417
|
"flags": {},
|
|
415
418
|
"parameters": [
|
|
416
419
|
{
|
|
417
|
-
"id":
|
|
420
|
+
"id": 134,
|
|
418
421
|
"name": "closeModal",
|
|
419
422
|
"kind": 32768,
|
|
420
423
|
"kindString": "Parameter",
|
|
@@ -427,21 +430,21 @@
|
|
|
427
430
|
}
|
|
428
431
|
},
|
|
429
432
|
{
|
|
430
|
-
"id":
|
|
433
|
+
"id": 135,
|
|
431
434
|
"name": "closeArgs",
|
|
432
435
|
"kind": 32768,
|
|
433
436
|
"kindString": "Parameter",
|
|
434
437
|
"flags": {},
|
|
435
438
|
"type": {
|
|
436
439
|
"type": "reference",
|
|
437
|
-
"id":
|
|
440
|
+
"id": 138,
|
|
438
441
|
"name": "SkyModalCloseArgs"
|
|
439
442
|
}
|
|
440
443
|
}
|
|
441
444
|
],
|
|
442
445
|
"type": {
|
|
443
446
|
"type": "reference",
|
|
444
|
-
"id":
|
|
447
|
+
"id": 131,
|
|
445
448
|
"name": "SkyModalBeforeCloseHandler"
|
|
446
449
|
}
|
|
447
450
|
}
|
|
@@ -453,15 +456,15 @@
|
|
|
453
456
|
"title": "Constructors",
|
|
454
457
|
"kind": 512,
|
|
455
458
|
"children": [
|
|
456
|
-
|
|
459
|
+
132
|
|
457
460
|
]
|
|
458
461
|
},
|
|
459
462
|
{
|
|
460
463
|
"title": "Properties",
|
|
461
464
|
"kind": 1024,
|
|
462
465
|
"children": [
|
|
463
|
-
|
|
464
|
-
|
|
466
|
+
137,
|
|
467
|
+
136
|
|
465
468
|
]
|
|
466
469
|
}
|
|
467
470
|
],
|
|
@@ -474,7 +477,7 @@
|
|
|
474
477
|
]
|
|
475
478
|
},
|
|
476
479
|
{
|
|
477
|
-
"id":
|
|
480
|
+
"id": 138,
|
|
478
481
|
"name": "SkyModalCloseArgs",
|
|
479
482
|
"kind": 128,
|
|
480
483
|
"kindString": "Class",
|
|
@@ -484,7 +487,7 @@
|
|
|
484
487
|
},
|
|
485
488
|
"children": [
|
|
486
489
|
{
|
|
487
|
-
"id":
|
|
490
|
+
"id": 142,
|
|
488
491
|
"name": "data",
|
|
489
492
|
"kind": 1024,
|
|
490
493
|
"kindString": "Property",
|
|
@@ -507,7 +510,7 @@
|
|
|
507
510
|
}
|
|
508
511
|
},
|
|
509
512
|
{
|
|
510
|
-
"id":
|
|
513
|
+
"id": 141,
|
|
511
514
|
"name": "reason",
|
|
512
515
|
"kind": 1024,
|
|
513
516
|
"kindString": "Property",
|
|
@@ -535,15 +538,15 @@
|
|
|
535
538
|
"title": "Constructors",
|
|
536
539
|
"kind": 512,
|
|
537
540
|
"children": [
|
|
538
|
-
|
|
541
|
+
139
|
|
539
542
|
]
|
|
540
543
|
},
|
|
541
544
|
{
|
|
542
545
|
"title": "Properties",
|
|
543
546
|
"kind": 1024,
|
|
544
547
|
"children": [
|
|
545
|
-
|
|
546
|
-
|
|
548
|
+
142,
|
|
549
|
+
141
|
|
547
550
|
]
|
|
548
551
|
}
|
|
549
552
|
],
|
|
@@ -556,14 +559,14 @@
|
|
|
556
559
|
]
|
|
557
560
|
},
|
|
558
561
|
{
|
|
559
|
-
"id":
|
|
562
|
+
"id": 180,
|
|
560
563
|
"name": "SkyModalInstance",
|
|
561
564
|
"kind": 128,
|
|
562
565
|
"kindString": "Class",
|
|
563
566
|
"flags": {},
|
|
564
567
|
"children": [
|
|
565
568
|
{
|
|
566
|
-
"id":
|
|
569
|
+
"id": 189,
|
|
567
570
|
"name": "componentInstance",
|
|
568
571
|
"kind": 1024,
|
|
569
572
|
"kindString": "Property",
|
|
@@ -586,7 +589,7 @@
|
|
|
586
589
|
}
|
|
587
590
|
},
|
|
588
591
|
{
|
|
589
|
-
"id":
|
|
592
|
+
"id": 183,
|
|
590
593
|
"name": "beforeClose",
|
|
591
594
|
"kind": 262144,
|
|
592
595
|
"kindString": "Accessor",
|
|
@@ -602,7 +605,7 @@
|
|
|
602
605
|
],
|
|
603
606
|
"getSignature": [
|
|
604
607
|
{
|
|
605
|
-
"id":
|
|
608
|
+
"id": 184,
|
|
606
609
|
"name": "beforeClose",
|
|
607
610
|
"kind": 524288,
|
|
608
611
|
"kindString": "Get signature",
|
|
@@ -615,7 +618,7 @@
|
|
|
615
618
|
"typeArguments": [
|
|
616
619
|
{
|
|
617
620
|
"type": "reference",
|
|
618
|
-
"id":
|
|
621
|
+
"id": 131,
|
|
619
622
|
"name": "SkyModalBeforeCloseHandler"
|
|
620
623
|
}
|
|
621
624
|
],
|
|
@@ -627,7 +630,7 @@
|
|
|
627
630
|
]
|
|
628
631
|
},
|
|
629
632
|
{
|
|
630
|
-
"id":
|
|
633
|
+
"id": 185,
|
|
631
634
|
"name": "closed",
|
|
632
635
|
"kind": 262144,
|
|
633
636
|
"kindString": "Accessor",
|
|
@@ -643,7 +646,7 @@
|
|
|
643
646
|
],
|
|
644
647
|
"getSignature": [
|
|
645
648
|
{
|
|
646
|
-
"id":
|
|
649
|
+
"id": 186,
|
|
647
650
|
"name": "closed",
|
|
648
651
|
"kind": 524288,
|
|
649
652
|
"kindString": "Get signature",
|
|
@@ -656,7 +659,7 @@
|
|
|
656
659
|
"typeArguments": [
|
|
657
660
|
{
|
|
658
661
|
"type": "reference",
|
|
659
|
-
"id":
|
|
662
|
+
"id": 138,
|
|
660
663
|
"name": "SkyModalCloseArgs"
|
|
661
664
|
}
|
|
662
665
|
],
|
|
@@ -668,7 +671,7 @@
|
|
|
668
671
|
]
|
|
669
672
|
},
|
|
670
673
|
{
|
|
671
|
-
"id":
|
|
674
|
+
"id": 187,
|
|
672
675
|
"name": "helpOpened",
|
|
673
676
|
"kind": 262144,
|
|
674
677
|
"kindString": "Accessor",
|
|
@@ -684,7 +687,7 @@
|
|
|
684
687
|
],
|
|
685
688
|
"getSignature": [
|
|
686
689
|
{
|
|
687
|
-
"id":
|
|
690
|
+
"id": 188,
|
|
688
691
|
"name": "helpOpened",
|
|
689
692
|
"kind": 524288,
|
|
690
693
|
"kindString": "Get signature",
|
|
@@ -708,7 +711,7 @@
|
|
|
708
711
|
]
|
|
709
712
|
},
|
|
710
713
|
{
|
|
711
|
-
"id":
|
|
714
|
+
"id": 198,
|
|
712
715
|
"name": "cancel",
|
|
713
716
|
"kind": 2048,
|
|
714
717
|
"kindString": "Method",
|
|
@@ -724,7 +727,7 @@
|
|
|
724
727
|
],
|
|
725
728
|
"signatures": [
|
|
726
729
|
{
|
|
727
|
-
"id":
|
|
730
|
+
"id": 199,
|
|
728
731
|
"name": "cancel",
|
|
729
732
|
"kind": 4096,
|
|
730
733
|
"kindString": "Call signature",
|
|
@@ -734,7 +737,7 @@
|
|
|
734
737
|
},
|
|
735
738
|
"parameters": [
|
|
736
739
|
{
|
|
737
|
-
"id":
|
|
740
|
+
"id": 200,
|
|
738
741
|
"name": "result",
|
|
739
742
|
"kind": 32768,
|
|
740
743
|
"kindString": "Parameter",
|
|
@@ -758,7 +761,7 @@
|
|
|
758
761
|
]
|
|
759
762
|
},
|
|
760
763
|
{
|
|
761
|
-
"id":
|
|
764
|
+
"id": 193,
|
|
762
765
|
"name": "close",
|
|
763
766
|
"kind": 2048,
|
|
764
767
|
"kindString": "Method",
|
|
@@ -774,7 +777,7 @@
|
|
|
774
777
|
],
|
|
775
778
|
"signatures": [
|
|
776
779
|
{
|
|
777
|
-
"id":
|
|
780
|
+
"id": 194,
|
|
778
781
|
"name": "close",
|
|
779
782
|
"kind": 4096,
|
|
780
783
|
"kindString": "Call signature",
|
|
@@ -784,7 +787,7 @@
|
|
|
784
787
|
},
|
|
785
788
|
"parameters": [
|
|
786
789
|
{
|
|
787
|
-
"id":
|
|
790
|
+
"id": 195,
|
|
788
791
|
"name": "result",
|
|
789
792
|
"kind": 32768,
|
|
790
793
|
"kindString": "Parameter",
|
|
@@ -800,7 +803,7 @@
|
|
|
800
803
|
}
|
|
801
804
|
},
|
|
802
805
|
{
|
|
803
|
-
"id":
|
|
806
|
+
"id": 196,
|
|
804
807
|
"name": "reason",
|
|
805
808
|
"kind": 32768,
|
|
806
809
|
"kindString": "Parameter",
|
|
@@ -816,7 +819,7 @@
|
|
|
816
819
|
}
|
|
817
820
|
},
|
|
818
821
|
{
|
|
819
|
-
"id":
|
|
822
|
+
"id": 197,
|
|
820
823
|
"name": "ignoreBeforeClose",
|
|
821
824
|
"kind": 32768,
|
|
822
825
|
"kindString": "Parameter",
|
|
@@ -840,7 +843,7 @@
|
|
|
840
843
|
]
|
|
841
844
|
},
|
|
842
845
|
{
|
|
843
|
-
"id":
|
|
846
|
+
"id": 204,
|
|
844
847
|
"name": "openHelp",
|
|
845
848
|
"kind": 2048,
|
|
846
849
|
"kindString": "Method",
|
|
@@ -856,7 +859,7 @@
|
|
|
856
859
|
],
|
|
857
860
|
"signatures": [
|
|
858
861
|
{
|
|
859
|
-
"id":
|
|
862
|
+
"id": 205,
|
|
860
863
|
"name": "openHelp",
|
|
861
864
|
"kind": 4096,
|
|
862
865
|
"kindString": "Call signature",
|
|
@@ -866,7 +869,7 @@
|
|
|
866
869
|
},
|
|
867
870
|
"parameters": [
|
|
868
871
|
{
|
|
869
|
-
"id":
|
|
872
|
+
"id": 206,
|
|
870
873
|
"name": "helpKey",
|
|
871
874
|
"kind": 32768,
|
|
872
875
|
"kindString": "Parameter",
|
|
@@ -888,7 +891,7 @@
|
|
|
888
891
|
]
|
|
889
892
|
},
|
|
890
893
|
{
|
|
891
|
-
"id":
|
|
894
|
+
"id": 201,
|
|
892
895
|
"name": "save",
|
|
893
896
|
"kind": 2048,
|
|
894
897
|
"kindString": "Method",
|
|
@@ -904,7 +907,7 @@
|
|
|
904
907
|
],
|
|
905
908
|
"signatures": [
|
|
906
909
|
{
|
|
907
|
-
"id":
|
|
910
|
+
"id": 202,
|
|
908
911
|
"name": "save",
|
|
909
912
|
"kind": 4096,
|
|
910
913
|
"kindString": "Call signature",
|
|
@@ -914,7 +917,7 @@
|
|
|
914
917
|
},
|
|
915
918
|
"parameters": [
|
|
916
919
|
{
|
|
917
|
-
"id":
|
|
920
|
+
"id": 203,
|
|
918
921
|
"name": "result",
|
|
919
922
|
"kind": 32768,
|
|
920
923
|
"kindString": "Parameter",
|
|
@@ -943,33 +946,33 @@
|
|
|
943
946
|
"title": "Constructors",
|
|
944
947
|
"kind": 512,
|
|
945
948
|
"children": [
|
|
946
|
-
|
|
949
|
+
181
|
|
947
950
|
]
|
|
948
951
|
},
|
|
949
952
|
{
|
|
950
953
|
"title": "Properties",
|
|
951
954
|
"kind": 1024,
|
|
952
955
|
"children": [
|
|
953
|
-
|
|
956
|
+
189
|
|
954
957
|
]
|
|
955
958
|
},
|
|
956
959
|
{
|
|
957
960
|
"title": "Accessors",
|
|
958
961
|
"kind": 262144,
|
|
959
962
|
"children": [
|
|
960
|
-
181,
|
|
961
963
|
183,
|
|
962
|
-
185
|
|
964
|
+
185,
|
|
965
|
+
187
|
|
963
966
|
]
|
|
964
967
|
},
|
|
965
968
|
{
|
|
966
969
|
"title": "Methods",
|
|
967
970
|
"kind": 2048,
|
|
968
971
|
"children": [
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
972
|
+
198,
|
|
973
|
+
193,
|
|
974
|
+
204,
|
|
975
|
+
201
|
|
973
976
|
]
|
|
974
977
|
}
|
|
975
978
|
],
|
|
@@ -982,7 +985,7 @@
|
|
|
982
985
|
]
|
|
983
986
|
},
|
|
984
987
|
{
|
|
985
|
-
"id":
|
|
988
|
+
"id": 225,
|
|
986
989
|
"name": "SkyModalModule",
|
|
987
990
|
"kind": 128,
|
|
988
991
|
"kindString": "Class",
|
|
@@ -1007,7 +1010,7 @@
|
|
|
1007
1010
|
"title": "Constructors",
|
|
1008
1011
|
"kind": 512,
|
|
1009
1012
|
"children": [
|
|
1010
|
-
|
|
1013
|
+
226
|
|
1011
1014
|
]
|
|
1012
1015
|
}
|
|
1013
1016
|
],
|
|
@@ -1020,7 +1023,7 @@
|
|
|
1020
1023
|
]
|
|
1021
1024
|
},
|
|
1022
1025
|
{
|
|
1023
|
-
"id":
|
|
1026
|
+
"id": 228,
|
|
1024
1027
|
"name": "SkyModalService",
|
|
1025
1028
|
"kind": 128,
|
|
1026
1029
|
"kindString": "Class",
|
|
@@ -1050,7 +1053,7 @@
|
|
|
1050
1053
|
],
|
|
1051
1054
|
"children": [
|
|
1052
1055
|
{
|
|
1053
|
-
"id":
|
|
1056
|
+
"id": 230,
|
|
1054
1057
|
"name": "constructor",
|
|
1055
1058
|
"kind": 512,
|
|
1056
1059
|
"kindString": "Constructor",
|
|
@@ -1064,14 +1067,14 @@
|
|
|
1064
1067
|
],
|
|
1065
1068
|
"signatures": [
|
|
1066
1069
|
{
|
|
1067
|
-
"id":
|
|
1070
|
+
"id": 231,
|
|
1068
1071
|
"name": "new SkyModalService",
|
|
1069
1072
|
"kind": 16384,
|
|
1070
1073
|
"kindString": "Constructor signature",
|
|
1071
1074
|
"flags": {},
|
|
1072
1075
|
"parameters": [
|
|
1073
1076
|
{
|
|
1074
|
-
"id":
|
|
1077
|
+
"id": 232,
|
|
1075
1078
|
"name": "dynamicComponentService",
|
|
1076
1079
|
"kind": 32768,
|
|
1077
1080
|
"kindString": "Parameter",
|
|
@@ -1086,14 +1089,14 @@
|
|
|
1086
1089
|
],
|
|
1087
1090
|
"type": {
|
|
1088
1091
|
"type": "reference",
|
|
1089
|
-
"id":
|
|
1092
|
+
"id": 228,
|
|
1090
1093
|
"name": "SkyModalService"
|
|
1091
1094
|
}
|
|
1092
1095
|
}
|
|
1093
1096
|
]
|
|
1094
1097
|
},
|
|
1095
1098
|
{
|
|
1096
|
-
"id":
|
|
1099
|
+
"id": 236,
|
|
1097
1100
|
"name": "open",
|
|
1098
1101
|
"kind": 2048,
|
|
1099
1102
|
"kindString": "Method",
|
|
@@ -1109,7 +1112,7 @@
|
|
|
1109
1112
|
],
|
|
1110
1113
|
"signatures": [
|
|
1111
1114
|
{
|
|
1112
|
-
"id":
|
|
1115
|
+
"id": 237,
|
|
1113
1116
|
"name": "open",
|
|
1114
1117
|
"kind": 4096,
|
|
1115
1118
|
"kindString": "Call signature",
|
|
@@ -1119,7 +1122,7 @@
|
|
|
1119
1122
|
},
|
|
1120
1123
|
"parameters": [
|
|
1121
1124
|
{
|
|
1122
|
-
"id":
|
|
1125
|
+
"id": 238,
|
|
1123
1126
|
"name": "component",
|
|
1124
1127
|
"kind": 32768,
|
|
1125
1128
|
"kindString": "Parameter",
|
|
@@ -1133,7 +1136,7 @@
|
|
|
1133
1136
|
}
|
|
1134
1137
|
},
|
|
1135
1138
|
{
|
|
1136
|
-
"id":
|
|
1139
|
+
"id": 239,
|
|
1137
1140
|
"name": "config",
|
|
1138
1141
|
"kind": 32768,
|
|
1139
1142
|
"kindString": "Parameter",
|
|
@@ -1155,7 +1158,7 @@
|
|
|
1155
1158
|
},
|
|
1156
1159
|
{
|
|
1157
1160
|
"type": "reference",
|
|
1158
|
-
"id":
|
|
1161
|
+
"id": 215,
|
|
1159
1162
|
"name": "SkyModalConfigurationInterface"
|
|
1160
1163
|
}
|
|
1161
1164
|
]
|
|
@@ -1164,7 +1167,7 @@
|
|
|
1164
1167
|
],
|
|
1165
1168
|
"type": {
|
|
1166
1169
|
"type": "reference",
|
|
1167
|
-
"id":
|
|
1170
|
+
"id": 180,
|
|
1168
1171
|
"name": "SkyModalInstance"
|
|
1169
1172
|
}
|
|
1170
1173
|
}
|
|
@@ -1176,14 +1179,14 @@
|
|
|
1176
1179
|
"title": "Constructors",
|
|
1177
1180
|
"kind": 512,
|
|
1178
1181
|
"children": [
|
|
1179
|
-
|
|
1182
|
+
230
|
|
1180
1183
|
]
|
|
1181
1184
|
},
|
|
1182
1185
|
{
|
|
1183
1186
|
"title": "Methods",
|
|
1184
1187
|
"kind": 2048,
|
|
1185
1188
|
"children": [
|
|
1186
|
-
|
|
1189
|
+
236
|
|
1187
1190
|
]
|
|
1188
1191
|
}
|
|
1189
1192
|
],
|
|
@@ -1225,7 +1228,7 @@
|
|
|
1225
1228
|
"sources": [
|
|
1226
1229
|
{
|
|
1227
1230
|
"fileName": "projects/modals/src/modules/confirm/confirm.component.ts",
|
|
1228
|
-
"line":
|
|
1231
|
+
"line": 31,
|
|
1229
1232
|
"character": 2
|
|
1230
1233
|
}
|
|
1231
1234
|
],
|
|
@@ -1259,7 +1262,7 @@
|
|
|
1259
1262
|
],
|
|
1260
1263
|
"type": {
|
|
1261
1264
|
"type": "reference",
|
|
1262
|
-
"id":
|
|
1265
|
+
"id": 105,
|
|
1263
1266
|
"name": "SkyConfirmConfig"
|
|
1264
1267
|
}
|
|
1265
1268
|
},
|
|
@@ -1271,7 +1274,7 @@
|
|
|
1271
1274
|
"flags": {},
|
|
1272
1275
|
"type": {
|
|
1273
1276
|
"type": "reference",
|
|
1274
|
-
"id":
|
|
1277
|
+
"id": 180,
|
|
1275
1278
|
"name": "SkyModalInstance"
|
|
1276
1279
|
}
|
|
1277
1280
|
},
|
|
@@ -1350,6 +1353,27 @@
|
|
|
1350
1353
|
}
|
|
1351
1354
|
}
|
|
1352
1355
|
},
|
|
1356
|
+
{
|
|
1357
|
+
"id": 13,
|
|
1358
|
+
"name": "isOkType",
|
|
1359
|
+
"kind": 1024,
|
|
1360
|
+
"kindString": "Property",
|
|
1361
|
+
"flags": {
|
|
1362
|
+
"isPublic": true
|
|
1363
|
+
},
|
|
1364
|
+
"sources": [
|
|
1365
|
+
{
|
|
1366
|
+
"fileName": "projects/modals/src/modules/confirm/confirm.component.ts",
|
|
1367
|
+
"line": 25,
|
|
1368
|
+
"character": 9
|
|
1369
|
+
}
|
|
1370
|
+
],
|
|
1371
|
+
"type": {
|
|
1372
|
+
"type": "intrinsic",
|
|
1373
|
+
"name": "boolean"
|
|
1374
|
+
},
|
|
1375
|
+
"defaultValue": "false"
|
|
1376
|
+
},
|
|
1353
1377
|
{
|
|
1354
1378
|
"id": 10,
|
|
1355
1379
|
"name": "message",
|
|
@@ -1392,7 +1416,7 @@
|
|
|
1392
1416
|
"defaultValue": "false"
|
|
1393
1417
|
},
|
|
1394
1418
|
{
|
|
1395
|
-
"id":
|
|
1419
|
+
"id": 17,
|
|
1396
1420
|
"name": "close",
|
|
1397
1421
|
"kind": 2048,
|
|
1398
1422
|
"kindString": "Method",
|
|
@@ -1402,20 +1426,20 @@
|
|
|
1402
1426
|
"sources": [
|
|
1403
1427
|
{
|
|
1404
1428
|
"fileName": "projects/modals/src/modules/confirm/confirm.component.ts",
|
|
1405
|
-
"line":
|
|
1429
|
+
"line": 59,
|
|
1406
1430
|
"character": 9
|
|
1407
1431
|
}
|
|
1408
1432
|
],
|
|
1409
1433
|
"signatures": [
|
|
1410
1434
|
{
|
|
1411
|
-
"id":
|
|
1435
|
+
"id": 18,
|
|
1412
1436
|
"name": "close",
|
|
1413
1437
|
"kind": 4096,
|
|
1414
1438
|
"kindString": "Call signature",
|
|
1415
1439
|
"flags": {},
|
|
1416
1440
|
"parameters": [
|
|
1417
1441
|
{
|
|
1418
|
-
"id":
|
|
1442
|
+
"id": 19,
|
|
1419
1443
|
"name": "button",
|
|
1420
1444
|
"kind": 32768,
|
|
1421
1445
|
"kindString": "Parameter",
|
|
@@ -1448,6 +1472,7 @@
|
|
|
1448
1472
|
"children": [
|
|
1449
1473
|
11,
|
|
1450
1474
|
9,
|
|
1475
|
+
13,
|
|
1451
1476
|
10,
|
|
1452
1477
|
12
|
|
1453
1478
|
]
|
|
@@ -1456,7 +1481,7 @@
|
|
|
1456
1481
|
"title": "Methods",
|
|
1457
1482
|
"kind": 2048,
|
|
1458
1483
|
"children": [
|
|
1459
|
-
|
|
1484
|
+
17
|
|
1460
1485
|
]
|
|
1461
1486
|
}
|
|
1462
1487
|
],
|
|
@@ -1469,7 +1494,7 @@
|
|
|
1469
1494
|
]
|
|
1470
1495
|
},
|
|
1471
1496
|
{
|
|
1472
|
-
"id":
|
|
1497
|
+
"id": 25,
|
|
1473
1498
|
"name": "SkyModalContentComponent",
|
|
1474
1499
|
"kind": 128,
|
|
1475
1500
|
"kindString": "Class",
|
|
@@ -1497,7 +1522,7 @@
|
|
|
1497
1522
|
"title": "Constructors",
|
|
1498
1523
|
"kind": 512,
|
|
1499
1524
|
"children": [
|
|
1500
|
-
|
|
1525
|
+
26
|
|
1501
1526
|
]
|
|
1502
1527
|
}
|
|
1503
1528
|
],
|
|
@@ -1510,7 +1535,7 @@
|
|
|
1510
1535
|
]
|
|
1511
1536
|
},
|
|
1512
1537
|
{
|
|
1513
|
-
"id":
|
|
1538
|
+
"id": 28,
|
|
1514
1539
|
"name": "SkyModalFooterComponent",
|
|
1515
1540
|
"kind": 128,
|
|
1516
1541
|
"kindString": "Class",
|
|
@@ -1538,7 +1563,7 @@
|
|
|
1538
1563
|
"title": "Constructors",
|
|
1539
1564
|
"kind": 512,
|
|
1540
1565
|
"children": [
|
|
1541
|
-
|
|
1566
|
+
29
|
|
1542
1567
|
]
|
|
1543
1568
|
}
|
|
1544
1569
|
],
|
|
@@ -1551,7 +1576,7 @@
|
|
|
1551
1576
|
]
|
|
1552
1577
|
},
|
|
1553
1578
|
{
|
|
1554
|
-
"id":
|
|
1579
|
+
"id": 31,
|
|
1555
1580
|
"name": "SkyModalHeaderComponent",
|
|
1556
1581
|
"kind": 128,
|
|
1557
1582
|
"kindString": "Class",
|
|
@@ -1579,7 +1604,7 @@
|
|
|
1579
1604
|
"title": "Constructors",
|
|
1580
1605
|
"kind": 512,
|
|
1581
1606
|
"children": [
|
|
1582
|
-
|
|
1607
|
+
32
|
|
1583
1608
|
]
|
|
1584
1609
|
}
|
|
1585
1610
|
],
|
|
@@ -1592,7 +1617,7 @@
|
|
|
1592
1617
|
]
|
|
1593
1618
|
},
|
|
1594
1619
|
{
|
|
1595
|
-
"id":
|
|
1620
|
+
"id": 34,
|
|
1596
1621
|
"name": "SkyModalComponent",
|
|
1597
1622
|
"kind": 128,
|
|
1598
1623
|
"kindString": "Class",
|
|
@@ -1616,7 +1641,7 @@
|
|
|
1616
1641
|
],
|
|
1617
1642
|
"children": [
|
|
1618
1643
|
{
|
|
1619
|
-
"id":
|
|
1644
|
+
"id": 35,
|
|
1620
1645
|
"name": "constructor",
|
|
1621
1646
|
"kind": 512,
|
|
1622
1647
|
"kindString": "Constructor",
|
|
@@ -1630,14 +1655,14 @@
|
|
|
1630
1655
|
],
|
|
1631
1656
|
"signatures": [
|
|
1632
1657
|
{
|
|
1633
|
-
"id":
|
|
1658
|
+
"id": 36,
|
|
1634
1659
|
"name": "SkyModalComponent",
|
|
1635
1660
|
"kind": 16384,
|
|
1636
1661
|
"kindString": "Constructor signature",
|
|
1637
1662
|
"flags": {},
|
|
1638
1663
|
"parameters": [
|
|
1639
1664
|
{
|
|
1640
|
-
"id":
|
|
1665
|
+
"id": 37,
|
|
1641
1666
|
"name": "hostService",
|
|
1642
1667
|
"kind": 32768,
|
|
1643
1668
|
"kindString": "Parameter",
|
|
@@ -1648,7 +1673,7 @@
|
|
|
1648
1673
|
}
|
|
1649
1674
|
},
|
|
1650
1675
|
{
|
|
1651
|
-
"id":
|
|
1676
|
+
"id": 38,
|
|
1652
1677
|
"name": "config",
|
|
1653
1678
|
"kind": 32768,
|
|
1654
1679
|
"kindString": "Parameter",
|
|
@@ -1659,7 +1684,7 @@
|
|
|
1659
1684
|
}
|
|
1660
1685
|
},
|
|
1661
1686
|
{
|
|
1662
|
-
"id":
|
|
1687
|
+
"id": 39,
|
|
1663
1688
|
"name": "elRef",
|
|
1664
1689
|
"kind": 32768,
|
|
1665
1690
|
"kindString": "Parameter",
|
|
@@ -1678,7 +1703,7 @@
|
|
|
1678
1703
|
}
|
|
1679
1704
|
},
|
|
1680
1705
|
{
|
|
1681
|
-
"id":
|
|
1706
|
+
"id": 40,
|
|
1682
1707
|
"name": "windowRef",
|
|
1683
1708
|
"kind": 32768,
|
|
1684
1709
|
"kindString": "Parameter",
|
|
@@ -1689,7 +1714,7 @@
|
|
|
1689
1714
|
}
|
|
1690
1715
|
},
|
|
1691
1716
|
{
|
|
1692
|
-
"id":
|
|
1717
|
+
"id": 41,
|
|
1693
1718
|
"name": "componentAdapter",
|
|
1694
1719
|
"kind": 32768,
|
|
1695
1720
|
"kindString": "Parameter",
|
|
@@ -1700,7 +1725,7 @@
|
|
|
1700
1725
|
}
|
|
1701
1726
|
},
|
|
1702
1727
|
{
|
|
1703
|
-
"id":
|
|
1728
|
+
"id": 42,
|
|
1704
1729
|
"name": "coreAdapter",
|
|
1705
1730
|
"kind": 32768,
|
|
1706
1731
|
"kindString": "Parameter",
|
|
@@ -1711,7 +1736,7 @@
|
|
|
1711
1736
|
}
|
|
1712
1737
|
},
|
|
1713
1738
|
{
|
|
1714
|
-
"id":
|
|
1739
|
+
"id": 43,
|
|
1715
1740
|
"name": "dockService",
|
|
1716
1741
|
"kind": 32768,
|
|
1717
1742
|
"kindString": "Parameter",
|
|
@@ -1734,7 +1759,7 @@
|
|
|
1734
1759
|
}
|
|
1735
1760
|
},
|
|
1736
1761
|
{
|
|
1737
|
-
"id":
|
|
1762
|
+
"id": 44,
|
|
1738
1763
|
"name": "mediaQueryService",
|
|
1739
1764
|
"kind": 32768,
|
|
1740
1765
|
"kindString": "Parameter",
|
|
@@ -1761,14 +1786,14 @@
|
|
|
1761
1786
|
],
|
|
1762
1787
|
"type": {
|
|
1763
1788
|
"type": "reference",
|
|
1764
|
-
"id":
|
|
1789
|
+
"id": 34,
|
|
1765
1790
|
"name": "SkyModalComponent"
|
|
1766
1791
|
}
|
|
1767
1792
|
}
|
|
1768
1793
|
]
|
|
1769
1794
|
},
|
|
1770
1795
|
{
|
|
1771
|
-
"id":
|
|
1796
|
+
"id": 52,
|
|
1772
1797
|
"name": "ariaDescribedBy",
|
|
1773
1798
|
"kind": 1024,
|
|
1774
1799
|
"kindString": "Property",
|
|
@@ -1788,7 +1813,7 @@
|
|
|
1788
1813
|
}
|
|
1789
1814
|
},
|
|
1790
1815
|
{
|
|
1791
|
-
"id":
|
|
1816
|
+
"id": 53,
|
|
1792
1817
|
"name": "ariaLabelledBy",
|
|
1793
1818
|
"kind": 1024,
|
|
1794
1819
|
"kindString": "Property",
|
|
@@ -1808,7 +1833,7 @@
|
|
|
1808
1833
|
}
|
|
1809
1834
|
},
|
|
1810
1835
|
{
|
|
1811
|
-
"id":
|
|
1836
|
+
"id": 50,
|
|
1812
1837
|
"name": "ariaRoleOrDefault",
|
|
1813
1838
|
"kind": 1024,
|
|
1814
1839
|
"kindString": "Property",
|
|
@@ -1829,7 +1854,7 @@
|
|
|
1829
1854
|
"defaultValue": "ARIA_ROLE_DEFAULT"
|
|
1830
1855
|
},
|
|
1831
1856
|
{
|
|
1832
|
-
"id":
|
|
1857
|
+
"id": 54,
|
|
1833
1858
|
"name": "helpKey",
|
|
1834
1859
|
"kind": 1024,
|
|
1835
1860
|
"kindString": "Property",
|
|
@@ -1849,7 +1874,7 @@
|
|
|
1849
1874
|
}
|
|
1850
1875
|
},
|
|
1851
1876
|
{
|
|
1852
|
-
"id":
|
|
1877
|
+
"id": 56,
|
|
1853
1878
|
"name": "modalContentId",
|
|
1854
1879
|
"kind": 1024,
|
|
1855
1880
|
"kindString": "Property",
|
|
@@ -1870,7 +1895,7 @@
|
|
|
1870
1895
|
"defaultValue": "..."
|
|
1871
1896
|
},
|
|
1872
1897
|
{
|
|
1873
|
-
"id":
|
|
1898
|
+
"id": 57,
|
|
1874
1899
|
"name": "modalHeaderId",
|
|
1875
1900
|
"kind": 1024,
|
|
1876
1901
|
"kindString": "Property",
|
|
@@ -1891,7 +1916,7 @@
|
|
|
1891
1916
|
"defaultValue": "..."
|
|
1892
1917
|
},
|
|
1893
1918
|
{
|
|
1894
|
-
"id":
|
|
1919
|
+
"id": 55,
|
|
1895
1920
|
"name": "modalState",
|
|
1896
1921
|
"kind": 1024,
|
|
1897
1922
|
"kindString": "Property",
|
|
@@ -1912,7 +1937,7 @@
|
|
|
1912
1937
|
"defaultValue": "'in'"
|
|
1913
1938
|
},
|
|
1914
1939
|
{
|
|
1915
|
-
"id":
|
|
1940
|
+
"id": 58,
|
|
1916
1941
|
"name": "modalZIndex",
|
|
1917
1942
|
"kind": 1024,
|
|
1918
1943
|
"kindString": "Property",
|
|
@@ -1932,7 +1957,7 @@
|
|
|
1932
1957
|
}
|
|
1933
1958
|
},
|
|
1934
1959
|
{
|
|
1935
|
-
"id":
|
|
1960
|
+
"id": 59,
|
|
1936
1961
|
"name": "scrollShadow",
|
|
1937
1962
|
"kind": 1024,
|
|
1938
1963
|
"kindString": "Property",
|
|
@@ -1952,7 +1977,7 @@
|
|
|
1952
1977
|
}
|
|
1953
1978
|
},
|
|
1954
1979
|
{
|
|
1955
|
-
"id":
|
|
1980
|
+
"id": 60,
|
|
1956
1981
|
"name": "size",
|
|
1957
1982
|
"kind": 1024,
|
|
1958
1983
|
"kindString": "Property",
|
|
@@ -1972,7 +1997,7 @@
|
|
|
1972
1997
|
}
|
|
1973
1998
|
},
|
|
1974
1999
|
{
|
|
1975
|
-
"id":
|
|
2000
|
+
"id": 45,
|
|
1976
2001
|
"name": "wrapperClass",
|
|
1977
2002
|
"kind": 1024,
|
|
1978
2003
|
"kindString": "Property",
|
|
@@ -2006,7 +2031,7 @@
|
|
|
2006
2031
|
}
|
|
2007
2032
|
},
|
|
2008
2033
|
{
|
|
2009
|
-
"id":
|
|
2034
|
+
"id": 82,
|
|
2010
2035
|
"name": "closeButtonClick",
|
|
2011
2036
|
"kind": 2048,
|
|
2012
2037
|
"kindString": "Method",
|
|
@@ -2022,7 +2047,7 @@
|
|
|
2022
2047
|
],
|
|
2023
2048
|
"signatures": [
|
|
2024
2049
|
{
|
|
2025
|
-
"id":
|
|
2050
|
+
"id": 83,
|
|
2026
2051
|
"name": "closeButtonClick",
|
|
2027
2052
|
"kind": 4096,
|
|
2028
2053
|
"kindString": "Call signature",
|
|
@@ -2035,7 +2060,7 @@
|
|
|
2035
2060
|
]
|
|
2036
2061
|
},
|
|
2037
2062
|
{
|
|
2038
|
-
"id":
|
|
2063
|
+
"id": 80,
|
|
2039
2064
|
"name": "helpButtonClick",
|
|
2040
2065
|
"kind": 2048,
|
|
2041
2066
|
"kindString": "Method",
|
|
@@ -2051,7 +2076,7 @@
|
|
|
2051
2076
|
],
|
|
2052
2077
|
"signatures": [
|
|
2053
2078
|
{
|
|
2054
|
-
"id":
|
|
2079
|
+
"id": 81,
|
|
2055
2080
|
"name": "helpButtonClick",
|
|
2056
2081
|
"kind": 4096,
|
|
2057
2082
|
"kindString": "Call signature",
|
|
@@ -2064,7 +2089,7 @@
|
|
|
2064
2089
|
]
|
|
2065
2090
|
},
|
|
2066
2091
|
{
|
|
2067
|
-
"id":
|
|
2092
|
+
"id": 76,
|
|
2068
2093
|
"name": "ngAfterViewInit",
|
|
2069
2094
|
"kind": 2048,
|
|
2070
2095
|
"kindString": "Method",
|
|
@@ -2080,7 +2105,7 @@
|
|
|
2080
2105
|
],
|
|
2081
2106
|
"signatures": [
|
|
2082
2107
|
{
|
|
2083
|
-
"id":
|
|
2108
|
+
"id": 77,
|
|
2084
2109
|
"name": "ngAfterViewInit",
|
|
2085
2110
|
"kind": 4096,
|
|
2086
2111
|
"kindString": "Call signature",
|
|
@@ -2101,7 +2126,7 @@
|
|
|
2101
2126
|
}
|
|
2102
2127
|
},
|
|
2103
2128
|
{
|
|
2104
|
-
"id":
|
|
2129
|
+
"id": 78,
|
|
2105
2130
|
"name": "ngOnDestroy",
|
|
2106
2131
|
"kind": 2048,
|
|
2107
2132
|
"kindString": "Method",
|
|
@@ -2117,7 +2142,7 @@
|
|
|
2117
2142
|
],
|
|
2118
2143
|
"signatures": [
|
|
2119
2144
|
{
|
|
2120
|
-
"id":
|
|
2145
|
+
"id": 79,
|
|
2121
2146
|
"name": "ngOnDestroy",
|
|
2122
2147
|
"kind": 4096,
|
|
2123
2148
|
"kindString": "Call signature",
|
|
@@ -2138,7 +2163,7 @@
|
|
|
2138
2163
|
}
|
|
2139
2164
|
},
|
|
2140
2165
|
{
|
|
2141
|
-
"id":
|
|
2166
|
+
"id": 73,
|
|
2142
2167
|
"name": "onDocumentKeyDown",
|
|
2143
2168
|
"kind": 2048,
|
|
2144
2169
|
"kindString": "Method",
|
|
@@ -2169,14 +2194,14 @@
|
|
|
2169
2194
|
],
|
|
2170
2195
|
"signatures": [
|
|
2171
2196
|
{
|
|
2172
|
-
"id":
|
|
2197
|
+
"id": 74,
|
|
2173
2198
|
"name": "onDocumentKeyDown",
|
|
2174
2199
|
"kind": 4096,
|
|
2175
2200
|
"kindString": "Call signature",
|
|
2176
2201
|
"flags": {},
|
|
2177
2202
|
"parameters": [
|
|
2178
2203
|
{
|
|
2179
|
-
"id":
|
|
2204
|
+
"id": 75,
|
|
2180
2205
|
"name": "event",
|
|
2181
2206
|
"kind": 32768,
|
|
2182
2207
|
"kindString": "Parameter",
|
|
@@ -2197,7 +2222,7 @@
|
|
|
2197
2222
|
]
|
|
2198
2223
|
},
|
|
2199
2224
|
{
|
|
2200
|
-
"id":
|
|
2225
|
+
"id": 70,
|
|
2201
2226
|
"name": "onDocumentKeyUp",
|
|
2202
2227
|
"kind": 2048,
|
|
2203
2228
|
"kindString": "Method",
|
|
@@ -2228,14 +2253,14 @@
|
|
|
2228
2253
|
],
|
|
2229
2254
|
"signatures": [
|
|
2230
2255
|
{
|
|
2231
|
-
"id":
|
|
2256
|
+
"id": 71,
|
|
2232
2257
|
"name": "onDocumentKeyUp",
|
|
2233
2258
|
"kind": 4096,
|
|
2234
2259
|
"kindString": "Call signature",
|
|
2235
2260
|
"flags": {},
|
|
2236
2261
|
"parameters": [
|
|
2237
2262
|
{
|
|
2238
|
-
"id":
|
|
2263
|
+
"id": 72,
|
|
2239
2264
|
"name": "event",
|
|
2240
2265
|
"kind": 32768,
|
|
2241
2266
|
"kindString": "Parameter",
|
|
@@ -2256,7 +2281,7 @@
|
|
|
2256
2281
|
]
|
|
2257
2282
|
},
|
|
2258
2283
|
{
|
|
2259
|
-
"id":
|
|
2284
|
+
"id": 86,
|
|
2260
2285
|
"name": "scrollShadowChange",
|
|
2261
2286
|
"kind": 2048,
|
|
2262
2287
|
"kindString": "Method",
|
|
@@ -2272,14 +2297,14 @@
|
|
|
2272
2297
|
],
|
|
2273
2298
|
"signatures": [
|
|
2274
2299
|
{
|
|
2275
|
-
"id":
|
|
2300
|
+
"id": 87,
|
|
2276
2301
|
"name": "scrollShadowChange",
|
|
2277
2302
|
"kind": 4096,
|
|
2278
2303
|
"kindString": "Call signature",
|
|
2279
2304
|
"flags": {},
|
|
2280
2305
|
"parameters": [
|
|
2281
2306
|
{
|
|
2282
|
-
"id":
|
|
2307
|
+
"id": 88,
|
|
2283
2308
|
"name": "args",
|
|
2284
2309
|
"kind": 32768,
|
|
2285
2310
|
"kindString": "Parameter",
|
|
@@ -2298,7 +2323,7 @@
|
|
|
2298
2323
|
]
|
|
2299
2324
|
},
|
|
2300
2325
|
{
|
|
2301
|
-
"id":
|
|
2326
|
+
"id": 89,
|
|
2302
2327
|
"name": "viewkeeperEnabled",
|
|
2303
2328
|
"kind": 2048,
|
|
2304
2329
|
"kindString": "Method",
|
|
@@ -2314,7 +2339,7 @@
|
|
|
2314
2339
|
],
|
|
2315
2340
|
"signatures": [
|
|
2316
2341
|
{
|
|
2317
|
-
"id":
|
|
2342
|
+
"id": 90,
|
|
2318
2343
|
"name": "viewkeeperEnabled",
|
|
2319
2344
|
"kind": 4096,
|
|
2320
2345
|
"kindString": "Call signature",
|
|
@@ -2327,7 +2352,7 @@
|
|
|
2327
2352
|
]
|
|
2328
2353
|
},
|
|
2329
2354
|
{
|
|
2330
|
-
"id":
|
|
2355
|
+
"id": 84,
|
|
2331
2356
|
"name": "windowResize",
|
|
2332
2357
|
"kind": 2048,
|
|
2333
2358
|
"kindString": "Method",
|
|
@@ -2343,7 +2368,7 @@
|
|
|
2343
2368
|
],
|
|
2344
2369
|
"signatures": [
|
|
2345
2370
|
{
|
|
2346
|
-
"id":
|
|
2371
|
+
"id": 85,
|
|
2347
2372
|
"name": "windowResize",
|
|
2348
2373
|
"kind": 4096,
|
|
2349
2374
|
"kindString": "Call signature",
|
|
@@ -2361,39 +2386,39 @@
|
|
|
2361
2386
|
"title": "Constructors",
|
|
2362
2387
|
"kind": 512,
|
|
2363
2388
|
"children": [
|
|
2364
|
-
|
|
2389
|
+
35
|
|
2365
2390
|
]
|
|
2366
2391
|
},
|
|
2367
2392
|
{
|
|
2368
2393
|
"title": "Properties",
|
|
2369
2394
|
"kind": 1024,
|
|
2370
2395
|
"children": [
|
|
2371
|
-
51,
|
|
2372
2396
|
52,
|
|
2373
|
-
49,
|
|
2374
2397
|
53,
|
|
2375
|
-
|
|
2376
|
-
56,
|
|
2398
|
+
50,
|
|
2377
2399
|
54,
|
|
2400
|
+
56,
|
|
2378
2401
|
57,
|
|
2402
|
+
55,
|
|
2379
2403
|
58,
|
|
2380
2404
|
59,
|
|
2381
|
-
|
|
2405
|
+
60,
|
|
2406
|
+
45
|
|
2382
2407
|
]
|
|
2383
2408
|
},
|
|
2384
2409
|
{
|
|
2385
2410
|
"title": "Methods",
|
|
2386
2411
|
"kind": 2048,
|
|
2387
2412
|
"children": [
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2413
|
+
82,
|
|
2414
|
+
80,
|
|
2415
|
+
76,
|
|
2416
|
+
78,
|
|
2417
|
+
73,
|
|
2418
|
+
70,
|
|
2419
|
+
86,
|
|
2420
|
+
89,
|
|
2421
|
+
84
|
|
2397
2422
|
]
|
|
2398
2423
|
}
|
|
2399
2424
|
],
|
|
@@ -2420,14 +2445,14 @@
|
|
|
2420
2445
|
]
|
|
2421
2446
|
},
|
|
2422
2447
|
{
|
|
2423
|
-
"id":
|
|
2448
|
+
"id": 97,
|
|
2424
2449
|
"name": "SkyConfirmButtonConfig",
|
|
2425
2450
|
"kind": 256,
|
|
2426
2451
|
"kindString": "Interface",
|
|
2427
2452
|
"flags": {},
|
|
2428
2453
|
"children": [
|
|
2429
2454
|
{
|
|
2430
|
-
"id":
|
|
2455
|
+
"id": 98,
|
|
2431
2456
|
"name": "action",
|
|
2432
2457
|
"kind": 1024,
|
|
2433
2458
|
"kindString": "Property",
|
|
@@ -2448,7 +2473,7 @@
|
|
|
2448
2473
|
}
|
|
2449
2474
|
},
|
|
2450
2475
|
{
|
|
2451
|
-
"id":
|
|
2476
|
+
"id": 101,
|
|
2452
2477
|
"name": "autofocus",
|
|
2453
2478
|
"kind": 1024,
|
|
2454
2479
|
"kindString": "Property",
|
|
@@ -2456,12 +2481,18 @@
|
|
|
2456
2481
|
"isOptional": true
|
|
2457
2482
|
},
|
|
2458
2483
|
"comment": {
|
|
2459
|
-
"shortText": "Indicates whether to place focus on this button by default."
|
|
2484
|
+
"shortText": "Indicates whether to place focus on this button by default.",
|
|
2485
|
+
"tags": [
|
|
2486
|
+
{
|
|
2487
|
+
"tag": "deprecated",
|
|
2488
|
+
"text": "The confirm component automatically focuses the first interactive\nelement of the dialog.\n"
|
|
2489
|
+
}
|
|
2490
|
+
]
|
|
2460
2491
|
},
|
|
2461
2492
|
"sources": [
|
|
2462
2493
|
{
|
|
2463
2494
|
"fileName": "projects/modals/src/modules/confirm/confirm-button-config.ts",
|
|
2464
|
-
"line":
|
|
2495
|
+
"line": 23,
|
|
2465
2496
|
"character": 2
|
|
2466
2497
|
}
|
|
2467
2498
|
],
|
|
@@ -2471,7 +2502,7 @@
|
|
|
2471
2502
|
}
|
|
2472
2503
|
},
|
|
2473
2504
|
{
|
|
2474
|
-
"id":
|
|
2505
|
+
"id": 100,
|
|
2475
2506
|
"name": "styleType",
|
|
2476
2507
|
"kind": 1024,
|
|
2477
2508
|
"kindString": "Property",
|
|
@@ -2494,7 +2525,7 @@
|
|
|
2494
2525
|
}
|
|
2495
2526
|
},
|
|
2496
2527
|
{
|
|
2497
|
-
"id":
|
|
2528
|
+
"id": 99,
|
|
2498
2529
|
"name": "text",
|
|
2499
2530
|
"kind": 1024,
|
|
2500
2531
|
"kindString": "Property",
|
|
@@ -2520,10 +2551,10 @@
|
|
|
2520
2551
|
"title": "Properties",
|
|
2521
2552
|
"kind": 1024,
|
|
2522
2553
|
"children": [
|
|
2523
|
-
|
|
2554
|
+
98,
|
|
2555
|
+
101,
|
|
2524
2556
|
100,
|
|
2525
|
-
99
|
|
2526
|
-
98
|
|
2557
|
+
99
|
|
2527
2558
|
]
|
|
2528
2559
|
}
|
|
2529
2560
|
],
|
|
@@ -2536,14 +2567,14 @@
|
|
|
2536
2567
|
]
|
|
2537
2568
|
},
|
|
2538
2569
|
{
|
|
2539
|
-
"id":
|
|
2570
|
+
"id": 103,
|
|
2540
2571
|
"name": "SkyConfirmCloseEventArgs",
|
|
2541
2572
|
"kind": 256,
|
|
2542
2573
|
"kindString": "Interface",
|
|
2543
2574
|
"flags": {},
|
|
2544
2575
|
"children": [
|
|
2545
2576
|
{
|
|
2546
|
-
"id":
|
|
2577
|
+
"id": 104,
|
|
2547
2578
|
"name": "action",
|
|
2548
2579
|
"kind": 1024,
|
|
2549
2580
|
"kindString": "Property",
|
|
@@ -2569,7 +2600,7 @@
|
|
|
2569
2600
|
"title": "Properties",
|
|
2570
2601
|
"kind": 1024,
|
|
2571
2602
|
"children": [
|
|
2572
|
-
|
|
2603
|
+
104
|
|
2573
2604
|
]
|
|
2574
2605
|
}
|
|
2575
2606
|
],
|
|
@@ -2582,14 +2613,14 @@
|
|
|
2582
2613
|
]
|
|
2583
2614
|
},
|
|
2584
2615
|
{
|
|
2585
|
-
"id":
|
|
2616
|
+
"id": 105,
|
|
2586
2617
|
"name": "SkyConfirmConfig",
|
|
2587
2618
|
"kind": 256,
|
|
2588
2619
|
"kindString": "Interface",
|
|
2589
2620
|
"flags": {},
|
|
2590
2621
|
"children": [
|
|
2591
2622
|
{
|
|
2592
|
-
"id":
|
|
2623
|
+
"id": 107,
|
|
2593
2624
|
"name": "body",
|
|
2594
2625
|
"kind": 1024,
|
|
2595
2626
|
"kindString": "Property",
|
|
@@ -2612,7 +2643,7 @@
|
|
|
2612
2643
|
}
|
|
2613
2644
|
},
|
|
2614
2645
|
{
|
|
2615
|
-
"id":
|
|
2646
|
+
"id": 108,
|
|
2616
2647
|
"name": "buttons",
|
|
2617
2648
|
"kind": 1024,
|
|
2618
2649
|
"kindString": "Property",
|
|
@@ -2633,13 +2664,13 @@
|
|
|
2633
2664
|
"type": "array",
|
|
2634
2665
|
"elementType": {
|
|
2635
2666
|
"type": "reference",
|
|
2636
|
-
"id":
|
|
2667
|
+
"id": 97,
|
|
2637
2668
|
"name": "SkyConfirmButtonConfig"
|
|
2638
2669
|
}
|
|
2639
2670
|
}
|
|
2640
2671
|
},
|
|
2641
2672
|
{
|
|
2642
|
-
"id":
|
|
2673
|
+
"id": 106,
|
|
2643
2674
|
"name": "message",
|
|
2644
2675
|
"kind": 1024,
|
|
2645
2676
|
"kindString": "Property",
|
|
@@ -2666,7 +2697,7 @@
|
|
|
2666
2697
|
}
|
|
2667
2698
|
},
|
|
2668
2699
|
{
|
|
2669
|
-
"id":
|
|
2700
|
+
"id": 109,
|
|
2670
2701
|
"name": "preserveWhiteSpace",
|
|
2671
2702
|
"kind": 1024,
|
|
2672
2703
|
"kindString": "Property",
|
|
@@ -2695,7 +2726,7 @@
|
|
|
2695
2726
|
}
|
|
2696
2727
|
},
|
|
2697
2728
|
{
|
|
2698
|
-
"id":
|
|
2729
|
+
"id": 110,
|
|
2699
2730
|
"name": "type",
|
|
2700
2731
|
"kind": 1024,
|
|
2701
2732
|
"kindString": "Property",
|
|
@@ -2714,7 +2745,7 @@
|
|
|
2714
2745
|
],
|
|
2715
2746
|
"type": {
|
|
2716
2747
|
"type": "reference",
|
|
2717
|
-
"id":
|
|
2748
|
+
"id": 115,
|
|
2718
2749
|
"name": "SkyConfirmType"
|
|
2719
2750
|
}
|
|
2720
2751
|
}
|
|
@@ -2724,11 +2755,11 @@
|
|
|
2724
2755
|
"title": "Properties",
|
|
2725
2756
|
"kind": 1024,
|
|
2726
2757
|
"children": [
|
|
2727
|
-
105,
|
|
2728
|
-
106,
|
|
2729
|
-
104,
|
|
2730
2758
|
107,
|
|
2731
|
-
108
|
|
2759
|
+
108,
|
|
2760
|
+
106,
|
|
2761
|
+
109,
|
|
2762
|
+
110
|
|
2732
2763
|
]
|
|
2733
2764
|
}
|
|
2734
2765
|
],
|
|
@@ -2741,7 +2772,7 @@
|
|
|
2741
2772
|
]
|
|
2742
2773
|
},
|
|
2743
2774
|
{
|
|
2744
|
-
"id":
|
|
2775
|
+
"id": 215,
|
|
2745
2776
|
"name": "SkyModalConfigurationInterface",
|
|
2746
2777
|
"kind": 256,
|
|
2747
2778
|
"kindString": "Interface",
|
|
@@ -2751,7 +2782,7 @@
|
|
|
2751
2782
|
},
|
|
2752
2783
|
"children": [
|
|
2753
2784
|
{
|
|
2754
|
-
"id":
|
|
2785
|
+
"id": 219,
|
|
2755
2786
|
"name": "ariaDescribedBy",
|
|
2756
2787
|
"kind": 1024,
|
|
2757
2788
|
"kindString": "Property",
|
|
@@ -2774,7 +2805,7 @@
|
|
|
2774
2805
|
}
|
|
2775
2806
|
},
|
|
2776
2807
|
{
|
|
2777
|
-
"id":
|
|
2808
|
+
"id": 220,
|
|
2778
2809
|
"name": "ariaLabelledBy",
|
|
2779
2810
|
"kind": 1024,
|
|
2780
2811
|
"kindString": "Property",
|
|
@@ -2797,7 +2828,7 @@
|
|
|
2797
2828
|
}
|
|
2798
2829
|
},
|
|
2799
2830
|
{
|
|
2800
|
-
"id":
|
|
2831
|
+
"id": 221,
|
|
2801
2832
|
"name": "ariaRole",
|
|
2802
2833
|
"kind": 1024,
|
|
2803
2834
|
"kindString": "Property",
|
|
@@ -2826,7 +2857,7 @@
|
|
|
2826
2857
|
}
|
|
2827
2858
|
},
|
|
2828
2859
|
{
|
|
2829
|
-
"id":
|
|
2860
|
+
"id": 216,
|
|
2830
2861
|
"name": "fullPage",
|
|
2831
2862
|
"kind": 1024,
|
|
2832
2863
|
"kindString": "Property",
|
|
@@ -2849,7 +2880,7 @@
|
|
|
2849
2880
|
}
|
|
2850
2881
|
},
|
|
2851
2882
|
{
|
|
2852
|
-
"id":
|
|
2883
|
+
"id": 223,
|
|
2853
2884
|
"name": "helpKey",
|
|
2854
2885
|
"kind": 1024,
|
|
2855
2886
|
"kindString": "Property",
|
|
@@ -2872,7 +2903,7 @@
|
|
|
2872
2903
|
}
|
|
2873
2904
|
},
|
|
2874
2905
|
{
|
|
2875
|
-
"id":
|
|
2906
|
+
"id": 218,
|
|
2876
2907
|
"name": "providers",
|
|
2877
2908
|
"kind": 1024,
|
|
2878
2909
|
"kindString": "Property",
|
|
@@ -2898,7 +2929,7 @@
|
|
|
2898
2929
|
}
|
|
2899
2930
|
},
|
|
2900
2931
|
{
|
|
2901
|
-
"id":
|
|
2932
|
+
"id": 217,
|
|
2902
2933
|
"name": "size",
|
|
2903
2934
|
"kind": 1024,
|
|
2904
2935
|
"kindString": "Property",
|
|
@@ -2921,7 +2952,7 @@
|
|
|
2921
2952
|
}
|
|
2922
2953
|
},
|
|
2923
2954
|
{
|
|
2924
|
-
"id":
|
|
2955
|
+
"id": 222,
|
|
2925
2956
|
"name": "tiledBody",
|
|
2926
2957
|
"kind": 1024,
|
|
2927
2958
|
"kindString": "Property",
|
|
@@ -2944,7 +2975,7 @@
|
|
|
2944
2975
|
}
|
|
2945
2976
|
},
|
|
2946
2977
|
{
|
|
2947
|
-
"id":
|
|
2978
|
+
"id": 224,
|
|
2948
2979
|
"name": "wrapperClass",
|
|
2949
2980
|
"kind": 1024,
|
|
2950
2981
|
"kindString": "Property",
|
|
@@ -2972,15 +3003,15 @@
|
|
|
2972
3003
|
"title": "Properties",
|
|
2973
3004
|
"kind": 1024,
|
|
2974
3005
|
"children": [
|
|
2975
|
-
217,
|
|
2976
|
-
218,
|
|
2977
3006
|
219,
|
|
2978
|
-
|
|
3007
|
+
220,
|
|
2979
3008
|
221,
|
|
2980
3009
|
216,
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
3010
|
+
223,
|
|
3011
|
+
218,
|
|
3012
|
+
217,
|
|
3013
|
+
222,
|
|
3014
|
+
224
|
|
2984
3015
|
]
|
|
2985
3016
|
}
|
|
2986
3017
|
],
|
|
@@ -2991,29 +3022,642 @@
|
|
|
2991
3022
|
"character": 17
|
|
2992
3023
|
}
|
|
2993
3024
|
]
|
|
2994
|
-
}
|
|
2995
|
-
],
|
|
2996
|
-
"groups": [
|
|
3025
|
+
},
|
|
2997
3026
|
{
|
|
2998
|
-
"
|
|
2999
|
-
"
|
|
3027
|
+
"id": 102,
|
|
3028
|
+
"name": "SkyConfirmButtonStyleType",
|
|
3029
|
+
"kind": 4194304,
|
|
3030
|
+
"kindString": "Type alias",
|
|
3031
|
+
"flags": {},
|
|
3032
|
+
"sources": [
|
|
3033
|
+
{
|
|
3034
|
+
"fileName": "projects/modals/src/modules/confirm/confirm-button-style-type.ts",
|
|
3035
|
+
"line": 1,
|
|
3036
|
+
"character": 12
|
|
3037
|
+
}
|
|
3038
|
+
],
|
|
3039
|
+
"type": {
|
|
3040
|
+
"type": "union",
|
|
3041
|
+
"types": [
|
|
3042
|
+
{
|
|
3043
|
+
"type": "literal",
|
|
3044
|
+
"value": "primary"
|
|
3045
|
+
},
|
|
3046
|
+
{
|
|
3047
|
+
"type": "literal",
|
|
3048
|
+
"value": "default"
|
|
3049
|
+
},
|
|
3050
|
+
{
|
|
3051
|
+
"type": "literal",
|
|
3052
|
+
"value": "link"
|
|
3053
|
+
},
|
|
3054
|
+
{
|
|
3055
|
+
"type": "literal",
|
|
3056
|
+
"value": "danger"
|
|
3057
|
+
}
|
|
3058
|
+
]
|
|
3059
|
+
}
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
"id": 280,
|
|
3063
|
+
"name": "SkyConfirmHarness",
|
|
3064
|
+
"kind": 128,
|
|
3065
|
+
"kindString": "Class",
|
|
3066
|
+
"flags": {},
|
|
3067
|
+
"comment": {
|
|
3068
|
+
"shortText": "Harness for interacting with a confirm component in tests."
|
|
3069
|
+
},
|
|
3000
3070
|
"children": [
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3071
|
+
{
|
|
3072
|
+
"id": 281,
|
|
3073
|
+
"name": "hostSelector",
|
|
3074
|
+
"kind": 1024,
|
|
3075
|
+
"kindString": "Property",
|
|
3076
|
+
"flags": {
|
|
3077
|
+
"isPublic": true,
|
|
3078
|
+
"isStatic": true
|
|
3079
|
+
},
|
|
3080
|
+
"sources": [
|
|
3081
|
+
{
|
|
3082
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-harness.ts",
|
|
3083
|
+
"line": 12,
|
|
3084
|
+
"character": 16
|
|
3085
|
+
}
|
|
3086
|
+
],
|
|
3087
|
+
"type": {
|
|
3088
|
+
"type": "intrinsic",
|
|
3089
|
+
"name": "string"
|
|
3090
|
+
},
|
|
3091
|
+
"defaultValue": "'sky-confirm'"
|
|
3092
|
+
},
|
|
3093
|
+
{
|
|
3094
|
+
"id": 294,
|
|
3095
|
+
"name": "clickCustomButton",
|
|
3096
|
+
"kind": 2048,
|
|
3097
|
+
"kindString": "Method",
|
|
3098
|
+
"flags": {
|
|
3099
|
+
"isPublic": true
|
|
3100
|
+
},
|
|
3101
|
+
"sources": [
|
|
3102
|
+
{
|
|
3103
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-harness.ts",
|
|
3104
|
+
"line": 22,
|
|
3105
|
+
"character": 15
|
|
3106
|
+
}
|
|
3107
|
+
],
|
|
3108
|
+
"signatures": [
|
|
3109
|
+
{
|
|
3110
|
+
"id": 295,
|
|
3111
|
+
"name": "clickCustomButton",
|
|
3112
|
+
"kind": 4096,
|
|
3113
|
+
"kindString": "Call signature",
|
|
3114
|
+
"flags": {},
|
|
3115
|
+
"comment": {
|
|
3116
|
+
"shortText": "Clicks a confirm button."
|
|
3117
|
+
},
|
|
3118
|
+
"parameters": [
|
|
3119
|
+
{
|
|
3120
|
+
"id": 296,
|
|
3121
|
+
"name": "filters",
|
|
3122
|
+
"kind": 32768,
|
|
3123
|
+
"kindString": "Parameter",
|
|
3124
|
+
"flags": {},
|
|
3125
|
+
"type": {
|
|
3126
|
+
"type": "reference",
|
|
3127
|
+
"id": 372,
|
|
3128
|
+
"name": "SkyConfirmButtonHarnessFilters"
|
|
3129
|
+
}
|
|
3130
|
+
}
|
|
3131
|
+
],
|
|
3132
|
+
"type": {
|
|
3133
|
+
"type": "reference",
|
|
3134
|
+
"typeArguments": [
|
|
3135
|
+
{
|
|
3136
|
+
"type": "intrinsic",
|
|
3137
|
+
"name": "void"
|
|
3138
|
+
}
|
|
3139
|
+
],
|
|
3140
|
+
"qualifiedName": "Promise",
|
|
3141
|
+
"package": "typescript",
|
|
3142
|
+
"name": "Promise"
|
|
3143
|
+
}
|
|
3144
|
+
}
|
|
3145
|
+
]
|
|
3146
|
+
},
|
|
3147
|
+
{
|
|
3148
|
+
"id": 297,
|
|
3149
|
+
"name": "clickOkButton",
|
|
3150
|
+
"kind": 2048,
|
|
3151
|
+
"kindString": "Method",
|
|
3152
|
+
"flags": {
|
|
3153
|
+
"isPublic": true
|
|
3154
|
+
},
|
|
3155
|
+
"sources": [
|
|
3156
|
+
{
|
|
3157
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-harness.ts",
|
|
3158
|
+
"line": 43,
|
|
3159
|
+
"character": 15
|
|
3160
|
+
}
|
|
3161
|
+
],
|
|
3162
|
+
"signatures": [
|
|
3163
|
+
{
|
|
3164
|
+
"id": 298,
|
|
3165
|
+
"name": "clickOkButton",
|
|
3166
|
+
"kind": 4096,
|
|
3167
|
+
"kindString": "Call signature",
|
|
3168
|
+
"flags": {},
|
|
3169
|
+
"comment": {
|
|
3170
|
+
"shortText": "Clicks a confirm button."
|
|
3171
|
+
},
|
|
3172
|
+
"type": {
|
|
3173
|
+
"type": "reference",
|
|
3174
|
+
"typeArguments": [
|
|
3175
|
+
{
|
|
3176
|
+
"type": "intrinsic",
|
|
3177
|
+
"name": "void"
|
|
3178
|
+
}
|
|
3179
|
+
],
|
|
3180
|
+
"qualifiedName": "Promise",
|
|
3181
|
+
"package": "typescript",
|
|
3182
|
+
"name": "Promise"
|
|
3183
|
+
}
|
|
3184
|
+
}
|
|
3185
|
+
]
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
"id": 299,
|
|
3189
|
+
"name": "getBodyText",
|
|
3190
|
+
"kind": 2048,
|
|
3191
|
+
"kindString": "Method",
|
|
3192
|
+
"flags": {
|
|
3193
|
+
"isPublic": true
|
|
3194
|
+
},
|
|
3195
|
+
"sources": [
|
|
3196
|
+
{
|
|
3197
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-harness.ts",
|
|
3198
|
+
"line": 56,
|
|
3199
|
+
"character": 15
|
|
3200
|
+
}
|
|
3201
|
+
],
|
|
3202
|
+
"signatures": [
|
|
3203
|
+
{
|
|
3204
|
+
"id": 300,
|
|
3205
|
+
"name": "getBodyText",
|
|
3206
|
+
"kind": 4096,
|
|
3207
|
+
"kindString": "Call signature",
|
|
3208
|
+
"flags": {},
|
|
3209
|
+
"comment": {
|
|
3210
|
+
"shortText": "Gets the body of the confirm component."
|
|
3211
|
+
},
|
|
3212
|
+
"type": {
|
|
3213
|
+
"type": "reference",
|
|
3214
|
+
"typeArguments": [
|
|
3215
|
+
{
|
|
3216
|
+
"type": "intrinsic",
|
|
3217
|
+
"name": "string"
|
|
3218
|
+
}
|
|
3219
|
+
],
|
|
3220
|
+
"qualifiedName": "Promise",
|
|
3221
|
+
"package": "typescript",
|
|
3222
|
+
"name": "Promise"
|
|
3223
|
+
}
|
|
3224
|
+
}
|
|
3225
|
+
]
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
"id": 301,
|
|
3229
|
+
"name": "getCustomButtons",
|
|
3230
|
+
"kind": 2048,
|
|
3231
|
+
"kindString": "Method",
|
|
3232
|
+
"flags": {
|
|
3233
|
+
"isPublic": true
|
|
3234
|
+
},
|
|
3235
|
+
"sources": [
|
|
3236
|
+
{
|
|
3237
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-harness.ts",
|
|
3238
|
+
"line": 63,
|
|
3239
|
+
"character": 15
|
|
3240
|
+
}
|
|
3241
|
+
],
|
|
3242
|
+
"signatures": [
|
|
3243
|
+
{
|
|
3244
|
+
"id": 302,
|
|
3245
|
+
"name": "getCustomButtons",
|
|
3246
|
+
"kind": 4096,
|
|
3247
|
+
"kindString": "Call signature",
|
|
3248
|
+
"flags": {},
|
|
3249
|
+
"comment": {
|
|
3250
|
+
"shortText": "Gets the confirm component's custom buttons."
|
|
3251
|
+
},
|
|
3252
|
+
"parameters": [
|
|
3253
|
+
{
|
|
3254
|
+
"id": 303,
|
|
3255
|
+
"name": "filters",
|
|
3256
|
+
"kind": 32768,
|
|
3257
|
+
"kindString": "Parameter",
|
|
3258
|
+
"flags": {
|
|
3259
|
+
"isOptional": true
|
|
3260
|
+
},
|
|
3261
|
+
"type": {
|
|
3262
|
+
"type": "reference",
|
|
3263
|
+
"id": 372,
|
|
3264
|
+
"name": "SkyConfirmButtonHarnessFilters"
|
|
3265
|
+
}
|
|
3266
|
+
}
|
|
3267
|
+
],
|
|
3268
|
+
"type": {
|
|
3269
|
+
"type": "reference",
|
|
3270
|
+
"typeArguments": [
|
|
3271
|
+
{
|
|
3272
|
+
"type": "array",
|
|
3273
|
+
"elementType": {
|
|
3274
|
+
"type": "reference",
|
|
3275
|
+
"name": "SkyConfirmButtonHarness"
|
|
3276
|
+
}
|
|
3277
|
+
}
|
|
3278
|
+
],
|
|
3279
|
+
"qualifiedName": "Promise",
|
|
3280
|
+
"package": "typescript",
|
|
3281
|
+
"name": "Promise"
|
|
3282
|
+
}
|
|
3283
|
+
}
|
|
3284
|
+
]
|
|
3285
|
+
},
|
|
3286
|
+
{
|
|
3287
|
+
"id": 304,
|
|
3288
|
+
"name": "getMessageText",
|
|
3289
|
+
"kind": 2048,
|
|
3290
|
+
"kindString": "Method",
|
|
3291
|
+
"flags": {
|
|
3292
|
+
"isPublic": true
|
|
3293
|
+
},
|
|
3294
|
+
"sources": [
|
|
3295
|
+
{
|
|
3296
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-harness.ts",
|
|
3297
|
+
"line": 93,
|
|
3298
|
+
"character": 15
|
|
3299
|
+
}
|
|
3300
|
+
],
|
|
3301
|
+
"signatures": [
|
|
3302
|
+
{
|
|
3303
|
+
"id": 305,
|
|
3304
|
+
"name": "getMessageText",
|
|
3305
|
+
"kind": 4096,
|
|
3306
|
+
"kindString": "Call signature",
|
|
3307
|
+
"flags": {},
|
|
3308
|
+
"comment": {
|
|
3309
|
+
"shortText": "Gets the message of the confirm component."
|
|
3310
|
+
},
|
|
3311
|
+
"type": {
|
|
3312
|
+
"type": "reference",
|
|
3313
|
+
"typeArguments": [
|
|
3314
|
+
{
|
|
3315
|
+
"type": "intrinsic",
|
|
3316
|
+
"name": "string"
|
|
3317
|
+
}
|
|
3318
|
+
],
|
|
3319
|
+
"qualifiedName": "Promise",
|
|
3320
|
+
"package": "typescript",
|
|
3321
|
+
"name": "Promise"
|
|
3322
|
+
}
|
|
3323
|
+
}
|
|
3324
|
+
]
|
|
3325
|
+
},
|
|
3326
|
+
{
|
|
3327
|
+
"id": 306,
|
|
3328
|
+
"name": "getType",
|
|
3329
|
+
"kind": 2048,
|
|
3330
|
+
"kindString": "Method",
|
|
3331
|
+
"flags": {
|
|
3332
|
+
"isPublic": true
|
|
3333
|
+
},
|
|
3334
|
+
"sources": [
|
|
3335
|
+
{
|
|
3336
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-harness.ts",
|
|
3337
|
+
"line": 100,
|
|
3338
|
+
"character": 15
|
|
3339
|
+
}
|
|
3340
|
+
],
|
|
3341
|
+
"signatures": [
|
|
3342
|
+
{
|
|
3343
|
+
"id": 307,
|
|
3344
|
+
"name": "getType",
|
|
3345
|
+
"kind": 4096,
|
|
3346
|
+
"kindString": "Call signature",
|
|
3347
|
+
"flags": {},
|
|
3348
|
+
"comment": {
|
|
3349
|
+
"shortText": "Gets the type of the confirm component."
|
|
3350
|
+
},
|
|
3351
|
+
"type": {
|
|
3352
|
+
"type": "reference",
|
|
3353
|
+
"typeArguments": [
|
|
3354
|
+
{
|
|
3355
|
+
"type": "reference",
|
|
3356
|
+
"id": 115,
|
|
3357
|
+
"name": "SkyConfirmType"
|
|
3358
|
+
}
|
|
3359
|
+
],
|
|
3360
|
+
"qualifiedName": "Promise",
|
|
3361
|
+
"package": "typescript",
|
|
3362
|
+
"name": "Promise"
|
|
3363
|
+
}
|
|
3364
|
+
}
|
|
3365
|
+
]
|
|
3366
|
+
},
|
|
3367
|
+
{
|
|
3368
|
+
"id": 317,
|
|
3369
|
+
"name": "host",
|
|
3370
|
+
"kind": 2048,
|
|
3371
|
+
"kindString": "Method",
|
|
3372
|
+
"flags": {},
|
|
3373
|
+
"sources": [
|
|
3374
|
+
{
|
|
3375
|
+
"fileName": "node_modules/@angular/cdk/testing/component-harness.d.ts",
|
|
3376
|
+
"line": 221,
|
|
3377
|
+
"character": 4
|
|
3378
|
+
}
|
|
3379
|
+
],
|
|
3380
|
+
"signatures": [
|
|
3381
|
+
{
|
|
3382
|
+
"id": 318,
|
|
3383
|
+
"name": "host",
|
|
3384
|
+
"kind": 4096,
|
|
3385
|
+
"kindString": "Call signature",
|
|
3386
|
+
"flags": {},
|
|
3387
|
+
"comment": {
|
|
3388
|
+
"shortText": "Gets a `Promise` for the `TestElement` representing the host element of the component."
|
|
3389
|
+
},
|
|
3390
|
+
"type": {
|
|
3391
|
+
"type": "reference",
|
|
3392
|
+
"typeArguments": [
|
|
3393
|
+
{
|
|
3394
|
+
"type": "reference",
|
|
3395
|
+
"qualifiedName": "TestElement",
|
|
3396
|
+
"package": "@angular/cdk",
|
|
3397
|
+
"name": "TestElement"
|
|
3398
|
+
}
|
|
3399
|
+
],
|
|
3400
|
+
"qualifiedName": "Promise",
|
|
3401
|
+
"package": "typescript",
|
|
3402
|
+
"name": "Promise"
|
|
3403
|
+
},
|
|
3404
|
+
"inheritedFrom": {
|
|
3405
|
+
"type": "reference",
|
|
3406
|
+
"name": "SkyComponentHarness.host"
|
|
3407
|
+
}
|
|
3408
|
+
}
|
|
3409
|
+
],
|
|
3410
|
+
"inheritedFrom": {
|
|
3411
|
+
"type": "reference",
|
|
3412
|
+
"name": "SkyComponentHarness.host"
|
|
3413
|
+
}
|
|
3414
|
+
},
|
|
3415
|
+
{
|
|
3416
|
+
"id": 308,
|
|
3417
|
+
"name": "isWhiteSpacePreserved",
|
|
3418
|
+
"kind": 2048,
|
|
3419
|
+
"kindString": "Method",
|
|
3420
|
+
"flags": {
|
|
3421
|
+
"isPublic": true
|
|
3422
|
+
},
|
|
3423
|
+
"sources": [
|
|
3424
|
+
{
|
|
3425
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-harness.ts",
|
|
3426
|
+
"line": 112,
|
|
3427
|
+
"character": 15
|
|
3428
|
+
}
|
|
3429
|
+
],
|
|
3430
|
+
"signatures": [
|
|
3431
|
+
{
|
|
3432
|
+
"id": 309,
|
|
3433
|
+
"name": "isWhiteSpacePreserved",
|
|
3434
|
+
"kind": 4096,
|
|
3435
|
+
"kindString": "Call signature",
|
|
3436
|
+
"flags": {},
|
|
3437
|
+
"comment": {
|
|
3438
|
+
"shortText": "Indicates if the whitespace is preserved on the confirom component."
|
|
3439
|
+
},
|
|
3440
|
+
"type": {
|
|
3441
|
+
"type": "reference",
|
|
3442
|
+
"typeArguments": [
|
|
3443
|
+
{
|
|
3444
|
+
"type": "intrinsic",
|
|
3445
|
+
"name": "boolean"
|
|
3446
|
+
}
|
|
3447
|
+
],
|
|
3448
|
+
"qualifiedName": "Promise",
|
|
3449
|
+
"package": "typescript",
|
|
3450
|
+
"name": "Promise"
|
|
3451
|
+
}
|
|
3452
|
+
}
|
|
3453
|
+
]
|
|
3454
|
+
}
|
|
3455
|
+
],
|
|
3456
|
+
"groups": [
|
|
3457
|
+
{
|
|
3458
|
+
"title": "Constructors",
|
|
3459
|
+
"kind": 512,
|
|
3460
|
+
"children": [
|
|
3461
|
+
287
|
|
3462
|
+
]
|
|
3463
|
+
},
|
|
3464
|
+
{
|
|
3465
|
+
"title": "Properties",
|
|
3466
|
+
"kind": 1024,
|
|
3467
|
+
"children": [
|
|
3468
|
+
281
|
|
3469
|
+
]
|
|
3470
|
+
},
|
|
3471
|
+
{
|
|
3472
|
+
"title": "Methods",
|
|
3473
|
+
"kind": 2048,
|
|
3474
|
+
"children": [
|
|
3475
|
+
294,
|
|
3476
|
+
297,
|
|
3477
|
+
299,
|
|
3478
|
+
301,
|
|
3479
|
+
304,
|
|
3480
|
+
306,
|
|
3481
|
+
317,
|
|
3482
|
+
308
|
|
3483
|
+
]
|
|
3484
|
+
}
|
|
3485
|
+
],
|
|
3486
|
+
"sources": [
|
|
3487
|
+
{
|
|
3488
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-harness.ts",
|
|
3489
|
+
"line": 11,
|
|
3490
|
+
"character": 13
|
|
3491
|
+
}
|
|
3492
|
+
],
|
|
3493
|
+
"extendedTypes": [
|
|
3494
|
+
{
|
|
3495
|
+
"type": "reference",
|
|
3496
|
+
"name": "SkyComponentHarness"
|
|
3497
|
+
}
|
|
3498
|
+
]
|
|
3499
|
+
},
|
|
3500
|
+
{
|
|
3501
|
+
"id": 372,
|
|
3502
|
+
"name": "SkyConfirmButtonHarnessFilters",
|
|
3503
|
+
"kind": 256,
|
|
3504
|
+
"kindString": "Interface",
|
|
3505
|
+
"flags": {},
|
|
3506
|
+
"comment": {
|
|
3507
|
+
"shortText": "A set of criteria that can be used to filter a list of SkyConfirmButtonHarness instances."
|
|
3508
|
+
},
|
|
3509
|
+
"children": [
|
|
3510
|
+
{
|
|
3511
|
+
"id": 375,
|
|
3512
|
+
"name": "ancestor",
|
|
3513
|
+
"kind": 1024,
|
|
3514
|
+
"kindString": "Property",
|
|
3515
|
+
"flags": {
|
|
3516
|
+
"isOptional": true
|
|
3517
|
+
},
|
|
3518
|
+
"comment": {
|
|
3519
|
+
"shortText": "Only find instances that are nested under an element with the given selector."
|
|
3520
|
+
},
|
|
3521
|
+
"sources": [
|
|
3522
|
+
{
|
|
3523
|
+
"fileName": "node_modules/@angular/cdk/testing/component-harness.d.ts",
|
|
3524
|
+
"line": 351,
|
|
3525
|
+
"character": 4
|
|
3526
|
+
}
|
|
3527
|
+
],
|
|
3528
|
+
"type": {
|
|
3529
|
+
"type": "intrinsic",
|
|
3530
|
+
"name": "string"
|
|
3531
|
+
},
|
|
3532
|
+
"inheritedFrom": {
|
|
3533
|
+
"type": "reference",
|
|
3534
|
+
"name": "Omit.ancestor"
|
|
3535
|
+
}
|
|
3536
|
+
},
|
|
3537
|
+
{
|
|
3538
|
+
"id": 374,
|
|
3539
|
+
"name": "styleType",
|
|
3540
|
+
"kind": 1024,
|
|
3541
|
+
"kindString": "Property",
|
|
3542
|
+
"flags": {
|
|
3543
|
+
"isOptional": true
|
|
3544
|
+
},
|
|
3545
|
+
"comment": {
|
|
3546
|
+
"shortText": "Only find instances whose style matches the given value."
|
|
3547
|
+
},
|
|
3548
|
+
"sources": [
|
|
3549
|
+
{
|
|
3550
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-button-harness-filters.ts",
|
|
3551
|
+
"line": 16,
|
|
3552
|
+
"character": 2
|
|
3553
|
+
}
|
|
3554
|
+
],
|
|
3555
|
+
"type": {
|
|
3556
|
+
"type": "intrinsic",
|
|
3557
|
+
"name": "string"
|
|
3558
|
+
}
|
|
3559
|
+
},
|
|
3560
|
+
{
|
|
3561
|
+
"id": 373,
|
|
3562
|
+
"name": "text",
|
|
3563
|
+
"kind": 1024,
|
|
3564
|
+
"kindString": "Property",
|
|
3565
|
+
"flags": {
|
|
3566
|
+
"isOptional": true
|
|
3567
|
+
},
|
|
3568
|
+
"comment": {
|
|
3569
|
+
"shortText": "Only find instances whose content matches the given value."
|
|
3570
|
+
},
|
|
3571
|
+
"sources": [
|
|
3572
|
+
{
|
|
3573
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-button-harness-filters.ts",
|
|
3574
|
+
"line": 11,
|
|
3575
|
+
"character": 2
|
|
3576
|
+
}
|
|
3577
|
+
],
|
|
3578
|
+
"type": {
|
|
3579
|
+
"type": "union",
|
|
3580
|
+
"types": [
|
|
3581
|
+
{
|
|
3582
|
+
"type": "intrinsic",
|
|
3583
|
+
"name": "string"
|
|
3584
|
+
},
|
|
3585
|
+
{
|
|
3586
|
+
"type": "reference",
|
|
3587
|
+
"qualifiedName": "RegExp",
|
|
3588
|
+
"package": "typescript",
|
|
3589
|
+
"name": "RegExp"
|
|
3590
|
+
}
|
|
3591
|
+
]
|
|
3592
|
+
}
|
|
3593
|
+
}
|
|
3594
|
+
],
|
|
3595
|
+
"groups": [
|
|
3596
|
+
{
|
|
3597
|
+
"title": "Properties",
|
|
3598
|
+
"kind": 1024,
|
|
3599
|
+
"children": [
|
|
3600
|
+
375,
|
|
3601
|
+
374,
|
|
3602
|
+
373
|
|
3603
|
+
]
|
|
3604
|
+
}
|
|
3605
|
+
],
|
|
3606
|
+
"sources": [
|
|
3607
|
+
{
|
|
3608
|
+
"fileName": "projects/modals/src/testing/confirm/confirm-button-harness-filters.ts",
|
|
3609
|
+
"line": 6,
|
|
3610
|
+
"character": 17
|
|
3611
|
+
}
|
|
3612
|
+
],
|
|
3613
|
+
"extendedTypes": [
|
|
3614
|
+
{
|
|
3615
|
+
"type": "reference",
|
|
3616
|
+
"typeArguments": [
|
|
3617
|
+
{
|
|
3618
|
+
"type": "reference",
|
|
3619
|
+
"qualifiedName": "BaseHarnessFilters",
|
|
3620
|
+
"package": "@angular/cdk",
|
|
3621
|
+
"name": "BaseHarnessFilters"
|
|
3622
|
+
},
|
|
3623
|
+
{
|
|
3624
|
+
"type": "literal",
|
|
3625
|
+
"value": "selector"
|
|
3626
|
+
}
|
|
3627
|
+
],
|
|
3628
|
+
"qualifiedName": "Omit",
|
|
3629
|
+
"package": "typescript",
|
|
3630
|
+
"name": "Omit"
|
|
3631
|
+
}
|
|
3632
|
+
]
|
|
3633
|
+
}
|
|
3634
|
+
],
|
|
3635
|
+
"groups": [
|
|
3636
|
+
{
|
|
3637
|
+
"title": "Modules",
|
|
3638
|
+
"kind": 2,
|
|
3639
|
+
"children": [
|
|
3640
|
+
1,
|
|
3641
|
+
2
|
|
3642
|
+
]
|
|
3643
|
+
}
|
|
3644
|
+
]
|
|
3645
|
+
},
|
|
3646
|
+
"codeExamples": [
|
|
3647
|
+
{
|
|
3648
|
+
"fileName": "confirm-demo.component.html",
|
|
3649
|
+
"filePath": "/projects/modals/documentation/code-examples/confirm/confirm-demo.component.html",
|
|
3650
|
+
"rawContents": "<button\n aria-haspopup=\"dialog\"\n class=\"sky-btn sky-btn-default sky-margin-inline-default ok-confirm-btn\"\n type=\"button\"\n (click)=\"openOKConfirm()\"\n>\n OK confirm\n</button>\n\n<button\n aria-haspopup=\"dialog\"\n class=\"sky-btn sky-btn-default sky-margin-inline-default two-action-confirm-btn\"\n type=\"button\"\n (click)=\"openTwoActionConfirm()\"\n>\n Confirm with two actions\n</button>\n\n<button\n aria-haspopup=\"dialog\"\n class=\"sky-btn sky-btn-default sky-margin-inline-default\"\n type=\"button\"\n (click)=\"openThreeActionConfirm()\"\n>\n Confirm with three actions\n</button>\n\n<button\n aria-haspopup=\"dialog\"\n class=\"sky-btn sky-btn-default sky-margin-inline-default\"\n type=\"button\"\n (click)=\"openDeleteConfirm()\"\n>\n Confirm with delete button\n</button>\n\n<p *ngIf=\"selectedAction && selectedText\" class=\"displayed-text\">\n You selected the \"{{ selectedText }}\" button, which has an action of \"{{\n selectedAction\n }}.\"\n</p>\n<p *ngIf=\"selectedAction && !selectedText\" class=\"displayed-text\">\n You selected the \"{{ selectedAction }}\" action.\n</p>\n"
|
|
3651
|
+
},
|
|
3652
|
+
{
|
|
3653
|
+
"fileName": "confirm-demo.component.spec.ts",
|
|
3654
|
+
"filePath": "/projects/modals/documentation/code-examples/confirm/confirm-demo.component.spec.ts",
|
|
3655
|
+
"rawContents": "import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed';\nimport { TestBed } from '@angular/core/testing';\nimport { RouterTestingModule } from '@angular/router/testing';\nimport { SkyConfirmHarness } from '@skyux/modals/testing';\n\nimport { ConfirmDemoComponent } from './confirm-demo.component';\nimport { ConfirmDemoModule } from './confirm-demo.module';\n\ndescribe('Confirm demo', () => {\n async function setupTest(confirmBtnClass: string) {\n const fixture = TestBed.createComponent(ConfirmDemoComponent);\n const openBtn = fixture.nativeElement.querySelector(confirmBtnClass);\n\n openBtn.click();\n\n const rootLoader = TestbedHarnessEnvironment.documentRootLoader(fixture);\n\n const confirmHarness = await rootLoader.getHarness(SkyConfirmHarness);\n return { confirmHarness, fixture };\n }\n\n beforeEach(() => {\n TestBed.configureTestingModule({\n imports: [ConfirmDemoModule, RouterTestingModule],\n });\n });\n\n it('should show the correct text when OK is clicked on an OK confirm', async () => {\n const { confirmHarness, fixture } = await setupTest('.ok-confirm-btn');\n\n await confirmHarness.clickOkButton();\n\n const displayedTextEl: HTMLElement =\n fixture.nativeElement.querySelector('.displayed-text');\n\n expect(displayedTextEl.innerText).toEqual('You selected the \"ok\" action.');\n await expectAsync(confirmHarness.getMessageText()).toBeResolvedTo(\n 'Cannot delete invoice because it has vendor, credit memo, or purchase order activity.'\n );\n });\n\n it('should show the correct text when \"Finalize\" is clicked on a custom confirm', async () => {\n const { confirmHarness, fixture } = await setupTest(\n '.two-action-confirm-btn'\n );\n\n await confirmHarness.clickCustomButton({ text: 'Finalize' });\n\n const displayedTextEl: HTMLElement =\n fixture.nativeElement.querySelector('.displayed-text');\n\n expect(displayedTextEl.innerText).toEqual(\n 'You selected the \"Finalize\" button, which has an action of \"save.\"'\n );\n await expectAsync(confirmHarness.getMessageText()).toBeResolvedTo(\n 'Finalize report cards?'\n );\n await expectAsync(confirmHarness.getBodyText()).toBeResolvedTo(\n 'Grades cannot be changed once the report cards are finalized.'\n );\n });\n});\n"
|
|
3012
3656
|
},
|
|
3013
3657
|
{
|
|
3014
3658
|
"fileName": "confirm-demo.component.ts",
|
|
3015
3659
|
"filePath": "/projects/modals/documentation/code-examples/confirm/confirm-demo.component.ts",
|
|
3016
|
-
"rawContents": "import { Component } from '@angular/core';\nimport {\n SkyConfirmButtonConfig,\n SkyConfirmInstance,\n SkyConfirmService,\n SkyConfirmType,\n} from '@skyux/modals';\n\n@Component({\n selector: 'app-confirm-demo',\n templateUrl: './confirm-demo.component.html',\n})\nexport class ConfirmDemoComponent {\n public selectedAction: string | undefined;\n\n public selectedText: string | undefined;\n\n #confirmSvc: SkyConfirmService;\n\n constructor(confirmSvc: SkyConfirmService) {\n this.#confirmSvc = confirmSvc;\n }\n\n public openOKConfirm(): void {\n const dialog: SkyConfirmInstance = this.#confirmSvc.open({\n message:\n '
|
|
3660
|
+
"rawContents": "import { Component } from '@angular/core';\nimport {\n SkyConfirmButtonConfig,\n SkyConfirmInstance,\n SkyConfirmService,\n SkyConfirmType,\n} from '@skyux/modals';\n\n@Component({\n selector: 'app-confirm-demo',\n templateUrl: './confirm-demo.component.html',\n})\nexport class ConfirmDemoComponent {\n public selectedAction: string | undefined;\n\n public selectedText: string | undefined;\n\n #confirmSvc: SkyConfirmService;\n\n constructor(confirmSvc: SkyConfirmService) {\n this.#confirmSvc = confirmSvc;\n }\n\n public openOKConfirm(): void {\n const dialog: SkyConfirmInstance = this.#confirmSvc.open({\n message:\n 'Cannot delete invoice because it has vendor, credit memo, or purchase order activity.',\n type: SkyConfirmType.OK,\n });\n\n dialog.closed.subscribe((result) => {\n this.selectedText = undefined;\n this.selectedAction = result.action;\n });\n }\n\n public openTwoActionConfirm() {\n const buttons: SkyConfirmButtonConfig[] = [\n { text: 'Finalize', action: 'save', styleType: 'primary' },\n { text: 'Cancel', action: 'cancel', styleType: 'link' },\n ];\n\n const dialog: SkyConfirmInstance = this.#confirmSvc.open({\n message: 'Finalize report cards?',\n body: 'Grades cannot be changed once the report cards are finalized.',\n type: SkyConfirmType.Custom,\n buttons,\n });\n\n dialog.closed.subscribe((result) => {\n this.selectedAction = result.action;\n\n for (const button of buttons) {\n if (button.action === result.action) {\n this.selectedText = button.text;\n break;\n }\n }\n });\n }\n\n public openThreeActionConfirm() {\n const buttons: SkyConfirmButtonConfig[] = [\n { text: 'Save', action: 'save', styleType: 'primary' },\n { text: 'Delete', action: 'delete' },\n { text: 'Keep working', action: 'cancel', styleType: 'link' },\n ];\n\n const dialog: SkyConfirmInstance = this.#confirmSvc.open({\n message: 'Save your changes before leaving?',\n type: SkyConfirmType.Custom,\n buttons,\n });\n\n dialog.closed.subscribe((result) => {\n this.selectedAction = result.action;\n\n for (const button of buttons) {\n if (button.action === result.action) {\n this.selectedText = button.text;\n break;\n }\n }\n });\n }\n\n public openDeleteConfirm() {\n const buttons: SkyConfirmButtonConfig[] = [\n { text: 'Delete', action: 'delete', styleType: 'danger' },\n { text: 'Cancel', action: 'cancel', styleType: 'link' },\n ];\n\n const dialog: SkyConfirmInstance = this.#confirmSvc.open({\n message: 'Delete this account?',\n body: 'Deleting this account may affect processes that are currently running.',\n type: SkyConfirmType.Custom,\n buttons,\n });\n\n dialog.closed.subscribe((result) => {\n this.selectedAction = result.action;\n\n for (const button of buttons) {\n if (button.action === result.action) {\n this.selectedText = button.text;\n break;\n }\n }\n });\n }\n}\n"
|
|
3017
3661
|
},
|
|
3018
3662
|
{
|
|
3019
3663
|
"fileName": "confirm-demo.module.ts",
|