@atlaskit/editor-plugin-table 7.0.2 → 7.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 +22 -0
- package/dist/cjs/nodeviews/TableComponent.js +22 -12
- package/dist/cjs/pm-plugins/drag-and-drop/commands.js +1 -1
- package/dist/cjs/pm-plugins/keymap.js +1 -1
- package/dist/cjs/ui/TableFloatingControls/RowControls/DragControls.js +1 -1
- package/dist/cjs/ui/icons/AddRowAboveIcon.js +8 -12
- package/dist/cjs/ui/icons/AddRowBelowIcon.js +19 -15
- package/dist/es2019/nodeviews/TableComponent.js +10 -1
- package/dist/es2019/pm-plugins/drag-and-drop/commands.js +1 -1
- package/dist/es2019/pm-plugins/keymap.js +2 -2
- package/dist/es2019/ui/TableFloatingControls/RowControls/DragControls.js +1 -1
- package/dist/es2019/ui/icons/AddRowAboveIcon.js +8 -12
- package/dist/es2019/ui/icons/AddRowBelowIcon.js +19 -15
- package/dist/esm/nodeviews/TableComponent.js +22 -12
- package/dist/esm/pm-plugins/drag-and-drop/commands.js +1 -1
- package/dist/esm/pm-plugins/keymap.js +2 -2
- package/dist/esm/ui/TableFloatingControls/RowControls/DragControls.js +1 -1
- package/dist/esm/ui/icons/AddRowAboveIcon.js +8 -12
- package/dist/esm/ui/icons/AddRowBelowIcon.js +19 -15
- package/dist/types/index.d.ts +1 -1
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/package.json +5 -5
- package/src/index.ts +1 -1
- package/src/nodeviews/TableComponent.tsx +18 -5
- package/src/pm-plugins/drag-and-drop/commands.ts +1 -1
- package/src/pm-plugins/keymap.ts +2 -7
- package/src/ui/TableFloatingControls/RowControls/DragControls.tsx +1 -0
- package/src/ui/icons/AddRowAboveIcon.tsx +2 -16
- package/src/ui/icons/AddRowBelowIcon.tsx +21 -12
- package/tsconfig.json +596 -3
package/tsconfig.json
CHANGED
|
@@ -6,9 +6,602 @@
|
|
|
6
6
|
"./examples/**/*.ts",
|
|
7
7
|
"./examples/**/*.tsx",
|
|
8
8
|
"./example-helpers/**/*.ts",
|
|
9
|
-
"./example-helpers/**/*.tsx"
|
|
9
|
+
"./example-helpers/**/*.tsx"
|
|
10
10
|
],
|
|
11
11
|
"compilerOptions": {
|
|
12
|
-
"baseUrl": "./"
|
|
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/file": [
|
|
300
|
+
"../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/file.ts"
|
|
301
|
+
],
|
|
302
|
+
"@atlaskit/pragmatic-drag-and-drop-auto-scroll/unsafe-overflow/element": [
|
|
303
|
+
"../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/unsafe-overflow/element.ts"
|
|
304
|
+
],
|
|
305
|
+
"@atlaskit/pragmatic-drag-and-drop-auto-scroll/unsafe-overflow/file": [
|
|
306
|
+
"../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/unsafe-overflow/file.ts"
|
|
307
|
+
],
|
|
308
|
+
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": [
|
|
309
|
+
"../../pragmatic-drag-and-drop/auto-scroll/src/index.ts"
|
|
310
|
+
],
|
|
311
|
+
"@atlaskit/pragmatic-drag-and-drop/adapter/element": [
|
|
312
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/adapter/element.ts"
|
|
313
|
+
],
|
|
314
|
+
"@atlaskit/pragmatic-drag-and-drop/adapter/file": [
|
|
315
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/adapter/file.ts"
|
|
316
|
+
],
|
|
317
|
+
"@atlaskit/pragmatic-drag-and-drop/types": [
|
|
318
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/types.ts"
|
|
319
|
+
],
|
|
320
|
+
"@atlaskit/pragmatic-drag-and-drop/addon/cancel-unhandled": [
|
|
321
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/addon/cancel-unhandled.ts"
|
|
322
|
+
],
|
|
323
|
+
"@atlaskit/pragmatic-drag-and-drop/util/combine": [
|
|
324
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/util/combine.ts"
|
|
325
|
+
],
|
|
326
|
+
"@atlaskit/pragmatic-drag-and-drop/util/once": [
|
|
327
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/util/once.ts"
|
|
328
|
+
],
|
|
329
|
+
"@atlaskit/pragmatic-drag-and-drop/util/reorder": [
|
|
330
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/util/reorder.ts"
|
|
331
|
+
],
|
|
332
|
+
"@atlaskit/pragmatic-drag-and-drop/util/set-custom-native-drag-preview": [
|
|
333
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/util/set-custom-native-drag-preview.ts"
|
|
334
|
+
],
|
|
335
|
+
"@atlaskit/pragmatic-drag-and-drop/util/offset-from-pointer": [
|
|
336
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/util/offset-from-pointer.ts"
|
|
337
|
+
],
|
|
338
|
+
"@atlaskit/pragmatic-drag-and-drop/util/center-under-pointer": [
|
|
339
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/util/center-under-pointer.ts"
|
|
340
|
+
],
|
|
341
|
+
"@atlaskit/pragmatic-drag-and-drop/util/preserve-offset-on-source": [
|
|
342
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/util/preserve-offset-on-source.ts"
|
|
343
|
+
],
|
|
344
|
+
"@atlaskit/pragmatic-drag-and-drop/util/disable-native-drag-preview": [
|
|
345
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/util/disable-native-drag-preview.ts"
|
|
346
|
+
],
|
|
347
|
+
"@atlaskit/pragmatic-drag-and-drop/util/scroll-just-enough-into-view": [
|
|
348
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/util/scroll-just-enough-into-view.ts"
|
|
349
|
+
],
|
|
350
|
+
"@atlaskit/pragmatic-drag-and-drop/experimental/cross-window-element-adapter": [
|
|
351
|
+
"../../pragmatic-drag-and-drop/core/src/entry-point/experimental/cross-with-element-adapter.ts"
|
|
352
|
+
],
|
|
353
|
+
"@atlaskit/pragmatic-drag-and-drop": [
|
|
354
|
+
"../../pragmatic-drag-and-drop/core/src/index.ts"
|
|
355
|
+
],
|
|
356
|
+
"@atlaskit/pragmatic-drag-and-drop-docs": [
|
|
357
|
+
"../../pragmatic-drag-and-drop/docs/src/index.ts"
|
|
358
|
+
],
|
|
359
|
+
"@atlaskit/pragmatic-drag-and-drop-flourish/trigger-post-move-flash": [
|
|
360
|
+
"../../pragmatic-drag-and-drop/flourish/src/trigger-post-move-flash.tsx"
|
|
361
|
+
],
|
|
362
|
+
"@atlaskit/pragmatic-drag-and-drop-flourish": [
|
|
363
|
+
"../../pragmatic-drag-and-drop/flourish/src"
|
|
364
|
+
],
|
|
365
|
+
"@atlaskit/pragmatic-drag-and-drop-hitbox/types": [
|
|
366
|
+
"../../pragmatic-drag-and-drop/hitbox/src/types.ts"
|
|
367
|
+
],
|
|
368
|
+
"@atlaskit/pragmatic-drag-and-drop-hitbox/addon/closest-edge": [
|
|
369
|
+
"../../pragmatic-drag-and-drop/hitbox/src/closest-edge.ts"
|
|
370
|
+
],
|
|
371
|
+
"@atlaskit/pragmatic-drag-and-drop-hitbox/util/reorder-with-edge": [
|
|
372
|
+
"../../pragmatic-drag-and-drop/hitbox/src/reorder-with-edge.ts"
|
|
373
|
+
],
|
|
374
|
+
"@atlaskit/pragmatic-drag-and-drop-hitbox/util/get-reorder-destination-index": [
|
|
375
|
+
"../../pragmatic-drag-and-drop/hitbox/src/get-reorder-destination-index.ts"
|
|
376
|
+
],
|
|
377
|
+
"@atlaskit/pragmatic-drag-and-drop-hitbox/tree-item": [
|
|
378
|
+
"../../pragmatic-drag-and-drop/hitbox/src/tree-item.ts"
|
|
379
|
+
],
|
|
380
|
+
"@atlaskit/pragmatic-drag-and-drop-hitbox": [
|
|
381
|
+
"../../pragmatic-drag-and-drop/hitbox/src/index.ts"
|
|
382
|
+
],
|
|
383
|
+
"@atlaskit/pragmatic-drag-and-drop-live-region": [
|
|
384
|
+
"../../pragmatic-drag-and-drop/live-region/src/index.tsx"
|
|
385
|
+
],
|
|
386
|
+
"@atlaskit/pragmatic-drag-and-drop-react-accessibility/drag-handle-button": [
|
|
387
|
+
"../../pragmatic-drag-and-drop/react-accessibility/src/drag-handle-button.tsx"
|
|
388
|
+
],
|
|
389
|
+
"@atlaskit/pragmatic-drag-and-drop-react-accessibility/drag-handle-button-small": [
|
|
390
|
+
"../../pragmatic-drag-and-drop/react-accessibility/src/drag-handle-button-small.tsx"
|
|
391
|
+
],
|
|
392
|
+
"@atlaskit/pragmatic-drag-and-drop-react-accessibility": [
|
|
393
|
+
"../../pragmatic-drag-and-drop/react-accessibility/src"
|
|
394
|
+
],
|
|
395
|
+
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": [
|
|
396
|
+
"../../pragmatic-drag-and-drop/react-beautiful-dnd-autoscroll/src/index.ts"
|
|
397
|
+
],
|
|
398
|
+
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration": [
|
|
399
|
+
"../../pragmatic-drag-and-drop/react-beautiful-dnd-migration/src/index.ts"
|
|
400
|
+
],
|
|
401
|
+
"@atlaskit/pragmatic-drag-and-drop-react-indicator/box": [
|
|
402
|
+
"../../pragmatic-drag-and-drop/react-indicator/src/box.tsx"
|
|
403
|
+
],
|
|
404
|
+
"@atlaskit/pragmatic-drag-and-drop-react-indicator/box-without-terminal": [
|
|
405
|
+
"../../pragmatic-drag-and-drop/react-indicator/src/box-without-terminal.tsx"
|
|
406
|
+
],
|
|
407
|
+
"@atlaskit/pragmatic-drag-and-drop-react-indicator/types": [
|
|
408
|
+
"../../pragmatic-drag-and-drop/react-indicator/src/types.ts"
|
|
409
|
+
],
|
|
410
|
+
"@atlaskit/pragmatic-drag-and-drop-react-indicator/tree-item": [
|
|
411
|
+
"../../pragmatic-drag-and-drop/react-indicator/src/tree-item.tsx"
|
|
412
|
+
],
|
|
413
|
+
"@atlaskit/pragmatic-drag-and-drop-react-indicator": [
|
|
414
|
+
"../../pragmatic-drag-and-drop/react-indicator/src/index.ts"
|
|
415
|
+
],
|
|
416
|
+
"@atlaskit/primitives/box": [
|
|
417
|
+
"../../design-system/primitives/src/components/box.tsx"
|
|
418
|
+
],
|
|
419
|
+
"@atlaskit/primitives/stack": [
|
|
420
|
+
"../../design-system/primitives/src/components/stack.tsx"
|
|
421
|
+
],
|
|
422
|
+
"@atlaskit/primitives/inline": [
|
|
423
|
+
"../../design-system/primitives/src/components/inline.tsx"
|
|
424
|
+
],
|
|
425
|
+
"@atlaskit/primitives/text": [
|
|
426
|
+
"../../design-system/primitives/src/components/text.tsx"
|
|
427
|
+
],
|
|
428
|
+
"@atlaskit/primitives/pressable": [
|
|
429
|
+
"../../design-system/primitives/src/components/pressable.tsx"
|
|
430
|
+
],
|
|
431
|
+
"@atlaskit/primitives/link": [
|
|
432
|
+
"../../design-system/primitives/src/components/link.tsx"
|
|
433
|
+
],
|
|
434
|
+
"@atlaskit/primitives/responsive": [
|
|
435
|
+
"../../design-system/primitives/src/responsive/index.tsx"
|
|
436
|
+
],
|
|
437
|
+
"@atlaskit/primitives": [
|
|
438
|
+
"../../design-system/primitives/src/index.tsx"
|
|
439
|
+
],
|
|
440
|
+
"@atlaskit/theme/deprecated-provider-please-do-not-use": [
|
|
441
|
+
"../../design-system/theme/src/deprecated-provider-please-do-not-use.tsx"
|
|
442
|
+
],
|
|
443
|
+
"@atlaskit/theme/color-palettes": [
|
|
444
|
+
"../../design-system/theme/src/color-palettes.tsx"
|
|
445
|
+
],
|
|
446
|
+
"@atlaskit/theme/colors": [
|
|
447
|
+
"../../design-system/theme/src/colors.tsx"
|
|
448
|
+
],
|
|
449
|
+
"@atlaskit/theme/components": [
|
|
450
|
+
"../../design-system/theme/src/components.tsx"
|
|
451
|
+
],
|
|
452
|
+
"@atlaskit/theme/constants": [
|
|
453
|
+
"../../design-system/theme/src/constants.tsx"
|
|
454
|
+
],
|
|
455
|
+
"@atlaskit/theme/elevation": [
|
|
456
|
+
"../../design-system/theme/src/elevation.tsx"
|
|
457
|
+
],
|
|
458
|
+
"@atlaskit/theme/types": [
|
|
459
|
+
"../../design-system/theme/src/types.tsx"
|
|
460
|
+
],
|
|
461
|
+
"@atlaskit/theme/typography": [
|
|
462
|
+
"../../design-system/theme/src/typography.tsx"
|
|
463
|
+
],
|
|
464
|
+
"@atlaskit/theme": [
|
|
465
|
+
"../../design-system/theme/src"
|
|
466
|
+
],
|
|
467
|
+
"@atlaskit/toggle": [
|
|
468
|
+
"../../design-system/toggle/src/index.tsx"
|
|
469
|
+
],
|
|
470
|
+
"@atlaskit/tokens/custom-themes": [
|
|
471
|
+
"../../design-system/tokens/src/entry-points/custom-themes.tsx"
|
|
472
|
+
],
|
|
473
|
+
"@atlaskit/tokens/figma/atlassian-light.json": [
|
|
474
|
+
"../../design-system/tokens/figma/atlassian-light.json"
|
|
475
|
+
],
|
|
476
|
+
"@atlaskit/tokens/figma/atlassian-dark.json": [
|
|
477
|
+
"../../design-system/tokens/figma/atlassian-dark.json"
|
|
478
|
+
],
|
|
479
|
+
"@atlaskit/tokens/palettes-raw": [
|
|
480
|
+
"../../design-system/tokens/src/entry-points/palettes-raw.tsx"
|
|
481
|
+
],
|
|
482
|
+
"@atlaskit/tokens/tokens-raw": [
|
|
483
|
+
"../../design-system/tokens/src/entry-points/tokens-raw.tsx"
|
|
484
|
+
],
|
|
485
|
+
"@atlaskit/tokens/token-ids": [
|
|
486
|
+
"../../design-system/tokens/src/entry-points/token-ids.tsx"
|
|
487
|
+
],
|
|
488
|
+
"@atlaskit/tokens/token-names": [
|
|
489
|
+
"../../design-system/tokens/src/entry-points/token-names.tsx"
|
|
490
|
+
],
|
|
491
|
+
"@atlaskit/tokens/token-order": [
|
|
492
|
+
"../../design-system/tokens/src/entry-points/token-order.tsx"
|
|
493
|
+
],
|
|
494
|
+
"@atlaskit/tokens/token-default-values": [
|
|
495
|
+
"../../design-system/tokens/src/entry-points/token-default-values.tsx"
|
|
496
|
+
],
|
|
497
|
+
"@atlaskit/tokens/rename-mapping": [
|
|
498
|
+
"../../design-system/tokens/src/entry-points/rename-mapping.tsx"
|
|
499
|
+
],
|
|
500
|
+
"@atlaskit/tokens/babel-plugin": [
|
|
501
|
+
"../../design-system/tokens/src/entry-points/babel-plugin.tsx"
|
|
502
|
+
],
|
|
503
|
+
"@atlaskit/tokens/css-type-schema": [
|
|
504
|
+
"../../design-system/tokens/src/entry-points/css-type-schema.codegen.tsx"
|
|
505
|
+
],
|
|
506
|
+
"@atlaskit/tokens": [
|
|
507
|
+
"../../design-system/tokens/src/index.tsx"
|
|
508
|
+
],
|
|
509
|
+
"@atlaskit/tooltip/Tooltip": [
|
|
510
|
+
"../../design-system/tooltip/src/Tooltip.tsx"
|
|
511
|
+
],
|
|
512
|
+
"@atlaskit/tooltip/TooltipContainer": [
|
|
513
|
+
"../../design-system/tooltip/src/TooltipContainer.tsx"
|
|
514
|
+
],
|
|
515
|
+
"@atlaskit/tooltip/TooltipPrimitive": [
|
|
516
|
+
"../../design-system/tooltip/src/TooltipPrimitive.tsx"
|
|
517
|
+
],
|
|
518
|
+
"@atlaskit/tooltip/types": [
|
|
519
|
+
"../../design-system/tooltip/src/types.tsx"
|
|
520
|
+
],
|
|
521
|
+
"@atlaskit/tooltip/utilities": [
|
|
522
|
+
"../../design-system/tooltip/src/utilities.ts"
|
|
523
|
+
],
|
|
524
|
+
"@atlaskit/tooltip": [
|
|
525
|
+
"../../design-system/tooltip/src/index.ts"
|
|
526
|
+
],
|
|
527
|
+
"@atlaskit/analytics-next/types": [
|
|
528
|
+
"../../analytics/analytics-next/src/types.ts"
|
|
529
|
+
],
|
|
530
|
+
"@atlaskit/analytics-next/AnalyticsContext": [
|
|
531
|
+
"../../analytics/analytics-next/src/components/AnalyticsContext/index.tsx"
|
|
532
|
+
],
|
|
533
|
+
"@atlaskit/analytics-next/AnalyticsListener": [
|
|
534
|
+
"../../analytics/analytics-next/src/components/AnalyticsListener/index.tsx"
|
|
535
|
+
],
|
|
536
|
+
"@atlaskit/analytics-next/AnalyticsErrorBoundary": [
|
|
537
|
+
"../../analytics/analytics-next/src/components/AnalyticsErrorBoundary.tsx"
|
|
538
|
+
],
|
|
539
|
+
"@atlaskit/analytics-next/withAnalyticsEvents": [
|
|
540
|
+
"../../analytics/analytics-next/src/hocs/withAnalyticsEvents.tsx"
|
|
541
|
+
],
|
|
542
|
+
"@atlaskit/analytics-next/withAnalyticsContext": [
|
|
543
|
+
"../../analytics/analytics-next/src/hocs/withAnalyticsContext.tsx"
|
|
544
|
+
],
|
|
545
|
+
"@atlaskit/analytics-next/usePlatformLeafEventHandler": [
|
|
546
|
+
"../../analytics/analytics-next/src/hooks/usePlatformLeafEventHandler.ts"
|
|
547
|
+
],
|
|
548
|
+
"@atlaskit/analytics-next/useAnalyticsEvents": [
|
|
549
|
+
"../../analytics/analytics-next/src/hooks/useAnalyticsEvents.ts"
|
|
550
|
+
],
|
|
551
|
+
"@atlaskit/analytics-next/useCallbackWithAnalytics": [
|
|
552
|
+
"../../analytics/analytics-next/src/hooks/useCallbackWithAnalytics.ts"
|
|
553
|
+
],
|
|
554
|
+
"@atlaskit/analytics-next/usePatchedProps": [
|
|
555
|
+
"../../analytics/analytics-next/src/hooks/usePatchedProps.ts"
|
|
556
|
+
],
|
|
557
|
+
"@atlaskit/analytics-next/AnalyticsEvent": [
|
|
558
|
+
"../../analytics/analytics-next/src/events/AnalyticsEvent.ts"
|
|
559
|
+
],
|
|
560
|
+
"@atlaskit/analytics-next/UIAnalyticsEvent": [
|
|
561
|
+
"../../analytics/analytics-next/src/events/UIAnalyticsEvent.ts"
|
|
562
|
+
],
|
|
563
|
+
"@atlaskit/analytics-next/createAndFireEvents": [
|
|
564
|
+
"../../analytics/analytics-next/src/utils/createAndFireEvent.ts"
|
|
565
|
+
],
|
|
566
|
+
"@atlaskit/analytics-next": [
|
|
567
|
+
"../../analytics/analytics-next/src/index.ts"
|
|
568
|
+
],
|
|
569
|
+
"@atlaskit/editor-plugin-decorations": [
|
|
570
|
+
"../editor-plugin-decorations/src/index.ts"
|
|
571
|
+
],
|
|
572
|
+
"@atlaskit/editor-plugin-feature-flags": [
|
|
573
|
+
"../editor-plugin-feature-flags/src/index.ts"
|
|
574
|
+
],
|
|
575
|
+
"@atlaskit/editor-plugin-grid": [
|
|
576
|
+
"../editor-plugin-grid/src/index.ts"
|
|
577
|
+
],
|
|
578
|
+
"@atlaskit/editor-plugin-hyperlink": [
|
|
579
|
+
"../editor-plugin-hyperlink/src/index.ts"
|
|
580
|
+
],
|
|
581
|
+
"@atlaskit/visual-regression": [
|
|
582
|
+
"../../../build/test-tooling/visual-regression/src"
|
|
583
|
+
],
|
|
584
|
+
"@atlassian/feature-flags-test-utils": [
|
|
585
|
+
"../../platform/feature-flags-test-utils/src/index.ts"
|
|
586
|
+
],
|
|
587
|
+
"@atlaskit/editor-plugin-table/types": [
|
|
588
|
+
"src/types.ts"
|
|
589
|
+
],
|
|
590
|
+
"@atlaskit/editor-plugin-table/ui/common-styles": [
|
|
591
|
+
"src/ui/common-styles.ts"
|
|
592
|
+
],
|
|
593
|
+
"@atlaskit/editor-plugin-table/ui/consts": [
|
|
594
|
+
"src/ui/consts.ts"
|
|
595
|
+
],
|
|
596
|
+
"@atlaskit/editor-plugin-table/plugin-key": [
|
|
597
|
+
"src/pm-plugins/plugin-key.ts"
|
|
598
|
+
],
|
|
599
|
+
"@atlaskit/editor-plugin-table/commands": [
|
|
600
|
+
"src/commands/index.ts"
|
|
601
|
+
],
|
|
602
|
+
"@atlaskit/editor-plugin-table": [
|
|
603
|
+
"./src"
|
|
604
|
+
]
|
|
605
|
+
}
|
|
13
606
|
}
|
|
14
|
-
}
|
|
607
|
+
}
|