w-geo 1.0.53 → 1.0.55
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/.eslintrc.js +17 -17
- package/README.md +1 -1
- package/babel.config.js +1 -0
- package/calcCpt-mat.xlsx +0 -0
- package/dist/w-geo.umd.js +14 -0
- package/dist/w-geo.umd.js.map +1 -0
- package/docs/-_class.mjs.html +4 -1
- package/docs/calcDepthStartEndByConnect.mjs.html +4 -1
- package/docs/calcDepthStartEndByGroup.mjs.html +4 -1
- package/docs/calcDepthStartEndFromCenter.mjs.html +4 -1
- package/docs/calcLiquefaction.mjs.html +5 -2
- package/docs/calcVerticalStress.mjs.html +4 -1
- package/docs/checkDepth.mjs.html +4 -1
- package/docs/checkDepthStartEnd.mjs.html +4 -1
- package/docs/complementDepthData.mjs.html +4 -1
- package/docs/groupByDepthStartEnd.mjs.html +4 -1
- package/docs/index.html +4 -1
- package/docs/mergeByDepthStartEnd.mjs.html +4 -1
- package/docs/relaPlasticityParams.mjs.html +4 -1
- package/docs/relaPorousParams.mjs.html +4 -1
- package/docs/scripts/collapse.js +19 -0
- package/docs/scripts/commonNav.js +28 -0
- package/docs/scripts/search.js +16 -0
- package/docs/sepDepthStartEndByDepth.mjs.html +4 -1
- package/docs/smoothDepthByKey.mjs.html +4 -1
- package/docs/styles/jsdoc.css +13 -2
- package/docs/styles/prettify.css +1 -0
- package/docs/w-geo.html +338 -199
- package/g10-calcCptUnitWeight.mjs +1 -4
- package/package.json +6 -6
- package/src/_share.mjs +3 -0
- package/src/calcCpt.mjs +10 -5
- package/src/calcCptClassify.mjs +12 -0
- package/src/calcCptUnitWeight.mjs +1 -1
- package/src/calcLiquefaction.mjs +1 -1
- package/src/intrpDefParam.mjs +4 -0
- package/test/calcCpt.test.mjs +2 -2
- package/test/calcCptUnitWeight.test.mjs +2 -2
- package/test/calcLiquefaction-cpt.test.mjs +4 -4
- package/test/calcLiquefaction-spt.test.mjs +4 -4
- package/test/complementDepthData.test.mjs +3 -3
package/.eslintrc.js
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
'env': {
|
|
3
|
+
'browser': true,
|
|
4
|
+
'es6': true,
|
|
5
|
+
'mocha': true
|
|
6
6
|
},
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
'extends': ['plugin:vue/base', 'plugin:vue/essential', 'standard'],
|
|
8
|
+
'plugins': [
|
|
9
|
+
'vue'
|
|
10
10
|
],
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
'globals': {
|
|
12
|
+
'Atomics': 'readonly',
|
|
13
|
+
'SharedArrayBuffer': 'readonly'
|
|
14
14
|
},
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
'parser': 'vue-eslint-parser',
|
|
16
|
+
'parserOptions': {
|
|
17
|
+
'parser': '@babel/eslint-parser',
|
|
18
|
+
'ecmaVersion': 2019,
|
|
19
|
+
'sourceType': 'module',
|
|
20
20
|
},
|
|
21
|
-
rules: {
|
|
21
|
+
'rules': {
|
|
22
22
|
'generator-star-spacing': 'off',
|
|
23
23
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
24
24
|
'indent': ['error', 4],
|
|
@@ -51,4 +51,4 @@ module.exports = {
|
|
|
51
51
|
'array-callback-return': 'off',
|
|
52
52
|
'no-unreachable-loop': 'off',
|
|
53
53
|
}
|
|
54
|
-
}
|
|
54
|
+
}
|
package/README.md
CHANGED
package/babel.config.js
CHANGED
|
@@ -7,6 +7,7 @@ module.exports = {
|
|
|
7
7
|
],
|
|
8
8
|
'plugins': [
|
|
9
9
|
'@babel/plugin-transform-runtime',
|
|
10
|
+
'@babel/plugin-syntax-import-assertions',
|
|
10
11
|
'@babel/plugin-proposal-export-default-from',
|
|
11
12
|
'@babel/plugin-proposal-nullish-coalescing-operator',
|
|
12
13
|
'@babel/plugin-proposal-optional-chaining'
|
package/calcCpt-mat.xlsx
ADDED
|
Binary file
|