@atlaskit/editor-core 188.8.0 → 188.9.2
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/CHANGELOG.md +20 -0
- package/dist/cjs/composable-editor/editor-internal.js +2 -2
- package/dist/cjs/create-editor/ReactEditorView.js +796 -8
- package/dist/cjs/labs/next/presets/default.js +2 -2
- package/dist/cjs/labs/next/presets/universal.js +7 -4
- package/dist/cjs/plugins/index.js +0 -28
- package/dist/cjs/plugins/insert-block/index.js +4 -6
- package/dist/cjs/plugins/tasks-and-decisions/index.js +4 -3
- package/dist/cjs/plugins/tasks-and-decisions/nodeviews/decisionItem.js +26 -6
- package/dist/cjs/plugins/tasks-and-decisions/nodeviews/taskItem.js +45 -13
- package/dist/cjs/plugins/tasks-and-decisions/pm-plugins/main.js +15 -7
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/composable-editor/editor-internal.js +1 -1
- package/dist/es2019/create-editor/ReactEditorView.js +753 -2
- package/dist/es2019/labs/next/presets/default.js +1 -1
- package/dist/es2019/labs/next/presets/universal.js +4 -1
- package/dist/es2019/plugins/index.js +0 -4
- package/dist/es2019/plugins/insert-block/index.js +4 -6
- package/dist/es2019/plugins/tasks-and-decisions/index.js +4 -3
- package/dist/es2019/plugins/tasks-and-decisions/nodeviews/decisionItem.js +26 -6
- package/dist/es2019/plugins/tasks-and-decisions/nodeviews/taskItem.js +43 -10
- package/dist/es2019/plugins/tasks-and-decisions/pm-plugins/main.js +13 -6
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/composable-editor/editor-internal.js +1 -1
- package/dist/esm/create-editor/ReactEditorView.js +797 -8
- package/dist/esm/labs/next/presets/default.js +1 -1
- package/dist/esm/labs/next/presets/universal.js +4 -1
- package/dist/esm/plugins/index.js +0 -4
- package/dist/esm/plugins/insert-block/index.js +4 -6
- package/dist/esm/plugins/tasks-and-decisions/index.js +4 -3
- package/dist/esm/plugins/tasks-and-decisions/nodeviews/decisionItem.js +26 -6
- package/dist/esm/plugins/tasks-and-decisions/nodeviews/taskItem.js +45 -12
- package/dist/esm/plugins/tasks-and-decisions/pm-plugins/main.js +14 -7
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/ReactEditorView.d.ts +119 -5
- package/dist/types/labs/next/presets/default.d.ts +43 -43
- package/dist/types/plugins/index.d.ts +0 -4
- package/dist/types/plugins/insert-block/types.d.ts +3 -1
- package/dist/types/plugins/tasks-and-decisions/index.d.ts +2 -5
- package/dist/types/plugins/tasks-and-decisions/nodeviews/decisionItem.d.ts +9 -4
- package/dist/types/plugins/tasks-and-decisions/nodeviews/taskItem.d.ts +9 -4
- package/dist/types/plugins/tasks-and-decisions/pm-plugins/main.d.ts +4 -2
- package/dist/types/plugins/tasks-and-decisions/types.d.ts +6 -1
- package/dist/types/plugins/view-update-subscription/subscribe/toolbarAndPickerUpdates.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/ReactEditorView.d.ts +119 -5
- package/dist/types-ts4.5/labs/next/presets/default.d.ts +43 -43
- package/dist/types-ts4.5/plugins/index.d.ts +0 -4
- package/dist/types-ts4.5/plugins/insert-block/types.d.ts +3 -1
- package/dist/types-ts4.5/plugins/tasks-and-decisions/index.d.ts +2 -5
- package/dist/types-ts4.5/plugins/tasks-and-decisions/nodeviews/decisionItem.d.ts +9 -4
- package/dist/types-ts4.5/plugins/tasks-and-decisions/nodeviews/taskItem.d.ts +9 -4
- package/dist/types-ts4.5/plugins/tasks-and-decisions/pm-plugins/main.d.ts +4 -2
- package/dist/types-ts4.5/plugins/tasks-and-decisions/types.d.ts +8 -1
- package/dist/types-ts4.5/plugins/view-update-subscription/subscribe/toolbarAndPickerUpdates.d.ts +1 -1
- package/package.json +7 -7
- package/dist/cjs/create-editor/ReactEditorViewInternal.js +0 -812
- package/dist/cjs/create-editor/ReactEditorViewNext.js +0 -15
- package/dist/cjs/plugins/save-on-enter/index.js +0 -70
- package/dist/cjs/plugins/scroll-into-view/index.js +0 -55
- package/dist/cjs/plugins/status/actions.js +0 -158
- package/dist/cjs/plugins/status/analytics.js +0 -31
- package/dist/cjs/plugins/status/index.js +0 -143
- package/dist/cjs/plugins/status/keymap.js +0 -22
- package/dist/cjs/plugins/status/nodeviews/status.js +0 -58
- package/dist/cjs/plugins/status/plugin-key.js +0 -9
- package/dist/cjs/plugins/status/plugin.js +0 -133
- package/dist/cjs/plugins/status/types.js +0 -5
- package/dist/cjs/plugins/status/ui/statusPicker.js +0 -314
- package/dist/cjs/plugins/status/utils.js +0 -22
- package/dist/cjs/plugins/type-ahead/api.js +0 -215
- package/dist/cjs/plugins/type-ahead/commands/insert-type-ahead-item.js +0 -205
- package/dist/cjs/plugins/type-ahead/commands/update-list-items.js +0 -23
- package/dist/cjs/plugins/type-ahead/commands/update-query.js +0 -27
- package/dist/cjs/plugins/type-ahead/commands/update-selected-index.js +0 -27
- package/dist/cjs/plugins/type-ahead/constants.js +0 -15
- package/dist/cjs/plugins/type-ahead/index.js +0 -14
- package/dist/cjs/plugins/type-ahead/insert-utils.js +0 -107
- package/dist/cjs/plugins/type-ahead/messages.js +0 -79
- package/dist/cjs/plugins/type-ahead/plugin.js +0 -382
- package/dist/cjs/plugins/type-ahead/pm-plugins/actions.js +0 -16
- package/dist/cjs/plugins/type-ahead/pm-plugins/decorations.js +0 -148
- package/dist/cjs/plugins/type-ahead/pm-plugins/input-rules.js +0 -36
- package/dist/cjs/plugins/type-ahead/pm-plugins/insert-item-plugin.js +0 -22
- package/dist/cjs/plugins/type-ahead/pm-plugins/key.js +0 -8
- package/dist/cjs/plugins/type-ahead/pm-plugins/main.js +0 -110
- package/dist/cjs/plugins/type-ahead/pm-plugins/reducer.js +0 -158
- package/dist/cjs/plugins/type-ahead/pm-plugins/utils.js +0 -18
- package/dist/cjs/plugins/type-ahead/stats-modifier.js +0 -42
- package/dist/cjs/plugins/type-ahead/transforms/close-type-ahead.js +0 -13
- package/dist/cjs/plugins/type-ahead/transforms/open-typeahead-at-cursor.js +0 -75
- package/dist/cjs/plugins/type-ahead/transforms/set-selection-before-query.js +0 -18
- package/dist/cjs/plugins/type-ahead/types.js +0 -5
- package/dist/cjs/plugins/type-ahead/ui/AssistiveText.js +0 -120
- package/dist/cjs/plugins/type-ahead/ui/InputQuery.js +0 -400
- package/dist/cjs/plugins/type-ahead/ui/TypeAheadList.js +0 -285
- package/dist/cjs/plugins/type-ahead/ui/TypeAheadListItem.js +0 -179
- package/dist/cjs/plugins/type-ahead/ui/TypeAheadPopup.js +0 -230
- package/dist/cjs/plugins/type-ahead/ui/WrapperTypeAhead.js +0 -127
- package/dist/cjs/plugins/type-ahead/ui/hooks/use-item-insert.js +0 -109
- package/dist/cjs/plugins/type-ahead/ui/hooks/use-load-items.js +0 -50
- package/dist/cjs/plugins/type-ahead/ui/hooks/use-on-force-select.js +0 -41
- package/dist/cjs/plugins/type-ahead/utils.js +0 -130
- package/dist/es2019/create-editor/ReactEditorViewInternal.js +0 -753
- package/dist/es2019/create-editor/ReactEditorViewNext.js +0 -7
- package/dist/es2019/plugins/save-on-enter/index.js +0 -63
- package/dist/es2019/plugins/scroll-into-view/index.js +0 -44
- package/dist/es2019/plugins/status/actions.js +0 -144
- package/dist/es2019/plugins/status/analytics.js +0 -18
- package/dist/es2019/plugins/status/index.js +0 -135
- package/dist/es2019/plugins/status/keymap.js +0 -13
- package/dist/es2019/plugins/status/nodeviews/status.js +0 -60
- package/dist/es2019/plugins/status/plugin-key.js +0 -3
- package/dist/es2019/plugins/status/plugin.js +0 -113
- package/dist/es2019/plugins/status/types.js +0 -1
- package/dist/es2019/plugins/status/ui/statusPicker.js +0 -293
- package/dist/es2019/plugins/status/utils.js +0 -12
- package/dist/es2019/plugins/type-ahead/api.js +0 -205
- package/dist/es2019/plugins/type-ahead/commands/insert-type-ahead-item.js +0 -204
- package/dist/es2019/plugins/type-ahead/commands/update-list-items.js +0 -17
- package/dist/es2019/plugins/type-ahead/commands/update-query.js +0 -21
- package/dist/es2019/plugins/type-ahead/commands/update-selected-index.js +0 -21
- package/dist/es2019/plugins/type-ahead/constants.js +0 -9
- package/dist/es2019/plugins/type-ahead/index.js +0 -3
- package/dist/es2019/plugins/type-ahead/insert-utils.js +0 -106
- package/dist/es2019/plugins/type-ahead/messages.js +0 -73
- package/dist/es2019/plugins/type-ahead/plugin.js +0 -381
- package/dist/es2019/plugins/type-ahead/pm-plugins/actions.js +0 -10
- package/dist/es2019/plugins/type-ahead/pm-plugins/decorations.js +0 -148
- package/dist/es2019/plugins/type-ahead/pm-plugins/input-rules.js +0 -29
- package/dist/es2019/plugins/type-ahead/pm-plugins/insert-item-plugin.js +0 -16
- package/dist/es2019/plugins/type-ahead/pm-plugins/key.js +0 -2
- package/dist/es2019/plugins/type-ahead/pm-plugins/main.js +0 -106
- package/dist/es2019/plugins/type-ahead/pm-plugins/reducer.js +0 -160
- package/dist/es2019/plugins/type-ahead/pm-plugins/utils.js +0 -12
- package/dist/es2019/plugins/type-ahead/stats-modifier.js +0 -33
- package/dist/es2019/plugins/type-ahead/transforms/close-type-ahead.js +0 -7
- package/dist/es2019/plugins/type-ahead/transforms/open-typeahead-at-cursor.js +0 -71
- package/dist/es2019/plugins/type-ahead/transforms/set-selection-before-query.js +0 -10
- package/dist/es2019/plugins/type-ahead/types.js +0 -1
- package/dist/es2019/plugins/type-ahead/ui/AssistiveText.js +0 -88
- package/dist/es2019/plugins/type-ahead/ui/InputQuery.js +0 -393
- package/dist/es2019/plugins/type-ahead/ui/TypeAheadList.js +0 -273
- package/dist/es2019/plugins/type-ahead/ui/TypeAheadListItem.js +0 -214
- package/dist/es2019/plugins/type-ahead/ui/TypeAheadPopup.js +0 -233
- package/dist/es2019/plugins/type-ahead/ui/WrapperTypeAhead.js +0 -109
- package/dist/es2019/plugins/type-ahead/ui/hooks/use-item-insert.js +0 -112
- package/dist/es2019/plugins/type-ahead/ui/hooks/use-load-items.js +0 -41
- package/dist/es2019/plugins/type-ahead/ui/hooks/use-on-force-select.js +0 -38
- package/dist/es2019/plugins/type-ahead/utils.js +0 -126
- package/dist/esm/create-editor/ReactEditorViewInternal.js +0 -806
- package/dist/esm/create-editor/ReactEditorViewNext.js +0 -7
- package/dist/esm/plugins/save-on-enter/index.js +0 -63
- package/dist/esm/plugins/scroll-into-view/index.js +0 -50
- package/dist/esm/plugins/status/actions.js +0 -151
- package/dist/esm/plugins/status/analytics.js +0 -24
- package/dist/esm/plugins/status/index.js +0 -136
- package/dist/esm/plugins/status/keymap.js +0 -15
- package/dist/esm/plugins/status/nodeviews/status.js +0 -51
- package/dist/esm/plugins/status/plugin-key.js +0 -3
- package/dist/esm/plugins/status/plugin.js +0 -115
- package/dist/esm/plugins/status/types.js +0 -1
- package/dist/esm/plugins/status/ui/statusPicker.js +0 -308
- package/dist/esm/plugins/status/utils.js +0 -16
- package/dist/esm/plugins/type-ahead/api.js +0 -209
- package/dist/esm/plugins/type-ahead/commands/insert-type-ahead-item.js +0 -198
- package/dist/esm/plugins/type-ahead/commands/update-list-items.js +0 -17
- package/dist/esm/plugins/type-ahead/commands/update-query.js +0 -21
- package/dist/esm/plugins/type-ahead/commands/update-selected-index.js +0 -21
- package/dist/esm/plugins/type-ahead/constants.js +0 -9
- package/dist/esm/plugins/type-ahead/index.js +0 -3
- package/dist/esm/plugins/type-ahead/insert-utils.js +0 -101
- package/dist/esm/plugins/type-ahead/messages.js +0 -73
- package/dist/esm/plugins/type-ahead/plugin.js +0 -374
- package/dist/esm/plugins/type-ahead/pm-plugins/actions.js +0 -10
- package/dist/esm/plugins/type-ahead/pm-plugins/decorations.js +0 -141
- package/dist/esm/plugins/type-ahead/pm-plugins/input-rules.js +0 -29
- package/dist/esm/plugins/type-ahead/pm-plugins/insert-item-plugin.js +0 -16
- package/dist/esm/plugins/type-ahead/pm-plugins/key.js +0 -2
- package/dist/esm/plugins/type-ahead/pm-plugins/main.js +0 -104
- package/dist/esm/plugins/type-ahead/pm-plugins/reducer.js +0 -151
- package/dist/esm/plugins/type-ahead/pm-plugins/utils.js +0 -12
- package/dist/esm/plugins/type-ahead/stats-modifier.js +0 -35
- package/dist/esm/plugins/type-ahead/transforms/close-type-ahead.js +0 -7
- package/dist/esm/plugins/type-ahead/transforms/open-typeahead-at-cursor.js +0 -69
- package/dist/esm/plugins/type-ahead/transforms/set-selection-before-query.js +0 -12
- package/dist/esm/plugins/type-ahead/types.js +0 -1
- package/dist/esm/plugins/type-ahead/ui/AssistiveText.js +0 -115
- package/dist/esm/plugins/type-ahead/ui/InputQuery.js +0 -390
- package/dist/esm/plugins/type-ahead/ui/TypeAheadList.js +0 -276
- package/dist/esm/plugins/type-ahead/ui/TypeAheadListItem.js +0 -169
- package/dist/esm/plugins/type-ahead/ui/TypeAheadPopup.js +0 -220
- package/dist/esm/plugins/type-ahead/ui/WrapperTypeAhead.js +0 -117
- package/dist/esm/plugins/type-ahead/ui/hooks/use-item-insert.js +0 -103
- package/dist/esm/plugins/type-ahead/ui/hooks/use-load-items.js +0 -43
- package/dist/esm/plugins/type-ahead/ui/hooks/use-on-force-select.js +0 -35
- package/dist/esm/plugins/type-ahead/utils.js +0 -124
- package/dist/types/create-editor/ReactEditorViewInternal.d.ts +0 -119
- package/dist/types/create-editor/ReactEditorViewNext.d.ts +0 -8
- package/dist/types/plugins/save-on-enter/index.d.ts +0 -10
- package/dist/types/plugins/scroll-into-view/index.d.ts +0 -14
- package/dist/types/plugins/status/actions.d.ts +0 -16
- package/dist/types/plugins/status/analytics.d.ts +0 -4
- package/dist/types/plugins/status/index.d.ts +0 -15
- package/dist/types/plugins/status/keymap.d.ts +0 -3
- package/dist/types/plugins/status/nodeviews/status.d.ts +0 -25
- package/dist/types/plugins/status/plugin-key.d.ts +0 -4
- package/dist/types/plugins/status/plugin.d.ts +0 -7
- package/dist/types/plugins/status/types.d.ts +0 -18
- package/dist/types/plugins/status/ui/statusPicker.d.ts +0 -63
- package/dist/types/plugins/status/utils.d.ts +0 -5
- package/dist/types/plugins/type-ahead/api.d.ts +0 -61
- package/dist/types/plugins/type-ahead/commands/insert-type-ahead-item.d.ts +0 -12
- package/dist/types/plugins/type-ahead/commands/update-list-items.d.ts +0 -3
- package/dist/types/plugins/type-ahead/commands/update-query.d.ts +0 -2
- package/dist/types/plugins/type-ahead/commands/update-selected-index.d.ts +0 -2
- package/dist/types/plugins/type-ahead/constants.d.ts +0 -8
- package/dist/types/plugins/type-ahead/index.d.ts +0 -4
- package/dist/types/plugins/type-ahead/insert-utils.d.ts +0 -18
- package/dist/types/plugins/type-ahead/messages.d.ts +0 -72
- package/dist/types/plugins/type-ahead/plugin.d.ts +0 -10
- package/dist/types/plugins/type-ahead/pm-plugins/actions.d.ts +0 -9
- package/dist/types/plugins/type-ahead/pm-plugins/decorations.d.ts +0 -14
- package/dist/types/plugins/type-ahead/pm-plugins/input-rules.d.ts +0 -6
- package/dist/types/plugins/type-ahead/pm-plugins/insert-item-plugin.d.ts +0 -2
- package/dist/types/plugins/type-ahead/pm-plugins/key.d.ts +0 -3
- package/dist/types/plugins/type-ahead/pm-plugins/main.d.ts +0 -14
- package/dist/types/plugins/type-ahead/pm-plugins/reducer.d.ts +0 -10
- package/dist/types/plugins/type-ahead/pm-plugins/utils.d.ts +0 -4
- package/dist/types/plugins/type-ahead/stats-modifier.d.ts +0 -20
- package/dist/types/plugins/type-ahead/transforms/close-type-ahead.d.ts +0 -2
- package/dist/types/plugins/type-ahead/transforms/open-typeahead-at-cursor.d.ts +0 -11
- package/dist/types/plugins/type-ahead/transforms/set-selection-before-query.d.ts +0 -2
- package/dist/types/plugins/type-ahead/types.d.ts +0 -109
- package/dist/types/plugins/type-ahead/ui/AssistiveText.d.ts +0 -33
- package/dist/types/plugins/type-ahead/ui/InputQuery.d.ts +0 -26
- package/dist/types/plugins/type-ahead/ui/TypeAheadList.d.ts +0 -25
- package/dist/types/plugins/type-ahead/ui/TypeAheadListItem.d.ts +0 -18
- package/dist/types/plugins/type-ahead/ui/TypeAheadPopup.d.ts +0 -29
- package/dist/types/plugins/type-ahead/ui/WrapperTypeAhead.d.ts +0 -20
- package/dist/types/plugins/type-ahead/ui/hooks/use-item-insert.d.ts +0 -3
- package/dist/types/plugins/type-ahead/ui/hooks/use-load-items.d.ts +0 -3
- package/dist/types/plugins/type-ahead/ui/hooks/use-on-force-select.d.ts +0 -11
- package/dist/types/plugins/type-ahead/utils.d.ts +0 -27
- package/dist/types-ts4.5/create-editor/ReactEditorViewInternal.d.ts +0 -119
- package/dist/types-ts4.5/create-editor/ReactEditorViewNext.d.ts +0 -8
- package/dist/types-ts4.5/plugins/save-on-enter/index.d.ts +0 -10
- package/dist/types-ts4.5/plugins/scroll-into-view/index.d.ts +0 -14
- package/dist/types-ts4.5/plugins/status/actions.d.ts +0 -16
- package/dist/types-ts4.5/plugins/status/analytics.d.ts +0 -4
- package/dist/types-ts4.5/plugins/status/index.d.ts +0 -17
- package/dist/types-ts4.5/plugins/status/keymap.d.ts +0 -3
- package/dist/types-ts4.5/plugins/status/nodeviews/status.d.ts +0 -25
- package/dist/types-ts4.5/plugins/status/plugin-key.d.ts +0 -4
- package/dist/types-ts4.5/plugins/status/plugin.d.ts +0 -7
- package/dist/types-ts4.5/plugins/status/types.d.ts +0 -18
- package/dist/types-ts4.5/plugins/status/ui/statusPicker.d.ts +0 -63
- package/dist/types-ts4.5/plugins/status/utils.d.ts +0 -5
- package/dist/types-ts4.5/plugins/type-ahead/api.d.ts +0 -61
- package/dist/types-ts4.5/plugins/type-ahead/commands/insert-type-ahead-item.d.ts +0 -12
- package/dist/types-ts4.5/plugins/type-ahead/commands/update-list-items.d.ts +0 -3
- package/dist/types-ts4.5/plugins/type-ahead/commands/update-query.d.ts +0 -2
- package/dist/types-ts4.5/plugins/type-ahead/commands/update-selected-index.d.ts +0 -2
- package/dist/types-ts4.5/plugins/type-ahead/constants.d.ts +0 -8
- package/dist/types-ts4.5/plugins/type-ahead/index.d.ts +0 -4
- package/dist/types-ts4.5/plugins/type-ahead/insert-utils.d.ts +0 -18
- package/dist/types-ts4.5/plugins/type-ahead/messages.d.ts +0 -72
- package/dist/types-ts4.5/plugins/type-ahead/plugin.d.ts +0 -10
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/actions.d.ts +0 -9
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/decorations.d.ts +0 -14
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/input-rules.d.ts +0 -6
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/insert-item-plugin.d.ts +0 -2
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/key.d.ts +0 -3
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/main.d.ts +0 -14
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/reducer.d.ts +0 -10
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/utils.d.ts +0 -4
- package/dist/types-ts4.5/plugins/type-ahead/stats-modifier.d.ts +0 -20
- package/dist/types-ts4.5/plugins/type-ahead/transforms/close-type-ahead.d.ts +0 -2
- package/dist/types-ts4.5/plugins/type-ahead/transforms/open-typeahead-at-cursor.d.ts +0 -11
- package/dist/types-ts4.5/plugins/type-ahead/transforms/set-selection-before-query.d.ts +0 -2
- package/dist/types-ts4.5/plugins/type-ahead/types.d.ts +0 -111
- package/dist/types-ts4.5/plugins/type-ahead/ui/AssistiveText.d.ts +0 -33
- package/dist/types-ts4.5/plugins/type-ahead/ui/InputQuery.d.ts +0 -26
- package/dist/types-ts4.5/plugins/type-ahead/ui/TypeAheadList.d.ts +0 -25
- package/dist/types-ts4.5/plugins/type-ahead/ui/TypeAheadListItem.d.ts +0 -18
- package/dist/types-ts4.5/plugins/type-ahead/ui/TypeAheadPopup.d.ts +0 -29
- package/dist/types-ts4.5/plugins/type-ahead/ui/WrapperTypeAhead.d.ts +0 -20
- package/dist/types-ts4.5/plugins/type-ahead/ui/hooks/use-item-insert.d.ts +0 -7
- package/dist/types-ts4.5/plugins/type-ahead/ui/hooks/use-load-items.d.ts +0 -3
- package/dist/types-ts4.5/plugins/type-ahead/ui/hooks/use-on-force-select.d.ts +0 -11
- package/dist/types-ts4.5/plugins/type-ahead/utils.d.ts +0 -27
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { TypeAheadPlugin } from './types';
|
|
2
|
-
/**
|
|
3
|
-
*
|
|
4
|
-
* Revamped typeahead using decorations instead of the `typeAheadQuery` mark
|
|
5
|
-
*
|
|
6
|
-
* https://product-fabric.atlassian.net/wiki/spaces/E/pages/2992177582/Technical+TypeAhead+Data+Flow
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*/
|
|
10
|
-
export declare const typeAheadPlugin: TypeAheadPlugin;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export declare enum ACTIONS {
|
|
2
|
-
OPEN_TYPEAHEAD_AT_CURSOR = "OPEN_TYPEAHEAD_AT_CURSOR",
|
|
3
|
-
CLOSE_TYPE_AHEAD = "CLOSE_TYPE_AHEAD",
|
|
4
|
-
CHANGE_QUERY = "CHANGE_QUERY",
|
|
5
|
-
INSERT_ITEM = "INSERT_ITEM",
|
|
6
|
-
INSERT_RAW_QUERY = "INSERT_RAW_QUERY",
|
|
7
|
-
UPDATE_LIST_ITEMS = "UPDATE_LIST_ITEMS",
|
|
8
|
-
UPDATE_SELECTED_INDEX = "UPDATE_SELECTED_INDEX"
|
|
9
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
2
|
-
import type { IntlShape } from 'react-intl-next';
|
|
3
|
-
import type { CreateTypeAheadDecorations, RemoveTypeAheadDecorations, PopupMountPointReference } from '../types';
|
|
4
|
-
type FactoryProps = {
|
|
5
|
-
intl: IntlShape;
|
|
6
|
-
popupMountRef: PopupMountPointReference;
|
|
7
|
-
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
8
|
-
};
|
|
9
|
-
type FactoryReturn = {
|
|
10
|
-
createDecorations: CreateTypeAheadDecorations;
|
|
11
|
-
removeDecorations: RemoveTypeAheadDecorations;
|
|
12
|
-
};
|
|
13
|
-
export declare const factoryDecorations: ({ intl, popupMountRef, createAnalyticsEvent, }: FactoryProps) => FactoryReturn;
|
|
14
|
-
export {};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { Schema } from '@atlaskit/editor-prosemirror/model';
|
|
2
|
-
import type { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
3
|
-
import type { TypeAheadHandler } from '../types';
|
|
4
|
-
import type { FeatureFlags } from '../../../types/feature-flags';
|
|
5
|
-
export declare function inputRulePlugin(schema: Schema, typeAheads: TypeAheadHandler[], featureFlags: FeatureFlags): SafePlugin | undefined;
|
|
6
|
-
export default inputRulePlugin;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
2
|
-
import type { IntlShape } from 'react-intl-next';
|
|
3
|
-
import type { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
4
|
-
import type { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
|
|
5
|
-
import type { PopupMountPointReference, TypeAheadHandler } from '../types';
|
|
6
|
-
type Props = {
|
|
7
|
-
reactDispatch: Dispatch;
|
|
8
|
-
popupMountRef: PopupMountPointReference;
|
|
9
|
-
typeAheadHandlers: Array<TypeAheadHandler>;
|
|
10
|
-
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
11
|
-
getIntl: () => IntlShape;
|
|
12
|
-
};
|
|
13
|
-
export declare function createPlugin({ reactDispatch, popupMountRef, createAnalyticsEvent, typeAheadHandlers, getIntl, }: Props): SafePlugin;
|
|
14
|
-
export {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import { InsertTypeAheadStep } from '@atlaskit/adf-schema/steps';
|
|
3
|
-
import type { CreateTypeAheadDecorations, PopupMountPointReference, RemoveTypeAheadDecorations, TypeAheadHandler, TypeAheadPluginState } from '../types';
|
|
4
|
-
export type ReducerOptions = {
|
|
5
|
-
popupMountRef: PopupMountPointReference;
|
|
6
|
-
createDecorations: CreateTypeAheadDecorations;
|
|
7
|
-
removeDecorations: RemoveTypeAheadDecorations;
|
|
8
|
-
typeAheadHandlers: Array<TypeAheadHandler>;
|
|
9
|
-
};
|
|
10
|
-
export declare const createReducer: ({ typeAheadHandlers, removeDecorations, createDecorations, }: ReducerOptions) => (tr: ReadonlyTransaction, currentPluginState: TypeAheadPluginState, typeAheadStepOverride: InsertTypeAheadStep | null) => TypeAheadPluginState;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import type { Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import type { InsertionTransactionMeta } from '../types';
|
|
3
|
-
import type { ACTIONS } from './actions';
|
|
4
|
-
export declare const isInsertionTransaction: (transactions: readonly Transaction[], action: ACTIONS) => InsertionTransactionMeta | null;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import type { TypeAheadStatsModifier } from './types';
|
|
2
|
-
export declare class StatsModifier implements TypeAheadStatsModifier {
|
|
3
|
-
startedAt: number;
|
|
4
|
-
endedAt: number;
|
|
5
|
-
keyCount: {
|
|
6
|
-
arrowUp: number;
|
|
7
|
-
arrowDown: number;
|
|
8
|
-
};
|
|
9
|
-
constructor();
|
|
10
|
-
increaseArrowUp: () => void;
|
|
11
|
-
increaseArrowDown: () => void;
|
|
12
|
-
serialize: () => {
|
|
13
|
-
startedAt: number;
|
|
14
|
-
endedAt: number;
|
|
15
|
-
keyCount: {
|
|
16
|
-
arrowUp: number;
|
|
17
|
-
arrowDown: number;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import type { EditorCommand } from '@atlaskit/editor-common/types';
|
|
3
|
-
import type { TypeAheadHandler, TypeAheadInputMethod } from '../types';
|
|
4
|
-
type Props = {
|
|
5
|
-
triggerHandler: TypeAheadHandler;
|
|
6
|
-
inputMethod: TypeAheadInputMethod;
|
|
7
|
-
query?: string;
|
|
8
|
-
};
|
|
9
|
-
export declare const openTypeAhead: (props: Props) => (tr: Transaction) => void;
|
|
10
|
-
export declare const openTypeAheadAtCursor: ({ triggerHandler, inputMethod, query }: Props) => EditorCommand;
|
|
11
|
-
export {};
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
import type { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
2
|
-
import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
3
|
-
import type { SelectItemMode } from '@atlaskit/editor-common/type-ahead';
|
|
4
|
-
import type { Command, NextEditorPlugin, OptionalPlugin, TypeAheadForceSelect, TypeAheadHandler, TypeAheadInsert, TypeAheadItem, TypeAheadItemRenderProps, TypeAheadSelectItem, TypeAheadStats, UiComponentFactoryParams } from '@atlaskit/editor-common/types';
|
|
5
|
-
import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
6
|
-
import type { EditorState, ReadonlyTransaction, Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
7
|
-
import type { DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
8
|
-
import type { CloseSelectionOptions } from './constants';
|
|
9
|
-
export type { TypeAheadStats, TypeAheadItemRenderProps, TypeAheadInsert, TypeAheadSelectItem, TypeAheadItem, TypeAheadForceSelect, TypeAheadHandler, };
|
|
10
|
-
export type OnSelectItem = (props: {
|
|
11
|
-
index: number;
|
|
12
|
-
item: TypeAheadItem;
|
|
13
|
-
}) => void;
|
|
14
|
-
export interface TypeAheadStatsSerializable extends TypeAheadStats {
|
|
15
|
-
serialize: () => TypeAheadStats;
|
|
16
|
-
}
|
|
17
|
-
export interface TypeAheadStatsModifier extends TypeAheadStatsSerializable {
|
|
18
|
-
increaseArrowUp: () => void;
|
|
19
|
-
increaseArrowDown: () => void;
|
|
20
|
-
}
|
|
21
|
-
export interface TypeAheadStatsMobileModifier extends TypeAheadStatsSerializable {
|
|
22
|
-
resetTime: () => void;
|
|
23
|
-
closeTime: () => void;
|
|
24
|
-
}
|
|
25
|
-
export type TypeAheadPluginState = {
|
|
26
|
-
decorationSet: DecorationSet;
|
|
27
|
-
decorationElement: HTMLElement | null;
|
|
28
|
-
typeAheadHandlers: Array<TypeAheadHandler>;
|
|
29
|
-
query: string;
|
|
30
|
-
items: Array<TypeAheadItem>;
|
|
31
|
-
triggerHandler?: TypeAheadHandler;
|
|
32
|
-
selectedIndex: number;
|
|
33
|
-
stats: TypeAheadStatsSerializable | null;
|
|
34
|
-
inputMethod: TypeAheadInputMethod | null;
|
|
35
|
-
};
|
|
36
|
-
export type OnInsertSelectedItemProps = {
|
|
37
|
-
mode: SelectItemMode;
|
|
38
|
-
index: number;
|
|
39
|
-
query: string;
|
|
40
|
-
};
|
|
41
|
-
export type OnItemMatchProps = {
|
|
42
|
-
mode: SelectItemMode;
|
|
43
|
-
query: string;
|
|
44
|
-
};
|
|
45
|
-
export type OnInsertSelectedItem = (props: OnInsertSelectedItemProps) => void;
|
|
46
|
-
export type OnItemMatch = (props: OnItemMatchProps) => boolean;
|
|
47
|
-
export type OnTextInsertProps = {
|
|
48
|
-
forceFocusOnEditor: boolean;
|
|
49
|
-
setSelectionAt: CloseSelectionOptions;
|
|
50
|
-
text: string;
|
|
51
|
-
};
|
|
52
|
-
export type OnTextInsert = (props: OnTextInsertProps) => void;
|
|
53
|
-
export type InsertionTransactionMeta = (editorState: EditorState) => Transaction | false;
|
|
54
|
-
type PopupMountPoints = Pick<UiComponentFactoryParams, 'popupsMountPoint' | 'popupsBoundariesElement' | 'popupsScrollableElement'>;
|
|
55
|
-
export type PopupMountPointReference = Record<'current', PopupMountPoints | null>;
|
|
56
|
-
export type CreateTypeAheadDecorations = (tr: ReadonlyTransaction, options: {
|
|
57
|
-
triggerHandler: TypeAheadHandler;
|
|
58
|
-
inputMethod: TypeAheadInputMethod;
|
|
59
|
-
reopenQuery?: string;
|
|
60
|
-
}) => {
|
|
61
|
-
decorationSet: DecorationSet;
|
|
62
|
-
decorationElement: HTMLElement | null;
|
|
63
|
-
stats: TypeAheadStatsSerializable | null;
|
|
64
|
-
};
|
|
65
|
-
export type RemoveTypeAheadDecorations = (decorationSet?: DecorationSet) => boolean;
|
|
66
|
-
export type TypeAheadInputMethod = INPUT_METHOD.INSERT_MENU | INPUT_METHOD.KEYBOARD | INPUT_METHOD.QUICK_INSERT | INPUT_METHOD.TOOLBAR;
|
|
67
|
-
export type TypeAheadPluginOptions = {
|
|
68
|
-
isMobile?: boolean;
|
|
69
|
-
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
70
|
-
};
|
|
71
|
-
type OpenTypeAheadProps = {
|
|
72
|
-
triggerHandler: TypeAheadHandler;
|
|
73
|
-
inputMethod: TypeAheadInputMethod;
|
|
74
|
-
query?: string;
|
|
75
|
-
};
|
|
76
|
-
type InsertTypeAheadItemProps = {
|
|
77
|
-
triggerHandler: TypeAheadHandler;
|
|
78
|
-
contentItem: TypeAheadItem;
|
|
79
|
-
query: string;
|
|
80
|
-
sourceListItem: TypeAheadItem[];
|
|
81
|
-
mode?: SelectItemMode;
|
|
82
|
-
};
|
|
83
|
-
type CloseTypeAheadProps = {
|
|
84
|
-
insertCurrentQueryAsRawText: boolean;
|
|
85
|
-
attachCommand?: Command;
|
|
86
|
-
};
|
|
87
|
-
/**
|
|
88
|
-
* Type ahead plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
89
|
-
* from `@atlaskit/editor-core`.
|
|
90
|
-
*/
|
|
91
|
-
export type TypeAheadPlugin = NextEditorPlugin<'typeAhead', {
|
|
92
|
-
pluginConfiguration: TypeAheadPluginOptions | undefined;
|
|
93
|
-
dependencies: [OptionalPlugin<AnalyticsPlugin>];
|
|
94
|
-
sharedState: {
|
|
95
|
-
query: string;
|
|
96
|
-
isOpen: boolean;
|
|
97
|
-
isAllowed: boolean;
|
|
98
|
-
currentHandler?: TypeAheadHandler;
|
|
99
|
-
};
|
|
100
|
-
actions: {
|
|
101
|
-
isOpen: (editorState: EditorState) => boolean;
|
|
102
|
-
isAllowed: (editorState: EditorState) => boolean;
|
|
103
|
-
insert: (props: InsertTypeAheadItemProps) => boolean;
|
|
104
|
-
findHandlerByTrigger: (trigger: string) => TypeAheadHandler | null;
|
|
105
|
-
open: (props: OpenTypeAheadProps) => boolean;
|
|
106
|
-
close: (props: CloseTypeAheadProps) => boolean;
|
|
107
|
-
openAtTransaction: (props: OpenTypeAheadProps) => (tr: Transaction) => boolean;
|
|
108
|
-
};
|
|
109
|
-
}>;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/** @jsx jsx */
|
|
2
|
-
/// <reference types="lodash" />
|
|
3
|
-
import debounce from 'lodash/debounce';
|
|
4
|
-
import React from 'react';
|
|
5
|
-
import { jsx } from '@emotion/react';
|
|
6
|
-
type Cancelable = ReturnType<typeof debounce>;
|
|
7
|
-
type AssistiveTextProps = {
|
|
8
|
-
assistiveText: string;
|
|
9
|
-
isInFocus: boolean;
|
|
10
|
-
id: string;
|
|
11
|
-
statusDebounceMillis?: number;
|
|
12
|
-
debounce?: boolean;
|
|
13
|
-
};
|
|
14
|
-
type AssistiveTextState = {
|
|
15
|
-
bump: boolean;
|
|
16
|
-
debounced: boolean;
|
|
17
|
-
silenced: boolean;
|
|
18
|
-
};
|
|
19
|
-
declare class AssistveTextComponent extends React.Component<AssistiveTextProps, AssistiveTextState> {
|
|
20
|
-
static defaultProps: AssistiveTextProps;
|
|
21
|
-
debounceStatusUpdate: (() => void) & Cancelable;
|
|
22
|
-
state: {
|
|
23
|
-
bump: boolean;
|
|
24
|
-
debounced: boolean;
|
|
25
|
-
silenced: boolean;
|
|
26
|
-
};
|
|
27
|
-
componentWillMount(): void;
|
|
28
|
-
componentWillUnmount(): void;
|
|
29
|
-
componentWillReceiveProps(): void;
|
|
30
|
-
render(): jsx.JSX.Element;
|
|
31
|
-
}
|
|
32
|
-
export declare const AssistiveText: typeof AssistveTextComponent;
|
|
33
|
-
export {};
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/** @jsx jsx */
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
4
|
-
import { CloseSelectionOptions } from '../constants';
|
|
5
|
-
import { SelectItemMode } from '@atlaskit/editor-common/type-ahead';
|
|
6
|
-
type InputQueryProps = {
|
|
7
|
-
triggerQueryPrefix: string;
|
|
8
|
-
onQueryChange: (query: string) => void;
|
|
9
|
-
onItemSelect: (mode: SelectItemMode) => void;
|
|
10
|
-
selectNextItem: () => void;
|
|
11
|
-
selectPreviousItem: () => void;
|
|
12
|
-
cancel: (props: {
|
|
13
|
-
forceFocusOnEditor: boolean;
|
|
14
|
-
setSelectionAt: CloseSelectionOptions;
|
|
15
|
-
addPrefixTrigger: boolean;
|
|
16
|
-
text: string;
|
|
17
|
-
}) => void;
|
|
18
|
-
onQueryFocus: () => void;
|
|
19
|
-
forceFocus: boolean;
|
|
20
|
-
onUndoRedo?: (inputType: 'historyUndo' | 'historyRedo') => boolean;
|
|
21
|
-
reopenQuery?: string;
|
|
22
|
-
editorView: EditorView;
|
|
23
|
-
items: any[];
|
|
24
|
-
};
|
|
25
|
-
export declare const InputQuery: React.FC<InputQueryProps>;
|
|
26
|
-
export {};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/** @jsx jsx */
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import { SelectItemMode } from '@atlaskit/editor-common/type-ahead';
|
|
4
|
-
import type { WrappedComponentProps } from 'react-intl-next';
|
|
5
|
-
import type { TypeAheadHandler, TypeAheadItem } from '../types';
|
|
6
|
-
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
7
|
-
export declare const TypeAheadList: React.FC<import("react-intl-next").WithIntlProps<{
|
|
8
|
-
items: Array<TypeAheadItem>;
|
|
9
|
-
selectedIndex: number;
|
|
10
|
-
editorView: EditorView;
|
|
11
|
-
onItemClick: (mode: SelectItemMode, index: number) => void;
|
|
12
|
-
fitHeight: number;
|
|
13
|
-
decorationElement: HTMLElement;
|
|
14
|
-
triggerHandler?: TypeAheadHandler | undefined;
|
|
15
|
-
} & WrappedComponentProps<"intl">>> & {
|
|
16
|
-
WrappedComponent: React.ComponentType<{
|
|
17
|
-
items: Array<TypeAheadItem>;
|
|
18
|
-
selectedIndex: number;
|
|
19
|
-
editorView: EditorView;
|
|
20
|
-
onItemClick: (mode: SelectItemMode, index: number) => void;
|
|
21
|
-
fitHeight: number;
|
|
22
|
-
decorationElement: HTMLElement;
|
|
23
|
-
triggerHandler?: TypeAheadHandler | undefined;
|
|
24
|
-
} & WrappedComponentProps<"intl">>;
|
|
25
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/** @jsx jsx */
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import type { TypeAheadItem } from '../types';
|
|
4
|
-
import { SelectItemMode } from '@atlaskit/editor-common/type-ahead';
|
|
5
|
-
export declare const ICON_HEIGHT = 40;
|
|
6
|
-
export declare const ICON_WIDTH = 40;
|
|
7
|
-
export declare const ITEM_PADDING = 12;
|
|
8
|
-
export declare const itemIcon: import("@emotion/react").SerializedStyles;
|
|
9
|
-
type TypeAheadListItemProps = {
|
|
10
|
-
item: TypeAheadItem;
|
|
11
|
-
itemsLength: number;
|
|
12
|
-
itemIndex: number;
|
|
13
|
-
selectedIndex: number;
|
|
14
|
-
ariaLabel?: string;
|
|
15
|
-
onItemClick: (mode: SelectItemMode, index: number) => void;
|
|
16
|
-
};
|
|
17
|
-
export declare const TypeAheadListItem: React.FC<TypeAheadListItemProps>;
|
|
18
|
-
export {};
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/** @jsx jsx */
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import type { EditorView, DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
4
|
-
import type { SelectItemMode } from '@atlaskit/editor-common/type-ahead';
|
|
5
|
-
import type { FireAnalyticsCallback } from '@atlaskit/editor-common/analytics';
|
|
6
|
-
import { CloseSelectionOptions } from '../constants';
|
|
7
|
-
import type { TypeAheadHandler, TypeAheadItem, OnSelectItem } from '../types';
|
|
8
|
-
type TypeAheadPopupProps = {
|
|
9
|
-
triggerHandler: TypeAheadHandler;
|
|
10
|
-
editorView: EditorView;
|
|
11
|
-
anchorElement: HTMLElement;
|
|
12
|
-
popupsMountPoint?: HTMLElement;
|
|
13
|
-
popupsBoundariesElement?: HTMLElement;
|
|
14
|
-
popupsScrollableElement?: HTMLElement;
|
|
15
|
-
fireAnalyticsCallback: FireAnalyticsCallback;
|
|
16
|
-
items: Array<TypeAheadItem>;
|
|
17
|
-
selectedIndex: number;
|
|
18
|
-
setSelectedItem: OnSelectItem;
|
|
19
|
-
decorationSet: DecorationSet;
|
|
20
|
-
isEmptyQuery: boolean;
|
|
21
|
-
onItemInsert: (mode: SelectItemMode, index: number) => void;
|
|
22
|
-
cancel: (params: {
|
|
23
|
-
setSelectionAt: CloseSelectionOptions;
|
|
24
|
-
addPrefixTrigger: boolean;
|
|
25
|
-
forceFocusOnEditor: boolean;
|
|
26
|
-
}) => void;
|
|
27
|
-
};
|
|
28
|
-
export declare const TypeAheadPopup: React.FC<TypeAheadPopupProps>;
|
|
29
|
-
export {};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
3
|
-
import type { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
4
|
-
import type { TypeAheadHandler, TypeAheadInputMethod } from '../types';
|
|
5
|
-
type WrapperProps = {
|
|
6
|
-
triggerHandler: TypeAheadHandler;
|
|
7
|
-
editorView: EditorView;
|
|
8
|
-
anchorElement: HTMLElement;
|
|
9
|
-
getDecorationPosition: () => number | undefined;
|
|
10
|
-
shouldFocusCursorInsideQuery: boolean;
|
|
11
|
-
onUndoRedo?: (inputType: 'historyUndo' | 'historyRedo') => boolean;
|
|
12
|
-
reopenQuery?: string;
|
|
13
|
-
popupsMountPoint?: HTMLElement;
|
|
14
|
-
popupsBoundariesElement?: HTMLElement;
|
|
15
|
-
popupsScrollableElement?: HTMLElement;
|
|
16
|
-
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
17
|
-
inputMethod?: TypeAheadInputMethod;
|
|
18
|
-
};
|
|
19
|
-
export declare const WrapperTypeAhead: React.FC<WrapperProps>;
|
|
20
|
-
export {};
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
2
|
-
import type { TypeAheadHandler, TypeAheadItem, OnItemMatch, OnTextInsert, OnInsertSelectedItem } from '../../types';
|
|
3
|
-
export declare const useItemInsert: (triggerHandler: TypeAheadHandler, editorView: EditorView, items: Array<TypeAheadItem>) => [OnInsertSelectedItem, OnTextInsert, OnItemMatch];
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
2
|
-
import type { TypeAheadHandler, TypeAheadItem } from '../../types';
|
|
3
|
-
type Props = {
|
|
4
|
-
triggerHandler: TypeAheadHandler;
|
|
5
|
-
items: Array<TypeAheadItem>;
|
|
6
|
-
query: string;
|
|
7
|
-
editorView: EditorView;
|
|
8
|
-
closePopup: () => void;
|
|
9
|
-
};
|
|
10
|
-
export declare const useOnForceSelect: ({ triggerHandler, items, query, editorView, closePopup, }: Props) => void;
|
|
11
|
-
export {};
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import type { EditorState } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
3
|
-
import type { TypeAheadHandler, TypeAheadItem } from './types';
|
|
4
|
-
import type { IntlShape } from 'react-intl-next';
|
|
5
|
-
export declare const isTypeAheadHandler: (handler: any) => handler is TypeAheadHandler;
|
|
6
|
-
/** Is a typeahead plugin open? */
|
|
7
|
-
export declare const isTypeAheadOpen: (editorState: EditorState) => boolean;
|
|
8
|
-
export declare const getPluginState: (editorState: EditorState) => import("./types").TypeAheadPluginState | undefined;
|
|
9
|
-
export declare const getTypeAheadHandler: (editorState: EditorState) => TypeAheadHandler | undefined;
|
|
10
|
-
export declare const getTypeAheadQuery: (editorState: EditorState) => string | undefined;
|
|
11
|
-
export declare const isTypeAheadAllowed: (state: EditorState) => boolean;
|
|
12
|
-
export declare const findHandler: (id: string, state: EditorState) => TypeAheadHandler | null;
|
|
13
|
-
export declare const findHandlerByTrigger: ({ trigger, editorState, }: {
|
|
14
|
-
trigger: string;
|
|
15
|
-
editorState: EditorState;
|
|
16
|
-
}) => TypeAheadHandler | null;
|
|
17
|
-
type MoveSelectedIndexProps = {
|
|
18
|
-
editorView: EditorView;
|
|
19
|
-
direction: 'next' | 'previous';
|
|
20
|
-
};
|
|
21
|
-
export declare const moveSelectedIndex: ({ editorView, direction }: MoveSelectedIndexProps) => () => void;
|
|
22
|
-
type TypeAheadAssistiveLabels = {
|
|
23
|
-
popupAriaLabel: string;
|
|
24
|
-
listItemAriaLabel?: string;
|
|
25
|
-
};
|
|
26
|
-
export declare const getTypeAheadListAriaLabels: (trigger: string | undefined, intl: IntlShape, item?: TypeAheadItem) => TypeAheadAssistiveLabels;
|
|
27
|
-
export {};
|
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
import { EditorState } from '@atlaskit/editor-prosemirror/state';
|
|
4
|
-
import type { DirectEditorProps } from '@atlaskit/editor-prosemirror/view';
|
|
5
|
-
import { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
6
|
-
import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model';
|
|
7
|
-
import type { WrappedComponentProps } from 'react-intl-next';
|
|
8
|
-
import type { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
9
|
-
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
10
|
-
import type { ErrorReporter, SEVERITY } from '@atlaskit/editor-common/utils';
|
|
11
|
-
import { ExperienceStore } from '@atlaskit/editor-common/ufo';
|
|
12
|
-
import type { Transformer, AllEditorPresetPluginTypes } from '@atlaskit/editor-common/types';
|
|
13
|
-
import type { Dispatch } from '../event-dispatcher';
|
|
14
|
-
import { EventDispatcher } from '../event-dispatcher';
|
|
15
|
-
import { FULL_WIDTH_MODE } from '@atlaskit/editor-common/analytics';
|
|
16
|
-
import type { EditorAppearance, EditorConfig, EditorReactContext, EditorPlugin, EditorProps } from '../types';
|
|
17
|
-
import type { EditorNextProps } from '../types/editor-props';
|
|
18
|
-
import type { PortalProviderAPI } from '@atlaskit/editor-common/portal-provider';
|
|
19
|
-
import type { SetEditorAPI } from '../presets/context';
|
|
20
|
-
import { TransactionTracker } from '../utils/performance/track-transactions';
|
|
21
|
-
import type { FireAnalyticsCallback, AnalyticsEventPayload, DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
|
|
22
|
-
import type { EditorPresetBuilder } from '@atlaskit/editor-common/preset';
|
|
23
|
-
export interface EditorViewProps {
|
|
24
|
-
editorProps: EditorProps | EditorNextProps;
|
|
25
|
-
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
26
|
-
providerFactory: ProviderFactory;
|
|
27
|
-
portalProviderAPI: PortalProviderAPI;
|
|
28
|
-
disabled?: boolean;
|
|
29
|
-
experienceStore?: ExperienceStore;
|
|
30
|
-
setEditorApi?: SetEditorAPI;
|
|
31
|
-
render?: (props: {
|
|
32
|
-
editor: JSX.Element;
|
|
33
|
-
view?: EditorView;
|
|
34
|
-
config: EditorConfig;
|
|
35
|
-
eventDispatcher: EventDispatcher;
|
|
36
|
-
transformer?: Transformer<string>;
|
|
37
|
-
dispatchAnalyticsEvent: DispatchAnalyticsEvent;
|
|
38
|
-
editorRef: React.RefObject<HTMLDivElement>;
|
|
39
|
-
}) => JSX.Element;
|
|
40
|
-
onEditorCreated: (instance: {
|
|
41
|
-
view: EditorView;
|
|
42
|
-
config: EditorConfig;
|
|
43
|
-
eventDispatcher: EventDispatcher;
|
|
44
|
-
transformer?: Transformer<string>;
|
|
45
|
-
}) => void;
|
|
46
|
-
onEditorDestroyed: (instance: {
|
|
47
|
-
view: EditorView;
|
|
48
|
-
config: EditorConfig;
|
|
49
|
-
eventDispatcher: EventDispatcher;
|
|
50
|
-
transformer?: Transformer<string>;
|
|
51
|
-
}) => void;
|
|
52
|
-
preset: EditorPresetBuilder<string[], AllEditorPresetPluginTypes[]>;
|
|
53
|
-
}
|
|
54
|
-
interface CreateEditorStateOptions {
|
|
55
|
-
props: EditorViewProps;
|
|
56
|
-
context: EditorReactContext;
|
|
57
|
-
doc?: string | Object | PMNode;
|
|
58
|
-
resetting?: boolean;
|
|
59
|
-
selectionAtStart?: boolean;
|
|
60
|
-
}
|
|
61
|
-
export declare class ReactEditorView<T = {}> extends React.Component<EditorViewProps & WrappedComponentProps & T, {}, EditorReactContext> {
|
|
62
|
-
view?: EditorView;
|
|
63
|
-
eventDispatcher: EventDispatcher;
|
|
64
|
-
contentTransformer?: Transformer<string>;
|
|
65
|
-
config: EditorConfig;
|
|
66
|
-
editorState: EditorState;
|
|
67
|
-
errorReporter: ErrorReporter;
|
|
68
|
-
dispatch: Dispatch;
|
|
69
|
-
proseMirrorRenderedSeverity?: SEVERITY;
|
|
70
|
-
transactionTracker: TransactionTracker;
|
|
71
|
-
validTransactionCount: number;
|
|
72
|
-
experienceStore?: ExperienceStore;
|
|
73
|
-
editorRef: React.RefObject<HTMLDivElement>;
|
|
74
|
-
static contextTypes: {
|
|
75
|
-
getAtlaskitAnalyticsEventHandlers: PropTypes.Requireable<(...args: any[]) => any>;
|
|
76
|
-
};
|
|
77
|
-
private canDispatchTransactions;
|
|
78
|
-
private focusTimeoutId?;
|
|
79
|
-
private reliabilityInterval?;
|
|
80
|
-
private pluginPerformanceObserver;
|
|
81
|
-
private featureFlags;
|
|
82
|
-
private pluginInjectionAPI;
|
|
83
|
-
private onPluginObservation;
|
|
84
|
-
get transactionTracking(): import("@atlaskit/editor-common/types").TransactionTracking;
|
|
85
|
-
private getPluginNames;
|
|
86
|
-
private countNodes;
|
|
87
|
-
private isTransactionTrackingExplicitlyDisabled;
|
|
88
|
-
constructor(props: EditorViewProps & WrappedComponentProps & T, context: EditorReactContext);
|
|
89
|
-
getEditorState: () => EditorState | undefined;
|
|
90
|
-
getEditorView: () => EditorView | undefined;
|
|
91
|
-
UNSAFE_componentWillReceiveProps(nextProps: EditorViewProps): void;
|
|
92
|
-
formatFullWidthAppearance: (appearance: EditorAppearance | undefined) => FULL_WIDTH_MODE;
|
|
93
|
-
resetEditorState: ({ doc, shouldScrollToBottom, }: {
|
|
94
|
-
doc: string;
|
|
95
|
-
shouldScrollToBottom: boolean;
|
|
96
|
-
}) => void;
|
|
97
|
-
blur: () => void;
|
|
98
|
-
reconfigureState(props: EditorViewProps): void;
|
|
99
|
-
handleAnalyticsEvent: FireAnalyticsCallback;
|
|
100
|
-
componentDidMount(): void;
|
|
101
|
-
/**
|
|
102
|
-
* Clean up any non-PM resources when the editor is unmounted
|
|
103
|
-
*/
|
|
104
|
-
componentWillUnmount(): void;
|
|
105
|
-
private editorPlugins;
|
|
106
|
-
getPlugins(preset: EditorPresetBuilder<string[], AllEditorPresetPluginTypes[]>): EditorPlugin[];
|
|
107
|
-
createEditorState: (options: CreateEditorStateOptions) => EditorState;
|
|
108
|
-
private onEditorViewStateUpdated;
|
|
109
|
-
private trackValidTransactions;
|
|
110
|
-
private dispatchTransaction;
|
|
111
|
-
getDirectEditorProps: (state?: EditorState) => DirectEditorProps;
|
|
112
|
-
private createEditorView;
|
|
113
|
-
handleEditorViewRef: (node: HTMLDivElement) => void;
|
|
114
|
-
dispatchAnalyticsEvent: (payload: AnalyticsEventPayload) => void;
|
|
115
|
-
private createEditor;
|
|
116
|
-
private editor;
|
|
117
|
-
render(): JSX.Element;
|
|
118
|
-
}
|
|
119
|
-
export {};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { EditorViewProps } from './ReactEditorViewInternal';
|
|
3
|
-
import { WrappedComponentProps } from 'react-intl-next';
|
|
4
|
-
export declare function ReactEditorViewEditor<T = {}>(props: EditorViewProps & WrappedComponentProps & T): JSX.Element;
|
|
5
|
-
declare const _default: React.FC<import("react-intl-next").WithIntlProps<EditorViewProps & WrappedComponentProps<"intl">>> & {
|
|
6
|
-
WrappedComponent: React.ComponentType<EditorViewProps & WrappedComponentProps<"intl">>;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
2
|
-
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
3
|
-
import type { Dispatch } from '../../event-dispatcher';
|
|
4
|
-
import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
|
|
5
|
-
export declare function createPlugin(eventDispatch: Dispatch, onSave?: (editorView: EditorView) => void): SafePlugin | undefined;
|
|
6
|
-
type Config = (editorView: EditorView) => void;
|
|
7
|
-
declare const saveOnEnterPlugin: NextEditorPlugin<'saveOnEnter', {
|
|
8
|
-
pluginConfiguration: Config | undefined;
|
|
9
|
-
}>;
|
|
10
|
-
export default saveOnEnterPlugin;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
|
|
3
|
-
/**
|
|
4
|
-
* Plugin to scroll the user's selection into view whenever the user updates
|
|
5
|
-
* the document eg. inserting, deleting, formatting
|
|
6
|
-
*
|
|
7
|
-
* Behaviour is on by default, can be explicitly opted out of for a transaction by
|
|
8
|
-
* setting scrollIntoView=false meta
|
|
9
|
-
* We ignore collab transactions, appended transactions, transactions without steps,
|
|
10
|
-
* transactions with addToHistory=false meta and typeahead trigger transactions
|
|
11
|
-
*/
|
|
12
|
-
export declare const scrollIntoViewPluginKey: PluginKey<any>;
|
|
13
|
-
declare const scrollIntoViewPlugin: NextEditorPlugin<'scrollIntoView'>;
|
|
14
|
-
export default scrollIntoViewPlugin;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
3
|
-
import type { Command } from '@atlaskit/editor-common/types';
|
|
4
|
-
import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
5
|
-
import type { TOOLBAR_MENU_TYPE } from '@atlaskit/editor-common/types';
|
|
6
|
-
import type { StatusType, ClosingPayload } from './types';
|
|
7
|
-
export declare const DEFAULT_STATUS: StatusType;
|
|
8
|
-
export declare const createStatus: (showStatusPickerAtOffset?: number) => (insert: (node: Node | Object | string, opts: {
|
|
9
|
-
selectInlineNode: boolean;
|
|
10
|
-
}) => Transaction, state: EditorState) => Transaction;
|
|
11
|
-
export declare const updateStatus: (status?: StatusType) => Command;
|
|
12
|
-
export type UpdateStatus = (inputMethod: TOOLBAR_MENU_TYPE, status?: StatusType) => Command;
|
|
13
|
-
export declare const updateStatusWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (inputMethod: TOOLBAR_MENU_TYPE, status?: StatusType) => Command;
|
|
14
|
-
export declare const setStatusPickerAt: (showStatusPickerAt: number | null) => (state: EditorState, dispatch: (tr: Transaction) => void) => boolean;
|
|
15
|
-
export declare const removeStatus: (showStatusPickerAt: number) => Command;
|
|
16
|
-
export declare const commitStatusPicker: (closingPayload?: ClosingPayload) => (editorView: EditorView) => void;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import type { AnalyticsEventPayload, CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
2
|
-
export declare const FABRIC_CHANNEL = "fabric-elements";
|
|
3
|
-
export declare const createStatusAnalyticsAndFire: (createAnalyticsEvent?: CreateUIAnalyticsEvent) => (payload: AnalyticsEventPayload) => void;
|
|
4
|
-
export declare const analyticsState: (isNew: boolean | undefined) => "update" | "new";
|