@mythrantic/svelte-rich-text 0.2.8
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/README.md +289 -0
- package/dist/components/core/blockWrapper.svelte +88 -0
- package/dist/components/core/blockWrapper.svelte.d.ts +19 -0
- package/dist/components/core/editMode.svelte +95 -0
- package/dist/components/core/editMode.svelte.d.ts +16 -0
- package/dist/components/core/main.svelte +196 -0
- package/dist/components/core/main.svelte.d.ts +65 -0
- package/dist/components/core/toolBar.svelte +141 -0
- package/dist/components/core/toolBar.svelte.d.ts +16 -0
- package/dist/components/core/viewMode.svelte +28 -0
- package/dist/components/core/viewMode.svelte.d.ts +25 -0
- package/dist/components/editBlocks/code.svelte +68 -0
- package/dist/components/editBlocks/code.svelte.d.ts +24 -0
- package/dist/components/editBlocks/header.svelte +66 -0
- package/dist/components/editBlocks/header.svelte.d.ts +23 -0
- package/dist/components/editBlocks/img.svelte +47 -0
- package/dist/components/editBlocks/img.svelte.d.ts +24 -0
- package/dist/components/editBlocks/list.svelte +102 -0
- package/dist/components/editBlocks/list.svelte.d.ts +23 -0
- package/dist/components/editBlocks/paragraph.svelte +22 -0
- package/dist/components/editBlocks/paragraph.svelte.d.ts +26 -0
- package/dist/components/editBlocks/quote.svelte +57 -0
- package/dist/components/editBlocks/quote.svelte.d.ts +23 -0
- package/dist/components/editBlocks/space.svelte +24 -0
- package/dist/components/editBlocks/space.svelte.d.ts +22 -0
- package/dist/components/extra/dropDown.svelte +117 -0
- package/dist/components/extra/dropDown.svelte.d.ts +23 -0
- package/dist/components/extra/input.svelte +63 -0
- package/dist/components/extra/input.svelte.d.ts +21 -0
- package/dist/components/extra/select.svelte +50 -0
- package/dist/components/extra/select.svelte.d.ts +30 -0
- package/dist/components/extra/textarea.svelte +40 -0
- package/dist/components/extra/textarea.svelte.d.ts +21 -0
- package/dist/components/extra/upload.svelte +79 -0
- package/dist/components/extra/upload.svelte.d.ts +21 -0
- package/dist/components/icons/closeIcon.svelte +6 -0
- package/dist/components/icons/closeIcon.svelte.d.ts +25 -0
- package/dist/components/icons/closeQuoteIcon.svelte +9 -0
- package/dist/components/icons/closeQuoteIcon.svelte.d.ts +25 -0
- package/dist/components/icons/codeIcon.svelte +12 -0
- package/dist/components/icons/codeIcon.svelte.d.ts +25 -0
- package/dist/components/icons/copyIcon.svelte +12 -0
- package/dist/components/icons/copyIcon.svelte.d.ts +25 -0
- package/dist/components/icons/deleteIcon.svelte +12 -0
- package/dist/components/icons/deleteIcon.svelte.d.ts +25 -0
- package/dist/components/icons/doneIcon.svelte +17 -0
- package/dist/components/icons/doneIcon.svelte.d.ts +25 -0
- package/dist/components/icons/downIcon.svelte +12 -0
- package/dist/components/icons/downIcon.svelte.d.ts +25 -0
- package/dist/components/icons/headerIcon.svelte +12 -0
- package/dist/components/icons/headerIcon.svelte.d.ts +25 -0
- package/dist/components/icons/imageIcon.svelte +12 -0
- package/dist/components/icons/imageIcon.svelte.d.ts +25 -0
- package/dist/components/icons/listIcon.svelte +12 -0
- package/dist/components/icons/listIcon.svelte.d.ts +25 -0
- package/dist/components/icons/menuIcon.svelte +12 -0
- package/dist/components/icons/menuIcon.svelte.d.ts +25 -0
- package/dist/components/icons/openQuoteIcon.svelte +9 -0
- package/dist/components/icons/openQuoteIcon.svelte.d.ts +25 -0
- package/dist/components/icons/paragraphIcon.svelte +12 -0
- package/dist/components/icons/paragraphIcon.svelte.d.ts +25 -0
- package/dist/components/icons/plusIcon.svelte +3 -0
- package/dist/components/icons/plusIcon.svelte.d.ts +25 -0
- package/dist/components/icons/spaceIcon.svelte +9 -0
- package/dist/components/icons/spaceIcon.svelte.d.ts +25 -0
- package/dist/components/icons/upIcon.svelte +12 -0
- package/dist/components/icons/upIcon.svelte.d.ts +25 -0
- package/dist/components/icons/uploadIcon.svelte +9 -0
- package/dist/components/icons/uploadIcon.svelte.d.ts +25 -0
- package/dist/components/viewBlocks/viewCode.svelte +150 -0
- package/dist/components/viewBlocks/viewCode.svelte.d.ts +20 -0
- package/dist/components/viewBlocks/viewHeader.svelte +13 -0
- package/dist/components/viewBlocks/viewHeader.svelte.d.ts +19 -0
- package/dist/components/viewBlocks/viewImage.svelte +35 -0
- package/dist/components/viewBlocks/viewImage.svelte.d.ts +20 -0
- package/dist/components/viewBlocks/viewList.svelte +69 -0
- package/dist/components/viewBlocks/viewList.svelte.d.ts +19 -0
- package/dist/components/viewBlocks/viewParagraph.svelte +12 -0
- package/dist/components/viewBlocks/viewParagraph.svelte.d.ts +18 -0
- package/dist/components/viewBlocks/viewQuote.svelte +29 -0
- package/dist/components/viewBlocks/viewQuote.svelte.d.ts +19 -0
- package/dist/components/viewBlocks/viewSpace.svelte +4 -0
- package/dist/components/viewBlocks/viewSpace.svelte.d.ts +18 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +13 -0
- package/dist/utils/consts.d.ts +96 -0
- package/dist/utils/consts.js +1 -0
- package/dist/utils/functions.d.ts +2 -0
- package/dist/utils/functions.js +12 -0
- package/dist/utils/stores.d.ts +6 -0
- package/dist/utils/stores.js +3 -0
- package/package.json +107 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} CloseQuoteIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} CloseQuoteIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} CloseQuoteIconSlots */
|
|
4
|
+
export default class CloseQuoteIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type CloseQuoteIconProps = typeof __propDef.props;
|
|
11
|
+
export type CloseQuoteIconEvents = typeof __propDef.events;
|
|
12
|
+
export type CloseQuoteIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
+
><path
|
|
3
|
+
fill="#000000"
|
|
4
|
+
d="M5 3h2v2H5v5a2 2 0 0 1-2 2a2 2 0 0 1 2 2v5h2v2H5c-1.07-.27-2-.9-2-2v-4a2 2 0 0 0-2-2H0v-2h1a2 2 0 0 0 2-2V5a2 2 0 0 1 2-2m14 0a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h1v2h-1a2 2 0 0 0-2 2v4a2 2 0 0 1-2 2h-2v-2h2v-5a2 2 0 0 1 2-2a2 2 0 0 1-2-2V5h-2V3h2m-7 12a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1m8 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1Z"
|
|
5
|
+
/></svg
|
|
6
|
+
>
|
|
7
|
+
|
|
8
|
+
<style>
|
|
9
|
+
svg path {
|
|
10
|
+
fill: var(--primaryColor);
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} CodeIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} CodeIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} CodeIconSlots */
|
|
4
|
+
export default class CodeIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type CodeIconProps = typeof __propDef.props;
|
|
11
|
+
export type CodeIconEvents = typeof __propDef.events;
|
|
12
|
+
export type CodeIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
+
><path
|
|
3
|
+
fill="currentColor"
|
|
4
|
+
d="M5.503 4.627L5.5 6.75v10.504a3.25 3.25 0 0 0 3.25 3.25h8.616a2.251 2.251 0 0 1-2.122 1.5H8.75A4.75 4.75 0 0 1 4 17.254V6.75c0-.98.627-1.815 1.503-2.123ZM17.75 2A2.25 2.25 0 0 1 20 4.25v13a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25v-13A2.25 2.25 0 0 1 8.75 2h9Z"
|
|
5
|
+
/></svg
|
|
6
|
+
>
|
|
7
|
+
|
|
8
|
+
<style>
|
|
9
|
+
svg path {
|
|
10
|
+
fill: var(--textColor);
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} CopyIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} CopyIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} CopyIconSlots */
|
|
4
|
+
export default class CopyIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type CopyIconProps = typeof __propDef.props;
|
|
11
|
+
export type CopyIconEvents = typeof __propDef.events;
|
|
12
|
+
export type CopyIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
+
><path
|
|
3
|
+
fill="currentColor"
|
|
4
|
+
d="m20.37 8.91l-1 1.73l-12.13-7l1-1.73l3.04 1.75l1.36-.37l4.33 2.5l.37 1.37l3.03 1.75M6 19V7h5.07L18 11v8a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2Z"
|
|
5
|
+
/></svg
|
|
6
|
+
>
|
|
7
|
+
|
|
8
|
+
<style>
|
|
9
|
+
svg path {
|
|
10
|
+
fill: var(---primaryColor);
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} DeleteIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} DeleteIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} DeleteIconSlots */
|
|
4
|
+
export default class DeleteIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type DeleteIconProps = typeof __propDef.props;
|
|
11
|
+
export type DeleteIconEvents = typeof __propDef.events;
|
|
12
|
+
export type DeleteIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
+
><g id="evaDoneAllOutline0"
|
|
3
|
+
><g id="evaDoneAllOutline1"
|
|
4
|
+
><g id="evaDoneAllOutline2" fill="currentColor"
|
|
5
|
+
><path
|
|
6
|
+
d="M16.62 6.21a1 1 0 0 0-1.41.17l-7 9l-3.43-4.18a1 1 0 1 0-1.56 1.25l4.17 5.18a1 1 0 0 0 .78.37a1 1 0 0 0 .83-.38l7.83-10a1 1 0 0 0-.21-1.41Zm5 0a1 1 0 0 0-1.41.17l-7 9l-.61-.75l-1.26 1.62l1.1 1.37a1 1 0 0 0 .78.37a1 1 0 0 0 .78-.38l7.83-10a1 1 0 0 0-.21-1.4Z"
|
|
7
|
+
/><path d="M8.71 13.06L10 11.44l-.2-.24a1 1 0 0 0-1.43-.2a1 1 0 0 0-.15 1.41Z" /></g
|
|
8
|
+
></g
|
|
9
|
+
></g
|
|
10
|
+
></svg
|
|
11
|
+
>
|
|
12
|
+
|
|
13
|
+
<style>
|
|
14
|
+
svg path {
|
|
15
|
+
fill: var(---textColor);
|
|
16
|
+
}
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} DoneIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} DoneIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} DoneIconSlots */
|
|
4
|
+
export default class DoneIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type DoneIconProps = typeof __propDef.props;
|
|
11
|
+
export type DoneIconEvents = typeof __propDef.events;
|
|
12
|
+
export type DoneIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
+
><path
|
|
3
|
+
fill="currentColor"
|
|
4
|
+
d="M10 4h4v9l3.5-3.5l2.42 2.42L12 19.84l-7.92-7.92L6.5 9.5L10 13V4Z"
|
|
5
|
+
/></svg
|
|
6
|
+
>
|
|
7
|
+
|
|
8
|
+
<style>
|
|
9
|
+
svg path {
|
|
10
|
+
fill: var(---primaryColor);
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} DownIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} DownIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} DownIconSlots */
|
|
4
|
+
export default class DownIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type DownIconProps = typeof __propDef.props;
|
|
11
|
+
export type DownIconEvents = typeof __propDef.events;
|
|
12
|
+
export type DownIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-8 -7 24 24"
|
|
2
|
+
><path
|
|
3
|
+
fill="#000000"
|
|
4
|
+
d="M2 4h4V1a1 1 0 1 1 2 0v8a1 1 0 1 1-2 0V6H2v3a1 1 0 1 1-2 0V1a1 1 0 1 1 2 0v3z"
|
|
5
|
+
/></svg
|
|
6
|
+
>
|
|
7
|
+
|
|
8
|
+
<style>
|
|
9
|
+
svg path {
|
|
10
|
+
fill: var(--primaryColor);
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} HeaderIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} HeaderIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} HeaderIconSlots */
|
|
4
|
+
export default class HeaderIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type HeaderIconProps = typeof __propDef.props;
|
|
11
|
+
export type HeaderIconEvents = typeof __propDef.events;
|
|
12
|
+
export type HeaderIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
+
><path
|
|
3
|
+
fill="#000000"
|
|
4
|
+
d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14L6 17h12l-3.86-5.14z"
|
|
5
|
+
/></svg
|
|
6
|
+
>
|
|
7
|
+
|
|
8
|
+
<style>
|
|
9
|
+
svg path {
|
|
10
|
+
fill: var(--primaryColor);
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} ImageIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} ImageIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} ImageIconSlots */
|
|
4
|
+
export default class ImageIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type ImageIconProps = typeof __propDef.props;
|
|
11
|
+
export type ImageIconEvents = typeof __propDef.events;
|
|
12
|
+
export type ImageIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
+
><path
|
|
3
|
+
fill="#000000"
|
|
4
|
+
d="M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z"
|
|
5
|
+
/></svg
|
|
6
|
+
>
|
|
7
|
+
|
|
8
|
+
<style>
|
|
9
|
+
svg path {
|
|
10
|
+
fill: var(--primaryColor);
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} ListIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} ListIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} ListIconSlots */
|
|
4
|
+
export default class ListIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type ListIconProps = typeof __propDef.props;
|
|
11
|
+
export type ListIconEvents = typeof __propDef.events;
|
|
12
|
+
export type ListIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-5 -7 24 24"
|
|
2
|
+
><path
|
|
3
|
+
fill="#000000"
|
|
4
|
+
d="M1 0h5a1 1 0 1 1 0 2H1a1 1 0 1 1 0-2zm7 8h5a1 1 0 0 1 0 2H8a1 1 0 1 1 0-2zM1 4h12a1 1 0 0 1 0 2H1a1 1 0 1 1 0-2z"
|
|
5
|
+
/></svg
|
|
6
|
+
>
|
|
7
|
+
|
|
8
|
+
<style>
|
|
9
|
+
svg path {
|
|
10
|
+
fill: var(---primaryColor);
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} MenuIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} MenuIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} MenuIconSlots */
|
|
4
|
+
export default class MenuIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type MenuIconProps = typeof __propDef.props;
|
|
11
|
+
export type MenuIconEvents = typeof __propDef.events;
|
|
12
|
+
export type MenuIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} OpenQuoteIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} OpenQuoteIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} OpenQuoteIconSlots */
|
|
4
|
+
export default class OpenQuoteIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type OpenQuoteIconProps = typeof __propDef.props;
|
|
11
|
+
export type OpenQuoteIconEvents = typeof __propDef.events;
|
|
12
|
+
export type OpenQuoteIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
+
><path
|
|
3
|
+
fill="#000000"
|
|
4
|
+
d="M9 16h2v4h2V6h2v14h2V6h3V4H9c-3.309 0-6 2.691-6 6s2.691 6 6 6zM9 6h2v8H9c-2.206 0-4-1.794-4-4s1.794-4 4-4z"
|
|
5
|
+
/></svg
|
|
6
|
+
>
|
|
7
|
+
|
|
8
|
+
<style>
|
|
9
|
+
svg path {
|
|
10
|
+
fill: var(--primaryColor);
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} ParagraphIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} ParagraphIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} ParagraphIconSlots */
|
|
4
|
+
export default class ParagraphIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type ParagraphIconProps = typeof __propDef.props;
|
|
11
|
+
export type ParagraphIconEvents = typeof __propDef.events;
|
|
12
|
+
export type ParagraphIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} PlusIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} PlusIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} PlusIconSlots */
|
|
4
|
+
export default class PlusIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type PlusIconProps = typeof __propDef.props;
|
|
11
|
+
export type PlusIconEvents = typeof __propDef.events;
|
|
12
|
+
export type PlusIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} SpaceIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} SpaceIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} SpaceIconSlots */
|
|
4
|
+
export default class SpaceIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type SpaceIconProps = typeof __propDef.props;
|
|
11
|
+
export type SpaceIconEvents = typeof __propDef.events;
|
|
12
|
+
export type SpaceIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
+
><path
|
|
3
|
+
fill="currentColor"
|
|
4
|
+
d="M14 20h-4v-9l-3.5 3.5l-2.42-2.42L12 4.16l7.92 7.92l-2.42 2.42L14 11v9Z"
|
|
5
|
+
/></svg
|
|
6
|
+
>
|
|
7
|
+
|
|
8
|
+
<style>
|
|
9
|
+
svg path {
|
|
10
|
+
fill: var(---primaryColor);
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} UpIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} UpIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} UpIconSlots */
|
|
4
|
+
export default class UpIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type UpIconProps = typeof __propDef.props;
|
|
11
|
+
export type UpIconEvents = typeof __propDef.events;
|
|
12
|
+
export type UpIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} UploadIconProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} UploadIconEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} UploadIconSlots */
|
|
4
|
+
export default class UploadIcon extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type UploadIconProps = typeof __propDef.props;
|
|
11
|
+
export type UploadIconEvents = typeof __propDef.events;
|
|
12
|
+
export type UploadIconSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
exports?: {};
|
|
23
|
+
bindings?: string;
|
|
24
|
+
};
|
|
25
|
+
export {};
|