@alfadocs/ui-kit 0.31.6 → 0.31.7

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.
Files changed (64) hide show
  1. package/dist/_chunks/practice-profile-card-DwZo7ggW.js +305 -0
  2. package/dist/_chunks/{practice-results-VqbCUO1b.js → practice-results-CIkAdwRm.js} +516 -512
  3. package/dist/agent-catalog.json +1 -1
  4. package/dist/components/practice-profile-card/index.js +1 -1
  5. package/dist/components/practice-profile-card/practice-profile-card.d.ts +23 -10
  6. package/dist/components/practice-results/index.js +1 -1
  7. package/dist/i18n/locales/ar.d.ts +20 -0
  8. package/dist/i18n/locales/ar.js +24 -0
  9. package/dist/i18n/locales/de.d.ts +20 -0
  10. package/dist/i18n/locales/de.js +24 -0
  11. package/dist/i18n/locales/el.d.ts +20 -0
  12. package/dist/i18n/locales/el.js +24 -0
  13. package/dist/i18n/locales/en.d.ts +20 -0
  14. package/dist/i18n/locales/en.js +24 -0
  15. package/dist/i18n/locales/es.d.ts +20 -0
  16. package/dist/i18n/locales/es.js +24 -0
  17. package/dist/i18n/locales/fr.d.ts +20 -0
  18. package/dist/i18n/locales/fr.js +24 -0
  19. package/dist/i18n/locales/hi.d.ts +20 -0
  20. package/dist/i18n/locales/hi.js +24 -0
  21. package/dist/i18n/locales/it.d.ts +20 -0
  22. package/dist/i18n/locales/it.js +24 -0
  23. package/dist/i18n/locales/ja.d.ts +20 -0
  24. package/dist/i18n/locales/ja.js +24 -0
  25. package/dist/i18n/locales/nl.d.ts +20 -0
  26. package/dist/i18n/locales/nl.js +24 -0
  27. package/dist/i18n/locales/pl.d.ts +20 -0
  28. package/dist/i18n/locales/pl.js +24 -0
  29. package/dist/i18n/locales/pt.d.ts +20 -0
  30. package/dist/i18n/locales/pt.js +24 -0
  31. package/dist/i18n/locales/ro.d.ts +20 -0
  32. package/dist/i18n/locales/ro.js +24 -0
  33. package/dist/i18n/locales/ru.d.ts +20 -0
  34. package/dist/i18n/locales/ru.js +24 -0
  35. package/dist/i18n/locales/sq.d.ts +20 -0
  36. package/dist/i18n/locales/sq.js +24 -0
  37. package/dist/i18n/locales/sv.d.ts +20 -0
  38. package/dist/i18n/locales/sv.js +24 -0
  39. package/dist/i18n/locales/tr.d.ts +20 -0
  40. package/dist/i18n/locales/tr.js +24 -0
  41. package/dist/i18n/locales/zh.d.ts +20 -0
  42. package/dist/i18n/locales/zh.js +24 -0
  43. package/dist/index.js +2 -2
  44. package/dist/locales/ar.json +20 -0
  45. package/dist/locales/de.json +20 -0
  46. package/dist/locales/el.json +20 -0
  47. package/dist/locales/en.json +20 -0
  48. package/dist/locales/es.json +20 -0
  49. package/dist/locales/fr.json +20 -0
  50. package/dist/locales/hi.json +20 -0
  51. package/dist/locales/it.json +20 -0
  52. package/dist/locales/ja.json +20 -0
  53. package/dist/locales/nl.json +20 -0
  54. package/dist/locales/pl.json +20 -0
  55. package/dist/locales/pt.json +20 -0
  56. package/dist/locales/ro.json +20 -0
  57. package/dist/locales/ru.json +20 -0
  58. package/dist/locales/sq.json +20 -0
  59. package/dist/locales/sv.json +20 -0
  60. package/dist/locales/tr.json +20 -0
  61. package/dist/locales/zh.json +20 -0
  62. package/dist/tokens.css +1 -1
  63. package/package.json +1 -1
  64. package/dist/_chunks/practice-profile-card-C2_2ZH_G.js +0 -297
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "packageVersion": "0.31.6",
3
+ "packageVersion": "0.31.7",
4
4
  "components": [
5
5
  {
6
6
  "kind": "component",
@@ -1,4 +1,4 @@
1
- import { P as r, a as P, b as R, p as _ } from "../../_chunks/practice-profile-card-C2_2ZH_G.js";
1
+ import { P as r, a as P, b as R, p as _ } from "../../_chunks/practice-profile-card-DwZo7ggW.js";
2
2
  export {
3
3
  r as PRACTICE_PROFILE_CARD_ROW_ICONS,
4
4
  P as PRACTICE_PROFILE_CARD_ROW_KEYS,
@@ -44,15 +44,26 @@ export interface PracticeProfileCardProps extends Omit<ComponentPropsWithoutRef<
44
44
  website?: string;
45
45
  /**
46
46
  * ISO 639-1 language codes the practice speaks. Rendered as
47
- * `<Badge variant="neutral">` chips the consumer can pass display
48
- * labels via `languageLabels` to override the kit's default (uppercase
49
- * ISO code).
47
+ * `<Badge variant="neutral">` chips. Each code is auto-resolved
48
+ * into the active locale's native language name via the kit's
49
+ * built-in `languages.<iso>` i18n bundle (18 ISO codes × 18
50
+ * locales). For example `languages={['it', 'en']}` with
51
+ * `i18n.language === 'it'` renders "Italiano" + "Inglese".
52
+ *
53
+ * Unknown / unbundled codes fall back to the uppercase ISO code
54
+ * (`'xyz'` → `'XYZ'`). To override a specific label — regional
55
+ * dialect, brand-voice variant, codes the kit doesn't ship — pass
56
+ * `languageLabels`.
50
57
  */
51
58
  languages?: string[];
52
59
  /**
53
- * Map from ISO code → display label (e.g. `{ it: 'Italiano' }`).
54
- * When omitted or a code is missing, the kit falls back to the
55
- * uppercase code.
60
+ * Override map from ISO code → display label, applied on top of
61
+ * the kit's i18n auto-resolution. Only set when you need a
62
+ * consumer-specific label for a code — the typical case is
63
+ * regional dialect / brand-voice variants / non-ISO codes.
64
+ *
65
+ * Resolution order: `languageLabels[code]` > `t('languages.<code>')`
66
+ * > `code.toUpperCase()`.
56
67
  */
57
68
  languageLabels?: Record<string, string>;
58
69
  /**
@@ -96,10 +107,12 @@ export interface PracticeProfileCardProps extends Omit<ComponentPropsWithoutRef<
96
107
  */
97
108
  footerSlot?: ReactNode;
98
109
  /**
99
- * `'flat'` (default) renders the card without elevation — content
100
- * sits naked on the page. `'elevated'` wraps in `<Card variant="elevated">`
101
- * for a defined surface. Most use cases want elevated; flat is for
102
- * pages that already provide the card chrome.
110
+ * `'elevated'` (default) wraps the card in `<Card variant="elevated">`
111
+ * for a defined surface what most consumers want when the card
112
+ * stands alone on a page. `'flat'` drops the Card chrome so the
113
+ * content sits naked use when an outer card / sheet already
114
+ * provides the boundary (e.g. embedded inside a `<Sheet>` or a
115
+ * parent `<Card.Body>`).
103
116
  */
104
117
  surface?: 'flat' | 'elevated';
105
118
  /** Override the default region aria-label. */
@@ -1,4 +1,4 @@
1
- import { P as t, p as a } from "../../_chunks/practice-results-VqbCUO1b.js";
1
+ import { P as t, p as a } from "../../_chunks/practice-results-CIkAdwRm.js";
2
2
  export {
3
3
  t as PracticeResults,
4
4
  a as practiceResultsAgent
@@ -1615,5 +1615,25 @@ export declare const arUi: {
1615
1615
  readonly opens_in_new_tab: "(يُفتح في نافذة جديدة)";
1616
1616
  };
1617
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
+ };
1618
1638
  };
1619
1639
  //# sourceMappingURL=ar.d.ts.map
@@ -1597,6 +1597,30 @@ const e = {
1597
1597
  external: {
1598
1598
  opens_in_new_tab: "(يُفتح في نافذة جديدة)"
1599
1599
  }
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: "الإنجليزية",
1607
+ it: "الإيطالية",
1608
+ fr: "الفرنسية",
1609
+ de: "الألمانية",
1610
+ es: "الإسبانية",
1611
+ pt: "البرتغالية",
1612
+ nl: "الهولندية",
1613
+ pl: "البولندية",
1614
+ ru: "الروسية",
1615
+ ja: "اليابانية",
1616
+ zh: "الصينية",
1617
+ hi: "الهندية",
1618
+ tr: "التركية",
1619
+ sq: "الألبانية",
1620
+ sv: "السويدية",
1621
+ el: "اليونانية",
1622
+ ro: "الرومانية",
1623
+ ar: "العربية"
1600
1624
  }
1601
1625
  };
1602
1626
  export {
@@ -1615,5 +1615,25 @@ export declare const deUi: {
1615
1615
  readonly opens_in_new_tab: "(öffnet in neuem Tab)";
1616
1616
  };
1617
1617
  };
1618
+ readonly languages: {
1619
+ readonly en: "Englisch";
1620
+ readonly it: "Italienisch";
1621
+ readonly fr: "Französisch";
1622
+ readonly de: "Deutsch";
1623
+ readonly es: "Spanisch";
1624
+ readonly pt: "Portugiesisch";
1625
+ readonly nl: "Niederländisch";
1626
+ readonly pl: "Polnisch";
1627
+ readonly ru: "Russisch";
1628
+ readonly ja: "Japanisch";
1629
+ readonly zh: "Chinesisch";
1630
+ readonly hi: "Hindi";
1631
+ readonly tr: "Türkisch";
1632
+ readonly sq: "Albanisch";
1633
+ readonly sv: "Schwedisch";
1634
+ readonly el: "Griechisch";
1635
+ readonly ro: "Rumänisch";
1636
+ readonly ar: "Arabisch";
1637
+ };
1618
1638
  };
