@tamagui/progress 1.47.7 → 1.47.9
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/Progress.js +61 -83
- package/dist/cjs/Progress.js.map +2 -2
- package/dist/esm/Progress.js +61 -83
- package/dist/esm/Progress.js.map +2 -2
- package/dist/jsx/Progress.js +56 -78
- package/dist/jsx/Progress.js.map +2 -2
- package/package.json +7 -7
- package/src/Progress.tsx +73 -95
- package/types/Progress.d.ts +400 -9
- package/types/Progress.d.ts.map +1 -1
package/types/Progress.d.ts
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
import { GetProps } from '@tamagui/core';
|
|
2
|
-
import { YStackProps } from '@tamagui/stacks';
|
|
3
2
|
import * as React from 'react';
|
|
4
|
-
import { View } from 'react-native';
|
|
5
3
|
declare const createProgressScope: import("@tamagui/create-context").CreateScope;
|
|
6
|
-
interface ProgressIndicatorProps extends YStackProps {
|
|
7
|
-
}
|
|
8
4
|
export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
9
5
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
10
6
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
@@ -108,8 +104,125 @@ export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComp
|
|
|
108
104
|
readonly chromeless?: boolean | "all" | undefined;
|
|
109
105
|
};
|
|
110
106
|
}>;
|
|
111
|
-
|
|
112
|
-
|
|
107
|
+
type ProgressIndicatorProps = GetProps<typeof ProgressIndicatorFrame>;
|
|
108
|
+
declare const ProgressIndicator: import("@tamagui/core").ReactComponentWithRef<Object & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
109
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
110
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
111
|
+
readonly fullscreen?: boolean | undefined;
|
|
112
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
113
|
+
} & {
|
|
114
|
+
readonly backgrounded?: boolean | undefined;
|
|
115
|
+
readonly radiused?: boolean | undefined;
|
|
116
|
+
readonly hoverTheme?: boolean | undefined;
|
|
117
|
+
readonly pressTheme?: boolean | undefined;
|
|
118
|
+
readonly focusTheme?: boolean | undefined;
|
|
119
|
+
readonly circular?: boolean | undefined;
|
|
120
|
+
readonly padded?: boolean | undefined;
|
|
121
|
+
readonly elevate?: boolean | undefined;
|
|
122
|
+
readonly bordered?: number | boolean | undefined;
|
|
123
|
+
readonly transparent?: boolean | undefined;
|
|
124
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
125
|
+
}, "unstyled"> & {
|
|
126
|
+
readonly unstyled?: boolean | undefined;
|
|
127
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
128
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
129
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
130
|
+
readonly fullscreen?: boolean | undefined;
|
|
131
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
132
|
+
} & {
|
|
133
|
+
readonly backgrounded?: boolean | undefined;
|
|
134
|
+
readonly radiused?: boolean | undefined;
|
|
135
|
+
readonly hoverTheme?: boolean | undefined;
|
|
136
|
+
readonly pressTheme?: boolean | undefined;
|
|
137
|
+
readonly focusTheme?: boolean | undefined;
|
|
138
|
+
readonly circular?: boolean | undefined;
|
|
139
|
+
readonly padded?: boolean | undefined;
|
|
140
|
+
readonly elevate?: boolean | undefined;
|
|
141
|
+
readonly bordered?: number | boolean | undefined;
|
|
142
|
+
readonly transparent?: boolean | undefined;
|
|
143
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
144
|
+
}, "unstyled"> & {
|
|
145
|
+
readonly unstyled?: boolean | undefined;
|
|
146
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
147
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
148
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
149
|
+
readonly fullscreen?: boolean | undefined;
|
|
150
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
151
|
+
} & {
|
|
152
|
+
readonly backgrounded?: boolean | undefined;
|
|
153
|
+
readonly radiused?: boolean | undefined;
|
|
154
|
+
readonly hoverTheme?: boolean | undefined;
|
|
155
|
+
readonly pressTheme?: boolean | undefined;
|
|
156
|
+
readonly focusTheme?: boolean | undefined;
|
|
157
|
+
readonly circular?: boolean | undefined;
|
|
158
|
+
readonly padded?: boolean | undefined;
|
|
159
|
+
readonly elevate?: boolean | undefined;
|
|
160
|
+
readonly bordered?: number | boolean | undefined;
|
|
161
|
+
readonly transparent?: boolean | undefined;
|
|
162
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
163
|
+
}, "unstyled"> & {
|
|
164
|
+
readonly unstyled?: boolean | undefined;
|
|
165
|
+
}>>, keyof Object>, import("@tamagui/core").TamaguiElement> & {
|
|
166
|
+
staticConfig: import("@tamagui/core").StaticConfig;
|
|
167
|
+
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
168
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
169
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
170
|
+
readonly fullscreen?: boolean | undefined;
|
|
171
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
172
|
+
} & {
|
|
173
|
+
readonly backgrounded?: boolean | undefined;
|
|
174
|
+
readonly radiused?: boolean | undefined;
|
|
175
|
+
readonly hoverTheme?: boolean | undefined;
|
|
176
|
+
readonly pressTheme?: boolean | undefined;
|
|
177
|
+
readonly focusTheme?: boolean | undefined;
|
|
178
|
+
readonly circular?: boolean | undefined;
|
|
179
|
+
readonly padded?: boolean | undefined;
|
|
180
|
+
readonly elevate?: boolean | undefined;
|
|
181
|
+
readonly bordered?: number | boolean | undefined;
|
|
182
|
+
readonly transparent?: boolean | undefined;
|
|
183
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
184
|
+
}, "unstyled"> & {
|
|
185
|
+
readonly unstyled?: boolean | undefined;
|
|
186
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
187
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
188
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
189
|
+
readonly fullscreen?: boolean | undefined;
|
|
190
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
191
|
+
} & {
|
|
192
|
+
readonly backgrounded?: boolean | undefined;
|
|
193
|
+
readonly radiused?: boolean | undefined;
|
|
194
|
+
readonly hoverTheme?: boolean | undefined;
|
|
195
|
+
readonly pressTheme?: boolean | undefined;
|
|
196
|
+
readonly focusTheme?: boolean | undefined;
|
|
197
|
+
readonly circular?: boolean | undefined;
|
|
198
|
+
readonly padded?: boolean | undefined;
|
|
199
|
+
readonly elevate?: boolean | undefined;
|
|
200
|
+
readonly bordered?: number | boolean | undefined;
|
|
201
|
+
readonly transparent?: boolean | undefined;
|
|
202
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
203
|
+
}, "unstyled"> & {
|
|
204
|
+
readonly unstyled?: boolean | undefined;
|
|
205
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
206
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
207
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
208
|
+
readonly fullscreen?: boolean | undefined;
|
|
209
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
210
|
+
} & {
|
|
211
|
+
readonly backgrounded?: boolean | undefined;
|
|
212
|
+
readonly radiused?: boolean | undefined;
|
|
213
|
+
readonly hoverTheme?: boolean | undefined;
|
|
214
|
+
readonly pressTheme?: boolean | undefined;
|
|
215
|
+
readonly focusTheme?: boolean | undefined;
|
|
216
|
+
readonly circular?: boolean | undefined;
|
|
217
|
+
readonly padded?: boolean | undefined;
|
|
218
|
+
readonly elevate?: boolean | undefined;
|
|
219
|
+
readonly bordered?: number | boolean | undefined;
|
|
220
|
+
readonly transparent?: boolean | undefined;
|
|
221
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
222
|
+
}, "unstyled"> & {
|
|
223
|
+
readonly unstyled?: boolean | undefined;
|
|
224
|
+
}>>, import("@tamagui/core").TamaguiElement>;
|
|
225
|
+
};
|
|
113
226
|
export declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
114
227
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
115
228
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
@@ -222,7 +335,7 @@ type ProgressProps = GetProps<typeof ProgressFrame> & {
|
|
|
222
335
|
max?: number;
|
|
223
336
|
getValueLabel?(value: number, max: number): string;
|
|
224
337
|
};
|
|
225
|
-
declare const Progress:
|
|
338
|
+
declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
226
339
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
227
340
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
228
341
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -286,8 +399,286 @@ declare const Progress: React.ForwardRefExoticComponent<Omit<import("react-nativ
|
|
|
286
399
|
value?: number | null | undefined;
|
|
287
400
|
max?: number | undefined;
|
|
288
401
|
getValueLabel?(value: number, max: number): string;
|
|
289
|
-
} &
|
|
290
|
-
|
|
402
|
+
} & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
403
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
404
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
405
|
+
readonly fullscreen?: boolean | undefined;
|
|
406
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
407
|
+
} & {
|
|
408
|
+
readonly backgrounded?: boolean | undefined;
|
|
409
|
+
readonly radiused?: boolean | undefined;
|
|
410
|
+
readonly hoverTheme?: boolean | undefined;
|
|
411
|
+
readonly pressTheme?: boolean | undefined;
|
|
412
|
+
readonly focusTheme?: boolean | undefined;
|
|
413
|
+
readonly circular?: boolean | undefined;
|
|
414
|
+
readonly padded?: boolean | undefined;
|
|
415
|
+
readonly elevate?: boolean | undefined;
|
|
416
|
+
readonly bordered?: number | boolean | undefined;
|
|
417
|
+
readonly transparent?: boolean | undefined;
|
|
418
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
419
|
+
}, "size" | "unstyled"> & {
|
|
420
|
+
readonly unstyled?: boolean | undefined;
|
|
421
|
+
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
422
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
423
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
424
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
425
|
+
readonly fullscreen?: boolean | undefined;
|
|
426
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
427
|
+
} & {
|
|
428
|
+
readonly backgrounded?: boolean | undefined;
|
|
429
|
+
readonly radiused?: boolean | undefined;
|
|
430
|
+
readonly hoverTheme?: boolean | undefined;
|
|
431
|
+
readonly pressTheme?: boolean | undefined;
|
|
432
|
+
readonly focusTheme?: boolean | undefined;
|
|
433
|
+
readonly circular?: boolean | undefined;
|
|
434
|
+
readonly padded?: boolean | undefined;
|
|
435
|
+
readonly elevate?: boolean | undefined;
|
|
436
|
+
readonly bordered?: number | boolean | undefined;
|
|
437
|
+
readonly transparent?: boolean | undefined;
|
|
438
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
439
|
+
}, "size" | "unstyled"> & {
|
|
440
|
+
readonly unstyled?: boolean | undefined;
|
|
441
|
+
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
442
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
443
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
444
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
445
|
+
readonly fullscreen?: boolean | undefined;
|
|
446
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
447
|
+
} & {
|
|
448
|
+
readonly backgrounded?: boolean | undefined;
|
|
449
|
+
readonly radiused?: boolean | undefined;
|
|
450
|
+
readonly hoverTheme?: boolean | undefined;
|
|
451
|
+
readonly pressTheme?: boolean | undefined;
|
|
452
|
+
readonly focusTheme?: boolean | undefined;
|
|
453
|
+
readonly circular?: boolean | undefined;
|
|
454
|
+
readonly padded?: boolean | undefined;
|
|
455
|
+
readonly elevate?: boolean | undefined;
|
|
456
|
+
readonly bordered?: number | boolean | undefined;
|
|
457
|
+
readonly transparent?: boolean | undefined;
|
|
458
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
459
|
+
}, "size" | "unstyled"> & {
|
|
460
|
+
readonly unstyled?: boolean | undefined;
|
|
461
|
+
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
462
|
+
}>>, "style" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "elevation" | keyof {
|
|
463
|
+
columnGap?: import("@tamagui/core").SpaceValue | undefined;
|
|
464
|
+
contain?: import("csstype").Property.Contain | undefined;
|
|
465
|
+
cursor?: import("csstype").Property.Cursor | undefined;
|
|
466
|
+
display?: "flex" | "none" | "inherit" | "block" | "inline" | "inline-flex" | "contents" | undefined;
|
|
467
|
+
gap?: import("@tamagui/core").SpaceValue | undefined;
|
|
468
|
+
outlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
469
|
+
outlineOffset?: import("@tamagui/core").SpaceValue | undefined;
|
|
470
|
+
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
471
|
+
outlineWidth?: import("@tamagui/core").SpaceValue | undefined;
|
|
472
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
473
|
+
rowGap?: import("@tamagui/core").SpaceValue | undefined;
|
|
474
|
+
space?: import("@tamagui/core").SpaceValue | undefined;
|
|
475
|
+
spaceDirection?: import("@tamagui/core").SpaceDirection | undefined;
|
|
476
|
+
separator?: React.ReactNode;
|
|
477
|
+
animation?: import("@tamagui/core").AnimationProp | null | undefined;
|
|
478
|
+
animateOnly?: string[] | undefined;
|
|
479
|
+
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
480
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "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" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "fullscreen" | keyof import("@tamagui/core").TransformStyleProps | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/core").TamaguiComponentPropsBase | keyof import("@tamagui/core/types/reactNativeTypes").RNViewProps | "size" | "unstyled" | keyof import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
481
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
482
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
483
|
+
readonly fullscreen?: boolean | undefined;
|
|
484
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
485
|
+
} & {
|
|
486
|
+
readonly backgrounded?: boolean | undefined;
|
|
487
|
+
readonly radiused?: boolean | undefined;
|
|
488
|
+
readonly hoverTheme?: boolean | undefined;
|
|
489
|
+
readonly pressTheme?: boolean | undefined;
|
|
490
|
+
readonly focusTheme?: boolean | undefined;
|
|
491
|
+
readonly circular?: boolean | undefined;
|
|
492
|
+
readonly padded?: boolean | undefined;
|
|
493
|
+
readonly elevate?: boolean | undefined;
|
|
494
|
+
readonly bordered?: number | boolean | undefined;
|
|
495
|
+
readonly transparent?: boolean | undefined;
|
|
496
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
497
|
+
}, "size" | "unstyled"> & {
|
|
498
|
+
readonly unstyled?: boolean | undefined;
|
|
499
|
+
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
500
|
+
}>> | "value" | "max" | "getValueLabel">, import("@tamagui/core").TamaguiElement> & {
|
|
501
|
+
staticConfig: import("@tamagui/core").StaticConfig;
|
|
502
|
+
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
503
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
504
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
505
|
+
readonly fullscreen?: boolean | undefined;
|
|
506
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
507
|
+
} & {
|
|
508
|
+
readonly backgrounded?: boolean | undefined;
|
|
509
|
+
readonly radiused?: boolean | undefined;
|
|
510
|
+
readonly hoverTheme?: boolean | undefined;
|
|
511
|
+
readonly pressTheme?: boolean | undefined;
|
|
512
|
+
readonly focusTheme?: boolean | undefined;
|
|
513
|
+
readonly circular?: boolean | undefined;
|
|
514
|
+
readonly padded?: boolean | undefined;
|
|
515
|
+
readonly elevate?: boolean | undefined;
|
|
516
|
+
readonly bordered?: number | boolean | undefined;
|
|
517
|
+
readonly transparent?: boolean | undefined;
|
|
518
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
519
|
+
}, "size" | "unstyled"> & {
|
|
520
|
+
readonly unstyled?: boolean | undefined;
|
|
521
|
+
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
522
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
523
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
524
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
525
|
+
readonly fullscreen?: boolean | undefined;
|
|
526
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
527
|
+
} & {
|
|
528
|
+
readonly backgrounded?: boolean | undefined;
|
|
529
|
+
readonly radiused?: boolean | undefined;
|
|
530
|
+
readonly hoverTheme?: boolean | undefined;
|
|
531
|
+
readonly pressTheme?: boolean | undefined;
|
|
532
|
+
readonly focusTheme?: boolean | undefined;
|
|
533
|
+
readonly circular?: boolean | undefined;
|
|
534
|
+
readonly padded?: boolean | undefined;
|
|
535
|
+
readonly elevate?: boolean | undefined;
|
|
536
|
+
readonly bordered?: number | boolean | undefined;
|
|
537
|
+
readonly transparent?: boolean | undefined;
|
|
538
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
539
|
+
}, "size" | "unstyled"> & {
|
|
540
|
+
readonly unstyled?: boolean | undefined;
|
|
541
|
+
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
542
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
543
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
544
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
545
|
+
readonly fullscreen?: boolean | undefined;
|
|
546
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
547
|
+
} & {
|
|
548
|
+
readonly backgrounded?: boolean | undefined;
|
|
549
|
+
readonly radiused?: boolean | undefined;
|
|
550
|
+
readonly hoverTheme?: boolean | undefined;
|
|
551
|
+
readonly pressTheme?: boolean | undefined;
|
|
552
|
+
readonly focusTheme?: boolean | undefined;
|
|
553
|
+
readonly circular?: boolean | undefined;
|
|
554
|
+
readonly padded?: boolean | undefined;
|
|
555
|
+
readonly elevate?: boolean | undefined;
|
|
556
|
+
readonly bordered?: number | boolean | undefined;
|
|
557
|
+
readonly transparent?: boolean | undefined;
|
|
558
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
559
|
+
}, "size" | "unstyled"> & {
|
|
560
|
+
readonly unstyled?: boolean | undefined;
|
|
561
|
+
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
562
|
+
}>>, import("@tamagui/core").TamaguiElement>;
|
|
563
|
+
} & {
|
|
564
|
+
Indicator: import("@tamagui/core").ReactComponentWithRef<Object & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
565
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
566
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
567
|
+
readonly fullscreen?: boolean | undefined;
|
|
568
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
569
|
+
} & {
|
|
570
|
+
readonly backgrounded?: boolean | undefined;
|
|
571
|
+
readonly radiused?: boolean | undefined;
|
|
572
|
+
readonly hoverTheme?: boolean | undefined;
|
|
573
|
+
readonly pressTheme?: boolean | undefined;
|
|
574
|
+
readonly focusTheme?: boolean | undefined;
|
|
575
|
+
readonly circular?: boolean | undefined;
|
|
576
|
+
readonly padded?: boolean | undefined;
|
|
577
|
+
readonly elevate?: boolean | undefined;
|
|
578
|
+
readonly bordered?: number | boolean | undefined;
|
|
579
|
+
readonly transparent?: boolean | undefined;
|
|
580
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
581
|
+
}, "unstyled"> & {
|
|
582
|
+
readonly unstyled?: boolean | undefined;
|
|
583
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
584
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
585
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
586
|
+
readonly fullscreen?: boolean | undefined;
|
|
587
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
588
|
+
} & {
|
|
589
|
+
readonly backgrounded?: boolean | undefined;
|
|
590
|
+
readonly radiused?: boolean | undefined;
|
|
591
|
+
readonly hoverTheme?: boolean | undefined;
|
|
592
|
+
readonly pressTheme?: boolean | undefined;
|
|
593
|
+
readonly focusTheme?: boolean | undefined;
|
|
594
|
+
readonly circular?: boolean | undefined;
|
|
595
|
+
readonly padded?: boolean | undefined;
|
|
596
|
+
readonly elevate?: boolean | undefined;
|
|
597
|
+
readonly bordered?: number | boolean | undefined;
|
|
598
|
+
readonly transparent?: boolean | undefined;
|
|
599
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
600
|
+
}, "unstyled"> & {
|
|
601
|
+
readonly unstyled?: boolean | undefined;
|
|
602
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
603
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
604
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
605
|
+
readonly fullscreen?: boolean | undefined;
|
|
606
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
607
|
+
} & {
|
|
608
|
+
readonly backgrounded?: boolean | undefined;
|
|
609
|
+
readonly radiused?: boolean | undefined;
|
|
610
|
+
readonly hoverTheme?: boolean | undefined;
|
|
611
|
+
readonly pressTheme?: boolean | undefined;
|
|
612
|
+
readonly focusTheme?: boolean | undefined;
|
|
613
|
+
readonly circular?: boolean | undefined;
|
|
614
|
+
readonly padded?: boolean | undefined;
|
|
615
|
+
readonly elevate?: boolean | undefined;
|
|
616
|
+
readonly bordered?: number | boolean | undefined;
|
|
617
|
+
readonly transparent?: boolean | undefined;
|
|
618
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
619
|
+
}, "unstyled"> & {
|
|
620
|
+
readonly unstyled?: boolean | undefined;
|
|
621
|
+
}>>, keyof Object>, import("@tamagui/core").TamaguiElement> & {
|
|
622
|
+
staticConfig: import("@tamagui/core").StaticConfig;
|
|
623
|
+
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
624
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
625
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
626
|
+
readonly fullscreen?: boolean | undefined;
|
|
627
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
628
|
+
} & {
|
|
629
|
+
readonly backgrounded?: boolean | undefined;
|
|
630
|
+
readonly radiused?: boolean | undefined;
|
|
631
|
+
readonly hoverTheme?: boolean | undefined;
|
|
632
|
+
readonly pressTheme?: boolean | undefined;
|
|
633
|
+
readonly focusTheme?: boolean | undefined;
|
|
634
|
+
readonly circular?: boolean | undefined;
|
|
635
|
+
readonly padded?: boolean | undefined;
|
|
636
|
+
readonly elevate?: boolean | undefined;
|
|
637
|
+
readonly bordered?: number | boolean | undefined;
|
|
638
|
+
readonly transparent?: boolean | undefined;
|
|
639
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
640
|
+
}, "unstyled"> & {
|
|
641
|
+
readonly unstyled?: boolean | undefined;
|
|
642
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
643
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
644
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
645
|
+
readonly fullscreen?: boolean | undefined;
|
|
646
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
647
|
+
} & {
|
|
648
|
+
readonly backgrounded?: boolean | undefined;
|
|
649
|
+
readonly radiused?: boolean | undefined;
|
|
650
|
+
readonly hoverTheme?: boolean | undefined;
|
|
651
|
+
readonly pressTheme?: boolean | undefined;
|
|
652
|
+
readonly focusTheme?: boolean | undefined;
|
|
653
|
+
readonly circular?: boolean | undefined;
|
|
654
|
+
readonly padded?: boolean | undefined;
|
|
655
|
+
readonly elevate?: boolean | undefined;
|
|
656
|
+
readonly bordered?: number | boolean | undefined;
|
|
657
|
+
readonly transparent?: boolean | undefined;
|
|
658
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
659
|
+
}, "unstyled"> & {
|
|
660
|
+
readonly unstyled?: boolean | undefined;
|
|
661
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
662
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
663
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
664
|
+
readonly fullscreen?: boolean | undefined;
|
|
665
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
666
|
+
} & {
|
|
667
|
+
readonly backgrounded?: boolean | undefined;
|
|
668
|
+
readonly radiused?: boolean | undefined;
|
|
669
|
+
readonly hoverTheme?: boolean | undefined;
|
|
670
|
+
readonly pressTheme?: boolean | undefined;
|
|
671
|
+
readonly focusTheme?: boolean | undefined;
|
|
672
|
+
readonly circular?: boolean | undefined;
|
|
673
|
+
readonly padded?: boolean | undefined;
|
|
674
|
+
readonly elevate?: boolean | undefined;
|
|
675
|
+
readonly bordered?: number | boolean | undefined;
|
|
676
|
+
readonly transparent?: boolean | undefined;
|
|
677
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
678
|
+
}, "unstyled"> & {
|
|
679
|
+
readonly unstyled?: boolean | undefined;
|
|
680
|
+
}>>, import("@tamagui/core").TamaguiElement>;
|
|
681
|
+
};
|
|
291
682
|
};
|
|
292
683
|
export { createProgressScope, Progress, ProgressIndicator };
|
|
293
684
|
export type { ProgressProps, ProgressIndicatorProps };
|
package/types/Progress.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["../src/Progress.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAkD,MAAM,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["../src/Progress.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAkD,MAAM,eAAe,CAAA;AAIxF,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAK9B,QAAA,MAA8B,mBAAmB,+CAAqC,CAAA;AAWtF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBjC,CAAA;AAEF,KAAK,sBAAsB,GAAG,QAAQ,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAErE,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwBrB,CAAA;AAmDF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BxB,CAAA;AAEF,KAAK,aAAa,GAAG,QAAQ,CAAC,OAAO,aAAa,CAAC,GAAG;IACpD,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IACjC,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,aAAa,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CACnD,CAAA;AAED,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YALJ,MAAM,GAAG,IAAI,GAAG,SAAS;;0BAEX,MAAM,OAAO,MAAM,GAAG,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkDnD,CAAA;AAED,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,iBAAiB,EAAE,CAAA;AAC3D,YAAY,EAAE,aAAa,EAAE,sBAAsB,EAAE,CAAA"}
|