@awenovations/aura 0.0.33 → 0.0.35

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.
Files changed (38) hide show
  1. package/dist/alert/alert.stories.svelte.d.ts +13 -20
  2. package/dist/alert/alert.svelte.d.ts +19 -30
  3. package/dist/button/button.stories.svelte.d.ts +13 -20
  4. package/dist/button/button.svelte.d.ts +25 -37
  5. package/dist/container/container.stories.svelte.d.ts +13 -20
  6. package/dist/container/container.svelte.d.ts +19 -30
  7. package/dist/dialog/dialog.stories.svelte.d.ts +13 -20
  8. package/dist/dialog/dialog.svelte.d.ts +20 -31
  9. package/dist/divider/divider.stories.svelte.d.ts +13 -20
  10. package/dist/divider/divider.svelte.d.ts +17 -28
  11. package/dist/dropdown/dropdown.stories.svelte.d.ts +13 -20
  12. package/dist/dropdown/dropdown.svelte.d.ts +31 -45
  13. package/dist/error-state/error-state.stories.svelte.d.ts +13 -20
  14. package/dist/error-state/error-state.svelte.d.ts +14 -18
  15. package/dist/float/float.svelte.d.ts +25 -36
  16. package/dist/form-item/form-item.svelte.d.ts +20 -31
  17. package/dist/icon/icon.stories.svelte.d.ts +13 -20
  18. package/dist/icon/icon.svelte.d.ts +19 -30
  19. package/dist/icons/meta.json +1 -1
  20. package/dist/link/link.stories.svelte.d.ts +13 -20
  21. package/dist/link/link.svelte.d.ts +20 -31
  22. package/dist/panel/panel.stories.svelte.d.ts +13 -20
  23. package/dist/panel/panel.svelte.d.ts +20 -31
  24. package/dist/progress/progress-ring.stories.svelte.d.ts +13 -20
  25. package/dist/progress/progress-ring.svelte.d.ts +14 -18
  26. package/dist/skeleton/skeleton.stories.svelte.d.ts +13 -20
  27. package/dist/skeleton/skeleton.svelte.d.ts +15 -19
  28. package/dist/text-field/text-field.stories.svelte.d.ts +13 -20
  29. package/dist/text-field/text-field.svelte +3 -0
  30. package/dist/text-field/text-field.svelte.d.ts +94 -110
  31. package/dist/toast/toast.stories.svelte.d.ts +13 -20
  32. package/dist/toast/toast.svelte.d.ts +12 -16
  33. package/dist/tokens/_variables.css +1 -1
  34. package/dist/tooltip/tooltip.stories.svelte.d.ts +13 -20
  35. package/dist/tooltip/tooltip.svelte.d.ts +19 -30
  36. package/dist/zero-state/zero-state.stories.svelte.d.ts +13 -20
  37. package/dist/zero-state/zero-state.svelte.d.ts +14 -18
  38. package/package.json +1 -4
@@ -1,10 +1,8 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import '../../app.scss';
2
- import Alert from './alert.svelte';
3
3
  export declare const meta: {
4
4
  title: string;
5
- component: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
6
- [evt: string]: CustomEvent<any>;
7
- }, {}, {}, string>;
5
+ component: typeof Alert;
8
6
  tags: string[];
9
7
  argTypes: {
10
8
  severity: {
@@ -13,21 +11,16 @@ export declare const meta: {
13
11
  };
14
12
  };
15
13
  };