1619
1639
  //# sourceMappingURL=de.d.ts.map
@@ -1596,6 +1596,30 @@ const e = {
1596
1596
  external: {
1597
1597
  opens_in_new_tab: "(öffnet in neuem Tab)"
1598
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: "Englisch",
1606
+ it: "Italienisch",
1607
+ fr: "Französisch",
1608
+ de: "Deutsch",
1609
+ es: "Spanisch",
1610
+ pt: "Portugiesisch",
1611
+ nl: "Niederländisch",
1612
+ pl: "Polnisch",
1613
+ ru: "Russisch",
1614
+ ja: "Japanisch",
1615
+ zh: "Chinesisch",
1616
+ hi: "Hindi",
1617
+ tr: "Türkisch",
1618
+ sq: "Albanisch",
1619
+ sv: "Schwedisch",
1620
+ el: "Griechisch",
1621
+ ro: "Rumänisch",
1622
+ ar: "Arabisch"
1599
1623
  }
1600
1624
  };
1601
1625
  export {
@@ -1612,5 +1612,25 @@ export declare const elUi: {
1612
1612
  readonly opens_in_new_tab: "(ανοίγει σε νέα καρτέλα)";
1613
1613
  };
1614
1614
  };
1615
+ readonly languages: {
1616
+ readonly en: "Αγγλικά";
1617
+ readonly it: "Ιταλικά";
1618
+ readonly fr: "Γαλλικά";
1619
+ readonly de: "Γερμανικά";
1620
+ readonly es: "Ισπανικά";
1621
+ readonly pt: "Πορτογαλικά";
1622
+ readonly nl: "Ολλανδικά";
1623
+ readonly pl: "Πολωνικά";
1624
+ readonly ru: "Ρωσικά";
1625
+ readonly ja: "Ιαπωνικά";
1626
+ readonly zh: "Κινεζικά";
1627
+ readonly hi: "Χίντι";
1628
+ readonly tr: "Τουρκικά";
1629
+ readonly sq: "Αλβανικά";
1630
+ readonly sv: "Σουηδικά";
1631
+ readonly el: "Ελληνικά";
1632
+ readonly ro: "Ρουμανικά";
1633
+ readonly ar: "Αραβικά";
1634
+ };
1615
1635
  };
