@uxf/cms 11.21.4 → 11.21.5
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/api/index.d.ts +1 -8
- package/config/container.d.ts +2 -1
- package/forms/utils/on-upload-dropzone-file.d.ts +1 -1
- package/forms/utils/on-upload-file.d.ts +1 -1
- package/package.json +7 -7
- package/pages/content-builder/content/feature-section.d.ts +1 -1
- package/pages/content-builder/content/gallery.d.ts +1 -1
- package/pages/content-builder/content/people.d.ts +1 -1
- package/pages/content-builder/types.d.ts +2 -1
package/api/index.d.ts
CHANGED
@@ -1,13 +1,6 @@
|
|
1
|
+
import { FileResponse } from "@uxf/core/types";
|
1
2
|
import { Schema } from "@uxf/data-grid";
|
2
3
|
export type VisibilityLevel = "PUBLIC" | "PUBLIC_WITHOUT_SITEMAP" | "PRIVATE";
|
3
|
-
export interface FileResponse {
|
4
|
-
id: number;
|
5
|
-
name: string;
|
6
|
-
uuid: string;
|
7
|
-
extension: string;
|
8
|
-
namespace: string | null;
|
9
|
-
type?: string;
|
10
|
-
}
|
11
4
|
export interface ContentSeoResponse {
|
12
5
|
name: string | null;
|
13
6
|
title: string;
|
package/config/container.d.ts
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
+
import { FileResponse } from "@uxf/core/types";
|
1
2
|
import { FunctionParametersGenerator } from "@uxf/router";
|
2
3
|
import { NextPageContext } from "next";
|
3
4
|
import { LinkProps } from "next/link";
|
4
5
|
import { ReactNode } from "react";
|
5
|
-
import UserResponse
|
6
|
+
import UserResponse from "../api";
|
6
7
|
export interface NotificationServiceInterface {
|
7
8
|
info: (message: ReactNode) => void;
|
8
9
|
success: (message: ReactNode) => void;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { FileResponse } from "@uxf/
|
1
|
+
import { FileResponse } from "@uxf/core/types";
|
2
2
|
export declare const onUploadDropzoneFile: (file: File) => Promise<FileResponse>;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { FileResponse } from "@uxf/
|
1
|
+
import { FileResponse } from "@uxf/core/types";
|
2
2
|
export declare const onUploadFile: (file: File, namespace?: string) => Promise<FileResponse>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uxf/cms",
|
3
|
-
"version": "11.21.
|
3
|
+
"version": "11.21.5",
|
4
4
|
"description": "UXF Cms",
|
5
5
|
"author": "UXFans <dev@uxf.cz>",
|
6
6
|
"homepage": "https://gitlab.com/uxf-npm/cms#readme",
|
@@ -30,13 +30,13 @@
|
|
30
30
|
"@dnd-kit/utilities": "3.2.2",
|
31
31
|
"@floating-ui/react": "0.26.9",
|
32
32
|
"@redux-devtools/extension": "3.3.0",
|
33
|
-
"@uxf/core": "11.21.
|
34
|
-
"@uxf/core-react": "11.21.
|
35
|
-
"@uxf/data-grid": "11.21.
|
36
|
-
"@uxf/form": "11.21.
|
33
|
+
"@uxf/core": "11.21.5",
|
34
|
+
"@uxf/core-react": "11.21.5",
|
35
|
+
"@uxf/data-grid": "11.21.5",
|
36
|
+
"@uxf/form": "11.21.5",
|
37
37
|
"@uxf/router": "11.11.3",
|
38
|
-
"@uxf/ui": "11.21.
|
39
|
-
"@uxf/wysiwyg": "11.21.
|
38
|
+
"@uxf/ui": "11.21.5",
|
39
|
+
"@uxf/wysiwyg": "11.21.5",
|
40
40
|
"axios": "1.6.7",
|
41
41
|
"axios-hooks": "5.0.2",
|
42
42
|
"es6-error": "4.1.1",
|
@@ -1,5 +1,5 @@
|
|
1
|
+
import { FileResponse } from "@uxf/core/types";
|
1
2
|
import { WysiwygContent } from "@uxf/wysiwyg";
|
2
|
-
import { FileResponse } from "../../../api";
|
3
3
|
import { Content, ContentComponent, ContentProps } from "../types";
|
4
4
|
export type FeatureSectionFormData = {
|
5
5
|
title: string;
|
@@ -1,8 +1,9 @@
|
|
1
|
+
import { FileResponse } from "@uxf/core/types";
|
1
2
|
import { SelectProps } from "@uxf/form/select";
|
2
3
|
import { NextPageContext } from "next";
|
3
4
|
import { FC, PropsWithChildren, ReactNode } from "react";
|
4
5
|
import { Control, ControllerRenderProps } from "react-hook-form";
|
5
|
-
import { ContentResponse, ContentTagResponse
|
6
|
+
import { ContentResponse, ContentTagResponse } from "../../api";
|
6
7
|
export type VisibilityLevel = "PUBLIC" | "PUBLIC_WITHOUT_SITEMAP" | "PRIVATE";
|
7
8
|
export interface ContentProps {
|
8
9
|
title: ReactNode;
|