16
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
17
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
18
- $$bindings?: Bindings;
19
- } & Exports;
20
- (internal: unknown, props: {
21
- $$events?: Events;
22
- $$slots?: Slots;
23
- }): Exports & {
24
- $set?: any;
25
- $on?: any;
14
+ declare const __propDef: {
15
+ props: Record<string, never>;
16
+ events: {
17
+ [evt: string]: CustomEvent<any>;
26
18
  };
27
- z_$$bindings?: Bindings;
19
+ slots: {};
20
+ };
21
+ export type AlertProps = typeof __propDef.props;
22
+ export type AlertEvents = typeof __propDef.events;
23
+ export type AlertSlots = typeof __propDef.slots;
24
+ export default class Alert extends SvelteComponentTyped<AlertProps, AlertEvents, AlertSlots> {
28
25
  }
29
- declare const Alert: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
30
- [evt: string]: CustomEvent<any>;
31
- }, {}, {}, string>;
32
- type Alert = InstanceType<typeof Alert>;
33
- export default Alert;
26
+ export {};
@@ -1,33 +1,22 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import type * as Props from './props';
2
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
3
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
4
- $$bindings?: Bindings;
5
- } & Exports;
6
- (internal: unknown, props: Props & {
7
- $$events?: Events;
8
- $$slots?: Slots;
9
- }): Exports & {
10
- $set?: any;
11
- $on?: any;
3
+ declare const __propDef: {
4
+ props: {
5
+ [x: string]: any;
6
+ severity?: Props.AlertSeverity;
7
+ hide?: boolean;
8
+ autoDismissTime: number;
12
9
  };
13
- z_$$bindings?: Bindings;
10
+ events: {
11
+ [evt: string]: CustomEvent<any>;
12
+ };
13
+ slots: {
14
+ default: {};
15
+ };
16
+ };
17
+ export type AlertProps = typeof __propDef.props;
18
+ export type AlertEvents = typeof __propDef.events;
19
+ export type AlertSlots = typeof __propDef.slots;
20
+ export default class Alert extends SvelteComponentTyped<AlertProps, AlertEvents, AlertSlots> {
14
21
  }
15
- type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
16
- default: any;
17
- } ? Props extends Record<string, never> ? any : {
18
- children?: any;
19
- } : {});
20
- declare const Alert: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
21
- [x: string]: any;
22
- severity?: Props.AlertSeverity;
23
- hide?: boolean;
24
- autoDismissTime: number;
25
- }, {
26
- default: {};
27
- }>, {
28
- [evt: string]: CustomEvent<any>;
29
- }, {
30
- default: {};
31
- }, {}, string>;
32
- type Alert = InstanceType<typeof Alert>;
33
- export default Alert;
22
+ export {};
@@ -1,10 +1,8 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import '../../app.scss';
2
- import Button from './button.svelte';
3
3
  export declare const meta: {
4
4
  title: string;
5
- component: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
6
- [evt: string]: CustomEvent<any>;
7
- }, {}, {}, string>;
5
+ component: typeof Button;
8
6
  tags: string[];
9
7
  argTypes: {
10
8
  kind: {
@@ -24,21 +22,16 @@ export declare const meta: {
24
22
  };
25
23
  };
26
24
  };