1616
1636
  //# sourceMappingURL=el.d.ts.map
@@ -1597,6 +1597,30 @@ const e = {
1597
1597
  external: {
1598
1598
  opens_in_new_tab: "(ανοίγει σε νέα καρτέλα)"
1599
1599
  }
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: "Αγγλικά",
1607
+ it: "Ιταλικά",
1608
+ fr: "Γαλλικά",
1609
+ de: "Γερμανικά",
1610
+ es: "Ισπανικά",
1611
+ pt: "Πορτογαλικά",
1612
+ nl: "Ολλανδικά",
1613
+ pl: "Πολωνικά",
1614
+ ru: "Ρωσικά",
1615
+ ja: "Ιαπωνικά",
1616
+ zh: "Κινεζικά",
1617
+ hi: "Χίντι",
1618
+ tr: "Τουρκικά",
1619
+ sq: "Αλβανικά",
1620
+ sv: "Σουηδικά",
1621
+ el: "Ελληνικά",
1622
+ ro: "Ρουμανικά",
1623
+ ar: "Αραβικά"
1600
1624
  }
1601
1625
  };
1602
1626
  export {
@@ -1612,5 +1612,25 @@ export declare const enUi: {
1612
1612
  readonly opens_in_new_tab: "(opens in new tab)";
1613
1613
  };
1614
1614
  };
