@panneau/modals 3.0.126 → 3.0.130
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/es/index.js +8 -0
- package/lib/index.js +8 -0
- package/package.json +10 -6
package/es/index.js
CHANGED
|
@@ -5,10 +5,18 @@ import React from 'react';
|
|
|
5
5
|
import { ComponentsProvider, MODALS_NAMESPACE } from '@panneau/core/contexts';
|
|
6
6
|
import modalDialog from '@panneau/modal-dialog';
|
|
7
7
|
import modalUpload from '@panneau/modal-upload';
|
|
8
|
+
import modalConfirm from '@panneau/modal-confirm';
|
|
9
|
+
import modalForm from '@panneau/modal-form';
|
|
10
|
+
import modalResourceForm from '@panneau/modal-resource-form';
|
|
11
|
+
import modalResourceItems from '@panneau/modal-resource-items';
|
|
8
12
|
|
|
9
13
|
var components = /*#__PURE__*/Object.freeze({
|
|
10
14
|
__proto__: null,
|
|
15
|
+
ConfirmModal: modalConfirm,
|
|
11
16
|
DialogModal: modalDialog,
|
|
17
|
+
FormModal: modalForm,
|
|
18
|
+
ResourceFormModal: modalResourceForm,
|
|
19
|
+
ResourceItemsModal: modalResourceItems,
|
|
12
20
|
UploadModal: modalUpload
|
|
13
21
|
});
|
|
14
22
|
|
package/lib/index.js
CHANGED
|
@@ -9,10 +9,18 @@ var React = require('react');
|
|
|
9
9
|
var contexts = require('@panneau/core/contexts');
|
|
10
10
|
var modalDialog = require('@panneau/modal-dialog');
|
|
11
11
|
var modalUpload = require('@panneau/modal-upload');
|
|
12
|
+
var modalConfirm = require('@panneau/modal-confirm');
|
|
13
|
+
var modalForm = require('@panneau/modal-form');
|
|
14
|
+
var modalResourceForm = require('@panneau/modal-resource-form');
|
|
15
|
+
var modalResourceItems = require('@panneau/modal-resource-items');
|
|
12
16
|
|
|
13
17
|
var components = /*#__PURE__*/Object.freeze({
|
|
14
18
|
__proto__: null,
|
|
19
|
+
ConfirmModal: modalConfirm,
|
|
15
20
|
DialogModal: modalDialog,
|
|
21
|
+
FormModal: modalForm,
|
|
22
|
+
ResourceFormModal: modalResourceForm,
|
|
23
|
+
ResourceItemsModal: modalResourceItems,
|
|
16
24
|
UploadModal: modalUpload
|
|
17
25
|
});
|
|
18
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panneau/modals",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.130",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -66,16 +66,20 @@
|
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@babel/runtime": "^7.12.5",
|
|
69
|
-
"@panneau/core": "^3.0.
|
|
69
|
+
"@panneau/core": "^3.0.130",
|
|
70
70
|
"@panneau/element-portal": "^3.0.126",
|
|
71
|
-
"@panneau/modal-
|
|
72
|
-
"@panneau/modal-
|
|
73
|
-
"@panneau/
|
|
71
|
+
"@panneau/modal-confirm": "^3.0.130",
|
|
72
|
+
"@panneau/modal-dialog": "^3.0.130",
|
|
73
|
+
"@panneau/modal-form": "^3.0.130",
|
|
74
|
+
"@panneau/modal-resource-form": "^3.0.130",
|
|
75
|
+
"@panneau/modal-resource-items": "^3.0.130",
|
|
76
|
+
"@panneau/modal-upload": "^3.0.130",
|
|
77
|
+
"@panneau/themes": "^3.0.130",
|
|
74
78
|
"classnames": "^2.2.6",
|
|
75
79
|
"prop-types": "^15.7.2"
|
|
76
80
|
},
|
|
77
81
|
"publishConfig": {
|
|
78
82
|
"access": "public"
|
|
79
83
|
},
|
|
80
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "e6070daacb45351ccbef67ae8006f1a293ca8e2b"
|
|
81
85
|
}
|