27
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
28
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
29
- $$bindings?: Bindings;
30
- } & Exports;
31
- (internal: unknown, props: {
32
- $$events?: Events;
33
- $$slots?: Slots;
34
- }): Exports & {
35
- $set?: any;
36
- $on?: any;
25
+ declare const __propDef: {
26
+ props: Record<string, never>;
27
+ events: {
28
+ [evt: string]: CustomEvent<any>;
37
29
  };
38
- z_$$bindings?: Bindings;
30
+ slots: {};
31
+ };
32
+ export type ButtonProps = typeof __propDef.props;
33
+ export type ButtonEvents = typeof __propDef.events;
34
+ export type ButtonSlots = typeof __propDef.slots;
35
+ export default class Button extends SvelteComponentTyped<ButtonProps, ButtonEvents, ButtonSlots> {
39
36
  }
40
- declare const Button: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
41
- [evt: string]: CustomEvent<any>;
42
- }, {}, {}, string>;
43
- type Button = InstanceType<typeof Button>;
44
- export default Button;
37
+ export {};
@@ -1,40 +1,28 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import type * as Props from './props';
2
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
3
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
4
- $$bindings?: Bindings;
5
- } & Exports;
6
- (internal: unknown, props: Props & {
7
- $$events?: Events;
8
- $$slots?: Slots;
9
- }): Exports & {
10
- $set?: any;
11
- $on?: any;
3
+ declare const __propDef: {
4
+ props: {
5
+ [x: string]: any;
6
+ kind?: Props.ButtonKind;
7
+ variant?: any;
8
+ size?: any;
9
+ fullWidth?: boolean;
10
+ loading?: boolean;
11
+ left?: boolean;
12
12
  };
13
- z_$$bindings?: Bindings;
13
+ events: {
14
+ click: CustomEvent<{}>;
15
+ } & {
16
+ [evt: string]: CustomEvent<any>;
17
+ };
18
+ slots: {
19
+ 'icon-before': {};
20
+ default: {};
21
+ };
22
+ };
23
+ export type ButtonProps = typeof __propDef.props;
24
+ export type ButtonEvents = typeof __propDef.events;
25
+ export type ButtonSlots = typeof __propDef.slots;
26
+ export default class Button extends SvelteComponentTyped<ButtonProps, ButtonEvents, ButtonSlots> {
14
27
  }
15
- type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
16
- default: any;
17
- } ? Props extends Record<string, never> ? any : {
18
- children?: any;
19
- } : {});
20
- declare const Button: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
21
- [x: string]: any;
22
- kind?: Props.ButtonKind;
23
- variant?: any;
24
- size?: any;
25
- fullWidth?: boolean;
26
- loading?: boolean;
27
- left?: boolean;
28
- }, {
29
- 'icon-before': {};
30
- default: {};
31
- }>, {
32
- click: CustomEvent<{}>;
33
- } & {
34
- [evt: string]: CustomEvent<any>;
35
- }, {
36
- 'icon-before': {};
37
- default: {};
38
- }, {}, string>;
39
- type Button = InstanceType<typeof Button>;
40
- export default Button;
28
+ export {};
@@ -1,10 +1,8 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import '../../app.scss';
2
- import Container from './container.svelte';
3
3
  export declare const meta: {
4
4
  title: string;
5
- component: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
6
- [evt: string]: CustomEvent<any>;
7
- }, {}, {}, string>;
5
+ component: typeof Container;
8
6
  tags: string[];
9
7
  argTypes: {
10
8
  kind: {
@@ -17,21 +15,16 @@ export declare const meta: {
17
15
  };
18
16
  };
19
17
  };
20
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
21
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
22
- $$bindings?: Bindings;
23
- } & Exports;
24
- (internal: unknown, props: {
25
- $$events?: Events;
26
- $$slots?: Slots;
27
- }): Exports & {
28
- $set?: any;
29
- $on?: any;
18
+ declare const __propDef: {
19
+ props: Record<string, never>;
20
+ events: {
21
+ [evt: string]: CustomEvent<any>;
30
22
  };
31
- z_$$bindings?: Bindings;
23
+ slots: {};
24
+ };
25
+ export type ContainerProps = typeof __propDef.props;
26
+ export type ContainerEvents = typeof __propDef.events;
27
+ export type ContainerSlots = typeof __propDef.slots;
28
+ export default class Container extends SvelteComponentTyped<ContainerProps, ContainerEvents, ContainerSlots> {
32
29
  }
33
- declare const Container: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
34
- [evt: string]: CustomEvent<any>;
35
- }, {}, {}, string>;
36
- type Container = InstanceType<typeof Container>;
37
- export default Container;
30
+ export {};
@@ -1,33 +1,22 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import type * as Props from './props';
2
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
3
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
4
- $$bindings?: Bindings;
5
- } & Exports;
6
- (internal: unknown, props: Props & {
7
- $$events?: Events;
8
- $$slots?: Slots;
9
- }): Exports & {
10
- $set?: any;
11
- $on?: any;
3
+ declare const __propDef: {
4
+ props: {
5
+ [x: string]: any;
6
+ clearPadding?: boolean;
7
+ kind?: Props.ContainerKind;
8
+ variant?: Props.ContainerVariants;
12
9
  };
13
- z_$$bindings?: Bindings;
10
+ events: {
11
+ [evt: string]: CustomEvent<any>;
12
+ };
13
+ slots: {
14
+ default: {};
15
+ };
16
+ };
17
+ export type ContainerProps = typeof __propDef.props;
18
+ export type ContainerEvents = typeof __propDef.events;
19
+ export type ContainerSlots = typeof __propDef.slots;
20
+ export default class Container extends SvelteComponentTyped<ContainerProps, ContainerEvents, ContainerSlots> {
14
21
  }
15
- type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
16
- default: any;
17
- } ? Props extends Record<string, never> ? any : {
18
- children?: any;
19
- } : {});
20
- declare const Container: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
21
- [x: string]: any;
22
- clearPadding?: boolean;
23
- kind?: Props.ContainerKind;
24
- variant?: Props.ContainerVariants;
25
- }, {
26
- default: {};
27
- }>, {
28
- [evt: string]: CustomEvent<any>;
29
- }, {
30
- default: {};
31
- }, {}, string>;
32
- type Container = InstanceType<typeof Container>;
33
- export default Container;
22
+ export {};
@@ -1,27 +1,20 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import '../../app.scss';
2
- import Dialog from './dialog.svelte';
3
3
  export declare const meta: {
4
4
  title: string;
5
- component: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
6
- [evt: string]: CustomEvent<any>;
7
- }, {}, {}, string>;
5
+ component: typeof Dialog;
8
6
  tags: string[];