1615
+ readonly languages: {
1616
+ readonly en: "English";
1617
+ readonly it: "Italian";
1618
+ readonly fr: "French";
1619
+ readonly de: "German";
1620
+ readonly es: "Spanish";
1621
+ readonly pt: "Portuguese";
1622
+ readonly nl: "Dutch";
1623
+ readonly pl: "Polish";
1624
+ readonly ru: "Russian";
1625
+ readonly ja: "Japanese";
1626
+ readonly zh: "Chinese";
1627
+ readonly hi: "Hindi";
1628
+ readonly tr: "Turkish";
1629
+ readonly sq: "Albanian";
1630
+ readonly sv: "Swedish";
1631
+ readonly el: "Greek";
1632
+ readonly ro: "Romanian";
1633
+ readonly ar: "Arabic";
1634
+ };
1615
1635
  };
1616
1636
  //# sourceMappingURL=en.d.ts.map
@@ -1593,6 +1593,30 @@ const e = {
1593
1593
  external: {
1594
1594
  opens_in_new_tab: "(opens in new tab)"
1595
1595
  }
1596
+ },
1597
+ /* Language display names — keyed by ISO 639-1 code. Used by
1598
+ PracticeProfileCard / PatientSearch / PracticeResults to
1599
+ auto-resolve a consumer-passed languages={['it','en',...]}
1600
+ array into native-language labels for the active locale. */
1601
+ languages: {
1602
+ en: "English",
1603
+ it: "Italian",
1604
+ fr: "French",
1605
+ de: "German",
1606
+ es: "Spanish",
1607
+ pt: "Portuguese",
1608
+ nl: "Dutch",
1609
+ pl: "Polish",
1610
+ ru: "Russian",
1611
+ ja: "Japanese",
1612
+ zh: "Chinese",
1613
+ hi: "Hindi",
1614
+ tr: "Turkish",
1615
+ sq: "Albanian",
1616
+ sv: "Swedish",
1617
+ el: "Greek",
1618
+ ro: "Romanian",
1619
+ ar: "Arabic"
1596
1620
  }
1597
1621
  };
1598
1622
  export {
@@ -1612,5 +1612,25 @@ export declare const esUi: {
1612
1612
  readonly opens_in_new_tab: "(se abre en una pestaña nueva)";
1613
1613
  };
1614
1614
  };
1615
+ readonly languages: {
1616
+ readonly en: "inglés";
1617
+ readonly it: "italiano";
1618
+ readonly fr: "francés";
1619
+ readonly de: "alemán";
1620
+ readonly es: "español";
1621
+ readonly pt: "portugués";
1622
+ readonly nl: "neerlandés";
1623
+ readonly pl: "polaco";
1624
+ readonly ru: "ruso";
1625
+ readonly ja: "japonés";
1626
+ readonly zh: "chino";
1627
+ readonly hi: "hindi";
1628
+ readonly tr: "turco";
1629
+ readonly sq: "albanés";
1630
+ readonly sv: "sueco";
1631
+ readonly el: "griego";
1632
+ readonly ro: "rumano";
1633
+ readonly ar: "árabe";
1634
+ };
1615
1635
  };
1616
1636
  //# sourceMappingURL=es.d.ts.map
@@ -1594,6 +1594,30 @@ const e = {
1594
1594
  }
1595
1595
  },
