@atlaskit/editor-plugin-table 7.3.11 → 7.4.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 +12 -0
- package/dist/cjs/ui/FloatingContextualMenu/ContextualMenu.js +2 -2
- package/dist/es2019/ui/FloatingContextualMenu/ContextualMenu.js +2 -2
- package/dist/esm/ui/FloatingContextualMenu/ContextualMenu.js +2 -2
- package/package.json +3 -3
- package/src/ui/FloatingContextualMenu/ContextualMenu.tsx +1 -1
- package/tsconfig.json +1 -894
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 7.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 7.4.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#75678](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/75678) [`fdcbedeb3cab`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fdcbedeb3cab) - [ux] Fix cell solour menu button to display selected state colour
|
|
14
|
+
|
|
3
15
|
## 7.3.11
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -81,7 +81,7 @@ var ContextualMenu = exports.ContextualMenu = /*#__PURE__*/function (_Component)
|
|
|
81
81
|
targetCellPosition = _getPluginState.targetCellPosition,
|
|
82
82
|
isDragAndDropEnabled = _getPluginState.isDragAndDropEnabled;
|
|
83
83
|
if (allowBackgroundColor) {
|
|
84
|
-
var _node$attrs;
|
|
84
|
+
var _node$attrs, _node$attrs2;
|
|
85
85
|
var node = isOpen && targetCellPosition ? state.doc.nodeAt(targetCellPosition) : null;
|
|
86
86
|
var background = (0, _editorPalette.hexToEditorBackgroundPaletteColor)((node === null || node === void 0 || (_node$attrs = node.attrs) === null || _node$attrs === void 0 ? void 0 : _node$attrs.background) || '#ffffff');
|
|
87
87
|
return {
|
|
@@ -106,7 +106,7 @@ var ContextualMenu = exports.ContextualMenu = /*#__PURE__*/function (_Component)
|
|
|
106
106
|
}, (0, _react2.jsx)(_uiColor.ColorPalette, {
|
|
107
107
|
cols: 7,
|
|
108
108
|
onClick: _this.setColor,
|
|
109
|
-
selectedColor: background,
|
|
109
|
+
selectedColor: (node === null || node === void 0 || (_node$attrs2 = node.attrs) === null || _node$attrs2 === void 0 ? void 0 : _node$attrs2.background) || '#ffffff',
|
|
110
110
|
paletteOptions: {
|
|
111
111
|
palette: _uiColor.cellBackgroundColorPalette,
|
|
112
112
|
paletteColorTooltipMessages: _uiColor.backgroundPaletteTooltipMessages,
|
|
@@ -66,7 +66,7 @@ export class ContextualMenu extends Component {
|
|
|
66
66
|
isDragAndDropEnabled
|
|
67
67
|
} = getPluginState(editorView.state);
|
|
68
68
|
if (allowBackgroundColor) {
|
|
69
|
-
var _node$attrs;
|
|
69
|
+
var _node$attrs, _node$attrs2;
|
|
70
70
|
const node = isOpen && targetCellPosition ? state.doc.nodeAt(targetCellPosition) : null;
|
|
71
71
|
const background = hexToEditorBackgroundPaletteColor((node === null || node === void 0 ? void 0 : (_node$attrs = node.attrs) === null || _node$attrs === void 0 ? void 0 : _node$attrs.background) || '#ffffff');
|
|
72
72
|
return {
|
|
@@ -91,7 +91,7 @@ export class ContextualMenu extends Component {
|
|
|
91
91
|
}, jsx(ColorPalette, {
|
|
92
92
|
cols: 7,
|
|
93
93
|
onClick: this.setColor,
|
|
94
|
-
selectedColor: background,
|
|
94
|
+
selectedColor: (node === null || node === void 0 ? void 0 : (_node$attrs2 = node.attrs) === null || _node$attrs2 === void 0 ? void 0 : _node$attrs2.background) || '#ffffff',
|
|
95
95
|
paletteOptions: {
|
|
96
96
|
palette: cellBackgroundColorPalette,
|
|
97
97
|
paletteColorTooltipMessages: backgroundPaletteTooltipMessages,
|
|
@@ -76,7 +76,7 @@ export var ContextualMenu = /*#__PURE__*/function (_Component) {
|
|
|
76
76
|
targetCellPosition = _getPluginState.targetCellPosition,
|
|
77
77
|
isDragAndDropEnabled = _getPluginState.isDragAndDropEnabled;
|
|
78
78
|
if (allowBackgroundColor) {
|
|
79
|
-
var _node$attrs;
|
|
79
|
+
var _node$attrs, _node$attrs2;
|
|
80
80
|
var node = isOpen && targetCellPosition ? state.doc.nodeAt(targetCellPosition) : null;
|
|
81
81
|
var background = hexToEditorBackgroundPaletteColor((node === null || node === void 0 || (_node$attrs = node.attrs) === null || _node$attrs === void 0 ? void 0 : _node$attrs.background) || '#ffffff');
|
|
82
82
|
return {
|
|
@@ -101,7 +101,7 @@ export var ContextualMenu = /*#__PURE__*/function (_Component) {
|
|
|
101
101
|
}, jsx(ColorPalette, {
|
|
102
102
|
cols: 7,
|
|
103
103
|
onClick: _this.setColor,
|
|
104
|
-
selectedColor: background,
|
|
104
|
+
selectedColor: (node === null || node === void 0 || (_node$attrs2 = node.attrs) === null || _node$attrs2 === void 0 ? void 0 : _node$attrs2.background) || '#ffffff',
|
|
105
105
|
paletteOptions: {
|
|
106
106
|
palette: cellBackgroundColorPalette,
|
|
107
107
|
paletteColorTooltipMessages: backgroundPaletteTooltipMessages,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.4.1",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@atlaskit/adf-schema": "^35.5.1",
|
|
32
32
|
"@atlaskit/custom-steps": "^0.0.13",
|
|
33
|
-
"@atlaskit/editor-common": "^78.
|
|
33
|
+
"@atlaskit/editor-common": "^78.7.0",
|
|
34
34
|
"@atlaskit/editor-palette": "1.5.2",
|
|
35
35
|
"@atlaskit/editor-plugin-analytics": "^1.0.0",
|
|
36
36
|
"@atlaskit/editor-plugin-content-insertion": "^1.0.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@atlaskit/pragmatic-drag-and-drop": "^1.0.0",
|
|
47
47
|
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^1.0.0",
|
|
48
48
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.0",
|
|
49
|
-
"@atlaskit/primitives": "^
|
|
49
|
+
"@atlaskit/primitives": "^3.0.0",
|
|
50
50
|
"@atlaskit/theme": "^12.6.0",
|
|
51
51
|
"@atlaskit/toggle": "^13.0.0",
|
|
52
52
|
"@atlaskit/tokens": "^1.38.0",
|
|
@@ -245,7 +245,7 @@ export class ContextualMenu extends Component<
|
|
|
245
245
|
<ColorPalette
|
|
246
246
|
cols={7}
|
|
247
247
|
onClick={this.setColor}
|
|
248
|
-
selectedColor={background}
|
|
248
|
+
selectedColor={node?.attrs?.background || '#ffffff'}
|
|
249
249
|
paletteOptions={{
|
|
250
250
|
palette: cellBackgroundColorPalette,
|
|
251
251
|
paletteColorTooltipMessages:
|
package/tsconfig.json
CHANGED
|
@@ -9,899 +9,6 @@
|
|
|
9
9
|
"./example-helpers/**/*.tsx"
|
|
10
10
|
],
|
|
11
11
|
"compilerOptions": {
|
|
12
|
-
"baseUrl": "./"
|
|
13
|
-
"paths": {
|
|
14
|
-
"@atlaskit/custom-steps": [
|
|
15
|
-
"../custom-steps/src/index.ts"
|
|
16
|
-
],
|
|
17
|
-
"@atlaskit/editor-common/event-dispatcher": [
|
|
18
|
-
"../editor-common/src/event-dispatcher/index.ts"
|
|
19
|
-
],
|
|
20
|
-
"@atlaskit/editor-common/extensions": [
|
|
21
|
-
"../editor-common/src/extensions.ts"
|
|
22
|
-
],
|
|
23
|
-
"@atlaskit/editor-common/extensibility": [
|
|
24
|
-
"../editor-common/src/extensibility/index.ts"
|
|
25
|
-
],
|
|
26
|
-
"@atlaskit/editor-common/normalize-feature-flags": [
|
|
27
|
-
"../editor-common/src/normalize-feature-flags.ts"
|
|
28
|
-
],
|
|
29
|
-
"@atlaskit/editor-common/messages": [
|
|
30
|
-
"../editor-common/src/messages/index.ts"
|
|
31
|
-
],
|
|
32
|
-
"@atlaskit/editor-common/provider-factory": [
|
|
33
|
-
"../editor-common/src/provider-factory.ts"
|
|
34
|
-
],
|
|
35
|
-
"@atlaskit/editor-common/styles": [
|
|
36
|
-
"../editor-common/src/styles/index.ts"
|
|
37
|
-
],
|
|
38
|
-
"@atlaskit/editor-common/validator": [
|
|
39
|
-
"../editor-common/src/validator.ts"
|
|
40
|
-
],
|
|
41
|
-
"@atlaskit/editor-common/in-product": [
|
|
42
|
-
"../editor-common/src/in-product.ts"
|
|
43
|
-
],
|
|
44
|
-
"@atlaskit/editor-common/type-ahead": [
|
|
45
|
-
"../editor-common/src/type-ahead/index.ts"
|
|
46
|
-
],
|
|
47
|
-
"@atlaskit/editor-common/ufo": [
|
|
48
|
-
"../editor-common/src/ufo/index.ts"
|
|
49
|
-
],
|
|
50
|
-
"@atlaskit/editor-common/insert": [
|
|
51
|
-
"../editor-common/src/insert/index.ts"
|
|
52
|
-
],
|
|
53
|
-
"@atlaskit/editor-common/types": [
|
|
54
|
-
"../editor-common/src/types/index.ts"
|
|
55
|
-
],
|
|
56
|
-
"@atlaskit/editor-common/ui": [
|
|
57
|
-
"../editor-common/src/ui/index.tsx"
|
|
58
|
-
],
|
|
59
|
-
"@atlaskit/editor-common/utils": [
|
|
60
|
-
"../editor-common/src/utils/index.ts"
|
|
61
|
-
],
|
|
62
|
-
"@atlaskit/editor-common/card": [
|
|
63
|
-
"../editor-common/src/card/index.ts"
|
|
64
|
-
],
|
|
65
|
-
"@atlaskit/editor-common/collab": [
|
|
66
|
-
"../editor-common/src/collab/index.ts"
|
|
67
|
-
],
|
|
68
|
-
"@atlaskit/editor-common/emoji": [
|
|
69
|
-
"../editor-common/src/emoji.ts"
|
|
70
|
-
],
|
|
71
|
-
"@atlaskit/editor-common/mention": [
|
|
72
|
-
"../editor-common/src/mention.ts"
|
|
73
|
-
],
|
|
74
|
-
"@atlaskit/editor-common/provider-helpers": [
|
|
75
|
-
"../editor-common/src/provider-helpers/index.ts"
|
|
76
|
-
],
|
|
77
|
-
"@atlaskit/editor-common/icons": [
|
|
78
|
-
"../editor-common/src/icons/index.ts"
|
|
79
|
-
],
|
|
80
|
-
"@atlaskit/editor-common/safe-plugin": [
|
|
81
|
-
"../editor-common/src/safe-plugin/index.ts"
|
|
82
|
-
],
|
|
83
|
-
"@atlaskit/editor-common/panel": [
|
|
84
|
-
"../editor-common/src/panel.ts"
|
|
85
|
-
],
|
|
86
|
-
"@atlaskit/editor-common/analytics": [
|
|
87
|
-
"../editor-common/src/analytics/index.ts"
|
|
88
|
-
],
|
|
89
|
-
"@atlaskit/editor-common/error-boundary": [
|
|
90
|
-
"../editor-common/src/ui/ErrorBoundary/index.tsx"
|
|
91
|
-
],
|
|
92
|
-
"@atlaskit/editor-common/portal-provider": [
|
|
93
|
-
"../editor-common/src/ui/PortalProvider/index.tsx"
|
|
94
|
-
],
|
|
95
|
-
"@atlaskit/editor-common/react-node-view": [
|
|
96
|
-
"../editor-common/src/react-node-view/index.tsx"
|
|
97
|
-
],
|
|
98
|
-
"@atlaskit/editor-common/with-plugin-state": [
|
|
99
|
-
"../editor-common/src/with-plugin-state/index.tsx"
|
|
100
|
-
],
|
|
101
|
-
"@atlaskit/editor-common/node-width": [
|
|
102
|
-
"../editor-common/src/node-width/index.ts"
|
|
103
|
-
],
|
|
104
|
-
"@atlaskit/editor-common/keymaps": [
|
|
105
|
-
"../editor-common/src/keymaps/index.tsx"
|
|
106
|
-
],
|
|
107
|
-
"@atlaskit/editor-common/ui-menu": [
|
|
108
|
-
"../editor-common/src/ui-menu/index.tsx"
|
|
109
|
-
],
|
|
110
|
-
"@atlaskit/editor-common/ui-react": [
|
|
111
|
-
"../editor-common/src/ui-react/index.ts"
|
|
112
|
-
],
|
|
113
|
-
"@atlaskit/editor-common/ui-color": [
|
|
114
|
-
"../editor-common/src/ui-color/index.ts"
|
|
115
|
-
],
|
|
116
|
-
"@atlaskit/editor-common/transforms": [
|
|
117
|
-
"../editor-common/src/transforms/index.ts"
|
|
118
|
-
],
|
|
119
|
-
"@atlaskit/editor-common/core-utils": [
|
|
120
|
-
"../editor-common/src/core-utils/index.ts"
|
|
121
|
-
],
|
|
122
|
-
"@atlaskit/editor-common/selection": [
|
|
123
|
-
"../editor-common/src/selection/index.ts"
|
|
124
|
-
],
|
|
125
|
-
"@atlaskit/editor-common/preset": [
|
|
126
|
-
"../editor-common/src/preset/index.ts"
|
|
127
|
-
],
|
|
128
|
-
"@atlaskit/editor-common/hooks": [
|
|
129
|
-
"../editor-common/src/hooks/index.ts"
|
|
130
|
-
],
|
|
131
|
-
"@atlaskit/editor-common/media-inline": [
|
|
132
|
-
"../editor-common/src/media-inline/index.ts"
|
|
133
|
-
],
|
|
134
|
-
"@atlaskit/editor-common/media-single": [
|
|
135
|
-
"../editor-common/src/media-single/index.ts"
|
|
136
|
-
],
|
|
137
|
-
"@atlaskit/editor-common/monitoring": [
|
|
138
|
-
"../editor-common/src/monitoring/index.ts"
|
|
139
|
-
],
|
|
140
|
-
"@atlaskit/editor-common/paste": [
|
|
141
|
-
"../editor-common/src/paste/index.ts"
|
|
142
|
-
],
|
|
143
|
-
"@atlaskit/editor-common/resizer": [
|
|
144
|
-
"../editor-common/src/resizer/index.ts"
|
|
145
|
-
],
|
|
146
|
-
"@atlaskit/editor-common/editor-analytics": [
|
|
147
|
-
"../editor-common/src/editor-analytics/index.ts"
|
|
148
|
-
],
|
|
149
|
-
"@atlaskit/editor-common/selection-based-node-view": [
|
|
150
|
-
"../editor-common/src/selection-based-node-view/index.ts"
|
|
151
|
-
],
|
|
152
|
-
"@atlaskit/editor-common/guideline": [
|
|
153
|
-
"../editor-common/src/guideline/index.ts"
|
|
154
|
-
],
|
|
155
|
-
"@atlaskit/editor-common/quick-insert": [
|
|
156
|
-
"../editor-common/src/quick-insert/index.ts"
|
|
157
|
-
],
|
|
158
|
-
"@atlaskit/editor-common/link": [
|
|
159
|
-
"../editor-common/src/link/index.ts"
|
|
160
|
-
],
|
|
161
|
-
"@atlaskit/editor-common/mark": [
|
|
162
|
-
"../editor-common/src/mark/index.ts"
|
|
163
|
-
],
|
|
164
|
-
"@atlaskit/editor-common/commands": [
|
|
165
|
-
"../editor-common/src/commands/index.ts"
|
|
166
|
-
],
|
|
167
|
-
"@atlaskit/editor-common/clipboard": [
|
|
168
|
-
"../editor-common/src/clipboard/index.ts"
|
|
169
|
-
],
|
|
170
|
-
"@atlaskit/editor-common/lists": [
|
|
171
|
-
"../editor-common/src/lists/index.ts"
|
|
172
|
-
],
|
|
173
|
-
"@atlaskit/editor-common/element-browser": [
|
|
174
|
-
"../editor-common/src/element-browser/index.ts"
|
|
175
|
-
],
|
|
176
|
-
"@atlaskit/editor-common/floating-toolbar": [
|
|
177
|
-
"../editor-common/src/floating-toolbar/index.ts"
|
|
178
|
-
],
|
|
179
|
-
"@atlaskit/editor-common/copy-button": [
|
|
180
|
-
"../editor-common/src/copy-button/index.ts"
|
|
181
|
-
],
|
|
182
|
-
"@atlaskit/editor-common/legacy-rank-plugins": [
|
|
183
|
-
"../editor-common/src/rank.ts"
|
|
184
|
-
],
|
|
185
|
-
"@atlaskit/editor-common/indentation": [
|
|
186
|
-
"../editor-common/src/indentation/index.ts"
|
|
187
|
-
],
|
|
188
|
-
"@atlaskit/editor-common/annotation": [
|
|
189
|
-
"../editor-common/src/annotation/index.ts"
|
|
190
|
-
],
|
|
191
|
-
"@atlaskit/editor-common": [
|
|
192
|
-
"../editor-common/src"
|
|
193
|
-
],
|
|
194
|
-
"@atlaskit/editor-palette": [
|
|
195
|
-
"../editor-palette/src/index.ts"
|
|
196
|
-
],
|
|
197
|
-
"@atlaskit/editor-plugin-analytics": [
|
|
198
|
-
"../editor-plugin-analytics/src/index.ts"
|
|
199
|
-
],
|
|
200
|
-
"@atlaskit/editor-plugin-content-insertion": [
|
|
201
|
-
"../editor-plugin-content-insertion/src/index.ts"
|
|
202
|
-
],
|
|
203
|
-
"@atlaskit/editor-plugin-guideline": [
|
|
204
|
-
"../editor-plugin-guideline/src/index.ts"
|
|
205
|
-
],
|
|
206
|
-
"@atlaskit/editor-plugin-selection/types": [
|
|
207
|
-
"../editor-plugin-selection/src/types.ts"
|
|
208
|
-
],
|
|
209
|
-
"@atlaskit/editor-plugin-selection": [
|
|
210
|
-
"../editor-plugin-selection/src/index.ts"
|
|
211
|
-
],
|
|
212
|
-
"@atlaskit/editor-plugin-selection-toolbar": [
|
|
213
|
-
"../editor-plugin-selection-toolbar/src/index.ts"
|
|
214
|
-
],
|
|
215
|
-
"@atlaskit/editor-plugin-width": [
|
|
216
|
-
"../editor-plugin-width/src/index.ts"
|
|
217
|
-
],
|
|
218
|
-
"@atlaskit/editor-shared-styles/consts": [
|
|
219
|
-
"../editor-shared-styles/src/consts/index.ts"
|
|
220
|
-
],
|
|
221
|
-
"@atlaskit/editor-shared-styles/selection": [
|
|
222
|
-
"../editor-shared-styles/src/selection/index.ts"
|
|
223
|
-
],
|
|
224
|
-
"@atlaskit/editor-shared-styles/shortcut": [
|
|
225
|
-
"../editor-shared-styles/src/shortcut/index.ts"
|
|
226
|
-
],
|
|
227
|
-
"@atlaskit/editor-shared-styles/scrollbar": [
|
|
228
|
-
"../editor-shared-styles/src/scrollbar-styles.ts"
|
|
229
|
-
],
|
|
230
|
-
"@atlaskit/editor-shared-styles": [
|
|
231
|
-
"../editor-shared-styles/src/index.ts"
|
|
232
|
-
],
|
|
233
|
-
"@atlaskit/editor-tables/cell-bookmark": [
|
|
234
|
-
"../editor-tables/src/cell-bookmark.ts"
|
|
235
|
-
],
|
|
236
|
-
"@atlaskit/editor-tables/cell-selection": [
|
|
237
|
-
"../editor-tables/src/cell-selection.ts"
|
|
238
|
-
],
|
|
239
|
-
"@atlaskit/editor-tables/pm-plugins": [
|
|
240
|
-
"../editor-tables/src/pm-plugins.ts"
|
|
241
|
-
],
|
|
242
|
-
"@atlaskit/editor-tables/table-map": [
|
|
243
|
-
"../editor-tables/src/table-map.ts"
|
|
244
|
-
],
|
|
245
|
-
"@atlaskit/editor-tables/types": [
|
|
246
|
-
"../editor-tables/src/types.ts"
|
|
247
|
-
],
|
|
248
|
-
"@atlaskit/editor-tables/utils": [
|
|
249
|
-
"../editor-tables/src/utils.ts"
|
|
250
|
-
],
|
|
251
|
-
"@atlaskit/editor-tables": [
|
|
252
|
-
"../editor-tables/src/index.ts"
|
|
253
|
-
],
|
|
254
|
-
"@atlaskit/icon/base": [
|
|
255
|
-
"../../design-system/icon/src/entry-points/base.tsx"
|
|
256
|
-
],
|
|
257
|
-
"@atlaskit/icon/constants": [
|
|
258
|
-
"../../design-system/icon/src/entry-points/constants.tsx"
|
|
259
|
-
],
|
|
260
|
-
"@atlaskit/icon/metadata": [
|
|
261
|
-
"../../design-system/icon/src/entry-points/metadata.tsx"
|
|
262
|
-
],
|
|
263
|
-
"@atlaskit/icon/svg": [
|
|
264
|
-
"../../design-system/icon/src/entry-points/svg.tsx"
|
|
265
|
-
],
|
|
266
|
-
"@atlaskit/icon/types": [
|
|
267
|
-
"../../design-system/icon/src/entry-points/types.tsx"
|
|
268
|
-
],
|
|
269
|
-
"@atlaskit/icon/glyph": [
|
|
270
|
-
"../../design-system/icon/glyph"
|
|
271
|
-
],
|
|
272
|
-
"@atlaskit/icon": [
|
|
273
|
-
"../../design-system/icon/src/index.tsx"
|
|
274
|
-
],
|
|
275
|
-
"@atlaskit/icon-object/metadata": [
|
|
276
|
-
"../../design-system/icon-object/src/entry-points/metadata.tsx"
|
|
277
|
-
],
|
|
278
|
-
"@atlaskit/icon-object/glyph": [
|
|
279
|
-
"../../design-system/icon-object/glyph"
|
|
280
|
-
],
|
|
281
|
-
"@atlaskit/icon-object": [
|
|
282
|
-
"../../design-system/icon-object/src/index.tsx"
|
|
283
|
-
],
|
|
284
|
-
"@atlaskit/icon-file-type/metadata": [
|
|
285
|
-
"../../media/icon-file-type/src/entry-points/metadata.ts"
|
|
286
|
-
],
|
|
287
|
-
"@atlaskit/icon-file-type/glyph": [
|
|
288
|
-
"../../media/icon-file-type/glyph"
|
|
289
|
-
],
|
|
290
|
-
"@atlaskit/icon-file-type": [
|
|
291
|
-
"../../media/icon-file-type/src/index.ts"
|
|
292
|
-
],
|
|
293
|
-
"@atlaskit/platform-feature-flags": [
|
|
294
|
-
"../../platform/feature-flags/src/index.ts"
|
|
295
|
-
],
|
|
296
|
-
"@atlaskit/pragmatic-drag-and-drop-auto-scroll/element": [
|
|
297
|
-
"../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/element.ts"
|
|
298
|
-
],
|
|
299
|
-
"@atlaskit/pragmatic-drag-and-drop-auto-scroll/external": [
|
|
300
|
-
"../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/external.ts"
|
|
301
|
-
],
|
|
302
|
-
"@atlaskit/pragmatic-drag-and-drop-auto-scroll/internal-uncontrolled": [
|
|
303
|
-
"../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/internal-uncontrolled.ts"
|
|
304
|
-
],
|
|
305
|
-
"@atlaskit/pragmatic-drag-and-drop-auto-scroll/unsafe-overflow/element": [
|
|
306
|
-
"../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/unsafe-overflow/element.ts"
|
|
307
|
-
],
|
|
308
|
-
"@atlaskit/pragmatic-drag-and-drop-auto-scroll/unsafe-overflow/internal-uncontrolled": [
|
|
309
|
-
"../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/unsafe-overflow/internal-uncontrolled.ts"
|
|
310
|
-
],
|
|
311
|
-
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": [
|
|
312
|
-
"../../pragmatic-drag-and-drop/auto-scroll/src/index.ts"
|
|
313
|
-
],
|
|
314
|
-
"@atlaskit/pragmatic-drag-and-drop/element/adapter": [
|
|
315
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/element/adapter.ts"
|
|
316
|
-
],
|
|
317
|
-
"@atlaskit/pragmatic-drag-and-drop/element/set-custom-native-drag-preview": [
|
|
318
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/element/set-custom-native-drag-preview.ts"
|
|
319
|
-
],
|
|
320
|
-
"@atlaskit/pragmatic-drag-and-drop/element/pointer-outside-of-preview": [
|
|
321
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/element/pointer-outside-of-preview.ts"
|
|
322
|
-
],
|
|
323
|
-
"@atlaskit/pragmatic-drag-and-drop/element/center-under-pointer": [
|
|
324
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/element/center-under-pointer.ts"
|
|
325
|
-
],
|
|
326
|
-
"@atlaskit/pragmatic-drag-and-drop/element/preserve-offset-on-source": [
|
|
327
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/element/preserve-offset-on-source.ts"
|
|
328
|
-
],
|
|
329
|
-
"@atlaskit/pragmatic-drag-and-drop/element/disable-native-drag-preview": [
|
|
330
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/element/disable-native-drag-preview.ts"
|
|
331
|
-
],
|
|
332
|
-
"@atlaskit/pragmatic-drag-and-drop/element/scroll-just-enough-into-view": [
|
|
333
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/element/scroll-just-enough-into-view.ts"
|
|
334
|
-
],
|
|
335
|
-
"@atlaskit/pragmatic-drag-and-drop/element/format-urls-for-external": [
|
|
336
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/element/format-urls-for-external.ts"
|
|
337
|
-
],
|
|
338
|
-
"@atlaskit/pragmatic-drag-and-drop/external/adapter": [
|
|
339
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/external/adapter.ts"
|
|
340
|
-
],
|
|
341
|
-
"@atlaskit/pragmatic-drag-and-drop/external/file": [
|
|
342
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/external/file.ts"
|
|
343
|
-
],
|
|
344
|
-
"@atlaskit/pragmatic-drag-and-drop/external/html": [
|
|
345
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/external/html.ts"
|
|
346
|
-
],
|
|
347
|
-
"@atlaskit/pragmatic-drag-and-drop/external/text": [
|
|
348
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/external/text.ts"
|
|
349
|
-
],
|
|
350
|
-
"@atlaskit/pragmatic-drag-and-drop/external/url": [
|
|
351
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/external/url.ts"
|
|
352
|
-
],
|
|
353
|
-
"@atlaskit/pragmatic-drag-and-drop/external/custom-data": [
|
|
354
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/external/custom-data.ts"
|
|
355
|
-
],
|
|
356
|
-
"@atlaskit/pragmatic-drag-and-drop/external/some": [
|
|
357
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/external/some.ts"
|
|
358
|
-
],
|
|
359
|
-
"@atlaskit/pragmatic-drag-and-drop/text-selection/adapter": [
|
|
360
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/text-selection/adapter.ts"
|
|
361
|
-
],
|
|
362
|
-
"@atlaskit/pragmatic-drag-and-drop/combine": [
|
|
363
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/combine.ts"
|
|
364
|
-
],
|
|
365
|
-
"@atlaskit/pragmatic-drag-and-drop/once": [
|
|
366
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/once.ts"
|
|
367
|
-
],
|
|
368
|
-
"@atlaskit/pragmatic-drag-and-drop/reorder": [
|
|
369
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/reorder.ts"
|
|
370
|
-
],
|
|
371
|
-
"@atlaskit/pragmatic-drag-and-drop/prevent-unhandled": [
|
|
372
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/prevent-unhandled.ts"
|
|
373
|
-
],
|
|
374
|
-
"@atlaskit/pragmatic-drag-and-drop/types": [
|
|
375
|
-
"../../pragmatic-drag-and-drop/core/src/entry-point/types.ts"
|
|
376
|
-
],
|
|
377
|
-
"@atlaskit/pragmatic-drag-and-drop": [
|
|
378
|
-
"../../pragmatic-drag-and-drop/core/src/index.ts"
|
|
379
|
-
],
|
|
380
|
-
"@atlaskit/pragmatic-drag-and-drop-docs": [
|
|
381
|
-
"../../pragmatic-drag-and-drop/docs/src/index.ts"
|
|
382
|
-
],
|
|
383
|
-
"@atlaskit/pragmatic-drag-and-drop-flourish/trigger-post-move-flash": [
|
|
384
|
-
"../../pragmatic-drag-and-drop/flourish/src/trigger-post-move-flash.tsx"
|
|
385
|
-
],
|
|
386
|
-
"@atlaskit/pragmatic-drag-and-drop-flourish": [
|
|
387
|
-
"../../pragmatic-drag-and-drop/flourish/src"
|
|
388
|
-
],
|
|
389
|
-
"@atlaskit/pragmatic-drag-and-drop-hitbox/types": [
|
|
390
|
-
"../../pragmatic-drag-and-drop/hitbox/src/types.ts"
|
|
391
|
-
],
|
|
392
|
-
"@atlaskit/pragmatic-drag-and-drop-hitbox/closest-edge": [
|
|
393
|
-
"../../pragmatic-drag-and-drop/hitbox/src/closest-edge.ts"
|
|
394
|
-
],
|
|
395
|
-
"@atlaskit/pragmatic-drag-and-drop-hitbox/util/reorder-with-edge": [
|
|
396
|
-
"../../pragmatic-drag-and-drop/hitbox/src/reorder-with-edge.ts"
|
|
397
|
-
],
|
|
398
|
-
"@atlaskit/pragmatic-drag-and-drop-hitbox/util/get-reorder-destination-index": [
|
|
399
|
-
"../../pragmatic-drag-and-drop/hitbox/src/get-reorder-destination-index.ts"
|
|
400
|
-
],
|
|
401
|
-
"@atlaskit/pragmatic-drag-and-drop-hitbox/tree-item": [
|
|
402
|
-
"../../pragmatic-drag-and-drop/hitbox/src/tree-item.ts"
|
|
403
|
-
],
|
|
404
|
-
"@atlaskit/pragmatic-drag-and-drop-hitbox": [
|
|
405
|
-
"../../pragmatic-drag-and-drop/hitbox/src/index.ts"
|
|
406
|
-
],
|
|
407
|
-
"@atlaskit/pragmatic-drag-and-drop-live-region": [
|
|
408
|
-
"../../pragmatic-drag-and-drop/live-region/src/index.tsx"
|
|
409
|
-
],
|
|
410
|
-
"@atlaskit/pragmatic-drag-and-drop-react-accessibility/drag-handle-button": [
|
|
411
|
-
"../../pragmatic-drag-and-drop/react-accessibility/src/drag-handle-button.tsx"
|
|
412
|
-
],
|
|
413
|
-
"@atlaskit/pragmatic-drag-and-drop-react-accessibility/drag-handle-button-small": [
|
|
414
|
-
"../../pragmatic-drag-and-drop/react-accessibility/src/drag-handle-button-small.tsx"
|
|
415
|
-
],
|
|
416
|
-
"@atlaskit/pragmatic-drag-and-drop-react-accessibility": [
|
|
417
|
-
"../../pragmatic-drag-and-drop/react-accessibility/src"
|
|
418
|
-
],
|
|
419
|
-
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": [
|
|
420
|
-
"../../pragmatic-drag-and-drop/react-beautiful-dnd-autoscroll/src/index.ts"
|
|
421
|
-
],
|
|
422
|
-
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration": [
|
|
423
|
-
"../../pragmatic-drag-and-drop/react-beautiful-dnd-migration/src/index.ts"
|
|
424
|
-
],
|
|
425
|
-
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator/box": [
|
|
426
|
-
"../../pragmatic-drag-and-drop/react-drop-indicator/src/box.tsx"
|
|
427
|
-
],
|
|
428
|
-
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator/box-without-terminal": [
|
|
429
|
-
"../../pragmatic-drag-and-drop/react-drop-indicator/src/box-without-terminal.tsx"
|
|
430
|
-
],
|
|
431
|
-
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator/types": [
|
|
432
|
-
"../../pragmatic-drag-and-drop/react-drop-indicator/src/types.ts"
|
|
433
|
-
],
|
|
434
|
-
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator/tree-item": [
|
|
435
|
-
"../../pragmatic-drag-and-drop/react-drop-indicator/src/tree-item.tsx"
|
|
436
|
-
],
|
|
437
|
-
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": [
|
|
438
|
-
"../../pragmatic-drag-and-drop/react-drop-indicator/src/index.ts"
|
|
439
|
-
],
|
|
440
|
-
"@atlaskit/primitives/box": [
|
|
441
|
-
"../../design-system/primitives/src/components/box.tsx"
|
|
442
|
-
],
|
|
443
|
-
"@atlaskit/primitives/stack": [
|
|
444
|
-
"../../design-system/primitives/src/components/stack.tsx"
|
|
445
|
-
],
|
|
446
|
-
"@atlaskit/primitives/inline": [
|
|
447
|
-
"../../design-system/primitives/src/components/inline.tsx"
|
|
448
|
-
],
|
|
449
|
-
"@atlaskit/primitives/text": [
|
|
450
|
-
"../../design-system/primitives/src/components/text.tsx"
|
|
451
|
-
],
|
|
452
|
-
"@atlaskit/primitives/pressable": [
|
|
453
|
-
"../../design-system/primitives/src/components/pressable.tsx"
|
|
454
|
-
],
|
|
455
|
-
"@atlaskit/primitives/link": [
|
|
456
|
-
"../../design-system/primitives/src/components/link.tsx"
|
|
457
|
-
],
|
|
458
|
-
"@atlaskit/primitives/responsive": [
|
|
459
|
-
"../../design-system/primitives/src/responsive/index.tsx"
|
|
460
|
-
],
|
|
461
|
-
"@atlaskit/primitives": [
|
|
462
|
-
"../../design-system/primitives/src/index.tsx"
|
|
463
|
-
],
|
|
464
|
-
"@atlaskit/theme/deprecated-provider-please-do-not-use": [
|
|
465
|
-
"../../design-system/theme/src/deprecated-provider-please-do-not-use.tsx"
|
|
466
|
-
],
|
|
467
|
-
"@atlaskit/theme/color-palettes": [
|
|
468
|
-
"../../design-system/theme/src/color-palettes.tsx"
|
|
469
|
-
],
|
|
470
|
-
"@atlaskit/theme/colors": [
|
|
471
|
-
"../../design-system/theme/src/colors.tsx"
|
|
472
|
-
],
|
|
473
|
-
"@atlaskit/theme/components": [
|
|
474
|
-
"../../design-system/theme/src/components.tsx"
|
|
475
|
-
],
|
|
476
|
-
"@atlaskit/theme/constants": [
|
|
477
|
-
"../../design-system/theme/src/constants.tsx"
|
|
478
|
-
],
|
|
479
|
-
"@atlaskit/theme/elevation": [
|
|
480
|
-
"../../design-system/theme/src/elevation.tsx"
|
|
481
|
-
],
|
|
482
|
-
"@atlaskit/theme/types": [
|
|
483
|
-
"../../design-system/theme/src/types.tsx"
|
|
484
|
-
],
|
|
485
|
-
"@atlaskit/theme/typography": [
|
|
486
|
-
"../../design-system/theme/src/typography.tsx"
|
|
487
|
-
],
|
|
488
|
-
"@atlaskit/theme": [
|
|
489
|
-
"../../design-system/theme/src"
|
|
490
|
-
],
|
|
491
|
-
"@atlaskit/toggle": [
|
|
492
|
-
"../../design-system/toggle/src/index.tsx"
|
|
493
|
-
],
|
|
494
|
-
"@atlaskit/tokens/custom-themes": [
|
|
495
|
-
"../../design-system/tokens/src/entry-points/custom-themes.tsx"
|
|
496
|
-
],
|
|
497
|
-
"@atlaskit/tokens/figma/atlassian-light.json": [
|
|
498
|
-
"../../design-system/tokens/figma/atlassian-light.json"
|
|
499
|
-
],
|
|
500
|
-
"@atlaskit/tokens/figma/atlassian-dark.json": [
|
|
501
|
-
"../../design-system/tokens/figma/atlassian-dark.json"
|
|
502
|
-
],
|
|
503
|
-
"@atlaskit/tokens/palettes-raw": [
|
|
504
|
-
"../../design-system/tokens/src/entry-points/palettes-raw.tsx"
|
|
505
|
-
],
|
|
506
|
-
"@atlaskit/tokens/tokens-raw": [
|
|
507
|
-
"../../design-system/tokens/src/entry-points/tokens-raw.tsx"
|
|
508
|
-
],
|
|
509
|
-
"@atlaskit/tokens/token-ids": [
|
|
510
|
-
"../../design-system/tokens/src/entry-points/token-ids.tsx"
|
|
511
|
-
],
|
|
512
|
-
"@atlaskit/tokens/token-names": [
|
|
513
|
-
"../../design-system/tokens/src/entry-points/token-names.tsx"
|
|
514
|
-
],
|
|
515
|
-
"@atlaskit/tokens/token-order": [
|
|
516
|
-
"../../design-system/tokens/src/entry-points/token-order.tsx"
|
|
517
|
-
],
|
|
518
|
-
"@atlaskit/tokens/token-default-values": [
|
|
519
|
-
"../../design-system/tokens/src/entry-points/token-default-values.tsx"
|
|
520
|
-
],
|
|
521
|
-
"@atlaskit/tokens/rename-mapping": [
|
|
522
|
-
"../../design-system/tokens/src/entry-points/rename-mapping.tsx"
|
|
523
|
-
],
|
|
524
|
-
"@atlaskit/tokens/babel-plugin": [
|
|
525
|
-
"../../design-system/tokens/src/entry-points/babel-plugin.tsx"
|
|
526
|
-
],
|
|
527
|
-
"@atlaskit/tokens/css-type-schema": [
|
|
528
|
-
"../../design-system/tokens/src/entry-points/css-type-schema.codegen.tsx"
|
|
529
|
-
],
|
|
530
|
-
"@atlaskit/tokens": [
|
|
531
|
-
"../../design-system/tokens/src/index.tsx"
|
|
532
|
-
],
|
|
533
|
-
"@atlaskit/tooltip/Tooltip": [
|
|
534
|
-
"../../design-system/tooltip/src/Tooltip.tsx"
|
|
535
|
-
],
|
|
536
|
-
"@atlaskit/tooltip/TooltipContainer": [
|
|
537
|
-
"../../design-system/tooltip/src/TooltipContainer.tsx"
|
|
538
|
-
],
|
|
539
|
-
"@atlaskit/tooltip/TooltipPrimitive": [
|
|
540
|
-
"../../design-system/tooltip/src/TooltipPrimitive.tsx"
|
|
541
|
-
],
|
|
542
|
-
"@atlaskit/tooltip/types": [
|
|
543
|
-
"../../design-system/tooltip/src/types.tsx"
|
|
544
|
-
],
|
|
545
|
-
"@atlaskit/tooltip/utilities": [
|
|
546
|
-
"../../design-system/tooltip/src/utilities.ts"
|
|
547
|
-
],
|
|
548
|
-
"@atlaskit/tooltip": [
|
|
549
|
-
"../../design-system/tooltip/src/index.ts"
|
|
550
|
-
],
|
|
551
|
-
"@atlaskit/analytics-next/types": [
|
|
552
|
-
"../../analytics/analytics-next/src/types.ts"
|
|
553
|
-
],
|
|
554
|
-
"@atlaskit/analytics-next/AnalyticsContext": [
|
|
555
|
-
"../../analytics/analytics-next/src/components/AnalyticsContext/index.tsx"
|
|
556
|
-
],
|
|
557
|
-
"@atlaskit/analytics-next/AnalyticsListener": [
|
|
558
|
-
"../../analytics/analytics-next/src/components/AnalyticsListener/index.tsx"
|
|
559
|
-
],
|
|
560
|
-
"@atlaskit/analytics-next/AnalyticsErrorBoundary": [
|
|
561
|
-
"../../analytics/analytics-next/src/components/AnalyticsErrorBoundary.tsx"
|
|
562
|
-
],
|
|
563
|
-
"@atlaskit/analytics-next/withAnalyticsEvents": [
|
|
564
|
-
"../../analytics/analytics-next/src/hocs/withAnalyticsEvents.tsx"
|
|
565
|
-
],
|
|
566
|
-
"@atlaskit/analytics-next/withAnalyticsContext": [
|
|
567
|
-
"../../analytics/analytics-next/src/hocs/withAnalyticsContext.tsx"
|
|
568
|
-
],
|
|
569
|
-
"@atlaskit/analytics-next/usePlatformLeafEventHandler": [
|
|
570
|
-
"../../analytics/analytics-next/src/hooks/usePlatformLeafEventHandler.ts"
|
|
571
|
-
],
|
|
572
|
-
"@atlaskit/analytics-next/useAnalyticsEvents": [
|
|
573
|
-
"../../analytics/analytics-next/src/hooks/useAnalyticsEvents.ts"
|
|
574
|
-
],
|
|
575
|
-
"@atlaskit/analytics-next/useCallbackWithAnalytics": [
|
|
576
|
-
"../../analytics/analytics-next/src/hooks/useCallbackWithAnalytics.ts"
|
|
577
|
-
],
|
|
578
|
-
"@atlaskit/analytics-next/usePatchedProps": [
|
|
579
|
-
"../../analytics/analytics-next/src/hooks/usePatchedProps.ts"
|
|
580
|
-
],
|
|
581
|
-
"@atlaskit/analytics-next/AnalyticsEvent": [
|
|
582
|
-
"../../analytics/analytics-next/src/events/AnalyticsEvent.ts"
|
|
583
|
-
],
|
|
584
|
-
"@atlaskit/analytics-next/UIAnalyticsEvent": [
|
|
585
|
-
"../../analytics/analytics-next/src/events/UIAnalyticsEvent.ts"
|
|
586
|
-
],
|
|
587
|
-
"@atlaskit/analytics-next/createAndFireEvents": [
|
|
588
|
-
"../../analytics/analytics-next/src/utils/createAndFireEvent.ts"
|
|
589
|
-
],
|
|
590
|
-
"@atlaskit/analytics-next": [
|
|
591
|
-
"../../analytics/analytics-next/src/index.ts"
|
|
592
|
-
],
|
|
593
|
-
"@atlaskit/editor-plugin-decorations": [
|
|
594
|
-
"../editor-plugin-decorations/src/index.ts"
|
|
595
|
-
],
|
|
596
|
-
"@atlaskit/editor-plugin-feature-flags": [
|
|
597
|
-
"../editor-plugin-feature-flags/src/index.ts"
|
|
598
|
-
],
|
|
599
|
-
"@atlaskit/editor-plugin-grid": [
|
|
600
|
-
"../editor-plugin-grid/src/index.ts"
|
|
601
|
-
],
|
|
602
|
-
"@atlaskit/editor-plugin-hyperlink": [
|
|
603
|
-
"../editor-plugin-hyperlink/src/index.ts"
|
|
604
|
-
],
|
|
605
|
-
"@atlaskit/editor-test-helpers/adf-schema": [
|
|
606
|
-
"../editor-test-helpers/src/adf-schema.ts"
|
|
607
|
-
],
|
|
608
|
-
"@atlaskit/editor-test-helpers/ajv": [
|
|
609
|
-
"../editor-test-helpers/src/ajv.ts"
|
|
610
|
-
],
|
|
611
|
-
"@atlaskit/editor-test-helpers/analytics-client-mock": [
|
|
612
|
-
"../editor-test-helpers/src/analytics-client-mock.ts"
|
|
613
|
-
],
|
|
614
|
-
"@atlaskit/editor-test-helpers/autoformatting-provider": [
|
|
615
|
-
"../editor-test-helpers/src/autoformatting-provider.ts"
|
|
616
|
-
],
|
|
617
|
-
"@atlaskit/editor-test-helpers/base64fileconverter": [
|
|
618
|
-
"../editor-test-helpers/src/base64fileconverter.ts"
|
|
619
|
-
],
|
|
620
|
-
"@atlaskit/editor-test-helpers/card-helpers": [
|
|
621
|
-
"../editor-test-helpers/src/card-helpers.ts"
|
|
622
|
-
],
|
|
623
|
-
"@atlaskit/editor-test-helpers/card-provider": [
|
|
624
|
-
"../editor-test-helpers/src/card-provider.ts"
|
|
625
|
-
],
|
|
626
|
-
"@atlaskit/editor-test-helpers/confluence-card-client": [
|
|
627
|
-
"../editor-test-helpers/src/confluence-card-client.ts"
|
|
628
|
-
],
|
|
629
|
-
"@atlaskit/editor-test-helpers/confluence-card-provider": [
|
|
630
|
-
"../editor-test-helpers/src/confluence-card-provider.ts"
|
|
631
|
-
],
|
|
632
|
-
"@atlaskit/editor-test-helpers/context-identifier-provider": [
|
|
633
|
-
"../editor-test-helpers/src/context-identifier-provider.ts"
|
|
634
|
-
],
|
|
635
|
-
"@atlaskit/editor-test-helpers/controllable-promise": [
|
|
636
|
-
"../editor-test-helpers/src/controllable-promise.ts"
|
|
637
|
-
],
|
|
638
|
-
"@atlaskit/editor-test-helpers/constants": [
|
|
639
|
-
"../editor-test-helpers/src/constants.ts"
|
|
640
|
-
],
|
|
641
|
-
"@atlaskit/editor-test-helpers/create-analytics-event-mock": [
|
|
642
|
-
"../editor-test-helpers/src/create-analytics-event-mock.ts"
|
|
643
|
-
],
|
|
644
|
-
"@atlaskit/editor-test-helpers/create-editor": [
|
|
645
|
-
"../editor-test-helpers/src/create-editor.tsx"
|
|
646
|
-
],
|
|
647
|
-
"@atlaskit/editor-test-helpers/create-editor-state": [
|
|
648
|
-
"../editor-test-helpers/src/create-editor-state.ts"
|
|
649
|
-
],
|
|
650
|
-
"@atlaskit/editor-test-helpers/create-prosemirror-editor": [
|
|
651
|
-
"../editor-test-helpers/src/create-prosemirror-editor.ts"
|
|
652
|
-
],
|
|
653
|
-
"@atlaskit/editor-test-helpers/create-event": [
|
|
654
|
-
"../editor-test-helpers/src/create-event.ts"
|
|
655
|
-
],
|
|
656
|
-
"@atlaskit/editor-test-helpers/dispatch-paste-event": [
|
|
657
|
-
"../editor-test-helpers/src/dispatch-paste-event.ts"
|
|
658
|
-
],
|
|
659
|
-
"@atlaskit/editor-test-helpers/doc-builder": [
|
|
660
|
-
"../editor-test-helpers/src/doc-builder.ts"
|
|
661
|
-
],
|
|
662
|
-
"@atlaskit/editor-test-helpers/enzyme": [
|
|
663
|
-
"../editor-test-helpers/src/enzyme.tsx"
|
|
664
|
-
],
|
|
665
|
-
"@atlaskit/editor-test-helpers/floating-toolbar": [
|
|
666
|
-
"../editor-test-helpers/src/floating-toolbar.ts"
|
|
667
|
-
],
|
|
668
|
-
"@atlaskit/editor-test-helpers/rtl": [
|
|
669
|
-
"../editor-test-helpers/src/rtl.tsx"
|
|
670
|
-
],
|
|
671
|
-
"@atlaskit/editor-test-helpers/extensions": [
|
|
672
|
-
"../editor-test-helpers/src/extensions.tsx"
|
|
673
|
-
],
|
|
674
|
-
"@atlaskit/editor-test-helpers/jsdom-fixtures": [
|
|
675
|
-
"../editor-test-helpers/src/jsdom-fixtures.ts"
|
|
676
|
-
],
|
|
677
|
-
"@atlaskit/editor-test-helpers/media-mock": [
|
|
678
|
-
"../editor-test-helpers/src/media-mock.ts"
|
|
679
|
-
],
|
|
680
|
-
"@atlaskit/editor-test-helpers/media-client-mock": [
|
|
681
|
-
"../editor-test-helpers/src/media-client/index.ts"
|
|
682
|
-
],
|
|
683
|
-
"@atlaskit/editor-test-helpers/media-provider": [
|
|
684
|
-
"../editor-test-helpers/src/media-provider.ts"
|
|
685
|
-
],
|
|
686
|
-
"@atlaskit/editor-test-helpers/mock-activity-provider": [
|
|
687
|
-
"../editor-test-helpers/src/mock-activity-provider.ts"
|
|
688
|
-
],
|
|
689
|
-
"@atlaskit/editor-test-helpers/mock-add-event-listener": [
|
|
690
|
-
"../editor-test-helpers/src/mock-add-event-listener.ts"
|
|
691
|
-
],
|
|
692
|
-
"@atlaskit/editor-test-helpers/mock-analytics-next": [
|
|
693
|
-
"../editor-test-helpers/src/mock-analytics-next.tsx"
|
|
694
|
-
],
|
|
695
|
-
"@atlaskit/editor-test-helpers/mock-extension-data": [
|
|
696
|
-
"../editor-test-helpers/src/mock-extension-data.ts"
|
|
697
|
-
],
|
|
698
|
-
"@atlaskit/editor-test-helpers/mock-insert-menu": [
|
|
699
|
-
"../editor-test-helpers/src/mock-insert-menu.tsx"
|
|
700
|
-
],
|
|
701
|
-
"@atlaskit/editor-test-helpers/mock-macro-provider": [
|
|
702
|
-
"../editor-test-helpers/src/mock-macro-provider.ts"
|
|
703
|
-
],
|
|
704
|
-
"@atlaskit/editor-test-helpers/mock-performance-entry": [
|
|
705
|
-
"../editor-test-helpers/src/mock-performance-entry.ts"
|
|
706
|
-
],
|
|
707
|
-
"@atlaskit/editor-test-helpers/mock-performance-observer-entry-list": [
|
|
708
|
-
"../editor-test-helpers/src/mock-performance-observer-entry-list.ts"
|
|
709
|
-
],
|
|
710
|
-
"@atlaskit/editor-test-helpers/mock-intersection-observer": [
|
|
711
|
-
"../editor-test-helpers/src/mock-intersection-observer.ts"
|
|
712
|
-
],
|
|
713
|
-
"@atlaskit/editor-test-helpers/mock-search-provider": [
|
|
714
|
-
"../editor-test-helpers/src/mock-search-provider.ts"
|
|
715
|
-
],
|
|
716
|
-
"@atlaskit/editor-test-helpers/next-tick": [
|
|
717
|
-
"../editor-test-helpers/src/next-tick.ts"
|
|
718
|
-
],
|
|
719
|
-
"@atlaskit/editor-test-helpers/random-id": [
|
|
720
|
-
"../editor-test-helpers/src/random-id.ts"
|
|
721
|
-
],
|
|
722
|
-
"@atlaskit/editor-test-helpers/schema": [
|
|
723
|
-
"../editor-test-helpers/src/schema.ts"
|
|
724
|
-
],
|
|
725
|
-
"@atlaskit/editor-test-helpers/schema-element-builder": [
|
|
726
|
-
"../editor-test-helpers/src/schema-element-builder.ts"
|
|
727
|
-
],
|
|
728
|
-
"@atlaskit/editor-test-helpers/selection": [
|
|
729
|
-
"../editor-test-helpers/src/selection.ts"
|
|
730
|
-
],
|
|
731
|
-
"@atlaskit/editor-test-helpers/send-key-to-pm": [
|
|
732
|
-
"../editor-test-helpers/src/send-key-to-pm.ts"
|
|
733
|
-
],
|
|
734
|
-
"@atlaskit/editor-test-helpers/set-selection-transform": [
|
|
735
|
-
"../editor-test-helpers/src/set-selection-transform.ts"
|
|
736
|
-
],
|
|
737
|
-
"@atlaskit/editor-test-helpers/simulate-platform": [
|
|
738
|
-
"../editor-test-helpers/src/simulate-platform.ts"
|
|
739
|
-
],
|
|
740
|
-
"@atlaskit/editor-test-helpers/sleep": [
|
|
741
|
-
"../editor-test-helpers/src/sleep.ts"
|
|
742
|
-
],
|
|
743
|
-
"@atlaskit/editor-test-helpers/table": [
|
|
744
|
-
"../editor-test-helpers/src/table.ts"
|
|
745
|
-
],
|
|
746
|
-
"@atlaskit/editor-test-helpers/transactions": [
|
|
747
|
-
"../editor-test-helpers/src/transactions.ts"
|
|
748
|
-
],
|
|
749
|
-
"@atlaskit/editor-test-helpers/use-example-document": [
|
|
750
|
-
"../editor-test-helpers/src/use-example-document.ts"
|
|
751
|
-
],
|
|
752
|
-
"@atlaskit/editor-test-helpers/vr-utils": [
|
|
753
|
-
"../editor-test-helpers/src/vr-utils.ts"
|
|
754
|
-
],
|
|
755
|
-
"@atlaskit/editor-test-helpers/vr-utils/base-utils": [
|
|
756
|
-
"../editor-test-helpers/src/vr-utils/base-utils.ts"
|
|
757
|
-
],
|
|
758
|
-
"@atlaskit/editor-test-helpers/vr-utils/bounding-client-rect": [
|
|
759
|
-
"../editor-test-helpers/src/vr-utils/bounding-client-rect.ts"
|
|
760
|
-
],
|
|
761
|
-
"@atlaskit/editor-test-helpers/vr-utils/device-viewport": [
|
|
762
|
-
"../editor-test-helpers/src/vr-utils/device-viewport.ts"
|
|
763
|
-
],
|
|
764
|
-
"@atlaskit/editor-test-helpers/vr-utils/frame-utils": [
|
|
765
|
-
"../editor-test-helpers/src/vr-utils/frame-utils.ts"
|
|
766
|
-
],
|
|
767
|
-
"@atlaskit/editor-test-helpers/vr-utils/get-computed-style": [
|
|
768
|
-
"../editor-test-helpers/src/vr-utils/get-computed-style.ts"
|
|
769
|
-
],
|
|
770
|
-
"@atlaskit/editor-test-helpers/page-objects/editor": [
|
|
771
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/editor.ts"
|
|
772
|
-
],
|
|
773
|
-
"@atlaskit/editor-test-helpers/page-objects/emoji": [
|
|
774
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/emoji.ts"
|
|
775
|
-
],
|
|
776
|
-
"@atlaskit/editor-test-helpers/page-objects/extensions": [
|
|
777
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/extensions.ts"
|
|
778
|
-
],
|
|
779
|
-
"@atlaskit/editor-test-helpers/page-objects/mention": [
|
|
780
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/mention.ts"
|
|
781
|
-
],
|
|
782
|
-
"@atlaskit/editor-test-helpers/page-objects/table": [
|
|
783
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/table.ts"
|
|
784
|
-
],
|
|
785
|
-
"@atlaskit/editor-test-helpers/page-objects/toolbar": [
|
|
786
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/toolbar.ts"
|
|
787
|
-
],
|
|
788
|
-
"@atlaskit/editor-test-helpers/page-objects/keyboard": [
|
|
789
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/keyboard.ts"
|
|
790
|
-
],
|
|
791
|
-
"@atlaskit/editor-test-helpers/page-objects/types": [
|
|
792
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/types.ts"
|
|
793
|
-
],
|
|
794
|
-
"@atlaskit/editor-test-helpers/page-objects/blocks": [
|
|
795
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/blocks.ts"
|
|
796
|
-
],
|
|
797
|
-
"@atlaskit/editor-test-helpers/page-objects/code-block": [
|
|
798
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/code-block.ts"
|
|
799
|
-
],
|
|
800
|
-
"@atlaskit/editor-test-helpers/page-objects/date": [
|
|
801
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/date.ts"
|
|
802
|
-
],
|
|
803
|
-
"@atlaskit/editor-test-helpers/page-objects/decision": [
|
|
804
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/decision.ts"
|
|
805
|
-
],
|
|
806
|
-
"@atlaskit/editor-test-helpers/page-objects/element-browser": [
|
|
807
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/element-browser.ts"
|
|
808
|
-
],
|
|
809
|
-
"@atlaskit/editor-test-helpers/page-objects/expand": [
|
|
810
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/expand.ts"
|
|
811
|
-
],
|
|
812
|
-
"@atlaskit/editor-test-helpers/page-objects/find-replace": [
|
|
813
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/find-replace.ts"
|
|
814
|
-
],
|
|
815
|
-
"@atlaskit/editor-test-helpers/page-objects/help-dialog": [
|
|
816
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/help-dialog.ts"
|
|
817
|
-
],
|
|
818
|
-
"@atlaskit/editor-test-helpers/page-objects/hyperlink": [
|
|
819
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/hyperlink.ts"
|
|
820
|
-
],
|
|
821
|
-
"@atlaskit/editor-test-helpers/page-objects/layouts": [
|
|
822
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/layouts.ts"
|
|
823
|
-
],
|
|
824
|
-
"@atlaskit/editor-test-helpers/page-objects/media": [
|
|
825
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/media.ts"
|
|
826
|
-
],
|
|
827
|
-
"@atlaskit/editor-test-helpers/page-objects/mouse": [
|
|
828
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/mouse.ts"
|
|
829
|
-
],
|
|
830
|
-
"@atlaskit/editor-test-helpers/page-objects/quick-insert": [
|
|
831
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/quick-insert.ts"
|
|
832
|
-
],
|
|
833
|
-
"@atlaskit/editor-test-helpers/page-objects/selection": [
|
|
834
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/selection.ts"
|
|
835
|
-
],
|
|
836
|
-
"@atlaskit/editor-test-helpers/page-objects/smart-links": [
|
|
837
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/smart-links.ts"
|
|
838
|
-
],
|
|
839
|
-
"@atlaskit/editor-test-helpers/page-objects/status": [
|
|
840
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/status.ts"
|
|
841
|
-
],
|
|
842
|
-
"@atlaskit/editor-test-helpers/page-objects/panel": [
|
|
843
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/panel.ts"
|
|
844
|
-
],
|
|
845
|
-
"@atlaskit/editor-test-helpers/page-objects/task": [
|
|
846
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/task.ts"
|
|
847
|
-
],
|
|
848
|
-
"@atlaskit/editor-test-helpers/page-objects/unsupported": [
|
|
849
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/unsupported.ts"
|
|
850
|
-
],
|
|
851
|
-
"@atlaskit/editor-test-helpers/page-objects/list": [
|
|
852
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/list.ts"
|
|
853
|
-
],
|
|
854
|
-
"@atlaskit/editor-test-helpers/page-objects/breakout": [
|
|
855
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/breakout.ts"
|
|
856
|
-
],
|
|
857
|
-
"@atlaskit/editor-test-helpers/page-objects/context-panel": [
|
|
858
|
-
"../editor-test-helpers/src/integration/helpers/page-objects/context-panel.ts"
|
|
859
|
-
],
|
|
860
|
-
"@atlaskit/editor-test-helpers/testing-example-page": [
|
|
861
|
-
"../editor-test-helpers/src/testing-example-page.ts"
|
|
862
|
-
],
|
|
863
|
-
"@atlaskit/editor-test-helpers/e2e-helpers": [
|
|
864
|
-
"../editor-test-helpers/src/e2e-helpers.ts"
|
|
865
|
-
],
|
|
866
|
-
"@atlaskit/editor-test-helpers/wysiwyg-helpers": [
|
|
867
|
-
"../editor-test-helpers/src/wysiwyg-helpers.ts"
|
|
868
|
-
],
|
|
869
|
-
"@atlaskit/editor-test-helpers/integration/escape-keydown": [
|
|
870
|
-
"../editor-test-helpers/src/integration/escape-keydown.ts"
|
|
871
|
-
],
|
|
872
|
-
"@atlaskit/editor-test-helpers/create-test-extension-provider": [
|
|
873
|
-
"../editor-test-helpers/src/create-test-extension-provider.ts"
|
|
874
|
-
],
|
|
875
|
-
"@atlaskit/editor-test-helpers/annotation": [
|
|
876
|
-
"../editor-test-helpers/src/annotation.ts"
|
|
877
|
-
],
|
|
878
|
-
"@atlaskit/editor-test-helpers": [
|
|
879
|
-
"../editor-test-helpers/src"
|
|
880
|
-
],
|
|
881
|
-
"@atlaskit/visual-regression": [
|
|
882
|
-
"../../../build/test-tooling/visual-regression/src"
|
|
883
|
-
],
|
|
884
|
-
"@atlassian/feature-flags-test-utils": [
|
|
885
|
-
"../../platform/feature-flags-test-utils/src/index.ts"
|
|
886
|
-
],
|
|
887
|
-
"@atlaskit/editor-plugin-table/types": [
|
|
888
|
-
"src/types.ts"
|
|
889
|
-
],
|
|
890
|
-
"@atlaskit/editor-plugin-table/ui/common-styles": [
|
|
891
|
-
"src/ui/common-styles.ts"
|
|
892
|
-
],
|
|
893
|
-
"@atlaskit/editor-plugin-table/ui/consts": [
|
|
894
|
-
"src/ui/consts.ts"
|
|
895
|
-
],
|
|
896
|
-
"@atlaskit/editor-plugin-table/plugin-key": [
|
|
897
|
-
"src/pm-plugins/plugin-key.ts"
|
|
898
|
-
],
|
|
899
|
-
"@atlaskit/editor-plugin-table/commands": [
|
|
900
|
-
"src/commands/index.ts"
|
|
901
|
-
],
|
|
902
|
-
"@atlaskit/editor-plugin-table": [
|
|
903
|
-
"./src"
|
|
904
|
-
]
|
|
905
|
-
}
|
|
12
|
+
"baseUrl": "./"
|
|
906
13
|
}
|
|
907
14
|
}
|