@mackin.com/styleguide 9.0.0-beta.1 → 9.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +60 -78
- package/index.js +855 -974
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -29,40 +29,24 @@ interface AccordianProps {
|
|
|
29
29
|
declare const Accordian: (props: AccordianProps) => JSX.Element;
|
|
30
30
|
declare const useAccordianState: (count: number, openIndex?: number | undefined) => [boolean[], (index: number, open: boolean) => void];
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
interface AutocompleteProps<T extends AutocompleteValue> {
|
|
38
|
-
value: T | undefined;
|
|
39
|
-
round?: boolean;
|
|
40
|
-
rightControl?: JSX.Element;
|
|
41
|
-
placeholder?: string;
|
|
42
|
-
id?: string;
|
|
43
|
-
disabled?: boolean;
|
|
32
|
+
declare type BaseInputProps$1 = Omit<TextInputProps, 'value' | 'className' | 'wrapperClassName' | 'type' | 'showErrorDisplay'>;
|
|
33
|
+
interface AutocompleteProps extends BaseInputProps$1 {
|
|
34
|
+
value: string | undefined;
|
|
35
|
+
options: string[];
|
|
36
|
+
/** Applied to the Autocomplete wrapper. */
|
|
44
37
|
className?: string;
|
|
38
|
+
inputWrapperClassName?: string;
|
|
45
39
|
inputClassName?: string;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
40
|
+
listClassName?: string;
|
|
41
|
+
listItemClassName?: string;
|
|
42
|
+
listItemButtonClassName?: string;
|
|
49
43
|
/** Limits what will be show in the autocomplete options. Default is 7. */
|
|
50
44
|
maxShownValues?: number;
|
|
51
|
-
/** The minimum characters before 'getOptions' is called. No default. */
|
|
52
|
-
minChars?: number;
|
|
53
|
-
inputAriaAttributes?: React.AriaAttributes;
|
|
54
|
-
/** Defaults to 0ms. */
|
|
55
|
-
getOptionsDebounceMs?: number;
|
|
56
|
-
autoFocus?: boolean;
|
|
57
45
|
/** Will enable scrolling in the results list. */
|
|
58
46
|
allowScroll?: boolean;
|
|
59
|
-
|
|
60
|
-
getOptions: (value: string) => Promise<T[]>;
|
|
61
|
-
onPick: (value: T) => void;
|
|
62
|
-
onKeyPress?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
63
|
-
onKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
47
|
+
onPick: (value: string | undefined) => void;
|
|
64
48
|
}
|
|
65
|
-
declare const Autocomplete:
|
|
49
|
+
declare const Autocomplete: (p: AutocompleteProps) => JSX.Element;
|
|
66
50
|
|
|
67
51
|
/** @deprecated Use Backdrop2 going forward. */
|
|
68
52
|
declare const Backdrop$1: (props: {
|
|
@@ -166,12 +150,11 @@ interface ConfirmModalProps {
|
|
|
166
150
|
}
|
|
167
151
|
declare const ConfirmModal: (props: ConfirmModalProps) => JSX.Element;
|
|
168
152
|
|
|
169
|
-
interface CopyButtonProps {
|
|
153
|
+
interface CopyButtonProps extends Omit<ButtonProps, 'variant' | 'children'> {
|
|
170
154
|
/** HTML selector of the target input to copy from. */
|
|
171
155
|
selector: string;
|
|
172
|
-
title?: string;
|
|
173
156
|
}
|
|
174
|
-
declare const CopyButton:
|
|
157
|
+
declare const CopyButton: React.ForwardRefExoticComponent<Pick<CopyButtonProps, "round" | "rightIcon" | "leftIcon" | "iconBlock" | "small" | "readOnly" | "waiting" | "enforceMinWidth" | "controlAlign" | "key" | "autoFocus" | "disabled" | "form" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "selector"> & React.RefAttributes<HTMLButtonElement>>;
|
|
175
158
|
|
|
176
159
|
declare const Divider: (p: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHRElement>, HTMLHRElement>) => JSX.Element;
|
|
177
160
|
|
|
@@ -340,50 +323,6 @@ interface DateInputProps extends BaseProps$3 {
|
|
|
340
323
|
}
|
|
341
324
|
declare const DateInput: React.ForwardRefExoticComponent<DateInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
342
325
|
|
|
343
|
-
declare type InputValue = string | number | undefined;
|
|
344
|
-
declare type InputType = 'text' | 'number' | 'textarea' | 'date' | 'password' | 'url' | 'email';
|
|
345
|
-
interface InputProps {
|
|
346
|
-
type: InputType;
|
|
347
|
-
name?: string;
|
|
348
|
-
style?: React.CSSProperties;
|
|
349
|
-
value?: InputValue;
|
|
350
|
-
placeholder?: string;
|
|
351
|
-
id?: string;
|
|
352
|
-
disabled?: boolean;
|
|
353
|
-
className?: string;
|
|
354
|
-
inputClassName?: string;
|
|
355
|
-
readOnly?: boolean;
|
|
356
|
-
required?: boolean;
|
|
357
|
-
/** Defaults to 250ms */
|
|
358
|
-
debounceMs?: number;
|
|
359
|
-
/** Defaults to 'off'. */
|
|
360
|
-
autoComplete?: string;
|
|
361
|
-
autoFocus?: boolean;
|
|
362
|
-
inputAriaAttributes?: React.AriaAttributes;
|
|
363
|
-
/** Called with debounce when the input changes. */
|
|
364
|
-
onChange?: (value: InputValue, name?: string, event?: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
365
|
-
onFocus?: (event: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
366
|
-
onBlur?: (event: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
367
|
-
onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
368
|
-
onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
369
|
-
onKeyPress?: (event: React.KeyboardEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
370
|
-
/** Defaults to 100. Ignored for type=number and type=date. */
|
|
371
|
-
maxLength?: number;
|
|
372
|
-
/** Ignored for type=textarea. */
|
|
373
|
-
rightControl?: JSX.Element;
|
|
374
|
-
/** Ignored for type=textarea. */
|
|
375
|
-
round?: boolean;
|
|
376
|
-
/** Only used for type=number and type=date. If type=date, this is the ms from Date.valueOf(). */
|
|
377
|
-
min?: number;
|
|
378
|
-
/** Only used for type=number. If type=date, this is the ms from Date.valueOf(). */
|
|
379
|
-
max?: number;
|
|
380
|
-
/** Only used for type=textarea. Defaults to 10. */
|
|
381
|
-
rows?: number;
|
|
382
|
-
pattern?: string;
|
|
383
|
-
}
|
|
384
|
-
/** @deprecated Use DateInput, NumberInput, or TextInput instead. */
|
|
385
|
-
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<any>>;
|
|
386
|
-
|
|
387
326
|
declare type BaseProps$2 = Omit<BaseInputProps, 'type' | 'value' | 'min' | 'max' | 'step' | 'maxLength' | 'error' | 'pattern'> & Omit<ValidationMessageProps, 'pattern'>;
|
|
388
327
|
interface NumberInputProps extends BaseProps$2 {
|
|
389
328
|
value?: number;
|
|
@@ -467,8 +406,6 @@ interface ModalProps {
|
|
|
467
406
|
__debug?: boolean;
|
|
468
407
|
onClick?: () => void;
|
|
469
408
|
}
|
|
470
|
-
/** Add to fixed positioned elements so their contents do not jump around when scrolling is disabled. */
|
|
471
|
-
declare const modalScrollFixClassName = "modal-scroll-fix";
|
|
472
409
|
declare const Modal: (p: ModalProps) => React__default.ReactPortal | null;
|
|
473
410
|
|
|
474
411
|
declare const Nav: (props: {
|
|
@@ -1061,7 +998,10 @@ interface ToggleButtonGroupProps {
|
|
|
1061
998
|
}
|
|
1062
999
|
declare const ToggleButtonGroup: (props: ToggleButtonGroupProps) => JSX.Element;
|
|
1063
1000
|
|
|
1064
|
-
|
|
1001
|
+
interface TogglePasswordInputProps extends Omit<TextInputProps, 'type' | 'rightControl'> {
|
|
1002
|
+
onVisibilityChanged?: (visible: boolean) => void;
|
|
1003
|
+
}
|
|
1004
|
+
declare const TogglePasswordInput: React.ForwardRefExoticComponent<Pick<TogglePasswordInputProps, "value" | "round" | "wrapperClassName" | "showErrorDisplay" | "key" | "accept" | "alt" | "autoComplete" | "autoFocus" | "capture" | "checked" | "crossOrigin" | "disabled" | "enterKeyHint" | "form" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "height" | "list" | "maxLength" | "minLength" | "multiple" | "name" | "pattern" | "placeholder" | "readOnly" | "required" | "size" | "src" | "width" | "onChange" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "trim" | "emptyString" | "onValueChange" | "customError" | "patternErrorMessage" | "onVisibilityChanged"> & React.RefAttributes<HTMLInputElement>>;
|
|
1065
1005
|
|
|
1066
1006
|
declare const WaitingIndicator: (p: {
|
|
1067
1007
|
show: boolean;
|
|
@@ -1147,4 +1087,46 @@ interface TabContainerProps {
|
|
|
1147
1087
|
}
|
|
1148
1088
|
declare const TabContainer: (p: TabContainerProps) => JSX.Element;
|
|
1149
1089
|
|
|
1150
|
-
|
|
1090
|
+
/** Add to fixed positioned elements so their contents do not jump around when scrolling is disabled. */
|
|
1091
|
+
declare const modalScrollFixClassName = "modal-scroll-fix";
|
|
1092
|
+
|
|
1093
|
+
interface AutoCompleteConfig {
|
|
1094
|
+
/** Number of characters entered before getOptions is called. Defaults to 3. */
|
|
1095
|
+
minChars?: number;
|
|
1096
|
+
/** Number of ms to debounce prior to calling getOptions on change. Defaults to no debounce. */
|
|
1097
|
+
debounceMs?: number;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
/** Extracted logic around autocomplete functionality for Autocomplete.tsx. */
|
|
1101
|
+
declare class AutocompleteController {
|
|
1102
|
+
constructor(getOptions: (value: string | undefined) => Promise<string[]>, config?: AutoCompleteConfig);
|
|
1103
|
+
get value(): string | undefined;
|
|
1104
|
+
get options(): string[];
|
|
1105
|
+
onChange(newValue: string | undefined): Promise<void>;
|
|
1106
|
+
onPick(newValue: string | undefined): void;
|
|
1107
|
+
private readonly getOptions;
|
|
1108
|
+
private readonly _minChars;
|
|
1109
|
+
private _value;
|
|
1110
|
+
private _options;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
/** Extracted logic around autocomplete functionality for Autocomplete.tsx that supports Entity (id/name) mapping. */
|
|
1114
|
+
declare class AutocompleteEntityController<T extends string | number> {
|
|
1115
|
+
constructor(getOptions: (value: string | undefined) => Promise<Entity<T>[]>, config?: AutoCompleteConfig);
|
|
1116
|
+
get entity(): Entity<T> | undefined;
|
|
1117
|
+
get entities(): Entity<T>[];
|
|
1118
|
+
get value(): string | undefined;
|
|
1119
|
+
get options(): string[];
|
|
1120
|
+
onChange(newValue: string | undefined): Promise<void>;
|
|
1121
|
+
onPick(newValue: string | undefined): void;
|
|
1122
|
+
private _ctrl;
|
|
1123
|
+
private _pickedEntity;
|
|
1124
|
+
private _options;
|
|
1125
|
+
private trySyncCtrlOptions;
|
|
1126
|
+
}
|
|
1127
|
+
interface Entity<T extends string | number> {
|
|
1128
|
+
id: T;
|
|
1129
|
+
name: string;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
export { Accordian, AccordianProps, Alignment, Autocomplete, AutocompleteController, AutocompleteEntityController, AutocompleteProps, Backdrop$1 as Backdrop, Backdrop as Backdrop2, BoundMemoryPager, BoundStaticPager, Button, ButtonProps, Calendar, CalendarProps, Checkbox, CheckboxProps, ConfirmModal, ConfirmModalProps, CopyButton, DateInput, DateInputProps, Divider, ErrorModal, FileUploader, Form, FormColumnRow, FormFlexRow, FormProps, GlobalStyles, Header, Highlight, ICONS, Icon, Image, ImageProps, InfoPanel, InfoTip, InfoTipProps, ItemPager, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, MackinTheme, Modal, ModalProps, Nav, NormalizeCss, NumberInput, NumberInputProps, OmniLink, OmniLinkProps, PagedResult, Pager, PagerProps, Picker, PickerOption, PickerProps, PickerValue, Popover, ProgressBar, ProgressBarProps, SearchBox, SearchBoxProps, Slider, SliderProps, SliderValue, TabContainer, TabContainerProps, TabHeader, TabHeaderProps, TabLocker, Table, Td, TdCurrency, TdNumber, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, Th, ThSort, ThemeProvider, ThemeRenderer, ToggleButton, ToggleButtonGroup, ToggleButtonGroupProps, ToggleButtonProps, TogglePasswordInput, Tr, WaitingIndicator, calcDynamicThemeProps, defaultTheme, enumToEntities, getCurrencyDisplay, getFileSizeDisplay, modalScrollFixClassName, useAccordianState, useBooleanChanged, useIgnoreMount, useMediaQuery, useScrollbarSize, useThemeSafely, useWaiting };
|