@atlaskit/editor-shared-styles 3.10.73 → 3.11.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/constants/package.json +17 -0
  3. package/constants/types/package.json +17 -0
  4. package/dist/cjs/entry-points/constants-types.js +1 -0
  5. package/dist/cjs/entry-points/constants.js +534 -0
  6. package/dist/cjs/entry-points/overflow-shadow.js +12 -0
  7. package/dist/cjs/entry-points/scrollbar.js +12 -0
  8. package/dist/cjs/entry-points/selection-types.js +12 -0
  9. package/dist/cjs/entry-points/selection-utils.js +18 -0
  10. package/dist/cjs/entry-points/shortcut-main.js +12 -0
  11. package/dist/cjs/entry-points/utils.js +18 -0
  12. package/dist/es2019/entry-points/constants-types.js +0 -0
  13. package/dist/es2019/entry-points/constants.js +2 -0
  14. package/dist/es2019/entry-points/overflow-shadow.js +2 -0
  15. package/dist/es2019/entry-points/scrollbar.js +2 -0
  16. package/dist/es2019/entry-points/selection-types.js +2 -0
  17. package/dist/es2019/entry-points/selection-utils.js +2 -0
  18. package/dist/es2019/entry-points/shortcut-main.js +2 -0
  19. package/dist/es2019/entry-points/utils.js +2 -0
  20. package/dist/esm/entry-points/constants-types.js +0 -0
  21. package/dist/esm/entry-points/constants.js +2 -0
  22. package/dist/esm/entry-points/overflow-shadow.js +2 -0
  23. package/dist/esm/entry-points/scrollbar.js +2 -0
  24. package/dist/esm/entry-points/selection-types.js +2 -0
  25. package/dist/esm/entry-points/selection-utils.js +2 -0
  26. package/dist/esm/entry-points/shortcut-main.js +2 -0
  27. package/dist/esm/entry-points/utils.js +2 -0
  28. package/dist/types/entry-points/constants-types.d.ts +1 -0
  29. package/dist/types/entry-points/constants.d.ts +1 -0
  30. package/dist/types/entry-points/overflow-shadow.d.ts +1 -0
  31. package/dist/types/entry-points/scrollbar.d.ts +1 -0
  32. package/dist/types/entry-points/selection-types.d.ts +1 -0
  33. package/dist/types/entry-points/selection-utils.d.ts +1 -0
  34. package/dist/types/entry-points/shortcut-main.d.ts +1 -0
  35. package/dist/types/entry-points/utils.d.ts +1 -0
  36. package/dist/types-ts4.5/entry-points/constants-types.d.ts +1 -0
  37. package/dist/types-ts4.5/entry-points/constants.d.ts +1 -0
  38. package/dist/types-ts4.5/entry-points/overflow-shadow.d.ts +1 -0
  39. package/dist/types-ts4.5/entry-points/scrollbar.d.ts +1 -0
  40. package/dist/types-ts4.5/entry-points/selection-types.d.ts +1 -0
  41. package/dist/types-ts4.5/entry-points/selection-utils.d.ts +1 -0
  42. package/dist/types-ts4.5/entry-points/shortcut-main.d.ts +1 -0
  43. package/dist/types-ts4.5/entry-points/utils.d.ts +1 -0
  44. package/overflow-shadow/package.json +17 -0
  45. package/package.json +2 -2
  46. package/scrollbar/package.json +5 -5
  47. package/selection/types/package.json +17 -0
  48. package/selection/utils/package.json +17 -0
  49. package/shortcut/main/package.json +17 -0
  50. package/utils/package.json +17 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @atlaskit/editor-shared-styles
2
2
 
3
+ ## 3.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`7b2ab46c79d94`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7b2ab46c79d94) -
8
+ Autofix: add explicit package exports (barrel removal)
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 3.10.74
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+
3
20
  ## 3.10.73
4
21
 
