@ckeditor/ckeditor5-special-characters 0.0.0-nightly-20250615.0 → 0.0.0-nightly-20250617.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/index.js.map +1 -1
- package/package.json +7 -7
- package/src/index.d.ts +2 -2
- package/src/ui/charactergridview.d.ts +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-special-characters",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20250617.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-
|
|
17
|
-
"@ckeditor/ckeditor5-core": "0.0.0-nightly-
|
|
18
|
-
"@ckeditor/ckeditor5-icons": "0.0.0-nightly-
|
|
19
|
-
"@ckeditor/ckeditor5-typing": "0.0.0-nightly-
|
|
20
|
-
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-
|
|
21
|
-
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-
|
|
16
|
+
"ckeditor5": "0.0.0-nightly-20250617.0",
|
|
17
|
+
"@ckeditor/ckeditor5-core": "0.0.0-nightly-20250617.0",
|
|
18
|
+
"@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250617.0",
|
|
19
|
+
"@ckeditor/ckeditor5-typing": "0.0.0-nightly-20250617.0",
|
|
20
|
+
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250617.0",
|
|
21
|
+
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250617.0"
|
|
22
22
|
},
|
|
23
23
|
"author": "CKSource (http://cksource.com/)",
|
|
24
24
|
"license": "SEE LICENSE IN LICENSE.md",
|
package/src/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters
|
|
7
7
|
*/
|
|
8
|
-
export { SpecialCharacters } from './specialcharacters.js';
|
|
8
|
+
export { SpecialCharacters, type SpecialCharacterDefinition } from './specialcharacters.js';
|
|
9
9
|
export { SpecialCharactersArrows } from './specialcharactersarrows.js';
|
|
10
10
|
export { SpecialCharactersText } from './specialcharacterstext.js';
|
|
11
11
|
export { SpecialCharactersMathematical } from './specialcharactersmathematical.js';
|
|
@@ -13,7 +13,7 @@ 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';
|
|
16
|
+
export { type SpecialCharactersGridViewExecuteEvent, type SpecialCharactersGridViewTileHoverEvent, type SpecialCharactersGridViewTileFocusEvent, type SpecialCharactersGridViewEventData, CharacterGridView as _SpecialCharactersGridView } from './ui/charactergridview.js';
|
|
17
17
|
export { CharacterInfoView as _SpecialCharactersInfoView } from './ui/characterinfoview.js';
|
|
18
18
|
export { SpecialCharactersCategoriesView as _SpecialCharactersCategoriesView } from './ui/specialcharacterscategoriesview.js';
|
|
19
19
|
export { SpecialCharactersView as _SpecialCharactersView } from './ui/specialcharactersview.js';
|
|
@@ -59,9 +59,9 @@ export declare class CharacterGridView extends View<HTMLDivElement> {
|
|
|
59
59
|
* @eventName ~CharacterGridView#execute
|
|
60
60
|
* @param data Additional information about the event.
|
|
61
61
|
*/
|
|
62
|
-
export type
|
|
62
|
+
export type SpecialCharactersGridViewExecuteEvent = {
|
|
63
63
|
name: 'execute';
|
|
64
|
-
args: [data:
|
|
64
|
+
args: [data: SpecialCharactersGridViewEventData];
|
|
65
65
|
};
|
|
66
66
|
/**
|
|
67
67
|
* Fired when a mouse or another pointing device caused the cursor to move onto any {@link ~CharacterGridView#tiles grid tile}
|
|
@@ -70,9 +70,9 @@ export type CharacterGridViewExecuteEvent = {
|
|
|
70
70
|
* @eventName ~CharacterGridView#tileHover
|
|
71
71
|
* @param data Additional information about the event.
|
|
72
72
|
*/
|
|
73
|
-
export type
|
|
73
|
+
export type SpecialCharactersGridViewTileHoverEvent = {
|
|
74
74
|
name: 'tileHover';
|
|
75
|
-
args: [data:
|
|
75
|
+
args: [data: SpecialCharactersGridViewEventData];
|
|
76
76
|
};
|
|
77
77
|
/**
|
|
78
78
|
* Fired when {@link ~CharacterGridView#tiles grid tile} is focused (e.g. by navigating with arrow keys).
|
|
@@ -80,11 +80,11 @@ export type CharacterGridViewTileHoverEvent = {
|
|
|
80
80
|
* @eventName ~CharacterGridView#tileFocus
|
|
81
81
|
* @param data Additional information about the event.
|
|
82
82
|
*/
|
|
83
|
-
export type
|
|
83
|
+
export type SpecialCharactersGridViewTileFocusEvent = {
|
|
84
84
|
name: 'tileFocus';
|
|
85
|
-
args: [data:
|
|
85
|
+
args: [data: SpecialCharactersGridViewEventData];
|
|
86
86
|
};
|
|
87
|
-
export interface
|
|
87
|
+
export interface SpecialCharactersGridViewEventData {
|
|
88
88
|
/**
|
|
89
89
|
* The name of the tile that caused the event (e.g. "greek small letter epsilon").
|
|
90
90
|
*/
|