@atlaskit/editor-plugin-caption 12.0.1 → 12.1.0

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,27 @@
1
1
  # @atlaskit/editor-plugin-caption
2
2
 
3
+ ## 12.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`51c33ef5349b6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/51c33ef5349b6) -
8
+ Enable compatibility with React 19.2.0
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 12.0.2
15
+
16
+ ### Patch Changes
17
+
18
+ - [`9291603af8830`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9291603af8830) -
19
+ Upgrade types to be compatible with React 19.
20
+
21
+ This was done with the official React codemod: https://github.com/eps1lon/types-react-codemod/
22
+
23
+ - Updated dependencies
24
+
3
25
  ## 12.0.1
4
26
 
5
27
  ### Patch Changes
package/compass.yml ADDED
@@ -0,0 +1,41 @@
1
+ configVersion: 1
2
+ id: ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:component/c5751cc6-3513-4070-9deb-af31e86aed34/8675b08d-8df2-45fe-b0ae-38e71c4206e9
3
+ name: '@atlaskit/editor-plugin-caption'
4
+ ownerId: ari:cloud:identity::team/0250ee69-f755-47fd-a468-bf8a9d10a3c5 # Editor AI
5
+ labels:
6
+ - platform-code
7
+ - platform-afm
8
+ typeId: OTHER
9
+ fields:
10
+ tier: 4
11
+ lifecycle: Active
12
+ isMonorepoProject: true
13
+ links:
14
+ - name: Root Repository
15
+ type: REPOSITORY
16
+ url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master
17
+ - name: Slack Channel
18
+ type: CHAT_CHANNEL
19
+ url: https://atlassian.enterprise.slack.com/archives/C03ULQ29LJ0 # #team-cc-editor-ai
20
+ - name: Editor Plugin Caption
21
+ type: REPOSITORY
22
+ url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/editor/editor-plugin-caption
23
+ customFields:
24
+ - name: Department
25
+ type: text
26
+ value: Eng - Editor
27
+ - name: Trusted Reviewer Teams
28
+ type: text
29
+ value: ari:cloud:identity::team/cf6a670b-5252-4c68-a769-9207de366beb
30
+ - name: Technical Owner
31
+ type: user
32
+ value: ari:cloud:identity::user/612646c53fe26c00694fbe6a # Chris Kimber
33
+ - name: Required Reviewers Opt In
34
+ type: boolean
35
+ value: true
36
+ - name: Reviewer Selection Mechanism
37
+ type: text
38
+ value: random(2)
39
+ - name: Required Reviewer Approvals
40
+ type: number
41
+ value: 1
@@ -5,5 +5,5 @@ import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
5
5
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
6
6
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
7
7
  import type { CaptionPlugin } from '../captionPluginType';
8
- declare const _default: (portalProviderAPI: PortalProviderAPI, eventDispatcher: EventDispatcher, providerFactory: ProviderFactory, dispatch: Dispatch, pluginInjectionApi: ExtractInjectionAPI<CaptionPlugin> | undefined, intl?: IntlShape) => SafePlugin;
9
8
  export default _default;
9
+ declare function _default(portalProviderAPI: PortalProviderAPI, eventDispatcher: EventDispatcher, providerFactory: ProviderFactory, dispatch: Dispatch, pluginInjectionApi: ExtractInjectionAPI<CaptionPlugin> | undefined, intl?: IntlShape): SafePlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-caption",
3
- "version": "12.0.1",
3
+ "version": "12.1.0",
4
4
  "description": "Caption plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -19,16 +19,16 @@
19
19
  "sideEffects": false,
20
20
  "atlaskit:src": "src/index.ts",
21
21
  "dependencies": {
22
- "@atlaskit/adf-schema": "^56.0.0",
23
- "@atlaskit/browser-apis": "^1.0.0",
24
- "@atlaskit/editor-plugin-analytics": "^12.0.0",
25
- "@atlaskit/editor-plugin-editor-disabled": "^12.0.0",
22
+ "@atlaskit/adf-schema": "^56.2.0",
23
+ "@atlaskit/browser-apis": "^1.2.0",
24
+ "@atlaskit/editor-plugin-analytics": "^12.1.0",
25
+ "@atlaskit/editor-plugin-editor-disabled": "^12.1.0",
26
26
  "@atlaskit/editor-prosemirror": "^8.0.0",
27
27
  "@babel/runtime": "^7.0.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "@atlaskit/editor-common": "^116.4.0",
31
- "react": "^18.2.0",
30
+ "@atlaskit/editor-common": "^116.45.0",
31
+ "react": "^18.2.0 || ^19.2.0",
32
32
  "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
33
33
  },
34
34
  "techstack": {
@@ -65,6 +65,6 @@
65
65
  }
66
66
  },
67
67
  "devDependencies": {
68
- "react": "^18.2.0"
68
+ "react": "^19.2.0"
69
69
  }
70
70
  }