@atlaskit/editor-plugin-loom 10.0.6 → 10.0.8
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 +16 -0
- package/README.md +36 -3
- package/dist/types/loomPluginType.d.ts +2 -2
- package/dist/types/types/index.d.ts +1 -1
- package/dist/types/ui/PrimaryToolbarButton.d.ts +1 -1
- package/dist/types/ui/ToolbarButtonComponent.d.ts +1 -1
- package/dist/types-ts4.5/loomPluginType.d.ts +2 -2
- package/dist/types-ts4.5/types/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/PrimaryToolbarButton.d.ts +1 -1
- package/dist/types-ts4.5/ui/ToolbarButtonComponent.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-loom
|
|
2
2
|
|
|
3
|
+
## 10.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`7b7c52dff5d7d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7b7c52dff5d7d) -
|
|
8
|
+
Fix eslint violations for type import syntax
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 10.0.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`14803a836f641`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/14803a836f641) -
|
|
16
|
+
Update README.md and 0-intro.tsx
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 10.0.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,9 +1,42 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Editor Plugin Loom
|
|
2
2
|
|
|
3
3
|
Loom plugin for @atlaskit/editor-core
|
|
4
4
|
|
|
5
|
+
**Note:** This component is designed for internal Atlassian development.
|
|
6
|
+
External contributors will be able to use this component but will not be able to submit issues.
|
|
7
|
+
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
The Loom plugin integrates Loom video recording capabilities into the Atlassian Editor. It provides toolbar buttons and quick insert options to record and embed Loom videos directly within editor content.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Video recording** - Record Loom videos directly from the editor toolbar
|
|
15
|
+
- **Quick insert integration** - Insert Loom recordings via slash command
|
|
16
|
+
- **Toolbar integration** - Dedicated toolbar button for easy access to Loom recording
|
|
17
|
+
- **Flexible initialization** - Support for lazy initialization with or without a provider
|
|
18
|
+
- **Video insertion** - Insert recorded videos at start, end, or current cursor position
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
---
|
|
22
|
+
- **Install** - *yarn add @atlaskit/editor-plugin-loom*
|
|
23
|
+
- **npm** - [@atlaskit/editor-plugin-loom](https://www.npmjs.com/package/@atlaskit/editor-plugin-loom)
|
|
24
|
+
- **Source** - [Bitbucket](https://bitbucket.org/atlassian/atlassian-frontend/src/master/packages/editor/editor-plugin-loom)
|
|
25
|
+
- **Bundle** - [unpkg.com](https://unpkg.com/@atlaskit/editor-plugin-loom/dist/)
|
|
26
|
+
|
|
5
27
|
## Usage
|
|
28
|
+
---
|
|
29
|
+
**Internal use only**
|
|
30
|
+
|
|
31
|
+
@atlaskit/editor-plugin-loom is intended for internal use by the @atlaskit/editor-core and as a plugin dependency of the Editor within your product.
|
|
32
|
+
|
|
33
|
+
Direct use of this component is not supported.
|
|
6
34
|
|
|
7
|
-
|
|
35
|
+
Please see [Atlaskit - Editor plugin loom](https://atlaskit.atlassian.com/packages/editor/editor-plugin-loom) for documentation and examples for this package.
|
|
8
36
|
|
|
9
|
-
|
|
37
|
+
## Support
|
|
38
|
+
---
|
|
39
|
+
For internal Atlassian, visit the slack channel [#help-editor](https://atlassian.slack.com/archives/CFG3PSQ9E) for support or visit [go/editor-help](https://go/editor-help) to submit a bug.
|
|
40
|
+
## License
|
|
41
|
+
---
|
|
42
|
+
Please see [Atlassian Frontend - License](https://hello.atlassian.net/wiki/spaces/AF/pages/2589099144/Documentation#License) for more licensing information.
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
2
|
-
import {
|
|
2
|
+
import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
3
3
|
import type { EditorCommand, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
|
|
4
4
|
import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
5
5
|
import type { ConnectivityPlugin } from '@atlaskit/editor-plugin-connectivity';
|
|
6
6
|
import type { EditorViewModePlugin } from '@atlaskit/editor-plugin-editor-viewmode';
|
|
7
7
|
import type { HyperlinkPlugin } from '@atlaskit/editor-plugin-hyperlink';
|
|
8
8
|
import type { PrimaryToolbarPlugin } from '@atlaskit/editor-plugin-primary-toolbar';
|
|
9
|
-
import {
|
|
9
|
+
import type { QuickInsertPlugin } from '@atlaskit/editor-plugin-quick-insert';
|
|
10
10
|
import type { ToolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
|
|
11
11
|
import type { WidthPlugin } from '@atlaskit/editor-plugin-width';
|
|
12
12
|
import type { LoomPluginState } from './pm-plugins/main';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { ExtractInjectionAPI, ToolbarUIComponentFactory } from '@atlaskit/editor-common/types';
|
|
2
2
|
import type { LoomPlugin } from '../loomPluginType';
|
|
3
|
-
import {
|
|
3
|
+
import type { LoomPluginOptions } from '../types';
|
|
4
4
|
export declare const loomPrimaryToolbarComponent: (config: LoomPluginOptions, api: ExtractInjectionAPI<LoomPlugin> | undefined) => ToolbarUIComponentFactory;
|
|
@@ -6,7 +6,7 @@ import React from 'react';
|
|
|
6
6
|
import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
|
|
7
7
|
import type { EditorAppearance, ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
8
8
|
import type { LoomPlugin } from '../loomPluginType';
|
|
9
|
-
import {
|
|
9
|
+
import type { ButtonComponentProps } from '../types';
|
|
10
10
|
interface Props extends Omit<ButtonComponentProps, 'onClickBeforeInit'> {
|
|
11
11
|
api: ExtractInjectionAPI<LoomPlugin> | undefined;
|
|
12
12
|
appearance: EditorAppearance;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
2
|
-
import {
|
|
2
|
+
import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
3
3
|
import type { EditorCommand, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
|
|
4
4
|
import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
5
5
|
import type { ConnectivityPlugin } from '@atlaskit/editor-plugin-connectivity';
|
|
6
6
|
import type { EditorViewModePlugin } from '@atlaskit/editor-plugin-editor-viewmode';
|
|
7
7
|
import type { HyperlinkPlugin } from '@atlaskit/editor-plugin-hyperlink';
|
|
8
8
|
import type { PrimaryToolbarPlugin } from '@atlaskit/editor-plugin-primary-toolbar';
|
|
9
|
-
import {
|
|
9
|
+
import type { QuickInsertPlugin } from '@atlaskit/editor-plugin-quick-insert';
|
|
10
10
|
import type { ToolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
|
|
11
11
|
import type { WidthPlugin } from '@atlaskit/editor-plugin-width';
|
|
12
12
|
import type { LoomPluginState } from './pm-plugins/main';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { ExtractInjectionAPI, ToolbarUIComponentFactory } from '@atlaskit/editor-common/types';
|
|
2
2
|
import type { LoomPlugin } from '../loomPluginType';
|
|
3
|
-
import {
|
|
3
|
+
import type { LoomPluginOptions } from '../types';
|
|
4
4
|
export declare const loomPrimaryToolbarComponent: (config: LoomPluginOptions, api: ExtractInjectionAPI<LoomPlugin> | undefined) => ToolbarUIComponentFactory;
|
|
@@ -6,7 +6,7 @@ import React from 'react';
|
|
|
6
6
|
import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
|
|
7
7
|
import type { EditorAppearance, ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
8
8
|
import type { LoomPlugin } from '../loomPluginType';
|
|
9
|
-
import {
|
|
9
|
+
import type { ButtonComponentProps } from '../types';
|
|
10
10
|
interface Props extends Omit<ButtonComponentProps, 'onClickBeforeInit'> {
|
|
11
11
|
api: ExtractInjectionAPI<LoomPlugin> | undefined;
|
|
12
12
|
appearance: EditorAppearance;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-loom",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.8",
|
|
4
4
|
"description": "Loom plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@loomhq/record-sdk": "^4.10.4"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@atlaskit/editor-common": "^112.
|
|
54
|
+
"@atlaskit/editor-common": "^112.19.0",
|
|
55
55
|
"react": "^18.2.0",
|
|
56
56
|
"react-dom": "^18.2.0",
|
|
57
57
|
"react-intl-next": "npm:react-intl@^5.18.1"
|