@carlonicora/nextjs-jsonapi 1.129.1 → 1.131.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/dist/{BlockNoteEditor-RG2YQDMQ.js → BlockNoteEditor-MCHL63TJ.js} +11 -11
  2. package/dist/BlockNoteEditor-MCHL63TJ.js.map +1 -0
  3. package/dist/{BlockNoteEditor-WIAQJ5HM.mjs → BlockNoteEditor-Q2GLKMFU.mjs} +4 -4
  4. package/dist/BlockNoteEditor-Q2GLKMFU.mjs.map +1 -0
  5. package/dist/billing/index.js +398 -389
  6. package/dist/billing/index.js.map +1 -1
  7. package/dist/billing/index.mjs +131 -122
  8. package/dist/billing/index.mjs.map +1 -1
  9. package/dist/{chunk-F54XZKPY.mjs → chunk-4TM6GOT3.mjs} +2135 -2063
  10. package/dist/chunk-4TM6GOT3.mjs.map +1 -0
  11. package/dist/{chunk-YQTMNZQB.js → chunk-PE6DSRTQ.js} +188 -116
  12. package/dist/chunk-PE6DSRTQ.js.map +1 -0
  13. package/dist/client/index.js +2 -2
  14. package/dist/client/index.mjs +1 -1
  15. package/dist/components/index.d.mts +20 -2
  16. package/dist/components/index.d.ts +20 -2
  17. package/dist/components/index.js +8 -2
  18. package/dist/components/index.js.map +1 -1
  19. package/dist/components/index.mjs +7 -1
  20. package/dist/contexts/index.d.mts +2 -0
  21. package/dist/contexts/index.d.ts +2 -0
  22. package/dist/contexts/index.js +2 -2
  23. package/dist/contexts/index.mjs +1 -1
  24. package/dist/features/help/index.js +32 -31
  25. package/dist/features/help/index.js.map +1 -1
  26. package/dist/features/help/index.mjs +3 -2
  27. package/dist/features/help/index.mjs.map +1 -1
  28. package/package.json +1 -1
  29. package/src/components/containers/ReactMarkdownContainer.tsx +2 -2
  30. package/src/components/containers/RoundPageContainerTitle.tsx +47 -40
  31. package/src/components/editors/BlockNoteDiffInlineContent.tsx +10 -10
  32. package/src/components/editors/BlockNoteEditor.tsx +2 -2
  33. package/src/components/forms/FormCheckbox.tsx +2 -2
  34. package/src/components/forms/FormFieldWrapper.tsx +1 -1
  35. package/src/components/forms/FormSlider.tsx +1 -1
  36. package/src/components/forms/GdprConsentCheckbox.tsx +1 -1
  37. package/src/components/hero/EntitySection.tsx +2 -1
  38. package/src/components/index.ts +1 -0
  39. package/src/components/typography/DetailField.tsx +35 -0
  40. package/src/components/typography/MicroLabel.tsx +21 -0
  41. package/src/components/typography/SectionHeader.tsx +18 -0
  42. package/src/components/typography/index.ts +6 -0
  43. package/src/contexts/SharedContext.tsx +2 -0
  44. package/src/features/assistant/components/parts/AssistantEmptyState.tsx +2 -1
  45. package/src/features/assistant/components/parts/AssistantSidebar.tsx +2 -1
  46. package/src/features/auth/components/buttons/GoogleSignInButton.tsx +1 -1
  47. package/src/features/auth/components/forms/Register.tsx +1 -1
  48. package/src/features/auth/components/forms/TwoFactorChallenge.tsx +3 -3
  49. package/src/features/auth/components/two-factor/BackupCodesDialog.tsx +1 -1
  50. package/src/features/auth/components/two-factor/TotpInput.tsx +2 -2
  51. package/src/features/auth/components/two-factor/TwoFactorSettings.tsx +3 -3
  52. package/src/features/billing/components/cards/BillingUsageSummaryCard.tsx +4 -4
  53. package/src/features/billing/components/cards/CustomerInfoCard.tsx +6 -6
  54. package/src/features/billing/components/cards/InvoicesSummaryCard.tsx +5 -5
  55. package/src/features/billing/components/cards/PaymentMethodSummaryCard.tsx +4 -4
  56. package/src/features/billing/components/cards/SubscriptionSummaryCard.tsx +4 -4
  57. package/src/features/billing/components/containers/BillingDashboardContainer.tsx +2 -2
  58. package/src/features/billing/components/widgets/BillingAlertBanner.tsx +8 -8
  59. package/src/features/billing/stripe-customer/components/containers/PaymentMethodsContainer.tsx +2 -2
  60. package/src/features/billing/stripe-customer/components/details/PaymentMethodCard.tsx +8 -2
  61. package/src/features/billing/stripe-customer/components/forms/PaymentMethodForm.tsx +1 -1
  62. package/src/features/billing/stripe-invoice/components/details/InvoiceDetails.tsx +16 -18
  63. package/src/features/billing/stripe-invoice/components/lists/InvoicesList.tsx +2 -2
  64. package/src/features/billing/stripe-invoice/components/widgets/InvoiceStatusBadge.tsx +8 -7
  65. package/src/features/billing/stripe-price/components/lists/PricesList.tsx +6 -13
  66. package/src/features/billing/stripe-product/components/containers/ProductsAdminContainer.tsx +3 -3
  67. package/src/features/billing/stripe-product/components/lists/ProductsList.tsx +4 -7
  68. package/src/features/billing/stripe-promotion-code/components/PromoCodeInput.tsx +6 -6
  69. package/src/features/billing/stripe-subscription/components/containers/SubscriptionsContainer.tsx +2 -2
  70. package/src/features/billing/stripe-subscription/components/details/SubscriptionDetails.tsx +10 -10
  71. package/src/features/billing/stripe-subscription/components/widgets/PricingCard.tsx +2 -2
  72. package/src/features/billing/stripe-subscription/components/widgets/ProductPricingRow.tsx +2 -1
  73. package/src/features/billing/stripe-subscription/components/widgets/ProrationPreview.tsx +1 -1
  74. package/src/features/billing/stripe-subscription/components/widgets/SubscriptionStatusBadge.tsx +12 -11
  75. package/src/features/billing/stripe-subscription/components/wizards/WizardStepPaymentMethod.tsx +2 -1
  76. package/src/features/billing/stripe-subscription/components/wizards/WizardStepReview.tsx +10 -13
  77. package/src/features/billing/stripe-usage/components/containers/UsageContainer.tsx +2 -2
  78. package/src/features/billing/stripe-usage/components/details/UsageSummaryCard.tsx +6 -6
  79. package/src/features/billing/stripe-usage/components/lists/UsageHistoryTable.tsx +3 -2
  80. package/src/features/company/components/details/CompanyContent.tsx +4 -7
  81. package/src/features/company/components/details/TokenStatusIndicator.tsx +5 -5
  82. package/src/features/company/components/forms/CompanyDeleter.tsx +1 -1
  83. package/src/features/company/components/forms/CompanyEditor.tsx +3 -2
  84. package/src/features/content/components/lists/ContentsList.tsx +2 -1
  85. package/src/features/feature/components/forms/FormFeatures.tsx +6 -1
  86. package/src/features/help/components/HelpTOC.tsx +2 -3
  87. package/src/features/how-to/components/containers/HowToCommand.tsx +3 -3
  88. package/src/features/how-to/components/containers/HowToCommandViewer.tsx +4 -1
  89. package/src/features/notification/components/containers/NotificationsListContainer.tsx +1 -1
  90. package/src/features/notification/components/modals/NotificationModal.tsx +2 -2
  91. package/src/features/oauth/components/OAuthClientCard.tsx +1 -1
  92. package/src/features/oauth/components/OAuthClientDetail.tsx +5 -9
  93. package/src/features/oauth/components/OAuthClientForm.tsx +3 -3
  94. package/src/features/oauth/components/OAuthClientList.tsx +5 -4
  95. package/src/features/oauth/components/OAuthClientSecretDisplay.tsx +3 -3
  96. package/src/features/oauth/components/OAuthRedirectUriInput.tsx +1 -1
  97. package/src/features/oauth/components/OAuthScopeSelector.tsx +2 -2
  98. package/src/features/oauth/components/consent/OAuthConsentHeader.tsx +1 -1
  99. package/src/features/oauth/components/consent/OAuthConsentScreen.tsx +1 -1
  100. package/src/features/oauth/components/consent/OAuthScopeList.tsx +2 -3
  101. package/src/features/rbac/components/RbacContainer.tsx +1 -1
  102. package/src/features/rbac/components/RbacPermissionCell.tsx +2 -2
  103. package/src/features/rbac/components/RbacPermissionPicker.tsx +3 -3
  104. package/src/features/referral/components/ReferralWidget.tsx +7 -6
  105. package/src/features/waitlist/components/forms/WaitlistForm.tsx +3 -2
  106. package/src/features/waitlist/components/forms/WaitlistQuestionnaireRenderer.tsx +1 -1
  107. package/src/features/waitlist/components/lists/WaitlistList.tsx +2 -1
  108. package/src/features/waitlist/components/sections/WaitlistConfirmation.tsx +3 -2
  109. package/src/features/waitlist/components/sections/WaitlistSuccessState.tsx +2 -1
  110. package/src/features/waitlist/hooks/useWaitlistTableStructure.tsx +1 -1
  111. package/src/shadcnui/custom/link.tsx +7 -1
  112. package/src/shadcnui/ui/alert.tsx +1 -1
  113. package/src/shadcnui/ui/badge.tsx +7 -0
  114. package/src/shadcnui/ui/button.tsx +1 -1
  115. package/src/shadcnui/ui/chart.tsx +1 -3
  116. package/dist/BlockNoteEditor-RG2YQDMQ.js.map +0 -1
  117. package/dist/BlockNoteEditor-WIAQJ5HM.mjs.map +0 -1
  118. package/dist/chunk-F54XZKPY.mjs.map +0 -1
  119. package/dist/chunk-YQTMNZQB.js.map +0 -1
@@ -174,7 +174,7 @@ function AlertTitle({ className, ...props }) {
174
174
  {
175
175
  "data-slot": "alert-title",
176
176
  className: _chunkLBMNRFCYjs.cn.call(void 0,
177
- "font-medium group-has-[>svg]/alert:col-start-2 [&_a]:hover:text-foreground [&_a]:underline [&_a]:underline-offset-3",
177
+ "text-sm font-medium group-has-[>svg]/alert:col-start-2 [&_a]:hover:text-foreground [&_a]:underline [&_a]:underline-offset-3",
178
178
  className
179
179
  ),
180
180
  ...props
@@ -222,7 +222,7 @@ var buttonVariants = _classvarianceauthority.cva.call(void 0,
222
222
  },
223
223
  size: {
224
224
  default: "h-7 gap-1 px-2 text-xs/relaxed has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5",
225
- xs: "h-5 gap-1 rounded-sm px-2 text-xs has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-2.5",
225
+ xs: "h-5 gap-1 rounded-sm px-2 text-xs/relaxed has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-2.5",
226
226
  sm: "h-6 gap-1 px-2 text-xs/relaxed has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3",
227
227
  lg: "h-8 gap-1 px-2.5 text-xs/relaxed has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 [&_svg:not([class*='size-'])]:size-4",
228
228
  icon: "size-7 [&_svg:not([class*='size-'])]:size-3.5",
@@ -501,6 +501,13 @@ var badgeVariants = _classvarianceauthority.cva.call(void 0,
501
501
  ghost: "hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",
502
502
  link: "text-primary underline-offset-4 hover:underline",
503
503
  warning: "bg-warning text-warning-foreground [a]:hover:bg-warning/80",
504
+ softGreen: "bg-green-500/10 text-green-700 dark:bg-green-500/15 dark:text-green-400",
505
+ softRed: "bg-red-500/10 text-red-700 dark:bg-red-500/15 dark:text-red-400",
506
+ softBlue: "bg-blue-500/10 text-blue-700 dark:bg-blue-500/15 dark:text-blue-400",
507
+ softYellow: "bg-yellow-500/10 text-yellow-700 dark:bg-yellow-500/15 dark:text-yellow-400",
508
+ softGray: "bg-gray-500/10 text-gray-700 dark:bg-gray-500/15 dark:text-gray-400",
509
+ softOrange: "bg-orange-500/10 text-orange-700 dark:bg-orange-500/15 dark:text-orange-400",
510
+ softAmber: "bg-amber-500/10 text-amber-700 dark:bg-amber-500/15 dark:text-amber-400",
504
511
  blue: "bg-sky-500 text-primary-foreground [a]:hover:bg-sky-500/80",
505
512
  green: "bg-emerald-500 text-primary-foreground [a]:hover:bg-emerald-500/80",
506
513
  red: "bg-red-500 text-primary-foreground [a]:hover:bg-red-500/80",
@@ -1168,7 +1175,7 @@ function ChartTooltipContent({
1168
1175
  nestLabel ? tooltipLabel : null,
1169
1176
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-muted-foreground", children: _optionalChain([itemConfig, 'optionalAccess', _25 => _25.label]) || item.name })
1170
1177
  ] }),
1171
- item.value && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-foreground font-mono font-medium tabular-nums", children: item.value.toLocaleString() })
1178
+ item.value && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-foreground font-medium tabular-nums", children: item.value.toLocaleString() })
1172
1179
  ]
1173
1180
  }
1174
1181
  )
@@ -5296,7 +5303,17 @@ _chunk7QVYU63Ejs.__name.call(void 0, KanbanOverlay, "KanbanOverlay");
5296
5303
 
5297
5304
  var Link = React10.forwardRef(({ className, href, children, ...props }, ref) => {
5298
5305
  const NextIntlLink = _chunkXTLTQQ7Xjs.getI18nLink.call(void 0, );
5299
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, NextIntlLink, { prefetch: false, ref, href, className: _chunkLBMNRFCYjs.cn.call(void 0, `font-medium`, className), ...props, children });
5306
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
5307
+ NextIntlLink,
5308
+ {
5309
+ prefetch: false,
5310
+ ref,
5311
+ href,
5312
+ className: _chunkLBMNRFCYjs.cn.call(void 0, "text-primary font-medium hover:underline", className),
5313
+ ...props,
5314
+ children
5315
+ }
5316
+ );
5300
5317
  });
5301
5318
  Link.displayName = "Link";
5302
5319
 
