@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.
Files changed (28) hide show
  1. package/dist/_chunks/{alia-sidebar-w6B0TEx7.js → alia-sidebar-DzNz1gDf.js} +2 -2
  2. package/dist/_chunks/calendar-4dXTvsCz.js +1136 -0
  3. package/dist/_chunks/calendar-event-card-C6qGtywL.js +257 -0
  4. package/dist/_chunks/{chat-input-BTCDqUDX.js → chat-input-QpHxBEnN.js} +32 -31
  5. package/dist/_chunks/{fiscal-code-input-DWA6C8x8.js → fiscal-code-input-QP9gkyDE.js} +2 -2
  6. package/dist/_chunks/{patient-details-zy76MRh7.js → patient-details-COvYWp2e.js} +2 -2
  7. package/dist/_chunks/signature-request-CEOrCDyk.js +341 -0
  8. package/dist/agent-catalog.json +1 -1
  9. package/dist/components/_shared/contrast-warning.d.ts +46 -0
  10. package/dist/components/calendar/calendar.d.ts +284 -7
  11. package/dist/components/calendar/index.d.ts +1 -1
  12. package/dist/components/calendar/index.js +1 -1
  13. package/dist/components/calendar-event-card/calendar-event-card.d.ts +103 -0
  14. package/dist/components/calendar-event-card/index.d.ts +3 -0
  15. package/dist/components/calendar-event-card/index.js +5 -0
  16. package/dist/components/chat-input/index.js +1 -1
  17. package/dist/components/fiscal-code-input/index.js +1 -1
  18. package/dist/components/index.d.ts +1 -0
  19. package/dist/components/patient-details/index.js +1 -1
  20. package/dist/index.js +252 -250
  21. package/dist/patterns/alia-assistant/index.js +1 -1
  22. package/dist/patterns/signature-request/index.js +1 -1
  23. package/dist/patterns/signature-request/signature-request.d.ts +7 -0
  24. package/dist/tokens.css +8 -5
  25. package/package.json +5 -1
  26. package/dist/_chunks/calendar-DeAlFPsF.js +0 -1050
  27. package/dist/_chunks/signature-request-C-mskXwi.js +0 -318
  28. package/dist/components/calendar/contrast-warning.d.ts +0 -20
@@ -1,4 +1,4 @@
1
- import { A as i, a as A, b as d, c as l } from "../../_chunks/alia-sidebar-w6B0TEx7.js";
1
+ import { A as i, a as A, b as d, c as l } from "../../_chunks/alia-sidebar-DzNz1gDf.js";
2
2
  export {
3
3
  i as AliaChatSurface,
4
4
  A as AliaEmbedded,
@@ -1,4 +1,4 @@
1
- import { S as o } from "../../_chunks/signature-request-C-mskXwi.js";
1
+ import { S as o } from "../../_chunks/signature-request-CEOrCDyk.js";
2
2
  export {
3
3
  o as SignatureRequestModal
4
4
  };
@@ -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 {