@ckeditor/ckeditor5-typing 47.6.1-alpha.1 → 48.0.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.
Files changed (41) hide show
  1. package/LICENSE.md +1 -1
  2. package/ckeditor5-metadata.json +1 -1
  3. package/dist/index.css +3 -0
  4. package/dist/index.css.map +1 -0
  5. package/dist/index.js +2 -2
  6. package/dist/index.js.map +1 -1
  7. package/{src → dist}/texttransformation.d.ts +3 -1
  8. package/package.json +22 -41
  9. package/src/augmentation.js +0 -5
  10. package/src/delete.js +0 -122
  11. package/src/deletecommand.js +0 -212
  12. package/src/deleteobserver.js +0 -262
  13. package/src/index.js +0 -21
  14. package/src/input.js +0 -486
  15. package/src/inserttextcommand.js +0 -87
  16. package/src/inserttextobserver.js +0 -112
  17. package/src/texttransformation.js +0 -237
  18. package/src/textwatcher.js +0 -123
  19. package/src/twostepcaretmovement.js +0 -661
  20. package/src/typing.js +0 -33
  21. package/src/typingconfig.js +0 -5
  22. package/src/utils/changebuffer.js +0 -148
  23. package/src/utils/findattributerange.js +0 -41
  24. package/src/utils/getlasttextline.js +0 -43
  25. package/src/utils/inlinehighlight.js +0 -74
  26. /package/{src → dist}/augmentation.d.ts +0 -0
  27. /package/{src → dist}/delete.d.ts +0 -0
  28. /package/{src → dist}/deletecommand.d.ts +0 -0
  29. /package/{src → dist}/deleteobserver.d.ts +0 -0
  30. /package/{src → dist}/index.d.ts +0 -0
  31. /package/{src → dist}/input.d.ts +0 -0
  32. /package/{src → dist}/inserttextcommand.d.ts +0 -0
  33. /package/{src → dist}/inserttextobserver.d.ts +0 -0
  34. /package/{src → dist}/textwatcher.d.ts +0 -0
  35. /package/{src → dist}/twostepcaretmovement.d.ts +0 -0
  36. /package/{src → dist}/typing.d.ts +0 -0
  37. /package/{src → dist}/typingconfig.d.ts +0 -0
  38. /package/{src → dist}/utils/changebuffer.d.ts +0 -0
  39. /package/{src → dist}/utils/findattributerange.d.ts +0 -0
  40. /package/{src → dist}/utils/getlasttextline.d.ts +0 -0
  41. /package/{src → dist}/utils/inlinehighlight.d.ts +0 -0
package/LICENSE.md CHANGED
@@ -18,7 +18,7 @@ Where not otherwise indicated, all CKEditor 5 content is authored by CKSour
18
18
 
19
19
  The following libraries are included in CKEditor 5 under the [MIT license](https://opensource.org/licenses/MIT):
20
20
 
21
- * es-toolkit - Copyright (c) 2024 Viva Republica, Inc.
21
+ * es-toolkit - Copyright (c) 2024 Viva Republica, Inc and Copyright OpenJS Foundation and other contributors.
22
22
 
23
23
  Trademarks
24
24
  ----------
@@ -5,7 +5,7 @@
5
5
  "className": "TextTransformation",
6
6
  "description": "Enables support for the autocorrection. It automatically turns predefined snippets into their typographically improved forms. For example, (tm) becomes ™ and 1/2 becomes ½.",
7
7
  "docs": "features/text-transformation.html",
8
- "path": "src/texttransformation.js"
8
+ "path": "src/texttransformation.ts"
9
9
  }
10
10
  ]
11
11
  }
package/dist/index.css CHANGED
@@ -2,3 +2,6 @@
2
2
  * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
+
6
+
7
+ /*# sourceMappingURL=index.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.css"],"names":[],"mappings":";;;;;;AAEA,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC","file":"index.css.map","sourcesContent":["\n\n/*# sourceMappingURL=index.css.map */"]}
package/dist/index.js CHANGED
@@ -2327,8 +2327,8 @@ const DEFAULT_TRANSFORMATIONS = [
2327
2327
  * @inheritDoc
2328
2328
  */ static get requires() {
2329
2329
  return [
2330
- 'Delete',
2331
- 'Input'
2330
+ Delete,
2331
+ Input
2332
2332
  ];
2333
2333
  }
2334
2334
  /**