@alfadocs/ui-kit 0.31.6 → 0.31.8
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/practice-profile-card-CfAMeTxQ.js +339 -0
- package/dist/_chunks/{practice-results-VqbCUO1b.js → practice-results-CIkAdwRm.js} +516 -512
- package/dist/agent-catalog.json +1 -1
- package/dist/components/practice-profile-card/index.js +1 -1
- package/dist/components/practice-profile-card/practice-profile-card.d.ts +43 -10
- package/dist/components/practice-results/index.js +1 -1
- package/dist/i18n/locales/ar.d.ts +23 -0
- package/dist/i18n/locales/ar.js +27 -0
- package/dist/i18n/locales/de.d.ts +23 -0
- package/dist/i18n/locales/de.js +27 -0
- package/dist/i18n/locales/el.d.ts +23 -0
- package/dist/i18n/locales/el.js +27 -0
- package/dist/i18n/locales/en.d.ts +23 -0
- package/dist/i18n/locales/en.js +27 -0
- package/dist/i18n/locales/es.d.ts +23 -0
- package/dist/i18n/locales/es.js +27 -0
- package/dist/i18n/locales/fr.d.ts +23 -0
- package/dist/i18n/locales/fr.js +27 -0
- package/dist/i18n/locales/hi.d.ts +23 -0
- package/dist/i18n/locales/hi.js +27 -0
- package/dist/i18n/locales/it.d.ts +23 -0
- package/dist/i18n/locales/it.js +27 -0
- package/dist/i18n/locales/ja.d.ts +23 -0
- package/dist/i18n/locales/ja.js +27 -0
- package/dist/i18n/locales/nl.d.ts +23 -0
- package/dist/i18n/locales/nl.js +27 -0
- package/dist/i18n/locales/pl.d.ts +23 -0
- package/dist/i18n/locales/pl.js +27 -0
- package/dist/i18n/locales/pt.d.ts +23 -0
- package/dist/i18n/locales/pt.js +27 -0
- package/dist/i18n/locales/ro.d.ts +23 -0
- package/dist/i18n/locales/ro.js +27 -0
- package/dist/i18n/locales/ru.d.ts +23 -0
- package/dist/i18n/locales/ru.js +27 -0
- package/dist/i18n/locales/sq.d.ts +23 -0
- package/dist/i18n/locales/sq.js +27 -0
- package/dist/i18n/locales/sv.d.ts +23 -0
- package/dist/i18n/locales/sv.js +27 -0
- package/dist/i18n/locales/tr.d.ts +23 -0
- package/dist/i18n/locales/tr.js +27 -0
- package/dist/i18n/locales/zh.d.ts +23 -0
- package/dist/i18n/locales/zh.js +27 -0
- package/dist/index.js +2 -2
- package/dist/locales/ar.json +23 -0
- package/dist/locales/de.json +23 -0
- package/dist/locales/el.json +23 -0
- package/dist/locales/en.json +23 -0
- package/dist/locales/es.json +23 -0
- package/dist/locales/fr.json +23 -0
- package/dist/locales/hi.json +23 -0
- package/dist/locales/it.json +23 -0
- package/dist/locales/ja.json +23 -0
- package/dist/locales/nl.json +23 -0
- package/dist/locales/pl.json +23 -0
- package/dist/locales/pt.json +23 -0
- package/dist/locales/ro.json +23 -0
- package/dist/locales/ru.json +23 -0
- package/dist/locales/sq.json +23 -0
- package/dist/locales/sv.json +23 -0
- package/dist/locales/tr.json +23 -0
- package/dist/locales/zh.json +23 -0
- package/dist/tokens.css +1 -1
- package/package.json +1 -1
- package/dist/_chunks/practice-profile-card-C2_2ZH_G.js +0 -297
package/dist/agent-catalog.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { P as r, a as P, b as R, p as _ } from "../../_chunks/practice-profile-card-
|
|
1
|
+
import { P as r, a as P, b as R, p as _ } from "../../_chunks/practice-profile-card-CfAMeTxQ.js";
|
|
2
2
|
export {
|
|
3
3
|
r as PRACTICE_PROFILE_CARD_ROW_ICONS,
|
|
4
4
|
P as PRACTICE_PROFILE_CARD_ROW_KEYS,
|
|
@@ -42,17 +42,48 @@ export interface PracticeProfileCardProps extends Omit<ComponentPropsWithoutRef<
|
|
|
42
42
|
email?: string;
|
|
43
43
|
/** Practice website (already an absolute URL with protocol). */
|
|
44
44
|
website?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Google Maps Static API key. When provided alongside `address.lat`
|
|
47
|
+
* and `address.lng`, renders a static-map thumbnail at the top of
|
|
48
|
+
* the card — a single one-shot `<img>` fetch, no JS SDK boot, no
|
|
49
|
+
* consent gate needed (the same pattern PracticeResults uses).
|
|
50
|
+
*
|
|
51
|
+
* Without it (or without coords), the card renders info rows only —
|
|
52
|
+
* the address row's "Open in Google Maps" link is still emitted as
|
|
53
|
+
* a real `<a>` so the spatial cue isn't lost.
|
|
54
|
+
*
|
|
55
|
+
* Additive — existing consumers that don't pass this prop see the
|
|
56
|
+
* same render as before.
|
|
57
|
+
*/
|
|
58
|
+
googleMapsApiKey?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Zoom level for the embedded map thumbnail. Default `14` —
|
|
61
|
+
* neighbourhood-level, shows the pin in context. Ignored when the
|
|
62
|
+
* thumbnail isn't rendered.
|
|
63
|
+
*/
|
|
64
|
+
mapZoom?: number;
|
|
45
65
|
/**
|
|
46
66
|
* ISO 639-1 language codes the practice speaks. Rendered as
|
|
47
|
-
* `<Badge variant="neutral">` chips
|
|
48
|
-
*
|
|
49
|
-
* ISO
|
|
67
|
+
* `<Badge variant="neutral">` chips. Each code is auto-resolved
|
|
68
|
+
* into the active locale's native language name via the kit's
|
|
69
|
+
* built-in `languages.<iso>` i18n bundle (18 ISO codes × 18
|
|
70
|
+
* locales). For example `languages={['it', 'en']}` with
|
|
71
|
+
* `i18n.language === 'it'` renders "Italiano" + "Inglese".
|
|
72
|
+
*
|
|
73
|
+
* Unknown / unbundled codes fall back to the uppercase ISO code
|
|
74
|
+
* (`'xyz'` → `'XYZ'`). To override a specific label — regional
|
|
75
|
+
* dialect, brand-voice variant, codes the kit doesn't ship — pass
|
|
76
|
+
* `languageLabels`.
|
|
50
77
|
*/
|
|
51
78
|
languages?: string[];
|
|
52
79
|
/**
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
*
|
|
80
|
+
* Override map from ISO code → display label, applied on top of
|
|
81
|
+
* the kit's i18n auto-resolution. Only set when you need a
|
|
82
|
+
* consumer-specific label for a code — the typical case is
|
|
83
|
+
* regional dialect / brand-voice variants / non-ISO codes.
|
|
84
|
+
*
|
|
85
|
+
* Resolution order: `languageLabels[code]` > `t('languages.<code>')`
|
|
86
|
+
* > `code.toUpperCase()`.
|
|
56
87
|
*/
|
|
57
88
|
languageLabels?: Record<string, string>;
|
|
58
89
|
/**
|
|
@@ -96,10 +127,12 @@ export interface PracticeProfileCardProps extends Omit<ComponentPropsWithoutRef<
|
|
|
96
127
|
*/
|
|
97
128
|
footerSlot?: ReactNode;
|
|
98
129
|
/**
|
|
99
|
-
* `'
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
130
|
+
* `'elevated'` (default) wraps the card in `<Card variant="elevated">`
|
|
131
|
+
* for a defined surface — what most consumers want when the card
|
|
132
|
+
* stands alone on a page. `'flat'` drops the Card chrome so the
|
|
133
|
+
* content sits naked — use when an outer card / sheet already
|
|
134
|
+
* provides the boundary (e.g. embedded inside a `<Sheet>` or a
|
|
135
|
+
* parent `<Card.Body>`).
|
|
103
136
|
*/
|
|
104
137
|
surface?: 'flat' | 'elevated';
|
|
105
138
|
/** Override the default region aria-label. */
|
|
@@ -1206,6 +1206,9 @@ export declare const arUi: {
|
|
|
1206
1206
|
readonly value: {
|
|
1207
1207
|
readonly yesShort: "Yes";
|
|
1208
1208
|
};
|
|
1209
|
+
readonly map: {
|
|
1210
|
+
readonly alt: "خريطة تعرض {{address}}";
|
|
1211
|
+
};
|
|
1209
1212
|
};
|
|
1210
1213
|
readonly operatorHero: {
|
|
1211
1214
|
readonly regionLabel: "Operator profile";
|
|
@@ -1615,5 +1618,25 @@ export declare const arUi: {
|
|
|
1615
1618
|
readonly opens_in_new_tab: "(يُفتح في نافذة جديدة)";
|
|
1616
1619
|
};
|
|
1617
1620
|
};
|
|
1621
|
+
readonly languages: {
|
|
1622
|
+
readonly en: "الإنجليزية";
|
|
1623
|
+
readonly it: "الإيطالية";
|
|
1624
|
+
readonly fr: "الفرنسية";
|
|
1625
|
+
readonly de: "الألمانية";
|
|
1626
|
+
readonly es: "الإسبانية";
|
|
1627
|
+
readonly pt: "البرتغالية";
|
|
1628
|
+
readonly nl: "الهولندية";
|
|
1629
|
+
readonly pl: "البولندية";
|
|
1630
|
+
readonly ru: "الروسية";
|
|
1631
|
+
readonly ja: "اليابانية";
|
|
1632
|
+
readonly zh: "الصينية";
|
|
1633
|
+
readonly hi: "الهندية";
|
|
1634
|
+
readonly tr: "التركية";
|
|
1635
|
+
readonly sq: "الألبانية";
|
|
1636
|
+
readonly sv: "السويدية";
|
|
1637
|
+
readonly el: "اليونانية";
|
|
1638
|
+
readonly ro: "الرومانية";
|
|
1639
|
+
readonly ar: "العربية";
|
|
1640
|
+
};
|
|
1618
1641
|
};
|
|
1619
1642
|
//# sourceMappingURL=ar.d.ts.map
|
package/dist/i18n/locales/ar.js
CHANGED
|
@@ -1188,6 +1188,9 @@ const e = {
|
|
|
1188
1188
|
},
|
|
1189
1189
|
value: {
|
|
1190
1190
|
yesShort: "Yes"
|
|
1191
|
+
},
|
|
1192
|
+
map: {
|
|
1193
|
+
alt: "خريطة تعرض {{address}}"
|
|
1191
1194
|
}
|
|
1192
1195
|
},
|
|
1193
1196
|
operatorHero: {
|
|
@@ -1597,6 +1600,30 @@ const e = {
|
|
|
1597
1600
|
external: {
|
|
1598
1601
|
opens_in_new_tab: "(يُفتح في نافذة جديدة)"
|
|
1599
1602
|
}
|
|
1603
|
+
},
|
|
1604
|
+
/* Language display names — keyed by ISO 639-1 code. Used by
|
|
1605
|
+
PracticeProfileCard / PatientSearch / PracticeResults to
|
|
1606
|
+
auto-resolve a consumer-passed languages={['it','en',...]}
|
|
1607
|
+
array into native-language labels for the active locale. */
|
|
1608
|
+
languages: {
|
|
1609
|
+
en: "الإنجليزية",
|
|
1610
|
+
it: "الإيطالية",
|
|
1611
|
+
fr: "الفرنسية",
|
|
1612
|
+
de: "الألمانية",
|
|
1613
|
+
es: "الإسبانية",
|
|
1614
|
+
pt: "البرتغالية",
|
|
1615
|
+
nl: "الهولندية",
|
|
1616
|
+
pl: "البولندية",
|
|
1617
|
+
ru: "الروسية",
|
|
1618
|
+
ja: "اليابانية",
|
|
1619
|
+
zh: "الصينية",
|
|
1620
|
+
hi: "الهندية",
|
|
1621
|
+
tr: "التركية",
|
|
1622
|
+
sq: "الألبانية",
|
|
1623
|
+
sv: "السويدية",
|
|
1624
|
+
el: "اليونانية",
|
|
1625
|
+
ro: "الرومانية",
|
|
1626
|
+
ar: "العربية"
|
|
1600
1627
|
}
|
|
1601
1628
|
};
|
|
1602
1629
|
export {
|
|
@@ -1206,6 +1206,9 @@ export declare const deUi: {
|
|
|
1206
1206
|
readonly value: {
|
|
1207
1207
|
readonly yesShort: "Yes";
|
|
1208
1208
|
};
|
|
1209
|
+
readonly map: {
|
|
1210
|
+
readonly alt: "Karte mit {{address}}";
|
|
1211
|
+
};
|
|
1209
1212
|
};
|
|
1210
1213
|
readonly operatorHero: {
|
|
1211
1214
|
readonly regionLabel: "Operator profile";
|
|
@@ -1615,5 +1618,25 @@ export declare const deUi: {
|
|
|
1615
1618
|
readonly opens_in_new_tab: "(öffnet in neuem Tab)";
|
|
1616
1619
|
};
|
|
1617
1620
|
};
|
|
1621
|
+
readonly languages: {
|
|
1622
|
+
readonly en: "Englisch";
|
|
1623
|
+
readonly it: "Italienisch";
|
|
1624
|
+
readonly fr: "Französisch";
|
|
1625
|
+
readonly de: "Deutsch";
|
|
1626
|
+
readonly es: "Spanisch";
|
|
1627
|
+
readonly pt: "Portugiesisch";
|
|
1628
|
+
readonly nl: "Niederländisch";
|
|
1629
|
+
readonly pl: "Polnisch";
|
|
1630
|
+
readonly ru: "Russisch";
|
|
1631
|
+
readonly ja: "Japanisch";
|
|
1632
|
+
readonly zh: "Chinesisch";
|
|
1633
|
+
readonly hi: "Hindi";
|
|
1634
|
+
readonly tr: "Türkisch";
|
|
1635
|
+
readonly sq: "Albanisch";
|
|
1636
|
+
readonly sv: "Schwedisch";
|
|
1637
|
+
readonly el: "Griechisch";
|
|
1638
|
+
readonly ro: "Rumänisch";
|
|
1639
|
+
readonly ar: "Arabisch";
|
|
1640
|
+
};
|
|
1618
1641
|
};
|
|
1619
1642
|
//# sourceMappingURL=de.d.ts.map
|
package/dist/i18n/locales/de.js
CHANGED
|
@@ -1187,6 +1187,9 @@ const e = {
|
|
|
1187
1187
|
},
|
|
1188
1188
|
value: {
|
|
1189
1189
|
yesShort: "Yes"
|
|
1190
|
+
},
|
|
1191
|
+
map: {
|
|
1192
|
+
alt: "Karte mit {{address}}"
|
|
1190
1193
|
}
|
|
1191
1194
|
},
|
|
1192
1195
|
operatorHero: {
|
|
@@ -1596,6 +1599,30 @@ const e = {
|
|
|
1596
1599
|
external: {
|
|
1597
1600
|
opens_in_new_tab: "(öffnet in neuem Tab)"
|
|
1598
1601
|
}
|
|
1602
|
+
},
|
|
1603
|
+
/* Language display names — keyed by ISO 639-1 code. Used by
|
|
1604
|
+
PracticeProfileCard / PatientSearch / PracticeResults to
|
|
1605
|
+
auto-resolve a consumer-passed languages={['it','en',...]}
|
|
1606
|
+
array into native-language labels for the active locale. */
|
|
1607
|
+
languages: {
|
|
1608
|
+
en: "Englisch",
|
|
1609
|
+
it: "Italienisch",
|
|
1610
|
+
fr: "Französisch",
|
|
1611
|
+
de: "Deutsch",
|
|
1612
|
+
es: "Spanisch",
|
|
1613
|
+
pt: "Portugiesisch",
|
|
1614
|
+
nl: "Niederländisch",
|
|
1615
|
+
pl: "Polnisch",
|
|
1616
|
+
ru: "Russisch",
|
|
1617
|
+
ja: "Japanisch",
|
|
1618
|
+
zh: "Chinesisch",
|
|
1619
|
+
hi: "Hindi",
|
|
1620
|
+
tr: "Türkisch",
|
|
1621
|
+
sq: "Albanisch",
|
|
1622
|
+
sv: "Schwedisch",
|
|
1623
|
+
el: "Griechisch",
|
|
1624
|
+
ro: "Rumänisch",
|
|
1625
|
+
ar: "Arabisch"
|
|
1599
1626
|
}
|
|
1600
1627
|
};
|
|
1601
1628
|
export {
|
|
@@ -1203,6 +1203,9 @@ export declare const elUi: {
|
|
|
1203
1203
|
readonly value: {
|
|
1204
1204
|
readonly yesShort: "Yes";
|
|
1205
1205
|
};
|
|
1206
|
+
readonly map: {
|
|
1207
|
+
readonly alt: "Χάρτης που δείχνει το {{address}}";
|
|
1208
|
+
};
|
|
1206
1209
|
};
|
|
1207
1210
|
readonly operatorHero: {
|
|
1208
1211
|
readonly regionLabel: "Operator profile";
|
|
@@ -1612,5 +1615,25 @@ export declare const elUi: {
|
|
|
1612
1615
|
readonly opens_in_new_tab: "(ανοίγει σε νέα καρτέλα)";
|
|
1613
1616
|
};
|
|
1614
1617
|
};
|
|
1618
|
+
readonly languages: {
|
|
1619
|
+
readonly en: "Αγγλικά";
|
|
1620
|
+
readonly it: "Ιταλικά";
|
|
1621
|
+
readonly fr: "Γαλλικά";
|
|
1622
|
+
readonly de: "Γερμανικά";
|
|
1623
|
+
readonly es: "Ισπανικά";
|
|
1624
|
+
readonly pt: "Πορτογαλικά";
|
|
1625
|
+
readonly nl: "Ολλανδικά";
|
|
1626
|
+
readonly pl: "Πολωνικά";
|
|
1627
|
+
readonly ru: "Ρωσικά";
|
|
1628
|
+
readonly ja: "Ιαπωνικά";
|
|
1629
|
+
readonly zh: "Κινεζικά";
|
|
1630
|
+
readonly hi: "Χίντι";
|
|
1631
|
+
readonly tr: "Τουρκικά";
|
|
1632
|
+
readonly sq: "Αλβανικά";
|
|
1633
|
+
readonly sv: "Σουηδικά";
|
|
1634
|
+
readonly el: "Ελληνικά";
|
|
1635
|
+
readonly ro: "Ρουμανικά";
|
|
1636
|
+
readonly ar: "Αραβικά";
|
|
1637
|
+
};
|
|
1615
1638
|
};
|
|
1616
1639
|
//# sourceMappingURL=el.d.ts.map
|
package/dist/i18n/locales/el.js
CHANGED
|
@@ -1188,6 +1188,9 @@ const e = {
|
|
|
1188
1188
|
},
|
|
1189
1189
|
value: {
|
|
1190
1190
|
yesShort: "Yes"
|
|
1191
|
+
},
|
|
1192
|
+
map: {
|
|
1193
|
+
alt: "Χάρτης που δείχνει το {{address}}"
|
|
1191
1194
|
}
|
|
1192
1195
|
},
|
|
1193
1196
|
operatorHero: {
|
|
@@ -1597,6 +1600,30 @@ const e = {
|
|
|
1597
1600
|
external: {
|
|
1598
1601
|
opens_in_new_tab: "(ανοίγει σε νέα καρτέλα)"
|
|
1599
1602
|
}
|
|
1603
|
+
},
|
|
1604
|
+
/* Language display names — keyed by ISO 639-1 code. Used by
|
|
1605
|
+
PracticeProfileCard / PatientSearch / PracticeResults to
|
|
1606
|
+
auto-resolve a consumer-passed languages={['it','en',...]}
|
|
1607
|
+
array into native-language labels for the active locale. */
|
|
1608
|
+
languages: {
|
|
1609
|
+
en: "Αγγλικά",
|
|
1610
|
+
it: "Ιταλικά",
|
|
1611
|
+
fr: "Γαλλικά",
|
|
1612
|
+
de: "Γερμανικά",
|
|
1613
|
+
es: "Ισπανικά",
|
|
1614
|
+
pt: "Πορτογαλικά",
|
|
1615
|
+
nl: "Ολλανδικά",
|
|
1616
|
+
pl: "Πολωνικά",
|
|
1617
|
+
ru: "Ρωσικά",
|
|
1618
|
+
ja: "Ιαπωνικά",
|
|
1619
|
+
zh: "Κινεζικά",
|
|
1620
|
+
hi: "Χίντι",
|
|
1621
|
+
tr: "Τουρκικά",
|
|
1622
|
+
sq: "Αλβανικά",
|
|
1623
|
+
sv: "Σουηδικά",
|
|
1624
|
+
el: "Ελληνικά",
|
|
1625
|
+
ro: "Ρουμανικά",
|
|
1626
|
+
ar: "Αραβικά"
|
|
1600
1627
|
}
|
|
1601
1628
|
};
|
|
1602
1629
|
export {
|
|
@@ -1203,6 +1203,9 @@ export declare const enUi: {
|
|
|
1203
1203
|
readonly value: {
|
|
1204
1204
|
readonly yesShort: "Yes";
|
|
1205
1205
|
};
|
|
1206
|
+
readonly map: {
|
|
1207
|
+
readonly alt: "Map showing {{address}}";
|
|
1208
|
+
};
|
|
1206
1209
|
};
|
|
1207
1210
|
readonly operatorHero: {
|
|
1208
1211
|
readonly regionLabel: "Operator profile";
|
|
@@ -1612,5 +1615,25 @@ export declare const enUi: {
|
|
|
1612
1615
|
readonly opens_in_new_tab: "(opens in new tab)";
|
|
1613
1616
|
};
|
|
1614
1617
|
};
|
|
1618
|
+
readonly languages: {
|
|
1619
|
+
readonly en: "English";
|
|
1620
|
+
readonly it: "Italian";
|
|
1621
|
+
readonly fr: "French";
|
|
1622
|
+
readonly de: "German";
|
|
1623
|
+
readonly es: "Spanish";
|
|
1624
|
+
readonly pt: "Portuguese";
|
|
1625
|
+
readonly nl: "Dutch";
|
|
1626
|
+
readonly pl: "Polish";
|
|
1627
|
+
readonly ru: "Russian";
|
|
1628
|
+
readonly ja: "Japanese";
|
|
1629
|
+
readonly zh: "Chinese";
|
|
1630
|
+
readonly hi: "Hindi";
|
|
1631
|
+
readonly tr: "Turkish";
|
|
1632
|
+
readonly sq: "Albanian";
|
|
1633
|
+
readonly sv: "Swedish";
|
|
1634
|
+
readonly el: "Greek";
|
|
1635
|
+
readonly ro: "Romanian";
|
|
1636
|
+
readonly ar: "Arabic";
|
|
1637
|
+
};
|
|
1615
1638
|
};
|
|
1616
1639
|
//# sourceMappingURL=en.d.ts.map
|
package/dist/i18n/locales/en.js
CHANGED
|
@@ -1181,6 +1181,9 @@ const e = {
|
|
|
1181
1181
|
},
|
|
1182
1182
|
value: {
|
|
1183
1183
|
yesShort: "Yes"
|
|
1184
|
+
},
|
|
1185
|
+
map: {
|
|
1186
|
+
alt: "Map showing {{address}}"
|
|
1184
1187
|
}
|
|
1185
1188
|
},
|
|
1186
1189
|
operatorHero: {
|
|
@@ -1593,6 +1596,30 @@ const e = {
|
|
|
1593
1596
|
external: {
|
|
1594
1597
|
opens_in_new_tab: "(opens in new tab)"
|
|
1595
1598
|
}
|
|
1599
|
+
},
|
|
1600
|
+
/* Language display names — keyed by ISO 639-1 code. Used by
|
|
1601
|
+
PracticeProfileCard / PatientSearch / PracticeResults to
|
|
1602
|
+
auto-resolve a consumer-passed languages={['it','en',...]}
|
|
1603
|
+
array into native-language labels for the active locale. */
|
|
1604
|
+
languages: {
|
|
1605
|
+
en: "English",
|
|
1606
|
+
it: "Italian",
|
|
1607
|
+
fr: "French",
|
|
1608
|
+
de: "German",
|
|
1609
|
+
es: "Spanish",
|
|
1610
|
+
pt: "Portuguese",
|
|
1611
|
+
nl: "Dutch",
|
|
1612
|
+
pl: "Polish",
|
|
1613
|
+
ru: "Russian",
|
|
1614
|
+
ja: "Japanese",
|
|
1615
|
+
zh: "Chinese",
|
|
1616
|
+
hi: "Hindi",
|
|
1617
|
+
tr: "Turkish",
|
|
1618
|
+
sq: "Albanian",
|
|
1619
|
+
sv: "Swedish",
|
|
1620
|
+
el: "Greek",
|
|
1621
|
+
ro: "Romanian",
|
|
1622
|
+
ar: "Arabic"
|
|
1596
1623
|
}
|
|
1597
1624
|
};
|
|
1598
1625
|
export {
|
|
@@ -1203,6 +1203,9 @@ export declare const esUi: {
|
|
|
1203
1203
|
readonly value: {
|
|
1204
1204
|
readonly yesShort: "Yes";
|
|
1205
1205
|
};
|
|
1206
|
+
readonly map: {
|
|
1207
|
+
readonly alt: "Mapa que muestra {{address}}";
|
|
1208
|
+
};
|
|
1206
1209
|
};
|
|
1207
1210
|
readonly operatorHero: {
|
|
1208
1211
|
readonly regionLabel: "Operator profile";
|
|
@@ -1612,5 +1615,25 @@ export declare const esUi: {
|
|
|
1612
1615
|
readonly opens_in_new_tab: "(se abre en una pestaña nueva)";
|
|
1613
1616
|
};
|
|
1614
1617
|
};
|
|
1618
|
+
readonly languages: {
|
|
1619
|
+
readonly en: "inglés";
|
|
1620
|
+
readonly it: "italiano";
|
|
1621
|
+
readonly fr: "francés";
|
|
1622
|
+
readonly de: "alemán";
|
|
1623
|
+
readonly es: "español";
|
|
1624
|
+
readonly pt: "portugués";
|
|
1625
|
+
readonly nl: "neerlandés";
|
|
1626
|
+
readonly pl: "polaco";
|
|
1627
|
+
readonly ru: "ruso";
|
|
1628
|
+
readonly ja: "japonés";
|
|
1629
|
+
readonly zh: "chino";
|
|
1630
|
+
readonly hi: "hindi";
|
|
1631
|
+
readonly tr: "turco";
|
|
1632
|
+
readonly sq: "albanés";
|
|
1633
|
+
readonly sv: "sueco";
|
|
1634
|
+
readonly el: "griego";
|
|
1635
|
+
readonly ro: "rumano";
|
|
1636
|
+
readonly ar: "árabe";
|
|
1637
|
+
};
|
|
1615
1638
|
};
|
|
1616
1639
|
//# sourceMappingURL=es.d.ts.map
|
package/dist/i18n/locales/es.js
CHANGED
|
@@ -1187,6 +1187,9 @@ const e = {
|
|
|
1187
1187
|
},
|
|
1188
1188
|
value: {
|
|
1189
1189
|
yesShort: "Yes"
|
|
1190
|
+
},
|
|
1191
|
+
map: {
|
|
1192
|
+
alt: "Mapa que muestra {{address}}"
|
|
1190
1193
|
}
|
|
1191
1194
|
},
|
|
1192
1195
|
operatorHero: {
|
|
@@ -1594,6 +1597,30 @@ const e = {
|
|
|
1594
1597
|
}
|
|
1595
1598
|
},
|
|
1596
1599
|
external: { opens_in_new_tab: "(se abre en una pestaña nueva)" }
|
|
1600
|
+
},
|
|
1601
|
+
/* Language display names — keyed by ISO 639-1 code. Used by
|
|
1602
|
+
PracticeProfileCard / PatientSearch / PracticeResults to
|
|
1603
|
+
auto-resolve a consumer-passed languages={['it','en',...]}
|
|
1604
|
+
array into native-language labels for the active locale. */
|
|
1605
|
+
languages: {
|
|
1606
|
+
en: "inglés",
|
|
1607
|
+
it: "italiano",
|
|
1608
|
+
fr: "francés",
|
|
1609
|
+
de: "alemán",
|
|
1610
|
+
es: "español",
|
|
1611
|
+
pt: "portugués",
|
|
1612
|
+
nl: "neerlandés",
|
|
1613
|
+
pl: "polaco",
|
|
1614
|
+
ru: "ruso",
|
|
1615
|
+
ja: "japonés",
|
|
1616
|
+
zh: "chino",
|
|
1617
|
+
hi: "hindi",
|
|
1618
|
+
tr: "turco",
|
|
1619
|
+
sq: "albanés",
|
|
1620
|
+
sv: "sueco",
|
|
1621
|
+
el: "griego",
|
|
1622
|
+
ro: "rumano",
|
|
1623
|
+
ar: "árabe"
|
|
1597
1624
|
}
|
|
1598
1625
|
};
|
|
1599
1626
|
export {
|
|
@@ -1203,6 +1203,9 @@ export declare const frUi: {
|
|
|
1203
1203
|
readonly value: {
|
|
1204
1204
|
readonly yesShort: "Yes";
|
|
1205
1205
|
};
|
|
1206
|
+
readonly map: {
|
|
1207
|
+
readonly alt: "Carte montrant {{address}}";
|
|
1208
|
+
};
|
|
1206
1209
|
};
|
|
1207
1210
|
readonly operatorHero: {
|
|
1208
1211
|
readonly regionLabel: "Operator profile";
|
|
@@ -1612,5 +1615,25 @@ export declare const frUi: {
|
|
|
1612
1615
|
readonly opens_in_new_tab: "(ouvre dans un nouvel onglet)";
|
|
1613
1616
|
};
|
|
1614
1617
|
};
|
|
1618
|
+
readonly languages: {
|
|
1619
|
+
readonly en: "anglais";
|
|
1620
|
+
readonly it: "italien";
|
|
1621
|
+
readonly fr: "français";
|
|
1622
|
+
readonly de: "allemand";
|
|
1623
|
+
readonly es: "espagnol";
|
|
1624
|
+
readonly pt: "portugais";
|
|
1625
|
+
readonly nl: "néerlandais";
|
|
1626
|
+
readonly pl: "polonais";
|
|
1627
|
+
readonly ru: "russe";
|
|
1628
|
+
readonly ja: "japonais";
|
|
1629
|
+
readonly zh: "chinois";
|
|
1630
|
+
readonly hi: "hindi";
|
|
1631
|
+
readonly tr: "turc";
|
|
1632
|
+
readonly sq: "albanais";
|
|
1633
|
+
readonly sv: "suédois";
|
|
1634
|
+
readonly el: "grec";
|
|
1635
|
+
readonly ro: "roumain";
|
|
1636
|
+
readonly ar: "arabe";
|
|
1637
|
+
};
|
|
1615
1638
|
};
|
|
1616
1639
|
//# sourceMappingURL=fr.d.ts.map
|
package/dist/i18n/locales/fr.js
CHANGED
|
@@ -1187,6 +1187,9 @@ const e = {
|
|
|
1187
1187
|
},
|
|
1188
1188
|
value: {
|
|
1189
1189
|
yesShort: "Yes"
|
|
1190
|
+
},
|
|
1191
|
+
map: {
|
|
1192
|
+
alt: "Carte montrant {{address}}"
|
|
1190
1193
|
}
|
|
1191
1194
|
},
|
|
1192
1195
|
operatorHero: {
|
|
@@ -1594,6 +1597,30 @@ const e = {
|
|
|
1594
1597
|
}
|
|
1595
1598
|
},
|
|
1596
1599
|
external: { opens_in_new_tab: "(ouvre dans un nouvel onglet)" }
|
|
1600
|
+
},
|
|
1601
|
+
/* Language display names — keyed by ISO 639-1 code. Used by
|
|
1602
|
+
PracticeProfileCard / PatientSearch / PracticeResults to
|
|
1603
|
+
auto-resolve a consumer-passed languages={['it','en',...]}
|
|
1604
|
+
array into native-language labels for the active locale. */
|
|
1605
|
+
languages: {
|
|
1606
|
+
en: "anglais",
|
|
1607
|
+
it: "italien",
|
|
1608
|
+
fr: "français",
|
|
1609
|
+
de: "allemand",
|
|
1610
|
+
es: "espagnol",
|
|
1611
|
+
pt: "portugais",
|
|
1612
|
+
nl: "néerlandais",
|
|
1613
|
+
pl: "polonais",
|
|
1614
|
+
ru: "russe",
|
|
1615
|
+
ja: "japonais",
|
|
1616
|
+
zh: "chinois",
|
|
1617
|
+
hi: "hindi",
|
|
1618
|
+
tr: "turc",
|
|
1619
|
+
sq: "albanais",
|
|
1620
|
+
sv: "suédois",
|
|
1621
|
+
el: "grec",
|
|
1622
|
+
ro: "roumain",
|
|
1623
|
+
ar: "arabe"
|
|
1597
1624
|
}
|
|
1598
1625
|
};
|
|
1599
1626
|
export {
|
|
@@ -1203,6 +1203,9 @@ export declare const hiUi: {
|
|
|
1203
1203
|
readonly value: {
|
|
1204
1204
|
readonly yesShort: "Yes";
|
|
1205
1205
|
};
|
|
1206
|
+
readonly map: {
|
|
1207
|
+
readonly alt: "{{address}} दिखाने वाला मानचित्र";
|
|
1208
|
+
};
|
|
1206
1209
|
};
|
|
1207
1210
|
readonly operatorHero: {
|
|
1208
1211
|
readonly regionLabel: "Operator profile";
|
|
@@ -1612,5 +1615,25 @@ export declare const hiUi: {
|
|
|
1612
1615
|
readonly opens_in_new_tab: "(नए टैब में खुलता है)";
|
|
1613
1616
|
};
|
|
1614
1617
|
};
|
|
1618
|
+
readonly languages: {
|
|
1619
|
+
readonly en: "अंग्रेज़ी";
|
|
1620
|
+
readonly it: "इतालवी";
|
|
1621
|
+
readonly fr: "फ़्रेंच";
|
|
1622
|
+
readonly de: "जर्मन";
|
|
1623
|
+
readonly es: "स्पेनिश";
|
|
1624
|
+
readonly pt: "पुर्तगाली";
|
|
1625
|
+
readonly nl: "डच";
|
|
1626
|
+
readonly pl: "पोलिश";
|
|
1627
|
+
readonly ru: "रूसी";
|
|
1628
|
+
readonly ja: "जापानी";
|
|
1629
|
+
readonly zh: "चीनी";
|
|
1630
|
+
readonly hi: "हिन्दी";
|
|
1631
|
+
readonly tr: "तुर्की";
|
|
1632
|
+
readonly sq: "अल्बानियाई";
|
|
1633
|
+
readonly sv: "स्वीडिश";
|
|
1634
|
+
readonly el: "यूनानी";
|
|
1635
|
+
readonly ro: "रोमानियाई";
|
|
1636
|
+
readonly ar: "अरबी";
|
|
1637
|
+
};
|
|
1615
1638
|
};
|
|
1616
1639
|
//# sourceMappingURL=hi.d.ts.map
|
package/dist/i18n/locales/hi.js
CHANGED
|
@@ -1188,6 +1188,9 @@ const e = {
|
|
|
1188
1188
|
},
|
|
1189
1189
|
value: {
|
|
1190
1190
|
yesShort: "Yes"
|
|
1191
|
+
},
|
|
1192
|
+
map: {
|
|
1193
|
+
alt: "{{address}} दिखाने वाला मानचित्र"
|
|
1191
1194
|
}
|
|
1192
1195
|
},
|
|
1193
1196
|
operatorHero: {
|
|
@@ -1595,6 +1598,30 @@ const e = {
|
|
|
1595
1598
|
}
|
|
1596
1599
|
},
|
|
1597
1600
|
external: { opens_in_new_tab: "(नए टैब में खुलता है)" }
|
|
1601
|
+
},
|
|
1602
|
+
/* Language display names — keyed by ISO 639-1 code. Used by
|
|
1603
|
+
PracticeProfileCard / PatientSearch / PracticeResults to
|
|
1604
|
+
auto-resolve a consumer-passed languages={['it','en',...]}
|
|
1605
|
+
array into native-language labels for the active locale. */
|
|
1606
|
+
languages: {
|
|
1607
|
+
en: "अंग्रेज़ी",
|
|
1608
|
+
it: "इतालवी",
|
|
1609
|
+
fr: "फ़्रेंच",
|
|
1610
|
+
de: "जर्मन",
|
|
1611
|
+
es: "स्पेनिश",
|
|
1612
|
+
pt: "पुर्तगाली",
|
|
1613
|
+
nl: "डच",
|
|
1614
|
+
pl: "पोलिश",
|
|
1615
|
+
ru: "रूसी",
|
|
1616
|
+
ja: "जापानी",
|
|
1617
|
+
zh: "चीनी",
|
|
1618
|
+
hi: "हिन्दी",
|
|
1619
|
+
tr: "तुर्की",
|
|
1620
|
+
sq: "अल्बानियाई",
|
|
1621
|
+
sv: "स्वीडिश",
|
|
1622
|
+
el: "यूनानी",
|
|
1623
|
+
ro: "रोमानियाई",
|
|
1624
|
+
ar: "अरबी"
|
|
1598
1625
|
}
|
|
1599
1626
|
};
|
|
1600
1627
|
export {
|
|
@@ -1200,6 +1200,9 @@ export declare const itUi: {
|
|
|
1200
1200
|
readonly value: {
|
|
1201
1201
|
readonly yesShort: "Sì";
|
|
1202
1202
|
};
|
|
1203
|
+
readonly map: {
|
|
1204
|
+
readonly alt: "Mappa che mostra {{address}}";
|
|
1205
|
+
};
|
|
1203
1206
|
};
|
|
1204
1207
|
readonly operatorHero: {
|
|
1205
1208
|
readonly regionLabel: "Profilo del professionista";
|
|
@@ -1609,5 +1612,25 @@ export declare const itUi: {
|
|
|
1609
1612
|
readonly opens_in_new_tab: "(si apre in una nuova scheda)";
|
|
1610
1613
|
};
|
|
1611
1614
|
};
|
|
1615
|
+
readonly languages: {
|
|
1616
|
+
readonly en: "Inglese";
|
|
1617
|
+
readonly it: "Italiano";
|
|
1618
|
+
readonly fr: "Francese";
|
|
1619
|
+
readonly de: "Tedesco";
|
|
1620
|
+
readonly es: "Spagnolo";
|
|
1621
|
+
readonly pt: "Portoghese";
|
|
1622
|
+
readonly nl: "Olandese";
|
|
1623
|
+
readonly pl: "Polacco";
|
|
1624
|
+
readonly ru: "Russo";
|
|
1625
|
+
readonly ja: "Giapponese";
|
|
1626
|
+
readonly zh: "Cinese";
|
|
1627
|
+
readonly hi: "Hindi";
|
|
1628
|
+
readonly tr: "Turco";
|
|
1629
|
+
readonly sq: "Albanese";
|
|
1630
|
+
readonly sv: "Svedese";
|
|
1631
|
+
readonly el: "Greco";
|
|
1632
|
+
readonly ro: "Rumeno";
|
|
1633
|
+
readonly ar: "Arabo";
|
|
1634
|
+
};
|
|
1612
1635
|
};
|
|
1613
1636
|
//# sourceMappingURL=it.d.ts.map
|