Skip to content

Commit eed2072

Browse files
feat/platform-v3 (#1698)
* feat(fonts): season replacing geist * feat(emcnn): created emcn * feat(sidebar): created new sidebar with header and workflow list * improvement(sidebar): expanded workflow/folder item text sizing and adjusted button padding * feat(sidebar): added search UI, updated workflows styling * improvement: globals styling with antialiased in dark mode only * feat(sidebar): blocks and triggers ui/ux updated * refactor(sidebar): moved logic into hooks * feat(sidebar): improved workflow/folder dragging UI/UX; refactored logic into hooks * improvement(sidebar): adjusted triggers/blocks padding for header * improvement(sidebar): dragging hover handler; closed folders by default minus active path * improvement(sidebar): panel resize logic * improvement(sidebar): blocks and triggers expanded indicator * feat(tooltips): new emcn component emerged * feat(sidebar): workflow list handling updated * refactor: added cursorrules * feat(panel): new panel layout * improvement(workspaces): firname's workspace instead of fn ln's workspace * feat(platform): panel header, new emcn icons, more button variants, refactor sidebar components * improvement(emcn): added button variants * feat(panel): tab system * feat(copilot): refactor, adjusted welcome and user-input UI/UX * feat(copilot): baseline user-input ui/ux improvement * feat(emcn): badge outline variant * fix: build errors * feat(copilot): base UI copilot * refactor(workflow-block): added hooks, components * feat(design): created design panel and removed isWide * refactor(subblock): edited components, styling * feat: emcn, editor * feat(panel): toolbar, editor * feat(workflow-block): refactor, adjust base styling * feat(workflow-block): new block, edge * feat: workflow-block, connections, action-bar, copilot * feat: panel, workflow, emcn, workflow block, subblocks; clean copilot * sim-326: remove remote code execution toggle, hide dropdown for language if E2B is not enabled * feat: sidebar navigation, tag coloring; refactor: rebased to staging * fix: build errors * improvement: subblock styles * feat: workspaces, terminal, emcn, controls * feat: delete workflow * fix: rebased * fix build errors --------- Co-authored-by: Vikhyath Mondreti <[email protected]>
1 parent 945405c commit eed2072

File tree

593 files changed

+31325
-21640
lines changed

Some content is hidden

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

593 files changed

+31325
-21640
lines changed

.cursorrules

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Role
2+
3+
You are a professional software engineer. All code you write MUST follow best practices, ensuring accuracy, quality, readability, and cleanliness. You MUST make FOCUSED EDITS that are EFFICIENT and ELEGANT.
4+
5+
## Logs
6+
7+
ENSURE that you use the logger.info and logger.warn and logger.error instead of the console.log whenever you want to display logs.
8+
9+
## Comments
10+
11+
You must use TSDOC for comments. Do not use ==== for comments to separate sections.
12+
13+
## Globals styles
14+
15+
You should not update the global styles unless it is absolutely necessary. Keep all styling local to components and files.
16+
17+
## Bun
18+
19+
Use bun and bunx not npm and npx

.github/CONTRIBUTING.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,7 @@ In addition, you will need to update the registries:
321321
{
322322
id: 'operation',
323323
title: 'Operation',
324-
type: 'dropdown',
325-
layout: 'full',
324+
type: 'dropdown'
326325
required: true,
327326
options: [
328327
{ label: 'Generate Embeddings', id: 'generate' },
@@ -333,8 +332,7 @@ In addition, you will need to update the registries:
333332
{
334333
id: 'apiKey',
335334
title: 'API Key',
336-
type: 'short-input',
337-
layout: 'full',
335+
type: 'short-input'
338336
placeholder: 'Your Pinecone API key',
339337
password: true,
340338
required: true,

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ sim-standalone.tar.gz
4646
next-env.d.ts
4747

4848
# cursorrules
49-
.cursorrules
49+
# .cursorrules
5050

5151
# docs
5252
/apps/docs/.source

0 commit comments

Comments
 (0)