@entryscape/rdforms 10.14.0 → 10.15.0

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
@@ -8,7 +8,7 @@
8
8
  "application profile",
9
9
  "linked data"
10
10
  ],
11
- "version": "10.14.0",
11
+ "version": "10.15.0",
12
12
  "main": "dist/rdforms.node.js",
13
13
  "browser": "dist/rdforms.react.js",
14
14
  "module": "main.js",
@@ -37,7 +37,7 @@
37
37
  "ifdef-loader": "^2.1.1",
38
38
  "jquery": "^3.7.0",
39
39
  "jquery-mousewheel": "^3.1.13",
40
- "lodash-es": "^4.17.10",
40
+ "lodash": "^4.17.10",
41
41
  "moment": "^2.22.2",
42
42
  "nls-loader": "https://bitbucket.org/metasolutions/nls-loader#master",
43
43
  "node-fetch": "^2.6.0",
@@ -61,10 +61,10 @@
61
61
  "@babel/plugin-transform-modules-commonjs": "^7.16.0",
62
62
  "@babel/plugin-transform-react-jsx": "^7.16.0",
63
63
  "@babel/preset-env": "^7.18.6",
64
+ "@babel/preset-react": "^7.18.6",
64
65
  "babel-loader": "^8.2.3",
65
66
  "babel-plugin-lodash": "^3.3.4",
66
67
  "babel-plugin-transform-react-jsx": "^6.24.1",
67
- "clean-webpack-plugin": "^4.0.0",
68
68
  "copy-webpack-plugin": "^9.0.1",
69
69
  "css-loader": "^6.5.1",
70
70
  "eslint": "^8.23.0",
@@ -86,7 +86,8 @@
86
86
  "webpack": "^5.88.2",
87
87
  "webpack-cli": "^5.1.4",
88
88
  "webpack-dev-server": "^5.2.1",
89
- "webpack-merge": "^5.8.0"
89
+ "webpack-merge": "^5.8.0",
90
+ "webpack-node-externals": "^3.0.0"
90
91
  },
91
92
  "files": [
92
93
  "dist",
@@ -116,5 +117,6 @@
116
117
  "email": "valentino@metasolutions.se",
117
118
  "url": "http://valentinohudhra.com/"
118
119
  }
119
- ]
120
+ ],
121
+ "packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
120
122
  }
@@ -1,4 +1,4 @@
1
- import { isEqual } from 'lodash-es';
1
+ import { isEqual } from 'lodash';
2
2
 
3
3
  export default class OntologyStore {
4
4
  /**
package/src/utils.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import moment from 'moment';
2
- import { cloneDeep } from 'lodash-es';
2
+ import { cloneDeep } from 'lodash';
3
3
  import system from './model/system';
4
4
 
5
5
  const getLocalizedValue = (hash, locale) => {
@@ -1,4 +1,4 @@
1
- import { escape } from 'lodash-es';
1
+ import { escape } from 'lodash';
2
2
  import { getDatePresentation, fromDuration } from '../viewUtils';
3
3
  import renderingContext from '../renderingContext';
4
4
  import utils from '../../utils';