@wavy/react-ui 0.0.4 → 0.0.5
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/main.d.ts +58 -59
- package/dist/main.js +4 -4
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { PropsWithChildren, JSX } from 'react';
|
|
4
4
|
import { NoUndefinedField, SafeOmit, LocalFile, Prettify, AddPrefix, TaskResult, SanitizeFile, TaskResultStatus, Email, KnownFileTypeAlias, SuccessMessage, AuthProvider, TaskLog, UnsubscribeFunction, ErrorMessage, NonFunction } from '@wavy/types';
|
|
5
|
-
export { KnownFileTypeAlias } from '@wavy/types';
|
|
6
5
|
import { IconType } from 'react-icons';
|
|
7
6
|
import * as CSS from 'csstype';
|
|
8
7
|
import CSS__default from 'csstype';
|
|
@@ -1090,12 +1089,12 @@ declare const CLOCKWISE_SIDES: readonly ["top", "right", "bottom", "left"];
|
|
|
1090
1089
|
type BasicHtmlElementPosition = 0 | string;
|
|
1091
1090
|
type ElementSide = (typeof CLOCKWISE_SIDES)[number];
|
|
1092
1091
|
type BorderStyle = (typeof BORDER_STYLES)[number];
|
|
1093
|
-
type
|
|
1094
|
-
type Size$1 = 0 | "full" | `${"max" | "min" | "fit"}-content` | "auto" |
|
|
1092
|
+
type ElementDim = `${number}${"rem" | "px" | "%" | "vh" | "vw" | "em"}`;
|
|
1093
|
+
type Size$1 = 0 | "full" | `${"max" | "min" | "fit"}-content` | "auto" | ElementDim;
|
|
1095
1094
|
type Append5<range extends number> = range | `${range}${5}`;
|
|
1096
1095
|
type BasicColor$1 = CSS.Properties["color"] | keyof typeof CssColors | keyof typeof ColorResources | `${keyof typeof ColorResources}[0.${Append5<1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9>}]` | (string & {}) | undefined;
|
|
1097
1096
|
type ElementCorners = `top${"Left" | "Right"}` | `bottom${"Left" | "Right"}`;
|
|
1098
|
-
interface
|
|
1097
|
+
interface BasicStyleProps extends Partial<Record<"spill", "visible" | "hidden" | "clip" | "scroll" | "auto" | Partial<Record<"x" | "y", "visible" | "hidden" | "clip" | "scroll" | "auto">> | undefined>>, Partial<Record<`${"min" | "max"}${"Height" | "Width"}`, Size$1 | undefined>> {
|
|
1099
1098
|
className?: string | undefined;
|
|
1100
1099
|
top?: BasicHtmlElementPosition | undefined;
|
|
1101
1100
|
bottom?: BasicHtmlElementPosition | undefined;
|
|
@@ -1106,10 +1105,10 @@ interface BasicHtmlElementStyleProps extends Partial<Record<"spill", "visible" |
|
|
|
1106
1105
|
allowTextSelection?: boolean | undefined;
|
|
1107
1106
|
disableSelection?: boolean | undefined;
|
|
1108
1107
|
pos?: "absolute" | "relative" | "sticky" | undefined;
|
|
1109
|
-
padding?: 0 | keyof typeof CssSpacing |
|
|
1110
|
-
padding: keyof typeof CssSpacing |
|
|
1108
|
+
padding?: 0 | keyof typeof CssSpacing | ElementDim | [
|
|
1109
|
+
padding: keyof typeof CssSpacing | ElementDim,
|
|
1111
1110
|
sides: ElementSide | "all" | ElementSide[]
|
|
1112
|
-
] | Partial<Record<ElementSide, keyof typeof CssSpacing |
|
|
1111
|
+
] | Partial<Record<ElementSide, keyof typeof CssSpacing | ElementDim>> | undefined;
|
|
1113
1112
|
translate?: Partial<{
|
|
1114
1113
|
x: string;
|
|
1115
1114
|
y: string;
|
|
@@ -1128,28 +1127,28 @@ interface BasicHtmlElementStyleProps extends Partial<Record<"spill", "visible" |
|
|
|
1128
1127
|
backgroundColor?: BasicColor$1;
|
|
1129
1128
|
border?: string | undefined;
|
|
1130
1129
|
borderColor?: BasicColor$1 | [color: BasicColor$1, sides: ElementSide | "all" | ElementSide[]] | Partial<Record<ElementSide, BasicColor$1>> | undefined;
|
|
1131
|
-
borderWidth?:
|
|
1130
|
+
borderWidth?: ElementDim | [width: ElementDim, sides: ElementSide | "all" | ElementSide[]] | Partial<Record<ElementSide, ElementDim>> | undefined;
|
|
1132
1131
|
borderStyle?: BorderStyle | [style: BorderStyle, sides: ElementSide | "all" | ElementSide[]] | Partial<Record<ElementSide, BorderStyle>> | undefined;
|
|
1133
1132
|
blur?: string | undefined;
|
|
1134
1133
|
backdropBlur?: string | undefined;
|
|
1135
|
-
gap?: 0 | keyof typeof CssSpacing |
|
|
1134
|
+
gap?: 0 | keyof typeof CssSpacing | ElementDim | undefined;
|
|
1136
1135
|
cursor?: CSS.Properties["cursor"] | undefined;
|
|
1137
1136
|
scrollbarBackgroundColor?: BasicColor$1 | undefined;
|
|
1138
1137
|
scrollbarThumbColor?: BasicColor$1 | undefined;
|
|
1139
|
-
corners?: 0 |
|
|
1138
|
+
corners?: 0 | ElementDim | keyof typeof CssShapes | Partial<Record<ElementCorners, keyof typeof CssShapes | ElementDim | 0> & Record<"top" | "bottom", never>> | Partial<Record<ElementCorners, never> & Record<"top" | "bottom", keyof typeof CssShapes | ElementDim | 0>> | undefined;
|
|
1140
1139
|
align?: "start" | "center" | "end" | "stretch" | undefined;
|
|
1141
1140
|
justify?: "center" | "end" | "stretch" | "space-evenly" | "space-between" | undefined;
|
|
1142
1141
|
fade?: `0.${1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9}` | number;
|
|
1143
|
-
|
|
1142
|
+
log?: boolean;
|
|
1144
1143
|
style?: CSS.Properties | undefined;
|
|
1145
1144
|
}
|
|
1146
|
-
declare const applyBasicStyle: (props: NoUndefinedField<
|
|
1145
|
+
declare const applyBasicStyle: (props: NoUndefinedField<BasicStyleProps>, log?: boolean) => NoUndefinedField<CSS.Properties>;
|
|
1147
1146
|
|
|
1148
1147
|
type CssProperties = SafeOmit<CSS.Properties, "backgroundColor" | "color"> & Partial<Record<"backgroundColor" | "color", BasicColor$1>>;
|
|
1149
1148
|
type CssPseudos = Partial<Record<CSS.Pseudos | `@media${" only " | " "}screen` | `${CSS.Pseudos | "@media"} ${string}`, CssProperties>>;
|
|
1150
1149
|
type InlineCss = CssPseudos & CssProperties;
|
|
1151
1150
|
|
|
1152
|
-
interface BasicDivProps extends
|
|
1151
|
+
interface BasicDivProps extends BasicStyleProps, BasicHtmlElementCoreProps<HTMLDivElement> {
|
|
1153
1152
|
flexWrap?: boolean | undefined;
|
|
1154
1153
|
grid?: boolean | undefined;
|
|
1155
1154
|
gridCols?: string | undefined;
|
|
@@ -1178,10 +1177,10 @@ interface BaseProps$2 extends SafeOmit<BasicDivProps, "css" | "row" | "size" | "
|
|
|
1178
1177
|
/**
|
|
1179
1178
|
* @default "md"
|
|
1180
1179
|
*/
|
|
1181
|
-
size?: (typeof BUTTON_PRESET_SIZES)[number] |
|
|
1180
|
+
size?: (typeof BUTTON_PRESET_SIZES)[number] | ElementDim;
|
|
1182
1181
|
variant?: "outline" | "standard";
|
|
1183
1182
|
borderColor?: BasicColor$1;
|
|
1184
|
-
iconSize?: (typeof ICON_PRESET_SIZES)[number] |
|
|
1183
|
+
iconSize?: (typeof ICON_PRESET_SIZES)[number] | ElementDim;
|
|
1185
1184
|
onMouseDown?: React__default.MouseEventHandler<HTMLButtonElement>;
|
|
1186
1185
|
}
|
|
1187
1186
|
type OptionalProps$2 = {
|
|
@@ -1198,7 +1197,7 @@ type OptionalProps$2 = {
|
|
|
1198
1197
|
type BasicButtonProps = BaseProps$2 & OptionalProps$2 & {};
|
|
1199
1198
|
declare function BasicButton(props: BasicButtonProps): react_jsx_runtime.JSX.Element;
|
|
1200
1199
|
|
|
1201
|
-
interface BasicImgProps extends
|
|
1200
|
+
interface BasicImgProps extends BasicStyleProps, BasicHtmlElementCoreProps<HTMLImageElement> {
|
|
1202
1201
|
src: string;
|
|
1203
1202
|
alt?: string;
|
|
1204
1203
|
fill?: boolean;
|
|
@@ -1238,7 +1237,7 @@ interface ListItemStyleProps {
|
|
|
1238
1237
|
|
|
1239
1238
|
type TextAlign = "left" | "right" | "center" | "justify" | "match-parent";
|
|
1240
1239
|
|
|
1241
|
-
interface BasicSpanProps extends
|
|
1240
|
+
interface BasicSpanProps extends BasicStyleProps, BasicHtmlElementCoreProps<HTMLSpanElement> {
|
|
1242
1241
|
text?: string;
|
|
1243
1242
|
link?: boolean;
|
|
1244
1243
|
fakeHyperlink?: boolean;
|
|
@@ -1266,15 +1265,15 @@ type TableColumnConfig<T extends string = string> = {
|
|
|
1266
1265
|
};
|
|
1267
1266
|
|
|
1268
1267
|
type RootStyles = {
|
|
1269
|
-
gap?:
|
|
1270
|
-
rowGap?:
|
|
1268
|
+
gap?: BasicStyleProps["gap"];
|
|
1269
|
+
rowGap?: BasicStyleProps["gap"];
|
|
1271
1270
|
/**@default "onSurface[0.25]" */
|
|
1272
1271
|
separatorColor?: BasicColor$1;
|
|
1273
1272
|
/**@default "lg" */
|
|
1274
|
-
columnGap?:
|
|
1273
|
+
columnGap?: BasicStyleProps["gap"];
|
|
1275
1274
|
textAlign?: "left" | "center" | "right";
|
|
1276
1275
|
/**@default "sm" */
|
|
1277
|
-
padding?:
|
|
1276
|
+
padding?: BasicStyleProps["padding"];
|
|
1278
1277
|
corners?: BasicDivProps["corners"];
|
|
1279
1278
|
spill?: BasicDivProps["spill"];
|
|
1280
1279
|
fontSize?: BasicDivProps["fontSize"];
|
|
@@ -1298,7 +1297,7 @@ declare const BasicTable: {
|
|
|
1298
1297
|
Body: typeof Body;
|
|
1299
1298
|
};
|
|
1300
1299
|
declare namespace BasicTableProps {
|
|
1301
|
-
interface RootProps<T extends string> extends RootStyles, Partial<Record<"width" | "height" | `${"min" | "max"}${"Height" | "Width"}`,
|
|
1300
|
+
interface RootProps<T extends string> extends RootStyles, Partial<Record<"width" | "height" | `${"min" | "max"}${"Height" | "Width"}`, BasicStyleProps["width"]>> {
|
|
1302
1301
|
selectable?: boolean;
|
|
1303
1302
|
columns: (T | TableColumnConfig<T>)[];
|
|
1304
1303
|
backgroundColor?: BasicColor$1;
|
|
@@ -1508,7 +1507,7 @@ interface TextFieldProps extends AdditionalElements {
|
|
|
1508
1507
|
maxChars?: number;
|
|
1509
1508
|
showCharCounter?: boolean;
|
|
1510
1509
|
helperText?: string;
|
|
1511
|
-
indent?:
|
|
1510
|
+
indent?: ElementDim | Partial<Record<"left" | "right", ElementDim>>;
|
|
1512
1511
|
onPasteClick?: (text: string) => void;
|
|
1513
1512
|
width?: BasicDivProps["width"];
|
|
1514
1513
|
onFocus?: React.FocusEventHandler<HTMLInputElement>;
|
|
@@ -1641,7 +1640,7 @@ declare namespace EmptyStateProps {
|
|
|
1641
1640
|
}
|
|
1642
1641
|
interface IndicatorProps {
|
|
1643
1642
|
/**@default "4rem" */
|
|
1644
|
-
size?:
|
|
1643
|
+
size?: ElementDim;
|
|
1645
1644
|
element: JSX$1.Element;
|
|
1646
1645
|
disableFade?: boolean;
|
|
1647
1646
|
}
|
|
@@ -1680,7 +1679,7 @@ interface BadgeProps {
|
|
|
1680
1679
|
placement?: FloatProps["placement"];
|
|
1681
1680
|
circleChild?: boolean;
|
|
1682
1681
|
asChild?: boolean;
|
|
1683
|
-
offset?:
|
|
1682
|
+
offset?: ElementDim;
|
|
1684
1683
|
}
|
|
1685
1684
|
declare function Badge(props: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
1686
1685
|
|
|
@@ -2155,7 +2154,7 @@ interface ItemInfoProps {
|
|
|
2155
2154
|
declare function ItemInfo(props: ItemInfoProps): react_jsx_runtime.JSX.Element;
|
|
2156
2155
|
|
|
2157
2156
|
type MenuPlacement = MenuRootProps["positioning"]["placement"];
|
|
2158
|
-
interface MenuProps<Item extends string> extends Partial<Record<`${"max" | "min"}${"Height" | "Width"}` | "height" | "width",
|
|
2157
|
+
interface MenuProps<Item extends string> extends Partial<Record<`${"max" | "min"}${"Height" | "Width"}` | "height" | "width", ElementDim | 0>> {
|
|
2159
2158
|
inDialog?: boolean;
|
|
2160
2159
|
/**
|
|
2161
2160
|
* @default "right-start"
|
|
@@ -2203,24 +2202,6 @@ type MenuItems<Key extends string = string> = Record<Key, ({
|
|
|
2203
2202
|
disabled?: boolean;
|
|
2204
2203
|
}>;
|
|
2205
2204
|
|
|
2206
|
-
declare function usePageSliderController<T = void>(defaultPage?: number): UsePageSliderControllerReturn<T>;
|
|
2207
|
-
type UsePageSliderControllerReturn<T = void> = {
|
|
2208
|
-
defaultPage: number;
|
|
2209
|
-
goTo: (pageIndex: number, options?: Partial<{
|
|
2210
|
-
/**@default false */
|
|
2211
|
-
ignoreOutOfBoundsCheck: boolean;
|
|
2212
|
-
/**@default "smooth" */
|
|
2213
|
-
transition: "instant" | "smooth";
|
|
2214
|
-
/**The duration of a `smooth` transition in milliseconds.
|
|
2215
|
-
* @default 200 */
|
|
2216
|
-
transitionDuration: number;
|
|
2217
|
-
}>) => void;
|
|
2218
|
-
echo: (message?: string) => T;
|
|
2219
|
-
getActivePage: () => number;
|
|
2220
|
-
isPageActive: (pageIndex: number) => boolean;
|
|
2221
|
-
onPageChange: (callback: (from: number, to: number) => void) => void;
|
|
2222
|
-
};
|
|
2223
|
-
|
|
2224
2205
|
interface PageSliderProps<T> {
|
|
2225
2206
|
controller?: UsePageSliderControllerReturn<T>;
|
|
2226
2207
|
spill?: BasicDivProps["spill"];
|
|
@@ -2290,7 +2271,7 @@ declare function Paper(props: PaperProps): react_jsx_runtime.JSX.Element;
|
|
|
2290
2271
|
|
|
2291
2272
|
interface StatusProps {
|
|
2292
2273
|
status: TaskResultStatus;
|
|
2293
|
-
indicatorSize?:
|
|
2274
|
+
indicatorSize?: ElementDim;
|
|
2294
2275
|
indicatorOnly?: boolean;
|
|
2295
2276
|
}
|
|
2296
2277
|
declare function Status(props: StatusProps): react_jsx_runtime.JSX.Element;
|
|
@@ -2359,7 +2340,7 @@ declare const Timeline: {
|
|
|
2359
2340
|
declare namespace TimelineProps {
|
|
2360
2341
|
interface RootProps {
|
|
2361
2342
|
/**@default "fit-content" */
|
|
2362
|
-
width?:
|
|
2343
|
+
width?: BasicStyleProps["width"];
|
|
2363
2344
|
/**@default "onSurface[0.5]" */
|
|
2364
2345
|
lineSeparatorColor?: BasicColor$1;
|
|
2365
2346
|
rowGap?: string;
|
|
@@ -2374,12 +2355,12 @@ declare namespace TimelineProps {
|
|
|
2374
2355
|
/**The node that should be placed `after` (to the right of) the separator */
|
|
2375
2356
|
after?: React.ReactNode;
|
|
2376
2357
|
disabled?: boolean;
|
|
2377
|
-
styles?: Partial<Record<"before" | "after",
|
|
2378
|
-
indicator: Partial<
|
|
2358
|
+
styles?: Partial<Record<"before" | "after", BasicStyleProps> & {
|
|
2359
|
+
indicator: Partial<BasicStyleProps & {
|
|
2379
2360
|
/**@default ".6rem" */
|
|
2380
|
-
size:
|
|
2361
|
+
size: BasicStyleProps["size"];
|
|
2381
2362
|
/**@default "circle" */
|
|
2382
|
-
corners:
|
|
2363
|
+
corners: BasicStyleProps["corners"];
|
|
2383
2364
|
/**@default "onSurface" */
|
|
2384
2365
|
backgroundColor: BasicColor$1;
|
|
2385
2366
|
}>;
|
|
@@ -2405,7 +2386,7 @@ type OptionalProps$1 = {
|
|
|
2405
2386
|
type SeparatorProps = BaseProps$1 & OptionalProps$1;
|
|
2406
2387
|
declare function Separator(props: SeparatorProps): react_jsx_runtime.JSX.Element;
|
|
2407
2388
|
|
|
2408
|
-
interface DisclaimerProps extends Partial<Record<"top" | "left" | "bottom" | "right",
|
|
2389
|
+
interface DisclaimerProps extends Partial<Record<"top" | "left" | "bottom" | "right", ElementDim | 0>> {
|
|
2409
2390
|
severity: "warning" | "error" | "info";
|
|
2410
2391
|
message: string;
|
|
2411
2392
|
pos?: BasicDivProps["pos"];
|
|
@@ -2418,7 +2399,7 @@ interface DisclaimerProps extends Partial<Record<"top" | "left" | "bottom" | "ri
|
|
|
2418
2399
|
/**
|
|
2419
2400
|
* @default "1rem"
|
|
2420
2401
|
*/
|
|
2421
|
-
iconSize?:
|
|
2402
|
+
iconSize?: ElementDim;
|
|
2422
2403
|
/**
|
|
2423
2404
|
* @default "md"
|
|
2424
2405
|
*/
|
|
@@ -2970,18 +2951,18 @@ declare const CopyButton: (props: {
|
|
|
2970
2951
|
}) => react_jsx_runtime.JSX.Element;
|
|
2971
2952
|
|
|
2972
2953
|
interface Props {
|
|
2973
|
-
size?:
|
|
2954
|
+
size?: ElementDim;
|
|
2974
2955
|
disabled?: boolean;
|
|
2975
2956
|
backgroundColor?: BasicColor$1;
|
|
2976
2957
|
color?: BasicColor$1;
|
|
2977
|
-
iconSize?:
|
|
2958
|
+
iconSize?: ElementDim;
|
|
2978
2959
|
padding?: BasicDivProps["padding"];
|
|
2979
2960
|
onClick?: () => void;
|
|
2980
2961
|
}
|
|
2981
2962
|
declare const PositiveButton: (props: Props) => react_jsx_runtime.JSX.Element;
|
|
2982
2963
|
declare const NegativeButton: (props: Props) => react_jsx_runtime.JSX.Element;
|
|
2983
2964
|
|
|
2984
|
-
interface BasicFileInputProps extends
|
|
2965
|
+
interface BasicFileInputProps extends BasicStyleProps {
|
|
2985
2966
|
allowDrop?: boolean;
|
|
2986
2967
|
fileClass?: string;
|
|
2987
2968
|
/**
|
|
@@ -3000,7 +2981,7 @@ interface BasicFileInputProps extends BasicHtmlElementStyleProps {
|
|
|
3000
2981
|
onReject?: (files: File[], localFiles: LocalFile[]) => void;
|
|
3001
2982
|
}
|
|
3002
2983
|
|
|
3003
|
-
interface UploadFileButtonProps extends SafeOmit<BasicFileInputProps, "children" | keyof
|
|
2984
|
+
interface UploadFileButtonProps extends SafeOmit<BasicFileInputProps, "children" | keyof BasicStyleProps | "allowDrop"> {
|
|
3004
2985
|
fileClass?: string;
|
|
3005
2986
|
fontSize?: BasicDivProps["fontSize"];
|
|
3006
2987
|
width?: BasicDivProps["width"];
|
|
@@ -3064,9 +3045,9 @@ declare function useAsyncEffect(asyncEffect: () => Promise<unknown>, deps: React
|
|
|
3064
3045
|
* @param effect — Imperative function that can return a cleanup function
|
|
3065
3046
|
* @param deps — If present, effect will only activate if the values in the list change.
|
|
3066
3047
|
*/
|
|
3067
|
-
declare function
|
|
3048
|
+
declare function usePostRenderEffect(effect: React__default.EffectCallback, deps: React__default.DependencyList): void;
|
|
3068
3049
|
|
|
3069
|
-
interface ComputedStyleProps extends SafeOmit<
|
|
3050
|
+
interface ComputedStyleProps extends SafeOmit<BasicStyleProps, "className"> {
|
|
3070
3051
|
children?: React__default.ReactNode;
|
|
3071
3052
|
}
|
|
3072
3053
|
declare function useComputedStyle(elementTag: keyof HTMLElementTagNameMap, props: ComputedStyleProps, options?: Partial<{
|
|
@@ -3093,6 +3074,24 @@ declare function useManagedRef<T extends NonFunction<unknown>>(initialValue: T):
|
|
|
3093
3074
|
delete: () => void;
|
|
3094
3075
|
};
|
|
3095
3076
|
|
|
3077
|
+
declare function usePageSliderController<T = void>(defaultPage?: number): UsePageSliderControllerReturn<T>;
|
|
3078
|
+
type UsePageSliderControllerReturn<T = void> = {
|
|
3079
|
+
defaultPage: number;
|
|
3080
|
+
goTo: (pageIndex: number, options?: Partial<{
|
|
3081
|
+
/**@default false */
|
|
3082
|
+
ignoreOutOfBoundsCheck: boolean;
|
|
3083
|
+
/**@default "smooth" */
|
|
3084
|
+
transition: "instant" | "smooth";
|
|
3085
|
+
/**The duration of a `smooth` transition in milliseconds.
|
|
3086
|
+
* @default 200 */
|
|
3087
|
+
transitionDuration: number;
|
|
3088
|
+
}>) => void;
|
|
3089
|
+
echo: (message?: string) => T;
|
|
3090
|
+
getActivePage: () => number;
|
|
3091
|
+
isPageActive: (pageIndex: number) => boolean;
|
|
3092
|
+
onPageChange: (callback: (from: number, to: number) => void) => void;
|
|
3093
|
+
};
|
|
3094
|
+
|
|
3096
3095
|
declare function usePopoverContext(): {
|
|
3097
3096
|
open: () => void;
|
|
3098
3097
|
close: () => void;
|
|
@@ -3168,4 +3167,4 @@ declare function remAsPx(rem: number): string;
|
|
|
3168
3167
|
declare function isOverflown(element: HTMLElement): boolean;
|
|
3169
3168
|
declare function computedCssVariable(cssVariable: string): string;
|
|
3170
3169
|
|
|
3171
|
-
export { AttachmentsButton, AttachmentsDialog, Avatar, type AvatarProps, Badge, type BadgeProps, BasicButton, type BasicColor$1 as BasicColor, BasicDiv,
|
|
3170
|
+
export { AttachmentsButton, AttachmentsDialog, Avatar, type AvatarProps, Badge, type BadgeProps, BasicButton, type BasicColor$1 as BasicColor, BasicDiv, BasicImg, BasicOl, BasicOption, BasicSelect, BasicSpan, type BasicStyleProps, BasicTable, BasicTableProps, _default as Calendar, CalendarDialog, CancelButton, Card, CardProps, Checkbox, type CheckboxProps, ColorResources, type ComputedStyleProps, ConfirmationDialog, type ConfirmationDialogProps, CopyButton, CssColors, type CssProperties, CssShapes, CssSpacing, DeleteButton, Dialog, DialogProps, Disclaimer, type DisclaimerProps, DownloadButton, EditButton, Editable, type EditableProps, EmailComposer, EmptyState, EmptyStateProps, ErrorTooltip, ExpandableButton, FancyFormDialog, type FancyFormDialogProps, FileDropzone, type FileDropzoneProps, FileViewer, FileViewerProps, FontSize, Indicator, type IndicatorProps, type InlineCss, ItemInfo, type ItemInfoProps, JsonViewer, type JwtVerificationStatus, JwtVerifier, type JwtVerifierProps, MediaCard, MediaCardProps, Menu, type MenuPlacement, MoneyDisplayCard, NegativeButton, NextButton, NoButton, OpenButton, OptionsButton, PageSlider, type PageSliderProps, Paper, type PaperProps, PasteButton, PaymentOptionsButton, PaymentOptionsDialog, PictureUploader, Popover, type PopoverProps, PositiveButton, PreviousButton, ProfileCard, ProfileCardProps, ReceiptCard, SaveButton, SearchTextField, SegmentedControls, type SegmentedControlsProps, SendButton, Separator, type SeparatorProps, SignInWidget, SimpleFormDialog, type SimpleFormDialogProps, Status, type StatusProps, Stepper, type StepperProps, SubmitButton, Tag, type TagProps, TaskLogger, TaskResultDialog, Terminal, TextField, type TextFieldProps, Timeline, TimelineProps, Tooltip, type TooltipPlacement, type TooltipProps, UploadButton, UploadReceiptButton, type UseDialogControllerReturn, type UsePageSliderControllerReturn, UserProfile, VerifyButton, VerifyTextField, UiProvider as WavyUi, YesButton, YesNoButtonGroup, YesOrNoForm, applyBasicStyle, bankTransferPaymentOption, borderRadius, buildCSS, computedCssVariable, convertHexUnitTo256, cssTransition, definePaymentOption, disabledBorderRadius, dragElement, ellipsis, flexCenter, getFileIcon, getScrollParent, hexToRgba, inAppPaymentOption, isOverflown, isSpanMultiLine, isValidHex, nativeEllipsis, noSpaceStyle, remAsPx, remToPx, resolveBasicColor, restrictLineCount, rgbToRgba, screenHasMaxWidth, screenHasMinWidth, solidBorder, tiledBackground, useAsyncEffect, useComputedStyle, useDialogController, useEventEmitter, useManagedRef, usePageSliderController, usePopoverContext, usePostRenderEffect, useRerender, useSessionStorage };
|