Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ckeditor/ckeditor5-special-characters

Package Overview
Dependencies
Maintainers
1
Versions
742
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-special-characters - npm Package Compare versions

Comparing version 37.0.0-alpha.0 to 37.0.0-alpha.1

src/augmentation.d.ts

26

package.json
{
"name": "@ckeditor/ckeditor5-special-characters",
"version": "37.0.0-alpha.0",
"version": "37.0.0-alpha.1",
"description": "Special characters feature for CKEditor 5.",

@@ -15,15 +15,15 @@ "keywords": [

"dependencies": {
"ckeditor5": "^37.0.0-alpha.0"
"ckeditor5": "^37.0.0-alpha.1"
},
"devDependencies": {
"@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-dev-utils": "^34.0.0",
"@ckeditor/ckeditor5-easy-image": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
"@ckeditor/ckeditor5-easy-image": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
"typescript": "^4.8.4",

@@ -57,3 +57,3 @@ "webpack": "^5.58.1",

"dll:build": "webpack",
"build": "tsc -p ./tsconfig.release.json",
"build": "tsc -p ./tsconfig.json",
"postversion": "npm run build"

@@ -60,0 +60,0 @@ },

@@ -15,1 +15,3 @@ /**

export { default as SpecialCharactersCurrency } from './specialcharacterscurrency';
export type { SpecialCharactersConfig } from './specialcharactersconfig';
import './augmentation';

@@ -15,1 +15,2 @@ /**

export { default as SpecialCharactersCurrency } from './specialcharacterscurrency';
import './augmentation';

@@ -9,3 +9,2 @@ /**

import { Plugin, type PluginDependencies, type Editor } from 'ckeditor5/src/core';
import './specialcharactersconfig';
import '../theme/specialcharacters.css';

@@ -98,6 +97,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SpecialCharacters.pluginName]: SpecialCharacters;
}
}

@@ -17,3 +17,2 @@ /**

import specialCharactersIcon from '../theme/icons/specialcharacters.svg';
import './specialcharactersconfig';
import '../theme/specialcharacters.css';

@@ -20,0 +19,0 @@ const ALL_SPECIAL_CHARACTERS_GROUP = 'All';

@@ -31,6 +31,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SpecialCharactersArrows.pluginName]: SpecialCharactersArrows;
}
}

@@ -52,11 +52,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
/**
* The configuration of the {@link module:special-characters/specialcharacters~SpecialCharacters} feature.
*
* Read more in {@link module:special-characters/specialcharactersconfig~SpecialCharactersConfig}.
*/
interface EditorConfig {
specialCharacters?: SpecialCharactersConfig;
}
}

@@ -31,6 +31,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SpecialCharactersCurrency.pluginName]: SpecialCharactersCurrency;
}
}

@@ -31,6 +31,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SpecialCharactersEssentials.pluginName]: SpecialCharactersEssentials;
}
}

@@ -31,6 +31,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SpecialCharactersLatin.pluginName]: SpecialCharactersLatin;
}
}

@@ -31,6 +31,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SpecialCharactersMathematical.pluginName]: SpecialCharactersMathematical;
}
}

@@ -31,6 +31,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SpecialCharactersText.pluginName]: SpecialCharactersText;
}
}

@@ -50,5 +50,46 @@ /**

/**
* Focuses the first focusable in {@link #tiles}.
* Focuses the first focusable in {@link ~CharacterGridView#tiles}.
*/
focus(): void;
}
/**
* Fired when any of {@link ~CharacterGridView#tiles grid tiles} is clicked.
*
* @eventName ~CharacterGridView#execute
* @param data Additional information about the event.
*/
export type CharacterGridViewExecuteEvent = {
name: 'execute';
args: [data: CharacterGridViewEventData];
};
/**
* Fired when a mouse or another pointing device caused the cursor to move onto any {@link ~CharacterGridView#tiles grid tile}
* (similar to the native `mouseover` DOM event).
*
* @eventName ~CharacterGridView#tileHover
* @param data Additional information about the event.
*/
export type CharacterGridViewTileHoverEvent = {
name: 'tileHover';
args: [data: CharacterGridViewEventData];
};
/**
* Fired when {@link ~CharacterGridView#tiles grid tile} is focused (e.g. by navigating with arrow keys).
*
* @eventName ~CharacterGridView#tileFocus
* @param data Additional information about the event.
*/
export type CharacterGridViewTileFocusEvent = {
name: 'tileFocus';
args: [data: CharacterGridViewEventData];
};
export interface CharacterGridViewEventData {
/**
* The name of the tile that caused the event (e.g. "greek small letter epsilon").
*/
name: string;
/**
* A human-readable character displayed as the label (e.g. "ε").
*/
character: string;
}

@@ -58,27 +58,2 @@ /**

});
/**
* Fired when any of {@link #tiles grid tiles} is clicked.
*
* @event execute
* @param {Object} data Additional information about the event.
* @param {String} data.name The name of the tile that caused the event (e.g. "greek small letter epsilon").
* @param {String} data.character A human-readable character displayed as the label (e.g. "ε").
*/
/**
* Fired when a mouse or another pointing device caused the cursor to move onto any {@link #tiles grid tile}
* (similar to the native `mouseover` DOM event).
*
* @event tileHover
* @param {Object} data Additional information about the event.
* @param {String} data.name The name of the tile that caused the event (e.g. "greek small letter epsilon").
* @param {String} data.character A human-readable character displayed as the label (e.g. "ε").
*/
/**
* Fired when {@link #tiles grid tile} is focused (e.g. by navigating with arrow keys).
*
* @event tileFocus
* @param {Object} data Additional information about the event.
* @param {String} data.name The name of the tile that caused the event (e.g. "greek small letter epsilon").
* @param {String} data.character A human-readable character displayed as the label (e.g. "ε").
*/
}

@@ -150,3 +125,3 @@ /**

/**
* Focuses the first focusable in {@link #tiles}.
* Focuses the first focusable in {@link ~CharacterGridView#tiles}.
*/

@@ -153,0 +128,0 @@ focus() {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc