@atlaskit/editor-extension-googledrive 0.2.0 → 0.2.1
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 +6 -0
- package/package.json +2 -2
- package/build/tsconfig.json +0 -17
- package/docs/README.tsx +0 -28
- package/tsconfig.json +0 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/editor-extension-googledrive
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`f3a203dc445`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3a203dc445) - Adjusting .npmignore and the atlaskit documentation
|
|
8
|
+
|
|
3
9
|
## 0.2.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-extension-googledrive",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "An Atlassian editor extension to add a native Google Drive picker",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@atlaskit/adf-schema": "^28.1.1",
|
|
29
29
|
"@atlaskit/adf-utils": "^19.0.0",
|
|
30
|
-
"@atlaskit/editor-common": "^74.
|
|
30
|
+
"@atlaskit/editor-common": "^74.51.0",
|
|
31
31
|
"@atlaskit/icon": "^21.12.0",
|
|
32
32
|
"@babel/runtime": "^7.0.0"
|
|
33
33
|
},
|
package/build/tsconfig.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../tsconfig",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"declaration": true,
|
|
5
|
-
"target": "es5",
|
|
6
|
-
"paths": {}
|
|
7
|
-
},
|
|
8
|
-
"include": [
|
|
9
|
-
"../src/**/*.ts",
|
|
10
|
-
"../src/**/*.tsx"
|
|
11
|
-
],
|
|
12
|
-
"exclude": [
|
|
13
|
-
"../src/**/__tests__/*",
|
|
14
|
-
"../src/**/*.test.*",
|
|
15
|
-
"../src/**/test.*"
|
|
16
|
-
]
|
|
17
|
-
}
|
package/docs/README.tsx
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { md, code } from '@atlaskit/docs';
|
|
2
|
-
export default md`
|
|
3
|
-
This plugin is designed to make it easy to add a Google Drive experience to a pr
|
|
4
|
-
oduct. It uses
|
|
5
|
-
Google Drive's Picker API and then renders a smart link on the page after it is
|
|
6
|
-
used.
|
|
7
|
-
## Installation
|
|
8
|
-
There are two parts to installing the Google Drive extension: getting the plugin
|
|
9
|
-
to run, and setting
|
|
10
|
-
up your own Google Cloud Project.
|
|
11
|
-
### Installing the app
|
|
12
|
-
First, we assume you already have the editor set up - these are simply instructi
|
|
13
|
-
ons on adding the extension.
|
|
14
|
-
Install the extension package:
|
|
15
|
-
${code`yarn add @atlaskit/editor-extension-googledrive`}
|
|
16
|
-
Second, you need to add the extension to your editor.
|
|
17
|
-
${code`import googleDrivePluginManifest from "@atlaskit/editor-extension-googleD
|
|
18
|
-
rive"
|
|
19
|
-
pluginPlace: [googleDrivePluginManifest('KEY_TO_THE_KINGDOM', 'ID_TO_THE_KINGDOM
|
|
20
|
-
)]`}
|
|
21
|
-
where the key to the \`KEY_TO_THE_KINGDOM\` is the key and \`ID_TO_THE_KINGDOM\`
|
|
22
|
-
is the clientID of your Google Cloud Project.
|
|
23
|
-
### Setting up your Google Cloud Project
|
|
24
|
-
The plugin is designed to work with a Google Cloud Project. This means that the
|
|
25
|
-
maintainer needs access to a GCP.
|
|
26
|
-
Please reach out to a specific team to retrieve the API Key and OAuth 2.0 Client
|
|
27
|
-
ID for their GCP.
|
|
28
|
-
`;
|
package/tsconfig.json
DELETED