@atlaskit/editor-extension-googledrive 0.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 +9 -0
- package/README.md +9 -0
- package/package.json +50 -0
- package/tsconfig.json +14 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# @atlaskit/editor-extension-googledrive
|
|
2
|
+
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`991e087c381`](https://bitbucket.org/atlassian/atlassian-frontend/commits/991e087c381) - [ux] This change creates a Google Drive Editor Extension. Similar to the Dropbox
|
|
8
|
+
extension, a user will be able to select a file from their Google Drive and it
|
|
9
|
+
will be returned as a smart link to the respective Confluence page.
|
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-extension-googledrive",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "An Atlassian editor extension to add a native Google Drive picker",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"registry": "https://registry.npmjs.org/"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"url": "https://bitbucket.org/atlassian/atlassian-frontend.git"
|
|
10
|
+
},
|
|
11
|
+
"author": "Atlassian",
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"atlaskit:src": "src/index.ts",
|
|
15
|
+
"atlassian": {
|
|
16
|
+
"team": "trello-ecosystem",
|
|
17
|
+
"inPublicMirror": true,
|
|
18
|
+
"releaseModel": "continuous"
|
|
19
|
+
},
|
|
20
|
+
"af:exports": {},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@atlaskit/adf-schema": "^28.1.1",
|
|
23
|
+
"@atlaskit/adf-utils": "^19.0.0",
|
|
24
|
+
"@atlaskit/editor-common": "^74.15.0",
|
|
25
|
+
"@atlaskit/icon": "^21.12.0",
|
|
26
|
+
"@babel/runtime": "^7.0.0"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"react": "^16.8.0",
|
|
30
|
+
"react-dom": "^16.8.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
34
|
+
"react": "^16.8.0",
|
|
35
|
+
"react-dom": "^16.8.0",
|
|
36
|
+
"typescript": "~4.9.5"
|
|
37
|
+
},
|
|
38
|
+
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1",
|
|
39
|
+
"techstack": {
|
|
40
|
+
"@repo/internal": {
|
|
41
|
+
"design-tokens": [
|
|
42
|
+
"color"
|
|
43
|
+
],
|
|
44
|
+
"deprecation": "no-deprecated-imports",
|
|
45
|
+
"styling": [
|
|
46
|
+
"emotion"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
package/tsconfig.json
ADDED