@ckeditor/ckeditor5-special-characters 0.0.0-nightly-20250610.0 → 0.0.0-nightly-20250611.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-special-characters",
3
- "version": "0.0.0-nightly-20250610.0",
3
+ "version": "0.0.0-nightly-20250611.0",
4
4
  "description": "Special characters feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,12 +13,12 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "ckeditor5": "0.0.0-nightly-20250610.0",
17
- "@ckeditor/ckeditor5-core": "0.0.0-nightly-20250610.0",
18
- "@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250610.0",
19
- "@ckeditor/ckeditor5-typing": "0.0.0-nightly-20250610.0",
20
- "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250610.0",
21
- "@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250610.0"
16
+ "ckeditor5": "0.0.0-nightly-20250611.0",
17
+ "@ckeditor/ckeditor5-core": "0.0.0-nightly-20250611.0",
18
+ "@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250611.0",
19
+ "@ckeditor/ckeditor5-typing": "0.0.0-nightly-20250611.0",
20
+ "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250611.0",
21
+ "@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250611.0"
22
22
  },
23
23
  "author": "CKSource (http://cksource.com/)",
24
24
  "license": "SEE LICENSE IN LICENSE.md",
package/src/index.d.ts CHANGED
@@ -13,4 +13,8 @@ export { SpecialCharactersLatin } from './specialcharacterslatin.js';
13
13
  export { SpecialCharactersEssentials } from './specialcharactersessentials.js';
14
14
  export { SpecialCharactersCurrency } from './specialcharacterscurrency.js';
15
15
  export type { SpecialCharactersConfig } from './specialcharactersconfig.js';
16
+ export { CharacterGridView as _SpecialCharactersGridView } from './ui/charactergridview.js';
17
+ export { CharacterInfoView as _SpecialCharactersInfoView } from './ui/characterinfoview.js';
18
+ export { SpecialCharactersCategoriesView as _SpecialCharactersCategoriesView } from './ui/specialcharacterscategoriesview.js';
19
+ export { SpecialCharactersView as _SpecialCharactersView } from './ui/specialcharactersview.js';
16
20
  import './augmentation.js';
package/src/index.js CHANGED
@@ -12,4 +12,8 @@ export { SpecialCharactersMathematical } from './specialcharactersmathematical.j
12
12
  export { SpecialCharactersLatin } from './specialcharacterslatin.js';
13
13
  export { SpecialCharactersEssentials } from './specialcharactersessentials.js';
14
14
  export { SpecialCharactersCurrency } from './specialcharacterscurrency.js';
15
+ export { CharacterGridView as _SpecialCharactersGridView } from './ui/charactergridview.js';
16
+ export { CharacterInfoView as _SpecialCharactersInfoView } from './ui/characterinfoview.js';
17
+ export { SpecialCharactersCategoriesView as _SpecialCharactersCategoriesView } from './ui/specialcharacterscategoriesview.js';
18
+ export { SpecialCharactersView as _SpecialCharactersView } from './ui/specialcharactersview.js';
15
19
  import './augmentation.js';
@@ -11,6 +11,8 @@ import '../../theme/charactergrid.css';
11
11
  /**
12
12
  * A grid of character tiles. It allows browsing special characters and selecting the character to
13
13
  * be inserted into the content.
14
+ *
15
+ * @internal
14
16
  */
15
17
  export declare class CharacterGridView extends View<HTMLDivElement> {
16
18
  /**
@@ -11,6 +11,8 @@ import '../../theme/charactergrid.css';
11
11
  /**
12
12
  * A grid of character tiles. It allows browsing special characters and selecting the character to
13
13
  * be inserted into the content.
14
+ *
15
+ * @internal
14
16
  */
15
17
  export class CharacterGridView extends View {
16
18
  /**
@@ -11,6 +11,8 @@ import '../../theme/characterinfo.css';
11
11
  /**
12
12
  * The view displaying detailed information about a special character glyph, e.g. upon
13
13
  * hovering it with a mouse.
14
+ *
15
+ * @internal
14
16
  */
15
17
  export declare class CharacterInfoView extends View<HTMLDivElement> {
16
18
  /**
@@ -7,6 +7,8 @@ import '../../theme/characterinfo.css';
7
7
  /**
8
8
  * The view displaying detailed information about a special character glyph, e.g. upon
9
9
  * hovering it with a mouse.
10
+ *
11
+ * @internal
10
12
  */
11
13
  export class CharacterInfoView extends View {
12
14
  constructor(locale) {
@@ -10,6 +10,8 @@ import { View } from 'ckeditor5/src/ui.js';
10
10
  /**
11
11
  * A class representing the navigation part of the special characters UI. It is responsible
12
12
  * for describing the feature and allowing the user to select a particular character group.
13
+ *
14
+ * @internal
13
15
  */
14
16
  export declare class SpecialCharactersCategoriesView extends View {
15
17
  /**
@@ -6,10 +6,12 @@
6
6
  * @module special-characters/ui/specialcharacterscategoriesview
7
7
  */
8
8
  import { Collection } from 'ckeditor5/src/utils.js';
9
- import { addListToDropdown, createLabeledDropdown, LabeledFieldView, View, ViewModel } from 'ckeditor5/src/ui.js';
9
+ import { addListToDropdown, createLabeledDropdown, LabeledFieldView, View, UIModel } from 'ckeditor5/src/ui.js';
10
10
  /**
11
11
  * A class representing the navigation part of the special characters UI. It is responsible
12
12
  * for describing the feature and allowing the user to select a particular character group.
13
+ *
14
+ * @internal
13
15
  */
14
16
  export class SpecialCharactersCategoriesView extends View {
15
17
  _groupNames;
@@ -57,7 +59,7 @@ export class SpecialCharactersCategoriesView extends View {
57
59
  for (const [name, label] of this._groupNames) {
58
60
  const item = {
59
61
  type: 'button',
60
- model: new ViewModel({
62
+ model: new UIModel({
61
63
  name,
62
64
  label,
63
65
  role: 'menuitemradio',
@@ -16,6 +16,8 @@ import { type SpecialCharactersCategoriesView } from './specialcharacterscategor
16
16
  * * the navigation view (allows selecting the category),
17
17
  * * the grid view (displays characters as a grid),
18
18
  * * and the info view (displays detailed info about a specific character).
19
+ *
20
+ * @internal
19
21
  */
20
22
  export declare class SpecialCharactersView extends View<HTMLDivElement> {
21
23
  /**
@@ -13,6 +13,8 @@ import { FocusTracker, KeystrokeHandler } from 'ckeditor5/src/utils.js';
13
13
  * * the navigation view (allows selecting the category),
14
14
  * * the grid view (displays characters as a grid),
15
15
  * * and the info view (displays detailed info about a specific character).
16
+ *
17
+ * @internal
16
18
  */
17
19
  export class SpecialCharactersView extends View {
18
20
  /**