├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml ├── actions │ └── prepare │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .husky ├── commit-msg ├── pre-commit └── pre-push ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .verdaccio └── config.yml ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── colors-to-tokens-plugin │ ├── eslint.config.js │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── components │ │ │ │ ├── svg.component.css │ │ │ │ └── svg.component.ts │ │ │ └── utils │ │ │ │ ├── __snapshots__ │ │ │ │ └── transform-to-token.spec.ts.snap │ │ │ │ ├── transform-to-token.spec.ts │ │ │ │ └── transform-to-token.ts │ │ ├── assets │ │ │ ├── icon.png │ │ │ └── manifest.json │ │ ├── index.html │ │ ├── main.ts │ │ ├── model.ts │ │ ├── plugin.ts │ │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.plugin.json │ ├── tsconfig.spec.json │ └── vite.config.ts ├── contrast-plugin │ ├── eslint.config.js │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.ts │ │ │ └── app.config.ts │ │ ├── assets │ │ │ ├── icon.png │ │ │ └── manifest.json │ │ ├── index.html │ │ ├── main.ts │ │ ├── model.ts │ │ ├── plugin.ts │ │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.plugin.json │ └── vite.config.ts ├── create-palette-plugin │ ├── .babelrc │ ├── .swcrc │ ├── eslint.config.js │ ├── index.html │ ├── project.json │ ├── public │ │ └── assets │ │ │ ├── icon.png │ │ │ └── manifest.json │ ├── src │ │ └── plugin.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── vite.config.ts ├── e2e │ ├── eslint.config.js │ ├── project.json │ ├── screenshots │ │ └── .gitkeep │ ├── src │ │ ├── __snapshots__ │ │ │ └── plugins.spec.ts.snap │ │ ├── models │ │ │ ├── file-rpc.model.ts │ │ │ └── shape.model.ts │ │ ├── plugins.spec.ts │ │ ├── plugins │ │ │ ├── component-library.ts │ │ │ ├── create-board-text-rect.ts │ │ │ ├── create-comments.ts │ │ │ ├── create-flexlayout.ts │ │ │ ├── create-gridlayout.ts │ │ │ ├── create-ruler-guides.ts │ │ │ ├── create-text.ts │ │ │ ├── group.ts │ │ │ ├── insert-svg.ts │ │ │ └── plugin-data.ts │ │ └── utils │ │ │ ├── agent.ts │ │ │ ├── api.ts │ │ │ ├── clean-id.ts │ │ │ └── get-file-url.ts │ ├── tsconfig.json │ └── vite.config.ts ├── example-styles │ ├── .babelrc │ ├── .swcrc │ ├── eslint.config.js │ ├── index.html │ ├── project.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── app │ │ │ ├── app.element.css │ │ │ ├── app.element.html │ │ │ └── app.element.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── main.ts │ │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── vite.config.ts ├── icons-plugin │ ├── eslint.config.js │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── components │ │ │ │ ├── icon-button │ │ │ │ │ ├── icon-button.component.css │ │ │ │ │ └── icon-button.component.ts │ │ │ │ └── icon-search │ │ │ │ │ ├── icon-search.component.css │ │ │ │ │ └── icon-search.component.ts │ │ │ └── pipes │ │ │ │ └── safe-html.pipe.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── icon.png │ │ │ └── manifest.json │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── model.ts │ │ ├── plugin.ts │ │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.plugin.json ├── lorem-ipsum-plugin │ ├── eslint.config.js │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.ts │ │ │ └── app.config.ts │ │ ├── assets │ │ │ ├── icon.png │ │ │ └── manifest.json │ │ ├── generator.spec.ts │ │ ├── generator.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── model.ts │ │ ├── plugin.ts │ │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.plugin.json │ └── vite.config.ts ├── poc-state-plugin │ ├── eslint.config.js │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ └── app.component.ts │ │ ├── assets │ │ │ └── manifest.json │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── plugin.ts │ │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.plugin.json ├── rename-layers-plugin │ ├── eslint.config.js │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── app.routes.ts │ │ │ └── model.ts │ │ ├── assets │ │ │ ├── icon.png │ │ │ └── manifest.json │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── plugin.ts │ │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.plugin.json └── table-plugin │ ├── eslint.config.js │ ├── project.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── model.ts │ │ └── nx-welcome.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── close.svg │ │ ├── icon.png │ │ └── manifest.json │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── plugin.ts │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.plugin.json ├── commitlint.config.js ├── docs ├── api-docs.md ├── create-angular-plugin.md ├── create-api.md ├── create-plugin.md ├── images │ └── plugin-menu.png ├── publish-package.md └── test-e2e.md ├── eslint.base.config.js ├── eslint.config.js ├── libs ├── plugin-types │ ├── README.md │ ├── index.d.ts │ ├── package.json │ ├── project.json │ └── tsconfig.json ├── plugins-runtime │ ├── README.md │ ├── eslint.config.js │ ├── package-lock.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── api │ │ │ ├── index.ts │ │ │ ├── openUI.api.ts │ │ │ └── plugin-api.spec.ts │ │ │ ├── assets │ │ │ └── resize.svg │ │ │ ├── create-modal.spec.ts │ │ │ ├── create-modal.ts │ │ │ ├── create-plugin.spec.ts │ │ │ ├── create-plugin.ts │ │ │ ├── create-sandbox.spec.ts │ │ │ ├── create-sandbox.ts │ │ │ ├── drag-handler.spec.ts │ │ │ ├── drag-handler.ts │ │ │ ├── global.d.ts │ │ │ ├── load-plugin.spec.ts │ │ │ ├── load-plugin.ts │ │ │ ├── modal │ │ │ ├── plugin-modal.ts │ │ │ └── plugin.modal.css │ │ │ ├── models │ │ │ ├── manifest.model.ts │ │ │ ├── manifest.schema.ts │ │ │ ├── open-ui-options.model.ts │ │ │ ├── open-ui-options.schema.ts │ │ │ ├── plugin-config.model.ts │ │ │ └── plugin.model.ts │ │ │ ├── parse-manifest.ts │ │ │ ├── parse-translate.ts │ │ │ ├── plugin-manager.spec.ts │ │ │ ├── plugin-manager.ts │ │ │ └── ses.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── vite.config.ts └── plugins-styles │ ├── README.md │ ├── package.json │ ├── project.json │ └── src │ └── lib │ ├── components │ ├── button.css │ ├── checkbox.css │ ├── icon.css │ ├── input.css │ ├── radio-button.css │ ├── select.css │ └── switch.css │ ├── core │ ├── fonts.css │ ├── generic.css │ ├── spacing.css │ └── swatches.css │ ├── icons │ └── chevron-bottom.svg │ └── styles.css ├── nx.json ├── package.json ├── project.json ├── tools ├── eslint.config.js ├── plugins │ └── plugin-tasks.ts ├── scripts │ ├── build-css.mjs │ ├── build-types.mjs │ └── publish.ts ├── tsconfig.json └── typedoc.css ├── tsconfig.base.json ├── typedoc.json └── vitest.workspace.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/actions/prepare/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.github/actions/prepare/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ "$HUSKY_HOOK" = "pre-push" ]; then 4 | npm run lint:affected 5 | fi 6 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.2.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.verdaccio/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.verdaccio/config.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "prettier.singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/README.md -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/eslint.config.js -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/project.json -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/app/app.component.css -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/app/components/svg.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/app/components/svg.component.css -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/app/components/svg.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/app/components/svg.component.ts -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/app/utils/__snapshots__/transform-to-token.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/app/utils/__snapshots__/transform-to-token.spec.ts.snap -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/app/utils/transform-to-token.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/app/utils/transform-to-token.spec.ts -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/app/utils/transform-to-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/app/utils/transform-to-token.ts -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/assets/icon.png -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/assets/manifest.json -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/index.html -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/main.ts -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/model.ts -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/src/plugin.ts -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/src/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/tsconfig.app.json -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/tsconfig.json -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/tsconfig.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/tsconfig.plugin.json -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/colors-to-tokens-plugin/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/colors-to-tokens-plugin/vite.config.ts -------------------------------------------------------------------------------- /apps/contrast-plugin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/eslint.config.js -------------------------------------------------------------------------------- /apps/contrast-plugin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/project.json -------------------------------------------------------------------------------- /apps/contrast-plugin/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/src/app/app.component.css -------------------------------------------------------------------------------- /apps/contrast-plugin/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/contrast-plugin/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/contrast-plugin/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/src/assets/icon.png -------------------------------------------------------------------------------- /apps/contrast-plugin/src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/src/assets/manifest.json -------------------------------------------------------------------------------- /apps/contrast-plugin/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/src/index.html -------------------------------------------------------------------------------- /apps/contrast-plugin/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/src/main.ts -------------------------------------------------------------------------------- /apps/contrast-plugin/src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/src/model.ts -------------------------------------------------------------------------------- /apps/contrast-plugin/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/src/plugin.ts -------------------------------------------------------------------------------- /apps/contrast-plugin/src/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/contrast-plugin/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/tsconfig.app.json -------------------------------------------------------------------------------- /apps/contrast-plugin/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/contrast-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/tsconfig.json -------------------------------------------------------------------------------- /apps/contrast-plugin/tsconfig.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/tsconfig.plugin.json -------------------------------------------------------------------------------- /apps/contrast-plugin/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/contrast-plugin/vite.config.ts -------------------------------------------------------------------------------- /apps/create-palette-plugin/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@nx/js/babel"] 3 | } 4 | -------------------------------------------------------------------------------- /apps/create-palette-plugin/.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/.swcrc -------------------------------------------------------------------------------- /apps/create-palette-plugin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/eslint.config.js -------------------------------------------------------------------------------- /apps/create-palette-plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/index.html -------------------------------------------------------------------------------- /apps/create-palette-plugin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/project.json -------------------------------------------------------------------------------- /apps/create-palette-plugin/public/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/public/assets/icon.png -------------------------------------------------------------------------------- /apps/create-palette-plugin/public/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/public/assets/manifest.json -------------------------------------------------------------------------------- /apps/create-palette-plugin/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/src/plugin.ts -------------------------------------------------------------------------------- /apps/create-palette-plugin/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/tsconfig.app.json -------------------------------------------------------------------------------- /apps/create-palette-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/tsconfig.json -------------------------------------------------------------------------------- /apps/create-palette-plugin/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/create-palette-plugin/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/create-palette-plugin/vite.config.ts -------------------------------------------------------------------------------- /apps/e2e/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/eslint.config.js -------------------------------------------------------------------------------- /apps/e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/project.json -------------------------------------------------------------------------------- /apps/e2e/screenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/e2e/src/__snapshots__/plugins.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/__snapshots__/plugins.spec.ts.snap -------------------------------------------------------------------------------- /apps/e2e/src/models/file-rpc.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/models/file-rpc.model.ts -------------------------------------------------------------------------------- /apps/e2e/src/models/shape.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/models/shape.model.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins.spec.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins/component-library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins/component-library.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins/create-board-text-rect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins/create-board-text-rect.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins/create-comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins/create-comments.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins/create-flexlayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins/create-flexlayout.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins/create-gridlayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins/create-gridlayout.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins/create-ruler-guides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins/create-ruler-guides.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins/create-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins/create-text.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins/group.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins/insert-svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins/insert-svg.ts -------------------------------------------------------------------------------- /apps/e2e/src/plugins/plugin-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/plugins/plugin-data.ts -------------------------------------------------------------------------------- /apps/e2e/src/utils/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/utils/agent.ts -------------------------------------------------------------------------------- /apps/e2e/src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/utils/api.ts -------------------------------------------------------------------------------- /apps/e2e/src/utils/clean-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/utils/clean-id.ts -------------------------------------------------------------------------------- /apps/e2e/src/utils/get-file-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/src/utils/get-file-url.ts -------------------------------------------------------------------------------- /apps/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/e2e/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/e2e/vite.config.ts -------------------------------------------------------------------------------- /apps/example-styles/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@nx/js/babel"] 3 | } 4 | -------------------------------------------------------------------------------- /apps/example-styles/.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/.swcrc -------------------------------------------------------------------------------- /apps/example-styles/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/eslint.config.js -------------------------------------------------------------------------------- /apps/example-styles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/index.html -------------------------------------------------------------------------------- /apps/example-styles/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/project.json -------------------------------------------------------------------------------- /apps/example-styles/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/public/favicon.ico -------------------------------------------------------------------------------- /apps/example-styles/src/app/app.element.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/src/app/app.element.css -------------------------------------------------------------------------------- /apps/example-styles/src/app/app.element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/src/app/app.element.html -------------------------------------------------------------------------------- /apps/example-styles/src/app/app.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/src/app/app.element.ts -------------------------------------------------------------------------------- /apps/example-styles/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/example-styles/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/src/main.ts -------------------------------------------------------------------------------- /apps/example-styles/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/src/styles.css -------------------------------------------------------------------------------- /apps/example-styles/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/tsconfig.app.json -------------------------------------------------------------------------------- /apps/example-styles/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/tsconfig.json -------------------------------------------------------------------------------- /apps/example-styles/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/example-styles/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/example-styles/vite.config.ts -------------------------------------------------------------------------------- /apps/icons-plugin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/eslint.config.js -------------------------------------------------------------------------------- /apps/icons-plugin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/project.json -------------------------------------------------------------------------------- /apps/icons-plugin/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/app/app.component.css -------------------------------------------------------------------------------- /apps/icons-plugin/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/icons-plugin/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/icons-plugin/src/app/components/icon-button/icon-button.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/app/components/icon-button/icon-button.component.css -------------------------------------------------------------------------------- /apps/icons-plugin/src/app/components/icon-button/icon-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/app/components/icon-button/icon-button.component.ts -------------------------------------------------------------------------------- /apps/icons-plugin/src/app/components/icon-search/icon-search.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/app/components/icon-search/icon-search.component.css -------------------------------------------------------------------------------- /apps/icons-plugin/src/app/components/icon-search/icon-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/app/components/icon-search/icon-search.component.ts -------------------------------------------------------------------------------- /apps/icons-plugin/src/app/pipes/safe-html.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/app/pipes/safe-html.pipe.ts -------------------------------------------------------------------------------- /apps/icons-plugin/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/icons-plugin/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/assets/icon.png -------------------------------------------------------------------------------- /apps/icons-plugin/src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/assets/manifest.json -------------------------------------------------------------------------------- /apps/icons-plugin/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/favicon.ico -------------------------------------------------------------------------------- /apps/icons-plugin/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/index.html -------------------------------------------------------------------------------- /apps/icons-plugin/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/main.ts -------------------------------------------------------------------------------- /apps/icons-plugin/src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/model.ts -------------------------------------------------------------------------------- /apps/icons-plugin/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/plugin.ts -------------------------------------------------------------------------------- /apps/icons-plugin/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/src/styles.css -------------------------------------------------------------------------------- /apps/icons-plugin/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/tsconfig.app.json -------------------------------------------------------------------------------- /apps/icons-plugin/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/icons-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/tsconfig.json -------------------------------------------------------------------------------- /apps/icons-plugin/tsconfig.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/icons-plugin/tsconfig.plugin.json -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/eslint.config.js -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/project.json -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/app/app.component.css -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/assets/icon.png -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/assets/manifest.json -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/generator.spec.ts -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/generator.ts -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/index.html -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/main.ts -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/model.ts -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/src/plugin.ts -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/src/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/tsconfig.app.json -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/tsconfig.json -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/tsconfig.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/tsconfig.plugin.json -------------------------------------------------------------------------------- /apps/lorem-ipsum-plugin/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/lorem-ipsum-plugin/vite.config.ts -------------------------------------------------------------------------------- /apps/poc-state-plugin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/eslint.config.js -------------------------------------------------------------------------------- /apps/poc-state-plugin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/project.json -------------------------------------------------------------------------------- /apps/poc-state-plugin/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/src/app/app.component.css -------------------------------------------------------------------------------- /apps/poc-state-plugin/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/poc-state-plugin/src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/src/assets/manifest.json -------------------------------------------------------------------------------- /apps/poc-state-plugin/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/src/favicon.ico -------------------------------------------------------------------------------- /apps/poc-state-plugin/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/src/index.html -------------------------------------------------------------------------------- /apps/poc-state-plugin/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/src/main.ts -------------------------------------------------------------------------------- /apps/poc-state-plugin/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/src/plugin.ts -------------------------------------------------------------------------------- /apps/poc-state-plugin/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/src/styles.css -------------------------------------------------------------------------------- /apps/poc-state-plugin/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/tsconfig.app.json -------------------------------------------------------------------------------- /apps/poc-state-plugin/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/poc-state-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/tsconfig.json -------------------------------------------------------------------------------- /apps/poc-state-plugin/tsconfig.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/poc-state-plugin/tsconfig.plugin.json -------------------------------------------------------------------------------- /apps/rename-layers-plugin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/eslint.config.js -------------------------------------------------------------------------------- /apps/rename-layers-plugin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/project.json -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/app/app.component.css -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/app/app.component.html -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/app/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/app/model.ts -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/assets/icon.png -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/assets/manifest.json -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/favicon.ico -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/index.html -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/main.ts -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/plugin.ts -------------------------------------------------------------------------------- /apps/rename-layers-plugin/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/src/styles.css -------------------------------------------------------------------------------- /apps/rename-layers-plugin/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/tsconfig.app.json -------------------------------------------------------------------------------- /apps/rename-layers-plugin/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/rename-layers-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/tsconfig.json -------------------------------------------------------------------------------- /apps/rename-layers-plugin/tsconfig.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/rename-layers-plugin/tsconfig.plugin.json -------------------------------------------------------------------------------- /apps/table-plugin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/eslint.config.js -------------------------------------------------------------------------------- /apps/table-plugin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/project.json -------------------------------------------------------------------------------- /apps/table-plugin/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/app/app.component.css -------------------------------------------------------------------------------- /apps/table-plugin/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/app/app.component.html -------------------------------------------------------------------------------- /apps/table-plugin/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/table-plugin/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/table-plugin/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/table-plugin/src/app/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/app/model.ts -------------------------------------------------------------------------------- /apps/table-plugin/src/app/nx-welcome.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/app/nx-welcome.component.ts -------------------------------------------------------------------------------- /apps/table-plugin/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/table-plugin/src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/assets/close.svg -------------------------------------------------------------------------------- /apps/table-plugin/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/assets/icon.png -------------------------------------------------------------------------------- /apps/table-plugin/src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/assets/manifest.json -------------------------------------------------------------------------------- /apps/table-plugin/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/favicon.ico -------------------------------------------------------------------------------- /apps/table-plugin/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/index.html -------------------------------------------------------------------------------- /apps/table-plugin/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/main.ts -------------------------------------------------------------------------------- /apps/table-plugin/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/plugin.ts -------------------------------------------------------------------------------- /apps/table-plugin/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/src/styles.css -------------------------------------------------------------------------------- /apps/table-plugin/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/tsconfig.app.json -------------------------------------------------------------------------------- /apps/table-plugin/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/table-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/tsconfig.json -------------------------------------------------------------------------------- /apps/table-plugin/tsconfig.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/apps/table-plugin/tsconfig.plugin.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | export default { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /docs/api-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/docs/api-docs.md -------------------------------------------------------------------------------- /docs/create-angular-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/docs/create-angular-plugin.md -------------------------------------------------------------------------------- /docs/create-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/docs/create-api.md -------------------------------------------------------------------------------- /docs/create-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/docs/create-plugin.md -------------------------------------------------------------------------------- /docs/images/plugin-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/docs/images/plugin-menu.png -------------------------------------------------------------------------------- /docs/publish-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/docs/publish-package.md -------------------------------------------------------------------------------- /docs/test-e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/docs/test-e2e.md -------------------------------------------------------------------------------- /eslint.base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/eslint.base.config.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/eslint.config.js -------------------------------------------------------------------------------- /libs/plugin-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugin-types/README.md -------------------------------------------------------------------------------- /libs/plugin-types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugin-types/index.d.ts -------------------------------------------------------------------------------- /libs/plugin-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugin-types/package.json -------------------------------------------------------------------------------- /libs/plugin-types/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugin-types/project.json -------------------------------------------------------------------------------- /libs/plugin-types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugin-types/tsconfig.json -------------------------------------------------------------------------------- /libs/plugins-runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/README.md -------------------------------------------------------------------------------- /libs/plugins-runtime/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/eslint.config.js -------------------------------------------------------------------------------- /libs/plugins-runtime/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/package-lock.json -------------------------------------------------------------------------------- /libs/plugins-runtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/package.json -------------------------------------------------------------------------------- /libs/plugins-runtime/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/project.json -------------------------------------------------------------------------------- /libs/plugins-runtime/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/index.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/api/index.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/api/openUI.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/api/openUI.api.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/api/plugin-api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/api/plugin-api.spec.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/assets/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/assets/resize.svg -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/create-modal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/create-modal.spec.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/create-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/create-modal.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/create-plugin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/create-plugin.spec.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/create-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/create-plugin.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/create-sandbox.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/create-sandbox.spec.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/create-sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/create-sandbox.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/drag-handler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/drag-handler.spec.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/drag-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/drag-handler.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/global.d.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/load-plugin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/load-plugin.spec.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/load-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/load-plugin.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/modal/plugin-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/modal/plugin-modal.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/modal/plugin.modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/modal/plugin.modal.css -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/models/manifest.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/models/manifest.model.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/models/manifest.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/models/manifest.schema.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/models/open-ui-options.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/models/open-ui-options.model.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/models/open-ui-options.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/models/open-ui-options.schema.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/models/plugin-config.model.ts: -------------------------------------------------------------------------------- 1 | export interface PluginConfig { 2 | manifest: string; 3 | } 4 | -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/models/plugin.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/models/plugin.model.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/parse-manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/parse-manifest.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/parse-translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/parse-translate.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/plugin-manager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/plugin-manager.spec.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/plugin-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/plugin-manager.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/src/lib/ses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/src/lib/ses.ts -------------------------------------------------------------------------------- /libs/plugins-runtime/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/tsconfig.json -------------------------------------------------------------------------------- /libs/plugins-runtime/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/plugins-runtime/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/plugins-runtime/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-runtime/vite.config.ts -------------------------------------------------------------------------------- /libs/plugins-styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/README.md -------------------------------------------------------------------------------- /libs/plugins-styles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/package.json -------------------------------------------------------------------------------- /libs/plugins-styles/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/project.json -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/components/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/components/button.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/components/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/components/checkbox.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/components/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/components/icon.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/components/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/components/input.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/components/radio-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/components/radio-button.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/components/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/components/select.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/components/switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/components/switch.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/core/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/core/fonts.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/core/generic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/core/generic.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/core/spacing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/core/spacing.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/core/swatches.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/core/swatches.css -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/icons/chevron-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/icons/chevron-bottom.svg -------------------------------------------------------------------------------- /libs/plugins-styles/src/lib/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/libs/plugins-styles/src/lib/styles.css -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/package.json -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/project.json -------------------------------------------------------------------------------- /tools/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/tools/eslint.config.js -------------------------------------------------------------------------------- /tools/plugins/plugin-tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/tools/plugins/plugin-tasks.ts -------------------------------------------------------------------------------- /tools/scripts/build-css.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/tools/scripts/build-css.mjs -------------------------------------------------------------------------------- /tools/scripts/build-types.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/tools/scripts/build-types.mjs -------------------------------------------------------------------------------- /tools/scripts/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/tools/scripts/publish.ts -------------------------------------------------------------------------------- /tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/tools/tsconfig.json -------------------------------------------------------------------------------- /tools/typedoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/tools/typedoc.css -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/typedoc.json -------------------------------------------------------------------------------- /vitest.workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penpot/penpot-plugins/HEAD/vitest.workspace.ts --------------------------------------------------------------------------------