@opensystemslab/map 0.7.4 → 0.7.5
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/LICENSE +3 -4
- package/dist/component-lib.es.js +1 -1
- package/dist/component-lib.umd.js +321 -88
- package/dist/{html2canvas.esm-f5b1510b.mjs → html2canvas.esm-1a1724a1.mjs} +1750 -1357
- package/dist/index-c7aa277b.mjs +47112 -0
- package/dist/{index.es-15046b1b.mjs → index.es-f278d6d5.mjs} +1265 -1112
- package/dist/index.html +104 -71
- package/dist/{purify.es-22c1781a.mjs → purify.es-00aa4070.mjs} +28 -8
- package/dist/style.css +1 -1
- package/package.json +22 -25
- package/types/components/address-autocomplete/index.d.ts +3 -3
- package/types/components/my-map/drawing.d.ts +2 -2
- package/types/components/my-map/index.d.ts +8 -2
- package/types/components/my-map/projections.d.ts +1 -1
- package/types/components/my-map/utils.d.ts +1 -1
- package/types/lib/ordnanceSurvey.d.ts +1 -1
- package/dist/index-8d60c5e4.mjs +0 -37564
package/LICENSE
CHANGED
@@ -1,6 +1,5 @@
|
|
1
|
-
The
|
1
|
+
The Mozilla Public License (MPL) Version 2
|
2
2
|
|
3
|
-
Copyright (c)
|
3
|
+
Copyright (c) 2023
|
4
4
|
|
5
|
-
This source code is licensed under the
|
6
|
-
licence, visit http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3
|
5
|
+
This source code is licensed under the Mozilla Public License v2.0. To view this license, visit https://mozilla.org/MPL/2.0/
|
package/dist/component-lib.es.js
CHANGED