windmill-components 1.35.43 → 1.36.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/components/AppConnect.svelte +85 -59
- package/components/ArgInput.svelte +31 -14
- package/components/Button.svelte +15 -48
- package/components/Button.svelte.d.ts +1 -1
- package/components/CronInput.svelte +1 -1
- package/components/DisplayResult.svelte +31 -29
- package/components/Dropdown.svelte +9 -7
- package/components/Editor.svelte +10 -14
- package/components/EditorBar.svelte +115 -91
- package/components/FlowBuilder.svelte +63 -74
- package/components/FlowPreviewContent.svelte +44 -24
- package/components/FlowStatusViewer.svelte +2 -5
- package/components/FlowViewer.svelte +12 -10
- package/components/GroupModal.svelte +10 -1
- package/components/HighlightCode.svelte +4 -3
- package/components/InputTransformForm.svelte +15 -14
- package/components/InputTransformsViewer.svelte +1 -1
- package/components/InviteGlobalUser.svelte +8 -8
- package/components/InviteUser.svelte +9 -9
- package/components/ItemPicker.svelte +36 -29
- package/components/ItemPicker.svelte.d.ts +2 -1
- package/components/JobStatus.svelte +2 -1
- package/components/ModulePreview.svelte +7 -8
- package/components/Path.svelte +1 -1
- package/components/RadioButton.svelte +3 -2
- package/components/ResourceEditor.svelte +22 -34
- package/components/ResourceTypePicker.svelte +23 -34
- package/components/RunForm.svelte +23 -31
- package/components/SchemaEditor.svelte +16 -10
- package/components/SchemaForm.svelte +3 -1
- package/components/SchemaForm.svelte.d.ts +1 -0
- package/components/SchemaModal.svelte +18 -7
- package/components/ScriptBuilder.svelte +22 -17
- package/components/ScriptEditor.svelte +2 -1
- package/components/ScriptPicker.svelte +21 -11
- package/components/ScriptSchema.svelte +8 -11
- package/components/ScriptSchema.svelte.d.ts +0 -1
- package/components/ShareModal.svelte +6 -6
- package/components/SimpleEditor.svelte +10 -10
- package/components/StringTypeNarrowing.svelte +24 -30
- package/components/TestJobLoader.svelte +15 -7
- package/components/Tooltip.svelte +1 -1
- package/components/VariableEditor.svelte +15 -24
- package/components/common/actionRow/ActionRow.svelte +11 -6
- package/components/common/actionRow/ActionRow.svelte.d.ts +1 -0
- package/components/common/badge/Badge.svelte +2 -8
- package/components/common/badge/model.d.ts +1 -1
- package/components/common/button/Button.svelte +7 -4
- package/components/common/button/Button.svelte.d.ts +2 -0
- package/components/common/confirmationModal/ConfirmationModal.svelte +19 -2
- package/components/common/confirmationModal/UnsavedConfirmationModal.svelte +41 -0
- package/components/common/confirmationModal/UnsavedConfirmationModal.svelte.d.ts +14 -0
- package/components/common/confirmationModal/dirtyStore.d.ts +1 -0
- package/components/common/confirmationModal/dirtyStore.js +2 -0
- package/components/flows/FlowEditor.svelte +7 -7
- package/components/flows/FlowEditor.svelte.d.ts +3 -1
- package/components/flows/common/FlowCardHeader.svelte +1 -1
- package/components/flows/content/FlowEditorPanel.svelte +5 -6
- package/components/flows/content/FlowEditorPanel.svelte.d.ts +3 -1
- package/components/flows/content/FlowFailureModule.svelte +2 -4
- package/components/flows/content/FlowInput.svelte +5 -1
- package/components/flows/content/FlowInputs.svelte +27 -12
- package/components/flows/content/FlowInputs.svelte.d.ts +1 -0
- package/components/flows/content/FlowLoop.svelte +155 -25
- package/components/flows/content/FlowLoop.svelte.d.ts +5 -1
- package/components/flows/content/FlowLoopWrapper.svelte +9 -0
- package/components/flows/content/FlowLoopWrapper.svelte.d.ts +14 -0
- package/components/flows/content/FlowModule.svelte +31 -10
- package/components/flows/content/FlowModule.svelte.d.ts +1 -1
- package/components/flows/content/FlowModuleEarlyStop.svelte +76 -0
- package/components/flows/content/FlowModuleEarlyStop.svelte.d.ts +17 -0
- package/components/flows/content/FlowModuleHeader.svelte +90 -1
- package/components/flows/content/FlowModuleHeader.svelte.d.ts +3 -0
- package/components/flows/content/FlowModuleSuspend.svelte +27 -0
- package/components/flows/content/FlowModuleSuspend.svelte.d.ts +17 -0
- package/components/flows/content/FlowModuleWrapper.svelte +4 -6
- package/components/flows/content/FlowRetries.svelte +18 -18
- package/components/flows/content/FlowRetries.svelte.d.ts +4 -1
- package/components/flows/content/FlowSettings.svelte +39 -12
- package/components/flows/content/FlowSettings.svelte.d.ts +1 -0
- package/components/flows/content/RemoveStepConfirmationModal.svelte +1 -1
- package/components/flows/flowStateUtils.d.ts +1 -1
- package/components/flows/flowStateUtils.js +2 -2
- package/components/flows/header/FlowImportExportMenu.svelte +4 -5
- package/components/flows/header/FlowPreviewButtons.svelte +24 -16
- package/components/flows/map/FlowErrorHandlerItem.svelte +14 -8
- package/components/flows/map/FlowModuleSchemaItem.svelte +41 -19
- package/components/flows/map/FlowModuleSchemaItem.svelte.d.ts +6 -1
- package/components/flows/map/FlowModuleSchemaMap.svelte +86 -6
- package/components/flows/pickers/PickHubScript.svelte +2 -1
- package/components/flows/propPicker/PropPickerWrapper.svelte +3 -1
- package/components/flows/propPicker/PropPickerWrapper.svelte.d.ts +2 -0
- package/components/flows/types.d.ts +0 -1
- package/components/flows/utils.d.ts +2 -0
- package/components/flows/utils.js +19 -0
- package/components/icons/AirtableIcon.svelte +1 -1
- package/components/icons/DiscordIcon.svelte +1 -1
- package/components/icons/GCloudIcon.svelte +1 -1
- package/components/icons/GItlabIcon.svelte +1 -1
- package/components/icons/GSheetsIcon.svelte +1 -1
- package/components/icons/GcalIcon.svelte +1 -1
- package/components/icons/GdriveIcon.svelte +1 -1
- package/components/icons/GithubIcon.svelte +1 -1
- package/components/icons/GmailIcon.svelte +1 -1
- package/components/icons/MastodonIcon.svelte +1 -1
- package/components/icons/MatrixIcon.svelte +1 -1
- package/components/icons/PostgresIcon.svelte +1 -1
- package/components/icons/S3Icon.svelte +1 -1
- package/components/icons/Slack.svelte +1 -1
- package/components/icons/TogglIcon.svelte +8 -46
- package/components/jobs/JobDetail.svelte +1 -1
- package/components/propertyPicker/ObjectViewer.svelte +9 -12
- package/components/propertyPicker/ObjectViewer.svelte.d.ts +1 -0
- package/components/propertyPicker/PropPicker.svelte +85 -14
- package/components/script_editor/LogPanel.svelte +1 -1
- package/editorUtils.d.ts +3 -0
- package/editorUtils.js +1 -0
- package/gen/core/OpenAPI.js +1 -1
- package/gen/index.d.ts +1 -0
- package/gen/models/FlowModule.d.ts +2 -0
- package/gen/models/FlowValue.d.ts +0 -11
- package/gen/models/Retry.d.ts +11 -0
- package/gen/models/Retry.js +4 -0
- package/package.json +18 -15
- package/script_helpers.d.ts +4 -1
- package/script_helpers.js +48 -4
- package/utils.d.ts +2 -2
- package/utils.js +31 -18
- package/components/flows/content/FlowModuleAdvancedSettings.svelte +0 -64
- package/components/flows/content/FlowModuleAdvancedSettings.svelte.d.ts +0 -17
- package/components/flows/header/FlowEditorHeader.svelte +0 -23
- package/components/flows/header/FlowEditorHeader.svelte.d.ts +0 -14
- package/components/flows/header/FlowStatus.svelte +0 -36
- package/components/flows/header/FlowStatus.svelte.d.ts +0 -14
|
@@ -7,6 +7,7 @@ import SimpleEditor from '../../SimpleEditor.svelte';
|
|
|
7
7
|
import { sendUserToast } from '../../../utils';
|
|
8
8
|
import { faFileExport, faFileImport, faGlobe } from '@fortawesome/free-solid-svg-icons';
|
|
9
9
|
import Icon from 'svelte-awesome';
|
|
10
|
+
import { Button } from '../../common';
|
|
10
11
|
import { flowStore, initFlow } from '../flowStore';
|
|
11
12
|
import { cleanInputs } from '../utils';
|
|
12
13
|
let jsonSetterDrawer;
|
|
@@ -23,9 +24,9 @@ function importJson() {
|
|
|
23
24
|
<Menu placement="bottom-end">
|
|
24
25
|
<button
|
|
25
26
|
slot="trigger"
|
|
26
|
-
class="flex items-center
|
|
27
|
+
class="flex items-center text-sm border focus:outline-none focus:ring-4 font-medium rounded-md text-gray-800 bg-white hover:bg-gray-100 focus:ring-gray-300 px-4 py-2"
|
|
27
28
|
>
|
|
28
|
-
Import/Export
|
|
29
|
+
Import/Export
|
|
29
30
|
</button>
|
|
30
31
|
<div class="divide-y divide-gray-200">
|
|
31
32
|
<MenuItem on:click={() => jsonSetterDrawer.toggleDrawer()}>
|
|
@@ -41,9 +42,7 @@ function importJson() {
|
|
|
41
42
|
|
|
42
43
|
<Drawer bind:this={jsonSetterDrawer} size="800px">
|
|
43
44
|
<DrawerContent title="Import JSON" on:close={() => jsonSetterDrawer.toggleDrawer()}>
|
|
44
|
-
<
|
|
45
|
-
Import
|
|
46
|
-
</button>
|
|
45
|
+
<Button size="sm" on:click={importJson}>Import</Button>
|
|
47
46
|
<SimpleEditor bind:code={pendingJson} lang="json" class="h-full" />
|
|
48
47
|
</DrawerContent>
|
|
49
48
|
</Drawer>
|
|
@@ -16,23 +16,11 @@ $: upToDisabled = [
|
|
|
16
16
|
].includes($selectedId);
|
|
17
17
|
</script>
|
|
18
18
|
|
|
19
|
-
<span
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
disabled={upToDisabled}
|
|
23
|
-
color="light"
|
|
24
|
-
variant="border"
|
|
25
|
-
on:click={() => {
|
|
26
|
-
previewMode = 'upTo'
|
|
27
|
-
|
|
28
|
-
previewOpen = !previewOpen
|
|
29
|
-
}}
|
|
30
|
-
>
|
|
31
|
-
Test up to this step
|
|
32
|
-
<Icon data={faPlay} class="ml-2" scale={0.8} />
|
|
33
|
-
</Button>
|
|
34
|
-
|
|
19
|
+
<span
|
|
20
|
+
class="flex flex-row-reverse justify-between flex-wrap gap-2 w-full py-2 px-4 bg-white border-b border-t"
|
|
21
|
+
>
|
|
35
22
|
<Button
|
|
23
|
+
btnClasses="grow"
|
|
36
24
|
on:click={() => {
|
|
37
25
|
previewMode = 'whole'
|
|
38
26
|
previewOpen = !previewOpen
|
|
@@ -42,6 +30,26 @@ $: upToDisabled = [
|
|
|
42
30
|
Test flow
|
|
43
31
|
<Icon data={faPlay} class="ml-2" scale={0.8} />
|
|
44
32
|
</Button>
|
|
33
|
+
{#if !upToDisabled}
|
|
34
|
+
<Button
|
|
35
|
+
btnClasses="grow"
|
|
36
|
+
size="sm"
|
|
37
|
+
disabled={upToDisabled}
|
|
38
|
+
color="light"
|
|
39
|
+
variant="border"
|
|
40
|
+
on:click={() => {
|
|
41
|
+
previewMode = 'upTo'
|
|
42
|
+
|
|
43
|
+
previewOpen = !previewOpen
|
|
44
|
+
}}
|
|
45
|
+
>
|
|
46
|
+
Test up to step {$selectedId
|
|
47
|
+
.split('-')
|
|
48
|
+
.map((x) => (Number.isNaN(Number(x)) ? x : Number(x) + 1))
|
|
49
|
+
.join(' ')}
|
|
50
|
+
<Icon data={faPlay} class="ml-2" scale={0.8} />
|
|
51
|
+
</Button>
|
|
52
|
+
{/if}
|
|
45
53
|
</span>
|
|
46
54
|
|
|
47
55
|
<Drawer bind:open={previewOpen} size="800px">
|
|
@@ -30,14 +30,16 @@ function onToggle() {
|
|
|
30
30
|
on:click={() => {
|
|
31
31
|
if ($flowStore.value.failure_module) {
|
|
32
32
|
select('failure')
|
|
33
|
+
} else {
|
|
34
|
+
onToggle()
|
|
33
35
|
}
|
|
34
36
|
}}
|
|
35
37
|
class={classNames(
|
|
36
|
-
'border rounded-md p-2 bg-white text-sm cursor-pointer mt-4 flex flex-col',
|
|
38
|
+
'border rounded-md p-2 bg-white text-sm cursor-pointer mt-4 flex flex-col overflow-x-hidden',
|
|
37
39
|
$selectedId.includes('failure') ? 'outline outline-offset-1 outline-2 outline-slate-900' : ''
|
|
38
40
|
)}
|
|
39
41
|
>
|
|
40
|
-
<div class=" flex justify-between items-center">
|
|
42
|
+
<div class=" flex justify-between items-center flex-wrap">
|
|
41
43
|
<div>
|
|
42
44
|
<Icon data={faBug} class="mr-2" />
|
|
43
45
|
<span class="font-bold">Error handler</span>
|
|
@@ -45,10 +47,14 @@ function onToggle() {
|
|
|
45
47
|
<Toggle checked={Boolean($flowStore.value.failure_module)} on:change={onToggle} />
|
|
46
48
|
</div>
|
|
47
49
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
50
|
+
<div class="w-full truncate block">
|
|
51
|
+
{#if Boolean($flowStore.value.failure_module)}
|
|
52
|
+
<span
|
|
53
|
+
>{$flowStore.value.failure_module?.summary ||
|
|
54
|
+
($flowStore.value.failure_module?.value.type === 'rawscript'
|
|
55
|
+
? `Inline ${$flowStore.value.failure_module?.value.language}`
|
|
56
|
+
: 'Select a script')}</span
|
|
57
|
+
>
|
|
58
|
+
{/if}
|
|
59
|
+
</div>
|
|
54
60
|
</div>
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
<script>import Button from '../../common/button/Button.svelte';
|
|
2
2
|
import { classNames } from '../../../utils';
|
|
3
|
-
import { faTrashAlt } from '@fortawesome/free-solid-svg-icons';
|
|
3
|
+
import { faBed, faRepeat, faStop, faTrashAlt } from '@fortawesome/free-solid-svg-icons';
|
|
4
4
|
import { createEventDispatcher } from 'svelte';
|
|
5
|
+
import Icon from 'svelte-awesome';
|
|
5
6
|
export let color = 'blue';
|
|
6
7
|
export let isFirst = false;
|
|
7
8
|
export let isLast = false;
|
|
8
9
|
export let hasLine = true;
|
|
9
10
|
export let selected = false;
|
|
10
11
|
export let deletable = false;
|
|
12
|
+
export let retry = false;
|
|
13
|
+
export let earlyStop = false;
|
|
14
|
+
export let suspend = false;
|
|
11
15
|
const margin = isLast ? '' : isFirst ? 'mb-0.5' : 'my-0.5';
|
|
12
16
|
const dispatch = createEventDispatcher();
|
|
13
17
|
</script>
|
|
@@ -30,24 +34,42 @@ const dispatch = createEventDispatcher();
|
|
|
30
34
|
<slot name="icon" />
|
|
31
35
|
</div>
|
|
32
36
|
</div>
|
|
33
|
-
<div
|
|
34
|
-
class=
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
37
|
+
<div class="relative w-full">
|
|
38
|
+
<div class="absolute text-sm right-14 -bottom-3 flex flex-row gap-1"
|
|
39
|
+
>{#if retry}
|
|
40
|
+
<div class="bg-white rounded border text-gray-600 px-1"
|
|
41
|
+
><Icon scale={0.8} data={faRepeat} /></div
|
|
42
|
+
>
|
|
43
|
+
{/if}{#if earlyStop}
|
|
44
|
+
<div class="bg-white rounded border text-gray-600 px-1"
|
|
45
|
+
><Icon scale={0.8} data={faStop} /></div
|
|
46
|
+
>
|
|
47
|
+
{/if}
|
|
48
|
+
{#if suspend}
|
|
49
|
+
<div class="bg-white rounded border text-gray-600 px-1"
|
|
50
|
+
><Icon scale={0.8} data={faBed} /></div
|
|
51
|
+
>
|
|
52
|
+
{/if}</div
|
|
53
|
+
>
|
|
54
|
+
<div
|
|
55
|
+
class={classNames(
|
|
56
|
+
'border w-full rounded-sm p-2 bg-white text-sm cursor-pointer flex justify-between items-center space-x-2 overflow-hidden',
|
|
57
|
+
margin,
|
|
58
|
+
selected ? 'outline outline-offset-1 outline-2 outline-gray-600' : ''
|
|
59
|
+
)}
|
|
60
|
+
>
|
|
61
|
+
<slot name="content" class="w-full" />
|
|
62
|
+
{#if deletable}
|
|
63
|
+
<Button
|
|
64
|
+
on:click={(event) => dispatch('delete', { event })}
|
|
65
|
+
startIcon={{ icon: faTrashAlt }}
|
|
66
|
+
iconOnly={true}
|
|
67
|
+
color="light"
|
|
68
|
+
variant="border"
|
|
69
|
+
size="xs"
|
|
70
|
+
/>
|
|
71
|
+
{/if}
|
|
72
|
+
</div>
|
|
51
73
|
</div>
|
|
52
74
|
</div>
|
|
53
75
|
|
|
@@ -7,6 +7,9 @@ declare const __propDef: {
|
|
|
7
7
|
hasLine?: boolean | undefined;
|
|
8
8
|
selected?: boolean | undefined;
|
|
9
9
|
deletable?: boolean | undefined;
|
|
10
|
+
retry?: boolean | undefined;
|
|
11
|
+
earlyStop?: boolean | undefined;
|
|
12
|
+
suspend?: boolean | undefined;
|
|
10
13
|
};
|
|
11
14
|
events: {
|
|
12
15
|
click: MouseEvent;
|
|
@@ -16,7 +19,9 @@ declare const __propDef: {
|
|
|
16
19
|
};
|
|
17
20
|
slots: {
|
|
18
21
|
icon: {};
|
|
19
|
-
content: {
|
|
22
|
+
content: {
|
|
23
|
+
class: string;
|
|
24
|
+
};
|
|
20
25
|
};
|
|
21
26
|
};
|
|
22
27
|
export declare type FlowModuleSchemaItemProps = typeof __propDef.props;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script>import { getContext } from 'svelte';
|
|
2
2
|
import FlowModuleSchemaItem from './FlowModuleSchemaItem.svelte';
|
|
3
3
|
import Icon from 'svelte-awesome';
|
|
4
|
-
import { faPen, faPlus, faSliders } from '@fortawesome/free-solid-svg-icons';
|
|
4
|
+
import { faCalendarAlt, faPen, faPlus, faSliders } from '@fortawesome/free-solid-svg-icons';
|
|
5
5
|
import { emptyFlowModuleState, isEmptyFlowModule } from '../flowStateUtils';
|
|
6
6
|
import { classNames, emptyModule } from '../../../utils';
|
|
7
7
|
import FlowErrorHandlerItem from './FlowErrorHandlerItem.svelte';
|
|
@@ -9,7 +9,7 @@ import RemoveStepConfirmationModal from '../content/RemoveStepConfirmationModal.
|
|
|
9
9
|
export let prefix = undefined;
|
|
10
10
|
export let modules;
|
|
11
11
|
export let moduleStates;
|
|
12
|
-
const { select, selectedId } = getContext('FlowEditorContext');
|
|
12
|
+
const { select, selectedId, schedule } = getContext('FlowEditorContext');
|
|
13
13
|
function insertAtIndex(index) {
|
|
14
14
|
moduleStates.splice(index, 0, emptyFlowModuleState());
|
|
15
15
|
modules.splice(index, 0, emptyModule());
|
|
@@ -41,7 +41,15 @@ $: confirmationModalOpen = indexToRemove !== undefined;
|
|
|
41
41
|
)}
|
|
42
42
|
>
|
|
43
43
|
<Icon data={faSliders} class="mr-2" />
|
|
44
|
-
<span class="font-bold"
|
|
44
|
+
<span class="font-bold flex flex-row justify-between w-full flex-wrap gap-2"
|
|
45
|
+
>Settings <span
|
|
46
|
+
class={classNames('badge', $schedule?.enabled ? 'badge-on' : 'badge-off')}
|
|
47
|
+
on:click|stopPropagation={() => select('settings-schedule')}
|
|
48
|
+
>
|
|
49
|
+
{$schedule.cron}
|
|
50
|
+
<Icon class={$schedule.cron ? 'ml-2' : ''} data={faCalendarAlt} scale={0.8} />
|
|
51
|
+
</span></span
|
|
52
|
+
>
|
|
45
53
|
</div>
|
|
46
54
|
|
|
47
55
|
<FlowModuleSchemaItem
|
|
@@ -53,7 +61,7 @@ $: confirmationModalOpen = indexToRemove !== undefined;
|
|
|
53
61
|
<div slot="icon">
|
|
54
62
|
<Icon data={faPen} scale={0.8} />
|
|
55
63
|
</div>
|
|
56
|
-
<div slot="content">
|
|
64
|
+
<div slot="content" class="flex flex-row">
|
|
57
65
|
<span>Inputs</span>
|
|
58
66
|
</div>
|
|
59
67
|
</FlowModuleSchemaItem>
|
|
@@ -74,12 +82,15 @@ $: confirmationModalOpen = indexToRemove !== undefined;
|
|
|
74
82
|
on:delete={() => removeAtIndex(index)}
|
|
75
83
|
on:click={() => select(['loop', String(index)].join('-'))}
|
|
76
84
|
selected={$selectedId === ['loop', String(index)].join('-')}
|
|
85
|
+
retry={mod.retry?.constant != undefined || mod.retry?.exponential != undefined}
|
|
86
|
+
earlyStop={mod.stop_after_if != undefined}
|
|
87
|
+
suspend={Boolean(mod.suspend)}
|
|
77
88
|
>
|
|
78
89
|
<div slot="icon">
|
|
79
90
|
<span>{index + 1}</span>
|
|
80
91
|
</div>
|
|
81
|
-
<div slot="content">
|
|
82
|
-
<span>For loop</span>
|
|
92
|
+
<div slot="content" class="truncate block w-full">
|
|
93
|
+
<span>{mod.summary || 'For loop'}</span>
|
|
83
94
|
</div>
|
|
84
95
|
</FlowModuleSchemaItem>
|
|
85
96
|
|
|
@@ -116,6 +127,9 @@ $: confirmationModalOpen = indexToRemove !== undefined;
|
|
|
116
127
|
indexToRemove = index
|
|
117
128
|
}
|
|
118
129
|
}}
|
|
130
|
+
retry={mod.retry?.constant != undefined || mod.retry?.exponential != undefined}
|
|
131
|
+
earlyStop={mod.stop_after_if != undefined}
|
|
132
|
+
suspend={Boolean(mod.suspend)}
|
|
119
133
|
>
|
|
120
134
|
<div slot="icon">
|
|
121
135
|
<span>{index + 1}</span>
|
|
@@ -159,3 +173,69 @@ $: confirmationModalOpen = indexToRemove !== undefined;
|
|
|
159
173
|
}
|
|
160
174
|
}}
|
|
161
175
|
/>
|
|
176
|
+
|
|
177
|
+
<style>
|
|
178
|
+
.badge {
|
|
179
|
+
|
|
180
|
+
display: flex;
|
|
181
|
+
|
|
182
|
+
cursor: pointer;
|
|
183
|
+
|
|
184
|
+
align-items: center;
|
|
185
|
+
|
|
186
|
+
white-space: nowrap;
|
|
187
|
+
|
|
188
|
+
border-radius: 0.25rem;
|
|
189
|
+
|
|
190
|
+
border-width: 1px;
|
|
191
|
+
|
|
192
|
+
padding-left: 0.625rem;
|
|
193
|
+
|
|
194
|
+
padding-right: 0.625rem;
|
|
195
|
+
|
|
196
|
+
padding-top: 0.125rem;
|
|
197
|
+
|
|
198
|
+
padding-bottom: 0.125rem;
|
|
199
|
+
|
|
200
|
+
font-size: 0.875rem;
|
|
201
|
+
|
|
202
|
+
line-height: 1.25rem;
|
|
203
|
+
|
|
204
|
+
font-weight: 500
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.badge-on {
|
|
208
|
+
|
|
209
|
+
--tw-bg-opacity: 1;
|
|
210
|
+
|
|
211
|
+
background-color: rgb(225 239 254 / var(--tw-bg-opacity));
|
|
212
|
+
|
|
213
|
+
--tw-text-opacity: 1;
|
|
214
|
+
|
|
215
|
+
color: rgb(30 66 159 / var(--tw-text-opacity))
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.badge-on:hover {
|
|
219
|
+
|
|
220
|
+
--tw-bg-opacity: 1;
|
|
221
|
+
|
|
222
|
+
background-color: rgb(195 221 253 / var(--tw-bg-opacity))
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.badge-off {
|
|
226
|
+
|
|
227
|
+
--tw-bg-opacity: 1;
|
|
228
|
+
|
|
229
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
|
230
|
+
|
|
231
|
+
--tw-text-opacity: 1;
|
|
232
|
+
|
|
233
|
+
color: rgb(31 41 55 / var(--tw-text-opacity))
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.badge-off:hover {
|
|
237
|
+
|
|
238
|
+
--tw-bg-opacity: 1;
|
|
239
|
+
|
|
240
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity))
|
|
241
|
+
}</style>
|
|
@@ -6,7 +6,7 @@ import { createEventDispatcher } from 'svelte';
|
|
|
6
6
|
import { Script } from '../../../gen';
|
|
7
7
|
export let kind;
|
|
8
8
|
let items;
|
|
9
|
-
$: items = $hubScripts?.filter((x) => x.kind == kind)
|
|
9
|
+
$: items = $hubScripts?.filter((x) => x.kind == kind);
|
|
10
10
|
let itemPicker;
|
|
11
11
|
const dispatch = createEventDispatcher();
|
|
12
12
|
</script>
|
|
@@ -21,6 +21,7 @@ const dispatch = createEventDispatcher();
|
|
|
21
21
|
loadItems={async () => {
|
|
22
22
|
return items
|
|
23
23
|
}}
|
|
24
|
+
noItemMessage="Hub not reachable. If your environment is air gapped, contact sales@windmill.dev to setup a local mirror."
|
|
24
25
|
/>
|
|
25
26
|
|
|
26
27
|
<FlowScriptPicker
|
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
</script>
|
|
3
3
|
|
|
4
4
|
<script>import PropPicker from '../../propertyPicker/PropPicker.svelte';
|
|
5
|
-
import { setContext } from 'svelte';
|
|
5
|
+
import { createEventDispatcher, setContext } from 'svelte';
|
|
6
6
|
import { HSplitPane } from 'svelte-split-pane';
|
|
7
7
|
import { writable } from 'svelte/store';
|
|
8
8
|
export let pickableProperties = {};
|
|
9
9
|
const propPickerConfig = writable(undefined);
|
|
10
|
+
const dispatch = createEventDispatcher();
|
|
10
11
|
setContext('PropPickerWrapper', {
|
|
11
12
|
propPickerConfig,
|
|
12
13
|
focusProp: (propName, insertionMode, onSelect) => {
|
|
@@ -33,6 +34,7 @@ setContext('PropPickerWrapper', {
|
|
|
33
34
|
<PropPicker
|
|
34
35
|
{pickableProperties}
|
|
35
36
|
on:select={({ detail }) => {
|
|
37
|
+
dispatch('select', detail)
|
|
36
38
|
$propPickerConfig?.onSelect(detail)
|
|
37
39
|
propPickerConfig.set(undefined)
|
|
38
40
|
}}
|
|
@@ -2,6 +2,8 @@ import type { Schema } from '../../common';
|
|
|
2
2
|
import { type Flow, type FlowModule, type InputTransform, type Job } from '../../gen';
|
|
3
3
|
export declare function cleanInputs(flow: Flow | any): Flow;
|
|
4
4
|
export declare function getTypeAsString(arg: any): string;
|
|
5
|
+
export declare function selectedIdToIndexes(selectedId: string): number[];
|
|
6
|
+
export declare function selectedIdToModule(selectedId: string, flow: Flow): FlowModule;
|
|
5
7
|
export declare function loadSchemaFromModule(module: FlowModule): Promise<{
|
|
6
8
|
input_transforms: Record<string, InputTransform>;
|
|
7
9
|
schema: Schema;
|
|
@@ -35,6 +35,25 @@ export function getTypeAsString(arg) {
|
|
|
35
35
|
}
|
|
36
36
|
return typeof arg;
|
|
37
37
|
}
|
|
38
|
+
export function selectedIdToIndexes(selectedId) {
|
|
39
|
+
const splitted = selectedId.split('-');
|
|
40
|
+
if (splitted[0] == 'loop') {
|
|
41
|
+
return [Number(splitted[1])];
|
|
42
|
+
}
|
|
43
|
+
else {
|
|
44
|
+
return splitted.map(Number);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
export function selectedIdToModule(selectedId, flow) {
|
|
48
|
+
const [p, c] = selectedIdToIndexes(selectedId);
|
|
49
|
+
const pm = flow.value.modules[p];
|
|
50
|
+
if (c && pm.value.type == 'forloopflow') {
|
|
51
|
+
return pm.value.modules[c];
|
|
52
|
+
}
|
|
53
|
+
else {
|
|
54
|
+
return pm;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
38
57
|
export async function loadSchemaFromModule(module) {
|
|
39
58
|
const mod = module.value;
|
|
40
59
|
if (mod.type == 'rawscript' || mod.type === 'script') {
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 50 50"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
>
|
|
14
14
|
<path
|
|
15
15
|
d="M 24.505859 4.0078125 C 23.980484 4.0080625 23.454344 4.1114062 22.964844 4.3164062 L 4.2226562 11.646484 C 3.4796562 11.959484 3 12.683281 3 13.488281 C 2.999 14.293281 3.4771406 15.017797 4.2441406 15.341797 L 23.236328 22.775391 C 23.613328 22.935391 24.018969 23.013672 24.417969 23.013672 C 24.802969 23.013672 25.181391 22.939875 25.525391 22.796875 L 45.771484 15.330078 C 46.519484 15.018078 47.001953 14.292422 47.001953 13.482422 C 47.000953 12.672422 46.516422 11.949047 45.732422 11.623047 L 26.046875 4.3144531 C 25.556875 4.1104531 25.031234 4.0075625 24.505859 4.0078125 z M 24.498047 6.0097656 C 24.770047 6.0097656 25.0455 6.0647813 25.3125 6.1757812 L 45.041016 13.46875 L 24.794922 20.935547 C 24.551922 21.039547 24.266188 21.039828 23.992188 20.923828 L 4.9765625 13.5 L 23.705078 6.1738281 L 23.728516 6.1640625 C 23.972516 6.0610625 24.233047 6.0097656 24.498047 6.0097656 z M 1.9980469 17.001953 C 0.94204687 17.001953 -2.9605947e-16 17.853906 0 19.003906 L 0 34.970703 C 0 36.129703 0.95195312 36.972656 2.0019531 36.972656 C 2.2979531 36.972656 2.6015312 36.906766 2.8945312 36.759766 L 20.894531 27.998047 C 22.425531 27.232047 22.349531 25.022281 20.769531 24.363281 L 2.7695312 17.15625 C 2.5135313 17.05125 2.2520469 17.001953 1.9980469 17.001953 z M 48.001953 17.001953 C 47.760953 17.001953 47.514484 17.045625 47.271484 17.140625 L 28.271484 24.505859 C 27.505484 24.806859 27 25.544188 27 26.367188 L 27 42.998047 C 27 44.146047 27.940047 45 28.998047 45 C 29.239047 45 29.485516 44.956328 29.728516 44.861328 L 48.728516 37.425781 C 49.495516 37.125781 50 36.387453 50 35.564453 L 50 19.003906 C 50 17.855906 49.059953 17.001953 48.001953 17.001953 z M 2.0058594 19.003906 L 2.0253906 19.013672 L 20.017578 26.201172 L 2 34.970703 L 2.0058594 19.003906 z M 48 19.003906 L 48 35.564453 L 29 42.998047 L 28.994141 26.371094 L 48 19.003906 z"
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 50 50"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
><path
|
|
14
14
|
d="M 18.90625 7 C 18.90625 7 12.539063 7.4375 8.375 10.78125 C 8.355469 10.789063 8.332031 10.800781 8.3125 10.8125 C 7.589844 11.480469 7.046875 12.515625 6.375 14 C 5.703125 15.484375 4.992188 17.394531 4.34375 19.53125 C 3.050781 23.808594 2 29.058594 2 34 C 1.996094 34.175781 2.039063 34.347656 2.125 34.5 C 3.585938 37.066406 6.273438 38.617188 8.78125 39.59375 C 11.289063 40.570313 13.605469 40.960938 14.78125 41 C 15.113281 41.011719 15.429688 40.859375 15.625 40.59375 L 18.0625 37.21875 C 20.027344 37.683594 22.332031 38 25 38 C 27.667969 38 29.972656 37.683594 31.9375 37.21875 L 34.375 40.59375 C 34.570313 40.859375 34.886719 41.011719 35.21875 41 C 36.394531 40.960938 38.710938 40.570313 41.21875 39.59375 C 43.726563 38.617188 46.414063 37.066406 47.875 34.5 C 47.960938 34.347656 48.003906 34.175781 48 34 C 48 29.058594 46.949219 23.808594 45.65625 19.53125 C 45.007813 17.394531 44.296875 15.484375 43.625 14 C 42.953125 12.515625 42.410156 11.480469 41.6875 10.8125 C 41.667969 10.800781 41.644531 10.789063 41.625 10.78125 C 37.460938 7.4375 31.09375 7 31.09375 7 C 31.019531 6.992188 30.949219 6.992188 30.875 7 C 30.527344 7.046875 30.234375 7.273438 30.09375 7.59375 C 30.09375 7.59375 29.753906 8.339844 29.53125 9.40625 C 27.582031 9.09375 25.941406 9 25 9 C 24.058594 9 22.417969 9.09375 20.46875 9.40625 C 20.246094 8.339844 19.90625 7.59375 19.90625 7.59375 C 19.734375 7.203125 19.332031 6.964844 18.90625 7 Z M 18.28125 9.15625 C 18.355469 9.359375 18.40625 9.550781 18.46875 9.78125 C 16.214844 10.304688 13.746094 11.160156 11.4375 12.59375 C 11.074219 12.746094 10.835938 13.097656 10.824219 13.492188 C 10.816406 13.882813 11.039063 14.246094 11.390625 14.417969 C 11.746094 14.585938 12.167969 14.535156 12.46875 14.28125 C 17.101563 11.410156 22.996094 11 25 11 C 27.003906 11 32.898438 11.410156 37.53125 14.28125 C 37.832031 14.535156 38.253906 14.585938 38.609375 14.417969 C 38.960938 14.246094 39.183594 13.882813 39.175781 13.492188 C 39.164063 13.097656 38.925781 12.746094 38.5625 12.59375 C 36.253906 11.160156 33.785156 10.304688 31.53125 9.78125 C 31.59375 9.550781 31.644531 9.359375 31.71875 9.15625 C 32.859375 9.296875 37.292969 9.894531 40.3125 12.28125 C 40.507813 12.460938 41.1875 13.460938 41.8125 14.84375 C 42.4375 16.226563 43.09375 18.027344 43.71875 20.09375 C 44.9375 24.125 45.921875 29.097656 45.96875 33.65625 C 44.832031 35.496094 42.699219 36.863281 40.5 37.71875 C 38.5 38.496094 36.632813 38.84375 35.65625 38.9375 L 33.96875 36.65625 C 34.828125 36.378906 35.601563 36.078125 36.28125 35.78125 C 38.804688 34.671875 40.15625 33.5 40.15625 33.5 C 40.570313 33.128906 40.605469 32.492188 40.234375 32.078125 C 39.863281 31.664063 39.226563 31.628906 38.8125 32 C 38.8125 32 37.765625 32.957031 35.46875 33.96875 C 34.625 34.339844 33.601563 34.707031 32.4375 35.03125 C 32.167969 35 31.898438 35.078125 31.6875 35.25 C 29.824219 35.703125 27.609375 36 25 36 C 22.371094 36 20.152344 35.675781 18.28125 35.21875 C 18.070313 35.078125 17.8125 35.019531 17.5625 35.0625 C 16.394531 34.738281 15.378906 34.339844 14.53125 33.96875 C 12.234375 32.957031 11.1875 32 11.1875 32 C 10.960938 31.789063 10.648438 31.699219 10.34375 31.75 C 9.957031 31.808594 9.636719 32.085938 9.53125 32.464844 C 9.421875 32.839844 9.546875 33.246094 9.84375 33.5 C 9.84375 33.5 11.195313 34.671875 13.71875 35.78125 C 14.398438 36.078125 15.171875 36.378906 16.03125 36.65625 L 14.34375 38.9375 C 13.367188 38.84375 11.5 38.496094 9.5 37.71875 C 7.300781 36.863281 5.167969 35.496094 4.03125 33.65625 C 4.078125 29.097656 5.0625 24.125 6.28125 20.09375 C 6.90625 18.027344 7.5625 16.226563 8.1875 14.84375 C 8.8125 13.460938 9.492188 12.460938 9.6875 12.28125 C 12.707031 9.894531 17.140625 9.296875 18.28125 9.15625 Z M 18.5 21 C 15.949219 21 14 23.316406 14 26 C 14 28.683594 15.949219 31 18.5 31 C 21.050781 31 23 28.683594 23 26 C 23 23.316406 21.050781 21 18.5 21 Z M 31.5 21 C 28.949219 21 27 23.316406 27 26 C 27 28.683594 28.949219 31 31.5 31 C 34.050781 31 36 28.683594 36 26 C 36 23.316406 34.050781 21 31.5 21 Z M 18.5 23 C 19.816406 23 21 24.265625 21 26 C 21 27.734375 19.816406 29 18.5 29 C 17.183594 29 16 27.734375 16 26 C 16 24.265625 17.183594 23 18.5 23 Z M 31.5 23 C 32.816406 23 34 24.265625 34 26 C 34 27.734375 32.816406 29 31.5 29 C 30.183594 29 29 27.734375 29 26 C 29 24.265625 30.183594 23 31.5 23 Z"
|
|
15
15
|
/></svg
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 50 50"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
><path
|
|
14
14
|
d="M 15.6875 4 C 14.113281 4 12.652344 4.867188 11.875 6.25 L 2.59375 22.78125 C 1.816406 24.160156 1.816406 25.839844 2.59375 27.21875 L 11.875 43.75 C 12.652344 45.132813 14.113281 46 15.6875 46 L 34.3125 46 C 35.886719 46 37.347656 45.132813 38.125 43.75 L 47.40625 27.21875 C 48.183594 25.839844 48.183594 24.160156 47.40625 22.78125 L 38.125 6.25 C 37.347656 4.867188 35.886719 4 34.3125 4 Z M 15.6875 6 L 34.3125 6 C 35.15625 6 35.941406 6.449219 36.375 7.21875 L 39.0625 12 L 17.5 12 L 17.21875 12.5 L 11.15625 23 L 7.90625 17.375 L 13.625 7.21875 C 14.058594 6.449219 14.84375 6 15.6875 6 Z M 18.65625 14 L 31.34375 14 L 37.71875 25 L 34.125 31.21875 L 31.34375 36 L 18.65625 36 L 17.5 34.03125 L 14.90625 29.53125 L 12.28125 25 Z M 33.65625 14 L 40.1875 14 L 45.6875 23.75 C 46.121094 24.519531 46.121094 25.480469 45.6875 26.25 L 36.375 42.78125 C 35.941406 43.550781 35.15625 44 34.3125 44 L 29.0625 44 L 32.5 38 L 32.78125 37.5 L 39.71875 25.5 L 40 25 L 39.71875 24.5 Z M 25 19 C 21.699219 19 19 21.699219 19 25 C 19 28.300781 21.699219 31 25 31 C 28.300781 31 31 28.300781 31 25 C 31 21.699219 28.300781 19 25 19 Z M 6.75 19.40625 L 10 25 L 10.28125 25.5 L 15.78125 35.03125 L 17.21875 37.5 L 17.5 38 L 30.1875 38 L 26.71875 44 L 15.6875 44 C 14.84375 44 14.058594 43.550781 13.625 42.78125 L 4.3125 26.25 C 3.878906 25.480469 3.878906 24.519531 4.3125 23.75 Z M 25 21 C 27.222656 21 29 22.777344 29 25 C 29 27.222656 27.222656 29 25 29 C 22.777344 29 21 27.222656 21 25 C 21 22.777344 22.777344 21 25 21 Z"
|
|
15
15
|
/></svg
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 50 50"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
><path
|
|
14
14
|
d="M 38.011719 4 C 37.574219 3.996094 37.183594 4.273438 37.046875 4.691406 L 32.074219 20 L 17.925781 20 L 12.953125 4.691406 C 12.820313 4.289063 12.449219 4.011719 12.023438 4 C 11.597656 3.992188 11.214844 4.25 11.0625 4.648438 L 5.070313 20.640625 C 5.066406 20.640625 5.066406 20.644531 5.0625 20.648438 L 2.0625 28.648438 C 1.90625 29.070313 2.046875 29.542969 2.414063 29.808594 L 24.40625 45.800781 L 24.410156 45.808594 C 24.414063 45.808594 24.414063 45.808594 24.414063 45.8125 C 24.425781 45.820313 24.441406 45.828125 24.453125 45.835938 C 24.46875 45.84375 24.480469 45.855469 24.496094 45.863281 C 24.5 45.863281 24.5 45.867188 24.503906 45.867188 C 24.503906 45.867188 24.507813 45.871094 24.511719 45.871094 C 24.515625 45.875 24.519531 45.878906 24.527344 45.878906 C 24.53125 45.882813 24.539063 45.886719 24.542969 45.890625 C 24.5625 45.898438 24.585938 45.910156 24.609375 45.917969 C 24.609375 45.917969 24.609375 45.917969 24.609375 45.921875 C 24.632813 45.929688 24.65625 45.9375 24.675781 45.945313 C 24.679688 45.945313 24.679688 45.945313 24.683594 45.949219 C 24.699219 45.953125 24.714844 45.957031 24.734375 45.964844 C 24.742188 45.964844 24.75 45.96875 24.761719 45.96875 C 24.761719 45.972656 24.761719 45.972656 24.761719 45.96875 C 24.78125 45.976563 24.800781 45.980469 24.820313 45.984375 C 24.847656 45.988281 24.871094 45.992188 24.898438 45.996094 C 24.9375 45.996094 24.980469 46 25.019531 46 C 25.058594 45.996094 25.09375 45.996094 25.128906 45.988281 C 25.144531 45.988281 25.15625 45.988281 25.171875 45.984375 C 25.171875 45.984375 25.175781 45.984375 25.179688 45.984375 C 25.1875 45.980469 25.191406 45.980469 25.199219 45.980469 C 25.203125 45.980469 25.207031 45.976563 25.214844 45.976563 C 25.222656 45.972656 25.234375 45.972656 25.242188 45.96875 C 25.257813 45.964844 25.269531 45.960938 25.28125 45.957031 C 25.289063 45.957031 25.292969 45.957031 25.296875 45.953125 C 25.300781 45.953125 25.304688 45.953125 25.308594 45.953125 C 25.324219 45.945313 25.34375 45.9375 25.359375 45.933594 C 25.378906 45.925781 25.394531 45.917969 25.410156 45.910156 C 25.414063 45.910156 25.414063 45.910156 25.417969 45.90625 C 25.421875 45.90625 25.425781 45.90625 25.429688 45.902344 C 25.4375 45.898438 25.445313 45.894531 25.453125 45.890625 C 25.476563 45.878906 25.496094 45.867188 25.515625 45.855469 C 25.523438 45.851563 25.527344 45.847656 25.53125 45.84375 C 25.535156 45.84375 25.539063 45.839844 25.542969 45.839844 C 25.558594 45.828125 25.574219 45.820313 25.589844 45.808594 L 25.597656 45.796875 L 47.589844 29.808594 C 47.953125 29.542969 48.09375 29.070313 47.9375 28.648438 L 44.945313 20.675781 C 44.941406 20.667969 44.9375 20.65625 44.9375 20.648438 L 38.9375 4.648438 C 38.789063 4.261719 38.425781 4.003906 38.011719 4 Z M 11.933594 8.027344 L 15.824219 20 L 7.445313 20 Z M 38.066406 8.027344 L 42.558594 20 L 34.175781 20 Z M 8.066406 22 L 16.472656 22 L 22.328125 40.015625 Z M 18.578125 22 L 31.421875 22 L 25 41.765625 Z M 33.527344 22 L 41.933594 22 L 27.671875 40.015625 Z M 6.3125 23.007813 L 19.6875 39.902344 L 4.203125 28.640625 Z M 43.6875 23.007813 L 45.796875 28.640625 L 30.3125 39.902344 Z"
|
|
15
15
|
/></svg
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 50 50"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
><path
|
|
14
14
|
d="M 28.90625 1.96875 C 28.863281 1.976563 28.820313 1.988281 28.78125 2 L 11.5 2 C 9.585938 2 8 3.558594 8 5.46875 L 8 43.90625 C 8 46.160156 9.867188 48 12.125 48 L 37.875 48 C 40.132813 48 42 46.160156 42 43.90625 L 42 15.1875 C 42.027344 15.054688 42.027344 14.914063 42 14.78125 L 42 14.5 C 42.007813 14.234375 41.90625 13.972656 41.71875 13.78125 L 30.21875 2.28125 C 30.027344 2.09375 29.765625 1.992188 29.5 2 L 29.1875 2 C 29.097656 1.976563 29 1.964844 28.90625 1.96875 Z M 11.5 4 L 28 4 L 28 12.34375 C 28 14.355469 29.644531 16 31.65625 16 L 40 16 L 40 43.90625 C 40 45.074219 39.054688 46 37.875 46 L 12.125 46 C 10.945313 46 10 45.074219 10 43.90625 L 10 5.46875 C 10 4.644531 10.660156 4 11.5 4 Z M 30 4.9375 L 39.0625 14 L 31.65625 14 C 30.722656 14 30 13.277344 30 12.34375 Z M 17 24 L 17 38 L 33 38 L 33 24 Z M 19 26 L 24 26 L 24 28 L 19 28 Z M 26 26 L 31 26 L 31 28 L 26 28 Z M 19 30 L 24 30 L 24 32 L 19 32 Z M 26 30 L 31 30 L 31 32 L 26 32 Z M 19 34 L 24 34 L 24 36 L 19 36 Z M 26 34 L 31 34 L 31 36 L 26 36 Z"
|
|
15
15
|
/></svg
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 32 32"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
><path
|
|
14
14
|
d="M 6.9667969 4 C 5.8922226 4 5 4.8922226 5 5.9667969 L 5 8.3867188 C 4.6700827 8.5693007 4.3668503 8.8022905 4.1230469 9.1015625 C 3.5561678 9.7967647 3.3299502 10.7122 3.5097656 11.591797 L 3.5097656 11.59375 C 4.0409792 14.178038 4.7794422 17.772026 4.8261719 18 C 4.7795089 18.227574 4.0439586 21.806083 3.5136719 24.390625 C 3.33239 25.274562 3.5603689 26.193876 4.1289062 26.892578 L 4.1289062 26.894531 C 4.6989448 27.593193 5.5544182 28 6.4570312 28 L 25.501953 28 C 26.414029 28 27.27875 27.588847 27.855469 26.882812 L 27.855469 26.880859 C 28.431397 26.174017 28.661627 25.244791 28.478516 24.351562 C 27.948342 21.768542 27.220293 18.226607 27.173828 18 C 27.220578 17.771923 27.959908 14.172625 28.490234 11.587891 C 28.670205 10.710536 28.445474 9.7948488 27.878906 9.0996094 L 27.876953 9.0976562 C 27.633016 8.7986233 27.330145 8.566746 27 8.3847656 L 27 5.9667969 C 27 4.8922226 26.107777 4 25.033203 4 L 6.9667969 4 z M 7 6 L 25 6 L 25 8 L 7 8 L 7 6 z M 6.4414062 10 L 25 10 L 25 10.003906 L 25.580078 10.003906 C 25.870925 10.00932 26.145127 10.138539 26.328125 10.363281 C 26.516313 10.593787 26.591101 10.893775 26.53125 11.185547 C 25.98421 13.851742 25.173828 17.798828 25.173828 17.798828 L 25.132812 18 L 25.173828 18.201172 C 25.173828 18.201172 25.970539 22.088714 26.517578 24.753906 C 26.579608 25.059411 26.503358 25.374804 26.306641 25.617188 C 26.107355 25.861152 25.815878 26 25.501953 26 L 6.4570312 26 C 6.1536443 26 5.871649 25.864198 5.6796875 25.628906 C 5.4891549 25.393814 5.4120715 25.088382 5.4726562 24.792969 C 6.0196814 22.126846 6.8261719 18.201172 6.8261719 18.201172 L 6.8671875 18 L 6.8261719 17.798828 C 6.8261719 17.798828 6.0168603 13.857943 5.46875 11.191406 L 5.4707031 11.191406 C 5.4106381 10.897589 5.4835861 10.595863 5.671875 10.365234 L 5.6738281 10.365234 C 5.8620903 10.134148 6.1432948 10 6.4414062 10 z M 13.294922 13 C 12.044922 13 10.909797 13.341641 10.341797 13.681641 L 10.796875 15.271484 C 11.250875 15.044484 12.046797 14.703125 12.841797 14.703125 C 13.750797 14.703125 14.205078 15.158563 14.205078 15.726562 C 14.205078 16.521563 13.295 16.863281 12.5 16.863281 L 11.591797 16.863281 L 11.591797 18.453125 L 12.501953 18.453125 C 13.524953 18.453125 14.433594 18.909359 14.433594 19.818359 C 14.433594 20.500359 13.864516 21.068359 12.728516 21.068359 C 11.819516 21.068359 10.910078 20.727 10.455078 20.5 L 9.9980469 22.318359 C 10.566047 22.659359 11.589844 23 12.839844 23 C 15.339844 23 16.816406 21.749922 16.816406 20.044922 C 16.816406 18.681922 15.907484 17.885203 14.771484 17.658203 C 15.908484 17.203203 16.476562 16.409719 16.476562 15.386719 C 16.476562 14.023719 15.339922 13 13.294922 13 z M 19 13 L 19 23 L 21 23 L 21 13 L 19 13 z"
|
|
15
15
|
/></svg
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 32 32"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
><path
|
|
14
14
|
d="M 11.4375 5 L 11.15625 5.46875 L 3.15625 18.46875 L 2.84375 18.96875 L 3.125 19.5 L 7.125 26.5 L 7.40625 27 L 24.59375 27 L 24.875 26.5 L 28.875 19.5 L 29.15625 18.96875 L 28.84375 18.46875 L 20.84375 5.46875 L 20.5625 5 Z M 13.78125 7 L 19.4375 7 L 26.21875 18 L 20.5625 18 Z M 12 7.90625 L 14.96875 12.75 L 8.03125 24.03125 L 5.15625 19 Z M 16.15625 14.65625 L 18.21875 18 L 14.09375 18 Z M 12.875 20 L 26.28125 20 L 23.40625 25 L 9.78125 25 Z"
|
|
15
15
|
/></svg
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 30 30"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
>
|
|
14
14
|
<path
|
|
15
15
|
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 50 50"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
><path
|
|
14
14
|
d="M 43.753906 6.4023438 C 42.53621 6.3489969 41.294792 6.712898 40.271484 7.46875 L 37.525391 9.4960938 L 25 18.755859 L 12.591797 9.5839844 A 1.0001 1.0001 0 0 0 11.949219 9.3007812 L 12.199219 9.3007812 L 9.734375 7.4765625 C 8.7104042 6.7188363 7.4671493 6.3528895 6.2480469 6.40625 C 5.0289444 6.4596105 3.8349462 6.9314667 2.9082031 7.8457031 C 1.7309454 9.0063798 1 10.629831 1 12.410156 L 1 15.84375 A 1.0001 1.0001 0 0 0 1 16.138672 L 1 39.5 C 1 41.421188 2.5788117 43 4.5 43 L 12 43 A 1.0001 1.0001 0 0 0 13 42 L 13 25.373047 L 24.40625 33.804688 A 1.0001 1.0001 0 0 0 25.59375 33.804688 L 37 25.373047 L 37 42 A 1.0001 1.0001 0 0 0 38 43 L 45.5 43 C 47.421188 43 49 41.421188 49 39.5 L 49 16.119141 A 1.0001 1.0001 0 0 0 49 15.859375 L 49 12.410156 C 49 10.6517 48.290455 9.0357821 47.128906 7.8730469 C 47.095336 7.8394769 47.084086 7.83018 47.097656 7.84375 A 1.0001 1.0001 0 0 0 47.091797 7.8378906 C 46.165242 6.9256756 44.971603 6.4556905 43.753906 6.4023438 z M 43.644531 8.4003906 C 44.400835 8.4300436 45.134049 8.7168876 45.689453 9.2636719 C 45.708363 9.2823439 45.722171 9.2964424 45.712891 9.2871094 C 46.50934 10.084374 47 11.188613 47 12.410156 L 47 15.496094 L 39 21.408203 L 39 11 A 1.0001 1.0001 0 0 0 38.996094 10.898438 L 41.458984 9.078125 A 1.0001 1.0001 0 0 0 41.460938 9.078125 C 42.109578 8.598977 42.888228 8.3707375 43.644531 8.4003906 z M 6.3574219 8.40625 C 7.1145694 8.37661 7.8958927 8.6037105 8.5449219 9.0839844 L 11.003906 10.902344 A 1.0001 1.0001 0 0 0 11 11 L 11 21.408203 L 3 15.496094 L 3 12.410156 C 3 11.174482 3.5017577 10.068855 4.3125 9.2695312 C 4.8677569 8.7217677 5.6002743 8.4358895 6.3574219 8.40625 z M 37 12.371094 L 37 22.886719 L 25 31.755859 L 13 22.886719 L 13 12.373047 L 24.40625 20.804688 A 1.0001 1.0001 0 0 0 25.59375 20.804688 L 37 12.371094 z M 3 17.982422 L 11 23.896484 L 11 41 L 4.5 41 C 3.6591883 41 3 40.340812 3 39.5 L 3 17.982422 z M 47 17.982422 L 47 39.5 C 47 40.340812 46.340812 41 45.5 41 L 39 41 L 39 23.896484 L 47 17.982422 z"
|
|
15
15
|
/></svg
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 32 32"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
><path
|
|
14
14
|
d="M 15.9375 4.03125 C 12.917 4.0435 9.9179219 4.4269844 8.3574219 5.1464844 C 8.3574219 5.1464844 5 6.6748594 5 11.880859 C 5 18.077859 4.9955 25.860234 10.5625 27.365234 C 12.6945 27.938234 14.527953 28.061562 16.001953 27.976562 C 18.676953 27.825562 20 27.005859 20 27.005859 L 19.910156 25.029297 C 19.910156 25.029297 18.176297 25.640313 16.029297 25.570312 C 13.902297 25.495313 11.6615 25.335688 11.3125 22.679688 C 11.2805 22.432688 11.264625 22.182594 11.265625 21.933594 C 15.772625 23.052594 19.615828 22.420969 20.673828 22.292969 C 23.627828 21.933969 26.199344 20.081672 26.527344 18.388672 C 27.041344 15.720672 26.998047 11.880859 26.998047 11.880859 C 26.998047 6.6748594 23.646484 5.1464844 23.646484 5.1464844 C 22.000984 4.3779844 18.958 4.019 15.9375 4.03125 z M 12.705078 8.0019531 C 13.739953 8.0297031 14.762578 8.4927031 15.392578 9.4707031 L 16.001953 10.505859 L 16.609375 9.4707031 C 17.874375 7.5037031 20.709594 7.6264375 22.058594 9.1484375 C 23.302594 10.596438 23.025391 11.531 23.025391 18 L 23.025391 18.001953 L 20.578125 18.001953 L 20.578125 12.373047 C 20.578125 9.7380469 17.21875 9.6362812 17.21875 12.738281 L 17.21875 16 L 14.787109 16 L 14.787109 12.738281 C 14.787109 9.6362812 11.429688 9.7360938 11.429688 12.371094 L 11.429688 18 L 8.9765625 18 C 8.9765625 11.526 8.7043594 10.585438 9.9433594 9.1484375 C 10.622859 8.3824375 11.670203 7.9742031 12.705078 8.0019531 z"
|
|
15
15
|
/></svg
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 50 50"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
><path
|
|
14
14
|
d="M 5 5 A 1.0001 1.0001 0 0 0 4 6 L 4 44 A 1.0001 1.0001 0 0 0 5 45 L 8 45 A 1.0001 1.0001 0 1 0 8 43 L 6 43 L 6 7 L 8 7 A 1.0001 1.0001 0 1 0 8 5 L 5 5 z M 42 5 A 1.0001 1.0001 0 1 0 42 7 L 44 7 L 44 43 L 42 43 A 1.0001 1.0001 0 1 0 42 45 L 45 45 A 1.0001 1.0001 0 0 0 46 44 L 46 6 A 1.0001 1.0001 0 0 0 45 5 L 42 5 z M 31.074219 17.509766 C 29.975744 17.487506 28.868391 17.760297 27.978516 18.373047 C 27.407516 18.767047 26.915609 19.272813 26.349609 19.757812 C 25.488609 18.039813 23.929344 17.580781 22.152344 17.550781 C 20.351344 17.519781 18.920922 18.341797 17.669922 19.841797 L 17.669922 18 L 14 18 L 14 32 L 17.664062 32 C 17.664062 32 17.657969 26.766016 17.667969 24.166016 C 17.669969 23.704016 17.689203 23.23225 17.783203 22.78125 C 18.073203 21.39225 19.538031 20.534437 20.957031 20.648438 C 22.309031 20.757437 23.100016 21.495656 23.166016 23.097656 C 23.177016 23.376656 23.166016 32 23.166016 32 L 26.832031 32 L 26.832031 24.228516 C 26.838031 23.629516 26.901875 23.0175 27.046875 22.4375 C 27.372875 21.1375 28.590531 20.49825 30.019531 20.65625 C 31.279531 20.79525 32.239031 21.474609 32.332031 22.849609 L 32.332031 32 L 36 32 L 36 22 C 36 21 35.746359 20.490859 35.443359 19.880859 C 34.710859 18.405234 32.90501 17.546865 31.074219 17.509766 z"
|
|
15
15
|
/></svg
|
|
@@ -9,7 +9,7 @@ export let width = '24px';
|
|
|
9
9
|
{width}
|
|
10
10
|
{height}
|
|
11
11
|
viewBox="0 0 50 50"
|
|
12
|
-
style="
|
|
12
|
+
style="fill:currentcolor;"
|
|
13
13
|
><path
|
|
14
14
|
d="M 34.902344 2 C 32.863281 2 31.097656 2.550781 29.875 3.09375 C 28.675781 2.691406 26.6875 2.003906 24.300781 2.5 C 22.910156 2.742188 21.632813 3.316406 20.460938 4.195313 C 18.53125 3.265625 16.515625 2.695313 14.402344 2.601563 C 13.101563 2.5 7.800781 3.101563 5.898438 5.898438 C 5.199219 7 4.5 8.398438 4.199219 10.097656 C 3.898438 11.597656 3.898438 13.300781 4.398438 16.800781 C 4.699219 19.199219 5.101563 20.800781 6 24.097656 C 6.101563 24.398438 6.601563 26 8.101563 30.402344 C 8.398438 31.199219 9 32.699219 10.199219 34.097656 C 11 35.097656 11.800781 35.699219 12.800781 35.699219 C 14.101563 35.699219 15 34.800781 15.800781 33.800781 C 15.859375 33.734375 15.921875 33.660156 15.980469 33.59375 C 15.90625 33.710938 15.839844 33.839844 15.800781 34 C 15.601563 35 16.800781 35.800781 17.800781 36.199219 C 18.601563 36.597656 19.5 36.699219 20.199219 36.699219 C 21.097656 36.699219 21.800781 36.5 22.199219 36.402344 C 22.542969 36.285156 23.285156 35.964844 24.078125 35.4375 C 24.113281 37.992188 24.136719 41.007813 24.199219 41.699219 C 24.5 44.300781 25.199219 46.097656 26.5 47.097656 C 27.5 47.898438 29.300781 48 29.402344 48 C 31.199219 48 34 46.800781 35.199219 44.902344 C 35.800781 44 36 43.199219 36.199219 42.097656 C 36.398438 41.5 36.597656 38 36.699219 37.300781 C 36.835938 36.195313 36.941406 35.105469 37.046875 34.046875 C 37.707031 34.21875 38.519531 34.402344 39.402344 34.402344 C 41 34.402344 43.101563 33.300781 43.5 33.097656 C 44.300781 32.5 45.898438 31.101563 45.199219 29.902344 C 44.800781 29.199219 44.199219 29.199219 42.699219 29.402344 C 42.699219 29.402344 40.300781 29.699219 40.097656 29.597656 C 39.953125 29.542969 39.730469 29.402344 39.480469 29.21875 C 40 28.414063 40.460938 27.617188 41 26.902344 C 42.199219 24.601563 42.902344 22.800781 43.402344 21.402344 C 44.300781 18.902344 44.800781 16.898438 45.097656 15.5 C 45.800781 12.5 46 11.101563 45.597656 9.5 C 44.800781 6.699219 41.898438 4.300781 40.699219 3.601563 C 39.898438 3.199219 37.902344 2 34.902344 2 Z M 34.902344 4 C 37.402344 4 39.101563 5 40 5.398438 C 41.101563 6 43.601563 8 43.800781 9.898438 C 43.902344 11 44 12.101563 43.300781 15 C 42.902344 16.398438 42.5 18.199219 41.597656 20.699219 C 41.097656 22.097656 40.5 23.800781 39.300781 25.902344 C 39.269531 25.953125 39.234375 26.007813 39.203125 26.0625 C 39.320313 25.640625 39.402344 25.300781 39.402344 25.300781 C 39.601563 24.300781 39.601563 23.5 39.5 22.300781 C 39.398438 21.699219 39.300781 20.199219 39.300781 19.597656 C 39.300781 19.300781 39.597656 16.199219 39.699219 15.097656 C 39.800781 13.300781 38.699219 11.097656 38.402344 10.699219 C 36.902344 8.398438 36.101563 7.101563 34.5 5.800781 C 34.101563 5.460938 33.417969 4.894531 32.488281 4.324219 C 33.222656 4.144531 34.035156 4 34.902344 4 Z M 26.066406 4.410156 C 27.371094 4.441406 28.476563 4.800781 29.300781 5.101563 C 31.402344 5.800781 32.699219 6.898438 33.300781 7.398438 C 34.601563 8.5 35.300781 9.601563 36.800781 11.902344 C 36.910156 12.121094 37.195313 12.585938 37.421875 13.234375 C 35.375 13.046875 34.015625 13.765625 33.199219 14.5 C 32 15.5 32.097656 17 32.199219 18.097656 C 32.199219 18.898438 32.402344 19.902344 33.902344 23.300781 C 34.5 24.800781 35.097656 26.398438 35.699219 27.5 C 36.011719 28.121094 36.394531 28.691406 36.804688 29.199219 C 36.566406 29.320313 36.324219 29.476563 36.097656 29.699219 C 35.5 30.398438 35.398438 31.101563 35.199219 32.402344 C 35 33.402344 34.800781 35.5 34.699219 37.199219 C 34.699219 37.898438 34.402344 41.300781 34.300781 41.800781 C 34 42.800781 33.898438 43.300781 33.5 43.902344 C 32.800781 45 30.601563 45.902344 29.300781 45.800781 C 28.902344 45.800781 28.300781 45.800781 27.800781 45.402344 C 26.699219 44.601563 26.300781 42.800781 26.199219 41.402344 C 26.097656 40.402344 26.199219 33.199219 26 31.597656 C 25.898438 31.199219 25.800781 30.199219 25 29.5 C 24.664063 29.21875 23.96875 29.074219 23.3125 28.976563 C 23.320313 28.640625 23.339844 28.304688 23.402344 28 C 23.5 27.398438 23.699219 27.097656 23.902344 26.597656 C 24 26.300781 24.199219 25.902344 24.402344 25.402344 C 25.300781 22.601563 25.097656 18.898438 24.597656 16.597656 C 24.5 16.398438 24.097656 14.800781 22.699219 13.902344 C 21.199219 13 19.597656 13.5 18.699219 13.800781 C 18.328125 13.902344 17.960938 14.0625 17.59375 14.25 C 17.65625 13.832031 17.710938 13.410156 17.800781 13 C 18.199219 11 18.601563 9.300781 19.902344 7.601563 C 21.300781 5.898438 22.898438 4.800781 24.699219 4.5 C 25.175781 4.425781 25.632813 4.398438 26.066406 4.410156 Z M 13.71875 4.585938 C 13.953125 4.582031 14.152344 4.585938 14.300781 4.601563 C 15.863281 4.683594 17.359375 5.050781 18.84375 5.675781 C 18.660156 5.878906 18.476563 6.082031 18.300781 6.300781 C 16.601563 8.300781 16.199219 10.398438 15.800781 12.5 C 15.300781 15 15.199219 17.597656 15.597656 20.199219 L 15.402344 22.097656 C 15.300781 23.097656 15.097656 25 16.199219 27 C 16.585938 27.664063 17.011719 28.226563 17.480469 28.707031 C 16.464844 30.050781 15.386719 31.320313 14.300781 32.5 C 13.699219 33.199219 13.199219 33.699219 12.800781 33.699219 C 12.699219 33.699219 12.300781 33.5 11.699219 32.800781 C 10.597656 31.601563 10.199219 30.300781 10 29.800781 C 8.800781 26.199219 8.101563 23.898438 8 23.597656 C 7.199219 20.398438 6.800781 18.800781 6.398438 16.5 C 5.898438 13.300781 5.898438 11.699219 6.199219 10.402344 C 6.5 9 7 7.898438 7.5 7.101563 C 8.726563 5.175781 12.09375 4.628906 13.71875 4.585938 Z M 36.664063 15.125 C 36.984375 15.125 37.332031 15.164063 37.699219 15.242188 C 37.6875 16.175781 37.300781 19.105469 37.300781 19.5 C 37.300781 20.300781 37.5 21.898438 37.5 22.5 C 37.601563 23.601563 37.601563 24.199219 37.5 25 C 37.5 25 37.351563 25.714844 37.199219 26.222656 C 36.734375 25.171875 36.21875 23.917969 35.597656 22.5 C 34.097656 19.101563 34 18.402344 34 17.902344 C 34 17.199219 34 16.300781 34.597656 15.902344 C 35.160156 15.402344 35.84375 15.132813 36.664063 15.125 Z M 21.140625 15.417969 C 21.339844 15.441406 21.523438 15.5 21.699219 15.597656 C 22.5 16 22.699219 17 22.699219 17 C 23.199219 19.199219 23.398438 22.5 22.597656 24.699219 C 22.5 25.097656 22.300781 25.398438 22.199219 25.699219 C 22 26.199219 21.800781 26.699219 21.597656 27.597656 C 21.546875 27.96875 21.523438 28.335938 21.511719 28.703125 C 20.820313 28.558594 20.167969 28.3125 19.699219 28 C 18.898438 27.601563 18.300781 26.898438 17.902344 26.097656 C 17.199219 24.597656 17.300781 23.199219 17.402344 22.402344 L 17.597656 20.097656 C 17.457031 18.972656 17.390625 17.84375 17.40625 16.722656 C 17.867188 16.328125 18.46875 15.925781 19.300781 15.699219 C 19.902344 15.550781 20.558594 15.34375 21.140625 15.417969 Z M 35.886719 16.089844 C 35.625 16.101563 35.347656 16.148438 35.199219 16.199219 C 34.800781 16.300781 34.699219 16.300781 34.597656 16.5 C 34.5 16.699219 34.800781 17 34.902344 17.199219 C 35 17.199219 35.300781 17.5 35.699219 17.402344 C 36 17.300781 36.199219 17.101563 36.300781 17 C 36.402344 16.898438 36.800781 16.398438 36.5 16.199219 C 36.398438 16.097656 36.148438 16.074219 35.886719 16.089844 Z M 20.914063 16.816406 C 20.804688 16.824219 20.699219 16.851563 20.597656 16.902344 C 20.5 16.902344 20.300781 17 20.199219 17.199219 C 20.097656 17.398438 20.199219 17.597656 20.300781 17.699219 C 20.5 18 20.800781 18.300781 21.300781 18.300781 C 21.402344 18.300781 21.800781 18.300781 22.097656 18 C 22.097656 18 22.402344 17.699219 22.402344 17.402344 C 22.300781 17.199219 22.101563 17.101563 21.800781 17 C 21.574219 16.925781 21.238281 16.792969 20.914063 16.816406 Z M 19.074219 29.902344 C 19.6875 30.230469 20.425781 30.496094 21.234375 30.679688 C 21.019531 31.109375 20.710938 31.464844 20.402344 31.699219 C 19.699219 32.199219 18.800781 32.5 17.902344 32.699219 C 17.699219 32.699219 17.601563 32.800781 17.402344 32.800781 C 16.917969 32.9375 16.449219 33.089844 16.128906 33.421875 C 17.109375 32.332031 18.09375 31.128906 19.074219 29.902344 Z M 38.355469 30.703125 C 38.792969 31.03125 39.222656 31.273438 39.597656 31.402344 C 40.199219 31.601563 40.699219 31.601563 42.5 31.402344 C 42.199219 31.699219 41.300781 32.199219 40 32.402344 C 39.164063 32.484375 38.125 32.285156 37.28125 32.042969 C 37.359375 31.476563 37.449219 31.152344 37.597656 31 C 37.652344 30.949219 37.984375 30.847656 38.355469 30.703125 Z M 23.296875 31.003906 C 23.503906 31.039063 23.667969 31.066406 23.699219 31.097656 C 23.898438 31.300781 24 31.800781 24 32 C 24.011719 32.171875 24.019531 32.605469 24.027344 32.90625 C 23.203125 33.871094 21.878906 34.40625 21.597656 34.5 C 21.199219 34.699219 20 34.898438 18.800781 34.5 C 19.800781 34.199219 20.800781 33.902344 21.597656 33.300781 C 22.296875 32.800781 22.898438 32.003906 23.296875 31.003906 Z"
|
|
15
15
|
/></svg
|