@ckeditor/ckeditor5-typing 43.2.0 → 43.3.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/delete.d.ts +4 -0
- package/dist/index.js +25 -0
- package/dist/index.js.map +1 -1
- package/dist/input.d.ts +4 -0
- package/dist/texttransformation.d.ts +4 -0
- package/dist/twostepcaretmovement.d.ts +4 -0
- package/dist/typing.d.ts +4 -0
- package/package.json +4 -4
- package/src/delete.d.ts +4 -0
- package/src/delete.js +6 -0
- package/src/input.d.ts +4 -0
- package/src/input.js +6 -0
- package/src/texttransformation.d.ts +4 -0
- package/src/texttransformation.js +6 -0
- package/src/twostepcaretmovement.d.ts +4 -0
- package/src/twostepcaretmovement.js +6 -0
- package/src/typing.d.ts +4 -0
- package/src/typing.js +6 -0
package/dist/delete.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -320,6 +320,11 @@ const TYPING_INPUT_TYPES_ANDROID = [
|
|
|
320
320
|
*/ static get pluginName() {
|
|
321
321
|
return 'Input';
|
|
322
322
|
}
|
|
323
|
+
/**
|
|
324
|
+
* @inheritDoc
|
|
325
|
+
*/ static get isOfficialPlugin() {
|
|
326
|
+
return true;
|
|
327
|
+
}
|
|
323
328
|
/**
|
|
324
329
|
* @inheritDoc
|
|
325
330
|
*/ init() {
|
|
@@ -1153,6 +1158,11 @@ const DELETE_EVENT_TYPES = {
|
|
|
1153
1158
|
*/ static get pluginName() {
|
|
1154
1159
|
return 'Delete';
|
|
1155
1160
|
}
|
|
1161
|
+
/**
|
|
1162
|
+
* @inheritDoc
|
|
1163
|
+
*/ static get isOfficialPlugin() {
|
|
1164
|
+
return true;
|
|
1165
|
+
}
|
|
1156
1166
|
/**
|
|
1157
1167
|
* @inheritDoc
|
|
1158
1168
|
*/ init() {
|
|
@@ -1235,6 +1245,11 @@ const DELETE_EVENT_TYPES = {
|
|
|
1235
1245
|
*/ static get pluginName() {
|
|
1236
1246
|
return 'Typing';
|
|
1237
1247
|
}
|
|
1248
|
+
/**
|
|
1249
|
+
* @inheritDoc
|
|
1250
|
+
*/ static get isOfficialPlugin() {
|
|
1251
|
+
return true;
|
|
1252
|
+
}
|
|
1238
1253
|
}
|
|
1239
1254
|
|
|
1240
1255
|
/**
|
|
@@ -1537,6 +1552,11 @@ const DELETE_EVENT_TYPES = {
|
|
|
1537
1552
|
*/ static get pluginName() {
|
|
1538
1553
|
return 'TwoStepCaretMovement';
|
|
1539
1554
|
}
|
|
1555
|
+
/**
|
|
1556
|
+
* @inheritDoc
|
|
1557
|
+
*/ static get isOfficialPlugin() {
|
|
1558
|
+
return true;
|
|
1559
|
+
}
|
|
1540
1560
|
/**
|
|
1541
1561
|
* @inheritDoc
|
|
1542
1562
|
*/ constructor(editor){
|
|
@@ -2203,6 +2223,11 @@ const DEFAULT_TRANSFORMATIONS = [
|
|
|
2203
2223
|
*/ static get pluginName() {
|
|
2204
2224
|
return 'TextTransformation';
|
|
2205
2225
|
}
|
|
2226
|
+
/**
|
|
2227
|
+
* @inheritDoc
|
|
2228
|
+
*/ static get isOfficialPlugin() {
|
|
2229
|
+
return true;
|
|
2230
|
+
}
|
|
2206
2231
|
/**
|
|
2207
2232
|
* @inheritDoc
|
|
2208
2233
|
*/ constructor(editor){
|