@aurodesignsystem-dev/auro-hyperlink 0.0.0-pr1.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,21 @@
1
+ import { A as AuroHyperlink } from './auro-hyperlink.min.js';
2
+
3
+ AuroHyperlink.register();
4
+
5
+ function initHyperlinkApiExamples(initCount) {
6
+ // biome-ignore lint: no-unused-vars
7
+ initCount = initCount || 0;
8
+
9
+ try {
10
+ initHyperlinkApiExamples();
11
+ } catch {
12
+ if (initCount <= 20) {
13
+ // setTimeout handles issue where content is sometimes loaded after the functions get called
14
+ setTimeout(() => {
15
+ initHyperlinkApiExamples(initCount + 1);
16
+ }, 100);
17
+ }
18
+ }
19
+ }
20
+
21
+ initHyperlinkApiExamples();