mirador-annotation-editor-video 1.2.4 → 1.2.5

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/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "mirador-annotation-editor-video",
3
- "version": "1.2.4",
4
- "description": "Mirador annotation editor video plugin in a React component. Mirador 4 compatible. ",
5
- "main": "es/index.js",
6
- "module": "./dist/mirador-annotation-editor.es.js",
7
- "files": [
8
- "dist"
9
- ],
3
+ "version": "1.2.5",
4
+ "description": "Mirador annotation editor video plugin in a React component. Mirador 4 compatible",
5
+ "main": "dist/index.cjs",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "style": "dist/index.css",
9
+ "files": ["dist"],
10
+ "sideEffects": ["dist/index.css"],
10
11
  "exports": {
11
12
  ".": {
12
13
  "import": "./dist/index.js",
package/es/index.js DELETED
@@ -1,45 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- Object.defineProperty(exports, "annotationCreationCompanionWindowPlugin", {
7
- enumerable: true,
8
- get: function () {
9
- return _annotationCreationCompanionWindow.default;
10
- }
11
- });
12
- Object.defineProperty(exports, "canvasAnnotationsPlugin", {
13
- enumerable: true,
14
- get: function () {
15
- return _canvasAnnotationsPlugin.default;
16
- }
17
- });
18
- exports.default = void 0;
19
- Object.defineProperty(exports, "externalStorageAnnotationPlugin", {
20
- enumerable: true,
21
- get: function () {
22
- return _externalStorageAnnotationPlugin.default;
23
- }
24
- });
25
- Object.defineProperty(exports, "miradorAnnotationPlugin", {
26
- enumerable: true,
27
- get: function () {
28
- return _miradorAnnotationPlugin.default;
29
- }
30
- });
31
- Object.defineProperty(exports, "windowSideBarButtonsPlugin", {
32
- enumerable: true,
33
- get: function () {
34
- return _windowSideBarButtonsPlugin.default;
35
- }
36
- });
37
- var _miradorAnnotationPlugin = _interopRequireDefault(require("./plugins/miradorAnnotationPlugin"));
38
- var _externalStorageAnnotationPlugin = _interopRequireDefault(require("./plugins/externalStorageAnnotationPlugin"));
39
- var _canvasAnnotationsPlugin = _interopRequireDefault(require("./plugins/canvasAnnotationsPlugin"));
40
- var _annotationCreationCompanionWindow = _interopRequireDefault(require("./plugins/annotationCreationCompanionWindow"));
41
- var _windowSideBarButtonsPlugin = _interopRequireDefault(require("./plugins/windowSideBarButtonsPlugin"));
42
- var _annotationSaga = _interopRequireDefault(require("./plugins/annotationSaga"));
43
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
44
- const annotationPlugins = [_miradorAnnotationPlugin.default, _externalStorageAnnotationPlugin.default, _canvasAnnotationsPlugin.default, _annotationCreationCompanionWindow.default, _windowSideBarButtonsPlugin.default, _annotationSaga.default];
45
- var _default = exports.default = annotationPlugins;