5
22
  ### Patch Changes
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-shared-styles/constants",
3
+ "main": "../dist/cjs/entry-points/constants.js",
4
+ "module": "../dist/esm/entry-points/constants.js",
5
+ "module:es2019": "../dist/es2019/entry-points/constants.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/constants.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/constants.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-shared-styles/constants/types",
3
+ "main": "../../dist/cjs/entry-points/constants-types.js",
4
+ "module": "../../dist/esm/entry-points/constants-types.js",
5
+ "module:es2019": "../../dist/es2019/entry-points/constants-types.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../../dist/types/entry-points/constants-types.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../../dist/types-ts4.5/entry-points/constants-types.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,534 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "ATLASSIAN_NAVIGATION_HEIGHT", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _consts.ATLASSIAN_NAVIGATION_HEIGHT;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "DEFAULT_EMBED_CARD_HEIGHT", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _consts.DEFAULT_EMBED_CARD_HEIGHT;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "DEFAULT_EMBED_CARD_WIDTH", {
19
+ enumerable: true,
20
+ get: function get() {
21
+ return _consts.DEFAULT_EMBED_CARD_WIDTH;
22
+ }
23
+ });
24
+ Object.defineProperty(exports, "FULL_PAGE_EDITOR_TOOLBAR_HEIGHT", {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return _consts.FULL_PAGE_EDITOR_TOOLBAR_HEIGHT;
28
+ }
29
+ });
30
+ Object.defineProperty(exports, "MAX_BROWSER_SCROLLBAR_HEIGHT", {
31
+ enumerable: true,
32
+ get: function get() {
33
+ return _consts.MAX_BROWSER_SCROLLBAR_HEIGHT;
34
+ }
35
+ });
36
+ Object.defineProperty(exports, "VIEWPORT_SIZES", {
37
+ enumerable: true,
38
+ get: function get() {
39
+ return _consts.VIEWPORT_SIZES;
40
+ }
41
+ });
42
+ Object.defineProperty(exports, "akEditorBlockquoteBorderColor", {
43
+ enumerable: true,
44
+ get: function get() {
45
+ return _consts.akEditorBlockquoteBorderColor;
46
+ }
47
+ });
48
+ Object.defineProperty(exports, "akEditorBreakoutPadding", {
49
+ enumerable: true,
50
+ get: function get() {
51
+ return _consts.akEditorBreakoutPadding;
52
+ }
53
+ });
54
+ Object.defineProperty(exports, "akEditorCalculatedWideLayoutWidth", {
55
+ enumerable: true,
56
+ get: function get() {
57
+ return _consts.akEditorCalculatedWideLayoutWidth;
58
+ }
59
+ });
60
+ Object.defineProperty(exports, "akEditorCalculatedWideLayoutWidthSmallViewport", {
61
+ enumerable: true,
62
+ get: function get() {
63
+ return _consts.akEditorCalculatedWideLayoutWidthSmallViewport;
64
+ }
65
+ });
66
+ Object.defineProperty(exports, "akEditorCodeBackground", {
67
+ enumerable: true,
68
+ get: function get() {
69
+ return _consts.akEditorCodeBackground;
70
+ }
71
+ });
72
+ Object.defineProperty(exports, "akEditorCodeBlockPadding", {
73
+ enumerable: true,
74
+ get: function get() {
75
+ return _consts.akEditorCodeBlockPadding;
76
+ }
77
+ });
78
+ Object.defineProperty(exports, "akEditorCodeFontFamily", {
79
+ enumerable: true,
80
+ get: function get() {
81
+ return _consts.akEditorCodeFontFamily;
82
+ }
83
+ });
84
+ Object.defineProperty(exports, "akEditorCodeInlinePadding", {
85
+ enumerable: true,
86
+ get: function get() {
87
+ return _consts.akEditorCodeInlinePadding;
88
+ }
89
+ });
90
+ Object.defineProperty(exports, "akEditorContextPanelWidth", {
91
+ enumerable: true,
92
+ get: function get() {
93
+ return _consts.akEditorContextPanelWidth;
94
+ }
95
+ });
96
+ Object.defineProperty(exports, "akEditorDefaultLayoutWidth", {
97
+ enumerable: true,
98
+ get: function get() {
99
+ return _consts.akEditorDefaultLayoutWidth;
100
+ }
101
+ });
102
+ Object.defineProperty(exports, "akEditorDeleteBackground", {
103
+ enumerable: true,
104
+ get: function get() {
105
+ return _consts.akEditorDeleteBackground;
106
+ }
107
+ });
108
+ Object.defineProperty(exports, "akEditorDeleteBackgroundWithOpacity", {
109
+ enumerable: true,
110
+ get: function get() {
111
+ return _consts.akEditorDeleteBackgroundWithOpacity;
112
+ }
113
+ });
114
+ Object.defineProperty(exports, "akEditorDeleteBorder", {
115
+ enumerable: true,
116
+ get: function get() {
117
+ return _consts.akEditorDeleteBorder;
118
+ }
119
+ });
120
+ Object.defineProperty(exports, "akEditorDeleteIconColor", {
121
+ enumerable: true,
122
+ get: function get() {
123
+ return _consts.akEditorDeleteIconColor;
124
+ }
125
+ });
126
+ Object.defineProperty(exports, "akEditorFloatingDialogZIndex", {
127
+ enumerable: true,
128
+ get: function get() {
129
+ return _consts.akEditorFloatingDialogZIndex;
130
+ }
131
+ });
132
+ Object.defineProperty(exports, "akEditorFloatingOverlapPanelZIndex", {
133
+ enumerable: true,
134
+ get: function get() {
135
+ return _consts.akEditorFloatingOverlapPanelZIndex;
136
+ }
137
+ });
138
+ Object.defineProperty(exports, "akEditorFloatingPanelZIndex", {
139
+ enumerable: true,
140
+ get: function get() {
141
+ return _consts.akEditorFloatingPanelZIndex;
142
+ }
143
+ });
144
+ Object.defineProperty(exports, "akEditorFullPageDefaultFontSize", {
145
+ enumerable: true,
146
+ get: function get() {
147
+ return _consts.akEditorFullPageDefaultFontSize;
148
+ }
149
+ });
150
+ Object.defineProperty(exports, "akEditorFullPageDenseFontSize", {
151
+ enumerable: true,
152
+ get: function get() {
153
+ return _consts.akEditorFullPageDenseFontSize;
154
+ }
155
+ });
156
+ Object.defineProperty(exports, "akEditorFullPageMaxWidth", {
157
+ enumerable: true,
158
+ get: function get() {
159
+ return _consts.akEditorFullPageMaxWidth;
160
+ }
161
+ });
162
+ Object.defineProperty(exports, "akEditorFullPageNarrowBreakout", {
163
+ enumerable: true,
164
+ get: function get() {
165
+ return _consts.akEditorFullPageNarrowBreakout;
166
+ }
167
+ });
168
+ Object.defineProperty(exports, "akEditorFullPageToolbarHeight", {
169
+ enumerable: true,
170
+ get: function get() {
171
+ return _consts.akEditorFullPageToolbarHeight;
172
+ }
173
+ });
174
+ Object.defineProperty(exports, "akEditorFullWidthLayoutLineLength", {
175
+ enumerable: true,
176
+ get: function get() {
177
+ return _consts.akEditorFullWidthLayoutLineLength;
178
+ }
179
+ });
180
+ Object.defineProperty(exports, "akEditorFullWidthLayoutWidth", {
181
+ enumerable: true,
182
+ get: function get() {
183
+ return _consts.akEditorFullWidthLayoutWidth;
184
+ }
185
+ });
186
+ Object.defineProperty(exports, "akEditorGridLineZIndex", {
187
+ enumerable: true,
188
+ get: function get() {
189
+ return _consts.akEditorGridLineZIndex;
190
+ }
191
+ });
192
+ Object.defineProperty(exports, "akEditorGutterPadding", {
193
+ enumerable: true,
194
+ get: function get() {
195
+ return _consts.akEditorGutterPadding;
196
+ }
197
+ });
198
+ Object.defineProperty(exports, "akEditorGutterPaddingDynamic", {
199
+ enumerable: true,
200
+ get: function get() {
201
+ return _consts.akEditorGutterPaddingDynamic;
202
+ }
203
+ });
204
+ Object.defineProperty(exports, "akEditorGutterPaddingReduced", {
205
+ enumerable: true,
206
+ get: function get() {
207
+ return _consts.akEditorGutterPaddingReduced;
208
+ }
209
+ });
210
+ Object.defineProperty(exports, "akEditorLineHeight", {
211
+ enumerable: true,
212
+ get: function get() {
213
+ return _consts.akEditorLineHeight;
214
+ }
215
+ });
216
+ Object.defineProperty(exports, "akEditorMaxLayoutWidth", {
217
+ enumerable: true,
218
+ get: function get() {
219
+ return _consts.akEditorMaxLayoutWidth;
220
+ }
221
+ });
222
+ Object.defineProperty(exports, "akEditorMaxWidthLayoutWidth", {
223
+ enumerable: true,
224
+ get: function get() {
225
+ return _consts.akEditorMaxWidthLayoutWidth;
226
+ }
227
+ });
228
+ Object.defineProperty(exports, "akEditorMediaResizeHandlerPadding", {
229
+ enumerable: true,
230
+ get: function get() {
231
+ return _consts.akEditorMediaResizeHandlerPadding;
232
+ }
233
+ });
234
+ Object.defineProperty(exports, "akEditorMediaResizeHandlerPaddingWide", {
235
+ enumerable: true,
236
+ get: function get() {
237
+ return _consts.akEditorMediaResizeHandlerPaddingWide;
238
+ }
239
+ });
240
+ Object.defineProperty(exports, "akEditorMenuZIndex", {
241
+ enumerable: true,
242
+ get: function get() {
243
+ return _consts.akEditorMenuZIndex;
244
+ }
245
+ });
246
+ Object.defineProperty(exports, "akEditorMobileBreakoutPoint", {
247
+ enumerable: true,
248
+ get: function get() {
249
+ return _consts.akEditorMobileBreakoutPoint;
250
+ }
251
+ });
252
+ Object.defineProperty(exports, "akEditorMobileMaxWidth", {
253
+ enumerable: true,
254
+ get: function get() {
255
+ return _consts.akEditorMobileMaxWidth;
256
+ }
257
+ });
258
+ Object.defineProperty(exports, "akEditorRuleBorderRadius", {
259
+ enumerable: true,
260
+ get: function get() {
261
+ return _consts.akEditorRuleBorderRadius;
262
+ }
263
+ });
264
+ Object.defineProperty(exports, "akEditorSelectedBlanketOpacity", {
265
+ enumerable: true,
266
+ get: function get() {
267
+ return _consts.akEditorSelectedBlanketOpacity;
268
+ }
269
+ });
270
+ Object.defineProperty(exports, "akEditorSelectedBoldBoxShadow", {
271
+ enumerable: true,
272
+ get: function get() {
273
+ return _consts.akEditorSelectedBoldBoxShadow;
274
+ }
275
+ });
276
+ Object.defineProperty(exports, "akEditorSelectedBorder", {
277
+ enumerable: true,
278
+ get: function get() {
279
+ return _consts.akEditorSelectedBorder;
280
+ }
281
+ });
282
+ Object.defineProperty(exports, "akEditorSelectedBorderBoldSize", {
283
+ enumerable: true,
284
+ get: function get() {
285
+ return _consts.akEditorSelectedBorderBoldSize;
286
+ }
287
+ });
288
+ Object.defineProperty(exports, "akEditorSelectedBorderColor", {
289
+ enumerable: true,
290
+ get: function get() {
291
+ return _consts.akEditorSelectedBorderColor;
292
+ }
293
+ });
294
+ Object.defineProperty(exports, "akEditorSelectedBorderSize", {
295
+ enumerable: true,
296
+ get: function get() {
297
+ return _consts.akEditorSelectedBorderSize;
298
+ }
299
+ });
300
+ Object.defineProperty(exports, "akEditorSelectedBoxShadow", {
301
+ enumerable: true,
302
+ get: function get() {
303
+ return _consts.akEditorSelectedBoxShadow;
304
+ }
305
+ });
306
+ Object.defineProperty(exports, "akEditorSelectedNodeClassName", {
307
+ enumerable: true,
308
+ get: function get() {
309
+ return _consts.akEditorSelectedNodeClassName;
310
+ }
311
+ });
312
+ Object.defineProperty(exports, "akEditorShadowZIndex", {
313
+ enumerable: true,
314
+ get: function get() {
315
+ return _consts.akEditorShadowZIndex;
316
+ }
317
+ });
318
+ Object.defineProperty(exports, "akEditorSmallZIndex", {
319
+ enumerable: true,
320
+ get: function get() {
321
+ return _consts.akEditorSmallZIndex;
322
+ }
323
+ });
324
+ Object.defineProperty(exports, "akEditorStickyHeaderZIndex", {
325
+ enumerable: true,
326
+ get: function get() {
327
+ return _consts.akEditorStickyHeaderZIndex;
328
+ }
329
+ });
330
+ Object.defineProperty(exports, "akEditorSubtleAccent", {
331
+ enumerable: true,
332
+ get: function get() {
333
+ return _consts.akEditorSubtleAccent;
334
+ }
335
+ });
336
+ Object.defineProperty(exports, "akEditorSwoopCubicBezier", {
337
+ enumerable: true,
338
+ get: function get() {
339
+ return _consts.akEditorSwoopCubicBezier;
340
+ }
341
+ });
342
+ Object.defineProperty(exports, "akEditorTableBorder", {
343
+ enumerable: true,
344
+ get: function get() {
345
+ return _consts.akEditorTableBorder;
346
+ }
347
+ });
348
+ Object.defineProperty(exports, "akEditorTableBorderRadius", {
349
+ enumerable: true,
350
+ get: function get() {
351
+ return _consts.akEditorTableBorderRadius;
352
+ }
353
+ });
354
+ Object.defineProperty(exports, "akEditorTableBorderSelected", {
355
+ enumerable: true,
356
+ get: function get() {
357
+ return _consts.akEditorTableBorderSelected;
358
+ }
359
+ });
360
+ Object.defineProperty(exports, "akEditorTableCellBackgroundOpacity", {
361
+ enumerable: true,
362
+ get: function get() {
363
+ return _consts.akEditorTableCellBackgroundOpacity;
364
+ }
365
+ });
366
+ Object.defineProperty(exports, "akEditorTableCellBlanketDeleted", {
367
+ enumerable: true,
368
+ get: function get() {
369
+ return _consts.akEditorTableCellBlanketDeleted;
370
+ }
371
+ });
372
+ Object.defineProperty(exports, "akEditorTableCellBlanketSelected", {
373
+ enumerable: true,
374
+ get: function get() {
375
+ return _consts.akEditorTableCellBlanketSelected;
376
+ }
377
+ });
378
+ Object.defineProperty(exports, "akEditorTableCellMinWidth", {
379
+ enumerable: true,
380
+ get: function get() {
381
+ return _consts.akEditorTableCellMinWidth;
382
+ }
383
+ });
384
+ Object.defineProperty(exports, "akEditorTableCellOnStickyHeaderZIndex", {
385
+ enumerable: true,
386
+ get: function get() {
387
+ return _consts.akEditorTableCellOnStickyHeaderZIndex;
388
+ }
389
+ });
390
+ Object.defineProperty(exports, "akEditorTableHeaderCellBackground", {
391
+ enumerable: true,
392
+ get: function get() {
393
+ return _consts.akEditorTableHeaderCellBackground;
394
+ }
395
+ });
396
+ Object.defineProperty(exports, "akEditorTableHeaderCellBackgroundDark", {
397
+ enumerable: true,
398
+ get: function get() {
399
+ return _consts.akEditorTableHeaderCellBackgroundDark;
400
+ }
401
+ });
402
+ Object.defineProperty(exports, "akEditorTableLegacyCellMinWidth", {
403
+ enumerable: true,
404
+ get: function get() {
405
+ return _consts.akEditorTableLegacyCellMinWidth;
406
+ }
407
+ });
408
+ Object.defineProperty(exports, "akEditorTableNumberColumnWidth", {
409
+ enumerable: true,
410
+ get: function get() {
411
+ return _consts.akEditorTableNumberColumnWidth;
412
+ }
413
+ });
414
+ Object.defineProperty(exports, "akEditorTableToolbar", {
415
+ enumerable: true,
416
+ get: function get() {
417
+ return _consts.akEditorTableToolbar;
418
+ }
419
+ });
420
+ Object.defineProperty(exports, "akEditorTableToolbarSize", {
421
+ enumerable: true,
422
+ get: function get() {
423
+ return _consts.akEditorTableToolbarSize;
424
+ }
425
+ });
426
+ Object.defineProperty(exports, "akEditorToolbarKeylineHeight", {
427
+ enumerable: true,
428
+ get: function get() {
429
+ return _consts.akEditorToolbarKeylineHeight;
430
+ }
431
+ });
432
+ Object.defineProperty(exports, "akEditorUnitZIndex", {
433
+ enumerable: true,
434
+ get: function get() {
435
+ return _consts.akEditorUnitZIndex;
436
+ }
437
+ });
438
+ Object.defineProperty(exports, "akEditorWideLayoutWidth", {
439
+ enumerable: true,
440
+ get: function get() {
441
+ return _consts.akEditorWideLayoutWidth;
442
+ }
443
+ });
444
+ Object.defineProperty(exports, "akEditorWrappedNodeZIndex", {
445
+ enumerable: true,
446
+ get: function get() {
447
+ return _consts.akEditorWrappedNodeZIndex;
448
+ }
449
+ });
450
+ Object.defineProperty(exports, "akLayoutGutterOffset", {
451
+ enumerable: true,
452
+ get: function get() {
453
+ return _consts.akLayoutGutterOffset;
454
+ }
455
+ });
456
+ Object.defineProperty(exports, "akRichMediaResizeZIndex", {
457
+ enumerable: true,
458
+ get: function get() {
459
+ return _consts.akRichMediaResizeZIndex;
460
+ }
461
+ });
462
+ Object.defineProperty(exports, "avatarColors", {
463
+ enumerable: true,
464
+ get: function get() {
465
+ return _consts.avatarColors;
466
+ }
467
+ });
468
+ Object.defineProperty(exports, "blockNodesVerticalMargin", {
469
+ enumerable: true,
470
+ get: function get() {
471
+ return _consts.blockNodesVerticalMargin;
472
+ }
473
+ });
474
+ Object.defineProperty(exports, "breakoutWideScaleRatio", {
475
+ enumerable: true,
476
+ get: function get() {
477
+ return _consts.breakoutWideScaleRatio;
478
+ }
479
+ });
480
+ Object.defineProperty(exports, "editorFontSize", {
481
+ enumerable: true,
482
+ get: function get() {
483
+ return _consts.editorFontSize;
484
+ }
485
+ });
486
+ Object.defineProperty(exports, "getTableCellBackgroundDarkModeColors", {
487
+ enumerable: true,
488
+ get: function get() {
489
+ return _consts.getTableCellBackgroundDarkModeColors;
490
+ }
491
+ });
492
+ Object.defineProperty(exports, "gridMediumMaxWidth", {
493
+ enumerable: true,
494
+ get: function get() {
495
+ return _consts.gridMediumMaxWidth;
496
+ }
497
+ });
498
+ Object.defineProperty(exports, "layoutBreakpointWidth", {
499
+ enumerable: true,
500
+ get: function get() {
501
+ return _consts.layoutBreakpointWidth;
502
+ }
503
+ });
504
+ Object.defineProperty(exports, "participantColors", {
505
+ enumerable: true,
506
+ get: function get() {
507
+ return _consts.participantColors;
508
+ }
509
+ });
510
+ Object.defineProperty(exports, "relativeFontSizeToBase16", {
511
+ enumerable: true,
512
+ get: function get() {
513
+ return _consts.relativeFontSizeToBase16;
514
+ }
515
+ });
516
+ Object.defineProperty(exports, "relativeSize", {
517
+ enumerable: true,
518
+ get: function get() {
519
+ return _consts.relativeSize;
520
+ }
521
+ });
522
+ Object.defineProperty(exports, "relativeSizeToBaseFontSize", {
523
+ enumerable: true,
524
+ get: function get() {
525
+ return _consts.relativeSizeToBaseFontSize;
526
+ }
527
+ });
528
+ Object.defineProperty(exports, "scaledBlockNodesVerticalMargin", {
529
+ enumerable: true,
530
+ get: function get() {
531
+ return _consts.scaledBlockNodesVerticalMargin;
532
+ }
533
+ });
534
+ var _consts = require("../consts/consts");
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "overflowShadow", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _overflowShadow.overflowShadow;
10
+ }
11
+ });
12
+ var _overflowShadow = require("../overflow-shadow/overflow-shadow");
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "scrollbarStyles", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _scrollbarStyles.scrollbarStyles;
10
+ }
11
+ });
12
+ var _scrollbarStyles = require("../scrollbar-styles");
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "SelectionStyle", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _types.SelectionStyle;
10
+ }
11
+ });
12
+ var _types = require("../selection/types");
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "getSelectionStyles", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _utils.getSelectionStyles;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "hideNativeBrowserTextSelectionStyles", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _utils.hideNativeBrowserTextSelectionStyles;
16
+ }
17
+ });
18
+ var _utils = require("../selection/utils");
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "shortcutStyle", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _shortcut.shortcutStyle;
10
+ }
11
+ });
12
+ var _shortcut = require("../shortcut/shortcut");
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "getHashCode", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _utils.getHashCode;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "getParticipantColor", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _utils.getParticipantColor;
16
+ }
17
+ });
18
+ var _utils = require("../utils");
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { akEditorBlockquoteBorderColor, akEditorBreakoutPadding, akEditorCodeBackground, akEditorCodeBlockPadding, akEditorCodeFontFamily, akEditorCodeInlinePadding, akEditorContextPanelWidth, akEditorDefaultLayoutWidth, akEditorDeleteBackground, akEditorDeleteBackgroundWithOpacity, akEditorDeleteBorder, akEditorDeleteIconColor, akEditorFloatingDialogZIndex, akEditorFloatingOverlapPanelZIndex, akEditorFloatingPanelZIndex, akEditorFullPageMaxWidth, akEditorFullPageDefaultFontSize, akEditorFullPageDenseFontSize, akEditorFullWidthLayoutWidth, akEditorMaxWidthLayoutWidth, akEditorFullWidthLayoutLineLength, akEditorMaxLayoutWidth, akEditorGridLineZIndex, akEditorGutterPadding, akEditorGutterPaddingDynamic, akEditorGutterPaddingReduced, akEditorFullPageNarrowBreakout, akEditorMediaResizeHandlerPadding, akEditorMediaResizeHandlerPaddingWide, akEditorMenuZIndex, akEditorStickyHeaderZIndex, akEditorMobileBreakoutPoint, akEditorSelectedBoldBoxShadow, akEditorSelectedBorderColor, akEditorSelectedBorderBoldSize, akEditorSelectedBorderSize, akEditorSelectedBorder, akEditorSelectedBoxShadow, akEditorSelectedBlanketOpacity, akEditorSmallZIndex, akEditorShadowZIndex, akEditorSubtleAccent, akEditorSwoopCubicBezier, akEditorTableBorder, akEditorTableBorderRadius, akEditorTableBorderSelected, akEditorTableCellBackgroundOpacity, akEditorTableCellMinWidth, akEditorTableCellOnStickyHeaderZIndex, akEditorTableHeaderCellBackground, akEditorTableHeaderCellBackgroundDark, akEditorTableLegacyCellMinWidth, akEditorTableNumberColumnWidth, akEditorTableToolbar, akEditorTableToolbarSize, akEditorUnitZIndex, akEditorCalculatedWideLayoutWidth, akEditorCalculatedWideLayoutWidthSmallViewport, akEditorWideLayoutWidth, akLayoutGutterOffset, akRichMediaResizeZIndex, avatarColors, participantColors, blockNodesVerticalMargin, scaledBlockNodesVerticalMargin, breakoutWideScaleRatio, editorFontSize, gridMediumMaxWidth, relativeSize, relativeFontSizeToBase16, relativeSizeToBaseFontSize, DEFAULT_EMBED_CARD_HEIGHT, DEFAULT_EMBED_CARD_WIDTH, akEditorLineHeight, akEditorRuleBorderRadius, akEditorSelectedNodeClassName, akEditorToolbarKeylineHeight, MAX_BROWSER_SCROLLBAR_HEIGHT, VIEWPORT_SIZES, akEditorMobileMaxWidth, getTableCellBackgroundDarkModeColors, ATLASSIAN_NAVIGATION_HEIGHT, FULL_PAGE_EDITOR_TOOLBAR_HEIGHT, akEditorFullPageToolbarHeight, akEditorTableCellBlanketSelected, akEditorTableCellBlanketDeleted, akEditorWrappedNodeZIndex, layoutBreakpointWidth } from '../consts/consts';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { overflowShadow } from '../overflow-shadow/overflow-shadow';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { scrollbarStyles } from '../scrollbar-styles';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { SelectionStyle } from '../selection/types';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { getSelectionStyles, hideNativeBrowserTextSelectionStyles } from '../selection/utils';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { shortcutStyle } from '../shortcut/shortcut';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { getHashCode, getParticipantColor } from '../utils';
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { akEditorBlockquoteBorderColor, akEditorBreakoutPadding, akEditorCodeBackground, akEditorCodeBlockPadding, akEditorCodeFontFamily, akEditorCodeInlinePadding, akEditorContextPanelWidth, akEditorDefaultLayoutWidth, akEditorDeleteBackground, akEditorDeleteBackgroundWithOpacity, akEditorDeleteBorder, akEditorDeleteIconColor, akEditorFloatingDialogZIndex, akEditorFloatingOverlapPanelZIndex, akEditorFloatingPanelZIndex, akEditorFullPageMaxWidth, akEditorFullPageDefaultFontSize, akEditorFullPageDenseFontSize, akEditorFullWidthLayoutWidth, akEditorMaxWidthLayoutWidth, akEditorFullWidthLayoutLineLength, akEditorMaxLayoutWidth, akEditorGridLineZIndex, akEditorGutterPadding, akEditorGutterPaddingDynamic, akEditorGutterPaddingReduced, akEditorFullPageNarrowBreakout, akEditorMediaResizeHandlerPadding, akEditorMediaResizeHandlerPaddingWide, akEditorMenuZIndex, akEditorStickyHeaderZIndex, akEditorMobileBreakoutPoint, akEditorSelectedBoldBoxShadow, akEditorSelectedBorderColor, akEditorSelectedBorderBoldSize, akEditorSelectedBorderSize, akEditorSelectedBorder, akEditorSelectedBoxShadow, akEditorSelectedBlanketOpacity, akEditorSmallZIndex, akEditorShadowZIndex, akEditorSubtleAccent, akEditorSwoopCubicBezier, akEditorTableBorder, akEditorTableBorderRadius, akEditorTableBorderSelected, akEditorTableCellBackgroundOpacity, akEditorTableCellMinWidth, akEditorTableCellOnStickyHeaderZIndex, akEditorTableHeaderCellBackground, akEditorTableHeaderCellBackgroundDark, akEditorTableLegacyCellMinWidth, akEditorTableNumberColumnWidth, akEditorTableToolbar, akEditorTableToolbarSize, akEditorUnitZIndex, akEditorCalculatedWideLayoutWidth, akEditorCalculatedWideLayoutWidthSmallViewport, akEditorWideLayoutWidth, akLayoutGutterOffset, akRichMediaResizeZIndex, avatarColors, participantColors, blockNodesVerticalMargin, scaledBlockNodesVerticalMargin, breakoutWideScaleRatio, editorFontSize, gridMediumMaxWidth, relativeSize, relativeFontSizeToBase16, relativeSizeToBaseFontSize, DEFAULT_EMBED_CARD_HEIGHT, DEFAULT_EMBED_CARD_WIDTH, akEditorLineHeight, akEditorRuleBorderRadius, akEditorSelectedNodeClassName, akEditorToolbarKeylineHeight, MAX_BROWSER_SCROLLBAR_HEIGHT, VIEWPORT_SIZES, akEditorMobileMaxWidth, getTableCellBackgroundDarkModeColors, ATLASSIAN_NAVIGATION_HEIGHT, FULL_PAGE_EDITOR_TOOLBAR_HEIGHT, akEditorFullPageToolbarHeight, akEditorTableCellBlanketSelected, akEditorTableCellBlanketDeleted, akEditorWrappedNodeZIndex, layoutBreakpointWidth } from '../consts/consts';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { overflowShadow } from '../overflow-shadow/overflow-shadow';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { scrollbarStyles } from '../scrollbar-styles';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { SelectionStyle } from '../selection/types';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { getSelectionStyles, hideNativeBrowserTextSelectionStyles } from '../selection/utils';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { shortcutStyle } from '../shortcut/shortcut';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { getHashCode, getParticipantColor } from '../utils';
@@ -0,0 +1 @@
1
+ export type { EditorTheme, ParticipantColor } from '../consts/types';
@@ -0,0 +1 @@
1
+ export { akEditorBlockquoteBorderColor, akEditorBreakoutPadding, akEditorCodeBackground, akEditorCodeBlockPadding, akEditorCodeFontFamily, akEditorCodeInlinePadding, akEditorContextPanelWidth, akEditorDefaultLayoutWidth, akEditorDeleteBackground, akEditorDeleteBackgroundWithOpacity, akEditorDeleteBorder, akEditorDeleteIconColor, akEditorFloatingDialogZIndex, akEditorFloatingOverlapPanelZIndex, akEditorFloatingPanelZIndex, akEditorFullPageMaxWidth, akEditorFullPageDefaultFontSize, akEditorFullPageDenseFontSize, akEditorFullWidthLayoutWidth, akEditorMaxWidthLayoutWidth, akEditorFullWidthLayoutLineLength, akEditorMaxLayoutWidth, akEditorGridLineZIndex, akEditorGutterPadding, akEditorGutterPaddingDynamic, akEditorGutterPaddingReduced, akEditorFullPageNarrowBreakout, akEditorMediaResizeHandlerPadding, akEditorMediaResizeHandlerPaddingWide, akEditorMenuZIndex, akEditorStickyHeaderZIndex, akEditorMobileBreakoutPoint, akEditorSelectedBoldBoxShadow, akEditorSelectedBorderColor, akEditorSelectedBorderBoldSize, akEditorSelectedBorderSize, akEditorSelectedBorder, akEditorSelectedBoxShadow, akEditorSelectedBlanketOpacity, akEditorSmallZIndex, akEditorShadowZIndex, akEditorSubtleAccent, akEditorSwoopCubicBezier, akEditorTableBorder, akEditorTableBorderRadius, akEditorTableBorderSelected, akEditorTableCellBackgroundOpacity, akEditorTableCellMinWidth, akEditorTableCellOnStickyHeaderZIndex, akEditorTableHeaderCellBackground, akEditorTableHeaderCellBackgroundDark, akEditorTableLegacyCellMinWidth, akEditorTableNumberColumnWidth, akEditorTableToolbar, akEditorTableToolbarSize, akEditorUnitZIndex, akEditorCalculatedWideLayoutWidth, akEditorCalculatedWideLayoutWidthSmallViewport, akEditorWideLayoutWidth, akLayoutGutterOffset, akRichMediaResizeZIndex, avatarColors, participantColors, blockNodesVerticalMargin, scaledBlockNodesVerticalMargin, breakoutWideScaleRatio, editorFontSize, gridMediumMaxWidth, relativeSize, relativeFontSizeToBase16, relativeSizeToBaseFontSize, DEFAULT_EMBED_CARD_HEIGHT, DEFAULT_EMBED_CARD_WIDTH, akEditorLineHeight, akEditorRuleBorderRadius, akEditorSelectedNodeClassName, akEditorToolbarKeylineHeight, MAX_BROWSER_SCROLLBAR_HEIGHT, VIEWPORT_SIZES, akEditorMobileMaxWidth, getTableCellBackgroundDarkModeColors, ATLASSIAN_NAVIGATION_HEIGHT, FULL_PAGE_EDITOR_TOOLBAR_HEIGHT, akEditorFullPageToolbarHeight, akEditorTableCellBlanketSelected, akEditorTableCellBlanketDeleted, akEditorWrappedNodeZIndex, layoutBreakpointWidth, } from '../consts/consts';
@@ -0,0 +1 @@
1
+ export { overflowShadow } from '../overflow-shadow/overflow-shadow';
@@ -0,0 +1 @@
1
+ export { scrollbarStyles } from '../scrollbar-styles';
@@ -0,0 +1 @@
1
+ export { SelectionStyle } from '../selection/types';
@@ -0,0 +1 @@
1
+ export { getSelectionStyles, hideNativeBrowserTextSelectionStyles } from '../selection/utils';
@@ -0,0 +1 @@
1
+ export { shortcutStyle } from '../shortcut/shortcut';
@@ -0,0 +1 @@
1
+ export { getHashCode, getParticipantColor } from '../utils';
@@ -0,0 +1 @@
1
+ export type { EditorTheme, ParticipantColor } from '../consts/types';
@@ -0,0 +1 @@
1
+ export { akEditorBlockquoteBorderColor, akEditorBreakoutPadding, akEditorCodeBackground, akEditorCodeBlockPadding, akEditorCodeFontFamily, akEditorCodeInlinePadding, akEditorContextPanelWidth, akEditorDefaultLayoutWidth, akEditorDeleteBackground, akEditorDeleteBackgroundWithOpacity, akEditorDeleteBorder, akEditorDeleteIconColor, akEditorFloatingDialogZIndex, akEditorFloatingOverlapPanelZIndex, akEditorFloatingPanelZIndex, akEditorFullPageMaxWidth, akEditorFullPageDefaultFontSize, akEditorFullPageDenseFontSize, akEditorFullWidthLayoutWidth, akEditorMaxWidthLayoutWidth, akEditorFullWidthLayoutLineLength, akEditorMaxLayoutWidth, akEditorGridLineZIndex, akEditorGutterPadding, akEditorGutterPaddingDynamic, akEditorGutterPaddingReduced, akEditorFullPageNarrowBreakout, akEditorMediaResizeHandlerPadding, akEditorMediaResizeHandlerPaddingWide, akEditorMenuZIndex, akEditorStickyHeaderZIndex, akEditorMobileBreakoutPoint, akEditorSelectedBoldBoxShadow, akEditorSelectedBorderColor, akEditorSelectedBorderBoldSize, akEditorSelectedBorderSize, akEditorSelectedBorder, akEditorSelectedBoxShadow, akEditorSelectedBlanketOpacity, akEditorSmallZIndex, akEditorShadowZIndex, akEditorSubtleAccent, akEditorSwoopCubicBezier, akEditorTableBorder, akEditorTableBorderRadius, akEditorTableBorderSelected, akEditorTableCellBackgroundOpacity, akEditorTableCellMinWidth, akEditorTableCellOnStickyHeaderZIndex, akEditorTableHeaderCellBackground, akEditorTableHeaderCellBackgroundDark, akEditorTableLegacyCellMinWidth, akEditorTableNumberColumnWidth, akEditorTableToolbar, akEditorTableToolbarSize, akEditorUnitZIndex, akEditorCalculatedWideLayoutWidth, akEditorCalculatedWideLayoutWidthSmallViewport, akEditorWideLayoutWidth, akLayoutGutterOffset, akRichMediaResizeZIndex, avatarColors, participantColors, blockNodesVerticalMargin, scaledBlockNodesVerticalMargin, breakoutWideScaleRatio, editorFontSize, gridMediumMaxWidth, relativeSize, relativeFontSizeToBase16, relativeSizeToBaseFontSize, DEFAULT_EMBED_CARD_HEIGHT, DEFAULT_EMBED_CARD_WIDTH, akEditorLineHeight, akEditorRuleBorderRadius, akEditorSelectedNodeClassName, akEditorToolbarKeylineHeight, MAX_BROWSER_SCROLLBAR_HEIGHT, VIEWPORT_SIZES, akEditorMobileMaxWidth, getTableCellBackgroundDarkModeColors, ATLASSIAN_NAVIGATION_HEIGHT, FULL_PAGE_EDITOR_TOOLBAR_HEIGHT, akEditorFullPageToolbarHeight, akEditorTableCellBlanketSelected, akEditorTableCellBlanketDeleted, akEditorWrappedNodeZIndex, layoutBreakpointWidth, } from '../consts/consts';
@@ -0,0 +1 @@
1
+ export { overflowShadow } from '../overflow-shadow/overflow-shadow';
@@ -0,0 +1 @@
1
+ export { scrollbarStyles } from '../scrollbar-styles';
@@ -0,0 +1 @@
1
+ export { SelectionStyle } from '../selection/types';
@@ -0,0 +1 @@
1
+ export { getSelectionStyles, hideNativeBrowserTextSelectionStyles } from '../selection/utils';
@@ -0,0 +1 @@
1
+ export { shortcutStyle } from '../shortcut/shortcut';
@@ -0,0 +1 @@
1
+ export { getHashCode, getParticipantColor } from '../utils';
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-shared-styles/overflow-shadow",
3
+ "main": "../dist/cjs/entry-points/overflow-shadow.js",
4
+ "module": "../dist/esm/entry-points/overflow-shadow.js",
5
+ "module:es2019": "../dist/es2019/entry-points/overflow-shadow.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/overflow-shadow.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/overflow-shadow.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-shared-styles",
3
- "version": "3.10.73",
3
+ "version": "3.11.0",
4
4
  "description": "Style values used in the editor/renderer",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@atlaskit/platform-feature-flags": "^1.1.0",
