Skip to content

Commit cdea768

Browse files
authored
Merge pull request #439 from ckeditor/ck/narrow-cdn-config
Feature: Improve result type of `useCKEditorCloud` to make `CKEditorPremiumFeatures` and `CKBox` non-nullable when proper configuration is passed. Fix: Rename the `languages` configuration property to translations in `loadCKEditorCloud`.
2 parents 7492748 + 199fc22 commit cdea768

File tree

3 files changed

+13
-35
lines changed

3 files changed

+13
-35
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"rxjs": "^6.5.5",
3232
"tslib": "^2.0.3",
3333
"zone.js": "~0.13.0",
34-
"@ckeditor/ckeditor5-integrations-common": "^1.0.0"
34+
"@ckeditor/ckeditor5-integrations-common": "^2.0.0"
3535
},
3636
"devDependencies": {
3737
"@angular-devkit/build-angular": "^16",

src/app/simple-cdn-usage/simple-cdn-usage.component.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import { Component, type OnInit } from '@angular/core';
22
import type { ClassicEditor, EditorConfig } from 'https://cdn.ckeditor.com/typings/ckeditor5.d.ts';
33

4-
import { loadCKEditorCloud, type CKEditorCloudResult } from '@ckeditor/ckeditor5-integrations-common';
4+
import {
5+
loadCKEditorCloud,
6+
type CKEditorCloudResult
7+
} from '@ckeditor/ckeditor5-integrations-common';
58

69
@Component( {
710
selector: 'app-simple-cdn-usage',
@@ -32,7 +35,7 @@ You learn to appreciate each and every single one of the differences while you b
3235
.then( this._setupEditor.bind( this ) );
3336
}
3437

35-
private _setupEditor( cloud: CKEditorCloudResult ) {
38+
private _setupEditor( cloud: CKEditorCloudResult<{ version: '43.0.0' }> ) {
3639
const {
3740
ClassicEditor,
3841
Essentials,

yarn.lock

+7-32
Original file line numberDiff line numberDiff line change
@@ -2277,10 +2277,10 @@
22772277
"@ckeditor/ckeditor5-utils" "42.0.2"
22782278
ckeditor5 "42.0.2"
22792279

2280-
"@ckeditor/ckeditor5-integrations-common@^1.0.0":
2281-
version "1.0.0"
2282-
resolved "https://registry.yarnpkg.com/@ckeditor/ckeditor5-integrations-common/-/ckeditor5-integrations-common-1.0.0.tgz#f2f73509d029398929ee30da3ae23329de5a796a"
2283-
integrity sha512-HLToIJ7FAtKX0tu9GaGb1d39Kx0i0TFelAj2pQPiwPU/6DLgM5gi+m0WCZub+syruSonmZPONtWrrZZdUoDB/g==
2280+
"@ckeditor/ckeditor5-integrations-common@^2.0.0":
2281+
version "2.0.0"
2282+
resolved "https://registry.yarnpkg.com/@ckeditor/ckeditor5-integrations-common/-/ckeditor5-integrations-common-2.0.0.tgz#09ea8a6a6a3c01f601260a85d9af98ede78644cf"
2283+
integrity sha512-Gkt7tYVv168voQZFdN4PxVp6M5/ZgzIOrqI6uPRjuk73dYjdLCeotnEXYejE6cxyLi9m2UM2mvhXibOIKVcoPw==
22842284

22852285
"@ckeditor/[email protected]":
22862286
version "42.0.2"
@@ -11374,16 +11374,7 @@ [email protected]:
1137411374
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
1137511375
integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
1137611376

11377-
"string-width-cjs@npm:string-width@^4.2.0":
11378-
version "4.2.3"
11379-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
11380-
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
11381-
dependencies:
11382-
emoji-regex "^8.0.0"
11383-
is-fullwidth-code-point "^3.0.0"
11384-
strip-ansi "^6.0.1"
11385-
11386-
"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
11377+
"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
1138711378
version "4.2.3"
1138811379
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
1138911380
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -11424,14 +11415,7 @@ stringify-object@^3.3.0:
1142411415
is-obj "^1.0.1"
1142511416
is-regexp "^1.0.0"
1142611417

11427-
"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
11428-
version "6.0.1"
11429-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
11430-
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
11431-
dependencies:
11432-
ansi-regex "^5.0.1"
11433-
11434-
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
11418+
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
1143511419
version "6.0.1"
1143611420
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1143711421
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -12347,7 +12331,7 @@ wordwrap@^1.0.0:
1234712331
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
1234812332
integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
1234912333

12350-
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
12334+
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
1235112335
version "7.0.0"
1235212336
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
1235312337
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -12365,15 +12349,6 @@ wrap-ansi@^6.2.0:
1236512349
string-width "^4.1.0"
1236612350
strip-ansi "^6.0.0"
1236712351

12368-
wrap-ansi@^7.0.0:
12369-
version "7.0.0"
12370-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
12371-
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
12372-
dependencies:
12373-
ansi-styles "^4.0.0"
12374-
string-width "^4.1.0"
12375-
strip-ansi "^6.0.0"
12376-
1237712352
wrap-ansi@^8.1.0:
1237812353
version "8.1.0"
1237912354
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"

0 commit comments

Comments
 (0)