@skyux/a11y 12.0.0-alpha.9 → 12.0.0-beta.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.
Files changed (2) hide show
  1. package/package.json +13 -16
  2. package/documentation.json +0 -877
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/a11y",
3
- "version": "12.0.0-alpha.9",
3
+ "version": "12.0.0-beta.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -15,6 +15,17 @@
15
15
  "url": "https://github.com/blackbaud/skyux/issues"
16
16
  },
17
17
  "homepage": "https://github.com/blackbaud/skyux#readme",
18
+ "peerDependencies": {
19
+ "@angular/common": "^19.2.1",
20
+ "@angular/core": "^19.2.1",
21
+ "@skyux/core": "12.0.0-beta.0",
22
+ "@skyux/i18n": "12.0.0-beta.0"
23
+ },
24
+ "dependencies": {
25
+ "tslib": "^2.8.1"
26
+ },
27
+ "module": "fesm2022/skyux-a11y.mjs",
28
+ "typings": "index.d.ts",
18
29
  "exports": {
19
30
  "./package.json": {
20
31
  "default": "./package.json"
@@ -26,21 +37,7 @@
26
37
  "./testing": {
27
38
  "types": "./testing/index.d.ts",
28
39
  "default": "./fesm2022/skyux-a11y-testing.mjs"
29
- },
30
- "./documentation.json": {
31
- "default": "./documentation.json"
32
40
  }
33
41
  },
34
- "peerDependencies": {
35
- "@angular/common": "^19.2.1",
36
- "@angular/core": "^19.2.1",
37
- "@skyux/core": "12.0.0-alpha.9",
38
- "@skyux/i18n": "12.0.0-alpha.9"
39
- },
40
- "dependencies": {
41
- "tslib": "^2.8.1"
42
- },
43
- "module": "fesm2022/skyux-a11y.mjs",
44
- "typings": "index.d.ts",
45
42
  "sideEffects": false
46
- }
43
+ }
@@ -1,877 +0,0 @@
1
- {
2
- "anchorIds": {
3
- "SkySkipLinkService": "class-skyskiplinkservice",
4
- "SkySkipLink": "interface-skyskiplink",
5
- "SkySkipLinkArgs": "interface-skyskiplinkargs",
6
- "SkySkipLinksHarness": "class-skyskiplinksharness"
7
- },
8
- "typedoc": {
9
- "id": 0,
10
- "name": "@skyux/a11y",
11
- "variant": "project",
12
- "kind": 1,
13
- "flags": {},
14
- "children": [
15
- {
16
- "id": 11,
17
- "name": "SkySkipLinkService",
18
- "variant": "declaration",
19
- "kind": 128,
20
- "flags": {},
21
- "comment": {
22
- "summary": [
23
- {
24
- "kind": "text",
25
- "text": "An Angular service that adds \"skip links\" to the page. Skip links will only be displayed\nwhen the page initially loads and the user presses the Tab key, in which case the first link will\nbe displayed and focused. Clicking the button will skip to the specified element. Pressing\nthe Tab key again will move to the next skip link if more than one skip link is specified;\notherwise, focus will move to the first focusable element on the page."
26
- }
27
- ]
28
- },
29
- "children": [
30
- {
31
- "id": 13,
32
- "name": "constructor",
33
- "variant": "declaration",
34
- "kind": 512,
35
- "flags": {},
36
- "sources": [
37
- {
38
- "fileName": "projects/a11y/src/modules/skip-link/skip-link.service.ts",
39
- "line": 26,
40
- "character": 2,
41
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts#L26"
42
- }
43
- ],
44
- "signatures": [
45
- {
46
- "id": 14,
47
- "name": "new SkySkipLinkService",
48
- "variant": "signature",
49
- "kind": 16384,
50
- "flags": {},
51
- "sources": [
52
- {
53
- "fileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
54
- "line": 26,
55
- "character": 2,
56
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts#L26"
57
- }
58
- ],
59
- "parameters": [
60
- {
61
- "id": 15,
62
- "name": "dynamicComponentService",
63
- "variant": "param",
64
- "kind": 32768,
65
- "flags": {},
66
- "type": {
67
- "type": "reference",
68
- "target": {
69
- "sourceFileName": "libs/components/core/src/lib/modules/dynamic-component/dynamic-component.service.ts",
70
- "qualifiedName": "SkyDynamicComponentService"
71
- },
72
- "name": "SkyDynamicComponentService",
73
- "package": "@skyux/core"
74
- }
75
- }
76
- ],
77
- "type": {
78
- "type": "reference",
79
- "target": 11,
80
- "name": "SkySkipLinkService",
81
- "package": "@skyux/a11y"
82
- }
83
- }
84
- ]
85
- },
86
- {
87
- "id": 20,
88
- "name": "removeHostComponent",
89
- "variant": "declaration",
90
- "kind": 2048,
91
- "flags": {
92
- "isPublic": true
93
- },
94
- "sources": [
95
- {
96
- "fileName": "projects/a11y/src/modules/skip-link/skip-link.service.ts",
97
- "line": 46,
98
- "character": 9,
99
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts#L46"
100
- }
101
- ],
102
- "signatures": [
103
- {
104
- "id": 21,
105
- "name": "removeHostComponent",
106
- "variant": "signature",
107
- "kind": 4096,
108
- "flags": {},
109
- "sources": [
110
- {
111
- "fileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
112
- "line": 46,
113
- "character": 2,
114
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts#L46"
115
- }
116
- ],
117
- "type": {
118
- "type": "intrinsic",
119
- "name": "void"
120
- }
121
- }
122
- ],
123
- "decorators": []
124
- },
125
- {
126
- "id": 17,
127
- "name": "setSkipLinks",
128
- "variant": "declaration",
129
- "kind": 2048,
130
- "flags": {
131
- "isPublic": true
132
- },
133
- "sources": [
134
- {
135
- "fileName": "projects/a11y/src/modules/skip-link/skip-link.service.ts",
136
- "line": 30,
137
- "character": 9,
138
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts#L30"
139
- }
140
- ],
141
- "signatures": [
142
- {
143
- "id": 18,
144
- "name": "setSkipLinks",
145
- "variant": "signature",
146
- "kind": 4096,
147
- "flags": {},
148
- "sources": [
149
- {
150
- "fileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
151
- "line": 30,
152
- "character": 2,
153
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts#L30"
154
- }
155
- ],
156
- "parameters": [
157
- {
158
- "id": 19,
159
- "name": "args",
160
- "variant": "param",
161
- "kind": 32768,
162
- "flags": {},
163
- "type": {
164
- "type": "reference",
165
- "target": 6,
166
- "name": "SkySkipLinkArgs",
167
- "package": "@skyux/a11y"
168
- }
169
- }
170
- ],
171
- "type": {
172
- "type": "intrinsic",
173
- "name": "void"
174
- }
175
- }
176
- ],
177
- "decorators": []
178
- }
179
- ],
180
- "groups": [
181
- {
182
- "title": "Constructors",
183
- "children": [
184
- 13
185
- ]
186
- },
187
- {
188
- "title": "Methods",
189
- "children": [
190
- 20,
191
- 17
192
- ]
193
- }
194
- ],
195
- "sources": [
196
- {
197
- "fileName": "projects/a11y/src/modules/skip-link/skip-link.service.ts",
198
- "line": 21,
199
- "character": 13,
200
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts#L21"
201
- }
202
- ],
203
- "decorators": [
204
- {
205
- "name": "Injectable",
206
- "arguments": {
207
- "obj": "@Injectable({\n providedIn: 'root',\n})"
208
- }
209
- }
210
- ]
211
- },
212
- {
213
- "id": 3,
214
- "name": "SkySkipLink",
215
- "variant": "declaration",
216
- "kind": 256,
217
- "flags": {},
218
- "comment": {
219
- "summary": [
220
- {
221
- "kind": "text",
222
- "text": "A \"skip link\" that allows a user to skip parts of the page and go directly to the main content."
223
- }
224
- ]
225
- },
226
- "children": [
227
- {
228
- "id": 5,
229
- "name": "elementRef",
230
- "variant": "declaration",
231
- "kind": 1024,
232
- "flags": {},
233
- "comment": {
234
- "summary": [
235
- {
236
- "kind": "text",
237
- "text": "The element to scroll to and focus when the skip link is clicked. This element must\nallow focus, either by specifying an HTML element that allows focus by default (such\nas a "
238
- },
239
- {
240
- "kind": "code",
241
- "text": "`button`"
242
- },
243
- {
244
- "kind": "text",
245
- "text": " or "
246
- },
247
- {
248
- "kind": "code",
249
- "text": "`a`"
250
- },
251
- {
252
- "kind": "text",
253
- "text": " element) or by setting `tabindex=\"-1\" on the specified element."
254
- }
255
- ]
256
- },
257
- "sources": [
258
- {
259
- "fileName": "projects/a11y/src/modules/skip-link/skip-link.ts",
260
- "line": 17,
261
- "character": 2,
262
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link.ts#L17"
263
- }
264
- ],
265
- "type": {
266
- "type": "reference",
267
- "target": {
268
- "sourceFileName": "node_modules/@angular/core/index.d.ts",
269
- "qualifiedName": "ElementRef"
270
- },
271
- "typeArguments": [
272
- {
273
- "type": "intrinsic",
274
- "name": "any"
275
- }
276
- ],
277
- "name": "ElementRef",
278
- "package": "@angular/core"
279
- }
280
- },
281
- {
282
- "id": 4,
283
- "name": "title",
284
- "variant": "declaration",
285
- "kind": 1024,
286
- "flags": {},
287
- "comment": {
288
- "summary": [
289
- {
290
- "kind": "text",
291
- "text": "The title of the skip link."
292
- }
293
- ]
294
- },
295
- "sources": [
296
- {
297
- "fileName": "projects/a11y/src/modules/skip-link/skip-link.ts",
298
- "line": 10,
299
- "character": 2,
300
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link.ts#L10"
301
- }
302
- ],
303
- "type": {
304
- "type": "intrinsic",
305
- "name": "string"
306
- }
307
- }
308
- ],
309
- "groups": [
310
- {
311
- "title": "Properties",
312
- "children": [
313
- 5,
314
- 4
315
- ]
316
- }
317
- ],
318
- "sources": [
319
- {
320
- "fileName": "projects/a11y/src/modules/skip-link/skip-link.ts",
321
- "line": 6,
322
- "character": 17,
323
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link.ts#L6"
324
- }
325
- ]
326
- },
327
- {
328
- "id": 6,
329
- "name": "SkySkipLinkArgs",
330
- "variant": "declaration",
331
- "kind": 256,
332
- "flags": {},
333
- "comment": {
334
- "summary": [
335
- {
336
- "kind": "text",
337
- "text": "Options specified when setting the page's skip links."
338
- }
339
- ]
340
- },
341
- "children": [
342
- {
343
- "id": 7,
344
- "name": "links",
345
- "variant": "declaration",
346
- "kind": 1024,
347
- "flags": {},
348
- "comment": {
349
- "summary": [
350
- {
351
- "kind": "text",
352
- "text": "The skip links to create."
353
- }
354
- ]
355
- },
356
- "sources": [
357
- {
358
- "fileName": "projects/a11y/src/modules/skip-link/skip-link-args.ts",
359
- "line": 13,
360
- "character": 2,
361
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link-args.ts#L13"
362
- }
363
- ],
364
- "type": {
365
- "type": "array",
366
- "elementType": {
367
- "type": "reference",
368
- "target": 3,
369
- "name": "SkySkipLink",
370
- "package": "@skyux/a11y"
371
- }
372
- }
373
- }
374
- ],
375
- "groups": [
376
- {
377
- "title": "Properties",
378
- "children": [
379
- 7
380
- ]
381
- }
382
- ],
383
- "sources": [
384
- {
385
- "fileName": "projects/a11y/src/modules/skip-link/skip-link-args.ts",
386
- "line": 9,
387
- "character": 17,
388
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/src/lib/modules/skip-link/skip-link-args.ts#L9"
389
- }
390
- ]
391
- },
392
- {
393
- "id": 24,
394
- "name": "SkySkipLinksHarness",
395
- "variant": "declaration",
396
- "kind": 128,
397
- "flags": {},
398
- "comment": {
399
- "summary": [
400
- {
401
- "kind": "text",
402
- "text": "Harness for interacting with a skip link component in tests."
403
- }
404
- ]
405
- },
406
- "children": [
407
- {
408
- "id": 31,
409
- "name": "constructor",
410
- "variant": "declaration",
411
- "kind": 512,
412
- "flags": {},
413
- "sources": [
414
- {
415
- "fileName": "node_modules/@angular/cdk/testing/index.d.ts",
416
- "line": 38,
417
- "character": 4
418
- }
419
- ],
420
- "signatures": [
421
- {
422
- "id": 32,
423
- "name": "new SkySkipLinksHarness",
424
- "variant": "signature",
425
- "kind": 16384,
426
- "flags": {},
427
- "sources": [
428
- {
429
- "fileName": "node_modules/@angular/cdk/testing/index.d.ts",
430
- "line": 38,
431
- "character": 4
432
- }
433
- ],
434
- "parameters": [
435
- {
436
- "id": 33,
437
- "name": "locatorFactory",
438
- "variant": "param",
439
- "kind": 32768,
440
- "flags": {},
441
- "type": {
442
- "type": "reference",
443
- "target": {
444
- "sourceFileName": "node_modules/@angular/cdk/testing/index.d.ts",
445
- "qualifiedName": "LocatorFactory"
446
- },
447
- "name": "LocatorFactory",
448
- "package": "@angular/cdk"
449
- }
450
- }
451
- ],
452
- "type": {
453
- "type": "reference",
454
- "target": 24,
455
- "name": "SkySkipLinksHarness",
456
- "package": "@skyux/a11y"
457
- },
458
- "inheritedFrom": {
459
- "type": "reference",
460
- "target": -1,
461
- "name": "SkyComponentHarness.constructor"
462
- }
463
- }
464
- ],
465
- "inheritedFrom": {
466
- "type": "reference",
467
- "target": -1,
468
- "name": "SkyComponentHarness.constructor"
469
- }
470
- },
471
- {
472
- "id": 38,
473
- "name": "clickSkipLink",
474
- "variant": "declaration",
475
- "kind": 2048,
476
- "flags": {
477
- "isPublic": true
478
- },
479
- "sources": [
480
- {
481
- "fileName": "projects/a11y/src/testing/modules/skip-link/skip-links-harness.ts",
482
- "line": 26,
483
- "character": 15,
484
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts#L26"
485
- }
486
- ],
487
- "signatures": [
488
- {
489
- "id": 39,
490
- "name": "clickSkipLink",
491
- "variant": "signature",
492
- "kind": 4096,
493
- "flags": {},
494
- "comment": {
495
- "summary": [
496
- {
497
- "kind": "text",
498
- "text": "Clicks the skip link at the given index."
499
- }
500
- ]
501
- },
502
- "sources": [
503
- {
504
- "fileName": "libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts",
505
- "line": 26,
506
- "character": 2,
507
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts#L26"
508
- }
509
- ],
510
- "parameters": [
511
- {
512
- "id": 40,
513
- "name": "index",
514
- "variant": "param",
515
- "kind": 32768,
516
- "flags": {},
517
- "type": {
518
- "type": "intrinsic",
519
- "name": "number"
520
- }
521
- }
522
- ],
523
- "type": {
524
- "type": "reference",
525
- "target": {
526
- "sourceFileName": "node_modules/@skyux/dev-infra-private/node_modules/typescript/lib/lib.es5.d.ts",
527
- "qualifiedName": "Promise"
528
- },
529
- "typeArguments": [
530
- {
531
- "type": "intrinsic",
532
- "name": "void"
533
- }
534
- ],
535
- "name": "Promise",
536
- "package": "typescript"
537
- }
538
- }
539
- ],
540
- "decorators": []
541
- },
542
- {
543
- "id": 35,
544
- "name": "getSkipLinkText",
545
- "variant": "declaration",
546
- "kind": 2048,
547
- "flags": {
548
- "isPublic": true
549
- },
550
- "sources": [
551
- {
552
- "fileName": "projects/a11y/src/testing/modules/skip-link/skip-links-harness.ts",
553
- "line": 17,
554
- "character": 15,
555
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts#L17"
556
- }
557
- ],
558
- "signatures": [
559
- {
560
- "id": 36,
561
- "name": "getSkipLinkText",
562
- "variant": "signature",
563
- "kind": 4096,
564
- "flags": {},
565
- "comment": {
566
- "summary": [
567
- {
568
- "kind": "text",
569
- "text": "Gets the text of the skip link at the given index."
570
- }
571
- ]
572
- },
573
- "sources": [
574
- {
575
- "fileName": "libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts",
576
- "line": 17,
577
- "character": 2,
578
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts#L17"
579
- }
580
- ],
581
- "parameters": [
582
- {
583
- "id": 37,
584
- "name": "index",
585
- "variant": "param",
586
- "kind": 32768,
587
- "flags": {},
588
- "type": {
589
- "type": "intrinsic",
590
- "name": "number"
591
- }
592
- }
593
- ],
594
- "type": {
595
- "type": "reference",
596
- "target": {
597
- "sourceFileName": "node_modules/@skyux/dev-infra-private/node_modules/typescript/lib/lib.es5.d.ts",
598
- "qualifiedName": "Promise"
599
- },
600
- "typeArguments": [
601
- {
602
- "type": "intrinsic",
603
- "name": "string"
604
- }
605
- ],
606
- "name": "Promise",
607
- "package": "typescript"
608
- }
609
- }
610
- ],
611
- "decorators": []
612
- },
613
- {
614
- "id": 44,
615
- "name": "host",
616
- "variant": "declaration",
617
- "kind": 2048,
618
- "flags": {},
619
- "sources": [
620
- {
621
- "fileName": "node_modules/@angular/cdk/testing/index.d.ts",
622
- "line": 40,
623
- "character": 4
624
- }
625
- ],
626
- "signatures": [
627
- {
628
- "id": 45,
629
- "name": "host",
630
- "variant": "signature",
631
- "kind": 4096,
632
- "flags": {},
633
- "comment": {
634
- "summary": [
635
- {
636
- "kind": "text",
637
- "text": "Gets a "
638
- },
639
- {
640
- "kind": "code",
641
- "text": "`Promise`"
642
- },
643
- {
644
- "kind": "text",
645
- "text": " for the "
646
- },
647
- {
648
- "kind": "code",
649
- "text": "`TestElement`"
650
- },
651
- {
652
- "kind": "text",
653
- "text": " representing the host element of the component."
654
- }
655
- ]
656
- },
657
- "sources": [
658
- {
659
- "fileName": "node_modules/@angular/cdk/testing/index.d.ts",
660
- "line": 40,
661
- "character": 4
662
- }
663
- ],
664
- "type": {
665
- "type": "reference",
666
- "target": {
667
- "sourceFileName": "node_modules/@skyux/dev-infra-private/node_modules/typescript/lib/lib.es5.d.ts",
668
- "qualifiedName": "Promise"
669
- },
670
- "typeArguments": [
671
- {
672
- "type": "reference",
673
- "target": {
674
- "sourceFileName": "node_modules/@angular/cdk/testing/index.d.ts",
675
- "qualifiedName": "TestElement"
676
- },
677
- "name": "TestElement",
678
- "package": "@angular/cdk"
679
- }
680
- ],
681
- "name": "Promise",
682
- "package": "typescript"
683
- },
684
- "inheritedFrom": {
685
- "type": "reference",
686
- "target": -1,
687
- "name": "SkyComponentHarness.host"
688
- }
689
- }
690
- ],
691
- "inheritedFrom": {
692
- "type": "reference",
693
- "target": -1,
694
- "name": "SkyComponentHarness.host"
695
- }
696
- }
697
- ],
698
- "groups": [
699
- {
700
- "title": "Constructors",
701
- "children": [
702
- 31
703
- ]
704
- },
705
- {
706
- "title": "Methods",
707
- "children": [
708
- 38,
709
- 35,
710
- 44
711
- ]
712
- }
713
- ],
714
- "sources": [
715
- {
716
- "fileName": "projects/a11y/src/testing/modules/skip-link/skip-links-harness.ts",
717
- "line": 6,
718
- "character": 13,
719
- "url": "https://github.com/blackbaud/skyux/blob/8022b0d/libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts#L6"
720
- }
721
- ],
722
- "extendedTypes": [
723
- {
724
- "type": "reference",
725
- "target": {
726
- "sourceFileName": "libs/components/core/testing/src/shared/component-harness.ts",
727
- "qualifiedName": "SkyComponentHarness"
728
- },
729
- "name": "SkyComponentHarness",
730
- "package": "@skyux/core"
731
- }
732
- ],
733
- "decorators": []
734
- }
735
- ],
736
- "groups": [
737
- {
738
- "title": "Modules",
739
- "children": [
740
- 1,
741
- 2
742
- ]
743
- }
744
- ],
745
- "packageName": "@skyux/a11y",
746
- "readme": [
747
- {
748
- "kind": "text",
749
- "text": "# a11y\n\nThis library was generated with [Nx](https://nx.dev).\n\n## Running unit tests\n\nRun "
750
- },
751
- {
752
- "kind": "code",
753
- "text": "`nx test a11y`"
754
- },
755
- {
756
- "kind": "text",
757
- "text": " to execute the unit tests."
758
- }
759
- ],
760
- "symbolIdMap": {
761
- "1": {
762
- "sourceFileName": "libs/components/a11y/src/index.ts",
763
- "qualifiedName": ""
764
- },
765
- "2": {
766
- "sourceFileName": "libs/components/a11y/testing/src/public-api.ts",
767
- "qualifiedName": ""
768
- },
769
- "3": {
770
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.ts",
771
- "qualifiedName": "SkySkipLink"
772
- },
773
- "4": {
774
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.ts",
775
- "qualifiedName": "SkySkipLink.title"
776
- },
777
- "5": {
778
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.ts",
779
- "qualifiedName": "SkySkipLink.elementRef"
780
- },
781
- "6": {
782
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link-args.ts",
783
- "qualifiedName": "SkySkipLinkArgs"
784
- },
785
- "7": {
786
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link-args.ts",
787
- "qualifiedName": "SkySkipLinkArgs.links"
788
- },
789
- "11": {
790
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
791
- "qualifiedName": "SkySkipLinkService"
792
- },
793
- "13": {
794
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
795
- "qualifiedName": "SkySkipLinkService.__constructor"
796
- },
797
- "14": {
798
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
799
- "qualifiedName": "SkySkipLinkService"
800
- },
801
- "15": {
802
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
803
- "qualifiedName": "dynamicComponentService"
804
- },
805
- "17": {
806
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
807
- "qualifiedName": "SkySkipLinkService.setSkipLinks"
808
- },
809
- "18": {
810
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
811
- "qualifiedName": "SkySkipLinkService.setSkipLinks"
812
- },
813
- "19": {
814
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
815
- "qualifiedName": "args"
816
- },
817
- "20": {
818
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
819
- "qualifiedName": "SkySkipLinkService.removeHostComponent"
820
- },
821
- "21": {
822
- "sourceFileName": "libs/components/a11y/src/lib/modules/skip-link/skip-link.service.ts",
823
- "qualifiedName": "SkySkipLinkService.removeHostComponent"
824
- },
825
- "24": {
826
- "sourceFileName": "libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts",
827
- "qualifiedName": "SkySkipLinksHarness"
828
- },
829
- "31": {
830
- "sourceFileName": "node_modules/@angular/cdk/testing/index.d.ts",
831
- "qualifiedName": "ComponentHarness.__constructor"
832
- },
833
- "32": {
834
- "sourceFileName": "node_modules/@angular/cdk/testing/index.d.ts",
835
- "qualifiedName": "SkySkipLinksHarness"
836
- },
837
- "33": {
838
- "sourceFileName": "node_modules/@angular/cdk/testing/index.d.ts",
839
- "qualifiedName": "locatorFactory"
840
- },
841
- "35": {
842
- "sourceFileName": "libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts",
843
- "qualifiedName": "SkySkipLinksHarness.getSkipLinkText"
844
- },
845
- "36": {
846
- "sourceFileName": "libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts",
847
- "qualifiedName": "SkySkipLinksHarness.getSkipLinkText"
848
- },
849
- "37": {
850
- "sourceFileName": "libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts",
851
- "qualifiedName": "index"
852
- },
853
- "38": {
854
- "sourceFileName": "libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts",
855
- "qualifiedName": "SkySkipLinksHarness.clickSkipLink"
856
- },
857
- "39": {
858
- "sourceFileName": "libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts",
859
- "qualifiedName": "SkySkipLinksHarness.clickSkipLink"
860
- },
861
- "40": {
862
- "sourceFileName": "libs/components/a11y/testing/src/modules/skip-link/skip-links-harness.ts",
863
- "qualifiedName": "index"
864
- },
865
- "44": {
866
- "sourceFileName": "node_modules/@angular/cdk/testing/index.d.ts",
867
- "qualifiedName": "ComponentHarness.host"
868
- },
869
- "45": {
870
- "sourceFileName": "node_modules/@angular/cdk/testing/index.d.ts",
871
- "qualifiedName": "ComponentHarness.host"
872
- }
873
- }
874
- },
875
- "codeExamples": [],
876
- "codeExampleDependencies": {}
877
- }