40
- "@atlaskit/tmp-editor-statsig": "^79.0.0",
40
+ "@atlaskit/tmp-editor-statsig": "^80.2.0",
41
41
  "@atlaskit/tokens": "^13.0.0",
42
42
  "@babel/runtime": "^7.0.0",
43
43
  "@emotion/react": "^11.7.1"
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-shared-styles/scrollbar",
3
- "main": "../dist/cjs/scrollbar-styles.js",
4
- "module": "../dist/esm/scrollbar-styles.js",
5
- "module:es2019": "../dist/es2019/scrollbar-styles.js",
3
+ "main": "../dist/cjs/entry-points/scrollbar.js",
4
+ "module": "../dist/esm/entry-points/scrollbar.js",
5
+ "module:es2019": "../dist/es2019/entry-points/scrollbar.js",
6
6
  "sideEffects": [
7
7
  "*.compiled.css"
8
8
  ],
9
- "types": "../dist/types/scrollbar-styles.d.ts",
9
+ "types": "../dist/types/entry-points/scrollbar.d.ts",
10
10
  "typesVersions": {
11
11
  ">=4.5 <5.9": {
12
12
  "*": [
13
- "../dist/types-ts4.5/scrollbar-styles.d.ts"
13
+ "../dist/types-ts4.5/entry-points/scrollbar.d.ts"
14
14
  ]
15
15
  }
16
16
  }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-shared-styles/selection/types",
