tinacms 2.5.0 → 2.5.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/index.d.ts +1 -1
- package/dist/index.js +14 -4
- package/dist/index.mjs +14 -4
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ export type TinaCollection = Collection;
|
|
|
53
53
|
export type TinaCloudSchema = Schema;
|
|
54
54
|
export declare const defineSchema: (config: Schema) => Schema<false>;
|
|
55
55
|
export declare const defineLegacyConfig: (config: Omit<TinaCMSProviderDefaultProps, "children">) => Omit<TinaCMSProviderDefaultProps, "children">;
|
|
56
|
-
interface MediaStoreClass {
|
|
56
|
+
export interface MediaStoreClass {
|
|
57
57
|
new (...args: any[]): MediaStore;
|
|
58
58
|
}
|
|
59
59
|
export declare const defineStaticConfig: (config: Config<(cms: TinaCMS) => TinaCMS, formifyCallback, DocumentCreatorCallback, MediaStoreClass>) => Config<(cms: TinaCMS) => TinaCMS, formifyCallback, import("./hooks/use-content-creator").DocumentCreatorArgs, MediaStoreClass, undefined>;
|
package/dist/index.js
CHANGED
|
@@ -862,13 +862,23 @@ var __publicField = (obj, key, value) => {
|
|
|
862
862
|
className,
|
|
863
863
|
...props
|
|
864
864
|
}) => {
|
|
865
|
+
if (typeof children === "string") {
|
|
866
|
+
return /* @__PURE__ */ React__namespace.createElement(
|
|
867
|
+
"span",
|
|
868
|
+
{
|
|
869
|
+
className: `block font-sans text-xs italic font-light text-gray-400 pt-0.5 whitespace-normal m-0 ${className}`,
|
|
870
|
+
...props,
|
|
871
|
+
dangerouslySetInnerHTML: { __html: children }
|
|
872
|
+
}
|
|
873
|
+
);
|
|
874
|
+
}
|
|
865
875
|
return /* @__PURE__ */ React__namespace.createElement(
|
|
866
876
|
"span",
|
|
867
877
|
{
|
|
868
878
|
className: `block font-sans text-xs italic font-light text-gray-400 pt-0.5 whitespace-normal m-0 ${className}`,
|
|
869
|
-
...props
|
|
870
|
-
|
|
871
|
-
|
|
879
|
+
...props
|
|
880
|
+
},
|
|
881
|
+
children
|
|
872
882
|
);
|
|
873
883
|
};
|
|
874
884
|
const FieldError = ({
|
|
@@ -10333,7 +10343,7 @@ flowchart TD
|
|
|
10333
10343
|
"Event Log"
|
|
10334
10344
|
));
|
|
10335
10345
|
};
|
|
10336
|
-
const version = "2.5.
|
|
10346
|
+
const version = "2.5.1";
|
|
10337
10347
|
const Nav = ({
|
|
10338
10348
|
isLocalMode,
|
|
10339
10349
|
className = "",
|
package/dist/index.mjs
CHANGED
|
@@ -889,13 +889,23 @@ const FieldDescription = ({
|
|
|
889
889
|
className,
|
|
890
890
|
...props
|
|
891
891
|
}) => {
|
|
892
|
+
if (typeof children === "string") {
|
|
893
|
+
return /* @__PURE__ */ React.createElement(
|
|
894
|
+
"span",
|
|
895
|
+
{
|
|
896
|
+
className: `block font-sans text-xs italic font-light text-gray-400 pt-0.5 whitespace-normal m-0 ${className}`,
|
|
897
|
+
...props,
|
|
898
|
+
dangerouslySetInnerHTML: { __html: children }
|
|
899
|
+
}
|
|
900
|
+
);
|
|
901
|
+
}
|
|
892
902
|
return /* @__PURE__ */ React.createElement(
|
|
893
903
|
"span",
|
|
894
904
|
{
|
|
895
905
|
className: `block font-sans text-xs italic font-light text-gray-400 pt-0.5 whitespace-normal m-0 ${className}`,
|
|
896
|
-
...props
|
|
897
|
-
|
|
898
|
-
|
|
906
|
+
...props
|
|
907
|
+
},
|
|
908
|
+
children
|
|
899
909
|
);
|
|
900
910
|
};
|
|
901
911
|
const FieldError = ({
|
|
@@ -10360,7 +10370,7 @@ const SyncStatus = ({ cms, setEventsOpen }) => {
|
|
|
10360
10370
|
"Event Log"
|
|
10361
10371
|
));
|
|
10362
10372
|
};
|
|
10363
|
-
const version = "2.5.
|
|
10373
|
+
const version = "2.5.1";
|
|
10364
10374
|
const Nav = ({
|
|
10365
10375
|
isLocalMode,
|
|
10366
10376
|
className = "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinacms",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -130,8 +130,8 @@
|
|
|
130
130
|
"yup": "^1.4.0",
|
|
131
131
|
"zod": "^3.23.8",
|
|
132
132
|
"@tinacms/mdx": "1.5.2",
|
|
133
|
-
"@tinacms/
|
|
134
|
-
"@tinacms/
|
|
133
|
+
"@tinacms/schema-tools": "1.6.8",
|
|
134
|
+
"@tinacms/search": "1.0.35"
|
|
135
135
|
},
|
|
136
136
|
"devDependencies": {
|
|
137
137
|
"@graphql-tools/utils": "^10.5.6",
|