@alfadocs/ui-kit 0.85.0 → 0.86.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/info-tip-Bxk3w6UM.js +166 -0
- package/dist/agent-catalog.json +45 -1
- package/dist/agent-i18n/en.json +9 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/info-tip/index.d.ts +4 -0
- package/dist/components/info-tip/index.js +6 -0
- package/dist/components/info-tip/info-tip.agent.d.ts +4 -0
- package/dist/components/info-tip/info-tip.d.ts +42 -0
- package/dist/i18n/locales/ar.d.ts +3 -0
- package/dist/i18n/locales/ar.js +3 -0
- package/dist/i18n/locales/de.d.ts +3 -0
- package/dist/i18n/locales/de.js +3 -0
- package/dist/i18n/locales/el.d.ts +3 -0
- package/dist/i18n/locales/el.js +3 -0
- package/dist/i18n/locales/en.d.ts +3 -0
- package/dist/i18n/locales/en.js +3 -0
- package/dist/i18n/locales/es.d.ts +3 -0
- package/dist/i18n/locales/es.js +3 -0
- package/dist/i18n/locales/fr.d.ts +3 -0
- package/dist/i18n/locales/fr.js +3 -0
- package/dist/i18n/locales/hi.d.ts +3 -0
- package/dist/i18n/locales/hi.js +3 -0
- package/dist/i18n/locales/it.d.ts +3 -0
- package/dist/i18n/locales/it.js +3 -0
- package/dist/i18n/locales/ja.d.ts +3 -0
- package/dist/i18n/locales/ja.js +3 -0
- package/dist/i18n/locales/nl.d.ts +3 -0
- package/dist/i18n/locales/nl.js +3 -0
- package/dist/i18n/locales/pl.d.ts +3 -0
- package/dist/i18n/locales/pl.js +3 -0
- package/dist/i18n/locales/pt.d.ts +3 -0
- package/dist/i18n/locales/pt.js +3 -0
- package/dist/i18n/locales/ro.d.ts +3 -0
- package/dist/i18n/locales/ro.js +3 -0
- package/dist/i18n/locales/ru.d.ts +3 -0
- package/dist/i18n/locales/ru.js +3 -0
- package/dist/i18n/locales/sq.d.ts +3 -0
- package/dist/i18n/locales/sq.js +3 -0
- package/dist/i18n/locales/sv.d.ts +3 -0
- package/dist/i18n/locales/sv.js +3 -0
- package/dist/i18n/locales/tr.d.ts +3 -0
- package/dist/i18n/locales/tr.js +3 -0
- package/dist/i18n/locales/zh.d.ts +3 -0
- package/dist/i18n/locales/zh.js +3 -0
- package/dist/index.js +471 -468
- package/dist/locales/ar.json +3 -0
- package/dist/locales/de.json +3 -0
- package/dist/locales/el.json +3 -0
- package/dist/locales/en.json +3 -0
- package/dist/locales/es.json +3 -0
- package/dist/locales/fr.json +3 -0
- package/dist/locales/hi.json +3 -0
- package/dist/locales/it.json +3 -0
- package/dist/locales/ja.json +3 -0
- package/dist/locales/nl.json +3 -0
- package/dist/locales/pl.json +3 -0
- package/dist/locales/pt.json +3 -0
- package/dist/locales/ro.json +3 -0
- package/dist/locales/ru.json +3 -0
- package/dist/locales/sq.json +3 -0
- package/dist/locales/sv.json +3 -0
- package/dist/locales/tr.json +3 -0
- package/dist/locales/zh.json +3 -0
- package/dist/tokens.css +1 -1
- package/package.json +5 -1
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import { jsxs as u, jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as I, useState as O, useRef as m, useEffect as k, useMemo as z } from "react";
|
|
3
|
+
import { c as C } from "./index-D2ZczOXr.js";
|
|
4
|
+
import { useTranslation as D } from "react-i18next";
|
|
5
|
+
import { P as o } from "./popover-Cc0a69sw.js";
|
|
6
|
+
import { u as P } from "./registry-DvAUVLHh.js";
|
|
7
|
+
import { I as A } from "./info-CGn22peZ.js";
|
|
8
|
+
const R = {
|
|
9
|
+
id: "info-tip",
|
|
10
|
+
capabilities: ["open", "close"],
|
|
11
|
+
state: {
|
|
12
|
+
isOpen: {
|
|
13
|
+
type: "boolean",
|
|
14
|
+
descriptionKey: "ui.agent.infoTip.state.isOpen",
|
|
15
|
+
description: "True when the info tip card is currently open.",
|
|
16
|
+
read: (t) => t.getIsOpen()
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
actions: {
|
|
20
|
+
open: {
|
|
21
|
+
safety: "read",
|
|
22
|
+
idempotent: !0,
|
|
23
|
+
descriptionKey: "ui.agent.infoTip.actions.open",
|
|
24
|
+
description: "Open the info tip card.",
|
|
25
|
+
invoke: (t) => {
|
|
26
|
+
t.open();
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
close: {
|
|
30
|
+
safety: "read",
|
|
31
|
+
idempotent: !0,
|
|
32
|
+
descriptionKey: "ui.agent.infoTip.actions.close",
|
|
33
|
+
description: "Close the info tip card.",
|
|
34
|
+
invoke: (t) => {
|
|
35
|
+
t.close();
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
domHooks: {
|
|
40
|
+
root: {
|
|
41
|
+
attr: "data-component",
|
|
42
|
+
value: "info-tip",
|
|
43
|
+
description: "Marks the InfoTip trigger button."
|
|
44
|
+
},
|
|
45
|
+
instanceId: {
|
|
46
|
+
attr: "data-component-id",
|
|
47
|
+
sourceProp: "id",
|
|
48
|
+
description: "Sourced from the id prop on InfoTip."
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}, S = C(
|
|
52
|
+
[
|
|
53
|
+
"ds:relative ds:inline-flex ds:shrink-0 ds:items-center ds:justify-center",
|
|
54
|
+
"ds:rounded-[var(--radius-full)]",
|
|
55
|
+
"ds:bg-[var(--card)]",
|
|
56
|
+
"ds:text-[var(--accent)]",
|
|
57
|
+
// Single ring: the Lucide Info glyph draws its own accent circle, so the
|
|
58
|
+
// trigger carries NO CSS border of its own (a border would read as a
|
|
59
|
+
// second, concentric ring). The white circle comes from `bg-card` showing
|
|
60
|
+
// through the glyph, lifted by the drop shadow.
|
|
61
|
+
"ds:shadow-[var(--shadow-sm)]",
|
|
62
|
+
"ds:cursor-pointer",
|
|
63
|
+
"ds:transition-[color,box-shadow] ds:motion-reduce:transition-none",
|
|
64
|
+
"ds:hover:text-[var(--accent-hover)] ds:hover:shadow-[var(--shadow-md)]",
|
|
65
|
+
"ds:data-[state=open]:text-[var(--accent-hover)] ds:data-[state=open]:shadow-[var(--shadow-md)]",
|
|
66
|
+
"ds:focus-visible:outline-[length:var(--focus-ring-width)] ds:focus-visible:outline-solid ds:focus-visible:outline-ring ds:focus-visible:outline-offset-[length:var(--focus-ring-offset)]",
|
|
67
|
+
"ds:forced-colors:focus-visible:outline-[CanvasText]"
|
|
68
|
+
].join(" "),
|
|
69
|
+
{
|
|
70
|
+
variants: {
|
|
71
|
+
size: {
|
|
72
|
+
// Both diameters sit below `--min-target-size` (44/48px), so each
|
|
73
|
+
// re-uses IconButton's invisible `::before` hit-area expansion to a
|
|
74
|
+
// full touch target on touch / small screens. From the `sm:`
|
|
75
|
+
// breakpoint up the pointer is precise, so the expansion relaxes —
|
|
76
|
+
// but the interactive target must never fall below WCAG 2.5.8's 24px:
|
|
77
|
+
// • md (24px visual) already meets the 24px floor, so its `::before`
|
|
78
|
+
// is hidden on desktop and the 24px circle IS the target.
|
|
79
|
+
// • sm (20px visual) would fall to 20px if hidden — below the floor
|
|
80
|
+
// — so instead of hiding, its `::before` shrinks to a persistent
|
|
81
|
+
// `--spacing-lg` (24px) minimum that holds on desktop too.
|
|
82
|
+
sm: 'ds:w-5 ds:h-5 ds:before:absolute ds:before:inset-x-[calc((var(--min-target-size)-100%)/-2)] ds:before:inset-y-[calc((var(--min-target-size)-100%)/-2)] ds:before:content-[""] ds:sm:before:inset-x-[calc((var(--spacing-lg)-100%)/-2)] ds:sm:before:inset-y-[calc((var(--spacing-lg)-100%)/-2)]',
|
|
83
|
+
md: 'ds:w-6 ds:h-6 ds:before:absolute ds:before:inset-x-[calc((var(--min-target-size)-100%)/-2)] ds:before:inset-y-[calc((var(--min-target-size)-100%)/-2)] ds:before:content-[""] ds:sm:before:hidden'
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
defaultVariants: {
|
|
87
|
+
size: "md"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
), j = I(
|
|
91
|
+
({
|
|
92
|
+
content: t,
|
|
93
|
+
heading: r,
|
|
94
|
+
size: a = "md",
|
|
95
|
+
side: v = "top",
|
|
96
|
+
align: g = "center",
|
|
97
|
+
"aria-label": h,
|
|
98
|
+
id: l,
|
|
99
|
+
className: b
|
|
100
|
+
}, w) => {
|
|
101
|
+
const { t: y } = D(), [s, d] = O(!1), n = m(s);
|
|
102
|
+
k(() => {
|
|
103
|
+
n.current = s;
|
|
104
|
+
}, [s]);
|
|
105
|
+
const T = z(
|
|
106
|
+
() => ({
|
|
107
|
+
getIsOpen: () => n.current,
|
|
108
|
+
open: () => d(!0),
|
|
109
|
+
close: () => d(!1)
|
|
110
|
+
}),
|
|
111
|
+
[]
|
|
112
|
+
);
|
|
113
|
+
P(R, T, l);
|
|
114
|
+
const c = m(null), p = () => {
|
|
115
|
+
c.current = n.current;
|
|
116
|
+
}, f = h ?? y("infoTip.triggerLabel", "More information");
|
|
117
|
+
return /* @__PURE__ */ u(o, { openOn: "hover-or-click", open: s, onOpenChange: d, children: [
|
|
118
|
+
/* @__PURE__ */ i(
|
|
119
|
+
o.Trigger,
|
|
120
|
+
{
|
|
121
|
+
ref: w,
|
|
122
|
+
"aria-label": f,
|
|
123
|
+
className: S({ size: a, className: b }),
|
|
124
|
+
"data-component": "info-tip",
|
|
125
|
+
"data-component-id": l,
|
|
126
|
+
onPointerDown: p,
|
|
127
|
+
onKeyDown: (e) => {
|
|
128
|
+
(e.key === "Enter" || e.key === " ") && p();
|
|
129
|
+
},
|
|
130
|
+
onClick: (e) => {
|
|
131
|
+
const x = c.current;
|
|
132
|
+
c.current = null, x === !1 && n.current && e.preventDefault();
|
|
133
|
+
},
|
|
134
|
+
children: /* @__PURE__ */ i(
|
|
135
|
+
A,
|
|
136
|
+
{
|
|
137
|
+
"aria-hidden": "true",
|
|
138
|
+
className: a === "sm" ? "ds:size-5" : "ds:size-6"
|
|
139
|
+
}
|
|
140
|
+
)
|
|
141
|
+
}
|
|
142
|
+
),
|
|
143
|
+
/* @__PURE__ */ u(
|
|
144
|
+
o.Content,
|
|
145
|
+
{
|
|
146
|
+
side: v,
|
|
147
|
+
align: g,
|
|
148
|
+
size: a === "sm" ? "sm" : "md",
|
|
149
|
+
"aria-label": r == null ? f : void 0,
|
|
150
|
+
onOpenAutoFocus: (e) => e.preventDefault(),
|
|
151
|
+
onCloseAutoFocus: (e) => e.preventDefault(),
|
|
152
|
+
children: [
|
|
153
|
+
r != null && /* @__PURE__ */ i(o.Heading, { children: r }),
|
|
154
|
+
/* @__PURE__ */ i(o.Description, { children: t })
|
|
155
|
+
]
|
|
156
|
+
}
|
|
157
|
+
)
|
|
158
|
+
] });
|
|
159
|
+
}
|
|
160
|
+
);
|
|
161
|
+
j.displayName = "InfoTip";
|
|
162
|
+
export {
|
|
163
|
+
j as I,
|
|
164
|
+
R as i
|
|
165
|
+
};
|
|
166
|
+
//# sourceMappingURL=info-tip-Bxk3w6UM.js.map
|
package/dist/agent-catalog.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"packageVersion": "0.
|
|
3
|
+
"packageVersion": "0.86.0",
|
|
4
4
|
"components": [
|
|
5
5
|
{
|
|
6
6
|
"kind": "component",
|
|
@@ -5585,6 +5585,50 @@
|
|
|
5585
5585
|
}
|
|
5586
5586
|
}
|
|
5587
5587
|
},
|
|
5588
|
+
{
|
|
5589
|
+
"kind": "component",
|
|
5590
|
+
"id": "info-tip",
|
|
5591
|
+
"capabilities": [
|
|
5592
|
+
"open",
|
|
5593
|
+
"close"
|
|
5594
|
+
],
|
|
5595
|
+
"state": [
|
|
5596
|
+
{
|
|
5597
|
+
"name": "isOpen",
|
|
5598
|
+
"type": "boolean",
|
|
5599
|
+
"description": "True when the info tip card is currently open.",
|
|
5600
|
+
"descriptionKey": "ui.agent.infoTip.state.isOpen"
|
|
5601
|
+
}
|
|
5602
|
+
],
|
|
5603
|
+
"actions": [
|
|
5604
|
+
{
|
|
5605
|
+
"name": "open",
|
|
5606
|
+
"safety": "read",
|
|
5607
|
+
"idempotent": true,
|
|
5608
|
+
"description": "Open the info tip card.",
|
|
5609
|
+
"descriptionKey": "ui.agent.infoTip.actions.open"
|
|
5610
|
+
},
|
|
5611
|
+
{
|
|
5612
|
+
"name": "close",
|
|
5613
|
+
"safety": "read",
|
|
5614
|
+
"idempotent": true,
|
|
5615
|
+
"description": "Close the info tip card.",
|
|
5616
|
+
"descriptionKey": "ui.agent.infoTip.actions.close"
|
|
5617
|
+
}
|
|
5618
|
+
],
|
|
5619
|
+
"domHooks": {
|
|
5620
|
+
"root": {
|
|
5621
|
+
"attr": "data-component",
|
|
5622
|
+
"value": "info-tip",
|
|
5623
|
+
"description": "Marks the InfoTip trigger button."
|
|
5624
|
+
},
|
|
5625
|
+
"instanceId": {
|
|
5626
|
+
"attr": "data-component-id",
|
|
5627
|
+
"sourceProp": "id",
|
|
5628
|
+
"description": "Sourced from the id prop on InfoTip."
|
|
5629
|
+
}
|
|
5630
|
+
}
|
|
5631
|
+
},
|
|
5588
5632
|
{
|
|
5589
5633
|
"kind": "component",
|
|
5590
5634
|
"id": "kbd",
|
package/dist/agent-i18n/en.json
CHANGED
|
@@ -585,6 +585,15 @@
|
|
|
585
585
|
"reset": "Reset the crop to the centred default for the current aspect."
|
|
586
586
|
}
|
|
587
587
|
},
|
|
588
|
+
"infoTip": {
|
|
589
|
+
"state": {
|
|
590
|
+
"isOpen": "True when the info tip card is currently open."
|
|
591
|
+
},
|
|
592
|
+
"actions": {
|
|
593
|
+
"open": "Open the info tip card.",
|
|
594
|
+
"close": "Close the info tip card."
|
|
595
|
+
}
|
|
596
|
+
},
|
|
588
597
|
"list": {
|
|
589
598
|
"state": {
|
|
590
599
|
"selection": "Ids of currently-selected list items. Empty array when none selected or list is presentational."
|
|
@@ -117,6 +117,7 @@ export * from './appointment-timeline';
|
|
|
117
117
|
export * from './dialog';
|
|
118
118
|
export * from './dropdown-menu';
|
|
119
119
|
export * from './finished-terminal';
|
|
120
|
+
export * from './info-tip';
|
|
120
121
|
export * from './live-region';
|
|
121
122
|
export * from './matrix-rain';
|
|
122
123
|
export * from './message-card';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { type ReactNode } from 'react';
|
|
2
|
+
export interface InfoTipHandle {
|
|
3
|
+
getIsOpen: () => boolean;
|
|
4
|
+
open: () => void;
|
|
5
|
+
close: () => void;
|
|
6
|
+
}
|
|
7
|
+
export interface InfoTipProps {
|
|
8
|
+
/** Body of the tip — explanatory text shown in the floating card. */
|
|
9
|
+
content: ReactNode;
|
|
10
|
+
/** Optional heading rendered above the body. */
|
|
11
|
+
heading?: ReactNode;
|
|
12
|
+
/**
|
|
13
|
+
* Trigger diameter. Also maps the floating card width:
|
|
14
|
+
* `sm` → `--popover-size-sm`, `md` → `--popover-size-md`.
|
|
15
|
+
*/
|
|
16
|
+
size?: 'sm' | 'md';
|
|
17
|
+
/** Logical side the card opens on. Default `'top'`. */
|
|
18
|
+
side?: 'start' | 'top' | 'end' | 'bottom';
|
|
19
|
+
/** Alignment along the side axis. Default `'center'`. */
|
|
20
|
+
align?: 'start' | 'center' | 'end';
|
|
21
|
+
/**
|
|
22
|
+
* Accessible name for the trigger. Defaults to the translated
|
|
23
|
+
* "More information" chrome string.
|
|
24
|
+
*/
|
|
25
|
+
'aria-label'?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Opaque instance id — emitted as `data-component-id` on the trigger and
|
|
28
|
+
* used to register the instance with the host agent registry.
|
|
29
|
+
*/
|
|
30
|
+
id?: string;
|
|
31
|
+
/** Extra classes merged onto the trigger button. */
|
|
32
|
+
className?: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* InfoTip — a deliberate, branded "more information" affordance: a small
|
|
36
|
+
* circular trigger that reveals an explanatory card on hover **and** click
|
|
37
|
+
* (click also serves touch devices). Composes the kit Popover in
|
|
38
|
+
* `openOn="hover-or-click"` mode — hover intent, keyboard focus, Escape and
|
|
39
|
+
* focus-return are all handled by the Popover/Radix layer.
|
|
40
|
+
*/
|
|
41
|
+
export declare const InfoTip: import("react").ForwardRefExoticComponent<InfoTipProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
42
|
+
//# sourceMappingURL=info-tip.d.ts.map
|
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
* Domain: AlfaDocs dental practice management software.
|
|
7
7
|
*/
|
|
8
8
|
export declare const arUi: {
|
|
9
|
+
readonly infoTip: {
|
|
10
|
+
readonly triggerLabel: "مزيد من المعلومات";
|
|
11
|
+
};
|
|
9
12
|
readonly opticalPrescription: {
|
|
10
13
|
readonly ariaLabel: "وصفة النظارات";
|
|
11
14
|
readonly metaLabel: "تفاصيل الوصفة";
|
package/dist/i18n/locales/ar.js
CHANGED
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
* for AlfaDocs terminology consistency.
|
|
7
7
|
*/
|
|
8
8
|
export declare const deUi: {
|
|
9
|
+
readonly infoTip: {
|
|
10
|
+
readonly triggerLabel: "Weitere Informationen";
|
|
11
|
+
};
|
|
9
12
|
readonly opticalPrescription: {
|
|
10
13
|
readonly ariaLabel: "Brillenrezept";
|
|
11
14
|
readonly metaLabel: "Rezeptdetails";
|
package/dist/i18n/locales/de.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const elUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "Περισσότερες πληροφορίες";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Συνταγή γυαλιών";
|
|
8
11
|
readonly metaLabel: "Στοιχεία συνταγής";
|
package/dist/i18n/locales/el.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Loaded eagerly by config.ts (default locale). All other locales are
|
|
4
4
|
* lazy-loaded via dynamic import — see config.ts + LOADERS map. */
|
|
5
5
|
export declare const enUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "More information";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Glasses prescription";
|
|
8
11
|
readonly metaLabel: "Prescription details";
|
package/dist/i18n/locales/en.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const esUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "Más información";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Prescripción de gafas";
|
|
8
11
|
readonly metaLabel: "Detalles de la prescripción";
|
package/dist/i18n/locales/es.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const frUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "Plus d'informations";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Prescription de lunettes";
|
|
8
11
|
readonly metaLabel: "Détails de la prescription";
|
package/dist/i18n/locales/fr.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const hiUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "अधिक जानकारी";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "चश्मे का नुस्खा";
|
|
8
11
|
readonly metaLabel: "नुस्खे का विवरण";
|
package/dist/i18n/locales/hi.js
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
/** Italian (it) ui resources. Canonical source for the bundle. Lazy-loaded. */
|
|
2
2
|
export declare const itUi: {
|
|
3
|
+
readonly infoTip: {
|
|
4
|
+
readonly triggerLabel: "Maggiori informazioni";
|
|
5
|
+
};
|
|
3
6
|
readonly opticalPrescription: {
|
|
4
7
|
readonly ariaLabel: "Prescrizione per occhiali";
|
|
5
8
|
readonly metaLabel: "Dettagli prescrizione";
|
package/dist/i18n/locales/it.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const jaUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "詳細情報";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "眼鏡処方";
|
|
8
11
|
readonly metaLabel: "処方の詳細";
|
package/dist/i18n/locales/ja.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const nlUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "Meer informatie";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Brilrecept";
|
|
8
11
|
readonly metaLabel: "Receptgegevens";
|
package/dist/i18n/locales/nl.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const plUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "Więcej informacji";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Recepta na okulary";
|
|
8
11
|
readonly metaLabel: "Szczegóły recepty";
|
package/dist/i18n/locales/pl.js
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
* Variant: European Portuguese.
|
|
5
5
|
*/
|
|
6
6
|
export declare const ptUi: {
|
|
7
|
+
readonly infoTip: {
|
|
8
|
+
readonly triggerLabel: "Mais informações";
|
|
9
|
+
};
|
|
7
10
|
readonly opticalPrescription: {
|
|
8
11
|
readonly ariaLabel: "Prescrição de óculos";
|
|
9
12
|
readonly metaLabel: "Detalhes da prescrição";
|
package/dist/i18n/locales/pt.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const roUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "Mai multe informații";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Rețetă pentru ochelari";
|
|
8
11
|
readonly metaLabel: "Detalii rețetă";
|
package/dist/i18n/locales/ro.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const ruUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "Дополнительная информация";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Рецепт на очки";
|
|
8
11
|
readonly metaLabel: "Сведения о рецепте";
|
package/dist/i18n/locales/ru.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const sqUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "Më shumë informacion";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Recetë për syze";
|
|
8
11
|
readonly metaLabel: "Detajet e recetës";
|
package/dist/i18n/locales/sq.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const svUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "Mer information";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Glasögonrecept";
|
|
8
11
|
readonly metaLabel: "Receptuppgifter";
|
package/dist/i18n/locales/sv.js
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Machine-translated from canonical Italian — needs professional review.
|
|
4
4
|
*/
|
|
5
5
|
export declare const trUi: {
|
|
6
|
+
readonly infoTip: {
|
|
7
|
+
readonly triggerLabel: "Daha fazla bilgi";
|
|
8
|
+
};
|
|
6
9
|
readonly opticalPrescription: {
|
|
7
10
|
readonly ariaLabel: "Gözlük reçetesi";
|
|
8
11
|
readonly metaLabel: "Reçete ayrıntıları";
|