@panneau/modal-resource-form 4.0.55 → 4.0.58
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/dist/index.d.ts +2 -2
- package/package.json +21 -18
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { Resource, Item } from '@panneau/core';
|
|
3
3
|
|
|
4
4
|
interface ModalResourceFormProps {
|
|
@@ -12,6 +12,6 @@ interface ModalResourceFormProps {
|
|
|
12
12
|
onClosed?: (() => void) | null;
|
|
13
13
|
className?: string | null;
|
|
14
14
|
}
|
|
15
|
-
declare function ModalResourceForm({ id, resource: providedResource, type, item, isCreate, onComplete, onClosed, withoutCloseOnComplete, className, }: ModalResourceFormProps):
|
|
15
|
+
declare function ModalResourceForm({ id, resource: providedResource, type, item, isCreate, onComplete, onClosed, withoutCloseOnComplete, className, }: ModalResourceFormProps): react.JSX.Element;
|
|
16
16
|
|
|
17
17
|
export { ModalResourceForm as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panneau/modal-resource-form",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.58",
|
|
4
4
|
"description": "Resource form modal",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/folkloreinc/panneau-js.git"
|
|
12
12
|
},
|
|
13
|
+
"license": "ISC",
|
|
13
14
|
"author": {
|
|
14
15
|
"name": "Folklore",
|
|
15
16
|
"email": "info@folklore.email"
|
|
@@ -24,23 +25,36 @@
|
|
|
24
25
|
"email": "nrb@folklore.email"
|
|
25
26
|
}
|
|
26
27
|
],
|
|
27
|
-
"
|
|
28
|
+
"sideEffects": [
|
|
29
|
+
"**/*.css"
|
|
30
|
+
],
|
|
28
31
|
"type": "module",
|
|
29
|
-
"module": "dist/index.js",
|
|
30
|
-
"types": "dist/index.d.ts",
|
|
31
32
|
"exports": {
|
|
32
33
|
".": {
|
|
33
34
|
"types": "./dist/index.d.ts",
|
|
34
35
|
"default": "./dist/index.js"
|
|
35
36
|
}
|
|
36
37
|
},
|
|
38
|
+
"module": "dist/index.js",
|
|
39
|
+
"types": "dist/index.d.ts",
|
|
37
40
|
"files": [
|
|
38
41
|
"dist",
|
|
39
42
|
"assets"
|
|
40
43
|
],
|
|
41
44
|
"scripts": {
|
|
42
|
-
"
|
|
43
|
-
"
|
|
45
|
+
"build": "../../scripts/prepare-package.sh --types",
|
|
46
|
+
"prepublishOnly": "npm run build"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@babel/runtime": "^7.28.6",
|
|
50
|
+
"@panneau/core": "^4.0.58",
|
|
51
|
+
"@panneau/form-resource": "^4.0.58",
|
|
52
|
+
"@panneau/intl": "^4.0.58",
|
|
53
|
+
"@panneau/modal-dialog": "^4.0.58",
|
|
54
|
+
"@panneau/themes": "^4.0.58",
|
|
55
|
+
"classnames": "^2.5.1",
|
|
56
|
+
"lodash": "^4.17.21",
|
|
57
|
+
"react-intl": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^10.0.0"
|
|
44
58
|
},
|
|
45
59
|
"devDependencies": {
|
|
46
60
|
"react": "^19.2.0",
|
|
@@ -50,19 +64,8 @@
|
|
|
50
64
|
"react": "^19.2.0",
|
|
51
65
|
"react-dom": "^19.0.0"
|
|
52
66
|
},
|
|
53
|
-
"dependencies": {
|
|
54
|
-
"@babel/runtime": "^7.28.6",
|
|
55
|
-
"@panneau/core": "^4.0.55",
|
|
56
|
-
"@panneau/form-resource": "^4.0.55",
|
|
57
|
-
"@panneau/intl": "^4.0.55",
|
|
58
|
-
"@panneau/modal-dialog": "^4.0.55",
|
|
59
|
-
"@panneau/themes": "^4.0.55",
|
|
60
|
-
"classnames": "^2.5.1",
|
|
61
|
-
"lodash": "^4.17.21",
|
|
62
|
-
"react-intl": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^10.0.0"
|
|
63
|
-
},
|
|
64
67
|
"publishConfig": {
|
|
65
68
|
"access": "public"
|
|
66
69
|
},
|
|
67
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "408b9bef2c15c0a6c55588721d13a965ead50a5f"
|
|
68
71
|
}
|