@@ -8137,7 +8154,7 @@ function FormFieldWrapper({
8137
8154
  render: ({ field, fieldState }) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Field, { orientation, className, "data-invalid": !!fieldState.error, "data-testid": testId, children: [
8138
8155
  label && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, FieldLabel, { children: [
8139
8156
  label,
8140
- isRequired && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-destructive ml-1 font-semibold", children: "*" })
8157
+ isRequired && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-1 text-destructive", children: "*" })
8141
8158
  ] }),
8142
8159
  children(field, fieldState),
8143
8160
  description && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FieldDescription, { children: description }),
@@ -8548,6 +8565,55 @@ _chunk7QVYU63Ejs.__name.call(void 0, UserResentInvitationEmail, "UserResentInvit
8548
8565
 
8549
8566
 
8550
8567
 
8568
+ // src/components/typography/SectionHeader.tsx
8569
+
8570
+ function SectionHeader({ level = 3, className, children, ...props }) {
8571
+ const Tag = level === 2 ? "h2" : "h3";
8572
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Tag, { "data-slot": "section-header", className: _chunkLBMNRFCYjs.cn.call(void 0, "text-lg font-semibold", className), ...props, children });
8573
+ }
8574
+ _chunk7QVYU63Ejs.__name.call(void 0, SectionHeader, "SectionHeader");
8575
+
8576
+ // src/components/typography/MicroLabel.tsx
8577
+
8578
+ function MicroLabel({ as: Tag = "h4", className, children, ...props }) {
8579
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
8580
+ Tag,
8581
+ {
8582
+ "data-slot": "micro-label",
8583
+ className: _chunkLBMNRFCYjs.cn.call(void 0, "text-muted-foreground text-xs font-semibold tracking-wider uppercase", className),
8584
+ ...props,
8585
+ children
8586
+ }
8587
+ );
8588
+ }
8589
+ _chunk7QVYU63Ejs.__name.call(void 0, MicroLabel, "MicroLabel");
8590
+
8591
+ // src/components/typography/DetailField.tsx
8592
+
8593
+ function DetailField({
8594
+ label,
8595
+ value,
8596
+ horizontal = false,
8597
+ labelWidth,
8598
+ className,
8599
+ children,
8600
+ ...props
8601
+ }) {
8602
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
8603
+ "div",
8604
+ {
8605
+ "data-slot": "detail-field",
8606
+ className: _chunkLBMNRFCYjs.cn.call(void 0, horizontal ? "flex items-baseline gap-2" : "flex flex-col gap-0.5", className),
8607
+ ...props,
8608
+ children: [
8609
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: _chunkLBMNRFCYjs.cn.call(void 0, "text-muted-foreground text-xs", horizontal && labelWidth && _chunkLBMNRFCYjs.cn.call(void 0, "shrink-0", labelWidth)), children: label }),
8610
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "text-sm", children: _nullishCoalesce(value, () => ( children)) })
8611
+ ]
8612
+ }
8613
+ );
8614
+ }
8615
+ _chunk7QVYU63Ejs.__name.call(void 0, DetailField, "DetailField");
8616
+
8551
8617
  // src/features/feature/components/forms/FormFeatures.tsx
8552
8618
 
8553
8619
  function FormFeatures({ form, name, features, featureField = "featureIds" }) {
@@ -8565,7 +8631,7 @@ function FormFeatures({ form, name, features, featureField = "featureIds" }) {
8565
8631
  }, "toggleFeature");
8566
8632
  const isFeatureChecked = /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, (feature) => selectedFeatures.includes(feature.id), "isFeatureChecked");
