Run "yarn build:docs"

This commit is contained in:
metonym 2023-07-19 08:21:36 -07:00
commit bd37bd0f17
188 changed files with 808 additions and 689 deletions

View file

@ -1,9 +1,9 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
export interface ClickableTileProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["a"]>,
svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["p"]> {
type RestProps = SvelteHTMLElements["a"] & SvelteHTMLElements["p"];
export interface ClickableTileProps extends RestProps {
/**
* Set to `true` to click the tile
* @default false

View file

@ -1,8 +1,9 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
export interface ExpandableTileProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["button"]> {
type RestProps = SvelteHTMLElements["button"];
export interface ExpandableTileProps extends RestProps {
/**
* Set to `true` to expand the tile
* @default false

View file

@ -1,8 +1,9 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
export interface RadioTileProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["label"]> {
type RestProps = SvelteHTMLElements["label"];
export interface RadioTileProps extends RestProps {
/**
* Set to `true` to check the tile
* @default false

View file

@ -1,8 +1,9 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
export interface SelectableTileProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["label"]> {
type RestProps = SvelteHTMLElements["label"];
export interface SelectableTileProps extends RestProps {
/**
* Set to `true` to select the tile
* @default false

View file

@ -1,8 +1,9 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
export interface TileProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]> {
type RestProps = SvelteHTMLElements["div"];
export interface TileProps extends RestProps {
/**
* Set to `true` to enable the light variant
* @default false

View file

@ -1,8 +1,9 @@
/// <reference types="svelte" />
import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
export interface TileGroupProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["fieldset"]> {
type RestProps = SvelteHTMLElements["fieldset"];
export interface TileGroupProps extends RestProps {
/**
* Specify the selected tile value
* @default undefined