9
7
  };
10
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
11
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
12
- $$bindings?: Bindings;
13
- } & Exports;
14
- (internal: unknown, props: {
15
- $$events?: Events;
16
- $$slots?: Slots;
17
- }): Exports & {
18
- $set?: any;
19
- $on?: any;
8
+ declare const __propDef: {
9
+ props: Record<string, never>;
10
+ events: {
11
+ [evt: string]: CustomEvent<any>;
20
12
  };
21
- z_$$bindings?: Bindings;
13
+ slots: {};
14
+ };
15
+ export type DialogProps = typeof __propDef.props;
16
+ export type DialogEvents = typeof __propDef.events;
17
+ export type DialogSlots = typeof __propDef.slots;
18
+ export default class Dialog extends SvelteComponentTyped<DialogProps, DialogEvents, DialogSlots> {
22
19
  }
23
- declare const Dialog: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
24
- [evt: string]: CustomEvent<any>;
25
- }, {}, {}, string>;
26
- type Dialog = InstanceType<typeof Dialog>;
27
- export default Dialog;
20
+ export {};
@@ -1,33 +1,22 @@
1
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
2
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
3
- $$bindings?: Bindings;
4
- } & Exports;
5
- (internal: unknown, props: Props & {
6
- $$events?: Events;
7
- $$slots?: Slots;
8
- }): Exports & {
9
- $set?: any;
10
- $on?: any;
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ [x: string]: any;
5
+ cancelText?: string;
6
+ confirmText?: string;
7
+ onConfirm?: () => void;
8
+ onCancel?: () => void;
11
9
  };
12
- z_$$bindings?: Bindings;
10
+ events: {
11
+ [evt: string]: CustomEvent<any>;
12
+ };
13
+ slots: {
14
+ default: {};
15
+ };
16
+ };
17
+ export type DialogProps = typeof __propDef.props;
18
+ export type DialogEvents = typeof __propDef.events;
19
+ export type DialogSlots = typeof __propDef.slots;
20
+ export default class Dialog extends SvelteComponentTyped<DialogProps, DialogEvents, DialogSlots> {
13
21
  }
14
- type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
15
- default: any;
16
- } ? Props extends Record<string, never> ? any : {
17
- children?: any;
18
- } : {});
19
- declare const Dialog: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
20
- [x: string]: any;
21
- cancelText?: string;
22
- confirmText?: string;
23
- onConfirm?: () => void;
24
- onCancel?: () => void;
25
- }, {
26
- default: {};
27
- }>, {
28
- [evt: string]: CustomEvent<any>;
29
- }, {
30
- default: {};
31
- }, {}, string>;
32
- type Dialog = InstanceType<typeof Dialog>;
33
- export default Dialog;
22
+ export {};
@@ -1,10 +1,8 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import '../../app.scss';
2
- import Divider from './divider.svelte';
3
3
  export declare const meta: {
4
4
  title: string;
5
- component: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
6
- [evt: string]: CustomEvent<any>;
7
- }, {}, {}, string>;
5
+ component: typeof Divider;
8
6
  tags: string[];
