@assure-one/design-system 1.11.0 → 1.12.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/index.d.ts CHANGED
@@ -585,6 +585,29 @@ interface DismissibleChipProps extends Omit<React$1.ButtonHTMLAttributes<HTMLBut
585
585
  }
586
586
  declare const DismissibleChip: React$1.ForwardRefExoticComponent<DismissibleChipProps & React$1.RefAttributes<HTMLButtonElement>>;
587
587
 
588
+ /**
589
+ * DocumentSourceTag — provenance atom for a document row/card: how the file
590
+ * arrived. Mirrors StatusPill's shape (a `source` enum maps to label + icon +
591
+ * tone), so call sites read as `<DocumentSourceTag source="requested" />`
592
+ * instead of repeating the label/icon/colour triple.
593
+ *
594
+ * requested → Pro tint · send glyph (client fulfilled a firm request)
595
+ * direct → outline · upload glyph (client uploaded unprompted)
596
+ * internal → neutral · shield glyph (firm-prepared, not client-visible)
597
+ *
598
+ * Pass `children` to override the label while keeping the mapped tone/icon,
599
+ * `icon` to swap the glyph, or `hideIcon` for a label-only tag.
600
+ */
601
+ type DocumentSource = "requested" | "direct" | "internal";
602
+ interface DocumentSourceTagProps extends React.HTMLAttributes<HTMLSpanElement> {
603
+ source: DocumentSource;
604
+ /** Override the leading glyph for the mapped source. */
605
+ icon?: React.ReactNode;
606
+ /** Render label-only, with no leading glyph. */
607
+ hideIcon?: boolean;
608
+ }
609
+ declare const DocumentSourceTag: React$1.ForwardRefExoticComponent<DocumentSourceTagProps & React$1.RefAttributes<HTMLSpanElement>>;
610
+
588
611
  /**
589
612
  * DocumentsWorkspaceLayout — 3-pane CSS-grid shell for a firm Documents workspace.
590
613
  *
@@ -2429,6 +2452,395 @@ declare namespace IntentBadge {
2429
2452
  var displayName: string;
2430
2453
  }
2431
2454
 
2455
+ /**
2456
+ * AgreementViewer — the chrome + navigation shell for a multi-step, branded
2457
+ * agreement / proposal (the "Signed Agreement Viewer"). It owns the header,
2458
+ * the firm-branded cover rail, the section stepper, the signed / awaiting
2459
+ * banner, the prev·dots·next footer, and the step state. Each step's body is
2460
+ * consumer-owned `content` — the shell is deliberately content-agnostic so the
2461
+ * same frame drives a tax proposal, an engagement letter, or an NDA.
2462
+ *
2463
+ * Step 0 is the cover: it shows the gradient firm rail. Steps 1+ show the
2464
+ * light section rail with the stepper. One root attribute drives both:
2465
+ * `data-view="cover" | "inner"`, derived from the current step.
2466
+ *
2467
+ * Branding: the whole composite themes from a single accent. Omit `accent` to
2468
+ * inherit the suite accent; pass any CSS color (`accent="#1f8a5b"`) and the
2469
+ * rail gradient, tints, stepper, dots, and CTAs all retrack — every shade is
2470
+ * derived in `tokens.css` via color-mix off `--av-accent`.
2471
+ *
2472
+ * <AgreementViewer
2473
+ * title="Comprehensive Individual Tax Services"
2474
+ * firm={{ name: "Patel & Associates CPA", initials: "P&A" }}
2475
+ * steps={[
2476
+ * { id: "welcome", label: "Welcome", content: <Welcome /> },
2477
+ * { id: "package", label: "Select a package", content: <Packages /> },
2478
+ * …
2479
+ * ]}
2480
+ * onDownload={downloadPdf}
2481
+ * />
2482
+ *
2483
+ * @since 1.12.0
2484
+ */
2485
+ type AgreementStatus = "signed" | "awaiting";
2486
+ interface AgreementStep {
2487
+ /** Stable key + stepper/dot identity. */
2488
+ id: string;
2489
+ /** Section label shown in the stepper rail. */
2490
+ label: string;
2491
+ /** Node glyph in the stepper; defaults to the step number (or a home glyph
2492
+ * for the cover step). */
2493
+ icon?: ReactNode;
2494
+ /** The step body — consumer-owned. */
2495
+ content: ReactNode;
2496
+ }
2497
+ interface AgreementFirm {
2498
+ /** Firm name shown on both rails. */
2499
+ name: string;
2500
+ /** Logo monogram (e.g. "P&A"). Falls back to the first letter of `name`. */
2501
+ initials?: string;
2502
+ /** Short line under the firm name on the cover rail. */
2503
+ tagline?: string;
2504
+ /** Subtitle under the firm name on the inner rail. Default "Your proposal". */
2505
+ subtitle?: string;
2506
+ /** Contact rows pinned to the bottom of the cover rail. */
2507
+ contact?: {
2508
+ phone?: ReactNode;
2509
+ email?: ReactNode;
2510
+ website?: ReactNode;
2511
+ };
2512
+ }
2513
+ interface AgreementViewerProps {
2514
+ /** Header title (the agreement name). */
2515
+ title: ReactNode;
2516
+ /** Small overline above the title. Default "Signed agreement". */
2517
+ overline?: ReactNode;
2518
+ /** Steps rendered as panes; index 0 is the cover. */
2519
+ steps: AgreementStep[];
2520
+ /** Firm branding for the rails. */
2521
+ firm: AgreementFirm;
2522
+ /** "signed" (read-only, all sections complete) or "awaiting" (in progress).
2523
+ * Drives the banner tone + which stepper nodes read as done. Default "signed". */
2524
+ status?: AgreementStatus;
2525
+ /** Banner body override. Omit for the status-derived default; pass `null` to
2526
+ * hide the banner entirely. */
2527
+ banner?: ReactNode;
2528
+ /** Brand accent override — any CSS color. Defaults to the suite accent. */
2529
+ accent?: string;
2530
+ /** Show the gradient firm rail on the cover step. Set false for a full-bleed
2531
+ * cover (e.g. a centered title page). Default true. */
2532
+ coverRail?: boolean;
2533
+ /** Controlled current step index. */
2534
+ step?: number;
2535
+ /** Initial step when uncontrolled. Default 0. */
2536
+ defaultStep?: number;
2537
+ /** Notified on every step change (controlled or not). */
2538
+ onStepChange?: (step: number) => void;
2539
+ /** "Download PDF" handler — hides the button when omitted. */
2540
+ onDownload?: () => void;
2541
+ /** Close handler — hides the close button when omitted. */
2542
+ onClose?: () => void;
2543
+ /** Extra header actions, placed left of Download / Close. */
2544
+ headerActions?: ReactNode;
2545
+ className?: string;
2546
+ }
2547
+ declare const AgreementViewer: React$1.ForwardRefExoticComponent<AgreementViewerProps & React$1.RefAttributes<HTMLDivElement>>;
2548
+ interface AgreementPaneHeadingProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
2549
+ /** Accent overline, e.g. "Step 3 of 6". */
2550
+ overline?: ReactNode;
2551
+ /** The pane title. */
2552
+ title: ReactNode;
2553
+ /** Supporting line under the title. */
2554
+ subtitle?: ReactNode;
2555
+ }
2556
+ declare const AgreementPaneHeading: React$1.ForwardRefExoticComponent<AgreementPaneHeadingProps & React$1.RefAttributes<HTMLDivElement>>;
2557
+
2558
+ /**
2559
+ * Proposal pricing building-blocks — the client-preview pieces a signing
2560
+ * package's "Services & Pricing" config renders into. They compose inside an
2561
+ * `AgreementViewer` step (where they inherit the firm `--av-accent`), or
2562
+ * standalone inside a `[data-av-scope]` wrapper. Accent classes carry a suite
2563
+ * fallback so a bare block still renders un-branded rather than transparent.
2564
+ *
2565
+ * - `ProposalServiceRow` — one line item (name · price · cadence, optional
2566
+ * struck-through original for a discount).
2567
+ * - `ProposalPackageCard` — a package the client chooses; `mode` switches the
2568
+ * builder's three choice models (pick-one / add-on /
2569
+ * always-included).
2570
+ * - `ProposalPricingSummary`— the "review total" block: what's included, the
2571
+ * billing schedule, discount savings, tax, total.
2572
+ *
2573
+ * @since 1.12.0
2574
+ */
2575
+ interface ProposalServiceRowProps extends React.HTMLAttributes<HTMLDivElement> {
2576
+ /** Service name — the primary line. */
2577
+ name: ReactNode;
2578
+ /** Optional secondary description shown to the client. */
2579
+ description?: ReactNode;
2580
+ /** Formatted price, e.g. "$1,300" or "$50/mo". */
2581
+ price?: ReactNode;
2582
+ /** Pre-discount price, struck through before `price`. */
2583
+ originalPrice?: ReactNode;
2584
+ /** Leading marker. "check" (accent tick) or "none". Default "check". */
2585
+ marker?: "check" | "none";
2586
+ }
2587
+ declare const ProposalServiceRow: React$1.ForwardRefExoticComponent<ProposalServiceRowProps & React$1.RefAttributes<HTMLDivElement>>;
2588
+ type ProposalPackageMode = "choice" | "addon" | "included";
2589
+ interface ProposalPackageCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onSelect"> {
2590
+ /** Package name. */
2591
+ name: ReactNode;
2592
+ /** Short count line, e.g. "Includes 4 services". */
2593
+ summary?: ReactNode;
2594
+ /** Formatted package price. */
2595
+ price?: ReactNode;
2596
+ /** Caption under the price, e.g. "Package total". */
2597
+ priceCaption?: ReactNode;
2598
+ /** Pre-discount price, struck through. */
2599
+ originalPrice?: ReactNode;
2600
+ /** Savings line, e.g. "You save $200". */
2601
+ savings?: ReactNode;
2602
+ /** How the client chooses this package. Default "choice". */
2603
+ mode?: ProposalPackageMode;
2604
+ /** Selected / added state (drives accent border + control label). */
2605
+ selected?: boolean;
2606
+ /** Corner badge, e.g. "Most popular". A "Selected"/"Added" badge is implied. */
2607
+ badge?: ReactNode;
2608
+ /** Label above the service rows. Default "Included services". */
2609
+ servicesLabel?: ReactNode;
2610
+ /** Service rows (`ProposalServiceRow`) or any content. */
2611
+ children?: ReactNode;
2612
+ /** Select / toggle handler — makes the card interactive. */
2613
+ onSelect?: () => void;
2614
+ disabled?: boolean;
2615
+ }
2616
+ declare const ProposalPackageCard: React$1.ForwardRefExoticComponent<ProposalPackageCardProps & React$1.RefAttributes<HTMLDivElement>>;
2617
+ type ProposalBillingMode = "now" | "auto" | "review" | "manual" | "onetime";
2618
+ interface ProposalBillingRow {
2619
+ /** e.g. "Due today", "First payment", "Then, monthly", "Each invoice". */
2620
+ label: ReactNode;
2621
+ /** Formatted amount, e.g. "$2,526". */
2622
+ amount?: ReactNode;
2623
+ /** Cadence beside the amount, e.g. "/mo". */
2624
+ cadence?: ReactNode;
2625
+ /** Plain-language explanation of how/when this is charged. */
2626
+ detail: ReactNode;
2627
+ /** Drives the row icon. Default "now". */
2628
+ mode?: ProposalBillingMode;
2629
+ }
2630
+ interface ProposalBillingTermsProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
2631
+ /** Heading. Default "How billing works". */
2632
+ title?: ReactNode;
2633
+ /** The billing steps the firm configured. */
2634
+ rows: ProposalBillingRow[];
2635
+ /** Show the "set by your firm — review only" footer. Default true. */
2636
+ locked?: boolean;
2637
+ }
2638
+ /**
2639
+ * ProposalBillingTerms — a read-only explanation of the payment arrangement the
2640
+ * firm configured (auto-pay, charge-after-review, manual invoicing, one-time,
2641
+ * or a mix). The client can see exactly what will be charged and when, but
2642
+ * can't change it — the `locked` footer makes that explicit.
2643
+ */
2644
+ declare const ProposalBillingTerms: React$1.ForwardRefExoticComponent<ProposalBillingTermsProps & React$1.RefAttributes<HTMLDivElement>>;
2645
+ interface ProposalAddOnProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onToggle" | "name"> {
2646
+ /** Add-on name. */
2647
+ name: ReactNode;
2648
+ /** Short description / cadence note under the name. */
2649
+ description?: ReactNode;
2650
+ /** Formatted price, e.g. "$150" or "$200". */
2651
+ price?: ReactNode;
2652
+ /** Cadence / billing note beside the price, e.g. "/mo" or "One-time". */
2653
+ cadence?: ReactNode;
2654
+ /** Added state. */
2655
+ selected?: boolean;
2656
+ /** Toggle handler. */
2657
+ onToggle?: () => void;
2658
+ }
2659
+ /**
2660
+ * ProposalAddOn — a compact, checkbox-style toggle for an optional add-on.
2661
+ * Lighter than `ProposalPackageCard`: add-ons are secondary extras, so the
2662
+ * whole row is one toggle (no separate badge + button), price right-aligned.
2663
+ */
2664
+ declare const ProposalAddOn: React$1.ForwardRefExoticComponent<ProposalAddOnProps & React$1.RefAttributes<HTMLButtonElement>>;
2665
+ interface ProposalPricingSummaryProps extends React.HTMLAttributes<HTMLDivElement> {
2666
+ /** "What's included" rows (`ProposalServiceRow`) — rendered in a 2-col grid. */
2667
+ children?: ReactNode;
2668
+ /** Billing schedule callout. */
2669
+ billing?: {
2670
+ title?: ReactNode;
2671
+ caption?: ReactNode;
2672
+ rows?: {
2673
+ label: ReactNode;
2674
+ value: ReactNode;
2675
+ }[];
2676
+ };
2677
+ /** Discount savings line, e.g. "You save $200 (annual)". */
2678
+ savings?: ReactNode;
2679
+ /** Tax line value, e.g. "$192.00". `taxLabel` defaults to "Tax". */
2680
+ tax?: ReactNode;
2681
+ taxLabel?: ReactNode;
2682
+ /** Pre-discount total, struck through next to `total`. */
2683
+ originalTotal?: ReactNode;
2684
+ /** Total due — used for a single-cadence engagement. Omit when `schedule` is set. */
2685
+ total?: ReactNode;
2686
+ /** Cadence suffix after the total, e.g. "/ year". */
2687
+ cadence?: ReactNode;
2688
+ /** Total row label. Default "Total due". */
2689
+ totalLabel?: ReactNode;
2690
+ /** First-payment + recurring breakdown. Use instead of `total` when billing
2691
+ * mixes cadences (e.g. a yearly package + a monthly add-on): the amount due
2692
+ * at signing reads prominently, with the ongoing charges listed below. */
2693
+ schedule?: {
2694
+ /** Amount charged at signing — the prominent figure. */
2695
+ dueToday: ReactNode;
2696
+ /** Label for the due-now figure. Default "Due today". */
2697
+ dueTodayLabel?: ReactNode;
2698
+ /** Caption under the due-now figure, e.g. "First payment, on acceptance". */
2699
+ dueTodayCaption?: ReactNode;
2700
+ /** Ongoing recurring charges, e.g. [{ label: "Then", amount: "$2,400", cadence: "/ year" }]. */
2701
+ then?: {
2702
+ label?: ReactNode;
2703
+ amount: ReactNode;
2704
+ cadence?: ReactNode;
2705
+ }[];
2706
+ };
2707
+ }
2708
+ declare const ProposalPricingSummary: React$1.ForwardRefExoticComponent<ProposalPricingSummaryProps & React$1.RefAttributes<HTMLDivElement>>;
2709
+
2710
+ /**
2711
+ * Proposal content building-blocks — the optional pieces a signing package's
2712
+ * "custom pages" and recipient config render into on the client preview.
2713
+ *
2714
+ * - `ProposalCustomPage` — a titled custom page; `kind` switches the builder's
2715
+ * Video / PDF / Text page types. The body (a video
2716
+ * poster, a `PdfPreview`, or rich text) is slotted.
2717
+ * - `ProposalNote` — a short callout shown alongside the agreement.
2718
+ * - `ProposalSignerList` — the recipients/signers with role + status.
2719
+ *
2720
+ * Accent classes carry a suite fallback, so a bare block renders un-branded
2721
+ * outside an `AgreementViewer` / `[data-av-scope]`.
2722
+ *
2723
+ * @since 1.12.0
2724
+ */
2725
+ type ProposalCustomPageKind = "video" | "pdf" | "text";
2726
+ interface ProposalCustomPageProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
2727
+ /** Builder custom-page type. */
2728
+ kind: ProposalCustomPageKind;
2729
+ /** Page title. */
2730
+ title: ReactNode;
2731
+ /** Supporting line under the title. */
2732
+ caption?: ReactNode;
2733
+ /** Overline label; defaults by kind ("Video" / "Document" / "Read"). */
2734
+ label?: ReactNode;
2735
+ /** Poster image for `kind="video"` — shown with a play overlay when no
2736
+ * `children` are supplied. */
2737
+ poster?: string;
2738
+ /** Play handler — makes the video poster an actual button. */
2739
+ onPlay?: () => void;
2740
+ /** Body: a `PdfPreview`, rich text, or a custom embed. Replaces the built-in
2741
+ * video poster when provided. */
2742
+ children?: ReactNode;
2743
+ }
2744
+ declare const ProposalCustomPage: React$1.ForwardRefExoticComponent<ProposalCustomPageProps & React$1.RefAttributes<HTMLDivElement>>;
2745
+ interface ProposalNoteProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
2746
+ /** Optional bold lead line. */
2747
+ title?: ReactNode;
2748
+ /** Note body. */
2749
+ children: ReactNode;
2750
+ /** Visual tone. Default "accent". */
2751
+ tone?: "accent" | "info";
2752
+ /** Leading icon; defaults to an info glyph. */
2753
+ icon?: ReactNode;
2754
+ }
2755
+ declare const ProposalNote: React$1.ForwardRefExoticComponent<ProposalNoteProps & React$1.RefAttributes<HTMLDivElement>>;
2756
+ type ProposalSignerStatus = "signed" | "pending" | "viewed";
2757
+ interface ProposalSigner {
2758
+ name: string;
2759
+ email?: string;
2760
+ /** Role, e.g. "Signer", "Approver", "CC". */
2761
+ role?: string;
2762
+ status?: ProposalSignerStatus;
2763
+ /** Status timestamp for the firm tracking view, e.g. "Signed Jun 6, 2:14 PM". */
2764
+ at?: ReactNode;
2765
+ }
2766
+ interface ProposalSignerListProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
2767
+ signers: ProposalSigner[];
2768
+ /** Section label. Default "Recipients". */
2769
+ title?: ReactNode;
2770
+ }
2771
+ declare const ProposalSignerList: React$1.ForwardRefExoticComponent<ProposalSignerListProps & React$1.RefAttributes<HTMLDivElement>>;
2772
+
2773
+ /**
2774
+ * Proposal signing building-blocks — the client-preview pieces for the
2775
+ * agreement's final step.
2776
+ *
2777
+ * - `ProposalSignatureBlock` — the type/draw signature area; `signed` flips it
2778
+ * to a read-only signed preview.
2779
+ * - `ProposalConsentGate` — the "require explicit approval before signing"
2780
+ * checkbox that gates the Sign CTA.
2781
+ * - `ProposalPaymentCapture` — the "payment at signing" card/bank capture block.
2782
+ *
2783
+ * Presentational: persistence, signature canvas, and payment tokenization stay
2784
+ * with the consumer. Accent classes carry a suite fallback.
2785
+ *
2786
+ * @since 1.12.0
2787
+ */
2788
+ interface ProposalSignatureBlockProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> {
2789
+ /** Read-only signed preview — the recorded signer name + initials. */
2790
+ signed?: boolean;
2791
+ /** Recorded signer name (used in the `signed` read-only preview). */
2792
+ name?: string;
2793
+ /** Recorded initials; defaults to the name's initials. */
2794
+ initials?: string;
2795
+ /** Initial typed name when interactive (defaults to blank — the signer types). */
2796
+ defaultName?: string;
2797
+ /** Reports the typed name + initials as the signer types (interactive). */
2798
+ onChange?: (value: {
2799
+ name: string;
2800
+ initials: string;
2801
+ }) => void;
2802
+ /** Placeholder shown in the signature face + name field when empty. */
2803
+ placeholder?: string;
2804
+ /** CSS font-family for the rendered signature face. Default a serif. */
2805
+ signatureFont?: string;
2806
+ /** Footer slot — typically the Sign CTA or a signed-on note. */
2807
+ footer?: ReactNode;
2808
+ }
2809
+ declare const ProposalSignatureBlock: React$1.ForwardRefExoticComponent<ProposalSignatureBlockProps & React$1.RefAttributes<HTMLDivElement>>;
2810
+ interface ProposalConsentGateProps extends React.HTMLAttributes<HTMLDivElement> {
2811
+ /** Consent label (the explicit-approval statement). */
2812
+ children: ReactNode;
2813
+ /** Checkbox state. */
2814
+ checked?: boolean;
2815
+ onCheckedChange?: (checked: boolean) => void;
2816
+ /** Already-signed read-only state — shows the signed note instead of the CTA. */
2817
+ signed?: boolean;
2818
+ /** Note shown when `signed`, e.g. "Signed on June 6, 2026". */
2819
+ signedNote?: ReactNode;
2820
+ /** Sign CTA handler — renders the button (disabled until `checked`). */
2821
+ onSign?: () => void;
2822
+ /** Sign CTA label. Default "Sign & approve". */
2823
+ signLabel?: ReactNode;
2824
+ /** Extra disable condition for the Sign CTA, e.g. a name not yet typed. */
2825
+ disabled?: boolean;
2826
+ }
2827
+ declare const ProposalConsentGate: React$1.ForwardRefExoticComponent<ProposalConsentGateProps & React$1.RefAttributes<HTMLDivElement>>;
2828
+ interface ProposalPaymentCaptureProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
2829
+ /** Heading. Default "Payment at signing". */
2830
+ title?: ReactNode;
2831
+ /** Amount captured at signing, e.g. "$2,400". */
2832
+ amount?: ReactNode;
2833
+ /** Caption under the title, e.g. "Billed today on acceptance". */
2834
+ caption?: ReactNode;
2835
+ /** Method icon hint. Default "card". */
2836
+ method?: "card" | "bank";
2837
+ /** Saved method last-4 — renders a read-only "•••• 4242" line. */
2838
+ capturedLast4?: string;
2839
+ /** Custom form fields (replaces the placeholder when provided). */
2840
+ children?: ReactNode;
2841
+ }
2842
+ declare const ProposalPaymentCapture: React$1.ForwardRefExoticComponent<ProposalPaymentCaptureProps & React$1.RefAttributes<HTMLDivElement>>;
2843
+
2432
2844
  /**
2433
2845
  * AIReceiptPanel — the portal "attach a receipt, auto-fill with AI" panel.
2434
2846
  * Three states drive the whole surface:
@@ -3694,7 +4106,7 @@ interface DocumentRequestCardProps extends Omit<React.HTMLAttributes<HTMLDivElem
3694
4106
  }
3695
4107
  declare const DocumentRequestCard: React$1.ForwardRefExoticComponent<DocumentRequestCardProps & React$1.RefAttributes<HTMLDivElement>>;
3696
4108
  type DocumentRequestDetailTab = "documents" | "comments" | "activity";
3697
- type DocumentRequestActivityKind = "assigned" | "unassigned" | "added" | "uploaded" | "priority" | "created" | "reminded" | "updated" | "commented" | "cancelled" | "received" | "approved" | "needs_revision";
4109
+ type DocumentRequestActivityKind = "assigned" | "unassigned" | "added" | "uploaded" | "priority" | "created" | "reminded" | "updated" | "commented" | "cancelled" | "received" | "approved" | "needs_revision" | "locked" | "unlocked" | "status";
3698
4110
  interface DocumentRequestDetailDoc {
3699
4111
  /** Stable id for the row key. */
