@agilekit/ui 0.0.446-alpha.0 → 0.0.448-alpha.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/lib/index.js +1 -1
- package/lib/src/components/ActionList/ActionList.styles.d.ts +1 -1
- package/lib/src/components/Alert/Alert.styles.d.ts +1 -1
- package/lib/src/components/Avatar/Avatar.styles.d.ts +1 -1
- package/lib/src/components/Backdrop/Backdrop.styles.d.ts +1 -1
- package/lib/src/components/Checkbox/Checkbox.styles.d.ts +1 -1
- package/lib/src/components/Grid/components/Row/Row.d.ts +2 -2
- package/lib/src/components/MultiSelect/MultiSelect.styles.d.ts +1 -1
- package/lib/src/components/MultiTextField/MultiTextField.styles.d.ts +1 -1
- package/lib/src/components/Select/Select.styles.d.ts +1 -1
- package/lib/src/components/Slider/Slider.d.ts +2 -2
- package/lib/src/components/Switch/Switch.d.ts +1 -1
- package/lib/src/components/Tabs/Tabs.styles.d.ts +2 -2
- package/lib/src/components/Tag/Tag.styles.d.ts +1 -1
- package/lib/src/components/TextField/TextField.styles.d.ts +2 -2
- package/lib/src/index.d.ts +0 -50
- package/package.json +2 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"
|
|
1
|
+
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"content" | "actionList" | "actions" | "item" | "itemSelected" | "loader" | "startIcon" | "endIcon" | "divider">;
|
|
2
2
|
export default useStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"
|
|
1
|
+
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"title" | "content" | "alert" | "actions" | "alertContainer" | "alertSmall" | "noShadow" | "alertSmallIcon" | "alertInfo" | "alertSuccess" | "alertDanger" | "alertWarning" | "titleContainer">;
|
|
2
2
|
export default useStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (size: number, borderRadius: number | undefined, boxShadow: number) => import("@material-ui/styles").ClassNameMap<"image" | "
|
|
1
|
+
declare const useStyles: (size: number, borderRadius: number | undefined, boxShadow: number) => import("@material-ui/styles").ClassNameMap<"image" | "avatar" | "iconContainer" | "letter">;
|
|
2
2
|
export default useStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"
|
|
1
|
+
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"@keyframes fade-in" | "backdrop">;
|
|
2
2
|
export default useStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"
|
|
1
|
+
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"input" | "disabled" | "checkbox" | "icon" | "backdrop" | "backdropDisabled" | "checkIcon">;
|
|
2
2
|
export default useStyles;
|
|
@@ -23,8 +23,8 @@ export default class Row extends React.Component<IRowProps, IRowState> {
|
|
|
23
23
|
static propTypes: {
|
|
24
24
|
type: PropTypes.Requireable<"flex">;
|
|
25
25
|
noWrap: PropTypes.Requireable<boolean>;
|
|
26
|
-
align: PropTypes.Requireable<"
|
|
27
|
-
justify: PropTypes.Requireable<"
|
|
26
|
+
align: PropTypes.Requireable<"top" | "bottom" | "middle">;
|
|
27
|
+
justify: PropTypes.Requireable<"center" | "start" | "space-around" | "space-between" | "end">;
|
|
28
28
|
className: PropTypes.Requireable<string>;
|
|
29
29
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
30
30
|
gutter: PropTypes.Requireable<NonNullable<number | object | null | undefined>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"
|
|
1
|
+
declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"select" | "icon" | "containerNotFull" | "asteriskRequired" | "multiselect" | "multiSelectError">;
|
|
2
2
|
export default useSelectStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"
|
|
1
|
+
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"asteriskRequired" | "helperText" | "inputBase" | "inputLabel" | "inputLabelFocused" | "secondaryLabel" | "withFocus">;
|
|
2
2
|
export default useStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"
|
|
1
|
+
declare const useSelectStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"select" | "icon" | "containerNotFull" | "asteriskRequired">;
|
|
2
2
|
export default useSelectStyles;
|
|
@@ -21,9 +21,9 @@ declare const CustomSlider: import("react").ComponentType<Pick<{
|
|
|
21
21
|
track?: false | "normal" | "inverted" | undefined;
|
|
22
22
|
value?: number | number[] | undefined;
|
|
23
23
|
ValueLabelComponent?: import("react").ElementType<import("@material-ui/core/Slider").ValueLabelProps> | undefined;
|
|
24
|
-
valueLabelDisplay?: "
|
|
24
|
+
valueLabelDisplay?: "on" | "off" | "auto" | undefined;
|
|
25
25
|
valueLabelFormat?: string | ((value: number, index: number) => import("react").ReactNode) | undefined;
|
|
26
26
|
} & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core/Slider").SliderTypeMap<{}, "span">> & Pick<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
27
27
|
ref?: ((instance: HTMLSpanElement | null) => void) | import("react").RefObject<HTMLSpanElement> | null | undefined;
|
|
28
|
-
}, "
|
|
28
|
+
}, "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "slot" | "spellCheck" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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-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" | "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" | "onResize" | "onResizeCapture" | "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" | "ref" | "key">, "color" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "ref" | "track" | "disabled" | "max" | "min" | "name" | "step" | "value" | "key" | "scale" | "innerRef" | "orientation" | "getAriaLabel" | "getAriaValueText" | "marks" | "onChangeCommitted" | "ThumbComponent" | "ValueLabelComponent" | "valueLabelDisplay" | "valueLabelFormat"> & import("@material-ui/core").StyledComponentProps<"track" | "active" | "root" | "thumb" | "valueLabel" | "rail">>;
|
|
29
29
|
export default CustomSlider;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const CustomSwitch: import("react").ComponentType<Pick<import("@material-ui/core/Switch").SwitchProps, "color" | "
|
|
2
|
+
declare const CustomSwitch: import("react").ComponentType<Pick<import("@material-ui/core/Switch").SwitchProps, "color" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "onResize" | "onResizeCapture" | "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" | "ref" | "form" | "disabled" | "size" | "type" | "action" | "autoFocus" | "checked" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "readOnly" | "required" | "value" | "key" | "icon" | "innerRef" | "inputRef" | "disableFocusRipple" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "inputProps" | "checkedIcon" | "edge"> & import("@material-ui/core").StyledComponentProps<"track" | "checked" | "root" | "thumb" | "switchBase">>;
|
|
3
3
|
export default CustomSwitch;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const useStylesTabs: (props?: any) => import("@material-ui/styles").ClassNameMap<"outline" | "root" | "
|
|
2
|
-
export declare const useStylesTab: (props?: any) => import("@material-ui/styles").ClassNameMap<"
|
|
1
|
+
export declare const useStylesTabs: (props?: any) => import("@material-ui/styles").ClassNameMap<"outline" | "root" | "indicator" | "pills">;
|
|
2
|
+
export declare const useStylesTab: (props?: any) => import("@material-ui/styles").ClassNameMap<"selected" | "outline" | "root" | "pills">;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"button" | "color" | "
|
|
1
|
+
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"button" | "color" | "label" | "close" | "green" | "orange" | "blue" | "purple" | "red" | "solid" | "root" | "standard" | "rootClose" | "rootClick" | "rootSmall">;
|
|
2
2
|
export default useStyles;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const TextInputBase: import("react").ComponentType<Pick<import("@material-ui/core").InputBaseProps, "color" | "
|
|
2
|
+
export declare const TextInputBase: import("react").ComponentType<Pick<import("@material-ui/core").InputBaseProps, "color" | "margin" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "onResize" | "onResizeCapture" | "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" | "ref" | "error" | "disabled" | "type" | "autoComplete" | "autoFocus" | "name" | "readOnly" | "required" | "rows" | "value" | "innerRef" | "fullWidth" | "inputRef" | "inputProps" | "multiline" | "endAdornment" | "inputComponent" | "renderSuffix" | "rowsMax" | "rowsMin" | "maxRows" | "minRows" | "startAdornment"> & import("@material-ui/core").StyledComponentProps<"input">>;
|
|
3
3
|
interface InputLabelStyles {
|
|
4
4
|
inputLabel: any;
|
|
5
5
|
inputLabelFocused: any;
|
|
@@ -11,5 +11,5 @@ interface HelperTextStyles {
|
|
|
11
11
|
}
|
|
12
12
|
export declare const inputLabelStyles: (theme: any) => InputLabelStyles;
|
|
13
13
|
export declare const helperTextStyles: (theme: any) => HelperTextStyles;
|
|
14
|
-
export declare const useTextFieldStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"
|
|
14
|
+
export declare const useTextFieldStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"asteriskRequired" | "helperText" | "inputBase" | "inputContainer" | "inputContainerFocus" | "inputContainerDisabled" | "inputContainerError" | "multilineContainer" | "inputDisabled" | "inputAction" | "inputGroupAppend" | "inputBtn" | "withAppend" | "withIconLeft" | "sideIcon" | "colorPickerButton" | "colorPopover" | "withMask" | "append" | "edgeEnd" | "inputLabel" | "inputLabelFocused" | "secondaryLabel">;
|
|
15
15
|
export {};
|
package/lib/src/index.d.ts
CHANGED
|
@@ -2,58 +2,8 @@ import * as colorManipulator from '@material-ui/core/styles/colorManipulator';
|
|
|
2
2
|
export { makeStyles, useTheme, ThemeProvider, withStyles } from '@material-ui/core/styles';
|
|
3
3
|
export { BoxProps, useMediaQuery, Theme, FormControlLabel, Tooltip, CircularProgress, Table, TableBody, TableCell, TableContainer, TableHead, TablePagination, TableRow, TableSortLabel, Toolbar, Typography, Paper, } from '@material-ui/core';
|
|
4
4
|
export { colorManipulator };
|
|
5
|
-
export { default as ActionList } from './components/ActionList/ActionList';
|
|
6
|
-
export { default as AgileTable } from './components/AgileTable/AgileTable';
|
|
7
|
-
export { default as Alert } from './components/Alert/Alert';
|
|
8
|
-
export { default as AppFrame } from './components/AppFrame/AppFrame';
|
|
9
|
-
export { default as AppProvider } from './components/AppProvider/AppProvider';
|
|
10
|
-
export { default as Avatar } from './components/Avatar/Avatar';
|
|
11
5
|
export { default as Box } from './components/Box/Box';
|
|
12
|
-
export { default as Button } from './components/Button/Button';
|
|
13
|
-
export { default as Breadcrumb } from './components/Breadcrumb/Breadcrumb';
|
|
14
|
-
export { default as Calendar } from './components/Calendar/Calendar';
|
|
15
|
-
export { default as Card } from './components/Card/Card';
|
|
16
|
-
export { default as Checkbox } from './components/Checkbox/Checkbox';
|
|
17
|
-
export { default as Choice } from './components/Choice/Choice';
|
|
18
|
-
export { default as CollapsibleItem } from './components/CollapsibleItem/CollapsibleItem';
|
|
19
|
-
export { default as Col } from './components/Grid/components/Col/Col';
|
|
20
|
-
export { default as Drawer } from './components/Drawer/Drawer';
|
|
21
|
-
export { default as Form } from './components/Form/Form';
|
|
22
|
-
export { default as Heading } from './components/Heading/Heading';
|
|
23
|
-
export { default as Icon } from './components/Icon/Icon';
|
|
24
|
-
export { default as InputFile } from './components/InputFile/InputFile';
|
|
25
|
-
export { default as Label } from './components/Label/Label';
|
|
26
6
|
export { default as Labelled } from './components/Labelled/Labelled';
|
|
27
|
-
export { default as Link } from './components/Link/Link';
|
|
28
|
-
export { default as Loader } from './components/Loader/Loader';
|
|
29
|
-
export { default as Modal } from './components/Modal/Modal';
|
|
30
|
-
export { default as MultiTextField } from './components/MultiTextField/MultiTextField';
|
|
31
|
-
export { default as MultiSelect } from './components/MultiSelect/MultiSelect';
|
|
32
|
-
export { default as Navigation } from './components/Navigation/Navigation';
|
|
33
|
-
export { default as Image } from './components/Image/Image';
|
|
34
|
-
export { default as OutsideClickDetector } from './components/OutsideClickDetector/OutsideClickDetector';
|
|
35
|
-
export { default as Pagination } from './components/Pagination/Pagination';
|
|
36
|
-
export { default as Popover } from './components/Popover/Popover';
|
|
37
|
-
export { default as ProgressIndicator } from './components/ProgressIndicator/ProgressIndicator';
|
|
38
|
-
export { default as Page } from './components/Page/Page';
|
|
39
|
-
export { default as RadioButton } from './components/RadioButton/RadioButton';
|
|
40
|
-
export { default as Row } from './components/Grid/components/Row/Row';
|
|
41
|
-
export { default as Select } from './components/Select/Select';
|
|
42
|
-
export { default as Skeleton } from './components/Skeleton/Skeleton';
|
|
43
|
-
export { default as Slider } from './components/Slider/Slider';
|
|
44
|
-
export { default as Switch } from './components/Switch/Switch';
|
|
45
|
-
export { default as TableList } from './components/TableList/TableList';
|
|
46
|
-
export { default as TableListCell } from './components/TableList/components/Cell/Cell';
|
|
47
|
-
export { default as TableListColumnHeader } from './components/TableList/components/ColumnHeader/ColumnHeader';
|
|
48
|
-
export { default as TableListBody } from './components/TableList/components/TableListBody/TableListBody';
|
|
49
|
-
export { default as TableListHead } from './components/TableList/components/TableListHead/TableListHead';
|
|
50
|
-
export { default as TableListRow } from './components/TableList/components/TableListRow/TableListRow';
|
|
51
|
-
export { default as TopBar } from './components/TopBar/TopBar';
|
|
52
|
-
export { default as Tabs } from './components/Tabs/Tabs';
|
|
53
|
-
export { default as Tag } from './components/Tag/Tag';
|
|
54
|
-
export { default as TextField } from './components/TextField/TextField';
|
|
55
7
|
export { default as UnstyledLink } from './components/UnstyledLink/UnstyledLink';
|
|
56
|
-
export { default as SpinnerCube } from './components/SpinnerCube/SpinnerCube';
|
|
57
|
-
export { default as StatusInline } from './components/StatusInline/StatusInline';
|
|
58
8
|
export { IStepType } from './components/ProgressIndicator/ProgressIndicator';
|
|
59
9
|
export { default as defaultTheme, ThemeAgile, themeObject } from './Theme';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agilekit/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.448-alpha.0",
|
|
4
4
|
"description": "Agile's product component library",
|
|
5
5
|
"author": "Michael de Lima Alves <michaelalves@outlook.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -138,5 +138,5 @@
|
|
|
138
138
|
"react-router-dom": "*"
|
|
139
139
|
},
|
|
140
140
|
"bugs": {},
|
|
141
|
-
"gitHead": "
|
|
141
|
+
"gitHead": "fdbb4111768962ed476b899f57a5d99c6a9ea99b"
|
|
142
142
|
}
|