├── .editorconfig ├── .env.dev ├── .env.prod ├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── assets └── badge.png ├── babel.config.json ├── macosscript.sh ├── manifest.json ├── modd.conf ├── package.json ├── src ├── app │ ├── components │ │ ├── App.jsx │ │ ├── action-args-form │ │ │ ├── IfComponent.jsx │ │ │ ├── LetterSpacingComponent.jsx │ │ │ ├── LetterSpacingRangeComponent.jsx │ │ │ ├── LineHeightComponent.jsx │ │ │ ├── LineHeightRangeComponent.jsx │ │ │ └── index.jsx │ │ ├── action-form │ │ │ └── index.jsx │ │ ├── action-list │ │ │ ├── actionItem.jsx │ │ │ └── index.jsx │ │ ├── alerts │ │ │ ├── FailAlert.jsx │ │ │ ├── SuccessAlert.jsx │ │ │ └── WarningAlert.jsx │ │ ├── buttons │ │ │ └── index.jsx │ │ ├── home │ │ │ └── index.jsx │ │ ├── icons │ │ │ ├── figma.jsx │ │ │ └── index.jsx │ │ ├── run-workflow-empty │ │ │ └── index.jsx │ │ ├── shortcut-item │ │ │ └── index.jsx │ │ ├── shortcut │ │ │ ├── Node.jsx │ │ │ ├── index.jsx │ │ │ └── styles.css │ │ ├── tabs │ │ │ └── index.jsx │ │ └── toggle │ │ │ └── index.jsx │ ├── hooks │ │ ├── click-outside.js │ │ ├── node-selection.js │ │ ├── plugin-data.js │ │ ├── use-previous.js │ │ └── workflow.js │ ├── index.html │ ├── index.jsx │ ├── reducers │ │ └── main.js │ ├── schema │ │ ├── actions.js │ │ ├── actions │ │ │ ├── layer.json │ │ │ ├── layout.json │ │ │ ├── properties.json │ │ │ ├── scripting.json │ │ │ └── text.json │ │ ├── shortcut.js │ │ └── text-form.js │ ├── styles │ │ ├── tailwind.css │ │ ├── tailwind.output.css │ │ └── ui.css │ └── utils │ │ ├── api.js │ │ ├── form.js │ │ ├── icons.js │ │ ├── state-actions.js │ │ └── workflow.js └── plugin │ ├── actions │ ├── components │ │ ├── BaseNodePropertiesComponent.js │ │ ├── BlendMixinComponent.js │ │ ├── CodeComponent.js │ │ ├── ContainerMixinComponent.js │ │ ├── CornerMixinComponent.js │ │ ├── EllipseNodeComponent.js │ │ ├── FrameNodeComponent.js │ │ ├── GeometryMixinComponent.js │ │ ├── HttpRequestComponent.js │ │ ├── LayoutMixinComponent.js │ │ ├── LineNodeComponent.js │ │ ├── PolygonNodeComponent.js │ │ ├── RectangleNodeComponent.js │ │ ├── SceneNodeMixinComponent.js │ │ ├── StarNodeComponent.js │ │ ├── StartComponent.js │ │ ├── TextNodeComponent.js │ │ └── VectorNodeComponent.js │ ├── data.js │ ├── info.js │ ├── nodes.js │ ├── rete.js │ ├── storage.js │ └── workflow.js │ ├── controller.js │ └── utils.js ├── tailwind.config.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.dev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.env.prod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/README.md -------------------------------------------------------------------------------- /assets/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/assets/badge.png -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/babel.config.json -------------------------------------------------------------------------------- /macosscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/macosscript.sh -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/manifest.json -------------------------------------------------------------------------------- /modd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/modd.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/package.json -------------------------------------------------------------------------------- /src/app/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/App.jsx -------------------------------------------------------------------------------- /src/app/components/action-args-form/IfComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/action-args-form/IfComponent.jsx -------------------------------------------------------------------------------- /src/app/components/action-args-form/LetterSpacingComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/action-args-form/LetterSpacingComponent.jsx -------------------------------------------------------------------------------- /src/app/components/action-args-form/LetterSpacingRangeComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/action-args-form/LetterSpacingRangeComponent.jsx -------------------------------------------------------------------------------- /src/app/components/action-args-form/LineHeightComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/action-args-form/LineHeightComponent.jsx -------------------------------------------------------------------------------- /src/app/components/action-args-form/LineHeightRangeComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/action-args-form/LineHeightRangeComponent.jsx -------------------------------------------------------------------------------- /src/app/components/action-args-form/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/action-args-form/index.jsx -------------------------------------------------------------------------------- /src/app/components/action-form/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/action-form/index.jsx -------------------------------------------------------------------------------- /src/app/components/action-list/actionItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/action-list/actionItem.jsx -------------------------------------------------------------------------------- /src/app/components/action-list/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/action-list/index.jsx -------------------------------------------------------------------------------- /src/app/components/alerts/FailAlert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/alerts/FailAlert.jsx -------------------------------------------------------------------------------- /src/app/components/alerts/SuccessAlert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/alerts/SuccessAlert.jsx -------------------------------------------------------------------------------- /src/app/components/alerts/WarningAlert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/alerts/WarningAlert.jsx -------------------------------------------------------------------------------- /src/app/components/buttons/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/buttons/index.jsx -------------------------------------------------------------------------------- /src/app/components/home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/home/index.jsx -------------------------------------------------------------------------------- /src/app/components/icons/figma.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/icons/figma.jsx -------------------------------------------------------------------------------- /src/app/components/icons/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/icons/index.jsx -------------------------------------------------------------------------------- /src/app/components/run-workflow-empty/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/run-workflow-empty/index.jsx -------------------------------------------------------------------------------- /src/app/components/shortcut-item/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/shortcut-item/index.jsx -------------------------------------------------------------------------------- /src/app/components/shortcut/Node.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/shortcut/Node.jsx -------------------------------------------------------------------------------- /src/app/components/shortcut/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/shortcut/index.jsx -------------------------------------------------------------------------------- /src/app/components/shortcut/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/shortcut/styles.css -------------------------------------------------------------------------------- /src/app/components/tabs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/tabs/index.jsx -------------------------------------------------------------------------------- /src/app/components/toggle/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/components/toggle/index.jsx -------------------------------------------------------------------------------- /src/app/hooks/click-outside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/hooks/click-outside.js -------------------------------------------------------------------------------- /src/app/hooks/node-selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/hooks/node-selection.js -------------------------------------------------------------------------------- /src/app/hooks/plugin-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/hooks/plugin-data.js -------------------------------------------------------------------------------- /src/app/hooks/use-previous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/hooks/use-previous.js -------------------------------------------------------------------------------- /src/app/hooks/workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/hooks/workflow.js -------------------------------------------------------------------------------- /src/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/index.html -------------------------------------------------------------------------------- /src/app/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/index.jsx -------------------------------------------------------------------------------- /src/app/reducers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/reducers/main.js -------------------------------------------------------------------------------- /src/app/schema/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/schema/actions.js -------------------------------------------------------------------------------- /src/app/schema/actions/layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/schema/actions/layer.json -------------------------------------------------------------------------------- /src/app/schema/actions/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/schema/actions/layout.json -------------------------------------------------------------------------------- /src/app/schema/actions/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/schema/actions/properties.json -------------------------------------------------------------------------------- /src/app/schema/actions/scripting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/schema/actions/scripting.json -------------------------------------------------------------------------------- /src/app/schema/actions/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/schema/actions/text.json -------------------------------------------------------------------------------- /src/app/schema/shortcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/schema/shortcut.js -------------------------------------------------------------------------------- /src/app/schema/text-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/schema/text-form.js -------------------------------------------------------------------------------- /src/app/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/styles/tailwind.css -------------------------------------------------------------------------------- /src/app/styles/tailwind.output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/styles/tailwind.output.css -------------------------------------------------------------------------------- /src/app/styles/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/styles/ui.css -------------------------------------------------------------------------------- /src/app/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/utils/api.js -------------------------------------------------------------------------------- /src/app/utils/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/utils/form.js -------------------------------------------------------------------------------- /src/app/utils/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/utils/icons.js -------------------------------------------------------------------------------- /src/app/utils/state-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/utils/state-actions.js -------------------------------------------------------------------------------- /src/app/utils/workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/app/utils/workflow.js -------------------------------------------------------------------------------- /src/plugin/actions/components/BaseNodePropertiesComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/BaseNodePropertiesComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/BlendMixinComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/BlendMixinComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/CodeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/CodeComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/ContainerMixinComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/ContainerMixinComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/CornerMixinComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/CornerMixinComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/EllipseNodeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/EllipseNodeComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/FrameNodeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/FrameNodeComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/GeometryMixinComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/GeometryMixinComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/HttpRequestComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/HttpRequestComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/LayoutMixinComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/LayoutMixinComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/LineNodeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/LineNodeComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/PolygonNodeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/PolygonNodeComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/RectangleNodeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/RectangleNodeComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/SceneNodeMixinComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/SceneNodeMixinComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/StarNodeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/StarNodeComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/StartComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/StartComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/TextNodeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/TextNodeComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/components/VectorNodeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/components/VectorNodeComponent.js -------------------------------------------------------------------------------- /src/plugin/actions/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/data.js -------------------------------------------------------------------------------- /src/plugin/actions/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/info.js -------------------------------------------------------------------------------- /src/plugin/actions/nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/nodes.js -------------------------------------------------------------------------------- /src/plugin/actions/rete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/rete.js -------------------------------------------------------------------------------- /src/plugin/actions/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/storage.js -------------------------------------------------------------------------------- /src/plugin/actions/workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/actions/workflow.js -------------------------------------------------------------------------------- /src/plugin/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/controller.js -------------------------------------------------------------------------------- /src/plugin/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/src/plugin/utils.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omhq/figma-workflows/HEAD/webpack.config.js --------------------------------------------------------------------------------