@alfadocs/ui-kit-debug 0.14.0 → 0.15.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/carousel.agent-2dXpQoqp.js +1661 -0
- package/dist/_chunks/carousel.agent-2dXpQoqp.js.map +1 -0
- package/dist/_chunks/{header-D0ULgQl3.js → header-DqmKROIY.js} +42 -52
- package/dist/_chunks/header-DqmKROIY.js.map +1 -0
- package/dist/_chunks/{map-view-Dd48BxVB.js → map-view-DVP-Kp9l.js} +445 -444
- package/dist/_chunks/{map-view-Dd48BxVB.js.map → map-view-DVP-Kp9l.js.map} +1 -1
- package/dist/_chunks/menu-XRhW3_99.js +16 -0
- package/dist/_chunks/menu-XRhW3_99.js.map +1 -0
- package/dist/_chunks/{patient-shell-CL20JnVJ.js → patient-shell-BE0CdPOJ.js} +2 -2
- package/dist/_chunks/{patient-shell-CL20JnVJ.js.map → patient-shell-BE0CdPOJ.js.map} +1 -1
- package/dist/_chunks/public-header.agent-AzJSINlU.js +237 -0
- package/dist/_chunks/public-header.agent-AzJSINlU.js.map +1 -0
- package/dist/_chunks/stat-DEkZx0Mx.js +318 -0
- package/dist/_chunks/stat-DEkZx0Mx.js.map +1 -0
- package/dist/_chunks/use-count-up-BLLetaZ8.js +109 -0
- package/dist/_chunks/use-count-up-BLLetaZ8.js.map +1 -0
- package/dist/agent-catalog.json +92 -1
- package/dist/components/carousel/carousel.agent.d.ts +4 -0
- package/dist/components/carousel/carousel.agent.d.ts.map +1 -0
- package/dist/components/carousel/carousel.d.ts +45 -0
- package/dist/components/carousel/carousel.d.ts.map +1 -0
- package/dist/components/carousel/index.d.ts +3 -0
- package/dist/components/carousel/index.d.ts.map +1 -0
- package/dist/components/carousel/index.js +6 -0
- package/dist/components/carousel/index.js.map +1 -0
- package/dist/components/header/index.js +1 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/map-view/index.js +1 -1
- package/dist/components/map-view/map-view.d.ts +8 -0
- package/dist/components/map-view/map-view.d.ts.map +1 -1
- package/dist/components/public-header/index.d.ts +3 -0
- package/dist/components/public-header/index.d.ts.map +1 -0
- package/dist/components/public-header/index.js +6 -0
- package/dist/components/public-header/index.js.map +1 -0
- package/dist/components/public-header/public-header.agent.d.ts +4 -0
- package/dist/components/public-header/public-header.agent.d.ts.map +1 -0
- package/dist/components/public-header/public-header.d.ts +43 -0
- package/dist/components/public-header/public-header.d.ts.map +1 -0
- package/dist/components/stat/index.js +1 -1
- package/dist/components/stat/stat.d.ts +31 -0
- package/dist/components/stat/stat.d.ts.map +1 -1
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +10 -8
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/use-count-up.d.ts +88 -0
- package/dist/hooks/use-count-up.d.ts.map +1 -0
- package/dist/i18n/config.js +51 -0
- package/dist/i18n/config.js.map +1 -1
- package/dist/i18n/resources.d.ts +51 -0
- package/dist/i18n/resources.d.ts.map +1 -1
- package/dist/index.js +367 -361
- package/dist/index.js.map +1 -1
- 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/header-D0ULgQl3.js.map +0 -1
- package/dist/_chunks/stat-CDQ_a0vk.js +0 -228
- package/dist/_chunks/stat-CDQ_a0vk.js.map +0 -1
package/dist/i18n/resources.d.ts
CHANGED
|
@@ -14,6 +14,23 @@ export declare const enUi: {
|
|
|
14
14
|
readonly buttonGroup: {
|
|
15
15
|
readonly label: "Button group";
|
|
16
16
|
};
|
|
17
|
+
readonly carousel: {
|
|
18
|
+
readonly label: "Carousel";
|
|
19
|
+
readonly roleDescription: "carousel";
|
|
20
|
+
readonly slideRoleDescription: "slide";
|
|
21
|
+
readonly slideLabel: "{{current}} of {{total}}";
|
|
22
|
+
readonly indicatorsLabel: "Slides";
|
|
23
|
+
readonly previous: "Previous slide";
|
|
24
|
+
readonly next: "Next slide";
|
|
25
|
+
readonly goToSlide: "Go to slide {{index}}";
|
|
26
|
+
readonly slideAnnouncement: "Slide {{current}} of {{total}}";
|
|
27
|
+
};
|
|
28
|
+
readonly publicHeader: {
|
|
29
|
+
readonly homeLabel: "AlfaDocs — home";
|
|
30
|
+
readonly primaryNavLabel: "Primary";
|
|
31
|
+
readonly openMenu: "Open menu";
|
|
32
|
+
readonly closeMenu: "Close menu";
|
|
33
|
+
};
|
|
17
34
|
readonly kbd: {
|
|
18
35
|
readonly plus: "+";
|
|
19
36
|
readonly then: "then";
|
|
@@ -1031,6 +1048,23 @@ export declare const itUi: {
|
|
|
1031
1048
|
readonly buttonGroup: {
|
|
1032
1049
|
readonly label: "Gruppo di pulsanti";
|
|
1033
1050
|
};
|
|
1051
|
+
readonly carousel: {
|
|
1052
|
+
readonly label: "Carosello";
|
|
1053
|
+
readonly roleDescription: "carosello";
|
|
1054
|
+
readonly slideRoleDescription: "diapositiva";
|
|
1055
|
+
readonly slideLabel: "{{current}} di {{total}}";
|
|
1056
|
+
readonly indicatorsLabel: "Diapositive";
|
|
1057
|
+
readonly previous: "Diapositiva precedente";
|
|
1058
|
+
readonly next: "Diapositiva successiva";
|
|
1059
|
+
readonly goToSlide: "Vai alla diapositiva {{index}}";
|
|
1060
|
+
readonly slideAnnouncement: "Diapositiva {{current}} di {{total}}";
|
|
1061
|
+
};
|
|
1062
|
+
readonly publicHeader: {
|
|
1063
|
+
readonly homeLabel: "AlfaDocs — home";
|
|
1064
|
+
readonly primaryNavLabel: "Navigazione principale";
|
|
1065
|
+
readonly openMenu: "Apri menu";
|
|
1066
|
+
readonly closeMenu: "Chiudi menu";
|
|
1067
|
+
};
|
|
1034
1068
|
readonly kbd: {
|
|
1035
1069
|
readonly plus: "+";
|
|
1036
1070
|
readonly then: "poi";
|
|
@@ -2020,6 +2054,23 @@ export declare const deUi: {
|
|
|
2020
2054
|
readonly buttonGroup: {
|
|
2021
2055
|
readonly label: "Schaltflächengruppe";
|
|
2022
2056
|
};
|
|
2057
|
+
readonly carousel: {
|
|
2058
|
+
readonly label: "Karussell";
|
|
2059
|
+
readonly roleDescription: "Karussell";
|
|
2060
|
+
readonly slideRoleDescription: "Folie";
|
|
2061
|
+
readonly slideLabel: "{{current}} von {{total}}";
|
|
2062
|
+
readonly indicatorsLabel: "Folien";
|
|
2063
|
+
readonly previous: "Vorherige Folie";
|
|
2064
|
+
readonly next: "Nächste Folie";
|
|
2065
|
+
readonly goToSlide: "Zu Folie {{index}} wechseln";
|
|
2066
|
+
readonly slideAnnouncement: "Folie {{current}} von {{total}}";
|
|
2067
|
+
};
|
|
2068
|
+
readonly publicHeader: {
|
|
2069
|
+
readonly homeLabel: "AlfaDocs — Startseite";
|
|
2070
|
+
readonly primaryNavLabel: "Hauptnavigation";
|
|
2071
|
+
readonly openMenu: "Menü öffnen";
|
|
2072
|
+
readonly closeMenu: "Menü schließen";
|
|
2073
|
+
};
|
|
2023
2074
|
readonly kbd: {
|
|
2024
2075
|
readonly plus: "+";
|
|
2025
2076
|
readonly then: "dann";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["../../src/i18n/resources.ts"],"names":[],"mappings":"AAcA,gDAAgD;AAChD,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["../../src/i18n/resources.ts"],"names":[],"mappings":"AAcA,gDAAgD;AAChD,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmgCP,CAAC;AAEX,4EAA4E;AAC5E,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAo+BP,CAAC;AAEX;;;GAGG;AACH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAq+BP,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAM,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,mCAAoC,CAAC;AAEtE,0DAA0D;AAC1D,eAAO,MAAM,WAAW,EAAE,MAAM,CAC9B,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,EACrC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAMxB,CAAC"}
|