feat(truncate): integrate Truncate with v11 (#1958)

This commit is contained in:
Eric Liu 2024-04-21 12:58:38 -07:00 committed by GitHub
commit 97e6301758
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 57 additions and 41 deletions

View file

@ -1,14 +1,21 @@
import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
type RestProps = SvelteHTMLElements["p"];
type RestProps = SvelteHTMLElements["svelte:element"];
export interface TruncateProps extends RestProps {
/**
* Specify the truncation direction
* @default "end"
*/
clamp?: "end" | "front";
/**
* Specify the tag name
* @default "p"
*/
tag?: keyof HTMLElementTagNameMap;
[key: `data-${string}`]: any;
}

View file

@ -1,12 +1,9 @@
import type { Action } from "svelte/action";
interface TruncateOptions {
clamp?: "end" | "front";
}
export function TruncateAction(
node: HTMLElement,
options?: TruncateOptions
): {
update: (options?: TruncateOptions) => void;
};
export declare const truncate: Action<HTMLElement, TruncateOptions>;
export default TruncateAction;
export default truncate;