3
+ "main": "../../dist/cjs/entry-points/selection-types.js",
4
+ "module": "../../dist/esm/entry-points/selection-types.js",
5
+ "module:es2019": "../../dist/es2019/entry-points/selection-types.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../../dist/types/entry-points/selection-types.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../../dist/types-ts4.5/entry-points/selection-types.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-shared-styles/selection/utils",
3
+ "main": "../../dist/cjs/entry-points/selection-utils.js",
4
+ "module": "../../dist/esm/entry-points/selection-utils.js",
5
+ "module:es2019": "../../dist/es2019/entry-points/selection-utils.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../../dist/types/entry-points/selection-utils.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../../dist/types-ts4.5/entry-points/selection-utils.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-shared-styles/shortcut/main",
3
+ "main": "../../dist/cjs/entry-points/shortcut-main.js",
4
+ "module": "../../dist/esm/entry-points/shortcut-main.js",
5
+ "module:es2019": "../../dist/es2019/entry-points/shortcut-main.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../../dist/types/entry-points/shortcut-main.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../../dist/types-ts4.5/entry-points/shortcut-main.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-shared-styles/utils",
3
+ "main": "../dist/cjs/entry-points/utils.js",
4
+ "module": "../dist/esm/entry-points/utils.js",
5
+ "module:es2019": "../dist/es2019/entry-points/utils.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/utils.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/utils.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }