magick-ui 0.2.3 → 0.2.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/dist/index.cjs +74 -37
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +86 -49
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +6 -1
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.d.cts +10 -0
- package/dist/schema.d.ts +10 -0
- package/dist/schema.js +6 -1
- package/dist/schema.js.map +1 -1
- package/dist/ui/index.cjs +68 -36
- package/dist/ui/index.cjs.map +1 -1
- package/dist/ui/index.d.cts +2 -1
- package/dist/ui/index.d.ts +2 -1
- package/dist/ui/index.js +80 -48
- package/dist/ui/index.js.map +1 -1
- package/package.json +1 -1
- package/schema/component-schema.json +4 -0
package/package.json
CHANGED
|
@@ -3311,6 +3311,10 @@
|
|
|
3311
3311
|
"disableDefaultUI": {
|
|
3312
3312
|
"type": "boolean",
|
|
3313
3313
|
"description": "Hide default map controls"
|
|
3314
|
+
},
|
|
3315
|
+
"showCurrentLocation": {
|
|
3316
|
+
"type": "boolean",
|
|
3317
|
+
"description": "Show a blue dot for the user's current location"
|
|
3314
3318
|
}
|
|
3315
3319
|
},
|
|
3316
3320
|
"additionalProperties": false
|