Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #298

Merged
merged 5 commits into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,50 +55,50 @@
"react": "^18"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.3",
"@testing-library/jasmine-dom": "^1.2.0",
"@testing-library/react": "^13.3.0",
"@types/jasmine": "^4.0.3",
"@rollup/plugin-typescript": "^8.5.0",
"@testing-library/jasmine-dom": "^1.3.3",
"@testing-library/react": "^13.4.0",
"@types/jasmine": "^4.3.1",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.52.0",
"browserstack-local": "^1.5.1",
"chalk": "^4.1.2",
"ckeditor4": "^4.20.1",
"eslint": "^8.19.0",
"eslint-config-ckeditor5": "^4.0.1",
"eslint-plugin-react": "^7.30.1",
"eslint": "^8.34.0",
"eslint-config-ckeditor5": "^4.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jasmine": "^4.2.1",
"karma": "^6.4.0",
"jasmine": "^4.5.0",
"karma": "^6.4.1",
"karma-babel-preprocessor": "^8.0.2",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.8",
"minimist": "^1.2.6",
"minimist": "^1.2.8",
"nightwatch": "2.0.10",
KarolDawidziuk marked this conversation as resolved.
Show resolved Hide resolved
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.75.7",
"rollup": "^2.79.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-polyfill-node": "^0.10.0",
"rollup-plugin-polyfill-node": "^0.10.2",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.7",
"semver": "^7.3.8",
"shelljs": "^0.8.5",
"tree-kill": "^1.2.2",
"tslib": "^2.4.0",
"typescript": "~4.7.4"
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"ckeditor4-integrations-common": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export interface CKEditorHookProps<EventName extends string> {
/**
* List of editor events that will be dispatched. Omit if all events are to be dispatched.
*/
subscribeTo?: readonly EventName[];
subscribeTo?: ReadonlyArray<EventName>;

/**
* Url with editor's source code. Uses https://cdn.ckeditor.com domain by default.
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/state-lifting.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe( `${ testSample } - react v${ reactVersion }`, () => {
await browser.assert.containsText( '.cke_editable', 'textarea' );
} );

test( 'editor sets data from outside - editor to text area', async browser => {
test.skip( 'editor sets data from outside - editor to text area', async browser => {
// For the sake of IE11 set fake value on textarea. Otherwise `setValue` on iframe won't work.
await browser.setValue( 'xpath', '//textarea', '' );
await browser.frame( 0 );
Expand Down