9
7
  argTypes: {
10
8
  direction: {
@@ -13,21 +11,16 @@ export declare const meta: {
13
11
  };
14
12
  };
15
13
  };
16
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
17
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
18
- $$bindings?: Bindings;
19
- } & Exports;
20
- (internal: unknown, props: {
21
- $$events?: Events;
22
- $$slots?: Slots;
23
- }): Exports & {
24
- $set?: any;
25
- $on?: any;
14
+ declare const __propDef: {
15
+ props: Record<string, never>;
16
+ events: {
17
+ [evt: string]: CustomEvent<any>;
26
18
  };
27
- z_$$bindings?: Bindings;
19
+ slots: {};
20
+ };
21
+ export type DividerProps = typeof __propDef.props;
22
+ export type DividerEvents = typeof __propDef.events;
23
+ export type DividerSlots = typeof __propDef.slots;
24
+ export default class Divider extends SvelteComponentTyped<DividerProps, DividerEvents, DividerSlots> {
28
25
  }
29
- declare const Divider: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
30
- [evt: string]: CustomEvent<any>;
31
- }, {}, {}, string>;
32
- type Divider = InstanceType<typeof Divider>;
33
- export default Divider;
26
+ export {};
@@ -1,31 +1,20 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import type * as Props from './props';
2
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
3
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
4
- $$bindings?: Bindings;
5
- } & Exports;
6
- (internal: unknown, props: Props & {
7
- $$events?: Events;
8
- $$slots?: Slots;
9
- }): Exports & {
10
- $set?: any;
11
- $on?: any;
3
+ declare const __propDef: {
4
+ props: {
5
+ [x: string]: any;
6
+ direction?: Props.DividerDirection;
12
7
  };
13
- z_$$bindings?: Bindings;
8
+ events: {
9
+ [evt: string]: CustomEvent<any>;
10
+ };
11
+ slots: {
12
+ default: {};
13
+ };
14
+ };
15
+ export type DividerProps = typeof __propDef.props;
16
+ export type DividerEvents = typeof __propDef.events;
17
+ export type DividerSlots = typeof __propDef.slots;
18
+ export default class Divider extends SvelteComponentTyped<DividerProps, DividerEvents, DividerSlots> {
14
19
  }
15
- type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
16
- default: any;
17
- } ? Props extends Record<string, never> ? any : {
18
- children?: any;
19
- } : {});
20
- declare const Divider: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
21
- [x: string]: any;
22
- direction?: Props.DividerDirection;
23
- }, {
24
- default: {};
25
- }>, {
26
- [evt: string]: CustomEvent<any>;
27
- }, {
28
- default: {};
29
- }, {}, string>;
30
- type Divider = InstanceType<typeof Divider>;
31
- export default Divider;
20
+ export {};
@@ -1,28 +1,21 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import '../../app.scss';
2
- import Dropdown from './dropdown.svelte';
3
3
  export declare const meta: {
4
4
  title: string;
5
- component: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
6
- [evt: string]: CustomEvent<any>;
7
- }, {}, {}, string>;
5
+ component: typeof Dropdown;
8
6
  tags: string[];
9
7
  argTypes: {};
10
8
  };
11
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
12
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
13
- $$bindings?: Bindings;
14
- } & Exports;
15
- (internal: unknown, props: {
16
- $$events?: Events;
17
- $$slots?: Slots;
18
- }): Exports & {
19
- $set?: any;
20
- $on?: any;
9
+ declare const __propDef: {
10
+ props: Record<string, never>;
11
+ events: {
12
+ [evt: string]: CustomEvent<any>;
21
13
  };
22
- z_$$bindings?: Bindings;
14
+ slots: {};
15
+ };
16
+ export type DropdownProps = typeof __propDef.props;
17
+ export type DropdownEvents = typeof __propDef.events;
18
+ export type DropdownSlots = typeof __propDef.slots;
19
+ export default class Dropdown extends SvelteComponentTyped<DropdownProps, DropdownEvents, DropdownSlots> {
23
20
  }
24
- declare const Dropdown: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
25
- [evt: string]: CustomEvent<any>;
26
- }, {}, {}, string>;
27
- type Dropdown = InstanceType<typeof Dropdown>;
28
- export default Dropdown;
21
+ export {};
@@ -1,47 +1,33 @@
1
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
2
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
3
- $$bindings?: Bindings;
4
- } & Exports;
5
- (internal: unknown, props: Props & {
6
- $$events?: Events;
7
- $$slots?: Slots;
8
- }): Exports & {
9
- $set?: any;
10
- $on?: any;
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ [x: string]: any;
5
+ id?: string;
6
+ isOpen?: boolean;
7
+ required?: boolean;
8
+ isFocused?: boolean;
9
+ showErrors?: boolean;
10
+ name: string | undefined;
11
+ fullWidth?: boolean;
12
+ currentValue: string | undefined;
11
13
  };
