@assure-one/design-system 1.17.2 → 1.19.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" })
@@ -5841,13 +5885,15 @@ var productLogoAssets = {
5841
5885
  Pro: { src: "/brand/assure-pro.svg", width: 384, height: 90 },
5842
5886
  Audit: { src: "/brand/assure-audit.svg", width: 441, height: 90 },
5843
5887
  Books: { src: "/brand/assure-books.svg", width: 470, height: 90 },
5844
- Tax: { src: "/brand/assure-tax.svg", width: 374, height: 90 }
5888
+ Tax: { src: "/brand/assure-tax.svg", width: 374, height: 90 },
5889
+ Teams: { src: "/brand/mycpe-teams.svg", width: 221, height: 49 }
5845
5890
  };
5846
5891
  var productMarkAssets = {
5847
5892
  Pro: { src: "/brand/assure-pro-mark.svg", width: 55, height: 48 },
5848
5893
  Audit: { src: "/brand/assure-audit-mark.svg", width: 55, height: 48 },
5849
5894
  Books: { src: "/brand/assure-books-mark.svg", width: 55, height: 48 },
5850
- Tax: { src: "/brand/assure-tax-mark.svg", width: 55, height: 48 }
5895
+ Tax: { src: "/brand/assure-tax-mark.svg", width: 55, height: 48 },
5896
+ Teams: { src: "/brand/mycpe-teams-mark.svg", width: 26, height: 31 }
5851
5897
  };
