@max-ts/svelte 1.4.4 → 1.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Accordion/Trigger/Trigger.svelte.d.ts +1 -1
- package/dist/components/Alert/Alert.svelte.d.ts +1 -1
- package/dist/components/Alert/Description/Description.svelte.d.ts +1 -1
- package/dist/components/Alert/Title/Title.svelte.d.ts +1 -1
- package/dist/components/Badge/types.d.ts +1 -1
- package/dist/components/ButtonGroup/Text/Text.svelte.d.ts +1 -1
- package/dist/components/ButtonGroup/types.d.ts +1 -1
- package/dist/components/Calendar/Month/Month.svelte.d.ts +1 -1
- package/dist/components/Calendar/Months/Months.svelte.d.ts +1 -1
- package/dist/components/Calendar/Nav/Nav.svelte.d.ts +1 -1
- package/dist/components/Calendar/types.d.ts +1 -1
- package/dist/components/Card/Action/Action.svelte.d.ts +1 -1
- package/dist/components/Card/Card.svelte.d.ts +1 -1
- package/dist/components/Card/Content/Content.svelte.d.ts +1 -1
- package/dist/components/Card/Description/Description.svelte.d.ts +1 -1
- package/dist/components/Card/Footer/Footer.svelte.d.ts +1 -1
- package/dist/components/Card/Header/Header.svelte.d.ts +1 -1
- package/dist/components/Card/Title/Title.svelte.d.ts +1 -1
- package/dist/components/Carousel/Content/Content.svelte.d.ts +1 -1
- package/dist/components/Carousel/Item/Item.svelte.d.ts +1 -1
- package/dist/components/Carousel/types.d.ts +1 -1
- package/dist/components/DropdownMenu/CheckboxItem/CheckboxItem.svelte.d.ts +1 -1
- package/dist/components/DropdownMenu/Content/Content.svelte.d.ts +1 -1
- package/dist/components/DropdownMenu/Label/Label.svelte.d.ts +1 -1
- package/dist/components/DropdownMenu/Shortcut/Shortcut.svelte.d.ts +1 -1
- package/dist/components/Empty/Content/Content.svelte.d.ts +1 -1
- package/dist/components/Empty/Description/Description.svelte.d.ts +1 -1
- package/dist/components/Empty/Empty.svelte.d.ts +1 -1
- package/dist/components/Empty/Header/Header.svelte.d.ts +1 -1
- package/dist/components/Empty/Title/Title.svelte.d.ts +1 -1
- package/dist/components/Empty/types.d.ts +1 -1
- package/dist/components/Field/Content/Content.svelte.d.ts +1 -1
- package/dist/components/Field/Description/Description.svelte.d.ts +1 -1
- package/dist/components/Field/Field.svelte.d.ts +1 -1
- package/dist/components/Field/FieldError/FieldError.svelte.d.ts +1 -1
- package/dist/components/Field/FieldSet/FieldSet.svelte.d.ts +1 -1
- package/dist/components/Field/Group/Group.svelte.d.ts +1 -1
- package/dist/components/Field/Legend/Legend.svelte.d.ts +1 -1
- package/dist/components/Field/Separator/Separator.svelte.d.ts +1 -1
- package/dist/components/Field/Title/Title.svelte.d.ts +1 -1
- package/dist/components/Input/types.d.ts +1 -1
- package/dist/components/Item/Actions/Actions.svelte.d.ts +1 -1
- package/dist/components/Item/Content/Content.svelte.d.ts +1 -1
- package/dist/components/Item/Description/Description.svelte.d.ts +1 -1
- package/dist/components/Item/Footer/Footer.svelte.d.ts +1 -1
- package/dist/components/Item/Group/Group.svelte.d.ts +1 -1
- package/dist/components/Item/Header/Header.svelte.d.ts +1 -1
- package/dist/components/Item/Title/Title.svelte.d.ts +1 -1
- package/dist/components/Item/types.d.ts +1 -1
- package/dist/components/Popover/types.d.ts +1 -1
- package/dist/components/RangeInput/types.d.ts +1 -1
- package/dist/components/Select/Content/Content.svelte.d.ts +1 -1
- package/dist/components/Select/Label/Label.svelte.d.ts +1 -1
- package/dist/components/Select/Trigger/Trigger.svelte.d.ts +1 -1
- package/dist/components/Slider/types.d.ts +1 -1
- package/dist/components/Tooltip/Content/Content.svelte.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Accordion as AccordionPrimitive } from 'bits-ui';
|
|
2
|
-
import type { WithoutChild } from '
|
|
2
|
+
import type { WithoutChild } from '../../../types';
|
|
3
3
|
type $$ComponentProps = WithoutChild<AccordionPrimitive.TriggerProps> & {
|
|
4
4
|
level?: AccordionPrimitive.HeaderProps['level'];
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../types';
|
|
3
3
|
import type { AlertVariant } from './types';
|
|
4
4
|
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
5
5
|
variant?: AlertVariant;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Description: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Description = ReturnType<typeof Description>;
|
|
5
5
|
export default Description;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Title: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Title = ReturnType<typeof Title>;
|
|
5
5
|
export default Title;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { WithElementRef } from '
|
|
1
|
+
import type { WithElementRef } from '../../types';
|
|
2
2
|
import type { HTMLAnchorAttributes } from 'svelte/elements';
|
|
3
3
|
export type BadgeVariant = 'default' | 'secondary' | 'destructive' | 'outline';
|
|
4
4
|
export interface BadgeProps extends WithElementRef<HTMLAnchorAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
2
|
import type { Snippet } from 'svelte';
|
|
3
|
-
import type { WithElementRef } from '
|
|
3
|
+
import type { WithElementRef } from '../../../types';
|
|
4
4
|
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
5
5
|
child?: Snippet<[{
|
|
6
6
|
props: Record<string, unknown>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { WithElementRef } from '
|
|
1
|
+
import type { WithElementRef } from '../../types';
|
|
2
2
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
3
3
|
export type ButtonGroupOrientation = 'horizontal' | 'vertical';
|
|
4
4
|
export interface ButtonGroupProps extends WithElementRef<HTMLAttributes<HTMLDivElement>> {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Month: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLElement>>, {}, "ref">;
|
|
4
4
|
type Month = ReturnType<typeof Month>;
|
|
5
5
|
export default Month;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Months: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Months = ReturnType<typeof Months>;
|
|
5
5
|
export default Months;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Nav: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLElement>>, {}, "ref">;
|
|
4
4
|
type Nav = ReturnType<typeof Nav>;
|
|
5
5
|
export default Nav;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { DateValue } from '@internationalized/date';
|
|
2
2
|
import type { Calendar } from 'bits-ui';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
|
-
import type { WithoutChildrenOrChild } from '
|
|
4
|
+
import type { WithoutChildrenOrChild } from '../../types';
|
|
5
5
|
import type { ButtonVariant } from '../Button/types';
|
|
6
6
|
export type CalendarProps = WithoutChildrenOrChild<Calendar.RootProps> & {
|
|
7
7
|
buttonVariant?: ButtonVariant;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Action: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Action = ReturnType<typeof Action>;
|
|
5
5
|
export default Action;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../types';
|
|
3
3
|
declare const Card: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Card = ReturnType<typeof Card>;
|
|
5
5
|
export default Card;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Content: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Content = ReturnType<typeof Content>;
|
|
5
5
|
export default Content;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Description: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLParagraphElement>>, {}, "ref">;
|
|
4
4
|
type Description = ReturnType<typeof Description>;
|
|
5
5
|
export default Description;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Footer: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Footer = ReturnType<typeof Footer>;
|
|
5
5
|
export default Footer;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Header: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Header = ReturnType<typeof Header>;
|
|
5
5
|
export default Header;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Title: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Title = ReturnType<typeof Title>;
|
|
5
5
|
export default Title;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Content: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Content = ReturnType<typeof Content>;
|
|
5
5
|
export default Content;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Item: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Item = ReturnType<typeof Item>;
|
|
5
5
|
export default Item;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { EmblaCarouselSvelteType, default as emblaCarouselSvelte } from 'embla-carousel-svelte';
|
|
2
2
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
3
|
-
import type { WithElementRef } from '
|
|
3
|
+
import type { WithElementRef } from '../../types';
|
|
4
4
|
export type CarouselAPI = NonNullable<NonNullable<EmblaCarouselSvelteType['$$_attributes']>['onemblaInit']> extends (evt: CustomEvent<infer API>) => void ? API : any;
|
|
5
5
|
type EmblaCarouselConfig = NonNullable<Parameters<typeof emblaCarouselSvelte>[1]>;
|
|
6
6
|
export type CarouselOptions = EmblaCarouselConfig['options'];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DropdownMenu as DropdownMenuPrimitive } from 'bits-ui';
|
|
2
2
|
import type { Snippet } from 'svelte';
|
|
3
|
-
import type { WithoutChildrenOrChild } from '
|
|
3
|
+
import type { WithoutChildrenOrChild } from '../../../types';
|
|
4
4
|
type $$ComponentProps = WithoutChildrenOrChild<DropdownMenuPrimitive.CheckboxItemProps> & {
|
|
5
5
|
children?: Snippet;
|
|
6
6
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DropdownMenu as DropdownMenuPrimitive } from 'bits-ui';
|
|
2
2
|
import type { ComponentProps } from 'svelte';
|
|
3
|
-
import type { WithoutChildrenOrChild } from '
|
|
3
|
+
import type { WithoutChildrenOrChild } from '../../../types';
|
|
4
4
|
import { Portal } from '../Portal';
|
|
5
5
|
type $$ComponentProps = DropdownMenuPrimitive.ContentProps & {
|
|
6
6
|
portalProps?: WithoutChildrenOrChild<ComponentProps<typeof Portal>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Shortcut: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLSpanElement>>, {}, "ref">;
|
|
4
4
|
type Shortcut = ReturnType<typeof Shortcut>;
|
|
5
5
|
export default Shortcut;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Content: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Content = ReturnType<typeof Content>;
|
|
5
5
|
export default Content;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Description: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Description = ReturnType<typeof Description>;
|
|
5
5
|
export default Description;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../types';
|
|
3
3
|
declare const Empty: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Empty = ReturnType<typeof Empty>;
|
|
5
5
|
export default Empty;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Header: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Header = ReturnType<typeof Header>;
|
|
5
5
|
export default Header;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Title: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Title = ReturnType<typeof Title>;
|
|
5
5
|
export default Title;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { WithElementRef } from '
|
|
1
|
+
import type { WithElementRef } from '../../types';
|
|
2
2
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
3
3
|
export type EmptyMediaVariant = 'default' | 'icon';
|
|
4
4
|
export interface EmptyMediaProps extends WithElementRef<HTMLAttributes<HTMLDivElement>> {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Content: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Content = ReturnType<typeof Content>;
|
|
5
5
|
export default Content;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Description: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLParagraphElement>>, {}, "ref">;
|
|
4
4
|
type Description = ReturnType<typeof Description>;
|
|
5
5
|
export default Description;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../types';
|
|
3
3
|
import type { FieldOrientation } from './types';
|
|
4
4
|
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
5
5
|
orientation?: FieldOrientation;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Snippet } from 'svelte';
|
|
2
2
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
3
|
-
import type { WithElementRef } from '
|
|
3
|
+
import type { WithElementRef } from '../../../types';
|
|
4
4
|
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
5
5
|
children?: Snippet;
|
|
6
6
|
errors?: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLFieldsetAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const FieldSet: import("svelte").Component<WithElementRef<HTMLFieldsetAttributes>, {}, "ref">;
|
|
4
4
|
type FieldSet = ReturnType<typeof FieldSet>;
|
|
5
5
|
export default FieldSet;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Group: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Group = ReturnType<typeof Group>;
|
|
5
5
|
export default Group;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLLegendElement>> & {
|
|
4
4
|
variant?: 'legend' | 'label';
|
|
5
5
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Snippet } from 'svelte';
|
|
2
2
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
3
|
-
import type { WithElementRef } from '
|
|
3
|
+
import type { WithElementRef } from '../../../types';
|
|
4
4
|
import { Separator } from '../../Separator';
|
|
5
5
|
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
6
6
|
children?: Snippet;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Title: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Title = ReturnType<typeof Title>;
|
|
5
5
|
export default Title;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLInputAttributes, HTMLInputTypeAttribute } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../types';
|
|
3
3
|
export type InputType = Exclude<HTMLInputTypeAttribute, 'file'>;
|
|
4
4
|
export type InputProps = WithElementRef<Omit<HTMLInputAttributes, 'type' | 'size'> & ({
|
|
5
5
|
type: 'file';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Actions: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Actions = ReturnType<typeof Actions>;
|
|
5
5
|
export default Actions;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Content: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Content = ReturnType<typeof Content>;
|
|
5
5
|
export default Content;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Description: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLParagraphElement>>, {}, "ref">;
|
|
4
4
|
type Description = ReturnType<typeof Description>;
|
|
5
5
|
export default Description;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Footer: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Footer = ReturnType<typeof Footer>;
|
|
5
5
|
export default Footer;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Group: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Group = ReturnType<typeof Group>;
|
|
5
5
|
export default Group;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Header: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Header = ReturnType<typeof Header>;
|
|
5
5
|
export default Header;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Title: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Title = ReturnType<typeof Title>;
|
|
5
5
|
export default Title;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Snippet } from 'svelte';
|
|
2
2
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
3
|
-
import type { WithElementRef } from '
|
|
3
|
+
import type { WithElementRef } from '../../types';
|
|
4
4
|
export type ItemVariant = 'default' | 'outline' | 'muted';
|
|
5
5
|
export type ItemSize = 'default' | 'small';
|
|
6
6
|
export interface ItemProps extends WithElementRef<HTMLAttributes<HTMLDivElement>> {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Popover as PopoverPrimitive } from 'bits-ui';
|
|
2
|
-
import type { WithoutChildrenOrChild } from '
|
|
2
|
+
import type { WithoutChildrenOrChild } from '../../types';
|
|
3
3
|
export type PopoverProps = PopoverPrimitive.RootProps;
|
|
4
4
|
export type PopoverTriggerProps = PopoverPrimitive.TriggerProps;
|
|
5
5
|
export type PopoverCloseProps = PopoverPrimitive.CloseProps;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../types';
|
|
3
3
|
export type RangeInputSize = 'small' | 'medium' | 'large';
|
|
4
4
|
export interface RangeInputProps extends WithElementRef<HTMLAttributes<HTMLDivElement>> {
|
|
5
5
|
minValue?: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Select as SelectPrimitive } from 'bits-ui';
|
|
2
2
|
import type { ComponentProps } from 'svelte';
|
|
3
|
-
import type { WithoutChild, WithoutChildrenOrChild } from '
|
|
3
|
+
import type { WithoutChild, WithoutChildrenOrChild } from '../../../types';
|
|
4
4
|
import { Portal } from '../Portal';
|
|
5
5
|
type $$ComponentProps = WithoutChild<SelectPrimitive.ContentProps> & {
|
|
6
6
|
portalProps?: WithoutChildrenOrChild<ComponentProps<typeof Portal>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
-
import type { WithElementRef } from '
|
|
2
|
+
import type { WithElementRef } from '../../../types';
|
|
3
3
|
declare const Label: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
4
|
type Label = ReturnType<typeof Label>;
|
|
5
5
|
export default Label;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Slider as SliderPrimitive } from 'bits-ui';
|
|
2
|
-
import type { WithoutChildrenOrChild } from '
|
|
2
|
+
import type { WithoutChildrenOrChild } from '../../types';
|
|
3
3
|
export type SliderSize = 'small' | 'medium' | 'large';
|
|
4
4
|
export type SliderProps = WithoutChildrenOrChild<SliderPrimitive.RootProps> & {
|
|
5
5
|
size?: SliderSize;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Tooltip as TooltipPrimitive } from 'bits-ui';
|
|
2
2
|
import type { ComponentProps } from 'svelte';
|
|
3
|
-
import type { WithoutChildrenOrChild } from '
|
|
3
|
+
import type { WithoutChildrenOrChild } from '../../../types';
|
|
4
4
|
import { Portal } from '../Portal';
|
|
5
5
|
type $$ComponentProps = TooltipPrimitive.ContentProps & {
|
|
6
6
|
arrowClasses?: string;
|