├── .changelog ├── .gitkeep ├── 20241128142545_print_cloud_errors.md └── 20251030133716_internal_4151_upgrade_to_node_24_11.md ├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .husky └── pre-commit ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── codecov.yml ├── demos ├── editor-cdn-suspense │ ├── App.vue │ ├── Editor.vue │ ├── demo.ts │ └── index.html ├── editor-cdn │ ├── App.vue │ ├── demo.ts │ └── index.html ├── editor-npm │ ├── App.vue │ ├── demo.ts │ └── index.html └── tsconfig.json ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── bump-year.js ├── ci │ └── is-project-ready-to-release.js ├── postinstall.js ├── preparechangelog.js ├── preparepackages.js ├── publishpackages.js └── utils │ ├── getlistroptions.js │ ├── parsearguments.js │ └── preparepackagejson.js ├── src ├── ckeditor.vue ├── composables │ └── useAsync.ts ├── plugin.ts ├── plugins │ ├── VueIntegrationUsageDataPlugin.ts │ └── appendAllIntegrationPluginsToConfig.ts ├── shims-vue.d.ts ├── types.ts └── useCKEditorCloud.ts ├── tests ├── _utils │ └── mockeditor.ts ├── ckeditor.test.ts ├── composables │ └── useAsync.test.ts ├── globals.d.ts ├── plugin │ ├── integration.test.ts │ └── localcomponent.test.ts ├── tsconfig.json └── useCKEditorCloud.test.ts ├── tsconfig.json ├── vite-env.d.ts ├── vite.config.ts └── vitest-setup.ts /.changelog/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.changelog/20241128142545_print_cloud_errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/.changelog/20241128142545_print_cloud_errors.md -------------------------------------------------------------------------------- /.changelog/20251030133716_internal_4151_upgrade_to_node_24_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/.changelog/20251030133716_internal_4151_upgrade_to_node_24_11.md -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/SECURITY.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /demos/editor-cdn-suspense/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/editor-cdn-suspense/App.vue -------------------------------------------------------------------------------- /demos/editor-cdn-suspense/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/editor-cdn-suspense/Editor.vue -------------------------------------------------------------------------------- /demos/editor-cdn-suspense/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/editor-cdn-suspense/demo.ts -------------------------------------------------------------------------------- /demos/editor-cdn-suspense/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/editor-cdn-suspense/index.html -------------------------------------------------------------------------------- /demos/editor-cdn/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/editor-cdn/App.vue -------------------------------------------------------------------------------- /demos/editor-cdn/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/editor-cdn/demo.ts -------------------------------------------------------------------------------- /demos/editor-cdn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/editor-cdn/index.html -------------------------------------------------------------------------------- /demos/editor-npm/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/editor-npm/App.vue -------------------------------------------------------------------------------- /demos/editor-npm/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/editor-npm/demo.ts -------------------------------------------------------------------------------- /demos/editor-npm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/editor-npm/index.html -------------------------------------------------------------------------------- /demos/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/demos/tsconfig.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/bump-year.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/scripts/bump-year.js -------------------------------------------------------------------------------- /scripts/ci/is-project-ready-to-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/scripts/ci/is-project-ready-to-release.js -------------------------------------------------------------------------------- /scripts/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/scripts/postinstall.js -------------------------------------------------------------------------------- /scripts/preparechangelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/scripts/preparechangelog.js -------------------------------------------------------------------------------- /scripts/preparepackages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/scripts/preparepackages.js -------------------------------------------------------------------------------- /scripts/publishpackages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/scripts/publishpackages.js -------------------------------------------------------------------------------- /scripts/utils/getlistroptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/scripts/utils/getlistroptions.js -------------------------------------------------------------------------------- /scripts/utils/parsearguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/scripts/utils/parsearguments.js -------------------------------------------------------------------------------- /scripts/utils/preparepackagejson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/scripts/utils/preparepackagejson.js -------------------------------------------------------------------------------- /src/ckeditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/src/ckeditor.vue -------------------------------------------------------------------------------- /src/composables/useAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/src/composables/useAsync.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/plugins/VueIntegrationUsageDataPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/src/plugins/VueIntegrationUsageDataPlugin.ts -------------------------------------------------------------------------------- /src/plugins/appendAllIntegrationPluginsToConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/src/plugins/appendAllIntegrationPluginsToConfig.ts -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/useCKEditorCloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/src/useCKEditorCloud.ts -------------------------------------------------------------------------------- /tests/_utils/mockeditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/tests/_utils/mockeditor.ts -------------------------------------------------------------------------------- /tests/ckeditor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/tests/ckeditor.test.ts -------------------------------------------------------------------------------- /tests/composables/useAsync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/tests/composables/useAsync.test.ts -------------------------------------------------------------------------------- /tests/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/tests/globals.d.ts -------------------------------------------------------------------------------- /tests/plugin/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/tests/plugin/integration.test.ts -------------------------------------------------------------------------------- /tests/plugin/localcomponent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/tests/plugin/localcomponent.test.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/useCKEditorCloud.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/tests/useCKEditorCloud.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/vite-env.d.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckeditor/ckeditor5-vue/HEAD/vitest-setup.ts --------------------------------------------------------------------------------