@cyber-harbour/ui 1.1.21 → 1.1.23
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.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +202 -198
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +203 -199
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1087,6 +1087,7 @@ interface ContextMenuProps {
|
|
|
1087
1087
|
fullWidth?: boolean;
|
|
1088
1088
|
className?: string;
|
|
1089
1089
|
children?: any;
|
|
1090
|
+
label?: string;
|
|
1090
1091
|
anchor?: any;
|
|
1091
1092
|
positions?: PopoverPosition[] | PopoverPosition;
|
|
1092
1093
|
align?: PopoverAlign;
|
|
@@ -1097,7 +1098,7 @@ interface ContextMenuProps {
|
|
|
1097
1098
|
anchorIcon?: any;
|
|
1098
1099
|
hasShadow?: boolean;
|
|
1099
1100
|
}
|
|
1100
|
-
declare const ContextMenu: ({ isOpen, onClickOutside, onClick, anchor, size, disabled, fullWidth, className, positions, align, children, hasBorder, maxHeight, maxWidth, matchAnchorWidth, anchorIcon, hasShadow, }: ContextMenuProps) => react_jsx_runtime.JSX.Element;
|
|
1101
|
+
declare const ContextMenu: ({ isOpen, onClickOutside, onClick, anchor, label, size, disabled, fullWidth, className, positions, align, children, hasBorder, maxHeight, maxWidth, matchAnchorWidth, anchorIcon, hasShadow, }: ContextMenuProps) => react_jsx_runtime.JSX.Element;
|
|
1101
1102
|
|
|
1102
1103
|
interface StyledProps$1 {
|
|
1103
1104
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1087,6 +1087,7 @@ interface ContextMenuProps {
|
|
|
1087
1087
|
fullWidth?: boolean;
|
|
1088
1088
|
className?: string;
|
|
1089
1089
|
children?: any;
|
|
1090
|
+
label?: string;
|
|
1090
1091
|
anchor?: any;
|
|
1091
1092
|
positions?: PopoverPosition[] | PopoverPosition;
|
|
1092
1093
|
align?: PopoverAlign;
|
|
@@ -1097,7 +1098,7 @@ interface ContextMenuProps {
|
|
|
1097
1098
|
anchorIcon?: any;
|
|
1098
1099
|
hasShadow?: boolean;
|
|
1099
1100
|
}
|
|
1100
|
-
declare const ContextMenu: ({ isOpen, onClickOutside, onClick, anchor, size, disabled, fullWidth, className, positions, align, children, hasBorder, maxHeight, maxWidth, matchAnchorWidth, anchorIcon, hasShadow, }: ContextMenuProps) => react_jsx_runtime.JSX.Element;
|
|
1101
|
+
declare const ContextMenu: ({ isOpen, onClickOutside, onClick, anchor, label, size, disabled, fullWidth, className, positions, align, children, hasBorder, maxHeight, maxWidth, matchAnchorWidth, anchorIcon, hasShadow, }: ContextMenuProps) => react_jsx_runtime.JSX.Element;
|
|
1101
1102
|
|
|
1102
1103
|
interface StyledProps$1 {
|
|
1103
1104
|
}
|