@ckeditor/ckeditor5-special-characters 0.0.0-nightly-20231215.0 → 0.0.0-nightly-20231216.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 +3 -2
- package/src/augmentation.d.ts +1 -1
- package/src/index.d.ts +9 -9
- package/src/index.js +8 -8
- package/src/specialcharacters.d.ts +2 -2
- package/src/specialcharacters.js +8 -8
- package/src/specialcharactersarrows.d.ts +1 -1
- package/src/specialcharactersarrows.js +1 -1
- package/src/specialcharacterscurrency.d.ts +1 -1
- package/src/specialcharacterscurrency.js +1 -1
- package/src/specialcharactersessentials.d.ts +6 -6
- package/src/specialcharactersessentials.js +6 -6
- package/src/specialcharacterslatin.d.ts +1 -1
- package/src/specialcharacterslatin.js +1 -1
- package/src/specialcharactersmathematical.d.ts +1 -1
- package/src/specialcharactersmathematical.js +1 -1
- package/src/specialcharacterstext.d.ts +1 -1
- package/src/specialcharacterstext.js +1 -1
- package/src/ui/charactergridview.d.ts +2 -2
- package/src/ui/charactergridview.js +2 -2
- package/src/ui/characterinfoview.d.ts +2 -2
- package/src/ui/characterinfoview.js +1 -1
- package/src/ui/specialcharactersnavigationview.d.ts +2 -2
- package/src/ui/specialcharactersnavigationview.js +2 -2
- package/src/ui/specialcharactersview.d.ts +5 -5
- package/src/ui/specialcharactersview.js +2 -2
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-20231216.0",
|
|
4
4
|
"description": "Special characters feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -10,9 +10,10 @@
|
|
|
10
10
|
"ckeditor5-plugin",
|
|
11
11
|
"ckeditor5-dll"
|
|
12
12
|
],
|
|
13
|
+
"type": "module",
|
|
13
14
|
"main": "src/index.js",
|
|
14
15
|
"dependencies": {
|
|
15
|
-
"ckeditor5": "0.0.0-nightly-
|
|
16
|
+
"ckeditor5": "0.0.0-nightly-20231216.0"
|
|
16
17
|
},
|
|
17
18
|
"author": "CKSource (http://cksource.com/)",
|
|
18
19
|
"license": "GPL-2.0-or-later",
|
package/src/augmentation.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
4
|
*/
|
|
5
|
-
import type { SpecialCharacters, SpecialCharactersArrows, SpecialCharactersCurrency, SpecialCharactersEssentials, SpecialCharactersLatin, SpecialCharactersMathematical, SpecialCharactersText, SpecialCharactersConfig } from './index';
|
|
5
|
+
import type { SpecialCharacters, SpecialCharactersArrows, SpecialCharactersCurrency, SpecialCharactersEssentials, SpecialCharactersLatin, SpecialCharactersMathematical, SpecialCharactersText, SpecialCharactersConfig } from './index.js';
|
|
6
6
|
declare module '@ckeditor/ckeditor5-core' {
|
|
7
7
|
interface PluginsMap {
|
|
8
8
|
[SpecialCharacters.pluginName]: SpecialCharacters;
|
package/src/index.d.ts
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters
|
|
7
7
|
*/
|
|
8
|
-
export { default as SpecialCharacters } from './specialcharacters';
|
|
9
|
-
export { default as SpecialCharactersArrows } from './specialcharactersarrows';
|
|
10
|
-
export { default as SpecialCharactersText } from './specialcharacterstext';
|
|
11
|
-
export { default as SpecialCharactersMathematical } from './specialcharactersmathematical';
|
|
12
|
-
export { default as SpecialCharactersLatin } from './specialcharacterslatin';
|
|
13
|
-
export { default as SpecialCharactersEssentials } from './specialcharactersessentials';
|
|
14
|
-
export { default as SpecialCharactersCurrency } from './specialcharacterscurrency';
|
|
15
|
-
export type { SpecialCharactersConfig } from './specialcharactersconfig';
|
|
16
|
-
import './augmentation';
|
|
8
|
+
export { default as SpecialCharacters } from './specialcharacters.js';
|
|
9
|
+
export { default as SpecialCharactersArrows } from './specialcharactersarrows.js';
|
|
10
|
+
export { default as SpecialCharactersText } from './specialcharacterstext.js';
|
|
11
|
+
export { default as SpecialCharactersMathematical } from './specialcharactersmathematical.js';
|
|
12
|
+
export { default as SpecialCharactersLatin } from './specialcharacterslatin.js';
|
|
13
|
+
export { default as SpecialCharactersEssentials } from './specialcharactersessentials.js';
|
|
14
|
+
export { default as SpecialCharactersCurrency } from './specialcharacterscurrency.js';
|
|
15
|
+
export type { SpecialCharactersConfig } from './specialcharactersconfig.js';
|
|
16
|
+
import './augmentation.js';
|
package/src/index.js
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters
|
|
7
7
|
*/
|
|
8
|
-
export { default as SpecialCharacters } from './specialcharacters';
|
|
9
|
-
export { default as SpecialCharactersArrows } from './specialcharactersarrows';
|
|
10
|
-
export { default as SpecialCharactersText } from './specialcharacterstext';
|
|
11
|
-
export { default as SpecialCharactersMathematical } from './specialcharactersmathematical';
|
|
12
|
-
export { default as SpecialCharactersLatin } from './specialcharacterslatin';
|
|
13
|
-
export { default as SpecialCharactersEssentials } from './specialcharactersessentials';
|
|
14
|
-
export { default as SpecialCharactersCurrency } from './specialcharacterscurrency';
|
|
15
|
-
import './augmentation';
|
|
8
|
+
export { default as SpecialCharacters } from './specialcharacters.js';
|
|
9
|
+
export { default as SpecialCharactersArrows } from './specialcharactersarrows.js';
|
|
10
|
+
export { default as SpecialCharactersText } from './specialcharacterstext.js';
|
|
11
|
+
export { default as SpecialCharactersMathematical } from './specialcharactersmathematical.js';
|
|
12
|
+
export { default as SpecialCharactersLatin } from './specialcharacterslatin.js';
|
|
13
|
+
export { default as SpecialCharactersEssentials } from './specialcharactersessentials.js';
|
|
14
|
+
export { default as SpecialCharactersCurrency } from './specialcharacterscurrency.js';
|
|
15
|
+
import './augmentation.js';
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/specialcharacters
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin, type Editor } from 'ckeditor5/src/core';
|
|
9
|
-
import { Typing } from 'ckeditor5/src/typing';
|
|
8
|
+
import { Plugin, type Editor } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { Typing } from 'ckeditor5/src/typing.js';
|
|
10
10
|
import '../theme/specialcharacters.css';
|
|
11
11
|
/**
|
|
12
12
|
* The special characters feature.
|
package/src/specialcharacters.js
CHANGED
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/specialcharacters
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import { Typing } from 'ckeditor5/src/typing';
|
|
10
|
-
import { createDropdown } from 'ckeditor5/src/ui';
|
|
11
|
-
import { CKEditorError } from 'ckeditor5/src/utils';
|
|
12
|
-
import SpecialCharactersNavigationView from './ui/specialcharactersnavigationview';
|
|
13
|
-
import CharacterGridView from './ui/charactergridview';
|
|
14
|
-
import CharacterInfoView from './ui/characterinfoview';
|
|
15
|
-
import SpecialCharactersView from './ui/specialcharactersview';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { Typing } from 'ckeditor5/src/typing.js';
|
|
10
|
+
import { createDropdown } from 'ckeditor5/src/ui.js';
|
|
11
|
+
import { CKEditorError } from 'ckeditor5/src/utils.js';
|
|
12
|
+
import SpecialCharactersNavigationView from './ui/specialcharactersnavigationview.js';
|
|
13
|
+
import CharacterGridView from './ui/charactergridview.js';
|
|
14
|
+
import CharacterInfoView from './ui/characterinfoview.js';
|
|
15
|
+
import SpecialCharactersView from './ui/specialcharactersview.js';
|
|
16
16
|
import specialCharactersIcon from '../theme/icons/specialcharacters.svg';
|
|
17
17
|
import '../theme/specialcharacters.css';
|
|
18
18
|
const ALL_SPECIAL_CHARACTERS_GROUP = 'All';
|
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/specialcharactersessentials
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import SpecialCharactersCurrency from './specialcharacterscurrency';
|
|
10
|
-
import SpecialCharactersMathematical from './specialcharactersmathematical';
|
|
11
|
-
import SpecialCharactersArrows from './specialcharactersarrows';
|
|
12
|
-
import SpecialCharactersLatin from './specialcharacterslatin';
|
|
13
|
-
import SpecialCharactersText from './specialcharacterstext';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import SpecialCharactersCurrency from './specialcharacterscurrency.js';
|
|
10
|
+
import SpecialCharactersMathematical from './specialcharactersmathematical.js';
|
|
11
|
+
import SpecialCharactersArrows from './specialcharactersarrows.js';
|
|
12
|
+
import SpecialCharactersLatin from './specialcharacterslatin.js';
|
|
13
|
+
import SpecialCharactersText from './specialcharacterstext.js';
|
|
14
14
|
/**
|
|
15
15
|
* A plugin combining a basic set of characters for the special characters plugin.
|
|
16
16
|
*
|
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/specialcharactersessentials
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import SpecialCharactersCurrency from './specialcharacterscurrency';
|
|
10
|
-
import SpecialCharactersMathematical from './specialcharactersmathematical';
|
|
11
|
-
import SpecialCharactersArrows from './specialcharactersarrows';
|
|
12
|
-
import SpecialCharactersLatin from './specialcharacterslatin';
|
|
13
|
-
import SpecialCharactersText from './specialcharacterstext';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import SpecialCharactersCurrency from './specialcharacterscurrency.js';
|
|
10
|
+
import SpecialCharactersMathematical from './specialcharactersmathematical.js';
|
|
11
|
+
import SpecialCharactersArrows from './specialcharactersarrows.js';
|
|
12
|
+
import SpecialCharactersLatin from './specialcharacterslatin.js';
|
|
13
|
+
import SpecialCharactersText from './specialcharacterstext.js';
|
|
14
14
|
/**
|
|
15
15
|
* A plugin combining a basic set of characters for the special characters plugin.
|
|
16
16
|
*
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/ui/charactergridview
|
|
7
7
|
*/
|
|
8
|
-
import { View, ButtonView, type ViewCollection } from 'ckeditor5/src/ui';
|
|
9
|
-
import { KeystrokeHandler, FocusTracker, type Locale } from 'ckeditor5/src/utils';
|
|
8
|
+
import { View, ButtonView, type ViewCollection } from 'ckeditor5/src/ui.js';
|
|
9
|
+
import { KeystrokeHandler, FocusTracker, type Locale } from 'ckeditor5/src/utils.js';
|
|
10
10
|
import '../../theme/charactergrid.css';
|
|
11
11
|
/**
|
|
12
12
|
* A grid of character tiles. It allows browsing special characters and selecting the character to
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/ui/charactergridview
|
|
7
7
|
*/
|
|
8
|
-
import { View, ButtonView, addKeyboardHandlingForGrid } from 'ckeditor5/src/ui';
|
|
9
|
-
import { KeystrokeHandler, FocusTracker, global } from 'ckeditor5/src/utils';
|
|
8
|
+
import { View, ButtonView, addKeyboardHandlingForGrid } from 'ckeditor5/src/ui.js';
|
|
9
|
+
import { KeystrokeHandler, FocusTracker, global } from 'ckeditor5/src/utils.js';
|
|
10
10
|
import '../../theme/charactergrid.css';
|
|
11
11
|
/**
|
|
12
12
|
* A grid of character tiles. It allows browsing special characters and selecting the character to
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/ui/characterinfoview
|
|
7
7
|
*/
|
|
8
|
-
import type { Locale } from 'ckeditor5/src/utils';
|
|
9
|
-
import { View } from 'ckeditor5/src/ui';
|
|
8
|
+
import type { Locale } from 'ckeditor5/src/utils.js';
|
|
9
|
+
import { View } from 'ckeditor5/src/ui.js';
|
|
10
10
|
import '../../theme/characterinfo.css';
|
|
11
11
|
/**
|
|
12
12
|
* The view displaying detailed information about a special character glyph, e.g. upon
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
4
|
*/
|
|
5
|
-
import { View } from 'ckeditor5/src/ui';
|
|
5
|
+
import { View } from 'ckeditor5/src/ui.js';
|
|
6
6
|
import '../../theme/characterinfo.css';
|
|
7
7
|
/**
|
|
8
8
|
* The view displaying detailed information about a special character glyph, e.g. upon
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/ui/specialcharactersnavigationview
|
|
7
7
|
*/
|
|
8
|
-
import { type Locale } from 'ckeditor5/src/utils';
|
|
9
|
-
import { FormHeaderView, type DropdownView } from 'ckeditor5/src/ui';
|
|
8
|
+
import { type Locale } from 'ckeditor5/src/utils.js';
|
|
9
|
+
import { FormHeaderView, type DropdownView } 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.
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/ui/specialcharactersnavigationview
|
|
7
7
|
*/
|
|
8
|
-
import { Collection } from 'ckeditor5/src/utils';
|
|
9
|
-
import { addListToDropdown, createDropdown, Model, FormHeaderView } from 'ckeditor5/src/ui';
|
|
8
|
+
import { Collection } from 'ckeditor5/src/utils.js';
|
|
9
|
+
import { addListToDropdown, createDropdown, Model, FormHeaderView } 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.
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/ui/specialcharactersview
|
|
7
7
|
*/
|
|
8
|
-
import { View, FocusCycler, type ViewCollection } from 'ckeditor5/src/ui';
|
|
9
|
-
import { FocusTracker, KeystrokeHandler, type Locale } from 'ckeditor5/src/utils';
|
|
10
|
-
import type CharacterGridView from './charactergridview';
|
|
11
|
-
import type CharacterInfoView from './characterinfoview';
|
|
12
|
-
import type SpecialCharactersNavigationView from './specialcharactersnavigationview';
|
|
8
|
+
import { View, FocusCycler, type ViewCollection } from 'ckeditor5/src/ui.js';
|
|
9
|
+
import { FocusTracker, KeystrokeHandler, type Locale } from 'ckeditor5/src/utils.js';
|
|
10
|
+
import type CharacterGridView from './charactergridview.js';
|
|
11
|
+
import type CharacterInfoView from './characterinfoview.js';
|
|
12
|
+
import type SpecialCharactersNavigationView from './specialcharactersnavigationview.js';
|
|
13
13
|
/**
|
|
14
14
|
* A view that glues pieces of the special characters dropdown panel together:
|
|
15
15
|
*
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/ui/specialcharactersview
|
|
7
7
|
*/
|
|
8
|
-
import { View, FocusCycler } from 'ckeditor5/src/ui';
|
|
9
|
-
import { FocusTracker, KeystrokeHandler } from 'ckeditor5/src/utils';
|
|
8
|
+
import { View, FocusCycler } from 'ckeditor5/src/ui.js';
|
|
9
|
+
import { FocusTracker, KeystrokeHandler } from 'ckeditor5/src/utils.js';
|
|
10
10
|
/**
|
|
11
11
|
* A view that glues pieces of the special characters dropdown panel together:
|
|
12
12
|
*
|