svelte-a11y-dialog
Advanced tools
Comparing version 0.1.5 to 0.2.0
{ | ||
"name": "svelte-a11y-dialog", | ||
"version": "0.1.5", | ||
"version": "0.2.0", | ||
"description": "Svelte component wrapping for a11y-dialog", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/AgnosticUI/svelte-a11y-dialog", |
@@ -46,2 +46,3 @@ # Svelte a11y-dialog | ||
closeButtonPosition="last" | ||
title="A11yDialog Test" | ||
titleId="uniqueTitleId" | ||
@@ -54,5 +55,2 @@ role="dialog" | ||
</svelte:fragment> | ||
<svelte:fragment slot="title"> | ||
<span>A11yDialog Test</span> | ||
</svelte:fragment> | ||
<div> | ||
@@ -102,2 +100,9 @@ <p>This is some content</p> | ||
### `title` | ||
- **Property**: `title` | ||
- **Type**: `String` | ||
- **Required**: `true` | ||
- **Description**: The title of the dialog. svelte-a11y-dialog will place this in a paragraph tag and apply the `classes.title` to it. | ||
### `titleId` | ||
@@ -104,0 +109,0 @@ |
@@ -8,2 +8,3 @@ import { SvelteComponentTyped } from "svelte"; | ||
dialogRoot: string; | ||
title: string; | ||
closeButtonLabel?: string; | ||
@@ -20,3 +21,2 @@ closeButtonPosition?: 'first' | 'last' | 'none'; | ||
closeButtonContent: {}; | ||
title: {}; | ||
default: {}; | ||
@@ -23,0 +23,0 @@ }; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11417
175