@alfadocs/ui-kit 0.78.0 → 0.80.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/{alia-sidebar-w6B0TEx7.js → alia-sidebar-DzNz1gDf.js} +2 -2
- package/dist/_chunks/calendar-4dXTvsCz.js +1136 -0
- package/dist/_chunks/calendar-event-card-C6qGtywL.js +257 -0
- package/dist/_chunks/{chat-input-BTCDqUDX.js → chat-input-QpHxBEnN.js} +32 -31
- package/dist/_chunks/{fiscal-code-input-DWA6C8x8.js → fiscal-code-input-QP9gkyDE.js} +2 -2
- package/dist/_chunks/{patient-details-zy76MRh7.js → patient-details-COvYWp2e.js} +2 -2
- package/dist/_chunks/signature-request-CEOrCDyk.js +341 -0
- package/dist/agent-catalog.json +1 -1
- package/dist/components/_shared/contrast-warning.d.ts +46 -0
- package/dist/components/calendar/calendar.d.ts +284 -7
- package/dist/components/calendar/index.d.ts +1 -1
- package/dist/components/calendar/index.js +1 -1
- package/dist/components/calendar-event-card/calendar-event-card.d.ts +103 -0
- package/dist/components/calendar-event-card/index.d.ts +3 -0
- package/dist/components/calendar-event-card/index.js +5 -0
- package/dist/components/chat-input/index.js +1 -1
- package/dist/components/fiscal-code-input/index.js +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/patient-details/index.js +1 -1
- package/dist/index.js +252 -250
- package/dist/patterns/alia-assistant/index.js +1 -1
- package/dist/patterns/signature-request/index.js +1 -1
- package/dist/patterns/signature-request/signature-request.d.ts +7 -0
- package/dist/tokens.css +8 -5
- package/package.json +5 -1
- package/dist/_chunks/calendar-DeAlFPsF.js +0 -1050
- package/dist/_chunks/signature-request-C-mskXwi.js +0 -318
- package/dist/components/calendar/contrast-warning.d.ts +0 -20
|
@@ -20,6 +20,13 @@ export type SignatureChannel = 'sms' | 'email' | 'whatsapp' | 'on-device';
|
|
|
20
20
|
export interface SignerOption {
|
|
21
21
|
value: string;
|
|
22
22
|
label: string;
|
|
23
|
+
/**
|
|
24
|
+
* Delivery channels this person can actually receive. Omit (or pass an
|
|
25
|
+
* empty list) to offer every channel. Hosts gate this from per-patient
|
|
26
|
+
* capability flags — e.g. a patient with no mobile number drops `'sms'`
|
|
27
|
+
* and `'whatsapp'`. Only meaningful for signer options, not operators.
|
|
28
|
+
*/
|
|
29
|
+
availableChannels?: SignatureChannel[];
|
|
23
30
|
}
|
|
24
31
|
/** One patient-side signer row in the submission. */
|
|
25
32
|
export interface SignerRequest {
|