windmill-components 1.89.0 → 1.89.1

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.
Files changed (59) hide show
  1. package/package/components/CronInput.svelte +2 -2
  2. package/package/components/ScheduleEditor.svelte +3 -3
  3. package/package/components/SchemaEditor.svelte +4 -5
  4. package/package/components/apps/components/helpers/RunnableComponent.svelte +1 -1
  5. package/package/components/apps/components/inputs/AppSelect.svelte +2 -2
  6. package/package/components/apps/editor/AppEditor.svelte +1 -1
  7. package/package/components/apps/editor/AppEditorHeader.svelte +1 -1
  8. package/package/components/apps/editor/RecomputeAllComponents.svelte +5 -2
  9. package/package/components/apps/editor/componentsPanel/ComponentList.svelte +2 -17
  10. package/package/components/apps/editor/componentsPanel/CssSettings.svelte +57 -71
  11. package/package/components/apps/editor/contextPanel/ContextPanel.svelte +2 -16
  12. package/package/components/apps/editor/inlineScriptsPanel/EmptyInlineScript.svelte +9 -9
  13. package/package/components/apps/editor/inlineScriptsPanel/utils.js +7 -1
  14. package/package/components/apps/editor/settingsPanel/inputEditor/ColorInput.svelte +1 -1
  15. package/package/components/apps/editor/settingsPanel/inputEditor/IconSelectInput.svelte +12 -16
  16. package/package/components/apps/editor/settingsPanel/triggerLists/ComponentTriggerList.svelte +5 -0
  17. package/package/components/apps/editor/settingsPanel/triggerLists/TriggerBadgesList.svelte +2 -1
  18. package/package/components/apps/editor/settingsPanel/triggerLists/TriggerBadgesList.svelte.d.ts +1 -0
  19. package/package/components/apps/utils.js +7 -0
  20. package/package/components/common/button/ButtonDropdown.svelte +1 -1
  21. package/package/components/common/clearableInput/ClearableInput.svelte +11 -5
  22. package/package/components/flows/content/FlowBranchesAllWrapper.svelte +67 -69
  23. package/package/components/flows/content/FlowBranchesOneWrapper.svelte +66 -65
  24. package/package/components/flows/content/FlowRetries.svelte +11 -12
  25. package/package/components/flows/previousResults.js +1 -1
  26. package/package/components/flows/propPicker/PropPickerWrapper.svelte +1 -1
  27. package/package/components/graph/svelvet/container/views/GraphView.svelte +14 -17
  28. package/package/components/icons/ActivitypubIcon.svelte +64 -0
  29. package/package/components/icons/ActivitypubIcon.svelte.d.ts +17 -0
  30. package/package/components/icons/AwsEcrIcon.svelte +39 -0
  31. package/package/components/icons/AwsEcrIcon.svelte.d.ts +17 -0
  32. package/package/components/icons/CalcomIcon.svelte +18 -0
  33. package/package/components/icons/CalcomIcon.svelte.d.ts +17 -0
  34. package/package/components/icons/ClickupIcon.svelte +50 -0
  35. package/package/components/icons/ClickupIcon.svelte.d.ts +17 -0
  36. package/package/components/icons/CloudflareIcon.svelte +26 -0
  37. package/package/components/icons/CloudflareIcon.svelte.d.ts +17 -0
  38. package/package/components/icons/FirebaseIcon.svelte +52 -0
  39. package/package/components/icons/FirebaseIcon.svelte.d.ts +17 -0
  40. package/package/components/icons/GoogleFormsIcon.svelte +26 -0
  41. package/package/components/icons/GoogleFormsIcon.svelte.d.ts +17 -0
  42. package/package/components/icons/JiraIcon.svelte +50 -0
  43. package/package/components/icons/JiraIcon.svelte.d.ts +17 -0
  44. package/package/components/icons/NotionIcon.svelte +31 -0
  45. package/package/components/icons/NotionIcon.svelte.d.ts +17 -0
  46. package/package/components/icons/PineconeIcon.svelte +135 -0
  47. package/package/components/icons/PineconeIcon.svelte.d.ts +17 -0
  48. package/package/components/icons/RssIcon.svelte +30 -0
  49. package/package/components/icons/RssIcon.svelte.d.ts +17 -0
  50. package/package/components/icons/ShopifyIcon.svelte +26 -0
  51. package/package/components/icons/ShopifyIcon.svelte.d.ts +17 -0
  52. package/package/components/icons/TypeformIcon.svelte +18 -0
  53. package/package/components/icons/TypeformIcon.svelte.d.ts +17 -0
  54. package/package/components/icons/index.d.ts +27 -1
  55. package/package/components/icons/index.js +27 -1
  56. package/package/gen/core/OpenAPI.js +1 -1
  57. package/package/script_helpers.d.ts +1 -1
  58. package/package/script_helpers.js +2 -2
  59. package/package.json +102 -4564
