magick-ui 0.2.5 → 0.2.6
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 +103 -29
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +108 -33
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +11 -1
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.d.cts +20 -0
- package/dist/schema.d.ts +20 -0
- package/dist/schema.js +11 -1
- package/dist/schema.js.map +1 -1
- package/dist/ui/index.cjs +92 -28
- package/dist/ui/index.cjs.map +1 -1
- package/dist/ui/index.d.cts +9 -1
- package/dist/ui/index.d.ts +9 -1
- package/dist/ui/index.js +97 -32
- package/dist/ui/index.js.map +1 -1
- package/package.json +2 -1
- package/schema/component-schema.json +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "magick-ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Generative UI primitives, renderer, design tokens, and schema for composing dynamic chat interfaces",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"@storybook/addon-docs": "^10.2.10",
|
|
90
90
|
"@storybook/react-vite": "^10.2.10",
|
|
91
91
|
"@tailwindcss/vite": "^4.2.0",
|
|
92
|
+
"@types/google.maps": "^3.58.1",
|
|
92
93
|
"@types/lodash": "^4.17.24",
|
|
93
94
|
"@types/node": "^25.3.0",
|
|
94
95
|
"@types/react": "^19.0.0",
|
|
@@ -3315,6 +3315,14 @@
|
|
|
3315
3315
|
"showCurrentLocation": {
|
|
3316
3316
|
"type": "boolean",
|
|
3317
3317
|
"description": "Show a blue dot for the user's current location"
|
|
3318
|
+
},
|
|
3319
|
+
"showSearch": {
|
|
3320
|
+
"type": "boolean",
|
|
3321
|
+
"description": "Show a search box to find places on the map"
|
|
3322
|
+
},
|
|
3323
|
+
"searchPlaceholder": {
|
|
3324
|
+
"type": "string",
|
|
3325
|
+
"description": "Placeholder text for the search box"
|
|
3318
3326
|
}
|
|
3319
3327
|
},
|
|
3320
3328
|
"additionalProperties": false
|