@apolitical/component-library 4.1.6-beta.1 → 4.1.6

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.
@@ -0,0 +1,4 @@
1
+ declare const HOTKEYS: {
2
+ [key: string]: string;
3
+ };
4
+ export default HOTKEYS;
@@ -1,4 +1,3 @@
1
- declare const HOTKEYS: {
2
- [key: string]: string;
3
- };
4
- export default HOTKEYS;
1
+ import { Dispatch } from 'react';
2
+ import { BaseEditor } from 'slate';
3
+ export declare const handleHotKeys: (e: React.KeyboardEvent<HTMLDivElement> | React.KeyboardEvent<HTMLTextAreaElement>, editor: BaseEditor, dispatch: Dispatch<any>, reportError: (message: string) => void) => void;
@@ -1 +1,2 @@
1
- export { default as HOTKEYS } from './hot-keys';
1
+ export * from './hot-keys';
2
+ export { default as HOTKEYS } from './hot-keys.config';
package/helpers/intl.d.ts CHANGED
@@ -229,6 +229,7 @@ export declare const checkIntlPathExists: (path: string, language?: {
229
229
  richTextEditor_strikeThrough: string;
230
230
  richTextEditor_link: string;
231
231
  richTextEditor_link_text: string;
232
+ richTextEditor_link_text_aria: string;
232
233
  richTextEditor_link_url: string;
233
234
  richTextEditor_link_placeholder: string;
234
235
  richTextEditor_link_error_required: string;