@hanzogui/context-menu 8.3.1 → 8.3.2
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/cjs/ContextMenu.js +148 -0
- package/dist/cjs/ContextMenu.js.map +1 -0
- package/dist/cjs/createNonNativeContextMenu.js +311 -0
- package/dist/cjs/createNonNativeContextMenu.js.map +1 -0
- package/dist/cjs/index.js +18 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/package.json +1 -0
- package/dist/esm/ContextMenu.js +144 -0
- package/dist/esm/ContextMenu.js.map +1 -0
- package/dist/esm/createNonNativeContextMenu.js +306 -0
- package/dist/esm/createNonNativeContextMenu.js.map +1 -0
- package/dist/esm/index.js +14 -14
- package/dist/esm/index.js.map +1 -1
- package/package.json +27 -21
- package/src/ContextMenu.tsx +2 -2
- package/src/index.tsx +1 -1
- package/types/ContextMenu.d.ts +30 -30
- package/types/ContextMenu.d.ts.map +1 -1
- package/types/createNonNativeContextMenu.d.ts +18 -18
- package/types/createNonNativeContextMenu.d.ts.map +1 -1
- package/types/index.d.ts +29 -29
- package/types/index.d.ts.map +1 -1
- package/dist/cjs/ContextMenu.cjs +0 -185
- package/dist/cjs/ContextMenu.native.js +0 -193
- package/dist/cjs/ContextMenu.native.js.map +0 -1
- package/dist/cjs/createNonNativeContextMenu.cjs +0 -443
- package/dist/cjs/createNonNativeContextMenu.native.js +0 -470
- package/dist/cjs/createNonNativeContextMenu.native.js.map +0 -1
- package/dist/cjs/index.cjs +0 -41
- package/dist/cjs/index.native.js +0 -44
- package/dist/cjs/index.native.js.map +0 -1
- package/dist/esm/ContextMenu.mjs +0 -149
- package/dist/esm/ContextMenu.mjs.map +0 -1
- package/dist/esm/ContextMenu.native.js +0 -154
- package/dist/esm/ContextMenu.native.js.map +0 -1
- package/dist/esm/createNonNativeContextMenu.mjs +0 -406
- package/dist/esm/createNonNativeContextMenu.mjs.map +0 -1
- package/dist/esm/createNonNativeContextMenu.native.js +0 -430
- package/dist/esm/createNonNativeContextMenu.native.js.map +0 -1
- package/dist/esm/index.mjs +0 -15
- package/dist/esm/index.mjs.map +0 -1
- package/dist/esm/index.native.js +0 -15
- package/dist/esm/index.native.js.map +0 -1
- package/dist/jsx/ContextMenu.mjs +0 -149
- package/dist/jsx/ContextMenu.mjs.map +0 -1
- package/dist/jsx/ContextMenu.native.js +0 -193
- package/dist/jsx/ContextMenu.native.js.map +0 -1
- package/dist/jsx/createNonNativeContextMenu.mjs +0 -406
- package/dist/jsx/createNonNativeContextMenu.mjs.map +0 -1
- package/dist/jsx/createNonNativeContextMenu.native.js +0 -470
- package/dist/jsx/createNonNativeContextMenu.native.js.map +0 -1
- package/dist/jsx/index.js +0 -15
- package/dist/jsx/index.js.map +0 -1
- package/dist/jsx/index.mjs +0 -15
- package/dist/jsx/index.mjs.map +0 -1
- package/dist/jsx/index.native.js +0 -44
- package/dist/jsx/index.native.js.map +0 -1
|
@@ -43,11 +43,11 @@ interface ContextMenuSubProps extends BaseMenuTypes.MenuSubProps {
|
|
|
43
43
|
type ContextMenuSubTriggerProps = React.ComponentPropsWithoutRef<BaseMenu['SubTrigger']>;
|
|
44
44
|
type ContextMenuSubContentProps = React.ComponentPropsWithoutRef<BaseMenu['SubContent']>;
|
|
45
45
|
export declare function createNonNativeContextMenu(params: CreateBaseMenuProps): {
|
|
46
|
-
(props: ScopedProps<ContextMenuProps>):
|
|
46
|
+
(props: ScopedProps<ContextMenuProps>): React.JSX.Element;
|
|
47
47
|
displayName: string;
|
|
48
48
|
} & {
|
|
49
49
|
Root: {
|
|
50
|
-
(props: ScopedProps<ContextMenuProps>):
|
|
50
|
+
(props: ScopedProps<ContextMenuProps>): React.JSX.Element;
|
|
51
51
|
displayName: string;
|
|
52
52
|
};
|
|
53
53
|
Trigger: import("@hanzogui/web").GuiComponent<Omit<ViewProps, "scope" | keyof ContextMenuTriggerProps> & ContextMenuTriggerProps & {
|
|
@@ -56,23 +56,23 @@ export declare function createNonNativeContextMenu(params: CreateBaseMenuProps):
|
|
|
56
56
|
scope?: string;
|
|
57
57
|
}, import("@hanzogui/web").StackStyleBase, {}, {}>;
|
|
58
58
|
Portal: {
|
|
59
|
-
(props: ScopedProps<ContextMenuPortalProps>):
|
|
59
|
+
(props: ScopedProps<ContextMenuPortalProps>): React.JSX.Element;
|
|
60
60
|
displayName: string;
|
|
61
61
|
};
|
|
62
62
|
Content: React.ForwardRefExoticComponent<ContextMenuContentProps & {
|
|
63
63
|
scope?: string;
|
|
64
|
-
} & React.RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods)
|
|
64
|
+
} & React.RefAttributes<import("react-native").View | (HTMLElement & import("@hanzogui/web").GuiElementMethods)>>;
|
|
65
65
|
Group: import("@hanzogui/web").GuiComponent<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
66
66
|
unstyled?: boolean | undefined;
|
|
67
67
|
}>, keyof BaseMenuTypes.MenuGroupProps> & BaseMenuTypes.MenuGroupProps, GuiElement, import("@hanzogui/web").StackNonStyleProps & BaseMenuTypes.MenuGroupProps, import("@hanzogui/web").StackStyleBase, {
|
|
68
68
|
unstyled?: boolean | undefined;
|
|
69
69
|
}, import("@hanzogui/web").StaticConfigPublic>;
|
|
70
70
|
Label: import("@hanzogui/web").GuiComponent<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").TextNonStyleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
71
|
-
unstyled?: boolean | undefined;
|
|
72
71
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
73
|
-
}>, keyof BaseMenuTypes.MenuLabelProps> & BaseMenuTypes.MenuLabelProps, import("@hanzogui/web").GuiTextElement, import("@hanzogui/web").TextNonStyleProps & BaseMenuTypes.MenuLabelProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
74
72
|
unstyled?: boolean | undefined;
|
|
73
|
+
}>, keyof BaseMenuTypes.MenuLabelProps> & BaseMenuTypes.MenuLabelProps, import("@hanzogui/web").GuiTextElement, import("@hanzogui/web").TextNonStyleProps & BaseMenuTypes.MenuLabelProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
75
74
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
75
|
+
unstyled?: boolean | undefined;
|
|
76
76
|
}, import("@hanzogui/web").StaticConfigPublic>;
|
|
77
77
|
Item: React.ForwardRefExoticComponent<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
78
78
|
unstyled?: boolean | undefined;
|
|
@@ -94,7 +94,7 @@ export declare function createNonNativeContextMenu(params: CreateBaseMenuProps):
|
|
|
94
94
|
scope?: string;
|
|
95
95
|
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
96
96
|
scope?: string;
|
|
97
|
-
} & React.RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods)
|
|
97
|
+
} & React.RefAttributes<import("react-native").View | (HTMLElement & import("@hanzogui/web").GuiElementMethods)>>;
|
|
98
98
|
RadioItem: React.ForwardRefExoticComponent<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
99
99
|
unstyled?: boolean | undefined;
|
|
100
100
|
}>, "scope" | keyof BaseMenuTypes.MenuRadioItemProps> & BaseMenuTypes.MenuRadioItemProps & {
|
|
@@ -106,7 +106,7 @@ export declare function createNonNativeContextMenu(params: CreateBaseMenuProps):
|
|
|
106
106
|
unstyled?: boolean | undefined;
|
|
107
107
|
}>, "scope" | keyof BaseMenuTypes.MenuItemIndicatorProps> & BaseMenuTypes.MenuItemIndicatorProps & {
|
|
108
108
|
scope?: string;
|
|
109
|
-
}, "
|
|
109
|
+
}, "accessibilityActions" | "accessibilityElementsHidden" | "accessibilityHint" | "accessibilityIgnoresInvertColors" | "accessibilityLabel" | "accessibilityLabelledBy" | "accessibilityLanguage" | "accessibilityLargeContentTitle" | "accessibilityLiveRegion" | "accessibilityRespondsToUserInteraction" | "accessibilityRole" | "accessibilityShowsLargeContentViewer" | "accessibilityState" | "accessibilityValue" | "accessibilityViewIsModal" | "accessible" | "alignContent" | "alignItems" | "alignSelf" | "animateOnly" | "animatePresence" | "animatedBy" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-hidden" | "aria-label" | "aria-labelledby" | "aria-live" | "aria-modal" | "aria-selected" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "asChild" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "background" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "blockSize" | "border" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderBottomWidth" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderEndWidth" | "borderImage" | "borderInlineColor" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderLeftColor" | "borderLeftWidth" | "borderRadius" | "borderRightColor" | "borderRightWidth" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStartWidth" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderTopWidth" | "borderWidth" | "bottom" | "boxShadow" | "boxSizing" | "caretColor" | "children" | "className" | "clipPath" | "collapsable" | "collapsableChildren" | "columnGap" | "componentName" | "contain" | "containerType" | "content" | "cursor" | "dangerouslySetInnerHTML" | "debug" | "direction" | "disableClassName" | "disableOptimization" | "disabled" | "disabledStyle" | "display" | "end" | "enterStyle" | "exitStyle" | "experimental_backgroundImage" | "filter" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "float" | "focusStyle" | "focusVisibleStyle" | "focusWithinStyle" | "focusable" | "forceMount" | "forceStyle" | "gap" | "grid" | "gridArea" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumn" | "gridColumnEnd" | "gridColumnStart" | "gridRow" | "gridRowEnd" | "gridRowStart" | "gridTemplate" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "group" | "hasTVPreferredFocus" | "height" | "hitSlop" | "hoverStyle" | "htmlFor" | "id" | "importantForAccessibility" | "inlineSize" | "inset" | "insetBlock" | "insetBlockEnd" | "insetBlockStart" | "insetInline" | "insetInlineEnd" | "insetInlineStart" | "isTVSelectable" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "key" | "left" | "margin" | "marginBlock" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginInline" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "mask" | "maskBorder" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "matrix" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "nativeID" | "needsOffscreenAlphaCompositing" | "objectFit" | "onAccessibilityAction" | "onAccessibilityEscape" | "onAccessibilityTap" | "onBeforeInput" | "onBlur" | "onChange" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onDoubleClick" | "onDrag" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onKeyDown" | "onKeyUp" | "onLongPress" | "onMagicTap" | "onMouseDown" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onMouseUp" | "onPaste" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPress" | "onPressIn" | "onPressOut" | "onScroll" | "onTouchCancel" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchStart" | "onWheel" | "opacity" | "outline" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflow" | "overflowBlock" | "overflowInline" | "overflowX" | "overflowY" | "padding" | "paddingBlock" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingInline" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "passThrough" | "perspective" | "placeContent" | "placeItems" | "placeSelf" | "pointerEvents" | "position" | "pressStyle" | "removeClippedSubviews" | "render" | "renderToHardwareTextureAndroid" | "right" | "role" | "rotate" | "rotateX" | "rotateY" | "rotateZ" | "rotation" | "rowGap" | "scale" | "scaleX" | "scaleY" | "scope" | "screenReaderFocusable" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "shouldRasterizeIOS" | "skewX" | "skewY" | "start" | "style" | "tabIndex" | "target" | "testID" | "textEmphasis" | "theme" | "themeShallow" | "top" | "transform" | "transformMatrix" | "transformOrigin" | "transformStyle" | "transition" | "translateX" | "translateY" | "tvParallaxMagnification" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "unstyled" | "untilMeasured" | "userSelect" | "verticalAlign" | "width" | "x" | "y" | "zIndex" | `$${string}` | `$${number}` | `$group-${string}` | `$group-${number}` | `$group-${string}-focus` | `$group-${number}-focus` | `$group-${string}-focusVisible` | `$group-${number}-focusVisible` | `$group-${string}-focusWithin` | `$group-${number}-focusWithin` | `$group-${string}-hover` | `$group-${number}-hover` | `$group-${string}-press` | `$group-${number}-press`> & Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
110
110
|
unstyled?: boolean | undefined;
|
|
111
111
|
}>, "scope" | keyof BaseMenuTypes.MenuItemIndicatorProps> & BaseMenuTypes.MenuItemIndicatorProps & {
|
|
112
112
|
scope?: string;
|
|
@@ -132,10 +132,10 @@ export declare function createNonNativeContextMenu(params: CreateBaseMenuProps):
|
|
|
132
132
|
scope?: string;
|
|
133
133
|
} & React.RefAttributes<GuiElement>>;
|
|
134
134
|
Sub: {
|
|
135
|
-
(props: ScopedProps<ContextMenuSubProps>):
|
|
135
|
+
(props: ScopedProps<ContextMenuSubProps>): React.JSX.Element;
|
|
136
136
|
displayName: string;
|
|
137
137
|
};
|
|
138
|
-
SubTrigger: import("@hanzogui/web").GuiComponent<Omit<ViewProps, "
|
|
138
|
+
SubTrigger: import("@hanzogui/web").GuiComponent<Omit<ViewProps, "key" | "scope" | keyof BaseMenuTypes.MenuSubTriggerProps> & Omit<BaseMenuTypes.MenuSubTriggerProps & {
|
|
139
139
|
scope?: string;
|
|
140
140
|
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
141
141
|
scope?: string;
|
|
@@ -145,32 +145,32 @@ export declare function createNonNativeContextMenu(params: CreateBaseMenuProps):
|
|
|
145
145
|
scope?: string;
|
|
146
146
|
}, import("@hanzogui/web").StackStyleBase, {}, {}>;
|
|
147
147
|
SubContent: React.ForwardRefExoticComponent<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/core").RNGuiViewNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
148
|
-
size?: import("@hanzogui/web").SizeTokens | undefined;
|
|
149
|
-
unstyled?: boolean | undefined;
|
|
150
148
|
elevation?: number | import("@hanzogui/web").SizeTokens | undefined;
|
|
151
149
|
fullscreen?: boolean | undefined;
|
|
150
|
+
size?: import("@hanzogui/web").SizeTokens | undefined;
|
|
151
|
+
unstyled?: boolean | undefined;
|
|
152
152
|
}>, keyof BaseMenuTypes.MenuSubContentProps> & BaseMenuTypes.MenuSubContentProps & {
|
|
153
153
|
scope?: string;
|
|
154
154
|
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
155
155
|
scope?: string;
|
|
156
|
-
} & React.RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods)
|
|
156
|
+
} & React.RefAttributes<import("react-native").View | (HTMLElement & import("@hanzogui/web").GuiElementMethods)>>;
|
|
157
157
|
ItemTitle: import("@hanzogui/web").GuiComponent<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").TextNonStyleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
158
|
-
unstyled?: boolean | undefined;
|
|
159
158
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
160
|
-
}>, keyof BaseMenuTypes.MenuItemTitleProps> & BaseMenuTypes.MenuItemTitleProps, import("@hanzogui/web").GuiTextElement, import("@hanzogui/web").TextNonStyleProps & BaseMenuTypes.MenuItemTitleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
161
159
|
unstyled?: boolean | undefined;
|
|
160
|
+
}>, keyof BaseMenuTypes.MenuItemTitleProps> & BaseMenuTypes.MenuItemTitleProps, import("@hanzogui/web").GuiTextElement, import("@hanzogui/web").TextNonStyleProps & BaseMenuTypes.MenuItemTitleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
162
161
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
162
|
+
unstyled?: boolean | undefined;
|
|
163
163
|
}, import("@hanzogui/web").StaticConfigPublic>;
|
|
164
164
|
ItemSubtitle: import("@hanzogui/web").GuiComponent<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").TextNonStyleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
165
|
-
unstyled?: boolean | undefined;
|
|
166
165
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
167
|
-
}>, keyof BaseMenuTypes.MenuItemSubTitleProps> & BaseMenuTypes.MenuItemSubTitleProps, import("@hanzogui/web").GuiTextElement, import("@hanzogui/web").TextNonStyleProps & BaseMenuTypes.MenuItemSubTitleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
168
166
|
unstyled?: boolean | undefined;
|
|
167
|
+
}>, keyof BaseMenuTypes.MenuItemSubTitleProps> & BaseMenuTypes.MenuItemSubTitleProps, import("@hanzogui/web").GuiTextElement, import("@hanzogui/web").TextNonStyleProps & BaseMenuTypes.MenuItemSubTitleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
169
168
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
169
|
+
unstyled?: boolean | undefined;
|
|
170
170
|
}, import("@hanzogui/web").StaticConfigPublic>;
|
|
171
171
|
ItemIcon: import("@hanzogui/web").GuiComponent<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
172
172
|
unstyled?: boolean | undefined;
|
|
173
|
-
}>, `$${string}` | `$${number}` | import("@hanzogui/web").GroupMediaKeys | keyof import("@hanzogui/web").
|
|
173
|
+
}>, `$${string}` | `$${number}` | import("@hanzogui/web").GroupMediaKeys | keyof import("@hanzogui/web").StackNonStyleProps | keyof import("@hanzogui/web").StackStyleBase | keyof import("@hanzogui/web").WithPseudoProps<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase> & import("@hanzogui/web").WithShorthands<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase>>>> & import("@hanzogui/web").StackNonStyleProps & import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase> & import("@hanzogui/web").WithShorthands<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase>> & import("@hanzogui/web").WithPseudoProps<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase> & import("@hanzogui/web").WithShorthands<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase>>> & import("@hanzogui/web").WithMediaProps<import("@hanzogui/web").WithThemeShorthandsAndPseudos<import("@hanzogui/web").StackStyleBase, {}>>, GuiElement, import("@hanzogui/web").StackNonStyleProps & import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase> & import("@hanzogui/web").WithShorthands<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase>> & import("@hanzogui/web").WithPseudoProps<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase> & import("@hanzogui/web").WithShorthands<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase>>> & import("@hanzogui/web").WithMediaProps<import("@hanzogui/web").WithThemeShorthandsAndPseudos<import("@hanzogui/web").StackStyleBase, {}>>, import("@hanzogui/web").StackStyleBase, {
|
|
174
174
|
unstyled?: boolean | undefined;
|
|
175
175
|
}, import("@hanzogui/web").StaticConfigPublic>;
|
|
176
176
|
ItemImage: React.ForwardRefExoticComponent<import("react-native").ImageProps & React.RefAttributes<import("react-native").Image>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createNonNativeContextMenu.d.ts","sourceRoot":"","sources":["../src/createNonNativeContextMenu.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"createNonNativeContextMenu.d.ts","sourceRoot":"","sources":["../src/createNonNativeContextMenu.tsx"],"names":[],"mappings":"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"}
|