@atlaskit/editor-plugin-loom 10.0.7 → 10.0.9

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @atlaskit/editor-plugin-loom
2
2
 
3
+ ## 10.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 10.0.8
10
+
11
+ ### Patch Changes
12
+
13
+ - [`7b7c52dff5d7d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7b7c52dff5d7d) -
14
+ Fix eslint violations for type import syntax
15
+ - Updated dependencies
16
+
3
17
  ## 10.0.7
4
18
 
5
19
  ### Patch Changes
@@ -1,12 +1,12 @@
1
1
  import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
2
- import { type INPUT_METHOD } from '@atlaskit/editor-common/analytics';
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 { type QuickInsertPlugin } from '@atlaskit/editor-plugin-quick-insert';
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,5 +1,5 @@
1
1
  import type React from 'react';
2
- import { type ButtonProps as AKButtonProps } from '@atlaskit/button';
2
+ import type { ButtonProps as AKButtonProps } from '@atlaskit/button';
3
3
  export type VideoMeta = {
4
4
  duration?: number;
5
5
  sharedUrl: string;
@@ -1,4 +1,4 @@
1
1
  import type { ExtractInjectionAPI, ToolbarUIComponentFactory } from '@atlaskit/editor-common/types';
2
2
  import type { LoomPlugin } from '../loomPluginType';
3
- import { type LoomPluginOptions } from '../types';
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 { type ButtonComponentProps } from '../types';
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 { type INPUT_METHOD } from '@atlaskit/editor-common/analytics';
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 { type QuickInsertPlugin } from '@atlaskit/editor-plugin-quick-insert';
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,5 +1,5 @@
1
1
  import type React from 'react';
2
- import { type ButtonProps as AKButtonProps } from '@atlaskit/button';
2
+ import type { ButtonProps as AKButtonProps } from '@atlaskit/button';
3
3
  export type VideoMeta = {
4
4
  duration?: number;
5
5
  sharedUrl: string;
@@ -1,4 +1,4 @@
1
1
  import type { ExtractInjectionAPI, ToolbarUIComponentFactory } from '@atlaskit/editor-common/types';
2
2
  import type { LoomPlugin } from '../loomPluginType';
3
- import { type LoomPluginOptions } from '../types';
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 { type ButtonComponentProps } from '../types';
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.7",
3
+ "version": "10.0.9",
4
4
  "description": "Loom plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -45,13 +45,13 @@
45
45
  "@atlaskit/editor-toolbar": "^0.20.0",
46
46
  "@atlaskit/icon": "^34.0.0",
47
47
  "@atlaskit/platform-feature-flags": "^1.1.0",
48
- "@atlaskit/tokens": "^12.0.0",
48
+ "@atlaskit/tokens": "^13.0.0",
49
49
  "@babel/runtime": "^7.0.0",
50
50
  "@emotion/react": "^11.7.1",
51
51
  "@loomhq/record-sdk": "^4.10.4"
52
52
  },
53
53
  "peerDependencies": {
54
- "@atlaskit/editor-common": "^112.18.0",
54
+ "@atlaskit/editor-common": "^112.20.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"