@carlonicora/nextjs-jsonapi 1.134.0 → 1.135.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BlockNoteEditor-3IHMNBZ2.mjs → BlockNoteEditor-FAPCNKXZ.mjs} +2 -2
- package/dist/{BlockNoteEditor-2WOKHBLM.js → BlockNoteEditor-PYRHKBF3.js} +9 -9
- package/dist/{BlockNoteEditor-2WOKHBLM.js.map → BlockNoteEditor-PYRHKBF3.js.map} +1 -1
- package/dist/billing/index.js +310 -310
- package/dist/billing/index.js.map +1 -1
- package/dist/billing/index.mjs +2 -2
- package/dist/billing/index.mjs.map +1 -1
- package/dist/{chunk-LBXHYRZH.js → chunk-DNWYHP4V.js} +283 -193
- package/dist/chunk-DNWYHP4V.js.map +1 -0
- package/dist/{chunk-DV5YYI3G.mjs → chunk-EF2HVXOV.mjs} +1698 -1608
- package/dist/chunk-EF2HVXOV.mjs.map +1 -0
- package/dist/client/index.js +2 -2
- package/dist/client/index.mjs +1 -1
- package/dist/components/index.d.mts +12 -1
- package/dist/components/index.d.ts +12 -1
- package/dist/components/index.js +4 -2
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +3 -1
- package/dist/contexts/index.d.mts +44 -2
- package/dist/contexts/index.d.ts +44 -2
- package/dist/contexts/index.js +6 -2
- package/dist/contexts/index.js.map +1 -1
- package/dist/contexts/index.mjs +5 -1
- package/dist/features/help/index.js +31 -31
- package/dist/features/help/index.mjs +1 -1
- package/package.json +1 -1
- package/src/components/containers/RoundPageContainer.tsx +15 -5
- package/src/components/navigations/MobileNavigationBar.tsx +99 -0
- package/src/components/navigations/__tests__/MobileNavigationBar.spec.tsx +131 -0
- package/src/components/navigations/index.ts +1 -0
- package/src/contexts/MobileNavigationContext.tsx +66 -0
- package/src/contexts/index.ts +1 -0
- package/src/features/assistant/components/parts/AssistantEmptyState.tsx +1 -1
- package/src/features/billing/stripe-customer/components/forms/PaymentMethodForm.tsx +1 -1
- package/src/shadcnui/ui/__tests__/cursor-controls.test.tsx +109 -0
- package/src/shadcnui/ui/__tests__/cursor-menu-items.test.tsx +89 -0
- package/src/shadcnui/ui/button.tsx +1 -1
- package/src/shadcnui/ui/checkbox.tsx +1 -1
- package/src/shadcnui/ui/combobox.tsx +1 -1
- package/src/shadcnui/ui/command.tsx +1 -1
- package/src/shadcnui/ui/context-menu.tsx +4 -4
- package/src/shadcnui/ui/dropdown-menu.tsx +4 -4
- package/src/shadcnui/ui/label.tsx +1 -1
- package/src/shadcnui/ui/radio-group.tsx +1 -1
- package/src/shadcnui/ui/select.tsx +3 -3
- package/src/shadcnui/ui/slider.tsx +3 -2
- package/src/shadcnui/ui/switch.tsx +1 -1
- package/dist/chunk-DV5YYI3G.mjs.map +0 -1
- package/dist/chunk-LBXHYRZH.js.map +0 -1
- /package/dist/{BlockNoteEditor-3IHMNBZ2.mjs.map → BlockNoteEditor-FAPCNKXZ.mjs.map} +0 -0
package/dist/billing/index.mjs
CHANGED
|
@@ -48,7 +48,7 @@ import {
|
|
|
48
48
|
TabsList,
|
|
49
49
|
TabsTrigger,
|
|
50
50
|
useCurrentUserContext
|
|
51
|
-
} from "../chunk-
|
|
51
|
+
} from "../chunk-EF2HVXOV.mjs";
|
|
52
52
|
import {
|
|
53
53
|
getRoleId,
|
|
54
54
|
getStripePublishableKey
|
|
@@ -636,7 +636,7 @@ function PaymentMethodForm({ onSuccess, onCancel, isLoading = false }) {
|
|
|
636
636
|
) }),
|
|
637
637
|
/* @__PURE__ */ jsxs6("div", { className: "flex items-center gap-x-2", children: [
|
|
638
638
|
/* @__PURE__ */ jsx6(Checkbox, { id: "setAsDefault", checked: setAsDefault, onCheckedChange: (checked) => setSetAsDefault(!!checked) }),
|
|
639
|
-
/* @__PURE__ */ jsx6(Label, { htmlFor: "setAsDefault", className: "font-normal", children: "Set as default payment method" })
|
|
639
|
+
/* @__PURE__ */ jsx6(Label, { htmlFor: "setAsDefault", className: "cursor-pointer font-normal", children: "Set as default payment method" })
|
|
640
640
|
] }),
|
|
641
641
|
error && /* @__PURE__ */ jsx6(Alert, { variant: "destructive", className: "bg-red-50 border-red-200", children: /* @__PURE__ */ jsx6(AlertDescription, { children: error }) }),
|
|
642
642
|
/* @__PURE__ */ jsxs6("div", { className: "flex justify-end gap-x-2", children: [
|