@versatiles/style 5.6.0 → 5.8.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/README.MD CHANGED
@@ -17,6 +17,7 @@
17
17
  | **graybeard** | <img width="384" src="https://versatiles.org/versatiles-style/graybeard.png" alt="graybeard style" /> |
18
18
  | **eclipse** | <img width="384" src="https://versatiles.org/versatiles-style/eclipse.png" alt="eclipse style" /> |
19
19
  | **neutrino** | <img width="384" src="https://versatiles.org/versatiles-style/neutrino.png" alt="neutrino style" /> |
20
+ | **shadow** | <img width="384" src="https://versatiles.org/versatiles-style/shadow.png" alt="shadow style" /> |
20
21
 
21
22
  ---
22
23
 
@@ -93,6 +94,7 @@ The library offers the following style generation methods:
93
94
  - `eclipse(options)` - [Documentation](https://versatiles.org/versatiles-style/functions/eclipse.html)
94
95
  - `graybeard(options)` - [Documentation](https://versatiles.org/versatiles-style/functions/graybeard.html)
95
96
  - `neutrino(options)` - [Documentation](https://versatiles.org/versatiles-style/functions/neutrino.html)
97
+ - `shadow(options)` - [Documentation](https://versatiles.org/versatiles-style/functions/shadow.html)
96
98
 
97
99
  **`options`**: An optional object to customize the styles. [Learn more](https://versatiles.org/versatiles-style/interfaces/StyleBuilderOptions.html)
98
100
 
@@ -150,14 +152,14 @@ subgraph 1["color"]
150
152
  2["abstract.ts"]
151
153
  3["hsl.ts"]
152
154
  4["hsv.ts"]
153
- 5["rgb.ts"]
155
+ 5["random.ts"]
154
156
  6["utils.ts"]
155
- 7["index.ts"]
156
- 8["random.ts"]
157
+ 7["rgb.ts"]
158
+ 8["index.ts"]
157
159
  end
158
160
  subgraph 9["guess_style"]
159
161
  A["guess_style.ts"]
160
- X["index.ts"]
162
+ Z["index.ts"]
161
163
  end
162
164
  subgraph B["lib"]
163
165
  C["utils.ts"]
@@ -165,16 +167,17 @@ end
165
167
  subgraph D["styles"]
166
168
  E["index.ts"]
167
169
  F["colorful.ts"]
168
- P["eclipse.ts"]
169
- Q["empty.ts"]
170
- R["graybeard.ts"]
171
- S["neutrino.ts"]
170
+ Q["eclipse.ts"]
171
+ R["empty.ts"]
172
+ S["graybeard.ts"]
173
+ T["neutrino.ts"]
174
+ U["shadow.ts"]
172
175
  end
173
176
  subgraph G["style_builder"]
174
177
  H["style_builder.ts"]
175
178
  M["decorator.ts"]
176
179
  O["recolor.ts"]
177
- Z["types.ts"]
180
+ P["types.ts"]
178
181
  end
179
182
  subgraph I["shortbread"]
180
183
  J["index.ts"]
@@ -182,68 +185,71 @@ K["layers.ts"]
182
185
  L["template.ts"]
183
186
  N["properties.ts"]
184
187
  end
185
- subgraph T["types"]
186
- U["index.ts"]
187
- V["tilejson.ts"]
188
- W["vector_layer.ts"]
189
- 10["maplibre.ts"]
188
+ subgraph V["types"]
189
+ W["index.ts"]
190
+ X["tilejson.ts"]
191
+ Y["vector_layer.ts"]
192
+ 11["maplibre.ts"]
190
193
  end
191
- Y["index.ts"]
194
+ 10["index.ts"]
192
195
  end
193
196
  3-->2
194
197
  3-->4
195
- 3-->5
198
+ 3-->7
196
199
  3-->6
197
200
  4-->2
198
201
  4-->3
199
202
  4-->5
203
+ 4-->7
200
204
  4-->6
201
- 5-->2
202
- 5-->3
203
205
  5-->4
204
206
  5-->6
205
207
  7-->2
206
208
  7-->3
207
209
  7-->4
208
- 7-->8
209
- 7-->5
210
+ 7-->6
211
+ 8-->2
212
+ 8-->3
210
213
  8-->4
211
- 8-->6
212
- A-->7
214
+ 8-->7
215
+ A-->5
213
216
  A-->C
214
217
  A-->E
215
- A-->U
216
- A-->V
217
- C-->7
218
+ A-->W
219
+ A-->X
220
+ C-->8
218
221
  E-->F
219
- E-->P
220
222
  E-->Q
221
223
  E-->R
222
224
  E-->S
225
+ E-->T
226
+ E-->U
223
227
  F-->H
224
- H-->7
228
+ H-->8
225
229
  H-->C
226
230
  H-->J
227
231
  H-->M
228
232
  H-->O
233
+ H-->P
229
234
  J-->K
230
235
  J-->L
231
- M-->7
236
+ M-->8
232
237
  M-->C
233
238
  M-->N
234
- O-->7
235
- P-->F
239
+ O-->8
236
240
  Q-->F
237
241
  R-->F
238
242
  S-->F
239
- U-->V
240
- U-->W
241
- X-->A
242
- Y-->7
243
- Y-->X
244
- Y-->E
245
-
246
- class 0,1,9,B,D,G,I,T subgraphs;
243
+ T-->F
244
+ U-->F
245
+ W-->X
246
+ W-->Y
247
+ Z-->A
248
+ 10-->8
249
+ 10-->Z
250
+ 10-->E
251
+
252
+ class 0,1,9,B,D,G,I,V subgraphs;
247
253
  classDef subgraphs fill-opacity:0.1, fill:#888, color:#888, stroke:#888;
248
254
  ```
249
255