8567
8633
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex w-full flex-col", children: [
8568
- name && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "mb-4 border-b text-lg font-semibold", children: name }),
8634
+ name && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, className: "mb-4 border-b", children: name }),
8569
8635
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ScrollArea, { className: "h-[40vh]", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex flex-col gap-y-2 pr-4", children: features.filter((feature) => !feature.isCore).map((feature) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center", children: [
8570
8636
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
8571
8637
  Checkbox,
@@ -9972,7 +10038,7 @@ FileInput.displayName = "FileInput";
9972
10038
  var _dynamic = require('next/dynamic'); var _dynamic2 = _interopRequireDefault(_dynamic);
9973
10039
 
9974
10040
 
9975
- var BlockNoteEditor = _dynamic2.default.call(void 0, () => Promise.resolve().then(() => _interopRequireWildcard(require("./BlockNoteEditor-RG2YQDMQ.js"))), {
10041
+ var BlockNoteEditor = _dynamic2.default.call(void 0, () => Promise.resolve().then(() => _interopRequireWildcard(require("./BlockNoteEditor-MCHL63TJ.js"))), {
9976
10042
  ssr: false
9977
10043
  });
9978
10044
  var BlockNoteEditorContainer = React.default.memo(/* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, function EditorContainer(props) {
@@ -10079,10 +10145,10 @@ function FormCheckbox({ form, id, name, labelBefore, description, isRequired })
10079
10145
  }, "label");
10080
10146
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex w-full flex-col", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FormFieldWrapper, { form, name: id, orientation: "horizontal", children: (field) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex gap-x-4", children: [
10081
10147
  labelBefore && label(),
10082
- labelBefore && isRequired && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-destructive ml-2 font-semibold", children: "*" }),
10148
+ labelBefore && isRequired && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-1 text-destructive", children: "*" }),
10083
10149
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Checkbox, { id, checked: _nullishCoalesce(field.value, () => ( false)), onCheckedChange: field.onChange }),
10084
10150
  !labelBefore && label(),
10085
- !labelBefore && isRequired && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-destructive ml-2 font-semibold", children: "*" })
10151
+ !labelBefore && isRequired && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-1 text-destructive", children: "*" })
10086
10152
  ] }) }) });
10087
10153
  }
10088
10154
  _chunk7QVYU63Ejs.__name.call(void 0, FormCheckbox, "FormCheckbox");
@@ -10927,7 +10993,7 @@ function FormSlider({
10927
10993
  }) {
10928
10994
  const value = _reacthookform.useWatch.call(void 0, { control: form.control, name: id });
10929
10995
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex w-full flex-col", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FormFieldWrapper, { form, name: id, label: name, description, children: () => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { children: [
10930
- showPercentage && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "text-muted-foreground mb-2 flex w-full justify-center text-xs", children: `${value}%` }),
10996
+ showPercentage && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "text-muted-foreground mb-2 flex w-full justify-center text-xs/relaxed", children: `${value}%` }),
10931
10997
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
10932
10998
  Slider,
10933
10999
  {
@@ -11016,7 +11082,7 @@ function GdprConsentCheckbox({
11016
11082
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-1 leading-none", children: [
11017
11083
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { className: "text-sm font-normal", children: [
11018
11084
  label,
11019
- required && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-destructive ml-1", children: "*" })
11085
+ required && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-1 text-destructive", children: "*" })
11020
11086
  ] }),
11021
11087
  description && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FieldDescription, { className: "text-xs", children: description })
11022
11088
  ] })
@@ -11925,7 +11991,7 @@ function CompanyContent({ company, actions }) {
11925
11991
  if (!company) return null;
11926
11992
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-col gap-y-8", children: [
11927
11993
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex w-full items-center justify-between", children: [
11928
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-lg font-semibold", children: company.name }),
11994
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: company.name }),
11929
11995
  actions && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex items-center gap-x-2", children: actions })
11930
11996
  ] }),
11931
11997
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-start gap-x-6", children: [
@@ -11956,11 +12022,11 @@ function CompanyContent({ company, actions }) {
11956
12022
  ] })
11957
12023
  ] }),
11958
12024
  company.fiscal_data && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-col gap-y-3", children: [
11959
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "text-muted-foreground text-xs font-semibold tracking-wider uppercase", children: t("company.sections.fiscal_data") }),
12025
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MicroLabel, { children: t("company.sections.fiscal_data") }),
11960
12026
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FiscalDataDisplay, { fiscalData: company.fiscal_data })
11961
12027
  ] }),
11962
12028
  hasAddressDetails(company) && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-col gap-y-3", children: [
11963
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "text-muted-foreground text-xs font-semibold tracking-wider uppercase", children: t("company.sections.address_details") }),
12029
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MicroLabel, { children: t("company.sections.address_details") }),
11964
12030
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "grid grid-cols-1 gap-4 md:grid-cols-3", children: [
11965
12031
  company.street && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AttributeElement, { title: t("company.fields.street.label"), value: company.street }),
11966
12032
  company.street_number && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AttributeElement, { title: t("company.fields.street_number.label"), value: company.street_number }),
@@ -12008,20 +12074,20 @@ function TokenStatusIndicator({ className, size = "md", showExtraPages = true })
12008
12074
  const textSize = textSizeClasses[size];
12009
12075
  const getBatteryIcon = /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, () => {
12010
12076
  if (percentage > 75) {
12011
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.BatteryFull, { className: _chunkLBMNRFCYjs.cn.call(void 0, iconSize, "text-green-500") });
12077
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.BatteryFull, { className: _chunkLBMNRFCYjs.cn.call(void 0, iconSize, "text-success") });
12012
12078
  } else if (percentage > 50) {
12013
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.BatteryMedium, { className: _chunkLBMNRFCYjs.cn.call(void 0, iconSize, "text-green-500") });
12079
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.BatteryMedium, { className: _chunkLBMNRFCYjs.cn.call(void 0, iconSize, "text-success") });
12014
12080
  } else if (percentage >= 25) {
12015
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.BatteryLow, { className: _chunkLBMNRFCYjs.cn.call(void 0, iconSize, "text-yellow-500") });
12081
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.BatteryLow, { className: _chunkLBMNRFCYjs.cn.call(void 0, iconSize, "text-warning") });
12016
12082
  } else {
12017
12083
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Battery, { className: _chunkLBMNRFCYjs.cn.call(void 0, iconSize, "text-destructive") });
12018
12084
  }
12019
12085
  }, "getBatteryIcon");
12020
12086
  const getStatusColor = /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, () => {
12021
12087
  if (percentage > 50) {
12022
- return "text-green-500";
12088
+ return "text-success";
12023
12089
  } else if (percentage >= 25) {
12024
- return "text-yellow-500";
12090
+ return "text-warning";
12025
12091
  } else {
12026
12092
  return "text-destructive";
12027
12093
  }
@@ -12245,7 +12311,7 @@ function CompanyDeleterInternal({ company, isAdministrator: isAdministrator2 })
12245
12311
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex w-full flex-col", children: [
12246
12312
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Label, { className: "flex items-center", children: [
12247
12313
  t(`company.fields.name.label`),
12248
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-destructive ml-2 font-semibold", children: "*" })
12314
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-1 text-destructive", children: "*" })
12249
12315
  ] }),
12250
12316
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
12251
12317
  Input,
@@ -12487,7 +12553,7 @@ function CompanyEditorInternal({
12487
12553
  dialogOpen,
12488
12554
  onDialogOpenChange: handleDialogOpenChange,
12489
12555
  children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex w-full items-start justify-between gap-x-4", children: [
12490
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex w-96 flex-col justify-start gap-y-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FileUploader, { value: files, onValueChange: setFiles, dropzoneOptions: dropzone2, className: "w-full p-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FileInput, { className: "text-neutral-300 outline-dashed", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex w-full flex-col items-center justify-center pt-3 pb-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex w-full flex-col items-center justify-center pt-3 pb-4", children: file || _optionalChain([company, 'optionalAccess', _342 => _342.logo]) ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
12556
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex w-96 flex-col justify-start gap-y-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FileUploader, { value: files, onValueChange: setFiles, dropzoneOptions: dropzone2, className: "w-full p-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FileInput, { className: "text-muted-foreground/50 outline-dashed", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex w-full flex-col items-center justify-center pt-3 pb-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex w-full flex-col items-center justify-center pt-3 pb-4", children: file || _optionalChain([company, 'optionalAccess', _342 => _342.logo]) ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
12491
12557
  _image2.default,
12492
12558
  {
12493
12559
  src: file ? URL.createObjectURL(file) : _optionalChain([company, 'optionalAccess', _343 => _343.logo]) || "",
@@ -12523,7 +12589,7 @@ function CompanyEditorInternal({
12523
12589
  }
12524
12590
  }
12525
12591
  ),
12526
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "mt-2 text-sm font-semibold", children: t(`company.sections.fiscal_data`) }),
12592
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { className: "mt-2", children: t(`company.sections.fiscal_data`) }),
12527
12593
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ItalianFiscalData_default, { ref: fiscalRef, initialData: parseFiscalData(_optionalChain([company, 'optionalAccess', _344 => _344.fiscal_data])) })
12528
12594
  ] }),
12529
12595
  canAccessFeatures && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex w-96 flex-col justify-start gap-y-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ScrollArea, { className: "h-max", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, FormFeatures, { form, name: t(`company.features_and_modules`), features }) }) })
@@ -14522,7 +14588,7 @@ function ReactMarkdownContainer({
14522
14588
  tr: /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, ({ children }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "tr", { className: "even:bg-gray-50", children }), "tr"),
14523
14589
  ul: /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, ({ children }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "ul", { className: `list-disc ${size === "small" ? "pl-3" : "pl-4"}`, children }), "ul"),
14524
14590
  ol: /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, ({ children }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "ol", { className: `list-decimal ${size === "small" ? "pl-3" : "pl-4"}`, children }), "ol"),
14525
- h1: /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, ({ children }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h1", { className: size === "small" ? "my-1 mt-2 text-sm font-bold" : "my-2 mt-4 text-3xl font-medium", children }), "h1"),
14591
+ h1: /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, ({ children }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h1", { className: size === "small" ? "my-1 mt-2 text-sm font-bold" : "my-2 mt-4 text-3xl font-semibold", children }), "h1"),
14526
14592
  h2: /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, ({ children }) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
14527
14593
  "h2",
14528
14594
  {
@@ -14542,7 +14608,7 @@ function ReactMarkdownContainer({
14542
14608
  "button",
14543
14609
  {
14544
14610
  onClick: handleToggle,
14545
- className: "flex items-center gap-1 rounded-md px-3 py-1.5 text-sm text-gray-600 transition-colors hover:bg-gray-100 hover:text-gray-900",
14611
+ className: "text-primary flex items-center gap-1 rounded-md px-3 py-1.5 text-sm font-medium transition-colors hover:bg-gray-100 hover:underline",
14546
14612
  "aria-label": isExpanded ? t("show_less") : t("show_more"),
14547
14613
  children: [
14548
14614
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { children: isExpanded ? t("show_less") : t("show_more") }),
@@ -14565,36 +14631,39 @@ function RoundPageContainerTitle({
14565
14631
  }) {
14566
14632
  const { title } = useSharedContext();
14567
14633
  const isMobile = _chunkLBMNRFCYjs.useIsMobile.call(void 0, );
14568
- return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: _chunkLBMNRFCYjs.cn.call(void 0, `flex w-full flex-row items-center gap-x-2 border-b p-4 justify-between`), children: [
14569
- !isMobile ? /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex w-full gap-x-4", children: [
14570
- /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-muted-foreground flex items-center gap-x-2 text-lg font-light whitespace-nowrap", children: [
14634
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex w-full flex-col border-b", children: [
14635
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: _chunkLBMNRFCYjs.cn.call(void 0, `flex w-full flex-row items-center gap-x-2 p-4 justify-between`), children: [
14636
+ !isMobile ? /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex w-full gap-x-4", children: [
14637
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-muted-foreground flex items-center gap-x-2 text-lg font-light whitespace-nowrap", children: [
14638
+ title.titleActions,
14639
+ module && module.icon ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, module.icon, { className: "text-primary h-6 w-6" }) : title.icon,
14640
+ title.type
14641
+ ] }),
14642
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: _chunkLBMNRFCYjs.cn.call(void 0, "text-primary w-full text-xl font-semibold"), children: title.element })
14643
+ ] }) : /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-muted-foreground flex min-w-0 items-center gap-x-2 text-base font-light", children: [
14571
14644
  title.titleActions,
14572
- module && module.icon ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, module.icon, { className: "text-primary h-6 w-6" }) : title.icon,
14573
- title.type
14645
+ module && module.icon ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, module.icon, { className: "text-primary h-5 w-5 shrink-0" }) : title.icon,
14646
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "truncate", children: title.type })
14574
14647
  ] }),
14575
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: _chunkLBMNRFCYjs.cn.call(void 0, "text-primary w-full text-xl font-semibold"), children: title.element })
14576
- ] }) : /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-muted-foreground flex min-w-0 items-center gap-x-2 text-base font-light", children: [
14577
- title.titleActions,
14578
- module && module.icon ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, module.icon, { className: "text-primary h-5 w-5 shrink-0" }) : title.icon,
14579
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "truncate", children: title.type })
14580
- ] }),
14581
- (title.functions || details) && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex shrink-0 items-center gap-x-2", children: [
14582
- title.functions,
14583
- details && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Tooltip2, { children: [
14584
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TooltipTrigger, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
14585
- Button,
14586
- {
14587
- render: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", {}),
14588
- nativeButton: false,
14589
- variant: showDetails ? `ghost` : `default`,
14590
- onClick: () => setShowDetails(!showDetails),
14591
- className: _chunkLBMNRFCYjs.cn.call(void 0, `cursor-pointer`),
14592
- children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.InfoIcon, {})
14593
- }
14594
- ) }),
14595
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TooltipContent, { children: showDetails ? "Hide details" : "Show details" })
14648
+ (title.functions || details) && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex shrink-0 items-center gap-x-2", children: [
14649
+ title.functions,
14650
+ details && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Tooltip2, { children: [
14651
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TooltipTrigger, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
14652
+ Button,
14653
+ {
14654
+ render: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", {}),
14655
+ nativeButton: false,
14656
+ variant: showDetails ? `ghost` : `default`,
14657
+ onClick: () => setShowDetails(!showDetails),
14658
+ className: _chunkLBMNRFCYjs.cn.call(void 0, `cursor-pointer`),
14659
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.InfoIcon, {})
14660
+ }
14661
+ ) }),
14662
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TooltipContent, { children: showDetails ? "Hide details" : "Show details" })
14663
+ ] })
14596
14664
  ] })
14597
- ] })
14665
+ ] }),
14666
+ title.actionBar && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { "data-testid": "round-page-action-bar", className: "flex w-full items-center border-t px-4 py-2", children: title.actionBar })
14598
14667
  ] });
14599
14668
  }
14600
14669
  _chunk7QVYU63Ejs.__name.call(void 0, RoundPageContainerTitle, "RoundPageContainerTitle");
@@ -16762,7 +16831,7 @@ _chunk7QVYU63Ejs.__name.call(void 0, EntityHeroMetaRow, "EntityHeroMetaRow");
16762
16831
 
16763
16832
  function EntitySection({ title, columns, children, className }) {
16764
16833
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: _chunkLBMNRFCYjs.cn.call(void 0, "flex w-full flex-col gap-y-3", className), children: [
16765
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "text-muted-foreground text-xs font-semibold tracking-wider uppercase", children: title }),
16834
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MicroLabel, { as: "h3", children: title }),
16766
16835
  columns ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
16767
16836
  "div",
16768
16837
  {
@@ -17052,7 +17121,7 @@ function Register() {
17052
17121
  children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
17053
17122
  Button,
17054
17123
  {
17055
- className: "w-full bg-white hover:bg-gray-50 text-gray-700 border border-gray-300",
17124
+ className: "text-muted-foreground w-full border border-gray-300 bg-white hover:bg-gray-50",
17056
17125
  variant: "outline",
17057
17126
  type: "button",
17058
17127
  children: [
@@ -17291,7 +17360,7 @@ Keep these codes safe. Each code can only be used once.`;
17291
17360
  ] })
17292
17361
  ] })
17293
17362
  ] }) : /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-col gap-4", children: [
17294
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "grid grid-cols-2 gap-2 p-4 bg-muted rounded-lg font-mono text-sm", children: codes.map((code, index) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "text-center", "data-testid": `backup-code-${index}`, children: code }, index)) }),
17363
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "grid grid-cols-2 gap-2 p-4 bg-muted rounded-lg tabular-nums text-sm", children: codes.map((code, index) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "text-center", "data-testid": `backup-code-${index}`, children: code }, index)) }),
17295
17364
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex gap-2", children: [
17296
17365
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Button, { variant: "outline", className: "flex-1", onClick: handleCopyAll, children: [
17297
17366
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Copy, { className: "h-4 w-4 mr-2" }),
@@ -17367,12 +17436,12 @@ function TotpInput({ onComplete, disabled = false, autoFocus = true, error }) {
17367
17436
  onKeyDown: (e) => handleKeyDown(index, e),
17368
17437
  onPaste: handlePaste,
17369
17438
  disabled,
17370
- className: `w-12 h-14 text-center text-2xl font-mono ${error ? "border-destructive" : ""}`,
17439
+ className: `w-12 h-14 text-center text-2xl tabular-nums ${error ? "border-destructive" : ""}`,
17371
17440
  "data-testid": `totp-input-${index}`
17372
17441
  },
17373
17442
  index
17374
17443
  )) }),
17375
- error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-destructive", "data-testid": "totp-error", children: error })
17444
+ error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", "data-testid": "totp-error", children: error })
17376
17445
  ] });
17377
17446
  }
17378
17447
  _chunk7QVYU63Ejs.__name.call(void 0, TotpInput, "TotpInput");
@@ -17848,7 +17917,7 @@ function TwoFactorSettings() {
17848
17917
  const isEnabled = _nullishCoalesce(_optionalChain([status, 'optionalAccess', _504 => _504.isEnabled]), () => ( false));
17849
17918
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Card, { children: [
17850
17919
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardHeader, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center gap-2", children: [
17851
- isEnabled ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ShieldCheck, { className: "h-6 w-6 text-green-600" }) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ShieldAlert, { className: "h-6 w-6 text-yellow-600" }),
17920
+ isEnabled ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ShieldCheck, { className: "text-success h-6 w-6" }) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ShieldAlert, { className: "text-warning h-6 w-6" }),
17852
17921
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { children: [
17853
17922
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { children: t("auth.two_factor.title") }),
17854
17923
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardDescription, { children: isEnabled ? t("auth.two_factor.enabled_description") : t("auth.two_factor.disabled_description") })
@@ -17889,7 +17958,7 @@ function TwoFactorSettings() {
17889
17958
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Separator, {}),
17890
17959
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-between", children: [
17891
17960
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { children: [
17892
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "font-medium text-green-600", children: t("auth.two_factor.enable_2fa") }),
17961
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "text-success font-medium", children: t("auth.two_factor.enable_2fa") }),
17893
17962
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-muted-foreground", children: t("auth.two_factor.enable_description") })
17894
17963
  ] }),
17895
17964
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Button, { onClick: handleEnable2FA, disabled: isEnabling, children: isEnabling ? t("common.loading") : t("auth.two_factor.enable_button") })
@@ -17935,7 +18004,7 @@ function GoogleSignInButton({ referralCode }) {
17935
18004
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Link, { href: buildGoogleOAuthUrl(), className: "flex w-full justify-end", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
17936
18005
  Button,
17937
18006
  {
17938
- className: "w-full bg-white hover:bg-gray-50 text-gray-700 border border-gray-300",
18007
+ className: "text-muted-foreground w-full border border-gray-300 bg-white hover:bg-gray-50",
17939
18008
  variant: "outline",
17940
18009
  "data-testid": "page-login-button-google",
17941
18010
  children: [
@@ -18673,7 +18742,7 @@ function TwoFactorChallenge() {
18673
18742
  const hasBackup = availableMethods.includes("backup");
18674
18743
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _jsxruntime.Fragment, { children: [
18675
18744
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, CardHeader, { "data-testid": "page-2fa-challenge", children: [
18676
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { className: "text-primary text-2xl", children: t("auth.two_factor.verification_required") }),
18745
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { className: "text-primary", children: t("auth.two_factor.verification_required") }),
18677
18746
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardDescription, { children: t("auth.two_factor.enter_verification_code") })
18678
18747
  ] }),
18679
18748
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardContent, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Tabs, { defaultValue: hasTotp ? "totp" : hasPasskey ? "passkey" : "backup", children: [
@@ -18708,12 +18777,12 @@ function TwoFactorChallenge() {
18708
18777
  onChange: (e) => setBackupCode(e.target.value.toUpperCase()),
18709
18778
  placeholder: "XXXXXXXX",
18710
18779
  maxLength: 8,
18711
- className: `w-48 text-center font-mono uppercase ${backupError ? "border-destructive" : ""}`,
18780
+ className: `w-48 text-center tabular-nums uppercase ${backupError ? "border-destructive" : ""}`,
18712
18781
  disabled: isVerifying,
18713
18782
  "data-testid": "backup-code-input"
18714
18783
  }
18715
18784
  ),
18716
- backupError && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-destructive", children: backupError }),
18785
+ backupError && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", children: backupError }),
18717
18786
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
18718
18787
  Button,
18719
18788
  {
@@ -18735,7 +18804,7 @@ _chunk7QVYU63Ejs.__name.call(void 0, TwoFactorChallenge, "TwoFactorChallenge");
18735
18804
  function ContentsList({ contentList }) {
18736
18805
  const t = _nextintl.useTranslations.call(void 0, );
18737
18806
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex min-h-0 w-full flex-col overflow-y-auto", children: [
18738
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-xl font-semibold", children: t(`content.news`) }),
18807
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: t(`content.news`) }),
18739
18808
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex flex-col", children: contentList.map((content) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ContentsListElement, { content }, content.id)) })
18740
18809
  ] });
18741
18810
  }
@@ -18892,7 +18961,7 @@ function HowToCommandViewer({ howTo, onBack, onStartChat }) {
18892
18961
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ArrowLeft, { className: "h-4 w-4" }),
18893
18962
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-1", children: t("howto.command.back") })
18894
18963
  ] }),
18895
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "flex-1 truncate text-lg font-semibold", children: howTo.name }),
18964
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, className: "flex-1 truncate", children: howTo.name }),
18896
18965
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-muted-foreground flex items-center gap-1.5 text-sm", children: [
18897
18966
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.BookOpen, { className: "h-4 w-4" }),
18898
18967
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { children: t("howto.reading_time.label", { minutes: readingTime }) })
@@ -19064,15 +19133,15 @@ function HowToCommand({ pathname, extraGroups, onStartChat }) {
19064
19133
  ] }),
19065
19134
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-muted-foreground flex items-center justify-center gap-4 border-t px-3 py-2 text-xs", children: [
19066
19135
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { className: "flex items-center gap-1", children: [
19067
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "kbd", { className: "bg-muted rounded border px-1.5 py-0.5 font-mono text-xs", children: "\u23CE" }),
19136
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "kbd", { className: "bg-muted rounded border px-1.5 py-0.5 tabular-nums text-xs", children: "\u23CE" }),
19068
19137
  t(`howto.command.keyboard.select`)
19069
19138
  ] }),
19070
19139
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { className: "flex items-center gap-1", children: [
19071
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "kbd", { className: "bg-muted rounded border px-1.5 py-0.5 font-mono text-xs", children: "\u2191\u2193" }),
19140
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "kbd", { className: "bg-muted rounded border px-1.5 py-0.5 tabular-nums text-xs", children: "\u2191\u2193" }),
19072
19141
  t(`howto.command.keyboard.navigate`)
19073
19142
  ] }),
19074
19143
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { className: "flex items-center gap-1", children: [
19075
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "kbd", { className: "bg-muted rounded border px-1.5 py-0.5 font-mono text-xs", children: t(`howto.keyboard.esc`) }),
19144
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "kbd", { className: "bg-muted rounded border px-1.5 py-0.5 tabular-nums text-xs", children: t(`howto.keyboard.esc`) }),
19076
19145
  t(`howto.command.keyboard.close`)
19077
19146
  ] })
19078
19147
  ] })
@@ -19379,7 +19448,7 @@ function AssistantSidebar({ threads, activeId, onSelect, onNew }) {
19379
19448
  const renderSection = /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, (label, items) => {
19380
19449
  if (items.length === 0) return null;
19381
19450
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "mb-2", children: [
19382
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "text-muted-foreground px-2 py-1 text-xs font-semibold uppercase tracking-wider", children: label }),
19451
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MicroLabel, { className: "px-2 py-1", children: label }),
19383
19452
  items.map((thread) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
19384
19453
  "button",
19385
19454
  {
@@ -19469,7 +19538,7 @@ function AssistantEmptyState({ onSend, operatorMode = false, onOperatorModeChang
19469
19538
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex h-full w-full items-center justify-center p-10", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex w-full max-w-2xl flex-col gap-6", children: [
19470
19539
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-center", children: [
19471
19540
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "mx-auto mb-3 flex h-10 w-10 items-center justify-center rounded-full bg-gradient-to-br from-blue-400 to-violet-500 text-white", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Sparkles, { className: "h-5 w-5" }) }),
19472
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "text-foreground text-xl font-semibold", children: t("features.assistant.empty_state.title") }),
19541
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { children: t("features.assistant.empty_state.title") }),
19473
19542
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground mt-1 text-sm", children: t("features.assistant.empty_state.subtitle") })
19474
19543
  ] }),
19475
19544
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AssistantComposer, { value: draft, onValueChange: setDraft, onSend }),
@@ -20314,7 +20383,7 @@ function NotificationsListContainerContent() {
20314
20383
  const t = _nextintl.useTranslations.call(void 0, );
20315
20384
  const { notifications: _notifications, isLoading: _isLoading, error } = useNotificationContext();
20316
20385
  if (error) {
20317
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex items-center justify-center p-8 text-center", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-destructive text-sm", children: [
20386
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex items-center justify-center p-8 text-center", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-destructive text-xs/relaxed", children: [
20318
20387
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "p", { children: [
20319
20388
  "Error loading notifications: ",
20320
20389
  error
@@ -20488,13 +20557,13 @@ function NotificationModalContent({ isOpen, setIsOpen }) {
20488
20557
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, CardHeader, { className: "p-4", children: [
20489
20558
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { children: t(`entities.notifications`, { count: 2 }) }),
20490
20559
  isLoading && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "text-muted-foreground text-xs", children: "Loading..." }),
20491
- error && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-destructive text-xs", children: [
20560
+ error && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-destructive text-xs/relaxed", children: [
20492
20561
  "Error: ",
20493
20562
  error
20494
20563
  ] })
20495
20564
  ] }),
20496
20565
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Separator, {}),
20497
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ScrollArea, { className: "h-96", children: notifications.length > 0 ? notifications.map((notification) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.Fragment, { children: generateNotification(notification, () => setIsOpen(false)) }, notification.id)) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "p-4 text-center text-sm text-gray-500", children: t(`notification.empty`) }) })
20566
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ScrollArea, { className: "h-96", children: notifications.length > 0 ? notifications.map((notification) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.Fragment, { children: generateNotification(notification, () => setIsOpen(false)) }, notification.id)) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "text-muted-foreground p-4 text-center text-sm", children: t(`notification.empty`) }) })
20498
20567
  ] }) })
20499
20568
  ] });
20500
20569
  }
@@ -20725,14 +20794,14 @@ function ReferralWidget({
20725
20794
  !isDialog && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-start gap-3", children: [
20726
20795
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "bg-primary/10 rounded-full p-2", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Users, { className: "text-primary h-5 w-5" }) }),
20727
20796
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-col gap-1", children: [
20728
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "text-lg font-semibold", children: t.title }),
20797
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { children: t.title }),
20729
20798
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-sm", children: t.description })
20730
20799
  ] })
20731
20800
  ] }),
20732
20801
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-col gap-2", children: [
20733
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { className: "text-sm font-medium", children: t.yourLink }),
20802
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { children: t.yourLink }),
20734
20803
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex gap-2", children: [
20735
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Input, { ref: linkInputRef, value: referralUrl, readOnly: true, className: "font-mono text-sm" }),
20804
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Input, { ref: linkInputRef, value: referralUrl, readOnly: true, className: "tabular-nums text-sm" }),
20736
20805
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
20737
20806
  Button,
20738
20807
  {
@@ -20742,14 +20811,14 @@ function ReferralWidget({
20742
20811
  onClick: handleCopyLink,
20743
20812
  disabled: !referralUrl,
20744
20813
  "aria-label": t.copyButton,
20745
- children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Copy, { className: `h-4 w-4 ${copied ? "text-green-500" : ""}` })
20814
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Copy, { className: `h-4 w-4 ${copied ? "text-success" : ""}` })
20746
20815
  }
20747
20816
  )
20748
20817
  ] })
20749
20818
  ] }),
20750
20819
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-col gap-2", children: [
20751
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { className: "text-sm font-medium", children: t.inviteTitle }),
20752
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-sm", children: t.inviteDescription }),
20820
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { children: t.inviteTitle }),
20821
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-xs/relaxed", children: t.inviteDescription }),
20753
20822
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex gap-2", children: [
20754
20823
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
20755
20824
  Input,
@@ -21180,7 +21249,7 @@ function OAuthRedirectUriInput({
21180
21249
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Plus, { className: "h-4 w-4 mr-2" }),
21181
21250
  "Add Redirect URI"
21182
21251
  ] }),
21183
- error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-destructive", children: error })
21252
+ error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", children: error })
21184
21253
  ] });
21185
21254
  }
21186
21255
  _chunk7QVYU63Ejs.__name.call(void 0, OAuthRedirectUriInput, "OAuthRedirectUriInput");
@@ -21246,7 +21315,7 @@ function OAuthScopeSelector({
21246
21315
  }
21247
21316
  ),
21248
21317
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex-1", children: [
21249
- /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Label, { htmlFor: `scope-${scopeInfo.scope}`, className: "text-sm font-medium cursor-pointer", children: [
21318
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Label, { htmlFor: `scope-${scopeInfo.scope}`, className: "cursor-pointer", children: [
21250
21319
  scopeInfo.name,
21251
21320
  isAdmin && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-2 text-xs text-destructive", children: "(Dangerous)" })
21252
21321
  ] }),
@@ -21258,7 +21327,7 @@ function OAuthScopeSelector({
21258
21327
  );
21259
21328
  }) })
21260
21329
  ] }, groupName)) }),
21261
- error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-destructive", children: error })
21330
+ error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", children: error })
21262
21331
  ] });
21263
21332
  }
21264
21333
  _chunk7QVYU63Ejs.__name.call(void 0, OAuthScopeSelector, "OAuthScopeSelector");
@@ -21299,7 +21368,7 @@ function OAuthClientSecretDisplay({ secret, onDismiss, open, clientName }) {
21299
21368
  ] })
21300
21369
  ] }),
21301
21370
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center space-x-2", children: [
21302
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex-1", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Input, { value: secret, readOnly: true, className: "font-mono text-sm", onClick: (e) => e.currentTarget.select() }) }),
21371
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex-1", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Input, { value: secret, readOnly: true, className: "tabular-nums text-sm", onClick: (e) => e.currentTarget.select() }) }),
21303
21372
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
21304
21373
  Button,
21305
21374
  {
@@ -21308,11 +21377,11 @@ function OAuthClientSecretDisplay({ secret, onDismiss, open, clientName }) {
21308
21377
  size: "icon",
21309
21378
  onClick: handleCopy,
21310
21379
  title: copied ? "Copied!" : "Copy to clipboard",
21311
- children: copied ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Check, { className: "h-4 w-4 text-green-600" }) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Copy, { className: "h-4 w-4" })
21380
+ children: copied ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Check, { className: "text-success h-4 w-4" }) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Copy, { className: "h-4 w-4" })
21312
21381
  }
21313
21382
  )
21314
21383
  ] }),
21315
- copied && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-green-600 text-center", children: "Copied to clipboard!" }),
21384
+ copied && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-success text-center text-sm", children: "Copied to clipboard!" }),
21316
21385
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, DialogFooter, { className: "mt-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Button, { onClick: handleDismiss, className: "w-full", children: "I've Saved My Secret" }) })
21317
21386
  ] }) });
21318
21387
  }
@@ -21376,7 +21445,7 @@ function OAuthClientCard({ client, onClick, onEdit, onDelete }) {
21376
21445
  client.description && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardDescription, { className: "line-clamp-2", children: client.description })
21377
21446
  ] }),
21378
21447
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardContent, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-wrap gap-x-4 gap-y-1 text-sm text-muted-foreground", children: [
21379
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "font-mono", children: truncatedId }),
21448
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "tabular-nums", children: truncatedId }),
21380
21449
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { children: [
21381
21450
  "Created ",
21382
21451
  createdAgo
@@ -21406,7 +21475,7 @@ function OAuthClientList({
21406
21475
  if (isLoading && clients.length === 0) {
21407
21476
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-4", children: [
21408
21477
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-between", children: [
21409
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-2xl font-bold", children: title }),
21478
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: title }),
21410
21479
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Skeleton, { className: "h-10 w-32" })
21411
21480
  ] }),
21412
21481
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "space-y-3", children: [1, 2, 3].map((i) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Skeleton, { className: "h-32 w-full" }, i)) })
@@ -21414,14 +21483,14 @@ function OAuthClientList({
21414
21483
  }
21415
21484
  if (error) {
21416
21485
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-4", children: [
21417
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex items-center justify-between", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-2xl font-bold", children: title }) }),
21486
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex items-center justify-between", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: title }) }),
21418
21487
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "rounded-lg border border-destructive/50 bg-destructive/10 p-6 text-center", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive", children: error.message }) })
21419
21488
  ] });
21420
21489
  }
21421
21490
  if (clients.length === 0) {
21422
21491
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-4", children: [
21423
21492
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-between", children: [
21424
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-2xl font-bold", children: title }),
21493
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: title }),
21425
21494
  onCreateClick && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Button, { onClick: onCreateClick, children: [
21426
21495
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Plus, { className: "h-4 w-4 mr-2" }),
21427
21496
  "New App"
@@ -21440,7 +21509,7 @@ function OAuthClientList({
21440
21509
  }
21441
21510
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-4", children: [
21442
21511
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-between", children: [
21443
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-2xl font-bold", children: title }),
21512
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: title }),
21444
21513
  onCreateClick && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Button, { onClick: onCreateClick, children: [
21445
21514
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Plus, { className: "h-4 w-4 mr-2" }),
21446
21515
  "New App"
@@ -21523,7 +21592,7 @@ function OAuthClientForm({ client, onSubmit, onCancel, isLoading = false }) {
21523
21592
  className: errors.name ? "border-destructive" : ""
21524
21593
  }
21525
21594
  ),
21526
- errors.name && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-destructive", children: errors.name })
21595
+ errors.name && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", children: errors.name })
21527
21596
  ] }),
21528
21597
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21529
21598
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { htmlFor: "description", children: "Description" }),
@@ -21569,14 +21638,14 @@ function OAuthClientForm({ client, onSubmit, onCancel, isLoading = false }) {
21569
21638
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-start space-x-3 p-3 rounded-md border", children: [
21570
21639
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, RadioGroupItem, { value: "confidential", id: "confidential", className: "mt-1" }),
21571
21640
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { children: [
21572
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { htmlFor: "confidential", className: "font-medium cursor-pointer", children: "Confidential" }),
21641
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { htmlFor: "confidential", className: "cursor-pointer", children: "Confidential" }),
21573
21642
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-muted-foreground", children: "Server-side application that can securely store the client secret." })
21574
21643
  ] })
21575
21644
  ] }),
21576
21645
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-start space-x-3 p-3 rounded-md border", children: [
21577
21646
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, RadioGroupItem, { value: "public", id: "public", className: "mt-1" }),
21578
21647
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { children: [
21579
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { htmlFor: "public", className: "font-medium cursor-pointer", children: "Public" }),
21648
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { htmlFor: "public", className: "cursor-pointer", children: "Public" }),
21580
21649
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-muted-foreground", children: "Mobile or desktop application. Requires PKCE for authorization." })
21581
21650
  ] })
21582
21651
  ] })
@@ -21645,7 +21714,7 @@ function OAuthClientDetail({
21645
21714
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Card, { children: [
21646
21715
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardHeader, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-start justify-between", children: [
21647
21716
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { children: [
21648
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { className: "text-2xl", children: client.name }),
21717
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { children: client.name }),
21649
21718
  client.description && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardDescription, { className: "mt-1", children: client.description })
21650
21719
  ] }),
21651
21720
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center gap-2", children: [
@@ -21657,7 +21726,7 @@ function OAuthClientDetail({
21657
21726
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21658
21727
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { children: "Client ID" }),
21659
21728
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex gap-2", children: [
21660
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Input, { value: client.clientId, readOnly: true, className: "font-mono" }),
21729
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Input, { value: client.clientId, readOnly: true, className: "tabular-nums" }),
21661
21730
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
21662
21731
  Button,
21663
21732
  {
@@ -21665,7 +21734,7 @@ function OAuthClientDetail({
21665
21734
  size: "icon",
21666
21735
  onClick: () => copyToClipboard2(client.clientId, "clientId"),
21667
21736
  title: "Copy Client ID",
21668
- children: copiedField === "clientId" ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Check, { className: "h-4 w-4 text-green-600" }) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Copy, { className: "h-4 w-4" })
21737
+ children: copiedField === "clientId" ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Check, { className: "text-success h-4 w-4" }) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Copy, { className: "h-4 w-4" })
21669
21738
  }
21670
21739
  )
21671
21740
  ] })
@@ -21673,7 +21742,7 @@ function OAuthClientDetail({
21673
21742
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21674
21743
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { children: "Client Secret" }),
21675
21744
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex gap-2", children: [
21676
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Input, { value: "\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022", readOnly: true, className: "font-mono" }),
21745
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Input, { value: "\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022\u2022", readOnly: true, className: "tabular-nums" }),
21677
21746
  onRegenerateSecret && /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
21678
21747
  Button,
21679
21748
  {
@@ -21691,7 +21760,7 @@ function OAuthClientDetail({
21691
21760
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Separator, {}),
21692
21761
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21693
21762
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { children: "Redirect URIs" }),
21694
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "ul", { className: "space-y-1", children: client.redirectUris.map((uri, index) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "li", { className: "flex items-center gap-2 text-sm font-mono", children: [
21763
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "ul", { className: "space-y-1", children: client.redirectUris.map((uri, index) => /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "li", { className: "flex items-center gap-2 text-sm tabular-nums", children: [
21695
21764
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ExternalLink, { className: "h-3 w-3 text-muted-foreground" }),
21696
21765
  uri
21697
21766
  ] }, index)) })
@@ -21764,7 +21833,7 @@ function OAuthConsentHeader({ client, logoUrl, appName = "Only35" }) {
21764
21833
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-center space-y-4", children: [
21765
21834
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "flex justify-center", children: logoUrl ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "img", { src: logoUrl, alt: appName, className: "h-12 w-auto" }) : /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "h-12 w-12 rounded-full bg-primary flex items-center justify-center", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Shield, { className: "h-6 w-6 text-primary-foreground" }) }) }),
21766
21835
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21767
- /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "h1", { className: "text-2xl font-bold", children: [
21836
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "h1", { className: "text-primary text-3xl font-semibold", children: [
21768
21837
  "Authorize ",
21769
21838
  client.name
21770
21839
  ] }),
@@ -21797,7 +21866,7 @@ function OAuthScopeList({ scopes }) {
21797
21866
  return null;
21798
21867
  }
21799
21868
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-3", children: [
21800
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-sm font-medium text-muted-foreground uppercase tracking-wide", children: "This will allow the application to:" }),
21869
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MicroLabel, { as: "h3", children: "This will allow the application to:" }),
21801
21870
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "ul", { className: "space-y-3", children: scopes.map((scope) => {
21802
21871
  const IconComponent = scope.icon ? SCOPE_ICONS[scope.icon] : _lucidereact.Eye;
21803
21872
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "li", { className: "flex items-start gap-3 p-3 rounded-lg bg-muted/50", children: [
@@ -21856,7 +21925,7 @@ function OAuthConsentScreen({
21856
21925
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ExternalLink, { className: "h-4 w-4 mt-0.5 flex-shrink-0" }),
21857
21926
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { children: [
21858
21927
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { children: "Authorizing will redirect you to:" }),
21859
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "font-mono text-xs mt-1 break-all", children: params.redirectUri })
21928
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "tabular-nums text-xs mt-1 break-all", children: params.redirectUri })
21860
21929
  ] })
21861
21930
  ] }),
21862
21931
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, OAuthConsentActions, { onApprove: approve, onDeny: deny, isLoading: isSubmitting })
@@ -21955,7 +22024,7 @@ function WaitlistQuestionnaireRenderer({
21955
22024
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21956
22025
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { className: "text-sm font-medium", children: [
21957
22026
  field.label,
21958
- field.required && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-destructive ml-1", children: "*" })
22027
+ field.required && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-1 text-destructive", children: "*" })
21959
22028
  ] }),
21960
22029
  field.description && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-xs", children: field.description }),
21961
22030
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "space-y-2", children: field.options.map((option) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
@@ -22067,9 +22136,9 @@ function WaitlistForm({ onSuccess }) {
22067
22136
  }, "onSubmit");
22068
22137
  if (isSuccess) {
22069
22138
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-6 text-center", children: [
22070
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "mx-auto flex h-16 w-16 items-center justify-center rounded-full bg-green-100", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.CheckCircle, { className: "h-8 w-8 text-green-600" }) }),
22139
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "mx-auto flex h-16 w-16 items-center justify-center rounded-full bg-green-100", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.CheckCircle, { className: "text-success h-8 w-8" }) }),
22071
22140
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
22072
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "text-xl font-semibold", children: t("waitlist.success.title") }),
22141
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { children: t("waitlist.success.title") }),
22073
22142
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground", children: t("waitlist.success.description") })
22074
22143
  ] }),
22075
22144
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-center gap-2 text-muted-foreground text-sm", children: [
@@ -22150,7 +22219,7 @@ function WaitlistSuccessState() {
22150
22219
  const t = _nextintl.useTranslations.call(void 0, );
22151
22220
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-col items-center justify-center space-y-4 py-8 text-center", children: [
22152
22221
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "bg-primary/10 rounded-full p-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.CheckCircle, { className: "text-primary h-12 w-12" }) }),
22153
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-2xl font-bold", children: t("waitlist.success.title") }),
22222
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: t("waitlist.success.title") }),
22154
22223
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground max-w-md", children: t("waitlist.success.description") }),
22155
22224
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-sm", children: t("waitlist.success.hint") })
22156
22225
  ] });
@@ -22188,14 +22257,14 @@ function WaitlistConfirmation({ code }) {
22188
22257
  if (state === "error") {
22189
22258
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-col items-center justify-center space-y-4 py-16 text-center", children: [
22190
22259
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "bg-destructive/10 rounded-full p-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.XCircle, { className: "text-destructive h-12 w-12" }) }),
22191
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-2xl font-bold", children: t("waitlist.confirmation.error_title") }),
22260
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: t("waitlist.confirmation.error_title") }),
22192
22261
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground max-w-md", children: errorMessage }),
22193
22262
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Link, { href: "/waitlist", className: buttonVariants({ variant: "outline" }), children: t("waitlist.buttons.return") })
22194
22263
  ] });
22195
22264
  }
22196
22265
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-col items-center justify-center space-y-4 py-16 text-center", children: [
22197
22266
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "bg-primary/10 rounded-full p-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.CheckCircle, { className: "text-primary h-12 w-12" }) }),
22198
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-2xl font-bold", children: t("waitlist.confirmation.success_title") }),
22267
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: t("waitlist.confirmation.success_title") }),
22199
22268
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground max-w-md", children: t("waitlist.confirmation.success_description") }),
22200
22269
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-sm", children: t("waitlist.confirmation.success_hint") })
22201
22270
  ] });
@@ -22287,7 +22356,7 @@ function useWaitlistTableStructure({
22287
22356
  ] });
22288
22357
  }
22289
22358
  if (entry.status === "invited" && entry.invitedAt) {
22290
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-muted-foreground text-sm", children: t("waitlist.admin.actions.invited_on", { date: new Date(entry.invitedAt).toLocaleDateString() }) });
22359
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-muted-foreground text-xs", children: t("waitlist.admin.actions.invited_on", { date: new Date(entry.invitedAt).toLocaleDateString() }) });
22291
22360
  }
22292
22361
  if (entry.status === "registered") {
22293
22362
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-muted-foreground text-sm", children: t("waitlist.admin.actions.registered") });
@@ -22344,7 +22413,7 @@ function WaitlistList() {
22344
22413
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-between", children: [
22345
22414
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center gap-2", children: [
22346
22415
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Users, { className: "h-5 w-5" }),
22347
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "text-xl font-semibold", children: t("waitlist.admin.title") }),
22416
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: t("waitlist.admin.title") }),
22348
22417
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { className: "text-muted-foreground", children: [
22349
22418
  "(",
22350
22419
  t("waitlist.admin.entries_count", { count: total }),
@@ -22445,10 +22514,10 @@ function RbacPermissionCell({
22445
22514
  isDirty && "ring-2 ring-amber-400/50"
22446
22515
  ),
22447
22516
  render: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", {}),
22448
- children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Badge, { variant: "outline", className: "max-w-full truncate text-xs font-mono", children: truncated })
22517
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Badge, { variant: "outline", className: "max-w-full truncate text-xs tabular-nums", children: truncated })
22449
22518
  }
22450
22519
  ),
22451
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TooltipContent, { side: "top", className: "max-w-xs", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "font-mono text-xs break-all", children: displayValue }) })
22520
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TooltipContent, { side: "top", className: "max-w-xs", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "tabular-nums text-xs break-all", children: displayValue }) })
22452
22521
  ] });
22453
22522
  }
22454
22523
  _chunk7QVYU63Ejs.__name.call(void 0, RbacPermissionCell, "RbacPermissionCell");
@@ -22578,7 +22647,7 @@ function RbacPermissionPicker({
22578
22647
  onCheckedChange: () => toggleSegment(segment)
22579
22648
  }
22580
22649
  ),
22581
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "font-mono text-xs", children: segment })
22650
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "tabular-nums text-xs", children: segment })
22582
22651
  ]
22583
22652
  },
22584
22653
  segment
@@ -22590,7 +22659,7 @@ function RbacPermissionPicker({
22590
22659
  value: customSegment,
22591
22660
  onChange: (e) => setCustomSegment(e.target.value),
22592
22661
  placeholder: t("rbac.custom_segment_placeholder"),
22593
- className: "h-7 font-mono text-xs",
22662
+ className: "h-7 tabular-nums text-xs",
22594
22663
  onKeyDown: (e) => {
22595
22664
  if (e.key === "Enter") {
22596
22665
  e.preventDefault();
@@ -22613,7 +22682,7 @@ function RbacPermissionPicker({
22613
22682
  ] }),
22614
22683
  currentSegments.length > 0 && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "bg-muted mt-2 rounded p-2", children: [
22615
22684
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground mb-1 text-xs", children: t("rbac.preview") }),
22616
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "font-mono text-xs break-all", children: currentSegments.join("|") })
22685
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "tabular-nums text-xs break-all", children: currentSegments.join("|") })
22617
22686
  ] })
22618
22687
  ] })
22619
22688
  ] })
@@ -22672,7 +22741,7 @@ var ModuleEditor = _react.memo.call(void 0, /* @__PURE__ */ _chunk7QVYU63Ejs.__n
22672
22741
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "rounded-lg border border-accent bg-card", children: [
22673
22742
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-between border-b px-4 py-2", children: [
22674
22743
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h4", { className: "text-sm font-medium", children: moduleLabel }),
22675
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "font-mono text-xs text-muted-foreground", children: moduleId })
22744
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-muted-foreground tabular-nums text-xs", children: moduleId })
22676
22745
  ] }),
22677
22746
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "overflow-x-auto", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "table", { className: "w-full text-sm", children: [
22678
22747
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "thead", { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "tr", { className: "border-b bg-muted/50", children: [
@@ -23541,5 +23610,8 @@ _chunk7QVYU63Ejs.__name.call(void 0, RbacByRoleContainer, "RbacByRoleContainer")
23541
23610
 
23542
23611
 
23543
23612
 
23544
- exports.JsonApiProvider = JsonApiProvider; exports.useJsonApiGet = useJsonApiGet; exports.useJsonApiMutation = useJsonApiMutation; exports.useRehydration = useRehydration; exports.useRehydrationList = useRehydrationList; exports.TableGeneratorRegistry = TableGeneratorRegistry; exports.tableGeneratorRegistry = tableGeneratorRegistry; exports.usePageUrlGenerator = usePageUrlGenerator; exports.useUrlRewriter = useUrlRewriter; exports.useDataListRetriever = useDataListRetriever; exports.useDebounce = useDebounce2; exports.registerTableGenerator = registerTableGenerator; exports.useTableGenerator = useTableGenerator; exports.computeLayeredLayout = computeLayeredLayout; exports.fitLayeredLayoutToAspectRatio = fitLayeredLayoutToAspectRatio; exports.useCustomD3Graph = useCustomD3Graph; exports.SocketContext = SocketContext; exports.SocketProvider = SocketProvider; exports.useSocketContext = useSocketContext; exports.CurrentUserProvider = CurrentUserProvider; exports.useCurrentUserContext = useCurrentUserContext; exports.Accordion = Accordion; exports.AccordionItem = AccordionItem; exports.AccordionTrigger = AccordionTrigger; exports.AccordionContent = AccordionContent; exports.Alert = Alert; exports.AlertTitle = AlertTitle; exports.AlertDescription = AlertDescription; exports.AlertAction = AlertAction; exports.buttonVariants = buttonVariants; exports.Button = Button; exports.AlertDialog = AlertDialog; exports.AlertDialogTrigger = AlertDialogTrigger; exports.AlertDialogPortal = AlertDialogPortal; exports.AlertDialogOverlay = AlertDialogOverlay; exports.AlertDialogContent = AlertDialogContent; exports.AlertDialogHeader = AlertDialogHeader; exports.AlertDialogFooter = AlertDialogFooter; exports.AlertDialogMedia = AlertDialogMedia; exports.AlertDialogTitle = AlertDialogTitle; exports.AlertDialogDescription = AlertDialogDescription; exports.AlertDialogAction = AlertDialogAction; exports.AlertDialogCancel = AlertDialogCancel; exports.Avatar = Avatar; exports.AvatarImage = AvatarImage; exports.AvatarFallback = AvatarFallback; exports.AvatarBadge = AvatarBadge; exports.AvatarGroup = AvatarGroup; exports.AvatarGroupCount = AvatarGroupCount; exports.badgeVariants = badgeVariants; exports.Badge = Badge; exports.Breadcrumb = Breadcrumb; exports.BreadcrumbList = BreadcrumbList; exports.BreadcrumbItem = BreadcrumbItem; exports.BreadcrumbLink = BreadcrumbLink; exports.BreadcrumbPage = BreadcrumbPage; exports.BreadcrumbSeparator = BreadcrumbSeparator; exports.BreadcrumbEllipsis = BreadcrumbEllipsis; exports.Calendar = Calendar; exports.CalendarDayButton = CalendarDayButton; exports.Card = Card; exports.CardHeader = CardHeader; exports.CardTitle = CardTitle; exports.CardDescription = CardDescription; exports.CardAction = CardAction; exports.CardContent = CardContent; exports.CardFooter = CardFooter; exports.useCarousel = useCarousel; exports.Carousel = Carousel; exports.CarouselContent = CarouselContent; exports.CarouselItem = CarouselItem; exports.CarouselPrevious = CarouselPrevious; exports.CarouselNext = CarouselNext; exports.ChartContainer = ChartContainer; exports.ChartStyle = ChartStyle; exports.ChartTooltip = ChartTooltip; exports.ChartTooltipContent = ChartTooltipContent; exports.ChartLegend = ChartLegend; exports.ChartLegendContent = ChartLegendContent; exports.Checkbox = Checkbox; exports.Collapsible = Collapsible; exports.CollapsibleTrigger = CollapsibleTrigger; exports.CollapsibleContent = CollapsibleContent; exports.Input = Input; exports.Textarea = Textarea; exports.InputGroup = InputGroup; exports.InputGroupAddon = InputGroupAddon; exports.InputGroupButton = InputGroupButton; exports.InputGroupText = InputGroupText; exports.InputGroupInput = InputGroupInput; exports.InputGroupTextarea = InputGroupTextarea; exports.Combobox = Combobox; exports.ComboboxValue = ComboboxValue; exports.ComboboxTrigger = ComboboxTrigger; exports.ComboboxInput = ComboboxInput; exports.ComboboxContent = ComboboxContent; exports.ComboboxList = ComboboxList; exports.ComboboxItem = ComboboxItem; exports.ComboboxGroup = ComboboxGroup; exports.ComboboxLabel = ComboboxLabel; exports.ComboboxCollection = ComboboxCollection; exports.ComboboxEmpty = ComboboxEmpty; exports.ComboboxSeparator = ComboboxSeparator; exports.ComboboxChips = ComboboxChips; exports.ComboboxChip = ComboboxChip; exports.ComboboxChipsInput = ComboboxChipsInput; exports.useComboboxAnchor = useComboboxAnchor; exports.Dialog = Dialog; exports.DialogTrigger = DialogTrigger; exports.DialogPortal = DialogPortal; exports.DialogClose = DialogClose; exports.DialogOverlay = DialogOverlay; exports.DialogContent = DialogContent; exports.DialogHeader = DialogHeader; exports.DialogFooter = DialogFooter; exports.DialogTitle = DialogTitle; exports.DialogDescription = DialogDescription; exports.Command = Command; exports.CommandDialog = CommandDialog; exports.CommandInput = CommandInput; exports.CommandList = CommandList; exports.CommandEmpty = CommandEmpty; exports.CommandGroup = CommandGroup; exports.CommandSeparator = CommandSeparator; exports.CommandItem = CommandItem; exports.CommandShortcut = CommandShortcut; exports.ConfirmDialog = ConfirmDialog; exports.ContextMenu = ContextMenu; exports.ContextMenuPortal = ContextMenuPortal; exports.ContextMenuTrigger = ContextMenuTrigger; exports.ContextMenuContent = ContextMenuContent; exports.ContextMenuGroup = ContextMenuGroup; exports.ContextMenuLabel = ContextMenuLabel; exports.ContextMenuItem = ContextMenuItem; exports.ContextMenuSub = ContextMenuSub; exports.ContextMenuSubTrigger = ContextMenuSubTrigger; exports.ContextMenuSubContent = ContextMenuSubContent; exports.ContextMenuCheckboxItem = ContextMenuCheckboxItem; exports.ContextMenuRadioGroup = ContextMenuRadioGroup; exports.ContextMenuRadioItem = ContextMenuRadioItem; exports.ContextMenuSeparator = ContextMenuSeparator; exports.ContextMenuShortcut = ContextMenuShortcut; exports.Drawer = Drawer; exports.DrawerTrigger = DrawerTrigger; exports.DrawerPortal = DrawerPortal; exports.DrawerClose = DrawerClose; exports.DrawerOverlay = DrawerOverlay; exports.DrawerContent = DrawerContent; exports.DrawerHeader = DrawerHeader; exports.DrawerFooter = DrawerFooter; exports.DrawerTitle = DrawerTitle; exports.DrawerDescription = DrawerDescription; exports.DropdownMenu = DropdownMenu; exports.DropdownMenuPortal = DropdownMenuPortal; exports.DropdownMenuTrigger = DropdownMenuTrigger; exports.DropdownMenuContent = DropdownMenuContent; exports.DropdownMenuGroup = DropdownMenuGroup; exports.DropdownMenuLabel = DropdownMenuLabel; exports.DropdownMenuItem = DropdownMenuItem; exports.DropdownMenuSub = DropdownMenuSub; exports.DropdownMenuSubTrigger = DropdownMenuSubTrigger; exports.DropdownMenuSubContent = DropdownMenuSubContent; exports.DropdownMenuCheckboxItem = DropdownMenuCheckboxItem; exports.DropdownMenuRadioGroup = DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = DropdownMenuRadioItem; exports.DropdownMenuSeparator = DropdownMenuSeparator; exports.DropdownMenuShortcut = DropdownMenuShortcut; exports.EmptyState = EmptyState; exports.Label = Label; exports.Separator = Separator; exports.FieldSet = FieldSet; exports.FieldLegend = FieldLegend; exports.FieldGroup = FieldGroup; exports.Field = Field; exports.FieldContent = FieldContent; exports.FieldLabel = FieldLabel; exports.FieldTitle = FieldTitle; exports.FieldDescription = FieldDescription; exports.FieldSeparator = FieldSeparator; exports.FieldError = FieldError; exports.Form = Form; exports.HoverCard = HoverCard; exports.HoverCardTrigger = HoverCardTrigger; exports.HoverCardContent = HoverCardContent; exports.InputOTP = InputOTP; exports.InputOTPGroup = InputOTPGroup; exports.InputOTPSlot = InputOTPSlot; exports.InputOTPSeparator = InputOTPSeparator; exports.NavigationMenu = NavigationMenu; exports.NavigationMenuList = NavigationMenuList; exports.NavigationMenuItem = NavigationMenuItem; exports.navigationMenuTriggerStyle = navigationMenuTriggerStyle; exports.NavigationMenuTrigger = NavigationMenuTrigger; exports.NavigationMenuContent = NavigationMenuContent; exports.NavigationMenuPositioner = NavigationMenuPositioner; exports.NavigationMenuLink = NavigationMenuLink; exports.NavigationMenuIndicator = NavigationMenuIndicator; exports.Popover = Popover; exports.PopoverTrigger = PopoverTrigger; exports.PopoverContent = PopoverContent; exports.PopoverHeader = PopoverHeader; exports.PopoverTitle = PopoverTitle; exports.PopoverDescription = PopoverDescription; exports.Progress = Progress; exports.ProgressTrack = ProgressTrack; exports.ProgressIndicator = ProgressIndicator; exports.ProgressLabel = ProgressLabel; exports.ProgressValue = ProgressValue; exports.RadioGroup = RadioGroup; exports.RadioGroupItem = RadioGroupItem; exports.ResizablePanelGroup = ResizablePanelGroup; exports.ResizablePanel = ResizablePanel; exports.ResizableHandle = ResizableHandle; exports.ScrollArea = ScrollArea; exports.ScrollBar = ScrollBar; exports.Select = Select; exports.SelectGroup = SelectGroup; exports.SelectValue = SelectValue; exports.SelectTrigger = SelectTrigger; exports.SelectContent = SelectContent; exports.SelectLabel = SelectLabel; exports.SelectItem = SelectItem; exports.SelectSeparator = SelectSeparator; exports.SelectScrollUpButton = SelectScrollUpButton; exports.SelectScrollDownButton = SelectScrollDownButton; exports.Sheet = Sheet; exports.SheetTrigger = SheetTrigger; exports.SheetClose = SheetClose; exports.SheetContent = SheetContent; exports.SheetHeader = SheetHeader; exports.SheetFooter = SheetFooter; exports.SheetTitle = SheetTitle; exports.SheetDescription = SheetDescription; exports.Skeleton = Skeleton; exports.TooltipProvider = TooltipProvider; exports.Tooltip = Tooltip2; exports.TooltipTrigger = TooltipTrigger; exports.TooltipContent = TooltipContent; exports.useSidebar = useSidebar; exports.SidebarProvider = SidebarProvider; exports.Sidebar = Sidebar; exports.SidebarTrigger = SidebarTrigger; exports.SidebarRail = SidebarRail; exports.SidebarInset = SidebarInset; exports.SidebarInput = SidebarInput; exports.SidebarHeader = SidebarHeader; exports.SidebarFooter = SidebarFooter; exports.SidebarSeparator = SidebarSeparator; exports.SidebarContent = SidebarContent; exports.SidebarGroup = SidebarGroup; exports.SidebarGroupLabel = SidebarGroupLabel; exports.SidebarGroupAction = SidebarGroupAction; exports.SidebarGroupContent = SidebarGroupContent; exports.SidebarMenu = SidebarMenu; exports.SidebarMenuItem = SidebarMenuItem; exports.SidebarMenuButton = SidebarMenuButton; exports.SidebarMenuAction = SidebarMenuAction; exports.SidebarMenuBadge = SidebarMenuBadge; exports.SidebarMenuSkeleton = SidebarMenuSkeleton; exports.SidebarMenuSub = SidebarMenuSub; exports.SidebarMenuSubItem = SidebarMenuSubItem; exports.SidebarMenuSubButton = SidebarMenuSubButton; exports.Slider = Slider; exports.Toaster = Toaster; exports.spinnerVariants = spinnerVariants; exports.Spinner = Spinner; exports.Switch = Switch; exports.Table = Table; exports.TableHeader = TableHeader; exports.TableBody = TableBody; exports.TableFooter = TableFooter; exports.TableRow = TableRow; exports.TableHead = TableHead; exports.TableCell = TableCell; exports.TableCaption = TableCaption; exports.Tabs = Tabs; exports.tabsListVariants = tabsListVariants; exports.TabsList = TabsList; exports.TabsTrigger = TabsTrigger; exports.TabsContent = TabsContent; exports.toggleVariants = toggleVariants; exports.Toggle = Toggle; exports.KanbanRoot = KanbanRoot; exports.KanbanBoard = KanbanBoard; exports.KanbanColumn = KanbanColumn; exports.KanbanColumnHandle = KanbanColumnHandle; exports.KanbanItem = KanbanItem; exports.KanbanItemHandle = KanbanItemHandle; exports.KanbanOverlay = KanbanOverlay; exports.Link = Link; exports.MultiSelect = MultiSelect; exports.useDebounce2 = useDebounce; exports.MultipleSelector = MultipleSelector; exports.EntityAvatar = EntityAvatar; exports.errorToast = errorToast; exports.EditableAvatar = EditableAvatar; exports.TableCellAvatar = TableCellAvatar; exports.HeaderChildrenProvider = HeaderChildrenProvider; exports.useHeaderChildren = useHeaderChildren; exports.HeaderLeftContentProvider = HeaderLeftContentProvider; exports.useHeaderLeftContent = useHeaderLeftContent; exports.BreadcrumbNavigation = BreadcrumbNavigation; exports.ContentTitle = ContentTitle; exports.SharedProvider = SharedProvider; exports.useSharedContext = useSharedContext; exports.Header = Header; exports.ModeToggleSwitch = ModeToggleSwitch; exports.PageSection = PageSection; exports.recentPagesAtom = recentPagesAtom; exports.RecentPagesNavigator = RecentPagesNavigator; exports.PageContainer = PageContainer; exports.partitionTabs = partitionTabs; exports.ReactMarkdownContainer = ReactMarkdownContainer; exports.RoundPageContainerTitle = RoundPageContainerTitle; exports.RoundPageContainer = RoundPageContainer; exports.TabsContainer = TabsContainer; exports.AttributeElement = AttributeElement; exports.AllUsersListContainer = AllUsersListContainer; exports.UserContent = UserContent; exports.UserAvatar = UserAvatar; exports.UserAvatarList = UserAvatarList; exports.useUserSearch = useUserSearch; exports.useUserTableStructure = useUserTableStructure; exports.UserSearchPopover = UserSearchPopover; exports.UserIndexDetails = UserIndexDetails; exports.UserStanadaloneDetails = UserStanadaloneDetails; exports.UserContainer = UserContainer; exports.UserIndexContainer = UserIndexContainer; exports.UsersListContainer = UsersListContainer; exports.AdminUsersList = AdminUsersList; exports.CompanyUsersList = CompanyUsersList; exports.ContributorsList = ContributorsList; exports.RelevantUsersList = RelevantUsersList; exports.RoleUsersList = RoleUsersList; exports.UserListInAdd = UserListInAdd; exports.UsersList = UsersList; exports.UsersListByContentIds = UsersListByContentIds; exports.AllowedUsersDetails = AllowedUsersDetails; exports.ErrorDetails = ErrorDetails; exports.BlockNoteEditorMentionHoverCard = BlockNoteEditorMentionHoverCard; exports.mentionDataAttrs = mentionDataAttrs; exports.parseMentionElement = parseMentionElement; exports.createMentionInlineContentSpec = createMentionInlineContentSpec; exports.useMentionInsert = useMentionInsert; exports.BlockNoteEditorMentionSuggestionMenu = BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteEditorContainer = BlockNoteEditorContainer; exports.BlockNoteViewerContainer = BlockNoteViewerContainer; exports.FormFeatures = FormFeatures; exports.CommonAssociationTrigger = CommonAssociationTrigger; exports.CommonAssociationCommandDialog = CommonAssociationCommandDialog; exports.triggerAssociationToast = triggerAssociationToast; exports.CommonDeleter = CommonDeleter; exports.CommonEditorButtons = CommonEditorButtons; exports.CommonEditorDiscardDialog = CommonEditorDiscardDialog; exports.CommonEditorHeader = CommonEditorHeader; exports.CommonEditorTrigger = CommonEditorTrigger; exports.CommonAddTrigger = CommonAddTrigger; exports.CurrencyInput = CurrencyInput; exports.DatePickerPopover = DatePickerPopover; exports.DateRangeSelector = DateRangeSelector; exports.useEditorDialog = useEditorDialog; exports.EditorSheet = EditorSheet; exports.FormFieldWrapper = FormFieldWrapper; exports.EntityMultiSelector = EntityMultiSelector; exports.EntitySelector = EntitySelector; exports.useFileUpload = useFileUpload; exports.FileUploader = FileUploader; exports.FileUploaderContent = FileUploaderContent; exports.FileUploaderItem = FileUploaderItem; exports.FileInput = FileInput; exports.FormBlockNote = FormBlockNote; exports.FormCheckbox = FormCheckbox; exports.FormDate = FormDate; exports.FormDateTime = FormDateTime; exports.FormInput = FormInput; exports.FormBody = FormBody; exports.FormSection = FormSection; exports.FormRow = FormRow; exports.FormCol = FormCol; exports.PasswordInput = PasswordInput; exports.FormPassword = FormPassword; exports.FormPlaceAutocomplete = FormPlaceAutocomplete; exports.FormSelect = FormSelect; exports.FormSlider = FormSlider; exports.FormSwitch = FormSwitch; exports.FormTextarea = FormTextarea; exports.GdprConsentCheckbox = GdprConsentCheckbox; exports.PageContainerContentDetails = PageContainerContentDetails; exports.PageContentContainer = PageContentContainer; exports.cellComponent = cellComponent; exports.cellDate = cellDate; exports.cellDateTime = cellDateTime; exports.cellId = cellId; exports.cellLink = cellLink; exports.cellUrl = cellUrl; exports.ContentTableSearch = ContentTableSearch; exports.ContentListTable = ContentListTable; exports.ContentListGrid = ContentListGrid; exports.ItalianFiscalData_default = ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = ItalianFiscalDataDisplay; exports.parseFiscalData = parseFiscalData; exports.FiscalDataDisplay = FiscalDataDisplay; exports.EntityHeroLayout = EntityHeroLayout; exports.EntityHero = EntityHero; exports.EntityHeroAvatar = EntityHeroAvatar; exports.EntityHeroMetaRow = EntityHeroMetaRow; exports.EntitySection = EntitySection; exports.GdprConsentSection = GdprConsentSection; exports.AuthContainer = AuthContainer; exports.BackupCodesDialog = BackupCodesDialog; exports.TotpInput = TotpInput; exports.DisableTwoFactorDialog = DisableTwoFactorDialog; exports.PasskeyList = PasskeyList; exports.PasskeySetupDialog = PasskeySetupDialog; exports.TotpAuthenticatorList = TotpAuthenticatorList; exports.TotpSetupDialog = TotpSetupDialog; exports.TwoFactorSettings = TwoFactorSettings; exports.SecurityContainer = SecurityContainer; exports.LandingComponent = LandingComponent; exports.AcceptInvitation = AcceptInvitation; exports.ActivateAccount = ActivateAccount; exports.Cookies = Cookies; exports.ForgotPassword = ForgotPassword; exports.Login = Login; exports.Logout = Logout; exports.RefreshUser = RefreshUser; exports.ResetPassword = ResetPassword; exports.PasskeyButton = PasskeyButton; exports.TwoFactorChallenge = TwoFactorChallenge; exports.CompanyContent = CompanyContent; exports.TokenStatusIndicator = TokenStatusIndicator; exports.CompanyDetails = CompanyDetails; exports.AdminCompanyContainer = AdminCompanyContainer; exports.CompanyContainer = CompanyContainer; exports.CompanyConfigurationEditor = CompanyConfigurationEditor; exports.CompanyDeleter = CompanyDeleter; exports.CompanyEditor = CompanyEditor; exports.CompaniesList = CompaniesList; exports.ContentsList = ContentsList; exports.ContentsListById = ContentsListById; exports.RelevantContentsList = RelevantContentsList; exports.HowToCommandViewer = HowToCommandViewer; exports.HowToCommand = HowToCommand; exports.HowToDeleter = HowToDeleter; exports.HowToMultiSelector = HowToMultiSelector; exports.HowToEditor = HowToEditor; exports.HowToProvider = HowToProvider; exports.useHowToContext = useHowToContext; exports.HowToContent = HowToContent; exports.HowToDetails = HowToDetails; exports.HowToContainer = HowToContainer; exports.HowToList = HowToList; exports.HowToListContainer = HowToListContainer; exports.HowToSelector = HowToSelector; exports.AssistantProvider = AssistantProvider; exports.useAssistantContext = useAssistantContext; exports.AssistantComposer = AssistantComposer; exports.AssistantEmptyState = AssistantEmptyState; exports.MessageSourcesPanel = MessageSourcesPanel; exports.MessageItem = MessageItem; exports.MessageList = MessageList; exports.AssistantThread = AssistantThread; exports.AssistantContainer = AssistantContainer; exports.NotificationErrorBoundary = NotificationErrorBoundary; exports.generateNotificationData = generateNotificationData; exports.NotificationToast = NotificationToast; exports.NotificationMenuItem = NotificationMenuItem; exports.NotificationContextProvider = NotificationContextProvider; exports.useNotificationContext = useNotificationContext; exports.NotificationsList = NotificationsList; exports.NotificationsListContainer = NotificationsListContainer; exports.NotificationModal = NotificationModal; exports.PushNotificationProvider = PushNotificationProvider; exports.OnboardingCard = OnboardingCard; exports.ReferralCodeCapture = ReferralCodeCapture; exports.ReferralWidget = ReferralWidget; exports.ReferralDialog = ReferralDialog; exports.RoleProvider = RoleProvider; exports.useRoleContext = useRoleContext; exports.RoleDetails = RoleDetails; exports.RoleContainer = RoleContainer; exports.FormRoles = FormRoles; exports.RemoveUserFromRole = RemoveUserFromRole; exports.UserRoleAdd = UserRoleAdd; exports.useRoleTableStructure = useRoleTableStructure; exports.RolesList = RolesList; exports.UserRolesList = UserRolesList; exports.OAuthRedirectUriInput = OAuthRedirectUriInput; exports.OAuthScopeSelector = OAuthScopeSelector; exports.OAuthClientSecretDisplay = OAuthClientSecretDisplay; exports.OAuthClientCard = OAuthClientCard; exports.OAuthClientList = OAuthClientList; exports.OAuthClientForm = OAuthClientForm; exports.OAuthClientDetail = OAuthClientDetail; exports.OAuthConsentHeader = OAuthConsentHeader; exports.OAuthScopeList = OAuthScopeList; exports.OAuthConsentActions = OAuthConsentActions; exports.useOAuthConsent = useOAuthConsent; exports.OAuthConsentScreen = OAuthConsentScreen; exports.WaitlistQuestionnaireRenderer = WaitlistQuestionnaireRenderer; exports.WaitlistForm = WaitlistForm; exports.WaitlistHeroSection = WaitlistHeroSection; exports.WaitlistSuccessState = WaitlistSuccessState; exports.WaitlistConfirmation = WaitlistConfirmation; exports.WaitlistList = WaitlistList; exports.RbacProvider = RbacProvider; exports.useRbacContext = useRbacContext; exports.RbacPermissionCell = RbacPermissionCell; exports.RbacPermissionPicker = RbacPermissionPicker; exports.RbacContainer = RbacContainer; exports.RbacByRoleContainer = RbacByRoleContainer; exports.AddUserToRole = AddUserToRole; exports.UserAvatarEditor = UserAvatarEditor; exports.UserDeleter = UserDeleter; exports.UserEditor = UserEditor; exports.UserMultiSelect = UserMultiSelect; exports.UserReactivator = UserReactivator; exports.UserResentInvitationEmail = UserResentInvitationEmail; exports.UserSelector = UserSelector; exports.UserProvider = UserProvider; exports.useUserContext = useUserContext; exports.CompanyProvider = CompanyProvider; exports.useCompanyContext = useCompanyContext; exports.DEFAULT_ONBOARDING_LABELS = DEFAULT_ONBOARDING_LABELS; exports.OnboardingProvider = OnboardingProvider; exports.useOnboarding = useOnboarding; exports.CommonProvider = CommonProvider; exports.useCommonContext = useCommonContext; exports.useNotificationSync = useNotificationSync; exports.usePageTracker = usePageTracker; exports.useSocket = useSocket; exports.useSubscriptionStatus = useSubscriptionStatus; exports.useContentTableStructure = useContentTableStructure; exports.useOAuthClients = useOAuthClients; exports.useOAuthClient = useOAuthClient;
23545
- //# sourceMappingURL=chunk-YQTMNZQB.js.map
23613
+
23614
+
23615
+
23616
+ exports.JsonApiProvider = JsonApiProvider; exports.useJsonApiGet = useJsonApiGet; exports.useJsonApiMutation = useJsonApiMutation; exports.useRehydration = useRehydration; exports.useRehydrationList = useRehydrationList; exports.TableGeneratorRegistry = TableGeneratorRegistry; exports.tableGeneratorRegistry = tableGeneratorRegistry; exports.usePageUrlGenerator = usePageUrlGenerator; exports.useUrlRewriter = useUrlRewriter; exports.useDataListRetriever = useDataListRetriever; exports.useDebounce = useDebounce2; exports.registerTableGenerator = registerTableGenerator; exports.useTableGenerator = useTableGenerator; exports.computeLayeredLayout = computeLayeredLayout; exports.fitLayeredLayoutToAspectRatio = fitLayeredLayoutToAspectRatio; exports.useCustomD3Graph = useCustomD3Graph; exports.SocketContext = SocketContext; exports.SocketProvider = SocketProvider; exports.useSocketContext = useSocketContext; exports.CurrentUserProvider = CurrentUserProvider; exports.useCurrentUserContext = useCurrentUserContext; exports.Accordion = Accordion; exports.AccordionItem = AccordionItem; exports.AccordionTrigger = AccordionTrigger; exports.AccordionContent = AccordionContent; exports.Alert = Alert; exports.AlertTitle = AlertTitle; exports.AlertDescription = AlertDescription; exports.AlertAction = AlertAction; exports.buttonVariants = buttonVariants; exports.Button = Button; exports.AlertDialog = AlertDialog; exports.AlertDialogTrigger = AlertDialogTrigger; exports.AlertDialogPortal = AlertDialogPortal; exports.AlertDialogOverlay = AlertDialogOverlay; exports.AlertDialogContent = AlertDialogContent; exports.AlertDialogHeader = AlertDialogHeader; exports.AlertDialogFooter = AlertDialogFooter; exports.AlertDialogMedia = AlertDialogMedia; exports.AlertDialogTitle = AlertDialogTitle; exports.AlertDialogDescription = AlertDialogDescription; exports.AlertDialogAction = AlertDialogAction; exports.AlertDialogCancel = AlertDialogCancel; exports.Avatar = Avatar; exports.AvatarImage = AvatarImage; exports.AvatarFallback = AvatarFallback; exports.AvatarBadge = AvatarBadge; exports.AvatarGroup = AvatarGroup; exports.AvatarGroupCount = AvatarGroupCount; exports.badgeVariants = badgeVariants; exports.Badge = Badge; exports.Breadcrumb = Breadcrumb; exports.BreadcrumbList = BreadcrumbList; exports.BreadcrumbItem = BreadcrumbItem; exports.BreadcrumbLink = BreadcrumbLink; exports.BreadcrumbPage = BreadcrumbPage; exports.BreadcrumbSeparator = BreadcrumbSeparator; exports.BreadcrumbEllipsis = BreadcrumbEllipsis; exports.Calendar = Calendar; exports.CalendarDayButton = CalendarDayButton; exports.Card = Card; exports.CardHeader = CardHeader; exports.CardTitle = CardTitle; exports.CardDescription = CardDescription; exports.CardAction = CardAction; exports.CardContent = CardContent; exports.CardFooter = CardFooter; exports.useCarousel = useCarousel; exports.Carousel = Carousel; exports.CarouselContent = CarouselContent; exports.CarouselItem = CarouselItem; exports.CarouselPrevious = CarouselPrevious; exports.CarouselNext = CarouselNext; exports.ChartContainer = ChartContainer; exports.ChartStyle = ChartStyle; exports.ChartTooltip = ChartTooltip; exports.ChartTooltipContent = ChartTooltipContent; exports.ChartLegend = ChartLegend; exports.ChartLegendContent = ChartLegendContent; exports.Checkbox = Checkbox; exports.Collapsible = Collapsible; exports.CollapsibleTrigger = CollapsibleTrigger; exports.CollapsibleContent = CollapsibleContent; exports.Input = Input; exports.Textarea = Textarea; exports.InputGroup = InputGroup; exports.InputGroupAddon = InputGroupAddon; exports.InputGroupButton = InputGroupButton; exports.InputGroupText = InputGroupText; exports.InputGroupInput = InputGroupInput; exports.InputGroupTextarea = InputGroupTextarea; exports.Combobox = Combobox; exports.ComboboxValue = ComboboxValue; exports.ComboboxTrigger = ComboboxTrigger; exports.ComboboxInput = ComboboxInput; exports.ComboboxContent = ComboboxContent; exports.ComboboxList = ComboboxList; exports.ComboboxItem = ComboboxItem; exports.ComboboxGroup = ComboboxGroup; exports.ComboboxLabel = ComboboxLabel; exports.ComboboxCollection = ComboboxCollection; exports.ComboboxEmpty = ComboboxEmpty; exports.ComboboxSeparator = ComboboxSeparator; exports.ComboboxChips = ComboboxChips; exports.ComboboxChip = ComboboxChip; exports.ComboboxChipsInput = ComboboxChipsInput; exports.useComboboxAnchor = useComboboxAnchor; exports.Dialog = Dialog; exports.DialogTrigger = DialogTrigger; exports.DialogPortal = DialogPortal; exports.DialogClose = DialogClose; exports.DialogOverlay = DialogOverlay; exports.DialogContent = DialogContent; exports.DialogHeader = DialogHeader; exports.DialogFooter = DialogFooter; exports.DialogTitle = DialogTitle; exports.DialogDescription = DialogDescription; exports.Command = Command; exports.CommandDialog = CommandDialog; exports.CommandInput = CommandInput; exports.CommandList = CommandList; exports.CommandEmpty = CommandEmpty; exports.CommandGroup = CommandGroup; exports.CommandSeparator = CommandSeparator; exports.CommandItem = CommandItem; exports.CommandShortcut = CommandShortcut; exports.ConfirmDialog = ConfirmDialog; exports.ContextMenu = ContextMenu; exports.ContextMenuPortal = ContextMenuPortal; exports.ContextMenuTrigger = ContextMenuTrigger; exports.ContextMenuContent = ContextMenuContent; exports.ContextMenuGroup = ContextMenuGroup; exports.ContextMenuLabel = ContextMenuLabel; exports.ContextMenuItem = ContextMenuItem; exports.ContextMenuSub = ContextMenuSub; exports.ContextMenuSubTrigger = ContextMenuSubTrigger; exports.ContextMenuSubContent = ContextMenuSubContent; exports.ContextMenuCheckboxItem = ContextMenuCheckboxItem; exports.ContextMenuRadioGroup = ContextMenuRadioGroup; exports.ContextMenuRadioItem = ContextMenuRadioItem; exports.ContextMenuSeparator = ContextMenuSeparator; exports.ContextMenuShortcut = ContextMenuShortcut; exports.Drawer = Drawer; exports.DrawerTrigger = DrawerTrigger; exports.DrawerPortal = DrawerPortal; exports.DrawerClose = DrawerClose; exports.DrawerOverlay = DrawerOverlay; exports.DrawerContent = DrawerContent; exports.DrawerHeader = DrawerHeader; exports.DrawerFooter = DrawerFooter; exports.DrawerTitle = DrawerTitle; exports.DrawerDescription = DrawerDescription; exports.DropdownMenu = DropdownMenu; exports.DropdownMenuPortal = DropdownMenuPortal; exports.DropdownMenuTrigger = DropdownMenuTrigger; exports.DropdownMenuContent = DropdownMenuContent; exports.DropdownMenuGroup = DropdownMenuGroup; exports.DropdownMenuLabel = DropdownMenuLabel; exports.DropdownMenuItem = DropdownMenuItem; exports.DropdownMenuSub = DropdownMenuSub; exports.DropdownMenuSubTrigger = DropdownMenuSubTrigger; exports.DropdownMenuSubContent = DropdownMenuSubContent; exports.DropdownMenuCheckboxItem = DropdownMenuCheckboxItem; exports.DropdownMenuRadioGroup = DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = DropdownMenuRadioItem; exports.DropdownMenuSeparator = DropdownMenuSeparator; exports.DropdownMenuShortcut = DropdownMenuShortcut; exports.EmptyState = EmptyState; exports.Label = Label; exports.Separator = Separator; exports.FieldSet = FieldSet; exports.FieldLegend = FieldLegend; exports.FieldGroup = FieldGroup; exports.Field = Field; exports.FieldContent = FieldContent; exports.FieldLabel = FieldLabel; exports.FieldTitle = FieldTitle; exports.FieldDescription = FieldDescription; exports.FieldSeparator = FieldSeparator; exports.FieldError = FieldError; exports.Form = Form; exports.HoverCard = HoverCard; exports.HoverCardTrigger = HoverCardTrigger; exports.HoverCardContent = HoverCardContent; exports.InputOTP = InputOTP; exports.InputOTPGroup = InputOTPGroup; exports.InputOTPSlot = InputOTPSlot; exports.InputOTPSeparator = InputOTPSeparator; exports.NavigationMenu = NavigationMenu; exports.NavigationMenuList = NavigationMenuList; exports.NavigationMenuItem = NavigationMenuItem; exports.navigationMenuTriggerStyle = navigationMenuTriggerStyle; exports.NavigationMenuTrigger = NavigationMenuTrigger; exports.NavigationMenuContent = NavigationMenuContent; exports.NavigationMenuPositioner = NavigationMenuPositioner; exports.NavigationMenuLink = NavigationMenuLink; exports.NavigationMenuIndicator = NavigationMenuIndicator; exports.Popover = Popover; exports.PopoverTrigger = PopoverTrigger; exports.PopoverContent = PopoverContent; exports.PopoverHeader = PopoverHeader; exports.PopoverTitle = PopoverTitle; exports.PopoverDescription = PopoverDescription; exports.Progress = Progress; exports.ProgressTrack = ProgressTrack; exports.ProgressIndicator = ProgressIndicator; exports.ProgressLabel = ProgressLabel; exports.ProgressValue = ProgressValue; exports.RadioGroup = RadioGroup; exports.RadioGroupItem = RadioGroupItem; exports.ResizablePanelGroup = ResizablePanelGroup; exports.ResizablePanel = ResizablePanel; exports.ResizableHandle = ResizableHandle; exports.ScrollArea = ScrollArea; exports.ScrollBar = ScrollBar; exports.Select = Select; exports.SelectGroup = SelectGroup; exports.SelectValue = SelectValue; exports.SelectTrigger = SelectTrigger; exports.SelectContent = SelectContent; exports.SelectLabel = SelectLabel; exports.SelectItem = SelectItem; exports.SelectSeparator = SelectSeparator; exports.SelectScrollUpButton = SelectScrollUpButton; exports.SelectScrollDownButton = SelectScrollDownButton; exports.Sheet = Sheet; exports.SheetTrigger = SheetTrigger; exports.SheetClose = SheetClose; exports.SheetContent = SheetContent; exports.SheetHeader = SheetHeader; exports.SheetFooter = SheetFooter; exports.SheetTitle = SheetTitle; exports.SheetDescription = SheetDescription; exports.Skeleton = Skeleton; exports.TooltipProvider = TooltipProvider; exports.Tooltip = Tooltip2; exports.TooltipTrigger = TooltipTrigger; exports.TooltipContent = TooltipContent; exports.useSidebar = useSidebar; exports.SidebarProvider = SidebarProvider; exports.Sidebar = Sidebar; exports.SidebarTrigger = SidebarTrigger; exports.SidebarRail = SidebarRail; exports.SidebarInset = SidebarInset; exports.SidebarInput = SidebarInput; exports.SidebarHeader = SidebarHeader; exports.SidebarFooter = SidebarFooter; exports.SidebarSeparator = SidebarSeparator; exports.SidebarContent = SidebarContent; exports.SidebarGroup = SidebarGroup; exports.SidebarGroupLabel = SidebarGroupLabel; exports.SidebarGroupAction = SidebarGroupAction; exports.SidebarGroupContent = SidebarGroupContent; exports.SidebarMenu = SidebarMenu; exports.SidebarMenuItem = SidebarMenuItem; exports.SidebarMenuButton = SidebarMenuButton; exports.SidebarMenuAction = SidebarMenuAction; exports.SidebarMenuBadge = SidebarMenuBadge; exports.SidebarMenuSkeleton = SidebarMenuSkeleton; exports.SidebarMenuSub = SidebarMenuSub; exports.SidebarMenuSubItem = SidebarMenuSubItem; exports.SidebarMenuSubButton = SidebarMenuSubButton; exports.Slider = Slider; exports.Toaster = Toaster; exports.spinnerVariants = spinnerVariants; exports.Spinner = Spinner; exports.Switch = Switch; exports.Table = Table; exports.TableHeader = TableHeader; exports.TableBody = TableBody; exports.TableFooter = TableFooter; exports.TableRow = TableRow; exports.TableHead = TableHead; exports.TableCell = TableCell; exports.TableCaption = TableCaption; exports.Tabs = Tabs; exports.tabsListVariants = tabsListVariants; exports.TabsList = TabsList; exports.TabsTrigger = TabsTrigger; exports.TabsContent = TabsContent; exports.toggleVariants = toggleVariants; exports.Toggle = Toggle; exports.KanbanRoot = KanbanRoot; exports.KanbanBoard = KanbanBoard; exports.KanbanColumn = KanbanColumn; exports.KanbanColumnHandle = KanbanColumnHandle; exports.KanbanItem = KanbanItem; exports.KanbanItemHandle = KanbanItemHandle; exports.KanbanOverlay = KanbanOverlay; exports.Link = Link; exports.MultiSelect = MultiSelect; exports.useDebounce2 = useDebounce; exports.MultipleSelector = MultipleSelector; exports.EntityAvatar = EntityAvatar; exports.errorToast = errorToast; exports.EditableAvatar = EditableAvatar; exports.TableCellAvatar = TableCellAvatar; exports.HeaderChildrenProvider = HeaderChildrenProvider; exports.useHeaderChildren = useHeaderChildren; exports.HeaderLeftContentProvider = HeaderLeftContentProvider; exports.useHeaderLeftContent = useHeaderLeftContent; exports.BreadcrumbNavigation = BreadcrumbNavigation; exports.ContentTitle = ContentTitle; exports.SharedProvider = SharedProvider; exports.useSharedContext = useSharedContext; exports.Header = Header; exports.ModeToggleSwitch = ModeToggleSwitch; exports.PageSection = PageSection; exports.recentPagesAtom = recentPagesAtom; exports.RecentPagesNavigator = RecentPagesNavigator; exports.PageContainer = PageContainer; exports.partitionTabs = partitionTabs; exports.ReactMarkdownContainer = ReactMarkdownContainer; exports.RoundPageContainerTitle = RoundPageContainerTitle; exports.RoundPageContainer = RoundPageContainer; exports.TabsContainer = TabsContainer; exports.AttributeElement = AttributeElement; exports.AllUsersListContainer = AllUsersListContainer; exports.UserContent = UserContent; exports.UserAvatar = UserAvatar; exports.UserAvatarList = UserAvatarList; exports.useUserSearch = useUserSearch; exports.useUserTableStructure = useUserTableStructure; exports.UserSearchPopover = UserSearchPopover; exports.UserIndexDetails = UserIndexDetails; exports.UserStanadaloneDetails = UserStanadaloneDetails; exports.UserContainer = UserContainer; exports.UserIndexContainer = UserIndexContainer; exports.UsersListContainer = UsersListContainer; exports.AdminUsersList = AdminUsersList; exports.CompanyUsersList = CompanyUsersList; exports.ContributorsList = ContributorsList; exports.RelevantUsersList = RelevantUsersList; exports.RoleUsersList = RoleUsersList; exports.UserListInAdd = UserListInAdd; exports.UsersList = UsersList; exports.UsersListByContentIds = UsersListByContentIds; exports.AllowedUsersDetails = AllowedUsersDetails; exports.ErrorDetails = ErrorDetails; exports.BlockNoteEditorMentionHoverCard = BlockNoteEditorMentionHoverCard; exports.mentionDataAttrs = mentionDataAttrs; exports.parseMentionElement = parseMentionElement; exports.createMentionInlineContentSpec = createMentionInlineContentSpec; exports.useMentionInsert = useMentionInsert; exports.BlockNoteEditorMentionSuggestionMenu = BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteEditorContainer = BlockNoteEditorContainer; exports.BlockNoteViewerContainer = BlockNoteViewerContainer; exports.SectionHeader = SectionHeader; exports.MicroLabel = MicroLabel; exports.DetailField = DetailField; exports.FormFeatures = FormFeatures; exports.CommonAssociationTrigger = CommonAssociationTrigger; exports.CommonAssociationCommandDialog = CommonAssociationCommandDialog; exports.triggerAssociationToast = triggerAssociationToast; exports.CommonDeleter = CommonDeleter; exports.CommonEditorButtons = CommonEditorButtons; exports.CommonEditorDiscardDialog = CommonEditorDiscardDialog; exports.CommonEditorHeader = CommonEditorHeader; exports.CommonEditorTrigger = CommonEditorTrigger; exports.CommonAddTrigger = CommonAddTrigger; exports.CurrencyInput = CurrencyInput; exports.DatePickerPopover = DatePickerPopover; exports.DateRangeSelector = DateRangeSelector; exports.useEditorDialog = useEditorDialog; exports.EditorSheet = EditorSheet; exports.FormFieldWrapper = FormFieldWrapper; exports.EntityMultiSelector = EntityMultiSelector; exports.EntitySelector = EntitySelector; exports.useFileUpload = useFileUpload; exports.FileUploader = FileUploader; exports.FileUploaderContent = FileUploaderContent; exports.FileUploaderItem = FileUploaderItem; exports.FileInput = FileInput; exports.FormBlockNote = FormBlockNote; exports.FormCheckbox = FormCheckbox; exports.FormDate = FormDate; exports.FormDateTime = FormDateTime; exports.FormInput = FormInput; exports.FormBody = FormBody; exports.FormSection = FormSection; exports.FormRow = FormRow; exports.FormCol = FormCol; exports.PasswordInput = PasswordInput; exports.FormPassword = FormPassword; exports.FormPlaceAutocomplete = FormPlaceAutocomplete; exports.FormSelect = FormSelect; exports.FormSlider = FormSlider; exports.FormSwitch = FormSwitch; exports.FormTextarea = FormTextarea; exports.GdprConsentCheckbox = GdprConsentCheckbox; exports.PageContainerContentDetails = PageContainerContentDetails; exports.PageContentContainer = PageContentContainer; exports.cellComponent = cellComponent; exports.cellDate = cellDate; exports.cellDateTime = cellDateTime; exports.cellId = cellId; exports.cellLink = cellLink; exports.cellUrl = cellUrl; exports.ContentTableSearch = ContentTableSearch; exports.ContentListTable = ContentListTable; exports.ContentListGrid = ContentListGrid; exports.ItalianFiscalData_default = ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = ItalianFiscalDataDisplay; exports.parseFiscalData = parseFiscalData; exports.FiscalDataDisplay = FiscalDataDisplay; exports.EntityHeroLayout = EntityHeroLayout; exports.EntityHero = EntityHero; exports.EntityHeroAvatar = EntityHeroAvatar; exports.EntityHeroMetaRow = EntityHeroMetaRow; exports.EntitySection = EntitySection; exports.GdprConsentSection = GdprConsentSection; exports.AuthContainer = AuthContainer; exports.BackupCodesDialog = BackupCodesDialog; exports.TotpInput = TotpInput; exports.DisableTwoFactorDialog = DisableTwoFactorDialog; exports.PasskeyList = PasskeyList; exports.PasskeySetupDialog = PasskeySetupDialog; exports.TotpAuthenticatorList = TotpAuthenticatorList; exports.TotpSetupDialog = TotpSetupDialog; exports.TwoFactorSettings = TwoFactorSettings; exports.SecurityContainer = SecurityContainer; exports.LandingComponent = LandingComponent; exports.AcceptInvitation = AcceptInvitation; exports.ActivateAccount = ActivateAccount; exports.Cookies = Cookies; exports.ForgotPassword = ForgotPassword; exports.Login = Login; exports.Logout = Logout; exports.RefreshUser = RefreshUser; exports.ResetPassword = ResetPassword; exports.PasskeyButton = PasskeyButton; exports.TwoFactorChallenge = TwoFactorChallenge; exports.CompanyContent = CompanyContent; exports.TokenStatusIndicator = TokenStatusIndicator; exports.CompanyDetails = CompanyDetails; exports.AdminCompanyContainer = AdminCompanyContainer; exports.CompanyContainer = CompanyContainer; exports.CompanyConfigurationEditor = CompanyConfigurationEditor; exports.CompanyDeleter = CompanyDeleter; exports.CompanyEditor = CompanyEditor; exports.CompaniesList = CompaniesList; exports.ContentsList = ContentsList; exports.ContentsListById = ContentsListById; exports.RelevantContentsList = RelevantContentsList; exports.HowToCommandViewer = HowToCommandViewer; exports.HowToCommand = HowToCommand; exports.HowToDeleter = HowToDeleter; exports.HowToMultiSelector = HowToMultiSelector; exports.HowToEditor = HowToEditor; exports.HowToProvider = HowToProvider; exports.useHowToContext = useHowToContext; exports.HowToContent = HowToContent; exports.HowToDetails = HowToDetails; exports.HowToContainer = HowToContainer; exports.HowToList = HowToList; exports.HowToListContainer = HowToListContainer; exports.HowToSelector = HowToSelector; exports.AssistantProvider = AssistantProvider; exports.useAssistantContext = useAssistantContext; exports.AssistantComposer = AssistantComposer; exports.AssistantEmptyState = AssistantEmptyState; exports.MessageSourcesPanel = MessageSourcesPanel; exports.MessageItem = MessageItem; exports.MessageList = MessageList; exports.AssistantThread = AssistantThread; exports.AssistantContainer = AssistantContainer; exports.NotificationErrorBoundary = NotificationErrorBoundary; exports.generateNotificationData = generateNotificationData; exports.NotificationToast = NotificationToast; exports.NotificationMenuItem = NotificationMenuItem; exports.NotificationContextProvider = NotificationContextProvider; exports.useNotificationContext = useNotificationContext; exports.NotificationsList = NotificationsList; exports.NotificationsListContainer = NotificationsListContainer; exports.NotificationModal = NotificationModal; exports.PushNotificationProvider = PushNotificationProvider; exports.OnboardingCard = OnboardingCard; exports.ReferralCodeCapture = ReferralCodeCapture; exports.ReferralWidget = ReferralWidget; exports.ReferralDialog = ReferralDialog; exports.RoleProvider = RoleProvider; exports.useRoleContext = useRoleContext; exports.RoleDetails = RoleDetails; exports.RoleContainer = RoleContainer; exports.FormRoles = FormRoles; exports.RemoveUserFromRole = RemoveUserFromRole; exports.UserRoleAdd = UserRoleAdd; exports.useRoleTableStructure = useRoleTableStructure; exports.RolesList = RolesList; exports.UserRolesList = UserRolesList; exports.OAuthRedirectUriInput = OAuthRedirectUriInput; exports.OAuthScopeSelector = OAuthScopeSelector; exports.OAuthClientSecretDisplay = OAuthClientSecretDisplay; exports.OAuthClientCard = OAuthClientCard; exports.OAuthClientList = OAuthClientList; exports.OAuthClientForm = OAuthClientForm; exports.OAuthClientDetail = OAuthClientDetail; exports.OAuthConsentHeader = OAuthConsentHeader; exports.OAuthScopeList = OAuthScopeList; exports.OAuthConsentActions = OAuthConsentActions; exports.useOAuthConsent = useOAuthConsent; exports.OAuthConsentScreen = OAuthConsentScreen; exports.WaitlistQuestionnaireRenderer = WaitlistQuestionnaireRenderer; exports.WaitlistForm = WaitlistForm; exports.WaitlistHeroSection = WaitlistHeroSection; exports.WaitlistSuccessState = WaitlistSuccessState; exports.WaitlistConfirmation = WaitlistConfirmation; exports.WaitlistList = WaitlistList; exports.RbacProvider = RbacProvider; exports.useRbacContext = useRbacContext; exports.RbacPermissionCell = RbacPermissionCell; exports.RbacPermissionPicker = RbacPermissionPicker; exports.RbacContainer = RbacContainer; exports.RbacByRoleContainer = RbacByRoleContainer; exports.AddUserToRole = AddUserToRole; exports.UserAvatarEditor = UserAvatarEditor; exports.UserDeleter = UserDeleter; exports.UserEditor = UserEditor; exports.UserMultiSelect = UserMultiSelect; exports.UserReactivator = UserReactivator; exports.UserResentInvitationEmail = UserResentInvitationEmail; exports.UserSelector = UserSelector; exports.UserProvider = UserProvider; exports.useUserContext = useUserContext; exports.CompanyProvider = CompanyProvider; exports.useCompanyContext = useCompanyContext; exports.DEFAULT_ONBOARDING_LABELS = DEFAULT_ONBOARDING_LABELS; exports.OnboardingProvider = OnboardingProvider; exports.useOnboarding = useOnboarding; exports.CommonProvider = CommonProvider; exports.useCommonContext = useCommonContext; exports.useNotificationSync = useNotificationSync; exports.usePageTracker = usePageTracker; exports.useSocket = useSocket; exports.useSubscriptionStatus = useSubscriptionStatus; exports.useContentTableStructure = useContentTableStructure; exports.useOAuthClients = useOAuthClients; exports.useOAuthClient = useOAuthClient;
23617
+ //# sourceMappingURL=chunk-PE6DSRTQ.js.map