@panneau/field-display 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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +16 -13
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
1
+ import * as react from 'react';
2
2
 
3
3
  interface DisplayFieldProps {
4
4
  value?: unknown;
@@ -6,7 +6,7 @@ interface DisplayFieldProps {
6
6
  className?: string | null;
7
7
  [key: string]: unknown;
8
8
  }
9
- declare function DisplayField({ value, display, className, ...props }: DisplayFieldProps): react_jsx_runtime.JSX.Element;
9
+ declare function DisplayField({ value, display, className, ...props }: DisplayFieldProps): react.JSX.Element;
10
10
 
11
11
  declare namespace _default {
12
12
  let id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@panneau/field-display",
3
- "version": "4.0.55",
3
+ "version": "4.0.58",
4
4
  "description": "A field rendering a display",
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,31 @@
24
25
  "email": "nrb@folklore.email"
25
26
  }
26
27
  ],
27
- "license": "ISC",
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
- "prepublishOnly": "npm run build",
43
- "build": "../../scripts/prepare-package.sh --types"
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/themes": "^4.0.58",
52
+ "classnames": "^2.5.1"
44
53
  },
45
54
  "devDependencies": {
46
55
  "react": "^19.2.0",
@@ -50,14 +59,8 @@
50
59
  "react": "^19.2.0",
51
60
  "react-dom": "^19.0.0"
52
61
  },
53
- "dependencies": {
54
- "@babel/runtime": "^7.28.6",
55
- "@panneau/core": "^4.0.55",
56
- "@panneau/themes": "^4.0.55",
57
- "classnames": "^2.5.1"
58
- },
59
62
  "publishConfig": {
60
63
  "access": "public"
61
64
  },
62
- "gitHead": "1c9183567fc5bf98ba10fa57c63cf2ed2ae4a054"
65
+ "gitHead": "408b9bef2c15c0a6c55588721d13a965ead50a5f"
63
66
  }