@aurodesignsystem-dev/auro-nav 0.0.0-pr86.0 → 0.0.0-pr90.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.
@@ -0,0 +1,3732 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "src/auro-anchorlink.js",
8
+ "declarations": [
9
+ {
10
+ "kind": "class",
11
+ "description": "The auro-nav element provides users a way to ... (it would be great if you fill this out).",
12
+ "name": "AuroAnchorlink",
13
+ "members": [
14
+ {
15
+ "kind": "method",
16
+ "name": "register",
17
+ "static": true,
18
+ "parameters": [
19
+ {
20
+ "name": "name",
21
+ "default": "\"auro-anchorlink\"",
22
+ "description": "The name of element that you want to register to.",
23
+ "optional": true,
24
+ "type": {
25
+ "text": "string"
26
+ }
27
+ }
28
+ ],
29
+ "description": "This will register this element with the browser.",
30
+ "inheritedFrom": {
31
+ "name": "AuroHyperlink",
32
+ "module": "src/auro-hyperlink.js"
33
+ }
34
+ },
35
+ {
36
+ "kind": "field",
37
+ "name": "active",
38
+ "privacy": "public",
39
+ "type": {
40
+ "text": "boolean"
41
+ },
42
+ "description": "If set, the link is currently the active link in the parent auro-nav.",
43
+ "attribute": "active",
44
+ "reflects": true
45
+ },
46
+ {
47
+ "kind": "field",
48
+ "name": "shadowRootOptions",
49
+ "static": true,
50
+ "readonly": true,
51
+ "inheritedFrom": {
52
+ "name": "AuroHyperlink",
53
+ "module": "src/auro-hyperlink.js"
54
+ }
55
+ },
56
+ {
57
+ "kind": "method",
58
+ "name": "_createRefs",
59
+ "description": "Create usable refs to internal elements",
60
+ "return": {
61
+ "type": {
62
+ "text": "void"
63
+ }
64
+ },
65
+ "privacy": "private",
66
+ "inheritedFrom": {
67
+ "name": "AuroHyperlink",
68
+ "module": "src/auro-hyperlink.js"
69
+ }
70
+ },
71
+ {
72
+ "kind": "method",
73
+ "name": "renderLayoutDefault",
74
+ "description": "Renders the default layout for the hyperlink.",
75
+ "return": {
76
+ "type": {
77
+ "text": "TemplateResult"
78
+ }
79
+ },
80
+ "privacy": "private",
81
+ "inheritedFrom": {
82
+ "name": "AuroHyperlink",
83
+ "module": "src/auro-hyperlink.js"
84
+ }
85
+ },
86
+ {
87
+ "kind": "method",
88
+ "name": "renderLayoutCTA",
89
+ "description": "Renders the cta layout for the hyperlink.",
90
+ "return": {
91
+ "type": {
92
+ "text": "TemplateResult"
93
+ }
94
+ },
95
+ "privacy": "private",
96
+ "inheritedFrom": {
97
+ "name": "AuroHyperlink",
98
+ "module": "src/auro-hyperlink.js"
99
+ }
100
+ },
101
+ {
102
+ "kind": "method",
103
+ "name": "getMarkup",
104
+ "description": "Generates an object containing CSS classes based on the properties of the component.",
105
+ "privacy": "private",
106
+ "return": {
107
+ "type": {
108
+ "text": "object"
109
+ }
110
+ },
111
+ "inheritedFrom": {
112
+ "name": "AuroHyperlink",
113
+ "module": "src/auro-hyperlink.js"
114
+ }
115
+ },
116
+ {
117
+ "kind": "field",
118
+ "name": "iconTag",
119
+ "privacy": "private",
120
+ "inheritedFrom": {
121
+ "name": "AuroHyperlink",
122
+ "module": "src/auro-hyperlink.js"
123
+ }
124
+ },
125
+ {
126
+ "type": {
127
+ "text": "String"
128
+ },
129
+ "description": "Defines ARIA roles; currently supports `button` for extended experiences.",
130
+ "name": "role",
131
+ "kind": "field",
132
+ "inheritedFrom": {
133
+ "name": "AuroHyperlink",
134
+ "module": "src/auro-hyperlink.js"
135
+ }
136
+ },
137
+ {
138
+ "kind": "field",
139
+ "name": "safeUri",
140
+ "description": "Returns a safe URI based on the provided `href` and `relative` parameters.\nIf `href` is truthy, it generates a safe URL using the `safeUrl` function.\nOtherwise, it returns an empty string.",
141
+ "return": {
142
+ "type": {
143
+ "text": "string"
144
+ }
145
+ },
146
+ "readonly": true,
147
+ "inheritedFrom": {
148
+ "name": "ComponentBase",
149
+ "module": "src/component-base.mjs"
150
+ }
151
+ },
152
+ {
153
+ "kind": "field",
154
+ "name": "includesDomain",
155
+ "description": "Checks whether the provided URI (if available) includes the 'http' protocol.\nIf the URI is truthy, it examines whether it contains 'http'.\nOtherwise, it returns false.",
156
+ "privacy": "private",
157
+ "return": {
158
+ "type": {
159
+ "text": "boolean"
160
+ }
161
+ },
162
+ "readonly": true,
163
+ "inheritedFrom": {
164
+ "name": "ComponentBase",
165
+ "module": "src/component-base.mjs"
166
+ }
167
+ },
168
+ {
169
+ "kind": "method",
170
+ "name": "safeUrl",
171
+ "parameters": [
172
+ {
173
+ "name": "href",
174
+ "description": "The original URL.",
175
+ "type": {
176
+ "text": "string"
177
+ }
178
+ },
179
+ {
180
+ "name": "relative",
181
+ "description": "Indicates whether the URL is relative.",
182
+ "type": {
183
+ "text": "boolean"
184
+ }
185
+ }
186
+ ],
187
+ "description": "Generates a safe URL based on the provided `href` and `relative` parameters.\nIf `href` is falsy, it returns `undefined`.",
188
+ "privacy": "private",
189
+ "return": {
190
+ "type": {
191
+ "text": "string|undefined"
192
+ }
193
+ },
194
+ "inheritedFrom": {
195
+ "name": "ComponentBase",
196
+ "module": "src/component-base.mjs"
197
+ }
198
+ },
199
+ {
200
+ "kind": "method",
201
+ "name": "generateIconHtml",
202
+ "parameters": [
203
+ {
204
+ "name": "svgContent",
205
+ "description": "The SVG content to be embedded.",
206
+ "type": {
207
+ "text": "string"
208
+ }
209
+ }
210
+ ],
211
+ "description": "Generates an HTML element containing an SVG icon based on the provided `svgContent`.",
212
+ "privacy": "private",
213
+ "return": {
214
+ "type": {
215
+ "text": "Element"
216
+ }
217
+ },
218
+ "inheritedFrom": {
219
+ "name": "ComponentBase",
220
+ "module": "src/component-base.mjs"
221
+ }
222
+ },
223
+ {
224
+ "kind": "method",
225
+ "name": "targetIcon",
226
+ "parameters": [
227
+ {
228
+ "name": "target",
229
+ "description": "The target attribute of the anchor element.",
230
+ "type": {
231
+ "text": "string"
232
+ }
233
+ }
234
+ ],
235
+ "description": "Generates an icon HTML element based on the target attribute.",
236
+ "privacy": "private",
237
+ "return": {
238
+ "type": {
239
+ "text": "HTMLElement|undefined"
240
+ }
241
+ },
242
+ "inheritedFrom": {
243
+ "name": "ComponentBase",
244
+ "module": "src/component-base.mjs"
245
+ }
246
+ },
247
+ {
248
+ "kind": "method",
249
+ "name": "getTabState",
250
+ "parameters": [
251
+ {
252
+ "name": "tabIsActive",
253
+ "description": "Indicates whether the tab is active.",
254
+ "type": {
255
+ "text": "boolean"
256
+ }
257
+ }
258
+ ],
259
+ "description": "Returns the state of a tab as a string.",
260
+ "privacy": "private",
261
+ "return": {
262
+ "type": {
263
+ "text": "string"
264
+ }
265
+ },
266
+ "inheritedFrom": {
267
+ "name": "ComponentBase",
268
+ "module": "src/component-base.mjs"
269
+ }
270
+ },
271
+ {
272
+ "kind": "method",
273
+ "name": "getRelType",
274
+ "parameters": [
275
+ {
276
+ "name": "target",
277
+ "description": "The target attribute of the anchor element.",
278
+ "type": {
279
+ "text": "string"
280
+ }
281
+ },
282
+ {
283
+ "name": "rel",
284
+ "description": "The rel attribute of the anchor element.",
285
+ "type": {
286
+ "text": "string"
287
+ }
288
+ }
289
+ ],
290
+ "description": "Gets the rel attribute value based on target and rel values.",
291
+ "privacy": "private",
292
+ "return": {
293
+ "type": {
294
+ "text": "string|undefined"
295
+ }
296
+ },
297
+ "inheritedFrom": {
298
+ "name": "ComponentBase",
299
+ "module": "src/component-base.mjs"
300
+ }
301
+ },
302
+ {
303
+ "kind": "method",
304
+ "name": "ariaPressedState",
305
+ "parameters": [
306
+ {
307
+ "name": "ariaPressed",
308
+ "description": "The initial value of the ARIA pressed state.",
309
+ "type": {
310
+ "text": "boolean"
311
+ }
312
+ }
313
+ ],
314
+ "description": "Sets the ARIA pressed state based on user interactions.",
315
+ "privacy": "private",
316
+ "return": {
317
+ "type": {
318
+ "text": "boolean"
319
+ }
320
+ },
321
+ "inheritedFrom": {
322
+ "name": "ComponentBase",
323
+ "module": "src/component-base.mjs"
324
+ }
325
+ },
326
+ {
327
+ "kind": "field",
328
+ "name": "appearance",
329
+ "privacy": "public",
330
+ "type": {
331
+ "text": "string"
332
+ },
333
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
334
+ "default": "'default'",
335
+ "attribute": "appearance",
336
+ "reflects": true,
337
+ "inheritedFrom": {
338
+ "name": "ComponentBase",
339
+ "module": "src/component-base.mjs"
340
+ }
341
+ },
342
+ {
343
+ "kind": "field",
344
+ "name": "download",
345
+ "privacy": "public",
346
+ "type": {
347
+ "text": "boolean"
348
+ },
349
+ "description": "If true, the linked resource will be downloaded when the hyperlink is clicked.",
350
+ "default": "false",
351
+ "attribute": "download",
352
+ "reflects": true,
353
+ "inheritedFrom": {
354
+ "name": "ComponentBase",
355
+ "module": "src/component-base.mjs"
356
+ }
357
+ },
358
+ {
359
+ "kind": "field",
360
+ "name": "relative",
361
+ "privacy": "public",
362
+ "type": {
363
+ "text": "boolean"
364
+ },
365
+ "description": "If true, the auto URL re-write feature will be disabled.",
366
+ "default": "false",
367
+ "attribute": "relative",
368
+ "reflects": true,
369
+ "inheritedFrom": {
370
+ "name": "ComponentBase",
371
+ "module": "src/component-base.mjs"
372
+ }
373
+ },
374
+ {
375
+ "kind": "field",
376
+ "name": "ondark",
377
+ "privacy": "public",
378
+ "type": {
379
+ "text": "boolean"
380
+ },
381
+ "description": "DEPRECATED - use `appearance` instead.",
382
+ "default": "false",
383
+ "attribute": "ondark",
384
+ "inheritedFrom": {
385
+ "name": "ComponentBase",
386
+ "module": "src/component-base.mjs"
387
+ }
388
+ },
389
+ {
390
+ "kind": "field",
391
+ "name": "variant",
392
+ "privacy": "public",
393
+ "type": {
394
+ "text": "string"
395
+ },
396
+ "description": "Sets button variant option.",
397
+ "default": "\"primary\"",
398
+ "attribute": "variant",
399
+ "reflects": true,
400
+ "inheritedFrom": {
401
+ "name": "ComponentBase",
402
+ "module": "src/component-base.mjs"
403
+ }
404
+ },
405
+ {
406
+ "kind": "field",
407
+ "name": "layout",
408
+ "privacy": "private",
409
+ "inheritedFrom": {
410
+ "name": "ComponentBase",
411
+ "module": "src/component-base.mjs"
412
+ }
413
+ },
414
+ {
415
+ "kind": "field",
416
+ "name": "shape",
417
+ "privacy": "private",
418
+ "inheritedFrom": {
419
+ "name": "ComponentBase",
420
+ "module": "src/component-base.mjs"
421
+ }
422
+ },
423
+ {
424
+ "kind": "field",
425
+ "name": "size",
426
+ "privacy": "private",
427
+ "inheritedFrom": {
428
+ "name": "ComponentBase",
429
+ "module": "src/component-base.mjs"
430
+ }
431
+ },
432
+ {
433
+ "kind": "field",
434
+ "name": "defaultReferrerPolicy",
435
+ "type": {
436
+ "text": "string"
437
+ },
438
+ "privacy": "private",
439
+ "default": "\"strict-origin-when-cross-origin\"",
440
+ "inheritedFrom": {
441
+ "name": "ComponentBase",
442
+ "module": "src/component-base.mjs"
443
+ }
444
+ },
445
+ {
446
+ "kind": "field",
447
+ "name": "ariapressed",
448
+ "type": {
449
+ "text": "string"
450
+ },
451
+ "privacy": "private",
452
+ "default": "\"false\"",
453
+ "inheritedFrom": {
454
+ "name": "ComponentBase",
455
+ "module": "src/component-base.mjs"
456
+ }
457
+ },
458
+ {
459
+ "kind": "field",
460
+ "name": "tabIsActive",
461
+ "type": {
462
+ "text": "string"
463
+ },
464
+ "privacy": "private",
465
+ "default": "\"false\"",
466
+ "inheritedFrom": {
467
+ "name": "ComponentBase",
468
+ "module": "src/component-base.mjs"
469
+ }
470
+ },
471
+ {
472
+ "kind": "field",
473
+ "name": "runtimeUtils",
474
+ "privacy": "private",
475
+ "default": "new AuroLibraryRuntimeUtils()",
476
+ "inheritedFrom": {
477
+ "name": "ComponentBase",
478
+ "module": "src/component-base.mjs"
479
+ }
480
+ },
481
+ {
482
+ "kind": "field",
483
+ "name": "href",
484
+ "privacy": "public",
485
+ "type": {
486
+ "text": "string"
487
+ },
488
+ "description": "Defines the URL of the linked page.",
489
+ "attribute": "href",
490
+ "reflects": true,
491
+ "inheritedFrom": {
492
+ "name": "ComponentBase",
493
+ "module": "src/component-base.mjs"
494
+ }
495
+ },
496
+ {
497
+ "kind": "field",
498
+ "name": "rel",
499
+ "privacy": "public",
500
+ "type": {
501
+ "text": "string"
502
+ },
503
+ "description": "Defines the relationship between the current document and the linked document.",
504
+ "attribute": "rel",
505
+ "reflects": true,
506
+ "inheritedFrom": {
507
+ "name": "ComponentBase",
508
+ "module": "src/component-base.mjs"
509
+ }
510
+ },
511
+ {
512
+ "kind": "field",
513
+ "name": "target",
514
+ "privacy": "public",
515
+ "type": {
516
+ "text": "string"
517
+ },
518
+ "description": "Defines where to open the linked document.",
519
+ "attribute": "target",
520
+ "reflects": true,
521
+ "inheritedFrom": {
522
+ "name": "ComponentBase",
523
+ "module": "src/component-base.mjs"
524
+ }
525
+ },
526
+ {
527
+ "kind": "field",
528
+ "name": "type",
529
+ "privacy": "public",
530
+ "type": {
531
+ "text": "string"
532
+ },
533
+ "description": "Defines the type of hyperlink; accepts `nav` or `cta`.",
534
+ "attribute": "type",
535
+ "reflects": true,
536
+ "inheritedFrom": {
537
+ "name": "ComponentBase",
538
+ "module": "src/component-base.mjs"
539
+ }
540
+ },
541
+ {
542
+ "kind": "field",
543
+ "name": "fluid",
544
+ "privacy": "public",
545
+ "type": {
546
+ "text": "boolean"
547
+ },
548
+ "description": "If true and `type=\"cta\"`, the hyperlink will have a fluid-width UI.",
549
+ "attribute": "fluid",
550
+ "inheritedFrom": {
551
+ "name": "ComponentBase",
552
+ "module": "src/component-base.mjs"
553
+ }
554
+ },
555
+ {
556
+ "kind": "field",
557
+ "name": "referrerpolicy",
558
+ "privacy": "public",
559
+ "type": {
560
+ "text": "boolean"
561
+ },
562
+ "description": "If true, sets `strict-origin-when-cross-origin` to control the referrer information sent with requests.",
563
+ "attribute": "referrerpolicy",
564
+ "reflects": true,
565
+ "inheritedFrom": {
566
+ "name": "ComponentBase",
567
+ "module": "src/component-base.mjs"
568
+ }
569
+ }
570
+ ],
571
+ "events": [
572
+ {
573
+ "name": "auroAnchorLink-activated",
574
+ "type": {
575
+ "text": "CustomEvent"
576
+ }
577
+ }
578
+ ],
579
+ "attributes": [
580
+ {
581
+ "name": "active",
582
+ "type": {
583
+ "text": "boolean"
584
+ },
585
+ "description": "If set, the link is currently the active link in the parent auro-nav.",
586
+ "fieldName": "active"
587
+ },
588
+ {
589
+ "name": "appearance",
590
+ "type": {
591
+ "text": "string"
592
+ },
593
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
594
+ "default": "'default'",
595
+ "fieldName": "appearance",
596
+ "inheritedFrom": {
597
+ "name": "ComponentBase",
598
+ "module": "src/component-base.mjs"
599
+ }
600
+ },
601
+ {
602
+ "name": "href",
603
+ "type": {
604
+ "text": "string"
605
+ },
606
+ "description": "Defines the URL of the linked page.",
607
+ "fieldName": "href",
608
+ "inheritedFrom": {
609
+ "name": "ComponentBase",
610
+ "module": "src/component-base.mjs"
611
+ }
612
+ },
613
+ {
614
+ "name": "rel",
615
+ "type": {
616
+ "text": "string"
617
+ },
618
+ "description": "Defines the relationship between the current document and the linked document.",
619
+ "fieldName": "rel",
620
+ "inheritedFrom": {
621
+ "name": "ComponentBase",
622
+ "module": "src/component-base.mjs"
623
+ }
624
+ },
625
+ {
626
+ "name": "target",
627
+ "type": {
628
+ "text": "string"
629
+ },
630
+ "description": "Defines where to open the linked document.",
631
+ "fieldName": "target",
632
+ "inheritedFrom": {
633
+ "name": "ComponentBase",
634
+ "module": "src/component-base.mjs"
635
+ }
636
+ },
637
+ {
638
+ "name": "download",
639
+ "type": {
640
+ "text": "boolean"
641
+ },
642
+ "description": "If true, the linked resource will be downloaded when the hyperlink is clicked.",
643
+ "default": "false",
644
+ "fieldName": "download",
645
+ "inheritedFrom": {
646
+ "name": "ComponentBase",
647
+ "module": "src/component-base.mjs"
648
+ }
649
+ },
650
+ {
651
+ "name": "relative",
652
+ "type": {
653
+ "text": "boolean"
654
+ },
655
+ "description": "If true, the auto URL re-write feature will be disabled.",
656
+ "default": "false",
657
+ "fieldName": "relative",
658
+ "inheritedFrom": {
659
+ "name": "ComponentBase",
660
+ "module": "src/component-base.mjs"
661
+ }
662
+ },
663
+ {
664
+ "name": "ondark",
665
+ "type": {
666
+ "text": "boolean"
667
+ },
668
+ "description": "DEPRECATED - use `appearance` instead.",
669
+ "default": "false",
670
+ "fieldName": "ondark",
671
+ "inheritedFrom": {
672
+ "name": "ComponentBase",
673
+ "module": "src/component-base.mjs"
674
+ }
675
+ },
676
+ {
677
+ "name": "type",
678
+ "type": {
679
+ "text": "string"
680
+ },
681
+ "description": "Defines the type of hyperlink; accepts `nav` or `cta`.",
682
+ "fieldName": "type",
683
+ "inheritedFrom": {
684
+ "name": "ComponentBase",
685
+ "module": "src/component-base.mjs"
686
+ }
687
+ },
688
+ {
689
+ "name": "fluid",
690
+ "type": {
691
+ "text": "boolean"
692
+ },
693
+ "description": "If true and `type=\"cta\"`, the hyperlink will have a fluid-width UI.",
694
+ "fieldName": "fluid",
695
+ "inheritedFrom": {
696
+ "name": "ComponentBase",
697
+ "module": "src/component-base.mjs"
698
+ }
699
+ },
700
+ {
701
+ "name": "referrerpolicy",
702
+ "type": {
703
+ "text": "boolean"
704
+ },
705
+ "description": "If true, sets `strict-origin-when-cross-origin` to control the referrer information sent with requests.",
706
+ "fieldName": "referrerpolicy",
707
+ "inheritedFrom": {
708
+ "name": "ComponentBase",
709
+ "module": "src/component-base.mjs"
710
+ }
711
+ },
712
+ {
713
+ "name": "variant",
714
+ "type": {
715
+ "text": "string"
716
+ },
717
+ "description": "Sets button variant option.",
718
+ "default": "\"primary\"",
719
+ "fieldName": "variant",
720
+ "inheritedFrom": {
721
+ "name": "ComponentBase",
722
+ "module": "src/component-base.mjs"
723
+ }
724
+ }
725
+ ],
726
+ "superclass": {
727
+ "name": "AuroHyperlink",
728
+ "package": "@aurodesignsystem/auro-hyperlink/class"
729
+ },
730
+ "cssParts": [
731
+ {
732
+ "description": "Allows styling to be applied to the `a` element.",
733
+ "name": "link",
734
+ "inheritedFrom": {
735
+ "name": "AuroHyperlink",
736
+ "module": "src/auro-hyperlink.js"
737
+ }
738
+ },
739
+ {
740
+ "description": "Allows styling to be applied to the icon that appears next to the hyperlink.",
741
+ "name": "targetIcon",
742
+ "inheritedFrom": {
743
+ "name": "AuroHyperlink",
744
+ "module": "src/auro-hyperlink.js"
745
+ }
746
+ }
747
+ ]
748
+ }
749
+ ],
750
+ "exports": [
751
+ {
752
+ "kind": "js",
753
+ "name": "AuroAnchorlink",
754
+ "declaration": {
755
+ "name": "AuroAnchorlink",
756
+ "module": "src/auro-anchorlink.js"
757
+ }
758
+ }
759
+ ]
760
+ },
761
+ {
762
+ "kind": "javascript-module",
763
+ "path": "src/auro-breadcrumb.js",
764
+ "declarations": [
765
+ {
766
+ "kind": "class",
767
+ "description": "",
768
+ "name": "AuroBreadcrumb",
769
+ "members": [
770
+ {
771
+ "kind": "method",
772
+ "name": "register",
773
+ "static": true,
774
+ "parameters": [
775
+ {
776
+ "name": "name",
777
+ "default": "\"auro-breadcrumb\"",
778
+ "description": "The name of element that you want to register to.",
779
+ "optional": true,
780
+ "type": {
781
+ "text": "string"
782
+ }
783
+ }
784
+ ],
785
+ "description": "This will register this element with the browser.",
786
+ "inheritedFrom": {
787
+ "name": "AuroHyperlink",
788
+ "module": "src/auro-hyperlink.js"
789
+ }
790
+ },
791
+ {
792
+ "kind": "field",
793
+ "name": "shadowRootOptions",
794
+ "static": true,
795
+ "readonly": true,
796
+ "inheritedFrom": {
797
+ "name": "AuroHyperlink",
798
+ "module": "src/auro-hyperlink.js"
799
+ }
800
+ },
801
+ {
802
+ "kind": "method",
803
+ "name": "_createRefs",
804
+ "description": "Create usable refs to internal elements",
805
+ "return": {
806
+ "type": {
807
+ "text": "void"
808
+ }
809
+ },
810
+ "privacy": "private",
811
+ "inheritedFrom": {
812
+ "name": "AuroHyperlink",
813
+ "module": "src/auro-hyperlink.js"
814
+ }
815
+ },
816
+ {
817
+ "kind": "method",
818
+ "name": "renderLayoutDefault",
819
+ "description": "Renders the default layout for the hyperlink.",
820
+ "return": {
821
+ "type": {
822
+ "text": "TemplateResult"
823
+ }
824
+ },
825
+ "privacy": "private",
826
+ "inheritedFrom": {
827
+ "name": "AuroHyperlink",
828
+ "module": "src/auro-hyperlink.js"
829
+ }
830
+ },
831
+ {
832
+ "kind": "method",
833
+ "name": "renderLayoutCTA",
834
+ "description": "Renders the cta layout for the hyperlink.",
835
+ "return": {
836
+ "type": {
837
+ "text": "TemplateResult"
838
+ }
839
+ },
840
+ "privacy": "private",
841
+ "inheritedFrom": {
842
+ "name": "AuroHyperlink",
843
+ "module": "src/auro-hyperlink.js"
844
+ }
845
+ },
846
+ {
847
+ "kind": "method",
848
+ "name": "getMarkup",
849
+ "description": "Generates an object containing CSS classes based on the properties of the component.",
850
+ "privacy": "private",
851
+ "return": {
852
+ "type": {
853
+ "text": "object"
854
+ }
855
+ },
856
+ "inheritedFrom": {
857
+ "name": "AuroHyperlink",
858
+ "module": "src/auro-hyperlink.js"
859
+ }
860
+ },
861
+ {
862
+ "kind": "field",
863
+ "name": "iconTag",
864
+ "privacy": "private",
865
+ "inheritedFrom": {
866
+ "name": "AuroHyperlink",
867
+ "module": "src/auro-hyperlink.js"
868
+ }
869
+ },
870
+ {
871
+ "type": {
872
+ "text": "String"
873
+ },
874
+ "description": "Defines ARIA roles; currently supports `button` for extended experiences.",
875
+ "name": "role",
876
+ "kind": "field",
877
+ "inheritedFrom": {
878
+ "name": "AuroHyperlink",
879
+ "module": "src/auro-hyperlink.js"
880
+ }
881
+ },
882
+ {
883
+ "kind": "field",
884
+ "name": "safeUri",
885
+ "description": "Returns a safe URI based on the provided `href` and `relative` parameters.\nIf `href` is truthy, it generates a safe URL using the `safeUrl` function.\nOtherwise, it returns an empty string.",
886
+ "return": {
887
+ "type": {
888
+ "text": "string"
889
+ }
890
+ },
891
+ "readonly": true,
892
+ "inheritedFrom": {
893
+ "name": "ComponentBase",
894
+ "module": "src/component-base.mjs"
895
+ }
896
+ },
897
+ {
898
+ "kind": "field",
899
+ "name": "includesDomain",
900
+ "description": "Checks whether the provided URI (if available) includes the 'http' protocol.\nIf the URI is truthy, it examines whether it contains 'http'.\nOtherwise, it returns false.",
901
+ "privacy": "private",
902
+ "return": {
903
+ "type": {
904
+ "text": "boolean"
905
+ }
906
+ },
907
+ "readonly": true,
908
+ "inheritedFrom": {
909
+ "name": "ComponentBase",
910
+ "module": "src/component-base.mjs"
911
+ }
912
+ },
913
+ {
914
+ "kind": "method",
915
+ "name": "safeUrl",
916
+ "parameters": [
917
+ {
918
+ "name": "href",
919
+ "description": "The original URL.",
920
+ "type": {
921
+ "text": "string"
922
+ }
923
+ },
924
+ {
925
+ "name": "relative",
926
+ "description": "Indicates whether the URL is relative.",
927
+ "type": {
928
+ "text": "boolean"
929
+ }
930
+ }
931
+ ],
932
+ "description": "Generates a safe URL based on the provided `href` and `relative` parameters.\nIf `href` is falsy, it returns `undefined`.",
933
+ "privacy": "private",
934
+ "return": {
935
+ "type": {
936
+ "text": "string|undefined"
937
+ }
938
+ },
939
+ "inheritedFrom": {
940
+ "name": "ComponentBase",
941
+ "module": "src/component-base.mjs"
942
+ }
943
+ },
944
+ {
945
+ "kind": "method",
946
+ "name": "generateIconHtml",
947
+ "parameters": [
948
+ {
949
+ "name": "svgContent",
950
+ "description": "The SVG content to be embedded.",
951
+ "type": {
952
+ "text": "string"
953
+ }
954
+ }
955
+ ],
956
+ "description": "Generates an HTML element containing an SVG icon based on the provided `svgContent`.",
957
+ "privacy": "private",
958
+ "return": {
959
+ "type": {
960
+ "text": "Element"
961
+ }
962
+ },
963
+ "inheritedFrom": {
964
+ "name": "ComponentBase",
965
+ "module": "src/component-base.mjs"
966
+ }
967
+ },
968
+ {
969
+ "kind": "method",
970
+ "name": "targetIcon",
971
+ "parameters": [
972
+ {
973
+ "name": "target",
974
+ "description": "The target attribute of the anchor element.",
975
+ "type": {
976
+ "text": "string"
977
+ }
978
+ }
979
+ ],
980
+ "description": "Generates an icon HTML element based on the target attribute.",
981
+ "privacy": "private",
982
+ "return": {
983
+ "type": {
984
+ "text": "HTMLElement|undefined"
985
+ }
986
+ },
987
+ "inheritedFrom": {
988
+ "name": "ComponentBase",
989
+ "module": "src/component-base.mjs"
990
+ }
991
+ },
992
+ {
993
+ "kind": "method",
994
+ "name": "getTabState",
995
+ "parameters": [
996
+ {
997
+ "name": "tabIsActive",
998
+ "description": "Indicates whether the tab is active.",
999
+ "type": {
1000
+ "text": "boolean"
1001
+ }
1002
+ }
1003
+ ],
1004
+ "description": "Returns the state of a tab as a string.",
1005
+ "privacy": "private",
1006
+ "return": {
1007
+ "type": {
1008
+ "text": "string"
1009
+ }
1010
+ },
1011
+ "inheritedFrom": {
1012
+ "name": "ComponentBase",
1013
+ "module": "src/component-base.mjs"
1014
+ }
1015
+ },
1016
+ {
1017
+ "kind": "method",
1018
+ "name": "getRelType",
1019
+ "parameters": [
1020
+ {
1021
+ "name": "target",
1022
+ "description": "The target attribute of the anchor element.",
1023
+ "type": {
1024
+ "text": "string"
1025
+ }
1026
+ },
1027
+ {
1028
+ "name": "rel",
1029
+ "description": "The rel attribute of the anchor element.",
1030
+ "type": {
1031
+ "text": "string"
1032
+ }
1033
+ }
1034
+ ],
1035
+ "description": "Gets the rel attribute value based on target and rel values.",
1036
+ "privacy": "private",
1037
+ "return": {
1038
+ "type": {
1039
+ "text": "string|undefined"
1040
+ }
1041
+ },
1042
+ "inheritedFrom": {
1043
+ "name": "ComponentBase",
1044
+ "module": "src/component-base.mjs"
1045
+ }
1046
+ },
1047
+ {
1048
+ "kind": "method",
1049
+ "name": "ariaPressedState",
1050
+ "parameters": [
1051
+ {
1052
+ "name": "ariaPressed",
1053
+ "description": "The initial value of the ARIA pressed state.",
1054
+ "type": {
1055
+ "text": "boolean"
1056
+ }
1057
+ }
1058
+ ],
1059
+ "description": "Sets the ARIA pressed state based on user interactions.",
1060
+ "privacy": "private",
1061
+ "return": {
1062
+ "type": {
1063
+ "text": "boolean"
1064
+ }
1065
+ },
1066
+ "inheritedFrom": {
1067
+ "name": "ComponentBase",
1068
+ "module": "src/component-base.mjs"
1069
+ }
1070
+ },
1071
+ {
1072
+ "kind": "field",
1073
+ "name": "appearance",
1074
+ "privacy": "public",
1075
+ "type": {
1076
+ "text": "string"
1077
+ },
1078
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
1079
+ "default": "'default'",
1080
+ "attribute": "appearance",
1081
+ "reflects": true,
1082
+ "inheritedFrom": {
1083
+ "name": "ComponentBase",
1084
+ "module": "src/component-base.mjs"
1085
+ }
1086
+ },
1087
+ {
1088
+ "kind": "field",
1089
+ "name": "download",
1090
+ "privacy": "public",
1091
+ "type": {
1092
+ "text": "boolean"
1093
+ },
1094
+ "description": "If true, the linked resource will be downloaded when the hyperlink is clicked.",
1095
+ "default": "false",
1096
+ "attribute": "download",
1097
+ "reflects": true,
1098
+ "inheritedFrom": {
1099
+ "name": "ComponentBase",
1100
+ "module": "src/component-base.mjs"
1101
+ }
1102
+ },
1103
+ {
1104
+ "kind": "field",
1105
+ "name": "relative",
1106
+ "privacy": "public",
1107
+ "type": {
1108
+ "text": "boolean"
1109
+ },
1110
+ "description": "If true, the auto URL re-write feature will be disabled.",
1111
+ "default": "false",
1112
+ "attribute": "relative",
1113
+ "reflects": true,
1114
+ "inheritedFrom": {
1115
+ "name": "ComponentBase",
1116
+ "module": "src/component-base.mjs"
1117
+ }
1118
+ },
1119
+ {
1120
+ "kind": "field",
1121
+ "name": "ondark",
1122
+ "privacy": "public",
1123
+ "type": {
1124
+ "text": "boolean"
1125
+ },
1126
+ "description": "DEPRECATED - use `appearance` instead.",
1127
+ "default": "false",
1128
+ "attribute": "ondark",
1129
+ "inheritedFrom": {
1130
+ "name": "ComponentBase",
1131
+ "module": "src/component-base.mjs"
1132
+ }
1133
+ },
1134
+ {
1135
+ "kind": "field",
1136
+ "name": "variant",
1137
+ "privacy": "public",
1138
+ "type": {
1139
+ "text": "string"
1140
+ },
1141
+ "description": "Sets button variant option.",
1142
+ "default": "\"primary\"",
1143
+ "attribute": "variant",
1144
+ "reflects": true,
1145
+ "inheritedFrom": {
1146
+ "name": "ComponentBase",
1147
+ "module": "src/component-base.mjs"
1148
+ }
1149
+ },
1150
+ {
1151
+ "kind": "field",
1152
+ "name": "layout",
1153
+ "privacy": "private",
1154
+ "inheritedFrom": {
1155
+ "name": "ComponentBase",
1156
+ "module": "src/component-base.mjs"
1157
+ }
1158
+ },
1159
+ {
1160
+ "kind": "field",
1161
+ "name": "shape",
1162
+ "privacy": "private",
1163
+ "inheritedFrom": {
1164
+ "name": "ComponentBase",
1165
+ "module": "src/component-base.mjs"
1166
+ }
1167
+ },
1168
+ {
1169
+ "kind": "field",
1170
+ "name": "size",
1171
+ "privacy": "private",
1172
+ "inheritedFrom": {
1173
+ "name": "ComponentBase",
1174
+ "module": "src/component-base.mjs"
1175
+ }
1176
+ },
1177
+ {
1178
+ "kind": "field",
1179
+ "name": "defaultReferrerPolicy",
1180
+ "type": {
1181
+ "text": "string"
1182
+ },
1183
+ "privacy": "private",
1184
+ "default": "\"strict-origin-when-cross-origin\"",
1185
+ "inheritedFrom": {
1186
+ "name": "ComponentBase",
1187
+ "module": "src/component-base.mjs"
1188
+ }
1189
+ },
1190
+ {
1191
+ "kind": "field",
1192
+ "name": "ariapressed",
1193
+ "type": {
1194
+ "text": "string"
1195
+ },
1196
+ "privacy": "private",
1197
+ "default": "\"false\"",
1198
+ "inheritedFrom": {
1199
+ "name": "ComponentBase",
1200
+ "module": "src/component-base.mjs"
1201
+ }
1202
+ },
1203
+ {
1204
+ "kind": "field",
1205
+ "name": "tabIsActive",
1206
+ "type": {
1207
+ "text": "string"
1208
+ },
1209
+ "privacy": "private",
1210
+ "default": "\"false\"",
1211
+ "inheritedFrom": {
1212
+ "name": "ComponentBase",
1213
+ "module": "src/component-base.mjs"
1214
+ }
1215
+ },
1216
+ {
1217
+ "kind": "field",
1218
+ "name": "runtimeUtils",
1219
+ "privacy": "private",
1220
+ "default": "new AuroLibraryRuntimeUtils()",
1221
+ "inheritedFrom": {
1222
+ "name": "ComponentBase",
1223
+ "module": "src/component-base.mjs"
1224
+ }
1225
+ },
1226
+ {
1227
+ "kind": "field",
1228
+ "name": "href",
1229
+ "privacy": "public",
1230
+ "type": {
1231
+ "text": "string"
1232
+ },
1233
+ "description": "Defines the URL of the linked page.",
1234
+ "attribute": "href",
1235
+ "reflects": true,
1236
+ "inheritedFrom": {
1237
+ "name": "ComponentBase",
1238
+ "module": "src/component-base.mjs"
1239
+ }
1240
+ },
1241
+ {
1242
+ "kind": "field",
1243
+ "name": "rel",
1244
+ "privacy": "public",
1245
+ "type": {
1246
+ "text": "string"
1247
+ },
1248
+ "description": "Defines the relationship between the current document and the linked document.",
1249
+ "attribute": "rel",
1250
+ "reflects": true,
1251
+ "inheritedFrom": {
1252
+ "name": "ComponentBase",
1253
+ "module": "src/component-base.mjs"
1254
+ }
1255
+ },
1256
+ {
1257
+ "kind": "field",
1258
+ "name": "target",
1259
+ "privacy": "public",
1260
+ "type": {
1261
+ "text": "string"
1262
+ },
1263
+ "description": "Defines where to open the linked document.",
1264
+ "attribute": "target",
1265
+ "reflects": true,
1266
+ "inheritedFrom": {
1267
+ "name": "ComponentBase",
1268
+ "module": "src/component-base.mjs"
1269
+ }
1270
+ },
1271
+ {
1272
+ "kind": "field",
1273
+ "name": "type",
1274
+ "privacy": "public",
1275
+ "type": {
1276
+ "text": "string"
1277
+ },
1278
+ "description": "Defines the type of hyperlink; accepts `nav` or `cta`.",
1279
+ "attribute": "type",
1280
+ "reflects": true,
1281
+ "inheritedFrom": {
1282
+ "name": "ComponentBase",
1283
+ "module": "src/component-base.mjs"
1284
+ }
1285
+ },
1286
+ {
1287
+ "kind": "field",
1288
+ "name": "fluid",
1289
+ "privacy": "public",
1290
+ "type": {
1291
+ "text": "boolean"
1292
+ },
1293
+ "description": "If true and `type=\"cta\"`, the hyperlink will have a fluid-width UI.",
1294
+ "attribute": "fluid",
1295
+ "inheritedFrom": {
1296
+ "name": "ComponentBase",
1297
+ "module": "src/component-base.mjs"
1298
+ }
1299
+ },
1300
+ {
1301
+ "kind": "field",
1302
+ "name": "referrerpolicy",
1303
+ "privacy": "public",
1304
+ "type": {
1305
+ "text": "boolean"
1306
+ },
1307
+ "description": "If true, sets `strict-origin-when-cross-origin` to control the referrer information sent with requests.",
1308
+ "attribute": "referrerpolicy",
1309
+ "reflects": true,
1310
+ "inheritedFrom": {
1311
+ "name": "ComponentBase",
1312
+ "module": "src/component-base.mjs"
1313
+ }
1314
+ }
1315
+ ],
1316
+ "superclass": {
1317
+ "name": "AuroHyperlink",
1318
+ "package": "@aurodesignsystem/auro-hyperlink/class"
1319
+ },
1320
+ "cssParts": [
1321
+ {
1322
+ "description": "Allows styling to be applied to the `a` element.",
1323
+ "name": "link",
1324
+ "inheritedFrom": {
1325
+ "name": "AuroHyperlink",
1326
+ "module": "src/auro-hyperlink.js"
1327
+ }
1328
+ },
1329
+ {
1330
+ "description": "Allows styling to be applied to the icon that appears next to the hyperlink.",
1331
+ "name": "targetIcon",
1332
+ "inheritedFrom": {
1333
+ "name": "AuroHyperlink",
1334
+ "module": "src/auro-hyperlink.js"
1335
+ }
1336
+ }
1337
+ ],
1338
+ "attributes": [
1339
+ {
1340
+ "name": "appearance",
1341
+ "type": {
1342
+ "text": "string"
1343
+ },
1344
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
1345
+ "default": "'default'",
1346
+ "fieldName": "appearance",
1347
+ "inheritedFrom": {
1348
+ "name": "ComponentBase",
1349
+ "module": "src/component-base.mjs"
1350
+ }
1351
+ },
1352
+ {
1353
+ "name": "href",
1354
+ "type": {
1355
+ "text": "string"
1356
+ },
1357
+ "description": "Defines the URL of the linked page.",
1358
+ "fieldName": "href",
1359
+ "inheritedFrom": {
1360
+ "name": "ComponentBase",
1361
+ "module": "src/component-base.mjs"
1362
+ }
1363
+ },
1364
+ {
1365
+ "name": "rel",
1366
+ "type": {
1367
+ "text": "string"
1368
+ },
1369
+ "description": "Defines the relationship between the current document and the linked document.",
1370
+ "fieldName": "rel",
1371
+ "inheritedFrom": {
1372
+ "name": "ComponentBase",
1373
+ "module": "src/component-base.mjs"
1374
+ }
1375
+ },
1376
+ {
1377
+ "name": "target",
1378
+ "type": {
1379
+ "text": "string"
1380
+ },
1381
+ "description": "Defines where to open the linked document.",
1382
+ "fieldName": "target",
1383
+ "inheritedFrom": {
1384
+ "name": "ComponentBase",
1385
+ "module": "src/component-base.mjs"
1386
+ }
1387
+ },
1388
+ {
1389
+ "name": "download",
1390
+ "type": {
1391
+ "text": "boolean"
1392
+ },
1393
+ "description": "If true, the linked resource will be downloaded when the hyperlink is clicked.",
1394
+ "default": "false",
1395
+ "fieldName": "download",
1396
+ "inheritedFrom": {
1397
+ "name": "ComponentBase",
1398
+ "module": "src/component-base.mjs"
1399
+ }
1400
+ },
1401
+ {
1402
+ "name": "relative",
1403
+ "type": {
1404
+ "text": "boolean"
1405
+ },
1406
+ "description": "If true, the auto URL re-write feature will be disabled.",
1407
+ "default": "false",
1408
+ "fieldName": "relative",
1409
+ "inheritedFrom": {
1410
+ "name": "ComponentBase",
1411
+ "module": "src/component-base.mjs"
1412
+ }
1413
+ },
1414
+ {
1415
+ "name": "ondark",
1416
+ "type": {
1417
+ "text": "boolean"
1418
+ },
1419
+ "description": "DEPRECATED - use `appearance` instead.",
1420
+ "default": "false",
1421
+ "fieldName": "ondark",
1422
+ "inheritedFrom": {
1423
+ "name": "ComponentBase",
1424
+ "module": "src/component-base.mjs"
1425
+ }
1426
+ },
1427
+ {
1428
+ "name": "type",
1429
+ "type": {
1430
+ "text": "string"
1431
+ },
1432
+ "description": "Defines the type of hyperlink; accepts `nav` or `cta`.",
1433
+ "fieldName": "type",
1434
+ "inheritedFrom": {
1435
+ "name": "ComponentBase",
1436
+ "module": "src/component-base.mjs"
1437
+ }
1438
+ },
1439
+ {
1440
+ "name": "fluid",
1441
+ "type": {
1442
+ "text": "boolean"
1443
+ },
1444
+ "description": "If true and `type=\"cta\"`, the hyperlink will have a fluid-width UI.",
1445
+ "fieldName": "fluid",
1446
+ "inheritedFrom": {
1447
+ "name": "ComponentBase",
1448
+ "module": "src/component-base.mjs"
1449
+ }
1450
+ },
1451
+ {
1452
+ "name": "referrerpolicy",
1453
+ "type": {
1454
+ "text": "boolean"
1455
+ },
1456
+ "description": "If true, sets `strict-origin-when-cross-origin` to control the referrer information sent with requests.",
1457
+ "fieldName": "referrerpolicy",
1458
+ "inheritedFrom": {
1459
+ "name": "ComponentBase",
1460
+ "module": "src/component-base.mjs"
1461
+ }
1462
+ },
1463
+ {
1464
+ "name": "variant",
1465
+ "type": {
1466
+ "text": "string"
1467
+ },
1468
+ "description": "Sets button variant option.",
1469
+ "default": "\"primary\"",
1470
+ "fieldName": "variant",
1471
+ "inheritedFrom": {
1472
+ "name": "ComponentBase",
1473
+ "module": "src/component-base.mjs"
1474
+ }
1475
+ }
1476
+ ]
1477
+ }
1478
+ ],
1479
+ "exports": [
1480
+ {
1481
+ "kind": "js",
1482
+ "name": "AuroBreadcrumb",
1483
+ "declaration": {
1484
+ "name": "AuroBreadcrumb",
1485
+ "module": "src/auro-breadcrumb.js"
1486
+ }
1487
+ }
1488
+ ]
1489
+ },
1490
+ {
1491
+ "kind": "javascript-module",
1492
+ "path": "src/auro-nav.js",
1493
+ "declarations": [
1494
+ {
1495
+ "kind": "class",
1496
+ "description": "The auro-nav element provides a way to show users a secondary navigation aid that helps them understand the relation between the location of their current page and higher level pages.",
1497
+ "name": "AuroNav",
1498
+ "slots": [
1499
+ {
1500
+ "description": "for insertion of navigation links.",
1501
+ "name": "Slot"
1502
+ },
1503
+ {
1504
+ "description": "Slot for button text in mobile when content is expanded.",
1505
+ "name": "mobileToggleExpanded"
1506
+ },
1507
+ {
1508
+ "description": "Slot for button text in mobile when content is collapsed.",
1509
+ "name": "mobileToggleCollapsed"
1510
+ }
1511
+ ],
1512
+ "members": [
1513
+ {
1514
+ "kind": "method",
1515
+ "name": "register",
1516
+ "static": true,
1517
+ "parameters": [
1518
+ {
1519
+ "name": "name",
1520
+ "default": "\"auro-nav\"",
1521
+ "description": "The name of element that you want to register to.",
1522
+ "optional": true,
1523
+ "type": {
1524
+ "text": "string"
1525
+ }
1526
+ }
1527
+ ],
1528
+ "description": "This will register this element with the browser."
1529
+ },
1530
+ {
1531
+ "kind": "method",
1532
+ "name": "handleLabelSlot",
1533
+ "privacy": "private",
1534
+ "return": {
1535
+ "type": {
1536
+ "text": "void"
1537
+ }
1538
+ }
1539
+ },
1540
+ {
1541
+ "kind": "method",
1542
+ "name": "handleSlotItems",
1543
+ "privacy": "private",
1544
+ "return": {
1545
+ "type": {
1546
+ "text": "void"
1547
+ }
1548
+ }
1549
+ },
1550
+ {
1551
+ "kind": "method",
1552
+ "name": "manageBreadcrumbs",
1553
+ "privacy": "private",
1554
+ "return": {
1555
+ "type": {
1556
+ "text": "void"
1557
+ }
1558
+ }
1559
+ },
1560
+ {
1561
+ "kind": "method",
1562
+ "name": "manageAnchorlinks",
1563
+ "description": "Used for the anchorLink version to bind events to all link elements in the slotted content.",
1564
+ "privacy": "private",
1565
+ "return": {
1566
+ "type": {
1567
+ "text": "void"
1568
+ }
1569
+ }
1570
+ },
1571
+ {
1572
+ "kind": "method",
1573
+ "name": "toggleAnchorLinks",
1574
+ "description": "Used to toggle visibility of all links after the first 3 when viewed in the mobile layout.",
1575
+ "privacy": "private",
1576
+ "return": {
1577
+ "type": {
1578
+ "text": "void"
1579
+ }
1580
+ }
1581
+ },
1582
+ {
1583
+ "kind": "method",
1584
+ "name": "handleAnchorNavAnimation",
1585
+ "description": "Used for the anchorLink version to animate the position and size of the marker used to identify the active link.",
1586
+ "privacy": "private",
1587
+ "return": {
1588
+ "type": {
1589
+ "text": "void"
1590
+ }
1591
+ }
1592
+ },
1593
+ {
1594
+ "kind": "method",
1595
+ "name": "insertIcon",
1596
+ "parameters": [
1597
+ {
1598
+ "name": "link",
1599
+ "description": "Hyperlink in which the auro-icon is inserted.",
1600
+ "type": {
1601
+ "text": "Object"
1602
+ }
1603
+ },
1604
+ {
1605
+ "name": "category",
1606
+ "description": "Category that the auro-icon is classified under.",
1607
+ "type": {
1608
+ "text": "String"
1609
+ }
1610
+ },
1611
+ {
1612
+ "name": "name",
1613
+ "description": "Name of the auro-icon.",
1614
+ "type": {
1615
+ "text": "String"
1616
+ }
1617
+ },
1618
+ {
1619
+ "name": "props",
1620
+ "description": "Custom CSS properties for auro-icon.",
1621
+ "type": {
1622
+ "text": "String"
1623
+ }
1624
+ }
1625
+ ],
1626
+ "privacy": "private",
1627
+ "return": {
1628
+ "type": {
1629
+ "text": "void"
1630
+ }
1631
+ }
1632
+ },
1633
+ {
1634
+ "kind": "method",
1635
+ "name": "assessActiveAnchorLink",
1636
+ "description": "Sets the activeLink attribute based on which linked content section is in view.",
1637
+ "privacy": "private",
1638
+ "return": {
1639
+ "type": {
1640
+ "text": "void"
1641
+ }
1642
+ }
1643
+ },
1644
+ {
1645
+ "kind": "method",
1646
+ "name": "isScrolledIntoView",
1647
+ "parameters": [
1648
+ {
1649
+ "name": "elem",
1650
+ "description": "The element to check if it is currently visible in the scrollContainer.",
1651
+ "type": {
1652
+ "text": "Object"
1653
+ }
1654
+ }
1655
+ ],
1656
+ "description": "Used with the anchorLink version to determine if the designated content is currently viewable in the scrollbox.",
1657
+ "privacy": "private",
1658
+ "return": {
1659
+ "type": {
1660
+ "text": "Boolean"
1661
+ }
1662
+ }
1663
+ },
1664
+ {
1665
+ "kind": "field",
1666
+ "name": "anchorNavContent",
1667
+ "privacy": "public",
1668
+ "type": {
1669
+ "text": "string"
1670
+ },
1671
+ "description": "Defines the container that anchor links navigate within.",
1672
+ "default": "undefined",
1673
+ "attribute": "anchorNavContent"
1674
+ },
1675
+ {
1676
+ "kind": "field",
1677
+ "name": "buttonTag",
1678
+ "privacy": "private"
1679
+ },
1680
+ {
1681
+ "kind": "field",
1682
+ "name": "iconTag",
1683
+ "privacy": "private"
1684
+ },
1685
+ {
1686
+ "kind": "field",
1687
+ "name": "runtimeUtils",
1688
+ "privacy": "private",
1689
+ "default": "new AuroLibraryRuntimeUtils()"
1690
+ },
1691
+ {
1692
+ "kind": "field",
1693
+ "name": "activeLink",
1694
+ "privacy": "private",
1695
+ "type": {
1696
+ "text": "object"
1697
+ },
1698
+ "description": "If set, defines the currently active link.",
1699
+ "default": "undefined",
1700
+ "attribute": "activeLink"
1701
+ },
1702
+ {
1703
+ "kind": "field",
1704
+ "name": "labelHidden",
1705
+ "type": {
1706
+ "text": "boolean"
1707
+ },
1708
+ "privacy": "private",
1709
+ "default": "true"
1710
+ },
1711
+ {
1712
+ "kind": "field",
1713
+ "name": "mobileViewCollapsedNumLinks",
1714
+ "type": {
1715
+ "text": "number"
1716
+ },
1717
+ "privacy": "private",
1718
+ "default": "3"
1719
+ },
1720
+ {
1721
+ "kind": "field",
1722
+ "name": "noHomeIcon",
1723
+ "privacy": "public",
1724
+ "type": {
1725
+ "text": "boolean"
1726
+ },
1727
+ "description": "If true, the home icon will not be displayed before first auro-breadcrumb.",
1728
+ "attribute": "noHomeIcon",
1729
+ "reflects": true
1730
+ }
1731
+ ],
1732
+ "attributes": [
1733
+ {
1734
+ "name": "activeLink",
1735
+ "type": {
1736
+ "text": "object"
1737
+ },
1738
+ "description": "If set, defines the currently active link.",
1739
+ "default": "undefined",
1740
+ "fieldName": "activeLink"
1741
+ },
1742
+ {
1743
+ "name": "anchorNavContent",
1744
+ "type": {
1745
+ "text": "string"
1746
+ },
1747
+ "description": "Defines the container that anchor links navigate within.",
1748
+ "default": "undefined",
1749
+ "fieldName": "anchorNavContent"
1750
+ },
1751
+ {
1752
+ "name": "noHomeIcon",
1753
+ "type": {
1754
+ "text": "boolean"
1755
+ },
1756
+ "description": "If true, the home icon will not be displayed before first auro-breadcrumb.",
1757
+ "fieldName": "noHomeIcon"
1758
+ }
1759
+ ],
1760
+ "superclass": {
1761
+ "name": "LitElement",
1762
+ "package": "lit"
1763
+ },
1764
+ "customElement": true
1765
+ }
1766
+ ],
1767
+ "exports": [
1768
+ {
1769
+ "kind": "js",
1770
+ "name": "AuroNav",
1771
+ "declaration": {
1772
+ "name": "AuroNav",
1773
+ "module": "src/auro-nav.js"
1774
+ }
1775
+ }
1776
+ ]
1777
+ },
1778
+ {
1779
+ "kind": "javascript-module",
1780
+ "path": "src/buttonVersion.js",
1781
+ "declarations": [],
1782
+ "exports": [
1783
+ {
1784
+ "kind": "js",
1785
+ "name": "default",
1786
+ "declaration": {
1787
+ "name": "12.3.0",
1788
+ "module": "src/buttonVersion.js"
1789
+ }
1790
+ }
1791
+ ]
1792
+ },
1793
+ {
1794
+ "kind": "javascript-module",
1795
+ "path": "src/iconVersion.js",
1796
+ "declarations": [],
1797
+ "exports": [
1798
+ {
1799
+ "kind": "js",
1800
+ "name": "default",
1801
+ "declaration": {
1802
+ "name": "9.1.1",
1803
+ "module": "src/iconVersion.js"
1804
+ }
1805
+ }
1806
+ ]
1807
+ },
1808
+ {
1809
+ "kind": "javascript-module",
1810
+ "path": "src/index.js",
1811
+ "declarations": [],
1812
+ "exports": [
1813
+ {
1814
+ "kind": "js",
1815
+ "name": "AuroBreadcrumb",
1816
+ "declaration": {
1817
+ "name": "AuroBreadcrumb",
1818
+ "module": "src/index.js"
1819
+ }
1820
+ },
1821
+ {
1822
+ "kind": "js",
1823
+ "name": "AuroAnchorlink",
1824
+ "declaration": {
1825
+ "name": "AuroAnchorlink",
1826
+ "module": "src/index.js"
1827
+ }
1828
+ },
1829
+ {
1830
+ "kind": "js",
1831
+ "name": "AuroNav",
1832
+ "declaration": {
1833
+ "name": "AuroNav",
1834
+ "module": "src/index.js"
1835
+ }
1836
+ }
1837
+ ]
1838
+ },
1839
+ {
1840
+ "kind": "javascript-module",
1841
+ "path": "src/registered.js",
1842
+ "declarations": [],
1843
+ "exports": []
1844
+ },
1845
+ {
1846
+ "kind": "javascript-module",
1847
+ "path": "scripts/wca/auro-anchorlink.js",
1848
+ "declarations": [
1849
+ {
1850
+ "kind": "class",
1851
+ "description": "",
1852
+ "name": "AuroAnchorlinkWCA",
1853
+ "superclass": {
1854
+ "name": "AuroAnchorlink",
1855
+ "module": "/src/auro-anchorlink.js"
1856
+ },
1857
+ "tagName": "auro-anchorlink",
1858
+ "customElement": true,
1859
+ "cssParts": [
1860
+ {
1861
+ "description": "Allows styling to be applied to the `a` element.",
1862
+ "name": "link",
1863
+ "inheritedFrom": {
1864
+ "name": "AuroHyperlink",
1865
+ "module": "src/auro-hyperlink.js"
1866
+ }
1867
+ },
1868
+ {
1869
+ "description": "Allows styling to be applied to the icon that appears next to the hyperlink.",
1870
+ "name": "targetIcon",
1871
+ "inheritedFrom": {
1872
+ "name": "AuroHyperlink",
1873
+ "module": "src/auro-hyperlink.js"
1874
+ }
1875
+ }
1876
+ ],
1877
+ "attributes": [
1878
+ {
1879
+ "name": "active",
1880
+ "type": {
1881
+ "text": "boolean"
1882
+ },
1883
+ "description": "If set, the link is currently the active link in the parent auro-nav.",
1884
+ "fieldName": "active",
1885
+ "inheritedFrom": {
1886
+ "name": "AuroAnchorlink",
1887
+ "module": "src/auro-anchorlink.js"
1888
+ }
1889
+ },
1890
+ {
1891
+ "name": "appearance",
1892
+ "type": {
1893
+ "text": "string"
1894
+ },
1895
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
1896
+ "default": "'default'",
1897
+ "fieldName": "appearance",
1898
+ "inheritedFrom": {
1899
+ "name": "ComponentBase",
1900
+ "module": "src/component-base.mjs"
1901
+ }
1902
+ },
1903
+ {
1904
+ "name": "href",
1905
+ "type": {
1906
+ "text": "string"
1907
+ },
1908
+ "description": "Defines the URL of the linked page.",
1909
+ "fieldName": "href",
1910
+ "inheritedFrom": {
1911
+ "name": "ComponentBase",
1912
+ "module": "src/component-base.mjs"
1913
+ }
1914
+ },
1915
+ {
1916
+ "name": "rel",
1917
+ "type": {
1918
+ "text": "string"
1919
+ },
1920
+ "description": "Defines the relationship between the current document and the linked document.",
1921
+ "fieldName": "rel",
1922
+ "inheritedFrom": {
1923
+ "name": "ComponentBase",
1924
+ "module": "src/component-base.mjs"
1925
+ }
1926
+ },
1927
+ {
1928
+ "name": "target",
1929
+ "type": {
1930
+ "text": "string"
1931
+ },
1932
+ "description": "Defines where to open the linked document.",
1933
+ "fieldName": "target",
1934
+ "inheritedFrom": {
1935
+ "name": "ComponentBase",
1936
+ "module": "src/component-base.mjs"
1937
+ }
1938
+ },
1939
+ {
1940
+ "name": "download",
1941
+ "type": {
1942
+ "text": "boolean"
1943
+ },
1944
+ "description": "If true, the linked resource will be downloaded when the hyperlink is clicked.",
1945
+ "default": "false",
1946
+ "fieldName": "download",
1947
+ "inheritedFrom": {
1948
+ "name": "ComponentBase",
1949
+ "module": "src/component-base.mjs"
1950
+ }
1951
+ },
1952
+ {
1953
+ "name": "relative",
1954
+ "type": {
1955
+ "text": "boolean"
1956
+ },
1957
+ "description": "If true, the auto URL re-write feature will be disabled.",
1958
+ "default": "false",
1959
+ "fieldName": "relative",
1960
+ "inheritedFrom": {
1961
+ "name": "ComponentBase",
1962
+ "module": "src/component-base.mjs"
1963
+ }
1964
+ },
1965
+ {
1966
+ "name": "ondark",
1967
+ "type": {
1968
+ "text": "boolean"
1969
+ },
1970
+ "description": "DEPRECATED - use `appearance` instead.",
1971
+ "default": "false",
1972
+ "fieldName": "ondark",
1973
+ "inheritedFrom": {
1974
+ "name": "ComponentBase",
1975
+ "module": "src/component-base.mjs"
1976
+ }
1977
+ },
1978
+ {
1979
+ "name": "type",
1980
+ "type": {
1981
+ "text": "string"
1982
+ },
1983
+ "description": "Defines the type of hyperlink; accepts `nav` or `cta`.",
1984
+ "fieldName": "type",
1985
+ "inheritedFrom": {
1986
+ "name": "ComponentBase",
1987
+ "module": "src/component-base.mjs"
1988
+ }
1989
+ },
1990
+ {
1991
+ "name": "fluid",
1992
+ "type": {
1993
+ "text": "boolean"
1994
+ },
1995
+ "description": "If true and `type=\"cta\"`, the hyperlink will have a fluid-width UI.",
1996
+ "fieldName": "fluid",
1997
+ "inheritedFrom": {
1998
+ "name": "ComponentBase",
1999
+ "module": "src/component-base.mjs"
2000
+ }
2001
+ },
2002
+ {
2003
+ "name": "referrerpolicy",
2004
+ "type": {
2005
+ "text": "boolean"
2006
+ },
2007
+ "description": "If true, sets `strict-origin-when-cross-origin` to control the referrer information sent with requests.",
2008
+ "fieldName": "referrerpolicy",
2009
+ "inheritedFrom": {
2010
+ "name": "ComponentBase",
2011
+ "module": "src/component-base.mjs"
2012
+ }
2013
+ },
2014
+ {
2015
+ "name": "variant",
2016
+ "type": {
2017
+ "text": "string"
2018
+ },
2019
+ "description": "Sets button variant option.",
2020
+ "default": "\"primary\"",
2021
+ "fieldName": "variant",
2022
+ "inheritedFrom": {
2023
+ "name": "ComponentBase",
2024
+ "module": "src/component-base.mjs"
2025
+ }
2026
+ }
2027
+ ],
2028
+ "members": [
2029
+ {
2030
+ "kind": "method",
2031
+ "name": "register",
2032
+ "static": true,
2033
+ "parameters": [
2034
+ {
2035
+ "name": "name",
2036
+ "default": "\"auro-anchorlink\"",
2037
+ "description": "The name of element that you want to register to.",
2038
+ "optional": true,
2039
+ "type": {
2040
+ "text": "string"
2041
+ }
2042
+ }
2043
+ ],
2044
+ "description": "This will register this element with the browser.",
2045
+ "inheritedFrom": {
2046
+ "name": "AuroHyperlink",
2047
+ "module": "src/auro-hyperlink.js"
2048
+ }
2049
+ },
2050
+ {
2051
+ "kind": "field",
2052
+ "name": "active",
2053
+ "privacy": "public",
2054
+ "type": {
2055
+ "text": "boolean"
2056
+ },
2057
+ "description": "If set, the link is currently the active link in the parent auro-nav.",
2058
+ "attribute": "active",
2059
+ "reflects": true,
2060
+ "inheritedFrom": {
2061
+ "name": "AuroAnchorlink",
2062
+ "module": "src/auro-anchorlink.js"
2063
+ }
2064
+ },
2065
+ {
2066
+ "kind": "field",
2067
+ "name": "shadowRootOptions",
2068
+ "static": true,
2069
+ "readonly": true,
2070
+ "inheritedFrom": {
2071
+ "name": "AuroHyperlink",
2072
+ "module": "src/auro-hyperlink.js"
2073
+ }
2074
+ },
2075
+ {
2076
+ "kind": "method",
2077
+ "name": "_createRefs",
2078
+ "description": "Create usable refs to internal elements",
2079
+ "return": {
2080
+ "type": {
2081
+ "text": "void"
2082
+ }
2083
+ },
2084
+ "privacy": "private",
2085
+ "inheritedFrom": {
2086
+ "name": "AuroHyperlink",
2087
+ "module": "src/auro-hyperlink.js"
2088
+ }
2089
+ },
2090
+ {
2091
+ "kind": "method",
2092
+ "name": "renderLayoutDefault",
2093
+ "description": "Renders the default layout for the hyperlink.",
2094
+ "return": {
2095
+ "type": {
2096
+ "text": "TemplateResult"
2097
+ }
2098
+ },
2099
+ "privacy": "private",
2100
+ "inheritedFrom": {
2101
+ "name": "AuroHyperlink",
2102
+ "module": "src/auro-hyperlink.js"
2103
+ }
2104
+ },
2105
+ {
2106
+ "kind": "method",
2107
+ "name": "renderLayoutCTA",
2108
+ "description": "Renders the cta layout for the hyperlink.",
2109
+ "return": {
2110
+ "type": {
2111
+ "text": "TemplateResult"
2112
+ }
2113
+ },
2114
+ "privacy": "private",
2115
+ "inheritedFrom": {
2116
+ "name": "AuroHyperlink",
2117
+ "module": "src/auro-hyperlink.js"
2118
+ }
2119
+ },
2120
+ {
2121
+ "kind": "method",
2122
+ "name": "getMarkup",
2123
+ "description": "Generates an object containing CSS classes based on the properties of the component.",
2124
+ "privacy": "private",
2125
+ "return": {
2126
+ "type": {
2127
+ "text": "object"
2128
+ }
2129
+ },
2130
+ "inheritedFrom": {
2131
+ "name": "AuroHyperlink",
2132
+ "module": "src/auro-hyperlink.js"
2133
+ }
2134
+ },
2135
+ {
2136
+ "kind": "field",
2137
+ "name": "iconTag",
2138
+ "privacy": "private",
2139
+ "inheritedFrom": {
2140
+ "name": "AuroHyperlink",
2141
+ "module": "src/auro-hyperlink.js"
2142
+ }
2143
+ },
2144
+ {
2145
+ "type": {
2146
+ "text": "String"
2147
+ },
2148
+ "description": "Defines ARIA roles; currently supports `button` for extended experiences.",
2149
+ "name": "role",
2150
+ "kind": "field",
2151
+ "inheritedFrom": {
2152
+ "name": "AuroHyperlink",
2153
+ "module": "src/auro-hyperlink.js"
2154
+ }
2155
+ },
2156
+ {
2157
+ "kind": "field",
2158
+ "name": "safeUri",
2159
+ "description": "Returns a safe URI based on the provided `href` and `relative` parameters.\nIf `href` is truthy, it generates a safe URL using the `safeUrl` function.\nOtherwise, it returns an empty string.",
2160
+ "return": {
2161
+ "type": {
2162
+ "text": "string"
2163
+ }
2164
+ },
2165
+ "readonly": true,
2166
+ "inheritedFrom": {
2167
+ "name": "ComponentBase",
2168
+ "module": "src/component-base.mjs"
2169
+ }
2170
+ },
2171
+ {
2172
+ "kind": "field",
2173
+ "name": "includesDomain",
2174
+ "description": "Checks whether the provided URI (if available) includes the 'http' protocol.\nIf the URI is truthy, it examines whether it contains 'http'.\nOtherwise, it returns false.",
2175
+ "privacy": "private",
2176
+ "return": {
2177
+ "type": {
2178
+ "text": "boolean"
2179
+ }
2180
+ },
2181
+ "readonly": true,
2182
+ "inheritedFrom": {
2183
+ "name": "ComponentBase",
2184
+ "module": "src/component-base.mjs"
2185
+ }
2186
+ },
2187
+ {
2188
+ "kind": "method",
2189
+ "name": "safeUrl",
2190
+ "parameters": [
2191
+ {
2192
+ "name": "href",
2193
+ "description": "The original URL.",
2194
+ "type": {
2195
+ "text": "string"
2196
+ }
2197
+ },
2198
+ {
2199
+ "name": "relative",
2200
+ "description": "Indicates whether the URL is relative.",
2201
+ "type": {
2202
+ "text": "boolean"
2203
+ }
2204
+ }
2205
+ ],
2206
+ "description": "Generates a safe URL based on the provided `href` and `relative` parameters.\nIf `href` is falsy, it returns `undefined`.",
2207
+ "privacy": "private",
2208
+ "return": {
2209
+ "type": {
2210
+ "text": "string|undefined"
2211
+ }
2212
+ },
2213
+ "inheritedFrom": {
2214
+ "name": "ComponentBase",
2215
+ "module": "src/component-base.mjs"
2216
+ }
2217
+ },
2218
+ {
2219
+ "kind": "method",
2220
+ "name": "generateIconHtml",
2221
+ "parameters": [
2222
+ {
2223
+ "name": "svgContent",
2224
+ "description": "The SVG content to be embedded.",
2225
+ "type": {
2226
+ "text": "string"
2227
+ }
2228
+ }
2229
+ ],
2230
+ "description": "Generates an HTML element containing an SVG icon based on the provided `svgContent`.",
2231
+ "privacy": "private",
2232
+ "return": {
2233
+ "type": {
2234
+ "text": "Element"
2235
+ }
2236
+ },
2237
+ "inheritedFrom": {
2238
+ "name": "ComponentBase",
2239
+ "module": "src/component-base.mjs"
2240
+ }
2241
+ },
2242
+ {
2243
+ "kind": "method",
2244
+ "name": "targetIcon",
2245
+ "parameters": [
2246
+ {
2247
+ "name": "target",
2248
+ "description": "The target attribute of the anchor element.",
2249
+ "type": {
2250
+ "text": "string"
2251
+ }
2252
+ }
2253
+ ],
2254
+ "description": "Generates an icon HTML element based on the target attribute.",
2255
+ "privacy": "private",
2256
+ "return": {
2257
+ "type": {
2258
+ "text": "HTMLElement|undefined"
2259
+ }
2260
+ },
2261
+ "inheritedFrom": {
2262
+ "name": "ComponentBase",
2263
+ "module": "src/component-base.mjs"
2264
+ }
2265
+ },
2266
+ {
2267
+ "kind": "method",
2268
+ "name": "getTabState",
2269
+ "parameters": [
2270
+ {
2271
+ "name": "tabIsActive",
2272
+ "description": "Indicates whether the tab is active.",
2273
+ "type": {
2274
+ "text": "boolean"
2275
+ }
2276
+ }
2277
+ ],
2278
+ "description": "Returns the state of a tab as a string.",
2279
+ "privacy": "private",
2280
+ "return": {
2281
+ "type": {
2282
+ "text": "string"
2283
+ }
2284
+ },
2285
+ "inheritedFrom": {
2286
+ "name": "ComponentBase",
2287
+ "module": "src/component-base.mjs"
2288
+ }
2289
+ },
2290
+ {
2291
+ "kind": "method",
2292
+ "name": "getRelType",
2293
+ "parameters": [
2294
+ {
2295
+ "name": "target",
2296
+ "description": "The target attribute of the anchor element.",
2297
+ "type": {
2298
+ "text": "string"
2299
+ }
2300
+ },
2301
+ {
2302
+ "name": "rel",
2303
+ "description": "The rel attribute of the anchor element.",
2304
+ "type": {
2305
+ "text": "string"
2306
+ }
2307
+ }
2308
+ ],
2309
+ "description": "Gets the rel attribute value based on target and rel values.",
2310
+ "privacy": "private",
2311
+ "return": {
2312
+ "type": {
2313
+ "text": "string|undefined"
2314
+ }
2315
+ },
2316
+ "inheritedFrom": {
2317
+ "name": "ComponentBase",
2318
+ "module": "src/component-base.mjs"
2319
+ }
2320
+ },
2321
+ {
2322
+ "kind": "method",
2323
+ "name": "ariaPressedState",
2324
+ "parameters": [
2325
+ {
2326
+ "name": "ariaPressed",
2327
+ "description": "The initial value of the ARIA pressed state.",
2328
+ "type": {
2329
+ "text": "boolean"
2330
+ }
2331
+ }
2332
+ ],
2333
+ "description": "Sets the ARIA pressed state based on user interactions.",
2334
+ "privacy": "private",
2335
+ "return": {
2336
+ "type": {
2337
+ "text": "boolean"
2338
+ }
2339
+ },
2340
+ "inheritedFrom": {
2341
+ "name": "ComponentBase",
2342
+ "module": "src/component-base.mjs"
2343
+ }
2344
+ },
2345
+ {
2346
+ "kind": "field",
2347
+ "name": "appearance",
2348
+ "privacy": "public",
2349
+ "type": {
2350
+ "text": "string"
2351
+ },
2352
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
2353
+ "default": "'default'",
2354
+ "attribute": "appearance",
2355
+ "reflects": true,
2356
+ "inheritedFrom": {
2357
+ "name": "ComponentBase",
2358
+ "module": "src/component-base.mjs"
2359
+ }
2360
+ },
2361
+ {
2362
+ "kind": "field",
2363
+ "name": "download",
2364
+ "privacy": "public",
2365
+ "type": {
2366
+ "text": "boolean"
2367
+ },
2368
+ "description": "If true, the linked resource will be downloaded when the hyperlink is clicked.",
2369
+ "default": "false",
2370
+ "attribute": "download",
2371
+ "reflects": true,
2372
+ "inheritedFrom": {
2373
+ "name": "ComponentBase",
2374
+ "module": "src/component-base.mjs"
2375
+ }
2376
+ },
2377
+ {
2378
+ "kind": "field",
2379
+ "name": "relative",
2380
+ "privacy": "public",
2381
+ "type": {
2382
+ "text": "boolean"
2383
+ },
2384
+ "description": "If true, the auto URL re-write feature will be disabled.",
2385
+ "default": "false",
2386
+ "attribute": "relative",
2387
+ "reflects": true,
2388
+ "inheritedFrom": {
2389
+ "name": "ComponentBase",
2390
+ "module": "src/component-base.mjs"
2391
+ }
2392
+ },
2393
+ {
2394
+ "kind": "field",
2395
+ "name": "ondark",
2396
+ "privacy": "public",
2397
+ "type": {
2398
+ "text": "boolean"
2399
+ },
2400
+ "description": "DEPRECATED - use `appearance` instead.",
2401
+ "default": "false",
2402
+ "attribute": "ondark",
2403
+ "inheritedFrom": {
2404
+ "name": "ComponentBase",
2405
+ "module": "src/component-base.mjs"
2406
+ }
2407
+ },
2408
+ {
2409
+ "kind": "field",
2410
+ "name": "variant",
2411
+ "privacy": "public",
2412
+ "type": {
2413
+ "text": "string"
2414
+ },
2415
+ "description": "Sets button variant option.",
2416
+ "default": "\"primary\"",
2417
+ "attribute": "variant",
2418
+ "reflects": true,
2419
+ "inheritedFrom": {
2420
+ "name": "ComponentBase",
2421
+ "module": "src/component-base.mjs"
2422
+ }
2423
+ },
2424
+ {
2425
+ "kind": "field",
2426
+ "name": "layout",
2427
+ "privacy": "private",
2428
+ "inheritedFrom": {
2429
+ "name": "ComponentBase",
2430
+ "module": "src/component-base.mjs"
2431
+ }
2432
+ },
2433
+ {
2434
+ "kind": "field",
2435
+ "name": "shape",
2436
+ "privacy": "private",
2437
+ "inheritedFrom": {
2438
+ "name": "ComponentBase",
2439
+ "module": "src/component-base.mjs"
2440
+ }
2441
+ },
2442
+ {
2443
+ "kind": "field",
2444
+ "name": "size",
2445
+ "privacy": "private",
2446
+ "inheritedFrom": {
2447
+ "name": "ComponentBase",
2448
+ "module": "src/component-base.mjs"
2449
+ }
2450
+ },
2451
+ {
2452
+ "kind": "field",
2453
+ "name": "defaultReferrerPolicy",
2454
+ "type": {
2455
+ "text": "string"
2456
+ },
2457
+ "privacy": "private",
2458
+ "default": "\"strict-origin-when-cross-origin\"",
2459
+ "inheritedFrom": {
2460
+ "name": "ComponentBase",
2461
+ "module": "src/component-base.mjs"
2462
+ }
2463
+ },
2464
+ {
2465
+ "kind": "field",
2466
+ "name": "ariapressed",
2467
+ "type": {
2468
+ "text": "string"
2469
+ },
2470
+ "privacy": "private",
2471
+ "default": "\"false\"",
2472
+ "inheritedFrom": {
2473
+ "name": "ComponentBase",
2474
+ "module": "src/component-base.mjs"
2475
+ }
2476
+ },
2477
+ {
2478
+ "kind": "field",
2479
+ "name": "tabIsActive",
2480
+ "type": {
2481
+ "text": "string"
2482
+ },
2483
+ "privacy": "private",
2484
+ "default": "\"false\"",
2485
+ "inheritedFrom": {
2486
+ "name": "ComponentBase",
2487
+ "module": "src/component-base.mjs"
2488
+ }
2489
+ },
2490
+ {
2491
+ "kind": "field",
2492
+ "name": "runtimeUtils",
2493
+ "privacy": "private",
2494
+ "default": "new AuroLibraryRuntimeUtils()",
2495
+ "inheritedFrom": {
2496
+ "name": "ComponentBase",
2497
+ "module": "src/component-base.mjs"
2498
+ }
2499
+ },
2500
+ {
2501
+ "kind": "field",
2502
+ "name": "href",
2503
+ "privacy": "public",
2504
+ "type": {
2505
+ "text": "string"
2506
+ },
2507
+ "description": "Defines the URL of the linked page.",
2508
+ "attribute": "href",
2509
+ "reflects": true,
2510
+ "inheritedFrom": {
2511
+ "name": "ComponentBase",
2512
+ "module": "src/component-base.mjs"
2513
+ }
2514
+ },
2515
+ {
2516
+ "kind": "field",
2517
+ "name": "rel",
2518
+ "privacy": "public",
2519
+ "type": {
2520
+ "text": "string"
2521
+ },
2522
+ "description": "Defines the relationship between the current document and the linked document.",
2523
+ "attribute": "rel",
2524
+ "reflects": true,
2525
+ "inheritedFrom": {
2526
+ "name": "ComponentBase",
2527
+ "module": "src/component-base.mjs"
2528
+ }
2529
+ },
2530
+ {
2531
+ "kind": "field",
2532
+ "name": "target",
2533
+ "privacy": "public",
2534
+ "type": {
2535
+ "text": "string"
2536
+ },
2537
+ "description": "Defines where to open the linked document.",
2538
+ "attribute": "target",
2539
+ "reflects": true,
2540
+ "inheritedFrom": {
2541
+ "name": "ComponentBase",
2542
+ "module": "src/component-base.mjs"
2543
+ }
2544
+ },
2545
+ {
2546
+ "kind": "field",
2547
+ "name": "type",
2548
+ "privacy": "public",
2549
+ "type": {
2550
+ "text": "string"
2551
+ },
2552
+ "description": "Defines the type of hyperlink; accepts `nav` or `cta`.",
2553
+ "attribute": "type",
2554
+ "reflects": true,
2555
+ "inheritedFrom": {
2556
+ "name": "ComponentBase",
2557
+ "module": "src/component-base.mjs"
2558
+ }
2559
+ },
2560
+ {
2561
+ "kind": "field",
2562
+ "name": "fluid",
2563
+ "privacy": "public",
2564
+ "type": {
2565
+ "text": "boolean"
2566
+ },
2567
+ "description": "If true and `type=\"cta\"`, the hyperlink will have a fluid-width UI.",
2568
+ "attribute": "fluid",
2569
+ "inheritedFrom": {
2570
+ "name": "ComponentBase",
2571
+ "module": "src/component-base.mjs"
2572
+ }
2573
+ },
2574
+ {
2575
+ "kind": "field",
2576
+ "name": "referrerpolicy",
2577
+ "privacy": "public",
2578
+ "type": {
2579
+ "text": "boolean"
2580
+ },
2581
+ "description": "If true, sets `strict-origin-when-cross-origin` to control the referrer information sent with requests.",
2582
+ "attribute": "referrerpolicy",
2583
+ "reflects": true,
2584
+ "inheritedFrom": {
2585
+ "name": "ComponentBase",
2586
+ "module": "src/component-base.mjs"
2587
+ }
2588
+ }
2589
+ ],
2590
+ "events": [
2591
+ {
2592
+ "name": "auroAnchorLink-activated",
2593
+ "type": {
2594
+ "text": "CustomEvent"
2595
+ },
2596
+ "inheritedFrom": {
2597
+ "name": "AuroAnchorlink",
2598
+ "module": "src/auro-anchorlink.js"
2599
+ }
2600
+ }
2601
+ ]
2602
+ }
2603
+ ],
2604
+ "exports": [
2605
+ {
2606
+ "kind": "custom-element-definition",
2607
+ "name": "auro-anchorlink",
2608
+ "declaration": {
2609
+ "name": "AuroAnchorlinkWCA",
2610
+ "module": "scripts/wca/auro-anchorlink.js"
2611
+ }
2612
+ }
2613
+ ]
2614
+ },
2615
+ {
2616
+ "kind": "javascript-module",
2617
+ "path": "scripts/wca/auro-breadcrumb.js",
2618
+ "declarations": [
2619
+ {
2620
+ "kind": "class",
2621
+ "description": "",
2622
+ "name": "AuroBreadcrumbWCA",
2623
+ "superclass": {
2624
+ "name": "AuroBreadcrumb",
2625
+ "module": "/src/auro-breadcrumb.js"
2626
+ },
2627
+ "tagName": "auro-breadcrumb",
2628
+ "customElement": true,
2629
+ "cssParts": [
2630
+ {
2631
+ "description": "Allows styling to be applied to the `a` element.",
2632
+ "name": "link",
2633
+ "inheritedFrom": {
2634
+ "name": "AuroHyperlink",
2635
+ "module": "src/auro-hyperlink.js"
2636
+ }
2637
+ },
2638
+ {
2639
+ "description": "Allows styling to be applied to the icon that appears next to the hyperlink.",
2640
+ "name": "targetIcon",
2641
+ "inheritedFrom": {
2642
+ "name": "AuroHyperlink",
2643
+ "module": "src/auro-hyperlink.js"
2644
+ }
2645
+ }
2646
+ ],
2647
+ "attributes": [
2648
+ {
2649
+ "name": "appearance",
2650
+ "type": {
2651
+ "text": "string"
2652
+ },
2653
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
2654
+ "default": "'default'",
2655
+ "fieldName": "appearance",
2656
+ "inheritedFrom": {
2657
+ "name": "ComponentBase",
2658
+ "module": "src/component-base.mjs"
2659
+ }
2660
+ },
2661
+ {
2662
+ "name": "href",
2663
+ "type": {
2664
+ "text": "string"
2665
+ },
2666
+ "description": "Defines the URL of the linked page.",
2667
+ "fieldName": "href",
2668
+ "inheritedFrom": {
2669
+ "name": "ComponentBase",
2670
+ "module": "src/component-base.mjs"
2671
+ }
2672
+ },
2673
+ {
2674
+ "name": "rel",
2675
+ "type": {
2676
+ "text": "string"
2677
+ },
2678
+ "description": "Defines the relationship between the current document and the linked document.",
2679
+ "fieldName": "rel",
2680
+ "inheritedFrom": {
2681
+ "name": "ComponentBase",
2682
+ "module": "src/component-base.mjs"
2683
+ }
2684
+ },
2685
+ {
2686
+ "name": "target",
2687
+ "type": {
2688
+ "text": "string"
2689
+ },
2690
+ "description": "Defines where to open the linked document.",
2691
+ "fieldName": "target",
2692
+ "inheritedFrom": {
2693
+ "name": "ComponentBase",
2694
+ "module": "src/component-base.mjs"
2695
+ }
2696
+ },
2697
+ {
2698
+ "name": "download",
2699
+ "type": {
2700
+ "text": "boolean"
2701
+ },
2702
+ "description": "If true, the linked resource will be downloaded when the hyperlink is clicked.",
2703
+ "default": "false",
2704
+ "fieldName": "download",
2705
+ "inheritedFrom": {
2706
+ "name": "ComponentBase",
2707
+ "module": "src/component-base.mjs"
2708
+ }
2709
+ },
2710
+ {
2711
+ "name": "relative",
2712
+ "type": {
2713
+ "text": "boolean"
2714
+ },
2715
+ "description": "If true, the auto URL re-write feature will be disabled.",
2716
+ "default": "false",
2717
+ "fieldName": "relative",
2718
+ "inheritedFrom": {
2719
+ "name": "ComponentBase",
2720
+ "module": "src/component-base.mjs"
2721
+ }
2722
+ },
2723
+ {
2724
+ "name": "ondark",
2725
+ "type": {
2726
+ "text": "boolean"
2727
+ },
2728
+ "description": "DEPRECATED - use `appearance` instead.",
2729
+ "default": "false",
2730
+ "fieldName": "ondark",
2731
+ "inheritedFrom": {
2732
+ "name": "ComponentBase",
2733
+ "module": "src/component-base.mjs"
2734
+ }
2735
+ },
2736
+ {
2737
+ "name": "type",
2738
+ "type": {
2739
+ "text": "string"
2740
+ },
2741
+ "description": "Defines the type of hyperlink; accepts `nav` or `cta`.",
2742
+ "fieldName": "type",
2743
+ "inheritedFrom": {
2744
+ "name": "ComponentBase",
2745
+ "module": "src/component-base.mjs"
2746
+ }
2747
+ },
2748
+ {
2749
+ "name": "fluid",
2750
+ "type": {
2751
+ "text": "boolean"
2752
+ },
2753
+ "description": "If true and `type=\"cta\"`, the hyperlink will have a fluid-width UI.",
2754
+ "fieldName": "fluid",
2755
+ "inheritedFrom": {
2756
+ "name": "ComponentBase",
2757
+ "module": "src/component-base.mjs"
2758
+ }
2759
+ },
2760
+ {
2761
+ "name": "referrerpolicy",
2762
+ "type": {
2763
+ "text": "boolean"
2764
+ },
2765
+ "description": "If true, sets `strict-origin-when-cross-origin` to control the referrer information sent with requests.",
2766
+ "fieldName": "referrerpolicy",
2767
+ "inheritedFrom": {
2768
+ "name": "ComponentBase",
2769
+ "module": "src/component-base.mjs"
2770
+ }
2771
+ },
2772
+ {
2773
+ "name": "variant",
2774
+ "type": {
2775
+ "text": "string"
2776
+ },
2777
+ "description": "Sets button variant option.",
2778
+ "default": "\"primary\"",
2779
+ "fieldName": "variant",
2780
+ "inheritedFrom": {
2781
+ "name": "ComponentBase",
2782
+ "module": "src/component-base.mjs"
2783
+ }
2784
+ }
2785
+ ],
2786
+ "members": [
2787
+ {
2788
+ "kind": "method",
2789
+ "name": "register",
2790
+ "static": true,
2791
+ "parameters": [
2792
+ {
2793
+ "name": "name",
2794
+ "default": "\"auro-breadcrumb\"",
2795
+ "description": "The name of element that you want to register to.",
2796
+ "optional": true,
2797
+ "type": {
2798
+ "text": "string"
2799
+ }
2800
+ }
2801
+ ],
2802
+ "description": "This will register this element with the browser.",
2803
+ "inheritedFrom": {
2804
+ "name": "AuroHyperlink",
2805
+ "module": "src/auro-hyperlink.js"
2806
+ }
2807
+ },
2808
+ {
2809
+ "kind": "field",
2810
+ "name": "shadowRootOptions",
2811
+ "static": true,
2812
+ "readonly": true,
2813
+ "inheritedFrom": {
2814
+ "name": "AuroHyperlink",
2815
+ "module": "src/auro-hyperlink.js"
2816
+ }
2817
+ },
2818
+ {
2819
+ "kind": "method",
2820
+ "name": "_createRefs",
2821
+ "description": "Create usable refs to internal elements",
2822
+ "return": {
2823
+ "type": {
2824
+ "text": "void"
2825
+ }
2826
+ },
2827
+ "privacy": "private",
2828
+ "inheritedFrom": {
2829
+ "name": "AuroHyperlink",
2830
+ "module": "src/auro-hyperlink.js"
2831
+ }
2832
+ },
2833
+ {
2834
+ "kind": "method",
2835
+ "name": "renderLayoutDefault",
2836
+ "description": "Renders the default layout for the hyperlink.",
2837
+ "return": {
2838
+ "type": {
2839
+ "text": "TemplateResult"
2840
+ }
2841
+ },
2842
+ "privacy": "private",
2843
+ "inheritedFrom": {
2844
+ "name": "AuroHyperlink",
2845
+ "module": "src/auro-hyperlink.js"
2846
+ }
2847
+ },
2848
+ {
2849
+ "kind": "method",
2850
+ "name": "renderLayoutCTA",
2851
+ "description": "Renders the cta layout for the hyperlink.",
2852
+ "return": {
2853
+ "type": {
2854
+ "text": "TemplateResult"
2855
+ }
2856
+ },
2857
+ "privacy": "private",
2858
+ "inheritedFrom": {
2859
+ "name": "AuroHyperlink",
2860
+ "module": "src/auro-hyperlink.js"
2861
+ }
2862
+ },
2863
+ {
2864
+ "kind": "method",
2865
+ "name": "getMarkup",
2866
+ "description": "Generates an object containing CSS classes based on the properties of the component.",
2867
+ "privacy": "private",
2868
+ "return": {
2869
+ "type": {
2870
+ "text": "object"
2871
+ }
2872
+ },
2873
+ "inheritedFrom": {
2874
+ "name": "AuroHyperlink",
2875
+ "module": "src/auro-hyperlink.js"
2876
+ }
2877
+ },
2878
+ {
2879
+ "kind": "field",
2880
+ "name": "iconTag",
2881
+ "privacy": "private",
2882
+ "inheritedFrom": {
2883
+ "name": "AuroHyperlink",
2884
+ "module": "src/auro-hyperlink.js"
2885
+ }
2886
+ },
2887
+ {
2888
+ "type": {
2889
+ "text": "String"
2890
+ },
2891
+ "description": "Defines ARIA roles; currently supports `button` for extended experiences.",
2892
+ "name": "role",
2893
+ "kind": "field",
2894
+ "inheritedFrom": {
2895
+ "name": "AuroHyperlink",
2896
+ "module": "src/auro-hyperlink.js"
2897
+ }
2898
+ },
2899
+ {
2900
+ "kind": "field",
2901
+ "name": "safeUri",
2902
+ "description": "Returns a safe URI based on the provided `href` and `relative` parameters.\nIf `href` is truthy, it generates a safe URL using the `safeUrl` function.\nOtherwise, it returns an empty string.",
2903
+ "return": {
2904
+ "type": {
2905
+ "text": "string"
2906
+ }
2907
+ },
2908
+ "readonly": true,
2909
+ "inheritedFrom": {
2910
+ "name": "ComponentBase",
2911
+ "module": "src/component-base.mjs"
2912
+ }
2913
+ },
2914
+ {
2915
+ "kind": "field",
2916
+ "name": "includesDomain",
2917
+ "description": "Checks whether the provided URI (if available) includes the 'http' protocol.\nIf the URI is truthy, it examines whether it contains 'http'.\nOtherwise, it returns false.",
2918
+ "privacy": "private",
2919
+ "return": {
2920
+ "type": {
2921
+ "text": "boolean"
2922
+ }
2923
+ },
2924
+ "readonly": true,
2925
+ "inheritedFrom": {
2926
+ "name": "ComponentBase",
2927
+ "module": "src/component-base.mjs"
2928
+ }
2929
+ },
2930
+ {
2931
+ "kind": "method",
2932
+ "name": "safeUrl",
2933
+ "parameters": [
2934
+ {
2935
+ "name": "href",
2936
+ "description": "The original URL.",
2937
+ "type": {
2938
+ "text": "string"
2939
+ }
2940
+ },
2941
+ {
2942
+ "name": "relative",
2943
+ "description": "Indicates whether the URL is relative.",
2944
+ "type": {
2945
+ "text": "boolean"
2946
+ }
2947
+ }
2948
+ ],
2949
+ "description": "Generates a safe URL based on the provided `href` and `relative` parameters.\nIf `href` is falsy, it returns `undefined`.",
2950
+ "privacy": "private",
2951
+ "return": {
2952
+ "type": {
2953
+ "text": "string|undefined"
2954
+ }
2955
+ },
2956
+ "inheritedFrom": {
2957
+ "name": "ComponentBase",
2958
+ "module": "src/component-base.mjs"
2959
+ }
2960
+ },
2961
+ {
2962
+ "kind": "method",
2963
+ "name": "generateIconHtml",
2964
+ "parameters": [
2965
+ {
2966
+ "name": "svgContent",
2967
+ "description": "The SVG content to be embedded.",
2968
+ "type": {
2969
+ "text": "string"
2970
+ }
2971
+ }
2972
+ ],
2973
+ "description": "Generates an HTML element containing an SVG icon based on the provided `svgContent`.",
2974
+ "privacy": "private",
2975
+ "return": {
2976
+ "type": {
2977
+ "text": "Element"
2978
+ }
2979
+ },
2980
+ "inheritedFrom": {
2981
+ "name": "ComponentBase",
2982
+ "module": "src/component-base.mjs"
2983
+ }
2984
+ },
2985
+ {
2986
+ "kind": "method",
2987
+ "name": "targetIcon",
2988
+ "parameters": [
2989
+ {
2990
+ "name": "target",
2991
+ "description": "The target attribute of the anchor element.",
2992
+ "type": {
2993
+ "text": "string"
2994
+ }
2995
+ }
2996
+ ],
2997
+ "description": "Generates an icon HTML element based on the target attribute.",
2998
+ "privacy": "private",
2999
+ "return": {
3000
+ "type": {
3001
+ "text": "HTMLElement|undefined"
3002
+ }
3003
+ },
3004
+ "inheritedFrom": {
3005
+ "name": "ComponentBase",
3006
+ "module": "src/component-base.mjs"
3007
+ }
3008
+ },
3009
+ {
3010
+ "kind": "method",
3011
+ "name": "getTabState",
3012
+ "parameters": [
3013
+ {
3014
+ "name": "tabIsActive",
3015
+ "description": "Indicates whether the tab is active.",
3016
+ "type": {
3017
+ "text": "boolean"
3018
+ }
3019
+ }
3020
+ ],
3021
+ "description": "Returns the state of a tab as a string.",
3022
+ "privacy": "private",
3023
+ "return": {
3024
+ "type": {
3025
+ "text": "string"
3026
+ }
3027
+ },
3028
+ "inheritedFrom": {
3029
+ "name": "ComponentBase",
3030
+ "module": "src/component-base.mjs"
3031
+ }
3032
+ },
3033
+ {
3034
+ "kind": "method",
3035
+ "name": "getRelType",
3036
+ "parameters": [
3037
+ {
3038
+ "name": "target",
3039
+ "description": "The target attribute of the anchor element.",
3040
+ "type": {
3041
+ "text": "string"
3042
+ }
3043
+ },
3044
+ {
3045
+ "name": "rel",
3046
+ "description": "The rel attribute of the anchor element.",
3047
+ "type": {
3048
+ "text": "string"
3049
+ }
3050
+ }
3051
+ ],
3052
+ "description": "Gets the rel attribute value based on target and rel values.",
3053
+ "privacy": "private",
3054
+ "return": {
3055
+ "type": {
3056
+ "text": "string|undefined"
3057
+ }
3058
+ },
3059
+ "inheritedFrom": {
3060
+ "name": "ComponentBase",
3061
+ "module": "src/component-base.mjs"
3062
+ }
3063
+ },
3064
+ {
3065
+ "kind": "method",
3066
+ "name": "ariaPressedState",
3067
+ "parameters": [
3068
+ {
3069
+ "name": "ariaPressed",
3070
+ "description": "The initial value of the ARIA pressed state.",
3071
+ "type": {
3072
+ "text": "boolean"
3073
+ }
3074
+ }
3075
+ ],
3076
+ "description": "Sets the ARIA pressed state based on user interactions.",
3077
+ "privacy": "private",
3078
+ "return": {
3079
+ "type": {
3080
+ "text": "boolean"
3081
+ }
3082
+ },
3083
+ "inheritedFrom": {
3084
+ "name": "ComponentBase",
3085
+ "module": "src/component-base.mjs"
3086
+ }
3087
+ },
3088
+ {
3089
+ "kind": "field",
3090
+ "name": "appearance",
3091
+ "privacy": "public",
3092
+ "type": {
3093
+ "text": "string"
3094
+ },
3095
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
3096
+ "default": "'default'",
3097
+ "attribute": "appearance",
3098
+ "reflects": true,
3099
+ "inheritedFrom": {
3100
+ "name": "ComponentBase",
3101
+ "module": "src/component-base.mjs"
3102
+ }
3103
+ },
3104
+ {
3105
+ "kind": "field",
3106
+ "name": "download",
3107
+ "privacy": "public",
3108
+ "type": {
3109
+ "text": "boolean"
3110
+ },
3111
+ "description": "If true, the linked resource will be downloaded when the hyperlink is clicked.",
3112
+ "default": "false",
3113
+ "attribute": "download",
3114
+ "reflects": true,
3115
+ "inheritedFrom": {
3116
+ "name": "ComponentBase",
3117
+ "module": "src/component-base.mjs"
3118
+ }
3119
+ },
3120
+ {
3121
+ "kind": "field",
3122
+ "name": "relative",
3123
+ "privacy": "public",
3124
+ "type": {
3125
+ "text": "boolean"
3126
+ },
3127
+ "description": "If true, the auto URL re-write feature will be disabled.",
3128
+ "default": "false",
3129
+ "attribute": "relative",
3130
+ "reflects": true,
3131
+ "inheritedFrom": {
3132
+ "name": "ComponentBase",
3133
+ "module": "src/component-base.mjs"
3134
+ }
3135
+ },
3136
+ {
3137
+ "kind": "field",
3138
+ "name": "ondark",
3139
+ "privacy": "public",
3140
+ "type": {
3141
+ "text": "boolean"
3142
+ },
3143
+ "description": "DEPRECATED - use `appearance` instead.",
3144
+ "default": "false",
3145
+ "attribute": "ondark",
3146
+ "inheritedFrom": {
3147
+ "name": "ComponentBase",
3148
+ "module": "src/component-base.mjs"
3149
+ }
3150
+ },
3151
+ {
3152
+ "kind": "field",
3153
+ "name": "variant",
3154
+ "privacy": "public",
3155
+ "type": {
3156
+ "text": "string"
3157
+ },
3158
+ "description": "Sets button variant option.",
3159
+ "default": "\"primary\"",
3160
+ "attribute": "variant",
3161
+ "reflects": true,
3162
+ "inheritedFrom": {
3163
+ "name": "ComponentBase",
3164
+ "module": "src/component-base.mjs"
3165
+ }
3166
+ },
3167
+ {
3168
+ "kind": "field",
3169
+ "name": "layout",
3170
+ "privacy": "private",
3171
+ "inheritedFrom": {
3172
+ "name": "ComponentBase",
3173
+ "module": "src/component-base.mjs"
3174
+ }
3175
+ },
3176
+ {
3177
+ "kind": "field",
3178
+ "name": "shape",
3179
+ "privacy": "private",
3180
+ "inheritedFrom": {
3181
+ "name": "ComponentBase",
3182
+ "module": "src/component-base.mjs"
3183
+ }
3184
+ },
3185
+ {
3186
+ "kind": "field",
3187
+ "name": "size",
3188
+ "privacy": "private",
3189
+ "inheritedFrom": {
3190
+ "name": "ComponentBase",
3191
+ "module": "src/component-base.mjs"
3192
+ }
3193
+ },
3194
+ {
3195
+ "kind": "field",
3196
+ "name": "defaultReferrerPolicy",
3197
+ "type": {
3198
+ "text": "string"
3199
+ },
3200
+ "privacy": "private",
3201
+ "default": "\"strict-origin-when-cross-origin\"",
3202
+ "inheritedFrom": {
3203
+ "name": "ComponentBase",
3204
+ "module": "src/component-base.mjs"
3205
+ }
3206
+ },
3207
+ {
3208
+ "kind": "field",
3209
+ "name": "ariapressed",
3210
+ "type": {
3211
+ "text": "string"
3212
+ },
3213
+ "privacy": "private",
3214
+ "default": "\"false\"",
3215
+ "inheritedFrom": {
3216
+ "name": "ComponentBase",
3217
+ "module": "src/component-base.mjs"
3218
+ }
3219
+ },
3220
+ {
3221
+ "kind": "field",
3222
+ "name": "tabIsActive",
3223
+ "type": {
3224
+ "text": "string"
3225
+ },
3226
+ "privacy": "private",
3227
+ "default": "\"false\"",
3228
+ "inheritedFrom": {
3229
+ "name": "ComponentBase",
3230
+ "module": "src/component-base.mjs"
3231
+ }
3232
+ },
3233
+ {
3234
+ "kind": "field",
3235
+ "name": "runtimeUtils",
3236
+ "privacy": "private",
3237
+ "default": "new AuroLibraryRuntimeUtils()",
3238
+ "inheritedFrom": {
3239
+ "name": "ComponentBase",
3240
+ "module": "src/component-base.mjs"
3241
+ }
3242
+ },
3243
+ {
3244
+ "kind": "field",
3245
+ "name": "href",
3246
+ "privacy": "public",
3247
+ "type": {
3248
+ "text": "string"
3249
+ },
3250
+ "description": "Defines the URL of the linked page.",
3251
+ "attribute": "href",
3252
+ "reflects": true,
3253
+ "inheritedFrom": {
3254
+ "name": "ComponentBase",
3255
+ "module": "src/component-base.mjs"
3256
+ }
3257
+ },
3258
+ {
3259
+ "kind": "field",
3260
+ "name": "rel",
3261
+ "privacy": "public",
3262
+ "type": {
3263
+ "text": "string"
3264
+ },
3265
+ "description": "Defines the relationship between the current document and the linked document.",
3266
+ "attribute": "rel",
3267
+ "reflects": true,
3268
+ "inheritedFrom": {
3269
+ "name": "ComponentBase",
3270
+ "module": "src/component-base.mjs"
3271
+ }
3272
+ },
3273
+ {
3274
+ "kind": "field",
3275
+ "name": "target",
3276
+ "privacy": "public",
3277
+ "type": {
3278
+ "text": "string"
3279
+ },
3280
+ "description": "Defines where to open the linked document.",
3281
+ "attribute": "target",
3282
+ "reflects": true,
3283
+ "inheritedFrom": {
3284
+ "name": "ComponentBase",
3285
+ "module": "src/component-base.mjs"
3286
+ }
3287
+ },
3288
+ {
3289
+ "kind": "field",
3290
+ "name": "type",
3291
+ "privacy": "public",
3292
+ "type": {
3293
+ "text": "string"
3294
+ },
3295
+ "description": "Defines the type of hyperlink; accepts `nav` or `cta`.",
3296
+ "attribute": "type",
3297
+ "reflects": true,
3298
+ "inheritedFrom": {
3299
+ "name": "ComponentBase",
3300
+ "module": "src/component-base.mjs"
3301
+ }
3302
+ },
3303
+ {
3304
+ "kind": "field",
3305
+ "name": "fluid",
3306
+ "privacy": "public",
3307
+ "type": {
3308
+ "text": "boolean"
3309
+ },
3310
+ "description": "If true and `type=\"cta\"`, the hyperlink will have a fluid-width UI.",
3311
+ "attribute": "fluid",
3312
+ "inheritedFrom": {
3313
+ "name": "ComponentBase",
3314
+ "module": "src/component-base.mjs"
3315
+ }
3316
+ },
3317
+ {
3318
+ "kind": "field",
3319
+ "name": "referrerpolicy",
3320
+ "privacy": "public",
3321
+ "type": {
3322
+ "text": "boolean"
3323
+ },
3324
+ "description": "If true, sets `strict-origin-when-cross-origin` to control the referrer information sent with requests.",
3325
+ "attribute": "referrerpolicy",
3326
+ "reflects": true,
3327
+ "inheritedFrom": {
3328
+ "name": "ComponentBase",
3329
+ "module": "src/component-base.mjs"
3330
+ }
3331
+ }
3332
+ ]
3333
+ }
3334
+ ],
3335
+ "exports": [
3336
+ {
3337
+ "kind": "custom-element-definition",
3338
+ "name": "auro-breadcrumb",
3339
+ "declaration": {
3340
+ "name": "AuroBreadcrumbWCA",
3341
+ "module": "scripts/wca/auro-breadcrumb.js"
3342
+ }
3343
+ }
3344
+ ]
3345
+ },
3346
+ {
3347
+ "kind": "javascript-module",
3348
+ "path": "scripts/wca/auro-nav.js",
3349
+ "declarations": [
3350
+ {
3351
+ "kind": "class",
3352
+ "description": "",
3353
+ "name": "AuroNavWCA",
3354
+ "superclass": {
3355
+ "name": "AuroNav",
3356
+ "module": "/src/auro-nav.js"
3357
+ },
3358
+ "tagName": "auro-nav",
3359
+ "customElement": true,
3360
+ "slots": [
3361
+ {
3362
+ "description": "for insertion of navigation links.",
3363
+ "name": "Slot",
3364
+ "inheritedFrom": {
3365
+ "name": "AuroNav",
3366
+ "module": "src/auro-nav.js"
3367
+ }
3368
+ },
3369
+ {
3370
+ "description": "Slot for button text in mobile when content is expanded.",
3371
+ "name": "mobileToggleExpanded",
3372
+ "inheritedFrom": {
3373
+ "name": "AuroNav",
3374
+ "module": "src/auro-nav.js"
3375
+ }
3376
+ },
3377
+ {
3378
+ "description": "Slot for button text in mobile when content is collapsed.",
3379
+ "name": "mobileToggleCollapsed",
3380
+ "inheritedFrom": {
3381
+ "name": "AuroNav",
3382
+ "module": "src/auro-nav.js"
3383
+ }
3384
+ }
3385
+ ],
3386
+ "attributes": [
3387
+ {
3388
+ "name": "activeLink",
3389
+ "type": {
3390
+ "text": "object"
3391
+ },
3392
+ "description": "If set, defines the currently active link.",
3393
+ "default": "undefined",
3394
+ "fieldName": "activeLink",
3395
+ "inheritedFrom": {
3396
+ "name": "AuroNav",
3397
+ "module": "src/auro-nav.js"
3398
+ }
3399
+ },
3400
+ {
3401
+ "name": "anchorNavContent",
3402
+ "type": {
3403
+ "text": "string"
3404
+ },
3405
+ "description": "Defines the container that anchor links navigate within.",
3406
+ "default": "undefined",
3407
+ "fieldName": "anchorNavContent",
3408
+ "inheritedFrom": {
3409
+ "name": "AuroNav",
3410
+ "module": "src/auro-nav.js"
3411
+ }
3412
+ },
3413
+ {
3414
+ "name": "noHomeIcon",
3415
+ "type": {
3416
+ "text": "boolean"
3417
+ },
3418
+ "description": "If true, the home icon will not be displayed before first auro-breadcrumb.",
3419
+ "fieldName": "noHomeIcon",
3420
+ "inheritedFrom": {
3421
+ "name": "AuroNav",
3422
+ "module": "src/auro-nav.js"
3423
+ }
3424
+ }
3425
+ ],
3426
+ "members": [
3427
+ {
3428
+ "kind": "method",
3429
+ "name": "register",
3430
+ "static": true,
3431
+ "parameters": [
3432
+ {
3433
+ "name": "name",
3434
+ "default": "\"auro-nav\"",
3435
+ "description": "The name of element that you want to register to.",
3436
+ "optional": true,
3437
+ "type": {
3438
+ "text": "string"
3439
+ }
3440
+ }
3441
+ ],
3442
+ "description": "This will register this element with the browser.",
3443
+ "inheritedFrom": {
3444
+ "name": "AuroNav",
3445
+ "module": "src/auro-nav.js"
3446
+ }
3447
+ },
3448
+ {
3449
+ "kind": "method",
3450
+ "name": "handleLabelSlot",
3451
+ "privacy": "private",
3452
+ "return": {
3453
+ "type": {
3454
+ "text": "void"
3455
+ }
3456
+ },
3457
+ "inheritedFrom": {
3458
+ "name": "AuroNav",
3459
+ "module": "src/auro-nav.js"
3460
+ }
3461
+ },
3462
+ {
3463
+ "kind": "method",
3464
+ "name": "handleSlotItems",
3465
+ "privacy": "private",
3466
+ "return": {
3467
+ "type": {
3468
+ "text": "void"
3469
+ }
3470
+ },
3471
+ "inheritedFrom": {
3472
+ "name": "AuroNav",
3473
+ "module": "src/auro-nav.js"
3474
+ }
3475
+ },
3476
+ {
3477
+ "kind": "method",
3478
+ "name": "manageBreadcrumbs",
3479
+ "privacy": "private",
3480
+ "return": {
3481
+ "type": {
3482
+ "text": "void"
3483
+ }
3484
+ },
3485
+ "inheritedFrom": {
3486
+ "name": "AuroNav",
3487
+ "module": "src/auro-nav.js"
3488
+ }
3489
+ },
3490
+ {
3491
+ "kind": "method",
3492
+ "name": "manageAnchorlinks",
3493
+ "description": "Used for the anchorLink version to bind events to all link elements in the slotted content.",
3494
+ "privacy": "private",
3495
+ "return": {
3496
+ "type": {
3497
+ "text": "void"
3498
+ }
3499
+ },
3500
+ "inheritedFrom": {
3501
+ "name": "AuroNav",
3502
+ "module": "src/auro-nav.js"
3503
+ }
3504
+ },
3505
+ {
3506
+ "kind": "method",
3507
+ "name": "toggleAnchorLinks",
3508
+ "description": "Used to toggle visibility of all links after the first 3 when viewed in the mobile layout.",
3509
+ "privacy": "private",
3510
+ "return": {
3511
+ "type": {
3512
+ "text": "void"
3513
+ }
3514
+ },
3515
+ "inheritedFrom": {
3516
+ "name": "AuroNav",
3517
+ "module": "src/auro-nav.js"
3518
+ }
3519
+ },
3520
+ {
3521
+ "kind": "method",
3522
+ "name": "handleAnchorNavAnimation",
3523
+ "description": "Used for the anchorLink version to animate the position and size of the marker used to identify the active link.",
3524
+ "privacy": "private",
3525
+ "return": {
3526
+ "type": {
3527
+ "text": "void"
3528
+ }
3529
+ },
3530
+ "inheritedFrom": {
3531
+ "name": "AuroNav",
3532
+ "module": "src/auro-nav.js"
3533
+ }
3534
+ },
3535
+ {
3536
+ "kind": "method",
3537
+ "name": "insertIcon",
3538
+ "parameters": [
3539
+ {
3540
+ "name": "link",
3541
+ "description": "Hyperlink in which the auro-icon is inserted.",
3542
+ "type": {
3543
+ "text": "Object"
3544
+ }
3545
+ },
3546
+ {
3547
+ "name": "category",
3548
+ "description": "Category that the auro-icon is classified under.",
3549
+ "type": {
3550
+ "text": "String"
3551
+ }
3552
+ },
3553
+ {
3554
+ "name": "name",
3555
+ "description": "Name of the auro-icon.",
3556
+ "type": {
3557
+ "text": "String"
3558
+ }
3559
+ },
3560
+ {
3561
+ "name": "props",
3562
+ "description": "Custom CSS properties for auro-icon.",
3563
+ "type": {
3564
+ "text": "String"
3565
+ }
3566
+ }
3567
+ ],
3568
+ "privacy": "private",
3569
+ "return": {
3570
+ "type": {
3571
+ "text": "void"
3572
+ }
3573
+ },
3574
+ "inheritedFrom": {
3575
+ "name": "AuroNav",
3576
+ "module": "src/auro-nav.js"
3577
+ }
3578
+ },
3579
+ {
3580
+ "kind": "method",
3581
+ "name": "assessActiveAnchorLink",
3582
+ "description": "Sets the activeLink attribute based on which linked content section is in view.",
3583
+ "privacy": "private",
3584
+ "return": {
3585
+ "type": {
3586
+ "text": "void"
3587
+ }
3588
+ },
3589
+ "inheritedFrom": {
3590
+ "name": "AuroNav",
3591
+ "module": "src/auro-nav.js"
3592
+ }
3593
+ },
3594
+ {
3595
+ "kind": "method",
3596
+ "name": "isScrolledIntoView",
3597
+ "parameters": [
3598
+ {
3599
+ "name": "elem",
3600
+ "description": "The element to check if it is currently visible in the scrollContainer.",
3601
+ "type": {
3602
+ "text": "Object"
3603
+ }
3604
+ }
3605
+ ],
3606
+ "description": "Used with the anchorLink version to determine if the designated content is currently viewable in the scrollbox.",
3607
+ "privacy": "private",
3608
+ "return": {
3609
+ "type": {
3610
+ "text": "Boolean"
3611
+ }
3612
+ },
3613
+ "inheritedFrom": {
3614
+ "name": "AuroNav",
3615
+ "module": "src/auro-nav.js"
3616
+ }
3617
+ },
3618
+ {
3619
+ "kind": "field",
3620
+ "name": "anchorNavContent",
3621
+ "privacy": "public",
3622
+ "type": {
3623
+ "text": "string"
3624
+ },
3625
+ "description": "Defines the container that anchor links navigate within.",
3626
+ "default": "undefined",
3627
+ "attribute": "anchorNavContent",
3628
+ "inheritedFrom": {
3629
+ "name": "AuroNav",
3630
+ "module": "src/auro-nav.js"
3631
+ }
3632
+ },
3633
+ {
3634
+ "kind": "field",
3635
+ "name": "buttonTag",
3636
+ "privacy": "private",
3637
+ "inheritedFrom": {
3638
+ "name": "AuroNav",
3639
+ "module": "src/auro-nav.js"
3640
+ }
3641
+ },
3642
+ {
3643
+ "kind": "field",
3644
+ "name": "iconTag",
3645
+ "privacy": "private",
3646
+ "inheritedFrom": {
3647
+ "name": "AuroNav",
3648
+ "module": "src/auro-nav.js"
3649
+ }
3650
+ },
3651
+ {
3652
+ "kind": "field",
3653
+ "name": "runtimeUtils",
3654
+ "privacy": "private",
3655
+ "default": "new AuroLibraryRuntimeUtils()",
3656
+ "inheritedFrom": {
3657
+ "name": "AuroNav",
3658
+ "module": "src/auro-nav.js"
3659
+ }
3660
+ },
3661
+ {
3662
+ "kind": "field",
3663
+ "name": "activeLink",
3664
+ "privacy": "private",
3665
+ "type": {
3666
+ "text": "object"
3667
+ },
3668
+ "description": "If set, defines the currently active link.",
3669
+ "default": "undefined",
3670
+ "attribute": "activeLink",
3671
+ "inheritedFrom": {
3672
+ "name": "AuroNav",
3673
+ "module": "src/auro-nav.js"
3674
+ }
3675
+ },
3676
+ {
3677
+ "kind": "field",
3678
+ "name": "labelHidden",
3679
+ "type": {
3680
+ "text": "boolean"
3681
+ },
3682
+ "privacy": "private",
3683
+ "default": "true",
3684
+ "inheritedFrom": {
3685
+ "name": "AuroNav",
3686
+ "module": "src/auro-nav.js"
3687
+ }
3688
+ },
3689
+ {
3690
+ "kind": "field",
3691
+ "name": "mobileViewCollapsedNumLinks",
3692
+ "type": {
3693
+ "text": "number"
3694
+ },
3695
+ "privacy": "private",
3696
+ "default": "3",
3697
+ "inheritedFrom": {
3698
+ "name": "AuroNav",
3699
+ "module": "src/auro-nav.js"
3700
+ }
3701
+ },
3702
+ {
3703
+ "kind": "field",
3704
+ "name": "noHomeIcon",
3705
+ "privacy": "public",
3706
+ "type": {
3707
+ "text": "boolean"
3708
+ },
3709
+ "description": "If true, the home icon will not be displayed before first auro-breadcrumb.",
3710
+ "attribute": "noHomeIcon",
3711
+ "reflects": true,
3712
+ "inheritedFrom": {
3713
+ "name": "AuroNav",
3714
+ "module": "src/auro-nav.js"
3715
+ }
3716
+ }
3717
+ ]
3718
+ }
3719
+ ],
3720
+ "exports": [
3721
+ {
3722
+ "kind": "custom-element-definition",
3723
+ "name": "auro-nav",
3724
+ "declaration": {
3725
+ "name": "AuroNavWCA",
3726
+ "module": "scripts/wca/auro-nav.js"
3727
+ }
3728
+ }
3729
+ ]
3730
+ }
3731
+ ]
3732
+ }