lutra 0.1.0 → 0.1.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/Avatar.svelte +105 -0
- package/dist/components/Avatar.svelte.d.ts +14 -0
- package/dist/components/Close.svelte +76 -0
- package/dist/components/Close.svelte.d.ts +7 -0
- package/dist/components/ContextTip.svelte +41 -0
- package/dist/components/ContextTip.svelte.d.ts +7 -0
- package/dist/components/Icon.svelte +62 -0
- package/dist/components/Icon.svelte.d.ts +8 -0
- package/dist/components/IconButton.svelte +120 -0
- package/dist/components/IconButton.svelte.d.ts +16 -0
- package/dist/components/Image.svelte +172 -0
- package/dist/components/Image.svelte.d.ts +56 -0
- package/dist/components/Indicator.svelte +387 -0
- package/dist/components/Indicator.svelte.d.ts +12 -0
- package/dist/components/Inset.svelte +23 -0
- package/dist/components/Inset.svelte.d.ts +7 -0
- package/dist/components/Layout.svelte +2 -1
- package/dist/components/MenuDropdown.svelte +195 -0
- package/dist/components/MenuDropdown.svelte.d.ts +16 -0
- package/dist/components/MenuItem.svelte +159 -0
- package/dist/components/MenuItem.svelte.d.ts +11 -0
- package/dist/components/MenuItemContent.svelte +25 -0
- package/dist/components/MenuItemContent.svelte.d.ts +10 -0
- package/dist/components/MenuTypes.d.ts +79 -0
- package/dist/components/MenuTypes.js +1 -0
- package/dist/components/Modal.svelte +149 -0
- package/dist/components/Modal.svelte.d.ts +16 -0
- package/dist/components/Notification.svelte +115 -0
- package/dist/components/Notification.svelte.d.ts +12 -0
- package/dist/components/Overlay.svelte +31 -0
- package/dist/components/Overlay.svelte.d.ts +14 -0
- package/dist/components/OverlayContainer.svelte +31 -0
- package/dist/components/OverlayContainer.svelte.d.ts +18 -0
- package/dist/components/OverlayLayer.svelte +168 -0
- package/dist/components/OverlayLayer.svelte.d.ts +8 -0
- package/dist/components/PageContent.svelte +4 -82
- package/dist/components/PageContent.svelte.d.ts +0 -31
- package/dist/components/TabbedContent.svelte +74 -0
- package/dist/components/TabbedContent.svelte.d.ts +11 -0
- package/dist/components/TabbedContentItem.svelte +33 -0
- package/dist/components/TabbedContentItem.svelte.d.ts +10 -0
- package/dist/components/Table.svelte +41 -0
- package/dist/components/Table.svelte.d.ts +13 -0
- package/dist/components/Tabs.svelte +216 -0
- package/dist/components/Tabs.svelte.d.ts +20 -0
- package/dist/components/Tag.svelte +120 -0
- package/dist/components/Tag.svelte.d.ts +21 -0
- package/dist/components/Theme.svelte +32 -14
- package/dist/components/Tooltip.svelte +8 -8
- package/dist/components/UIContent.svelte +19 -0
- package/dist/components/UIContent.svelte.d.ts +7 -0
- package/dist/components/index.d.ts +28 -0
- package/dist/components/index.js +29 -0
- package/dist/components/notifications.svelte.d.ts +21 -0
- package/dist/components/notifications.svelte.js +30 -0
- package/dist/components/overlays.svelte.d.ts +36 -0
- package/dist/components/overlays.svelte.js +44 -0
- package/dist/css/1-props.css +389 -724
- package/dist/css/2-base.css +257 -123
- package/dist/css/3-typo.css +74 -34
- package/dist/css/4-layout.css +364 -1
- package/dist/css/5-media.css +106 -11
- package/dist/css/lutra.css +2 -1
- package/dist/css/themes/DefaultTheme.css +209 -0
- package/dist/form/Button.svelte +58 -0
- package/dist/form/Button.svelte.d.ts +15 -0
- package/dist/form/Datepicker.svelte +311 -0
- package/dist/form/Datepicker.svelte.d.ts +9 -0
- package/dist/form/FieldContent.svelte +178 -0
- package/dist/form/FieldContent.svelte.d.ts +21 -0
- package/dist/form/FieldError.svelte +24 -0
- package/dist/form/FieldError.svelte.d.ts +7 -0
- package/dist/form/Fieldset.svelte +103 -0
- package/dist/form/Fieldset.svelte.d.ts +20 -0
- package/dist/form/Form.svelte +220 -0
- package/dist/form/Form.svelte.d.ts +38 -0
- package/dist/form/FormActions.svelte +80 -0
- package/dist/form/FormActions.svelte.d.ts +9 -0
- package/dist/form/FormSection.svelte +96 -0
- package/dist/form/FormSection.svelte.d.ts +9 -0
- package/dist/form/ImageUpload.svelte +299 -0
- package/dist/form/ImageUpload.svelte.d.ts +20 -0
- package/dist/form/Input.svelte +444 -0
- package/dist/form/Input.svelte.d.ts +108 -0
- package/dist/form/InputLength.svelte +42 -0
- package/dist/form/InputLength.svelte.d.ts +9 -0
- package/dist/form/Label.svelte +88 -0
- package/dist/form/Label.svelte.d.ts +16 -0
- package/dist/form/LogoUpload.svelte +115 -0
- package/dist/form/LogoUpload.svelte.d.ts +18 -0
- package/dist/form/Select.svelte +186 -0
- package/dist/form/Select.svelte.d.ts +59 -0
- package/dist/form/Textarea.svelte +265 -0
- package/dist/form/Textarea.svelte.d.ts +95 -0
- package/dist/form/Toggle.svelte +4 -0
- package/dist/form/Toggle.svelte.d.ts +18 -0
- package/dist/form/client.svelte.d.ts +45 -0
- package/dist/form/client.svelte.js +102 -0
- package/dist/form/form.d.ts +55 -0
- package/dist/form/form.js +345 -0
- package/dist/form/index.d.ts +17 -0
- package/dist/form/index.js +17 -0
- package/dist/form/types.d.ts +55 -0
- package/dist/form/types.js +1 -0
- package/dist/icons/IconAlert.svelte +3 -0
- package/dist/icons/IconAlert.svelte.d.ts +26 -0
- package/dist/icons/IconCopy.svelte +3 -0
- package/dist/icons/IconCopy.svelte.d.ts +26 -0
- package/dist/icons/IconDone.svelte +3 -0
- package/dist/icons/IconDone.svelte.d.ts +26 -0
- package/dist/icons/IconError.svelte +3 -0
- package/dist/icons/IconError.svelte.d.ts +26 -0
- package/dist/icons/IconHelp.svelte +3 -0
- package/dist/icons/IconHelp.svelte.d.ts +26 -0
- package/dist/icons/IconHide.svelte +3 -0
- package/dist/icons/IconHide.svelte.d.ts +26 -0
- package/dist/icons/IconInfo.svelte +3 -0
- package/dist/icons/IconInfo.svelte.d.ts +26 -0
- package/dist/icons/IconLink.svelte +3 -0
- package/dist/icons/IconLink.svelte.d.ts +26 -0
- package/dist/icons/IconMenuBurger.svelte +3 -0
- package/dist/icons/IconMenuBurger.svelte.d.ts +26 -0
- package/dist/icons/IconMenuDots.svelte +3 -0
- package/dist/icons/IconMenuDots.svelte.d.ts +26 -0
- package/dist/icons/IconSearch.svelte +3 -0
- package/dist/icons/IconSearch.svelte.d.ts +26 -0
- package/dist/icons/IconShow.svelte +3 -0
- package/dist/icons/IconShow.svelte.d.ts +26 -0
- package/dist/icons/IconSuccess.svelte +3 -0
- package/dist/icons/IconSuccess.svelte.d.ts +26 -0
- package/dist/icons/IconWarning.svelte +3 -0
- package/dist/icons/IconWarning.svelte.d.ts +26 -0
- package/dist/icons/index.d.ts +14 -0
- package/dist/icons/index.js +14 -0
- package/dist/index.d.ts +3 -5
- package/dist/index.js +3 -5
- package/dist/util/StringOrComponent.svelte +20 -0
- package/dist/util/StringOrComponent.svelte.d.ts +8 -0
- package/dist/util/StringOrSnippet.svelte +16 -0
- package/dist/util/StringOrSnippet.svelte.d.ts +8 -0
- package/dist/util/attr.d.ts +5 -0
- package/dist/util/attr.js +21 -0
- package/dist/util/color.d.ts +51 -0
- package/dist/util/color.js +97 -0
- package/dist/util/dom.d.ts +15 -0
- package/dist/util/dom.js +73 -0
- package/dist/util/keyboard.svelte.d.ts +22 -0
- package/dist/util/keyboard.svelte.js +161 -0
- package/dist/util/locale.d.ts +1 -0
- package/dist/util/locale.js +47 -0
- package/dist/util/settings.d.ts +4 -0
- package/dist/util/settings.js +1 -0
- package/package.json +20 -11
- package/dist/css/0-layers.css +0 -1
@@ -0,0 +1,17 @@
|
|
1
|
+
export { default as Button } from './Button.svelte';
|
2
|
+
export { default as FormActions } from './FormActions.svelte';
|
3
|
+
export { default as FieldError } from './FieldError.svelte';
|
4
|
+
export { default as FormSection } from './FormSection.svelte';
|
5
|
+
export { default as Fieldset } from './Fieldset.svelte';
|
6
|
+
export { default as Form } from './Form.svelte';
|
7
|
+
export { default as ImageUpload } from './ImageUpload.svelte';
|
8
|
+
export { default as Input } from './Input.svelte';
|
9
|
+
export { default as InputLength } from './InputLength.svelte';
|
10
|
+
export { default as Label } from './Label.svelte';
|
11
|
+
export { default as LogoUpload } from './LogoUpload.svelte';
|
12
|
+
export { default as Select } from './Select.svelte';
|
13
|
+
export { default as Textarea } from './Textarea.svelte';
|
14
|
+
export { default as Toggle } from './Toggle.svelte';
|
15
|
+
export * from './types.js';
|
16
|
+
export * from './form.js';
|
17
|
+
export * from './client.svelte.js';
|
@@ -0,0 +1,17 @@
|
|
1
|
+
export { default as Button } from './Button.svelte';
|
2
|
+
export { default as FormActions } from './FormActions.svelte';
|
3
|
+
export { default as FieldError } from './FieldError.svelte';
|
4
|
+
export { default as FormSection } from './FormSection.svelte';
|
5
|
+
export { default as Fieldset } from './Fieldset.svelte';
|
6
|
+
export { default as Form } from './Form.svelte';
|
7
|
+
export { default as ImageUpload } from './ImageUpload.svelte';
|
8
|
+
export { default as Input } from './Input.svelte';
|
9
|
+
export { default as InputLength } from './InputLength.svelte';
|
10
|
+
export { default as Label } from './Label.svelte';
|
11
|
+
export { default as LogoUpload } from './LogoUpload.svelte';
|
12
|
+
export { default as Select } from './Select.svelte';
|
13
|
+
export { default as Textarea } from './Textarea.svelte';
|
14
|
+
export { default as Toggle } from './Toggle.svelte';
|
15
|
+
export * from './types.js';
|
16
|
+
export * from './form.js';
|
17
|
+
export * from './client.svelte.js';
|
@@ -0,0 +1,55 @@
|
|
1
|
+
import type { GenericIssue } from "@auth70/bodyguard";
|
2
|
+
import type { ZodTypes } from "zodex";
|
3
|
+
import type { infer as Infer } from "zod";
|
4
|
+
import type { FullAutoFill } from "svelte/elements";
|
5
|
+
export type Autocomplete = 'on' | 'off' | FullAutoFill;
|
6
|
+
export type BeforeSubmitFn = (opts: {
|
7
|
+
form: HTMLFormElement;
|
8
|
+
data: FormData;
|
9
|
+
cancel: () => void;
|
10
|
+
}) => void | Promise<void>;
|
11
|
+
export type AddBeforeSubmitFn = (id: string, fn: BeforeSubmitFn) => void;
|
12
|
+
export type FormIssue = Omit<GenericIssue, 'path'> & {
|
13
|
+
name: string;
|
14
|
+
path: PropertyKey[];
|
15
|
+
};
|
16
|
+
export type LutraForm<T extends ZodTypes> = {
|
17
|
+
/** The name of the form. */
|
18
|
+
name: string;
|
19
|
+
/** Whether the form is valid. */
|
20
|
+
valid: boolean;
|
21
|
+
/** Whether the user has interacted with the form. */
|
22
|
+
tainted?: boolean;
|
23
|
+
/** Whether the form has been posted. */
|
24
|
+
posted: boolean;
|
25
|
+
/** The schema to parse the form with. */
|
26
|
+
schema?: T;
|
27
|
+
/** The fields of the form. */
|
28
|
+
fields: Record<string, FormField>;
|
29
|
+
/** The data of the form. */
|
30
|
+
data?: Infer<T>;
|
31
|
+
/** Original data for form before editing */
|
32
|
+
originalData?: Infer<T>;
|
33
|
+
/** The issues of the form. */
|
34
|
+
issues?: FormIssue[];
|
35
|
+
/** The state of the form. */
|
36
|
+
state: 'idle' | 'loading' | 'success' | 'error';
|
37
|
+
/** The DOM form element. */
|
38
|
+
domForm?: HTMLFormElement | null;
|
39
|
+
};
|
40
|
+
export type FormField = {
|
41
|
+
name: string;
|
42
|
+
tainted: boolean;
|
43
|
+
coerce?: boolean;
|
44
|
+
min?: number;
|
45
|
+
max?: number;
|
46
|
+
minlength?: number;
|
47
|
+
maxlength?: number;
|
48
|
+
hasIssue?: boolean;
|
49
|
+
pattern?: string;
|
50
|
+
required: boolean;
|
51
|
+
defaultValue?: string | number | boolean;
|
52
|
+
isArray: boolean;
|
53
|
+
type: string;
|
54
|
+
children?: Record<string, FormField>;
|
55
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M7.999,1.063C7.419,1.063 6.84,1.339 6.51,1.889L0.232,12.38C-0.435,13.489 0.42,14.937 1.717,14.937L14.277,14.937C15.578,14.937 16.433,13.489 15.77,12.38L9.488,1.889C9.159,1.339 8.579,1.063 7.999,1.063ZM7.999,2.114C8.22,2.114 8.441,2.223 8.575,2.44L14.852,12.926C15.115,13.364 14.823,13.869 14.277,13.869L1.717,13.869C1.175,13.869 0.883,13.364 1.146,12.926L7.423,2.44C7.557,2.223 7.778,2.114 7.999,2.114ZM7.457,11.733L7.457,12.801L8.525,12.801L8.525,11.733L7.457,11.733ZM7.457,5.326L7.457,10.665L8.525,10.665L8.525,5.326L7.457,5.326Z" />
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconAlert;
|
2
|
+
type IconAlert = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconAlert: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M1.714,0.571C0.772,0.571 0,1.344 0,2.286L0,11.429C0,12.371 0.772,13.143 1.714,13.143L3.429,13.143L3.429,13.714C3.429,14.656 4.201,15.429 5.143,15.429L14.286,15.429C15.228,15.429 16,14.656 16,13.714L16,4.571C16,3.629 15.228,2.857 14.286,2.857L12.571,2.857L12.571,2.286C12.571,1.344 11.799,0.571 10.857,0.571L1.714,0.571ZM12.571,4L14.286,4C14.607,4 14.857,4.25 14.857,4.571L14.857,13.714C14.857,14.036 14.607,14.286 14.286,14.286L5.143,14.286C4.821,14.286 4.571,14.036 4.571,13.714L4.571,13.143L10.857,13.143C11.799,13.143 12.571,12.371 12.571,11.429L12.571,4ZM1.714,1.714L10.857,1.714C11.179,1.714 11.429,1.964 11.429,2.286L11.429,11.429C11.429,11.75 11.179,12 10.857,12L1.714,12C1.393,12 1.143,11.75 1.143,11.429L1.143,2.286C1.143,1.964 1.393,1.714 1.714,1.714Z" />
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconCopy;
|
2
|
+
type IconCopy = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconCopy: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconDone;
|
2
|
+
type IconDone = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconDone: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M8,0.004C7.721,0.004 7.446,0.108 7.234,0.316L0.316,7.234C-0.1,7.655 -0.1,8.346 0.316,8.767L7.234,15.684C7.655,16.105 8.346,16.105 8.767,15.684L15.684,8.767C16.101,8.35 16.101,7.655 15.684,7.234L8.767,0.316C8.555,0.108 8.28,0.004 8,0.004ZM8.009,1.071L14.93,7.992C14.938,8 14.938,8.005 14.93,8.013L8.009,14.93C8,14.938 7.996,14.938 7.988,14.93L1.075,8.013C1.062,8 1.058,8 1.071,7.992L7.988,1.075C8,1.062 8,1.058 8.009,1.071ZM7.467,10.667L7.467,11.734L8.534,11.734L8.534,10.667L7.467,10.667ZM7.467,4.267L7.467,9.601L8.534,9.601L8.534,4.267L7.467,4.267Z" />
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconError;
|
2
|
+
type IconError = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconError: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M8,0C3.591,0 0,3.591 0,8C0,12.409 3.591,16 8,16C12.409,16 16,12.409 16,8C16,3.591 12.409,0 8,0ZM8,1.231C11.745,1.231 14.769,4.255 14.769,8C14.769,11.745 11.745,14.769 8,14.769C4.255,14.769 1.231,11.745 1.231,8C1.231,4.255 4.255,1.231 8,1.231ZM7.385,11.077L7.385,12.308L8.615,12.308L8.615,11.077L7.385,11.077ZM8.072,3.692C6.582,3.779 5.365,5.029 5.365,6.548L6.596,6.548C6.596,5.548 7.462,4.764 8.519,4.947C9.274,5.077 9.87,5.817 9.846,6.596C9.827,7.279 9.428,7.712 8.841,7.971C8.476,8.135 8.13,8.288 7.837,8.596C7.543,8.904 7.385,9.361 7.385,9.846L8.615,9.846C8.615,9.567 8.654,9.524 8.731,9.442C8.803,9.365 9.005,9.245 9.337,9.096C10.255,8.697 11.043,7.817 11.077,6.635C11.12,5.236 10.115,3.971 8.726,3.731C8.505,3.697 8.284,3.683 8.072,3.692Z" />
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconHelp;
|
2
|
+
type IconHelp = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconHelp: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M1.773,1.015L1.015,1.773L3.496,4.258C1.095,5.585 0.147,7.657 0.093,7.783L0,7.998L0.093,8.213C0.173,8.402 2.177,12.85 7.998,12.85C8.196,12.85 8.373,12.824 8.562,12.816L8.571,12.816C9.678,12.753 10.643,12.546 11.464,12.226L14.218,14.985L14.985,14.218L12.509,11.746L11.772,11.009L11.704,10.946L9.455,8.689L7.307,6.541L5.378,4.616L4.528,3.769L1.773,1.015ZM4.999,5.757L6.549,7.316C6.452,7.522 6.381,7.749 6.381,7.998C6.381,8.891 7.105,9.615 7.998,9.615C8.246,9.615 8.474,9.544 8.68,9.447L10.238,10.997C9.611,11.472 8.844,11.772 7.998,11.772C5.917,11.772 4.224,10.078 4.224,7.998C4.224,7.151 4.523,6.385 4.999,5.757ZM4.081,5.176C3.5,5.972 3.146,6.941 3.146,7.998C3.146,9.059 3.5,10.036 4.081,10.832C2.346,9.902 1.474,8.529 1.188,7.998C1.474,7.467 2.354,6.111 4.081,5.176ZM7.998,3.146C7.4,3.146 6.857,3.205 6.339,3.289L7.341,4.292C7.556,4.254 7.77,4.224 7.998,4.224C10.078,4.224 11.772,5.917 11.772,7.998C11.772,8.225 11.742,8.44 11.704,8.655L12.58,9.531C12.74,9.047 12.85,8.537 12.85,7.998C12.85,6.937 12.496,5.959 11.915,5.159C13.65,6.094 14.522,7.467 14.808,7.998C14.598,8.39 14.058,9.249 13.094,10.045L13.86,10.811C15.267,9.611 15.861,8.314 15.903,8.213L16,7.998L15.903,7.783C15.823,7.594 13.818,3.146 7.998,3.146Z" />
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconHide;
|
2
|
+
type IconHide = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconHide: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M8,0C3.591,0 0,3.591 0,8C0,12.409 3.591,16 8,16C12.409,16 16,12.409 16,8C16,3.591 12.409,0 8,0ZM8,1.231C11.745,1.231 14.769,4.255 14.769,8C14.769,11.745 11.745,14.769 8,14.769C4.255,14.769 1.231,11.745 1.231,8C1.231,4.255 4.255,1.231 8,1.231ZM7.385,6.154L7.385,12.308L8.615,12.308L8.615,6.154L7.385,6.154ZM7.385,3.692L7.385,4.923L8.615,4.923L8.615,3.692L7.385,3.692Z" />
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconInfo;
|
2
|
+
type IconInfo = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconInfo: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M5.428,7.337C4.572,7.337 3.768,7.669 3.162,8.275L0.935,10.502C-0.316,11.753 -0.316,13.787 0.959,15.062C1.584,15.687 2.407,16 3.225,16C4.047,16 4.87,15.687 5.495,15.062L7.717,12.84C8.521,12.036 8.805,10.916 8.574,9.881L7.342,11.108C7.256,11.421 7.097,11.719 6.852,11.964L4.624,14.191C3.855,14.961 2.595,14.961 1.806,14.167C1.43,13.792 1.228,13.297 1.228,12.768C1.228,12.243 1.43,11.748 1.806,11.373L4.033,9.145C4.273,8.905 4.572,8.741 4.889,8.65L6.125,7.419C5.899,7.37 5.668,7.337 5.428,7.337ZM10.45,4.912C10.291,4.917 10.142,4.985 10.026,5.1L5.101,10.026C4.86,10.261 4.86,10.656 5.101,10.896C5.341,11.137 5.731,11.137 5.976,10.896L10.902,5.971C11.085,5.793 11.137,5.523 11.036,5.288C10.94,5.052 10.705,4.903 10.45,4.912ZM12.773,-0.008C11.917,-0.008 11.109,0.328 10.507,0.934L8.28,3.157C7.482,3.955 7.198,5.076 7.429,6.115L8.66,4.888C8.747,4.571 8.906,4.273 9.151,4.027L11.378,1.8C11.753,1.43 12.249,1.223 12.773,1.223C13.302,1.223 13.798,1.43 14.192,1.824C14.567,2.199 14.774,2.695 14.774,3.224C14.774,3.748 14.567,4.249 14.192,4.619L11.97,6.846C11.734,7.082 11.436,7.241 11.123,7.327L9.877,8.573C10.103,8.626 10.334,8.655 10.575,8.655C11.431,8.655 12.234,8.323 12.84,7.717L15.063,5.494C16.313,4.239 16.318,2.204 15.043,0.934C14.437,0.328 13.634,-0.008 12.773,-0.008Z" style="fill-rule:nonzero;"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconLink;
|
2
|
+
type IconLink = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconLink: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconMenuBurger;
|
2
|
+
type IconMenuBurger = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconMenuBurger: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M8,12.029C9.096,12.029 9.986,12.918 9.986,14.014C9.986,15.11 9.096,16 8,16C6.904,16 6.014,15.11 6.014,14.014C6.014,12.918 6.904,12.029 8,12.029ZM8,6.014C9.096,6.014 9.986,6.904 9.986,8C9.986,9.096 9.096,9.986 8,9.986C6.904,9.986 6.014,9.096 6.014,8C6.014,6.904 6.904,6.014 8,6.014ZM8,0C9.096,0 9.986,0.89 9.986,1.986C9.986,3.082 9.096,3.971 8,3.971C6.904,3.971 6.014,3.082 6.014,1.986C6.014,0.89 6.904,0 8,0Z"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconMenuDots;
|
2
|
+
type IconMenuDots = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconMenuDots: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M10.453,-0C7.395,-0 4.906,2.489 4.906,5.547C4.906,6.852 5.378,8.041 6.139,8.989L0.005,15.124L0.871,16L7.01,9.861C7.959,10.622 9.148,11.094 10.453,11.094C13.51,11.094 16,8.604 16,5.547C16,2.489 13.51,-0 10.453,-0ZM10.453,1.233C12.841,1.233 14.767,3.159 14.767,5.547C14.767,7.935 12.841,9.861 10.453,9.861C8.065,9.861 6.139,7.935 6.139,5.547C6.139,3.159 8.065,1.233 10.453,1.233Z" />
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconSearch;
|
2
|
+
type IconSearch = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconSearch: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M8.002,3.217C2.269,3.217 0.081,7.776 0.081,7.776L-0.027,8L0.081,8.224C0.081,8.224 2.269,12.783 8.002,12.783C13.736,12.783 15.924,8.224 15.924,8.224L16.027,8L15.924,7.776C15.924,7.776 13.736,3.217 8.002,3.217ZM8.002,4.28C10.061,4.28 11.722,5.941 11.722,8C11.722,10.059 10.061,11.72 8.002,11.72C5.943,11.72 4.282,10.059 4.282,8C4.282,5.941 5.943,4.28 8.002,4.28ZM4.22,5.106C3.601,5.912 3.219,6.908 3.219,8C3.219,9.092 3.601,10.088 4.22,10.894C2.181,9.881 1.351,8.27 1.218,8C1.351,7.73 2.181,6.119 4.22,5.106ZM11.784,5.106C13.823,6.119 14.653,7.73 14.786,8C14.653,8.27 13.823,9.881 11.784,10.894C12.403,10.088 12.785,9.092 12.785,8C12.785,6.908 12.403,5.912 11.784,5.106ZM8.002,6.406C7.122,6.406 6.408,7.12 6.408,8C6.408,8.88 7.122,9.594 8.002,9.594C8.882,9.594 9.596,8.88 9.596,8C9.596,7.12 8.882,6.406 8.002,6.406Z" />
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconShow;
|
2
|
+
type IconShow = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconShow: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M8,0C3.591,0 0,3.591 0,8C0,12.409 3.591,16 8,16C12.409,16 16,12.409 16,8C16,3.591 12.409,0 8,0ZM8,1.231C11.745,1.231 14.769,4.255 14.769,8C14.769,11.745 11.745,14.769 8,14.769C4.255,14.769 1.231,11.745 1.231,8C1.231,4.255 4.255,1.231 8,1.231ZM11.255,5.106L6.769,9.591L4.74,7.567L3.875,8.433L6.769,11.332L12.13,5.971L11.255,5.106Z" />
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconSuccess;
|
2
|
+
type IconSuccess = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconSuccess: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 16 16">
|
2
|
+
<path fill="currentColor" d="M7.999,1.063C7.419,1.063 6.84,1.339 6.51,1.889L0.232,12.38C-0.435,13.489 0.42,14.937 1.717,14.937L14.277,14.937C15.578,14.937 16.433,13.489 15.77,12.38L9.488,1.889C9.159,1.339 8.579,1.063 7.999,1.063ZM7.999,2.114C8.22,2.114 8.441,2.223 8.575,2.44L14.852,12.926C15.115,13.364 14.823,13.869 14.277,13.869L1.717,13.869C1.175,13.869 0.883,13.364 1.146,12.926L7.423,2.44C7.557,2.223 7.778,2.114 7.999,2.114ZM7.457,11.733L7.457,12.801L8.525,12.801L8.525,11.733L7.457,11.733ZM7.457,5.326L7.457,10.665L8.525,10.665L8.525,5.326L7.457,5.326Z" />
|
3
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export default IconWarning;
|
2
|
+
type IconWarning = SvelteComponent<{
|
3
|
+
[x: string]: never;
|
4
|
+
}, {
|
5
|
+
[evt: string]: CustomEvent<any>;
|
6
|
+
}, {}> & {
|
7
|
+
$$bindings?: string | undefined;
|
8
|
+
};
|
9
|
+
declare const IconWarning: $$__sveltets_2_IsomorphicComponent<{
|
10
|
+
[x: string]: never;
|
11
|
+
}, {
|
12
|
+
[evt: string]: CustomEvent<any>;
|
13
|
+
}, {}, {}, string>;
|
14
|
+
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> {
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
16
|
+
$$bindings?: Bindings;
|
17
|
+
} & Exports;
|
18
|
+
(internal: unknown, props: {
|
19
|
+
$$events?: Events;
|
20
|
+
$$slots?: Slots;
|
21
|
+
}): Exports & {
|
22
|
+
$set?: any;
|
23
|
+
$on?: any;
|
24
|
+
};
|
25
|
+
z_$$bindings?: Bindings;
|
26
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
export { default as IconAlert } from './IconAlert.svelte';
|
2
|
+
export { default as IconCopy } from './IconCopy.svelte';
|
3
|
+
export { default as IconDone } from './IconDone.svelte';
|
4
|
+
export { default as IconError } from './IconError.svelte';
|
5
|
+
export { default as IconHelp } from './IconHelp.svelte';
|
6
|
+
export { default as IconHide } from './IconHide.svelte';
|
7
|
+
export { default as IconInfo } from './IconInfo.svelte';
|
8
|
+
export { default as IconLink } from './IconLink.svelte';
|
9
|
+
export { default as IconMenuBurger } from './IconMenuBurger.svelte';
|
10
|
+
export { default as IconMenuDots } from './IconMenuDots.svelte';
|
11
|
+
export { default as IconSearch } from './IconSearch.svelte';
|
12
|
+
export { default as IconShow } from './IconShow.svelte';
|
13
|
+
export { default as IconSuccess } from './IconSuccess.svelte';
|
14
|
+
export { default as IconWarning } from './IconWarning.svelte';
|
@@ -0,0 +1,14 @@
|
|
1
|
+
export { default as IconAlert } from './IconAlert.svelte';
|
2
|
+
export { default as IconCopy } from './IconCopy.svelte';
|
3
|
+
export { default as IconDone } from './IconDone.svelte';
|
4
|
+
export { default as IconError } from './IconError.svelte';
|
5
|
+
export { default as IconHelp } from './IconHelp.svelte';
|
6
|
+
export { default as IconHide } from './IconHide.svelte';
|
7
|
+
export { default as IconInfo } from './IconInfo.svelte';
|
8
|
+
export { default as IconLink } from './IconLink.svelte';
|
9
|
+
export { default as IconMenuBurger } from './IconMenuBurger.svelte';
|
10
|
+
export { default as IconMenuDots } from './IconMenuDots.svelte';
|
11
|
+
export { default as IconSearch } from './IconSearch.svelte';
|
12
|
+
export { default as IconShow } from './IconShow.svelte';
|
13
|
+
export { default as IconSuccess } from './IconSuccess.svelte';
|
14
|
+
export { default as IconWarning } from './IconWarning.svelte';
|
package/dist/index.d.ts
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
export
|
2
|
-
export
|
3
|
-
export
|
4
|
-
export { default as Theme } from './components/Theme.svelte';
|
5
|
-
export { default as PageContent } from './components/PageContent.svelte';
|
1
|
+
export * from './components/index.js';
|
2
|
+
export * from './form/index.js';
|
3
|
+
export * from './icons/index.js';
|
package/dist/index.js
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
export
|
2
|
-
export
|
3
|
-
export
|
4
|
-
export { default as Theme } from './components/Theme.svelte';
|
5
|
-
export { default as PageContent } from './components/PageContent.svelte';
|
1
|
+
export * from './components/index.js';
|
2
|
+
export * from './form/index.js';
|
3
|
+
export * from './icons/index.js';
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<script lang="ts">
|
2
|
+
import type { Component } from "svelte";
|
3
|
+
let {
|
4
|
+
content,
|
5
|
+
props,
|
6
|
+
}: {
|
7
|
+
content: string | Component | undefined;
|
8
|
+
props?: Record<string, any>;
|
9
|
+
} = $props();
|
10
|
+
|
11
|
+
let Content = content as Component;
|
12
|
+
</script>
|
13
|
+
|
14
|
+
{#if content}
|
15
|
+
{#if typeof content === 'string'}
|
16
|
+
{content}
|
17
|
+
{:else if Content}
|
18
|
+
<Content {...props} />
|
19
|
+
{/if}
|
20
|
+
{/if}
|