@ckeditor/ckeditor5-autosave
Advanced tools
Comparing version 37.0.0-alpha.0 to 37.0.0-alpha.1
{ | ||
"name": "@ckeditor/ckeditor5-autosave", | ||
"version": "37.0.0-alpha.0", | ||
"version": "37.0.0-alpha.1", | ||
"description": "Autosave feature for CKEditor 5.", | ||
@@ -15,12 +15,12 @@ "keywords": [ | ||
"dependencies": { | ||
"ckeditor5": "^37.0.0-alpha.0", | ||
"ckeditor5": "^37.0.0-alpha.1", | ||
"lodash-es": "^4.17.15" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-dev-utils": "^34.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-source-editing": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-dev-utils": "^35.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-source-editing": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1", | ||
"typescript": "^4.8.4", | ||
@@ -54,3 +54,3 @@ "webpack": "^5.58.1", | ||
"dll:build": "webpack", | ||
"build": "tsc -p ./tsconfig.release.json", | ||
"build": "tsc -p ./tsconfig.json", | ||
"postversion": "npm run build" | ||
@@ -57,0 +57,0 @@ }, |
@@ -221,14 +221,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface PluginsMap { | ||
[Autosave.pluginName]: Autosave; | ||
} | ||
interface EditorConfig { | ||
/** | ||
* The configuration of the {@link module:autosave/autosave~Autosave autosave feature}. | ||
* | ||
* Read more in {@link module:autosave/autosave~AutosaveConfig}. | ||
*/ | ||
autosave?: AutosaveConfig; | ||
} | ||
} |
@@ -8,2 +8,3 @@ /** | ||
*/ | ||
export { default as Autosave } from './autosave'; | ||
export { default as Autosave, type AutosaveConfig } from './autosave'; | ||
import './augmentation'; |
@@ -9,1 +9,2 @@ /** | ||
export { default as Autosave } from './autosave'; | ||
import './augmentation'; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
97083
130
508
0
Updatedckeditor5@^37.0.0-alpha.1