@ulu/frontend 0.1.0-beta.72 → 0.1.0-beta.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -2
- package/dist/ulu-frontend.min.js +9 -4
- package/docs-dev/assets/main.js +494 -7738
- package/docs-dev/assets/style.css +166 -221
- package/docs-dev/changelog/index.html +22 -3
- package/docs-dev/changelog/updates-and-changes/index.html +5109 -0
- package/docs-dev/demos/card/index.html +16 -16
- package/docs-dev/demos/card-new/index.html +5088 -0
- package/docs-dev/demos/card-old/index.html +5223 -0
- package/docs-dev/demos/card.1/index.html +5223 -0
- package/docs-dev/demos/card.TRASH/index.html +5541 -0
- package/docs-dev/demos/data-table/index.html +100 -100
- package/docs-dev/demos/list-inline.1/index.html +4727 -0
- package/docs-dev/demos/modals/index.html +21 -1
- package/docs-dev/demos/popovers/index.html +0 -5483
- package/docs-dev/guide/updates-and-changes/index.html +5033 -0
- package/docs-dev/javascript/ui-modal-builder/index.html +5 -0
- package/js/ui/modal-builder.js +14 -4
- package/package.json +1 -1
- package/types/ui/index.d.ts +1 -1
- package/types/ui/modal-builder.d.ts +6 -0
- package/types/ui/modal-builder.d.ts.map +1 -1
- package/types/utils/index.d.ts +1 -1
|
@@ -5192,7 +5192,14 @@
|
|
|
5192
5192
|
</header>
|
|
5193
5193
|
|
|
5194
5194
|
<div class="page__toc page-toc">
|
|
5195
|
-
|
|
5195
|
+
<h2>Jump To:</h2>
|
|
5196
|
+
<div class="toc">
|
|
5197
|
+
<ol>
|
|
5198
|
+
|
|
5199
|
+
<li><a href="#my-custom-title">This is a custom title</a>
|
|
5200
|
+
</li>
|
|
5201
|
+
</ol>
|
|
5202
|
+
</div>
|
|
5196
5203
|
</div>
|
|
5197
5204
|
|
|
5198
5205
|
<main id="main" class="page__body">
|
|
@@ -5385,6 +5392,19 @@
|
|
|
5385
5392
|
"title" : "Triggered by a link"
|
|
5386
5393
|
}' hidden="">
|
|
5387
5394
|
Test
|
|
5395
|
+
</div>
|
|
5396
|
+
<h2 class="h2">Test Setting Specific labelledby/describedby</h2>
|
|
5397
|
+
<p>You can set these properties for custom title implementations and to add optional description information for screen readers, etc.</p>
|
|
5398
|
+
<p><button class="button" data-ulu-dialog-trigger="modal-id-aria-attrs">View Modal</button></p>
|
|
5399
|
+
<div id="modal-id-aria-attrs" class="crop-margins" data-ulu-modal-builder='{
|
|
5400
|
+
"labelledby": "my-custom-title",
|
|
5401
|
+
"describedby": "my-custom-description"
|
|
5402
|
+
}' hidden="">
|
|
5403
|
+
<h2 class="h5" id="my-custom-title">This is a custom title</h2>
|
|
5404
|
+
<p id="my-custom-description">
|
|
5405
|
+
This modal test whether passing labelledby/describedby works
|
|
5406
|
+
</p>
|
|
5407
|
+
<button class="button" data-ulu-dialog-close="">Close</button>
|
|
5388
5408
|
</div>
|
|
5389
5409
|
</div>
|
|
5390
5410
|
|