@tamagui/dialog 1.130.7 → 1.131.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/Dialog.cjs +94 -113
- package/dist/cjs/Dialog.js +133 -123
- package/dist/cjs/Dialog.js.map +1 -1
- package/dist/cjs/Dialog.native.js +64 -67
- package/dist/cjs/Dialog.native.js.map +2 -2
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/Dialog.js +148 -131
- package/dist/esm/Dialog.js.map +1 -1
- package/dist/esm/Dialog.mjs +97 -118
- package/dist/esm/Dialog.mjs.map +1 -1
- package/dist/esm/Dialog.native.js +99 -121
- package/dist/esm/Dialog.native.js.map +1 -1
- package/dist/jsx/Dialog.js +148 -131
- package/dist/jsx/Dialog.js.map +1 -1
- package/dist/jsx/Dialog.mjs +97 -118
- package/dist/jsx/Dialog.mjs.map +1 -1
- package/dist/jsx/Dialog.native.js +66 -71
- package/dist/jsx/Dialog.native.js.map +2 -2
- package/package.json +21 -21
- package/src/Dialog.tsx +265 -275
- package/types/Dialog.d.ts +390 -41
- package/types/Dialog.d.ts.map +1 -1
package/types/Dialog.d.ts
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
import type { GetProps,
|
|
1
|
+
import type { GetProps, TamaguiElement, ViewProps } from '@tamagui/core';
|
|
2
2
|
import type { DismissableProps } from '@tamagui/dismissable';
|
|
3
3
|
import type { FocusScopeProps } from '@tamagui/focus-scope';
|
|
4
4
|
import type { YStackProps } from '@tamagui/stacks';
|
|
5
5
|
import * as React from 'react';
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
export type DialogScopes = string;
|
|
7
|
+
type ScopedProps<P> = P & {
|
|
8
|
+
scope?: DialogScopes;
|
|
9
|
+
};
|
|
10
|
+
type DialogProps = ScopedProps<{
|
|
8
11
|
children?: React.ReactNode;
|
|
9
12
|
open?: boolean;
|
|
10
13
|
defaultOpen?: boolean;
|
|
@@ -14,9 +17,10 @@ interface DialogProps {
|
|
|
14
17
|
* Used to disable the remove scroll functionality when open
|
|
15
18
|
*/
|
|
16
19
|
disableRemoveScroll?: boolean;
|
|
17
|
-
}
|
|
20
|
+
}>;
|
|
18
21
|
type NonNull<A> = Exclude<A, void | null>;
|
|
19
22
|
type DialogContextValue = {
|
|
23
|
+
forceMount?: boolean;
|
|
20
24
|
disableRemoveScroll?: boolean;
|
|
21
25
|
triggerRef: React.RefObject<TamaguiElement | null>;
|
|
22
26
|
contentRef: React.RefObject<TamaguiElement | null>;
|
|
@@ -27,19 +31,27 @@ type DialogContextValue = {
|
|
|
27
31
|
open: NonNull<DialogProps['open']>;
|
|
28
32
|
onOpenChange: NonNull<DialogProps['onOpenChange']>;
|
|
29
33
|
modal: NonNull<DialogProps['modal']>;
|
|
30
|
-
|
|
31
|
-
|
|
34
|
+
dialogScope: DialogScopes;
|
|
35
|
+
adaptScope: string;
|
|
32
36
|
};
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
export declare const DialogContext: import("@tamagui/core").StyledContext<DialogContextValue>;
|
|
38
|
+
export declare const useDialogContext: (scope?: string) => DialogContextValue, DialogProvider: React.Provider<DialogContextValue> & React.ProviderExoticComponent<Partial<DialogContextValue> & {
|
|
39
|
+
children?: React.ReactNode;
|
|
40
|
+
scope?: string;
|
|
41
|
+
}>;
|
|
42
|
+
type DialogTriggerProps = ScopedProps<ViewProps>;
|
|
43
|
+
declare const DialogTrigger: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}>, "scope"> & {
|
|
44
|
+
scope?: DialogScopes;
|
|
45
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & {
|
|
46
|
+
scope?: DialogScopes;
|
|
47
|
+
}, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic>;
|
|
48
|
+
type DialogPortalProps = ScopedProps<YStackProps & {
|
|
37
49
|
/**
|
|
38
50
|
* Used to force mounting when more control is needed. Useful when
|
|
39
51
|
* controlling animation with React animation libraries.
|
|
40
52
|
*/
|
|
41
53
|
forceMount?: true;
|
|
42
|
-
}
|
|
54
|
+
}>;
|
|
43
55
|
export declare const DialogPortalFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
44
56
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
45
57
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
@@ -78,15 +90,16 @@ export declare const DialogOverlayFrame: import("@tamagui/core").TamaguiComponen
|
|
|
78
90
|
padded?: boolean | undefined;
|
|
79
91
|
chromeless?: boolean | "all" | undefined;
|
|
80
92
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
81
|
-
|
|
93
|
+
export type DialogOverlayExtraProps = ScopedProps<{
|
|
82
94
|
/**
|
|
83
95
|
* Used to force mounting when more control is needed. Useful when
|
|
84
96
|
* controlling animation with React animation libraries.
|
|
85
97
|
*/
|
|
86
98
|
forceMount?: true;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
declare const
|
|
99
|
+
}>;
|
|
100
|
+
type DialogOverlayProps = YStackProps & DialogOverlayExtraProps;
|
|
101
|
+
declare const DialogOverlay: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
102
|
+
open?: boolean | undefined;
|
|
90
103
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
91
104
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
92
105
|
top?: number;
|
|
@@ -94,11 +107,71 @@ declare const DialogContentFrame: import("@tamagui/core").TamaguiComponent<impor
|
|
|
94
107
|
left?: number;
|
|
95
108
|
right?: number;
|
|
96
109
|
} | null | undefined;
|
|
97
|
-
|
|
110
|
+
fullscreen?: boolean | undefined;
|
|
111
|
+
circular?: boolean | undefined;
|
|
98
112
|
transparent?: boolean | undefined;
|
|
113
|
+
unstyled?: boolean | undefined;
|
|
114
|
+
hoverTheme?: boolean | undefined;
|
|
115
|
+
pressTheme?: boolean | undefined;
|
|
116
|
+
focusTheme?: boolean | undefined;
|
|
117
|
+
elevate?: boolean | undefined;
|
|
118
|
+
bordered?: number | boolean | undefined;
|
|
119
|
+
backgrounded?: boolean | undefined;
|
|
120
|
+
radiused?: boolean | undefined;
|
|
121
|
+
padded?: boolean | undefined;
|
|
122
|
+
chromeless?: boolean | "all" | undefined;
|
|
123
|
+
}>, "scope" | "forceMount"> & {
|
|
124
|
+
/**
|
|
125
|
+
* Used to force mounting when more control is needed. Useful when
|
|
126
|
+
* controlling animation with React animation libraries.
|
|
127
|
+
*/
|
|
128
|
+
forceMount?: true;
|
|
129
|
+
} & {
|
|
130
|
+
scope?: DialogScopes;
|
|
131
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & {
|
|
132
|
+
/**
|
|
133
|
+
* Used to force mounting when more control is needed. Useful when
|
|
134
|
+
* controlling animation with React animation libraries.
|
|
135
|
+
*/
|
|
136
|
+
forceMount?: true;
|
|
137
|
+
} & {
|
|
138
|
+
scope?: DialogScopes;
|
|
139
|
+
}, import("@tamagui/core").StackStyleBase, {
|
|
140
|
+
open?: boolean | undefined;
|
|
141
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
142
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
143
|
+
top?: number;
|
|
144
|
+
bottom?: number;
|
|
145
|
+
left?: number;
|
|
146
|
+
right?: number;
|
|
147
|
+
} | null | undefined;
|
|
148
|
+
fullscreen?: boolean | undefined;
|
|
99
149
|
circular?: boolean | undefined;
|
|
150
|
+
transparent?: boolean | undefined;
|
|
151
|
+
unstyled?: boolean | undefined;
|
|
152
|
+
hoverTheme?: boolean | undefined;
|
|
153
|
+
pressTheme?: boolean | undefined;
|
|
154
|
+
focusTheme?: boolean | undefined;
|
|
155
|
+
elevate?: boolean | undefined;
|
|
156
|
+
bordered?: number | boolean | undefined;
|
|
157
|
+
backgrounded?: boolean | undefined;
|
|
158
|
+
radiused?: boolean | undefined;
|
|
159
|
+
padded?: boolean | undefined;
|
|
160
|
+
chromeless?: boolean | "all" | undefined;
|
|
161
|
+
}, import("@tamagui/core").StaticConfigPublic>;
|
|
162
|
+
declare const DialogContentFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
163
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
164
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
165
|
+
top?: number;
|
|
166
|
+
bottom?: number;
|
|
167
|
+
left?: number;
|
|
168
|
+
right?: number;
|
|
169
|
+
} | null | undefined;
|
|
100
170
|
fullscreen?: boolean | undefined;
|
|
171
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
101
172
|
unstyled?: boolean | undefined;
|
|
173
|
+
circular?: boolean | undefined;
|
|
174
|
+
transparent?: boolean | undefined;
|
|
102
175
|
hoverTheme?: boolean | undefined;
|
|
103
176
|
pressTheme?: boolean | undefined;
|
|
104
177
|
focusTheme?: boolean | undefined;
|
|
@@ -110,18 +183,101 @@ declare const DialogContentFrame: import("@tamagui/core").TamaguiComponent<impor
|
|
|
110
183
|
chromeless?: boolean | "all" | undefined;
|
|
111
184
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
112
185
|
type DialogContentFrameProps = GetProps<typeof DialogContentFrame>;
|
|
113
|
-
|
|
186
|
+
type DialogContentExtraProps = ScopedProps<Omit<DialogContentTypeProps, 'context' | 'onPointerDownCapture'> & {
|
|
187
|
+
/**
|
|
188
|
+
* Used to force mounting when more control is needed. Useful when
|
|
189
|
+
* controlling animation with React animation libraries.
|
|
190
|
+
*/
|
|
191
|
+
forceMount?: true;
|
|
192
|
+
}>;
|
|
193
|
+
type DialogContentProps = DialogContentFrameProps & DialogContentExtraProps;
|
|
194
|
+
declare const DialogContent: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
195
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
196
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
197
|
+
top?: number;
|
|
198
|
+
bottom?: number;
|
|
199
|
+
left?: number;
|
|
200
|
+
right?: number;
|
|
201
|
+
} | null | undefined;
|
|
202
|
+
fullscreen?: boolean | undefined;
|
|
203
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
204
|
+
unstyled?: boolean | undefined;
|
|
205
|
+
circular?: boolean | undefined;
|
|
206
|
+
transparent?: boolean | undefined;
|
|
207
|
+
hoverTheme?: boolean | undefined;
|
|
208
|
+
pressTheme?: boolean | undefined;
|
|
209
|
+
focusTheme?: boolean | undefined;
|
|
210
|
+
elevate?: boolean | undefined;
|
|
211
|
+
bordered?: number | boolean | undefined;
|
|
212
|
+
backgrounded?: boolean | undefined;
|
|
213
|
+
radiused?: boolean | undefined;
|
|
214
|
+
padded?: boolean | undefined;
|
|
215
|
+
chromeless?: boolean | "all" | undefined;
|
|
216
|
+
}>, "theme" | "debug" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "themeInverse" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "href" | "hrefAttrs" | "elevationAndroid" | "rel" | "download" | "focusable" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerUp" | "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" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onFocus" | "onBlur" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "scope" | "fullscreen" | "size" | "unstyled" | "circular" | "transparent" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "forceMount" | "disableOutsidePointerEvents" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "forceUnmount" | "onBlurCapture" | "onFocusCapture" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
217
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
218
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
219
|
+
top?: number;
|
|
220
|
+
bottom?: number;
|
|
221
|
+
left?: number;
|
|
222
|
+
right?: number;
|
|
223
|
+
} | null | undefined;
|
|
224
|
+
fullscreen?: boolean | undefined;
|
|
225
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
226
|
+
unstyled?: boolean | undefined;
|
|
227
|
+
circular?: boolean | undefined;
|
|
228
|
+
transparent?: boolean | undefined;
|
|
229
|
+
hoverTheme?: boolean | undefined;
|
|
230
|
+
pressTheme?: boolean | undefined;
|
|
231
|
+
focusTheme?: boolean | undefined;
|
|
232
|
+
elevate?: boolean | undefined;
|
|
233
|
+
bordered?: number | boolean | undefined;
|
|
234
|
+
backgrounded?: boolean | undefined;
|
|
235
|
+
radiused?: boolean | undefined;
|
|
236
|
+
padded?: boolean | undefined;
|
|
237
|
+
chromeless?: boolean | "all" | undefined;
|
|
238
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> | "trapFocus" | "onOpenAutoFocus" | "onCloseAutoFocus"> & Omit<DialogContentTypeProps, "onPointerDownCapture" | "context"> & {
|
|
239
|
+
/**
|
|
240
|
+
* Used to force mounting when more control is needed. Useful when
|
|
241
|
+
* controlling animation with React animation libraries.
|
|
242
|
+
*/
|
|
243
|
+
forceMount?: true;
|
|
244
|
+
} & {
|
|
245
|
+
scope?: DialogScopes;
|
|
246
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<DialogContentTypeProps, "onPointerDownCapture" | "context"> & {
|
|
114
247
|
/**
|
|
115
248
|
* Used to force mounting when more control is needed. Useful when
|
|
116
249
|
* controlling animation with React animation libraries.
|
|
117
250
|
*/
|
|
118
251
|
forceMount?: true;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
|
|
252
|
+
} & {
|
|
253
|
+
scope?: DialogScopes;
|
|
254
|
+
}, import("@tamagui/core").StackStyleBase, {
|
|
255
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
256
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
257
|
+
top?: number;
|
|
258
|
+
bottom?: number;
|
|
259
|
+
left?: number;
|
|
260
|
+
right?: number;
|
|
261
|
+
} | null | undefined;
|
|
262
|
+
fullscreen?: boolean | undefined;
|
|
263
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
264
|
+
unstyled?: boolean | undefined;
|
|
265
|
+
circular?: boolean | undefined;
|
|
266
|
+
transparent?: boolean | undefined;
|
|
267
|
+
hoverTheme?: boolean | undefined;
|
|
268
|
+
pressTheme?: boolean | undefined;
|
|
269
|
+
focusTheme?: boolean | undefined;
|
|
270
|
+
elevate?: boolean | undefined;
|
|
271
|
+
bordered?: number | boolean | undefined;
|
|
272
|
+
backgrounded?: boolean | undefined;
|
|
273
|
+
radiused?: boolean | undefined;
|
|
274
|
+
padded?: boolean | undefined;
|
|
275
|
+
chromeless?: boolean | "all" | undefined;
|
|
276
|
+
}, import("@tamagui/core").StaticConfigPublic>;
|
|
277
|
+
type DialogContentTypeProps = DialogContentImplProps & {
|
|
122
278
|
context: DialogContextValue;
|
|
123
|
-
}
|
|
124
|
-
type
|
|
279
|
+
};
|
|
280
|
+
type DialogContentImplExtraProps = Omit<DismissableProps, 'onDismiss'> & {
|
|
125
281
|
/**
|
|
126
282
|
* When `true`, focus cannot escape the `Content` via keyboard,
|
|
127
283
|
* pointer, or a programmatic focus.
|
|
@@ -140,15 +296,21 @@ type DialogContentImplProps = DialogContentFrameProps & Omit<DismissableProps, '
|
|
|
140
296
|
onCloseAutoFocus?: FocusScopeProps['onUnmountAutoFocus'];
|
|
141
297
|
context: DialogContextValue;
|
|
142
298
|
};
|
|
299
|
+
type DialogContentImplProps = DialogContentFrameProps & DialogContentImplExtraProps;
|
|
143
300
|
declare const DialogTitleFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiTextElement, import("@tamagui/core").TextNonStyleProps, import("@tamagui/core").TextStylePropsBase, {
|
|
144
301
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
145
302
|
unstyled?: boolean | undefined;
|
|
146
303
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
147
|
-
type
|
|
148
|
-
|
|
304
|
+
type DialogTitleExtraProps = ScopedProps<{}>;
|
|
305
|
+
type DialogTitleProps = DialogTitleExtraProps & GetProps<typeof DialogTitleFrame>;
|
|
306
|
+
declare const DialogTitle: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").TextNonStyleProps, import("@tamagui/core").TextStylePropsBase, {
|
|
149
307
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
150
308
|
unstyled?: boolean | undefined;
|
|
151
|
-
}>,
|
|
309
|
+
}>, "scope"> & {
|
|
310
|
+
scope?: DialogScopes;
|
|
311
|
+
}, import("@tamagui/core").TamaguiTextElement, import("@tamagui/core").TextNonStyleProps & {
|
|
312
|
+
scope?: DialogScopes;
|
|
313
|
+
}, import("@tamagui/core").TextStylePropsBase, {
|
|
152
314
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
153
315
|
unstyled?: boolean | undefined;
|
|
154
316
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
@@ -156,20 +318,33 @@ declare const DialogDescriptionFrame: import("@tamagui/core").TamaguiComponent<i
|
|
|
156
318
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
157
319
|
unstyled?: boolean | undefined;
|
|
158
320
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
159
|
-
type
|
|
160
|
-
|
|
321
|
+
type DialogDescriptionExtraProps = ScopedProps<{}>;
|
|
322
|
+
type DialogDescriptionProps = DialogDescriptionExtraProps & GetProps<typeof DialogDescriptionFrame>;
|
|
323
|
+
declare const DialogDescription: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").TextNonStyleProps, import("@tamagui/core").TextStylePropsBase, {
|
|
161
324
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
162
325
|
unstyled?: boolean | undefined;
|
|
163
|
-
}>,
|
|
326
|
+
}>, "scope"> & {
|
|
327
|
+
scope?: DialogScopes;
|
|
328
|
+
}, import("@tamagui/core").TamaguiTextElement, import("@tamagui/core").TextNonStyleProps & {
|
|
329
|
+
scope?: DialogScopes;
|
|
330
|
+
}, import("@tamagui/core").TextStylePropsBase, {
|
|
164
331
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
165
332
|
unstyled?: boolean | undefined;
|
|
166
333
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
167
334
|
declare const DialogCloseFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic>;
|
|
168
|
-
export
|
|
335
|
+
export type DialogCloseExtraProps = ScopedProps<{
|
|
169
336
|
displayWhenAdapted?: boolean;
|
|
170
|
-
}
|
|
337
|
+
}>;
|
|
171
338
|
type DialogCloseProps = GetProps<typeof DialogCloseFrame> & DialogCloseExtraProps;
|
|
172
|
-
declare const DialogClose: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}>, "
|
|
339
|
+
declare const DialogClose: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}>, "scope" | "displayWhenAdapted"> & {
|
|
340
|
+
displayWhenAdapted?: boolean;
|
|
341
|
+
} & {
|
|
342
|
+
scope?: DialogScopes;
|
|
343
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & {
|
|
344
|
+
displayWhenAdapted?: boolean;
|
|
345
|
+
} & {
|
|
346
|
+
scope?: DialogScopes;
|
|
347
|
+
}, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic>;
|
|
173
348
|
declare const DialogWarningProvider: (props: {
|
|
174
349
|
contentName: string;
|
|
175
350
|
titleName: string;
|
|
@@ -180,28 +355,202 @@ declare const DialogWarningProvider: (props: {
|
|
|
180
355
|
export type DialogHandle = {
|
|
181
356
|
open: (val: boolean) => void;
|
|
182
357
|
};
|
|
183
|
-
declare const Dialog: React.ForwardRefExoticComponent<
|
|
358
|
+
declare const Dialog: React.ForwardRefExoticComponent<{
|
|
359
|
+
children?: React.ReactNode;
|
|
360
|
+
open?: boolean;
|
|
361
|
+
defaultOpen?: boolean;
|
|
362
|
+
onOpenChange?(open: boolean): void;
|
|
363
|
+
modal?: boolean;
|
|
364
|
+
/**
|
|
365
|
+
* Used to disable the remove scroll functionality when open
|
|
366
|
+
*/
|
|
367
|
+
disableRemoveScroll?: boolean;
|
|
368
|
+
} & {
|
|
369
|
+
scope?: DialogScopes;
|
|
370
|
+
} & React.RefAttributes<{
|
|
184
371
|
open: (val: boolean) => void;
|
|
185
372
|
}>> & {
|
|
186
|
-
Trigger: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}>,
|
|
373
|
+
Trigger: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}>, "scope"> & {
|
|
374
|
+
scope?: DialogScopes;
|
|
375
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & {
|
|
376
|
+
scope?: DialogScopes;
|
|
377
|
+
}, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic>;
|
|
187
378
|
Portal: React.FC<DialogPortalProps>;
|
|
188
|
-
Overlay:
|
|
189
|
-
|
|
190
|
-
|
|
379
|
+
Overlay: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
380
|
+
open?: boolean | undefined;
|
|
381
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
382
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
383
|
+
top?: number;
|
|
384
|
+
bottom?: number;
|
|
385
|
+
left?: number;
|
|
386
|
+
right?: number;
|
|
387
|
+
} | null | undefined;
|
|
388
|
+
fullscreen?: boolean | undefined;
|
|
389
|
+
circular?: boolean | undefined;
|
|
390
|
+
transparent?: boolean | undefined;
|
|
391
|
+
unstyled?: boolean | undefined;
|
|
392
|
+
hoverTheme?: boolean | undefined;
|
|
393
|
+
pressTheme?: boolean | undefined;
|
|
394
|
+
focusTheme?: boolean | undefined;
|
|
395
|
+
elevate?: boolean | undefined;
|
|
396
|
+
bordered?: number | boolean | undefined;
|
|
397
|
+
backgrounded?: boolean | undefined;
|
|
398
|
+
radiused?: boolean | undefined;
|
|
399
|
+
padded?: boolean | undefined;
|
|
400
|
+
chromeless?: boolean | "all" | undefined;
|
|
401
|
+
}>, "scope" | "forceMount"> & {
|
|
402
|
+
/**
|
|
403
|
+
* Used to force mounting when more control is needed. Useful when
|
|
404
|
+
* controlling animation with React animation libraries.
|
|
405
|
+
*/
|
|
406
|
+
forceMount?: true;
|
|
407
|
+
} & {
|
|
408
|
+
scope?: DialogScopes;
|
|
409
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & {
|
|
410
|
+
/**
|
|
411
|
+
* Used to force mounting when more control is needed. Useful when
|
|
412
|
+
* controlling animation with React animation libraries.
|
|
413
|
+
*/
|
|
414
|
+
forceMount?: true;
|
|
415
|
+
} & {
|
|
416
|
+
scope?: DialogScopes;
|
|
417
|
+
}, import("@tamagui/core").StackStyleBase, {
|
|
418
|
+
open?: boolean | undefined;
|
|
419
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
420
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
421
|
+
top?: number;
|
|
422
|
+
bottom?: number;
|
|
423
|
+
left?: number;
|
|
424
|
+
right?: number;
|
|
425
|
+
} | null | undefined;
|
|
426
|
+
fullscreen?: boolean | undefined;
|
|
427
|
+
circular?: boolean | undefined;
|
|
428
|
+
transparent?: boolean | undefined;
|
|
429
|
+
unstyled?: boolean | undefined;
|
|
430
|
+
hoverTheme?: boolean | undefined;
|
|
431
|
+
pressTheme?: boolean | undefined;
|
|
432
|
+
focusTheme?: boolean | undefined;
|
|
433
|
+
elevate?: boolean | undefined;
|
|
434
|
+
bordered?: number | boolean | undefined;
|
|
435
|
+
backgrounded?: boolean | undefined;
|
|
436
|
+
radiused?: boolean | undefined;
|
|
437
|
+
padded?: boolean | undefined;
|
|
438
|
+
chromeless?: boolean | "all" | undefined;
|
|
439
|
+
}, import("@tamagui/core").StaticConfigPublic>;
|
|
440
|
+
Content: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
441
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
442
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
443
|
+
top?: number;
|
|
444
|
+
bottom?: number;
|
|
445
|
+
left?: number;
|
|
446
|
+
right?: number;
|
|
447
|
+
} | null | undefined;
|
|
448
|
+
fullscreen?: boolean | undefined;
|
|
449
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
450
|
+
unstyled?: boolean | undefined;
|
|
451
|
+
circular?: boolean | undefined;
|
|
452
|
+
transparent?: boolean | undefined;
|
|
453
|
+
hoverTheme?: boolean | undefined;
|
|
454
|
+
pressTheme?: boolean | undefined;
|
|
455
|
+
focusTheme?: boolean | undefined;
|
|
456
|
+
elevate?: boolean | undefined;
|
|
457
|
+
bordered?: number | boolean | undefined;
|
|
458
|
+
backgrounded?: boolean | undefined;
|
|
459
|
+
radiused?: boolean | undefined;
|
|
460
|
+
padded?: boolean | undefined;
|
|
461
|
+
chromeless?: boolean | "all" | undefined;
|
|
462
|
+
}>, "theme" | "debug" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "themeInverse" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "href" | "hrefAttrs" | "elevationAndroid" | "rel" | "download" | "focusable" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerUp" | "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" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onFocus" | "onBlur" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "scope" | "fullscreen" | "size" | "unstyled" | "circular" | "transparent" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "forceMount" | "disableOutsidePointerEvents" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "forceUnmount" | "onBlurCapture" | "onFocusCapture" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
463
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
464
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
465
|
+
top?: number;
|
|
466
|
+
bottom?: number;
|
|
467
|
+
left?: number;
|
|
468
|
+
right?: number;
|
|
469
|
+
} | null | undefined;
|
|
470
|
+
fullscreen?: boolean | undefined;
|
|
471
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
472
|
+
unstyled?: boolean | undefined;
|
|
473
|
+
circular?: boolean | undefined;
|
|
474
|
+
transparent?: boolean | undefined;
|
|
475
|
+
hoverTheme?: boolean | undefined;
|
|
476
|
+
pressTheme?: boolean | undefined;
|
|
477
|
+
focusTheme?: boolean | undefined;
|
|
478
|
+
elevate?: boolean | undefined;
|
|
479
|
+
bordered?: number | boolean | undefined;
|
|
480
|
+
backgrounded?: boolean | undefined;
|
|
481
|
+
radiused?: boolean | undefined;
|
|
482
|
+
padded?: boolean | undefined;
|
|
483
|
+
chromeless?: boolean | "all" | undefined;
|
|
484
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> | "trapFocus" | "onOpenAutoFocus" | "onCloseAutoFocus"> & Omit<DialogContentTypeProps, "onPointerDownCapture" | "context"> & {
|
|
485
|
+
/**
|
|
486
|
+
* Used to force mounting when more control is needed. Useful when
|
|
487
|
+
* controlling animation with React animation libraries.
|
|
488
|
+
*/
|
|
489
|
+
forceMount?: true;
|
|
490
|
+
} & {
|
|
491
|
+
scope?: DialogScopes;
|
|
492
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<DialogContentTypeProps, "onPointerDownCapture" | "context"> & {
|
|
493
|
+
/**
|
|
494
|
+
* Used to force mounting when more control is needed. Useful when
|
|
495
|
+
* controlling animation with React animation libraries.
|
|
496
|
+
*/
|
|
497
|
+
forceMount?: true;
|
|
498
|
+
} & {
|
|
499
|
+
scope?: DialogScopes;
|
|
500
|
+
}, import("@tamagui/core").StackStyleBase, {
|
|
501
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
502
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
503
|
+
top?: number;
|
|
504
|
+
bottom?: number;
|
|
505
|
+
left?: number;
|
|
506
|
+
right?: number;
|
|
507
|
+
} | null | undefined;
|
|
508
|
+
fullscreen?: boolean | undefined;
|
|
509
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
510
|
+
unstyled?: boolean | undefined;
|
|
511
|
+
circular?: boolean | undefined;
|
|
512
|
+
transparent?: boolean | undefined;
|
|
513
|
+
hoverTheme?: boolean | undefined;
|
|
514
|
+
pressTheme?: boolean | undefined;
|
|
515
|
+
focusTheme?: boolean | undefined;
|
|
516
|
+
elevate?: boolean | undefined;
|
|
517
|
+
bordered?: number | boolean | undefined;
|
|
518
|
+
backgrounded?: boolean | undefined;
|
|
519
|
+
radiused?: boolean | undefined;
|
|
520
|
+
padded?: boolean | undefined;
|
|
521
|
+
chromeless?: boolean | "all" | undefined;
|
|
522
|
+
}, import("@tamagui/core").StaticConfigPublic>;
|
|
523
|
+
Title: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").TextNonStyleProps, import("@tamagui/core").TextStylePropsBase, {
|
|
191
524
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
192
525
|
unstyled?: boolean | undefined;
|
|
193
|
-
}>,
|
|
526
|
+
}>, "scope"> & {
|
|
527
|
+
scope?: DialogScopes;
|
|
528
|
+
}, import("@tamagui/core").TamaguiTextElement, import("@tamagui/core").TextNonStyleProps & {
|
|
529
|
+
scope?: DialogScopes;
|
|
530
|
+
}, import("@tamagui/core").TextStylePropsBase, {
|
|
194
531
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
195
532
|
unstyled?: boolean | undefined;
|
|
196
533
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
197
|
-
Description: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").GetFinalProps<import("@tamagui/core").TextNonStyleProps, import("@tamagui/core").TextStylePropsBase, {
|
|
534
|
+
Description: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").TextNonStyleProps, import("@tamagui/core").TextStylePropsBase, {
|
|
198
535
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
199
536
|
unstyled?: boolean | undefined;
|
|
200
|
-
}>,
|
|
537
|
+
}>, "scope"> & {
|
|
538
|
+
scope?: DialogScopes;
|
|
539
|
+
}, import("@tamagui/core").TamaguiTextElement, import("@tamagui/core").TextNonStyleProps & {
|
|
540
|
+
scope?: DialogScopes;
|
|
541
|
+
}, import("@tamagui/core").TextStylePropsBase, {
|
|
201
542
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
202
543
|
unstyled?: boolean | undefined;
|
|
203
544
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
204
|
-
Close: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}>, "
|
|
545
|
+
Close: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}>, "scope" | "displayWhenAdapted"> & {
|
|
546
|
+
displayWhenAdapted?: boolean;
|
|
547
|
+
} & {
|
|
548
|
+
scope?: DialogScopes;
|
|
549
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & {
|
|
550
|
+
displayWhenAdapted?: boolean;
|
|
551
|
+
} & {
|
|
552
|
+
scope?: DialogScopes;
|
|
553
|
+
}, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic>;
|
|
205
554
|
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<import("react-native").View>> & {
|
|
206
555
|
Frame: import("react").ForwardRefExoticComponent<import("@tamagui/sheet").SheetScopedProps<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
207
556
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -274,6 +623,6 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
274
623
|
};
|
|
275
624
|
};
|
|
276
625
|
};
|
|
277
|
-
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogWarningProvider,
|
|
626
|
+
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogWarningProvider, };
|
|
278
627
|
export type { DialogCloseProps, DialogContentProps, DialogDescriptionProps, DialogOverlayProps, DialogPortalProps, DialogProps, DialogTitleProps, DialogTriggerProps, };
|
|
279
628
|
//# sourceMappingURL=Dialog.d.ts.map
|
package/types/Dialog.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../src/Dialog.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../src/Dialog.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAUxE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AAE5D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAM3D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAKlD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,MAAM,MAAM,YAAY,GAAG,MAAM,CAAA;AAEjC,KAAK,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,KAAK,CAAC,EAAE,YAAY,CAAA;CAAE,CAAA;AAElD,KAAK,WAAW,GAAG,WAAW,CAAC;IAC7B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,YAAY,CAAC,CAAC,IAAI,EAAE,OAAO,GAAG,IAAI,CAAA;IAClC,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAC9B,CAAC,CAAA;AAEF,KAAK,OAAO,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,CAAA;AAEzC,KAAK,kBAAkB,GAAG;IACxB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,UAAU,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAC,CAAA;IAClD,UAAU,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAC,CAAA;IAClD,SAAS,EAAE,MAAM,CAAA;IACjB,OAAO,EAAE,MAAM,CAAA;IACf,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,IAAI,IAAI,CAAA;IACpB,IAAI,EAAE,OAAO,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAA;IAClC,YAAY,EAAE,OAAO,CAAC,WAAW,CAAC,cAAc,CAAC,CAAC,CAAA;IAClD,KAAK,EAAE,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAA;IACpC,WAAW,EAAE,YAAY,CAAA;IACzB,UAAU,EAAE,MAAM,CAAA;CACnB,CAAA;AAED,eAAO,MAAM,aAAa,2DAIzB,CAAA;AAED,eAAO,MAA0B,gBAAgB,0CAAY,cAAc;;;EAC5D,CAAA;AAUf,KAAK,kBAAkB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAA;AAEhD,QAAA,MAAM,aAAa;YApDiB,YAAY;;YAAZ,YAAY;0FAyE/C,CAAA;AAQD,KAAK,iBAAiB,GAAG,WAAW,CAClC,WAAW,GAAG;IACZ;;;OAGG;IACH,UAAU,CAAC,EAAE,IAAI,CAAA;CAClB,CACF,CAAA;AAED,eAAO,MAAM,iBAAiB;;;;;;;;;;8CAoB5B,CAAA;AAqCF,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CA2D7C,CAAA;AAwBD;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;WApPoB,CAAC;cACxC,CAAA;YAAsB,CAAC;aAC5B,CAAC;;;;;;;;;;;;;;;8CAoPN,CAAA;AAEF,MAAM,MAAM,uBAAuB,GAAG,WAAW,CAAC;IAChD;;;OAGG;IACH,UAAU,CAAC,EAAE,IAAI,CAAA;CAClB,CAAC,CAAA;AAEF,KAAK,kBAAkB,GAAG,WAAW,GAAG,uBAAuB,CAAA;AAE/D,QAAA,MAAM,aAAa;;;;WAlQgC,CAAC;cACxC,CAAA;YAAsB,CAAC;aAC5B,CAAC;;;;;;;;;;;;;;;;IAuPN;;;OAGG;iBACU,IAAI;;YAnPiB,YAAY;;IA+O9C;;;OAGG;iBACU,IAAI;;YAnPiB,YAAY;;;;;WAVG,CAAC;cACxC,CAAA;YAAsB,CAAC;aAC5B,CAAC;;;;;;;;;;;;;;;8CA6RP,CAAA;AAQD,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;8CA2BtB,CAAA;AAEF,KAAK,uBAAuB,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAElE,KAAK,uBAAuB,GAAG,WAAW,CACxC,IAAI,CAAC,sBAAsB,EAAE,SAAS,GAAG,sBAAsB,CAAC,GAAG;IACjE;;;OAGG;IACH,UAAU,CAAC,EAAE,IAAI,CAAA;CAClB,CACF,CAAA;AAED,KAAK,kBAAkB,GAAG,uBAAuB,GAAG,uBAAuB,CAAA;AAE3E,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAVf;;;OAGG;iBACU,IAAI;;YAlUe,YAAY;;IA8T5C;;;OAGG;iBACU,IAAI;;YAlUe,YAAY;;;;;;;;;;;;;;;;;;;;;;;8CAmW/C,CAAA;AAID,KAAK,sBAAsB,GAAG,sBAAsB,GAAG;IACrD,OAAO,EAAE,kBAAkB,CAAA;CAC5B,CAAA;AAwGD,KAAK,2BAA2B,GAAG,IAAI,CAAC,gBAAgB,EAAE,WAAW,CAAC,GAAG;IACvE;;;;OAIG;IACH,SAAS,CAAC,EAAE,eAAe,CAAC,SAAS,CAAC,CAAA;IAEtC;;;OAGG;IACH,eAAe,CAAC,EAAE,eAAe,CAAC,kBAAkB,CAAC,CAAA;IAErD;;;OAGG;IACH,gBAAgB,CAAC,EAAE,eAAe,CAAC,oBAAoB,CAAC,CAAA;IAExD,OAAO,EAAE,kBAAkB,CAAA;CAC5B,CAAA;AAED,KAAK,sBAAsB,GAAG,uBAAuB,GAAG,2BAA2B,CAAA;AA6FnF,QAAA,MAAM,gBAAgB;;;8CAEpB,CAAA;AAEF,KAAK,qBAAqB,GAAG,WAAW,CAAC,EAAE,CAAC,CAAA;AAC5C,KAAK,gBAAgB,GAAG,qBAAqB,GAAG,QAAQ,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAEjF,QAAA,MAAM,WAAW;;;;YA5kBmB,YAAY;;YAAZ,YAAY;;;;8CAklB/C,CAAA;AAMD,QAAA,MAAM,sBAAsB;;;8CAE1B,CAAA;AAEF,KAAK,2BAA2B,GAAG,WAAW,CAAC,EAAE,CAAC,CAAA;AAClD,KAAK,sBAAsB,GAAG,2BAA2B,GACvD,QAAQ,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAEzC,QAAA,MAAM,iBAAiB;;;;YAhmBa,YAAY;;YAAZ,YAAY;;;;8CA4mB/C,CAAA;AAQD,QAAA,MAAM,gBAAgB,yOAGpB,CAAA;AAEF,MAAM,MAAM,qBAAqB,GAAG,WAAW,CAAC;IAC9C,kBAAkB,CAAC,EAAE,OAAO,CAAA;CAC7B,CAAC,CAAA;AAEF,KAAK,gBAAgB,GAAG,QAAQ,CAAC,OAAO,gBAAgB,CAAC,GAAG,qBAAqB,CAAA;AAEjF,QAAA,MAAM,WAAW;yBALM,OAAO;;YA1nBM,YAAY;;yBA0nBzB,OAAO;;YA1nBM,YAAY;0FAspB/C,CAAA;AAUD,QAAA,MAAO,qBAAqB;;;;;;uBAI1B,CAAA;AA+DF,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,CAAA;CAC7B,CAAA;AAED,QAAA,MAAM,MAAM;eApuBC,KAAK,CAAC,SAAS;WACnB,OAAO;kBACA,OAAO;wBACD,OAAO,GAAG,IAAI;YAC1B,OAAO;IAEf;;OAEG;0BACmB,OAAO;;YAZK,YAAY;;UAwuBrB,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI;;;gBAxuBb,YAAY;;gBAAZ,YAAY;;;;;;;eAVG,CAAC;kBACxC,CAAA;gBAAsB,CAAC;iBAC5B,CAAC;;;;;;;;;;;;;;;;QAuPN;;;WAGG;qBACU,IAAI;;gBAnPiB,YAAY;;QA+O9C;;;WAGG;qBACU,IAAI;;gBAnPiB,YAAY;;;;;eAVG,CAAC;kBACxC,CAAA;gBAAsB,CAAC;iBAC5B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAsUJ;;;WAGG;qBACU,IAAI;;gBAlUe,YAAY;;QA8T5C;;;WAGG;qBACU,IAAI;;gBAlUe,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAAZ,YAAY;;gBAAZ,YAAY;;;;;;;;;gBAAZ,YAAY;;gBAAZ,YAAY;;;;;;6BA0nBzB,OAAO;;gBA1nBM,YAAY;;6BA0nBzB,OAAO;;gBA1nBM,YAAY;;;;qBA+EnC,CAAC;iBAGE,CAAC;mBAE2C,CAAC;sBACvC,CAAC;oBAA8B,CAAC;qBAErC,CAAA;;sBAKb,CAAC;oBAGG,CAAC;;qCAGmB,CAAC;4CAGnB,CAAR;;qCAEM,CAAR;4CAKY,CAAC;;;gBAWF,CAAC;qBACS,CAAC;iBACmB,CAAC;mBAES,CAAC;sBAE5B,CAAC;oBAA+B,CAAA;qBACjC,CAAC;;sBAGhB,CAAP;oBAA2C,CAAC;uBAClB,CAAC;oBAIG,CAAC;sBACN,CAAA;sBACG,CAAC;sBAA6C,CAAC;mBAElE,CAAC;oBAA2C,CAAC;wBAEnD,CAAA;oBAA2C,CAAC;kBAE5C,CAAF;sBAMA,CAAC;;;gBAGsB,CAAC;;;0CAgBkB,CAAC;;sBAIrC,CAAC;;0CAU2B,CAAC;;0CAa3B,CAAC;;sBAQG,CAAC;;0CAWM,CAAC;;0CAcM,CAAC;;sBAOf,CAAC;;;;;;sBA3Nb,GAAI;qBAA4B,CAAA;;;;;CA6yBjC,CAAA;AA4BD,OAAO,EAEL,MAAM,EACN,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,aAAa,EACb,YAAY,EACZ,WAAW,EACX,aAAa,EAEb,qBAAqB,GACtB,CAAA;AACD,YAAY,EACV,gBAAgB,EAChB,kBAAkB,EAClB,sBAAsB,EACtB,kBAAkB,EAClB,iBAAiB,EACjB,WAAW,EACX,gBAAgB,EAChB,kBAAkB,GACnB,CAAA"}
|