@atlaskit/editor-plugin-media 1.20.9 → 1.20.11
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 +22 -0
- package/dist/cjs/plugin.js +2 -1
- package/dist/cjs/pm-plugins/alt-text/ui/AltTextEdit.js +2 -0
- package/dist/cjs/pm-plugins/keymap.js +2 -4
- package/dist/cjs/ui/CaptionPlaceholder/index.js +1 -1
- package/dist/cjs/ui/ImageBorder/index.js +10 -3
- package/dist/cjs/ui/ImageBorder/styles.js +3 -0
- package/dist/cjs/ui/Media/DropPlaceholder.js +6 -0
- package/dist/cjs/ui/PixelEntry/index.js +66 -58
- package/dist/cjs/ui/PixelEntry/styles.js +13 -1
- package/dist/cjs/ui/ResizableMediaSingle/ResizableMediaMigrationNotification.js +3 -1
- package/dist/cjs/ui/ResizableMediaSingle/ResizableMediaSingleNext.js +2 -0
- package/dist/cjs/ui/ResizableMediaSingle/index.js +3 -1
- package/dist/cjs/ui/ResizableMediaSingle/styles.js +3 -0
- package/dist/es2019/plugin.js +27 -24
- package/dist/es2019/pm-plugins/alt-text/ui/AltTextEdit.js +2 -0
- package/dist/es2019/pm-plugins/keymap.js +2 -4
- package/dist/es2019/ui/CaptionPlaceholder/index.js +1 -1
- package/dist/es2019/ui/ImageBorder/index.js +10 -3
- package/dist/es2019/ui/ImageBorder/styles.js +3 -0
- package/dist/es2019/ui/Media/DropPlaceholder.js +6 -0
- package/dist/es2019/ui/PixelEntry/index.js +64 -56
- package/dist/es2019/ui/PixelEntry/styles.js +13 -1
- package/dist/es2019/ui/ResizableMediaSingle/ResizableMediaMigrationNotification.js +3 -1
- package/dist/es2019/ui/ResizableMediaSingle/ResizableMediaSingleNext.js +2 -0
- package/dist/es2019/ui/ResizableMediaSingle/index.js +3 -1
- package/dist/es2019/ui/ResizableMediaSingle/styles.js +3 -0
- package/dist/esm/plugin.js +2 -1
- package/dist/esm/pm-plugins/alt-text/ui/AltTextEdit.js +2 -0
- package/dist/esm/pm-plugins/keymap.js +2 -4
- package/dist/esm/ui/CaptionPlaceholder/index.js +1 -1
- package/dist/esm/ui/ImageBorder/index.js +10 -3
- package/dist/esm/ui/ImageBorder/styles.js +3 -0
- package/dist/esm/ui/Media/DropPlaceholder.js +6 -0
- package/dist/esm/ui/PixelEntry/index.js +66 -58
- package/dist/esm/ui/PixelEntry/styles.js +13 -1
- package/dist/esm/ui/ResizableMediaSingle/ResizableMediaMigrationNotification.js +3 -1
- package/dist/esm/ui/ResizableMediaSingle/ResizableMediaSingleNext.js +2 -0
- package/dist/esm/ui/ResizableMediaSingle/index.js +3 -1
- package/dist/esm/ui/ResizableMediaSingle/styles.js +3 -0
- package/package.json +138 -161
package/package.json
CHANGED
|
@@ -1,162 +1,139 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
},
|
|
141
|
-
"platform.editor.a11y_video_controls_keyboard_support_yhcxh": {
|
|
142
|
-
"type": "boolean"
|
|
143
|
-
},
|
|
144
|
-
"platform.editor.media.fix-copy-paste-excel_62g4s": {
|
|
145
|
-
"type": "boolean"
|
|
146
|
-
},
|
|
147
|
-
"platform.editor.media.preview-in-full-page": {
|
|
148
|
-
"type": "boolean"
|
|
149
|
-
},
|
|
150
|
-
"platform.editor.live-view.comments-in-media-toolbar-button": {
|
|
151
|
-
"type": "boolean"
|
|
152
|
-
},
|
|
153
|
-
"platform.editor.live-view.disable-editing-in-view-mode_fi1rx": {
|
|
154
|
-
"type": "boolean"
|
|
155
|
-
}
|
|
156
|
-
},
|
|
157
|
-
"stricter": {
|
|
158
|
-
"no-unused-dependencies": {
|
|
159
|
-
"checkDevDependencies": true
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
}
|
|
2
|
+
"name": "@atlaskit/editor-plugin-media",
|
|
3
|
+
"version": "1.20.11",
|
|
4
|
+
"description": "Media plugin for @atlaskit/editor-core",
|
|
5
|
+
"author": "Atlassian Pty Ltd",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"registry": "https://registry.npmjs.org/"
|
|
9
|
+
},
|
|
10
|
+
"atlassian": {
|
|
11
|
+
"team": "Editor: Media Experience Porygon",
|
|
12
|
+
"releaseModel": "continuous",
|
|
13
|
+
"singleton": true,
|
|
14
|
+
"runReact18": false
|
|
15
|
+
},
|
|
16
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
|
|
17
|
+
"main": "dist/cjs/index.js",
|
|
18
|
+
"module": "dist/esm/index.js",
|
|
19
|
+
"module:es2019": "dist/es2019/index.js",
|
|
20
|
+
"types": "dist/types/index.d.ts",
|
|
21
|
+
"typesVersions": {
|
|
22
|
+
">=4.5 <4.9": {
|
|
23
|
+
"*": ["dist/types-ts4.5/*", "dist/types-ts4.5/index.d.ts"]
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"atlaskit:src": "src/index.ts",
|
|
28
|
+
"af:exports": {
|
|
29
|
+
".": "./src/index.ts",
|
|
30
|
+
"./types": "./src/types.ts"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@atlaskit/adf-schema": "^36.10.7",
|
|
34
|
+
"@atlaskit/analytics-namespaced-context": "^6.10.0",
|
|
35
|
+
"@atlaskit/analytics-next": "^9.3.0",
|
|
36
|
+
"@atlaskit/button": "^17.17.0",
|
|
37
|
+
"@atlaskit/editor-common": "^82.6.0",
|
|
38
|
+
"@atlaskit/editor-palette": "1.6.0",
|
|
39
|
+
"@atlaskit/editor-plugin-analytics": "^1.2.0",
|
|
40
|
+
"@atlaskit/editor-plugin-annotation": "1.10.2",
|
|
41
|
+
"@atlaskit/editor-plugin-decorations": "^1.1.0",
|
|
42
|
+
"@atlaskit/editor-plugin-editor-disabled": "^1.1.0",
|
|
43
|
+
"@atlaskit/editor-plugin-editor-viewmode": "^1.2.0",
|
|
44
|
+
"@atlaskit/editor-plugin-floating-toolbar": "^1.6.0",
|
|
45
|
+
"@atlaskit/editor-plugin-focus": "^1.2.0",
|
|
46
|
+
"@atlaskit/editor-plugin-grid": "^1.1.0",
|
|
47
|
+
"@atlaskit/editor-plugin-guideline": "^1.1.0",
|
|
48
|
+
"@atlaskit/editor-plugin-selection": "^1.2.0",
|
|
49
|
+
"@atlaskit/editor-plugin-width": "^1.1.0",
|
|
50
|
+
"@atlaskit/editor-prosemirror": "4.0.1",
|
|
51
|
+
"@atlaskit/editor-shared-styles": "^2.12.0",
|
|
52
|
+
"@atlaskit/editor-tables": "^2.7.0",
|
|
53
|
+
"@atlaskit/form": "^10.3.0",
|
|
54
|
+
"@atlaskit/icon": "^22.3.0",
|
|
55
|
+
"@atlaskit/media-card": "^77.12.0",
|
|
56
|
+
"@atlaskit/media-client": "^27.2.0",
|
|
57
|
+
"@atlaskit/media-client-react": "^2.0.0",
|
|
58
|
+
"@atlaskit/media-common": "^11.2.0",
|
|
59
|
+
"@atlaskit/media-filmstrip": "^47.0.0",
|
|
60
|
+
"@atlaskit/media-picker": "^66.4.0",
|
|
61
|
+
"@atlaskit/media-ui": "^25.10.0",
|
|
62
|
+
"@atlaskit/media-viewer": "^48.6.0",
|
|
63
|
+
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
64
|
+
"@atlaskit/primitives": "^7.2.0",
|
|
65
|
+
"@atlaskit/textfield": "^6.3.0",
|
|
66
|
+
"@atlaskit/theme": "^12.9.0",
|
|
67
|
+
"@atlaskit/tokens": "^1.50.0",
|
|
68
|
+
"@atlaskit/tooltip": "^18.4.0",
|
|
69
|
+
"@babel/runtime": "^7.0.0",
|
|
70
|
+
"@emotion/react": "^11.7.1",
|
|
71
|
+
"bind-event-listener": "^3.0.0",
|
|
72
|
+
"classnames": "^2.2.5",
|
|
73
|
+
"lodash": "^4.17.21",
|
|
74
|
+
"memoize-one": "^6.0.0",
|
|
75
|
+
"uuid": "^3.1.0"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"react-dom": "^16.8.0",
|
|
79
|
+
"typescript": "~5.4.2"
|
|
80
|
+
},
|
|
81
|
+
"peerDependencies": {
|
|
82
|
+
"@atlaskit/media-core": "^34.2.0",
|
|
83
|
+
"react": "^16.8.0",
|
|
84
|
+
"react-dom": "^16.8.0",
|
|
85
|
+
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
86
|
+
},
|
|
87
|
+
"techstack": {
|
|
88
|
+
"@atlassian/frontend": {
|
|
89
|
+
"import-structure": ["atlassian-conventions"],
|
|
90
|
+
"circular-dependencies": ["file-and-folder-level"]
|
|
91
|
+
},
|
|
92
|
+
"@repo/internal": {
|
|
93
|
+
"dom-events": "use-bind-event-listener",
|
|
94
|
+
"analytics": ["analytics-next"],
|
|
95
|
+
"design-tokens": ["color"],
|
|
96
|
+
"theming": ["react-context"],
|
|
97
|
+
"ui-components": ["lite-mode"],
|
|
98
|
+
"deprecation": "no-deprecated-imports",
|
|
99
|
+
"styling": ["emotion", "emotion"],
|
|
100
|
+
"imports": ["import-no-extraneous-disable-for-examples-and-docs"]
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"platform-feature-flags": {
|
|
104
|
+
"platform.editor.media.extended-resize-experience": {
|
|
105
|
+
"type": "boolean"
|
|
106
|
+
},
|
|
107
|
+
"platform.editor.media.inline-image.base-support": {
|
|
108
|
+
"type": "boolean",
|
|
109
|
+
"referenceOnly": "true"
|
|
110
|
+
},
|
|
111
|
+
"platform.media-experience.media-viewer-v2_hgsii": {
|
|
112
|
+
"type": "boolean",
|
|
113
|
+
"referenceOnly": "true"
|
|
114
|
+
},
|
|
115
|
+
"platform.editor.allow-extended-panel": {
|
|
116
|
+
"type": "boolean"
|
|
117
|
+
},
|
|
118
|
+
"platform.editor.a11y_video_controls_keyboard_support_yhcxh": {
|
|
119
|
+
"type": "boolean"
|
|
120
|
+
},
|
|
121
|
+
"platform.editor.media.fix-copy-paste-excel_62g4s": {
|
|
122
|
+
"type": "boolean"
|
|
123
|
+
},
|
|
124
|
+
"platform.editor.media.preview-in-full-page": {
|
|
125
|
+
"type": "boolean"
|
|
126
|
+
},
|
|
127
|
+
"platform.editor.live-view.comments-in-media-toolbar-button": {
|
|
128
|
+
"type": "boolean"
|
|
129
|
+
},
|
|
130
|
+
"platform.editor.live-view.disable-editing-in-view-mode_fi1rx": {
|
|
131
|
+
"type": "boolean"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"stricter": {
|
|
135
|
+
"no-unused-dependencies": {
|
|
136
|
+
"checkDevDependencies": true
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|