Skip to content

Commit

Permalink
merge 2.0.0 (#48)
Browse files Browse the repository at this point in the history
* rename

* provide render pipeline

* save

* visual test success

* diagram shared

* performance

* [Prepare 2.0.0] refactor paintTransform and zOrder calculating logics (#36)

* hitTest must be only on gesture detector

* apply paintTransform

* layered

* Opacity (#39)

* [2.0.0] support decorated box on canvas (#40)

* canvas on color

* complete decorated Box

* performance

* text painter on canvas (#41)

* support clip (#42)

* update transform start on attach and custom paint api is added for canvas  (#45)

* update transform on attach

* good

* custom paint 성공

* good

* huummm

* deploy 2.0.0-alpha.1
  • Loading branch information
Moon-DaeSeung authored May 24, 2024
1 parent 44fb145 commit 7faf6a2
Show file tree
Hide file tree
Showing 185 changed files with 4,848 additions and 4,027 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"flutterjs",
"lerp",
"linkedom",
"LTWH",
"meursyphus",
"popmotion",
"postbuild",
Expand Down
24 changes: 15 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"author": "meursyphus",
"license": "MIT",
"workspaces": [
"packages/*"
"packages/*",
"shared"
],
"devDependencies": {
"@types/node": "^20.11.30",
Expand All @@ -31,5 +32,8 @@
"packages/**/*.{astro,js,jsx,ts,tsx,svelte,mdx}": [
"prettier --write"
]
},
"dependencies": {
"@meursyphus/flitter-chart": "^0.0.7"
}
}
10 changes: 3 additions & 7 deletions packages/docs/src/components/diagram/Diagram.svelte
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
<script lang="ts">
import Widget from "@meursyphus/flitter-svelte";
import Diagram from "./widget/Diagram";
import { Diagram } from "shared";
import { onMount } from "svelte";
import { project } from "./fixture";
import project from "./fixture/project";
let container: HTMLElement;
</script>

<div
bind:this={container}
class="w-full h-full border-l border-black bg-gray-200"
>
<Widget
widget={Diagram({ project: project, subscribe: () => () => {} })}
width="100%"
height="100%"
/>
<Diagram {project} />
</div>

<style>
Expand Down
201 changes: 0 additions & 201 deletions packages/docs/src/components/diagram/controller/DiagramController.ts

This file was deleted.

Loading

0 comments on commit 7faf6a2

Please sign in to comment.