@uxf/cms 11.44.0 → 11.45.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -9,10 +9,10 @@ export declare function useSubMenu(options: SubMenuOptions): {
|
|
9
9
|
y: number;
|
10
10
|
isPositioned: boolean;
|
11
11
|
update: () => void;
|
12
|
-
floatingStyles:
|
12
|
+
floatingStyles: React.CSSProperties;
|
13
13
|
refs: {
|
14
14
|
reference: import("react").MutableRefObject<import("@floating-ui/react-dom").ReferenceType | null>;
|
15
|
-
floating:
|
15
|
+
floating: React.MutableRefObject<HTMLElement | null>;
|
16
16
|
setReference: (node: import("@floating-ui/react-dom").ReferenceType | null) => void;
|
17
17
|
setFloating: (node: HTMLElement | null) => void;
|
18
18
|
} & import("@floating-ui/react").ExtendedRefs<import("@floating-ui/react").ReferenceType>;
|
@@ -28,19 +28,19 @@ export declare function useSubMenu(options: SubMenuOptions): {
|
|
28
28
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
29
29
|
isPositioned: boolean;
|
30
30
|
update: () => void;
|
31
|
-
floatingStyles:
|
31
|
+
floatingStyles: React.CSSProperties;
|
32
32
|
open: boolean;
|
33
33
|
onOpenChange: (open: boolean, event?: Event, reason?: import("@floating-ui/react").OpenChangeReason) => void;
|
34
34
|
events: import("@floating-ui/react").FloatingEvents;
|
35
|
-
dataRef:
|
35
|
+
dataRef: React.MutableRefObject<import("@floating-ui/react").ContextData>;
|
36
36
|
nodeId: string | undefined;
|
37
37
|
floatingId: string;
|
38
38
|
refs: import("@floating-ui/react").ExtendedRefs<import("@floating-ui/react").ReferenceType>;
|
39
39
|
elements: import("@floating-ui/react").ExtendedElements<import("@floating-ui/react").ReferenceType>;
|
40
40
|
};
|
41
|
-
getReferenceProps: (userProps?:
|
42
|
-
getFloatingProps: (userProps?:
|
43
|
-
getItemProps: (userProps?: Omit<
|
41
|
+
getReferenceProps: (userProps?: React.HTMLProps<Element>) => Record<string, unknown>;
|
42
|
+
getFloatingProps: (userProps?: React.HTMLProps<HTMLElement>) => Record<string, unknown>;
|
43
|
+
getItemProps: (userProps?: Omit<React.HTMLProps<HTMLElement>, "selected" | "active"> & {
|
44
44
|
active?: boolean;
|
45
45
|
selected?: boolean;
|
46
46
|
}) => Record<string, unknown>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uxf/cms",
|
3
|
-
"version": "11.
|
3
|
+
"version": "11.45.1",
|
4
4
|
"description": "UXF Cms",
|
5
5
|
"author": "UXFans <dev@uxf.cz>",
|
6
6
|
"homepage": "https://gitlab.com/uxf-npm/cms#readme",
|
@@ -28,15 +28,15 @@
|
|
28
28
|
"@dnd-kit/core": "6.1.0",
|
29
29
|
"@dnd-kit/sortable": "8.0.0",
|
30
30
|
"@dnd-kit/utilities": "3.2.2",
|
31
|
-
"@floating-ui/react": "0.26.
|
31
|
+
"@floating-ui/react": "0.26.28",
|
32
32
|
"@redux-devtools/extension": "3.3.0",
|
33
|
-
"@uxf/core": "11.
|
34
|
-
"@uxf/core-react": "11.
|
35
|
-
"@uxf/data-grid": "11.
|
36
|
-
"@uxf/form": "11.
|
33
|
+
"@uxf/core": "11.45.0",
|
34
|
+
"@uxf/core-react": "11.45.0",
|
35
|
+
"@uxf/data-grid": "11.45.1",
|
36
|
+
"@uxf/form": "11.45.1",
|
37
37
|
"@uxf/router": "11.42.0",
|
38
|
-
"@uxf/ui": "11.
|
39
|
-
"@uxf/wysiwyg": "11.
|
38
|
+
"@uxf/ui": "11.45.1",
|
39
|
+
"@uxf/wysiwyg": "11.45.1",
|
40
40
|
"axios": "1.7.5",
|
41
41
|
"axios-hooks": "5.0.2",
|
42
42
|
"es6-error": "4.1.1",
|