3700
4112
  id: string;
@@ -3817,6 +4229,36 @@ interface DocumentRequestDetailProps {
3817
4229
  }
3818
4230
  declare const DocumentRequestDetail: React$1.ForwardRefExoticComponent<DocumentRequestDetailProps & React$1.RefAttributes<HTMLElement>>;
3819
4231
 
4232
+ /**
4233
+ * DocumentSourceFilter — segmented single-select for a files toolbar: scope the
4234
+ * list to a provenance bucket. Wraps ToggleGroup (so it inherits roving-focus
4235
+ * keyboard nav + the pro-tint active state) and reuses the same `source` →
4236
+ * glyph mapping as DocumentSourceTag, plus an "all" aggregate segment.
4237
+ *
4238
+ * all → (no glyph) every document
4239
+ * requested → send glyph client fulfilled a firm request
4240
+ * direct → upload glyph client uploaded unprompted
4241
+ * internal → shield glyph firm-prepared, not client-visible
4242
+ *
4243
+ * Controlled: pass `value` + `onValueChange`. `counts` adds a trailing badge per
4244
+ * segment; `hideIcons` renders label-only segments.
4245
+ */
4246
+ type DocumentSourceFilterValue = "all" | DocumentSource;
4247
+ interface DocumentSourceFilterProps {
4248
+ /** Currently active segment. */
4249
+ value: DocumentSourceFilterValue;
4250
+ /** Fired when a segment is chosen (re-selecting the active one is ignored). */
4251
+ onValueChange: (value: DocumentSourceFilterValue) => void;
4252
+ /** Per-segment item counts, rendered as a trailing badge. */
4253
+ counts?: Partial<Record<DocumentSourceFilterValue, number>>;
4254
+ /** Render label-only segments, with no leading glyph. */
4255
+ hideIcons?: boolean;
4256
+ className?: string;
4257
+ /** Accessible name for the group. */
4258
+ "aria-label"?: string;
4259
+ }
4260
+ declare const DocumentSourceFilter: React$1.ForwardRefExoticComponent<DocumentSourceFilterProps & React$1.RefAttributes<HTMLDivElement>>;
4261
+
3820
4262
  /**
3821
4263
  * ActivityList — vertical feed of activity rows.
3822
4264
  *
@@ -4598,4 +5040,4 @@ declare namespace SignatureEditor {
4598
5040
 
4599
5041
  declare function cn(...inputs: ClassValue[]): string;
4600
5042
 
4601
- export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, AiDraftCard, type AiDraftCardProps, type AiDraftState, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, AreaChart, type AreaChartProps, type AreaPoint, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, Assignee, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, type AttachmentChipProps, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, COUNTRY_CODES, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, CategoryDivider, type CategoryDividerProps, CategoryTag, type CategoryTagProps, type CategoryTone, type CellValue, type ChannelTabItem, ChannelTabs, type ChannelTabsProps, type ChannelTone, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, type ClientRailGroupHeaderProps, ClientRailItem, type ClientRailItemProps, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, type CountryCode, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, Dash, DashGrid, type DashGridProps, type DashWidget, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DataTableView, type DataTableViewColumn, type DataTableViewFilter, type DataTableViewProps, DatePicker, DateRangePicker, type DateRangeValue, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DocumentDetailActions, type DocumentDetailActionsProps, DocumentDetailBody, type DocumentDetailBodyProps, DocumentDetailHeader, type DocumentDetailHeaderProps, DocumentDetailMetaRow, type DocumentDetailMetaRowProps, DocumentDetailPanel, type DocumentDetailPanelProps, DocumentDetailRequester, type DocumentDetailRequesterProps, DocumentDetailTitle, type DocumentDetailTitleProps, DocumentFileCard, type DocumentFileCardProps, DocumentFileRow, type DocumentFileRowProps, DocumentIcon, type DocumentItemState, DocumentList, type DocumentListProps, DocumentListSection, type DocumentListSectionProps, type DocumentRequestActivityKind, type DocumentRequestAssigneeOption, DocumentRequestCard, type DocumentRequestCardProps, DocumentRequestDetail, type DocumentRequestDetailActivityEvent, type DocumentRequestDetailComment, type DocumentRequestDetailDoc, type DocumentRequestDetailProps, type DocumentRequestDetailTab, DocumentRequestField, type DocumentRequestFieldProps, type DocumentRequestItemSummary, type DocumentRequestReviewStatusOption, type DocumentRequestTone, DocumentRow, type DocumentRowProps, DocumentsWorkspaceLayout, type DocumentsWorkspaceLayoutProps, DollarSignIcon, DonutChart, type DonutChartProps, type DonutSegment, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, type EmailMessageCardProps, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, ExtractIcon, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileChip, type FileChipProps, FileIcon, type FileKind, FileReturnIcon, FileTextIcon, FileTypeBadge, type FileTypeBadgeProps, type FileTypeTone, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, IntentBadge, type IntentBadgeProps, type IntentTone, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, type KpiCardProps, type KpiDelta, Label, LandmarkIcon, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MasterDetailLayout, type MasterDetailLayoutProps, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, type MissingDocumentItem, MissingDocumentsPanel, type MissingDocumentsPanelProps, MoneyCell, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NewMenu, type NewMenuAction, type NewMenuGroup, type NewMenuProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelFooter, type NotificationPanelFooterProps, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, type PdfPreviewProps, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, type Priority, PriorityIcon, type PriorityIconProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, type QuickReplyChip, RadioGroup, RadioGroupItem, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, SegmentedProgress, type SegmentedProgressProps, type SegmentedTone, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, SignatureEditor, type SignatureEditorProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, SpreadsheetPreview, type SpreadsheetPreviewProps, StackedBarChart, type StackedBarChartProps, type StackedBarDatum, type StackedBarSeries, StagePill, StarIcon, StarRating, type StarRatingProps, Stat, StatusDot, type StatusDotProps, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StickyActionBar, type StickyActionBarProps, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, type SuggestionPillsProps, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, SunIcon, Switch, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowData, type TableRowProps, type TableTone, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Textarea, type TextareaVariants, TimeLogger, TimeLoggerActions, type TimeLoggerActionsProps, TimeLoggerBillable, type TimeLoggerBillableProps, TimeLoggerContextRow, type TimeLoggerContextRowProps, TimeLoggerEntry, TimeLoggerEntryList, type TimeLoggerEntryListProps, type TimeLoggerEntryProps, TimeLoggerField, type TimeLoggerFieldProps, TimeLoggerFooter, type TimeLoggerFooterProps, TimeLoggerHeader, type TimeLoggerHeaderProps, TimeLoggerNotes, type TimeLoggerNotesProps, type TimeLoggerPhase, type TimeLoggerProps, type TimeLoggerTier, TimeLoggerTimer, type TimeLoggerTimerProps, type TimelineState, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, attachmentChipVariants, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
5043
+ export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, type AgreementFirm, AgreementPaneHeading, type AgreementPaneHeadingProps, type AgreementStatus, type AgreementStep, AgreementViewer, type AgreementViewerProps, AiDraftCard, type AiDraftCardProps, type AiDraftState, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, AreaChart, type AreaChartProps, type AreaPoint, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, Assignee, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, type AttachmentChipProps, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, COUNTRY_CODES, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, CategoryDivider, type CategoryDividerProps, CategoryTag, type CategoryTagProps, type CategoryTone, type CellValue, type ChannelTabItem, ChannelTabs, type ChannelTabsProps, type ChannelTone, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, type ClientRailGroupHeaderProps, ClientRailItem, type ClientRailItemProps, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, type CountryCode, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, Dash, DashGrid, type DashGridProps, type DashWidget, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DataTableView, type DataTableViewColumn, type DataTableViewFilter, type DataTableViewProps, DatePicker, DateRangePicker, type DateRangeValue, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DocumentDetailActions, type DocumentDetailActionsProps, DocumentDetailBody, type DocumentDetailBodyProps, DocumentDetailHeader, type DocumentDetailHeaderProps, DocumentDetailMetaRow, type DocumentDetailMetaRowProps, DocumentDetailPanel, type DocumentDetailPanelProps, DocumentDetailRequester, type DocumentDetailRequesterProps, DocumentDetailTitle, type DocumentDetailTitleProps, DocumentFileCard, type DocumentFileCardProps, DocumentFileRow, type DocumentFileRowProps, DocumentIcon, type DocumentItemState, DocumentList, type DocumentListProps, DocumentListSection, type DocumentListSectionProps, type DocumentRequestActivityKind, type DocumentRequestAssigneeOption, DocumentRequestCard, type DocumentRequestCardProps, DocumentRequestDetail, type DocumentRequestDetailActivityEvent, type DocumentRequestDetailComment, type DocumentRequestDetailDoc, type DocumentRequestDetailProps, type DocumentRequestDetailTab, DocumentRequestField, type DocumentRequestFieldProps, type DocumentRequestItemSummary, type DocumentRequestReviewStatusOption, type DocumentRequestTone, DocumentRow, type DocumentRowProps, type DocumentSource, DocumentSourceFilter, type DocumentSourceFilterProps, type DocumentSourceFilterValue, DocumentSourceTag, type DocumentSourceTagProps, DocumentsWorkspaceLayout, type DocumentsWorkspaceLayoutProps, DollarSignIcon, DonutChart, type DonutChartProps, type DonutSegment, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, type EmailMessageCardProps, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, ExtractIcon, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileChip, type FileChipProps, FileIcon, type FileKind, FileReturnIcon, FileTextIcon, FileTypeBadge, type FileTypeBadgeProps, type FileTypeTone, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, IntentBadge, type IntentBadgeProps, type IntentTone, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, type KpiCardProps, type KpiDelta, Label, LandmarkIcon, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MasterDetailLayout, type MasterDetailLayoutProps, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, type MissingDocumentItem, MissingDocumentsPanel, type MissingDocumentsPanelProps, MoneyCell, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NewMenu, type NewMenuAction, type NewMenuGroup, type NewMenuProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelFooter, type NotificationPanelFooterProps, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, type PdfPreviewProps, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, type Priority, PriorityIcon, type PriorityIconProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, ProposalAddOn, type ProposalAddOnProps, type ProposalBillingMode, type ProposalBillingRow, ProposalBillingTerms, type ProposalBillingTermsProps, ProposalConsentGate, type ProposalConsentGateProps, ProposalCustomPage, type ProposalCustomPageKind, type ProposalCustomPageProps, ProposalNote, type ProposalNoteProps, ProposalPackageCard, type ProposalPackageCardProps, type ProposalPackageMode, ProposalPaymentCapture, type ProposalPaymentCaptureProps, ProposalPricingSummary, type ProposalPricingSummaryProps, ProposalServiceRow, type ProposalServiceRowProps, ProposalSignatureBlock, type ProposalSignatureBlockProps, type ProposalSigner, ProposalSignerList, type ProposalSignerListProps, type ProposalSignerStatus, type QuickReplyChip, RadioGroup, RadioGroupItem, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, SegmentedProgress, type SegmentedProgressProps, type SegmentedTone, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, SignatureEditor, type SignatureEditorProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, SpreadsheetPreview, type SpreadsheetPreviewProps, StackedBarChart, type StackedBarChartProps, type StackedBarDatum, type StackedBarSeries, StagePill, StarIcon, StarRating, type StarRatingProps, Stat, StatusDot, type StatusDotProps, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StickyActionBar, type StickyActionBarProps, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, type SuggestionPillsProps, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, SunIcon, Switch, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowData, type TableRowProps, type TableTone, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Textarea, type TextareaVariants, TimeLogger, TimeLoggerActions, type TimeLoggerActionsProps, TimeLoggerBillable, type TimeLoggerBillableProps, TimeLoggerContextRow, type TimeLoggerContextRowProps, TimeLoggerEntry, TimeLoggerEntryList, type TimeLoggerEntryListProps, type TimeLoggerEntryProps, TimeLoggerField, type TimeLoggerFieldProps, TimeLoggerFooter, type TimeLoggerFooterProps, TimeLoggerHeader, type TimeLoggerHeaderProps, TimeLoggerNotes, type TimeLoggerNotesProps, type TimeLoggerPhase, type TimeLoggerProps, type TimeLoggerTier, TimeLoggerTimer, type TimeLoggerTimerProps, type TimelineState, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, attachmentChipVariants, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };