-
Notifications
You must be signed in to change notification settings - Fork 131
Grida Canvas - Parametric Scale (K) #471
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
1aedd64
add upscale icon
softmarshmallow a367646
update vn package configuration
softmarshmallow 80ee2ba
tests config
softmarshmallow de57faa
update cursor assets.
softmarshmallow 572957b
scale tool
softmarshmallow 3b4d8b6
update normal resize cursor
softmarshmallow 065e516
chore: compact label
softmarshmallow 7217f7e
ui
softmarshmallow d7e81d4
schema spec - parametric scale
softmarshmallow 2ddc7b9
editor#applyScale
softmarshmallow 89d31f2
ui
softmarshmallow 46aaa6c
scale gesture
softmarshmallow be14458
chore
softmarshmallow 90fe036
update docs
softmarshmallow 1c77268
Enhance scale gesture functionality by introducing a uniform similari…
softmarshmallow a1d091c
ui: chore
softmarshmallow 0bed2d4
fix docs build
softmarshmallow b7e71c8
.grida fixtures
softmarshmallow 496ffb2
n percision
softmarshmallow e0f7e6c
ux: scale closing rules
softmarshmallow 3b7f9b2
round trip testing
softmarshmallow 259a68a
scale space
softmarshmallow 446804f
nitpicks
softmarshmallow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| # Docs agent guide (`/docs`) | ||
|
|
||
| This directory is the **source of truth** for documentation content. | ||
|
|
||
| - **Source**: `/docs/**` (edit here) | ||
| - **Site build copy**: `/apps/docs/docs/**` (generated/synced during docs site build) | ||
| - **Published at**: `https://grida.co/docs` | ||
|
|
||
| ## Actively maintained | ||
|
|
||
| We **only actively maintain** the following docs areas: | ||
|
|
||
| - `docs/wg/**` — working group docs (design notes, architecture, proposals, WIP) | ||
| - `docs/reference/**` — reference docs (glossary, specs, stable technical references) | ||
|
|
||
| ## Everything else | ||
|
|
||
| Other folders under `/docs` are **not actively managed**. | ||
|
|
||
| - Unless you have a specific task, **avoid editing** content outside `docs/wg/**` and `docs/reference/**`. | ||
| - Do not edit generated artifacts under `/apps/docs/docs/**`. | ||
|
|
||
| ## Structure | ||
|
|
||
| | directory | name | description | active | | ||
| | -------------------------------- | ------------- | ---------------------------------------------------------------------- | ------ | | ||
| | [/docs/wg](./wg) | working group | working group documents, architecture documents, todo list, etc | yes | | ||
| | [/docs/reference](./reference) | reference | glossary and references (technical documents) | yes | | ||
| | [/docs/math](./math) | math | Math reference, used for internal docs referencing | yes | | ||
| | [/docs/platform](./platform) | platform | Grida Platform (API/Spec) documents | yes | | ||
| | [/docs/editor](./editor) | editor | Grida Editor - User Documentation | yes | | ||
| | [/docs/canvas](./canvas) | canvas | Grida Canvas SDK - User Documentation | no | | ||
| | [/docs/cli](./cli) | cli | Grida CLI - User Documentation | yes | | ||
| | [/docs/together](./together) | together | Contributing, Support, Community, etc | yes | | ||
| | [/docs/with-figma](./with-figma) | with-figma | Grida with Figma - Grida <-> Figma compatibility and user guides | yes | | ||
|
softmarshmallow marked this conversation as resolved.
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
editor/grida-canvas-react-starter-kit/starterkit-icons/upscale.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| import * as React from "react"; | ||
|
|
||
| export const UpscaleIcon = ({ ...props }: React.SVGProps<SVGSVGElement>) => { | ||
| return ( | ||
| <svg | ||
| xmlns="http://www.w3.org/2000/svg" | ||
| width="24" | ||
| height="24" | ||
| viewBox="0 0 24 24" | ||
| fill="none" | ||
| {...props} | ||
| > | ||
| <path | ||
| stroke="currentColor" | ||
| strokeLinecap="round" | ||
| strokeLinejoin="round" | ||
| strokeWidth="2" | ||
| d="M16 3h5v5M17 21h2a2 2 0 0 0 2-2M21 12v3M21 3l-5 5M3 7V5a2 2 0 0 1 2-2M9 3h3M12 11H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1Z" | ||
| /> | ||
| </svg> | ||
| ); | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.