geojs 1.14.3 → 1.14.4
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/.github/workflows/main.yml +6 -3
- package/.pre-commit-config.yaml +3 -3
- package/geo.js +5 -6
- package/geo.lean.js +5 -6
- package/geo.lean.min.js +1 -1
- package/geo.min.js +1 -1
- package/package.json +1 -1
- package/src/mapInteractor.js +2 -2
|
@@ -22,7 +22,8 @@ jobs:
|
|
|
22
22
|
with:
|
|
23
23
|
node-version: '20'
|
|
24
24
|
- uses: browser-actions/setup-firefox@latest
|
|
25
|
-
- run: sudo apt-get
|
|
25
|
+
- run: sudo apt-get update
|
|
26
|
+
- run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev liblzma-dev
|
|
26
27
|
- run: sudo apt-get remove --yes fonts-lato
|
|
27
28
|
- run: fc-list
|
|
28
29
|
- run: firefox --version
|
|
@@ -75,7 +76,8 @@ jobs:
|
|
|
75
76
|
node-version: 'lts/*'
|
|
76
77
|
- run: npm --version && node --version
|
|
77
78
|
- uses: browser-actions/setup-firefox@latest
|
|
78
|
-
- run: sudo apt-get
|
|
79
|
+
- run: sudo apt-get update
|
|
80
|
+
- run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev liblzma-dev
|
|
79
81
|
- run: sudo apt-get remove --yes fonts-lato
|
|
80
82
|
- run: fc-list
|
|
81
83
|
- run: firefox --version
|
|
@@ -111,7 +113,8 @@ jobs:
|
|
|
111
113
|
- uses: actions/setup-node@v4
|
|
112
114
|
with:
|
|
113
115
|
node-version: 'lts/*'
|
|
114
|
-
- run: sudo apt-get
|
|
116
|
+
- run: sudo apt-get update
|
|
117
|
+
- run: sudo apt-get install --yes --no-install-recommends optipng imagemagick build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev liblzma-dev
|
|
115
118
|
- run: npm ci
|
|
116
119
|
- name: Import artifacts
|
|
117
120
|
uses: actions/download-artifact@v4
|
package/.pre-commit-config.yaml
CHANGED
|
@@ -46,16 +46,16 @@ repos:
|
|
|
46
46
|
files: README.rst
|
|
47
47
|
name: rst-linter of README.rst
|
|
48
48
|
- repo: https://github.com/codespell-project/codespell
|
|
49
|
-
rev: v2.
|
|
49
|
+
rev: v2.4.1
|
|
50
50
|
hooks:
|
|
51
51
|
- id: codespell
|
|
52
52
|
args:
|
|
53
53
|
- --ignore-words-list
|
|
54
54
|
- "hist,indext,pixelx,thex,hight,reenable,lastr,xdescribe,afterall,countr,curvelinear"
|
|
55
55
|
- --skip
|
|
56
|
-
- examples/sld/index.pug,package-lock.json,examples/reprojection/proj.json,website/themes/agency/source/vendor/jquery/jquery.min.js,examples/reprojection/capitals.json
|
|
56
|
+
- examples/sld/index.pug,package-lock.json,examples/reprojection/proj.json,website/themes/agency/source/vendor/jquery/jquery.min.js,examples/reprojection/capitals.json,website/themes/agency/source/vendor/jquery/jquery.js
|
|
57
57
|
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
|
|
58
|
-
rev: v9.
|
|
58
|
+
rev: v9.22.0
|
|
59
59
|
hooks:
|
|
60
60
|
- id: commitlint
|
|
61
61
|
language_version: "22.10.0"
|
package/geo.js
CHANGED
|
@@ -20557,8 +20557,7 @@ var _mapInteractor = function mapInteractor(args) {
|
|
|
20557
20557
|
action: geo_action.zoom,
|
|
20558
20558
|
input: 'wheel',
|
|
20559
20559
|
modifiers: {
|
|
20560
|
-
shift: false
|
|
20561
|
-
ctrl: false
|
|
20560
|
+
shift: false
|
|
20562
20561
|
},
|
|
20563
20562
|
owner: 'geo.mapInteractor',
|
|
20564
20563
|
name: 'wheel zoom'
|
|
@@ -20575,8 +20574,8 @@ var _mapInteractor = function mapInteractor(args) {
|
|
|
20575
20574
|
action: geo_action.rotate,
|
|
20576
20575
|
input: 'wheel',
|
|
20577
20576
|
modifiers: {
|
|
20578
|
-
shift:
|
|
20579
|
-
ctrl:
|
|
20577
|
+
shift: true,
|
|
20578
|
+
ctrl: false
|
|
20580
20579
|
},
|
|
20581
20580
|
owner: 'geo.mapInteractor',
|
|
20582
20581
|
name: 'wheel rotate'
|
|
@@ -28169,7 +28168,7 @@ module.exports = _sceneObject;
|
|
|
28169
28168
|
* @constant
|
|
28170
28169
|
* @type {string}
|
|
28171
28170
|
*/
|
|
28172
|
-
module.exports = "
|
|
28171
|
+
module.exports = "76a88e5322f0f4c35b4c91f3d0d8f20cf2f10d70";
|
|
28173
28172
|
|
|
28174
28173
|
/***/ }),
|
|
28175
28174
|
|
|
@@ -40056,7 +40055,7 @@ module.exports = _vectorFeature;
|
|
|
40056
40055
|
* @constant
|
|
40057
40056
|
* @type {string}
|
|
40058
40057
|
*/
|
|
40059
|
-
module.exports = "1.14.
|
|
40058
|
+
module.exports = "1.14.4";
|
|
40060
40059
|
|
|
40061
40060
|
/***/ }),
|
|
40062
40061
|
|
package/geo.lean.js
CHANGED
|
@@ -17556,8 +17556,7 @@ var _mapInteractor = function mapInteractor(args) {
|
|
|
17556
17556
|
action: geo_action.zoom,
|
|
17557
17557
|
input: 'wheel',
|
|
17558
17558
|
modifiers: {
|
|
17559
|
-
shift: false
|
|
17560
|
-
ctrl: false
|
|
17559
|
+
shift: false
|
|
17561
17560
|
},
|
|
17562
17561
|
owner: 'geo.mapInteractor',
|
|
17563
17562
|
name: 'wheel zoom'
|
|
@@ -17574,8 +17573,8 @@ var _mapInteractor = function mapInteractor(args) {
|
|
|
17574
17573
|
action: geo_action.rotate,
|
|
17575
17574
|
input: 'wheel',
|
|
17576
17575
|
modifiers: {
|
|
17577
|
-
shift:
|
|
17578
|
-
ctrl:
|
|
17576
|
+
shift: true,
|
|
17577
|
+
ctrl: false
|
|
17579
17578
|
},
|
|
17580
17579
|
owner: 'geo.mapInteractor',
|
|
17581
17580
|
name: 'wheel rotate'
|
|
@@ -25168,7 +25167,7 @@ module.exports = _sceneObject;
|
|
|
25168
25167
|
* @constant
|
|
25169
25168
|
* @type {string}
|
|
25170
25169
|
*/
|
|
25171
|
-
module.exports = "
|
|
25170
|
+
module.exports = "76a88e5322f0f4c35b4c91f3d0d8f20cf2f10d70";
|
|
25172
25171
|
|
|
25173
25172
|
/***/ }),
|
|
25174
25173
|
|
|
@@ -37055,7 +37054,7 @@ module.exports = _vectorFeature;
|
|
|
37055
37054
|
* @constant
|
|
37056
37055
|
* @type {string}
|
|
37057
37056
|
*/
|
|
37058
|
-
module.exports = "1.14.
|
|
37057
|
+
module.exports = "1.14.4";
|
|
37059
37058
|
|
|
37060
37059
|
/***/ }),
|
|
37061
37060
|
|