@alfadocs/ui-kit 0.10.0 → 0.12.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/dist/_chunks/_commonjsHelpers-C6fGbg64.js +7 -0
- package/dist/_chunks/{ai-prompt-input-bAJwYu84.js → ai-prompt-input-noh-N3cf.js} +2 -2
- package/dist/_chunks/{contact-card-VJIUqKB2.js → contact-card-DTQUMetD.js} +22 -38
- package/dist/_chunks/external-link-C6F25E6k.js +16 -0
- package/dist/_chunks/{file-upload-DIecAfC-.js → file-upload-nMh-1jDD.js} +2 -2
- package/dist/_chunks/{index-CeY1nNvd.js → index-CFoBa86t.js} +61 -63
- package/dist/_chunks/{link-BGpwaFik.js → link-DmM5IevO.js} +16 -26
- package/dist/_chunks/map-pin-B8STOPMJ.js +21 -0
- package/dist/_chunks/map-view-Dd48BxVB.js +1941 -0
- package/dist/_chunks/{pdf-viewer-CNETPubN.js → pdf-viewer-CnEJvmXC.js} +407 -382
- package/dist/_chunks/whatsapp-button-Bj5FIhpC.js +175 -0
- package/dist/agent-catalog.json +53 -1
- package/dist/components/ai-prompt-input/index.js +1 -1
- package/dist/components/contact-card/index.js +1 -1
- package/dist/components/file-upload/index.js +1 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/components/link/index.js +1 -1
- package/dist/components/map-view/index.d.ts +3 -0
- package/dist/components/map-view/index.js +5 -0
- package/dist/components/map-view/map-view.agent.d.ts +4 -0
- package/dist/components/map-view/map-view.d.ts +78 -0
- package/dist/components/pdf-viewer/index.js +1 -1
- package/dist/components/pdf-viewer/pdf-viewer.d.ts +62 -0
- package/dist/components/whatsapp-button/index.d.ts +3 -0
- package/dist/components/whatsapp-button/index.js +5 -0
- package/dist/components/whatsapp-button/whatsapp-button.d.ts +32 -0
- package/dist/i18n/config.js +47 -5
- package/dist/i18n/resources.d.ts +42 -0
- package/dist/index.js +348 -344
- package/dist/locales/de.json +15 -1
- package/dist/locales/en.json +15 -1
- package/dist/locales/it.json +15 -1
- package/dist/tokens/google-maps-theme.d.ts +15 -0
- package/dist/tokens.css +1 -1
- package/package.json +15 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfadocs/ui-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "AlfaDocs shared design system — tokens, components, patterns, and translations for platform, booking, and alfascribe.",
|
|
6
6
|
"license": "BUSL-1.1",
|
|
@@ -227,6 +227,10 @@
|
|
|
227
227
|
"types": "./dist/components/logo/index.d.ts",
|
|
228
228
|
"import": "./dist/components/logo/index.js"
|
|
229
229
|
},
|
|
230
|
+
"./map-view": {
|
|
231
|
+
"types": "./dist/components/map-view/index.d.ts",
|
|
232
|
+
"import": "./dist/components/map-view/index.js"
|
|
233
|
+
},
|
|
230
234
|
"./matrix-rain": {
|
|
231
235
|
"types": "./dist/components/matrix-rain/index.d.ts",
|
|
232
236
|
"import": "./dist/components/matrix-rain/index.js"
|
|
@@ -451,6 +455,10 @@
|
|
|
451
455
|
"types": "./dist/components/warning-stack/index.d.ts",
|
|
452
456
|
"import": "./dist/components/warning-stack/index.js"
|
|
453
457
|
},
|
|
458
|
+
"./whatsapp-button": {
|
|
459
|
+
"types": "./dist/components/whatsapp-button/index.d.ts",
|
|
460
|
+
"import": "./dist/components/whatsapp-button/index.js"
|
|
461
|
+
},
|
|
454
462
|
"./workflow": {
|
|
455
463
|
"types": "./dist/components/workflow/index.d.ts",
|
|
456
464
|
"import": "./dist/components/workflow/index.js"
|
|
@@ -518,6 +526,7 @@
|
|
|
518
526
|
"@tiptap/pm": "^3.22.3",
|
|
519
527
|
"@tiptap/react": "^3.22.3",
|
|
520
528
|
"@tiptap/starter-kit": "^3.22.3",
|
|
529
|
+
"@vis.gl/react-google-maps": "^1.1.0 || ^2",
|
|
521
530
|
"ag-grid-community": "^35.2.1",
|
|
522
531
|
"ag-grid-react": "^35.2.1",
|
|
523
532
|
"apexcharts": "^5.10.1",
|
|
@@ -607,6 +616,9 @@
|
|
|
607
616
|
"@tiptap/starter-kit": {
|
|
608
617
|
"optional": true
|
|
609
618
|
},
|
|
619
|
+
"@vis.gl/react-google-maps": {
|
|
620
|
+
"optional": true
|
|
621
|
+
},
|
|
610
622
|
"ag-grid-community": {
|
|
611
623
|
"optional": true
|
|
612
624
|
},
|
|
@@ -694,8 +706,10 @@
|
|
|
694
706
|
"@tiptap/react": "^3.22.3",
|
|
695
707
|
"@tiptap/starter-kit": "^3.22.3",
|
|
696
708
|
"@types/dompurify": "^3.0.5",
|
|
709
|
+
"@types/google.maps": "^3.58.1",
|
|
697
710
|
"@types/react": "^18.3.28",
|
|
698
711
|
"@types/react-dom": "^18.3.7",
|
|
712
|
+
"@vis.gl/react-google-maps": "^1.5.5",
|
|
699
713
|
"@vitejs/plugin-react": "^4.7.0",
|
|
700
714
|
"@vitest/browser-playwright": "^4.1.4",
|
|
701
715
|
"@vitest/coverage-v8": "^4.1.4",
|