@fuzdev/fuz_ui 0.171.0 → 0.172.0
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 +1 -1
- package/dist/DocsFooter.svelte +2 -2
- package/dist/DocsList.svelte +1 -1
- package/dist/EcosystemLinks.svelte +8 -38
- package/dist/EcosystemLinks.svelte.d.ts +1 -1
- package/dist/EcosystemLinks.svelte.d.ts.map +1 -1
- package/dist/EcosystemLinksPanel.svelte +6 -2
- package/dist/EcosystemLinksPanel.svelte.d.ts.map +1 -1
- package/dist/GithubLink.svelte +2 -2
- package/dist/LibraryDetail.svelte +1 -0
- package/dist/MdnLink.svelte +2 -2
- package/dist/ProjectLinks.svelte +69 -42
- package/dist/ProjectLinks.svelte.d.ts.map +1 -1
- package/dist/Spiders.svelte +2 -2
- package/dist/Themed.svelte +2 -1
- package/dist/Themed.svelte.d.ts.map +1 -1
- package/dist/logos.d.ts +14 -57
- package/dist/logos.d.ts.map +1 -1
- package/dist/logos.js +32 -168
- package/dist/themer.svelte.d.ts +5 -4
- package/dist/themer.svelte.d.ts.map +1 -1
- package/dist/themer.svelte.js +5 -3
- package/package.json +1 -1
- package/src/lib/logos.ts +33 -175
- package/src/lib/themer.svelte.ts +12 -9
- package/dist/HiddenPersonalLinks.svelte +0 -6
- package/dist/HiddenPersonalLinks.svelte.d.ts +0 -27
- package/dist/HiddenPersonalLinks.svelte.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ Feel free to take the ideas and code for your own purposes.
|
|
|
19
19
|
|
|
20
20
|
The Svelte components and helpers:
|
|
21
21
|
|
|
22
|
-
- builds on
|
|
22
|
+
- builds on [Fuz CSS](https://github.com/fuzdev/fuz_css)
|
|
23
23
|
- plain CSS and minimal abstraction
|
|
24
24
|
- near-zero dependencies except for Svelte, SvelteKit, Fuz CSS,
|
|
25
25
|
and my utility library [`@fuzdev/fuz_util`](https://github.com/fuzdev/fuz_util)
|
package/dist/DocsFooter.svelte
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import type {Library} from './library.svelte.js';
|
|
6
6
|
import Svg from './Svg.svelte';
|
|
7
|
-
import {
|
|
7
|
+
import {logo_github} from './logos.js';
|
|
8
8
|
|
|
9
9
|
const {
|
|
10
10
|
library,
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<!-- eslint-disable-next-line svelte/no-navigation-without-resolve -->
|
|
31
31
|
<a href={library.repo_url} rel="me" title="source code on GitHub"
|
|
32
32
|
>{#if logo}{@render logo()}{:else}<Svg
|
|
33
|
-
data={
|
|
33
|
+
data={logo_github}
|
|
34
34
|
size="var(--icon_size_lg)"
|
|
35
35
|
/>{/if}</a
|
|
36
36
|
>
|
package/dist/DocsList.svelte
CHANGED
|
@@ -2,52 +2,22 @@
|
|
|
2
2
|
const {
|
|
3
3
|
selected,
|
|
4
4
|
}: {
|
|
5
|
-
selected?: '
|
|
5
|
+
selected?: 'www.fuz.dev';
|
|
6
6
|
} = $props();
|
|
7
7
|
</script>
|
|
8
8
|
|
|
9
9
|
<ul>
|
|
10
10
|
<li>
|
|
11
|
-
<a rel="me" href="https://www.
|
|
12
|
-
|
|
13
|
-
>
|
|
14
|
-
- my homepage{#if selected === 'ryanatkn.com'}, you are here{/if}
|
|
15
|
-
</li>
|
|
16
|
-
<!-- <li>
|
|
17
|
-
<a rel="me" href="https://www.spiderspace.org/" class:selected={selected === 'spiderspace.org'}
|
|
18
|
-
>spiderspace.org</a
|
|
19
|
-
>
|
|
20
|
-
- nontechnical design videos where we'll make a social website together with
|
|
21
|
-
<a href="https://www.zzz.software/">Zzz</a> when it's ready, YouTube channel
|
|
22
|
-
<a rel="me" href="https://youtube.com/@spiderspace_8000">@spiderspace_8000</a
|
|
23
|
-
>{#if selected === 'spiderspace.org'}, you are here{/if}
|
|
24
|
-
</li> -->
|
|
25
|
-
<li>
|
|
26
|
-
GitHub as <a rel="me" href="https://github.com/ryanatkn">@ryanatkn</a> and Bluesky as
|
|
27
|
-
<a href="https://bsky.app/profile/ryanatkn.com">@ryanatkn.com</a>
|
|
11
|
+
<a rel="me" href="https://www.fuz.dev/" class:selected={selected === 'www.fuz.dev'}>fuz.dev</a>
|
|
12
|
+
- the Fuz project homepage{#if selected === 'www.fuz.dev'}, you are here{/if}
|
|
28
13
|
</li>
|
|
29
14
|
<li>
|
|
30
|
-
|
|
31
|
-
<a rel="me" href="https://fosstodon.org/@ryanatkn">@ryanatkn@fosstodon.org</a> and
|
|
32
|
-
<a rel="me" href="https://fosstodon.org/@webdevladder">@webdevladder@fosstodon.org</a>
|
|
33
|
-
</li>
|
|
34
|
-
<li>
|
|
35
|
-
<a
|
|
36
|
-
rel="me"
|
|
37
|
-
href="https://www.webdevladder.net/"
|
|
38
|
-
class:selected={selected === 'webdevladder.net'}>webdevladder.net</a
|
|
39
|
-
>
|
|
40
|
-
- realworld webdev with TypeScript and Svelte,
|
|
41
|
-
<a href="https://www.webdevladder.net/blog">blog</a>
|
|
42
|
-
and YouTube channels
|
|
43
|
-
<a rel="me" href="https://youtube.com/@webdevladder">@webdevladder</a>
|
|
44
|
-
and
|
|
45
|
-
<a rel="me" href="https://youtube.com/@webdevladder_vods">@webdevladder_vods</a>, also
|
|
46
|
-
@webdevladder on <a rel="me" href="https://www.reddit.com/user/webdevladder/">Reddit</a> and
|
|
47
|
-
<a href="https://news.ycombinator.com/user?id=webdevladder">Hacker News</a
|
|
48
|
-
>{#if selected === 'webdevladder.net'}, you are here{/if}
|
|
15
|
+
GitHub as <a rel="me" href="https://github.com/fuzdev">@fuzdev</a>
|
|
49
16
|
</li>
|
|
17
|
+
<!-- TODO socials -->
|
|
50
18
|
<!-- <li>
|
|
51
|
-
|
|
19
|
+
Mastodon as
|
|
20
|
+
<a rel="me" href="https://fosstodon.org/@fuzdev">@fuzdev@fosstodon.org</a> and Bluesky as
|
|
21
|
+
<a href="https://bsky.app/profile/fuz.dev">@fuz.dev</a>
|
|
52
22
|
</li> -->
|
|
53
23
|
</ul>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EcosystemLinks.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/EcosystemLinks.svelte"],"names":[],"mappings":"AAGC,KAAK,gBAAgB,GAAI;IACxB,QAAQ,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"EcosystemLinks.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/EcosystemLinks.svelte"],"names":[],"mappings":"AAGC,KAAK,gBAAgB,GAAI;IACxB,QAAQ,CAAC,EAAE,aAAa,CAAC;CACzB,CAAC;AAqBH,QAAA,MAAM,cAAc,sDAAwC,CAAC;AAC7D,KAAK,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AACxD,eAAe,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EcosystemLinksPanel.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/EcosystemLinksPanel.svelte"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,QAAQ,CAAC;AAKnC,KAAK,gBAAgB,GAAI;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;
|
|
1
|
+
{"version":3,"file":"EcosystemLinksPanel.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/EcosystemLinksPanel.svelte"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,QAAQ,CAAC;AAKnC,KAAK,gBAAgB,GAAI;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AA4BH,QAAA,MAAM,mBAAmB,sDAAwC,CAAC;AAClE,KAAK,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAClE,eAAe,mBAAmB,CAAC"}
|
package/dist/GithubLink.svelte
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import {DEV} from 'esm-env';
|
|
5
5
|
|
|
6
6
|
import Svg from './Svg.svelte';
|
|
7
|
-
import {
|
|
7
|
+
import {logo_github} from './logos.js';
|
|
8
8
|
|
|
9
9
|
const {
|
|
10
10
|
path,
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
<!-- eslint-disable svelte/no-navigation-without-resolve -->
|
|
63
63
|
<a {...rest} {href} class="github_link chip white_space_nowrap {class_prop}" rel="noopener"
|
|
64
64
|
><Svg
|
|
65
|
-
data={
|
|
65
|
+
data={logo_github}
|
|
66
66
|
inline
|
|
67
67
|
size="var(--icon_size_xs)"
|
|
68
68
|
attrs={{class: 'mx_xs3 vertical_align_middle'}}
|
package/dist/MdnLink.svelte
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import type {SvelteHTMLElements} from 'svelte/elements';
|
|
4
4
|
|
|
5
5
|
import Svg from './Svg.svelte';
|
|
6
|
-
import {
|
|
6
|
+
import {logo_mdn} from './logos.js';
|
|
7
7
|
|
|
8
8
|
const {
|
|
9
9
|
path,
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<!-- eslint-disable svelte/no-navigation-without-resolve -->
|
|
28
28
|
<a {...rest} {href} class="mdn_link chip white_space_nowrap {class_prop}" rel="noopener"
|
|
29
29
|
><Svg
|
|
30
|
-
data={
|
|
30
|
+
data={logo_mdn}
|
|
31
31
|
inline
|
|
32
32
|
size="var(--icon_size_xs)"
|
|
33
33
|
attrs={{class: 'mx_xs3 vertical_align_middle'}}
|
package/dist/ProjectLinks.svelte
CHANGED
|
@@ -1,54 +1,81 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import Svg from './Svg.svelte';
|
|
3
|
-
import {
|
|
2
|
+
import Svg, {type SvgData} from './Svg.svelte';
|
|
3
|
+
import {
|
|
4
|
+
logo_fuz_ui,
|
|
5
|
+
logo_fuz_code,
|
|
6
|
+
logo_fuz_blog,
|
|
7
|
+
logo_fuz_mastodon,
|
|
8
|
+
logo_fuz_gitops,
|
|
9
|
+
logo_fuz_template,
|
|
10
|
+
logo_fuz_css,
|
|
11
|
+
logo_fuz_util,
|
|
12
|
+
} from './logos.js';
|
|
4
13
|
|
|
5
|
-
|
|
14
|
+
// TODO refactor
|
|
15
|
+
interface ProjectItem {
|
|
16
|
+
name: string;
|
|
17
|
+
url: string;
|
|
18
|
+
logo: SvgData;
|
|
19
|
+
description: string;
|
|
20
|
+
glyph: string;
|
|
21
|
+
color_class: string;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// TODO ideally this wouldn't duplicate metadata like descriptions, but adding fuz_gitops to this repo is heavy
|
|
25
|
+
// prettier-ignore
|
|
26
|
+
const project_items: Array<ProjectItem> = [
|
|
27
|
+
{name: 'fuz_ui', url: 'https://ui.fuz.dev/', logo: logo_fuz_ui, description: 'Svelte UI library', glyph: '🧶', color_class: 'color_c_5'},
|
|
28
|
+
{name: 'fuz_css', url: 'https://css.fuz.dev/', logo: logo_fuz_css, description: 'CSS framework and design system', glyph: '🌿', color_class: 'color_b_5'},
|
|
29
|
+
{name: 'fuz_template', url: 'https://template.fuz.dev/', logo: logo_fuz_template, description: 'a static web app and Node library template with TypeScript, Svelte, SvelteKit, Vite, esbuild, Fuz, and Gro', glyph: '❄', color_class: 'color_h_5'},
|
|
30
|
+
{name: 'fuz_code', url: 'https://code.fuz.dev/', logo: logo_fuz_code, description: 'syntax styling utilities and components for TypeScript, Svelte, SvelteKit', glyph: '🎨', color_class: 'color_g_5'},
|
|
31
|
+
{name: 'fuz_blog', url: 'https://blog.fuz.dev/', logo: logo_fuz_blog, description: 'blog software from scratch with SvelteKit', glyph: '🖊️', color_class: 'color_e_5'},
|
|
32
|
+
{name: 'fuz_mastodon', url: 'https://mastodon.fuz.dev/', logo: logo_fuz_mastodon, description: 'Mastodon components and helpers for Svelte, SvelteKit, and Fuz', glyph: '🦣', color_class: 'color_d_5'},
|
|
33
|
+
{name: 'fuz_gitops', url: 'https://gitops.fuz.dev/', logo: logo_fuz_gitops, description: 'a tool for managing many repos', glyph: '🪄', color_class: 'color_a_5'},
|
|
34
|
+
{name: 'fuz_util', url: 'https://util.fuz.dev/', logo: logo_fuz_util, description: 'utility belt for JS', glyph: '🦕', color_class: 'color_f_5'},
|
|
35
|
+
];
|
|
6
36
|
</script>
|
|
7
37
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
>
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
<
|
|
20
|
-
|
|
21
|
-
>
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
>
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
href="https://template.fuz.dev/"
|
|
29
|
-
><Svg data={fuz_template_logo} {size} /><span class="name">fuz_template</span></a
|
|
30
|
-
>
|
|
38
|
+
<h2 class="mt_0 mb_xl2">Packages</h2>
|
|
39
|
+
<menu class="unstyled font_size_lg">
|
|
40
|
+
{#each project_items as project_item (project_item.name)}
|
|
41
|
+
{@render package_thumbnail(project_item)}
|
|
42
|
+
{/each}
|
|
43
|
+
</menu>
|
|
44
|
+
|
|
45
|
+
{#snippet package_thumbnail(project_item: ProjectItem)}
|
|
46
|
+
<!-- eslint-disable-next-line svelte/no-navigation-without-resolve -->
|
|
47
|
+
<a class="thumbnail row bg px_md py_xs border_radius_sm mb_lg" href={project_item.url}
|
|
48
|
+
><Svg shrink={false} data={project_item.logo} size="var(--icon_size_lg)" />
|
|
49
|
+
<div class="pl_lg width_upto_sm">
|
|
50
|
+
<div class="thumbnail_name {project_item.color_class}">{project_item.name}</div>
|
|
51
|
+
<div class="thumbnail_description font_size_md text_color_3 font_weight_500">
|
|
52
|
+
{project_item.description}
|
|
53
|
+
{project_item.glyph}
|
|
54
|
+
</div>
|
|
55
|
+
</div></a
|
|
56
|
+
>
|
|
57
|
+
{/snippet}
|
|
31
58
|
|
|
32
59
|
<style>
|
|
33
|
-
.
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
align-items: center;
|
|
37
|
-
padding: var(--space_md);
|
|
38
|
-
text-align: center;
|
|
60
|
+
.thumbnail {
|
|
61
|
+
box-shadow: var(--shadow_bottom_xs)
|
|
62
|
+
color-mix(in hsl, var(--shadow_color) var(--shadow_alpha_1), transparent);
|
|
39
63
|
}
|
|
64
|
+
.thumbnail:hover {
|
|
65
|
+
box-shadow: var(--shadow_bottom_sm)
|
|
66
|
+
color-mix(in hsl, var(--shadow_color) var(--shadow_alpha_1), transparent);
|
|
40
67
|
|
|
41
|
-
|
|
68
|
+
/* show the underline only on the name, not the description */
|
|
42
69
|
text-decoration: none;
|
|
70
|
+
.thumbnail_name {
|
|
71
|
+
text-decoration: underline;
|
|
72
|
+
}
|
|
73
|
+
.thumbnail_description {
|
|
74
|
+
text-decoration: none;
|
|
75
|
+
}
|
|
43
76
|
}
|
|
44
|
-
.
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
.project_link .name {
|
|
49
|
-
display: block;
|
|
50
|
-
margin-top: var(--font_size_sm);
|
|
51
|
-
font-size: var(--font_size_lg);
|
|
52
|
-
font-weight: 400;
|
|
77
|
+
.thumbnail:active {
|
|
78
|
+
box-shadow: var(--shadow_top_xs)
|
|
79
|
+
color-mix(in hsl, var(--shadow_color) var(--shadow_alpha_1), transparent);
|
|
53
80
|
}
|
|
54
81
|
</style>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProjectLinks.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ProjectLinks.svelte"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ProjectLinks.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ProjectLinks.svelte"],"names":[],"mappings":"AAkEA,UAAU,kCAAkC,CAAC,KAAK,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,EAAE,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,EAAE,KAAK,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,QAAQ,GAAG,MAAM;IACpM,KAAK,OAAO,EAAE,OAAO,QAAQ,EAAE,2BAA2B,CAAC,KAAK,CAAC,GAAG,OAAO,QAAQ,EAAE,eAAe,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAAG;QAAE,UAAU,CAAC,EAAE,QAAQ,CAAA;KAAE,GAAG,OAAO,CAAC;IACjK,CAAC,QAAQ,EAAE,OAAO,EAAE,KAAK,EAAE;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,KAAK,CAAA;KAAC,GAAG,OAAO,GAAG;QAAE,IAAI,CAAC,EAAE,GAAG,CAAC;QAAC,GAAG,CAAC,EAAE,GAAG,CAAA;KAAE,CAAC;IACtG,YAAY,CAAC,EAAE,QAAQ,CAAC;CAC3B;AAKD,QAAA,MAAM,YAAY;;kBAA+E,CAAC;AAChF,KAAK,YAAY,GAAG,YAAY,CAAC,OAAO,YAAY,CAAC,CAAC;AACxD,eAAe,YAAY,CAAC"}
|
package/dist/Spiders.svelte
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
import {create_random_alea} from '@fuzdev/fuz_util/random_alea.js';
|
|
11
11
|
|
|
12
12
|
import Svg from './Svg.svelte';
|
|
13
|
-
import {
|
|
13
|
+
import {logo_fuz} from './logos.js';
|
|
14
14
|
|
|
15
15
|
const {
|
|
16
16
|
spiders = [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
<!-- TODO show when intersected in viewport, maybe inline `svelte-intersect` in Fuz? -->
|
|
42
42
|
<div class="spiders" style:--spider_count={spiders.length}>
|
|
43
43
|
{#each shuffled as color, i (color)}
|
|
44
|
-
<Svg data={
|
|
44
|
+
<Svg data={logo_fuz} fill={color} attrs={{style: `transform: rotate(${rotations[i]}deg)`}} />
|
|
45
45
|
{/each}
|
|
46
46
|
</div>
|
|
47
47
|
|
package/dist/Themed.svelte
CHANGED
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
load_theme = default_load_theme,
|
|
27
27
|
save_theme = default_save_theme,
|
|
28
28
|
theme_fallback,
|
|
29
|
-
|
|
29
|
+
// TODO make reactive? by passing getters as options?
|
|
30
|
+
themer = new Themer({theme: load_theme(theme_fallback), color_scheme: load_color_scheme()}),
|
|
30
31
|
children,
|
|
31
32
|
}: {
|
|
32
33
|
sync_color_scheme?: typeof default_sync_color_scheme;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Themed.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/Themed.svelte"],"names":[],"mappings":"AAMA,OAAO,EAAU,KAAK,OAAO,EAAC,MAAM,QAAQ,CAAC;AAC7C,OAAO,EAAqB,KAAK,KAAK,EAAC,MAAM,0BAA0B,CAAC;AAIxE,OAAO,EACL,iBAAiB,IAAI,yBAAyB,EAC9C,iBAAiB,IAAI,yBAAyB,EAC9C,iBAAiB,IAAI,yBAAyB,EAC9C,UAAU,IAAI,kBAAkB,EAChC,UAAU,IAAI,kBAAkB,EAEhC,MAAM,EACN,MAAM,oBAAoB,CAAC;AAG5B,KAAK,gBAAgB,GAAI;IACxB,iBAAiB,CAAC,EAAE,OAAO,yBAAyB,CAAC;IACrD,iBAAiB,CAAC,EAAE,OAAO,yBAAyB,CAAC;IACrD,iBAAiB,CAAC,EAAE,OAAO,yBAAyB,CAAC;IACrD,UAAU,CAAC,EAAE,OAAO,kBAAkB,CAAC;IACvC,UAAU,CAAC,EAAE,OAAO,kBAAkB,CAAC;IACvC,cAAc,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;IACnC;;;;;;OAMG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,OAAO,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,EAAE,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;CAC3F,CAAC;
|
|
1
|
+
{"version":3,"file":"Themed.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/Themed.svelte"],"names":[],"mappings":"AAMA,OAAO,EAAU,KAAK,OAAO,EAAC,MAAM,QAAQ,CAAC;AAC7C,OAAO,EAAqB,KAAK,KAAK,EAAC,MAAM,0BAA0B,CAAC;AAIxE,OAAO,EACL,iBAAiB,IAAI,yBAAyB,EAC9C,iBAAiB,IAAI,yBAAyB,EAC9C,iBAAiB,IAAI,yBAAyB,EAC9C,UAAU,IAAI,kBAAkB,EAChC,UAAU,IAAI,kBAAkB,EAEhC,MAAM,EACN,MAAM,oBAAoB,CAAC;AAG5B,KAAK,gBAAgB,GAAI;IACxB,iBAAiB,CAAC,EAAE,OAAO,yBAAyB,CAAC;IACrD,iBAAiB,CAAC,EAAE,OAAO,yBAAyB,CAAC;IACrD,iBAAiB,CAAC,EAAE,OAAO,yBAAyB,CAAC;IACrD,UAAU,CAAC,EAAE,OAAO,kBAAkB,CAAC;IACvC,UAAU,CAAC,EAAE,OAAO,kBAAkB,CAAC;IACvC,cAAc,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;IACnC;;;;;;OAMG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,OAAO,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,EAAE,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;CAC3F,CAAC;AAgFH,QAAA,MAAM,MAAM,sDAAwC,CAAC;AACrD,KAAK,MAAM,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,CAAC;AACxC,eAAe,MAAM,CAAC"}
|
package/dist/logos.d.ts
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const logo_gro: {
|
|
2
2
|
label: string;
|
|
3
|
-
fill: string;
|
|
4
3
|
paths: {
|
|
4
|
+
fill: string;
|
|
5
5
|
d: string;
|
|
6
6
|
}[];
|
|
7
7
|
};
|
|
8
|
-
export declare const
|
|
8
|
+
export declare const logo_fuz: {
|
|
9
9
|
label: string;
|
|
10
|
+
fill: string;
|
|
10
11
|
paths: {
|
|
11
|
-
fill: string;
|
|
12
12
|
d: string;
|
|
13
13
|
}[];
|
|
14
14
|
};
|
|
15
|
-
export declare const
|
|
15
|
+
export declare const logo_fuz_ui: {
|
|
16
16
|
label: string;
|
|
17
17
|
fill: string;
|
|
18
18
|
paths: {
|
|
19
19
|
d: string;
|
|
20
20
|
}[];
|
|
21
21
|
};
|
|
22
|
-
export declare const
|
|
22
|
+
export declare const logo_fuz_css: {
|
|
23
23
|
label: string;
|
|
24
24
|
fill: string;
|
|
25
25
|
paths: {
|
|
@@ -29,71 +29,49 @@ export declare const fuz_css_logo: {
|
|
|
29
29
|
style: string;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
|
-
export declare const
|
|
33
|
-
label: string;
|
|
34
|
-
paths: {
|
|
35
|
-
fill: string;
|
|
36
|
-
d: string;
|
|
37
|
-
}[];
|
|
38
|
-
};
|
|
39
|
-
export declare const fuz_code_logo: {
|
|
32
|
+
export declare const logo_fuz_code: {
|
|
40
33
|
label: string;
|
|
41
34
|
fill: string;
|
|
42
35
|
paths: {
|
|
43
36
|
d: string;
|
|
44
37
|
}[];
|
|
45
38
|
};
|
|
46
|
-
export declare const
|
|
39
|
+
export declare const logo_fuz_blog: {
|
|
47
40
|
label: string;
|
|
48
41
|
fill: string;
|
|
49
42
|
paths: {
|
|
50
43
|
d: string;
|
|
51
44
|
}[];
|
|
52
45
|
};
|
|
53
|
-
export declare const
|
|
46
|
+
export declare const logo_fuz_mastodon: {
|
|
54
47
|
label: string;
|
|
55
48
|
fill: string;
|
|
56
49
|
paths: {
|
|
57
50
|
d: string;
|
|
58
51
|
}[];
|
|
59
52
|
};
|
|
60
|
-
export declare const
|
|
53
|
+
export declare const logo_fuz_gitops: {
|
|
61
54
|
label: string;
|
|
62
55
|
fill: string;
|
|
63
56
|
paths: {
|
|
64
57
|
d: string;
|
|
65
58
|
}[];
|
|
66
59
|
};
|
|
67
|
-
export declare const
|
|
60
|
+
export declare const logo_fuz_template: {
|
|
68
61
|
label: string;
|
|
69
62
|
fill: string;
|
|
70
63
|
paths: {
|
|
71
64
|
d: string;
|
|
72
65
|
}[];
|
|
73
66
|
};
|
|
74
|
-
export declare const
|
|
67
|
+
export declare const logo_fuz_util: {
|
|
75
68
|
label: string;
|
|
76
|
-
fill: string;
|
|
77
|
-
paths: {
|
|
78
|
-
d: string;
|
|
79
|
-
}[];
|
|
80
|
-
};
|
|
81
|
-
export declare const earbetter_logo: {
|
|
82
|
-
label: string;
|
|
83
|
-
fill: string;
|
|
84
|
-
paths: {
|
|
85
|
-
d: string;
|
|
86
|
-
}[];
|
|
87
|
-
};
|
|
88
|
-
export declare const spiderspace_logo: {
|
|
89
|
-
label: string;
|
|
90
|
-
raw: string;
|
|
91
69
|
paths: {
|
|
92
70
|
fill: string;
|
|
93
71
|
d: string;
|
|
94
72
|
}[];
|
|
95
73
|
};
|
|
96
|
-
export declare const
|
|
74
|
+
export declare const logo_github: {
|
|
97
75
|
label: string;
|
|
98
76
|
paths: {
|
|
99
77
|
d: string;
|
|
@@ -103,30 +81,9 @@ export declare const github_logo: {
|
|
|
103
81
|
}[];
|
|
104
82
|
viewBox: string;
|
|
105
83
|
};
|
|
106
|
-
export declare const
|
|
107
|
-
label: string;
|
|
108
|
-
fill: string;
|
|
109
|
-
paths: {
|
|
110
|
-
d: string;
|
|
111
|
-
}[];
|
|
112
|
-
};
|
|
113
|
-
export declare const chatgpt_logo: {
|
|
114
|
-
label: string;
|
|
115
|
-
paths: {
|
|
116
|
-
d: string;
|
|
117
|
-
}[];
|
|
118
|
-
};
|
|
119
|
-
export declare const claude_logo: {
|
|
120
|
-
label: string;
|
|
121
|
-
fill: string;
|
|
122
|
-
paths: {
|
|
123
|
-
d: string;
|
|
124
|
-
}[];
|
|
125
|
-
};
|
|
126
|
-
export declare const gemini_logo: {
|
|
84
|
+
export declare const logo_mdn: {
|
|
127
85
|
label: string;
|
|
128
86
|
fill: string;
|
|
129
|
-
raw: string;
|
|
130
87
|
paths: {
|
|
131
88
|
d: string;
|
|
132
89
|
}[];
|
package/dist/logos.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logos.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/logos.ts"],"names":[],"mappings":"AAqBA,eAAO,MAAM,QAAQ;;;;;;
|
|
1
|
+
{"version":3,"file":"logos.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/logos.ts"],"names":[],"mappings":"AAqBA,eAAO,MAAM,QAAQ;;;;;;CAgCF,CAAC;AAEpB,eAAO,MAAM,QAAQ;;;;;;CAQF,CAAC;AAEpB,eAAO,MAAM,WAAW;;;;;;CAIL,CAAC;AAEpB,eAAO,MAAM,YAAY;;;;;;;;;CAKN,CAAC;AAEpB,eAAO,MAAM,aAAa;;;;;;CAIP,CAAC;AAEpB,eAAO,MAAM,aAAa;;;;;;CAIP,CAAC;AAEpB,eAAO,MAAM,iBAAiB;;;;;;CAIX,CAAC;AAEpB,eAAO,MAAM,eAAe;;;;;;CAIT,CAAC;AAEpB,eAAO,MAAM,iBAAiB;;;;;;CAQX,CAAC;AAEpB,eAAO,MAAM,aAAa;;;;;;CAwBP,CAAC;AAEpB,eAAO,MAAM,WAAW;;;;;;;;;CAWL,CAAC;AAEpB,eAAO,MAAM,QAAQ;;;;;;CAQF,CAAC"}
|