@basemaps/landing 6.39.0 → 6.40.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/CHANGELOG.md +21 -0
- package/build/attribution.d.ts +1 -0
- package/build/attribution.d.ts.map +1 -1
- package/build/attribution.js +12 -6
- package/build/attribution.js.map +1 -1
- package/build/components/daterange.d.ts +17 -0
- package/build/components/daterange.d.ts.map +1 -0
- package/build/components/daterange.js +47 -0
- package/build/components/daterange.js.map +1 -0
- package/build/components/debug.d.ts +2 -0
- package/build/components/debug.d.ts.map +1 -1
- package/build/components/debug.js +14 -2
- package/build/components/debug.js.map +1 -1
- package/build/components/layout.footer.d.ts.map +1 -1
- package/build/components/layout.footer.js +1 -1
- package/build/components/layout.footer.js.map +1 -1
- package/build/components/layout.header.d.ts.map +1 -1
- package/build/components/layout.header.js +3 -2
- package/build/components/layout.header.js.map +1 -1
- package/build/components/map.d.ts +2 -0
- package/build/components/map.d.ts.map +1 -1
- package/build/components/map.js +57 -3
- package/build/components/map.js.map +1 -1
- package/build/config.debug.d.ts +2 -0
- package/build/config.debug.d.ts.map +1 -1
- package/build/config.debug.js +2 -0
- package/build/config.debug.js.map +1 -1
- package/build/config.map.d.ts +12 -1
- package/build/config.map.d.ts.map +1 -1
- package/build/config.map.js +16 -3
- package/build/config.map.js.map +1 -1
- package/build/debug.map.d.ts.map +1 -1
- package/build/debug.map.js +11 -2
- package/build/debug.map.js.map +1 -1
- package/build/index.js.map +1 -1
- package/build/tile.matrix.d.ts +2 -1
- package/build/tile.matrix.d.ts.map +1 -1
- package/build/tile.matrix.js +9 -2
- package/build/tile.matrix.js.map +1 -1
- package/build/url.d.ts +10 -1
- package/build/url.d.ts.map +1 -1
- package/build/url.js +22 -17
- package/build/url.js.map +1 -1
- package/dist/examples/index.openlayers.attribution.wmts.3857.html +1 -1
- package/dist/{index-6.39.0-ff6c549db18e98b4.js → index-6.40.0-09b98e869fb042de.js} +18 -18
- package/dist/{index-6.39.0-44c213c55663b3c0.css → index-6.40.0-95051f97078cfc18.css} +15 -0
- package/dist/{index-6.39.0-f172032fb8e26748.js → index-6.40.0-a7e278340e8278a5.js} +418 -219
- package/dist/index.css +15 -0
- package/dist/index.html +2 -2
- package/dist/index.js +18 -18
- package/dist/lib/{attribution-6.39.0-fc88f809368e4547.js → attribution-6.40.0-1f7ac3ac4d0bfdf9.js} +12 -4
- package/dist/lib/{attribution-6.39.0-b4a0b401b1a4cc45.js → attribution-6.40.0-5200e8ed396ff59a.js} +2 -2
- package/dist/lib/attribution.js +2 -2
- package/package.json +7 -7
|
@@ -196,6 +196,21 @@ button {
|
|
|
196
196
|
left: 48px;
|
|
197
197
|
width: 600px;
|
|
198
198
|
height: 40px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.date-range {
|
|
202
|
+
background:rgba(255, 255, 255, 0.8);
|
|
203
|
+
box-shadow: 0 0 8px 8px rgb(0 0 0 / 10%);
|
|
204
|
+
border: 2px solid rgba(255, 255, 255);
|
|
205
|
+
border-radius: 8px;
|
|
206
|
+
padding: 0 16px 16px 16px;
|
|
207
|
+
position: absolute;
|
|
208
|
+
right: 16px;
|
|
209
|
+
bottom: 32px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.date-range p {
|
|
213
|
+
margin-top: 16px;
|
|
199
214
|
}html {
|
|
200
215
|
box-sizing: border-box;
|
|
201
216
|
}
|