@iroco/ui 0.62.3 → 0.62.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/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/package.json +1 -6
- package/dist/IconMastodon.svelte +0 -19
- package/dist/IconMastodon.svelte.d.ts +0 -18
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ export { default as RadioButton } from './RadioButton.svelte';
|
|
|
5
5
|
export { default as NumberInput } from './NumberInput.svelte';
|
|
6
6
|
export { default as Loader } from './Loader.svelte';
|
|
7
7
|
export { default as IconInfo } from './IconInfo.svelte';
|
|
8
|
-
export { default as IconMastodon } from './IconMastodon.svelte';
|
|
9
8
|
export { default as NavBar } from './NavBar.svelte';
|
|
10
9
|
export { default as Navigation } from './Navigation.svelte';
|
|
11
10
|
export { default as DataTable } from './DataTable.svelte';
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,6 @@ export { default as RadioButton } from './RadioButton.svelte';
|
|
|
5
5
|
export { default as NumberInput } from './NumberInput.svelte';
|
|
6
6
|
export { default as Loader } from './Loader.svelte';
|
|
7
7
|
export { default as IconInfo } from './IconInfo.svelte';
|
|
8
|
-
export { default as IconMastodon } from './IconMastodon.svelte';
|
|
9
8
|
export { default as NavBar } from './NavBar.svelte';
|
|
10
9
|
export { default as Navigation } from './Navigation.svelte';
|
|
11
10
|
export { default as DataTable } from './DataTable.svelte';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iroco/ui",
|
|
3
|
-
"version": "0.62.
|
|
3
|
+
"version": "0.62.5",
|
|
4
4
|
"description": "Iroco design system based on Svelte",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -98,11 +98,6 @@
|
|
|
98
98
|
"svelte": "./dist/IconIrocoLogo.svelte",
|
|
99
99
|
"default": "./dist/IconIrocoLogo.svelte"
|
|
100
100
|
},
|
|
101
|
-
"./IconMastodon.svelte": {
|
|
102
|
-
"types": "./dist/IconMastodon.svelte.d.ts",
|
|
103
|
-
"svelte": "./dist/IconMastodon.svelte",
|
|
104
|
-
"default": "./dist/IconMastodon.svelte"
|
|
105
|
-
},
|
|
106
101
|
"./IconMoreSign.svelte": {
|
|
107
102
|
"types": "./dist/IconMoreSign.svelte.d.ts",
|
|
108
103
|
"svelte": "./dist/IconMoreSign.svelte",
|
package/dist/IconMastodon.svelte
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<script>export let width = "5em";
|
|
2
|
-
export let height = "5em";
|
|
3
|
-
export let fill = "currentColor";
|
|
4
|
-
</script>
|
|
5
|
-
|
|
6
|
-
<svg
|
|
7
|
-
{width}
|
|
8
|
-
{height}
|
|
9
|
-
role="img"
|
|
10
|
-
viewBox="0 0 24 24"
|
|
11
|
-
class="icon-mastodon"
|
|
12
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
-
>
|
|
14
|
-
<title>Mastodon</title>
|
|
15
|
-
<path
|
|
16
|
-
d="M23.193 7.88c0-5.207-3.411-6.733-3.411-6.733C18.062.357 15.108.025 12.041 0h-.076c-3.069.025-6.02.357-7.74 1.147 0 0-3.412 1.526-3.412 6.732 0 1.193-.023 2.619.015 4.13.124 5.092.934 10.11 5.641 11.355 2.17.574 4.034.695 5.536.612 2.722-.15 4.25-.972 4.25-.972l-.09-1.975s-1.945.613-4.13.54c-2.165-.075-4.449-.234-4.799-2.892a5.5 5.5 0 0 1-.048-.745s2.125.52 4.818.643c1.646.075 3.19-.097 4.758-.283 3.007-.359 5.625-2.212 5.954-3.905.517-2.665.475-6.508.475-6.508zm-4.024 6.709h-2.497v-6.12c0-1.29-.543-1.944-1.628-1.944-1.2 0-1.802.776-1.802 2.313v3.349h-2.484v-3.35c0-1.537-.602-2.313-1.802-2.313-1.085 0-1.628.655-1.628 1.945v6.119H4.831V8.285c0-1.29.328-2.314.987-3.07.68-.759 1.57-1.147 2.674-1.147 1.278 0 2.246.491 2.886 1.474L12 6.585l.622-1.043c.64-.983 1.608-1.474 2.886-1.474 1.104 0 1.994.388 2.674 1.146.658.757.986 1.781.986 3.07v6.305z"
|
|
17
|
-
{fill}
|
|
18
|
-
/>
|
|
19
|
-
</svg>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { SvelteComponent } from "svelte";
|
|
2
|
-
declare const __propDef: {
|
|
3
|
-
props: {
|
|
4
|
-
width?: string | undefined;
|
|
5
|
-
height?: string | undefined;
|
|
6
|
-
fill?: string | undefined;
|
|
7
|
-
};
|
|
8
|
-
events: {
|
|
9
|
-
[evt: string]: CustomEvent<any>;
|
|
10
|
-
};
|
|
11
|
-
slots: {};
|
|
12
|
-
};
|
|
13
|
-
export type IconMastodonProps = typeof __propDef.props;
|
|
14
|
-
export type IconMastodonEvents = typeof __propDef.events;
|
|
15
|
-
export type IconMastodonSlots = typeof __propDef.slots;
|
|
16
|
-
export default class IconMastodon extends SvelteComponent<IconMastodonProps, IconMastodonEvents, IconMastodonSlots> {
|
|
17
|
-
}
|
|
18
|
-
export {};
|