@atlaskit/editor-extension-googledrive 9.0.2 → 10.0.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,31 @@
1
1
  # @atlaskit/editor-extension-googledrive
2
2
 
3
+ ## 10.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`f2dc9097319f0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2dc9097319f0) - ###
8
+ Dropped support for _legacy_ Typescript 4 types. **Typescript 5 is now the new minimum**.
9
+
10
+ Removes the `typesVersions` property and `dist/types-ts4.5` directory from the dist.
11
+
12
+ Types are now exclusively via the `"types": "dist/types/index.d.ts"` property.
13
+
14
+ ```diff
15
+ - "typesVersions": {
16
+ - ">=4.5 <4.9": {
17
+ - "*": [
18
+ - "dist/types-ts4.5/*",
19
+ - "dist/types-ts4.5/index.d.ts"
20
+ - ]
21
+ - }
22
+ - },
23
+ ```
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies
28
+
3
29
  ## 9.0.2
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-extension-googledrive",
3
- "version": "9.0.2",
3
+ "version": "10.0.0",
4
4
  "description": "An Atlassian editor extension to add a native Google Drive picker",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -29,15 +29,15 @@
29
29
  "team": "trello-ecosystem"
30
30
  },
31
31
  "dependencies": {
32
- "@atlaskit/adf-schema": "^54.0.0",
33
- "@atlaskit/adf-utils": "^19.33.0",
34
- "@atlaskit/tokens": "^13.3.0",
32
+ "@atlaskit/adf-schema": "^55.0.0",
33
+ "@atlaskit/adf-utils": "^20.0.0",
34
+ "@atlaskit/tokens": "^14.0.0",
35
35
  "@babel/runtime": "^7.0.0",
36
36
  "@compiled/react": "^0.20.0",
37
37
  "@types/gapi": "0.0.44"
38
38
  },
39
39
  "peerDependencies": {
40
- "@atlaskit/editor-common": "^115.13.0",
40
+ "@atlaskit/editor-common": "^116.0.0",
41
41
  "react": "^18.2.0",
42
42
  "react-dom": "^18.2.0"
43
43
  },
@@ -1,4 +0,0 @@
1
- export default function ({ clientID, scopes, }: {
2
- clientID: string;
3
- scopes: string[];
4
- }): Promise<void>;
@@ -1,2 +0,0 @@
1
- declare const _default: () => JSX.Element;
2
- export default _default;
@@ -1 +0,0 @@
1
- export { default } from './manifest';
@@ -1,17 +0,0 @@
1
- import type { ExtensionManifest } from '@atlaskit/editor-common/extensions';
2
- declare global {
3
- interface Window {
4
- appKey?: string;
5
- clientID?: string;
6
- google: any;
7
- GooglePicker: {
8
- accessToken?: string;
9
- token_client: any;
10
- };
11
- }
12
- }
13
- declare const manifestFunction: ({ appKey, clientID, }: {
14
- appKey: string;
15
- clientID: string;
16
- }) => ExtensionManifest;
17
- export default manifestFunction;