Skip to content

Commit de8edf2

Browse files
committed
Merge branch 'development'
2 parents 4574f15 + 885fdef commit de8edf2

26 files changed

Lines changed: 12201 additions & 352 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# WProofreader SDK JavaScript Changelog
22

3+
## 1.1.1 – 2024-06-12
4+
5+
Internal changes (updated dependencies, documentation, examples, etc.).
6+
37
## 1.1.0 – 2024-05-03
48

59
* Added basic TypeScript support.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
WProofreader SDK empowers your web applications with real-time multilingual spelling, grammar, and style checks. The SDK integrates seamlessly with rich text editors and text fields across various platforms, including those developed using popular JavaScript frameworks like Angular, React, and Vue.js. It offers users instant correction suggestions as they type or within a dedicated dialog.
44

5+
Starting from version 1.1.0, WProofreader SDK JavaScript offers basic TypeScript support. The package includes the [type definition file](https://github.com/WebSpellChecker/wproofreader-sdk-js/blob/master/index.d.ts) (.d.ts) for the [WProofreader core methods](https://webspellchecker.com/docs/api/wscbundle/WEBSPELLCHECKER.html) and additional methods for the NPM package itself, covering initialization, configuration, and instance management. For integration of WProofreader SDK using TypeScript, refer to the [Angular example](https://github.com/WebSpellChecker/wproofreader-sdk-js/tree/master/examples/wproofreader-sdk-angular).
6+
57
Visit the [WProofreader SDK repository](https://github.com/WebSpellChecker/wproofreader) or the [official web page](https://webspellchecker.com/wsc-proofreader/) for more detailed information.
68

79
Find below the instructions that will guide you in easily integrating this functionality into your applications.

examples/wproofreader-sdk-angular-ckeditor4/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/wproofreader-sdk-angular-ckeditor4/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@angular/platform-browser": "^16.2.0",
1919
"@angular/platform-browser-dynamic": "^16.2.0",
2020
"@angular/router": "^16.2.0",
21-
"@webspellchecker/wproofreader-sdk-js": "^1.0.1",
21+
"@webspellchecker/wproofreader-sdk-js": "^1.1.0",
2222
"ckeditor4-angular": "4.0.1",
2323
"rxjs": "~7.8.0",
2424
"tslib": "^2.3.0",

examples/wproofreader-sdk-angular-ckeditor4/src/app/app.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component } from '@angular/core';
22
import { CKEditor4 } from 'ckeditor4-angular/ckeditor';
3-
//@ts-ignore
43
import WProofreader from '@webspellchecker/wproofreader-sdk-js';
54

65
@Component({

examples/wproofreader-sdk-angular-ckeditor4/src/app/app.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { NgModule } from '@angular/core';
22
import { BrowserModule } from '@angular/platform-browser';
33
import { CKEditorModule } from 'ckeditor4-angular';
4-
//@ts-ignore
54
import WProofreader from '@webspellchecker/wproofreader-sdk-js';
65

76
import { AppComponent } from './app.component';

examples/wproofreader-sdk-angular-froala/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/wproofreader-sdk-angular-froala/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@angular/platform-browser": "^16.2.0",
1919
"@angular/platform-browser-dynamic": "^16.2.0",
2020
"@angular/router": "^16.2.0",
21-
"@webspellchecker/wproofreader-sdk-js": "^1.0.1",
21+
"@webspellchecker/wproofreader-sdk-js": "^1.1.0",
2222
"angular-froala-wysiwyg": "^4.1.2",
2323
"rxjs": "~7.8.0",
2424
"tslib": "^2.3.0",

examples/wproofreader-sdk-angular-froala/src/app/app.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component } from '@angular/core';
22
import { FroalaEditorDirective } from 'angular-froala-wysiwyg';
3-
//@ts-ignore
43
import WProofreader from '@webspellchecker/wproofreader-sdk-js';
54

65
@Component({

examples/wproofreader-sdk-angular-froala/src/app/app.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { NgModule } from '@angular/core';
22
import { BrowserModule } from '@angular/platform-browser';
33
import { FroalaEditorModule, FroalaViewModule } from 'angular-froala-wysiwyg';
4-
//@ts-ignore
54
import WProofreader from '@webspellchecker/wproofreader-sdk-js';
65

76
import { AppComponent } from './app.component';

0 commit comments

Comments
 (0)