@inseefr/lunatic 0.3.8-v2 → 0.3.10-v2
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 +3 -18
- package/src/components/index.js +0 -1
- package/src/index.js +2 -0
- package/src/stories/questionnaires/logement/source-sequence.json +33113 -29290
- package/src/stories/questionnaires/logement/source.json +33123 -33449
- package/src/use-lunatic/commons/compose.js +10 -0
- package/src/use-lunatic/commons/execute-expression/create-refresh-calculated.js +8 -2
- package/src/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.js +18 -14
- package/lib/index.js +0 -3398
- package/lib/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inseefr/lunatic",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10-v2",
|
|
4
4
|
"workersVersion": "0.2.4-experimental",
|
|
5
5
|
"description": "Library of questionnaire components",
|
|
6
6
|
"repository": {
|
|
@@ -23,18 +23,16 @@
|
|
|
23
23
|
}
|
|
24
24
|
],
|
|
25
25
|
"license": "MIT",
|
|
26
|
-
"main": "
|
|
26
|
+
"main": "src/index.js",
|
|
27
27
|
"module": "src/index.js",
|
|
28
28
|
"files": [
|
|
29
|
-
"lib",
|
|
30
29
|
"src"
|
|
31
30
|
],
|
|
32
31
|
"scripts": {
|
|
33
32
|
"test": "cross-env NODE_PATH=src/ jest",
|
|
34
33
|
"test-watch": "cross-env NODE_PATH=src/ jest --watchAll",
|
|
35
34
|
"test-coverage": "cross-env NODE_PATH=src/ jest --coverage",
|
|
36
|
-
"
|
|
37
|
-
"prepublish": "npm test && npm run build",
|
|
35
|
+
"prepublish": "npm test",
|
|
38
36
|
"analyze": "yarn build && source-map-explorer lib/index.js --html bundle-report/lunatic.html",
|
|
39
37
|
"build-append-worker": "webpack --config ./webpack-append-worker.config.js",
|
|
40
38
|
"build-searching-worker": "webpack --config ./webpack-searching-worker.config.js",
|
|
@@ -88,7 +86,6 @@
|
|
|
88
86
|
"@storybook/react": "^6.5.8",
|
|
89
87
|
"@storybook/testing-library": "^0.0.11",
|
|
90
88
|
"@testing-library/react-hooks": "^7.0.0",
|
|
91
|
-
"@timdp/rollup-plugin-image": "^1.0.3",
|
|
92
89
|
"babel-eslint": "^10.0.3",
|
|
93
90
|
"babel-loader": "^8.0.6",
|
|
94
91
|
"classnames": "^2.3.1",
|
|
@@ -117,18 +114,6 @@
|
|
|
117
114
|
"react-dom": "^17.0.2",
|
|
118
115
|
"regenerator-runtime": "^0.13.7",
|
|
119
116
|
"remove-accents": "^0.4.2",
|
|
120
|
-
"rollup": "^2.52.8",
|
|
121
|
-
"rollup-plugin-babel": "^4.3.3",
|
|
122
|
-
"rollup-plugin-babel-minify": "^10.0.0",
|
|
123
|
-
"rollup-plugin-commonjs": "^10.1.0",
|
|
124
|
-
"rollup-plugin-node-resolve": "^5.2.0",
|
|
125
|
-
"rollup-plugin-postcss": "^4.0.0",
|
|
126
|
-
"rollup-plugin-replace": "^2.2.0",
|
|
127
|
-
"rollup-plugin-serve": "^1.0.1",
|
|
128
|
-
"rollup-plugin-terser": "^7.0.1",
|
|
129
|
-
"rollup-plugin-uglify": "^6.0.3",
|
|
130
|
-
"rollup-plugin-url": "^3.0.1",
|
|
131
|
-
"rollup-watch": "^4.3.1",
|
|
132
117
|
"rxjs-marbles": "^6.0.1",
|
|
133
118
|
"sass-loader": "^10.0.3",
|
|
134
119
|
"snowball": "^0.3.1",
|
package/src/components/index.js
CHANGED
package/src/index.js
ADDED