@carlonicora/nextjs-jsonapi 1.69.0 → 1.70.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BlockNoteEditor-ON5Q6QWO.mjs → BlockNoteEditor-6XV2IXLY.mjs} +13 -7
- package/dist/BlockNoteEditor-6XV2IXLY.mjs.map +1 -0
- package/dist/{BlockNoteEditor-CBUEPFA7.js → BlockNoteEditor-NVPUPZXB.js} +17 -11
- package/dist/BlockNoteEditor-NVPUPZXB.js.map +1 -0
- package/dist/billing/index.js +299 -299
- package/dist/billing/index.mjs +1 -1
- package/dist/{chunk-NPF7P7MU.mjs → chunk-LQEKQYUJ.mjs} +11 -5
- package/dist/chunk-LQEKQYUJ.mjs.map +1 -0
- package/dist/{chunk-5X4MS55M.js → chunk-ZKOLKFAS.js} +11 -5
- package/dist/chunk-ZKOLKFAS.js.map +1 -0
- package/dist/client/index.js +2 -2
- package/dist/client/index.mjs +1 -1
- package/dist/components/index.d.mts +7 -2
- package/dist/components/index.d.ts +7 -2
- package/dist/components/index.js +2 -2
- package/dist/components/index.mjs +1 -1
- package/dist/contexts/index.js +2 -2
- package/dist/contexts/index.mjs +1 -1
- package/package.json +1 -1
- package/src/components/editors/BlockNoteEditor.tsx +7 -1
- package/src/components/forms/FormBlockNote.tsx +6 -0
- package/src/components/forms/FormSelect.tsx +3 -0
- package/dist/BlockNoteEditor-CBUEPFA7.js.map +0 -1
- package/dist/BlockNoteEditor-ON5Q6QWO.mjs.map +0 -1
- package/dist/chunk-5X4MS55M.js.map +0 -1
- package/dist/chunk-NPF7P7MU.mjs.map +0 -1
package/dist/billing/index.mjs
CHANGED
|
@@ -8797,7 +8797,7 @@ __name(FormCheckbox, "FormCheckbox");
|
|
|
8797
8797
|
import dynamic from "next/dynamic";
|
|
8798
8798
|
import React14 from "react";
|
|
8799
8799
|
import { jsx as jsx69 } from "react/jsx-runtime";
|
|
8800
|
-
var BlockNoteEditor = dynamic(() => import("./BlockNoteEditor-
|
|
8800
|
+
var BlockNoteEditor = dynamic(() => import("./BlockNoteEditor-6XV2IXLY.mjs"), {
|
|
8801
8801
|
ssr: false
|
|
8802
8802
|
});
|
|
8803
8803
|
var BlockNoteEditorContainer = React14.memo(/* @__PURE__ */ __name(function EditorContainer(props) {
|
|
@@ -8815,7 +8815,9 @@ function FormBlockNote({
|
|
|
8815
8815
|
isRequired = false,
|
|
8816
8816
|
description,
|
|
8817
8817
|
testId,
|
|
8818
|
-
onEmptyChange
|
|
8818
|
+
onEmptyChange,
|
|
8819
|
+
inlineContentSpecs,
|
|
8820
|
+
renderOverlays
|
|
8819
8821
|
}) {
|
|
8820
8822
|
return /* @__PURE__ */ jsx70("div", { className: "flex w-full flex-col", children: /* @__PURE__ */ jsx70(
|
|
8821
8823
|
FormFieldWrapper,
|
|
@@ -8837,7 +8839,9 @@ function FormBlockNote({
|
|
|
8837
8839
|
onEmptyChange?.(isEmpty);
|
|
8838
8840
|
},
|
|
8839
8841
|
placeholder,
|
|
8840
|
-
bordered: true
|
|
8842
|
+
bordered: true,
|
|
8843
|
+
inlineContentSpecs,
|
|
8844
|
+
renderOverlays
|
|
8841
8845
|
}
|
|
8842
8846
|
)
|
|
8843
8847
|
}
|
|
@@ -9520,7 +9524,8 @@ function FormSelect({
|
|
|
9520
9524
|
onChange,
|
|
9521
9525
|
useRows,
|
|
9522
9526
|
testId,
|
|
9523
|
-
allowEmpty
|
|
9527
|
+
allowEmpty,
|
|
9528
|
+
isRequired
|
|
9524
9529
|
}) {
|
|
9525
9530
|
return /* @__PURE__ */ jsx77("div", { className: "flex w-full flex-col", children: /* @__PURE__ */ jsx77(
|
|
9526
9531
|
FormFieldWrapper,
|
|
@@ -9528,6 +9533,7 @@ function FormSelect({
|
|
|
9528
9533
|
form,
|
|
9529
9534
|
name: id,
|
|
9530
9535
|
label: name,
|
|
9536
|
+
isRequired,
|
|
9531
9537
|
orientation: useRows ? "horizontal" : "vertical",
|
|
9532
9538
|
testId,
|
|
9533
9539
|
children: (field) => /* @__PURE__ */ jsxs45(
|
|
@@ -20388,4 +20394,4 @@ export {
|
|
|
20388
20394
|
useOAuthClients,
|
|
20389
20395
|
useOAuthClient
|
|
20390
20396
|
};
|
|
20391
|
-
//# sourceMappingURL=chunk-
|
|
20397
|
+
//# sourceMappingURL=chunk-LQEKQYUJ.mjs.map
|