12
- z_$$bindings?: Bindings;
14
+ events: {
15
+ change: CustomEvent<{
16
+ value: string | undefined;
17
+ }>;
18
+ } & {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {
22
+ label: {};
23
+ placeholder: {};
24
+ default: {};
25
+ errors: {};
26
+ };
27
+ };
28
+ export type DropdownProps = typeof __propDef.props;
29
+ export type DropdownEvents = typeof __propDef.events;
30
+ export type DropdownSlots = typeof __propDef.slots;
31
+ export default class Dropdown extends SvelteComponentTyped<DropdownProps, DropdownEvents, DropdownSlots> {
13
32
  }
14
- type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
15
- default: any;
16
- } ? Props extends Record<string, never> ? any : {
17
- children?: any;
18
- } : {});
19
- declare const Dropdown: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
20
- [x: string]: any;
21
- id?: string;
22
- isOpen?: boolean;
23
- required?: boolean;
24
- isFocused?: boolean;
25
- showErrors?: boolean;
26
- name: string | undefined;
27
- fullWidth?: boolean;
28
- currentValue: string | undefined;
29
- }, {
30
- label: {};
31
- placeholder: {};
32
- default: {};
33
- errors: {};
34
- }>, {
35
- change: CustomEvent<{
36
- value: string | undefined;
37
- }>;
38
- } & {
39
- [evt: string]: CustomEvent<any>;
40
- }, {
41
- label: {};
42
- placeholder: {};
43
- default: {};
44
- errors: {};
45
- }, {}, string>;
46
- type Dropdown = InstanceType<typeof Dropdown>;
47
- export default Dropdown;
33
+ export {};
@@ -1,28 +1,21 @@
1
+ import { SvelteComponentTyped } from "svelte";
1
2
  import '../../app.scss';
2
- import ErrorState from './error-state.svelte';
3
3
  export declare const meta: {
4
4
  title: string;
5
- component: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
6
- [evt: string]: CustomEvent<any>;
7
- }, {}, {}, string>;
5
+ component: typeof ErrorState;
8
6
  tags: string[];
9
7
  argTypes: {};
10
8
  };
11
- interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
12
- new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
13
- $$bindings?: Bindings;
14
- } & Exports;
15
- (internal: unknown, props: {
16
- $$events?: Events;
17
- $$slots?: Slots;
18
- }): Exports & {
19
- $set?: any;
20
- $on?: any;
9
+ declare const __propDef: {
10
+ props: Record<string, never>;
11
+ events: {
12
+ [evt: string]: CustomEvent<any>;
21
13
  };
22
- z_$$bindings?: Bindings;
14
+ slots: {};
15
+ };
16
+ export type ErrorStateProps = typeof __propDef.props;
17
+ export type ErrorStateEvents = typeof __propDef.events;
18
+ export type ErrorStateSlots = typeof __propDef.slots;
19
+ export default class ErrorState extends SvelteComponentTyped<ErrorStateProps, ErrorStateEvents, ErrorStateSlots> {
23
20
  }
24
- declare const ErrorState: $$__sveltets_2_IsomorphicComponent<Record<string, never>, {
25
- [evt: string]: CustomEvent<any>;
26
- }, {}, {}, string>;
27
- type ErrorState = InstanceType<typeof ErrorState>;
28
- export default ErrorState;
21
+ export {};