@hanzogui/context-menu 7.0.0 → 7.3.0
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.cjs +185 -0
- package/dist/cjs/ContextMenu.native.js +193 -0
- package/dist/cjs/ContextMenu.native.js.map +1 -0
- package/dist/cjs/createNonNativeContextMenu.cjs +443 -0
- package/dist/cjs/createNonNativeContextMenu.native.js +470 -0
- package/dist/cjs/createNonNativeContextMenu.native.js.map +1 -0
- package/dist/cjs/index.cjs +41 -0
- package/dist/cjs/index.native.js +44 -0
- package/dist/cjs/index.native.js.map +1 -0
- package/dist/esm/ContextMenu.mjs +149 -0
- package/dist/esm/ContextMenu.mjs.map +1 -0
- package/dist/esm/ContextMenu.native.js +154 -0
- package/dist/esm/ContextMenu.native.js.map +1 -0
- package/dist/esm/createNonNativeContextMenu.mjs +406 -0
- package/dist/esm/createNonNativeContextMenu.mjs.map +1 -0
- package/dist/esm/createNonNativeContextMenu.native.js +430 -0
- package/dist/esm/createNonNativeContextMenu.native.js.map +1 -0
- package/dist/esm/index.js +15 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/index.mjs +15 -0
- package/dist/esm/index.mjs.map +1 -0
- package/dist/esm/index.native.js +15 -0
- package/dist/esm/index.native.js.map +1 -0
- package/dist/jsx/ContextMenu.mjs +149 -0
- package/dist/jsx/ContextMenu.mjs.map +1 -0
- package/dist/jsx/ContextMenu.native.js +193 -0
- package/dist/jsx/ContextMenu.native.js.map +1 -0
- package/dist/jsx/createNonNativeContextMenu.mjs +406 -0
- package/dist/jsx/createNonNativeContextMenu.mjs.map +1 -0
- package/dist/jsx/createNonNativeContextMenu.native.js +470 -0
- package/dist/jsx/createNonNativeContextMenu.native.js.map +1 -0
- package/dist/jsx/index.js +15 -0
- package/dist/jsx/index.js.map +1 -0
- package/dist/jsx/index.mjs +15 -0
- package/dist/jsx/index.mjs.map +1 -0
- package/dist/jsx/index.native.js +44 -0
- package/dist/jsx/index.native.js.map +1 -0
- package/package.json +15 -13
- package/src/createNonNativeContextMenu.tsx +17 -17
- package/types/ContextMenu.d.ts +26 -26
- package/types/ContextMenu.d.ts.map +1 -0
- package/types/createNonNativeContextMenu.d.ts +41 -41
- package/types/createNonNativeContextMenu.d.ts.map +1 -0
- package/types/index.d.ts +26 -26
- package/types/index.d.ts.map +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type BaseMenuTypes from '@hanzogui/create-menu';
|
|
2
2
|
import { createBaseMenu, type CreateBaseMenuProps } from '@hanzogui/create-menu';
|
|
3
|
-
import { type
|
|
3
|
+
import { type GuiElement, type ViewProps } from '@hanzogui/web';
|
|
4
4
|
import React from 'react';
|
|
5
5
|
type Direction = 'ltr' | 'rtl';
|
|
6
6
|
export declare const CONTEXTMENU_CONTEXT = "ContextMenuContext";
|
|
@@ -43,34 +43,34 @@ 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
|
-
Trigger: import("@hanzogui/web").
|
|
53
|
+
Trigger: import("@hanzogui/web").GuiComponent<Omit<ViewProps, "scope" | keyof ContextMenuTriggerProps> & ContextMenuTriggerProps & {
|
|
54
54
|
scope?: string;
|
|
55
|
-
},
|
|
55
|
+
}, GuiElement, import("@hanzogui/web").StackNonStyleProps & ContextMenuTriggerProps & {
|
|
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").
|
|
65
|
-
Group: import("@hanzogui/web").
|
|
64
|
+
} & React.RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods) | import("react-native").View>>;
|
|
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
|
-
}>, keyof BaseMenuTypes.MenuGroupProps> & BaseMenuTypes.MenuGroupProps,
|
|
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
|
-
Label: import("@hanzogui/web").
|
|
70
|
+
Label: import("@hanzogui/web").GuiComponent<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").TextNonStyleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
71
71
|
unstyled?: boolean | undefined;
|
|
72
72
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
73
|
-
}>, keyof BaseMenuTypes.MenuLabelProps> & BaseMenuTypes.MenuLabelProps, import("@hanzogui/web").
|
|
73
|
+
}>, keyof BaseMenuTypes.MenuLabelProps> & BaseMenuTypes.MenuLabelProps, import("@hanzogui/web").GuiTextElement, import("@hanzogui/web").TextNonStyleProps & BaseMenuTypes.MenuLabelProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
74
74
|
unstyled?: boolean | undefined;
|
|
75
75
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
76
76
|
}, import("@hanzogui/web").StaticConfigPublic>;
|
|
@@ -78,31 +78,31 @@ export declare function createNonNativeContextMenu(params: CreateBaseMenuProps):
|
|
|
78
78
|
unstyled?: boolean | undefined;
|
|
79
79
|
}>, "scope" | keyof BaseMenuTypes.MenuItemProps> & BaseMenuTypes.MenuItemProps & {
|
|
80
80
|
scope?: string;
|
|
81
|
-
} & React.RefAttributes<
|
|
81
|
+
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
82
82
|
scope?: string;
|
|
83
|
-
} & React.RefAttributes<
|
|
83
|
+
} & React.RefAttributes<GuiElement>>;
|
|
84
84
|
CheckboxItem: React.ForwardRefExoticComponent<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
85
85
|
unstyled?: boolean | undefined;
|
|
86
86
|
}>, "scope" | keyof BaseMenuTypes.MenuCheckboxItemProps> & BaseMenuTypes.MenuCheckboxItemProps & {
|
|
87
87
|
scope?: string;
|
|
88
|
-
} & React.RefAttributes<
|
|
88
|
+
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
89
89
|
scope?: string;
|
|
90
|
-
} & React.RefAttributes<
|
|
90
|
+
} & React.RefAttributes<GuiElement>>;
|
|
91
91
|
RadioGroup: React.ForwardRefExoticComponent<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
92
92
|
unstyled?: boolean | undefined;
|
|
93
93
|
}>, "scope" | keyof BaseMenuTypes.MenuRadioGroupProps> & BaseMenuTypes.MenuRadioGroupProps & {
|
|
94
94
|
scope?: string;
|
|
95
|
-
} & React.RefAttributes<
|
|
95
|
+
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
96
96
|
scope?: string;
|
|
97
|
-
} & React.RefAttributes<(HTMLElement & import("@hanzogui/web").
|
|
97
|
+
} & React.RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods) | import("react-native").View>>;
|
|
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 & {
|
|
101
101
|
scope?: string;
|
|
102
|
-
} & React.RefAttributes<
|
|
102
|
+
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
103
103
|
scope?: string;
|
|
104
|
-
} & React.RefAttributes<
|
|
105
|
-
ItemIndicator: import("@hanzogui/web").
|
|
104
|
+
} & React.RefAttributes<GuiElement>>;
|
|
105
|
+
ItemIndicator: import("@hanzogui/web").GuiComponent<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
106
106
|
unstyled?: boolean | undefined;
|
|
107
107
|
}>, "scope" | keyof BaseMenuTypes.MenuItemIndicatorProps> & BaseMenuTypes.MenuItemIndicatorProps & {
|
|
108
108
|
scope?: string;
|
|
@@ -110,67 +110,67 @@ export declare function createNonNativeContextMenu(params: CreateBaseMenuProps):
|
|
|
110
110
|
unstyled?: boolean | undefined;
|
|
111
111
|
}>, "scope" | keyof BaseMenuTypes.MenuItemIndicatorProps> & BaseMenuTypes.MenuItemIndicatorProps & {
|
|
112
112
|
scope?: string;
|
|
113
|
-
} & React.RefAttributes<
|
|
113
|
+
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
114
114
|
scope?: string;
|
|
115
|
-
},
|
|
115
|
+
}, GuiElement, import("@hanzogui/web").StackNonStyleProps & BaseMenuTypes.MenuItemIndicatorProps & {
|
|
116
116
|
scope?: string;
|
|
117
117
|
} & Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
118
118
|
unstyled?: boolean | undefined;
|
|
119
119
|
}>, "scope" | keyof BaseMenuTypes.MenuItemIndicatorProps> & BaseMenuTypes.MenuItemIndicatorProps & {
|
|
120
120
|
scope?: string;
|
|
121
|
-
} & React.RefAttributes<
|
|
121
|
+
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
122
122
|
scope?: string;
|
|
123
123
|
}, import("@hanzogui/web").StackStyleBase, {
|
|
124
124
|
unstyled?: boolean | undefined;
|
|
125
125
|
}, import("@hanzogui/web").StaticConfigPublic>;
|
|
126
|
-
Separator: import("@hanzogui/web").
|
|
126
|
+
Separator: import("@hanzogui/web").GuiComponent<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
127
127
|
unstyled?: boolean | undefined;
|
|
128
|
-
}>, keyof BaseMenuTypes.MenuSeparatorProps> & BaseMenuTypes.MenuSeparatorProps,
|
|
128
|
+
}>, keyof BaseMenuTypes.MenuSeparatorProps> & BaseMenuTypes.MenuSeparatorProps, GuiElement, import("@hanzogui/web").StackNonStyleProps & BaseMenuTypes.MenuSeparatorProps, import("@hanzogui/web").StackStyleBase, {
|
|
129
129
|
unstyled?: boolean | undefined;
|
|
130
130
|
}, import("@hanzogui/web").StaticConfigPublic>;
|
|
131
|
-
Arrow: React.ForwardRefExoticComponent<Omit<BaseMenuTypes.MenuArrowProps & React.RefAttributes<
|
|
131
|
+
Arrow: React.ForwardRefExoticComponent<Omit<BaseMenuTypes.MenuArrowProps & React.RefAttributes<GuiElement>, "ref"> & {
|
|
132
132
|
scope?: string;
|
|
133
|
-
} & React.RefAttributes<
|
|
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").
|
|
138
|
+
SubTrigger: import("@hanzogui/web").GuiComponent<Omit<ViewProps, "scope" | "key" | keyof BaseMenuTypes.MenuSubTriggerProps> & Omit<BaseMenuTypes.MenuSubTriggerProps & {
|
|
139
139
|
scope?: string;
|
|
140
|
-
} & React.RefAttributes<
|
|
140
|
+
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
141
141
|
scope?: string;
|
|
142
|
-
},
|
|
142
|
+
}, GuiElement, import("@hanzogui/web").StackNonStyleProps & Omit<BaseMenuTypes.MenuSubTriggerProps & {
|
|
143
143
|
scope?: string;
|
|
144
|
-
} & React.RefAttributes<
|
|
144
|
+
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
145
145
|
scope?: string;
|
|
146
146
|
}, import("@hanzogui/web").StackStyleBase, {}, {}>;
|
|
147
|
-
SubContent: React.ForwardRefExoticComponent<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/core").
|
|
147
|
+
SubContent: React.ForwardRefExoticComponent<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/core").RNViewNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
148
148
|
size?: import("@hanzogui/web").SizeTokens | undefined;
|
|
149
149
|
unstyled?: boolean | undefined;
|
|
150
150
|
elevation?: number | import("@hanzogui/web").SizeTokens | undefined;
|
|
151
151
|
fullscreen?: boolean | undefined;
|
|
152
152
|
}>, keyof BaseMenuTypes.MenuSubContentProps> & BaseMenuTypes.MenuSubContentProps & {
|
|
153
153
|
scope?: string;
|
|
154
|
-
} & React.RefAttributes<
|
|
154
|
+
} & React.RefAttributes<GuiElement>, "ref"> & {
|
|
155
155
|
scope?: string;
|
|
156
|
-
} & React.RefAttributes<(HTMLElement & import("@hanzogui/web").
|
|
157
|
-
ItemTitle: import("@hanzogui/web").
|
|
156
|
+
} & React.RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods) | import("react-native").View>>;
|
|
157
|
+
ItemTitle: import("@hanzogui/web").GuiComponent<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").TextNonStyleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
158
158
|
unstyled?: boolean | undefined;
|
|
159
159
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
160
|
-
}>, keyof BaseMenuTypes.MenuItemTitleProps> & BaseMenuTypes.MenuItemTitleProps, import("@hanzogui/web").
|
|
160
|
+
}>, keyof BaseMenuTypes.MenuItemTitleProps> & BaseMenuTypes.MenuItemTitleProps, import("@hanzogui/web").GuiTextElement, import("@hanzogui/web").TextNonStyleProps & BaseMenuTypes.MenuItemTitleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
161
161
|
unstyled?: boolean | undefined;
|
|
162
162
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
163
163
|
}, import("@hanzogui/web").StaticConfigPublic>;
|
|
164
|
-
ItemSubtitle: import("@hanzogui/web").
|
|
164
|
+
ItemSubtitle: import("@hanzogui/web").GuiComponent<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").TextNonStyleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
165
165
|
unstyled?: boolean | undefined;
|
|
166
166
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
167
|
-
}>, keyof BaseMenuTypes.MenuItemSubTitleProps> & BaseMenuTypes.MenuItemSubTitleProps, import("@hanzogui/web").
|
|
167
|
+
}>, keyof BaseMenuTypes.MenuItemSubTitleProps> & BaseMenuTypes.MenuItemSubTitleProps, import("@hanzogui/web").GuiTextElement, import("@hanzogui/web").TextNonStyleProps & BaseMenuTypes.MenuItemSubTitleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
168
168
|
unstyled?: boolean | undefined;
|
|
169
169
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
170
170
|
}, import("@hanzogui/web").StaticConfigPublic>;
|
|
171
|
-
ItemIcon: import("@hanzogui/web").
|
|
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 | `$theme-${string}` | `$theme-${number}` | keyof import("@hanzogui/web").StackStyleBase | keyof import("@hanzogui/web").StackNonStyleProps | 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, {}>>,
|
|
173
|
+
}>, `$${string}` | `$${number}` | import("@hanzogui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | keyof import("@hanzogui/web").StackStyleBase | keyof import("@hanzogui/web").StackNonStyleProps | 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>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createNonNativeContextMenu.d.ts","sourceRoot":"","sources":["../src/createNonNativeContextMenu.tsx"],"names":[],"mappings":"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"}
|
package/types/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare const ContextMenu: import("react").FC<import("./createNonNativeCo
|
|
|
4
4
|
} & Partial<Omit<import("@hanzogui/create-menu").NativeMenuProps, keyof import("./createNonNativeContextMenu").ContextMenuProps>>> & {
|
|
5
5
|
Trigger: import("react").FC<Omit<import("@hanzogui/web").ViewProps, "scope" | keyof import("./createNonNativeContextMenu").ContextMenuTriggerProps> & import("./createNonNativeContextMenu").ContextMenuTriggerProps & {
|
|
6
6
|
scope?: string;
|
|
7
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
7
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement> & Partial<Omit<import("@hanzogui/create-menu").MenuTriggerProps, "scope" | keyof import("react").RefAttributes<import("@hanzogui/web").GuiElement> | keyof import("./createNonNativeContextMenu").ContextMenuTriggerProps>>>;
|
|
8
8
|
Portal: import("react").FC<import("@hanzogui/create-menu").MenuPortalProps & {
|
|
9
9
|
scope?: string;
|
|
10
10
|
} & {
|
|
@@ -12,21 +12,21 @@ export declare const ContextMenu: import("react").FC<import("./createNonNativeCo
|
|
|
12
12
|
} & Partial<Omit<import("react").FragmentProps, keyof import("@hanzogui/create-menu").MenuPortalProps | "scope">>>;
|
|
13
13
|
Content: import("react").FC<import("./createNonNativeContextMenu").ContextMenuContentProps & {
|
|
14
14
|
scope?: string;
|
|
15
|
-
} & import("react").RefAttributes<(HTMLElement & import("@hanzogui/web").
|
|
15
|
+
} & import("react").RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods) | import("react-native").View> & Partial<Omit<import("@hanzogui/create-menu").NativeMenuContentProps, "theme" | "debug" | `$${string}` | `$${number}` | `$group-${string}` | `$group-${number}` | `$group-${string}-hover` | `$group-${string}-press` | `$group-${string}-focus` | `$group-${string}-focusVisible` | `$group-${string}-focusWithin` | `$group-${number}-hover` | `$group-${number}-press` | `$group-${number}-focus` | `$group-${number}-focusVisible` | `$group-${number}-focusWithin` | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "pointerEvents" | "display" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "unstyled" | "id" | "render" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "animatedBy" | "onStartShouldSetResponder" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "elevationAndroid" | "rel" | "download" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerDownCapture" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "position" | "x" | "y" | "perspective" | "scale" | "scaleX" | "scaleY" | "skewX" | "skewY" | "matrix" | "rotate" | "rotateY" | "rotateX" | "rotateZ" | "borderCurve" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "outline" | "userSelect" | "backdropFilter" | "background" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "boxShadow" | "border" | "overflowX" | "overflowY" | "transformOrigin" | "filter" | "backgroundClip" | "backgroundBlendMode" | "backgroundAttachment" | "clipPath" | "caretColor" | "transformStyle" | "mask" | "maskImage" | "textEmphasis" | "borderImage" | "float" | "content" | "overflowBlock" | "overflowInline" | "maskBorder" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "gridRow" | "gridRowEnd" | "gridRowGap" | "gridRowStart" | "gridColumn" | "gridColumnEnd" | "gridColumnGap" | "gridColumnStart" | "gridTemplateColumns" | "gridTemplateAreas" | "containerType" | "blockSize" | "inlineSize" | "minBlockSize" | "maxBlockSize" | "objectFit" | "verticalAlign" | "minInlineSize" | "maxInlineSize" | "borderInlineColor" | "borderInlineStartColor" | "borderInlineEndColor" | "borderBlockWidth" | "borderBlockStartWidth" | "borderBlockEndWidth" | "borderInlineWidth" | "borderInlineStartWidth" | "borderInlineEndWidth" | "borderBlockStyle" | "borderBlockStartStyle" | "borderBlockEndStyle" | "borderInlineStyle" | "borderInlineStartStyle" | "borderInlineEndStyle" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "inset" | "insetBlock" | "insetBlockStart" | "insetBlockEnd" | "insetInline" | "insetInlineStart" | "insetInlineEnd" | "transition" | "animateOnly" | "animatePresence" | "passThrough" | "elevation" | "backfaceVisibility" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "isolation" | "mixBlendMode" | "experimental_backgroundImage" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "boxSizing" | "end" | "flex" | "flexBasis" | "flexDirection" | "rowGap" | "gap" | "columnGap" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "size" | "transparent" | "circular" | "hoverStyle" | "pressStyle" | "focusStyle" | "focusWithinStyle" | "focusVisibleStyle" | "disabledStyle" | "exitStyle" | "enterStyle" | "forceMount" | "ref" | "scope" | "fullscreen" | "elevate" | "bordered" | "chromeless" | "animatePosition" | "enableAnimationForPositionChange" | "onCloseAutoFocus" | "loop" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "key">>>;
|
|
16
16
|
Group: import("react").FC<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
17
17
|
unstyled?: boolean | undefined;
|
|
18
|
-
}>, keyof import("@hanzogui/create-menu").MenuGroupProps> & import("@hanzogui/create-menu").MenuGroupProps & import("react").RefAttributes<import("@hanzogui/web").
|
|
18
|
+
}>, keyof import("@hanzogui/create-menu").MenuGroupProps> & import("@hanzogui/create-menu").MenuGroupProps & import("react").RefAttributes<import("@hanzogui/web").GuiElement> & Partial<Omit<import("@hanzogui/create-menu").NativeMenuGroupProps, keyof import("react").RefAttributes<import("@hanzogui/web").GuiElement> | keyof import("@hanzogui/create-menu").MenuGroupProps>>>;
|
|
19
19
|
Label: import("react").FC<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").TextNonStyleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
20
20
|
unstyled?: boolean | undefined;
|
|
21
21
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
22
|
-
}>, keyof import("@hanzogui/create-menu").MenuLabelProps> & import("@hanzogui/create-menu").MenuLabelProps & import("react").RefAttributes<import("@hanzogui/web").
|
|
22
|
+
}>, keyof import("@hanzogui/create-menu").MenuLabelProps> & import("@hanzogui/create-menu").MenuLabelProps & import("react").RefAttributes<import("@hanzogui/web").GuiTextElement> & Partial<Omit<import("@hanzogui/create-menu").NativeMenuLabelProps, "elevation" | "fontFamily" | "fontSize" | "color" | "textShadowColor" | "lineHeight" | "fontWeight" | "letterSpacing" | "size" | "allowFontScaling" | "ellipsizeMode" | "lineBreakMode" | "numberOfLines" | "maxFontSizeMultiplier" | "minimumFontScale" | "pressRetentionOffset" | "adjustsFontSizeToFit" | "dynamicTypeRamp" | "suppressHighlighting" | "lineBreakStrategyIOS" | "selectable" | "selectionColor" | "textBreakStrategy" | "dataDetectorType" | "android_hyphenationFrequency" | "fontStyle" | "textAlign" | "textDecorationLine" | "textDecorationStyle" | "textDecorationColor" | "textShadowOffset" | "textShadowRadius" | "textTransform" | "fontVariant" | "writingDirection" | "textAlignVertical" | "includeFontPadding" | "ellipsis" | "textDecorationDistance" | "textOverflow" | "whiteSpace" | "wordWrap" | "textShadow" | keyof import("@hanzogui/create-menu").MenuLabelProps | keyof import("react").RefAttributes<import("@hanzogui/web").GuiTextElement>>>>;
|
|
23
23
|
Item: import("react").FC<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
24
24
|
unstyled?: boolean | undefined;
|
|
25
25
|
}>, "scope" | keyof import("@hanzogui/create-menu").MenuItemProps> & import("@hanzogui/create-menu").MenuItemProps & {
|
|
26
26
|
scope?: string;
|
|
27
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
27
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement>, "ref"> & {
|
|
28
28
|
scope?: string;
|
|
29
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
29
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement> & Partial<Omit<{
|
|
30
30
|
children: React.ReactNode;
|
|
31
31
|
textValue?: string;
|
|
32
32
|
onSelect?: (event?: Event) => void;
|
|
@@ -35,34 +35,34 @@ export declare const ContextMenu: import("react").FC<import("./createNonNativeCo
|
|
|
35
35
|
hidden?: boolean;
|
|
36
36
|
destructive?: boolean;
|
|
37
37
|
key: string;
|
|
38
|
-
}, "scope" | keyof import("react").RefAttributes<import("@hanzogui/web").
|
|
38
|
+
}, "scope" | keyof import("react").RefAttributes<import("@hanzogui/web").GuiElement> | keyof import("@hanzogui/create-menu").MenuItemProps>>>;
|
|
39
39
|
CheckboxItem: import("react").FC<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
40
40
|
unstyled?: boolean | undefined;
|
|
41
41
|
}>, "scope" | keyof import("@hanzogui/create-menu").MenuCheckboxItemProps> & import("@hanzogui/create-menu").MenuCheckboxItemProps & {
|
|
42
42
|
scope?: string;
|
|
43
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
43
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement>, "ref"> & {
|
|
44
44
|
scope?: string;
|
|
45
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
45
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement> & Partial<Omit<Omit<import("@hanzogui/create-menu").NativeMenuItemProps, "onSelect"> & {
|
|
46
46
|
checked?: boolean;
|
|
47
47
|
onCheckedChange?: (checked: boolean) => void;
|
|
48
48
|
value?: "mixed" | "on" | "off" | boolean;
|
|
49
49
|
onValueChange?: (state: "mixed" | "on" | "off", prevState: "mixed" | "on" | "off") => void;
|
|
50
50
|
key: string;
|
|
51
|
-
}, "scope" | keyof import("react").RefAttributes<import("@hanzogui/web").
|
|
51
|
+
}, "scope" | keyof import("react").RefAttributes<import("@hanzogui/web").GuiElement> | keyof import("@hanzogui/create-menu").MenuCheckboxItemProps>>>;
|
|
52
52
|
RadioGroup: import("react").FC<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
53
53
|
unstyled?: boolean | undefined;
|
|
54
54
|
}>, "scope" | keyof import("@hanzogui/create-menu").MenuRadioGroupProps> & import("@hanzogui/create-menu").MenuRadioGroupProps & {
|
|
55
55
|
scope?: string;
|
|
56
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
56
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement>, "ref"> & {
|
|
57
57
|
scope?: string;
|
|
58
|
-
} & import("react").RefAttributes<(HTMLElement & import("@hanzogui/web").
|
|
58
|
+
} & import("react").RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods) | import("react-native").View> & Partial<Omit<unknown, "scope" | keyof import("@hanzogui/create-menu").MenuRadioGroupProps | keyof import("react").RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods) | import("react-native").View>>>>;
|
|
59
59
|
RadioItem: import("react").FC<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
60
60
|
unstyled?: boolean | undefined;
|
|
61
61
|
}>, "scope" | keyof import("@hanzogui/create-menu").MenuRadioItemProps> & import("@hanzogui/create-menu").MenuRadioItemProps & {
|
|
62
62
|
scope?: string;
|
|
63
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
63
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement>, "ref"> & {
|
|
64
64
|
scope?: string;
|
|
65
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
65
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement> & Partial<Omit<any, "scope" | keyof import("react").RefAttributes<import("@hanzogui/web").GuiElement> | keyof import("@hanzogui/create-menu").MenuRadioItemProps>>>;
|
|
66
66
|
ItemIndicator: import("react").FC<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
67
67
|
unstyled?: boolean | undefined;
|
|
68
68
|
}>, "scope" | keyof import("@hanzogui/create-menu").MenuItemIndicatorProps> & import("@hanzogui/create-menu").MenuItemIndicatorProps & {
|
|
@@ -71,21 +71,21 @@ export declare const ContextMenu: import("react").FC<import("./createNonNativeCo
|
|
|
71
71
|
unstyled?: boolean | undefined;
|
|
72
72
|
}>, "scope" | keyof import("@hanzogui/create-menu").MenuItemIndicatorProps> & import("@hanzogui/create-menu").MenuItemIndicatorProps & {
|
|
73
73
|
scope?: string;
|
|
74
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
74
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement>, "ref"> & {
|
|
75
75
|
scope?: string;
|
|
76
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
76
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement> & Partial<Omit<import("@hanzogui/create-menu").NativeMenuItemIndicatorProps, "theme" | "debug" | `$${string}` | `$${number}` | `$group-${string}` | `$group-${number}` | `$group-${string}-hover` | `$group-${string}-press` | `$group-${string}-focus` | `$group-${string}-focusVisible` | `$group-${string}-focusWithin` | `$group-${number}-hover` | `$group-${number}-press` | `$group-${number}-focus` | `$group-${number}-focusVisible` | `$group-${number}-focusWithin` | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "pointerEvents" | "display" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "unstyled" | "id" | "render" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "animatedBy" | "style" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerDownCapture" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "position" | "x" | "y" | "perspective" | "scale" | "scaleX" | "scaleY" | "skewX" | "skewY" | "matrix" | "rotate" | "rotateY" | "rotateX" | "rotateZ" | "borderCurve" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "outline" | "userSelect" | "backdropFilter" | "background" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "boxShadow" | "border" | "overflowX" | "overflowY" | "transformOrigin" | "filter" | "backgroundClip" | "backgroundBlendMode" | "backgroundAttachment" | "clipPath" | "caretColor" | "transformStyle" | "mask" | "maskImage" | "textEmphasis" | "borderImage" | "float" | "content" | "overflowBlock" | "overflowInline" | "maskBorder" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "gridRow" | "gridRowEnd" | "gridRowGap" | "gridRowStart" | "gridColumn" | "gridColumnEnd" | "gridColumnGap" | "gridColumnStart" | "gridTemplateColumns" | "gridTemplateAreas" | "containerType" | "blockSize" | "inlineSize" | "minBlockSize" | "maxBlockSize" | "objectFit" | "verticalAlign" | "minInlineSize" | "maxInlineSize" | "borderInlineColor" | "borderInlineStartColor" | "borderInlineEndColor" | "borderBlockWidth" | "borderBlockStartWidth" | "borderBlockEndWidth" | "borderInlineWidth" | "borderInlineStartWidth" | "borderInlineEndWidth" | "borderBlockStyle" | "borderBlockStartStyle" | "borderBlockEndStyle" | "borderInlineStyle" | "borderInlineStartStyle" | "borderInlineEndStyle" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "inset" | "insetBlock" | "insetBlockStart" | "insetBlockEnd" | "insetInline" | "insetInlineStart" | "insetInlineEnd" | "transition" | "animateOnly" | "animatePresence" | "passThrough" | "backfaceVisibility" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "isolation" | "mixBlendMode" | "experimental_backgroundImage" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "boxSizing" | "end" | "flex" | "flexBasis" | "flexDirection" | "rowGap" | "gap" | "columnGap" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "hoverStyle" | "pressStyle" | "focusStyle" | "focusWithinStyle" | "focusVisibleStyle" | "disabledStyle" | "exitStyle" | "enterStyle" | "forceMount" | "scope" | keyof import("react").RefAttributes<import("@hanzogui/web").GuiElement>>>>;
|
|
77
77
|
Separator: import("react").FC<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
78
78
|
unstyled?: boolean | undefined;
|
|
79
|
-
}>, keyof import("@hanzogui/create-menu").MenuSeparatorProps> & import("@hanzogui/create-menu").MenuSeparatorProps & import("react").RefAttributes<import("@hanzogui/web").
|
|
80
|
-
Arrow: import("react").FC<Omit<import("@hanzogui/create-menu").MenuArrowProps & import("react").RefAttributes<import("@hanzogui/web").
|
|
79
|
+
}>, keyof import("@hanzogui/create-menu").MenuSeparatorProps> & import("@hanzogui/create-menu").MenuSeparatorProps & import("react").RefAttributes<import("@hanzogui/web").GuiElement> & Partial<Omit<import("@hanzogui/create-menu").NativeMenuSeparatorProps, keyof import("react").RefAttributes<import("@hanzogui/web").GuiElement> | keyof import("@hanzogui/create-menu").MenuSeparatorProps>>>;
|
|
80
|
+
Arrow: import("react").FC<Omit<import("@hanzogui/create-menu").MenuArrowProps & import("react").RefAttributes<import("@hanzogui/web").GuiElement>, "ref"> & {
|
|
81
81
|
scope?: string;
|
|
82
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
82
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement> & Partial<Omit<import("@hanzogui/create-menu").NativeMenuArrowProps, "theme" | "debug" | `$${string}` | `$${number}` | `$group-${string}` | `$group-${number}` | `$group-${string}-hover` | `$group-${string}-press` | `$group-${string}-focus` | `$group-${string}-focusVisible` | `$group-${string}-focusWithin` | `$group-${number}-hover` | `$group-${number}-press` | `$group-${number}-focus` | `$group-${number}-focusVisible` | `$group-${number}-focusWithin` | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "pointerEvents" | "display" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "unstyled" | "id" | "render" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "animatedBy" | "onStartShouldSetResponder" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "elevationAndroid" | "rel" | "download" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerDownCapture" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "position" | "x" | "y" | "perspective" | "scale" | "scaleX" | "scaleY" | "skewX" | "skewY" | "matrix" | "rotate" | "rotateY" | "rotateX" | "rotateZ" | "borderCurve" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "outline" | "userSelect" | "backdropFilter" | "background" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "boxShadow" | "border" | "overflowX" | "overflowY" | "transformOrigin" | "filter" | "backgroundClip" | "backgroundBlendMode" | "backgroundAttachment" | "clipPath" | "caretColor" | "transformStyle" | "mask" | "maskImage" | "textEmphasis" | "borderImage" | "float" | "content" | "overflowBlock" | "overflowInline" | "maskBorder" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "gridRow" | "gridRowEnd" | "gridRowGap" | "gridRowStart" | "gridColumn" | "gridColumnEnd" | "gridColumnGap" | "gridColumnStart" | "gridTemplateColumns" | "gridTemplateAreas" | "containerType" | "blockSize" | "inlineSize" | "minBlockSize" | "maxBlockSize" | "objectFit" | "verticalAlign" | "minInlineSize" | "maxInlineSize" | "borderInlineColor" | "borderInlineStartColor" | "borderInlineEndColor" | "borderBlockWidth" | "borderBlockStartWidth" | "borderBlockEndWidth" | "borderInlineWidth" | "borderInlineStartWidth" | "borderInlineEndWidth" | "borderBlockStyle" | "borderBlockStartStyle" | "borderBlockEndStyle" | "borderInlineStyle" | "borderInlineStartStyle" | "borderInlineEndStyle" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "inset" | "insetBlock" | "insetBlockStart" | "insetBlockEnd" | "insetInline" | "insetInlineStart" | "insetInlineEnd" | "transition" | "animateOnly" | "animatePresence" | "passThrough" | "elevation" | "backfaceVisibility" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "isolation" | "mixBlendMode" | "experimental_backgroundImage" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "boxSizing" | "end" | "flex" | "flexBasis" | "flexDirection" | "rowGap" | "gap" | "columnGap" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "size" | "hoverStyle" | "pressStyle" | "focusStyle" | "focusWithinStyle" | "focusVisibleStyle" | "disabledStyle" | "exitStyle" | "enterStyle" | "scope" | "fullscreen" | "animatePosition" | keyof import("react").RefAttributes<import("@hanzogui/web").GuiElement> | "offset">>>;
|
|
83
83
|
Sub: import("react").FC<import("./createNonNativeContextMenu").ContextMenuSubProps & {
|
|
84
84
|
scope?: string;
|
|
85
85
|
} & Partial<Omit<import("@hanzogui/create-menu").NativeMenuSubProps, keyof import("./createNonNativeContextMenu").ContextMenuSubProps>>>;
|
|
86
86
|
SubTrigger: React.FC<Omit<import("@hanzogui/create-menu").MenuSubTriggerProps & {
|
|
87
87
|
scope?: string;
|
|
88
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
88
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement>, "ref"> & {
|
|
89
89
|
children: React.ReactNode;
|
|
90
90
|
textValue?: string;
|
|
91
91
|
onSelect?: (event?: Event) => void;
|
|
@@ -97,27 +97,27 @@ export declare const ContextMenu: import("react").FC<import("./createNonNativeCo
|
|
|
97
97
|
} & {
|
|
98
98
|
key: string;
|
|
99
99
|
}>;
|
|
100
|
-
SubContent: import("react").FC<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/core").
|
|
100
|
+
SubContent: import("react").FC<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/core").RNViewNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
101
101
|
size?: import("@hanzogui/web").SizeTokens | undefined;
|
|
102
102
|
unstyled?: boolean | undefined;
|
|
103
103
|
elevation?: number | import("@hanzogui/web").SizeTokens | undefined;
|
|
104
104
|
fullscreen?: boolean | undefined;
|
|
105
105
|
}>, keyof import("@hanzogui/create-menu").MenuSubContentProps> & import("@hanzogui/create-menu").MenuSubContentProps & {
|
|
106
106
|
scope?: string;
|
|
107
|
-
} & import("react").RefAttributes<import("@hanzogui/web").
|
|
107
|
+
} & import("react").RefAttributes<import("@hanzogui/web").GuiElement>, "ref"> & {
|
|
108
108
|
scope?: string;
|
|
109
|
-
} & import("react").RefAttributes<(HTMLElement & import("@hanzogui/web").
|
|
109
|
+
} & import("react").RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods) | import("react-native").View> & Partial<Omit<import("@hanzogui/create-menu").NativeMenuSubContentProps, keyof import("@hanzogui/create-menu").MenuSubContentProps | keyof import("react").RefAttributes<(HTMLElement & import("@hanzogui/web").GuiElementMethods) | import("react-native").View>>>>;
|
|
110
110
|
ItemTitle: import("react").FC<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").TextNonStyleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
111
111
|
unstyled?: boolean | undefined;
|
|
112
112
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
113
|
-
}>, keyof import("@hanzogui/create-menu").MenuItemTitleProps> & import("@hanzogui/create-menu").MenuItemTitleProps & import("react").RefAttributes<import("@hanzogui/web").
|
|
113
|
+
}>, keyof import("@hanzogui/create-menu").MenuItemTitleProps> & import("@hanzogui/create-menu").MenuItemTitleProps & import("react").RefAttributes<import("@hanzogui/web").GuiTextElement> & Partial<Omit<import("@hanzogui/create-menu").NativeMenuItemTitleProps, "size" | keyof import("@hanzogui/create-menu").MenuItemTitleProps | keyof import("react").RefAttributes<import("@hanzogui/web").GuiTextElement>>>>;
|
|
114
114
|
ItemSubtitle: import("react").FC<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").TextNonStyleProps, import("@hanzogui/web").TextStylePropsBase, {
|
|
115
115
|
unstyled?: boolean | undefined;
|
|
116
116
|
size?: import("@hanzogui/web").FontSizeTokens | undefined;
|
|
117
|
-
}>, keyof import("@hanzogui/create-menu").MenuItemSubTitleProps> & import("@hanzogui/create-menu").MenuItemSubTitleProps & import("react").RefAttributes<import("@hanzogui/web").
|
|
117
|
+
}>, keyof import("@hanzogui/create-menu").MenuItemSubTitleProps> & import("@hanzogui/create-menu").MenuItemSubTitleProps & import("react").RefAttributes<import("@hanzogui/web").GuiTextElement> & Partial<Omit<import("@hanzogui/create-menu").NativeMenuItemSubtitleProps, "size" | keyof import("@hanzogui/create-menu").MenuItemSubTitleProps | keyof import("react").RefAttributes<import("@hanzogui/web").GuiTextElement>>>>;
|
|
118
118
|
ItemIcon: React.FC<Omit<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {
|
|
119
119
|
unstyled?: boolean | undefined;
|
|
120
|
-
}>, `$${string}` | `$${number}` | import("@hanzogui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | keyof import("@hanzogui/web").StackStyleBase | keyof import("@hanzogui/web").StackNonStyleProps | 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, {}>> & import("react").RefAttributes<import("@hanzogui/web").
|
|
120
|
+
}>, `$${string}` | `$${number}` | import("@hanzogui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | keyof import("@hanzogui/web").StackStyleBase | keyof import("@hanzogui/web").StackNonStyleProps | 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, {}>> & import("react").RefAttributes<import("@hanzogui/web").GuiElement>, "ref"> & import("@hanzogui/create-menu").NativeMenuItemCommonProps>;
|
|
121
121
|
ItemImage: import("react").FC<import("react-native").ImageProps & import("react").RefAttributes<import("react-native").Image> & Partial<Omit<import("@hanzogui/create-menu").NativeMenuItemCommonProps & {
|
|
122
122
|
source: import("react-native").ImageProps["source"];
|
|
123
123
|
ios?: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,wBAAwB,CAAA;AAM/B,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAWi2C,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAAD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAA6jD,CAAC;;;gBAA4B,CAAC;;;;CADn9F,CAAA"}
|