@atlaskit/pragmatic-drag-and-drop 1.1.7 → 1.1.9
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 +17 -0
- package/combine/package.json +1 -1
- package/dist/cjs/adapter/element-adapter.js +1 -1
- package/dist/cjs/adapter/external-adapter.js +1 -1
- package/dist/cjs/adapter/text-selection-adapter.js +1 -1
- package/dist/es2019/adapter/element-adapter.js +1 -1
- package/dist/es2019/adapter/external-adapter.js +1 -1
- package/dist/es2019/adapter/text-selection-adapter.js +1 -1
- package/dist/esm/adapter/element-adapter.js +1 -1
- package/dist/esm/adapter/external-adapter.js +1 -1
- package/dist/esm/adapter/text-selection-adapter.js +1 -1
- package/dist/types/adapter/element-adapter.d.ts +1 -1
- package/dist/types/adapter/text-selection-adapter.d.ts +1 -1
- package/dist/types-ts4.5/adapter/element-adapter.d.ts +1 -1
- package/dist/types-ts4.5/adapter/text-selection-adapter.d.ts +1 -1
- package/element/adapter/package.json +1 -1
- package/element/center-under-pointer/package.json +1 -1
- package/element/disable-native-drag-preview/package.json +1 -1
- package/element/format-urls-for-external/package.json +1 -1
- package/element/pointer-outside-of-preview/package.json +1 -1
- package/element/preserve-offset-on-source/package.json +1 -1
- package/element/scroll-just-enough-into-view/package.json +1 -1
- package/element/set-custom-native-drag-preview/package.json +1 -1
- package/external/adapter/package.json +1 -1
- package/external/file/package.json +1 -1
- package/external/html/package.json +1 -1
- package/external/some/package.json +1 -1
- package/external/text/package.json +1 -1
- package/external/url/package.json +1 -1
- package/once/package.json +1 -1
- package/package.json +2 -2
- package/prevent-unhandled/package.json +1 -1
- package/reorder/package.json +1 -1
- package/text-selection/adapter/package.json +1 -1
- package/types/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/pragmatic-drag-and-drop
|
|
2
2
|
|
|
3
|
+
## 1.1.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#100243](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100243)
|
|
8
|
+
[`1ba7a4e942d4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1ba7a4e942d4) -
|
|
9
|
+
Fixing typos in dev time warnings
|
|
10
|
+
|
|
11
|
+
## 1.1.8
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#100196](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100196)
|
|
16
|
+
[`da322bbbe7f5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/da322bbbe7f5) -
|
|
17
|
+
Setting `sideEffects: true` in `package.json` as a few essential files in `core` have side
|
|
18
|
+
effects. Unfortunately we require side effects to work around browser bugs and strangeness 😅.
|
|
19
|
+
|
|
3
20
|
## 1.1.7
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/combine/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-point/combine.js",
|
|
4
4
|
"module": "../dist/esm/entry-point/combine.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-point/combine.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../dist/types/entry-point/combine.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -56,7 +56,7 @@ var adapter = (0, _makeAdapter.makeAdapter)({
|
|
|
56
56
|
// - Unit tests commonly run in "test"
|
|
57
57
|
if (process.env.NODE_ENV !== 'production') {
|
|
58
58
|
// eslint-disable-next-line no-console
|
|
59
|
-
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have
|
|
59
|
+
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have polyfilled DragEvent.\n - If you are browser testing, ensure you are dispatching drag events correctly.\n\n Please see our testing guides for more information:\n https://atlassian.design/components/pragmatic-drag-and-drop/core-package/testing\n ".replace(/ {2}/g, ''));
|
|
60
60
|
}
|
|
61
61
|
return;
|
|
62
62
|
}
|
|
@@ -79,7 +79,7 @@ var adapter = (0, _makeAdapter.makeAdapter)({
|
|
|
79
79
|
// - Unit tests commonly run in "test"
|
|
80
80
|
if (process.env.NODE_ENV !== 'production') {
|
|
81
81
|
// eslint-disable-next-line no-console
|
|
82
|
-
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have
|
|
82
|
+
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have polyfilled DragEvent.\n - If you are browser testing, ensure you are dispatching drag events correctly.\n\n Please see our testing guides for more information:\n https://atlassian.design/components/pragmatic-drag-and-drop/core-package/testing\n ".replace(/ {2}/g, ''));
|
|
83
83
|
}
|
|
84
84
|
return;
|
|
85
85
|
}
|
|
@@ -80,7 +80,7 @@ var adapter = (0, _makeAdapter.makeAdapter)({
|
|
|
80
80
|
// - Unit tests commonly run in "test"
|
|
81
81
|
if (process.env.NODE_ENV !== 'production') {
|
|
82
82
|
// eslint-disable-next-line no-console
|
|
83
|
-
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have
|
|
83
|
+
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have polyfilled DragEvent.\n - If you are browser testing, ensure you are dispatching drag events correctly.\n\n Please see our testing guides for more information:\n https://atlassian.design/components/pragmatic-drag-and-drop/core-package/testing\n ".replace(/ {2}/g, ''));
|
|
84
84
|
}
|
|
85
85
|
return;
|
|
86
86
|
}
|
|
@@ -50,7 +50,7 @@ const adapter = makeAdapter({
|
|
|
50
50
|
console.warn(`
|
|
51
51
|
It appears as though you have are not testing DragEvents correctly.
|
|
52
52
|
|
|
53
|
-
- If you are unit testing, ensure you have
|
|
53
|
+
- If you are unit testing, ensure you have polyfilled DragEvent.
|
|
54
54
|
- If you are browser testing, ensure you are dispatching drag events correctly.
|
|
55
55
|
|
|
56
56
|
Please see our testing guides for more information:
|
|
@@ -67,7 +67,7 @@ const adapter = makeAdapter({
|
|
|
67
67
|
console.warn(`
|
|
68
68
|
It appears as though you have are not testing DragEvents correctly.
|
|
69
69
|
|
|
70
|
-
- If you are unit testing, ensure you have
|
|
70
|
+
- If you are unit testing, ensure you have polyfilled DragEvent.
|
|
71
71
|
- If you are browser testing, ensure you are dispatching drag events correctly.
|
|
72
72
|
|
|
73
73
|
Please see our testing guides for more information:
|
|
@@ -74,7 +74,7 @@ const adapter = makeAdapter({
|
|
|
74
74
|
console.warn(`
|
|
75
75
|
It appears as though you have are not testing DragEvents correctly.
|
|
76
76
|
|
|
77
|
-
- If you are unit testing, ensure you have
|
|
77
|
+
- If you are unit testing, ensure you have polyfilled DragEvent.
|
|
78
78
|
- If you are browser testing, ensure you are dispatching drag events correctly.
|
|
79
79
|
|
|
80
80
|
Please see our testing guides for more information:
|
|
@@ -48,7 +48,7 @@ var adapter = makeAdapter({
|
|
|
48
48
|
// - Unit tests commonly run in "test"
|
|
49
49
|
if (process.env.NODE_ENV !== 'production') {
|
|
50
50
|
// eslint-disable-next-line no-console
|
|
51
|
-
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have
|
|
51
|
+
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have polyfilled DragEvent.\n - If you are browser testing, ensure you are dispatching drag events correctly.\n\n Please see our testing guides for more information:\n https://atlassian.design/components/pragmatic-drag-and-drop/core-package/testing\n ".replace(/ {2}/g, ''));
|
|
52
52
|
}
|
|
53
53
|
return;
|
|
54
54
|
}
|
|
@@ -68,7 +68,7 @@ var adapter = makeAdapter({
|
|
|
68
68
|
// - Unit tests commonly run in "test"
|
|
69
69
|
if (process.env.NODE_ENV !== 'production') {
|
|
70
70
|
// eslint-disable-next-line no-console
|
|
71
|
-
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have
|
|
71
|
+
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have polyfilled DragEvent.\n - If you are browser testing, ensure you are dispatching drag events correctly.\n\n Please see our testing guides for more information:\n https://atlassian.design/components/pragmatic-drag-and-drop/core-package/testing\n ".replace(/ {2}/g, ''));
|
|
72
72
|
}
|
|
73
73
|
return;
|
|
74
74
|
}
|
|
@@ -73,7 +73,7 @@ var adapter = makeAdapter({
|
|
|
73
73
|
// - Unit tests commonly run in "test"
|
|
74
74
|
if (process.env.NODE_ENV !== 'production') {
|
|
75
75
|
// eslint-disable-next-line no-console
|
|
76
|
-
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have
|
|
76
|
+
console.warn("\n It appears as though you have are not testing DragEvents correctly.\n\n - If you are unit testing, ensure you have polyfilled DragEvent.\n - If you are browser testing, ensure you are dispatching drag events correctly.\n\n Please see our testing guides for more information:\n https://atlassian.design/components/pragmatic-drag-and-drop/core-package/testing\n ".replace(/ {2}/g, ''));
|
|
77
77
|
}
|
|
78
78
|
return;
|
|
79
79
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AllEvents, BaseEventPayload, CleanupFn, DropTargetEventBasePayload, DropTargetEventPayloadMap, DropTargetGetFeedbackArgs, ElementDragType, EventPayloadMap, Input, MonitorGetFeedbackArgs, NativeMediaType } from '../internal-types';
|
|
1
|
+
import { type AllEvents, type BaseEventPayload, type CleanupFn, type DropTargetEventBasePayload, type DropTargetEventPayloadMap, type DropTargetGetFeedbackArgs, type ElementDragType, type EventPayloadMap, type Input, type MonitorGetFeedbackArgs, type NativeMediaType } from '../internal-types';
|
|
2
2
|
type DraggableGetFeedbackArgs = {
|
|
3
3
|
/**
|
|
4
4
|
* The user input as a drag is trying to start (the `initial` input)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseEventPayload, CleanupFn, DropTargetEventBasePayload, DropTargetEventPayloadMap, DropTargetGetFeedbackArgs, EventPayloadMap, MonitorGetFeedbackArgs, TextSelectionDragType } from '../internal-types';
|
|
1
|
+
import { type BaseEventPayload, type CleanupFn, type DropTargetEventBasePayload, type DropTargetEventPayloadMap, type DropTargetGetFeedbackArgs, type EventPayloadMap, type MonitorGetFeedbackArgs, type TextSelectionDragType } from '../internal-types';
|
|
2
2
|
declare const adapter: {
|
|
3
3
|
registerUsage: () => CleanupFn;
|
|
4
4
|
dropTarget: (args: import("../internal-types").DropTargetArgs<TextSelectionDragType>) => CleanupFn;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AllEvents, BaseEventPayload, CleanupFn, DropTargetEventBasePayload, DropTargetEventPayloadMap, DropTargetGetFeedbackArgs, ElementDragType, EventPayloadMap, Input, MonitorGetFeedbackArgs, NativeMediaType } from '../internal-types';
|
|
1
|
+
import { type AllEvents, type BaseEventPayload, type CleanupFn, type DropTargetEventBasePayload, type DropTargetEventPayloadMap, type DropTargetGetFeedbackArgs, type ElementDragType, type EventPayloadMap, type Input, type MonitorGetFeedbackArgs, type NativeMediaType } from '../internal-types';
|
|
2
2
|
type DraggableGetFeedbackArgs = {
|
|
3
3
|
/**
|
|
4
4
|
* The user input as a drag is trying to start (the `initial` input)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseEventPayload, CleanupFn, DropTargetEventBasePayload, DropTargetEventPayloadMap, DropTargetGetFeedbackArgs, EventPayloadMap, MonitorGetFeedbackArgs, TextSelectionDragType } from '../internal-types';
|
|
1
|
+
import { type BaseEventPayload, type CleanupFn, type DropTargetEventBasePayload, type DropTargetEventPayloadMap, type DropTargetGetFeedbackArgs, type EventPayloadMap, type MonitorGetFeedbackArgs, type TextSelectionDragType } from '../internal-types';
|
|
2
2
|
declare const adapter: {
|
|
3
3
|
registerUsage: () => CleanupFn;
|
|
4
4
|
dropTarget: (args: import("../internal-types").DropTargetArgs<TextSelectionDragType>) => CleanupFn;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/element/adapter.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/element/adapter.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/element/adapter.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/element/adapter.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/element/center-under-pointer.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/element/center-under-pointer.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/element/center-under-pointer.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/element/center-under-pointer.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/element/disable-native-drag-preview.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/element/disable-native-drag-preview.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/element/disable-native-drag-preview.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/element/disable-native-drag-preview.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/element/format-urls-for-external.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/element/format-urls-for-external.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/element/format-urls-for-external.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/element/format-urls-for-external.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/element/pointer-outside-of-preview.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/element/pointer-outside-of-preview.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/element/pointer-outside-of-preview.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/element/pointer-outside-of-preview.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/element/preserve-offset-on-source.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/element/preserve-offset-on-source.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/element/preserve-offset-on-source.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/element/preserve-offset-on-source.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/element/scroll-just-enough-into-view.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/element/scroll-just-enough-into-view.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/element/scroll-just-enough-into-view.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/element/scroll-just-enough-into-view.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/element/set-custom-native-drag-preview.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/element/set-custom-native-drag-preview.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/element/set-custom-native-drag-preview.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/element/set-custom-native-drag-preview.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/external/adapter.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/external/adapter.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/external/adapter.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/external/adapter.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/external/file.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/external/file.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/external/file.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/external/file.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/external/html.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/external/html.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/external/html.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/external/html.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/external/some.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/external/some.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/external/some.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/external/some.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/external/text.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/external/text.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/external/text.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/external/text.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/external/url.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/external/url.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/external/url.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/external/url.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
package/once/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-point/once.js",
|
|
4
4
|
"module": "../dist/esm/entry-point/once.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-point/once.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../dist/types/entry-point/once.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/pragmatic-drag-and-drop",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"description": "The core package for Pragmatic drag and drop - enabling fast drag and drop for any experience on any tech stack",
|
|
5
5
|
"repository": "https://github.com/atlassian/pragmatic-drag-and-drop",
|
|
6
6
|
"author": "Atlassian Pty Ltd",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
]
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
|
-
"sideEffects":
|
|
20
|
+
"sideEffects": true,
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org/"
|
|
23
23
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-point/prevent-unhandled.js",
|
|
4
4
|
"module": "../dist/esm/entry-point/prevent-unhandled.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-point/prevent-unhandled.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../dist/types/entry-point/prevent-unhandled.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
package/reorder/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-point/reorder.js",
|
|
4
4
|
"module": "../dist/esm/entry-point/reorder.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-point/reorder.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../dist/types/entry-point/reorder.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../../dist/cjs/entry-point/text-selection/adapter.js",
|
|
4
4
|
"module": "../../dist/esm/entry-point/text-selection/adapter.js",
|
|
5
5
|
"module:es2019": "../../dist/es2019/entry-point/text-selection/adapter.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../../dist/types/entry-point/text-selection/adapter.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|
package/types/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-point/types.js",
|
|
4
4
|
"module": "../dist/esm/entry-point/types.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-point/types.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": true,
|
|
7
7
|
"types": "../dist/types/entry-point/types.d.ts",
|
|
8
8
|
"typesVersions": {
|
|
9
9
|
">=4.5 <5.4": {
|