1596
1596
  external: { opens_in_new_tab: "(se abre en una pestaña nueva)" }
1597
+ },
1598
+ /* Language display names — keyed by ISO 639-1 code. Used by
1599
+ PracticeProfileCard / PatientSearch / PracticeResults to
1600
+ auto-resolve a consumer-passed languages={['it','en',...]}
1601
+ array into native-language labels for the active locale. */
1602
+ languages: {
1603
+ en: "inglés",
1604
+ it: "italiano",
1605
+ fr: "francés",
1606
+ de: "alemán",
1607
+ es: "español",
1608
+ pt: "portugués",
1609
+ nl: "neerlandés",
1610
+ pl: "polaco",
1611
+ ru: "ruso",
1612
+ ja: "japonés",
1613
+ zh: "chino",
1614
+ hi: "hindi",
1615
+ tr: "turco",
1616
+ sq: "albanés",
1617
+ sv: "sueco",
1618
+ el: "griego",
1619
+ ro: "rumano",
1620
+ ar: "árabe"
1597
1621
  }
1598
1622
  };
1599
1623
  export {
@@ -1612,5 +1612,25 @@ export declare const frUi: {
1612
1612
  readonly opens_in_new_tab: "(ouvre dans un nouvel onglet)";
1613
1613
  };
1614
1614
  };
1615
+ readonly languages: {
1616
+ readonly en: "anglais";
1617
+ readonly it: "italien";
1618
+ readonly fr: "français";
1619
+ readonly de: "allemand";
1620
+ readonly es: "espagnol";
1621
+ readonly pt: "portugais";
1622
+ readonly nl: "néerlandais";
1623
+ readonly pl: "polonais";
1624
+ readonly ru: "russe";
1625
+ readonly ja: "japonais";
1626
+ readonly zh: "chinois";
1627
+ readonly hi: "hindi";
1628
+ readonly tr: "turc";
1629
+ readonly sq: "albanais";
1630
+ readonly sv: "suédois";
1631
+ readonly el: "grec";
1632
+ readonly ro: "roumain";
1633
+ readonly ar: "arabe";
1634
+ };
1615
1635
  };
1616
1636
  //# sourceMappingURL=fr.d.ts.map
@@ -1594,6 +1594,30 @@ const e = {
1594
1594
  }
1595
1595
  },
1596
1596
  external: { opens_in_new_tab: "(ouvre dans un nouvel onglet)" }
1597
+ },
1598
+ /* Language display names — keyed by ISO 639-1 code. Used by
1599
+ PracticeProfileCard / PatientSearch / PracticeResults to
1600
+ auto-resolve a consumer-passed languages={['it','en',...]}
1601
+ array into native-language labels for the active locale. */
1602
+ languages: {
1603
+ en: "anglais",
1604
+ it: "italien",
1605
+ fr: "français",
1606
+ de: "allemand",
1607
+ es: "espagnol",
1608
+ pt: "portugais",
1609
+ nl: "néerlandais",
1610
+ pl: "polonais",
1611
+ ru: "russe",
1612
+ ja: "japonais",
1613
+ zh: "chinois",
1614
+ hi: "hindi",
1615
+ tr: "turc",
1616
+ sq: "albanais",
1617
+ sv: "suédois",
1618
+ el: "grec",
1619
+ ro: "roumain",
1620
+ ar: "arabe"
1597
1621
  }
1598
1622
  };
1599
1623
  export {
@@ -1612,5 +1612,25 @@ export declare const hiUi: {
1612
1612
  readonly opens_in_new_tab: "(नए टैब में खुलता है)";
1613
1613
  };
1614
1614
  };
1615
+ readonly languages: {
1616
+ readonly en: "अंग्रेज़ी";
1617
+ readonly it: "इतालवी";
1618
+ readonly fr: "फ़्रेंच";
1619
+ readonly de: "जर्मन";
1620
+ readonly es: "स्पेनिश";
1621
+ readonly pt: "पुर्तगाली";
1622
+ readonly nl: "डच";
1623
+ readonly pl: "पोलिश";
1624
+ readonly ru: "रूसी";
1625
+ readonly ja: "जापानी";
1626
+ readonly zh: "चीनी";
1627
+ readonly hi: "हिन्दी";
1628
+ readonly tr: "तुर्की";
1629
+ readonly sq: "अल्बानियाई";
1630
+ readonly sv: "स्वीडिश";
1631
+ readonly el: "यूनानी";
1632
+ readonly ro: "रोमानियाई";
1633
+ readonly ar: "अरबी";
1634
+ };
1615
1635
  };
