@assure-one/design-system 1.32.0 → 1.33.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/README.md +44 -13
- package/codemods/README.md +60 -0
- package/codemods/lib/forms.mjs +253 -0
- package/codemods/lib/jsx.mjs +0 -0
- package/codemods/lib/registry.mjs +2 -0
- package/codemods/transforms/cm-14-hidden-mirrors.mjs +275 -0
- package/codemods/transforms/cm-20-select-sentinels.mjs +442 -0
- package/dist/css/components.css +7 -0
- package/dist/css/legacy-aliases.css +180 -4
- package/dist/css/shadcn.css +4 -4
- package/dist/css/tailwind.css +66 -3
- package/dist/css/tokens.css +205 -14
- package/dist/index.d.ts +529 -4
- package/dist/index.js +477 -51
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/system-BDU18fVg.d.ts +559 -0
- package/dist/tokens/index.d.ts +50 -439
- package/dist/tokens/index.js +513 -6
- package/dist/tokens/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ColorName, ReferenceTokens, SystemTokens, colors, radii, reference, shadows, spacing, surfaces, systemTokens, typography } from './
|
|
1
|
+
export { C as ColorName, R as ReferenceTokens, S as SystemTokens, c as colors, r as radii, a as reference, s as shadows, b as spacing, d as surfaces, e as systemTokens, t as typography } from './system-BDU18fVg.js';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import { ReactNode, CSSProperties } from 'react';
|
|
4
4
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
@@ -36,6 +36,21 @@ declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPri
|
|
|
36
36
|
declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
37
37
|
declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
38
38
|
|
|
39
|
+
/**
|
|
40
|
+
* `Code` parts, stamped as `data-slot="code[-<part>]"` (ADR-008). Inline, the
|
|
41
|
+
* root is the `<code>`; as a block, the root is the `<pre>` and `content` the
|
|
42
|
+
* `<code>` inside it. State on the root: `data-variant`.
|
|
43
|
+
*
|
|
44
|
+
* @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
|
|
45
|
+
*/
|
|
46
|
+
type CodeSlot = "root" | "content";
|
|
47
|
+
/**
|
|
48
|
+
* `Kbd` part, stamped as `data-slot="kbd"` (ADR-008). State on the root:
|
|
49
|
+
* `data-variant`. `KbdHint` and `CommandPalette` render it.
|
|
50
|
+
*
|
|
51
|
+
* @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
|
|
52
|
+
*/
|
|
53
|
+
type KbdSlot = "root";
|
|
39
54
|
/**
|
|
40
55
|
* `Button` parts, stamped as `data-slot="button[-<part>]"` (ADR-008).
|
|
41
56
|
* States on the root: `data-variant`, `data-size`, `data-disabled`, and the
|
|
@@ -300,6 +315,42 @@ type SidebarSlot = "root" | "trigger" | "pin" | "brand" | "brand-text" | "sectio
|
|
|
300
315
|
* @experimental Slot names are experimental until ADR-008 is accepted (W2-18).
|
|
301
316
|
*/
|
|
302
317
|
type SidebarBrandSwitcherSlot = "root" | "trigger" | "icon";
|
|
318
|
+
/**
|
|
319
|
+
* `Text` parts, stamped as `data-slot="text"` (ADR-008). One part: the
|
|
320
|
+
* element that carries the role, and the element `className` lands on (with
|
|
321
|
+
* `asChild`, the child the caller supplied).
|
|
322
|
+
*
|
|
323
|
+
* @experimental Slot names are experimental until ADR-008 is accepted (W2-12).
|
|
324
|
+
*/
|
|
325
|
+
type TextSlot = "root";
|
|
326
|
+
/**
|
|
327
|
+
* `Heading` parts, stamped as `data-slot="heading"` (ADR-008). One part: the
|
|
328
|
+
* `<h1>`…`<h6>` itself, which is the element `className` lands on.
|
|
329
|
+
*
|
|
330
|
+
* @experimental Slot names are experimental until ADR-008 is accepted (W2-13).
|
|
331
|
+
*/
|
|
332
|
+
type HeadingSlot = "root";
|
|
333
|
+
/**
|
|
334
|
+
* `Stack` has one part, its root, stamped as `data-slot="stack"` (ADR-008).
|
|
335
|
+
* No state attributes: a responsive `direction` has no single value to
|
|
336
|
+
* stamp, and the primitive's job is spacing, not state.
|
|
337
|
+
*
|
|
338
|
+
* @experimental Slot names are experimental until ADR-008 is accepted (W2-15).
|
|
339
|
+
*/
|
|
340
|
+
type StackSlot = "root";
|
|
341
|
+
/**
|
|
342
|
+
* `Inline` has one part, its root, stamped as `data-slot="inline"` (ADR-008).
|
|
343
|
+
*
|
|
344
|
+
* @experimental Slot names are experimental until ADR-008 is accepted (W2-15).
|
|
345
|
+
*/
|
|
346
|
+
type InlineSlot = "root";
|
|
347
|
+
/**
|
|
348
|
+
* `Surface` has one part, its root, stamped as `data-slot="surface"`
|
|
349
|
+
* (ADR-008). Composites built on it (Card, W3-17) declare their own parts.
|
|
350
|
+
*
|
|
351
|
+
* @experimental Slot names are experimental until ADR-008 is accepted (W2-16).
|
|
352
|
+
*/
|
|
353
|
+
type SurfaceSlot = "root";
|
|
303
354
|
|
|
304
355
|
declare const AlertDialog: React$1.FC<AlertDialogPrimitive.AlertDialogProps>;
|
|
305
356
|
declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -504,7 +555,7 @@ declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<BreadcrumbS
|
|
|
504
555
|
* Use `asChild` to render as a different element (e.g. an anchor / next/link).
|
|
505
556
|
*/
|
|
506
557
|
declare const buttonVariants: (props?: ({
|
|
507
|
-
variant?: "
|
|
558
|
+
variant?: "accent" | "link" | "success" | "destructive" | "primary" | "secondary" | "ghost" | "outline" | "dashed" | null | undefined;
|
|
508
559
|
size?: "icon" | "sm" | "md" | "lg" | "compact" | "default" | "comfortable" | "icon-xs" | "icon-sm" | null | undefined;
|
|
509
560
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
510
561
|
type ButtonVariant = NonNullable<VariantProps<typeof buttonVariants>["variant"]>;
|
|
@@ -2226,7 +2277,7 @@ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.Re
|
|
|
2226
2277
|
|
|
2227
2278
|
declare const spinnerVariants: (props?: ({
|
|
2228
2279
|
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
2229
|
-
tone?: "current" | "success" | "warning" | "destructive" | "muted" |
|
|
2280
|
+
tone?: "accent" | "current" | "success" | "warning" | "destructive" | "muted" | null | undefined;
|
|
2230
2281
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2231
2282
|
interface SpinnerProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof spinnerVariants> {
|
|
2232
2283
|
/**
|
|
@@ -2695,6 +2746,40 @@ interface ToggleGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof T
|
|
|
2695
2746
|
}
|
|
2696
2747
|
declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<ToggleGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2697
2748
|
|
|
2749
|
+
/** `inline`: one `<code>` in running text. `block`: `<pre><code>`, keeps whitespace, scrolls. */
|
|
2750
|
+
type CodeVariant = "inline" | "block";
|
|
2751
|
+
interface CodeProps extends React.HTMLAttributes<HTMLElement> {
|
|
2752
|
+
/** Default `inline`. */
|
|
2753
|
+
variant?: CodeVariant;
|
|
2754
|
+
}
|
|
2755
|
+
/**
|
|
2756
|
+
* Monospace text, inline or as a block.
|
|
2757
|
+
*
|
|
2758
|
+
* @experimental W2-14 typography primitive.
|
|
2759
|
+
*/
|
|
2760
|
+
declare const Code: React$1.ForwardRefExoticComponent<CodeProps & React$1.RefAttributes<HTMLElement>>;
|
|
2761
|
+
|
|
2762
|
+
/** `keycap`: the 18px key with a heavier bottom edge (CommandPalette). `flat`: the 20px badge (KbdHint). */
|
|
2763
|
+
type KbdVariant = "keycap" | "flat";
|
|
2764
|
+
/** A platform-spelled key: `⌘ ⌥ ⇧ ⌃` on Apple platforms, `Ctrl Alt Shift Ctrl` elsewhere. `mod` is the primary modifier. */
|
|
2765
|
+
type KbdGlyph = "mod" | "alt" | "shift" | "ctrl";
|
|
2766
|
+
interface KbdProps extends React.HTMLAttributes<HTMLElement> {
|
|
2767
|
+
/** Default `keycap`. */
|
|
2768
|
+
variant?: KbdVariant;
|
|
2769
|
+
/**
|
|
2770
|
+
* A platform-spelled key rendered before `children`. Decided after mount
|
|
2771
|
+
* (amendment A3): server and hydration render the non-Apple spelling, then
|
|
2772
|
+
* the detected one replaces it.
|
|
2773
|
+
*/
|
|
2774
|
+
glyph?: KbdGlyph;
|
|
2775
|
+
}
|
|
2776
|
+
/**
|
|
2777
|
+
* One key of a keyboard shortcut; one `Kbd` per key of a chord.
|
|
2778
|
+
*
|
|
2779
|
+
* @experimental W2-14 typography primitive.
|
|
2780
|
+
*/
|
|
2781
|
+
declare const Kbd: React$1.ForwardRefExoticComponent<KbdProps & React$1.RefAttributes<HTMLElement>>;
|
|
2782
|
+
|
|
2698
2783
|
declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
2699
2784
|
declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2700
2785
|
declare const TooltipPortal: React$1.FC<TooltipPrimitive.TooltipPortalProps>;
|
|
@@ -2802,6 +2887,418 @@ declare namespace IntentBadge {
|
|
|
2802
2887
|
var displayName: string;
|
|
2803
2888
|
}
|
|
2804
2889
|
|
|
2890
|
+
/**
|
|
2891
|
+
* The size of a run of text, named as a typography *role* — what the text is
|
|
2892
|
+
* (body copy, a field label, a caption…) — never as a pixel value. The twelve
|
|
2893
|
+
* roles of target architecture §15, each a role token (`--text-<role>` plus its
|
|
2894
|
+
* line-height, letter-spacing and font-weight companions, W2-01) that the
|
|
2895
|
+
* Tailwind bridge exposes as the `text-<role>` utility. Roles gated on decision
|
|
2896
|
+
* D1 (`title-page`, `title-sub`, `label`, `code`) keep today's value until D1
|
|
2897
|
+
* lands; see `docs/design-system/typography-roles.md`.
|
|
2898
|
+
*
|
|
2899
|
+
* @experimental W2-12.
|
|
2900
|
+
*/
|
|
2901
|
+
type TextSize = "display" | "title-page" | "title-section" | "title-sub" | "body" | "body-sm" | "label" | "helper" | "caption" | "micro" | "overline" | "code";
|
|
2902
|
+
/**
|
|
2903
|
+
* An `intent`-free ink colour (target architecture §15.2). `default`…`subtle`
|
|
2904
|
+
* are the four legible steps of the foreground ramp (`fg` … `fg-4`; `fg-5` is
|
|
2905
|
+
* decorative and not offered), `inverse` is the canvas colour for text on an
|
|
2906
|
+
* inverted surface, and the status and brand colours are their `-fg` tokens.
|
|
2907
|
+
*
|
|
2908
|
+
* @experimental W2-12.
|
|
2909
|
+
*/
|
|
2910
|
+
type TextColor = "default" | "secondary" | "muted" | "subtle" | "inverse" | "danger" | "success" | "warning" | "brand";
|
|
2911
|
+
/**
|
|
2912
|
+
* A font weight from the loaded set (400/500/600/700). A role already carries
|
|
2913
|
+
* a weight; this prop overrides it.
|
|
2914
|
+
*
|
|
2915
|
+
* @experimental W2-12.
|
|
2916
|
+
*/
|
|
2917
|
+
type TextWeight = "regular" | "medium" | "semibold" | "bold";
|
|
2918
|
+
/**
|
|
2919
|
+
* Props of `Text`. Every HTML attribute passes through, including the ARIA
|
|
2920
|
+
* `role`; the typography role is the `size` prop, so the two never collide.
|
|
2921
|
+
* `color` replaces the obsolete HTML `color` attribute.
|
|
2922
|
+
*
|
|
2923
|
+
* @experimental W2-12.
|
|
2924
|
+
*/
|
|
2925
|
+
interface TextProps extends Omit<React.HTMLAttributes<HTMLElement>, "color"> {
|
|
2926
|
+
/**
|
|
2927
|
+
* The size, named as a typography role. Defaults to `body`, the default
|
|
2928
|
+
* reading text (14px / 1.55 / 400).
|
|
2929
|
+
*/
|
|
2930
|
+
size?: TextSize;
|
|
2931
|
+
/**
|
|
2932
|
+
* The ink colour. When omitted the text inherits its parent's colour, so a
|
|
2933
|
+
* `Text` inside a coloured control keeps that control's ink; `default` sets
|
|
2934
|
+
* the document ink (`fg`) explicitly.
|
|
2935
|
+
*/
|
|
2936
|
+
color?: TextColor;
|
|
2937
|
+
/** Overrides the role's weight with one of the loaded weights. */
|
|
2938
|
+
weight?: TextWeight;
|
|
2939
|
+
/**
|
|
2940
|
+
* Lining tabular figures for amounts, counts and table numerals (the
|
|
2941
|
+
* `numeric` modifier of target architecture §15): digits share a width, so
|
|
2942
|
+
* columns align and a changing digit does not reflow the row.
|
|
2943
|
+
*/
|
|
2944
|
+
numeric?: boolean;
|
|
2945
|
+
/**
|
|
2946
|
+
* Clip to one line with an ellipsis. The element needs a width to clip
|
|
2947
|
+
* against: give it one, or make it a flex or grid child with `min-w-0`.
|
|
2948
|
+
*/
|
|
2949
|
+
truncate?: boolean;
|
|
2950
|
+
/**
|
|
2951
|
+
* Render the child element instead of a `<span>`, merging the size classes
|
|
2952
|
+
* and attributes into it (Radix `Slot`). This is how `Text` becomes a
|
|
2953
|
+
* `<p>`, a `<label>`, a `<time>` or a link; there is no `as` prop.
|
|
2954
|
+
*/
|
|
2955
|
+
asChild?: boolean;
|
|
2956
|
+
}
|
|
2957
|
+
/**
|
|
2958
|
+
* `Text` — a run of text sized by a typography *role* (W2-12, target
|
|
2959
|
+
* architecture §15.2).
|
|
2960
|
+
*
|
|
2961
|
+
* Renders a `<span>` (or, with `asChild`, the child you pass) and gives it one
|
|
2962
|
+
* of the twelve role tokens — font size, line height, letter spacing and
|
|
2963
|
+
* weight in a single utility — plus an optional ink colour, weight override,
|
|
2964
|
+
* tabular numerals and single-line truncation. It never takes a pixel size: a
|
|
2965
|
+
* role is a name for what the text is, and the number behind it belongs to the
|
|
2966
|
+
* token.
|
|
2967
|
+
*
|
|
2968
|
+
* Server-safe: no hooks, no client directive, no effects. It renders the same
|
|
2969
|
+
* markup on the server and on the client.
|
|
2970
|
+
*
|
|
2971
|
+
* Anatomy: one part, `data-slot="text"`, which is also where `className` and
|
|
2972
|
+
* `style` land (with `asChild`, on the child).
|
|
2973
|
+
*
|
|
2974
|
+
* @example
|
|
2975
|
+
* ```tsx
|
|
2976
|
+
* <Text size="helper" color="muted">Shown to the client after signing.</Text>
|
|
2977
|
+
* <Text size="body-sm" numeric>1,204.50</Text>
|
|
2978
|
+
* <Text size="helper" role="status">Saved</Text>
|
|
2979
|
+
* <Text asChild size="caption"><time dateTime="2026-09-21">21 Sep 2026</time></Text>
|
|
2980
|
+
* ```
|
|
2981
|
+
*
|
|
2982
|
+
* @experimental New export (W2-12); its props may change while decision D1
|
|
2983
|
+
* (visual source of truth) is open.
|
|
2984
|
+
*/
|
|
2985
|
+
declare const Text: React$1.ForwardRefExoticComponent<TextProps & React$1.RefAttributes<HTMLElement>>;
|
|
2986
|
+
|
|
2987
|
+
/**
|
|
2988
|
+
* The document-outline level: which of `<h1>`…`<h6>` renders. Semantic only —
|
|
2989
|
+
* it says where the heading sits in the outline, not how large it is.
|
|
2990
|
+
*
|
|
2991
|
+
* @experimental W2-13.
|
|
2992
|
+
*/
|
|
2993
|
+
type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
2994
|
+
/**
|
|
2995
|
+
* The visual role of a heading: one of the four title roles of target
|
|
2996
|
+
* architecture §15. Independent of `level`. Written out as a literal union so
|
|
2997
|
+
* the public API report records the names.
|
|
2998
|
+
*
|
|
2999
|
+
* @experimental W2-13.
|
|
3000
|
+
*/
|
|
3001
|
+
type HeadingSize = "display" | "title-page" | "title-section" | "title-sub";
|
|
3002
|
+
/**
|
|
3003
|
+
* Props of `Heading`. `level` is required on purpose: a heading without an
|
|
3004
|
+
* outline level is the hard-coded `h3`/`h1`/`h4` this component exists to end
|
|
3005
|
+
* (target architecture §15.2, current-state audit §14).
|
|
3006
|
+
*
|
|
3007
|
+
* @experimental W2-13.
|
|
3008
|
+
*/
|
|
3009
|
+
interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement> {
|
|
3010
|
+
/** The outline level: renders `<h{level}>`. Required. */
|
|
3011
|
+
level: HeadingLevel;
|
|
3012
|
+
/**
|
|
3013
|
+
* The visual role, independent of `level`. Defaults from the level
|
|
3014
|
+
* (`1` → `title-page`, `2` → `title-section`, `3`–`6` → `title-sub`), so an
|
|
3015
|
+
* `<h3>` that must look like a section title says `size="title-section"`
|
|
3016
|
+
* instead of becoming an `<h2>`.
|
|
3017
|
+
*/
|
|
3018
|
+
size?: HeadingSize;
|
|
3019
|
+
}
|
|
3020
|
+
/**
|
|
3021
|
+
* `Heading` — an `<h1>`…`<h6>` whose outline level and visual size are two
|
|
3022
|
+
* separate props (W2-13, target architecture §15.2).
|
|
3023
|
+
*
|
|
3024
|
+
* `level` is required and picks the element; `size` picks the title role and
|
|
3025
|
+
* defaults from the level. Because the two are independent, a card title can
|
|
3026
|
+
* be the `<h3>` the document outline needs and still render at the section
|
|
3027
|
+
* scale, and a page can keep exactly one `<h1>` without every other title
|
|
3028
|
+
* shrinking. Every size is a role token; there is no pixel size.
|
|
3029
|
+
*
|
|
3030
|
+
* Renders in the display family (`font-display`) and the heading ink (`fg`),
|
|
3031
|
+
* as the base `h1`–`h4` rules do today, so an `<h5>` at `title-sub` matches an
|
|
3032
|
+
* `<h4>` at `title-sub`.
|
|
3033
|
+
*
|
|
3034
|
+
* Server-safe: no hooks, no client directive, no effects.
|
|
3035
|
+
*
|
|
3036
|
+
* Anatomy: one part, `data-slot="heading"`, which is also where `className`
|
|
3037
|
+
* and `style` land.
|
|
3038
|
+
*
|
|
3039
|
+
* @example
|
|
3040
|
+
* ```tsx
|
|
3041
|
+
* <Heading level={1}>Engagements</Heading>
|
|
3042
|
+
* <Heading level={3} size="title-section">Documents</Heading>
|
|
3043
|
+
* ```
|
|
3044
|
+
*
|
|
3045
|
+
* @experimental New export (W2-13); its size vocabulary may change while
|
|
3046
|
+
* decision D1 (visual source of truth) is open.
|
|
3047
|
+
*/
|
|
3048
|
+
declare const Heading: React$1.ForwardRefExoticComponent<HeadingProps & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
3049
|
+
|
|
3050
|
+
/**
|
|
3051
|
+
* The shared vocabulary of the layout primitives (W2-15, target architecture
|
|
3052
|
+
* §16, §22, §23): the gap scale, the alignment words, and the one responsive
|
|
3053
|
+
* shape a layout prop may take.
|
|
3054
|
+
*
|
|
3055
|
+
* Every class this module hands out is a literal in the tables below. Tailwind
|
|
3056
|
+
* compiles a utility only when it can read it from source, so a class built
|
|
3057
|
+
* from string pieces at render time would exist in the DOM and nowhere in
|
|
3058
|
+
* `dist/styles.css`. The tables are the whole set; nothing else is generated.
|
|
3059
|
+
*
|
|
3060
|
+
* The gap utilities read the `stack.gap.*` tokens through the parenthesised
|
|
3061
|
+
* custom-property form (`gap-(--stack-gap-md)`), which is what binds a step to
|
|
3062
|
+
* the token rather than to Tailwind's numeric scale: a density scope or a
|
|
3063
|
+
* consumer preset that re-points `--stack-gap-md` moves every `Stack` with it.
|
|
3064
|
+
*/
|
|
3065
|
+
/**
|
|
3066
|
+
* The breakpoints a responsive layout prop may name. They are Tailwind's `sm`,
|
|
3067
|
+
* `md` and `lg` (40 / 48 / 64rem), the same values `breakpoints` in the
|
|
3068
|
+
* `/tokens` entry publishes (W2-10). Only `Stack direction` and the `gap` of
|
|
3069
|
+
* `Stack`/`Inline` are responsive (target architecture §22); nothing else on a
|
|
3070
|
+
* layout primitive takes an object.
|
|
3071
|
+
*
|
|
3072
|
+
* @experimental
|
|
3073
|
+
*/
|
|
3074
|
+
type LayoutBreakpoint = "sm" | "md" | "lg";
|
|
3075
|
+
/**
|
|
3076
|
+
* A layout prop value that may change at a breakpoint: either one value, or an
|
|
3077
|
+
* object of values by breakpoint. `base` is what applies below `sm`; when it
|
|
3078
|
+
* is omitted the prop's own default applies there, so
|
|
3079
|
+
* `direction={{ md: "row" }}` reads "a column, a row from `md` up".
|
|
3080
|
+
*
|
|
3081
|
+
* @experimental
|
|
3082
|
+
*/
|
|
3083
|
+
type Responsive<T> = T | Partial<Record<"base" | LayoutBreakpoint, T>>;
|
|
3084
|
+
/**
|
|
3085
|
+
* The five gaps the library actually writes (W2-02, `stack.gap.*`): 4 / 6 / 8 /
|
|
3086
|
+
* 12 / 16px, plus `none`. `md` (8px) is the single most-written gap in the
|
|
3087
|
+
* library and the default of both `Stack` and `Inline`.
|
|
3088
|
+
*
|
|
3089
|
+
* @experimental
|
|
3090
|
+
*/
|
|
3091
|
+
type LayoutGap = "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
3092
|
+
/**
|
|
3093
|
+
* Cross-axis alignment of the children (`align-items`).
|
|
3094
|
+
*
|
|
3095
|
+
* @experimental
|
|
3096
|
+
*/
|
|
3097
|
+
type LayoutAlign = "start" | "center" | "end" | "stretch" | "baseline";
|
|
3098
|
+
/**
|
|
3099
|
+
* Main-axis distribution of the children (`justify-content`).
|
|
3100
|
+
*
|
|
3101
|
+
* @experimental
|
|
3102
|
+
*/
|
|
3103
|
+
type LayoutJustify = "start" | "center" | "end" | "between" | "around" | "evenly";
|
|
3104
|
+
|
|
3105
|
+
/**
|
|
3106
|
+
* The axis a `Stack` lays its children along.
|
|
3107
|
+
*
|
|
3108
|
+
* @experimental
|
|
3109
|
+
*/
|
|
3110
|
+
type StackDirection = "column" | "row";
|
|
3111
|
+
|
|
3112
|
+
/**
|
|
3113
|
+
* Props of `Stack`.
|
|
3114
|
+
*
|
|
3115
|
+
* A layout primitive takes tokenised props only for the things it exists for
|
|
3116
|
+
* — the gap between its children and how they line up — and never arbitrary
|
|
3117
|
+
* style props (target architecture §23). There is no `padding`, `margin`,
|
|
3118
|
+
* `p`/`m`/`px`/`mt`, `bg`, `color`, `width`, `height`, `sx` or `css` here, and
|
|
3119
|
+
* `gap` accepts a scale step, not a number or a length. Spacing *around* a
|
|
3120
|
+
* stack belongs to its parent; a box with padding is a `Surface`. `className`
|
|
3121
|
+
* and `style` land on the root element (§29.1).
|
|
3122
|
+
*
|
|
3123
|
+
* @experimental
|
|
3124
|
+
*/
|
|
3125
|
+
interface StackProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "color"> {
|
|
3126
|
+
/**
|
|
3127
|
+
* The axis the children follow. Responsive: `{ base?, sm?, md?, lg? }`, so
|
|
3128
|
+
* a form row can be a column on a phone and a row from `sm` up.
|
|
3129
|
+
* @default "column"
|
|
3130
|
+
*/
|
|
3131
|
+
direction?: Responsive<StackDirection>;
|
|
3132
|
+
/**
|
|
3133
|
+
* The gap between children, as a `stack.gap` step (4 / 6 / 8 / 12 / 16px)
|
|
3134
|
+
* or `none`. Responsive like `direction`.
|
|
3135
|
+
* @default "md"
|
|
3136
|
+
*/
|
|
3137
|
+
gap?: Responsive<LayoutGap>;
|
|
3138
|
+
/** Cross-axis alignment (`align-items`). Not responsive. */
|
|
3139
|
+
align?: LayoutAlign;
|
|
3140
|
+
/** Main-axis distribution (`justify-content`). Not responsive. */
|
|
3141
|
+
justify?: LayoutJustify;
|
|
3142
|
+
/** Whether children may wrap onto further lines. Not responsive. */
|
|
3143
|
+
wrap?: boolean;
|
|
3144
|
+
}
|
|
3145
|
+
/**
|
|
3146
|
+
* Stack — the one-dimensional layout primitive (W2-15, target architecture
|
|
3147
|
+
* §23). A flex container that owns the spacing *between* its children through
|
|
3148
|
+
* the `stack.gap` tokens, so siblings never carry outer margins of their own.
|
|
3149
|
+
*
|
|
3150
|
+
* Vertical by default; `direction` may switch to a row, at a breakpoint if
|
|
3151
|
+
* needed. Only `direction` and `gap` are responsive — the deliberately small
|
|
3152
|
+
* exception the architecture makes for layout primitives (§22). For a
|
|
3153
|
+
* horizontal, wrapping row use `Inline`.
|
|
3154
|
+
*
|
|
3155
|
+
* Server-safe: no hooks, no client directive, renders a plain `div` and stamps
|
|
3156
|
+
* `data-slot="stack"`. `asChild` is deferred until the design system has its
|
|
3157
|
+
* own `Slot` in the a11y primitives (the Radix package is a behaviour import
|
|
3158
|
+
* the L1b layer may not make directly).
|
|
3159
|
+
*
|
|
3160
|
+
* @experimental Shipped in Wave 2 as a new export nobody is forced to use; the
|
|
3161
|
+
* prop shapes may still change before the wave's exit review.
|
|
3162
|
+
*/
|
|
3163
|
+
declare const Stack: React$1.ForwardRefExoticComponent<StackProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3164
|
+
|
|
3165
|
+
/**
|
|
3166
|
+
* Props of `Inline`.
|
|
3167
|
+
*
|
|
3168
|
+
* The same discipline as `StackProps`: tokenised props for gap and alignment
|
|
3169
|
+
* only, no arbitrary style props (`padding`, `margin`, `p`/`m`/`px`/`mt`,
|
|
3170
|
+
* `bg`, `color`, `width`, `height`, `sx`, `css`), and `gap` is a scale step.
|
|
3171
|
+
* `className` and `style` land on the root element (§29.1).
|
|
3172
|
+
*
|
|
3173
|
+
* @experimental
|
|
3174
|
+
*/
|
|
3175
|
+
interface InlineProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "color"> {
|
|
3176
|
+
/**
|
|
3177
|
+
* The gap between children, as a `stack.gap` step (4 / 6 / 8 / 12 / 16px)
|
|
3178
|
+
* or `none`. Responsive: `{ base?, sm?, md?, lg? }`.
|
|
3179
|
+
* @default "md"
|
|
3180
|
+
*/
|
|
3181
|
+
gap?: Responsive<LayoutGap>;
|
|
3182
|
+
/**
|
|
3183
|
+
* Cross-axis alignment (`align-items`). Not responsive.
|
|
3184
|
+
* @default "center"
|
|
3185
|
+
*/
|
|
3186
|
+
align?: LayoutAlign;
|
|
3187
|
+
/** Main-axis distribution (`justify-content`). Not responsive. */
|
|
3188
|
+
justify?: LayoutJustify;
|
|
3189
|
+
/**
|
|
3190
|
+
* Whether children may wrap onto further lines. Not responsive.
|
|
3191
|
+
* @default true
|
|
3192
|
+
*/
|
|
3193
|
+
wrap?: boolean;
|
|
3194
|
+
}
|
|
3195
|
+
/**
|
|
3196
|
+
* Inline — the horizontal, wrapping row (W2-15, target architecture §23): a
|
|
3197
|
+
* label beside a badge, a row of chips, the buttons of a toolbar. Children are
|
|
3198
|
+
* centred on the cross axis and wrap by default, which is what a row of mixed
|
|
3199
|
+
* heights and unknown count wants; `Stack direction="row"` is the row that
|
|
3200
|
+
* does not wrap and stretches.
|
|
3201
|
+
*
|
|
3202
|
+
* Only `gap` is responsive (§22). Server-safe: no hooks, no client directive,
|
|
3203
|
+
* renders a plain `div` and stamps `data-slot="inline"`. `asChild` is deferred
|
|
3204
|
+
* with `Stack`'s.
|
|
3205
|
+
*
|
|
3206
|
+
* @experimental Shipped in Wave 2 as a new export nobody is forced to use; the
|
|
3207
|
+
* prop shapes may still change before the wave's exit review.
|
|
3208
|
+
*/
|
|
3209
|
+
declare const Inline: React$1.ForwardRefExoticComponent<InlineProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3210
|
+
|
|
3211
|
+
/**
|
|
3212
|
+
* Inner padding of a `Surface`, as a `surface.padding` role (W2-02): 16 / 20 /
|
|
3213
|
+
* 24px — the three card and panel paddings the library and its consumers
|
|
3214
|
+
* already write — or `none` for a surface whose content pads itself (a table,
|
|
3215
|
+
* an image, a list with its own row padding).
|
|
3216
|
+
*
|
|
3217
|
+
* @experimental
|
|
3218
|
+
*/
|
|
3219
|
+
type SurfacePadding = "none" | "sm" | "md" | "lg";
|
|
3220
|
+
/**
|
|
3221
|
+
* Corner radius of a `Surface`, as a radius role (W2-07, target architecture
|
|
3222
|
+
* §18): `surface` for cards, dialogs and sheets, `surface-sm` for popovers,
|
|
3223
|
+
* tooltips, toasts and small cards, or `none`. Control and badge radii are not
|
|
3224
|
+
* offered: a surface is never a control.
|
|
3225
|
+
*
|
|
3226
|
+
* @experimental
|
|
3227
|
+
*/
|
|
3228
|
+
type SurfaceRadius = "none" | "surface-sm" | "surface";
|
|
3229
|
+
/**
|
|
3230
|
+
* Elevation of a `Surface`, as an elevation role (W2-08, target architecture
|
|
3231
|
+
* §19): `flat` (resting, border-led — today's `Card`), `raised` (resting
|
|
3232
|
+
* lift), `floating` (anchored transient surfaces), `overlay` (modal surfaces),
|
|
3233
|
+
* or `none` for no shadow at all — which is what the hand-rolled card boxes in
|
|
3234
|
+
* every product render, and the default. `flat` is kept distinct from `none`
|
|
3235
|
+
* because today's `flat` role still aliases the hairline `shadow-quiet` (gated
|
|
3236
|
+
* on D1); when D1 lands the two coincide and nothing here changes.
|
|
3237
|
+
*
|
|
3238
|
+
* @experimental
|
|
3239
|
+
*/
|
|
3240
|
+
type SurfaceElevation = "none" | "flat" | "raised" | "floating" | "overlay";
|
|
3241
|
+
|
|
3242
|
+
/**
|
|
3243
|
+
* Props of `Surface`.
|
|
3244
|
+
*
|
|
3245
|
+
* Tokenised props for exactly the three things a surface is (padding, radius,
|
|
3246
|
+
* elevation) and nothing else: no `gap`/`align`/`direction` (that is a `Stack`
|
|
3247
|
+
* inside it), no `bg`, `border`, `shadow`, `rounded`, `p`/`m`/`px`/`mt`,
|
|
3248
|
+
* `color`, `width`, `height`, `sx` or `css`, and no numeric or length values.
|
|
3249
|
+
* `className` and `style` land on the root element (§29.1).
|
|
3250
|
+
*
|
|
3251
|
+
* @experimental
|
|
3252
|
+
*/
|
|
3253
|
+
interface SurfaceProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "color"> {
|
|
3254
|
+
/**
|
|
3255
|
+
* Inner padding, as a `surface.padding` role.
|
|
3256
|
+
* @default "sm"
|
|
3257
|
+
*/
|
|
3258
|
+
padding?: SurfacePadding;
|
|
3259
|
+
/**
|
|
3260
|
+
* Corner radius, as a radius role.
|
|
3261
|
+
* @default "surface"
|
|
3262
|
+
*/
|
|
3263
|
+
radius?: SurfaceRadius;
|
|
3264
|
+
/**
|
|
3265
|
+
* Shadow, as an elevation role.
|
|
3266
|
+
* @default "none"
|
|
3267
|
+
*/
|
|
3268
|
+
elevation?: SurfaceElevation;
|
|
3269
|
+
}
|
|
3270
|
+
/**
|
|
3271
|
+
* Surface — the bordered box content sits on (W2-16, target architecture §23).
|
|
3272
|
+
* It is the primitive behind the 367 (Pro) / 119 (Portal) / 96 (Tax)
|
|
3273
|
+
* hand-rolled card boxes of the consumer usage audit (the class string is
|
|
3274
|
+
* `HAND_ROLLED_CARD` in the stories; it is not spelled here because Tailwind
|
|
3275
|
+
* would compile it from this comment) and the `.surface` helper class: with no
|
|
3276
|
+
* props it renders that box — surface background, 1px rule border,
|
|
3277
|
+
* `radius.surface`, `surface.padding.sm`, no shadow — and every knob is a
|
|
3278
|
+
* role, never a value. `Card` (W3-17) is built on it and adds anatomy.
|
|
3279
|
+
*
|
|
3280
|
+
* Deferred, deliberately:
|
|
3281
|
+
* - `interactive`: a clickable surface renders through `Pressable` (W3-03) so
|
|
3282
|
+
* it gets keyboard activation, `data-pressed` and a focus ring for free; a
|
|
3283
|
+
* `cursor-pointer` hover treatment here would be a click target with no
|
|
3284
|
+
* keyboard semantics. Until then, put a `Button asChild` or a link inside
|
|
3285
|
+
* the surface.
|
|
3286
|
+
* - `asChild`: waits for the design system's own `Slot` (a11y primitives).
|
|
3287
|
+
*
|
|
3288
|
+
* Server-safe: no hooks, no client directive, renders a plain `div` and stamps
|
|
3289
|
+
* `data-slot="surface"`.
|
|
3290
|
+
*
|
|
3291
|
+
* Under a consumer's shadcn theme the hand-rolled box and this primitive differ
|
|
3292
|
+
* on purpose in two places the parity story makes visible: the products'
|
|
3293
|
+
* `rounded-xl` is `--radius` + 4px (16px) where `radius.surface` is 12px, and
|
|
3294
|
+
* their `--border` is not the design system's rule colour. Both are decision
|
|
3295
|
+
* D1 (target architecture §18); `Surface` follows the roles.
|
|
3296
|
+
*
|
|
3297
|
+
* @experimental Shipped in Wave 2 as a new export nobody is forced to use; the
|
|
3298
|
+
* prop shapes may still change before the wave's exit review.
|
|
3299
|
+
*/
|
|
3300
|
+
declare const Surface: React$1.ForwardRefExoticComponent<SurfaceProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3301
|
+
|
|
2805
3302
|
/**
|
|
2806
3303
|
* AgreementViewer — the chrome + navigation shell for a multi-step, branded
|
|
2807
3304
|
* agreement / proposal (the "Signed Agreement Viewer"). It owns the header,
|
|
@@ -5681,6 +6178,11 @@ interface EyebrowProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
5681
6178
|
}
|
|
5682
6179
|
declare const Eyebrow: React$1.ForwardRefExoticComponent<EyebrowProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
5683
6180
|
type KbdHintProps = React.HTMLAttributes<HTMLElement>;
|
|
6181
|
+
/**
|
|
6182
|
+
* The flat 20px kbd badge. Since W2-14 it is `Kbd` with `variant="flat"`,
|
|
6183
|
+
* which renders the same element and the same classes; prefer `Kbd` in new
|
|
6184
|
+
* code (target architecture §15.2 consolidates `KbdHint` into it).
|
|
6185
|
+
*/
|
|
5684
6186
|
declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.RefAttributes<HTMLElement>>;
|
|
5685
6187
|
|
|
5686
6188
|
/**
|
|
@@ -6001,6 +6503,29 @@ declare const StickyStackSectionHeader: React$1.ForwardRefExoticComponent<Sticky
|
|
|
6001
6503
|
|
|
6002
6504
|
declare function cn(...inputs: ClassValue[]): string;
|
|
6003
6505
|
|
|
6506
|
+
/**
|
|
6507
|
+
* Asset base path — where the design system's own static artwork is served from.
|
|
6508
|
+
*
|
|
6509
|
+
* Brand art ships in `public/brand/` and is addressed root-relative
|
|
6510
|
+
* (`/brand/assure-pro.svg`). That is correct in a consumer app served from the
|
|
6511
|
+
* domain root, and wrong anywhere the host serves from a subpath: this repo's
|
|
6512
|
+
* Storybook lives at `/design-system/` on GitHub Pages, where a root-relative
|
|
6513
|
+
* request leaves the site entirely and 404s.
|
|
6514
|
+
*
|
|
6515
|
+
* Consumers need do nothing. The default base is `/`, which reproduces today's
|
|
6516
|
+
* root-relative URLs byte for byte. A host on a subpath calls
|
|
6517
|
+
* `setAssetBasePath` once before first render.
|
|
6518
|
+
*/
|
|
6519
|
+
/**
|
|
6520
|
+
* Point brand artwork at `base`. Accepts it with or without surrounding
|
|
6521
|
+
* slashes; empty, nullish and `"/"` all mean the domain root.
|
|
6522
|
+
*/
|
|
6523
|
+
declare function setAssetBasePath(base: string | null | undefined): void;
|
|
6524
|
+
/** The configured base, always with a single trailing slash. */
|
|
6525
|
+
declare function getAssetBasePath(): string;
|
|
6526
|
+
/** Resolve a root-relative design system asset against the configured base. */
|
|
6527
|
+
declare function assetPath(path: string): string;
|
|
6528
|
+
|
|
6004
6529
|
/**
|
|
6005
6530
|
* Brand scope — ambient product theming.
|
|
6006
6531
|
*
|
|
@@ -6055,4 +6580,4 @@ interface BrandScopeProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
6055
6580
|
*/
|
|
6056
6581
|
declare const BrandScope: React$1.ForwardRefExoticComponent<BrandScopeProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
6057
6582
|
|
|
6058
|
-
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, type AlertDialogSlot, 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, BRAND_PRODUCTS, Badge, type BadgeProps, type BadgeSlot, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, type BrandProduct, BrandScope, type BrandScopeProps, BrandScopeProvider, 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, type ButtonSize, type ButtonSlot, type ButtonVariant, COUNTRY_CODES, Calendar, type CalendarCaptionLayout, 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, type CheckboxSlot, 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, type ContextMenuSlot, 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, type DataTableSlot, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DataTableView, type DataTableViewColumn, type DataTableViewFilter, type DataTableViewProps, type DataTableViewSelection, 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, type DialogSlot, DialogTitle, DialogTrigger, DismissibleChip, DisplayMenu, type DisplayMenuOption, type DisplayMenuProps, type DisplayMenuSection, DocumentChecklist, type DocumentChecklistFile, type DocumentChecklistItem, type DocumentChecklistProps, type DocumentChecklistStatus, DocumentDetailActions, type DocumentDetailActionsProps, DocumentDetailBody, type DocumentDetailBodyProps, DocumentDetailHeader, type DocumentDetailHeaderProps, DocumentDetailMetaRow, type DocumentDetailMetaRowProps, DocumentDetailPanel, type DocumentDetailPanelProps, DocumentDetailRequester, type DocumentDetailRequesterProps, DocumentDetailTitle, type DocumentDetailTitleProps, DocumentFileCard, type DocumentFileCardProps, DocumentFileLine, type DocumentFileLineProps, 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 DocumentRequestRequestedItem, type DocumentRequestReviewStatusOption, type DocumentRequestTone, DocumentRequestUpload, type DocumentRequestUploadFile, type DocumentRequestUploadProps, 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, type DropdownMenuSlot, 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, type FileUploadSlot, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, Grid, type GridColumn, type GridInputType, type GridProps, type GridRow, type GridValue, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputSlot, 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, type LabelSlot, LandmarkIcon, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, type LinkButtonProps$1 as LinkButtonProps, type LinkButtonSlot, 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, type PaginationSlot, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, type PdfPreviewProps, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, type PopoverSlot, 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 QuestionAddressValue, type QuestionFileValue, type QuestionHelp, type QuestionLabeledColumn, type QuestionLabeledRow, type QuestionLabeledValue, type QuestionNameValue, type QuestionOption, type QuestionTableColumn, type QuestionTableRow, type QuestionType, QuestionnairePanel, type QuestionnairePanelGroup, type QuestionnairePanelProps, type QuestionnairePanelSection, type QuestionnairePanelStatus, Questions, type QuestionsProps, type QuickReplyChip, RadioGroup, RadioGroupItem, type RadioGroupSlot, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputSlot, 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, type SelectSlot, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, type SheetSlot, SheetTitle, SheetTrigger, Shell, type ShellProps, type ShellSlot, ShieldIcon, SideDrawer, type SideDrawerSlot, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherExtra, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, type SidebarBrandSwitcherSlot, 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 SidebarSlot, 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, StickyStack, StickyStackLayer, type StickyStackLayerProps, type StickyStackProps, StickyStackSectionHeader, type StickyStackSectionHeaderProps, StickyStackSticky, type StickyStackStickyProps, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, type SuggestionPillsProps, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, SunIcon, Switch, type SwitchSlot, 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 TableSlot, type TableTone, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Textarea, type TextareaSlot, 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, type ToastAction, type ToastContextValue, type ToastOptions, ToastProvider, type ToastSlot, type ToastVariant, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, type TooltipSlot, 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, brandLabel, brandScope, 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, useBrandScope, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
|
|
6583
|
+
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, type AlertDialogSlot, 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, BRAND_PRODUCTS, Badge, type BadgeProps, type BadgeSlot, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, type BrandProduct, BrandScope, type BrandScopeProps, BrandScopeProvider, 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, type ButtonSize, type ButtonSlot, type ButtonVariant, COUNTRY_CODES, Calendar, type CalendarCaptionLayout, 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, type CheckboxSlot, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, type ClientRailGroupHeaderProps, ClientRailItem, type ClientRailItemProps, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Code, type CodeProps, type CodeSlot, type CodeVariant, 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, type ContextMenuSlot, 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, type DataTableSlot, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DataTableView, type DataTableViewColumn, type DataTableViewFilter, type DataTableViewProps, type DataTableViewSelection, 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, type DialogSlot, DialogTitle, DialogTrigger, DismissibleChip, DisplayMenu, type DisplayMenuOption, type DisplayMenuProps, type DisplayMenuSection, DocumentChecklist, type DocumentChecklistFile, type DocumentChecklistItem, type DocumentChecklistProps, type DocumentChecklistStatus, DocumentDetailActions, type DocumentDetailActionsProps, DocumentDetailBody, type DocumentDetailBodyProps, DocumentDetailHeader, type DocumentDetailHeaderProps, DocumentDetailMetaRow, type DocumentDetailMetaRowProps, DocumentDetailPanel, type DocumentDetailPanelProps, DocumentDetailRequester, type DocumentDetailRequesterProps, DocumentDetailTitle, type DocumentDetailTitleProps, DocumentFileCard, type DocumentFileCardProps, DocumentFileLine, type DocumentFileLineProps, 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 DocumentRequestRequestedItem, type DocumentRequestReviewStatusOption, type DocumentRequestTone, DocumentRequestUpload, type DocumentRequestUploadFile, type DocumentRequestUploadProps, 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, type DropdownMenuSlot, 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, type FileUploadSlot, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, Grid, type GridColumn, type GridInputType, type GridProps, type GridRow, type GridValue, Heading, type HeadingLevel, type HeadingProps, type HeadingSize, type HeadingSlot, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Inline, type InlineProps, type InlineSlot, Input, type InputSlot, type InputVariants, IntentBadge, type IntentBadgeProps, type IntentTone, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, Kbd, type KbdGlyph, KbdHint, type KbdHintProps, type KbdProps, type KbdSlot, type KbdVariant, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, type KpiCardProps, type KpiDelta, Label, type LabelSlot, LandmarkIcon, type LayoutAlign, type LayoutBreakpoint, LayoutDashboardIcon, type LayoutGap, LayoutGridIcon, type LayoutJustify, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, type LinkButtonProps$1 as LinkButtonProps, type LinkButtonSlot, 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, type PaginationSlot, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, type PdfPreviewProps, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, type PopoverSlot, 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 QuestionAddressValue, type QuestionFileValue, type QuestionHelp, type QuestionLabeledColumn, type QuestionLabeledRow, type QuestionLabeledValue, type QuestionNameValue, type QuestionOption, type QuestionTableColumn, type QuestionTableRow, type QuestionType, QuestionnairePanel, type QuestionnairePanelGroup, type QuestionnairePanelProps, type QuestionnairePanelSection, type QuestionnairePanelStatus, Questions, type QuestionsProps, type QuickReplyChip, RadioGroup, RadioGroupItem, type RadioGroupSlot, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, type Responsive, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputSlot, 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, type SelectSlot, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, type SheetSlot, SheetTitle, SheetTrigger, Shell, type ShellProps, type ShellSlot, ShieldIcon, SideDrawer, type SideDrawerSlot, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherExtra, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, type SidebarBrandSwitcherSlot, 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 SidebarSlot, 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, Stack, type StackDirection, type StackProps, type StackSlot, 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, StickyStack, StickyStackLayer, type StickyStackLayerProps, type StickyStackProps, StickyStackSectionHeader, type StickyStackSectionHeaderProps, StickyStackSticky, type StickyStackStickyProps, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, type SuggestionPillsProps, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, SunIcon, Surface, type SurfaceElevation, type SurfacePadding, type SurfaceProps, type SurfaceRadius, type SurfaceSlot, Switch, type SwitchSlot, 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 TableSlot, type TableTone, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Text, type TextColor, type TextProps, type TextSize, type TextSlot, type TextWeight, Textarea, type TextareaSlot, 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, type ToastAction, type ToastContextValue, type ToastOptions, ToastProvider, type ToastSlot, type ToastVariant, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, type TooltipSlot, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, assetPath, attachmentChipVariants, badgeVariants, brandLabel, brandScope, buttonVariants, cardVariants, cn, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getAssetBasePath, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, setAssetBasePath, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, textareaVariants, useBrandScope, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
|