diff --git a/packages/svelte-material-ripple/dist/Ripple.svelte b/packages/svelte-material-ripple/dist/Ripple.svelte deleted file mode 100644 index 5c93fed..0000000 --- a/packages/svelte-material-ripple/dist/Ripple.svelte +++ /dev/null @@ -1,112 +0,0 @@ - - - - - diff --git a/packages/svelte-material-ripple/dist/Ripple.svelte.d.ts b/packages/svelte-material-ripple/dist/Ripple.svelte.d.ts deleted file mode 100644 index cc5882a..0000000 --- a/packages/svelte-material-ripple/dist/Ripple.svelte.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { RippleProps } from "./types.js"; -interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { - new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { - $$bindings?: Bindings; - } & Exports; - (internal: unknown, props: Props & { - $$events?: Events; - $$slots?: Slots; - }): Exports & { - $set?: any; - $on?: any; - }; - z_$$bindings?: Bindings; -} -declare const Ripple: $$__sveltets_2_IsomorphicComponent; -}, {}, {}, "element">; -type Ripple = InstanceType; -export default Ripple; diff --git a/packages/svelte-material-ripple/dist/index.d.ts b/packages/svelte-material-ripple/dist/index.d.ts deleted file mode 100644 index c220aea..0000000 --- a/packages/svelte-material-ripple/dist/index.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export { default as Ripple } from "./Ripple.svelte"; -export type { RippleProps, RippleTheme } from "./types.js"; diff --git a/packages/svelte-material-ripple/dist/index.js b/packages/svelte-material-ripple/dist/index.js deleted file mode 100644 index f76b9fa..0000000 --- a/packages/svelte-material-ripple/dist/index.js +++ /dev/null @@ -1 +0,0 @@ -export { default as Ripple } from "./Ripple.svelte"; diff --git a/packages/svelte-material-ripple/dist/types.d.ts b/packages/svelte-material-ripple/dist/types.d.ts deleted file mode 100644 index 5e95d47..0000000 --- a/packages/svelte-material-ripple/dist/types.d.ts +++ /dev/null @@ -1,53 +0,0 @@ -export type RippleTheme = { - /** - * The color of the ripple. - */ - color?: string; - /** - * The opacity of the ripple. - */ - opacity?: string | number; -}; -export type RippleProps = { - /** - * The underlying HTML element. - * - * You can bind to this prop to access the ripple element. - */ - element?: HTMLDivElement; - /** - * Pass `true` to disable the ripple. - * - * @default false - */ - disabled?: boolean; - /** - * The element or the id of the element that triggers the ripple. - * - * Defaults to the parent element of the ripple. - */ - for?: EventTarget | string; - /** - * The easing function used for the ripple animation. - * - * @default "cubic-bezier(0.2, 0, 0, 1)" - */ - easing?: string; - /** - * A custom theme applied to the ripple. - */ - theme?: { - /** - * The theme applied when the ripple is hovered. - */ - hover?: RippleTheme; - /** - * The theme applied when the ripple is pressed. - */ - pressed?: RippleTheme; - }; - /** - * Additional CSS classes applied to the ripple element. - */ - class?: string; -}; diff --git a/packages/svelte-material-ripple/dist/types.js b/packages/svelte-material-ripple/dist/types.js deleted file mode 100644 index cb0ff5c..0000000 --- a/packages/svelte-material-ripple/dist/types.js +++ /dev/null @@ -1 +0,0 @@ -export {};