├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── package.json ├── postcss.config.cjs ├── src ├── Stores.ts ├── app.d.ts ├── app.html ├── app.postcss ├── lib │ ├── Modules │ │ ├── MainFrameFunctions.ts │ │ ├── cssFunctions.ts │ │ └── helperFunctions.ts │ ├── PanelComponents │ │ ├── ComponentsPanel.svelte │ │ ├── ElementsPanel.svelte │ │ ├── NavigatorPanel.svelte │ │ ├── PagesPanel.svelte │ │ └── UploadsPanel.svelte │ ├── PropertyComponents │ │ ├── Background.svelte │ │ ├── Border.svelte │ │ ├── Display.svelte │ │ ├── Selector.svelte │ │ ├── Sizing.svelte │ │ ├── Spacing.svelte │ │ └── Typography.svelte │ └── UI │ │ ├── Accordion.svelte │ │ ├── ButtonGroup.svelte │ │ ├── Dropdown.svelte │ │ ├── Input.svelte │ │ ├── InputBar.svelte │ │ ├── MiniInputBar.svelte │ │ ├── MultiSelect.svelte │ │ ├── TagInputBar.svelte │ │ ├── Tree.svelte │ │ └── TreeView.svelte └── routes │ ├── +layout.svelte │ ├── +layout.ts │ ├── +page.svelte │ ├── Header.svelte │ ├── Loader.svelte │ ├── MainFrame.svelte │ ├── Properties.svelte │ └── Sidebar.svelte ├── static ├── .nojekyll ├── Icons │ ├── Border │ │ └── corner.svg │ ├── Display │ │ ├── Align │ │ │ ├── baseline.svg │ │ │ ├── center.svg │ │ │ ├── end.svg │ │ │ ├── start.svg │ │ │ └── stretch.svg │ │ ├── Justify │ │ │ ├── between.svg │ │ │ ├── center.svg │ │ │ ├── end.svg │ │ │ ├── evenly.svg │ │ │ └── start.svg │ │ ├── block.svg │ │ ├── flex.svg │ │ ├── grid.svg │ │ ├── inline-block.svg │ │ ├── inline.svg │ │ ├── more.svg │ │ └── none.svg │ ├── ElementsPanel │ │ ├── button.svg │ │ ├── div.svg │ │ ├── heading.svg │ │ ├── image.svg │ │ ├── input.svg │ │ └── paragraph.svg │ ├── Header │ │ ├── export.svg │ │ └── menu.svg │ ├── NavigatorPanel │ │ ├── br.svg │ │ ├── button.svg │ │ ├── heading.svg │ │ ├── image.svg │ │ ├── input.svg │ │ ├── paragraph.svg │ │ ├── square.svg │ │ └── window.svg │ ├── Sidebar │ │ ├── add.svg │ │ ├── components.svg │ │ ├── files.svg │ │ ├── folder.svg │ │ └── navigator.svg │ ├── TextEdit │ │ ├── bold.svg │ │ ├── italic.svg │ │ ├── link.svg │ │ ├── strikethrough.svg │ │ ├── style.svg │ │ └── underline.svg │ ├── Typography │ │ ├── text-center.svg │ │ ├── text-decoration-line-through.svg │ │ ├── text-decoration-none.svg │ │ ├── text-decoration-overline.svg │ │ ├── text-direction-left.svg │ │ ├── text-direction-right.svg │ │ ├── text-italic.svg │ │ ├── text-justify.svg │ │ ├── text-left.svg │ │ ├── text-regular.svg │ │ └── text-right.svg │ ├── caret-down.svg │ ├── dropdown.svg │ └── selected.svg ├── favicon.png ├── fonts │ └── Inter-VariableFont.ttf ├── loading.json └── userFiles │ ├── default_image.svg │ └── index.html ├── svelte.config.js ├── tailwind.config.ts ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /src/Stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/Stores.ts -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/app.html -------------------------------------------------------------------------------- /src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/app.postcss -------------------------------------------------------------------------------- /src/lib/Modules/MainFrameFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/Modules/MainFrameFunctions.ts -------------------------------------------------------------------------------- /src/lib/Modules/cssFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/Modules/cssFunctions.ts -------------------------------------------------------------------------------- /src/lib/Modules/helperFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/Modules/helperFunctions.ts -------------------------------------------------------------------------------- /src/lib/PanelComponents/ComponentsPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PanelComponents/ComponentsPanel.svelte -------------------------------------------------------------------------------- /src/lib/PanelComponents/ElementsPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PanelComponents/ElementsPanel.svelte -------------------------------------------------------------------------------- /src/lib/PanelComponents/NavigatorPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PanelComponents/NavigatorPanel.svelte -------------------------------------------------------------------------------- /src/lib/PanelComponents/PagesPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PanelComponents/PagesPanel.svelte -------------------------------------------------------------------------------- /src/lib/PanelComponents/UploadsPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PanelComponents/UploadsPanel.svelte -------------------------------------------------------------------------------- /src/lib/PropertyComponents/Background.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PropertyComponents/Background.svelte -------------------------------------------------------------------------------- /src/lib/PropertyComponents/Border.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PropertyComponents/Border.svelte -------------------------------------------------------------------------------- /src/lib/PropertyComponents/Display.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PropertyComponents/Display.svelte -------------------------------------------------------------------------------- /src/lib/PropertyComponents/Selector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PropertyComponents/Selector.svelte -------------------------------------------------------------------------------- /src/lib/PropertyComponents/Sizing.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PropertyComponents/Sizing.svelte -------------------------------------------------------------------------------- /src/lib/PropertyComponents/Spacing.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PropertyComponents/Spacing.svelte -------------------------------------------------------------------------------- /src/lib/PropertyComponents/Typography.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/PropertyComponents/Typography.svelte -------------------------------------------------------------------------------- /src/lib/UI/Accordion.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/UI/Accordion.svelte -------------------------------------------------------------------------------- /src/lib/UI/ButtonGroup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/UI/ButtonGroup.svelte -------------------------------------------------------------------------------- /src/lib/UI/Dropdown.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/UI/Dropdown.svelte -------------------------------------------------------------------------------- /src/lib/UI/Input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/UI/Input.svelte -------------------------------------------------------------------------------- /src/lib/UI/InputBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/UI/InputBar.svelte -------------------------------------------------------------------------------- /src/lib/UI/MiniInputBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/UI/MiniInputBar.svelte -------------------------------------------------------------------------------- /src/lib/UI/MultiSelect.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/UI/MultiSelect.svelte -------------------------------------------------------------------------------- /src/lib/UI/TagInputBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/UI/TagInputBar.svelte -------------------------------------------------------------------------------- /src/lib/UI/Tree.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/UI/Tree.svelte -------------------------------------------------------------------------------- /src/lib/UI/TreeView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/lib/UI/TreeView.svelte -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/routes/+layout.ts -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/routes/Header.svelte -------------------------------------------------------------------------------- /src/routes/Loader.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/routes/Loader.svelte -------------------------------------------------------------------------------- /src/routes/MainFrame.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/routes/MainFrame.svelte -------------------------------------------------------------------------------- /src/routes/Properties.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/routes/Properties.svelte -------------------------------------------------------------------------------- /src/routes/Sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/src/routes/Sidebar.svelte -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/Icons/Border/corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Border/corner.svg -------------------------------------------------------------------------------- /static/Icons/Display/Align/baseline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/Align/baseline.svg -------------------------------------------------------------------------------- /static/Icons/Display/Align/center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/Align/center.svg -------------------------------------------------------------------------------- /static/Icons/Display/Align/end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/Align/end.svg -------------------------------------------------------------------------------- /static/Icons/Display/Align/start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/Align/start.svg -------------------------------------------------------------------------------- /static/Icons/Display/Align/stretch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/Align/stretch.svg -------------------------------------------------------------------------------- /static/Icons/Display/Justify/between.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/Justify/between.svg -------------------------------------------------------------------------------- /static/Icons/Display/Justify/center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/Justify/center.svg -------------------------------------------------------------------------------- /static/Icons/Display/Justify/end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/Justify/end.svg -------------------------------------------------------------------------------- /static/Icons/Display/Justify/evenly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/Justify/evenly.svg -------------------------------------------------------------------------------- /static/Icons/Display/Justify/start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/Justify/start.svg -------------------------------------------------------------------------------- /static/Icons/Display/block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/block.svg -------------------------------------------------------------------------------- /static/Icons/Display/flex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/flex.svg -------------------------------------------------------------------------------- /static/Icons/Display/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/grid.svg -------------------------------------------------------------------------------- /static/Icons/Display/inline-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/inline-block.svg -------------------------------------------------------------------------------- /static/Icons/Display/inline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/inline.svg -------------------------------------------------------------------------------- /static/Icons/Display/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/more.svg -------------------------------------------------------------------------------- /static/Icons/Display/none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Display/none.svg -------------------------------------------------------------------------------- /static/Icons/ElementsPanel/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/ElementsPanel/button.svg -------------------------------------------------------------------------------- /static/Icons/ElementsPanel/div.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/ElementsPanel/div.svg -------------------------------------------------------------------------------- /static/Icons/ElementsPanel/heading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/ElementsPanel/heading.svg -------------------------------------------------------------------------------- /static/Icons/ElementsPanel/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/ElementsPanel/image.svg -------------------------------------------------------------------------------- /static/Icons/ElementsPanel/input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/ElementsPanel/input.svg -------------------------------------------------------------------------------- /static/Icons/ElementsPanel/paragraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/ElementsPanel/paragraph.svg -------------------------------------------------------------------------------- /static/Icons/Header/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Header/export.svg -------------------------------------------------------------------------------- /static/Icons/Header/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Header/menu.svg -------------------------------------------------------------------------------- /static/Icons/NavigatorPanel/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/NavigatorPanel/br.svg -------------------------------------------------------------------------------- /static/Icons/NavigatorPanel/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/NavigatorPanel/button.svg -------------------------------------------------------------------------------- /static/Icons/NavigatorPanel/heading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/NavigatorPanel/heading.svg -------------------------------------------------------------------------------- /static/Icons/NavigatorPanel/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/NavigatorPanel/image.svg -------------------------------------------------------------------------------- /static/Icons/NavigatorPanel/input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/NavigatorPanel/input.svg -------------------------------------------------------------------------------- /static/Icons/NavigatorPanel/paragraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/NavigatorPanel/paragraph.svg -------------------------------------------------------------------------------- /static/Icons/NavigatorPanel/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/NavigatorPanel/square.svg -------------------------------------------------------------------------------- /static/Icons/NavigatorPanel/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/NavigatorPanel/window.svg -------------------------------------------------------------------------------- /static/Icons/Sidebar/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Sidebar/add.svg -------------------------------------------------------------------------------- /static/Icons/Sidebar/components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Sidebar/components.svg -------------------------------------------------------------------------------- /static/Icons/Sidebar/files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Sidebar/files.svg -------------------------------------------------------------------------------- /static/Icons/Sidebar/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Sidebar/folder.svg -------------------------------------------------------------------------------- /static/Icons/Sidebar/navigator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Sidebar/navigator.svg -------------------------------------------------------------------------------- /static/Icons/TextEdit/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/TextEdit/bold.svg -------------------------------------------------------------------------------- /static/Icons/TextEdit/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/TextEdit/italic.svg -------------------------------------------------------------------------------- /static/Icons/TextEdit/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/TextEdit/link.svg -------------------------------------------------------------------------------- /static/Icons/TextEdit/strikethrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/TextEdit/strikethrough.svg -------------------------------------------------------------------------------- /static/Icons/TextEdit/style.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/TextEdit/style.svg -------------------------------------------------------------------------------- /static/Icons/TextEdit/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/TextEdit/underline.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-center.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-decoration-line-through.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-decoration-line-through.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-decoration-none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-decoration-none.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-decoration-overline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-decoration-overline.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-direction-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-direction-left.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-direction-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-direction-right.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-italic.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-justify.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-left.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-regular.svg -------------------------------------------------------------------------------- /static/Icons/Typography/text-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/Typography/text-right.svg -------------------------------------------------------------------------------- /static/Icons/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/caret-down.svg -------------------------------------------------------------------------------- /static/Icons/dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/dropdown.svg -------------------------------------------------------------------------------- /static/Icons/selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/Icons/selected.svg -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/fonts/Inter-VariableFont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/fonts/Inter-VariableFont.ttf -------------------------------------------------------------------------------- /static/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/loading.json -------------------------------------------------------------------------------- /static/userFiles/default_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/userFiles/default_image.svg -------------------------------------------------------------------------------- /static/userFiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/static/userFiles/index.html -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git002/Visually/HEAD/vite.config.ts --------------------------------------------------------------------------------