1616
1636
  //# sourceMappingURL=hi.d.ts.map
@@ -1595,6 +1595,30 @@ const e = {
1595
1595
  }
1596
1596
  },
1597
1597
  external: { opens_in_new_tab: "(नए टैब में खुलता है)" }
1598
+ },
1599
+ /* Language display names — keyed by ISO 639-1 code. Used by
1600
+ PracticeProfileCard / PatientSearch / PracticeResults to
1601
+ auto-resolve a consumer-passed languages={['it','en',...]}
1602
+ array into native-language labels for the active locale. */
1603
+ languages: {
1604
+ en: "अंग्रेज़ी",
1605
+ it: "इतालवी",
1606
+ fr: "फ़्रेंच",
1607
+ de: "जर्मन",
1608
+ es: "स्पेनिश",
1609
+ pt: "पुर्तगाली",
1610
+ nl: "डच",
1611
+ pl: "पोलिश",
1612
+ ru: "रूसी",
1613
+ ja: "जापानी",
1614
+ zh: "चीनी",
1615
+ hi: "हिन्दी",
1616
+ tr: "तुर्की",
1617
+ sq: "अल्बानियाई",
1618
+ sv: "स्वीडिश",
1619
+ el: "यूनानी",
1620
+ ro: "रोमानियाई",
1621
+ ar: "अरबी"
1598
1622
  }
1599
1623
  };
1600
1624
  export {
@@ -1609,5 +1609,25 @@ export declare const itUi: {
1609
1609
  readonly opens_in_new_tab: "(si apre in una nuova scheda)";
1610
1610
  };
1611
1611
  };
1612
+ readonly languages: {
1613
+ readonly en: "Inglese";
1614
+ readonly it: "Italiano";
1615
+ readonly fr: "Francese";
1616
+ readonly de: "Tedesco";
1617
+ readonly es: "Spagnolo";
1618
+ readonly pt: "Portoghese";
1619
+ readonly nl: "Olandese";
1620
+ readonly pl: "Polacco";
1621
+ readonly ru: "Russo";
1622
+ readonly ja: "Giapponese";
1623
+ readonly zh: "Cinese";
1624
+ readonly hi: "Hindi";
1625
+ readonly tr: "Turco";
1626
+ readonly sq: "Albanese";
1627
+ readonly sv: "Svedese";
1628
+ readonly el: "Greco";
1629
+ readonly ro: "Rumeno";
1630
+ readonly ar: "Arabo";
1631
+ };
1612
1632
  };
1613
1633
  //# sourceMappingURL=it.d.ts.map
@@ -1576,6 +1576,30 @@ const e = {
1576
1576
  external: {
1577
1577
  opens_in_new_tab: "(si apre in una nuova scheda)"
1578
1578
  }
1579
+ },
1580
+ /* Language display names — keyed by ISO 639-1 code. Used by
1581
+ PracticeProfileCard / PatientSearch / PracticeResults to
1582
+ auto-resolve a consumer-passed languages={['it','en',...]}
1583
+ array into native-language labels for the active locale. */
1584
+ languages: {
1585
+ en: "Inglese",
1586
+ it: "Italiano",
1587
+ fr: "Francese",
1588
+ de: "Tedesco",
1589
+ es: "Spagnolo",
1590
+ pt: "Portoghese",
1591
+ nl: "Olandese",
1592
+ pl: "Polacco",
1593
+ ru: "Russo",
1594
+ ja: "Giapponese",
1595
+ zh: "Cinese",
1596
+ hi: "Hindi",
1597
+ tr: "Turco",
1598
+ sq: "Albanese",
1599
+ sv: "Svedese",
1600
+ el: "Greco",
1601
+ ro: "Rumeno",
1602
+ ar: "Arabo"
1579
1603
  }
1580
1604
  };
1581
1605
  export {
@@ -1612,5 +1612,25 @@ export declare const jaUi: {
1612
1612
  readonly opens_in_new_tab: "(新しいタブで開きます)";
1613
1613
  };
1614
1614
  };
