@vuu-ui/vuu-shell 0.13.46 → 0.13.47
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/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.13.
|
|
2
|
+
"version": "0.13.47",
|
|
3
3
|
"description": "VUU UI Shell",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-data-types": "0.13.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "0.13.
|
|
9
|
-
"@vuu-ui/vuu-table-types": "0.13.
|
|
7
|
+
"@vuu-ui/vuu-data-types": "0.13.47",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "0.13.47",
|
|
9
|
+
"@vuu-ui/vuu-table-types": "0.13.47"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@salt-ds/core": "1.48.0",
|
|
13
13
|
"@salt-ds/styles": "0.2.1",
|
|
14
14
|
"@salt-ds/window": "0.1.1",
|
|
15
|
-
"@vuu-ui/vuu-context-menu": "0.13.
|
|
16
|
-
"@vuu-ui/vuu-data-react": "0.13.
|
|
17
|
-
"@vuu-ui/vuu-data-remote": "0.13.
|
|
18
|
-
"@vuu-ui/vuu-icons": "0.13.
|
|
19
|
-
"@vuu-ui/vuu-layout": "0.13.
|
|
20
|
-
"@vuu-ui/vuu-popups": "0.13.
|
|
21
|
-
"@vuu-ui/vuu-table": "0.13.
|
|
22
|
-
"@vuu-ui/vuu-ui-controls": "0.13.
|
|
23
|
-
"@vuu-ui/vuu-utils": "0.13.
|
|
15
|
+
"@vuu-ui/vuu-context-menu": "0.13.47",
|
|
16
|
+
"@vuu-ui/vuu-data-react": "0.13.47",
|
|
17
|
+
"@vuu-ui/vuu-data-remote": "0.13.47",
|
|
18
|
+
"@vuu-ui/vuu-icons": "0.13.47",
|
|
19
|
+
"@vuu-ui/vuu-layout": "0.13.47",
|
|
20
|
+
"@vuu-ui/vuu-popups": "0.13.47",
|
|
21
|
+
"@vuu-ui/vuu-table": "0.13.47",
|
|
22
|
+
"@vuu-ui/vuu-ui-controls": "0.13.47",
|
|
23
|
+
"@vuu-ui/vuu-utils": "0.13.47",
|
|
24
24
|
"html-to-image": "^1.11.11"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { ContextMenuProvider, type MenuActionHandler, type MenuBuilder, } from "./ContextMenuProvider";
|
|
2
|
-
export { isGroupMenuItemDescriptor, type ContextMenuGroupItemDescriptor, type ContextMenuItemDescriptor, } from "./menu-utils";
|
|
2
|
+
export { hasShowNotificationAction, isGroupMenuItemDescriptor, isOpenBulkEditResponse, type ContextMenuGroupItemDescriptor, type ContextMenuItemDescriptor, } from "./menu-utils";
|
|
3
3
|
export { useContextMenu } from "./useContextMenu";
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import type { MenuRpcResponse, OpenDialogActionWithSchema } from "@vuu-ui/vuu-data-types";
|
|
2
|
+
import type { ShowNotificationAction, VuuRpcResponse } from "@vuu-ui/vuu-protocol-types";
|
|
1
3
|
import { MenuActionHandler } from "./ContextMenuProvider";
|
|
2
4
|
export interface ContextMenuItemBase {
|
|
3
5
|
className?: string;
|
|
@@ -14,4 +16,6 @@ export interface ContextMenuGroupItemDescriptor extends ContextMenuItemBase {
|
|
|
14
16
|
}
|
|
15
17
|
export type ContextMenuItemDescriptor = ContextMenuLeafItemDescriptor | ContextMenuGroupItemDescriptor;
|
|
16
18
|
export declare const isGroupMenuItemDescriptor: (menuItem?: ContextMenuItemDescriptor) => menuItem is ContextMenuGroupItemDescriptor;
|
|
19
|
+
export declare const isOpenBulkEditResponse: (rpcResponse: Partial<VuuRpcResponse>) => rpcResponse is MenuRpcResponse<OpenDialogActionWithSchema>;
|
|
20
|
+
export declare const hasShowNotificationAction: (res: Partial<VuuRpcResponse>) => res is MenuRpcResponse<ShowNotificationAction>;
|
|
17
21
|
export declare const menuItemsFromMenuDescriptors: (menuDescriptors: ContextMenuItemDescriptor[], menuActionHandler: MenuActionHandler) => import("react/jsx-runtime").JSX.Element[];
|
|
@@ -40,7 +40,6 @@ export * from "./layout-types";
|
|
|
40
40
|
export * from "./list-utils";
|
|
41
41
|
export * from "./local-storage-utils";
|
|
42
42
|
export * from "./logging-utils";
|
|
43
|
-
export * from "./menu-utils";
|
|
44
43
|
export * from "./module-utils";
|
|
45
44
|
export * from "./moving-window";
|
|
46
45
|
export * from "./nanoid";
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { MenuRpcResponse, OpenDialogActionWithSchema } from "@vuu-ui/vuu-data-types";
|
|
2
|
-
import { ShowNotificationAction, VuuRpcResponse } from "@vuu-ui/vuu-protocol-types";
|
|
3
|
-
import { ContextMenuGroupItemDescriptor, ContextMenuItemDescriptor } from "@vuu-ui/vuu-context-menu";
|
|
4
|
-
export declare const isGroupMenuItemDescriptor: (menuItem?: ContextMenuItemDescriptor) => menuItem is ContextMenuGroupItemDescriptor;
|
|
5
|
-
export declare const isOpenBulkEditResponse: (rpcResponse: Partial<VuuRpcResponse>) => rpcResponse is MenuRpcResponse<OpenDialogActionWithSchema>;
|
|
6
|
-
export declare const hasShowNotificationAction: (res: Partial<VuuRpcResponse>) => res is MenuRpcResponse<ShowNotificationAction>;
|