mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
chore: complete first pass of apply jsdoc annotations to component props
This commit is contained in:
parent
566a281d81
commit
f30755b237
97 changed files with 2327 additions and 259 deletions
|
@ -1,10 +1,44 @@
|
|||
<script>
|
||||
/**
|
||||
* Specify the modal title
|
||||
* @type {string} [title=""]
|
||||
*/
|
||||
export let title = "";
|
||||
|
||||
/**
|
||||
* Specify the modal label
|
||||
* @type {string} [label=""]
|
||||
*/
|
||||
export let label = "";
|
||||
|
||||
/**
|
||||
* Specify the label class
|
||||
* @type {string} [labelClass=""]
|
||||
*/
|
||||
export let labelClass = "";
|
||||
|
||||
/**
|
||||
* Specify the title class
|
||||
* @type {string} [titleClass=""]
|
||||
*/
|
||||
export let titleClass = "";
|
||||
|
||||
/**
|
||||
* Specify the close class
|
||||
* @type {string} [closeClass=""]
|
||||
*/
|
||||
export let closeClass = "";
|
||||
|
||||
/**
|
||||
* Specify the close icon class
|
||||
* @type {string} [closeIconClass=""]
|
||||
*/
|
||||
export let closeIconClass = "";
|
||||
|
||||
/**
|
||||
* Specify the ARIA label for the close icon
|
||||
* @type {string} [iconDescription="Close"]
|
||||
*/
|
||||
export let iconDescription = "Close";
|
||||
|
||||
import { getContext } from "svelte";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue