decidim-navigation_maps 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 555b93edb92b69f19e3cc10841179b04fb57502a13d347fe69132d01833f88d6
4
- data.tar.gz: 76da0880561f5e1e5b1201a048d90c8a862194134f3e485c1d2d045401f61551
3
+ metadata.gz: 12f9636d7c5efbbafe00544fe75c0e4322077eef70372002745b1410fe38e708
4
+ data.tar.gz: f8067c6af595868868386de9cf7459fdbf21d950c396f8113a14254af02f4c42
5
5
  SHA512:
6
- metadata.gz: d90681644ff2111df383e19b5e7e7568c97cc225aad75645dcd86369332e91d4ef0d0fcc0ea6413c7bcb83bab0239333fb926958d8a32e62df5e2b52bd7353d1
7
- data.tar.gz: bbc246049572a74e697a0382bd084213cdff071149ea1c2ef1a93eae78da2d1ceeba110b394c16c9877b5c88ecd96fca0c674b1f72193b7b86b993a5707c6daf
6
+ metadata.gz: caae4440a22439a2a87b0b723c0afba1c540224d10319466813200cd68a6bbf62b40133089a468cdeb760eb715be7b0d691630e1cbd8524fbd559f3d9080f08e
7
+ data.tar.gz: aca2ed28852c52ba098a4046e72652d21e8d89f81b51c36e706c191f2f547bfe34fc2477eafc01b2fec1bed006d49a2771dec39767ac8024a6a26085d5c6b6ac
@@ -3,7 +3,7 @@
3
3
  module Decidim
4
4
  # This holds the decidim-meetings version.
5
5
  module NavigationMaps
6
- VERSION = "1.3.0"
6
+ VERSION = "1.3.1"
7
7
  DECIDIM_VERSION = [">= 0.25", "< 0.27"].freeze
8
8
  end
9
9
  end
data/package.json ADDED
@@ -0,0 +1,197 @@
1
+ {
2
+ "name": "decidim-module-navigation_maps",
3
+ "version": "1.0.0",
4
+ "description": "A Blueprint/Map navigation for Decidim",
5
+ "scripts": {
6
+ "lint": "eslint -c .eslintrc.json --ext .js app/packs/",
7
+ "lint-fix": "eslint -c .eslintrc.json --ext .js app/packs/ --fix",
8
+ "stylelint": "stylelint **/*.scss",
9
+ "stylelint-fix": "stylelint **/*.scss --fix"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/Platoniq/decidim-module-navigation_maps.git"
14
+ },
15
+ "keywords": [
16
+ "decidim"
17
+ ],
18
+ "author": "Ivan Verges <ivan@platoniq.net>",
19
+ "license": "AGPL-3.0-or-later",
20
+ "bugs": {
21
+ "url": "https://github.com/Platoniq/decidim-module-navigation_maps/issues"
22
+ },
23
+ "homepage": "https://github.com/Platoniq/decidim-module-navigation_maps#readme",
24
+ "stylelint": {
25
+ "rules": {
26
+ "at-rule-empty-line-before": [
27
+ "always",
28
+ {
29
+ "except": [
30
+ "blockless-after-same-name-blockless",
31
+ "first-nested"
32
+ ],
33
+ "ignore": [
34
+ "after-comment"
35
+ ],
36
+ "ignoreAtRules": [
37
+ "else"
38
+ ]
39
+ }
40
+ ],
41
+ "at-rule-name-case": "lower",
42
+ "at-rule-semicolon-newline-after": "always",
43
+ "block-closing-brace-empty-line-before": "never",
44
+ "block-closing-brace-newline-after": "always",
45
+ "block-closing-brace-newline-before": "always-multi-line",
46
+ "block-closing-brace-space-before": "always-single-line",
47
+ "block-no-empty": true,
48
+ "block-opening-brace-newline-after": "always-multi-line",
49
+ "block-opening-brace-space-after": "always-single-line",
50
+ "block-opening-brace-space-before": "never",
51
+ "color-hex-case": "lower",
52
+ "color-hex-length": "short",
53
+ "color-no-invalid-hex": true,
54
+ "comment-empty-line-before": [
55
+ "always",
56
+ {
57
+ "except": [
58
+ "first-nested"
59
+ ],
60
+ "ignore": [
61
+ "stylelint-commands"
62
+ ]
63
+ }
64
+ ],
65
+ "comment-no-empty": true,
66
+ "comment-whitespace-inside": "always",
67
+ "custom-property-empty-line-before": [
68
+ "always",
69
+ {
70
+ "except": [
71
+ "after-custom-property",
72
+ "first-nested"
73
+ ],
74
+ "ignore": [
75
+ "after-comment",
76
+ "inside-single-line-block"
77
+ ]
78
+ }
79
+ ],
80
+ "declaration-bang-space-after": "never",
81
+ "declaration-bang-space-before": "always",
82
+ "declaration-block-no-duplicate-properties": [
83
+ true,
84
+ {
85
+ "ignore": [
86
+ "consecutive-duplicates-with-different-values"
87
+ ]
88
+ }
89
+ ],
90
+ "declaration-block-no-redundant-longhand-properties": true,
91
+ "declaration-block-no-shorthand-property-overrides": true,
92
+ "declaration-block-semicolon-newline-after": "always-multi-line",
93
+ "declaration-block-semicolon-space-after": "always-single-line",
94
+ "declaration-block-semicolon-space-before": "never",
95
+ "declaration-block-single-line-max-declarations": 1,
96
+ "declaration-block-trailing-semicolon": "always",
97
+ "declaration-colon-newline-after": "always-multi-line",
98
+ "declaration-colon-space-after": "always-single-line",
99
+ "declaration-colon-space-before": "never",
100
+ "declaration-empty-line-before": [
101
+ "always",
102
+ {
103
+ "except": [
104
+ "after-declaration",
105
+ "first-nested"
106
+ ],
107
+ "ignore": [
108
+ "after-comment",
109
+ "inside-single-line-block"
110
+ ]
111
+ }
112
+ ],
113
+ "function-calc-no-unspaced-operator": true,
114
+ "function-comma-newline-after": "always-multi-line",
115
+ "function-comma-space-after": "always-single-line",
116
+ "function-comma-space-before": "never",
117
+ "function-linear-gradient-no-nonstandard-direction": true,
118
+ "function-max-empty-lines": 0,
119
+ "function-name-case": "lower",
120
+ "function-parentheses-newline-inside": "always-multi-line",
121
+ "function-parentheses-space-inside": "never-single-line",
122
+ "function-whitespace-after": "always",
123
+ "indentation": 2,
124
+ "keyframe-declaration-no-important": true,
125
+ "length-zero-no-unit": true,
126
+ "max-empty-lines": 1,
127
+ "media-feature-colon-space-after": "always",
128
+ "media-feature-colon-space-before": "never",
129
+ "media-feature-name-case": "lower",
130
+ "media-feature-name-no-unknown": true,
131
+ "media-feature-parentheses-space-inside": "never",
132
+ "media-feature-range-operator-space-after": "always",
133
+ "media-feature-range-operator-space-before": "always",
134
+ "media-query-list-comma-newline-after": "always-multi-line",
135
+ "media-query-list-comma-space-after": "always-single-line",
136
+ "media-query-list-comma-space-before": "never",
137
+ "no-empty-source": true,
138
+ "no-eol-whitespace": true,
139
+ "no-extra-semicolons": true,
140
+ "no-invalid-double-slash-comments": true,
141
+ "no-missing-end-of-source-newline": true,
142
+ "number-leading-zero": "never",
143
+ "number-no-trailing-zeros": true,
144
+ "property-case": "lower",
145
+ "property-no-unknown": true,
146
+ "rule-empty-line-before": [
147
+ "always-multi-line",
148
+ {
149
+ "except": [
150
+ "first-nested"
151
+ ],
152
+ "ignore": [
153
+ "after-comment"
154
+ ]
155
+ }
156
+ ],
157
+ "selector-attribute-brackets-space-inside": "never",
158
+ "selector-attribute-operator-space-after": "never",
159
+ "selector-attribute-operator-space-before": "never",
160
+ "selector-combinator-space-after": "always",
161
+ "selector-combinator-space-before": "always",
162
+ "selector-descendant-combinator-no-non-space": true,
163
+ "selector-list-comma-newline-after": "always",
164
+ "selector-list-comma-space-before": "never",
165
+ "selector-max-empty-lines": 0,
166
+ "selector-pseudo-class-case": "lower",
167
+ "selector-pseudo-class-no-unknown": true,
168
+ "selector-pseudo-class-parentheses-space-inside": "never",
169
+ "selector-pseudo-element-case": "lower",
170
+ "selector-pseudo-element-colon-notation": "double",
171
+ "selector-pseudo-element-no-unknown": true,
172
+ "selector-type-case": "lower",
173
+ "selector-type-no-unknown": true,
174
+ "shorthand-property-no-redundant-values": true,
175
+ "string-no-newline": true,
176
+ "unit-case": "lower",
177
+ "unit-no-unknown": true,
178
+ "value-list-comma-newline-after": "always-multi-line",
179
+ "value-list-comma-space-after": "always-single-line",
180
+ "value-list-comma-space-before": "never",
181
+ "value-list-max-empty-lines": 0
182
+ }
183
+ },
184
+ "dependencies": {
185
+ "@geoman-io/leaflet-geoman-free": "^2.11.4",
186
+ "jquery-form": "^4.3.0",
187
+ "jsviews": "^1.0.11"
188
+ },
189
+ "devDependencies": {
190
+ "eslint": "^7.32.0",
191
+ "eslint": "^7.25.0",
192
+ "eslint-config-prettier": "^8.2.0",
193
+ "eslint-config-standard": "^11.0.0",
194
+ "eslint-plugin-import": "^2.22.0",
195
+ "stylelint": "13.11.0"
196
+ }
197
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-navigation_maps
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Vergés
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-04 00:00:00.000000000 Z
11
+ date: 2022-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: decidim-admin
@@ -151,25 +151,7 @@ files:
151
151
  - lib/tasks/custom_seeds.rake
152
152
  - lib/tasks/decidim_navigation_maps_webpacker_tasks.rake
153
153
  - lib/tasks/navigation_maps_active_storage_migration_tasks.rake
154
- - vendor/assets/images/draw/layers-2x.png
155
- - vendor/assets/images/draw/layers.png
156
- - vendor/assets/images/draw/marker-icon-2x.png
157
- - vendor/assets/images/draw/marker-icon.png
158
- - vendor/assets/images/draw/marker-shadow.png
159
- - vendor/assets/images/draw/spritesheet-2x.png
160
- - vendor/assets/images/draw/spritesheet.png
161
- - vendor/assets/images/draw/spritesheet.svg
162
- - vendor/assets/images/images/layers-2x.png
163
- - vendor/assets/images/images/layers.png
164
- - vendor/assets/images/images/marker-icon-2x.png
165
- - vendor/assets/images/images/marker-icon.png
166
- - vendor/assets/images/images/marker-shadow.png
167
- - vendor/assets/javascripts/jquery.form.js
168
- - vendor/assets/javascripts/jsrender.min.js
169
- - vendor/assets/javascripts/jsrender.min.js.map
170
- - vendor/assets/javascripts/leaflet-geoman.min.js
171
- - vendor/assets/javascripts/leaflet.js
172
- - vendor/assets/stylesheets/leaflet-geoman.css
154
+ - package.json
173
155
  homepage: https://github.com/Platoniq/decidim-module-navigation_maps
174
156
  licenses:
175
157
  - AGPL-3.0
Binary file
@@ -1,156 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:cc="http://creativecommons.org/ns#"
5
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
- xmlns:svg="http://www.w3.org/2000/svg"
7
- xmlns="http://www.w3.org/2000/svg"
8
- xmlns:xlink="http://www.w3.org/1999/xlink"
9
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
10
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
- viewBox="0 0 600 60"
12
- height="60"
13
- width="600"
14
- id="svg4225"
15
- version="1.1"
16
- inkscape:version="0.91 r13725"
17
- sodipodi:docname="spritesheet.svg"
18
- inkscape:export-filename="/home/fpuga/development/upstream/icarto.Leaflet.draw/src/images/spritesheet-2x.png"
19
- inkscape:export-xdpi="90"
20
- inkscape:export-ydpi="90">
21
- <metadata
22
- id="metadata4258">
23
- <rdf:RDF>
24
- <cc:Work
25
- rdf:about="">
26
- <dc:format>image/svg+xml</dc:format>
27
- <dc:type
28
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
29
- <dc:title />
30
- </cc:Work>
31
- </rdf:RDF>
32
- </metadata>
33
- <defs
34
- id="defs4256" />
35
- <sodipodi:namedview
36
- pagecolor="#ffffff"
37
- bordercolor="#666666"
38
- borderopacity="1"
39
- objecttolerance="10"
40
- gridtolerance="10"
41
- guidetolerance="10"
42
- inkscape:pageopacity="0"
43
- inkscape:pageshadow="2"
44
- inkscape:window-width="1920"
45
- inkscape:window-height="1056"
46
- id="namedview4254"
47
- showgrid="false"
48
- inkscape:zoom="1.3101852"
49
- inkscape:cx="237.56928"
50
- inkscape:cy="7.2419621"
51
- inkscape:window-x="1920"
52
- inkscape:window-y="24"
53
- inkscape:window-maximized="1"
54
- inkscape:current-layer="svg4225" />
55
- <g
56
- id="enabled"
57
- style="fill:#464646;fill-opacity:1">
58
- <g
59
- id="polyline"
60
- style="fill:#464646;fill-opacity:1">
61
- <path
62
- d="m 18,36 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z"
63
- id="path4229"
64
- inkscape:connector-curvature="0"
65
- style="fill:#464646;fill-opacity:1" />
66
- <path
67
- d="m 36,18 0,6 6,0 0,-6 -6,0 z m 4,4 -2,0 0,-2 2,0 0,2 z"
68
- id="path4231"
69
- inkscape:connector-curvature="0"
70
- style="fill:#464646;fill-opacity:1" />
71
- <path
72
- d="m 23.142,39.145 -2.285,-2.29 16,-15.998 2.285,2.285 z"
73
- id="path4233"
74
- inkscape:connector-curvature="0"
75
- style="fill:#464646;fill-opacity:1" />
76
- </g>
77
- <path
78
- id="polygon"
79
- d="M 100,24.565 97.904,39.395 83.07,42 76,28.773 86.463,18 Z"
80
- inkscape:connector-curvature="0"
81
- style="fill:#464646;fill-opacity:1" />
82
- <path
83
- id="rectangle"
84
- d="m 140,20 20,0 0,20 -20,0 z"
85
- inkscape:connector-curvature="0"
86
- style="fill:#464646;fill-opacity:1" />
87
- <path
88
- id="circle"
89
- d="m 221,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z"
90
- inkscape:connector-curvature="0"
91
- style="fill:#464646;fill-opacity:1" />
92
- <path
93
- id="marker"
94
- d="m 270,19 c -4.971,0 -9,4.029 -9,9 0,4.971 5.001,12 9,14 4.001,-2 9,-9.029 9,-14 0,-4.971 -4.029,-9 -9,-9 z m 0,12.5 c -2.484,0 -4.5,-2.014 -4.5,-4.5 0,-2.484 2.016,-4.5 4.5,-4.5 2.485,0 4.5,2.016 4.5,4.5 0,2.486 -2.015,4.5 -4.5,4.5 z"
95
- inkscape:connector-curvature="0"
96
- style="fill:#464646;fill-opacity:1" />
97
- <g
98
- id="edit"
99
- style="fill:#464646;fill-opacity:1">
100
- <path
101
- d="m 337,30.156 0,0.407 0,5.604 c 0,1.658 -1.344,3 -3,3 l -10,0 c -1.655,0 -3,-1.342 -3,-3 l 0,-10 c 0,-1.657 1.345,-3 3,-3 l 6.345,0 3.19,-3.17 -9.535,0 c -3.313,0 -6,2.687 -6,6 l 0,10 c 0,3.313 2.687,6 6,6 l 10,0 c 3.314,0 6,-2.687 6,-6 l 0,-8.809 -3,2.968"
102
- id="path4240"
103
- inkscape:connector-curvature="0"
104
- style="fill:#464646;fill-opacity:1" />
105
- <path
106
- d="m 338.72,24.637 -8.892,8.892 -2.828,0 0,-2.829 8.89,-8.89 z"
107
- id="path4242"
108
- inkscape:connector-curvature="0"
109
- style="fill:#464646;fill-opacity:1" />
110
- <path
111
- d="m 338.697,17.826 4,0 0,4 -4,0 z"
112
- transform="matrix(-0.70698336,-0.70723018,0.70723018,-0.70698336,567.55917,274.78273)"
113
- id="path4244"
114
- inkscape:connector-curvature="0"
115
- style="fill:#464646;fill-opacity:1" />
116
- </g>
117
- <g
118
- id="remove"
119
- style="fill:#464646;fill-opacity:1">
120
- <path
121
- d="m 381,42 18,0 0,-18 -18,0 0,18 z m 14,-16 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z m -4,0 2,0 0,14 -2,0 0,-14 z"
122
- id="path4247"
123
- inkscape:connector-curvature="0"
124
- style="fill:#464646;fill-opacity:1" />
125
- <path
126
- d="m 395,20 0,-4 -10,0 0,4 -6,0 0,2 22,0 0,-2 -6,0 z m -2,0 -6,0 0,-2 6,0 0,2 z"
127
- id="path4249"
128
- inkscape:connector-curvature="0"
129
- style="fill:#464646;fill-opacity:1" />
130
- </g>
131
- </g>
132
- <g
133
- id="disabled"
134
- transform="translate(120,0)"
135
- style="fill:#bbbbbb">
136
- <use
137
- xlink:href="#edit"
138
- id="edit-disabled"
139
- x="0"
140
- y="0"
141
- width="100%"
142
- height="100%" />
143
- <use
144
- xlink:href="#remove"
145
- id="remove-disabled"
146
- x="0"
147
- y="0"
148
- width="100%"
149
- height="100%" />
150
- </g>
151
- <path
152
- style="fill:none;stroke:#464646;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
153
- id="circle-3"
154
- d="m 581.65725,30 c 0,6.078 -4.926,11 -11,11 -6.074,0 -11,-4.922 -11,-11 0,-6.074 4.926,-11 11,-11 6.074,0 11,4.926 11,11 z"
155
- inkscape:connector-curvature="0" />
156
- </svg>
Binary file