@@ -1,12 +1,13 @@
1
- <script>import { Alert, Tab } from '../../common';
1
+ <script>import { Alert, Badge, Tab } from '../../common';
2
2
  import TabContent from '../../common/tabs/TabContent.svelte';
3
3
  import Tabs from '../../common/tabs/Tabs.svelte';
4
4
  import Toggle from '../../Toggle.svelte';
5
+ import { Pane, Splitpanes } from 'svelte-splitpanes';
6
+ import SplitPanesWrapper from '../../splitPanes/SplitPanesWrapper.svelte';
5
7
  import FlowCard from '../common/FlowCard.svelte';
6
8
  import FlowModuleEarlyStop from './FlowModuleEarlyStop.svelte';
7
9
  import FlowModuleSleep from './FlowModuleSleep.svelte';
8
10
  import FlowModuleSuspend from './FlowModuleSuspend.svelte';
9
- // import FlowRetries from './FlowRetries.svelte'
10
11
  export let flowModule;
11
12
  export let previousModule;
12
13
  let value = flowModule.value;
@@ -16,76 +17,73 @@ let selected = 'early-stop';
16
17
 
17
18
  <div class="h-full flex flex-col w-full">
18
19
  <FlowCard title={value.type == 'branchall' ? 'Run all branches' : 'Run one branch'}>
19
- <div class="flex flex-col h-full w-full">
20
- <div class="border w-full">
21
- <Alert notRounded type="info" title="All branches will be run">
22
- The result of this step is the list of the result of each branch.
23
- </Alert>
20
+ <SplitPanesWrapper>
21
+ <Splitpanes horizontal>
22
+ <Pane size={flowModule ? 60 : 100}>
23
+ <Alert notRounded type="info" title="All branches will be run" class="m-2">
24
+ The result of this step is the list of the result of each branch.
25
+ </Alert>
24
26
 