1615
+ readonly languages: {
1616
+ readonly en: "英語";
1617
+ readonly it: "イタリア語";
1618
+ readonly fr: "フランス語";
1619
+ readonly de: "ドイツ語";
1620
+ readonly es: "スペイン語";
1621
+ readonly pt: "ポルトガル語";
1622
+ readonly nl: "オランダ語";
1623
+ readonly pl: "ポーランド語";
1624
+ readonly ru: "ロシア語";
1625
+ readonly ja: "日本語";
1626
+ readonly zh: "中国語";
1627
+ readonly hi: "ヒンディー語";
1628
+ readonly tr: "トルコ語";
1629
+ readonly sq: "アルバニア語";
1630
+ readonly sv: "スウェーデン語";
1631
+ readonly el: "ギリシャ語";
1632
+ readonly ro: "ルーマニア語";
1633
+ readonly ar: "アラビア語";
1634
+ };
1615
1635
  };
1616
1636
  //# sourceMappingURL=ja.d.ts.map
@@ -1597,6 +1597,30 @@ const e = {
1597
1597
  external: {
1598
1598
  opens_in_new_tab: "(新しいタブで開きます)"
1599
1599
  }
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: "英語",
1607
+ it: "イタリア語",
1608
+ fr: "フランス語",
1609
+ de: "ドイツ語",
1610
+ es: "スペイン語",
1611
+ pt: "ポルトガル語",
1612
+ nl: "オランダ語",
1613
+ pl: "ポーランド語",
1614
+ ru: "ロシア語",
1615
+ ja: "日本語",
1616
+ zh: "中国語",
1617
+ hi: "ヒンディー語",
1618
+ tr: "トルコ語",
1619
+ sq: "アルバニア語",
1620
+ sv: "スウェーデン語",
1621
+ el: "ギリシャ語",
1622
+ ro: "ルーマニア語",
1623
+ ar: "アラビア語"
1600
1624
  }
1601
1625
  };
1602
1626
  export {
@@ -1612,5 +1612,25 @@ export declare const nlUi: {
1612
1612
  readonly opens_in_new_tab: "(opent in nieuw tabblad)";
1613
1613
  };
1614
1614
  };
1615
+ readonly languages: {
1616
+ readonly en: "Engels";
1617
+ readonly it: "Italiaans";
1618
+ readonly fr: "Frans";
1619
+ readonly de: "Duits";
1620
+ readonly es: "Spaans";
1621
+ readonly pt: "Portugees";
1622
+ readonly nl: "Nederlands";
1623
+ readonly pl: "Pools";
1624
+ readonly ru: "Russisch";
1625
+ readonly ja: "Japans";
1626
+ readonly zh: "Chinees";
1627
+ readonly hi: "Hindi";
1628
+ readonly tr: "Turks";
1629
+ readonly sq: "Albanees";
1630
+ readonly sv: "Zweeds";
1631
+ readonly el: "Grieks";
1632
+ readonly ro: "Roemeens";
1633
+ readonly ar: "Arabisch";
1634
+ };
1615
1635
  };
1616
1636
  //# sourceMappingURL=nl.d.ts.map
@@ -1594,6 +1594,30 @@ const e = {
1594
1594
  }
1595
1595
  },
1596
1596
  external: { opens_in_new_tab: "(opent in nieuw tabblad)" }
1597
+ },
1598
+ /* Language display names — keyed by ISO 639-1 code. Used by
1599
+ PracticeProfileCard / PatientSearch / PracticeResults to
1600
+ auto-resolve a consumer-passed languages={['it','en',...]}
1601
+ array into native-language labels for the active locale. */
1602
+ languages: {
1603
+ en: "Engels",
1604
+ it: "Italiaans",
1605
+ fr: "Frans",
1606
+ de: "Duits",
1607
+ es: "Spaans",
1608
+ pt: "Portugees",
1609
+ nl: "Nederlands",
1610
+ pl: "Pools",
1611
+ ru: "Russisch",
1612
+ ja: "Japans",
1613
+ zh: "Chinees",
1614
+ hi: "Hindi",
1615
+ tr: "Turks",
1616
+ sq: "Albanees",
1617
+ sv: "Zweeds",
1618
+ el: "Grieks",
1619
+ ro: "Roemeens",
1620
+ ar: "Arabisch"
1597
1621
  }
1598
1622
  };
1599
1623
  export {