@iroco/ui 0.21.0 → 0.50.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/Alert.svelte +72 -0
- package/Alert.svelte.d.ts +18 -0
- package/{lib/iroco.css → Button.svelte} +69 -88
- package/Button.svelte.d.ts +43 -0
- package/DataTable.svelte +94 -0
- package/DataTable.svelte.d.ts +27 -0
- package/{src/IconBurger.svelte → IconBurger.svelte} +2 -3
- package/IconBurger.svelte.d.ts +17 -0
- package/{src/IconClose.svelte → IconClose.svelte} +2 -3
- package/IconClose.svelte.d.ts +17 -0
- package/{src/IconFloppyDisk.svelte → IconFloppyDisk.svelte} +3 -4
- package/IconFloppyDisk.svelte.d.ts +18 -0
- package/{src/IconInfo.svelte → IconInfo.svelte} +2 -3
- package/IconInfo.svelte.d.ts +17 -0
- package/{src/IconIrocoLogo.svelte → IconIrocoLogo.svelte} +2 -3
- package/IconIrocoLogo.svelte.d.ts +17 -0
- package/IconMastodon.svelte +19 -0
- package/IconMastodon.svelte.d.ts +18 -0
- package/{src/IconMoreSign.svelte → IconMoreSign.svelte} +2 -3
- package/IconMoreSign.svelte.d.ts +17 -0
- package/{src/IconTrashCan.svelte → IconTrashCan.svelte} +4 -11
- package/IconTrashCan.svelte.d.ts +18 -0
- package/IrocoLogo.svelte +49 -0
- package/IrocoLogo.svelte.d.ts +19 -0
- package/{src/Loader.svelte → Loader.svelte} +1 -2
- package/Loader.svelte.d.ts +14 -0
- package/NavBar.svelte +669 -0
- package/NavBar.svelte.d.ts +21 -0
- package/Navigation.svelte +325 -0
- package/Navigation.svelte.d.ts +19 -0
- package/NumberInput.svelte +117 -0
- package/NumberInput.svelte.d.ts +25 -0
- package/NumberInputSized.svelte +4 -0
- package/NumberInputSized.svelte.d.ts +14 -0
- package/README.md +21 -31
- package/RadioButton.svelte +93 -0
- package/RadioButton.svelte.d.ts +23 -0
- package/RadioButtonTest.svelte +10 -0
- package/RadioButtonTest.svelte.d.ts +19 -0
- package/SlottedComponentWrapper.svelte +7 -0
- package/SlottedComponentWrapper.svelte.d.ts +23 -0
- package/TextInput.svelte +148 -0
- package/TextInput.svelte.d.ts +30 -0
- package/{src/TopBar.svelte → TopBar.svelte} +0 -0
- package/TopBar.svelte.d.ts +23 -0
- package/definition.d.ts +28 -0
- package/definition.js +35 -0
- package/index.d.ts +18 -0
- package/index.js +18 -0
- package/package.json +71 -113
- package/scss/button.scss +57 -55
- package/scss/check.scss +45 -46
- package/scss/colors.scss +39 -17
- package/scss/constants.scss +1 -1
- package/scss/containers.scss +126 -130
- package/scss/fields/_checkbox.scss +37 -42
- package/scss/fields/_input.scss +160 -169
- package/scss/fonts.scss +7 -7
- package/scss/forms.scss +53 -55
- package/scss/iroco.scss +22 -22
- package/scss/layouts.scss +21 -7
- package/scss/loader.scss +18 -16
- package/scss/style.scss +5 -5
- package/lib/button.scss +0 -61
- package/lib/check.scss +0 -48
- package/lib/colors.scss +0 -23
- package/lib/constants.scss +0 -1
- package/lib/containers.scss +0 -226
- package/lib/fields/_checkbox.scss +0 -44
- package/lib/fields/_input.scss +0 -171
- package/lib/fields/_style.scss +0 -2
- package/lib/fonts.scss +0 -11
- package/lib/forms.scss +0 -67
- package/lib/index.js +0 -5816
- package/lib/index.min.js +0 -330
- package/lib/index.mjs +0 -5789
- package/lib/iroco.css.map +0 -1
- package/lib/iroco.scss +0 -37
- package/lib/layouts.scss +0 -7
- package/lib/loader.scss +0 -20
- package/lib/style.scss +0 -5
- package/src/Alert.svelte +0 -34
- package/src/Button.svelte +0 -24
- package/src/DataTable.svelte +0 -72
- package/src/Icon.svelte +0 -29
- package/src/IconMastodon.svelte +0 -13
- package/src/IrocoLogo.svelte +0 -45
- package/src/NavBar.svelte +0 -154
- package/src/Navigation.svelte +0 -107
- package/src/NumberInput.svelte +0 -23
- package/src/RadioButton.svelte +0 -56
- package/src/TextInput.svelte +0 -121
- package/src/definition.ts +0 -30
- package/src/index.ts +0 -21
package/Alert.svelte
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<script>export let type = "success";
|
|
2
|
+
export let content;
|
|
3
|
+
export let callback;
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<div class={`alert alert--${type}`} on:click={callback}>
|
|
7
|
+
{content}
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<style>.font-color-blue {
|
|
11
|
+
color: #00b9ff;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.font-color-darkBlue {
|
|
15
|
+
color: #211d28;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.font-color-nightBlue {
|
|
19
|
+
color: #18151e;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.font-color-green {
|
|
23
|
+
color: #00d692;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.font-color-red {
|
|
27
|
+
color: #ff504d;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.font-color-yellow {
|
|
31
|
+
color: #ffe032;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.font-color-beige {
|
|
35
|
+
color: #f2ebe3;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.font-color-darkBeige {
|
|
39
|
+
color: #a9a29e;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.font-color-mediumGrey {
|
|
43
|
+
color: #464452;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.font-color-darkGrey {
|
|
47
|
+
color: #33323a;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.font-color-lightGrey {
|
|
51
|
+
color: #f5f5f5;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.alert {
|
|
55
|
+
min-height: 2em;
|
|
56
|
+
display: inline-flex;
|
|
57
|
+
align-items: center;
|
|
58
|
+
border-radius: 0.3em;
|
|
59
|
+
padding: 0 1em 0 1em;
|
|
60
|
+
font-size: 1.2em;
|
|
61
|
+
justify-content: center;
|
|
62
|
+
margin-bottom: 1em;
|
|
63
|
+
cursor: pointer;
|
|
64
|
+
}
|
|
65
|
+
.alert--danger {
|
|
66
|
+
background-color: rgba(255, 80, 77, 0.5);
|
|
67
|
+
border: 1px solid #ff504d;
|
|
68
|
+
}
|
|
69
|
+
.alert--success {
|
|
70
|
+
background-color: rgba(0, 214, 146, 0.5);
|
|
71
|
+
border: 1px solid #00d692;
|
|
72
|
+
}</style>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
type?: "success" | "danger" | undefined;
|
|
5
|
+
content: string;
|
|
6
|
+
callback: (e: Event) => void;
|
|
7
|
+
};
|
|
8
|
+
events: {
|
|
9
|
+
[evt: string]: CustomEvent<any>;
|
|
10
|
+
};
|
|
11
|
+
slots: {};
|
|
12
|
+
};
|
|
13
|
+
export type AlertProps = typeof __propDef.props;
|
|
14
|
+
export type AlertEvents = typeof __propDef.events;
|
|
15
|
+
export type AlertSlots = typeof __propDef.slots;
|
|
16
|
+
export default class Alert extends SvelteComponentTyped<AlertProps, AlertEvents, AlertSlots> {
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
<svelte:options accessors={true} />
|
|
2
|
+
|
|
3
|
+
<script>export let type = "button";
|
|
4
|
+
export let disabled = false;
|
|
5
|
+
export let kind = "basic";
|
|
6
|
+
export let size = "regular";
|
|
7
|
+
export let id;
|
|
8
|
+
export let node;
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<button
|
|
12
|
+
{id}
|
|
13
|
+
class={`iroco-ui-button iroco-ui-button--${size} iroco-ui-button--${kind}`}
|
|
14
|
+
class:disabled
|
|
15
|
+
{type}
|
|
16
|
+
{disabled}
|
|
17
|
+
on:click
|
|
18
|
+
bind:this={node}
|
|
19
|
+
>
|
|
20
|
+
<slot />
|
|
21
|
+
</button>
|
|
22
|
+
|
|
23
|
+
<style>.font-color-blue {
|
|
24
|
+
color: #00b9ff;
|
|
3
25
|
}
|
|
4
26
|
|
|
5
27
|
.font-color-darkBlue {
|
|
6
|
-
color: #
|
|
28
|
+
color: #211d28;
|
|
7
29
|
}
|
|
8
30
|
|
|
9
31
|
.font-color-nightBlue {
|
|
10
|
-
color: #
|
|
32
|
+
color: #18151e;
|
|
11
33
|
}
|
|
12
34
|
|
|
13
35
|
.font-color-green {
|
|
14
|
-
color: #
|
|
36
|
+
color: #00d692;
|
|
15
37
|
}
|
|
16
38
|
|
|
17
39
|
.font-color-red {
|
|
@@ -19,7 +41,7 @@
|
|
|
19
41
|
}
|
|
20
42
|
|
|
21
43
|
.font-color-yellow {
|
|
22
|
-
color: #
|
|
44
|
+
color: #ffe032;
|
|
23
45
|
}
|
|
24
46
|
|
|
25
47
|
.font-color-beige {
|
|
@@ -199,96 +221,55 @@
|
|
|
199
221
|
}
|
|
200
222
|
}
|
|
201
223
|
|
|
202
|
-
.iroco-ui-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
224
|
+
.iroco-ui-button {
|
|
225
|
+
cursor: pointer;
|
|
226
|
+
-webkit-touch-callout: none;
|
|
227
|
+
-webkit-user-select: none;
|
|
228
|
+
-khtml-user-select: none;
|
|
229
|
+
-moz-user-select: none;
|
|
230
|
+
-ms-user-select: none;
|
|
231
|
+
user-select: none;
|
|
232
|
+
border: none;
|
|
233
|
+
flex-shrink: 0;
|
|
234
|
+
margin: 1em 0em;
|
|
235
|
+
position: relative;
|
|
236
|
+
text-transform: uppercase;
|
|
237
|
+
border-radius: 0.3em;
|
|
238
|
+
}
|
|
239
|
+
.iroco-ui-button--basic {
|
|
240
|
+
background: #f2ebe3;
|
|
241
|
+
border: 1px solid #18151e;
|
|
242
|
+
}
|
|
243
|
+
.iroco-ui-button--dark {
|
|
244
|
+
background: #18151e;
|
|
217
245
|
color: #f2ebe3;
|
|
218
|
-
background: #211D28;
|
|
219
|
-
border: 1px solid #211D28;
|
|
220
|
-
padding: 1em 1.5em;
|
|
221
|
-
text-overflow: ellipsis;
|
|
222
|
-
white-space: nowrap;
|
|
223
|
-
overflow: hidden;
|
|
224
|
-
border-radius: 0.5em;
|
|
225
246
|
}
|
|
226
|
-
.iroco-ui-
|
|
227
|
-
|
|
247
|
+
.iroco-ui-button--success {
|
|
248
|
+
background: #00d692;
|
|
249
|
+
color: #18151e;
|
|
228
250
|
}
|
|
229
|
-
.iroco-ui-
|
|
230
|
-
|
|
251
|
+
.iroco-ui-button--danger {
|
|
252
|
+
background: #ff504d;
|
|
231
253
|
}
|
|
232
|
-
.iroco-ui-
|
|
233
|
-
|
|
254
|
+
.iroco-ui-button--regular {
|
|
255
|
+
padding: 1em 2em;
|
|
234
256
|
}
|
|
235
|
-
.iroco-ui-
|
|
236
|
-
|
|
237
|
-
font-weight: bold;
|
|
238
|
-
padding-bottom: 10px;
|
|
239
|
-
display: inline-block;
|
|
257
|
+
.iroco-ui-button--small {
|
|
258
|
+
padding: 0.5em 1em;
|
|
240
259
|
}
|
|
241
|
-
.iroco-ui-
|
|
242
|
-
|
|
260
|
+
.iroco-ui-button--basic:hover, .iroco-ui-button--success:hover, .iroco-ui-button--danger:hover {
|
|
261
|
+
box-shadow: inset 0 0 0 10em rgba(0, 0, 0, 0.2);
|
|
243
262
|
}
|
|
244
|
-
.iroco-ui-
|
|
245
|
-
|
|
263
|
+
.iroco-ui-button--dark:hover {
|
|
264
|
+
box-shadow: inset 0 0 0 10em rgba(255, 255, 255, 0.2);
|
|
246
265
|
}
|
|
247
|
-
.iroco-ui-
|
|
248
|
-
|
|
249
|
-
}
|
|
250
|
-
.iroco-ui-form p.error {
|
|
251
|
-
margin: 0;
|
|
252
|
-
color: #ff504d;
|
|
266
|
+
.iroco-ui-button:active {
|
|
267
|
+
box-shadow: none;
|
|
253
268
|
}
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
*::before,
|
|
257
|
-
*::after {
|
|
258
|
-
-webkit-box-sizing: border-box;
|
|
259
|
-
box-sizing: border-box;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
a,
|
|
263
|
-
a:visited,
|
|
264
|
-
a:active,
|
|
265
|
-
button {
|
|
266
|
-
outline: none;
|
|
267
|
-
text-decoration: none;
|
|
268
|
-
font-size: 14px;
|
|
269
|
-
color: #f2ebe3;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
html {
|
|
273
|
-
margin: 0;
|
|
274
|
-
padding: 0;
|
|
275
|
-
}
|
|
276
|
-
html > body {
|
|
277
|
-
font-family: "Arial", sans-serif;
|
|
278
|
-
font-size: 14px;
|
|
279
|
-
font-weight: normal;
|
|
280
|
-
color: white;
|
|
281
|
-
margin: 0;
|
|
282
|
-
padding: 0;
|
|
283
|
-
transition: color ease-out 100ms, font-size ease-out 100ms;
|
|
284
|
-
margin: 0;
|
|
285
|
-
padding: 0;
|
|
269
|
+
.iroco-ui-button.disabled {
|
|
270
|
+
background-color: #f5f5f5;
|
|
286
271
|
cursor: default;
|
|
287
|
-
text-rendering: optimizeLegibility;
|
|
288
|
-
-webkit-font-smoothing: antialiased;
|
|
289
|
-
-moz-osx-font-smoothing: grayscale;
|
|
290
|
-
font-kerning: normal;
|
|
291
|
-
background: #211D28;
|
|
292
272
|
}
|
|
293
|
-
|
|
294
|
-
|
|
273
|
+
.iroco-ui-button.disabled:hover {
|
|
274
|
+
box-shadow: none;
|
|
275
|
+
}</style>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
type?: string | undefined;
|
|
5
|
+
disabled?: boolean | undefined;
|
|
6
|
+
kind?: "success" | "danger" | "dark" | "basic" | undefined;
|
|
7
|
+
size?: "small" | "regular" | undefined;
|
|
8
|
+
id: string;
|
|
9
|
+
node: HTMLElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
click: MouseEvent;
|
|
13
|
+
} & {
|
|
14
|
+
[evt: string]: CustomEvent<any>;
|
|
15
|
+
};
|
|
16
|
+
slots: {
|
|
17
|
+
default: {};
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export type ButtonProps = typeof __propDef.props;
|
|
21
|
+
export type ButtonEvents = typeof __propDef.events;
|
|
22
|
+
export type ButtonSlots = typeof __propDef.slots;
|
|
23
|
+
export default class Button extends SvelteComponentTyped<ButtonProps, ButtonEvents, ButtonSlots> {
|
|
24
|
+
get type(): string | undefined;
|
|
25
|
+
/**accessor*/
|
|
26
|
+
set type(_: string | undefined);
|
|
27
|
+
get disabled(): boolean | undefined;
|
|
28
|
+
/**accessor*/
|
|
29
|
+
set disabled(_: boolean | undefined);
|
|
30
|
+
get kind(): "success" | "danger" | "dark" | "basic" | undefined;
|
|
31
|
+
/**accessor*/
|
|
32
|
+
set kind(_: "success" | "danger" | "dark" | "basic" | undefined);
|
|
33
|
+
get size(): "small" | "regular" | undefined;
|
|
34
|
+
/**accessor*/
|
|
35
|
+
set size(_: "small" | "regular" | undefined);
|
|
36
|
+
get id(): string;
|
|
37
|
+
/**accessor*/
|
|
38
|
+
set id(_: string);
|
|
39
|
+
get node(): HTMLElement;
|
|
40
|
+
/**accessor*/
|
|
41
|
+
set node(_: HTMLElement);
|
|
42
|
+
}
|
|
43
|
+
export {};
|
package/DataTable.svelte
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
<script lang="ts">export let rows;
|
|
2
|
+
export let columns;
|
|
3
|
+
</script>
|
|
4
|
+
|
|
5
|
+
<table class="data-table">
|
|
6
|
+
<thead class="data-table__header">
|
|
7
|
+
<tr>
|
|
8
|
+
{#each columns as column}
|
|
9
|
+
<th class="data-table__header__cell">
|
|
10
|
+
{column.title}
|
|
11
|
+
</th>
|
|
12
|
+
{/each}
|
|
13
|
+
</tr>
|
|
14
|
+
</thead>
|
|
15
|
+
|
|
16
|
+
<tbody class="data-table__body">
|
|
17
|
+
{#each rows as row}
|
|
18
|
+
<tr class="data-table__body__row">
|
|
19
|
+
{#each columns as { key, renderComponent }}
|
|
20
|
+
<td class="data-table__body__cell">
|
|
21
|
+
{#if renderComponent}
|
|
22
|
+
<svelte:component
|
|
23
|
+
this={renderComponent.component}
|
|
24
|
+
on:click={() => renderComponent.props.onclick(row)}
|
|
25
|
+
/>
|
|
26
|
+
{:else}
|
|
27
|
+
{row[key]}
|
|
28
|
+
{/if}
|
|
29
|
+
</td>
|
|
30
|
+
{/each}
|
|
31
|
+
</tr>
|
|
32
|
+
{/each}
|
|
33
|
+
</tbody>
|
|
34
|
+
</table>
|
|
35
|
+
|
|
36
|
+
<style>.font-color-blue {
|
|
37
|
+
color: #00b9ff;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.font-color-darkBlue {
|
|
41
|
+
color: #211d28;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.font-color-nightBlue {
|
|
45
|
+
color: #18151e;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.font-color-green {
|
|
49
|
+
color: #00d692;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.font-color-red {
|
|
53
|
+
color: #ff504d;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.font-color-yellow {
|
|
57
|
+
color: #ffe032;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.font-color-beige {
|
|
61
|
+
color: #f2ebe3;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.font-color-darkBeige {
|
|
65
|
+
color: #a9a29e;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.font-color-mediumGrey {
|
|
69
|
+
color: #464452;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.font-color-darkGrey {
|
|
73
|
+
color: #33323a;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.font-color-lightGrey {
|
|
77
|
+
color: #f5f5f5;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.data-table {
|
|
81
|
+
border: 1px solid #464452;
|
|
82
|
+
width: 100%;
|
|
83
|
+
}
|
|
84
|
+
.data-table__header {
|
|
85
|
+
font-size: 1.5em;
|
|
86
|
+
height: 4rem;
|
|
87
|
+
}
|
|
88
|
+
.data-table__header__cell {
|
|
89
|
+
border-bottom: 1px solid #464452;
|
|
90
|
+
}
|
|
91
|
+
.data-table__body__cell {
|
|
92
|
+
text-align: center;
|
|
93
|
+
vertical-align: middle;
|
|
94
|
+
}</style>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { SvelteComponent } from 'svelte';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
rows: {
|
|
6
|
+
[key: string]: string | number;
|
|
7
|
+
}[];
|
|
8
|
+
columns: {
|
|
9
|
+
key: string;
|
|
10
|
+
title: string;
|
|
11
|
+
renderComponent?: {
|
|
12
|
+
component: SvelteComponent;
|
|
13
|
+
props?: any;
|
|
14
|
+
} | undefined;
|
|
15
|
+
}[];
|
|
16
|
+
};
|
|
17
|
+
events: {
|
|
18
|
+
[evt: string]: CustomEvent<any>;
|
|
19
|
+
};
|
|
20
|
+
slots: {};
|
|
21
|
+
};
|
|
22
|
+
export type DataTableProps = typeof __propDef.props;
|
|
23
|
+
export type DataTableEvents = typeof __propDef.events;
|
|
24
|
+
export type DataTableSlots = typeof __propDef.slots;
|
|
25
|
+
export default class DataTable extends SvelteComponentTyped<DataTableProps, DataTableEvents, DataTableSlots> {
|
|
26
|
+
}
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
width?: string | undefined;
|
|
5
|
+
height?: string | undefined;
|
|
6
|
+
};
|
|
7
|
+
events: {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
};
|
|
10
|
+
slots: {};
|
|
11
|
+
};
|
|
12
|
+
export type IconBurgerProps = typeof __propDef.props;
|
|
13
|
+
export type IconBurgerEvents = typeof __propDef.events;
|
|
14
|
+
export type IconBurgerSlots = typeof __propDef.slots;
|
|
15
|
+
export default class IconBurger extends SvelteComponentTyped<IconBurgerProps, IconBurgerEvents, IconBurgerSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
width?: string | undefined;
|
|
5
|
+
height?: string | undefined;
|
|
6
|
+
};
|
|
7
|
+
events: {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
};
|
|
10
|
+
slots: {};
|
|
11
|
+
};
|
|
12
|
+
export type IconCloseProps = typeof __propDef.props;
|
|
13
|
+
export type IconCloseEvents = typeof __propDef.events;
|
|
14
|
+
export type IconCloseSlots = typeof __propDef.slots;
|
|
15
|
+
export default class IconClose extends SvelteComponentTyped<IconCloseProps, IconCloseEvents, IconCloseSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
<script
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export let fill = 'currentColor';
|
|
1
|
+
<script>export let width = "5rem";
|
|
2
|
+
export let height = "5rem";
|
|
3
|
+
export let fill = "currentColor";
|
|
5
4
|
</script>
|
|
6
5
|
|
|
7
6
|
<svg {width} {height} viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { SvelteComponentTyped } 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 IconFloppyDiskProps = typeof __propDef.props;
|
|
14
|
+
export type IconFloppyDiskEvents = typeof __propDef.events;
|
|
15
|
+
export type IconFloppyDiskSlots = typeof __propDef.slots;
|
|
16
|
+
export default class IconFloppyDisk extends SvelteComponentTyped<IconFloppyDiskProps, IconFloppyDiskEvents, IconFloppyDiskSlots> {
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
width?: string | undefined;
|
|
5
|
+
height?: string | undefined;
|
|
6
|
+
};
|
|
7
|
+
events: {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
};
|
|
10
|
+
slots: {};
|
|
11
|
+
};
|
|
12
|
+
export type IconInfoProps = typeof __propDef.props;
|
|
13
|
+
export type IconInfoEvents = typeof __propDef.events;
|
|
14
|
+
export type IconInfoSlots = typeof __propDef.slots;
|
|
15
|
+
export default class IconInfo extends SvelteComponentTyped<IconInfoProps, IconInfoEvents, IconInfoSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
width?: string | undefined;
|
|
5
|
+
height?: string | undefined;
|
|
6
|
+
};
|
|
7
|
+
events: {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
};
|
|
10
|
+
slots: {};
|
|
11
|
+
};
|
|
12
|
+
export type IconIrocoLogoProps = typeof __propDef.props;
|
|
13
|
+
export type IconIrocoLogoEvents = typeof __propDef.events;
|
|
14
|
+
export type IconIrocoLogoSlots = typeof __propDef.slots;
|
|
15
|
+
export default class IconIrocoLogo extends SvelteComponentTyped<IconIrocoLogoProps, IconIrocoLogoEvents, IconIrocoLogoSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
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>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { SvelteComponentTyped } 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 SvelteComponentTyped<IconMastodonProps, IconMastodonEvents, IconMastodonSlots> {
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
width?: string | undefined;
|
|
5
|
+
height?: string | undefined;
|
|
6
|
+
};
|
|
7
|
+
events: {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
};
|
|
10
|
+
slots: {};
|
|
11
|
+
};
|
|
12
|
+
export type IconMoreSignProps = typeof __propDef.props;
|
|
13
|
+
export type IconMoreSignEvents = typeof __propDef.events;
|
|
14
|
+
export type IconMoreSignSlots = typeof __propDef.slots;
|
|
15
|
+
export default class IconMoreSign extends SvelteComponentTyped<IconMoreSignProps, IconMoreSignEvents, IconMoreSignSlots> {
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
<script
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export let stroke = 'currentColor';
|
|
1
|
+
<script>export let width = "5rem";
|
|
2
|
+
export let height = "5rem";
|
|
3
|
+
export let stroke = "currentColor";
|
|
5
4
|
</script>
|
|
6
5
|
|
|
7
|
-
<svg
|
|
8
|
-
{width}
|
|
9
|
-
{height}
|
|
10
|
-
fill="none"
|
|
11
|
-
{stroke}
|
|
12
|
-
viewBox="0 0 24 24"
|
|
13
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
<svg {width} {height} fill="none" {stroke} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"
|
|
14
7
|
><path
|
|
15
8
|
stroke-linecap="round"
|
|
16
9
|
stroke-linejoin="round"
|