25
- <div class="p-4 mt-4 w-full">
26
- <h3 class="mb-4">{value.branches.length} branch{value.branches.length > 1 ? 'es' : ''}</h3
27
- >
28
- <div class="flex flex-col gap-y-4 py-2 w-full max-w-xl">
29
- {#each value.branches as branch}
30
- <div class="flex flex-row gap-x-4 w-full items-center">
31
- <div class="grow">
32
- <input type="text" bind:value={branch.summary} placeholder="Summary" />
27
+ <div class="p-4 mt-4 w-full">
28
+ <h3 class="mb-4"
29
+ >{value.branches.length} branch{value.branches.length > 1 ? 'es' : ''}</h3
30
+ >
31
+ <div class="flex flex-col gap-y-4 py-2 w-full">
32
+ {#each value.branches as branch, i}
33
+ <div class="flex flex-row gap-x-4 w-full items-center">
34
+ <div class="grow flex gap-2">
35
+ <Badge large={true} color="blue">Branch {i + 1}</Badge>
36
+ <input type="text" bind:value={branch.summary} placeholder="Summary" />
37
+ </div>
38
+ <div class="w-min-sm">
39
+ <Toggle
40
+ bind:checked={branch.skip_failure}
41
+ options={{
42
+ right: 'Skip failure'
43
+ }}
44
+ />
45
+ </div>
33
46
  </div>
34
- <div class="w-min-sm">
35
- <Toggle
36
- bind:checked={branch.skip_failure}
37
- options={{
38
- right: 'Skip failure'
39
- }}
40
- />
41
- </div>
42
- </div>
43
- {/each}
47
+ {/each}
48
+ </div>
49
+ <div class="mt-6 mb-2 text-sm font-bold">Run in parallel</div>
50
+ <Toggle
51
+ bind:checked={value.parallel}
52
+ options={{
53
+ right: 'All branches run in parallel'
54
+ }}
55
+ />
44
56
  </div>
45
- <div class="mt-6 mb-2 text-sm font-bold">Run in parallel</div>
46
- <Toggle
47
- bind:checked={value.parallel}
48
- options={{
49
- right: 'All branches run in parallel'
50
- }}
51
- />
52
- </div>
53
- </div>
54
- {#if flowModule}
55
- <Tabs bind:selected>
56
- <!-- <Tab value="retries">Retries</Tab> -->
57
- <Tab value="early-stop">Early Stop/Break</Tab>
58
- <Tab value="suspend">Suspend</Tab>
59
- <Tab value="sleep">Sleep</Tab>
60
-
61
- <svelte:fragment slot="content">
62
- <div class="overflow-hidden bg-white">
63
- <!-- <TabContent value="retries" class="flex flex-col flex-1 h-full">
64
- <div class="p-4 overflow-y-auto">
65
- <FlowRetries bind:flowModule />
66
- </div>
67
- </TabContent> -->
68
-
69
- <TabContent value="early-stop" class="flex flex-col flex-1 h-full">
70
- <div class="p-4 overflow-y-auto">
71
- <FlowModuleEarlyStop bind:flowModule />
57
+ </Pane>
58
+ {#if flowModule}
59
+ <Pane size={40}>
60
+ <Tabs bind:selected>
61
+ <Tab value="early-stop">Early Stop/Break</Tab>
62
+ <Tab value="suspend">Suspend</Tab>
63
+ <Tab value="sleep">Sleep</Tab>
64
+ <svelte:fragment slot="content">
65
+ <div class="overflow-hidden bg-white">
66
+ <TabContent value="early-stop" class="flex flex-col flex-1 h-full">
67
+ <div class="p-4 overflow-y-auto">
68
+ <FlowModuleEarlyStop bind:flowModule />
69
+ </div>
70
+ </TabContent>
71
+ <TabContent value="suspend" class="flex flex-col flex-1 h-full">
72
+ <div class="p-4 overflow-y-auto">
73
+ <FlowModuleSuspend bind:flowModule />
74
+ </div>
75
+ </TabContent>
76
+ <TabContent value="sleep" class="flex flex-col flex-1 h-full">
77
+ <div class="p-4 overflow-y-auto">
78
+ <FlowModuleSleep previousModuleId={previousModule?.id} bind:flowModule />
79
+ </div>
80
+ </TabContent>
72
81
  </div>
73
- </TabContent>
74
-
75
- <TabContent value="suspend" class="flex flex-col flex-1 h-full">
76
- <div class="p-4 overflow-y-auto">
77
- <FlowModuleSuspend bind:flowModule />
78
- </div>
79
- </TabContent>
80
- <TabContent value="sleep" class="flex flex-col flex-1 h-full">
81
- <div class="p-4 overflow-y-auto">
82
- <FlowModuleSleep previousModuleId={previousModule?.id} bind:flowModule />
83
- </div>
84
- </TabContent>
85
- </div>
86
- </svelte:fragment>
87
- </Tabs>
88
- {/if}
89
- </div>
82
+ </svelte:fragment>
83
+ </Tabs>
84
+ </Pane>
85
+ {/if}
86
+ </Splitpanes>
87
+ </SplitPanesWrapper>
90
88
  </FlowCard>
91
89
  </div>
@@ -1,11 +1,13 @@
1
1
  <script>import { Alert, Badge, Tab } from '../../common';
2
2
  import TabContent from '../../common/tabs/TabContent.svelte';
3
3
  import Tabs from '../../common/tabs/Tabs.svelte';
4
+ import { Pane, Splitpanes } from 'svelte-splitpanes';
4
5
  import FlowCard from '../common/FlowCard.svelte';
5
6
  import BranchPredicateEditor from './BranchPredicateEditor.svelte';
6
7
  import FlowModuleEarlyStop from './FlowModuleEarlyStop.svelte';
7
8
  import FlowModuleSleep from './FlowModuleSleep.svelte';
8
9
  import FlowModuleSuspend from './FlowModuleSuspend.svelte';
10
+ import SplitPanesWrapper from '../../splitPanes/SplitPanesWrapper.svelte';
9
11
  // import FlowRetries from './FlowRetries.svelte'
10
12
  export let flowModule;
11
13
  export let previousModule;
@@ -16,73 +18,72 @@ let selected = 'early-stop';
16
18
 
17
19
  <div class="h-full">
18
20
  <FlowCard title="Run one branch">
19
- <div class="flex flex-col h-full overflow-auto">
20
- <div class="border">
21
- <Alert notRounded type="info" title="Only one branch will be run">
22
- The result of this step is the result of the branch.
23
- </Alert>
24
-
25
- <div class="p-2">
26
- <h3 class="my-4"
27
- >{value.branches.length + 1} branch{value.branches.length + 1 > 1 ? 'es' : ''}</h3
28
- >
29
- <div class="flex flex-col gap-y-4 py-2">
30
- <div class="flex flex-row gap-2 text-sm border border-gray-400 p-2">
31
- <Badge large={true} color="blue">Default branch</Badge>
32
- <p class="italic text-gray-600"
33
- >If none of the predicates' expressions evaluated in-order match, this branch is
34
- chosen</p
35
- >
36
- </div>
37
- {#each value.branches as branch}
38
- <div class="flex flex-col gap-x-2 p-2 items-center border border-gray-400">
39
- <input
40
- class="w-full"
41
- type="text"
42
- bind:value={branch.summary}
43
- placeholder="Summary"
44
- />
45
- <BranchPredicateEditor {branch} parentModule={flowModule} {previousModule} />
21
+ <SplitPanesWrapper>
22
+ <Splitpanes horizontal>
23
+ <Pane size={flowModule ? 60 : 100}>
24
+ <Alert notRounded type="info" title="Only one branch will be run" class="m-2">
25
+ The result of this step is the result of the branch.
26
+ </Alert>
27
+ <div class="p-2">
28
+ <h3 class="my-4">
29
+ {value.branches.length + 1} branch{value.branches.length + 1 > 1 ? 'es' : ''}
30
+ </h3>
31
+ <div class="py-2">
32
+ <div class="flex flex-row gap-2 text-sm p-2">
33
+ <Badge large={true} color="blue">Default branch</Badge>
34
+ <p class="italic text-gray-600"
35
+ >If none of the predicates' expressions evaluated in-order match, this branch is
36
+ chosen</p
37
+ >
46
38
  </div>
47
- {/each}
48
- </div>
49
- </div>
50
- </div>
51
- {#if flowModule}
52
- <Tabs bind:selected>
53
- <!-- <Tab value="retries">Retries</Tab> -->
54
- <Tab value="early-stop">Early Stop/Break</Tab>
55
- <Tab value="suspend">Suspend</Tab>
56
- <Tab value="sleep">Sleep</Tab>
57
-
58
- <svelte:fragment slot="content">
59
- <div class="overflow-hidden bg-white">
60
- <!-- <TabContent value="retries" class="flex flex-col flex-1 h-full">
61
- <div class="p-4 overflow-y-auto">
62
- <FlowRetries bind:flowModule />
63
- </div>
64
- </TabContent> -->
65
-
66
- <TabContent value="early-stop" class="flex flex-col flex-1 h-full">
67
- <div class="p-4 overflow-y-auto">
68
- <FlowModuleEarlyStop bind:flowModule />
39
+ {#each value.branches as branch, i}
40
+ <div class="flex flex-col gap-x-2 items-center">
41
+ <div class="w-full flex gap-2 px-2 pt-10 pb-2">
42
+ <Badge large={true} color="blue">Branch {i + 1}</Badge>
43
+ <input
44
+ class="w-full"
45
+ type="text"
46
+ bind:value={branch.summary}
47
+ placeholder="Summary"
48
+ />
49
+ </div>
50
+ <div class="w-full border">
51
+ <BranchPredicateEditor {branch} parentModule={flowModule} {previousModule} />
52
+ </div>
69
53
  </div>
70
- </TabContent>
71
-
72
- <TabContent value="suspend" class="flex flex-col flex-1 h-full">
73
- <div class="p-4 overflow-y-auto">
74
- <FlowModuleSuspend bind:flowModule />
75
- </div>
76
- </TabContent>
77
- <TabContent value="sleep" class="flex flex-col flex-1 h-full">
78
- <div class="p-4 overflow-y-auto">
79
- <FlowModuleSleep previousModuleId={previousModule?.id} bind:flowModule />
80
- </div>
81
- </TabContent>
54
+ {/each}
82
55
  </div>
83
- </svelte:fragment>
84
- </Tabs>
85
- {/if}
86
- </div>
56
+ </div>
57
+ </Pane>
58
+ {#if flowModule}
59
+ <Pane size={40}>
60
+ <Tabs bind:selected>
61
+ <Tab value="early-stop">Early Stop/Break</Tab>
62
+ <Tab value="suspend">Suspend</Tab>
63
+ <Tab value="sleep">Sleep</Tab>
64
+ <svelte:fragment slot="content">
65
+ <div class="overflow-hidden bg-white">
66
+ <TabContent value="early-stop" class="flex flex-col flex-1 h-full">
67
+ <div class="p-4 overflow-y-auto">
68
+ <FlowModuleEarlyStop bind:flowModule />
69
+ </div>
70
+ </TabContent>
71
+ <TabContent value="suspend" class="flex flex-col flex-1 h-full">
72
+ <div class="p-4 overflow-y-auto">
73
+ <FlowModuleSuspend bind:flowModule />
74
+ </div>
75
+ </TabContent>
76
+ <TabContent value="sleep" class="flex flex-col flex-1 h-full">
77
+ <div class="p-4 overflow-y-auto">
78
+ <FlowModuleSleep previousModuleId={previousModule?.id} bind:flowModule />
79
+ </div>
80
+ </TabContent>
81
+ </div>
82
+ </svelte:fragment>
83
+ </Tabs>
84
+ </Pane>
85
+ {/if}
86
+ </Splitpanes>
87
+ </SplitPanesWrapper>
87
88
  </FlowCard>
88
89
  </div>
@@ -1,5 +1,6 @@
1
1
  <script>import Toggle from '../../Toggle.svelte';
2
2
  import Tooltip from '../../Tooltip.svelte';
3
+ import { SecondsInput } from '../../common';
3
4
  export let flowModule;
4
5
  function setConstantRetries() {
5
6
  flowModule.retry = {
@@ -24,7 +25,7 @@ $: isConstantRetryEnabled = Boolean(flowModule.retry?.constant);
24
25
  $: isExponentialRetryEnabled = Boolean(flowModule.retry?.exponential);
25
26
  </script>
26
27
 
27
- <div class={$$props.class}>
28
+ <div class="h-full flex flex-col {$$props.class ?? ''}">
28
29
  <h2>
29
30
  Retries
30
31
  <Tooltip>
@@ -34,8 +35,8 @@ $: isExponentialRetryEnabled = Boolean(flowModule.retry?.exponential);
34
35
  </Tooltip>
35
36
  </h2>
36
37
 
37
- <div class="flex">
38
- <div class="w-1/2 mr-2">
38
+ <div class="flex h-[calc(100%-22px)]">
39
+ <div class="w-1/2 h-full overflow-auto pr-2">
39
40
  <div class="pt-4">
40
41
  <Toggle
41
42
  checked={isConstantRetryEnabled}
@@ -54,13 +55,13 @@ $: isExponentialRetryEnabled = Boolean(flowModule.retry?.exponential);
54
55
  {#if flowModule.retry?.constant}
55
56
  <div class="text-xs font-bold !mt-2">Attempts</div>
56
57
  <input bind:value={flowModule.retry.constant.attempts} type="number" />
57
- <div class="text-xs font-bold !mt-2">Delay (in seconds)</div>
58
- <input bind:value={flowModule.retry.constant.seconds} type="number" />
58
+ <div class="text-xs font-bold !mt-2">Delay</div>
59
+ <SecondsInput bind:seconds={flowModule.retry.constant.seconds} />
59
60
  {:else}
60
61
  <div class="text-xs font-bold !mt-2">Attempts</div>
61
62
  <input type="number" disabled />
62
- <div class="text-xs font-bold !mt-2">Delay (in seconds)</div>
63
- <input type="number" disabled />
63
+ <div class="text-xs font-bold !mt-2">Delay</div>
64
+ <SecondsInput disabled />
64
65
  {/if}
65
66
  <div class="pt-6">
66
67
  <Toggle
@@ -95,7 +96,7 @@ $: isExponentialRetryEnabled = Boolean(flowModule.retry?.exponential);
95
96
  <input type="number" disabled />
96
97
  {/if}
97
98
  </div>
98
- <div class="w-1/2 ml-2">
99
+ <div class="w-1/2 h-full overflow-auto pl-2">
99
100
  {#if true}
100
101
  {@const { attempts: cAttempts, seconds: cSeconds } = flowModule.retry?.constant || {}}
101
102
  {@const {
@@ -109,14 +110,12 @@ $: isExponentialRetryEnabled = Boolean(flowModule.retry?.exponential);
109
110
  (_, i) => (multiplier || 0) * (eSeconds || 0) ** (i + cArray.length + 1)
110
111
  )}
111
112
  {@const array = [...cArray, ...eArray]}
112
- <div
113
- class="bg-gray-50 border border-gray-300 rounded max-h-[431px] overflow-auto px-4 py-2"
114
- >
113
+ <div class="bg-gray-50 border border-gray-300 rounded px-4 py-2">
115
114
  <div class="text-xs font-medium mb-2">Retry attempts</div>
116
115
  {#if array.length > 0}
117
116
  <table class="text-xs">
118
117
  <tr>
119
- <td class="font-semibold pr-1">1:</td>
118
+ <td class="font-semibold pr-1 pb-1">1:</td>
120
119
  <td class="pb-1">After {array[0]} second{array[0] === 1 ? '' : 's'}</td>
121
120
  </tr>
122
121
  {#each array.slice(1) as delay, i}
@@ -112,7 +112,7 @@ declare function variable(path: string): string;
112
112
 
113
113
  /**
114
114
  * get resource at path
115
- * @param {string} path - path of the resource (e.g: g/all/my_resource)
115
+ * @param {string} path - path of the resource (e.g: f/examples/my_resource)
116
116
  */
117
117
  declare function resource(path: string): any;
118
118
 
@@ -35,7 +35,7 @@ setContext('PropPickerWrapper', {
35
35
  on:click_outside={() => propPickerConfig.set(undefined)}
36
36
  >
37
37
  <Splitpanes>
38
- <Pane minSize={20} size={60} class="relative p-4 !transition-none">
38
+ <Pane minSize={20} size={60} class="relative p-2 !transition-none">
39
39
  <slot />
40
40
  </Pane>
41
41
  <Pane
@@ -8,7 +8,7 @@ import Node from '../../nodes/views/Node.svelte';
8
8
  import { determineD3Instance } from '../..//d3/controllers/d3';
9
9
  import { findStore } from '../../store/controllers/storeApi';
10
10
  import { onDestroy } from 'svelte';
11
- import { Expand } from 'lucide-svelte';
11
+ import { Expand, Minus, Plus } from 'lucide-svelte';
12
12
  //these are typscripted as any, however they have been transformed inside of store.ts
13
13
  export let canvasId;
14
14
  export let width;
@@ -162,34 +162,31 @@ function handleZoom(e) {
162
162
  </svg>
163
163
  </div>
164
164
  <div id="buttons">
165
- <button title="Zoom In" id="zoom_in">+</button>
166
- <button title="Zoom Out" id="zoom_out">-</button>
165
+ <button title="Zoom In" id="zoom_in">
166
+ <Plus size="14" class="flex justify-start m-1" />
167
+ </button>
168
+ <button title="Zoom Out" id="zoom_out">
169
+ <Minus size="14" class="flex justify-start m-1" />
170
+ </button>
167
171
  {#if download}
168
- <button title="Download" id="download" on:click={() => dispatch('expand')}
169
- ><Expand size="15" /></button
170
- >
172
+ <button on:click={() => dispatch('expand')}>
173
+ <Expand size="14" class="flex justify-start m-1" />
174
+ </button>
171
175
  {/if}
172
176
  </div>
173
177
 
174
178
  <style>
175
179
  #buttons {
176
180
  position: absolute;
177
- top: 4px;
178
- right: 10px;
181
+ top: 8px;
182
+ right: 8px;
179
183
  z-index: 20;
180
184
  }
181
- #buttons > #download {
182
- padding: 0;
183
- padding-left: 3.5px;
184
- }
185
+
185
186
  #buttons > button {
186
187
  border-radius: 4px;
187
188
  background-color: white;
188
- border: #999 solid 1px;
189
- padding-right: 4px;
190
- padding-left: 4px;
191
- width: 24px;
192
- height: 24px;
189
+ border: #bbb solid 1px;
193
190
  }
194
191
 
195
192
  .Nodes {
@@ -0,0 +1,64 @@
1
+ <script>export let height = '24px';
2
+ export let width = '24px';
3
+ </script>
4
+
5
+ <svg
6
+ x="0px"
7
+ y="0px"
8
+ {width}
9
+ {height}
10
+ viewBox="0 0 168 168"
11
+ fill="none"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ >
14
+ <path
15
+ fill-rule="evenodd"
16
+ clip-rule="evenodd"
17
+ d="M91.5447 32.0001L167 75.5642V92.9898L91.5447 136.554V119.128L151.909 84.277L91.545 49.4257L91.5447 32.0001Z"
18
+ fill="url(#paint0_linear_306_215)"
19
+ />
20
+ <path
21
+ fill-rule="evenodd"
22
+ clip-rule="evenodd"
23
+ d="M91.5447 66.8517L121.727 84.2774L91.5447 101.703V66.8517Z"
24
+ fill="url(#paint1_linear_306_215)"
25
+ />
26
+ <path
27
+ fill-rule="evenodd"
28
+ clip-rule="evenodd"
29
+ d="M76.4553 32.0016L1 75.5644V92.989L61.363 58.1399V127.841L76.4553 136.555V32.0016ZM46.2738 84.2782L16.0893 101.703L46.2738 119.127V84.2782Z"
30
+ fill="url(#paint2_linear_306_215)"
31
+ />
32
+ <defs>
33
+ <linearGradient
34
+ id="paint0_linear_306_215"
35
+ x1="1240.56"
36
+ y1="-575.423"
37
+ x2="1259.82"
38
+ y2="-575.423"
39
+ gradientUnits="userSpaceOnUse"
40
+ >
41
+ <stop stop-color="#F1007E" />
42
+ </linearGradient>
43
+ <linearGradient
44
+ id="paint1_linear_306_215"
45
+ x1="1240.56"
46
+ y1="-575.423"
47
+ x2="1259.83"
48
+ y2="-575.423"
49
+ gradientUnits="userSpaceOnUse"
50
+ >
51
+ <stop stop-color="#F1007E" />
52
+ </linearGradient>
53
+ <linearGradient
54
+ id="paint2_linear_306_215"
55
+ x1="1.00021"
56
+ y1="84.2773"
57
+ x2="76.4547"
58
+ y2="84.2773"
59
+ gradientUnits="userSpaceOnUse"
60
+ >
61
+ <stop stop-color="#6D6D6D" />
62
+ </linearGradient>
63
+ </defs>
64
+ </svg>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ height?: string | undefined;
5
+ width?: string | undefined;
6
+ };
7
+ events: {
8
+ [evt: string]: CustomEvent<any>;
9
+ };
10
+ slots: {};
11
+ };
12
+ export type ActivitypubIconProps = typeof __propDef.props;
13
+ export type ActivitypubIconEvents = typeof __propDef.events;
14
+ export type ActivitypubIconSlots = typeof __propDef.slots;
15
+ export default class ActivitypubIcon extends SvelteComponentTyped<ActivitypubIconProps, ActivitypubIconEvents, ActivitypubIconSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,39 @@
1
+ <script>export let height = '24px';
2
+ export let width = '24px';
3
+ </script>
4
+
5
+ <svg
6
+ x="0px"
7
+ y="0px"
8
+ {width}
9
+ {height}
10
+ viewBox="0 0 168 168"
11
+ fill="none"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ >
14
+ <g clip-path="url(#clip0_305_193)">
15
+ <path d="M168 0H0V168H168V0Z" fill="url(#paint0_linear_305_193)" />
16
+ <path
17
+ fill-rule="evenodd"
18
+ clip-rule="evenodd"
19
+ d="M81.455 78.9132C80.4161 79.5176 79.7697 80.6401 79.7697 81.8447V140.111L35.6974 115.467V58.1861L85.1696 29.5236L129.118 51.2995L81.455 78.9132ZM134.233 51.2447C134.233 50.038 133.588 48.9134 132.426 48.2479L86.8276 25.6507C85.7866 25.0505 84.4938 25.0484 83.455 25.6528L33.1852 54.7765C32.1464 55.3809 31.5 56.5034 31.5 57.708V115.953C31.5 117.158 32.1464 118.28 33.2167 118.902L78.9051 144.449C79.4255 144.75 80.0111 144.9 80.5945 144.9C81.1758 144.9 81.7614 144.75 82.2797 144.449C83.3207 143.847 83.9671 142.725 83.9671 141.518V82.3228L132.547 54.1763C133.588 53.574 134.233 52.4515 134.233 51.2447ZM134.335 115.599L94.4605 139.989V118.15L115.252 104.733L115.395 103.791C115.433 103.545 115.447 103.545 115.447 102.41L115.512 76.3565L134.401 65.4117L134.335 115.599ZM136.913 61.0502C135.87 60.4416 134.577 60.4437 133.536 61.0502L113.428 72.6984C112.799 73.0417 111.317 73.8483 111.317 75.512L111.25 102.306L92.0869 114.673C90.9431 115.355 90.2631 116.436 90.2631 117.577V141.347C90.2631 142.537 90.9032 143.622 91.9757 144.243C92.536 144.565 93.1593 144.729 93.7805 144.729C94.3912 144.729 95.002 144.574 95.5539 144.253L136.852 118.994C137.891 118.39 138.533 117.267 138.533 116.069L138.6 63.9796C138.6 62.775 137.954 61.6525 136.913 61.0502Z"
20
+ fill="white"
21
+ />
22
+ </g>
23
+ <defs>
24
+ <linearGradient
25
+ id="paint0_linear_305_193"
26
+ x1="0"
27
+ y1="16800"
28
+ x2="16800"
29
+ y2="0"
30
+ gradientUnits="userSpaceOnUse"
31
+ >
32
+ <stop stop-color="#C8511B" />
33
+ <stop offset="1" stop-color="#FF9900" />
34
+ </linearGradient>
35
+ <clipPath id="clip0_305_193">
36
+ <rect width="168" height="168" fill="white" />
37
+ </clipPath>
38
+ </defs>
39
+ </svg>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ height?: string | undefined;
5
+ width?: string | undefined;
6
+ };
7
+ events: {
8
+ [evt: string]: CustomEvent<any>;
9
+ };
10
+ slots: {};
11
+ };
12
+ export type AwsEcrIconProps = typeof __propDef.props;
13
+ export type AwsEcrIconEvents = typeof __propDef.events;
14
+ export type AwsEcrIconSlots = typeof __propDef.slots;
15
+ export default class AwsEcrIcon extends SvelteComponentTyped<AwsEcrIconProps, AwsEcrIconEvents, AwsEcrIconSlots> {
16
+ }
17
+ export {};
@@ -0,0 +1,18 @@
1
+ <script>export let height = '24px';
2
+ export let width = '24px';
3
+ </script>
4
+
5
+ <svg
6
+ x="0px"
7
+ y="0px"
8
+ {width}
9
+ {height}
10
+ viewBox="0 0 168 168"
11
+ fill="none"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ >
14
+ <path
15
+ d="M18.8184 100.099C24.3923 100.099 28.5042 97.9512 30.9257 95.0271L26.2655 91.0523C24.3923 93.1082 22.0622 94.1591 18.9554 94.1591C12.6505 94.1591 8.76698 89.4075 8.76698 83.5594C8.76698 77.7114 12.6505 72.8684 18.8184 72.8684C21.6967 72.8684 24.0725 73.8736 25.9914 75.8838L30.5145 71.9547C27.6362 68.5281 24.0268 66.929 18.8184 66.929C8.94973 66.929 2.14221 74.3761 2.14221 83.5594C2.14221 92.6971 9.31524 100.099 18.8184 100.099ZM42.5676 100.099C46.8166 100.099 48.964 98.3167 50.2432 95.6211V99.5046H56.2284V75.7468H50.1062V79.4932C48.8269 76.9347 46.6796 75.2442 42.5676 75.2442C36.0342 75.2442 30.8258 80.8638 30.8258 87.7171C30.8258 94.5703 36.0342 100.099 42.5676 100.099ZM36.9937 87.6714C36.9937 83.9706 39.6436 80.8182 43.5728 80.8182C47.639 80.8182 50.2432 84.0163 50.2432 87.7171C50.2432 91.4178 47.639 94.5246 43.5728 94.5246C39.6436 94.5246 36.9937 91.2807 36.9937 87.6714ZM59.893 99.5046H66.0609V66.1523H59.893V99.5046ZM72.9983 100.099C75.3741 100.099 77.0646 98.271 77.0646 96.078C77.0646 93.9306 75.3741 92.1031 72.9983 92.1031C70.6225 92.1031 68.8864 93.9306 68.8864 96.078C68.8864 98.271 70.6225 100.099 72.9983 100.099ZM90.3199 100.099C94.9801 100.099 98.2696 98.4081 100.508 95.5297L96.0309 91.6462C94.7973 93.291 93.2439 94.4789 90.8681 94.4789C86.939 94.4789 84.2434 91.3264 84.2434 87.6257C84.2434 83.9249 86.8019 80.7725 90.7311 80.7725C92.8327 80.7725 94.6603 81.8233 95.7568 83.4681L100.508 79.5846C98.498 76.7976 94.9801 75.1071 90.6397 75.1528C83.3753 75.1985 78.0755 80.7268 78.0755 87.6257C78.0755 94.5246 83.5124 100.099 90.3199 100.099ZM113.174 100.099C120.529 100.099 125.829 94.5246 125.829 87.6714C125.829 80.8182 120.529 75.1985 113.174 75.1985C105.818 75.1985 100.518 80.8182 100.518 87.6714C100.518 94.5246 105.818 100.099 113.174 100.099ZM106.686 87.6714C106.686 83.9706 109.244 80.8182 113.174 80.8182C117.103 80.8182 119.661 83.9706 119.661 87.6714C119.661 91.3721 117.103 94.4789 113.174 94.4789C109.244 94.4789 106.686 91.3721 106.686 87.6714ZM128.559 99.5046H134.727V86.4835C134.727 82.3715 137.057 80.5897 139.661 80.5897C142.722 80.5897 144.778 82.3715 144.778 86.4835V99.5046H150.946V86.4835C150.946 81.9147 152.911 80.5897 155.79 80.5897C158.577 80.5897 160.541 82.3715 160.541 86.4835V99.5046H166.709V84.9758C166.709 78.9906 162.78 75.1985 157.663 75.1985C153.505 75.1985 151.22 76.7976 149.621 79.676C148.068 76.7976 145.235 75.1985 141.9 75.1985C138.245 75.1985 135.869 76.5692 134.635 79.2191V75.7468H128.559V99.5046Z"
16
+ fill="#141414"
17
+ />
18
+ </svg>
@@ -0,0 +1,17 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ height?: string | undefined;
5
+ width?: string | undefined;
6
+ };
7
+ events: {
8
+ [evt: string]: CustomEvent<any>;
9
+ };
10
+ slots: {};
11
+ };
12
+ export type CalcomIconProps = typeof __propDef.props;
13
+ export type CalcomIconEvents = typeof __propDef.events;
14
+ export type CalcomIconSlots = typeof __propDef.slots;
15
+ export default class CalcomIcon extends SvelteComponentTyped<CalcomIconProps, CalcomIconEvents, CalcomIconSlots> {
16
+ }
17
+ export {};