Skip to content

Commit c4f29c5

Browse files
Merge origin/staging into feat/sim-cli
2 parents c2ccac2 + 3848f97 commit c4f29c5

54 files changed

Lines changed: 2033 additions & 342 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/docs/components/icons.tsx

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7538,26 +7538,6 @@ export function BedrockIcon(props: SVGProps<SVGSVGElement>) {
75387538
)
75397539
}
75407540

7541-
export function TableIcon(props: SVGProps<SVGSVGElement>) {
7542-
return (
7543-
<svg
7544-
xmlns='http://www.w3.org/2000/svg'
7545-
viewBox='0 0 24 24'
7546-
fill='none'
7547-
stroke='currentColor'
7548-
strokeWidth={2}
7549-
strokeLinecap='round'
7550-
strokeLinejoin='round'
7551-
{...props}
7552-
>
7553-
<rect width='18' height='18' x='3' y='3' rx='2' />
7554-
<path d='M3 9h18' />
7555-
<path d='M3 15h18' />
7556-
<path d='M9 3v18' />
7557-
<path d='M15 3v18' />
7558-
</svg>
7559-
)
7560-
}
75617541
export function ReductoIcon(props: SVGProps<SVGSVGElement>) {
75627542
return (
75637543
<svg

apps/docs/components/ui/icon-mapping.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Maps block types to their icon component references
44

55
import type { ComponentType, SVGProps } from 'react'
6-
import { Library, Rocket } from '@sim/emcn/icons'
6+
import { Library, Rocket, Table } from '@sim/emcn/icons'
77
import {
88
A2AIcon,
99
AgentMailIcon,
@@ -225,7 +225,6 @@ import {
225225
StagehandIcon,
226226
StripeIcon,
227227
SupabaseIcon,
228-
TableIcon,
229228
TailscaleIcon,
230229
TavilyIcon,
231230
TelegramIcon,
@@ -518,7 +517,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
518517
stt: STTIcon,
519518
stt_v2: STTIcon,
520519
supabase: SupabaseIcon,
521-
table: TableIcon,
520+
table: Table,
522521
tailscale: TailscaleIcon,
523522
tavily: TavilyIcon,
524523
telegram: TelegramIcon,

apps/docs/content/docs/en/integrations/azure_data_explorer.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ Materialize the result of a KQL query into a table with .set, .append, .set-or-a
349349
| `mode` | string | No | set \(create, fail if it exists\), append \(add to an existing table\), set-or-append \(default\), or set-or-replace \(replace all data\) |
350350
| `sourceQuery` | string | Yes | KQL query whose result becomes the ingested data \(e.g., LogsTable \| where Level == "Error" \| where Timestamp &gt; ago\(1h\)\). Project the columns in the target table\'s order — matching is positional, not by name |
351351
| `async` | boolean | No | Return immediately with an OperationId and keep ingesting in the background. Check progress with Show Operations |
352-
| `ingestionProperties` | string | No | Optional ingestion properties clause contents, e.g. distributed=true, tags=\"\[''daily''\]\" |
352+
| `ingestionProperties` | string | No | Optional ingestion properties clause contents, e.g. distributed=true, tags='\["daily"\]' |
353353

354354
#### Output
355355

apps/docs/content/docs/en/integrations/grafana.mdx

Lines changed: 169 additions & 17 deletions
Large diffs are not rendered by default.

apps/sim/app/(landing)/components/features/components/build-callout/components/workflow-showcase/showcase-data.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
import {
2-
AgentIcon,
3-
AnthropicIcon,
4-
GmailIcon,
5-
LinearIcon,
6-
SlackIcon,
7-
TableIcon,
8-
} from '@/components/icons'
1+
import { Table as TableIcon } from '@sim/emcn/icons'
2+
import { AgentIcon, AnthropicIcon, GmailIcon, LinearIcon, SlackIcon } from '@/components/icons'
93
import type { BlockDef } from '@/app/(landing)/components/hero/components/hero-visual/workflow-data'
104

115
/**

apps/sim/app/(landing)/components/hero/components/hero-platform-loop/stage-data.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { AgentIcon, CodeIcon, SlackIcon, StartIcon, TableIcon } from '@/components/icons'
1+
import { Table as TableIcon } from '@sim/emcn/icons'
2+
import { AgentIcon, CodeIcon, SlackIcon, StartIcon } from '@/components/icons'
23
import type { BlockDef } from '@/app/(landing)/components/hero/components/hero-visual/workflow-data'
34
import { BLOCK_WIDTH } from '@/app/(landing)/components/hero/components/hero-visual/workflow-data'
45

apps/sim/app/(landing)/enterprise/components/enterprise-platform-loop/stage-data.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { AgentIcon, ConditionalIcon, MailIcon, StartIcon, TableIcon } from '@/components/icons'
1+
import { Table as TableIcon } from '@sim/emcn/icons'
2+
import { AgentIcon, ConditionalIcon, MailIcon, StartIcon } from '@/components/icons'
23
import type { BlockDef } from '@/app/(landing)/components/hero/components/hero-visual/workflow-data'
34

45
/**

apps/sim/app/(landing)/solutions/compliance/components/compliance-hero-loop.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use client'
22

3-
import { AgentIcon, ConditionalIcon, ScheduleIcon, SlackIcon, TableIcon } from '@/components/icons'
3+
import { Table as TableIcon } from '@sim/emcn/icons'
4+
import { AgentIcon, ConditionalIcon, ScheduleIcon, SlackIcon } from '@/components/icons'
45
import { EnterprisePlatformLoop } from '@/app/(landing)/enterprise/components/enterprise-platform-loop'
56
import type { EnterpriseLoopContent } from '@/app/(landing)/enterprise/components/enterprise-platform-loop/stage-data'
67

apps/sim/app/(landing)/solutions/finance/components/finance-hero-loop.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use client'
22

3-
import { AgentIcon, ConditionalIcon, MailIcon, StartIcon, TableIcon } from '@/components/icons'
3+
import { Table as TableIcon } from '@sim/emcn/icons'
4+
import { AgentIcon, ConditionalIcon, MailIcon, StartIcon } from '@/components/icons'
45
import { EnterprisePlatformLoop } from '@/app/(landing)/enterprise/components/enterprise-platform-loop'
56
import type { EnterpriseLoopContent } from '@/app/(landing)/enterprise/components/enterprise-platform-loop/stage-data'
67

apps/sim/app/(landing)/workflows/components/workflows-editor-loop.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
'use client'
22

3-
import {
4-
AgentIcon,
5-
ConditionalIcon,
6-
JiraIcon,
7-
SlackIcon,
8-
StartIcon,
9-
TableIcon,
10-
} from '@/components/icons'
3+
import { Table as TableIcon } from '@sim/emcn/icons'
4+
import { AgentIcon, ConditionalIcon, JiraIcon, SlackIcon, StartIcon } from '@/components/icons'
115
import { EditorLoop, type EditorLoopContent } from '@/app/(landing)/components/shared/editor-loop'
126

137
/**

0 commit comments

Comments
 (0)