@carlonicora/nextjs-jsonapi 1.129.0 → 1.130.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 (115) hide show
  1. package/dist/{BlockNoteEditor-RG2YQDMQ.js → BlockNoteEditor-AI5C4PBZ.js} +11 -11
  2. package/dist/BlockNoteEditor-AI5C4PBZ.js.map +1 -0
  3. package/dist/{BlockNoteEditor-WIAQJ5HM.mjs → BlockNoteEditor-KARBUMFE.mjs} +4 -4
  4. package/dist/BlockNoteEditor-KARBUMFE.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-YQTMNZQB.js → chunk-BHZVFSDR.js} +158 -89
  10. package/dist/chunk-BHZVFSDR.js.map +1 -0
  11. package/dist/{chunk-F54XZKPY.mjs → chunk-NXHNJCY2.mjs} +2119 -2050
  12. package/dist/chunk-NXHNJCY2.mjs.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.js +2 -2
  21. package/dist/contexts/index.mjs +1 -1
  22. package/dist/features/help/index.js +32 -31
  23. package/dist/features/help/index.js.map +1 -1
  24. package/dist/features/help/index.mjs +3 -2
  25. package/dist/features/help/index.mjs.map +1 -1
  26. package/package.json +1 -1
  27. package/src/components/containers/ReactMarkdownContainer.tsx +2 -2
  28. package/src/components/editors/BlockNoteDiffInlineContent.tsx +10 -10
  29. package/src/components/editors/BlockNoteEditor.tsx +2 -2
  30. package/src/components/forms/FormCheckbox.tsx +2 -2
  31. package/src/components/forms/FormFieldWrapper.tsx +1 -1
  32. package/src/components/forms/FormSlider.tsx +1 -1
  33. package/src/components/forms/GdprConsentCheckbox.tsx +1 -1
  34. package/src/components/hero/EntitySection.tsx +2 -1
  35. package/src/components/index.ts +1 -0
  36. package/src/components/typography/DetailField.tsx +35 -0
  37. package/src/components/typography/MicroLabel.tsx +21 -0
  38. package/src/components/typography/SectionHeader.tsx +18 -0
  39. package/src/components/typography/index.ts +6 -0
  40. package/src/features/assistant/components/parts/AssistantEmptyState.tsx +2 -1
  41. package/src/features/assistant/components/parts/AssistantSidebar.tsx +2 -1
  42. package/src/features/auth/components/buttons/GoogleSignInButton.tsx +1 -1
  43. package/src/features/auth/components/forms/Register.tsx +1 -1
  44. package/src/features/auth/components/forms/TwoFactorChallenge.tsx +3 -3
  45. package/src/features/auth/components/two-factor/BackupCodesDialog.tsx +1 -1
  46. package/src/features/auth/components/two-factor/TotpInput.tsx +2 -2
  47. package/src/features/auth/components/two-factor/TwoFactorSettings.tsx +3 -3
  48. package/src/features/billing/components/cards/BillingUsageSummaryCard.tsx +4 -4
  49. package/src/features/billing/components/cards/CustomerInfoCard.tsx +6 -6
  50. package/src/features/billing/components/cards/InvoicesSummaryCard.tsx +5 -5
  51. package/src/features/billing/components/cards/PaymentMethodSummaryCard.tsx +4 -4
  52. package/src/features/billing/components/cards/SubscriptionSummaryCard.tsx +4 -4
  53. package/src/features/billing/components/containers/BillingDashboardContainer.tsx +2 -2
  54. package/src/features/billing/components/widgets/BillingAlertBanner.tsx +8 -8
  55. package/src/features/billing/stripe-customer/components/containers/PaymentMethodsContainer.tsx +2 -2
  56. package/src/features/billing/stripe-customer/components/details/PaymentMethodCard.tsx +8 -2
  57. package/src/features/billing/stripe-customer/components/forms/PaymentMethodForm.tsx +1 -1
  58. package/src/features/billing/stripe-invoice/components/details/InvoiceDetails.tsx +16 -18
  59. package/src/features/billing/stripe-invoice/components/lists/InvoicesList.tsx +2 -2
  60. package/src/features/billing/stripe-invoice/components/widgets/InvoiceStatusBadge.tsx +8 -7
  61. package/src/features/billing/stripe-price/components/lists/PricesList.tsx +6 -13
  62. package/src/features/billing/stripe-product/components/containers/ProductsAdminContainer.tsx +3 -3
  63. package/src/features/billing/stripe-product/components/lists/ProductsList.tsx +4 -7
  64. package/src/features/billing/stripe-promotion-code/components/PromoCodeInput.tsx +6 -6
  65. package/src/features/billing/stripe-subscription/components/containers/SubscriptionsContainer.tsx +2 -2
  66. package/src/features/billing/stripe-subscription/components/details/SubscriptionDetails.tsx +10 -10
  67. package/src/features/billing/stripe-subscription/components/widgets/PricingCard.tsx +2 -2
  68. package/src/features/billing/stripe-subscription/components/widgets/ProductPricingRow.tsx +2 -1
  69. package/src/features/billing/stripe-subscription/components/widgets/ProrationPreview.tsx +1 -1
  70. package/src/features/billing/stripe-subscription/components/widgets/SubscriptionStatusBadge.tsx +12 -11
  71. package/src/features/billing/stripe-subscription/components/wizards/WizardStepPaymentMethod.tsx +2 -1
  72. package/src/features/billing/stripe-subscription/components/wizards/WizardStepReview.tsx +10 -13
  73. package/src/features/billing/stripe-usage/components/containers/UsageContainer.tsx +2 -2
  74. package/src/features/billing/stripe-usage/components/details/UsageSummaryCard.tsx +6 -6
  75. package/src/features/billing/stripe-usage/components/lists/UsageHistoryTable.tsx +3 -2
  76. package/src/features/company/components/details/CompanyContent.tsx +4 -7
  77. package/src/features/company/components/details/TokenStatusIndicator.tsx +5 -5
  78. package/src/features/company/components/forms/CompanyDeleter.tsx +1 -1
  79. package/src/features/company/components/forms/CompanyEditor.tsx +3 -2
  80. package/src/features/content/components/lists/ContentsList.tsx +2 -1
  81. package/src/features/feature/components/forms/FormFeatures.tsx +6 -1
  82. package/src/features/help/components/HelpTOC.tsx +2 -3
  83. package/src/features/how-to/components/containers/HowToCommand.tsx +3 -3
  84. package/src/features/how-to/components/containers/HowToCommandViewer.tsx +4 -1
  85. package/src/features/notification/components/containers/NotificationsListContainer.tsx +1 -1
  86. package/src/features/notification/components/modals/NotificationModal.tsx +2 -2
  87. package/src/features/oauth/components/OAuthClientCard.tsx +1 -1
  88. package/src/features/oauth/components/OAuthClientDetail.tsx +5 -9
  89. package/src/features/oauth/components/OAuthClientForm.tsx +3 -3
  90. package/src/features/oauth/components/OAuthClientList.tsx +5 -4
  91. package/src/features/oauth/components/OAuthClientSecretDisplay.tsx +3 -3
  92. package/src/features/oauth/components/OAuthRedirectUriInput.tsx +1 -1
  93. package/src/features/oauth/components/OAuthScopeSelector.tsx +2 -2
  94. package/src/features/oauth/components/consent/OAuthConsentHeader.tsx +1 -1
  95. package/src/features/oauth/components/consent/OAuthConsentScreen.tsx +1 -1
  96. package/src/features/oauth/components/consent/OAuthScopeList.tsx +2 -3
  97. package/src/features/rbac/components/RbacContainer.tsx +1 -1
  98. package/src/features/rbac/components/RbacPermissionCell.tsx +2 -2
  99. package/src/features/rbac/components/RbacPermissionPicker.tsx +3 -3
  100. package/src/features/referral/components/ReferralWidget.tsx +7 -6
  101. package/src/features/waitlist/components/forms/WaitlistForm.tsx +3 -2
  102. package/src/features/waitlist/components/forms/WaitlistQuestionnaireRenderer.tsx +1 -1
  103. package/src/features/waitlist/components/lists/WaitlistList.tsx +2 -1
  104. package/src/features/waitlist/components/sections/WaitlistConfirmation.tsx +3 -2
  105. package/src/features/waitlist/components/sections/WaitlistSuccessState.tsx +2 -1
  106. package/src/features/waitlist/hooks/useWaitlistTableStructure.tsx +1 -1
  107. package/src/shadcnui/custom/link.tsx +7 -1
  108. package/src/shadcnui/ui/alert.tsx +1 -1
  109. package/src/shadcnui/ui/badge.tsx +7 -0
  110. package/src/shadcnui/ui/button.tsx +1 -1
  111. package/src/shadcnui/ui/chart.tsx +1 -3
  112. package/dist/BlockNoteEditor-RG2YQDMQ.js.map +0 -1
  113. package/dist/BlockNoteEditor-WIAQJ5HM.mjs.map +0 -1
  114. package/dist/chunk-F54XZKPY.mjs.map +0 -1
  115. 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-AI5C4PBZ.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") }),
