@functionalcms/svelte-components 2.41.8 → 3.0.1
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/Banner.svelte.d.ts +2 -4
- package/dist/components/Link.svelte.d.ts +2 -4
- package/dist/components/Logo.svelte.d.ts +2 -4
- package/dist/components/SimpleFooter.svelte.d.ts +2 -4
- package/dist/components/Spacer.svelte.d.ts +2 -4
- package/dist/components/Well.svelte.d.ts +2 -4
- package/dist/components/agnostic/Alert/Alert.svelte.d.ts +2 -4
- package/dist/components/agnostic/Avatar/Avatar.svelte.d.ts +2 -4
- package/dist/components/agnostic/Avatar/AvatarGroup.svelte.d.ts +2 -4
- package/dist/components/agnostic/Breadcrumb/Breadcrumb.svelte.d.ts +2 -4
- package/dist/components/agnostic/Button/Button.svelte.d.ts +2 -4
- package/dist/components/agnostic/Button/ButtonGroup.svelte.d.ts +2 -4
- package/dist/components/agnostic/Card/Card.svelte.d.ts +2 -4
- package/dist/components/agnostic/ChoiceInput/ChoiceInput.svelte.d.ts +2 -4
- package/dist/components/agnostic/Close/Close.svelte.d.ts +2 -4
- package/dist/components/agnostic/Dialog/Dialog.svelte.d.ts +2 -4
- package/dist/components/agnostic/Dialog/SvelteA11yDialog.svelte.d.ts +2 -4
- package/dist/components/agnostic/Disclose/Disclose.svelte.d.ts +2 -4
- package/dist/components/agnostic/Divider/Divider.svelte.d.ts +2 -4
- package/dist/components/agnostic/Drawer/Drawer.svelte.d.ts +2 -4
- package/dist/components/agnostic/EmptyState/EmptyState.svelte.d.ts +2 -4
- package/dist/components/agnostic/Header/Header.svelte.d.ts +2 -4
- package/dist/components/agnostic/Header/HeaderNav.svelte.d.ts +2 -4
- package/dist/components/agnostic/Header/HeaderNavItem.svelte.d.ts +2 -4
- package/dist/components/agnostic/Icon/Icon.svelte.d.ts +2 -4
- package/dist/components/agnostic/Loader/Loader.svelte.d.ts +2 -4
- package/dist/components/agnostic/Progress/Progress.svelte.d.ts +2 -4
- package/dist/components/agnostic/Spinner/Spinner.svelte.d.ts +2 -4
- package/dist/components/agnostic/Switch/Switch.svelte.d.ts +4 -6
- package/dist/components/agnostic/Table/Table.svelte.d.ts +2 -4
- package/dist/components/agnostic/Table/TableCustomRenderComponent.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tabs/TabButtonCustom.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tabs/Tabs.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tag/Tag.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tag/TagSlots.svelte.d.ts +2 -4
- package/dist/components/agnostic/Toasts/Toasts.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tooltip/Tooltip.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tooltip/TooltipSlots.svelte.d.ts +2 -4
- package/dist/components/blog/BlogDescription.svelte.d.ts +2 -4
- package/dist/components/blog/BlogTitle.svelte.d.ts +2 -4
- package/dist/components/form/DateTimePicker.svelte.d.ts +2 -4
- package/dist/components/form/Input.svelte.d.ts +2 -4
- package/dist/components/form/InputAddonItem.svelte.d.ts +2 -4
- package/dist/components/form/Select.svelte.d.ts +2 -4
- package/dist/components/layouts/DefaultLayout.svelte +1 -17
- package/dist/components/layouts/DefaultLayout.svelte.d.ts +2 -5
- package/dist/components/layouts/Meta.svelte +16 -0
- package/dist/components/layouts/Meta.svelte.d.ts +21 -0
- package/dist/components/layouts/Tracker.svelte +17 -0
- package/dist/components/layouts/Tracker.svelte.d.ts +16 -0
- package/dist/components/layouts/TwoColumnsLayout.svelte.d.ts +2 -4
- package/dist/components/menu/CollapsibleMenu.svelte.d.ts +2 -4
- package/dist/components/menu/DynamicMenu.svelte.d.ts +2 -4
- package/dist/components/menu/HamburgerMenu.svelte.d.ts +2 -4
- package/dist/components/menu/Menu.svelte.d.ts +2 -4
- package/dist/components/menu/MenuItem.svelte.d.ts +2 -4
- package/dist/components/menu/NavigationItems.svelte.d.ts +2 -4
- package/dist/components/presentation/Carusel.svelte.d.ts +2 -4
- package/dist/components/presentation/Gallery.svelte.d.ts +2 -4
- package/dist/components/presentation/ImageCompare.svelte.d.ts +2 -4
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2 -3
- package/package.json +8 -11
- package/dist/stores/meta.d.ts +0 -3
- package/dist/stores/meta.js +0 -3
- package/dist/stores/pages.d.ts +0 -2
- package/dist/stores/pages.js +0 -7
- package/dist/stores/title.d.ts +0 -2
- package/dist/stores/title.js +0 -11
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
background?: string;
|
|
@@ -10,12 +10,10 @@ declare const __propDef: {
|
|
|
10
10
|
slots: {
|
|
11
11
|
default: {};
|
|
12
12
|
};
|
|
13
|
-
exports?: {} | undefined;
|
|
14
|
-
bindings?: string | undefined;
|
|
15
13
|
};
|
|
16
14
|
export type BannerProps = typeof __propDef.props;
|
|
17
15
|
export type BannerEvents = typeof __propDef.events;
|
|
18
16
|
export type BannerSlots = typeof __propDef.slots;
|
|
19
|
-
export default class Banner extends
|
|
17
|
+
export default class Banner extends SvelteComponentTyped<BannerProps, BannerEvents, BannerSlots> {
|
|
20
18
|
}
|
|
21
19
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import { AlignItmes, ComponentSize, Justify, Orientation } from './Styling.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -28,12 +28,10 @@ declare const __propDef: {
|
|
|
28
28
|
slots: {
|
|
29
29
|
default: {};
|
|
30
30
|
};
|
|
31
|
-
exports?: {} | undefined;
|
|
32
|
-
bindings?: string | undefined;
|
|
33
31
|
};
|
|
34
32
|
export type LinkProps = typeof __propDef.props;
|
|
35
33
|
export type LinkEvents = typeof __propDef.events;
|
|
36
34
|
export type LinkSlots = typeof __propDef.slots;
|
|
37
|
-
export default class Link extends
|
|
35
|
+
export default class Link extends SvelteComponentTyped<LinkProps, LinkEvents, LinkSlots> {
|
|
38
36
|
}
|
|
39
37
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
/**
|
|
@@ -15,12 +15,10 @@ declare const __propDef: {
|
|
|
15
15
|
[evt: string]: CustomEvent<any>;
|
|
16
16
|
};
|
|
17
17
|
slots: {};
|
|
18
|
-
exports?: {} | undefined;
|
|
19
|
-
bindings?: string | undefined;
|
|
20
18
|
};
|
|
21
19
|
export type LogoProps = typeof __propDef.props;
|
|
22
20
|
export type LogoEvents = typeof __propDef.events;
|
|
23
21
|
export type LogoSlots = typeof __propDef.slots;
|
|
24
|
-
export default class Logo extends
|
|
22
|
+
export default class Logo extends SvelteComponentTyped<LogoProps, LogoEvents, LogoSlots> {
|
|
25
23
|
}
|
|
26
24
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
/**
|
|
@@ -15,12 +15,10 @@ declare const __propDef: {
|
|
|
15
15
|
[evt: string]: CustomEvent<any>;
|
|
16
16
|
};
|
|
17
17
|
slots: {};
|
|
18
|
-
exports?: {} | undefined;
|
|
19
|
-
bindings?: string | undefined;
|
|
20
18
|
};
|
|
21
19
|
export type SimpleFooterProps = typeof __propDef.props;
|
|
22
20
|
export type SimpleFooterEvents = typeof __propDef.events;
|
|
23
21
|
export type SimpleFooterSlots = typeof __propDef.slots;
|
|
24
|
-
export default class SimpleFooter extends
|
|
22
|
+
export default class SimpleFooter extends SvelteComponentTyped<SimpleFooterProps, SimpleFooterEvents, SimpleFooterSlots> {
|
|
25
23
|
}
|
|
26
24
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import { Sizes } from "./Styling";
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -9,12 +9,10 @@ declare const __propDef: {
|
|
|
9
9
|
[evt: string]: CustomEvent<any>;
|
|
10
10
|
};
|
|
11
11
|
slots: {};
|
|
12
|
-
exports?: {} | undefined;
|
|
13
|
-
bindings?: string | undefined;
|
|
14
12
|
};
|
|
15
13
|
export type SpacerProps = typeof __propDef.props;
|
|
16
14
|
export type SpacerEvents = typeof __propDef.events;
|
|
17
15
|
export type SpacerSlots = typeof __propDef.slots;
|
|
18
|
-
export default class Spacer extends
|
|
16
|
+
export default class Spacer extends SvelteComponentTyped<SpacerProps, SpacerEvents, SpacerSlots> {
|
|
19
17
|
}
|
|
20
18
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import { AlignItmes, Justify, Orientation } from "./Styling.js";
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -13,12 +13,10 @@ declare const __propDef: {
|
|
|
13
13
|
slots: {
|
|
14
14
|
default: {};
|
|
15
15
|
};
|
|
16
|
-
exports?: {} | undefined;
|
|
17
|
-
bindings?: string | undefined;
|
|
18
16
|
};
|
|
19
17
|
export type WellProps = typeof __propDef.props;
|
|
20
18
|
export type WellEvents = typeof __propDef.events;
|
|
21
19
|
export type WellSlots = typeof __propDef.slots;
|
|
22
|
-
export default class Well extends
|
|
20
|
+
export default class Well extends SvelteComponentTyped<WellProps, WellEvents, WellSlots> {
|
|
23
21
|
}
|
|
24
22
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
isAnimationFadeIn?: boolean;
|
|
@@ -20,12 +20,10 @@ declare const __propDef: {
|
|
|
20
20
|
icon: {};
|
|
21
21
|
default: {};
|
|
22
22
|
};
|
|
23
|
-
exports?: {} | undefined;
|
|
24
|
-
bindings?: string | undefined;
|
|
25
23
|
};
|
|
26
24
|
export type AlertProps = typeof __propDef.props;
|
|
27
25
|
export type AlertEvents = typeof __propDef.events;
|
|
28
26
|
export type AlertSlots = typeof __propDef.slots;
|
|
29
|
-
export default class Alert extends
|
|
27
|
+
export default class Alert extends SvelteComponentTyped<AlertProps, AlertEvents, AlertSlots> {
|
|
30
28
|
}
|
|
31
29
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
isRounded?: boolean;
|
|
@@ -15,12 +15,10 @@ declare const __propDef: {
|
|
|
15
15
|
slots: {
|
|
16
16
|
default: {};
|
|
17
17
|
};
|
|
18
|
-
exports?: {} | undefined;
|
|
19
|
-
bindings?: string | undefined;
|
|
20
18
|
};
|
|
21
19
|
export type AvatarProps = typeof __propDef.props;
|
|
22
20
|
export type AvatarEvents = typeof __propDef.events;
|
|
23
21
|
export type AvatarSlots = typeof __propDef.slots;
|
|
24
|
-
export default class Avatar extends
|
|
22
|
+
export default class Avatar extends SvelteComponentTyped<AvatarProps, AvatarEvents, AvatarSlots> {
|
|
25
23
|
}
|
|
26
24
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} AvatarGroupProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} AvatarGroupEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} AvatarGroupSlots */
|
|
4
|
-
export default class AvatarGroup extends
|
|
4
|
+
export default class AvatarGroup extends SvelteComponentTyped<{
|
|
5
5
|
[x: string]: never;
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
@@ -12,7 +12,7 @@ export default class AvatarGroup extends SvelteComponent<{
|
|
|
12
12
|
export type AvatarGroupProps = typeof __propDef.props;
|
|
13
13
|
export type AvatarGroupEvents = typeof __propDef.events;
|
|
14
14
|
export type AvatarGroupSlots = typeof __propDef.slots;
|
|
15
|
-
import {
|
|
15
|
+
import { SvelteComponentTyped } from "svelte";
|
|
16
16
|
declare const __propDef: {
|
|
17
17
|
props: {
|
|
18
18
|
[x: string]: never;
|
|
@@ -23,7 +23,5 @@ declare const __propDef: {
|
|
|
23
23
|
slots: {
|
|
24
24
|
default: {};
|
|
25
25
|
};
|
|
26
|
-
exports?: undefined;
|
|
27
|
-
bindings?: undefined;
|
|
28
26
|
};
|
|
29
27
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { BreadcrumbRoute } from './api';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -9,12 +9,10 @@ declare const __propDef: {
|
|
|
9
9
|
[evt: string]: CustomEvent<any>;
|
|
10
10
|
};
|
|
11
11
|
slots: {};
|
|
12
|
-
exports?: {} | undefined;
|
|
13
|
-
bindings?: string | undefined;
|
|
14
12
|
};
|
|
15
13
|
export type BreadcrumbProps = typeof __propDef.props;
|
|
16
14
|
export type BreadcrumbEvents = typeof __propDef.events;
|
|
17
15
|
export type BreadcrumbSlots = typeof __propDef.slots;
|
|
18
|
-
export default class Breadcrumb extends
|
|
16
|
+
export default class Breadcrumb extends SvelteComponentTyped<BreadcrumbProps, BreadcrumbEvents, BreadcrumbSlots> {
|
|
19
17
|
}
|
|
20
18
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
[x: string]: any;
|
|
@@ -32,12 +32,10 @@ declare const __propDef: {
|
|
|
32
32
|
slots: {
|
|
33
33
|
default: {};
|
|
34
34
|
};
|
|
35
|
-
exports?: undefined;
|
|
36
|
-
bindings?: undefined;
|
|
37
35
|
};
|
|
38
36
|
export type ButtonProps = typeof __propDef.props;
|
|
39
37
|
export type ButtonEvents = typeof __propDef.events;
|
|
40
38
|
export type ButtonSlots = typeof __propDef.slots;
|
|
41
|
-
export default class Button extends
|
|
39
|
+
export default class Button extends SvelteComponentTyped<ButtonProps, ButtonEvents, ButtonSlots> {
|
|
42
40
|
}
|
|
43
41
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
ariaLabel?: string;
|
|
@@ -12,12 +12,10 @@ declare const __propDef: {
|
|
|
12
12
|
slots: {
|
|
13
13
|
default: {};
|
|
14
14
|
};
|
|
15
|
-
exports?: {} | undefined;
|
|
16
|
-
bindings?: string | undefined;
|
|
17
15
|
};
|
|
18
16
|
export type ButtonGroupProps = typeof __propDef.props;
|
|
19
17
|
export type ButtonGroupEvents = typeof __propDef.events;
|
|
20
18
|
export type ButtonGroupSlots = typeof __propDef.slots;
|
|
21
|
-
export default class ButtonGroup extends
|
|
19
|
+
export default class ButtonGroup extends SvelteComponentTyped<ButtonGroupProps, ButtonGroupEvents, ButtonGroupSlots> {
|
|
22
20
|
}
|
|
23
21
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
isAnimated?: boolean;
|
|
@@ -20,12 +20,10 @@ declare const __propDef: {
|
|
|
20
20
|
slots: {
|
|
21
21
|
default: {};
|
|
22
22
|
};
|
|
23
|
-
exports?: {} | undefined;
|
|
24
|
-
bindings?: string | undefined;
|
|
25
23
|
};
|
|
26
24
|
export type CardProps = typeof __propDef.props;
|
|
27
25
|
export type CardEvents = typeof __propDef.events;
|
|
28
26
|
export type CardSlots = typeof __propDef.slots;
|
|
29
|
-
export default class Card extends
|
|
27
|
+
export default class Card extends SvelteComponentTyped<CardProps, CardEvents, CardSlots> {
|
|
30
28
|
}
|
|
31
29
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { ChoiceInputOption, ChoiceInputSize, ChoiceInputType } from './api';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -26,12 +26,10 @@ declare const __propDef: {
|
|
|
26
26
|
[evt: string]: CustomEvent<any>;
|
|
27
27
|
};
|
|
28
28
|
slots: {};
|
|
29
|
-
exports?: undefined;
|
|
30
|
-
bindings?: undefined;
|
|
31
29
|
};
|
|
32
30
|
export type ChoiceInputProps = typeof __propDef.props;
|
|
33
31
|
export type ChoiceInputEvents = typeof __propDef.events;
|
|
34
32
|
export type ChoiceInputSlots = typeof __propDef.slots;
|
|
35
|
-
export default class ChoiceInput extends
|
|
33
|
+
export default class ChoiceInput extends SvelteComponentTyped<ChoiceInputProps, ChoiceInputEvents, ChoiceInputSlots> {
|
|
36
34
|
}
|
|
37
35
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { CloseSizes } from './api';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -12,12 +12,10 @@ declare const __propDef: {
|
|
|
12
12
|
[evt: string]: CustomEvent<any>;
|
|
13
13
|
};
|
|
14
14
|
slots: {};
|
|
15
|
-
exports?: {} | undefined;
|
|
16
|
-
bindings?: string | undefined;
|
|
17
15
|
};
|
|
18
16
|
export type CloseProps = typeof __propDef.props;
|
|
19
17
|
export type CloseEvents = typeof __propDef.events;
|
|
20
18
|
export type CloseSlots = typeof __propDef.slots;
|
|
21
|
-
export default class Close extends
|
|
19
|
+
export default class Close extends SvelteComponentTyped<CloseProps, CloseEvents, CloseSlots> {
|
|
22
20
|
}
|
|
23
21
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
id: any;
|
|
@@ -28,12 +28,10 @@ declare const __propDef: {
|
|
|
28
28
|
};
|
|
29
29
|
default: {};
|
|
30
30
|
};
|
|
31
|
-
exports?: {} | undefined;
|
|
32
|
-
bindings?: string | undefined;
|
|
33
31
|
};
|
|
34
32
|
export type DialogProps = typeof __propDef.props;
|
|
35
33
|
export type DialogEvents = typeof __propDef.events;
|
|
36
34
|
export type DialogSlots = typeof __propDef.slots;
|
|
37
|
-
export default class Dialog extends
|
|
35
|
+
export default class Dialog extends SvelteComponentTyped<DialogProps, DialogEvents, DialogSlots> {
|
|
38
36
|
}
|
|
39
37
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
id: string;
|
|
@@ -19,12 +19,10 @@ declare const __propDef: {
|
|
|
19
19
|
closeButtonContent: {};
|
|
20
20
|
default: {};
|
|
21
21
|
};
|
|
22
|
-
exports?: {} | undefined;
|
|
23
|
-
bindings?: string | undefined;
|
|
24
22
|
};
|
|
25
23
|
export type SvelteA11yDialogProps = typeof __propDef.props;
|
|
26
24
|
export type SvelteA11yDialogEvents = typeof __propDef.events;
|
|
27
25
|
export type SvelteA11yDialogSlots = typeof __propDef.slots;
|
|
28
|
-
export default class SvelteA11yDialog extends
|
|
26
|
+
export default class SvelteA11yDialog extends SvelteComponentTyped<SvelteA11yDialogProps, SvelteA11yDialogEvents, SvelteA11yDialogSlots> {
|
|
29
27
|
}
|
|
30
28
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
title?: string;
|
|
@@ -12,12 +12,10 @@ declare const __propDef: {
|
|
|
12
12
|
slots: {
|
|
13
13
|
default: {};
|
|
14
14
|
};
|
|
15
|
-
exports?: {} | undefined;
|
|
16
|
-
bindings?: string | undefined;
|
|
17
15
|
};
|
|
18
16
|
export type DiscloseProps = typeof __propDef.props;
|
|
19
17
|
export type DiscloseEvents = typeof __propDef.events;
|
|
20
18
|
export type DiscloseSlots = typeof __propDef.slots;
|
|
21
|
-
export default class Disclose extends
|
|
19
|
+
export default class Disclose extends SvelteComponentTyped<DiscloseProps, DiscloseEvents, DiscloseSlots> {
|
|
22
20
|
}
|
|
23
21
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { DividerJustify, DividerTypes, DividerSizes } from './api';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -14,12 +14,10 @@ declare const __propDef: {
|
|
|
14
14
|
slots: {
|
|
15
15
|
dividerContent: {};
|
|
16
16
|
};
|
|
17
|
-
exports?: undefined;
|
|
18
|
-
bindings?: undefined;
|
|
19
17
|
};
|
|
20
18
|
export type DividerProps = typeof __propDef.props;
|
|
21
19
|
export type DividerEvents = typeof __propDef.events;
|
|
22
20
|
export type DividerSlots = typeof __propDef.slots;
|
|
23
|
-
export default class Divider extends
|
|
21
|
+
export default class Divider extends SvelteComponentTyped<DividerProps, DividerEvents, DividerSlots> {
|
|
24
22
|
}
|
|
25
23
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { DrawerRoles } from './api';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -17,12 +17,10 @@ declare const __propDef: {
|
|
|
17
17
|
slots: {
|
|
18
18
|
default: {};
|
|
19
19
|
};
|
|
20
|
-
exports?: {} | undefined;
|
|
21
|
-
bindings?: string | undefined;
|
|
22
20
|
};
|
|
23
21
|
export type DrawerProps = typeof __propDef.props;
|
|
24
22
|
export type DrawerEvents = typeof __propDef.events;
|
|
25
23
|
export type DrawerSlots = typeof __propDef.slots;
|
|
26
|
-
export default class Drawer extends
|
|
24
|
+
export default class Drawer extends SvelteComponentTyped<DrawerProps, DrawerEvents, DrawerSlots> {
|
|
27
25
|
}
|
|
28
26
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
isRounded?: boolean;
|
|
@@ -12,12 +12,10 @@ declare const __propDef: {
|
|
|
12
12
|
body: {};
|
|
13
13
|
footer: {};
|
|
14
14
|
};
|
|
15
|
-
exports?: {} | undefined;
|
|
16
|
-
bindings?: string | undefined;
|
|
17
15
|
};
|
|
18
16
|
export type EmptyStateProps = typeof __propDef.props;
|
|
19
17
|
export type EmptyStateEvents = typeof __propDef.events;
|
|
20
18
|
export type EmptyStateSlots = typeof __propDef.slots;
|
|
21
|
-
export default class EmptyState extends
|
|
19
|
+
export default class EmptyState extends SvelteComponentTyped<EmptyStateProps, EmptyStateEvents, EmptyStateSlots> {
|
|
22
20
|
}
|
|
23
21
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
isSticky?: boolean;
|
|
@@ -15,12 +15,10 @@ declare const __propDef: {
|
|
|
15
15
|
default: {};
|
|
16
16
|
logoright: {};
|
|
17
17
|
};
|
|
18
|
-
exports?: {} | undefined;
|
|
19
|
-
bindings?: string | undefined;
|
|
20
18
|
};
|
|
21
19
|
export type HeaderProps = typeof __propDef.props;
|
|
22
20
|
export type HeaderEvents = typeof __propDef.events;
|
|
23
21
|
export type HeaderSlots = typeof __propDef.slots;
|
|
24
|
-
export default class Header extends
|
|
22
|
+
export default class Header extends SvelteComponentTyped<HeaderProps, HeaderEvents, HeaderSlots> {
|
|
25
23
|
}
|
|
26
24
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
css?: string;
|
|
@@ -9,12 +9,10 @@ declare const __propDef: {
|
|
|
9
9
|
slots: {
|
|
10
10
|
default: {};
|
|
11
11
|
};
|
|
12
|
-
exports?: {} | undefined;
|
|
13
|
-
bindings?: string | undefined;
|
|
14
12
|
};
|
|
15
13
|
export type HeaderNavProps = typeof __propDef.props;
|
|
16
14
|
export type HeaderNavEvents = typeof __propDef.events;
|
|
17
15
|
export type HeaderNavSlots = typeof __propDef.slots;
|
|
18
|
-
export default class HeaderNav extends
|
|
16
|
+
export default class HeaderNav extends SvelteComponentTyped<HeaderNavProps, HeaderNavEvents, HeaderNavSlots> {
|
|
19
17
|
}
|
|
20
18
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
css?: string;
|
|
@@ -9,12 +9,10 @@ declare const __propDef: {
|
|
|
9
9
|
slots: {
|
|
10
10
|
default: {};
|
|
11
11
|
};
|
|
12
|
-
exports?: {} | undefined;
|
|
13
|
-
bindings?: string | undefined;
|
|
14
12
|
};
|
|
15
13
|
export type HeaderNavItemProps = typeof __propDef.props;
|
|
16
14
|
export type HeaderNavItemEvents = typeof __propDef.events;
|
|
17
15
|
export type HeaderNavItemSlots = typeof __propDef.slots;
|
|
18
|
-
export default class HeaderNavItem extends
|
|
16
|
+
export default class HeaderNavItem extends SvelteComponentTyped<HeaderNavItemProps, HeaderNavItemEvents, HeaderNavItemSlots> {
|
|
19
17
|
}
|
|
20
18
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { IconSize, IconType } from './api';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -12,12 +12,10 @@ declare const __propDef: {
|
|
|
12
12
|
slots: {
|
|
13
13
|
default: {};
|
|
14
14
|
};
|
|
15
|
-
exports?: {} | undefined;
|
|
16
|
-
bindings?: string | undefined;
|
|
17
15
|
};
|
|
18
16
|
export type IconProps = typeof __propDef.props;
|
|
19
17
|
export type IconEvents = typeof __propDef.events;
|
|
20
18
|
export type IconSlots = typeof __propDef.slots;
|
|
21
|
-
export default class Icon extends
|
|
19
|
+
export default class Icon extends SvelteComponentTyped<IconProps, IconEvents, IconSlots> {
|
|
22
20
|
}
|
|
23
21
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
ariaLabel?: string;
|
|
@@ -9,12 +9,10 @@ declare const __propDef: {
|
|
|
9
9
|
[evt: string]: CustomEvent<any>;
|
|
10
10
|
};
|
|
11
11
|
slots: {};
|
|
12
|
-
exports?: {} | undefined;
|
|
13
|
-
bindings?: string | undefined;
|
|
14
12
|
};
|
|
15
13
|
export type LoaderProps = typeof __propDef.props;
|
|
16
14
|
export type LoaderEvents = typeof __propDef.events;
|
|
17
15
|
export type LoaderSlots = typeof __propDef.slots;
|
|
18
|
-
export default class Loader extends
|
|
16
|
+
export default class Loader extends SvelteComponentTyped<LoaderProps, LoaderEvents, LoaderSlots> {
|
|
19
17
|
}
|
|
20
18
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
value?: number;
|
|
@@ -9,12 +9,10 @@ declare const __propDef: {
|
|
|
9
9
|
[evt: string]: CustomEvent<any>;
|
|
10
10
|
};
|
|
11
11
|
slots: {};
|
|
12
|
-
exports?: {} | undefined;
|
|
13
|
-
bindings?: string | undefined;
|
|
14
12
|
};
|
|
15
13
|
export type ProgressProps = typeof __propDef.props;
|
|
16
14
|
export type ProgressEvents = typeof __propDef.events;
|
|
17
15
|
export type ProgressSlots = typeof __propDef.slots;
|
|
18
|
-
export default class Progress extends
|
|
16
|
+
export default class Progress extends SvelteComponentTyped<ProgressProps, ProgressEvents, ProgressSlots> {
|
|
19
17
|
}
|
|
20
18
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
ariaLabel?: string;
|
|
@@ -8,12 +8,10 @@ declare const __propDef: {
|
|
|
8
8
|
[evt: string]: CustomEvent<any>;
|
|
9
9
|
};
|
|
10
10
|
slots: {};
|
|
11
|
-
exports?: {} | undefined;
|
|
12
|
-
bindings?: string | undefined;
|
|
13
11
|
};
|
|
14
12
|
export type SpinnerProps = typeof __propDef.props;
|
|
15
13
|
export type SpinnerEvents = typeof __propDef.events;
|
|
16
14
|
export type SpinnerSlots = typeof __propDef.slots;
|
|
17
|
-
export default class Spinner extends
|
|
15
|
+
export default class Spinner extends SvelteComponentTyped<SpinnerProps, SpinnerEvents, SpinnerSlots> {
|
|
18
16
|
}
|
|
19
17
|
export {};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} SwitchProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} SwitchEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} SwitchSlots */
|
|
4
|
-
export default class Switch extends
|
|
4
|
+
export default class Switch extends SvelteComponentTyped<{
|
|
5
5
|
size?: string | undefined;
|
|
6
6
|
css?: string | undefined;
|
|
7
|
+
id?: string | undefined;
|
|
7
8
|
isDisabled?: boolean | undefined;
|
|
8
9
|
isBordered?: boolean | undefined;
|
|
9
|
-
id?: string | undefined;
|
|
10
10
|
label?: string | undefined;
|
|
11
11
|
labelPosition?: string | undefined;
|
|
12
12
|
isChecked?: boolean | undefined;
|
|
@@ -20,14 +20,14 @@ export default class Switch extends SvelteComponent<{
|
|
|
20
20
|
export type SwitchProps = typeof __propDef.props;
|
|
21
21
|
export type SwitchEvents = typeof __propDef.events;
|
|
22
22
|
export type SwitchSlots = typeof __propDef.slots;
|
|
23
|
-
import {
|
|
23
|
+
import { SvelteComponentTyped } from "svelte";
|
|
24
24
|
declare const __propDef: {
|
|
25
25
|
props: {
|
|
26
26
|
size?: string | undefined;
|
|
27
27
|
css?: string | undefined;
|
|
28
|
+
id?: string | undefined;
|
|
28
29
|
isDisabled?: boolean | undefined;
|
|
29
30
|
isBordered?: boolean | undefined;
|
|
30
|
-
id?: string | undefined;
|
|
31
31
|
label?: string | undefined;
|
|
32
32
|
labelPosition?: string | undefined;
|
|
33
33
|
isChecked?: boolean | undefined;
|
|
@@ -39,7 +39,5 @@ declare const __propDef: {
|
|
|
39
39
|
[evt: string]: CustomEvent<any>;
|
|
40
40
|
};
|
|
41
41
|
slots: {};
|
|
42
|
-
exports?: undefined;
|
|
43
|
-
bindings?: undefined;
|
|
44
42
|
};
|
|
45
43
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
headers?: any[] & {
|
|
@@ -25,12 +25,10 @@ declare const __propDef: {
|
|
|
25
25
|
[evt: string]: CustomEvent<any>;
|
|
26
26
|
};
|
|
27
27
|
slots: {};
|
|
28
|
-
exports?: {} | undefined;
|
|
29
|
-
bindings?: string | undefined;
|
|
30
28
|
};
|
|
31
29
|
export type TableProps = typeof __propDef.props;
|
|
32
30
|
export type TableEvents = typeof __propDef.events;
|
|
33
31
|
export type TableSlots = typeof __propDef.slots;
|
|
34
|
-
export default class Table extends
|
|
32
|
+
export default class Table extends SvelteComponentTyped<TableProps, TableEvents, TableSlots> {
|
|
35
33
|
}
|
|
36
34
|
export {};
|