@assure-one/design-system 1.17.1 → 1.18.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.js CHANGED
@@ -201,6 +201,20 @@ var systemTokens = {
201
201
  accentHover: "var(--color-accent-hover)",
202
202
  accentActive: "var(--color-accent-active)",
203
203
  accentRing: "var(--color-accent-ring)",
204
+ /* Brand — ambient product family; follows the active [data-brand] scope,
205
+ defaulting to Pro. Prefer these (and the generated bg-brand / text-brand
206
+ / border-brand-line / text-fg-on-brand utilities) for scope-aware chrome
207
+ so the product never appears in a class name. */
208
+ brand: "var(--color-brand)",
209
+ brandHover: "var(--color-brand-hover)",
210
+ brandActive: "var(--color-brand-active)",
211
+ brandDisabled: "var(--color-brand-disabled)",
212
+ brandBg: "var(--color-brand-bg)",
213
+ brandBgHover: "var(--color-brand-bg-hover)",
214
+ brandBgActive: "var(--color-brand-bg-active)",
215
+ brandLine: "var(--color-brand-line)",
216
+ brandRing: "var(--color-brand-ring)",
217
+ fgOnBrand: "var(--color-fg-on-brand)",
204
218
  /* Pro (purple) */
205
219
  proBg: "var(--color-pro-bg)",
206
220
  proBgHover: "var(--color-pro-bg-hover)",
@@ -211,9 +225,39 @@ var systemTokens = {
211
225
  proDisabled: "var(--color-pro-disabled)",
212
226
  proLine: "var(--color-pro-line)",
213
227
  proRing: "var(--color-pro-ring)",
214
- /* On-brand */
228
+ auditFg: "var(--color-audit-fg)",
229
+ auditHover: "var(--color-audit-hover)",
230
+ auditActive: "var(--color-audit-active)",
231
+ auditDisabled: "var(--color-audit-disabled)",
232
+ auditBg: "var(--color-audit-bg)",
233
+ auditBgHover: "var(--color-audit-bg-hover)",
234
+ auditBgActive: "var(--color-audit-bg-active)",
235
+ auditLine: "var(--color-audit-line)",
236
+ auditRing: "var(--color-audit-ring)",
237
+ booksFg: "var(--color-books-fg)",
238
+ booksHover: "var(--color-books-hover)",
239
+ booksActive: "var(--color-books-active)",
240
+ booksDisabled: "var(--color-books-disabled)",
241
+ booksBg: "var(--color-books-bg)",
242
+ booksBgHover: "var(--color-books-bg-hover)",
243
+ booksBgActive: "var(--color-books-bg-active)",
244
+ booksLine: "var(--color-books-line)",
245
+ booksRing: "var(--color-books-ring)",
246
+ taxFg: "var(--color-tax-fg)",
247
+ taxHover: "var(--color-tax-hover)",
248
+ taxActive: "var(--color-tax-active)",
249
+ taxDisabled: "var(--color-tax-disabled)",
250
+ taxBg: "var(--color-tax-bg)",
251
+ taxBgHover: "var(--color-tax-bg-hover)",
252
+ taxBgActive: "var(--color-tax-bg-active)",
253
+ taxLine: "var(--color-tax-line)",
254
+ taxRing: "var(--color-tax-ring)",
255
+ /* On-brand — text/icon color on a filled brand/product surface */
215
256
  fgOnAccent: "var(--color-fg-on-accent)",
216
257
  fgOnPro: "var(--color-fg-on-pro)",
258
+ fgOnAudit: "var(--color-fg-on-audit)",
259
+ fgOnBooks: "var(--color-fg-on-books)",
260
+ fgOnTax: "var(--color-fg-on-tax)",
217
261
  /* Disabled */
218
262
  fgDisabled: "var(--color-fg-disabled)",
219
263
  bgDisabled: "var(--color-bg-disabled)",
@@ -2742,7 +2786,7 @@ var buttonVariants = cva(
2742
2786
  {
2743
2787
  variants: {
2744
2788
  variant: {
2745
- primary: "bg-pro-fg text-fg-on-pro hover:bg-pro-hover active:bg-pro-active",
2789
+ primary: "bg-brand text-fg-on-brand hover:bg-brand-hover active:bg-brand-active",
2746
2790
  secondary: "bg-control-secondary-bg text-control-fg border border-control-border hover:bg-control-active-bg hover:border-control-border-strong",
2747
2791
  destructive: "bg-danger-fg text-fg-on-danger hover:bg-danger-fg-hover active:bg-danger-fg-active",
2748
2792
  success: "bg-success-fg text-fg-on-success hover:bg-success-fg-hover active:bg-success-fg-active",
@@ -2926,13 +2970,13 @@ var AttachmentChip = forwardRef(
2926
2970
  function AttachmentChip2({ name, fileType, meta, onView, onDownload, href, variant, className, ...props }, ref) {
2927
2971
  const resolvedType = fileType ?? deriveFileType(name);
2928
2972
  const onAccent = variant === "onAccent";
2929
- const actionClassName = onAccent ? "text-fg-on-pro hover:bg-white/20 hover:text-fg-on-pro" : void 0;
2973
+ const actionClassName = onAccent ? "text-fg-on-brand hover:bg-white/20 hover:text-fg-on-brand" : void 0;
2930
2974
  const showView = Boolean(onView) || Boolean(href);
2931
2975
  return /* @__PURE__ */ jsxs("div", { ref, className: cn(attachmentChipVariants({ variant }), className), ...props, children: [
2932
2976
  /* @__PURE__ */ jsx(FileTypeBadge, { format: resolvedType, size: "md", className: "shrink-0" }),
2933
2977
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
2934
- /* @__PURE__ */ jsx("p", { className: cn("truncate text-sm font-medium", onAccent ? "text-fg-on-pro" : "text-fg"), children: name }),
2935
- meta && /* @__PURE__ */ jsx("p", { className: cn("truncate text-xs", onAccent ? "text-fg-on-pro/75" : "text-fg-3"), children: meta })
2978
+ /* @__PURE__ */ jsx("p", { className: cn("truncate text-sm font-medium", onAccent ? "text-fg-on-brand" : "text-fg"), children: name }),
2979
+ meta && /* @__PURE__ */ jsx("p", { className: cn("truncate text-xs", onAccent ? "text-fg-on-brand/75" : "text-fg-3"), children: meta })
2936
2980
  ] }),
2937
2981
  (showView || onDownload) && /* @__PURE__ */ jsxs("div", { className: "flex shrink-0 items-center gap-0.5", children: [
2938
2982
  showView && (onView ? /* @__PURE__ */ jsx(
@@ -3071,7 +3115,7 @@ var badgeVariants = cva(
3071
3115
  {
3072
3116
  variants: {
3073
3117
  variant: {
3074
- default: "bg-pro-fg text-fg-on-pro border-transparent",
3118
+ default: "bg-brand text-fg-on-brand border-transparent",
3075
3119
  secondary: "bg-bg-2 text-fg-3 border-rule",
3076
3120
  destructive: "bg-danger-bg text-danger-fg border-danger-line",
3077
3121
  success: "bg-success-bg text-success-fg border-success-line",
@@ -3240,7 +3284,7 @@ var BreadcrumbSeparator = forwardRef(
3240
3284
  );
3241
3285
  BreadcrumbSeparator.displayName = "BreadcrumbSeparator";
3242
3286
  var HIGHLIGHT_COLORS = {
3243
- primary: "after:bg-pro-fg",
3287
+ primary: "after:bg-brand",
3244
3288
  success: "after:bg-success-fg",
3245
3289
  warning: "after:bg-warning-fg",
3246
3290
  destructive: "after:bg-danger-fg"
@@ -3319,7 +3363,7 @@ function Calendar({
3319
3363
  "disabled:pointer-events-none disabled:cursor-not-allowed disabled:text-fg-disabled"
3320
3364
  ),
3321
3365
  today: "[&_button]:font-semibold [&_button]:text-accent",
3322
- selected: "[&_button]:bg-pro-fg [&_button]:text-fg-on-pro [&_button]:hover:bg-pro-hover [&_button]:focus-visible:bg-pro-fg",
3366
+ selected: "[&_button]:bg-brand [&_button]:text-fg-on-brand [&_button]:hover:bg-brand-hover [&_button]:focus-visible:bg-brand",
3323
3367
  outside: "[&_button]:text-fg-4",
3324
3368
  disabled: "[&_button]:text-fg-disabled",
3325
3369
  hidden: "invisible",
@@ -3460,13 +3504,13 @@ var Checkbox = React38.forwardRef(function Checkbox2({
3460
3504
  checked: resolvedChecked,
3461
3505
  defaultChecked,
3462
3506
  className: cn(
3463
- "peer border-rule-strong bg-surface text-pro-fg flex size-4 shrink-0 items-center justify-center border",
3507
+ "peer border-rule-strong bg-surface text-brand flex size-4 shrink-0 items-center justify-center border",
3464
3508
  shape === "circle" ? "rounded-full" : "rounded-[4px]",
3465
3509
  "transition-[color,background-color,border-color,box-shadow] duration-[var(--duration-fast)]",
3466
3510
  "hover:border-fg-4",
3467
3511
  "focus-visible:[border-color:var(--focus-ring-border)] focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
3468
- "data-[state=checked]:border-pro-fg data-[state=checked]:bg-pro-bg",
3469
- "data-[state=indeterminate]:border-pro-fg data-[state=indeterminate]:bg-pro-bg",
3512
+ "data-[state=checked]:border-brand data-[state=checked]:bg-brand-bg",
3513
+ "data-[state=indeterminate]:border-brand data-[state=indeterminate]:bg-brand-bg",
3470
3514
  "disabled:bg-bg-disabled disabled:border-rule disabled:text-fg-disabled disabled:cursor-not-allowed",
3471
3515
  "aria-[invalid=true]:border-danger-line",
3472
3516
  className
@@ -3594,7 +3638,7 @@ var SelectItem = React38.forwardRef(({ className, children, ...props }, ref) =>
3594
3638
  "rounded-pill relative flex w-full cursor-default items-center gap-2 py-1.5 pr-8 pl-2 text-[13px] outline-none select-none",
3595
3639
  "text-fg-2 transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
3596
3640
  "focus:bg-bg-2 focus:text-fg",
3597
- "data-[state=checked]:bg-pro-bg data-[state=checked]:text-pro-fg",
3641
+ "data-[state=checked]:bg-brand-bg data-[state=checked]:text-brand",
3598
3642
  "data-[disabled]:text-fg-disabled data-[disabled]:pointer-events-none",
3599
3643
  "[&_svg]:size-4 [&_svg]:shrink-0",
3600
3644
  className
@@ -3743,13 +3787,13 @@ var ComingSoon = forwardRef(function ComingSoon2({ icon, title, description, fea
3743
3787
  "bg-surface shadow-quiet p-10 text-center"
3744
3788
  ),
3745
3789
  children: [
3746
- /* @__PURE__ */ jsx("div", { className: "text-pro-fg mb-5 font-mono text-[11px] font-normal tracking-[0.14em] uppercase", children: "Coming soon" }),
3790
+ /* @__PURE__ */ jsx("div", { className: "text-brand mb-5 font-mono text-[11px] font-normal tracking-[0.14em] uppercase", children: "Coming soon" }),
3747
3791
  /* @__PURE__ */ jsx(
3748
3792
  "div",
3749
3793
  {
3750
3794
  className: cn(
3751
3795
  "mx-auto mb-4 flex size-12 items-center justify-center",
3752
- "rounded-icon bg-pro-bg text-pro-fg [&>svg]:size-6"
3796
+ "rounded-icon bg-brand-bg text-brand [&>svg]:size-6"
3753
3797
  ),
3754
3798
  children: icon
3755
3799
  }
@@ -3773,7 +3817,7 @@ var ComingSoon = forwardRef(function ComingSoon2({ icon, title, description, fea
3773
3817
  className: cn(
3774
3818
  "rounded-pill inline-flex items-center border px-2.5 py-0.5",
3775
3819
  "text-xs font-medium",
3776
- "bg-pro-bg text-pro-fg border-[color:var(--color-pro-bg-active)]"
3820
+ "bg-brand-bg text-brand border-[color:var(--color-brand-bg-active)]"
3777
3821
  ),
3778
3822
  children: "In Development"
3779
3823
  }
@@ -4014,7 +4058,7 @@ function CommandPalette({
4014
4058
  {
4015
4059
  className: cn(
4016
4060
  "rounded-icon flex size-8 shrink-0 items-center justify-center",
4017
- item.group === "Create" ? "bg-pro-bg text-pro-fg" : "bg-bg-2 text-fg-3"
4061
+ item.group === "Create" ? "bg-brand-bg text-brand" : "bg-bg-2 text-fg-3"
4018
4062
  ),
4019
4063
  "aria-hidden": "true",
4020
4064
  children: item.icon
@@ -4117,7 +4161,7 @@ function ConfirmActionButton({
4117
4161
  disabled: pending,
4118
4162
  onClick: handleConfirm,
4119
4163
  className: cn(
4120
- !destructive && "bg-pro-fg text-fg-on-pro hover:bg-pro-hover active:bg-pro-active"
4164
+ !destructive && "bg-brand text-fg-on-brand hover:bg-brand-hover active:bg-brand-active"
4121
4165
  ),
4122
4166
  children: pending && pendingLabel != null ? pendingLabel : confirmLabel
4123
4167
  }
@@ -4457,7 +4501,7 @@ function YearGrid({ selected, onSelect, minYear, maxYear, formatLabel, autoFocus
4457
4501
  "focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)]",
4458
4502
  "disabled:text-fg-disabled disabled:pointer-events-none disabled:cursor-not-allowed",
4459
4503
  isToday && !isSelected && "text-accent font-semibold",
4460
- isSelected && "bg-pro-fg text-fg-on-pro hover:bg-pro-hover focus-visible:bg-pro-fg"
4504
+ isSelected && "bg-brand text-fg-on-brand hover:bg-brand-hover focus-visible:bg-brand"
4461
4505
  ),
4462
4506
  children: formatLabel ? formatLabel(year) : year
4463
4507
  },
@@ -4863,9 +4907,9 @@ var DateRangePicker = forwardRef(
4863
4907
  "disabled:pointer-events-none disabled:cursor-not-allowed disabled:text-fg-disabled"
4864
4908
  ),
4865
4909
  today: "[&_button]:font-semibold [&_button]:text-accent",
4866
- range_start: "[&_button]:bg-pro-fg [&_button]:text-fg-on-pro [&_button]:hover:bg-pro-hover rounded-l-input",
4867
- range_end: "[&_button]:bg-pro-fg [&_button]:text-fg-on-pro [&_button]:hover:bg-pro-hover rounded-r-input",
4868
- range_middle: "[&_button]:bg-pro-bg [&_button]:text-pro-fg [&_button]:hover:bg-pro-bg-hover [&_button]:rounded-none",
4910
+ range_start: "[&_button]:bg-brand [&_button]:text-fg-on-brand [&_button]:hover:bg-brand-hover rounded-l-input",
4911
+ range_end: "[&_button]:bg-brand [&_button]:text-fg-on-brand [&_button]:hover:bg-brand-hover rounded-r-input",
4912
+ range_middle: "[&_button]:bg-brand-bg [&_button]:text-brand [&_button]:hover:bg-brand-bg-hover [&_button]:rounded-none",
4869
4913
  outside: "[&_button]:text-fg-5",
4870
4914
  disabled: "[&_button]:text-fg-disabled",
4871
4915
  hidden: "invisible"
@@ -4925,7 +4969,7 @@ var sourceMap = {
4925
4969
  requested: {
4926
4970
  label: "Requested",
4927
4971
  Icon: SendIcon,
4928
- className: "border-transparent bg-pro-bg text-pro-fg"
4972
+ className: "border-transparent bg-brand-bg text-brand"
4929
4973
  },
4930
4974
  direct: {
4931
4975
  label: "Direct upload",
@@ -5388,9 +5432,9 @@ function FileUpload({
5388
5432
  "transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
5389
5433
  "motion-reduce:transition-none",
5390
5434
  // Hover (when not disabled)
5391
- !disabled && "hover:border-pro-line hover:bg-pro-bg/40",
5435
+ !disabled && "hover:border-brand-line hover:bg-brand-bg/40",
5392
5436
  // Drag-over → Pro purple highlight
5393
- isDragOver && "border-pro-line bg-pro-bg",
5437
+ isDragOver && "border-brand-line bg-brand-bg",
5394
5438
  disabled && "border-rule bg-bg-disabled text-fg-disabled cursor-not-allowed",
5395
5439
  !disabled && "cursor-pointer"
5396
5440
  ),
@@ -5418,7 +5462,7 @@ function FileUpload({
5418
5462
  {
5419
5463
  className: cn(
5420
5464
  "rounded-icon flex size-10 items-center justify-center transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
5421
- isDragOver ? "bg-pro-fg text-fg-on-pro" : "bg-pro-bg text-pro-fg"
5465
+ isDragOver ? "bg-brand text-fg-on-brand" : "bg-brand-bg text-brand"
5422
5466
  ),
5423
5467
  "aria-hidden": "true",
5424
5468
  children: /* @__PURE__ */ jsx(UploadIcon, { className: "size-5" })
@@ -5834,7 +5878,8 @@ LoadingRows.displayName = "LoadingRows";
5834
5878
  var sizeStyles = {
5835
5879
  sm: { icon: 20, text: "text-sm", gap: "gap-2", assetHeight: 24 },
5836
5880
  md: { icon: 24, text: "text-[17px]", gap: "gap-2.5", assetHeight: 30 },
5837
- lg: { icon: 32, text: "text-xl", gap: "gap-3", assetHeight: 40 }
5881
+ lg: { icon: 32, text: "text-xl", gap: "gap-3", assetHeight: 40 },
5882
+ xl: { icon: 40, text: "text-2xl", gap: "gap-3.5", assetHeight: 48 }
5838
5883
  };
5839
5884
  var productLogoAssets = {
5840
5885
  Pro: { src: "/brand/assure-pro.svg", width: 384, height: 90 },
@@ -5869,69 +5914,66 @@ function Logo({
5869
5914
  const asset = productName ? productLogoAssets[productName] : void 0;
5870
5915
  const markAsset = productName ? productMarkAssets[productName] : void 0;
5871
5916
  const Glyph = productName ? productGlyphs[productName] : void 0;
5872
- return /* @__PURE__ */ jsxs(
5873
- Link,
5874
- {
5875
- href,
5876
- className: cn("inline-flex items-center", s.gap, className),
5877
- "aria-label": ariaLabel,
5878
- children: [
5879
- asset && showText ? /* @__PURE__ */ jsx(
5880
- Image2,
5881
- {
5882
- src: asset.src,
5883
- alt: "",
5884
- width: asset.width,
5885
- height: asset.height,
5886
- priority: true,
5887
- className: cn("h-auto flex-shrink-0", inverted && "brightness-0 invert", iconClassName),
5888
- style: { width: Math.round(asset.width / asset.height * s.assetHeight) }
5889
- }
5890
- ) : markAsset ? /* @__PURE__ */ jsx(
5891
- Image2,
5892
- {
5893
- src: markAsset.src,
5894
- alt: "",
5895
- width: markAsset.width,
5896
- height: markAsset.height,
5897
- priority: true,
5898
- className: cn("h-auto flex-shrink-0", inverted && "brightness-0 invert", iconClassName),
5899
- style: { width: Math.round(markAsset.width / markAsset.height * s.icon) }
5900
- }
5901
- ) : /* @__PURE__ */ jsx(Fragment, { children: Glyph ? /* @__PURE__ */ jsx(Glyph, { size: s.icon, "aria-hidden": "true", className: iconClassName }) : /* @__PURE__ */ jsx(
5902
- "span",
5903
- {
5904
- "aria-hidden": "true",
5905
- className: cn(
5906
- "bg-pro-fg grid shrink-0 place-items-center rounded-[5px] text-[10px] font-bold text-white",
5907
- iconClassName
5908
- ),
5909
- style: { width: s.icon, height: s.icon },
5910
- children: "A"
5911
- }
5912
- ) }),
5913
- showText && /* @__PURE__ */ jsxs(
5914
- "span",
5915
- {
5916
- className: cn(
5917
- "font-display font-semibold tracking-[-0.025em]",
5918
- s.text,
5919
- inverted ? "text-white" : "text-fg",
5920
- asset && "sr-only",
5921
- textClassName
5922
- ),
5923
- children: [
5924
- /* @__PURE__ */ jsx("span", { children: "Assure" }),
5925
- productName && /* @__PURE__ */ jsxs(Fragment, { children: [
5926
- " ",
5927
- /* @__PURE__ */ jsx("span", { className: cn("font-medium", inverted ? "text-[#d8cfff]" : "text-pro-fg"), children: productName })
5928
- ] })
5929
- ]
5930
- }
5931
- )
5932
- ]
5933
- }
5934
- );
5917
+ const wrapperClassName = cn("inline-flex items-center", s.gap, className);
5918
+ const content = /* @__PURE__ */ jsxs(Fragment, { children: [
5919
+ asset && showText ? /* @__PURE__ */ jsx(
5920
+ Image2,
5921
+ {
5922
+ src: asset.src,
5923
+ alt: "",
5924
+ width: asset.width,
5925
+ height: asset.height,
5926
+ priority: true,
5927
+ className: cn("h-auto flex-shrink-0", inverted && "brightness-0 invert", iconClassName),
5928
+ style: { width: Math.round(asset.width / asset.height * s.assetHeight) }
5929
+ }
5930
+ ) : markAsset ? /* @__PURE__ */ jsx(
5931
+ Image2,
5932
+ {
5933
+ src: markAsset.src,
5934
+ alt: "",
5935
+ width: markAsset.width,
5936
+ height: markAsset.height,
5937
+ priority: true,
5938
+ className: cn("h-auto flex-shrink-0", inverted && "brightness-0 invert", iconClassName),
5939
+ style: { width: Math.round(markAsset.width / markAsset.height * s.icon) }
5940
+ }
5941
+ ) : /* @__PURE__ */ jsx(Fragment, { children: Glyph ? /* @__PURE__ */ jsx(Glyph, { size: s.icon, "aria-hidden": "true", className: iconClassName }) : /* @__PURE__ */ jsx(
5942
+ "span",
5943
+ {
5944
+ "aria-hidden": "true",
5945
+ className: cn(
5946
+ "bg-pro-fg grid shrink-0 place-items-center rounded-[5px] text-[10px] font-bold text-white",
5947
+ iconClassName
5948
+ ),
5949
+ style: { width: s.icon, height: s.icon },
5950
+ children: "A"
5951
+ }
5952
+ ) }),
5953
+ showText && /* @__PURE__ */ jsxs(
5954
+ "span",
5955
+ {
5956
+ className: cn(
5957
+ "font-display font-semibold tracking-[-0.025em]",
5958
+ s.text,
5959
+ inverted ? "text-white" : "text-fg",
5960
+ asset && "sr-only",
5961
+ textClassName
5962
+ ),
5963
+ children: [
5964
+ /* @__PURE__ */ jsx("span", { children: "Assure" }),
5965
+ productName && /* @__PURE__ */ jsxs(Fragment, { children: [
5966
+ " ",
5967
+ /* @__PURE__ */ jsx("span", { className: cn("font-medium", inverted ? "text-[#d8cfff]" : "text-pro-fg"), children: productName })
5968
+ ] })
5969
+ ]
5970
+ }
5971
+ )
5972
+ ] });
5973
+ if (href === null) {
5974
+ return /* @__PURE__ */ jsx("span", { className: wrapperClassName, children: content });
5975
+ }
5976
+ return /* @__PURE__ */ jsx(Link, { href, className: wrapperClassName, "aria-label": ariaLabel, children: content });
5935
5977
  }
5936
5978
  var MasterDetailLayout = forwardRef(
5937
5979
  function MasterDetailLayout2({
@@ -6030,7 +6072,7 @@ function MultiFilterPill({
6030
6072
  className: cn(
6031
6073
  "rounded-pill font-body inline-flex items-center border font-medium",
6032
6074
  TRIGGER_SIZE[size],
6033
- "border-pro-line bg-pro-bg text-pro-fg hover:bg-pro-bg-hover",
6075
+ "border-brand-line bg-brand-bg text-brand hover:bg-brand-bg-hover",
6034
6076
  "transition-[color,background-color,border-color,box-shadow] duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
6035
6077
  "motion-reduce:transition-none"
6036
6078
  ),
@@ -6055,10 +6097,10 @@ function MultiFilterPill({
6055
6097
  onClick: onClear,
6056
6098
  className: cn(
6057
6099
  "ml-0.5 inline-flex size-4 items-center justify-center rounded-full",
6058
- "text-pro-fg transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
6100
+ "text-brand transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
6059
6101
  "motion-reduce:transition-none",
6060
- "hover:bg-pro-bg-active",
6061
- "focus-visible:bg-pro-bg-active focus-visible:outline-none"
6102
+ "hover:bg-brand-bg-active",
6103
+ "focus-visible:bg-brand-bg-active focus-visible:outline-none"
6062
6104
  ),
6063
6105
  "aria-label": `Clear ${label} filter`,
6064
6106
  children: /* @__PURE__ */ jsx(XIcon, { className: "size-3", "aria-hidden": "true" })
@@ -6119,7 +6161,7 @@ function MultiFilterPill({
6119
6161
  {
6120
6162
  className: cn(
6121
6163
  "flex size-4 shrink-0 items-center justify-center rounded-[3px] border transition-colors duration-[var(--duration-fast)] motion-reduce:transition-none",
6122
- isSelected ? "border-pro-fg bg-pro-fg text-fg-on-pro" : "border-rule-strong bg-surface"
6164
+ isSelected ? "border-brand bg-brand text-fg-on-brand" : "border-rule-strong bg-surface"
6123
6165
  ),
6124
6166
  "aria-hidden": "true",
6125
6167
  children: isSelected && /* @__PURE__ */ jsx(CheckIcon, { className: "size-3" })
@@ -6210,7 +6252,7 @@ function MultiSelectField({
6210
6252
  "motion-reduce:transition-none",
6211
6253
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
6212
6254
  size === "sm" ? "px-2.5 py-0.5 text-xs" : "px-3 py-1 text-xs",
6213
- isSelected ? "border-pro-line bg-pro-bg text-pro-fg hover:bg-pro-bg-hover" : "border-rule-strong bg-surface text-fg-2 hover:bg-bg-2 hover:text-fg"
6255
+ isSelected ? "border-brand-line bg-brand-bg text-brand hover:bg-brand-bg-hover" : "border-rule-strong bg-surface text-fg-2 hover:bg-bg-2 hover:text-fg"
6214
6256
  ),
6215
6257
  children: option
6216
6258
  },
@@ -7083,7 +7125,7 @@ var progressBarVariants = cva(
7083
7125
  {
7084
7126
  variants: {
7085
7127
  variant: {
7086
- default: "bg-pro-fg",
7128
+ default: "bg-brand",
7087
7129
  success: "bg-success-fg",
7088
7130
  warning: "bg-warning-fg",
7089
7131
  destructive: "bg-danger-fg",
@@ -7140,7 +7182,7 @@ var progressRingVariants = cva(
7140
7182
  {
7141
7183
  variants: {
7142
7184
  variant: {
7143
- default: "text-pro-fg",
7185
+ default: "text-brand",
7144
7186
  success: "text-success-fg",
7145
7187
  warning: "text-warning-fg",
7146
7188
  destructive: "text-danger-fg",
@@ -7220,17 +7262,17 @@ var RadioGroupItem = React38.forwardRef(function RadioGroupItem2({ className, la
7220
7262
  ref,
7221
7263
  id,
7222
7264
  className: cn(
7223
- "peer border-rule-strong bg-surface text-pro-fg aspect-square size-4 shrink-0 rounded-full border",
7265
+ "peer border-rule-strong bg-surface text-brand aspect-square size-4 shrink-0 rounded-full border",
7224
7266
  "transition-[color,background-color,border-color,box-shadow] duration-[var(--duration-fast)]",
7225
7267
  "hover:border-fg-4",
7226
7268
  "focus-visible:[border-color:var(--focus-ring-border)] focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
7227
- "data-[state=checked]:border-pro-fg",
7269
+ "data-[state=checked]:border-brand",
7228
7270
  "disabled:bg-bg-disabled disabled:border-rule disabled:cursor-not-allowed",
7229
7271
  "aria-[invalid=true]:border-danger-line",
7230
7272
  className
7231
7273
  ),
7232
7274
  ...props,
7233
- children: /* @__PURE__ */ jsx(RadioGroupPrimitive.Indicator, { className: "flex items-center justify-center", children: /* @__PURE__ */ jsx(CircleIcon, { className: "fill-pro-fg text-pro-fg size-2", "aria-hidden": "true" }) })
7275
+ children: /* @__PURE__ */ jsx(RadioGroupPrimitive.Indicator, { className: "flex items-center justify-center", children: /* @__PURE__ */ jsx(CircleIcon, { className: "fill-brand text-brand size-2", "aria-hidden": "true" }) })
7234
7276
  }
7235
7277
  );
7236
7278
  if (!label) return root;
@@ -7844,7 +7886,7 @@ function SearchSelect({
7844
7886
  "rounded-input border-rule-strong bg-surface relative flex h-9 w-full items-center border outline-none",
7845
7887
  "transition-[color,background-color,border-color] duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
7846
7888
  "motion-reduce:transition-none",
7847
- "focus-within:[outline:1px_solid_var(--color-pro-fg)] focus-within:[outline-offset:-1px]",
7889
+ "focus-within:[outline:1px_solid_var(--color-brand)] focus-within:[outline-offset:-1px]",
7848
7890
  showValue && "hover:bg-bg-2 gap-2 pr-2 pl-3",
7849
7891
  disabled && "bg-bg-disabled cursor-not-allowed"
7850
7892
  ),
@@ -7983,7 +8025,7 @@ function SearchSelect({
7983
8025
  className: cn(
7984
8026
  "rounded-pill px-2.5 py-0.5 text-[12px] font-medium",
7985
8027
  "transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
7986
- active ? "bg-pro-fg text-fg-on-pro" : "border-rule text-fg-2 hover:bg-bg-2 border bg-transparent"
8028
+ active ? "bg-brand text-fg-on-brand" : "border-rule text-fg-2 hover:bg-bg-2 border bg-transparent"
7987
8029
  ),
7988
8030
  children: chip ?? "All"
7989
8031
  },
@@ -8072,9 +8114,9 @@ function SearchSelect({
8072
8114
  onSelect: handleCreate,
8073
8115
  className: cn(
8074
8116
  "rounded-pill flex cursor-default items-center gap-2 px-2 py-1.5 text-[13px] outline-none select-none",
8075
- "text-pro-fg transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
8117
+ "text-brand transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
8076
8118
  "motion-reduce:transition-none",
8077
- "data-[selected=true]:bg-pro-bg"
8119
+ "data-[selected=true]:bg-brand-bg"
8078
8120
  ),
8079
8121
  children: [
8080
8122
  /* @__PURE__ */ jsx(PlusIcon, { className: "size-4 shrink-0", "aria-hidden": "true" }),
@@ -8100,10 +8142,10 @@ function SearchSelect({
8100
8142
  setOpen(false);
8101
8143
  },
8102
8144
  className: cn(
8103
- "border-rule text-pro-fg flex w-full shrink-0 items-center gap-2 border-t px-3 py-2.5 text-[13px] font-medium",
8145
+ "border-rule text-brand flex w-full shrink-0 items-center gap-2 border-t px-3 py-2.5 text-[13px] font-medium",
8104
8146
  "transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
8105
8147
  "motion-reduce:transition-none",
8106
- "hover:bg-pro-bg",
8148
+ "hover:bg-brand-bg",
8107
8149
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none"
8108
8150
  ),
8109
8151
  children: [
@@ -8192,7 +8234,7 @@ var SectionHead = forwardRef(function SectionHead2({ eyebrow, title, meta, class
8192
8234
  });
8193
8235
  SectionHead.displayName = "SectionHead";
8194
8236
  var toneFill = {
8195
- default: "var(--color-pro-fg)",
8237
+ default: "var(--color-brand)",
8196
8238
  success: "var(--color-success-fg)",
8197
8239
  warning: "var(--color-warning-fg)",
8198
8240
  destructive: "var(--color-danger-fg)",
@@ -8404,12 +8446,12 @@ var Slider = React38.forwardRef(
8404
8446
  ),
8405
8447
  ...props,
8406
8448
  children: [
8407
- /* @__PURE__ */ jsx(SliderPrimitive.Track, { className: "bg-bg-3 data-[disabled]:bg-bg-disabled relative h-1.5 w-full grow overflow-hidden rounded-full", children: /* @__PURE__ */ jsx(SliderPrimitive.Range, { className: "bg-pro-fg data-[disabled]:bg-fg-disabled absolute h-full" }) }),
8449
+ /* @__PURE__ */ jsx(SliderPrimitive.Track, { className: "bg-bg-3 data-[disabled]:bg-bg-disabled relative h-1.5 w-full grow overflow-hidden rounded-full", children: /* @__PURE__ */ jsx(SliderPrimitive.Range, { className: "bg-brand data-[disabled]:bg-fg-disabled absolute h-full" }) }),
8408
8450
  /* @__PURE__ */ jsx(
8409
8451
  SliderPrimitive.Thumb,
8410
8452
  {
8411
8453
  className: cn(
8412
- "border-pro-fg bg-surface shadow-quiet block size-4 rounded-full border",
8454
+ "border-brand bg-surface shadow-quiet block size-4 rounded-full border",
8413
8455
  "transition-[box-shadow,transform] duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
8414
8456
  "motion-reduce:transition-none",
8415
8457
  "hover:scale-105",
@@ -9111,7 +9153,7 @@ var Stepper = forwardRef(function Stepper2({ steps, currentStep, orientation = "
9111
9153
  "flex size-7 shrink-0 items-center justify-center rounded-full border text-xs font-medium tabular-nums",
9112
9154
  "transition-colors duration-[var(--duration-overlay)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
9113
9155
  isCompleted && "bg-success-bg text-success-fg border-success-line",
9114
- isActive && "bg-pro-fg text-fg-on-pro border-pro-fg shadow-quiet",
9156
+ isActive && "bg-brand text-fg-on-brand border-brand shadow-quiet",
9115
9157
  !isCompleted && !isActive && "bg-surface text-fg-4 border-rule"
9116
9158
  ),
9117
9159
  "aria-current": isActive ? "step" : void 0,
@@ -9303,7 +9345,7 @@ var switchVariants = cva(
9303
9345
  "motion-reduce:transition-none",
9304
9346
  "focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)]",
9305
9347
  "disabled:cursor-not-allowed",
9306
- "data-[state=checked]:bg-pro-fg data-[state=unchecked]:bg-bg-3",
9348
+ "data-[state=checked]:bg-brand data-[state=unchecked]:bg-bg-3",
9307
9349
  // §5.17: disabled is signalled via the disabled token swap on the
9308
9350
  // track itself; the thumb borrows fg-disabled. No opacity.
9309
9351
  "data-[disabled]:data-[state=checked]:bg-fg-disabled",
@@ -9422,7 +9464,7 @@ var TableRow = forwardRef(function TableRow2({ className, ...props }, ref) {
9422
9464
  "border-rule-soft border-b transition-colors duration-[var(--duration-instant)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
9423
9465
  // G15 compound: selected wins over hover; selected+hover uses the
9424
9466
  // Pro hover tint (not bg-bg-2, which would fight the selection).
9425
- "data-[state=selected]:bg-pro-bg data-[state=selected]:hover:bg-pro-bg-hover",
9467
+ "data-[state=selected]:bg-brand-bg data-[state=selected]:hover:bg-brand-bg-hover",
9426
9468
  "[&:not([data-state=selected])]:hover:bg-bg-2",
9427
9469
  className
9428
9470
  ),
@@ -9516,7 +9558,7 @@ var triggerVariants = cva(
9516
9558
  ),
9517
9559
  pill: cn(
9518
9560
  "rounded-pill px-3 py-1.5",
9519
- "data-[state=active]:bg-pro-bg data-[state=active]:text-pro-fg"
9561
+ "data-[state=active]:bg-brand-bg data-[state=active]:text-brand"
9520
9562
  )
9521
9563
  }
9522
9564
  },
@@ -9784,10 +9826,10 @@ function ToastProvider({ children }) {
9784
9826
  }
9785
9827
  var variantConfig = {
9786
9828
  default: {
9787
- chip: "bg-pro-bg",
9788
- icon: "text-pro-fg",
9789
- stroke: "stroke-pro-fg",
9790
- ring: "ring-pro-fg/15",
9829
+ chip: "bg-brand-bg",
9830
+ icon: "text-brand",
9831
+ stroke: "stroke-brand",
9832
+ ring: "ring-brand/15",
9791
9833
  Icon: InfoCircleSolidIcon
9792
9834
  },
9793
9835
  success: {
@@ -9819,10 +9861,10 @@ var variantConfig = {
9819
9861
  Icon: InfoCircleSolidIcon
9820
9862
  },
9821
9863
  loading: {
9822
- chip: "bg-pro-bg",
9823
- icon: "text-pro-fg",
9824
- stroke: "stroke-pro-fg",
9825
- ring: "ring-pro-fg/15",
9864
+ chip: "bg-brand-bg",
9865
+ icon: "text-brand",
9866
+ stroke: "stroke-brand",
9867
+ ring: "ring-brand/15",
9826
9868
  Icon: LoaderIcon,
9827
9869
  spin: true
9828
9870
  }
@@ -9960,7 +10002,7 @@ function ToastItem({ toast, onDismiss }) {
9960
10002
  close();
9961
10003
  },
9962
10004
  className: cn(
9963
- "text-pro-fg mt-2 text-sm font-semibold",
10005
+ "text-brand mt-2 text-sm font-semibold",
9964
10006
  "transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] hover:underline motion-reduce:transition-none",
9965
10007
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] rounded-sm focus-visible:outline-none"
9966
10008
  ),
@@ -10041,7 +10083,7 @@ var itemVariants = cva(
10041
10083
  "hover:bg-bg-2 hover:text-fg",
10042
10084
  "focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)]",
10043
10085
  "disabled:pointer-events-none disabled:cursor-not-allowed disabled:bg-bg-disabled disabled:text-fg-disabled",
10044
- "data-[state=on]:bg-pro-bg data-[state=on]:text-pro-fg"
10086
+ "data-[state=on]:bg-brand-bg data-[state=on]:text-brand"
10045
10087
  ),
10046
10088
  {
10047
10089
  variants: {
@@ -11113,7 +11155,7 @@ var statusLabel = {
11113
11155
  };
11114
11156
  var statusClassName = {
11115
11157
  "not-started": "bg-surface-2 text-fg-3 border-rule",
11116
- "in-progress": "bg-pro-bg text-pro-fg border-pro-line",
11158
+ "in-progress": "bg-brand-bg text-brand border-brand-line",
11117
11159
  complete: "bg-success-bg text-success-fg border-success-line",
11118
11160
  "needs-review": "bg-warning-bg text-warning-fg border-warning-line"
11119
11161
  };
@@ -11187,12 +11229,12 @@ var QuestionnairePanel = forwardRef(
11187
11229
  onClick: () => toggleGroup(group.id),
11188
11230
  "aria-expanded": isOpen,
11189
11231
  className: cn(
11190
- "text-pro-fg flex h-8 w-full items-center gap-2 px-4 text-left text-[11px] font-bold tracking-[0.08em] uppercase",
11191
- "hover:bg-pro-bg/50 transition-colors duration-[var(--duration-fast)]",
11232
+ "text-brand flex h-8 w-full items-center gap-2 px-4 text-left text-[11px] font-bold tracking-[0.08em] uppercase",
11233
+ "hover:bg-brand-bg/50 transition-colors duration-[var(--duration-fast)]",
11192
11234
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none"
11193
11235
  ),
11194
11236
  children: [
11195
- /* @__PURE__ */ jsx("span", { className: "text-pro-fg flex size-4 shrink-0 items-center justify-center", children: group.icon ?? /* @__PURE__ */ jsx(ListChecksIcon, { size: 14, "aria-hidden": "true" }) }),
11237
+ /* @__PURE__ */ jsx("span", { className: "text-brand flex size-4 shrink-0 items-center justify-center", children: group.icon ?? /* @__PURE__ */ jsx(ListChecksIcon, { size: 14, "aria-hidden": "true" }) }),
11196
11238
  /* @__PURE__ */ jsx("span", { className: "min-w-0 flex-1 truncate", children: group.title }),
11197
11239
  hasSections && /* @__PURE__ */ jsx(
11198
11240
  ChevronDownIcon,
@@ -11200,7 +11242,7 @@ var QuestionnairePanel = forwardRef(
11200
11242
  size: 13,
11201
11243
  "aria-hidden": "true",
11202
11244
  className: cn(
11203
- "text-pro-fg transition-transform duration-[var(--duration-fast)]",
11245
+ "text-brand transition-transform duration-[var(--duration-fast)]",
11204
11246
  !isOpen && "-rotate-90"
11205
11247
  )
11206
11248
  }
@@ -11222,7 +11264,7 @@ var QuestionnairePanel = forwardRef(
11222
11264
  "text-fg-2 transition-colors duration-[var(--duration-fast)]",
11223
11265
  "hover:bg-bg-2 hover:text-fg",
11224
11266
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
11225
- selected && "bg-pro-bg text-pro-fg font-semibold"
11267
+ selected && "bg-brand-bg text-brand font-semibold"
11226
11268
  ),
11227
11269
  children: [
11228
11270
  /* @__PURE__ */ jsx(
@@ -11230,7 +11272,7 @@ var QuestionnairePanel = forwardRef(
11230
11272
  {
11231
11273
  className: cn(
11232
11274
  "text-fg-3 flex size-4 shrink-0 items-center justify-center",
11233
- selected && "text-pro-fg"
11275
+ selected && "text-brand"
11234
11276
  ),
11235
11277
  children: section.icon
11236
11278
  }
@@ -11274,7 +11316,7 @@ var QuestionnairePanel = forwardRef(
11274
11316
  ...props,
11275
11317
  children: [
11276
11318
  /* @__PURE__ */ jsxs("div", { className: "px-1 pb-4", children: [
11277
- /* @__PURE__ */ jsx("p", { className: "text-pro-fg text-[11px] font-bold tracking-[0.12em] uppercase", children: eyebrow }),
11319
+ /* @__PURE__ */ jsx("p", { className: "text-brand text-[11px] font-bold tracking-[0.12em] uppercase", children: eyebrow }),
11278
11320
  /* @__PURE__ */ jsx("h2", { className: "text-fg mt-1 text-[21px] leading-7 font-bold", children: title }),
11279
11321
  description && /* @__PURE__ */ jsx("p", { className: "text-fg-3 mt-2 text-[13px] leading-5", children: description }),
11280
11322
  totalQuestions > 0 && /* @__PURE__ */ jsxs("div", { className: "mt-4", children: [
@@ -11288,7 +11330,7 @@ var QuestionnairePanel = forwardRef(
11288
11330
  /* @__PURE__ */ jsx("div", { className: "bg-surface-3 h-2 overflow-hidden rounded-full", children: /* @__PURE__ */ jsx(
11289
11331
  "div",
11290
11332
  {
11291
- className: "bg-pro-fg h-full rounded-full transition-[width] duration-[var(--duration-normal)] ease-[var(--ease-out-quart)]",
11333
+ className: "bg-brand h-full rounded-full transition-[width] duration-[var(--duration-normal)] ease-[var(--ease-out-quart)]",
11292
11334
  style: { width: `${percent}%` }
11293
11335
  }
11294
11336
  ) })
@@ -11306,11 +11348,11 @@ var QuestionnairePanel = forwardRef(
11306
11348
  "flex snap-x snap-mandatory gap-3 overflow-x-auto overflow-y-hidden overscroll-x-contain scroll-smooth px-1 pt-2 pb-2",
11307
11349
  "[scroll-padding-inline:2rem] lg:[scroll-padding-inline:0] lg:[scroll-padding-block:5rem]",
11308
11350
  "motion-reduce:scroll-auto",
11309
- "[scrollbar-color:var(--color-pro-fg)_transparent] [scrollbar-width:thin]",
11351
+ "[scrollbar-color:var(--color-brand)_transparent] [scrollbar-width:thin]",
11310
11352
  "[&::-webkit-scrollbar]:h-2 [&::-webkit-scrollbar]:w-2",
11311
11353
  "[&::-webkit-scrollbar-track]:bg-transparent",
11312
- "[&::-webkit-scrollbar-thumb]:bg-pro-fg/35 [&::-webkit-scrollbar-thumb]:rounded-full",
11313
- "hover:[&::-webkit-scrollbar-thumb]:bg-pro-fg/55",
11354
+ "[&::-webkit-scrollbar-thumb]:bg-brand/35 [&::-webkit-scrollbar-thumb]:rounded-full",
11355
+ "hover:[&::-webkit-scrollbar-thumb]:bg-brand/55",
11314
11356
  "lg:grid lg:max-h-full lg:snap-none lg:gap-2 lg:overflow-x-hidden lg:overflow-y-auto lg:pr-1"
11315
11357
  ),
11316
11358
  children: sections.map((section, index) => {
@@ -11328,9 +11370,9 @@ var QuestionnairePanel = forwardRef(
11328
11370
  "group border-rule bg-surface flex w-full snap-center gap-3 overflow-hidden rounded-[16px] border p-3 text-left will-change-transform",
11329
11371
  selected ? "max-w-[300px] min-w-[280px] items-start sm:min-w-[300px] lg:max-w-none lg:min-w-0" : "max-w-[240px] min-w-[220px] items-center sm:min-w-[240px] lg:max-w-none lg:min-w-0",
11330
11372
  "transition-[background-color,border-color,box-shadow,transform,min-width,max-width] duration-[var(--duration-normal)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
11331
- "hover:border-pro-line hover:bg-pro-bg/40 hover:-translate-y-0.5 lg:hover:translate-x-0.5 lg:hover:translate-y-0",
11373
+ "hover:border-brand-line hover:bg-brand-bg/40 hover:-translate-y-0.5 lg:hover:translate-x-0.5 lg:hover:translate-y-0",
11332
11374
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
11333
- selected && "border-pro-line bg-pro-bg shadow-card relative z-10 scale-[1.02]"
11375
+ selected && "border-brand-line bg-brand-bg shadow-card relative z-10 scale-[1.02]"
11334
11376
  ),
11335
11377
  children: [
11336
11378
  /* @__PURE__ */ jsx(
@@ -11338,7 +11380,7 @@ var QuestionnairePanel = forwardRef(
11338
11380
  {
11339
11381
  className: cn(
11340
11382
  "mt-0.5 grid size-8 shrink-0 place-items-center rounded-full text-[12px] font-bold",
11341
- status === "complete" ? "bg-success-bg text-success-fg" : selected ? "bg-pro-fg text-fg-on-pro" : "bg-surface-2 text-fg-3",
11383
+ status === "complete" ? "bg-success-bg text-success-fg" : selected ? "bg-brand text-fg-on-brand" : "bg-surface-2 text-fg-3",
11342
11384
  !selected && "mt-0"
11343
11385
  ),
11344
11386
  "aria-hidden": "true",
@@ -11385,7 +11427,7 @@ var QuestionnairePanel = forwardRef(
11385
11427
  {
11386
11428
  className: cn(
11387
11429
  "block h-full rounded-full transition-[width] duration-[var(--duration-slow)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
11388
- status === "complete" ? "bg-success-fg" : "bg-pro-fg"
11430
+ status === "complete" ? "bg-success-fg" : "bg-brand"
11389
11431
  ),
11390
11432
  style: { width: `${itemPercent}%` }
11391
11433
  }
@@ -11403,7 +11445,7 @@ var QuestionnairePanel = forwardRef(
11403
11445
  )
11404
11446
  ] }),
11405
11447
  /* @__PURE__ */ jsx("div", { className: "border-rule mt-auto hidden border-t px-1 pt-3 lg:block", children: /* @__PURE__ */ jsxs("div", { className: "text-fg-3 flex items-center gap-2 text-[12px] leading-5", children: [
11406
- /* @__PURE__ */ jsx(HelpCircleIcon, { size: 15, className: "text-pro-fg", "aria-hidden": "true" }),
11448
+ /* @__PURE__ */ jsx(HelpCircleIcon, { size: 15, className: "text-brand", "aria-hidden": "true" }),
11407
11449
  "Pick a section to load its related questions on the right."
11408
11450
  ] }) })
11409
11451
  ]
@@ -11515,12 +11557,12 @@ var Questions = forwardRef(function Questions2({
11515
11557
  "span",
11516
11558
  {
11517
11559
  "aria-hidden": "true",
11518
- className: "bg-pro-bg text-pro-fg grid size-7 shrink-0 place-items-center rounded-full text-xs font-bold",
11560
+ className: "bg-brand-bg text-brand grid size-7 shrink-0 place-items-center rounded-full text-xs font-bold",
11519
11561
  children: humanIndex
11520
11562
  }
11521
11563
  ),
11522
11564
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
11523
- (sectionLabel || isSectionHeader) && /* @__PURE__ */ jsx("p", { className: "text-pro-fg mb-1 text-[11px] font-bold tracking-[0.12em] uppercase", children: sectionLabel }),
11565
+ (sectionLabel || isSectionHeader) && /* @__PURE__ */ jsx("p", { className: "text-brand mb-1 text-[11px] font-bold tracking-[0.12em] uppercase", children: sectionLabel }),
11524
11566
  /* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center gap-2", children: [
11525
11567
  /* @__PURE__ */ jsx(
11526
11568
  "h3",
@@ -11533,7 +11575,7 @@ var Questions = forwardRef(function Questions2({
11533
11575
  }
11534
11576
  ),
11535
11577
  help && /* @__PURE__ */ jsx(HelpTip, { title: help.title ?? title, body: help.body }),
11536
- required && /* @__PURE__ */ jsx("span", { className: "bg-pro-bg text-pro-fg rounded-full px-2 py-0.5 text-[11px] font-bold", children: "Required" })
11578
+ required && /* @__PURE__ */ jsx("span", { className: "bg-brand-bg text-brand rounded-full px-2 py-0.5 text-[11px] font-bold", children: "Required" })
11537
11579
  ] }),
11538
11580
  description && type !== "consent-checkbox" && /* @__PURE__ */ jsx("p", { className: "text-fg-3 mt-1 text-[13px] leading-5", children: description })
11539
11581
  ] })
@@ -11972,7 +12014,7 @@ function QuestionOptionButton({
11972
12014
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
11973
12015
  "disabled:bg-bg-disabled disabled:text-fg-disabled disabled:cursor-not-allowed",
11974
12016
  compact ? "h-10 max-w-max rounded-[10px] px-3" : "min-h-16 rounded-[12px] px-7 py-4",
11975
- selected ? compact ? "border-pro-fg bg-pro-bg text-pro-fg shadow-xs" : "border-pro-line bg-pro-bg text-pro-fg hover:bg-pro-bg-hover shadow-xs" : "border-rule-strong text-fg hover:border-pro-line hover:bg-pro-bg/40",
12017
+ selected ? compact ? "border-brand bg-brand-bg text-brand shadow-xs" : "border-brand-line bg-brand-bg text-brand hover:bg-brand-bg-hover shadow-xs" : "border-rule-strong text-fg hover:border-brand-line hover:bg-brand-bg/40",
11976
12018
  className
11977
12019
  ),
11978
12020
  ...props,
@@ -11984,7 +12026,7 @@ function QuestionOptionButton({
11984
12026
  className: cn(
11985
12027
  "grid shrink-0 place-items-center rounded-full border transition-colors duration-[var(--duration-fast)]",
11986
12028
  compact ? "size-5" : "size-4",
11987
- selected ? "border-pro-fg bg-pro-fg text-fg-on-pro" : "border-rule-strong bg-surface group-hover:border-pro-line text-transparent"
12029
+ selected ? "border-brand bg-brand text-fg-on-brand" : "border-rule-strong bg-surface group-hover:border-brand-line text-transparent"
11988
12030
  ),
11989
12031
  children: selected && /* @__PURE__ */ jsx(CheckCircleSolidIcon, { size: compact ? 18 : 14 })
11990
12032
  }
@@ -11998,7 +12040,7 @@ function QuestionOptionButton({
11998
12040
  {
11999
12041
  className: cn(
12000
12042
  "ml-auto shrink-0 text-right text-[13px] font-semibold",
12001
- selected ? "text-pro-fg" : "text-fg-3"
12043
+ selected ? "text-brand" : "text-fg-3"
12002
12044
  ),
12003
12045
  children: option.formLabel
12004
12046
  }
@@ -12014,7 +12056,7 @@ function formatBytes2(bytes) {
12014
12056
  }
12015
12057
  function HelpTip({ title, body }) {
12016
12058
  return /* @__PURE__ */ jsxs(Tooltip, { children: [
12017
- /* @__PURE__ */ jsx(TooltipTrigger, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "text-pro-fg inline-flex shrink-0 cursor-help", children: /* @__PURE__ */ jsx(HelpCircleIcon, { size: 14, "aria-hidden": "true" }) }) }),
12059
+ /* @__PURE__ */ jsx(TooltipTrigger, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "text-brand inline-flex shrink-0 cursor-help", children: /* @__PURE__ */ jsx(HelpCircleIcon, { size: 14, "aria-hidden": "true" }) }) }),
12018
12060
  /* @__PURE__ */ jsxs(
12019
12061
  TooltipContent,
12020
12062
  {
@@ -12209,7 +12251,7 @@ var AIReceiptPanel = forwardRef(function AIReceiptPanel2({ state = "idle", resul
12209
12251
  type: "button",
12210
12252
  onClick: onAttach,
12211
12253
  className: cn(
12212
- "group border-rule-strong bg-surface hover:border-pro-fg/50 hover:bg-pro-bg/40 flex w-full items-center gap-3 rounded-[var(--radius-input)] border-2 border-dashed p-3 text-left transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)] motion-reduce:transition-none",
12254
+ "group border-rule-strong bg-surface hover:border-brand/50 hover:bg-brand-bg/40 flex w-full items-center gap-3 rounded-[var(--radius-input)] border-2 border-dashed p-3 text-left transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)] motion-reduce:transition-none",
12213
12255
  className
12214
12256
  ),
12215
12257
  ...props,
@@ -12316,7 +12358,7 @@ var BottomNav = forwardRef(function BottomNav2({ tabs, value, onChange, classNam
12316
12358
  onClick: () => onChange(tab.id),
12317
12359
  className: cn(
12318
12360
  "relative flex flex-1 flex-col items-center gap-1 px-1 py-2 text-[11px] font-medium transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)] motion-reduce:transition-none",
12319
- active ? "text-pro-fg" : "text-fg-4 hover:text-fg-2"
12361
+ active ? "text-brand" : "text-fg-4 hover:text-fg-2"
12320
12362
  ),
12321
12363
  children: [
12322
12364
  /* @__PURE__ */ jsxs("span", { className: "relative [&_svg]:size-5", children: [
@@ -12627,10 +12669,10 @@ var EngagementTimelineStep = forwardRef(
12627
12669
  EngagementTimelineStep.displayName = "EngagementTimelineStep";
12628
12670
  var ROW_BASE = "group/row flex w-full items-center gap-1.5 rounded-lg px-2.5 py-1 text-left text-[12px] font-medium transition-colors duration-[120ms] motion-reduce:transition-none";
12629
12671
  var ROW_INACTIVE = "text-fg-2 hover:bg-surface-2 hover:text-fg";
12630
- var ROW_ACTIVE = "bg-pro-bg text-pro-fg font-semibold";
12672
+ var ROW_ACTIVE = "bg-brand-bg text-brand font-semibold";
12631
12673
  var BADGE_BASE = "ml-auto min-w-[18px] rounded-full px-[5px] py-px text-center text-[10px] font-[650] tabular-nums";
12632
12674
  var BADGE_INACTIVE = "bg-surface-2 text-fg-4";
12633
- var BADGE_ACTIVE = "bg-pro-bg text-pro-fg";
12675
+ var BADGE_ACTIVE = "bg-brand-bg text-brand";
12634
12676
  var FolderTree = forwardRef(function FolderTree2({ nodes, activeId, onSelect, defaultOpenIds, openIds, onOpenChange, className, ...props }, ref) {
12635
12677
  const isControlled = openIds !== void 0;
12636
12678
  const [internalOpen, setInternalOpen] = useState(() => new Set(defaultOpenIds ?? []));
@@ -12688,14 +12730,14 @@ var FolderTree = forwardRef(function FolderTree2({ nodes, activeId, onSelect, de
12688
12730
  {
12689
12731
  size: 14,
12690
12732
  "aria-hidden": "true",
12691
- className: cn("shrink-0", isActive ? "text-pro-fg" : "text-fg-3")
12733
+ className: cn("shrink-0", isActive ? "text-brand" : "text-fg-3")
12692
12734
  }
12693
12735
  ) : /* @__PURE__ */ jsx(
12694
12736
  FolderClosedIcon,
12695
12737
  {
12696
12738
  size: 14,
12697
12739
  "aria-hidden": "true",
12698
- className: cn("shrink-0", isActive ? "text-pro-fg" : "text-fg-3")
12740
+ className: cn("shrink-0", isActive ? "text-brand" : "text-fg-3")
12699
12741
  }
12700
12742
  ),
12701
12743
  /* @__PURE__ */ jsx("span", { className: "min-w-0 flex-1 truncate", children: node.name })
@@ -12736,7 +12778,7 @@ var ClientRailItem = forwardRef(
12736
12778
  // Cursor
12737
12779
  "cursor-pointer",
12738
12780
  // State — hover only when not active to avoid override
12739
- active ? "bg-pro-bg" : "hover:bg-surface-2",
12781
+ active ? "bg-brand-bg" : "hover:bg-surface-2",
12740
12782
  className
12741
12783
  ),
12742
12784
  ...props,
@@ -12745,7 +12787,7 @@ var ClientRailItem = forwardRef(
12745
12787
  "span",
12746
12788
  {
12747
12789
  "aria-hidden": "true",
12748
- className: "absolute top-0 bottom-0 left-0 w-[3px] bg-pro-fg"
12790
+ className: "absolute top-0 bottom-0 left-0 w-[3px] bg-brand"
12749
12791
  }
12750
12792
  ),
12751
12793
  /* @__PURE__ */ jsx("span", { className: "shrink-0", children: /* @__PURE__ */ jsx(Avatar, { name, src: avatarSrc, size: "sm" }) }),
@@ -12756,7 +12798,7 @@ var ClientRailItem = forwardRef(
12756
12798
  fileCount != null && /* @__PURE__ */ jsx("span", { className: "shrink-0 rounded-full bg-surface-2 px-[6px] py-px text-[10.5px] font-bold text-fg-3", children: fileCount })
12757
12799
  ] }),
12758
12800
  /* @__PURE__ */ jsx("p", { className: "mt-0.5 text-[11.5px] text-fg-3", children: hasPending ? /* @__PURE__ */ jsxs(Fragment, { children: [
12759
- /* @__PURE__ */ jsxs("span", { className: "font-semibold text-pro-fg", children: [
12801
+ /* @__PURE__ */ jsxs("span", { className: "font-semibold text-brand", children: [
12760
12802
  pendingCount,
12761
12803
  " pending"
12762
12804
  ] }),
@@ -12783,7 +12825,7 @@ var ClientRailGroupHeader = forwardRef(function ClientRailGroupHeader2({ label,
12783
12825
  ref,
12784
12826
  className: cn(
12785
12827
  "flex items-center gap-[7px] px-[14px] pt-[14px] pb-[5px] text-[11.5px] font-semibold",
12786
- accent ? "text-pro-fg" : "text-fg-3",
12828
+ accent ? "text-brand" : "text-fg-3",
12787
12829
  className
12788
12830
  ),
12789
12831
  ...props,
@@ -12807,13 +12849,13 @@ function getFileTypeParts(fileType) {
12807
12849
  return { Icon: FileTextIcon, colorClass: "text-danger-fg" };
12808
12850
  }
12809
12851
  if (normalized.includes("image") || ["jpg", "jpeg", "png", "tiff"].some((type) => normalized.includes(type))) {
12810
- return { Icon: FileIcon, colorClass: "text-pro-fg" };
12852
+ return { Icon: FileIcon, colorClass: "text-brand" };
12811
12853
  }
12812
12854
  if (normalized.includes("excel") || normalized.includes("spreadsheet") || ["xlsx", "xls", "csv"].some((type) => normalized.includes(type))) {
12813
12855
  return { Icon: FileTextIcon, colorClass: "text-success-fg" };
12814
12856
  }
12815
12857
  if (normalized.includes("word") || ["docx", "doc"].some((type) => normalized.includes(type))) {
12816
- return { Icon: FileTextIcon, colorClass: "text-pro-fg" };
12858
+ return { Icon: FileTextIcon, colorClass: "text-brand" };
12817
12859
  }
12818
12860
  return { Icon: FileIcon, colorClass: "text-fg-4" };
12819
12861
  }
@@ -12892,7 +12934,7 @@ function MoreActions({ menu }) {
12892
12934
  className: cn(
12893
12935
  "grid size-[30px] place-items-center rounded-[8px] text-fg-4",
12894
12936
  "transition-colors duration-[120ms] motion-reduce:transition-none",
12895
- "group-hover:text-fg-2 hover:bg-surface hover:text-pro-fg hover:shadow-sm"
12937
+ "group-hover:text-fg-2 hover:bg-surface hover:text-brand hover:shadow-sm"
12896
12938
  ),
12897
12939
  "aria-label": "More actions",
12898
12940
  onClick: (event) => event.stopPropagation(),
@@ -12932,7 +12974,7 @@ var DocumentFileRow = React38.forwardRef(
12932
12974
  className: cn(
12933
12975
  "group flex cursor-pointer items-center gap-[13px] border-b border-rule px-[14px] py-3",
12934
12976
  "transition-colors duration-[120ms] motion-reduce:transition-none hover:bg-surface-2",
12935
- selected && "bg-pro-bg",
12977
+ selected && "bg-brand-bg",
12936
12978
  className
12937
12979
  ),
12938
12980
  onClick: (event) => {
@@ -13000,7 +13042,7 @@ var DocumentFileCard = React38.forwardRef(
13000
13042
  "group relative cursor-pointer rounded-2xl border border-rule bg-surface p-3",
13001
13043
  "transition-[border-color,box-shadow,transform] duration-[120ms] motion-reduce:transition-none",
13002
13044
  "hover:-translate-y-0.5 hover:border-rule-strong hover:shadow-sm",
13003
- selected && "border-pro-fg bg-pro-bg",
13045
+ selected && "border-brand bg-brand-bg",
13004
13046
  className
13005
13047
  ),
13006
13048
  onClick: (event) => {
@@ -13069,11 +13111,11 @@ var DocumentRequestField = forwardRef(
13069
13111
  "span",
13070
13112
  {
13071
13113
  "aria-hidden": "true",
13072
- className: "size-[22px] rounded-full bg-pro-bg text-pro-fg text-[11px] font-bold grid place-items-center shrink-0 leading-none",
13114
+ className: "size-[22px] rounded-full bg-brand-bg text-brand text-[11px] font-bold grid place-items-center shrink-0 leading-none",
13073
13115
  children: humanIndex
13074
13116
  }
13075
13117
  ),
13076
- /* @__PURE__ */ jsxs("span", { className: "text-[13px] font-[650] text-pro-fg", children: [
13118
+ /* @__PURE__ */ jsxs("span", { className: "text-[13px] font-[650] text-brand", children: [
13077
13119
  "Document ",
13078
13120
  humanIndex
13079
13121
  ] }),
@@ -13666,7 +13708,7 @@ var SidebarSection = React38.forwardRef(
13666
13708
  {
13667
13709
  className: cn(
13668
13710
  "font-mono text-[11px] tracking-[0.14em] uppercase",
13669
- tone === "muted" ? "text-fg-3" : "text-pro-fg"
13711
+ tone === "muted" ? "text-fg-3" : "text-brand"
13670
13712
  ),
13671
13713
  children: label
13672
13714
  }
@@ -13708,21 +13750,21 @@ var SidebarLink = React38.forwardRef(
13708
13750
  "motion-reduce:transition-none",
13709
13751
  "hover:bg-bg-3 hover:text-fg",
13710
13752
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
13711
- "data-[active=true]:bg-pro-bg data-[active=true]:text-pro-fg data-[active=true]:font-medium",
13753
+ "data-[active=true]:bg-brand-bg data-[active=true]:text-brand data-[active=true]:font-medium",
13712
13754
  // In rail, the icon itself carries the active state rather
13713
13755
  // than just the rule bar — color is more legible than a 2px
13714
13756
  // vertical mark at the column's left edge when labels are
13715
13757
  // hidden. The full-opacity icon override (`opacity-100`)
13716
13758
  // counters the default `[&_svg]:opacity-85` so the active
13717
13759
  // icon doesn't read as "still inactive but darker".
13718
- "group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:text-pro-fg group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:opacity-100",
13760
+ "group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:text-brand group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:opacity-100",
13719
13761
  // Active rail: 2px wide, 16px tall, anchored to the link's
13720
13762
  // own left edge — no parent-padding dependency. Continues
13721
13763
  // working unchanged when the aside narrows to a rail.
13722
13764
  "data-[active=true]:before:absolute data-[active=true]:before:content-['']",
13723
13765
  "data-[active=true]:before:top-1/2 data-[active=true]:before:left-0",
13724
13766
  "data-[active=true]:before:h-4 data-[active=true]:before:w-[2px] data-[active=true]:before:-translate-y-1/2",
13725
- "data-[active=true]:before:bg-pro-fg data-[active=true]:before:rounded-r-full",
13767
+ "data-[active=true]:before:bg-brand data-[active=true]:before:rounded-r-full",
13726
13768
  // Padding/gap stay constant so the icon stays under the cursor
13727
13769
  // when the column widens during peek. The label simply collapses
13728
13770
  // to width 0 via <SidebarLinkLabel>.
@@ -13808,7 +13850,7 @@ var sidebarLinkBadgeVariants = cva(
13808
13850
  {
13809
13851
  variants: {
13810
13852
  tone: {
13811
- default: "text-[10.5px] text-fg-4 group-data-[active=true]/link:text-pro-fg",
13853
+ default: "text-[10.5px] text-fg-4 group-data-[active=true]/link:text-brand",
13812
13854
  danger: "rounded-pill bg-danger-bg px-1.5 py-0.5 text-[10.5px] text-danger-fg",
13813
13855
  warning: "rounded-pill bg-warning-bg px-1.5 py-0.5 text-[10.5px] text-warning-fg",
13814
13856
  neutral: "rounded-pill bg-bg-3 px-1.5 py-0.5 text-[10.5px] text-fg-2"
@@ -13874,14 +13916,14 @@ var SidebarLinkGroup = React38.forwardRef(
13874
13916
  "motion-reduce:transition-none",
13875
13917
  "hover:bg-bg-3 hover:text-fg",
13876
13918
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
13877
- "data-[active=true]:bg-pro-bg data-[active=true]:text-pro-fg data-[active=true]:font-medium",
13919
+ "data-[active=true]:bg-brand-bg data-[active=true]:text-brand data-[active=true]:font-medium",
13878
13920
  // In rail, color carries active state since the chevron is hidden.
13879
- "group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:text-pro-fg group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:opacity-100",
13921
+ "group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:text-brand group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:opacity-100",
13880
13922
  // Active rail mark — anchored to body row's left edge.
13881
13923
  "data-[active=true]:before:absolute data-[active=true]:before:content-['']",
13882
13924
  "data-[active=true]:before:top-1/2 data-[active=true]:before:left-0",
13883
13925
  "data-[active=true]:before:h-4 data-[active=true]:before:w-[2px] data-[active=true]:before:-translate-y-1/2",
13884
- "data-[active=true]:before:bg-pro-fg data-[active=true]:before:rounded-r-full",
13926
+ "data-[active=true]:before:bg-brand data-[active=true]:before:rounded-r-full",
13885
13927
  "[&_svg]:size-3.5 [&_svg]:shrink-0 [&_svg]:opacity-85",
13886
13928
  // Floating variant — match SidebarLink: taller hit area, pill active.
13887
13929
  "group-data-[variant=floating]/sidebar:gap-3 group-data-[variant=floating]/sidebar:rounded-lg group-data-[variant=floating]/sidebar:py-2",
@@ -14004,6 +14046,8 @@ var SidebarBrandSwitcher = React38.forwardRef(
14004
14046
  current,
14005
14047
  items,
14006
14048
  onLaunch,
14049
+ extras,
14050
+ isLaunching,
14007
14051
  currentSectionLabel = "Currently using",
14008
14052
  switchSectionLabel = "Switch to",
14009
14053
  menuLabel = "Suite",
@@ -14013,6 +14057,7 @@ var SidebarBrandSwitcher = React38.forwardRef(
14013
14057
  className,
14014
14058
  triggerClassName,
14015
14059
  contentClassName,
14060
+ rowClassName,
14016
14061
  trailing
14017
14062
  }, ref) {
14018
14063
  const [open, setOpen] = React38.useState(false);
@@ -14073,7 +14118,14 @@ var SidebarBrandSwitcher = React38.forwardRef(
14073
14118
  children: [
14074
14119
  /* @__PURE__ */ jsx(DropdownMenuLabel, { className: "px-2 pt-1 pb-1.5", children: menuLabel }),
14075
14120
  /* @__PURE__ */ jsx(SidebarBrandSwitcherSectionLabel, { children: currentSectionLabel }),
14076
- /* @__PURE__ */ jsx(SidebarBrandSwitcherCurrentRow, { item: current, badge: currentBadge }),
14121
+ /* @__PURE__ */ jsx(
14122
+ SidebarBrandSwitcherCurrentRow,
14123
+ {
14124
+ item: current,
14125
+ badge: currentBadge,
14126
+ rowClassName
14127
+ }
14128
+ ),
14077
14129
  /* @__PURE__ */ jsx(DropdownMenuSeparator, { className: "my-1.5" }),
14078
14130
  /* @__PURE__ */ jsx(SidebarBrandSwitcherSectionLabel, { children: switchSectionLabel }),
14079
14131
  others.map((p) => /* @__PURE__ */ jsx(
@@ -14081,10 +14133,13 @@ var SidebarBrandSwitcher = React38.forwardRef(
14081
14133
  {
14082
14134
  item: p,
14083
14135
  onLaunch,
14084
- unavailableBadge
14136
+ unavailableBadge,
14137
+ rowClassName,
14138
+ isLaunching
14085
14139
  },
14086
14140
  p.id
14087
- ))
14141
+ )),
14142
+ extras?.map((extra) => /* @__PURE__ */ jsx(SidebarBrandSwitcherExtraRow, { extra }, extra.id))
14088
14143
  ]
14089
14144
  }
14090
14145
  )
@@ -14116,28 +14171,53 @@ function SidebarBrandSwitcherTile({ item }) {
14116
14171
  }
14117
14172
  );
14118
14173
  }
14119
- function SidebarBrandSwitcherCurrentRow({
14120
- item,
14121
- badge
14122
- }) {
14123
- return /* @__PURE__ */ jsxs("div", { className: "mx-0 flex cursor-default items-center gap-2.5 rounded-md bg-bg-2 px-2 py-1.5", children: [
14174
+ function SidebarBrandSwitcherIdentity({ item }) {
14175
+ if (item.identity) {
14176
+ return /* @__PURE__ */ jsxs("div", { className: "flex min-w-0 flex-1 flex-col gap-0.5", children: [
14177
+ item.identity,
14178
+ item.tagline && /* @__PURE__ */ jsx("span", { className: "text-fg-3 text-[11px] leading-tight", children: item.tagline })
14179
+ ] });
14180
+ }
14181
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
14124
14182
  /* @__PURE__ */ jsx(SidebarBrandSwitcherTile, { item }),
14125
14183
  /* @__PURE__ */ jsxs("div", { className: "flex min-w-0 flex-1 flex-col", children: [
14126
14184
  /* @__PURE__ */ jsx("span", { className: "text-fg text-[13px] font-medium", children: item.name }),
14127
14185
  item.tagline && /* @__PURE__ */ jsx("span", { className: "text-fg-3 text-[11px]", children: item.tagline })
14128
- ] }),
14129
- badge && /* @__PURE__ */ jsx("span", { className: "rounded-sm px-1.5 py-0.5 text-[10px] font-medium tracking-wider uppercase text-pro-fg ring-1 ring-pro-fg/30", children: badge })
14186
+ ] })
14130
14187
  ] });
14131
14188
  }
14189
+ function SidebarBrandSwitcherCurrentRow({
14190
+ item,
14191
+ badge,
14192
+ rowClassName
14193
+ }) {
14194
+ return /* @__PURE__ */ jsxs(
14195
+ "div",
14196
+ {
14197
+ className: cn(
14198
+ "mx-0 flex cursor-default items-center gap-2.5 rounded-md bg-bg-2 px-2 py-1.5",
14199
+ rowClassName
14200
+ ),
14201
+ children: [
14202
+ /* @__PURE__ */ jsx(SidebarBrandSwitcherIdentity, { item }),
14203
+ badge && /* @__PURE__ */ jsx("span", { className: "rounded-sm px-1.5 py-0.5 text-[10px] font-medium tracking-wider uppercase text-pro-fg ring-1 ring-pro-fg/30", children: badge })
14204
+ ]
14205
+ }
14206
+ );
14207
+ }
14132
14208
  function SidebarBrandSwitcherOtherRow({
14133
14209
  item,
14134
14210
  onLaunch,
14135
- unavailableBadge
14211
+ unavailableBadge,
14212
+ rowClassName,
14213
+ isLaunching
14136
14214
  }) {
14137
14215
  const reachable = item.available !== false;
14138
14216
  const [launching, setLaunching] = React38.useState(false);
14217
+ const externalLaunching = isLaunching?.(item) ?? false;
14218
+ const busy = launching || externalLaunching;
14139
14219
  const handleSelect = async () => {
14140
- if (!reachable || launching || !onLaunch) return;
14220
+ if (!reachable || busy || !onLaunch) return;
14141
14221
  setLaunching(true);
14142
14222
  try {
14143
14223
  await onLaunch(item);
@@ -14157,15 +14237,28 @@ function SidebarBrandSwitcherOtherRow({
14157
14237
  void handleSelect();
14158
14238
  },
14159
14239
  "data-item": item.dataAttr ?? item.id,
14240
+ className: cn("flex items-center gap-2.5 rounded-md px-2 py-1.5", rowClassName),
14241
+ children: [
14242
+ /* @__PURE__ */ jsx(SidebarBrandSwitcherIdentity, { item }),
14243
+ !reachable && unavailableBadge && /* @__PURE__ */ jsx("span", { className: "rounded-sm bg-bg-3 px-1.5 py-0.5 text-[10px] font-medium tracking-wider uppercase text-fg-4", children: unavailableBadge }),
14244
+ reachable && busy && /* @__PURE__ */ jsx("span", { className: "rounded-sm bg-bg-3 px-1.5 py-0.5 text-[10px] font-medium tracking-wider uppercase text-fg-4", children: "Opening\u2026" })
14245
+ ]
14246
+ }
14247
+ );
14248
+ }
14249
+ function SidebarBrandSwitcherExtraRow({ extra }) {
14250
+ return /* @__PURE__ */ jsxs(
14251
+ DropdownMenuItem,
14252
+ {
14253
+ onSelect: () => extra.onSelect(),
14254
+ "data-item": extra.dataAttr ?? extra.id,
14160
14255
  className: "flex items-center gap-2.5 rounded-md px-2 py-1.5",
14161
14256
  children: [
14162
- /* @__PURE__ */ jsx(SidebarBrandSwitcherTile, { item }),
14257
+ extra.glyph,
14163
14258
  /* @__PURE__ */ jsxs("div", { className: "flex min-w-0 flex-1 flex-col", children: [
14164
- /* @__PURE__ */ jsx("span", { className: "text-fg text-[13px] font-medium", children: item.name }),
14165
- item.tagline && /* @__PURE__ */ jsx("span", { className: "text-fg-3 text-[11px]", children: item.tagline })
14166
- ] }),
14167
- !reachable && unavailableBadge && /* @__PURE__ */ jsx("span", { className: "rounded-sm bg-bg-3 px-1.5 py-0.5 text-[10px] font-medium tracking-wider uppercase text-fg-4", children: unavailableBadge }),
14168
- reachable && launching && /* @__PURE__ */ jsx("span", { className: "rounded-sm bg-bg-3 px-1.5 py-0.5 text-[10px] font-medium tracking-wider uppercase text-fg-4", children: "Opening\u2026" })
14259
+ /* @__PURE__ */ jsx("span", { className: "text-fg text-[13px] font-medium", children: extra.name }),
14260
+ extra.tagline && /* @__PURE__ */ jsx("span", { className: "text-fg-3 text-[11px]", children: extra.tagline })
14261
+ ] })
14169
14262
  ]
14170
14263
  }
14171
14264
  );
@@ -14516,7 +14609,7 @@ var SelectableKpiCard = forwardRef(
14516
14609
  "block w-full p-4 text-left",
14517
14610
  "focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)]",
14518
14611
  "disabled:pointer-events-none disabled:bg-bg-disabled disabled:text-fg-disabled disabled:shadow-none",
14519
- selected && "border-pro-fg/40 bg-pro-bg hover:bg-pro-bg-hover ring-1 ring-pro-fg/30",
14612
+ selected && "border-brand/40 bg-brand-bg hover:bg-brand-bg-hover ring-1 ring-brand/30",
14520
14613
  className
14521
14614
  ),
14522
14615
  ...props,
@@ -14639,10 +14732,10 @@ var DataTableRow = forwardRef(
14639
14732
  "data-state": selected ? "selected" : void 0,
14640
14733
  className: cn(
14641
14734
  "border-rule-soft border-b transition-colors duration-[var(--duration-instant)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
14642
- // Selected hover stays in the Pro tint (G15) — when both states fire,
14735
+ // Selected hover stays in the brand tint (G15) — when both states fire,
14643
14736
  // hover:bg-bg-2 was previously winning and dropping the row out of
14644
14737
  // the selected tint, which read as the row deselecting on hover.
14645
- selected ? "bg-pro-bg hover:bg-pro-bg-hover" : "hover:bg-bg-2",
14738
+ selected ? "bg-brand-bg hover:bg-brand-bg-hover" : "hover:bg-bg-2",
14646
14739
  className
14647
14740
  ),
14648
14741
  ...props
@@ -15005,7 +15098,7 @@ function DataTableView({
15005
15098
  }
15006
15099
  var toneClass = {
15007
15100
  slate: "bg-bg-3 text-fg-3",
15008
- blue: "bg-[color-mix(in_oklab,var(--color-brand-audit)_14%,transparent)] text-[color:var(--color-brand-audit)]",
15101
+ blue: "bg-[color-mix(in_oklab,var(--color-brand-tax)_14%,transparent)] text-[color:var(--color-brand-tax)]",
15009
15102
  violet: "bg-pro-bg text-pro-fg",
15010
15103
  amber: "bg-warning-bg text-warning-fg",
15011
15104
  ok: "bg-success-bg text-success-fg",
@@ -15406,7 +15499,7 @@ var DocumentRequestCard = forwardRef(
15406
15499
  "span",
15407
15500
  {
15408
15501
  "aria-hidden": true,
15409
- className: "bg-pro-bg text-pro-fg ml-auto inline-flex shrink-0 items-center gap-1 rounded-lg px-2.5 py-1.5 text-[13px] font-semibold",
15502
+ className: "bg-brand-bg text-brand ml-auto inline-flex shrink-0 items-center gap-1 rounded-lg px-2.5 py-1.5 text-[13px] font-semibold",
15410
15503
  children: [
15411
15504
  "Open",
15412
15505
  /* @__PURE__ */ jsx(ArrowRightIcon, { size: 13 })
@@ -15606,7 +15699,7 @@ var DocumentRequestDetail = forwardRef(
15606
15699
  "aria-hidden": "true",
15607
15700
  className: cn(
15608
15701
  "grid size-4 shrink-0 place-items-center rounded-[5px] border transition-colors duration-[var(--duration-fast)] motion-reduce:transition-none",
15609
- checked ? "bg-pro-fg border-pro-fg text-fg-on-pro" : "border-rule"
15702
+ checked ? "bg-brand border-brand text-fg-on-brand" : "border-rule"
15610
15703
  ),
15611
15704
  children: checked && /* @__PURE__ */ jsx(CheckIcon, { className: "size-3" })
15612
15705
  }
@@ -15649,7 +15742,7 @@ var DocumentRequestDetail = forwardRef(
15649
15742
  ] })
15650
15743
  ] }),
15651
15744
  /* @__PURE__ */ jsxs(TabsContent, { value: "documents", className: "min-h-0 flex-1 overflow-y-auto px-5 py-4", children: [
15652
- isLocked && /* @__PURE__ */ jsxs("div", { className: "bg-pro-bg text-pro-fg mb-4 flex items-center gap-2 rounded-lg px-3 py-2.5 text-[13px] font-medium", children: [
15745
+ isLocked && /* @__PURE__ */ jsxs("div", { className: "bg-brand-bg text-brand mb-4 flex items-center gap-2 rounded-lg px-3 py-2.5 text-[13px] font-medium", children: [
15653
15746
  /* @__PURE__ */ jsx(LockIcon, { size: 15, className: "shrink-0" }),
15654
15747
  "This request is locked \u2014 the client can no longer upload documents."
15655
15748
  ] }),
@@ -15802,7 +15895,7 @@ var DocumentRequestDetail = forwardRef(
15802
15895
  /* @__PURE__ */ jsx(TabsContent, { value: "activity", className: "min-h-0 flex-1 overflow-y-auto px-5 py-4", children: activity.length > 0 ? /* @__PURE__ */ jsx("ul", { className: "flex flex-col gap-1.5", children: activity.map((event) => {
15803
15896
  const Icon3 = ACTIVITY_ICON[event.kind] ?? SendIcon;
15804
15897
  return /* @__PURE__ */ jsxs("li", { className: "flex items-start gap-3 py-1", children: [
15805
- /* @__PURE__ */ jsx("span", { className: "bg-pro-bg text-pro-fg grid size-9 shrink-0 place-items-center rounded-[10px]", children: /* @__PURE__ */ jsx(Icon3, { size: 16 }) }),
15898
+ /* @__PURE__ */ jsx("span", { className: "bg-brand-bg text-brand grid size-9 shrink-0 place-items-center rounded-[10px]", children: /* @__PURE__ */ jsx(Icon3, { size: 16 }) }),
15806
15899
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1 pt-1", children: [
15807
15900
  /* @__PURE__ */ jsx("p", { className: "text-fg-2 text-[13px] leading-snug", children: event.text }),
15808
15901
  /* @__PURE__ */ jsx("p", { className: "text-fg-4 mt-0.5 text-[12px]", children: event.time })
@@ -15882,7 +15975,7 @@ function CommentRow({ comment }) {
15882
15975
  {
15883
15976
  className: cn(
15884
15977
  "mt-1 rounded-2xl px-3 py-2 text-[13px] leading-snug",
15885
- isFirm ? "bg-pro-bg text-pro-fg rounded-tr-sm" : "bg-surface-2 text-fg-2 rounded-tl-sm"
15978
+ isFirm ? "bg-brand-bg text-brand rounded-tr-sm" : "bg-surface-2 text-fg-2 rounded-tl-sm"
15886
15979
  ),
15887
15980
  children: /* @__PURE__ */ jsx("p", { className: "break-words whitespace-pre-wrap", children: comment.body })
15888
15981
  }
@@ -15957,7 +16050,7 @@ var DocumentSourceFilter = forwardRef(
15957
16050
  {
15958
16051
  className: cn(
15959
16052
  "rounded-md px-1.5 py-px text-[11px] font-bold tabular-nums",
15960
- active ? "bg-pro-bg-active text-pro-fg" : "bg-surface-2 text-fg-4"
16053
+ active ? "bg-brand-bg-active text-brand" : "bg-surface-2 text-fg-4"
15961
16054
  ),
15962
16055
  children: count
15963
16056
  }
@@ -16326,7 +16419,7 @@ var NotificationPanelHeader = forwardRef(
16326
16419
  children: [
16327
16420
  /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
16328
16421
  /* @__PURE__ */ jsx("h3", { className: "text-fg text-[15px] font-semibold", children: title }),
16329
- unreadCount > 0 && /* @__PURE__ */ jsx("span", { className: "bg-pro-bg text-pro-fg rounded-pill px-1.5 py-0.5 text-[11px] font-semibold tabular-nums", children: unreadCount > 99 ? "99+" : unreadCount })
16422
+ unreadCount > 0 && /* @__PURE__ */ jsx("span", { className: "bg-brand-bg text-brand rounded-pill px-1.5 py-0.5 text-[11px] font-semibold tabular-nums", children: unreadCount > 99 ? "99+" : unreadCount })
16330
16423
  ] }),
16331
16424
  /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1", children: [
16332
16425
  onMarkAllRead && /* @__PURE__ */ jsx(
@@ -16334,7 +16427,7 @@ var NotificationPanelHeader = forwardRef(
16334
16427
  {
16335
16428
  type: "button",
16336
16429
  onClick: onMarkAllRead,
16337
- className: "text-pro-fg rounded-md px-1.5 py-1 text-sm font-medium hover:bg-[color:var(--color-pro-bg)] focus-visible:ring-accent outline-none focus-visible:ring-2",
16430
+ className: "text-brand rounded-md px-1.5 py-1 text-sm font-medium hover:bg-[color:var(--color-brand-bg)] focus-visible:ring-accent outline-none focus-visible:ring-2",
16338
16431
  children: "Mark all read"
16339
16432
  }
16340
16433
  ),
@@ -16380,7 +16473,7 @@ var NotificationFilter = forwardRef(
16380
16473
  className: cn(
16381
16474
  "inline-flex items-center gap-1.5 rounded-lg px-2.5 py-1 capitalize transition-colors",
16382
16475
  "focus-visible:ring-accent outline-none focus-visible:ring-2",
16383
- selected ? "bg-surface text-pro-fg ring-1 ring-[color:var(--color-pro-line)]" : "text-fg-3 hover:text-fg"
16476
+ selected ? "bg-surface text-brand ring-1 ring-[color:var(--color-brand-line)]" : "text-fg-3 hover:text-fg"
16384
16477
  ),
16385
16478
  children: [
16386
16479
  option,
@@ -16389,7 +16482,7 @@ var NotificationFilter = forwardRef(
16389
16482
  {
16390
16483
  className: cn(
16391
16484
  "rounded-md px-1.5 py-px text-[11px] font-semibold tabular-nums",
16392
- selected ? "bg-pro-bg text-pro-fg" : "bg-bg-2 text-fg-4"
16485
+ selected ? "bg-brand-bg text-brand" : "bg-bg-2 text-fg-4"
16393
16486
  ),
16394
16487
  children: count
16395
16488
  }
@@ -16430,7 +16523,7 @@ var NotificationItem = forwardRef(
16430
16523
  className: cn(
16431
16524
  "flex w-full gap-3 px-4 py-3 text-left outline-none",
16432
16525
  "transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
16433
- unread ? "bg-pro-bg hover:bg-pro-bg-hover focus-visible:bg-pro-bg-hover" : "hover:bg-bg-2/60 focus-visible:bg-bg-2/60",
16526
+ unread ? "bg-brand-bg hover:bg-brand-bg-hover focus-visible:bg-brand-bg-hover" : "hover:bg-bg-2/60 focus-visible:bg-bg-2/60",
16434
16527
  className
16435
16528
  ),
16436
16529
  ...props,
@@ -16459,7 +16552,7 @@ var NotificationItem = forwardRef(
16459
16552
  children: title
16460
16553
  }
16461
16554
  ),
16462
- unread && /* @__PURE__ */ jsx("span", { "aria-hidden": "true", className: "bg-pro-fg size-1.5 shrink-0 rounded-full" })
16555
+ unread && /* @__PURE__ */ jsx("span", { "aria-hidden": "true", className: "bg-brand size-1.5 shrink-0 rounded-full" })
16463
16556
  ] }),
16464
16557
  body && /* @__PURE__ */ jsx("p", { className: "text-fg-3 mt-0.5 truncate text-xs", children: body }),
16465
16558
  (typeLabel || client || time) && /* @__PURE__ */ jsxs("div", { className: "mt-1.5 flex items-center gap-2", children: [
@@ -16622,7 +16715,7 @@ var TimeLoggerHeader = forwardRef(
16622
16715
  /* @__PURE__ */ jsx(
16623
16716
  "span",
16624
16717
  {
16625
- className: "bg-pro-bg text-pro-fg flex size-7 shrink-0 items-center justify-center rounded-lg [&_svg]:size-[17px]",
16718
+ className: "bg-brand-bg text-brand flex size-7 shrink-0 items-center justify-center rounded-lg [&_svg]:size-[17px]",
16626
16719
  "aria-hidden": "true",
16627
16720
  children: icon ?? /* @__PURE__ */ jsx(ClockIcon, {})
16628
16721
  }
@@ -16910,7 +17003,7 @@ var TimeLoggerBillable = forwardRef(
16910
17003
  {
16911
17004
  className: cn(
16912
17005
  "flex-1 truncate text-[13px]",
16913
- selected ? "text-pro-fg font-medium" : "text-fg"
17006
+ selected ? "text-brand font-medium" : "text-fg"
16914
17007
  ),
16915
17008
  children: tier.name
16916
17009
  }
@@ -16923,7 +17016,7 @@ var TimeLoggerBillable = forwardRef(
16923
17016
  CheckIcon,
16924
17017
  {
16925
17018
  className: cn(
16926
- "text-pro-fg size-4 shrink-0",
17019
+ "text-brand size-4 shrink-0",
16927
17020
  selected ? "opacity-100" : "opacity-0"
16928
17021
  )
16929
17022
  }
@@ -16985,7 +17078,7 @@ var TimeLoggerEntry = forwardRef(
16985
17078
  "span",
16986
17079
  {
16987
17080
  "aria-hidden": "true",
16988
- className: "border-pro-fg size-[15px] shrink-0 rounded-full border-[1.5px] shadow-[inset_0_0_0_3px_var(--color-pro-fg)]"
17081
+ className: "border-brand size-[15px] shrink-0 rounded-full border-[1.5px] shadow-[inset_0_0_0_3px_var(--color-brand)]"
16989
17082
  }
16990
17083
  ),
16991
17084
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
@@ -16999,7 +17092,7 @@ var TimeLoggerEntry = forwardRef(
16999
17092
  type: "button",
17000
17093
  variant: "ghost",
17001
17094
  size: "icon-sm",
17002
- className: "text-fg-3 hover:text-pro-fg hover:bg-pro-bg rounded-full",
17095
+ className: "text-fg-3 hover:text-brand hover:bg-brand-bg rounded-full",
17003
17096
  "aria-label": "Resume entry",
17004
17097
  onClick: onResume,
17005
17098
  children: /* @__PURE__ */ jsx(PlayIcon, {})
@@ -17052,7 +17145,7 @@ var filterChipVariants = cva(
17052
17145
  {
17053
17146
  variants: {
17054
17147
  active: {
17055
- true: "bg-pro-bg text-pro-fg border-pro-fg/30 hover:bg-pro-bg-hover",
17148
+ true: "bg-brand-bg text-brand border-brand/30 hover:bg-brand-bg-hover",
17056
17149
  false: "bg-bg-2 text-fg-2 border-rule hover:bg-bg-3"
17057
17150
  },
17058
17151
  // Control text scale shared with Button / MultiFilterPill: sm = 13px,
@@ -17604,7 +17697,31 @@ function SignatureEditor({
17604
17697
  ] });
17605
17698
  }
17606
17699
  SignatureEditor.displayName = "SignatureEditor";
17700
+ function brandScope(product) {
17701
+ return { "data-brand": product };
17702
+ }
17703
+ var BRAND_PRODUCTS = ["pro", "audit", "books", "tax"];
17704
+ var brandLabel = {
17705
+ pro: "Pro",
17706
+ audit: "Audit",
17707
+ books: "Books",
17708
+ tax: "Tax"
17709
+ };
17710
+ var BrandScopeContext = createContext("pro");
17711
+ function BrandScopeProvider({
17712
+ product,
17713
+ children
17714
+ }) {
17715
+ return /* @__PURE__ */ jsx(BrandScopeContext.Provider, { value: product, children });
17716
+ }
17717
+ function useBrandScope() {
17718
+ return useContext(BrandScopeContext);
17719
+ }
17720
+ var BrandScope = forwardRef(function BrandScope2({ product, children, ...props }, ref) {
17721
+ return /* @__PURE__ */ jsx(BrandScopeProvider, { product, children: /* @__PURE__ */ jsx("div", { ref, "data-brand": product, ...props, children }) });
17722
+ });
17723
+ BrandScope.displayName = "BrandScope";
17607
17724
 
17608
- export { AIReceiptPanel, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityEventItem, ActivityItem, ActivityList, AgreementPaneHeading, AgreementViewer, AiDraftCard, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, AppHeaderBreadcrumb, AppHeaderSearch, AppHeaderTitle, AreaChart, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, Assignee, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, AttentionItem, Avatar, Badge, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, BulkActionBarSeparator, Button, COUNTRY_CODES, Calendar, CalendarIcon, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CategoryDivider, CategoryTag, ChannelTabs, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, ClientRailItem, ClientSelect, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, CommandIcon, CommandPalette, ConfirmActionButton, Content16 as Content, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, Dash, DashGrid, DataItem, DataTable, DataTableBody, DataTableCell, DataTableCellDue, DataTableCellId, DataTableCellMono, DataTableCellName, DataTableCheckbox, DataTableHead, DataTableHeader, DataTablePagination, DataTableResultsCount, DataTableRow, DataTableSearch, DataTableSpacer, DataTableToolbar, DataTableView, DatePicker, DateRangePicker, DetailGrid, DetailMain, DetailSpine, DetailSpineHeader, DetailSpineSection, DetailSpineStats, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DocumentDetailActions, DocumentDetailBody, DocumentDetailHeader, DocumentDetailMetaRow, DocumentDetailPanel, DocumentDetailRequester, DocumentDetailTitle, DocumentFileCard, DocumentFileRow, DocumentIcon, DocumentList, DocumentListSection, DocumentRequestCard, DocumentRequestDetail, DocumentRequestField, DocumentRow, DocumentSourceFilter, DocumentSourceTag, DocumentsWorkspaceLayout, DollarSignIcon, DonutChart, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, EmptyState, EngagementCard, EngagementTimeline, EngagementTimelineStep, ExtractIcon, EyeIcon, EyeOffIcon, Eyebrow, FileChip, FileIcon, FileReturnIcon, FileTextIcon, FileTypeBadge, FileUpload, FilterChip, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FolderTree, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, IconTile, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, IntentBadge, ItalicIcon, Kanban, KanbanCard, KanbanColumn, KanbanIcon, KbdHint, KeyIcon, KeyboardShortcutsDialog, KpiCard, Label4 as Label, LandmarkIcon, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, MapPinIcon, MasterDetailLayout, MenuIcon, MessageBubble, MessageBubbleAction, MessageBubbleTombstone, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MissingDocumentsPanel, MoneyCell, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, NewMenu, NotificationFilter, NotificationItem, NotificationList, NotificationPanel, NotificationPanelFooter, NotificationPanelHeader, Numeric, OTPInput, PageHeader, PageHeaderSep, PageHeaderSpec, Pagination, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, PriorityIcon, ProgressBar, ProgressRing, ProposalAddOn, ProposalBillingTerms, ProposalConsentGate, ProposalCustomPage, ProposalNote, ProposalPackageCard, ProposalPaymentCapture, ProposalPricingSummary, ProposalServiceRow, ProposalSignatureBlock, ProposalSignerList, QuestionnairePanel, Questions, RadioGroup3 as RadioGroup, RadioGroupItem, RankedBars, ReceiptIcon, ReplyIcon, ResponsiveDialog, RotateCcwIcon, RouteTransition, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, SearchSelect, SecondaryAction, Section, SectionHead, SectionHeader, SegmentedProgress, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, SendIcon, Separator4 as Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, SidebarBrandSwitcher, SidebarBrandSwitcherTile, SidebarBrandText, SidebarFooter, SidebarLink, SidebarLinkAction, SidebarLinkBadge, SidebarLinkGroup, SidebarLinkLabel, SidebarPinButton, SidebarProvider, SidebarSection, SidebarTrigger, SidebarUser, SignatureEditor, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, SparkleIcon, SparklesIcon, Spinner, SpreadsheetPreview, StackedBarChart, StagePill, StarIcon, StarRating, Stat, StatusDot, StatusIcon, StatusPill, Stepper, StickyActionBar, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, SuiteProgress, SunIcon, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableIcon, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Textarea, TimeLogger, TimeLoggerActions, TimeLoggerBillable, TimeLoggerContextRow, TimeLoggerEntry, TimeLoggerEntryList, TimeLoggerField, TimeLoggerFooter, TimeLoggerHeader, TimeLoggerNotes, TimeLoggerTimer, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, attachmentChipVariants, badgeVariants, buttonVariants, cardVariants, cn, colors, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, radii, reference, searchInputVariants, serviceToneLabel, serviceToneStyle, shadows, sidebarLinkBadgeVariants, spacing, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, surfaces, systemTokens, textareaVariants, typography, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
17725
+ export { AIReceiptPanel, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityEventItem, ActivityItem, ActivityList, AgreementPaneHeading, AgreementViewer, AiDraftCard, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, AppHeaderBreadcrumb, AppHeaderSearch, AppHeaderTitle, AreaChart, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, Assignee, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, AttentionItem, Avatar, BRAND_PRODUCTS, Badge, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, BrandScope, BrandScopeProvider, Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, BulkActionBarSeparator, Button, COUNTRY_CODES, Calendar, CalendarIcon, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CategoryDivider, CategoryTag, ChannelTabs, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, ClientRailItem, ClientSelect, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, CommandIcon, CommandPalette, ConfirmActionButton, Content16 as Content, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, Dash, DashGrid, DataItem, DataTable, DataTableBody, DataTableCell, DataTableCellDue, DataTableCellId, DataTableCellMono, DataTableCellName, DataTableCheckbox, DataTableHead, DataTableHeader, DataTablePagination, DataTableResultsCount, DataTableRow, DataTableSearch, DataTableSpacer, DataTableToolbar, DataTableView, DatePicker, DateRangePicker, DetailGrid, DetailMain, DetailSpine, DetailSpineHeader, DetailSpineSection, DetailSpineStats, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DocumentDetailActions, DocumentDetailBody, DocumentDetailHeader, DocumentDetailMetaRow, DocumentDetailPanel, DocumentDetailRequester, DocumentDetailTitle, DocumentFileCard, DocumentFileRow, DocumentIcon, DocumentList, DocumentListSection, DocumentRequestCard, DocumentRequestDetail, DocumentRequestField, DocumentRow, DocumentSourceFilter, DocumentSourceTag, DocumentsWorkspaceLayout, DollarSignIcon, DonutChart, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, EmptyState, EngagementCard, EngagementTimeline, EngagementTimelineStep, ExtractIcon, EyeIcon, EyeOffIcon, Eyebrow, FileChip, FileIcon, FileReturnIcon, FileTextIcon, FileTypeBadge, FileUpload, FilterChip, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FolderTree, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, IconTile, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, IntentBadge, ItalicIcon, Kanban, KanbanCard, KanbanColumn, KanbanIcon, KbdHint, KeyIcon, KeyboardShortcutsDialog, KpiCard, Label4 as Label, LandmarkIcon, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, MapPinIcon, MasterDetailLayout, MenuIcon, MessageBubble, MessageBubbleAction, MessageBubbleTombstone, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MissingDocumentsPanel, MoneyCell, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, NewMenu, NotificationFilter, NotificationItem, NotificationList, NotificationPanel, NotificationPanelFooter, NotificationPanelHeader, Numeric, OTPInput, PageHeader, PageHeaderSep, PageHeaderSpec, Pagination, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, PriorityIcon, ProgressBar, ProgressRing, ProposalAddOn, ProposalBillingTerms, ProposalConsentGate, ProposalCustomPage, ProposalNote, ProposalPackageCard, ProposalPaymentCapture, ProposalPricingSummary, ProposalServiceRow, ProposalSignatureBlock, ProposalSignerList, QuestionnairePanel, Questions, RadioGroup3 as RadioGroup, RadioGroupItem, RankedBars, ReceiptIcon, ReplyIcon, ResponsiveDialog, RotateCcwIcon, RouteTransition, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, SearchSelect, SecondaryAction, Section, SectionHead, SectionHeader, SegmentedProgress, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, SendIcon, Separator4 as Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, SidebarBrandSwitcher, SidebarBrandSwitcherTile, SidebarBrandText, SidebarFooter, SidebarLink, SidebarLinkAction, SidebarLinkBadge, SidebarLinkGroup, SidebarLinkLabel, SidebarPinButton, SidebarProvider, SidebarSection, SidebarTrigger, SidebarUser, SignatureEditor, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, SparkleIcon, SparklesIcon, Spinner, SpreadsheetPreview, StackedBarChart, StagePill, StarIcon, StarRating, Stat, StatusDot, StatusIcon, StatusPill, Stepper, StickyActionBar, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, SuiteProgress, SunIcon, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableIcon, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Textarea, TimeLogger, TimeLoggerActions, TimeLoggerBillable, TimeLoggerContextRow, TimeLoggerEntry, TimeLoggerEntryList, TimeLoggerField, TimeLoggerFooter, TimeLoggerHeader, TimeLoggerNotes, TimeLoggerTimer, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, attachmentChipVariants, badgeVariants, brandLabel, brandScope, buttonVariants, cardVariants, cn, colors, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, radii, reference, searchInputVariants, serviceToneLabel, serviceToneStyle, shadows, sidebarLinkBadgeVariants, spacing, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, surfaces, systemTokens, textareaVariants, typography, useBrandScope, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
17609
17726
  //# sourceMappingURL=index.js.map
17610
17727
  //# sourceMappingURL=index.js.map