@@ -16762,7 +16828,7 @@ _chunk7QVYU63Ejs.__name.call(void 0, EntityHeroMetaRow, "EntityHeroMetaRow");
16762
16828
 
16763
16829
  function EntitySection({ title, columns, children, className }) {
16764
16830
  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 }),
16831
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MicroLabel, { as: "h3", children: title }),
16766
16832
  columns ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
16767
16833
  "div",
16768
16834
  {
@@ -17052,7 +17118,7 @@ function Register() {
17052
17118
  children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
17053
17119
  Button,
17054
17120
  {
17055
- className: "w-full bg-white hover:bg-gray-50 text-gray-700 border border-gray-300",
17121
+ className: "text-muted-foreground w-full border border-gray-300 bg-white hover:bg-gray-50",
17056
17122
  variant: "outline",
17057
17123
  type: "button",
17058
17124
  children: [
@@ -17291,7 +17357,7 @@ Keep these codes safe. Each code can only be used once.`;
17291
17357
  ] })
17292
17358
  ] })
17293
17359
  ] }) : /* @__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)) }),
17360
+ /* @__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
17361
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex gap-2", children: [
17296
17362
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Button, { variant: "outline", className: "flex-1", onClick: handleCopyAll, children: [
17297
17363
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Copy, { className: "h-4 w-4 mr-2" }),
@@ -17367,12 +17433,12 @@ function TotpInput({ onComplete, disabled = false, autoFocus = true, error }) {
17367
17433
  onKeyDown: (e) => handleKeyDown(index, e),
17368
17434
  onPaste: handlePaste,
17369
17435
  disabled,
17370
- className: `w-12 h-14 text-center text-2xl font-mono ${error ? "border-destructive" : ""}`,
17436
+ className: `w-12 h-14 text-center text-2xl tabular-nums ${error ? "border-destructive" : ""}`,
17371
17437
  "data-testid": `totp-input-${index}`
17372
17438
  },
17373
17439
  index
17374
17440
  )) }),
17375
- error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-destructive", "data-testid": "totp-error", children: error })
17441
+ error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", "data-testid": "totp-error", children: error })
17376
17442
  ] });
17377
17443
  }
17378
17444
  _chunk7QVYU63Ejs.__name.call(void 0, TotpInput, "TotpInput");
@@ -17848,7 +17914,7 @@ function TwoFactorSettings() {
17848
17914
  const isEnabled = _nullishCoalesce(_optionalChain([status, 'optionalAccess', _504 => _504.isEnabled]), () => ( false));
17849
17915
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Card, { children: [
17850
17916
  /* @__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" }),
17917
+ 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
17918
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { children: [
17853
17919
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { children: t("auth.two_factor.title") }),
17854
17920
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardDescription, { children: isEnabled ? t("auth.two_factor.enabled_description") : t("auth.two_factor.disabled_description") })
@@ -17889,7 +17955,7 @@ function TwoFactorSettings() {
17889
17955
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Separator, {}),
17890
17956
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-between", children: [
17891
17957
  /* @__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") }),
17958
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "text-success font-medium", children: t("auth.two_factor.enable_2fa") }),
17893
17959
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-muted-foreground", children: t("auth.two_factor.enable_description") })
17894
17960
  ] }),
17895
17961
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Button, { onClick: handleEnable2FA, disabled: isEnabling, children: isEnabling ? t("common.loading") : t("auth.two_factor.enable_button") })
@@ -17935,7 +18001,7 @@ function GoogleSignInButton({ referralCode }) {
17935
18001
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Link, { href: buildGoogleOAuthUrl(), className: "flex w-full justify-end", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
17936
18002
  Button,
17937
18003
  {
17938
- className: "w-full bg-white hover:bg-gray-50 text-gray-700 border border-gray-300",
18004
+ className: "text-muted-foreground w-full border border-gray-300 bg-white hover:bg-gray-50",
17939
18005
  variant: "outline",
17940
18006
  "data-testid": "page-login-button-google",
17941
18007
  children: [
@@ -18673,7 +18739,7 @@ function TwoFactorChallenge() {
18673
18739
  const hasBackup = availableMethods.includes("backup");
18674
18740
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _jsxruntime.Fragment, { children: [
18675
18741
  /* @__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") }),
18742
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { className: "text-primary", children: t("auth.two_factor.verification_required") }),
18677
18743
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardDescription, { children: t("auth.two_factor.enter_verification_code") })
18678
18744
  ] }),
18679
18745
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardContent, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Tabs, { defaultValue: hasTotp ? "totp" : hasPasskey ? "passkey" : "backup", children: [
@@ -18708,12 +18774,12 @@ function TwoFactorChallenge() {
18708
18774
  onChange: (e) => setBackupCode(e.target.value.toUpperCase()),
18709
18775
  placeholder: "XXXXXXXX",
18710
18776
  maxLength: 8,
18711
- className: `w-48 text-center font-mono uppercase ${backupError ? "border-destructive" : ""}`,
18777
+ className: `w-48 text-center tabular-nums uppercase ${backupError ? "border-destructive" : ""}`,
18712
18778
  disabled: isVerifying,
18713
18779
  "data-testid": "backup-code-input"
18714
18780
  }
18715
18781
  ),
18716
- backupError && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-destructive", children: backupError }),
18782
+ backupError && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", children: backupError }),
18717
18783
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
18718
18784
  Button,
18719
18785
  {
@@ -18735,7 +18801,7 @@ _chunk7QVYU63Ejs.__name.call(void 0, TwoFactorChallenge, "TwoFactorChallenge");
18735
18801
  function ContentsList({ contentList }) {
18736
18802
  const t = _nextintl.useTranslations.call(void 0, );
18737
18803
  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`) }),
18804
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: t(`content.news`) }),
18739
18805
  /* @__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
18806
  ] });
18741
18807
  }
@@ -18892,7 +18958,7 @@ function HowToCommandViewer({ howTo, onBack, onStartChat }) {
18892
18958
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ArrowLeft, { className: "h-4 w-4" }),
18893
18959
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-1", children: t("howto.command.back") })
18894
18960
  ] }),
18895
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h2", { className: "flex-1 truncate text-lg font-semibold", children: howTo.name }),
18961
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, className: "flex-1 truncate", children: howTo.name }),
18896
18962
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-muted-foreground flex items-center gap-1.5 text-sm", children: [
18897
18963
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.BookOpen, { className: "h-4 w-4" }),
18898
18964
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { children: t("howto.reading_time.label", { minutes: readingTime }) })
@@ -19064,15 +19130,15 @@ function HowToCommand({ pathname, extraGroups, onStartChat }) {
19064
19130
  ] }),
19065
19131
  /* @__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
19132
  /* @__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" }),
19133
+ /* @__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
19134
  t(`howto.command.keyboard.select`)
19069
19135
  ] }),
19070
19136
  /* @__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" }),
19137
+ /* @__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
19138
  t(`howto.command.keyboard.navigate`)
19073
19139
  ] }),
19074
19140
  /* @__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`) }),
19141
+ /* @__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
19142
  t(`howto.command.keyboard.close`)
19077
19143
  ] })
19078
19144
  ] })
@@ -19379,7 +19445,7 @@ function AssistantSidebar({ threads, activeId, onSelect, onNew }) {
19379
19445
  const renderSection = /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, (label, items) => {
19380
19446
  if (items.length === 0) return null;
19381
19447
  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 }),
19448
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MicroLabel, { className: "px-2 py-1", children: label }),
19383
19449
  items.map((thread) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
19384
19450
  "button",
19385
19451
  {
@@ -19469,7 +19535,7 @@ function AssistantEmptyState({ onSend, operatorMode = false, onOperatorModeChang
19469
19535
  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
19536
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-center", children: [
19471
19537
  /* @__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") }),
19538
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { children: t("features.assistant.empty_state.title") }),
19473
19539
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground mt-1 text-sm", children: t("features.assistant.empty_state.subtitle") })
19474
19540
  ] }),
19475
19541
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AssistantComposer, { value: draft, onValueChange: setDraft, onSend }),
@@ -20314,7 +20380,7 @@ function NotificationsListContainerContent() {
20314
20380
  const t = _nextintl.useTranslations.call(void 0, );
20315
20381
  const { notifications: _notifications, isLoading: _isLoading, error } = useNotificationContext();
20316
20382
  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: [
20383
+ 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
20384
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "p", { children: [
20319
20385
  "Error loading notifications: ",
20320
20386
  error
@@ -20488,13 +20554,13 @@ function NotificationModalContent({ isOpen, setIsOpen }) {
20488
20554
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, CardHeader, { className: "p-4", children: [
20489
20555
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { children: t(`entities.notifications`, { count: 2 }) }),
20490
20556
  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: [
20557
+ error && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-destructive text-xs/relaxed", children: [
20492
20558
  "Error: ",
20493
20559
  error
20494
20560
  ] })
20495
20561
  ] }),
20496
20562
  /* @__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`) }) })
20563
+ /* @__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
20564
  ] }) })
20499
20565
  ] });
20500
20566
  }
@@ -20725,14 +20791,14 @@ function ReferralWidget({
20725
20791
  !isDialog && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-start gap-3", children: [
20726
20792
  /* @__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
20793
  /* @__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 }),
20794
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { children: t.title }),
20729
20795
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-sm", children: t.description })
20730
20796
  ] })
20731
20797
  ] }),
20732
20798
  /* @__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 }),
20799
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { children: t.yourLink }),
20734
20800
  /* @__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" }),
20801
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Input, { ref: linkInputRef, value: referralUrl, readOnly: true, className: "tabular-nums text-sm" }),
20736
20802
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
20737
20803
  Button,
20738
20804
  {
@@ -20742,14 +20808,14 @@ function ReferralWidget({
20742
20808
  onClick: handleCopyLink,
20743
20809
  disabled: !referralUrl,
20744
20810
  "aria-label": t.copyButton,
20745
- children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Copy, { className: `h-4 w-4 ${copied ? "text-green-500" : ""}` })
20811
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Copy, { className: `h-4 w-4 ${copied ? "text-success" : ""}` })
20746
20812
  }
20747
20813
  )
20748
20814
  ] })
20749
20815
  ] }),
20750
20816
  /* @__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 }),
20817
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { children: t.inviteTitle }),
20818
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-xs/relaxed", children: t.inviteDescription }),
20753
20819
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex gap-2", children: [
20754
20820
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
20755
20821
  Input,
@@ -21180,7 +21246,7 @@ function OAuthRedirectUriInput({
21180
21246
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Plus, { className: "h-4 w-4 mr-2" }),
21181
21247
  "Add Redirect URI"
21182
21248
  ] }),
21183
- error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-destructive", children: error })
21249
+ error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", children: error })
21184
21250
  ] });
21185
21251
  }
21186
21252
  _chunk7QVYU63Ejs.__name.call(void 0, OAuthRedirectUriInput, "OAuthRedirectUriInput");
@@ -21246,7 +21312,7 @@ function OAuthScopeSelector({
21246
21312
  }
21247
21313
  ),
21248
21314
  /* @__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: [
21315
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Label, { htmlFor: `scope-${scopeInfo.scope}`, className: "cursor-pointer", children: [
21250
21316
  scopeInfo.name,
21251
21317
  isAdmin && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-2 text-xs text-destructive", children: "(Dangerous)" })
21252
21318
  ] }),
@@ -21258,7 +21324,7 @@ function OAuthScopeSelector({
21258
21324
  );
21259
21325
  }) })
21260
21326
  ] }, groupName)) }),
21261
- error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-destructive", children: error })
21327
+ error && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", children: error })
21262
21328
  ] });
21263
21329
  }
21264
21330
  _chunk7QVYU63Ejs.__name.call(void 0, OAuthScopeSelector, "OAuthScopeSelector");
@@ -21299,7 +21365,7 @@ function OAuthClientSecretDisplay({ secret, onDismiss, open, clientName }) {
21299
21365
  ] })
21300
21366
  ] }),
21301
21367
  /* @__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() }) }),
21368
+ /* @__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
21369
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
21304
21370
  Button,
21305
21371
  {
@@ -21308,11 +21374,11 @@ function OAuthClientSecretDisplay({ secret, onDismiss, open, clientName }) {
21308
21374
  size: "icon",
21309
21375
  onClick: handleCopy,
21310
21376
  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" })
21377
+ 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
21378
  }
21313
21379
  )
21314
21380
  ] }),
21315
- copied && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-green-600 text-center", children: "Copied to clipboard!" }),
21381
+ copied && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-success text-center text-sm", children: "Copied to clipboard!" }),
21316
21382
  /* @__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
21383
  ] }) });
21318
21384
  }
@@ -21376,7 +21442,7 @@ function OAuthClientCard({ client, onClick, onEdit, onDelete }) {
21376
21442
  client.description && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardDescription, { className: "line-clamp-2", children: client.description })
21377
21443
  ] }),
21378
21444
  /* @__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 }),
21445
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "tabular-nums", children: truncatedId }),
21380
21446
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { children: [
21381
21447
  "Created ",
21382
21448
  createdAgo
@@ -21406,7 +21472,7 @@ function OAuthClientList({
21406
21472
  if (isLoading && clients.length === 0) {
21407
21473
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-4", children: [
21408
21474
  /* @__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 }),
21475
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: title }),
21410
21476
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Skeleton, { className: "h-10 w-32" })
21411
21477
  ] }),
21412
21478
  /* @__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 +21480,14 @@ function OAuthClientList({
21414
21480
  }
21415
21481
  if (error) {
21416
21482
  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 }) }),
21483
+ /* @__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
21484
  /* @__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
21485
  ] });
21420
21486
  }
21421
21487
  if (clients.length === 0) {
21422
21488
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-4", children: [
21423
21489
  /* @__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 }),
21490
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: title }),
21425
21491
  onCreateClick && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Button, { onClick: onCreateClick, children: [
21426
21492
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Plus, { className: "h-4 w-4 mr-2" }),
21427
21493
  "New App"
@@ -21440,7 +21506,7 @@ function OAuthClientList({
21440
21506
  }
21441
21507
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-4", children: [
21442
21508
  /* @__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 }),
21509
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: title }),
21444
21510
  onCreateClick && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Button, { onClick: onCreateClick, children: [
21445
21511
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.Plus, { className: "h-4 w-4 mr-2" }),
21446
21512
  "New App"
@@ -21523,7 +21589,7 @@ function OAuthClientForm({ client, onSubmit, onCancel, isLoading = false }) {
21523
21589
  className: errors.name ? "border-destructive" : ""
21524
21590
  }
21525
21591
  ),
21526
- errors.name && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-destructive", children: errors.name })
21592
+ errors.name && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", children: errors.name })
21527
21593
  ] }),
21528
21594
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21529
21595
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { htmlFor: "description", children: "Description" }),
@@ -21569,14 +21635,14 @@ function OAuthClientForm({ client, onSubmit, onCancel, isLoading = false }) {
21569
21635
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-start space-x-3 p-3 rounded-md border", children: [
21570
21636
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, RadioGroupItem, { value: "confidential", id: "confidential", className: "mt-1" }),
21571
21637
  /* @__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" }),
21638
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { htmlFor: "confidential", className: "cursor-pointer", children: "Confidential" }),
21573
21639
  /* @__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
21640
  ] })
21575
21641
  ] }),
21576
21642
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-start space-x-3 p-3 rounded-md border", children: [
21577
21643
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, RadioGroupItem, { value: "public", id: "public", className: "mt-1" }),
21578
21644
  /* @__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" }),
21645
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { htmlFor: "public", className: "cursor-pointer", children: "Public" }),
21580
21646
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-sm text-muted-foreground", children: "Mobile or desktop application. Requires PKCE for authorization." })
21581
21647
  ] })
21582
21648
  ] })
@@ -21645,7 +21711,7 @@ function OAuthClientDetail({
21645
21711
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, Card, { children: [
21646
21712
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardHeader, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-start justify-between", children: [
21647
21713
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { children: [
21648
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { className: "text-2xl", children: client.name }),
21714
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardTitle, { children: client.name }),
21649
21715
  client.description && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, CardDescription, { className: "mt-1", children: client.description })
21650
21716
  ] }),
21651
21717
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center gap-2", children: [
@@ -21657,7 +21723,7 @@ function OAuthClientDetail({
21657
21723
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21658
21724
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { children: "Client ID" }),
21659
21725
  /* @__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" }),
21726
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Input, { value: client.clientId, readOnly: true, className: "tabular-nums" }),
21661
21727
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
21662
21728
  Button,
21663
21729
  {
@@ -21665,7 +21731,7 @@ function OAuthClientDetail({
21665
21731
  size: "icon",
21666
21732
  onClick: () => copyToClipboard2(client.clientId, "clientId"),
21667
21733
  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" })
21734
+ 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
21735
  }
21670
21736
  )
21671
21737
  ] })
@@ -21673,7 +21739,7 @@ function OAuthClientDetail({
21673
21739
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21674
21740
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Label, { children: "Client Secret" }),
21675
21741
  /* @__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" }),
21742
+ /* @__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
21743
  onRegenerateSecret && /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
21678
21744
  Button,
21679
21745
  {
@@ -21691,7 +21757,7 @@ function OAuthClientDetail({
21691
21757
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Separator, {}),
21692
21758
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21693
21759
  /* @__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: [
21760
+ /* @__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
21761
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ExternalLink, { className: "h-3 w-3 text-muted-foreground" }),
21696
21762
  uri
21697
21763
  ] }, index)) })
@@ -21764,7 +21830,7 @@ function OAuthConsentHeader({ client, logoUrl, appName = "Only35" }) {
21764
21830
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "text-center space-y-4", children: [
21765
21831
  /* @__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
21832
  /* @__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: [
21833
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "h1", { className: "text-primary text-3xl font-semibold", children: [
21768
21834
  "Authorize ",
21769
21835
  client.name
21770
21836
  ] }),
@@ -21797,7 +21863,7 @@ function OAuthScopeList({ scopes }) {
21797
21863
  return null;
21798
21864
  }
21799
21865
  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:" }),
21866
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, MicroLabel, { as: "h3", children: "This will allow the application to:" }),
21801
21867
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "ul", { className: "space-y-3", children: scopes.map((scope) => {
21802
21868
  const IconComponent = scope.icon ? SCOPE_ICONS[scope.icon] : _lucidereact.Eye;
21803
21869
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "li", { className: "flex items-start gap-3 p-3 rounded-lg bg-muted/50", children: [
@@ -21856,7 +21922,7 @@ function OAuthConsentScreen({
21856
21922
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _lucidereact.ExternalLink, { className: "h-4 w-4 mt-0.5 flex-shrink-0" }),
21857
21923
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { children: [
21858
21924
  /* @__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 })
21925
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "tabular-nums text-xs mt-1 break-all", children: params.redirectUri })
21860
21926
  ] })
21861
21927
  ] }),
21862
21928
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, OAuthConsentActions, { onApprove: approve, onDeny: deny, isLoading: isSubmitting })
@@ -21955,7 +22021,7 @@ function WaitlistQuestionnaireRenderer({
21955
22021
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "space-y-2", children: [
21956
22022
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { className: "text-sm font-medium", children: [
21957
22023
  field.label,
21958
- field.required && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-destructive ml-1", children: "*" })
22024
+ field.required && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "ml-1 text-destructive", children: "*" })
21959
22025
  ] }),
21960
22026
  field.description && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-xs", children: field.description }),
21961
22027
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "space-y-2", children: field.options.map((option) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
@@ -22067,9 +22133,9 @@ function WaitlistForm({ onSuccess }) {
22067
22133
  }, "onSubmit");
22068
22134
  if (isSuccess) {
22069
22135
  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" }) }),
22136
+ /* @__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
22137
  /* @__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") }),
22138
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { children: t("waitlist.success.title") }),
22073
22139
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground", children: t("waitlist.success.description") })
22074
22140
  ] }),
22075
22141
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-center gap-2 text-muted-foreground text-sm", children: [
@@ -22150,7 +22216,7 @@ function WaitlistSuccessState() {
22150
22216
  const t = _nextintl.useTranslations.call(void 0, );
22151
22217
  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
22218
  /* @__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") }),
22219
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: t("waitlist.success.title") }),
22154
22220
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground max-w-md", children: t("waitlist.success.description") }),
22155
22221
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-sm", children: t("waitlist.success.hint") })
22156
22222
  ] });
@@ -22188,14 +22254,14 @@ function WaitlistConfirmation({ code }) {
22188
22254
  if (state === "error") {
22189
22255
  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
22256
  /* @__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") }),
22257
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: t("waitlist.confirmation.error_title") }),
22192
22258
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground max-w-md", children: errorMessage }),
22193
22259
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Link, { href: "/waitlist", className: buttonVariants({ variant: "outline" }), children: t("waitlist.buttons.return") })
22194
22260
  ] });
22195
22261
  }
22196
22262
  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
22263
  /* @__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") }),
22264
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: t("waitlist.confirmation.success_title") }),
22199
22265
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground max-w-md", children: t("waitlist.confirmation.success_description") }),
22200
22266
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-muted-foreground text-sm", children: t("waitlist.confirmation.success_hint") })
22201
22267
  ] });
@@ -22287,7 +22353,7 @@ function useWaitlistTableStructure({
22287
22353
  ] });
22288
22354
  }
22289
22355
  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() }) });
22356
+ 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
22357
  }
22292
22358
  if (entry.status === "registered") {
22293
22359
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-muted-foreground text-sm", children: t("waitlist.admin.actions.registered") });
@@ -22344,7 +22410,7 @@ function WaitlistList() {
22344
22410
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-between", children: [
22345
22411
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center gap-2", children: [
22346
22412
  /* @__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") }),
22413
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SectionHeader, { level: 2, children: t("waitlist.admin.title") }),
22348
22414
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { className: "text-muted-foreground", children: [
22349
22415
  "(",
22350
22416
  t("waitlist.admin.entries_count", { count: total }),
@@ -22445,10 +22511,10 @@ function RbacPermissionCell({
22445
22511
  isDirty && "ring-2 ring-amber-400/50"
22446
22512
  ),
22447
22513
  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 })
22514
+ children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Badge, { variant: "outline", className: "max-w-full truncate text-xs tabular-nums", children: truncated })
22449
22515
  }
22450
22516
  ),
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 }) })
22517
+ /* @__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
22518
  ] });
22453
22519
  }
22454
22520
  _chunk7QVYU63Ejs.__name.call(void 0, RbacPermissionCell, "RbacPermissionCell");
@@ -22578,7 +22644,7 @@ function RbacPermissionPicker({
22578
22644
  onCheckedChange: () => toggleSegment(segment)
22579
22645
  }
22580
22646
  ),
22581
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "font-mono text-xs", children: segment })
22647
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "tabular-nums text-xs", children: segment })
22582
22648
  ]
22583
22649
  },
22584
22650
  segment
@@ -22590,7 +22656,7 @@ function RbacPermissionPicker({
22590
22656
  value: customSegment,
22591
22657
  onChange: (e) => setCustomSegment(e.target.value),
22592
22658
  placeholder: t("rbac.custom_segment_placeholder"),
22593
- className: "h-7 font-mono text-xs",
22659
+ className: "h-7 tabular-nums text-xs",
22594
22660
  onKeyDown: (e) => {
22595
22661
  if (e.key === "Enter") {
22596
22662
  e.preventDefault();
@@ -22613,7 +22679,7 @@ function RbacPermissionPicker({
22613
22679
  ] }),
22614
22680
  currentSegments.length > 0 && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "bg-muted mt-2 rounded p-2", children: [
22615
22681
  /* @__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("|") })
22682
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "tabular-nums text-xs break-all", children: currentSegments.join("|") })
22617
22683
  ] })
22618
22684
  ] })
22619
22685
  ] })
@@ -22672,7 +22738,7 @@ var ModuleEditor = _react.memo.call(void 0, /* @__PURE__ */ _chunk7QVYU63Ejs.__n
22672
22738
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "rounded-lg border border-accent bg-card", children: [
22673
22739
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center justify-between border-b px-4 py-2", children: [
22674
22740
  /* @__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 })
22741
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-muted-foreground tabular-nums text-xs", children: moduleId })
22676
22742
  ] }),
22677
22743
  /* @__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
22744
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "thead", { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "tr", { className: "border-b bg-muted/50", children: [
@@ -23541,5 +23607,8 @@ _chunk7QVYU63Ejs.__name.call(void 0, RbacByRoleContainer, "RbacByRoleContainer")
23541
23607
 
23542
23608
 
23543
23609
 
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
23610
+
23611
+
23612
+
23613
+ 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;
23614
+ //# sourceMappingURL=chunk-BHZVFSDR.js.map