├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── babel.config.json ├── lib ├── constants │ └── index.ts ├── controllers │ ├── image-node-view.ts │ ├── position-controller.ts │ └── resize-controller.ts ├── image-resize.ts ├── index.ts ├── types │ └── index.ts └── utils │ ├── attribute-parser.ts │ ├── index.ts │ └── style-manager.ts ├── package.json ├── rollup.config.mjs ├── tsconfig.json └── yarn.lock /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | *.tgz 4 | 5 | dist 6 | esm -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/babel.config.json -------------------------------------------------------------------------------- /lib/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/lib/constants/index.ts -------------------------------------------------------------------------------- /lib/controllers/image-node-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/lib/controllers/image-node-view.ts -------------------------------------------------------------------------------- /lib/controllers/position-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/lib/controllers/position-controller.ts -------------------------------------------------------------------------------- /lib/controllers/resize-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/lib/controllers/resize-controller.ts -------------------------------------------------------------------------------- /lib/image-resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/lib/image-resize.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/lib/types/index.ts -------------------------------------------------------------------------------- /lib/utils/attribute-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/lib/utils/attribute-parser.ts -------------------------------------------------------------------------------- /lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/lib/utils/index.ts -------------------------------------------------------------------------------- /lib/utils/style-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/lib/utils/style-manager.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bae-sh/tiptap-extension-resize-image/HEAD/yarn.lock --------------------------------------------------------------------------------