5852
5898
  var productGlyphs = {
5853
5899
  Pro: AssureProBrandIcon,
@@ -5855,6 +5901,9 @@ var productGlyphs = {
5855
5901
  Books: AssureBooksBrandIcon,
5856
5902
  Tax: AssureTaxBrandIcon
5857
5903
  };
5904
+ var standaloneBrands = {
5905
+ Teams: "myCPE Teams"
5906
+ };
5858
5907
  function Logo({
5859
5908
  size = "md",
5860
5909
  href = "/",
@@ -5866,7 +5915,9 @@ function Logo({
5866
5915
  inverted = false
5867
5916
  }) {
5868
5917
  const s = sizeStyles[size];
5869
- const ariaLabel = productName ? `Assure ${productName}` : "Assure";
5918
+ const standaloneLabel = productName ? standaloneBrands[productName] : void 0;
5919
+ const isStandalone = Boolean(standaloneLabel);
5920
+ const ariaLabel = standaloneLabel ?? (productName ? `Assure ${productName}` : "Assure");
5870
5921
  const asset = productName ? productLogoAssets[productName] : void 0;
5871
5922
  const markAsset = productName ? productMarkAssets[productName] : void 0;
5872
5923
  const Glyph = productName ? productGlyphs[productName] : void 0;
@@ -5906,7 +5957,7 @@ function Logo({
5906
5957
  children: "A"
5907
5958
  }
5908
5959
  ) }),
5909
- showText && /* @__PURE__ */ jsxs(
5960
+ showText && /* @__PURE__ */ jsx(
5910
5961
  "span",
5911
5962
  {
5912
5963
  className: cn(
@@ -5916,13 +5967,13 @@ function Logo({
5916
5967
  asset && "sr-only",
5917
5968
  textClassName
5918
5969
  ),
5919
- children: [
5970
+ children: isStandalone ? /* @__PURE__ */ jsx("span", { children: standaloneLabel }) : /* @__PURE__ */ jsxs(Fragment, { children: [
5920
5971
  /* @__PURE__ */ jsx("span", { children: "Assure" }),
5921
5972
  productName && /* @__PURE__ */ jsxs(Fragment, { children: [
5922
5973
  " ",
5923
5974
  /* @__PURE__ */ jsx("span", { className: cn("font-medium", inverted ? "text-[#d8cfff]" : "text-pro-fg"), children: productName })
5924
5975
  ] })
5925
- ]
5976
+ ] })
5926
5977
  }
5927
5978
  )
5928
5979
  ] });
@@ -6028,7 +6079,7 @@ function MultiFilterPill({
6028
6079
  className: cn(
6029
6080
  "rounded-pill font-body inline-flex items-center border font-medium",
6030
6081
  TRIGGER_SIZE[size],
6031
- "border-pro-line bg-pro-bg text-pro-fg hover:bg-pro-bg-hover",
6082
+ "border-brand-line bg-brand-bg text-brand hover:bg-brand-bg-hover",
6032
6083
  "transition-[color,background-color,border-color,box-shadow] duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
6033
6084
  "motion-reduce:transition-none"
6034
6085
  ),
@@ -6053,10 +6104,10 @@ function MultiFilterPill({
6053
6104
  onClick: onClear,
6054
6105
  className: cn(
6055
6106
  "ml-0.5 inline-flex size-4 items-center justify-center rounded-full",
6056
- "text-pro-fg transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
6107
+ "text-brand transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
6057
6108
  "motion-reduce:transition-none",
6058
- "hover:bg-pro-bg-active",
6059
- "focus-visible:bg-pro-bg-active focus-visible:outline-none"
6109
+ "hover:bg-brand-bg-active",
6110
+ "focus-visible:bg-brand-bg-active focus-visible:outline-none"
6060
6111
  ),
6061
6112
  "aria-label": `Clear ${label} filter`,
6062
6113
  children: /* @__PURE__ */ jsx(XIcon, { className: "size-3", "aria-hidden": "true" })
@@ -6117,7 +6168,7 @@ function MultiFilterPill({
6117
6168
  {
6118
6169
  className: cn(
6119
6170
  "flex size-4 shrink-0 items-center justify-center rounded-[3px] border transition-colors duration-[var(--duration-fast)] motion-reduce:transition-none",
6120
- isSelected ? "border-pro-fg bg-pro-fg text-fg-on-pro" : "border-rule-strong bg-surface"
6171
+ isSelected ? "border-brand bg-brand text-fg-on-brand" : "border-rule-strong bg-surface"
6121
6172
  ),
6122
6173
  "aria-hidden": "true",
6123
6174
  children: isSelected && /* @__PURE__ */ jsx(CheckIcon, { className: "size-3" })
@@ -6208,7 +6259,7 @@ function MultiSelectField({
6208
6259
  "motion-reduce:transition-none",
6209
6260
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
6210
6261
  size === "sm" ? "px-2.5 py-0.5 text-xs" : "px-3 py-1 text-xs",
6211
- 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"
6262
+ 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"
6212
6263
  ),
6213
6264
  children: option
6214
6265
  },
@@ -7081,7 +7132,7 @@ var progressBarVariants = cva(
7081
7132
  {
7082
7133
  variants: {
7083
7134
  variant: {
7084
- default: "bg-pro-fg",
7135
+ default: "bg-brand",
7085
7136
  success: "bg-success-fg",
7086
7137
  warning: "bg-warning-fg",
7087
7138
  destructive: "bg-danger-fg",
@@ -7138,7 +7189,7 @@ var progressRingVariants = cva(
7138
7189
  {
7139
7190
  variants: {
7140
7191
  variant: {
7141
- default: "text-pro-fg",
7192
+ default: "text-brand",
7142
7193
  success: "text-success-fg",
7143
7194
  warning: "text-warning-fg",
7144
7195
  destructive: "text-danger-fg",
@@ -7218,17 +7269,17 @@ var RadioGroupItem = React38.forwardRef(function RadioGroupItem2({ className, la
7218
7269
  ref,
7219
7270
  id,
7220
7271
  className: cn(
7221
- "peer border-rule-strong bg-surface text-pro-fg aspect-square size-4 shrink-0 rounded-full border",
7272
+ "peer border-rule-strong bg-surface text-brand aspect-square size-4 shrink-0 rounded-full border",
7222
7273
  "transition-[color,background-color,border-color,box-shadow] duration-[var(--duration-fast)]",
7223
7274
  "hover:border-fg-4",
7224
7275
  "focus-visible:[border-color:var(--focus-ring-border)] focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
7225
- "data-[state=checked]:border-pro-fg",
7276
+ "data-[state=checked]:border-brand",
7226
7277
  "disabled:bg-bg-disabled disabled:border-rule disabled:cursor-not-allowed",
7227
7278
  "aria-[invalid=true]:border-danger-line",
7228
7279
  className
7229
7280
  ),
7230
7281
  ...props,
7231
- 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" }) })
7282
+ 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" }) })
7232
7283
  }
7233
7284
  );
7234
7285
  if (!label) return root;
@@ -7842,7 +7893,7 @@ function SearchSelect({
7842
7893
  "rounded-input border-rule-strong bg-surface relative flex h-9 w-full items-center border outline-none",
7843
7894
  "transition-[color,background-color,border-color] duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
7844
7895
  "motion-reduce:transition-none",
7845
- "focus-within:[outline:1px_solid_var(--color-pro-fg)] focus-within:[outline-offset:-1px]",
7896
+ "focus-within:[outline:1px_solid_var(--color-brand)] focus-within:[outline-offset:-1px]",
7846
7897
  showValue && "hover:bg-bg-2 gap-2 pr-2 pl-3",
7847
7898
  disabled && "bg-bg-disabled cursor-not-allowed"
7848
7899
  ),
@@ -7981,7 +8032,7 @@ function SearchSelect({
7981
8032
  className: cn(
7982
8033
  "rounded-pill px-2.5 py-0.5 text-[12px] font-medium",
7983
8034
  "transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
7984
- active ? "bg-pro-fg text-fg-on-pro" : "border-rule text-fg-2 hover:bg-bg-2 border bg-transparent"
8035
+ active ? "bg-brand text-fg-on-brand" : "border-rule text-fg-2 hover:bg-bg-2 border bg-transparent"
7985
8036
  ),
7986
8037
  children: chip ?? "All"
7987
8038
  },
@@ -8070,9 +8121,9 @@ function SearchSelect({
8070
8121
  onSelect: handleCreate,
8071
8122
  className: cn(
8072
8123
  "rounded-pill flex cursor-default items-center gap-2 px-2 py-1.5 text-[13px] outline-none select-none",
8073
- "text-pro-fg transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
8124
+ "text-brand transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
8074
8125
  "motion-reduce:transition-none",
8075
- "data-[selected=true]:bg-pro-bg"
8126
+ "data-[selected=true]:bg-brand-bg"
8076
8127
  ),
8077
8128
  children: [
8078
8129
  /* @__PURE__ */ jsx(PlusIcon, { className: "size-4 shrink-0", "aria-hidden": "true" }),
@@ -8098,10 +8149,10 @@ function SearchSelect({
8098
8149
  setOpen(false);
8099
8150
  },
8100
8151
  className: cn(
8101
- "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",
8152
+ "border-rule text-brand flex w-full shrink-0 items-center gap-2 border-t px-3 py-2.5 text-[13px] font-medium",
8102
8153
  "transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
8103
8154
  "motion-reduce:transition-none",
8104
- "hover:bg-pro-bg",
8155
+ "hover:bg-brand-bg",
8105
8156
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none"
8106
8157
  ),
8107
8158
  children: [
@@ -8190,7 +8241,7 @@ var SectionHead = forwardRef(function SectionHead2({ eyebrow, title, meta, class
8190
8241
  });
8191
8242
  SectionHead.displayName = "SectionHead";
8192
8243
  var toneFill = {
8193
- default: "var(--color-pro-fg)",
8244
+ default: "var(--color-brand)",
8194
8245
  success: "var(--color-success-fg)",
8195
8246
  warning: "var(--color-warning-fg)",
8196
8247
  destructive: "var(--color-danger-fg)",
@@ -8402,12 +8453,12 @@ var Slider = React38.forwardRef(
8402
8453
  ),
8403
8454
  ...props,
8404
8455
  children: [
8405
- /* @__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" }) }),
8456
+ /* @__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" }) }),
8406
8457
  /* @__PURE__ */ jsx(
8407
8458
  SliderPrimitive.Thumb,
8408
8459
  {
8409
8460
  className: cn(
8410
- "border-pro-fg bg-surface shadow-quiet block size-4 rounded-full border",
8461
+ "border-brand bg-surface shadow-quiet block size-4 rounded-full border",
8411
8462
  "transition-[box-shadow,transform] duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
8412
8463
  "motion-reduce:transition-none",
8413
8464
  "hover:scale-105",
@@ -9109,7 +9160,7 @@ var Stepper = forwardRef(function Stepper2({ steps, currentStep, orientation = "
9109
9160
  "flex size-7 shrink-0 items-center justify-center rounded-full border text-xs font-medium tabular-nums",
9110
9161
  "transition-colors duration-[var(--duration-overlay)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
9111
9162
  isCompleted && "bg-success-bg text-success-fg border-success-line",
9112
- isActive && "bg-pro-fg text-fg-on-pro border-pro-fg shadow-quiet",
9163
+ isActive && "bg-brand text-fg-on-brand border-brand shadow-quiet",
9113
9164
  !isCompleted && !isActive && "bg-surface text-fg-4 border-rule"
9114
9165
  ),
9115
9166
  "aria-current": isActive ? "step" : void 0,
@@ -9301,7 +9352,7 @@ var switchVariants = cva(
9301
9352
  "motion-reduce:transition-none",
9302
9353
  "focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)]",
9303
9354
  "disabled:cursor-not-allowed",
9304
- "data-[state=checked]:bg-pro-fg data-[state=unchecked]:bg-bg-3",
9355
+ "data-[state=checked]:bg-brand data-[state=unchecked]:bg-bg-3",
9305
9356
  // §5.17: disabled is signalled via the disabled token swap on the
9306
9357
  // track itself; the thumb borrows fg-disabled. No opacity.
9307
9358
  "data-[disabled]:data-[state=checked]:bg-fg-disabled",
@@ -9420,7 +9471,7 @@ var TableRow = forwardRef(function TableRow2({ className, ...props }, ref) {
9420
9471
  "border-rule-soft border-b transition-colors duration-[var(--duration-instant)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
9421
9472
  // G15 compound: selected wins over hover; selected+hover uses the
9422
9473
  // Pro hover tint (not bg-bg-2, which would fight the selection).
9423
- "data-[state=selected]:bg-pro-bg data-[state=selected]:hover:bg-pro-bg-hover",
9474
+ "data-[state=selected]:bg-brand-bg data-[state=selected]:hover:bg-brand-bg-hover",
9424
9475
  "[&:not([data-state=selected])]:hover:bg-bg-2",
9425
9476
  className
9426
9477
  ),
@@ -9514,7 +9565,7 @@ var triggerVariants = cva(
9514
9565
  ),
9515
9566
  pill: cn(
9516
9567
  "rounded-pill px-3 py-1.5",
9517
- "data-[state=active]:bg-pro-bg data-[state=active]:text-pro-fg"
9568
+ "data-[state=active]:bg-brand-bg data-[state=active]:text-brand"
9518
9569
  )
9519
9570
  }
9520
9571
  },
@@ -9782,10 +9833,10 @@ function ToastProvider({ children }) {
9782
9833
  }
9783
9834
  var variantConfig = {
9784
9835
  default: {
9785
- chip: "bg-pro-bg",
9786
- icon: "text-pro-fg",
9787
- stroke: "stroke-pro-fg",
9788
- ring: "ring-pro-fg/15",
9836
+ chip: "bg-brand-bg",
9837
+ icon: "text-brand",
9838
+ stroke: "stroke-brand",
9839
+ ring: "ring-brand/15",
9789
9840
  Icon: InfoCircleSolidIcon
9790
9841
  },
9791
9842
  success: {
@@ -9817,10 +9868,10 @@ var variantConfig = {
9817
9868
  Icon: InfoCircleSolidIcon
9818
9869
  },
9819
9870
  loading: {
9820
- chip: "bg-pro-bg",
9821
- icon: "text-pro-fg",
9822
- stroke: "stroke-pro-fg",
9823
- ring: "ring-pro-fg/15",
9871
+ chip: "bg-brand-bg",
9872
+ icon: "text-brand",
9873
+ stroke: "stroke-brand",
9874
+ ring: "ring-brand/15",
9824
9875
  Icon: LoaderIcon,
9825
9876
  spin: true
9826
9877
  }
@@ -9958,7 +10009,7 @@ function ToastItem({ toast, onDismiss }) {
9958
10009
  close();
9959
10010
  },
9960
10011
  className: cn(
9961
- "text-pro-fg mt-2 text-sm font-semibold",
10012
+ "text-brand mt-2 text-sm font-semibold",
9962
10013
  "transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] hover:underline motion-reduce:transition-none",
9963
10014
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] rounded-sm focus-visible:outline-none"
9964
10015
  ),
@@ -10039,7 +10090,7 @@ var itemVariants = cva(
10039
10090
  "hover:bg-bg-2 hover:text-fg",
10040
10091
  "focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)]",
10041
10092
  "disabled:pointer-events-none disabled:cursor-not-allowed disabled:bg-bg-disabled disabled:text-fg-disabled",
10042
- "data-[state=on]:bg-pro-bg data-[state=on]:text-pro-fg"
10093
+ "data-[state=on]:bg-brand-bg data-[state=on]:text-brand"
10043
10094
  ),
10044
10095
  {
10045
10096
  variants: {
@@ -11111,7 +11162,7 @@ var statusLabel = {
11111
11162
  };
11112
11163
  var statusClassName = {
11113
11164
  "not-started": "bg-surface-2 text-fg-3 border-rule",
11114
- "in-progress": "bg-pro-bg text-pro-fg border-pro-line",
11165
+ "in-progress": "bg-brand-bg text-brand border-brand-line",
11115
11166
  complete: "bg-success-bg text-success-fg border-success-line",
11116
11167
  "needs-review": "bg-warning-bg text-warning-fg border-warning-line"
11117
11168
  };
@@ -11185,12 +11236,12 @@ var QuestionnairePanel = forwardRef(
11185
11236
  onClick: () => toggleGroup(group.id),
11186
11237
  "aria-expanded": isOpen,
11187
11238
  className: cn(
11188
- "text-pro-fg flex h-8 w-full items-center gap-2 px-4 text-left text-[11px] font-bold tracking-[0.08em] uppercase",
11189
- "hover:bg-pro-bg/50 transition-colors duration-[var(--duration-fast)]",
11239
+ "text-brand flex h-8 w-full items-center gap-2 px-4 text-left text-[11px] font-bold tracking-[0.08em] uppercase",
11240
+ "hover:bg-brand-bg/50 transition-colors duration-[var(--duration-fast)]",
11190
11241
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none"
11191
11242
  ),
11192
11243
  children: [
11193
- /* @__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" }) }),
11244
+ /* @__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" }) }),
11194
11245
  /* @__PURE__ */ jsx("span", { className: "min-w-0 flex-1 truncate", children: group.title }),
11195
11246
  hasSections && /* @__PURE__ */ jsx(
11196
11247
  ChevronDownIcon,
@@ -11198,7 +11249,7 @@ var QuestionnairePanel = forwardRef(
11198
11249
  size: 13,
11199
11250
  "aria-hidden": "true",
11200
11251
  className: cn(
11201
- "text-pro-fg transition-transform duration-[var(--duration-fast)]",
11252
+ "text-brand transition-transform duration-[var(--duration-fast)]",
11202
11253
  !isOpen && "-rotate-90"
11203
11254
  )
11204
11255
  }
@@ -11220,7 +11271,7 @@ var QuestionnairePanel = forwardRef(
11220
11271
  "text-fg-2 transition-colors duration-[var(--duration-fast)]",
11221
11272
  "hover:bg-bg-2 hover:text-fg",
11222
11273
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
11223
- selected && "bg-pro-bg text-pro-fg font-semibold"
11274
+ selected && "bg-brand-bg text-brand font-semibold"
11224
11275
  ),
11225
11276
  children: [
11226
11277
  /* @__PURE__ */ jsx(
@@ -11228,7 +11279,7 @@ var QuestionnairePanel = forwardRef(
11228
11279
  {
11229
11280
  className: cn(
11230
11281
  "text-fg-3 flex size-4 shrink-0 items-center justify-center",
11231
- selected && "text-pro-fg"
11282
+ selected && "text-brand"
11232
11283
  ),
11233
11284
  children: section.icon
11234
11285
  }
@@ -11272,7 +11323,7 @@ var QuestionnairePanel = forwardRef(
11272
11323
  ...props,
11273
11324
  children: [
11274
11325
  /* @__PURE__ */ jsxs("div", { className: "px-1 pb-4", children: [
11275
- /* @__PURE__ */ jsx("p", { className: "text-pro-fg text-[11px] font-bold tracking-[0.12em] uppercase", children: eyebrow }),
11326
+ /* @__PURE__ */ jsx("p", { className: "text-brand text-[11px] font-bold tracking-[0.12em] uppercase", children: eyebrow }),
11276
11327
  /* @__PURE__ */ jsx("h2", { className: "text-fg mt-1 text-[21px] leading-7 font-bold", children: title }),
11277
11328
  description && /* @__PURE__ */ jsx("p", { className: "text-fg-3 mt-2 text-[13px] leading-5", children: description }),
11278
11329
  totalQuestions > 0 && /* @__PURE__ */ jsxs("div", { className: "mt-4", children: [
@@ -11286,7 +11337,7 @@ var QuestionnairePanel = forwardRef(
11286
11337
  /* @__PURE__ */ jsx("div", { className: "bg-surface-3 h-2 overflow-hidden rounded-full", children: /* @__PURE__ */ jsx(
11287
11338
  "div",
11288
11339
  {
11289
- className: "bg-pro-fg h-full rounded-full transition-[width] duration-[var(--duration-normal)] ease-[var(--ease-out-quart)]",
11340
+ className: "bg-brand h-full rounded-full transition-[width] duration-[var(--duration-normal)] ease-[var(--ease-out-quart)]",
11290
11341
  style: { width: `${percent}%` }
11291
11342
  }
11292
11343
  ) })
@@ -11304,11 +11355,11 @@ var QuestionnairePanel = forwardRef(
11304
11355
  "flex snap-x snap-mandatory gap-3 overflow-x-auto overflow-y-hidden overscroll-x-contain scroll-smooth px-1 pt-2 pb-2",
11305
11356
  "[scroll-padding-inline:2rem] lg:[scroll-padding-inline:0] lg:[scroll-padding-block:5rem]",
11306
11357
  "motion-reduce:scroll-auto",
11307
- "[scrollbar-color:var(--color-pro-fg)_transparent] [scrollbar-width:thin]",
11358
+ "[scrollbar-color:var(--color-brand)_transparent] [scrollbar-width:thin]",
11308
11359
  "[&::-webkit-scrollbar]:h-2 [&::-webkit-scrollbar]:w-2",
11309
11360
  "[&::-webkit-scrollbar-track]:bg-transparent",
11310
- "[&::-webkit-scrollbar-thumb]:bg-pro-fg/35 [&::-webkit-scrollbar-thumb]:rounded-full",
11311
- "hover:[&::-webkit-scrollbar-thumb]:bg-pro-fg/55",
11361
+ "[&::-webkit-scrollbar-thumb]:bg-brand/35 [&::-webkit-scrollbar-thumb]:rounded-full",
11362
+ "hover:[&::-webkit-scrollbar-thumb]:bg-brand/55",
11312
11363
  "lg:grid lg:max-h-full lg:snap-none lg:gap-2 lg:overflow-x-hidden lg:overflow-y-auto lg:pr-1"
11313
11364
  ),
11314
11365
  children: sections.map((section, index) => {
@@ -11326,9 +11377,9 @@ var QuestionnairePanel = forwardRef(
11326
11377
  "group border-rule bg-surface flex w-full snap-center gap-3 overflow-hidden rounded-[16px] border p-3 text-left will-change-transform",
11327
11378
  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",
11328
11379
  "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",
11329
- "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",
11380
+ "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",
11330
11381
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
11331
- selected && "border-pro-line bg-pro-bg shadow-card relative z-10 scale-[1.02]"
11382
+ selected && "border-brand-line bg-brand-bg shadow-card relative z-10 scale-[1.02]"
11332
11383
  ),
11333
11384
  children: [
11334
11385
  /* @__PURE__ */ jsx(
@@ -11336,7 +11387,7 @@ var QuestionnairePanel = forwardRef(
11336
11387
  {
11337
11388
  className: cn(
11338
11389
  "mt-0.5 grid size-8 shrink-0 place-items-center rounded-full text-[12px] font-bold",
11339
- status === "complete" ? "bg-success-bg text-success-fg" : selected ? "bg-pro-fg text-fg-on-pro" : "bg-surface-2 text-fg-3",
11390
+ status === "complete" ? "bg-success-bg text-success-fg" : selected ? "bg-brand text-fg-on-brand" : "bg-surface-2 text-fg-3",
11340
11391
  !selected && "mt-0"
11341
11392
  ),
11342
11393
  "aria-hidden": "true",
@@ -11383,7 +11434,7 @@ var QuestionnairePanel = forwardRef(
11383
11434
  {
11384
11435
  className: cn(
11385
11436
  "block h-full rounded-full transition-[width] duration-[var(--duration-slow)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
11386
- status === "complete" ? "bg-success-fg" : "bg-pro-fg"
11437
+ status === "complete" ? "bg-success-fg" : "bg-brand"
11387
11438
  ),
11388
11439
  style: { width: `${itemPercent}%` }
11389
11440
  }
@@ -11401,7 +11452,7 @@ var QuestionnairePanel = forwardRef(
11401
11452
  )
11402
11453
  ] }),
11403
11454
  /* @__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: [
11404
- /* @__PURE__ */ jsx(HelpCircleIcon, { size: 15, className: "text-pro-fg", "aria-hidden": "true" }),
11455
+ /* @__PURE__ */ jsx(HelpCircleIcon, { size: 15, className: "text-brand", "aria-hidden": "true" }),
11405
11456
  "Pick a section to load its related questions on the right."
11406
11457
  ] }) })
11407
11458
  ]
@@ -11513,12 +11564,12 @@ var Questions = forwardRef(function Questions2({
11513
11564
  "span",
11514
11565
  {
11515
11566
  "aria-hidden": "true",
11516
- className: "bg-pro-bg text-pro-fg grid size-7 shrink-0 place-items-center rounded-full text-xs font-bold",
11567
+ className: "bg-brand-bg text-brand grid size-7 shrink-0 place-items-center rounded-full text-xs font-bold",
11517
11568
  children: humanIndex
11518
11569
  }
11519
11570
  ),
11520
11571
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
11521
- (sectionLabel || isSectionHeader) && /* @__PURE__ */ jsx("p", { className: "text-pro-fg mb-1 text-[11px] font-bold tracking-[0.12em] uppercase", children: sectionLabel }),
11572
+ (sectionLabel || isSectionHeader) && /* @__PURE__ */ jsx("p", { className: "text-brand mb-1 text-[11px] font-bold tracking-[0.12em] uppercase", children: sectionLabel }),
11522
11573
  /* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center gap-2", children: [
11523
11574
  /* @__PURE__ */ jsx(
11524
11575
  "h3",
@@ -11531,7 +11582,7 @@ var Questions = forwardRef(function Questions2({
11531
11582
  }
11532
11583
  ),
11533
11584
  help && /* @__PURE__ */ jsx(HelpTip, { title: help.title ?? title, body: help.body }),
11534
- required && /* @__PURE__ */ jsx("span", { className: "bg-pro-bg text-pro-fg rounded-full px-2 py-0.5 text-[11px] font-bold", children: "Required" })
11585
+ required && /* @__PURE__ */ jsx("span", { className: "bg-brand-bg text-brand rounded-full px-2 py-0.5 text-[11px] font-bold", children: "Required" })
11535
11586
  ] }),
11536
11587
  description && type !== "consent-checkbox" && /* @__PURE__ */ jsx("p", { className: "text-fg-3 mt-1 text-[13px] leading-5", children: description })
11537
11588
  ] })
@@ -11970,7 +12021,7 @@ function QuestionOptionButton({
11970
12021
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
11971
12022
  "disabled:bg-bg-disabled disabled:text-fg-disabled disabled:cursor-not-allowed",
11972
12023
  compact ? "h-10 max-w-max rounded-[10px] px-3" : "min-h-16 rounded-[12px] px-7 py-4",
11973
- 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",
12024
+ 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",
11974
12025
  className
11975
12026
  ),
11976
12027
  ...props,
@@ -11982,7 +12033,7 @@ function QuestionOptionButton({
11982
12033
  className: cn(
11983
12034
  "grid shrink-0 place-items-center rounded-full border transition-colors duration-[var(--duration-fast)]",
11984
12035
  compact ? "size-5" : "size-4",
11985
- selected ? "border-pro-fg bg-pro-fg text-fg-on-pro" : "border-rule-strong bg-surface group-hover:border-pro-line text-transparent"
12036
+ selected ? "border-brand bg-brand text-fg-on-brand" : "border-rule-strong bg-surface group-hover:border-brand-line text-transparent"
11986
12037
  ),
11987
12038
  children: selected && /* @__PURE__ */ jsx(CheckCircleSolidIcon, { size: compact ? 18 : 14 })
11988
12039
  }
@@ -11996,7 +12047,7 @@ function QuestionOptionButton({
11996
12047
  {
11997
12048
  className: cn(
11998
12049
  "ml-auto shrink-0 text-right text-[13px] font-semibold",
11999
- selected ? "text-pro-fg" : "text-fg-3"
12050
+ selected ? "text-brand" : "text-fg-3"
12000
12051
  ),
12001
12052
  children: option.formLabel
12002
12053
  }
@@ -12012,7 +12063,7 @@ function formatBytes2(bytes) {
12012
12063
  }
12013
12064
  function HelpTip({ title, body }) {
12014
12065
  return /* @__PURE__ */ jsxs(Tooltip, { children: [
12015
- /* @__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" }) }) }),
12066
+ /* @__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" }) }) }),
12016
12067
  /* @__PURE__ */ jsxs(
12017
12068
  TooltipContent,
12018
12069
  {
@@ -12207,7 +12258,7 @@ var AIReceiptPanel = forwardRef(function AIReceiptPanel2({ state = "idle", resul
12207
12258
  type: "button",
12208
12259
  onClick: onAttach,
12209
12260
  className: cn(
12210
- "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",
12261
+ "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",
12211
12262
  className
12212
12263
  ),
12213
12264
  ...props,
@@ -12314,7 +12365,7 @@ var BottomNav = forwardRef(function BottomNav2({ tabs, value, onChange, classNam
12314
12365
  onClick: () => onChange(tab.id),
12315
12366
  className: cn(
12316
12367
  "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",
12317
- active ? "text-pro-fg" : "text-fg-4 hover:text-fg-2"
12368
+ active ? "text-brand" : "text-fg-4 hover:text-fg-2"
12318
12369
  ),
12319
12370
  children: [
12320
12371
  /* @__PURE__ */ jsxs("span", { className: "relative [&_svg]:size-5", children: [
@@ -12625,10 +12676,10 @@ var EngagementTimelineStep = forwardRef(
12625
12676
  EngagementTimelineStep.displayName = "EngagementTimelineStep";
12626
12677
  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";
12627
12678
  var ROW_INACTIVE = "text-fg-2 hover:bg-surface-2 hover:text-fg";
12628
- var ROW_ACTIVE = "bg-pro-bg text-pro-fg font-semibold";
12679
+ var ROW_ACTIVE = "bg-brand-bg text-brand font-semibold";
12629
12680
  var BADGE_BASE = "ml-auto min-w-[18px] rounded-full px-[5px] py-px text-center text-[10px] font-[650] tabular-nums";
12630
12681
  var BADGE_INACTIVE = "bg-surface-2 text-fg-4";
12631
- var BADGE_ACTIVE = "bg-pro-bg text-pro-fg";
12682
+ var BADGE_ACTIVE = "bg-brand-bg text-brand";
12632
12683
  var FolderTree = forwardRef(function FolderTree2({ nodes, activeId, onSelect, defaultOpenIds, openIds, onOpenChange, className, ...props }, ref) {
12633
12684
  const isControlled = openIds !== void 0;
12634
12685
  const [internalOpen, setInternalOpen] = useState(() => new Set(defaultOpenIds ?? []));
@@ -12686,14 +12737,14 @@ var FolderTree = forwardRef(function FolderTree2({ nodes, activeId, onSelect, de
12686
12737
  {
12687
12738
  size: 14,
12688
12739
  "aria-hidden": "true",
12689
- className: cn("shrink-0", isActive ? "text-pro-fg" : "text-fg-3")
12740
+ className: cn("shrink-0", isActive ? "text-brand" : "text-fg-3")
12690
12741
  }
12691
12742
  ) : /* @__PURE__ */ jsx(
12692
12743
  FolderClosedIcon,
12693
12744
  {
12694
12745
  size: 14,
12695
12746
  "aria-hidden": "true",
12696
- className: cn("shrink-0", isActive ? "text-pro-fg" : "text-fg-3")
12747
+ className: cn("shrink-0", isActive ? "text-brand" : "text-fg-3")
12697
12748
  }
12698
12749
  ),
12699
12750
  /* @__PURE__ */ jsx("span", { className: "min-w-0 flex-1 truncate", children: node.name })
@@ -12734,7 +12785,7 @@ var ClientRailItem = forwardRef(
12734
12785
  // Cursor
12735
12786
  "cursor-pointer",
12736
12787
  // State — hover only when not active to avoid override
12737
- active ? "bg-pro-bg" : "hover:bg-surface-2",
12788
+ active ? "bg-brand-bg" : "hover:bg-surface-2",
12738
12789
  className
12739
12790
  ),
12740
12791
  ...props,
@@ -12743,7 +12794,7 @@ var ClientRailItem = forwardRef(
12743
12794
  "span",
12744
12795
  {
12745
12796
  "aria-hidden": "true",
12746
- className: "absolute top-0 bottom-0 left-0 w-[3px] bg-pro-fg"
12797
+ className: "absolute top-0 bottom-0 left-0 w-[3px] bg-brand"
12747
12798
  }
12748
12799
  ),
12749
12800
  /* @__PURE__ */ jsx("span", { className: "shrink-0", children: /* @__PURE__ */ jsx(Avatar, { name, src: avatarSrc, size: "sm" }) }),
@@ -12754,7 +12805,7 @@ var ClientRailItem = forwardRef(
12754
12805
  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 })
12755
12806
  ] }),
12756
12807
  /* @__PURE__ */ jsx("p", { className: "mt-0.5 text-[11.5px] text-fg-3", children: hasPending ? /* @__PURE__ */ jsxs(Fragment, { children: [
12757
- /* @__PURE__ */ jsxs("span", { className: "font-semibold text-pro-fg", children: [
12808
+ /* @__PURE__ */ jsxs("span", { className: "font-semibold text-brand", children: [
12758
12809
  pendingCount,
12759
12810
  " pending"
12760
12811
  ] }),
@@ -12781,7 +12832,7 @@ var ClientRailGroupHeader = forwardRef(function ClientRailGroupHeader2({ label,
12781
12832
  ref,
12782
12833
  className: cn(
12783
12834
  "flex items-center gap-[7px] px-[14px] pt-[14px] pb-[5px] text-[11.5px] font-semibold",
12784
- accent ? "text-pro-fg" : "text-fg-3",
12835
+ accent ? "text-brand" : "text-fg-3",
12785
12836
  className
12786
12837
  ),
12787
12838
  ...props,
@@ -12805,13 +12856,13 @@ function getFileTypeParts(fileType) {
12805
12856
  return { Icon: FileTextIcon, colorClass: "text-danger-fg" };
12806
12857
  }
12807
12858
  if (normalized.includes("image") || ["jpg", "jpeg", "png", "tiff"].some((type) => normalized.includes(type))) {
12808
- return { Icon: FileIcon, colorClass: "text-pro-fg" };
12859
+ return { Icon: FileIcon, colorClass: "text-brand" };
12809
12860
  }
12810
12861
  if (normalized.includes("excel") || normalized.includes("spreadsheet") || ["xlsx", "xls", "csv"].some((type) => normalized.includes(type))) {
12811
12862
  return { Icon: FileTextIcon, colorClass: "text-success-fg" };
12812
12863
  }
12813
12864
  if (normalized.includes("word") || ["docx", "doc"].some((type) => normalized.includes(type))) {
12814
- return { Icon: FileTextIcon, colorClass: "text-pro-fg" };
12865
+ return { Icon: FileTextIcon, colorClass: "text-brand" };
12815
12866
  }
12816
12867
  return { Icon: FileIcon, colorClass: "text-fg-4" };
12817
12868
  }
@@ -12890,7 +12941,7 @@ function MoreActions({ menu }) {
12890
12941
  className: cn(
12891
12942
  "grid size-[30px] place-items-center rounded-[8px] text-fg-4",
12892
12943
  "transition-colors duration-[120ms] motion-reduce:transition-none",
12893
- "group-hover:text-fg-2 hover:bg-surface hover:text-pro-fg hover:shadow-sm"
12944
+ "group-hover:text-fg-2 hover:bg-surface hover:text-brand hover:shadow-sm"
12894
12945
  ),
12895
12946
  "aria-label": "More actions",
12896
12947
  onClick: (event) => event.stopPropagation(),
@@ -12930,7 +12981,7 @@ var DocumentFileRow = React38.forwardRef(
12930
12981
  className: cn(
12931
12982
  "group flex cursor-pointer items-center gap-[13px] border-b border-rule px-[14px] py-3",
12932
12983
  "transition-colors duration-[120ms] motion-reduce:transition-none hover:bg-surface-2",
12933
- selected && "bg-pro-bg",
12984
+ selected && "bg-brand-bg",
12934
12985
  className
12935
12986
  ),
12936
12987
  onClick: (event) => {
@@ -12998,7 +13049,7 @@ var DocumentFileCard = React38.forwardRef(
12998
13049
  "group relative cursor-pointer rounded-2xl border border-rule bg-surface p-3",
12999
13050
  "transition-[border-color,box-shadow,transform] duration-[120ms] motion-reduce:transition-none",
13000
13051
  "hover:-translate-y-0.5 hover:border-rule-strong hover:shadow-sm",
13001
- selected && "border-pro-fg bg-pro-bg",
13052
+ selected && "border-brand bg-brand-bg",
13002
13053
  className
13003
13054
  ),
13004
13055
  onClick: (event) => {
@@ -13067,11 +13118,11 @@ var DocumentRequestField = forwardRef(
13067
13118
  "span",
13068
13119
  {
13069
13120
  "aria-hidden": "true",
13070
- className: "size-[22px] rounded-full bg-pro-bg text-pro-fg text-[11px] font-bold grid place-items-center shrink-0 leading-none",
13121
+ className: "size-[22px] rounded-full bg-brand-bg text-brand text-[11px] font-bold grid place-items-center shrink-0 leading-none",
13071
13122
  children: humanIndex
13072
13123
  }
13073
13124
  ),
13074
- /* @__PURE__ */ jsxs("span", { className: "text-[13px] font-[650] text-pro-fg", children: [
13125
+ /* @__PURE__ */ jsxs("span", { className: "text-[13px] font-[650] text-brand", children: [
13075
13126
  "Document ",
13076
13127
  humanIndex
13077
13128
  ] }),
@@ -13664,7 +13715,7 @@ var SidebarSection = React38.forwardRef(
13664
13715
  {
13665
13716
  className: cn(
13666
13717
  "font-mono text-[11px] tracking-[0.14em] uppercase",
13667
- tone === "muted" ? "text-fg-3" : "text-pro-fg"
13718
+ tone === "muted" ? "text-fg-3" : "text-brand"
13668
13719
  ),
13669
13720
  children: label
13670
13721
  }
@@ -13706,21 +13757,21 @@ var SidebarLink = React38.forwardRef(
13706
13757
  "motion-reduce:transition-none",
13707
13758
  "hover:bg-bg-3 hover:text-fg",
13708
13759
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
13709
- "data-[active=true]:bg-pro-bg data-[active=true]:text-pro-fg data-[active=true]:font-medium",
13760
+ "data-[active=true]:bg-brand-bg data-[active=true]:text-brand data-[active=true]:font-medium",
13710
13761
  // In rail, the icon itself carries the active state rather
13711
13762
  // than just the rule bar — color is more legible than a 2px
13712
13763
  // vertical mark at the column's left edge when labels are
13713
13764
  // hidden. The full-opacity icon override (`opacity-100`)
13714
13765
  // counters the default `[&_svg]:opacity-85` so the active
13715
13766
  // icon doesn't read as "still inactive but darker".
13716
- "group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:text-pro-fg group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:opacity-100",
13767
+ "group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:text-brand group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:opacity-100",
13717
13768
  // Active rail: 2px wide, 16px tall, anchored to the link's
13718
13769
  // own left edge — no parent-padding dependency. Continues
13719
13770
  // working unchanged when the aside narrows to a rail.
13720
13771
  "data-[active=true]:before:absolute data-[active=true]:before:content-['']",
13721
13772
  "data-[active=true]:before:top-1/2 data-[active=true]:before:left-0",
13722
13773
  "data-[active=true]:before:h-4 data-[active=true]:before:w-[2px] data-[active=true]:before:-translate-y-1/2",
13723
- "data-[active=true]:before:bg-pro-fg data-[active=true]:before:rounded-r-full",
13774
+ "data-[active=true]:before:bg-brand data-[active=true]:before:rounded-r-full",
13724
13775
  // Padding/gap stay constant so the icon stays under the cursor
13725
13776
  // when the column widens during peek. The label simply collapses
13726
13777
  // to width 0 via <SidebarLinkLabel>.
@@ -13806,7 +13857,7 @@ var sidebarLinkBadgeVariants = cva(
13806
13857
  {
13807
13858
  variants: {
13808
13859
  tone: {
13809
- default: "text-[10.5px] text-fg-4 group-data-[active=true]/link:text-pro-fg",
13860
+ default: "text-[10.5px] text-fg-4 group-data-[active=true]/link:text-brand",
13810
13861
  danger: "rounded-pill bg-danger-bg px-1.5 py-0.5 text-[10.5px] text-danger-fg",
13811
13862
  warning: "rounded-pill bg-warning-bg px-1.5 py-0.5 text-[10.5px] text-warning-fg",
13812
13863
  neutral: "rounded-pill bg-bg-3 px-1.5 py-0.5 text-[10.5px] text-fg-2"
@@ -13872,14 +13923,14 @@ var SidebarLinkGroup = React38.forwardRef(
13872
13923
  "motion-reduce:transition-none",
13873
13924
  "hover:bg-bg-3 hover:text-fg",
13874
13925
  "focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
13875
- "data-[active=true]:bg-pro-bg data-[active=true]:text-pro-fg data-[active=true]:font-medium",
13926
+ "data-[active=true]:bg-brand-bg data-[active=true]:text-brand data-[active=true]:font-medium",
13876
13927
  // In rail, color carries active state since the chevron is hidden.
13877
- "group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:text-pro-fg group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:opacity-100",
13928
+ "group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:text-brand group-data-[labels=hide]/sidebar:data-[active=true]:[&_svg]:opacity-100",
13878
13929
  // Active rail mark — anchored to body row's left edge.
13879
13930
  "data-[active=true]:before:absolute data-[active=true]:before:content-['']",
13880
13931
  "data-[active=true]:before:top-1/2 data-[active=true]:before:left-0",
13881
13932
  "data-[active=true]:before:h-4 data-[active=true]:before:w-[2px] data-[active=true]:before:-translate-y-1/2",
13882
- "data-[active=true]:before:bg-pro-fg data-[active=true]:before:rounded-r-full",
13933
+ "data-[active=true]:before:bg-brand data-[active=true]:before:rounded-r-full",
13883
13934
  "[&_svg]:size-3.5 [&_svg]:shrink-0 [&_svg]:opacity-85",
13884
13935
  // Floating variant — match SidebarLink: taller hit area, pill active.
13885
13936
  "group-data-[variant=floating]/sidebar:gap-3 group-data-[variant=floating]/sidebar:rounded-lg group-data-[variant=floating]/sidebar:py-2",
@@ -14095,7 +14146,14 @@ var SidebarBrandSwitcher = React38.forwardRef(
14095
14146
  },
14096
14147
  p.id
14097
14148
  )),
14098
- extras?.map((extra) => /* @__PURE__ */ jsx(SidebarBrandSwitcherExtraRow, { extra }, extra.id))
14149
+ extras?.map((extra) => /* @__PURE__ */ jsx(
14150
+ SidebarBrandSwitcherExtraRow,
14151
+ {
14152
+ extra,
14153
+ rowClassName
14154
+ },
14155
+ extra.id
14156
+ ))
14099
14157
  ]
14100
14158
  }
14101
14159
  )
@@ -14202,20 +14260,26 @@ function SidebarBrandSwitcherOtherRow({
14202
14260
  }
14203
14261
  );
14204
14262
  }
14205
- function SidebarBrandSwitcherExtraRow({ extra }) {
14206
- return /* @__PURE__ */ jsxs(
14263
+ function SidebarBrandSwitcherExtraRow({
14264
+ extra,
14265
+ rowClassName
14266
+ }) {
14267
+ return /* @__PURE__ */ jsx(
14207
14268
  DropdownMenuItem,
14208
14269
  {
14209
14270
  onSelect: () => extra.onSelect(),
14210
14271
  "data-item": extra.dataAttr ?? extra.id,
14211
- className: "flex items-center gap-2.5 rounded-md px-2 py-1.5",
14212
- children: [
14272
+ className: cn("flex items-center gap-2.5 rounded-md px-2 py-1.5", rowClassName),
14273
+ children: extra.identity ? /* @__PURE__ */ jsxs("div", { className: "flex min-w-0 flex-1 flex-col gap-0.5", children: [
14274
+ extra.identity,
14275
+ extra.tagline && /* @__PURE__ */ jsx("span", { className: "text-fg-3 text-[11px] leading-tight", children: extra.tagline })
14276
+ ] }) : /* @__PURE__ */ jsxs(Fragment, { children: [
14213
14277
  extra.glyph,
14214
14278
  /* @__PURE__ */ jsxs("div", { className: "flex min-w-0 flex-1 flex-col", children: [
14215
14279
  /* @__PURE__ */ jsx("span", { className: "text-fg text-[13px] font-medium", children: extra.name }),
14216
14280
  extra.tagline && /* @__PURE__ */ jsx("span", { className: "text-fg-3 text-[11px]", children: extra.tagline })
14217
14281
  ] })
14218
- ]
14282
+ ] })
14219
14283
  }
14220
14284
  );
14221
14285
  }
@@ -14565,7 +14629,7 @@ var SelectableKpiCard = forwardRef(
14565
14629
  "block w-full p-4 text-left",
14566
14630
  "focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)]",
14567
14631
  "disabled:pointer-events-none disabled:bg-bg-disabled disabled:text-fg-disabled disabled:shadow-none",
14568
- selected && "border-pro-fg/40 bg-pro-bg hover:bg-pro-bg-hover ring-1 ring-pro-fg/30",
14632
+ selected && "border-brand/40 bg-brand-bg hover:bg-brand-bg-hover ring-1 ring-brand/30",
14569
14633
  className
14570
14634
  ),
14571
14635
  ...props,
@@ -14688,10 +14752,10 @@ var DataTableRow = forwardRef(
14688
14752
  "data-state": selected ? "selected" : void 0,
14689
14753
  className: cn(
14690
14754
  "border-rule-soft border-b transition-colors duration-[var(--duration-instant)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
14691
- // Selected hover stays in the Pro tint (G15) — when both states fire,
14755
+ // Selected hover stays in the brand tint (G15) — when both states fire,
14692
14756
  // hover:bg-bg-2 was previously winning and dropping the row out of
14693
14757
  // the selected tint, which read as the row deselecting on hover.
14694
- selected ? "bg-pro-bg hover:bg-pro-bg-hover" : "hover:bg-bg-2",
14758
+ selected ? "bg-brand-bg hover:bg-brand-bg-hover" : "hover:bg-bg-2",
14695
14759
  className
14696
14760
  ),
14697
14761
  ...props
@@ -15054,7 +15118,7 @@ function DataTableView({
15054
15118
  }
15055
15119
  var toneClass = {
15056
15120
  slate: "bg-bg-3 text-fg-3",
15057
- blue: "bg-[color-mix(in_oklab,var(--color-brand-audit)_14%,transparent)] text-[color:var(--color-brand-audit)]",
15121
+ blue: "bg-[color-mix(in_oklab,var(--color-brand-tax)_14%,transparent)] text-[color:var(--color-brand-tax)]",
15058
15122
  violet: "bg-pro-bg text-pro-fg",
15059
15123
  amber: "bg-warning-bg text-warning-fg",
15060
15124
  ok: "bg-success-bg text-success-fg",
@@ -15455,7 +15519,7 @@ var DocumentRequestCard = forwardRef(
15455
15519
  "span",
15456
15520
  {
15457
15521
  "aria-hidden": true,
15458
- 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",
15522
+ 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",
15459
15523
  children: [
15460
15524
  "Open",
15461
15525
  /* @__PURE__ */ jsx(ArrowRightIcon, { size: 13 })
@@ -15655,7 +15719,7 @@ var DocumentRequestDetail = forwardRef(
15655
15719
  "aria-hidden": "true",
15656
15720
  className: cn(
15657
15721
  "grid size-4 shrink-0 place-items-center rounded-[5px] border transition-colors duration-[var(--duration-fast)] motion-reduce:transition-none",
15658
- checked ? "bg-pro-fg border-pro-fg text-fg-on-pro" : "border-rule"
15722
+ checked ? "bg-brand border-brand text-fg-on-brand" : "border-rule"
15659
15723
  ),
15660
15724
  children: checked && /* @__PURE__ */ jsx(CheckIcon, { className: "size-3" })
15661
15725
  }
@@ -15698,7 +15762,7 @@ var DocumentRequestDetail = forwardRef(
15698
15762
  ] })
15699
15763
  ] }),
15700
15764
  /* @__PURE__ */ jsxs(TabsContent, { value: "documents", className: "min-h-0 flex-1 overflow-y-auto px-5 py-4", children: [
15701
- 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: [
15765
+ 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: [
15702
15766
  /* @__PURE__ */ jsx(LockIcon, { size: 15, className: "shrink-0" }),
15703
15767
  "This request is locked \u2014 the client can no longer upload documents."
15704
15768
  ] }),
@@ -15851,7 +15915,7 @@ var DocumentRequestDetail = forwardRef(
15851
15915
  /* @__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) => {
15852
15916
  const Icon3 = ACTIVITY_ICON[event.kind] ?? SendIcon;
15853
15917
  return /* @__PURE__ */ jsxs("li", { className: "flex items-start gap-3 py-1", children: [
15854
- /* @__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 }) }),
15918
+ /* @__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 }) }),
15855
15919
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1 pt-1", children: [
15856
15920
  /* @__PURE__ */ jsx("p", { className: "text-fg-2 text-[13px] leading-snug", children: event.text }),
15857
15921
  /* @__PURE__ */ jsx("p", { className: "text-fg-4 mt-0.5 text-[12px]", children: event.time })
@@ -15931,7 +15995,7 @@ function CommentRow({ comment }) {
15931
15995
  {
15932
15996
  className: cn(
15933
15997
  "mt-1 rounded-2xl px-3 py-2 text-[13px] leading-snug",
15934
- isFirm ? "bg-pro-bg text-pro-fg rounded-tr-sm" : "bg-surface-2 text-fg-2 rounded-tl-sm"
15998
+ isFirm ? "bg-brand-bg text-brand rounded-tr-sm" : "bg-surface-2 text-fg-2 rounded-tl-sm"
15935
15999
  ),
15936
16000
  children: /* @__PURE__ */ jsx("p", { className: "break-words whitespace-pre-wrap", children: comment.body })
15937
16001
  }
@@ -16006,7 +16070,7 @@ var DocumentSourceFilter = forwardRef(
16006
16070
  {
16007
16071
  className: cn(
16008
16072
  "rounded-md px-1.5 py-px text-[11px] font-bold tabular-nums",
16009
- active ? "bg-pro-bg-active text-pro-fg" : "bg-surface-2 text-fg-4"
16073
+ active ? "bg-brand-bg-active text-brand" : "bg-surface-2 text-fg-4"
16010
16074
  ),
16011
16075
  children: count
16012
16076
  }
@@ -16375,7 +16439,7 @@ var NotificationPanelHeader = forwardRef(
16375
16439
  children: [
16376
16440
  /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
16377
16441
  /* @__PURE__ */ jsx("h3", { className: "text-fg text-[15px] font-semibold", children: title }),
16378
- 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 })
16442
+ 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 })
16379
16443
  ] }),
16380
16444
  /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1", children: [
16381
16445
  onMarkAllRead && /* @__PURE__ */ jsx(
@@ -16383,7 +16447,7 @@ var NotificationPanelHeader = forwardRef(
16383
16447
  {
16384
16448
  type: "button",
16385
16449
  onClick: onMarkAllRead,
16386
- 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",
16450
+ 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",
16387
16451
  children: "Mark all read"
16388
16452
  }
16389
16453
  ),
@@ -16429,7 +16493,7 @@ var NotificationFilter = forwardRef(
16429
16493
  className: cn(
16430
16494
  "inline-flex items-center gap-1.5 rounded-lg px-2.5 py-1 capitalize transition-colors",
16431
16495
  "focus-visible:ring-accent outline-none focus-visible:ring-2",
16432
- selected ? "bg-surface text-pro-fg ring-1 ring-[color:var(--color-pro-line)]" : "text-fg-3 hover:text-fg"
16496
+ selected ? "bg-surface text-brand ring-1 ring-[color:var(--color-brand-line)]" : "text-fg-3 hover:text-fg"
16433
16497
  ),
16434
16498
  children: [
16435
16499
  option,
@@ -16438,7 +16502,7 @@ var NotificationFilter = forwardRef(
16438
16502
  {
16439
16503
  className: cn(
16440
16504
  "rounded-md px-1.5 py-px text-[11px] font-semibold tabular-nums",
16441
- selected ? "bg-pro-bg text-pro-fg" : "bg-bg-2 text-fg-4"
16505
+ selected ? "bg-brand-bg text-brand" : "bg-bg-2 text-fg-4"
16442
16506
  ),
16443
16507
  children: count
16444
16508
  }
@@ -16479,7 +16543,7 @@ var NotificationItem = forwardRef(
16479
16543
  className: cn(
16480
16544
  "flex w-full gap-3 px-4 py-3 text-left outline-none",
16481
16545
  "transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
16482
- 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",
16546
+ 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",
16483
16547
  className
16484
16548
  ),
16485
16549
  ...props,
@@ -16508,7 +16572,7 @@ var NotificationItem = forwardRef(
16508
16572
  children: title
16509
16573
  }
16510
16574
  ),
16511
- unread && /* @__PURE__ */ jsx("span", { "aria-hidden": "true", className: "bg-pro-fg size-1.5 shrink-0 rounded-full" })
16575
+ unread && /* @__PURE__ */ jsx("span", { "aria-hidden": "true", className: "bg-brand size-1.5 shrink-0 rounded-full" })
16512
16576
  ] }),
16513
16577
  body && /* @__PURE__ */ jsx("p", { className: "text-fg-3 mt-0.5 truncate text-xs", children: body }),
16514
16578
  (typeLabel || client || time) && /* @__PURE__ */ jsxs("div", { className: "mt-1.5 flex items-center gap-2", children: [
@@ -16671,7 +16735,7 @@ var TimeLoggerHeader = forwardRef(
16671
16735
  /* @__PURE__ */ jsx(
16672
16736
  "span",
16673
16737
  {
16674
- className: "bg-pro-bg text-pro-fg flex size-7 shrink-0 items-center justify-center rounded-lg [&_svg]:size-[17px]",
16738
+ className: "bg-brand-bg text-brand flex size-7 shrink-0 items-center justify-center rounded-lg [&_svg]:size-[17px]",
16675
16739
  "aria-hidden": "true",
16676
16740
  children: icon ?? /* @__PURE__ */ jsx(ClockIcon, {})
16677
16741
  }
@@ -16959,7 +17023,7 @@ var TimeLoggerBillable = forwardRef(
16959
17023
  {
16960
17024
  className: cn(
16961
17025
  "flex-1 truncate text-[13px]",
16962
- selected ? "text-pro-fg font-medium" : "text-fg"
17026
+ selected ? "text-brand font-medium" : "text-fg"
16963
17027
  ),
16964
17028
  children: tier.name
16965
17029
  }
@@ -16972,7 +17036,7 @@ var TimeLoggerBillable = forwardRef(
16972
17036
  CheckIcon,
16973
17037
  {
16974
17038
  className: cn(
16975
- "text-pro-fg size-4 shrink-0",
17039
+ "text-brand size-4 shrink-0",
16976
17040
  selected ? "opacity-100" : "opacity-0"
16977
17041
  )
16978
17042
  }
@@ -17034,7 +17098,7 @@ var TimeLoggerEntry = forwardRef(
17034
17098
  "span",
17035
17099
  {
17036
17100
  "aria-hidden": "true",
17037
- className: "border-pro-fg size-[15px] shrink-0 rounded-full border-[1.5px] shadow-[inset_0_0_0_3px_var(--color-pro-fg)]"
17101
+ className: "border-brand size-[15px] shrink-0 rounded-full border-[1.5px] shadow-[inset_0_0_0_3px_var(--color-brand)]"
17038
17102
  }
17039
17103
  ),
17040
17104
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
@@ -17048,7 +17112,7 @@ var TimeLoggerEntry = forwardRef(
17048
17112
  type: "button",
17049
17113
  variant: "ghost",
17050
17114
  size: "icon-sm",
17051
- className: "text-fg-3 hover:text-pro-fg hover:bg-pro-bg rounded-full",
17115
+ className: "text-fg-3 hover:text-brand hover:bg-brand-bg rounded-full",
17052
17116
  "aria-label": "Resume entry",
17053
17117
  onClick: onResume,
17054
17118
  children: /* @__PURE__ */ jsx(PlayIcon, {})
@@ -17101,7 +17165,7 @@ var filterChipVariants = cva(
17101
17165
  {
17102
17166
  variants: {
17103
17167
  active: {
17104
- true: "bg-pro-bg text-pro-fg border-pro-fg/30 hover:bg-pro-bg-hover",
17168
+ true: "bg-brand-bg text-brand border-brand/30 hover:bg-brand-bg-hover",
17105
17169
  false: "bg-bg-2 text-fg-2 border-rule hover:bg-bg-3"
17106
17170
  },
17107
17171
  // Control text scale shared with Button / MultiFilterPill: sm = 13px,
@@ -17653,7 +17717,31 @@ function SignatureEditor({
17653
17717
  ] });
17654
17718
  }
17655
17719
  SignatureEditor.displayName = "SignatureEditor";
17720
+ function brandScope(product) {
17721
+ return { "data-brand": product };
17722
+ }
17723
+ var BRAND_PRODUCTS = ["pro", "audit", "books", "tax"];
17724
+ var brandLabel = {
17725
+ pro: "Pro",
17726
+ audit: "Audit",
17727
+ books: "Books",
17728
+ tax: "Tax"
17729
+ };
17730
+ var BrandScopeContext = createContext("pro");
17731
+ function BrandScopeProvider({
17732
+ product,
17733
+ children
17734
+ }) {
17735
+ return /* @__PURE__ */ jsx(BrandScopeContext.Provider, { value: product, children });
17736
+ }
17737
+ function useBrandScope() {
17738
+ return useContext(BrandScopeContext);
17739
+ }
17740
+ var BrandScope = forwardRef(function BrandScope2({ product, children, ...props }, ref) {
17741
+ return /* @__PURE__ */ jsx(BrandScopeProvider, { product, children: /* @__PURE__ */ jsx("div", { ref, "data-brand": product, ...props, children }) });
17742
+ });
17743
+ BrandScope.displayName = "BrandScope";
17656
17744
 
17657
- 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 };
17745
+ 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 };
17658
17746
  //# sourceMappingURL=index.js.map
17659
17747
  //# sourceMappingURL=index.js.map