@alfadocs/ui-kit 1.26.0 → 1.26.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/{calendar-workspace-CTXjHC4R.js → calendar-workspace-DWW5ZtQ0.js} +2 -2
- package/dist/_chunks/{signature-status-chip-n57D-hhv.js → signature-status-chip-BSatI_Qc.js} +83 -83
- package/dist/agent-catalog.json +1 -1
- package/dist/components/signature-status-chip/index.js +1 -1
- package/dist/index.js +2 -2
- package/dist/patterns/calendar/index.js +1 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ import { c as Cs, d as yn, b as Hn } from "./toast-YZz2sBzB.js";
|
|
|
8
8
|
import { a as Wi } from "./tooltip-DvmfrNvB.js";
|
|
9
9
|
import { V as Tt } from "./visually-hidden-BHxEUGyT.js";
|
|
10
10
|
import { G as aa, h as Ds, c as Bi, A as Pi, C as Xs } from "./color-picker-CU303VjY.js";
|
|
11
|
-
import { s as _i, S as zi } from "./signature-status-chip-
|
|
11
|
+
import { s as _i, S as zi } from "./signature-status-chip-BSatI_Qc.js";
|
|
12
12
|
import { Z as $i, B as Fi, T as Hi, E as Vi, C as Ui } from "./calendar-event-card-66CEEWU6.js";
|
|
13
13
|
import { C as Zs } from "./check-DrFSN__t.js";
|
|
14
14
|
import { S as Js } from "./stethoscope-sZXGC43m.js";
|
|
@@ -7503,4 +7503,4 @@ export {
|
|
|
7503
7503
|
El as r,
|
|
7504
7504
|
Cn as u
|
|
7505
7505
|
};
|
|
7506
|
-
//# sourceMappingURL=calendar-workspace-
|
|
7506
|
+
//# sourceMappingURL=calendar-workspace-DWW5ZtQ0.js.map
|
package/dist/_chunks/{signature-status-chip-n57D-hhv.js → signature-status-chip-BSatI_Qc.js}
RENAMED
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import { useTranslation as
|
|
4
|
-
import { B as
|
|
5
|
-
import { T as
|
|
6
|
-
function
|
|
1
|
+
import { jsx as D } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as P } from "react";
|
|
3
|
+
import { useTranslation as M } from "react-i18next";
|
|
4
|
+
import { B as K } from "./badge-sTusUqZD.js";
|
|
5
|
+
import { T as Y } from "./tooltip-DvmfrNvB.js";
|
|
6
|
+
function E(e) {
|
|
7
7
|
if (!e || typeof e == "string") return [];
|
|
8
8
|
const i = e.signedBy;
|
|
9
9
|
return i ? Array.isArray(i) ? i : [i] : [];
|
|
10
10
|
}
|
|
11
|
-
function
|
|
11
|
+
function u(e, i) {
|
|
12
12
|
if (e === "notRequired") return "notRequired";
|
|
13
|
-
const r =
|
|
13
|
+
const r = E(i).filter((t) => t.standing);
|
|
14
14
|
return r.length === 0 ? e : r.every((t) => t.standing === "signed") ? "signed" : "pending";
|
|
15
15
|
}
|
|
16
|
-
function
|
|
17
|
-
const
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
].filter((
|
|
22
|
-
if (
|
|
23
|
-
const
|
|
24
|
-
return
|
|
16
|
+
function z(e, i, r = "notRequired", t) {
|
|
17
|
+
const o = [
|
|
18
|
+
u(e, t == null ? void 0 : t.operator),
|
|
19
|
+
u(i, t == null ? void 0 : t.patient),
|
|
20
|
+
u(r, t == null ? void 0 : t.secondary)
|
|
21
|
+
].filter((d) => d !== "notRequired");
|
|
22
|
+
if (o.length === 0) return "notRequired";
|
|
23
|
+
const c = o.filter((d) => d === "signed").length;
|
|
24
|
+
return c === 0 ? "unsigned" : c === o.length ? "signed" : "partial";
|
|
25
25
|
}
|
|
26
|
-
const
|
|
26
|
+
const H = {
|
|
27
27
|
// Traffic light: green when everyone required has signed, amber when at
|
|
28
28
|
// least one party is still missing, red when nobody has.
|
|
29
29
|
signed: "success",
|
|
30
30
|
partial: "warning",
|
|
31
31
|
unsigned: "error",
|
|
32
32
|
notRequired: "neutral"
|
|
33
|
-
},
|
|
33
|
+
}, J = {
|
|
34
34
|
operator: "Operator",
|
|
35
35
|
patient: "Patient",
|
|
36
36
|
secondary: "Second signee"
|
|
37
|
-
},
|
|
37
|
+
}, Q = {
|
|
38
38
|
signed: "signed",
|
|
39
39
|
pending: "pending"
|
|
40
|
-
},
|
|
40
|
+
}, W = {
|
|
41
41
|
operator: "signatureStatusChip.missingOperator",
|
|
42
42
|
patient: "signatureStatusChip.missingPatient",
|
|
43
43
|
secondary: "signatureStatusChip.missingSecondary"
|
|
44
|
-
},
|
|
44
|
+
}, X = {
|
|
45
45
|
operator: "Operator signature missing",
|
|
46
46
|
patient: "Patient signature missing",
|
|
47
47
|
secondary: "Second signee signature missing"
|
|
@@ -49,30 +49,30 @@ const K = {
|
|
|
49
49
|
function S(e) {
|
|
50
50
|
return `${e}`;
|
|
51
51
|
}
|
|
52
|
-
function
|
|
52
|
+
function Z(e, i, r) {
|
|
53
53
|
const t = [];
|
|
54
54
|
return e !== "notRequired" && t.push({ role: "operator", standing: e }), i !== "notRequired" && t.push({ role: "patient", standing: i }), r !== "notRequired" && t.push({ role: "secondary", standing: r }), t;
|
|
55
55
|
}
|
|
56
|
-
const
|
|
56
|
+
const tt = P(
|
|
57
57
|
({
|
|
58
58
|
operator: e,
|
|
59
59
|
patient: i,
|
|
60
60
|
secondary: r = "notRequired",
|
|
61
61
|
names: t,
|
|
62
|
-
size:
|
|
63
|
-
detail:
|
|
64
|
-
tooltip:
|
|
65
|
-
id:
|
|
62
|
+
size: o = "md",
|
|
63
|
+
detail: c = !1,
|
|
64
|
+
tooltip: d = !1,
|
|
65
|
+
id: w,
|
|
66
66
|
className: V,
|
|
67
|
-
"aria-label":
|
|
68
|
-
title:
|
|
69
|
-
...
|
|
70
|
-
},
|
|
71
|
-
const { t: n } =
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
),
|
|
67
|
+
"aria-label": _,
|
|
68
|
+
title: m,
|
|
69
|
+
...U
|
|
70
|
+
}, x) => {
|
|
71
|
+
const { t: n } = M(), y = z(e, i, r, t), N = Z(
|
|
72
|
+
u(e, t == null ? void 0 : t.operator),
|
|
73
|
+
u(i, t == null ? void 0 : t.patient),
|
|
74
|
+
u(r, t == null ? void 0 : t.secondary)
|
|
75
|
+
), l = (() => {
|
|
76
76
|
switch (y) {
|
|
77
77
|
case "signed":
|
|
78
78
|
return n("signatureStatusChip.signed", { defaultValue: "Signed" });
|
|
@@ -85,77 +85,77 @@ const W = x(
|
|
|
85
85
|
defaultValue: "No signature required"
|
|
86
86
|
});
|
|
87
87
|
case "partial": {
|
|
88
|
-
const
|
|
89
|
-
if (
|
|
90
|
-
const a =
|
|
91
|
-
return n(
|
|
92
|
-
defaultValue:
|
|
88
|
+
const p = N.filter((a) => a.standing === "pending");
|
|
89
|
+
if (p.length === 1) {
|
|
90
|
+
const a = p[0].role;
|
|
91
|
+
return n(W[a], {
|
|
92
|
+
defaultValue: X[a]
|
|
93
93
|
});
|
|
94
94
|
}
|
|
95
95
|
return n("signatureStatusChip.missingCount", {
|
|
96
96
|
defaultValue: "{{count}} signatures missing",
|
|
97
|
-
count:
|
|
97
|
+
count: p.length
|
|
98
98
|
});
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
|
-
})(),
|
|
102
|
-
const
|
|
103
|
-
defaultValue:
|
|
104
|
-
}),
|
|
105
|
-
defaultValue:
|
|
106
|
-
}), h = t == null ? void 0 : t[
|
|
101
|
+
})(), T = (p) => N.map(({ role: a, standing: b }) => {
|
|
102
|
+
const C = n(`signatureStatusChip.party.${a}`, {
|
|
103
|
+
defaultValue: J[a]
|
|
104
|
+
}), B = n(`signatureStatusChip.state.${b}`, {
|
|
105
|
+
defaultValue: Q[b]
|
|
106
|
+
}), h = p ? t == null ? void 0 : t[a] : void 0;
|
|
107
107
|
if (!h)
|
|
108
108
|
return n("signatureStatusChip.breakdownItem", {
|
|
109
109
|
defaultValue: "{{party}} {{state}}",
|
|
110
|
-
party:
|
|
111
|
-
state:
|
|
110
|
+
party: C,
|
|
111
|
+
state: B
|
|
112
112
|
});
|
|
113
|
-
const
|
|
113
|
+
const R = typeof h == "string" ? { name: h } : h, q = E(R);
|
|
114
114
|
if (q.length > 0) {
|
|
115
|
-
const
|
|
115
|
+
const L = (s) => s.relationship ? n("signatureStatusChip.representative", {
|
|
116
116
|
defaultValue: "{{name}} ({{relationship}})",
|
|
117
117
|
name: S(s.name),
|
|
118
118
|
relationship: s.relationship
|
|
119
|
-
}) : S(s.name),
|
|
120
|
-
return
|
|
119
|
+
}) : S(s.name), $ = (s) => s.standing ?? b, j = q.filter((s) => $(s) === "signed"), k = q.filter((s) => $(s) === "pending"), v = [];
|
|
120
|
+
return j.length > 0 && v.push(
|
|
121
121
|
n("signatureStatusChip.signedByList", {
|
|
122
122
|
defaultValue: "signed by {{signers}}",
|
|
123
|
-
signers:
|
|
123
|
+
signers: j.map(L).join(", ")
|
|
124
124
|
})
|
|
125
|
-
),
|
|
125
|
+
), k.length > 0 && v.push(
|
|
126
126
|
n("signatureStatusChip.awaitingList", {
|
|
127
127
|
defaultValue: "awaiting {{signers}}",
|
|
128
|
-
signers:
|
|
128
|
+
signers: k.map(L).join(", ")
|
|
129
129
|
})
|
|
130
130
|
), n("signatureStatusChip.breakdownItemOnBehalf", {
|
|
131
131
|
defaultValue: "{{party}}: {{name}}, {{detail}}",
|
|
132
|
-
party:
|
|
133
|
-
name: S(
|
|
134
|
-
detail:
|
|
132
|
+
party: C,
|
|
133
|
+
name: S(R.name),
|
|
134
|
+
detail: v.join(", ")
|
|
135
135
|
});
|
|
136
136
|
}
|
|
137
137
|
return n("signatureStatusChip.breakdownItemNamed", {
|
|
138
138
|
defaultValue: "{{party}}: {{name}} ({{state}})",
|
|
139
|
-
party:
|
|
140
|
-
name: S(
|
|
141
|
-
state:
|
|
139
|
+
party: C,
|
|
140
|
+
name: S(R.name),
|
|
141
|
+
state: B
|
|
142
142
|
});
|
|
143
|
-
}).join(" · "),
|
|
144
|
-
|
|
143
|
+
}).join(" · "), f = T(!0), I = T(!1), F = f ? `${l}, ${f}` : l, G = c && I ? `${l} · ${I}` : l, g = d && f.length > 0, A = _ ?? (g ? l : F), O = /* @__PURE__ */ D(
|
|
144
|
+
K,
|
|
145
145
|
{
|
|
146
|
-
ref:
|
|
147
|
-
variant:
|
|
148
|
-
size:
|
|
146
|
+
ref: x,
|
|
147
|
+
variant: H[y],
|
|
148
|
+
size: o,
|
|
149
149
|
withDot: !0,
|
|
150
150
|
role: "img",
|
|
151
|
-
"aria-label":
|
|
152
|
-
title:
|
|
153
|
-
tabIndex:
|
|
151
|
+
"aria-label": A,
|
|
152
|
+
title: g ? m : m ?? A,
|
|
153
|
+
tabIndex: g ? 0 : void 0,
|
|
154
154
|
"data-component": "signature-status-chip",
|
|
155
155
|
"data-status": y,
|
|
156
|
-
"data-component-id":
|
|
157
|
-
id:
|
|
158
|
-
className:
|
|
156
|
+
"data-component-id": w,
|
|
157
|
+
id: w,
|
|
158
|
+
className: g ? [
|
|
159
159
|
"ds:rounded-[var(--radius-full)]",
|
|
160
160
|
"ds:focus-visible:outline-[length:var(--focus-ring-width)]",
|
|
161
161
|
"ds:focus-visible:outline-solid",
|
|
@@ -163,17 +163,17 @@ const W = x(
|
|
|
163
163
|
"ds:focus-visible:outline-offset-[length:var(--focus-ring-offset)]",
|
|
164
164
|
V
|
|
165
165
|
].filter(Boolean).join(" ") : V,
|
|
166
|
-
...
|
|
167
|
-
children:
|
|
166
|
+
...U,
|
|
167
|
+
children: G
|
|
168
168
|
}
|
|
169
169
|
);
|
|
170
|
-
return
|
|
170
|
+
return g ? /* @__PURE__ */ D(Y, { label: f, children: O }) : O;
|
|
171
171
|
}
|
|
172
172
|
);
|
|
173
|
-
|
|
173
|
+
tt.displayName = "SignatureStatusChip";
|
|
174
174
|
export {
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
175
|
+
tt as S,
|
|
176
|
+
u as e,
|
|
177
|
+
z as s
|
|
178
178
|
};
|
|
179
|
-
//# sourceMappingURL=signature-status-chip-
|
|
179
|
+
//# sourceMappingURL=signature-status-chip-BSatI_Qc.js.map
|
package/dist/agent-catalog.json
CHANGED
package/dist/index.js
CHANGED
|
@@ -211,7 +211,7 @@ import { R as hf, r as Of, w as Ff } from "./_chunks/rich-text-editor-lSCiE0Zz.j
|
|
|
211
211
|
import { E as Mf } from "./_chunks/editor-overlay-DEc5yYwo.js";
|
|
212
212
|
import { S as kf, s as Bf } from "./_chunks/signature-capture-D6ut9_IR.js";
|
|
213
213
|
import { S as vf, s as Hf } from "./_chunks/signature-field-0rFODJlW.js";
|
|
214
|
-
import { S as Uf, e as Vf, s as Wf } from "./_chunks/signature-status-chip-
|
|
214
|
+
import { S as Uf, e as Vf, s as Wf } from "./_chunks/signature-status-chip-BSatI_Qc.js";
|
|
215
215
|
import { S as Yf, s as Xf } from "./_chunks/sign-document-jF4fZDJ5.js";
|
|
216
216
|
import { S as zf, f as jf, i as Qf, s as Jf } from "./_chunks/slot-grid-BuZOKfcd.js";
|
|
217
217
|
import { A as $f, F as ag, a as eg, b as sg, c as rg, d as og, e as tg, I as ng, f as ig, g as pg, h as mg, i as lg, j as dg, k as Ag, l as cg, m as fg, n as gg, o as Sg, p as Cg, q as Tg, r as xg, s as ug, t as Pg, u as Ig } from "./_chunks/face-scheme-DA2vjqaM.js";
|
|
@@ -223,7 +223,7 @@ import { W as GS, a as vS } from "./_chunks/whatsapp-button-CuFIHJzG.js";
|
|
|
223
223
|
import { C as wS, W as US, a as VS, b as WS, c as KS, i as YS, l as XS, m as qS, r as zS, w as jS, d as QS, e as JS, f as ZS } from "./_chunks/workflow-map-dNzJjBWG.js";
|
|
224
224
|
import { A as aC, a as eC, b as sC, c as rC } from "./_chunks/alia-sidebar-BWcWZivN.js";
|
|
225
225
|
import { A as tC, a as nC, L as iC, P as pC, S as mC, T as lC, b as dC, c as AC, d as cC, e as fC, f as gC, g as SC, h as CC, i as TC, j as xC, k as uC, l as PC, m as IC, n as EC, o as RC, p as _C, r as bC, q as NC, s as DC, t as hC, u as OC } from "./_chunks/anamnesis-summary-rows-DwjqZgR5.js";
|
|
226
|
-
import { C as LC, a as MC, b as yC, D as kC, c as BC, S as GC, V as vC, W as HC, d as wC, i as UC, m as VC, r as WC, u as KC, e as YC, f as XC } from "./_chunks/calendar-workspace-
|
|
226
|
+
import { C as LC, a as MC, b as yC, D as kC, c as BC, S as GC, V as vC, W as HC, d as wC, i as UC, m as VC, r as WC, u as KC, e as YC, f as XC } from "./_chunks/calendar-workspace-DWW5ZtQ0.js";
|
|
227
227
|
import { C as zC, M as jC, P as QC } from "./_chunks/marketplace-app-shell-C4AjQmvz.js";
|
|
228
228
|
import { P as ZC } from "./_chunks/payment-automation-upsell-DwQW2fRp.js";
|
|
229
229
|
import { S as aT } from "./_chunks/signature-request-CwlAmVLw.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as s, a as r, b as E, D as P, c as t, S, V as A, W as C, d, i as o, m as D, r as i, u as n, e as W, f as _ } from "../../_chunks/calendar-workspace-
|
|
1
|
+
import { C as s, a as r, b as E, D as P, c as t, S, V as A, W as C, d, i as o, m as D, r as i, u as n, e as W, f as _ } from "../../_chunks/calendar-workspace-DWW5ZtQ0.js";
|
|
2
2
|
export {
|
|
3
3
|
s as CALENDAR_PREFERENCE_KEYS,
|
|
4
4
|
r as CalendarDataProvider,
|
package/package.json
CHANGED