@coyalabs/bts-style 1.3.3 → 1.3.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/Base/BaseContainer.svelte +9 -2
- package/dist/Base/BaseContainer.svelte.d.ts +1 -1
- package/dist/Base/{VariantTypes.d.ts → variantTypes.d.ts} +1 -0
- package/dist/Base/{VariantTypes.js → variantTypes.js} +1 -0
- package/dist/Components/Button.svelte +2 -2
- package/dist/Components/Button.svelte.d.ts +1 -1
- package/dist/Components/Dropdown.svelte +2 -2
- package/dist/Components/Dropdown.svelte.d.ts +1 -1
- package/dist/Components/InputBox.svelte +2 -2
- package/dist/Components/InputBox.svelte.d.ts +1 -1
- package/dist/Components/Popup/AlertPopup.svelte +1 -1
- package/dist/Components/Popup/ConfirmPopup.svelte +1 -1
- package/dist/Components/Popup/Popup.svelte +1 -1
- package/dist/Components/Popup/PromptPopup.svelte +1 -1
- package/dist/Components/Special/SpecialAction.svelte +1 -1
- package/dist/Components/Tooltip.svelte +1 -1
- package/dist/Components/TreeDirectory.svelte +2 -2
- package/dist/Components/TreeDirectory.svelte.d.ts +1 -1
- package/dist/Structure/BG/BGChain.svelte +1 -1
- package/dist/Structure/BG/BGDetails.svelte +1 -1
- package/dist/Structure/BG/BGGears.svelte +1 -1
- package/dist/icons.d.ts +1 -1
- package/dist/icons.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- /package/dist/Structure/BG/{AssetGear.d.ts → assetGear.d.ts} +0 -0
- /package/dist/Structure/BG/{AssetGear.js → assetGear.js} +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
import { VARIANT_FULL } from './
|
|
2
|
+
import { VARIANT_FULL } from './variantTypes.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
|
-
* @typedef {import('./
|
|
5
|
+
* @typedef {import('./variantTypes.js').BaseContainerVariant} BaseContainerVariant
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -72,6 +72,13 @@
|
|
|
72
72
|
inset 0px 0px 9px 2px rgba(102, 88, 128, 0.5);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
+
.glow-base-container[data-theme='vague'] {
|
|
76
|
+
background: #96848C25;
|
|
77
|
+
box-shadow:
|
|
78
|
+
0px 0px 13px 0px rgba(255, 255, 255, 0.07),
|
|
79
|
+
inset 0px 0px 9px 2px #66588048;
|
|
80
|
+
}
|
|
81
|
+
|
|
75
82
|
/* Theme D - Filled */
|
|
76
83
|
.glow-base-container[data-theme='filled'] {
|
|
77
84
|
background: #161319;
|
|
@@ -16,7 +16,7 @@ type BaseContainer = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
|
16
16
|
$$bindings?: string | undefined;
|
|
17
17
|
};
|
|
18
18
|
declare const BaseContainer: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
19
|
-
theme?: import("./
|
|
19
|
+
theme?: import("./variantTypes.js").BaseContainerVariant | undefined;
|
|
20
20
|
borderRadiusTopLeft?: string | undefined;
|
|
21
21
|
borderRadiusTopRight?: string | undefined;
|
|
22
22
|
borderRadiusBottomLeft?: string | undefined;
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
export const VARIANT_FULL: "full";
|
|
8
8
|
export const VARIANT_PRIMARY: "primary";
|
|
9
9
|
export const VARIANT_SECONDARY: "secondary";
|
|
10
|
+
export const VARIANT_VAGUE: "vague";
|
|
10
11
|
export const VARIANT_FILLED: "filled";
|
|
11
12
|
export const VARIANT_SPECIAL_FILLED: "special-filled";
|
|
12
13
|
export type BaseContainerVariant = "full" | "primary" | "secondary" | "filled" | "special-filled";
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
export const VARIANT_FULL = /** @type {const} */ ('full');
|
|
9
9
|
export const VARIANT_PRIMARY = /** @type {const} */ ('primary');
|
|
10
10
|
export const VARIANT_SECONDARY = /** @type {const} */ ('secondary');
|
|
11
|
+
export const VARIANT_VAGUE = /** @type {const} */ ('vague');
|
|
11
12
|
export const VARIANT_FILLED = /** @type {const} */ ('filled');
|
|
12
13
|
export const VARIANT_SPECIAL_FILLED = /** @type {const} */ ('special-filled');
|
|
13
14
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import BaseText from '../Base/BaseText.svelte';
|
|
4
4
|
import BaseIcon from '../Base/BaseIcon.svelte';
|
|
5
5
|
import { icons } from '../icons';
|
|
6
|
-
import { VARIANT_FULL } from '../Base/
|
|
6
|
+
import { VARIANT_FULL } from '../Base/variantTypes.js';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* @typedef {import('../Base/
|
|
9
|
+
* @typedef {import('../Base/variantTypes.js').BaseContainerVariant} BaseContainerVariant
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/**
|
|
@@ -24,7 +24,7 @@ type Button = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
|
24
24
|
$$bindings?: string | undefined;
|
|
25
25
|
};
|
|
26
26
|
declare const Button: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
27
|
-
theme?: import("../Base/
|
|
27
|
+
theme?: import("../Base/variantTypes.js").BaseContainerVariant | undefined;
|
|
28
28
|
borderRadiusTopLeft?: string | undefined;
|
|
29
29
|
borderRadiusTopRight?: string | undefined;
|
|
30
30
|
borderRadiusBottomLeft?: string | undefined;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import ContextMenu from './ContextMenu.svelte';
|
|
4
4
|
import { icons } from '../icons';
|
|
5
5
|
import { slide } from 'svelte/transition';
|
|
6
|
-
import { VARIANT_FULL } from '../Base/
|
|
6
|
+
import { VARIANT_FULL } from '../Base/variantTypes.js';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @type {string}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
export let icon = null;
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
* @typedef {import('../Base/
|
|
19
|
+
* @typedef {import('../Base/variantTypes.js').BaseContainerVariant} BaseContainerVariant
|
|
20
20
|
*/
|
|
21
21
|
|
|
22
22
|
/**
|
|
@@ -22,7 +22,7 @@ type Dropdown = SvelteComponent<{
|
|
|
22
22
|
$$bindings?: string | undefined;
|
|
23
23
|
};
|
|
24
24
|
declare const Dropdown: $$__sveltets_2_IsomorphicComponent<{
|
|
25
|
-
theme?: import("../Base/
|
|
25
|
+
theme?: import("../Base/variantTypes.js").BaseContainerVariant | undefined;
|
|
26
26
|
borderRadiusTopLeft?: string | undefined;
|
|
27
27
|
borderRadiusTopRight?: string | undefined;
|
|
28
28
|
borderRadiusBottomLeft?: string | undefined;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
import BaseContainer from '../Base/BaseContainer.svelte';
|
|
3
3
|
import BaseIcon from '../Base/BaseIcon.svelte';
|
|
4
4
|
import { icons } from '../icons.js';
|
|
5
|
-
import { VARIANT_SECONDARY } from '../Base/
|
|
5
|
+
import { VARIANT_SECONDARY } from '../Base/variantTypes.js';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
-
* @typedef {import('../Base/
|
|
8
|
+
* @typedef {import('../Base/variantTypes.js').BaseContainerVariant} BaseContainerVariant
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
/**
|
|
@@ -23,7 +23,7 @@ type InputBox = SvelteComponent<{
|
|
|
23
23
|
$$bindings?: string | undefined;
|
|
24
24
|
};
|
|
25
25
|
declare const InputBox: $$__sveltets_2_IsomorphicComponent<{
|
|
26
|
-
theme?: import("../Base/
|
|
26
|
+
theme?: import("../Base/variantTypes.js").BaseContainerVariant | undefined;
|
|
27
27
|
borderRadiusTopLeft?: string | undefined;
|
|
28
28
|
borderRadiusTopRight?: string | undefined;
|
|
29
29
|
borderRadiusBottomLeft?: string | undefined;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import Button from '../Button.svelte';
|
|
3
3
|
import { icons } from '../../icons.js';
|
|
4
4
|
import { popupStore } from '../popupStore.js';
|
|
5
|
-
import { VARIANT_PRIMARY } from '../../Base/
|
|
5
|
+
import { VARIANT_PRIMARY } from '../../Base/variantTypes.js';
|
|
6
6
|
|
|
7
7
|
/** @type {() => void} */
|
|
8
8
|
export let onOk = () => {};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { icons } from '../../icons.js';
|
|
3
3
|
import Button from '../Button.svelte';
|
|
4
4
|
import { popupStore } from '../popupStore.js';
|
|
5
|
-
import { VARIANT_PRIMARY, VARIANT_SECONDARY } from '../../Base/
|
|
5
|
+
import { VARIANT_PRIMARY, VARIANT_SECONDARY } from '../../Base/variantTypes.js';
|
|
6
6
|
|
|
7
7
|
/** @type {() => void} */
|
|
8
8
|
export let onConfirm = () => {};
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import IconButton from '../IconButton.svelte';
|
|
7
7
|
import TextHeader from '../../Structure/TextHeader.svelte';
|
|
8
8
|
import { icons } from '../../icons.js';
|
|
9
|
-
import { VARIANT_FILLED } from '../../Base/
|
|
9
|
+
import { VARIANT_FILLED } from '../../Base/variantTypes.js';
|
|
10
10
|
</script>
|
|
11
11
|
|
|
12
12
|
{#if $popupStore.isOpen}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import BaseText from '../../Base/BaseText.svelte';
|
|
5
5
|
import { icons } from '../../icons.js';
|
|
6
6
|
import { popupStore } from '../popupStore.js';
|
|
7
|
-
import { VARIANT_PRIMARY, VARIANT_SECONDARY } from '../../Base/
|
|
7
|
+
import { VARIANT_PRIMARY, VARIANT_SECONDARY } from '../../Base/variantTypes.js';
|
|
8
8
|
|
|
9
9
|
/** @type {(value: string) => void} */
|
|
10
10
|
export let onSubmit = () => {};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import Button from '../Button.svelte';
|
|
3
3
|
import Tooltip from '../Tooltip.svelte';
|
|
4
4
|
import { icons } from '../../icons.js';
|
|
5
|
-
import { VARIANT_SPECIAL_FILLED } from '../../Base/
|
|
5
|
+
import { VARIANT_SPECIAL_FILLED } from '../../Base/variantTypes.js';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* @type {string}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import BaseIcon from '../Base/BaseIcon.svelte';
|
|
4
4
|
import BaseText from '../Base/BaseText.svelte';
|
|
5
5
|
import { icons } from '../icons.js';
|
|
6
|
-
import { VARIANT_FILLED } from '../Base/
|
|
6
|
+
import { VARIANT_FILLED } from '../Base/variantTypes.js';
|
|
7
7
|
/**
|
|
8
8
|
* @type {string}
|
|
9
9
|
*/
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
import { createEventDispatcher, onMount } from 'svelte';
|
|
4
4
|
import Button from './Button.svelte';
|
|
5
5
|
import { icons } from '../icons.js';
|
|
6
|
-
import { VARIANT_PRIMARY, VARIANT_SECONDARY } from '../Base/
|
|
6
|
+
import { VARIANT_PRIMARY, VARIANT_SECONDARY } from '../Base/variantTypes.js';
|
|
7
7
|
|
|
8
8
|
const dispatch = createEventDispatcher();
|
|
9
9
|
|
|
10
|
-
/** @typedef {import('../Base/
|
|
10
|
+
/** @typedef {import('../Base/variantTypes.js').BaseContainerVariant} BaseContainerVariant */
|
|
11
11
|
|
|
12
12
|
/** @type {{ name: string, type: 'file' | 'folder', children?: any[], data?: any, variant?: BaseContainerVariant, suffixIcon?: string }[]} */
|
|
13
13
|
export let items = [];
|
|
@@ -38,7 +38,7 @@ declare const TreeDirectory: $$__sveltets_2_IsomorphicComponent<{
|
|
|
38
38
|
type: "file" | "folder";
|
|
39
39
|
children?: any[];
|
|
40
40
|
data?: any;
|
|
41
|
-
variant?: import("../Base/
|
|
41
|
+
variant?: import("../Base/variantTypes.js").BaseContainerVariant;
|
|
42
42
|
suffixIcon?: string;
|
|
43
43
|
}[] | undefined;
|
|
44
44
|
showCount?: boolean | undefined;
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
<path
|
|
166
166
|
fill-rule="evenodd"
|
|
167
167
|
clip-rule="evenodd"
|
|
168
|
-
d="M-9.31873e-07 21.3396C-6.35866e-07 14.5677 0.0898832 13.8569 1.03366 11.932C1.96876 10.0247 2.0656 9.26831 2.11102 3.31844L7.76383 3.30585C7.76759 5.99271 8.86971 6.2713 9.66251 6.26954C10.4715 6.26774 11.5613 5.9727 11.5613 3.4228L11.5612 3.2974L16.8532 3.28562C16.8532 7.08956 17.033 9.22103 17.3476 9.42934C17.6172 9.55414 18.3363 10.6812 18.9205 11.8503C19.9093 13.8546 19.9992 14.4814 19.9992 21.
|
|
168
|
+
d="M-9.31873e-07 21.3396C-6.35866e-07 14.5677 0.0898832 13.8569 1.03366 11.932C1.96876 10.0247 2.0656 9.26831 2.11102 3.31844L7.76383 3.30585C7.76759 5.99271 8.86971 6.2713 9.66251 6.26954C10.4715 6.26774 11.5613 5.9727 11.5613 3.4228L11.5612 3.2974L16.8532 3.28562C16.8532 7.08956 17.033 9.22103 17.3476 9.42934C17.6172 9.55414 18.3363 10.6812 18.9205 11.8503C19.9093 13.8546 19.9992 14.4814 19.9992 21.2951C19.9992 28.1087 19.9093 28.7359 18.9205 30.7446C18.3363 31.9164 17.6172 33.0466 17.3476 33.1726C17.033 33.3823 16.8532 35.7654 16.8532 39.4021L11.5612 39.4139C11.5613 39.3727 11.5613 39.3309 11.5613 39.2885C11.5613 36.655 10.4715 36.3648 9.66251 36.3666C8.85356 36.3684 7.76372 36.6635 7.76371 39.297C7.76371 39.3394 7.76374 39.3812 7.76379 39.4224L2.11227 39.435C2.11227 33.3319 2.02239 32.6633 1.0786 30.7425C0.0898826 28.7801 -1.22971e-06 28.1532 -9.31873e-07 21.3396ZM6.87611 25.2536C8.3592 24.5815 11.7748 24.8247 12.7635 25.6585L13.7073 26.4507L13.7073 21.7689L13.7073 17.0871L12.359 17.759C10.8759 18.4729 8.17943 18.6043 6.92106 17.9801C6.1121 17.5639 6.06716 17.6894 6.06716 21.5769C6.06716 25.2554 6.1121 25.5479 6.87611 25.2536Z"
|
|
169
169
|
fill={chainColor}
|
|
170
170
|
/>
|
|
171
171
|
{/if}
|
package/dist/icons.d.ts
CHANGED
package/dist/icons.js
CHANGED
|
@@ -3,9 +3,9 @@ export const icons = {
|
|
|
3
3
|
folder: '<svg width="14" height="12" viewBox="0 0 14 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.0782 1C7.18817 1.00001 8.11224 1.70066 8.31604 2.62852H9.60377C11.4794 2.62852 13 3.97168 13 5.62852V8C13 9.65686 11.4795 11 9.60377 11H4.39623C2.52054 11 1 9.65686 1 8V3.82852C1.00003 2.26638 2.43364 1.00003 4.2021 1H6.0782Z" stroke-width="1.5" stroke-linecap="round"/></svg>',
|
|
4
4
|
icon_expand: '<svg width="11" height="9" viewBox="0 0 11 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.83954 0.768768C9.36489 0.85241 9.80286 1.2017 10.0466 1.69455C10.383 2.37571 10.3011 3.24666 9.79852 3.8342L6.36688 7.84299C6.15182 8.09413 5.84139 8.25021 5.49969 8.25021C5.158 8.25021 4.84757 8.09412 4.63251 7.84299L1.20087 3.8342C0.698243 3.24663 0.616432 2.37568 0.95282 1.69455C1.19652 1.20169 1.6345 0.852405 2.15985 0.768768C2.62551 0.694684 3.08998 0.841766 3.44501 1.16721L3.59052 1.3176L3.60126 1.33029L5.49969 3.65549L7.39813 1.33029L7.40887 1.3176C7.77637 0.888275 8.30735 0.684099 8.83954 0.768768Z" stroke-width="1.2" stroke-linejoin="round"/></svg>',
|
|
5
5
|
cross: '<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.7143 1.75415C12.7196 2.7595 12.7194 4.38918 11.7143 5.39464L10.3746 6.73428L11.7136 8.07322C12.719 9.07867 12.7197 10.709 11.7143 11.7144C10.7088 12.7198 9.07851 12.7192 8.07308 11.7137L6.73413 10.3748L5.39519 11.7137C4.38975 12.7192 2.75945 12.7198 1.754 11.7144C0.748549 10.709 0.749239 9.07867 1.75469 8.07322L3.09364 6.73428L1.754 5.39464C0.748851 4.38918 0.748684 2.7595 1.754 1.75415C2.75935 0.748792 4.38902 0.748985 5.39449 1.75415L6.73413 3.09378L8.07377 1.75415C9.07924 0.748985 10.7089 0.748792 11.7143 1.75415Z" stroke-width="2"/></svg>',
|
|
6
|
+
crossb: '<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.0909 7.54545C14.0909 3.9305 11.1604 1 7.54545 1C3.9305 1 1 3.9305 1 7.54545C1 11.1604 3.9305 14.0909 7.54545 14.0909C11.1604 14.0909 14.0909 11.1604 14.0909 7.54545Z" stroke-width="1.5"/><path d="M5.54541 9.54547L9.54541 5.54547M9.54536 9.54547L5.54536 5.54547" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>',
|
|
6
7
|
pen: '<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.5664 0.750977C12.3421 0.769347 13.0332 1.10326 13.5186 1.62793C14.5307 2.72247 14.5264 4.45398 13.2959 5.68945L5.5166 13.5C5.03819 13.9803 4.38784 14.2499 3.70996 14.25H2.70215C1.61644 14.2499 0.75 13.3655 0.75 12.2949V11.2793C0.75 10.6048 1.0171 9.95741 1.49316 9.47949L9.27441 1.66699C9.30318 1.6381 9.33331 1.61087 9.36426 1.58496L9.61621 1.38965C10.2143 0.962846 10.8833 0.734842 11.5664 0.750977Z" stroke-width="2"/></svg>',
|
|
7
8
|
check: '<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.0909 7.54545C14.0909 3.9305 11.1604 1 7.54545 1C3.9305 1 1 3.9305 1 7.54545C1 11.1604 3.9305 14.0909 7.54545 14.0909C11.1604 14.0909 14.0909 11.1604 14.0909 7.54545Z" stroke-width="1.5"/><path d="M5.60596 8.05002L7.28552 9.00003L8.9999 6.09094" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>',
|
|
8
|
-
crossb: '<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.0909 7.54545C14.0909 3.9305 11.1604 1 7.54545 1C3.9305 1 1 3.9305 1 7.54545C1 11.1604 3.9305 14.0909 7.54545 14.0909C11.1604 14.0909 14.0909 11.1604 14.0909 7.54545Z" stroke-width="1.5"/><path d="M5.54541 9.54547L9.54541 5.54547M9.54536 9.54547L5.54536 5.54547" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>',
|
|
9
9
|
help: '<svg width="14" height="18" viewBox="0 0 14 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.12598 1C8.80364 1 10.2761 1.41608 11.3467 2.30859C12.441 3.22103 13 4.53608 13 6.07031C13 8.64914 11.1429 9.84464 10.0557 10.5439L10.0498 10.5479C9.59811 10.834 9.28616 11.0529 9.08203 11.2695C8.90303 11.4596 8.86426 11.5868 8.86426 11.7109V12.0938C8.86426 12.2909 8.80556 12.474 8.70703 12.6289C9.12558 13.0883 9.38867 13.687 9.38867 14.3574C9.38856 15.8568 8.05087 17 6.60156 17C5.13309 16.9998 3.81554 15.875 3.81543 14.3574C3.81543 13.7321 4.03654 13.1746 4.39648 12.7324C4.25235 12.5591 4.16504 12.3368 4.16504 12.0938V11.7109C4.16504 9.40212 5.70071 8.25591 6.67773 7.51758C7.09258 7.20371 7.37411 6.98167 7.56445 6.75684C7.72926 6.56215 7.7763 6.42236 7.77637 6.27148C7.77637 5.9518 7.68601 5.82933 7.63672 5.78223C7.58081 5.72894 7.42619 5.62896 7.04883 5.62891C6.69244 5.62891 6.4936 5.74276 6.37793 5.86816C6.25387 6.00289 6.12603 6.25977 6.12598 6.70898C6.12598 7.26127 5.67826 7.70898 5.12598 7.70898H2C1.44772 7.70898 1 7.26127 1 6.70898C1.00007 5.04942 1.6296 3.59897 2.75098 2.57031C3.86552 1.54796 5.40077 1.00005 7.12598 1Z" stroke-width="1.5" stroke-linejoin="round"/></svg>',
|
|
10
10
|
any_ai: '<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.88735 4.12364C8.03771 0.625957 12.9862 0.625724 14.1366 4.12364C14.5667 5.43135 15.5924 6.45705 16.9001 6.88716L16.9167 6.89268L16.9319 6.89821L17.0299 6.93273L17.0423 6.93688L17.0555 6.94171C20.3467 8.17272 20.3465 12.8508 17.0555 14.0818L17.0251 14.0929L16.9277 14.1267L16.9132 14.1315L16.9001 14.1364C15.5925 14.5665 14.5667 15.5921 14.1366 16.8999C12.9862 20.3975 8.03863 20.3981 6.88804 16.9006L6.88735 16.8999C6.45723 15.5922 5.43157 14.5665 4.12383 14.1364L4.12314 14.1357C0.625653 12.9851 0.626209 8.03752 4.12383 6.88716C5.43159 6.45704 6.45725 5.43121 6.88735 4.12364ZM12.3115 10.161L12.2687 10.1472L12.2279 10.1313L12.143 10.0975L12.1023 10.0816L12.0622 10.0622C11.4966 9.79891 11.06 9.31206 10.8628 8.71224L10.512 7.64467L10.1612 8.71224C9.93579 9.39762 9.39782 9.9356 8.71243 10.161L7.64556 10.5111L8.71243 10.8626L8.83949 10.9081C9.42249 11.139 9.88476 11.6012 10.1156 12.1842L10.1612 12.3113L10.512 13.3775L10.8628 12.3113C11.06 11.7116 11.4966 11.2247 12.0622 10.9613L12.1016 10.9427L12.143 10.9261L12.2279 10.8923L12.2687 10.8764L12.3115 10.8626L13.3784 10.5111L12.3115 10.161Z" stroke-width="3"/></svg>',
|
|
11
11
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -24,4 +24,4 @@ export { default as ConfirmPopup } from "./Components/Popup/ConfirmPopup.svelte"
|
|
|
24
24
|
export { default as AlertPopup } from "./Components/Popup/AlertPopup.svelte";
|
|
25
25
|
export { default as PromptPopup } from "./Components/Popup/PromptPopup.svelte";
|
|
26
26
|
export { icons } from "./icons.js";
|
|
27
|
-
export { gearSVGDark, gearSVGLight } from "./Structure/BG/
|
|
27
|
+
export { gearSVGDark, gearSVGLight } from "./Structure/BG/assetGear.js";
|
package/dist/index.js
CHANGED
|
@@ -30,4 +30,4 @@ export { default as PromptPopup } from "./Components/Popup/PromptPopup.svelte";
|
|
|
30
30
|
/* Icons */
|
|
31
31
|
export { icons } from "./icons.js";
|
|
32
32
|
/* Custom Assets */
|
|
33
|
-
export { gearSVGDark, gearSVGLight } from "./Structure/BG/
|
|
33
|
+
export { gearSVGDark, gearSVGLight } from "./Structure/BG/assetGear.js";
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|