Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
acffe4b
chore: remove docs generation - WF-235
madeindjs Apr 4, 2025
2526bb0
fix: Undo reliability issues
ramedina86 Apr 15, 2025
5b0dafd
feat: Add transaction mismatch warning
ramedina86 Apr 15, 2025
85b0adb
fix(ui): improve writer agent deployment
madeindjs Apr 15, 2025
d152685
Merge pull request #826 from writer/fix-undo-reliability
ramedina86 Apr 15, 2025
16eb952
Merge pull request #811 from writer/WF-235
madeindjs Apr 16, 2025
6933985
Merge pull request #827 from writer/fix-writer-deploy
madeindjs Apr 16, 2025
6cce57b
feat(ui): introduce blueprint snap grid - WF-297
madeindjs Apr 10, 2025
260dd89
feat(ui): align blueprint node on the grid on autoarrange - WF-297
madeindjs Apr 11, 2025
3f1dc3d
feat(ui): snap the node on releasing drag - WF-297
madeindjs Apr 11, 2025
b052254
feat(ui): refactor node BCR computation - WF-297
madeindjs Apr 11, 2025
8763e33
feat(ui): prevent colision on node move (WIP) - WF-297
madeindjs Apr 11, 2025
1e324e8
chore(ui): refactor `zoomRatio` - WF-297
madeindjs Apr 11, 2025
7a35dcf
feat(ui): implement finding new position on node move - WF-297
madeindjs Apr 11, 2025
17416a0
feat(ui): find best position on node move - WF-297
madeindjs Apr 14, 2025
7c75ed3
chore(ui): remove debugging grid - WF-297
madeindjs Apr 14, 2025
ac8580d
fix(ui): handle special range - WF-297
madeindjs Apr 14, 2025
f1a9e8d
fix(ui): handle falsy coordinates - WF-297
madeindjs Apr 14, 2025
0591958
fix(ui): improve auto-arrange and handle new component dropped - WF-297
madeindjs Apr 14, 2025
4a7279d
fix(ui): avoiding moving node on input - WF-297
madeindjs Apr 14, 2025
01a5343
fix(ui): handle offset in blueprint grid - WF-297
madeindjs Apr 14, 2025
9afe21f
fix(ui): improve rounding snap grid - WF-297
madeindjs Apr 15, 2025
d66fbdd
feat(ui): display grid dots in blueprints - WF-297
madeindjs Apr 15, 2025
7cf94ac
feat(ui): update blueprint colors - WF-297
madeindjs Apr 16, 2025
133b68e
fix(ui): improve grid alignement - WF-297
madeindjs Apr 16, 2025
0c03ea2
feat(ui): add shortcurt to disable grid - WF-297
madeindjs Apr 16, 2025
6d4a5f2
fix: autogen X-Agent-Token header retrieval
mmikita95 Apr 17, 2025
b4baeee
Merge pull request #825 from writer/WF-297
madeindjs Apr 17, 2025
77a79ff
feat(ui): introduce `WdsButtonSplit` - WF-360
madeindjs Apr 16, 2025
3e2c75c
Merge pull request #829 from mmikita95/fix-autogen-header
ramedina86 Apr 17, 2025
ed2fa42
fix(ui): hide description in run blueprint when no alias - WF-360
madeindjs Apr 17, 2025
94cd64e
chore(ui): bump vitest version
madeindjs Apr 17, 2025
c0c87ee
Merge pull request #828 from writer/WF-360
madeindjs Apr 17, 2025
a1aa230
Merge pull request #830 from writer/bump-vitest
madeindjs Apr 17, 2025
f511ba3
feat: ReAct built in
ramedina86 Apr 17, 2025
0ffcc5a
fix(ui): makes blueprint assets absolute instead of relative
madeindjs Apr 23, 2025
59d71db
Merge pull request #835 from writer/fix-url-blueprint-status
madeindjs Apr 23, 2025
7da7ea9
chore: Bump rc version
ramedina86 Apr 23, 2025
b1eefe9
chore: Pyproject updates
ramedina86 Apr 23, 2025
8054cb2
Merge pull request #831 from writer/feat-react
ramedina86 Apr 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions alfred/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@

@alfred.command("ci", help="continuous integration pipeline")
@alfred.option("--front", "-f", help="run for frontend only", is_flag=True, default=False)
@alfred.option("--docs", "-d", help="run for docs only", is_flag=True, default=False)
@alfred.option("--back", "-b", help="run for backend only", is_flag=True, default=False)
@alfred.option("--e2e", "-e", help="run for end-to-end only", default=None)
def ci(front, back, e2e, docs):
no_flags = not front and not back and not e2e and not docs
def ci(front, back, e2e):
no_flags = not front and not back and not e2e

if front or no_flags:
alfred.invoke_command("npm.lint")
Expand All @@ -22,8 +21,6 @@ def ci(front, back, e2e, docs):
alfred.invoke_command("ci.mypy")
alfred.invoke_command("ci.ruff")
alfred.invoke_command("ci.pytest")
if docs or no_flags:
alfred.invoke_command("npm.docs.test")
if e2e:
alfred.invoke_command("npm.e2e", browser=e2e)

Expand Down
5 changes: 0 additions & 5 deletions alfred/npm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ def npm_build():
def npm_build_custom_components():
alfred.run("npm run ui:custom.build")

@alfred.command("npm.docs.test", help="test against documentation")
def npm_docs_test():
alfred.run("npm run docs:test")

@alfred.command("npm.storybook", help="build storybook for continuous integration")
def npm_storybook():
os.chdir("src/ui")
Expand All @@ -34,4 +30,3 @@ def npm_storybook():
@alfred.command("npm.codegen", help="generate code for low code ui")
def npm_codegen():
alfred.run("npm run ui:codegen")
alfred.run("npm run docs:codegen")
7 changes: 1 addition & 6 deletions alfred/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@
import alfred


@alfred.command("run.docs", help="preview the documentation as a developper")
def run_docs():
os.chdir('docs')
alfred.run("npm run preview")

@alfred.command("run.storybook", help="preview the storybook as a developper")
def run_storybook():
os.chdir('src/ui')
os.chdir("src/ui")
alfred.run("npm run storybook")
1 change: 0 additions & 1 deletion docs/.gitignore

This file was deleted.

107 changes: 0 additions & 107 deletions docs/codegen/core.js

This file was deleted.

49 changes: 0 additions & 49 deletions docs/codegen/generator_components_pages.mjs

This file was deleted.

3 changes: 0 additions & 3 deletions docs/components/.gitignore

This file was deleted.

74 changes: 0 additions & 74 deletions docs/components/component_page.mdx.tpl

This file was deleted.

Loading