@alfadocs/ui-kit 0.14.1 → 0.15.1
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/carousel.agent-OTn-kMQg.js +1669 -0
- package/dist/_chunks/{header-D0ULgQl3.js → header-DqmKROIY.js} +42 -52
- package/dist/_chunks/{map-view-Dd48BxVB.js → map-view-DVP-Kp9l.js} +445 -444
- package/dist/_chunks/menu-XRhW3_99.js +16 -0
- package/dist/_chunks/{patient-shell-CL20JnVJ.js → patient-shell-BE0CdPOJ.js} +2 -2
- package/dist/_chunks/public-header.agent-ZLBAQ30j.js +242 -0
- package/dist/_chunks/stat-CYEx8sIR.js +317 -0
- package/dist/_chunks/use-count-up-BLLetaZ8.js +109 -0
- package/dist/agent-catalog.json +92 -1
- package/dist/components/carousel/carousel.agent.d.ts +4 -0
- package/dist/components/carousel/carousel.d.ts +45 -0
- package/dist/components/carousel/index.d.ts +3 -0
- package/dist/components/carousel/index.js +6 -0
- package/dist/components/header/index.js +1 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/components/map-view/index.js +1 -1
- package/dist/components/map-view/map-view.d.ts +8 -0
- package/dist/components/public-header/index.d.ts +3 -0
- package/dist/components/public-header/index.js +6 -0
- package/dist/components/public-header/public-header.agent.d.ts +4 -0
- package/dist/components/public-header/public-header.d.ts +43 -0
- package/dist/components/stat/index.js +1 -1
- package/dist/components/stat/stat.d.ts +31 -0
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/index.js +10 -8
- package/dist/hooks/use-count-up.d.ts +88 -0
- package/dist/i18n/config.js +51 -0
- package/dist/i18n/resources.d.ts +51 -0
- package/dist/index.js +367 -361
- package/dist/locales/de.json +17 -0
- package/dist/locales/en.json +17 -0
- package/dist/locales/it.json +17 -0
- package/dist/patterns/patient-shell/index.js +1 -1
- package/dist/tokens.css +1 -1
- package/package.json +10 -1
- package/dist/_chunks/stat-CDQ_a0vk.js +0 -228
package/dist/locales/de.json
CHANGED
|
@@ -13,6 +13,23 @@
|
|
|
13
13
|
"buttonGroup": {
|
|
14
14
|
"label": "Schaltflächengruppe"
|
|
15
15
|
},
|
|
16
|
+
"carousel": {
|
|
17
|
+
"label": "Karussell",
|
|
18
|
+
"roleDescription": "Karussell",
|
|
19
|
+
"slideRoleDescription": "Folie",
|
|
20
|
+
"slideLabel": "{{current}} von {{total}}",
|
|
21
|
+
"indicatorsLabel": "Folien",
|
|
22
|
+
"previous": "Vorherige Folie",
|
|
23
|
+
"next": "Nächste Folie",
|
|
24
|
+
"goToSlide": "Zu Folie {{index}} wechseln",
|
|
25
|
+
"slideAnnouncement": "Folie {{current}} von {{total}}"
|
|
26
|
+
},
|
|
27
|
+
"publicHeader": {
|
|
28
|
+
"homeLabel": "AlfaDocs — Startseite",
|
|
29
|
+
"primaryNavLabel": "Hauptnavigation",
|
|
30
|
+
"openMenu": "Menü öffnen",
|
|
31
|
+
"closeMenu": "Menü schließen"
|
|
32
|
+
},
|
|
16
33
|
"kbd": {
|
|
17
34
|
"plus": "+",
|
|
18
35
|
"then": "dann",
|
package/dist/locales/en.json
CHANGED
|
@@ -13,6 +13,23 @@
|
|
|
13
13
|
"buttonGroup": {
|
|
14
14
|
"label": "Button group"
|
|
15
15
|
},
|
|
16
|
+
"carousel": {
|
|
17
|
+
"label": "Carousel",
|
|
18
|
+
"roleDescription": "carousel",
|
|
19
|
+
"slideRoleDescription": "slide",
|
|
20
|
+
"slideLabel": "{{current}} of {{total}}",
|
|
21
|
+
"indicatorsLabel": "Slides",
|
|
22
|
+
"previous": "Previous slide",
|
|
23
|
+
"next": "Next slide",
|
|
24
|
+
"goToSlide": "Go to slide {{index}}",
|
|
25
|
+
"slideAnnouncement": "Slide {{current}} of {{total}}"
|
|
26
|
+
},
|
|
27
|
+
"publicHeader": {
|
|
28
|
+
"homeLabel": "AlfaDocs — home",
|
|
29
|
+
"primaryNavLabel": "Primary",
|
|
30
|
+
"openMenu": "Open menu",
|
|
31
|
+
"closeMenu": "Close menu"
|
|
32
|
+
},
|
|
16
33
|
"kbd": {
|
|
17
34
|
"plus": "+",
|
|
18
35
|
"then": "then",
|
package/dist/locales/it.json
CHANGED
|
@@ -13,6 +13,23 @@
|
|
|
13
13
|
"buttonGroup": {
|
|
14
14
|
"label": "Gruppo di pulsanti"
|
|
15
15
|
},
|
|
16
|
+
"carousel": {
|
|
17
|
+
"label": "Carosello",
|
|
18
|
+
"roleDescription": "carosello",
|
|
19
|
+
"slideRoleDescription": "diapositiva",
|
|
20
|
+
"slideLabel": "{{current}} di {{total}}",
|
|
21
|
+
"indicatorsLabel": "Diapositive",
|
|
22
|
+
"previous": "Diapositiva precedente",
|
|
23
|
+
"next": "Diapositiva successiva",
|
|
24
|
+
"goToSlide": "Vai alla diapositiva {{index}}",
|
|
25
|
+
"slideAnnouncement": "Diapositiva {{current}} di {{total}}"
|
|
26
|
+
},
|
|
27
|
+
"publicHeader": {
|
|
28
|
+
"homeLabel": "AlfaDocs — home",
|
|
29
|
+
"primaryNavLabel": "Navigazione principale",
|
|
30
|
+
"openMenu": "Apri menu",
|
|
31
|
+
"closeMenu": "Chiudi menu"
|
|
32
|
+
},
|
|
16
33
|
"kbd": {
|
|
17
34
|
"plus": "+",
|
|
18
35
|
"then": "poi",
|