@useloops/design-system 0.0.1
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/esm/index.js +14 -0
- package/dist/index.d.ts +978 -0
- package/dist/index.js +14 -0
- package/package.json +132 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,978 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { Dispatch, SetStateAction, FunctionComponent, ReactElement, ChangeEvent, PropsWithChildren, ReactNode } from 'react';
|
|
3
|
+
import * as _mui_material from '@mui/material';
|
|
4
|
+
import { AvatarProps as AvatarProps$1, AvatarGroupProps as AvatarGroupProps$1, ButtonProps as ButtonProps$1, FormControlLabelProps as FormControlLabelProps$1, CheckboxProps as CheckboxProps$1, ContainerProps, Breakpoint, SxProps, IconButtonProps as IconButtonProps$1, ButtonGroupProps, InputLabelProps as InputLabelProps$1, LinkProps as LinkProps$1, RadioProps as RadioProps$1, RadioGroupProps as RadioGroupProps$1, SelectProps as SelectProps$1, MenuItemProps, SliderProps as SliderProps$1, RatingProps, PaperProps, Theme, SwitchProps as SwitchProps$1, TextFieldProps as TextFieldProps$1, TypographyProps as TypographyProps$1, PaletteMode } from '@mui/material';
|
|
5
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
+
import { UniqueIdentifier } from '@dnd-kit/core';
|
|
7
|
+
import * as _emotion_styled from '@emotion/styled';
|
|
8
|
+
import * as _mui_system from '@mui/system';
|
|
9
|
+
import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
|
|
10
|
+
import { SubmitHandler } from 'react-hook-form';
|
|
11
|
+
|
|
12
|
+
interface ColorRange {
|
|
13
|
+
0: string;
|
|
14
|
+
50?: string;
|
|
15
|
+
100: string;
|
|
16
|
+
200: string;
|
|
17
|
+
300: string;
|
|
18
|
+
400: string;
|
|
19
|
+
500: string;
|
|
20
|
+
600: string;
|
|
21
|
+
700: string;
|
|
22
|
+
800: string;
|
|
23
|
+
900: string;
|
|
24
|
+
950?: string;
|
|
25
|
+
1000: string;
|
|
26
|
+
1100?: string;
|
|
27
|
+
}
|
|
28
|
+
interface ColorRangeAlpha {
|
|
29
|
+
0: string;
|
|
30
|
+
1: string;
|
|
31
|
+
2: string;
|
|
32
|
+
3: string;
|
|
33
|
+
4: string;
|
|
34
|
+
5: string;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
interface CustomTheme {
|
|
38
|
+
palette: {
|
|
39
|
+
black: string;
|
|
40
|
+
white: string;
|
|
41
|
+
neutral: ColorRange;
|
|
42
|
+
neutralAlpha: ColorRangeAlpha;
|
|
43
|
+
purple: ColorRange;
|
|
44
|
+
red: ColorRange;
|
|
45
|
+
peach: ColorRange;
|
|
46
|
+
yellow: ColorRange;
|
|
47
|
+
blue: ColorRange;
|
|
48
|
+
green: ColorRange;
|
|
49
|
+
icon: {
|
|
50
|
+
primary: string;
|
|
51
|
+
secondary: string;
|
|
52
|
+
disabled: string;
|
|
53
|
+
primaryInverted: string;
|
|
54
|
+
secondaryInverted: string;
|
|
55
|
+
disabledInverted: string;
|
|
56
|
+
lockedWhite: string;
|
|
57
|
+
};
|
|
58
|
+
interaction: {
|
|
59
|
+
none: string;
|
|
60
|
+
hover: string;
|
|
61
|
+
press: string;
|
|
62
|
+
hoverOnDark: string;
|
|
63
|
+
pressOnDark: string;
|
|
64
|
+
disabled: string;
|
|
65
|
+
};
|
|
66
|
+
stroke: {
|
|
67
|
+
default: string;
|
|
68
|
+
focus: string;
|
|
69
|
+
disabled: string;
|
|
70
|
+
};
|
|
71
|
+
surface: {
|
|
72
|
+
default: string;
|
|
73
|
+
sunken: string;
|
|
74
|
+
raised: string;
|
|
75
|
+
overlay: string;
|
|
76
|
+
scrim: string;
|
|
77
|
+
};
|
|
78
|
+
text: {
|
|
79
|
+
primary: string;
|
|
80
|
+
secondary: string;
|
|
81
|
+
placeholder: string;
|
|
82
|
+
disabled: string;
|
|
83
|
+
textLink: string;
|
|
84
|
+
textLinkHover: string;
|
|
85
|
+
primaryInverted: string;
|
|
86
|
+
secondaryInverted: string;
|
|
87
|
+
placeholderInverted: string;
|
|
88
|
+
disabledInverted: string;
|
|
89
|
+
positive: string;
|
|
90
|
+
negative: string;
|
|
91
|
+
lockedWhite: string;
|
|
92
|
+
};
|
|
93
|
+
input: {
|
|
94
|
+
default: string;
|
|
95
|
+
disabled: string;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
margin: {
|
|
99
|
+
none: number;
|
|
100
|
+
xs: number;
|
|
101
|
+
sm: number;
|
|
102
|
+
md: number;
|
|
103
|
+
lg: number;
|
|
104
|
+
xl: number;
|
|
105
|
+
xxl: number;
|
|
106
|
+
xxxl: number;
|
|
107
|
+
};
|
|
108
|
+
padding: {
|
|
109
|
+
none: number;
|
|
110
|
+
xs: number;
|
|
111
|
+
sm: number;
|
|
112
|
+
md: number;
|
|
113
|
+
lg: number;
|
|
114
|
+
xl: number;
|
|
115
|
+
};
|
|
116
|
+
radius: {
|
|
117
|
+
none: number;
|
|
118
|
+
xs: number;
|
|
119
|
+
sm: number;
|
|
120
|
+
md: number;
|
|
121
|
+
lg: number;
|
|
122
|
+
xl: number;
|
|
123
|
+
round: number;
|
|
124
|
+
};
|
|
125
|
+
elevation: {
|
|
126
|
+
raised: string;
|
|
127
|
+
overlay: string;
|
|
128
|
+
};
|
|
129
|
+
elevationFilter: {
|
|
130
|
+
raised: string;
|
|
131
|
+
overlay: string;
|
|
132
|
+
};
|
|
133
|
+
easing: {
|
|
134
|
+
default: string;
|
|
135
|
+
input: string;
|
|
136
|
+
};
|
|
137
|
+
boxShadow: {
|
|
138
|
+
input: {
|
|
139
|
+
focus: string;
|
|
140
|
+
handle: string;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
typography: {
|
|
144
|
+
headline: {
|
|
145
|
+
xs: string;
|
|
146
|
+
sm: string;
|
|
147
|
+
md: string;
|
|
148
|
+
lg: string;
|
|
149
|
+
xl: string;
|
|
150
|
+
xxl: string;
|
|
151
|
+
xxxl: string;
|
|
152
|
+
};
|
|
153
|
+
body: {
|
|
154
|
+
xs: string;
|
|
155
|
+
sm: string;
|
|
156
|
+
md: string;
|
|
157
|
+
lg: string;
|
|
158
|
+
xl: string;
|
|
159
|
+
xxl: string;
|
|
160
|
+
xxxl: string;
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
type SupportedCurrency = 'gbp' | 'eur' | 'usd';
|
|
166
|
+
type SupportedFrequency = 'monthly' | 'annual';
|
|
167
|
+
interface AnnualControllerProps {
|
|
168
|
+
body: string;
|
|
169
|
+
currency: string;
|
|
170
|
+
changeCurrencyEvent?: (value: string) => void;
|
|
171
|
+
frequency: string;
|
|
172
|
+
heading: string;
|
|
173
|
+
setCurrency?: Dispatch<SetStateAction<SupportedCurrency>>;
|
|
174
|
+
setFrequency?: Dispatch<SetStateAction<SupportedFrequency>>;
|
|
175
|
+
togglePayAnnuallyEvent?: () => void;
|
|
176
|
+
}
|
|
177
|
+
declare const AnnualController: FunctionComponent<AnnualControllerProps>;
|
|
178
|
+
|
|
179
|
+
interface AuthFormHeaderProps {
|
|
180
|
+
logo?: ReactElement | false | undefined;
|
|
181
|
+
headerText?: string;
|
|
182
|
+
subText?: ReactElement | string;
|
|
183
|
+
}
|
|
184
|
+
declare const AuthFormHeader: FunctionComponent<AuthFormHeaderProps>;
|
|
185
|
+
|
|
186
|
+
interface AvatarProps extends Pick<AvatarProps$1, 'src' | 'className' | 'alt'> {
|
|
187
|
+
variation?: 'sm' | 'lg';
|
|
188
|
+
}
|
|
189
|
+
declare const Avatar: FunctionComponent<AvatarProps>;
|
|
190
|
+
|
|
191
|
+
interface AvatarGroupProps extends AvatarGroupProps$1 {
|
|
192
|
+
variation?: 'primary';
|
|
193
|
+
}
|
|
194
|
+
declare const AvatarGroup: FunctionComponent<AvatarGroupProps>;
|
|
195
|
+
|
|
196
|
+
type GenericSizeMap = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
197
|
+
|
|
198
|
+
type ButtonSizing = Exclude<GenericSizeMap, 'none'>;
|
|
199
|
+
|
|
200
|
+
interface ButtonBaseProps extends ButtonProps$1 {
|
|
201
|
+
loading?: boolean;
|
|
202
|
+
sizing: any;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
interface ButtonProps extends Pick<ButtonBaseProps, 'fullWidth' | 'className' | 'disabled' | 'tabIndex' | 'href' | 'endIcon' | 'startIcon' | 'children' | 'onClick' | 'type'> {
|
|
206
|
+
loading?: boolean;
|
|
207
|
+
variation?: 'primary' | 'secondary' | 'outlined' | 'subtle';
|
|
208
|
+
sizing?: ButtonSizing;
|
|
209
|
+
}
|
|
210
|
+
declare const Button: FunctionComponent<ButtonProps>;
|
|
211
|
+
|
|
212
|
+
interface FormControlLabelProps extends Omit<FormControlLabelProps$1, 'label'> {
|
|
213
|
+
label?: string;
|
|
214
|
+
}
|
|
215
|
+
declare const FormControlLabel: FunctionComponent<FormControlLabelProps>;
|
|
216
|
+
|
|
217
|
+
interface StyledCheckboxProps extends CheckboxProps$1 {
|
|
218
|
+
sizing?: 'default' | 'lg';
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
interface CheckboxProps extends Omit<FormControlLabelProps, 'control' | 'disableTypography' | 'classes' | 'labelPlacement' | 'slotProps' | 'label'> {
|
|
222
|
+
sizing?: StyledCheckboxProps['sizing'];
|
|
223
|
+
indeterminate?: StyledCheckboxProps['indeterminate'];
|
|
224
|
+
checkboxLabel?: string;
|
|
225
|
+
internalChange?: () => void;
|
|
226
|
+
}
|
|
227
|
+
declare const Checkbox: FunctionComponent<CheckboxProps>;
|
|
228
|
+
|
|
229
|
+
interface CheckboxGroupOption {
|
|
230
|
+
label: string;
|
|
231
|
+
value: string;
|
|
232
|
+
exclusive?: boolean;
|
|
233
|
+
}
|
|
234
|
+
interface CheckboxGroupOther {
|
|
235
|
+
label?: string;
|
|
236
|
+
enabled?: boolean;
|
|
237
|
+
placeholder?: string;
|
|
238
|
+
name?: string;
|
|
239
|
+
defaultValue?: string;
|
|
240
|
+
}
|
|
241
|
+
interface CheckboxGroupProps {
|
|
242
|
+
options: CheckboxGroupOption[];
|
|
243
|
+
value: string[];
|
|
244
|
+
sizing?: CheckboxProps['sizing'];
|
|
245
|
+
onChange: (arrayIds: string[]) => void;
|
|
246
|
+
id: string;
|
|
247
|
+
inputRef?: any;
|
|
248
|
+
other?: CheckboxGroupOther;
|
|
249
|
+
internalChange?: () => void;
|
|
250
|
+
}
|
|
251
|
+
declare const CheckboxGroup: FunctionComponent<CheckboxGroupProps>;
|
|
252
|
+
|
|
253
|
+
interface BackgroundOptions {
|
|
254
|
+
texture?: 'none' | 'noise1';
|
|
255
|
+
gradient?: 'tone1' | 'tone2' | 'tone3' | 'tone4';
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
interface ColorBackgroundContainerProps extends ContainerProps, BackgroundOptions {
|
|
259
|
+
}
|
|
260
|
+
declare const ColorBackgroundContainer: FunctionComponent<ColorBackgroundContainerProps>;
|
|
261
|
+
|
|
262
|
+
interface DifferentialProps {
|
|
263
|
+
labelLeft: string;
|
|
264
|
+
labelRight: string;
|
|
265
|
+
labelCenter?: string;
|
|
266
|
+
disabled?: boolean;
|
|
267
|
+
value?: string;
|
|
268
|
+
onChange?: (event: ChangeEvent<HTMLInputElement>, checked: boolean) => void;
|
|
269
|
+
internalChange?: () => void;
|
|
270
|
+
}
|
|
271
|
+
declare const Differential: FunctionComponent<DifferentialProps>;
|
|
272
|
+
|
|
273
|
+
interface Props$1 {
|
|
274
|
+
id: UniqueIdentifier;
|
|
275
|
+
top?: JSX.Element;
|
|
276
|
+
bottom?: JSX.Element;
|
|
277
|
+
}
|
|
278
|
+
declare function SortableItem({ children, top, bottom, id }: PropsWithChildren<Props$1>): react_jsx_runtime.JSX.Element;
|
|
279
|
+
declare function DragHandle(): react_jsx_runtime.JSX.Element;
|
|
280
|
+
|
|
281
|
+
interface BaseItem {
|
|
282
|
+
id: UniqueIdentifier;
|
|
283
|
+
}
|
|
284
|
+
interface SortableListProps<T extends BaseItem> {
|
|
285
|
+
items: T[];
|
|
286
|
+
onChange(items: T[]): void;
|
|
287
|
+
renderItem(item: T, isOverlay?: boolean, isDragActive?: boolean): ReactNode;
|
|
288
|
+
disabled?: boolean;
|
|
289
|
+
direction?: 'horizontal' | 'vertical';
|
|
290
|
+
}
|
|
291
|
+
declare function SortableList<T extends BaseItem>({ items, onChange, renderItem, disabled, direction }: SortableListProps<T>): react_jsx_runtime.JSX.Element | undefined;
|
|
292
|
+
declare namespace SortableList {
|
|
293
|
+
var Item: typeof SortableItem;
|
|
294
|
+
var DragHandle: typeof DragHandle;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
interface DragAndDropRankingProps extends Omit<SortableListProps<any>, 'renderItem'> {
|
|
298
|
+
labelTop: string;
|
|
299
|
+
labelBottom: string;
|
|
300
|
+
fullWidth?: boolean;
|
|
301
|
+
options: any[];
|
|
302
|
+
internalChange?: () => void;
|
|
303
|
+
value?: any[];
|
|
304
|
+
}
|
|
305
|
+
declare const DragAndDropRanking: FunctionComponent<DragAndDropRankingProps>;
|
|
306
|
+
|
|
307
|
+
interface GridOverlayProps {
|
|
308
|
+
breakpoint?: Breakpoint;
|
|
309
|
+
}
|
|
310
|
+
declare const GridOverlay: FunctionComponent<GridOverlayProps>;
|
|
311
|
+
|
|
312
|
+
interface IconProps {
|
|
313
|
+
name: 'arrow-forward' | 'expand-more' | 'close' | 'play' | 'positive' | 'negative' | 'neutral' | 'info' | 'check-circle' | 'error-outline' | 'lightbulb' | 'warning-amber' | 'access-time' | 'linkedin' | 'medium' | 'menu' | 'unfold-more' | 'navigation-arrow' | 'lock' | 'loopsOfficial' | 'google' | 'linkedin-color' | 'check' | 'dash' | 'gift' | string;
|
|
314
|
+
size?: number;
|
|
315
|
+
sx?: SxProps;
|
|
316
|
+
}
|
|
317
|
+
declare const Icon: FunctionComponent<IconProps>;
|
|
318
|
+
|
|
319
|
+
type IconButtonSizing = 'lg' | 'md';
|
|
320
|
+
type IconButtonShapeMap = 'default' | 'round';
|
|
321
|
+
type IconButtonVariation = 'default' | 'toggle' | 'outlined' | 'raised';
|
|
322
|
+
interface IconButtonProps extends Pick<IconButtonProps$1, 'edge' | 'classes' | 'children' | 'onClick' | 'disabled' | 'ref' | 'id' | 'type'> {
|
|
323
|
+
variation?: IconButtonVariation;
|
|
324
|
+
shape?: IconButtonShapeMap;
|
|
325
|
+
sizing?: IconButtonSizing;
|
|
326
|
+
icon: ReactElement;
|
|
327
|
+
loading?: boolean;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
declare const IconButton: ({ icon, loading, sizing, ...rest }: IconButtonProps) => react_jsx_runtime.JSX.Element;
|
|
331
|
+
|
|
332
|
+
interface IconButtonGroupProps extends PropsWithChildren {
|
|
333
|
+
ButtonGroupProps?: ButtonGroupProps;
|
|
334
|
+
variation?: IconButtonProps['variation'];
|
|
335
|
+
orientation: ButtonGroupProps['orientation'];
|
|
336
|
+
sizing?: IconButtonProps['sizing'];
|
|
337
|
+
divider?: boolean;
|
|
338
|
+
iconColor?: string;
|
|
339
|
+
disabled?: boolean;
|
|
340
|
+
}
|
|
341
|
+
declare const IconButtonGroup: FunctionComponent<IconButtonGroupProps>;
|
|
342
|
+
|
|
343
|
+
type InputVariation = 'default' | 'help';
|
|
344
|
+
|
|
345
|
+
type InputLabelBaseProps = Pick<InputLabelProps$1, 'children' | 'required' | 'error' | 'disabled' | 'sx' | 'component'> & {
|
|
346
|
+
variation?: InputVariation;
|
|
347
|
+
align?: 'left' | 'center' | 'right';
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
interface InputLabelProps extends Pick<InputLabelBaseProps, 'align' | 'children' | 'disabled' | 'error' | 'required' | 'component'> {
|
|
351
|
+
}
|
|
352
|
+
declare const InputLabel: FunctionComponent<InputLabelProps>;
|
|
353
|
+
|
|
354
|
+
interface InputLabelHelpProps extends Pick<InputLabelBaseProps, 'align' | 'children' | 'disabled' | 'required'> {
|
|
355
|
+
state?: 'default' | 'positive' | 'negative' | 'disabled';
|
|
356
|
+
showicon?: boolean;
|
|
357
|
+
icon?: ReactNode;
|
|
358
|
+
}
|
|
359
|
+
declare const InputLabelHelp: FunctionComponent<InputLabelHelpProps>;
|
|
360
|
+
|
|
361
|
+
interface LikertOption {
|
|
362
|
+
label: string;
|
|
363
|
+
value: string;
|
|
364
|
+
}
|
|
365
|
+
interface LikertProps {
|
|
366
|
+
options: LikertOption[];
|
|
367
|
+
disabled?: boolean;
|
|
368
|
+
onChange: (event: any) => void;
|
|
369
|
+
value: string;
|
|
370
|
+
sizing?: 'default' | 'lg';
|
|
371
|
+
internalChange?: () => void;
|
|
372
|
+
}
|
|
373
|
+
declare const Likert: FunctionComponent<LikertProps>;
|
|
374
|
+
|
|
375
|
+
interface LinkProps extends LinkProps$1 {
|
|
376
|
+
}
|
|
377
|
+
declare const Link: FunctionComponent<LinkProps>;
|
|
378
|
+
|
|
379
|
+
interface LoaderProps {
|
|
380
|
+
}
|
|
381
|
+
declare const Loader: FunctionComponent<LoaderProps>;
|
|
382
|
+
|
|
383
|
+
declare const Logo: FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
384
|
+
|
|
385
|
+
interface PillProps {
|
|
386
|
+
body: string;
|
|
387
|
+
variation?: 'default' | 'peach' | 'peachDark' | 'purple';
|
|
388
|
+
weight?: 'heavy' | 'light';
|
|
389
|
+
}
|
|
390
|
+
declare const Pill: FunctionComponent<PillProps>;
|
|
391
|
+
|
|
392
|
+
declare const _default: {
|
|
393
|
+
headings: {
|
|
394
|
+
"01-starter": {
|
|
395
|
+
heading: string;
|
|
396
|
+
pricing: string;
|
|
397
|
+
};
|
|
398
|
+
"02-team": {
|
|
399
|
+
heading: string;
|
|
400
|
+
pricing: string;
|
|
401
|
+
};
|
|
402
|
+
"03-plus": {
|
|
403
|
+
heading: string;
|
|
404
|
+
pricing: string;
|
|
405
|
+
};
|
|
406
|
+
"04-scale": {
|
|
407
|
+
heading: string;
|
|
408
|
+
pricing: string;
|
|
409
|
+
};
|
|
410
|
+
};
|
|
411
|
+
rows: {
|
|
412
|
+
"01-seats": {
|
|
413
|
+
heading: string;
|
|
414
|
+
description: string;
|
|
415
|
+
starter: string;
|
|
416
|
+
team: string;
|
|
417
|
+
plus: string;
|
|
418
|
+
scale: string;
|
|
419
|
+
};
|
|
420
|
+
"02-servicing": {
|
|
421
|
+
heading: string;
|
|
422
|
+
description: string;
|
|
423
|
+
starter: string;
|
|
424
|
+
team: string;
|
|
425
|
+
plus: string;
|
|
426
|
+
scale: string;
|
|
427
|
+
};
|
|
428
|
+
"03-respondents": {
|
|
429
|
+
heading: string;
|
|
430
|
+
description: string;
|
|
431
|
+
starter: string;
|
|
432
|
+
team: string;
|
|
433
|
+
plus: string;
|
|
434
|
+
scale: string;
|
|
435
|
+
};
|
|
436
|
+
"04-questions": {
|
|
437
|
+
heading: string;
|
|
438
|
+
description: string;
|
|
439
|
+
starter: string;
|
|
440
|
+
team: string;
|
|
441
|
+
plus: string;
|
|
442
|
+
scale: string;
|
|
443
|
+
};
|
|
444
|
+
"05-ai": {
|
|
445
|
+
heading: string;
|
|
446
|
+
description: string;
|
|
447
|
+
starter: string;
|
|
448
|
+
team: string;
|
|
449
|
+
plus: string;
|
|
450
|
+
scale: string;
|
|
451
|
+
};
|
|
452
|
+
"06-demographics": {
|
|
453
|
+
heading: string;
|
|
454
|
+
description: string;
|
|
455
|
+
starter: string;
|
|
456
|
+
team: string;
|
|
457
|
+
plus: string;
|
|
458
|
+
scale: string;
|
|
459
|
+
};
|
|
460
|
+
"07-training": {
|
|
461
|
+
heading: string;
|
|
462
|
+
description: string;
|
|
463
|
+
starter: string;
|
|
464
|
+
team: string;
|
|
465
|
+
plus: string;
|
|
466
|
+
scale: string;
|
|
467
|
+
};
|
|
468
|
+
"08-invite": {
|
|
469
|
+
heading: string;
|
|
470
|
+
description: string;
|
|
471
|
+
starter: string;
|
|
472
|
+
team: string;
|
|
473
|
+
plus: string;
|
|
474
|
+
scale: string;
|
|
475
|
+
};
|
|
476
|
+
"09-email": {
|
|
477
|
+
heading: string;
|
|
478
|
+
description: string;
|
|
479
|
+
starter: string;
|
|
480
|
+
team: string;
|
|
481
|
+
plus: string;
|
|
482
|
+
scale: string;
|
|
483
|
+
};
|
|
484
|
+
"10-beta": {
|
|
485
|
+
heading: string;
|
|
486
|
+
description: string;
|
|
487
|
+
starter: string;
|
|
488
|
+
team: string;
|
|
489
|
+
plus: string;
|
|
490
|
+
scale: string;
|
|
491
|
+
};
|
|
492
|
+
"11-sso": {
|
|
493
|
+
heading: string;
|
|
494
|
+
description: string;
|
|
495
|
+
starter: string;
|
|
496
|
+
team: string;
|
|
497
|
+
plus: string;
|
|
498
|
+
scale: string;
|
|
499
|
+
};
|
|
500
|
+
"12-minimum": {
|
|
501
|
+
heading: string;
|
|
502
|
+
description: string;
|
|
503
|
+
starter: string;
|
|
504
|
+
team: string;
|
|
505
|
+
plus: string;
|
|
506
|
+
scale: string;
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
};
|
|
510
|
+
|
|
511
|
+
interface PlanFeatureTableProps {
|
|
512
|
+
currencySymbol: string;
|
|
513
|
+
data: typeof _default;
|
|
514
|
+
starterPrice: string;
|
|
515
|
+
starterRespondentPrice: string;
|
|
516
|
+
teamPrice: string;
|
|
517
|
+
teamRespondentPrice: string;
|
|
518
|
+
plusPrice: string;
|
|
519
|
+
plusRespondentPrice: string;
|
|
520
|
+
scalePrice: string;
|
|
521
|
+
scaleRespondentPrice: string;
|
|
522
|
+
variation?: 'default' | 'platform';
|
|
523
|
+
}
|
|
524
|
+
declare const PlanFeatureTable: FunctionComponent<PlanFeatureTableProps>;
|
|
525
|
+
|
|
526
|
+
interface PlanTierCardProps {
|
|
527
|
+
amount: string;
|
|
528
|
+
billingType?: string;
|
|
529
|
+
body: string;
|
|
530
|
+
ctaEvent?: (heading: string) => void;
|
|
531
|
+
ctaLink?: string;
|
|
532
|
+
ctaTarget?: string;
|
|
533
|
+
ctaText: string;
|
|
534
|
+
currencySymbol: string;
|
|
535
|
+
currentPlan?: boolean;
|
|
536
|
+
features?: string[];
|
|
537
|
+
freeTrialLength?: string;
|
|
538
|
+
freeTrialText?: string;
|
|
539
|
+
frequency: string;
|
|
540
|
+
heading: string;
|
|
541
|
+
label?: string;
|
|
542
|
+
largestHeaderHeight?: number;
|
|
543
|
+
perMonth: string;
|
|
544
|
+
setLargestHeaderHeight?: (height: number) => void;
|
|
545
|
+
variation?: 'default' | 'platform';
|
|
546
|
+
}
|
|
547
|
+
declare const PlanTierCard: FunctionComponent<PlanTierCardProps>;
|
|
548
|
+
|
|
549
|
+
interface PlanTierCardScaleProps {
|
|
550
|
+
amount: string;
|
|
551
|
+
body: string;
|
|
552
|
+
ctaEvent?: (heading: string) => void;
|
|
553
|
+
ctaLink?: string;
|
|
554
|
+
ctaTarget?: string;
|
|
555
|
+
ctaText: string;
|
|
556
|
+
currencySymbol: string;
|
|
557
|
+
heading: string;
|
|
558
|
+
preText: string;
|
|
559
|
+
postText: string;
|
|
560
|
+
}
|
|
561
|
+
declare const PlanTierCardScale: FunctionComponent<PlanTierCardScaleProps>;
|
|
562
|
+
|
|
563
|
+
interface PortalProps extends PropsWithChildren {
|
|
564
|
+
}
|
|
565
|
+
declare const Portal: FunctionComponent<PortalProps>;
|
|
566
|
+
|
|
567
|
+
declare const PoweredByWatermarkLogo: () => react_jsx_runtime.JSX.Element;
|
|
568
|
+
|
|
569
|
+
type ProgressSizing = Exclude<GenericSizeMap, 'none'>;
|
|
570
|
+
interface ProgressProps {
|
|
571
|
+
sizing?: ProgressSizing;
|
|
572
|
+
}
|
|
573
|
+
declare const Progress: FunctionComponent<ProgressProps>;
|
|
574
|
+
|
|
575
|
+
interface RadioProps extends Pick<RadioProps$1, 'disabled' | 'name' | 'value' | 'autoFocus' | 'onChange' | 'checked' | 'readOnly' | 'required' | 'aria-label'> {
|
|
576
|
+
sizing?: 'default' | 'lg';
|
|
577
|
+
}
|
|
578
|
+
declare const Radio: FunctionComponent<RadioProps>;
|
|
579
|
+
|
|
580
|
+
interface RadioGroupOption {
|
|
581
|
+
label: string;
|
|
582
|
+
value: string;
|
|
583
|
+
}
|
|
584
|
+
interface RadioGroupOther {
|
|
585
|
+
label?: string;
|
|
586
|
+
enabled?: boolean;
|
|
587
|
+
placeholder?: string;
|
|
588
|
+
name?: string;
|
|
589
|
+
}
|
|
590
|
+
interface RadioGroupProps extends Omit<RadioGroupProps$1, 'defaultValue' | 'sx' | 'classes' | 'onChange'> {
|
|
591
|
+
options: RadioGroupOption[];
|
|
592
|
+
other?: RadioGroupOther;
|
|
593
|
+
onChange: (value: string) => void;
|
|
594
|
+
internalChange?: () => void;
|
|
595
|
+
}
|
|
596
|
+
declare const RadioGroup: FunctionComponent<RadioGroupProps>;
|
|
597
|
+
|
|
598
|
+
type SelectProps = Pick<SelectProps$1, 'onChange' | 'id' | 'onBlur' | 'autoFocus' | 'disabled' | 'error' | 'fullWidth' | 'name' | 'placeholder' | 'readOnly' | 'required' | 'ref' | 'value' | 'inputRef'> & {
|
|
599
|
+
selections: {
|
|
600
|
+
value: string;
|
|
601
|
+
label: string;
|
|
602
|
+
}[];
|
|
603
|
+
selectOptionProps?: MenuItemProps;
|
|
604
|
+
internalChange?: () => void;
|
|
605
|
+
sx?: SxProps;
|
|
606
|
+
};
|
|
607
|
+
declare const Select: FunctionComponent<SelectProps>;
|
|
608
|
+
|
|
609
|
+
type SliderComponentProps = Pick<SliderProps$1, 'defaultValue' | 'disabled' | 'max' | 'min' | 'onChange' | 'step' | 'value'>;
|
|
610
|
+
interface SliderProps extends SliderComponentProps {
|
|
611
|
+
labelLeft: string;
|
|
612
|
+
labelRight: string;
|
|
613
|
+
labelMiddle?: string;
|
|
614
|
+
min: any;
|
|
615
|
+
labelRightProps?: InputLabelHelpProps;
|
|
616
|
+
labelLeftProps?: InputLabelHelpProps;
|
|
617
|
+
internalChange?: () => void;
|
|
618
|
+
}
|
|
619
|
+
declare const Slider: FunctionComponent<SliderProps>;
|
|
620
|
+
|
|
621
|
+
interface StarRatingProps extends Pick<RatingProps, 'defaultValue' | 'disabled' | 'IconContainerComponent' | 'name' | 'precision' | 'value' | 'readOnly' | 'onChange'> {
|
|
622
|
+
internalChange?: () => void;
|
|
623
|
+
}
|
|
624
|
+
declare const StarRating: FunctionComponent<StarRatingProps>;
|
|
625
|
+
|
|
626
|
+
interface SurfaceProps extends PaperProps {
|
|
627
|
+
variation: 'default' | 'sunken' | 'raised' | 'overlay';
|
|
628
|
+
borderradius?: GenericSizeMap;
|
|
629
|
+
}
|
|
630
|
+
declare const Surface: _emotion_styled.StyledComponent<_mui_material.PaperOwnProps & _mui_material_OverridableComponent.CommonProps & Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
631
|
+
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
|
632
|
+
}, "children" | "sx" | "style" | "className" | "elevation" | "square" | "classes" | "variant"> & _mui_system.MUIStyledCommonProps<Theme> & SurfaceProps, {}, {}>;
|
|
633
|
+
|
|
634
|
+
interface SwitchProps extends SwitchProps$1 {
|
|
635
|
+
}
|
|
636
|
+
declare const Switch: _emotion_styled.StyledComponent<SwitchProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
637
|
+
|
|
638
|
+
type InputFieldBaseProps = TextFieldProps$1;
|
|
639
|
+
|
|
640
|
+
type TextareaProps = InputFieldBaseProps & {
|
|
641
|
+
iconLeft?: ReactElement;
|
|
642
|
+
iconRight?: ReactElement;
|
|
643
|
+
internalChange?: () => void;
|
|
644
|
+
};
|
|
645
|
+
declare const Textarea: FunctionComponent<TextareaProps>;
|
|
646
|
+
|
|
647
|
+
interface TypographyProps {
|
|
648
|
+
variation: 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl';
|
|
649
|
+
component: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p';
|
|
650
|
+
weight?: 'default' | 'bold';
|
|
651
|
+
clamp?: number;
|
|
652
|
+
}
|
|
653
|
+
declare const Typography: FunctionComponent<TypographyProps & TypographyProps$1>;
|
|
654
|
+
|
|
655
|
+
interface TextBarDividerProps {
|
|
656
|
+
sx?: SxProps;
|
|
657
|
+
typographyProps?: TypographyProps;
|
|
658
|
+
text: string;
|
|
659
|
+
}
|
|
660
|
+
declare const TextBarDivider: FunctionComponent<TextBarDividerProps>;
|
|
661
|
+
|
|
662
|
+
type TextFieldProps = InputFieldBaseProps & {
|
|
663
|
+
iconLeft?: ReactElement;
|
|
664
|
+
iconRight?: ReactElement;
|
|
665
|
+
internalChange?: () => void;
|
|
666
|
+
};
|
|
667
|
+
declare const TextField: FunctionComponent<TextFieldProps>;
|
|
668
|
+
|
|
669
|
+
interface TickGroupProps {
|
|
670
|
+
heading: string;
|
|
671
|
+
ticks: string[];
|
|
672
|
+
}
|
|
673
|
+
declare const TickGroup: FunctionComponent<TickGroupProps>;
|
|
674
|
+
|
|
675
|
+
interface TooltipProps extends PropsWithChildren {
|
|
676
|
+
message: string;
|
|
677
|
+
variation?: 'primary';
|
|
678
|
+
}
|
|
679
|
+
declare const Tooltip: FunctionComponent<TooltipProps>;
|
|
680
|
+
|
|
681
|
+
interface FormGeneratorHandler {
|
|
682
|
+
set: () => void;
|
|
683
|
+
reset: () => void;
|
|
684
|
+
submit: () => void;
|
|
685
|
+
values: () => void;
|
|
686
|
+
valid: () => void;
|
|
687
|
+
errors: () => void;
|
|
688
|
+
triggerFormValidation: () => Promise<unknown>;
|
|
689
|
+
}
|
|
690
|
+
type FormGeneratorProps = FunctionComponent<{
|
|
691
|
+
formConfig: FormGeneratorConfig;
|
|
692
|
+
onFormSubmit?: SubmitHandler<any>;
|
|
693
|
+
onFormChange?: (formData: any) => void;
|
|
694
|
+
submitButton?: ReactElement;
|
|
695
|
+
secondaryButton?: ReactElement;
|
|
696
|
+
ref?: any;
|
|
697
|
+
}>;
|
|
698
|
+
interface FormGeneratorConfig {
|
|
699
|
+
fields: FieldTypes[];
|
|
700
|
+
autoComplete?: 'off';
|
|
701
|
+
formId?: string;
|
|
702
|
+
reValidateMode?: 'onSubmit' | 'onBlur' | 'onChange';
|
|
703
|
+
styleOverrides?: {
|
|
704
|
+
sxForm?: SxProps<Theme>;
|
|
705
|
+
sxButtons?: SxProps<Theme>;
|
|
706
|
+
sxStack?: SxProps<Theme>;
|
|
707
|
+
};
|
|
708
|
+
}
|
|
709
|
+
type TextFieldType = BaseField & TextFieldProps;
|
|
710
|
+
type SelectType = BaseField & SelectProps;
|
|
711
|
+
type CheckboxType = BaseField & CheckboxProps;
|
|
712
|
+
type CheckboxGroupType = BaseField & CheckboxGroupProps;
|
|
713
|
+
type SliderType = BaseField & SliderProps;
|
|
714
|
+
type DifferentialType = BaseField & DifferentialProps;
|
|
715
|
+
type LikertType = BaseField & LikertProps;
|
|
716
|
+
type RadioGroupType = BaseField & RadioGroupProps;
|
|
717
|
+
type DragAndDropRankingType = BaseField & DragAndDropRankingProps;
|
|
718
|
+
type FieldType = 'textfield' | 'textarea' | 'select' | 'checkbox' | 'checkboxGroup' | 'slider' | 'differential' | 'likert' | 'starRating' | 'radioGroup' | 'text' | 'dndRanking';
|
|
719
|
+
type FieldTypes = CheckboxType | CheckboxGroupType | SelectType | TextFieldType | SliderType | DifferentialType | LikertType | RadioGroupType | DragAndDropRankingType;
|
|
720
|
+
interface BaseField {
|
|
721
|
+
name: string;
|
|
722
|
+
ref?: any;
|
|
723
|
+
multiline?: boolean;
|
|
724
|
+
fieldType: FieldType;
|
|
725
|
+
textContent?: string;
|
|
726
|
+
typographyProps?: TypographyProps;
|
|
727
|
+
defaultValue?: string | number | string[] | undefined;
|
|
728
|
+
label?: string;
|
|
729
|
+
labelProps?: InputLabelProps;
|
|
730
|
+
helperText?: string;
|
|
731
|
+
helpTextProps?: InputLabelHelpProps;
|
|
732
|
+
validation?: any;
|
|
733
|
+
valueTransformer?: (valueToTransform: string) => string;
|
|
734
|
+
disabled?: boolean;
|
|
735
|
+
styleOverrides?: {
|
|
736
|
+
sxInputWrapper?: SxProps<Theme>;
|
|
737
|
+
sxInputBase?: SxProps<Theme>;
|
|
738
|
+
sxInputStack?: SxProps<Theme>;
|
|
739
|
+
};
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
declare const FormGenerator: FormGeneratorProps;
|
|
743
|
+
|
|
744
|
+
declare const emailValidation: {
|
|
745
|
+
pattern: {
|
|
746
|
+
value: RegExp;
|
|
747
|
+
message: string;
|
|
748
|
+
};
|
|
749
|
+
};
|
|
750
|
+
|
|
751
|
+
declare const chooseArticle: (word: string) => string;
|
|
752
|
+
declare const defaultInputValidation: (inputName?: string, isRequired?: boolean, maxLength?: number) => {
|
|
753
|
+
required?: string | undefined;
|
|
754
|
+
maxLength: {
|
|
755
|
+
value: number;
|
|
756
|
+
message: string;
|
|
757
|
+
};
|
|
758
|
+
};
|
|
759
|
+
declare const DEFAULT_MAX_INPUT_LENGTH: number;
|
|
760
|
+
|
|
761
|
+
declare const passwordValidation: (min?: number) => {
|
|
762
|
+
minLength: {
|
|
763
|
+
value: number;
|
|
764
|
+
message: string;
|
|
765
|
+
};
|
|
766
|
+
equal: {
|
|
767
|
+
value: string;
|
|
768
|
+
message: string;
|
|
769
|
+
};
|
|
770
|
+
};
|
|
771
|
+
|
|
772
|
+
interface AuthContainerSurfaceProps extends SurfaceProps {
|
|
773
|
+
headContent?: ReactNode;
|
|
774
|
+
}
|
|
775
|
+
declare const AuthContainerSurface: FunctionComponent<AuthContainerSurfaceProps>;
|
|
776
|
+
|
|
777
|
+
type ScreenSize = 'sm' | 'lg';
|
|
778
|
+
|
|
779
|
+
interface Props {
|
|
780
|
+
children: any;
|
|
781
|
+
mode?: PaletteMode;
|
|
782
|
+
screenSize?: ScreenSize;
|
|
783
|
+
}
|
|
784
|
+
declare const ThemeProvider: FunctionComponent<Props>;
|
|
785
|
+
|
|
786
|
+
declare module '@mui/material/styles' {
|
|
787
|
+
interface BreakpointOverrides {
|
|
788
|
+
xs: false;
|
|
789
|
+
sm: true;
|
|
790
|
+
md: true;
|
|
791
|
+
lg: true;
|
|
792
|
+
lgNav: true;
|
|
793
|
+
xl: true;
|
|
794
|
+
xxl: true;
|
|
795
|
+
}
|
|
796
|
+
interface TypographyVariants extends TypographyVariants {
|
|
797
|
+
xxxl: React.CSSProperties;
|
|
798
|
+
xxl: React.CSSProperties;
|
|
799
|
+
xl: React.CSSProperties;
|
|
800
|
+
lg: React.CSSProperties;
|
|
801
|
+
md: React.CSSProperties;
|
|
802
|
+
sm: React.CSSProperties;
|
|
803
|
+
xs: React.CSSProperties;
|
|
804
|
+
}
|
|
805
|
+
interface TypographyVariantsOptions extends TypographyVariantsOptions {
|
|
806
|
+
xxxl?: React.CSSProperties;
|
|
807
|
+
xxl?: React.CSSProperties;
|
|
808
|
+
xl?: React.CSSProperties;
|
|
809
|
+
lg?: React.CSSProperties;
|
|
810
|
+
md?: React.CSSProperties;
|
|
811
|
+
sm?: React.CSSProperties;
|
|
812
|
+
xs?: React.CSSProperties;
|
|
813
|
+
}
|
|
814
|
+
interface ThemeOptions extends ThemeOptions {
|
|
815
|
+
custom?: {
|
|
816
|
+
palette?: {
|
|
817
|
+
black?: string;
|
|
818
|
+
white?: string;
|
|
819
|
+
neutral?: ColorRange;
|
|
820
|
+
neutralAlpha?: ColorRangeAlpha;
|
|
821
|
+
purple?: ColorRange;
|
|
822
|
+
red?: ColorRange;
|
|
823
|
+
peach?: ColorRange;
|
|
824
|
+
yellow?: ColorRange;
|
|
825
|
+
blue?: ColorRange;
|
|
826
|
+
green?: ColorRange;
|
|
827
|
+
icon?: {
|
|
828
|
+
primary?: string;
|
|
829
|
+
secondary?: string;
|
|
830
|
+
disabled?: string;
|
|
831
|
+
primaryInverted?: string;
|
|
832
|
+
secondaryInverted?: string;
|
|
833
|
+
disabledInverted?: string;
|
|
834
|
+
};
|
|
835
|
+
interaction?: {
|
|
836
|
+
none?: string;
|
|
837
|
+
hover?: string;
|
|
838
|
+
press?: string;
|
|
839
|
+
};
|
|
840
|
+
stroke?: {
|
|
841
|
+
default?: string;
|
|
842
|
+
focus?: string;
|
|
843
|
+
disabled?: string;
|
|
844
|
+
};
|
|
845
|
+
surface?: {
|
|
846
|
+
default?: string;
|
|
847
|
+
sunken?: string;
|
|
848
|
+
raised?: string;
|
|
849
|
+
overlay?: string;
|
|
850
|
+
scrim?: string;
|
|
851
|
+
};
|
|
852
|
+
text?: {
|
|
853
|
+
primary?: string;
|
|
854
|
+
secondary?: string;
|
|
855
|
+
placeholder?: string;
|
|
856
|
+
disabled?: string;
|
|
857
|
+
primaryInverted?: string;
|
|
858
|
+
secondaryInverted?: string;
|
|
859
|
+
placeholderInverted?: string;
|
|
860
|
+
disabledInverted?: string;
|
|
861
|
+
success?: string;
|
|
862
|
+
error?: string;
|
|
863
|
+
};
|
|
864
|
+
input?: {
|
|
865
|
+
default?: string;
|
|
866
|
+
disabled?: string;
|
|
867
|
+
};
|
|
868
|
+
};
|
|
869
|
+
margin?: {
|
|
870
|
+
none?: number;
|
|
871
|
+
xs?: number;
|
|
872
|
+
sm?: number;
|
|
873
|
+
md?: number;
|
|
874
|
+
lg?: number;
|
|
875
|
+
xl?: number;
|
|
876
|
+
xxl?: number;
|
|
877
|
+
xxxl?: number;
|
|
878
|
+
};
|
|
879
|
+
padding?: {
|
|
880
|
+
none?: number;
|
|
881
|
+
xs?: number;
|
|
882
|
+
sm?: number;
|
|
883
|
+
md?: number;
|
|
884
|
+
lg?: number;
|
|
885
|
+
xl?: number;
|
|
886
|
+
};
|
|
887
|
+
radius?: {
|
|
888
|
+
none?: number;
|
|
889
|
+
xs?: number;
|
|
890
|
+
sm?: number;
|
|
891
|
+
md?: number;
|
|
892
|
+
lg?: number;
|
|
893
|
+
xl?: number;
|
|
894
|
+
round?: number;
|
|
895
|
+
};
|
|
896
|
+
elevation?: {
|
|
897
|
+
raised?: string;
|
|
898
|
+
overlay?: string;
|
|
899
|
+
};
|
|
900
|
+
elevationFilter?: {
|
|
901
|
+
raised?: string;
|
|
902
|
+
overlay?: string;
|
|
903
|
+
};
|
|
904
|
+
easing?: {
|
|
905
|
+
default?: string;
|
|
906
|
+
};
|
|
907
|
+
boxShadow?: {
|
|
908
|
+
input?: {
|
|
909
|
+
focus?: string;
|
|
910
|
+
handle?: string;
|
|
911
|
+
};
|
|
912
|
+
};
|
|
913
|
+
typography?: {
|
|
914
|
+
headline?: {
|
|
915
|
+
xs?: string;
|
|
916
|
+
sm?: string;
|
|
917
|
+
md?: string;
|
|
918
|
+
lg?: string;
|
|
919
|
+
xl?: string;
|
|
920
|
+
xxl?: string;
|
|
921
|
+
xxxl?: string;
|
|
922
|
+
};
|
|
923
|
+
body?: {
|
|
924
|
+
xs?: string;
|
|
925
|
+
sm?: string;
|
|
926
|
+
md?: string;
|
|
927
|
+
lg?: string;
|
|
928
|
+
xl?: string;
|
|
929
|
+
xxl?: string;
|
|
930
|
+
xxxl?: string;
|
|
931
|
+
};
|
|
932
|
+
};
|
|
933
|
+
};
|
|
934
|
+
}
|
|
935
|
+
interface Theme extends Theme {
|
|
936
|
+
custom: CustomTheme;
|
|
937
|
+
margin: {
|
|
938
|
+
0: number;
|
|
939
|
+
xs: number;
|
|
940
|
+
sm: number;
|
|
941
|
+
md: number;
|
|
942
|
+
lg: number;
|
|
943
|
+
xl: number;
|
|
944
|
+
xxl: number;
|
|
945
|
+
xxxl: number;
|
|
946
|
+
};
|
|
947
|
+
padding: {
|
|
948
|
+
0: number;
|
|
949
|
+
xs: number;
|
|
950
|
+
sm: number;
|
|
951
|
+
md: number;
|
|
952
|
+
lg: number;
|
|
953
|
+
xl: number;
|
|
954
|
+
};
|
|
955
|
+
radius: {
|
|
956
|
+
0: number;
|
|
957
|
+
xs: number;
|
|
958
|
+
sm: number;
|
|
959
|
+
md: number;
|
|
960
|
+
lg: number;
|
|
961
|
+
xl: number;
|
|
962
|
+
round: number;
|
|
963
|
+
};
|
|
964
|
+
}
|
|
965
|
+
}
|
|
966
|
+
declare module '@mui/material/Typography' {
|
|
967
|
+
interface TypographyPropsVariantOverrides extends TypographyPropsVariantOverrides {
|
|
968
|
+
xxxl: true;
|
|
969
|
+
xxl: true;
|
|
970
|
+
xl: true;
|
|
971
|
+
lg: true;
|
|
972
|
+
md: true;
|
|
973
|
+
sm: true;
|
|
974
|
+
xs: true;
|
|
975
|
+
}
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
export { AnnualController, type AnnualControllerProps, AuthContainerSurface, type AuthContainerSurfaceProps, AuthFormHeader, type AuthFormHeaderProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Button, type ButtonProps, CheckboxGroup as CheckBoxGroup, Checkbox, type CheckboxGroupProps, type CheckboxProps, ColorBackgroundContainer, type ColorBackgroundContainerProps, DEFAULT_MAX_INPUT_LENGTH, Differential, type DifferentialProps, DragAndDropRanking, type DragAndDropRankingProps, type FieldType, type FieldTypes, FormControlLabel, FormGenerator, type FormGeneratorConfig, type FormGeneratorHandler, GridOverlay, type GridOverlayProps, Icon, IconButton, IconButtonGroup, InputLabel, InputLabelHelp, type InputLabelHelpProps, type InputLabelProps, Likert, type LikertProps, Link, type LinkProps, Loader, type LoaderProps, Logo, Pill, type PillProps, PlanFeatureTable, type PlanFeatureTableProps, PlanTierCard, type PlanTierCardProps, PlanTierCardScale, type PlanTierCardScaleProps, Portal, type PortalProps, PoweredByWatermarkLogo, Progress, type ProgressProps, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Select, type SelectProps, Slider, type SliderProps, SortableList, type SortableListProps, StarRating, type StarRatingProps, Surface, type SurfaceProps, Switch, type SwitchProps, Textarea as TextArea, TextBarDivider, type TextBarDividerProps, TextField, type TextFieldProps, type TextareaProps, ThemeProvider, TickGroup, type TickGroupProps, Tooltip, type TooltipProps, Typography, type TypographyProps, chooseArticle, defaultInputValidation, emailValidation, passwordValidation };
|