@agilekit/ui 0.0.445-alpha.0 → 0.0.447-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.
Files changed (63) hide show
  1. package/lib/index.js +1 -1
  2. package/lib/src/components/ActionList/ActionList.styles.d.ts +1 -1
  3. package/lib/src/components/ActionList/components/Item/Item.d.ts +1 -1
  4. package/lib/src/components/ActionList/components/Section/Section.d.ts +1 -1
  5. package/lib/src/components/Alert/Alert.styles.d.ts +1 -1
  6. package/lib/src/components/Avatar/Avatar.styles.d.ts +1 -1
  7. package/lib/src/components/Backdrop/Backdrop.d.ts +1 -1
  8. package/lib/src/components/Backdrop/Backdrop.styles.d.ts +1 -1
  9. package/lib/src/components/Button/Button.d.ts +1 -1
  10. package/lib/src/components/Button/stories/Button.dev.stories.d.ts +1 -1
  11. package/lib/src/components/Button/stories/Button.stories.d.ts +1 -1
  12. package/lib/src/components/Checkbox/Checkbox.d.ts +1 -1
  13. package/lib/src/components/Checkbox/Checkbox.styles.d.ts +1 -1
  14. package/lib/src/components/Checkbox/stories/Checkbox.stories.d.ts +1 -1
  15. package/lib/src/components/Choice/Choice.d.ts +2 -2
  16. package/lib/src/components/CollapsibleItem/CollapsibleItem.d.ts +1 -0
  17. package/lib/src/components/Drawer/components/CloseButton/CloseButton.d.ts +1 -1
  18. package/lib/src/components/Drawer/components/Dialog/Dialog.d.ts +1 -1
  19. package/lib/src/components/Drawer/components/Footer/Footer.d.ts +1 -1
  20. package/lib/src/components/Dropdown/Dropdown.d.ts +1 -0
  21. package/lib/src/components/Form/Form.d.ts +1 -1
  22. package/lib/src/components/Grid/components/Row/Row.d.ts +2 -2
  23. package/lib/src/components/Heading/Heading.d.ts +1 -1
  24. package/lib/src/components/Heading/stories/Heading.stories.d.ts +1 -1
  25. package/lib/src/components/Image/Image.d.ts +1 -1
  26. package/lib/src/components/Label/Label.d.ts +1 -1
  27. package/lib/src/components/Labelled/Labelled.d.ts +1 -1
  28. package/lib/src/components/Link/Link.d.ts +2 -1
  29. package/lib/src/components/MultiSelect/MultiSelect.styles.d.ts +1 -1
  30. package/lib/src/components/MultiTextField/MultiTextField.styles.d.ts +1 -1
  31. package/lib/src/components/Navigation/Navigation.d.ts +2 -2
  32. package/lib/src/components/Navigation/components/NavFilter/NavFilter.d.ts +1 -1
  33. package/lib/src/components/Navigation/components/NavFilterItem/NavFilterItem.d.ts +1 -1
  34. package/lib/src/components/OldSelect/OldSelect.d.ts +1 -1
  35. package/lib/src/components/OldTextField/OldTextField.d.ts +1 -1
  36. package/lib/src/components/Pagination/Pagination.d.ts +1 -1
  37. package/lib/src/components/Pagination/components/PageEllipsis/PageEllipsis.d.ts +1 -1
  38. package/lib/src/components/Pagination/components/PageMove/PageMove.d.ts +1 -1
  39. package/lib/src/components/Pagination/components/PageNumber/PageNumber.d.ts +1 -1
  40. package/lib/src/components/Pagination/stories/Pagination.stories.d.ts +1 -1
  41. package/lib/src/components/Portal/Portal.d.ts +1 -1
  42. package/lib/src/components/Select/Select.styles.d.ts +1 -1
  43. package/lib/src/components/Slider/Slider.d.ts +2 -2
  44. package/lib/src/components/Slider/stories/Slider.stories.d.ts +2 -2
  45. package/lib/src/components/Switch/Switch.d.ts +1 -1
  46. package/lib/src/components/Switch/stories/Switch.stories.d.ts +1 -1
  47. package/lib/src/components/TableList/TableList.d.ts +3 -16
  48. package/lib/src/components/TableList/components/Cell/Cell.d.ts +1 -1
  49. package/lib/src/components/TableList/components/ColumnHeader/ColumnHeader.d.ts +1 -1
  50. package/lib/src/components/TableList/components/TableListHead/TableListHead.d.ts +6 -0
  51. package/lib/src/components/TableList/components/TableListRow/TableListRow.d.ts +2 -2
  52. package/lib/src/components/TableList/stories/TableList.stories.d.ts +2 -2
  53. package/lib/src/components/Tabs/Tabs.styles.d.ts +1 -1
  54. package/lib/src/components/Tag/Tag.styles.d.ts +1 -1
  55. package/lib/src/components/TextField/TextField.d.ts +1 -1
  56. package/lib/src/components/TextField/TextField.styles.d.ts +2 -2
  57. package/lib/src/components/TextField/stories/TextField.dev.stories.d.ts +1 -1
  58. package/lib/src/components/TextField/stories/TextField.stories.d.ts +1 -1
  59. package/lib/src/components/TopBar/TopBar.d.ts +1 -1
  60. package/lib/src/components/TopBar/components/UserMenu/UserMenu.d.ts +1 -1
  61. package/lib/src/components/UnstyledLink/UnstyledLink.d.ts +1 -1
  62. package/lib/src/index.d.ts +0 -44
  63. package/package.json +11 -11
@@ -1,24 +1,11 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { BoxProps } from '@material-ui/core';
3
3
  export interface IColumnProps {
4
4
  align?: 'left' | 'center' | 'right' | string;
5
5
  }
6
- interface ITableListProps extends BoxProps {
6
+ export interface ITableListProps extends BoxProps {
7
7
  compact?: boolean;
8
8
  inCard?: boolean;
9
9
  }
10
- interface IRowProps extends React.HTMLAttributes<HTMLDivElement> {
11
- children: React.ReactNode;
12
- }
13
- declare class TableList extends React.Component<ITableListProps, any> {
14
- static defaultProps: {
15
- width: number;
16
- };
17
- static Cell: React.SFC<import("./components/Cell/Cell").ICellProps>;
18
- static ColumnHeader: React.SFC<import("./components/ColumnHeader/ColumnHeader").ICellProps>;
19
- static Head: React.FC;
20
- static Body: React.FC;
21
- static Row: React.FC<IRowProps>;
22
- render(): JSX.Element;
23
- }
10
+ declare const TableList: React.FC<ITableListProps>;
24
11
  export default TableList;
@@ -5,5 +5,5 @@ export interface ICellProps extends IColumnProps, BoxProps {
5
5
  link?: string;
6
6
  align?: string;
7
7
  }
8
- declare const Cell: React.SFC<ICellProps>;
8
+ declare const Cell: React.FC<ICellProps>;
9
9
  export default Cell;
@@ -5,5 +5,5 @@ export interface ICellProps extends IColumnProps, BoxProps {
5
5
  link?: string;
6
6
  align?: string;
7
7
  }
8
- declare const ColumnHeader: React.SFC<ICellProps>;
8
+ declare const ColumnHeader: React.FC<ICellProps>;
9
9
  export default ColumnHeader;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface TableListHeadProps {
3
+ children: React.ReactNode;
4
+ }
5
+ declare const TableListHead: React.FC<TableListHeadProps>;
6
+ export default TableListHead;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- interface IRowProps extends React.HTMLAttributes<HTMLDivElement> {
2
+ interface TableListRowProps extends React.HTMLAttributes<HTMLDivElement> {
3
3
  children: React.ReactNode;
4
4
  }
5
- declare const TableListRow: React.FC<IRowProps>;
5
+ declare const TableListRow: React.FC<TableListRowProps>;
6
6
  export default TableListRow;
@@ -1,7 +1,7 @@
1
- import { TableList } from '../../..';
1
+ import React from 'react';
2
2
  declare const _default: {
3
3
  title: string;
4
- component: typeof TableList;
4
+ component: React.FC<import("../TableList").ITableListProps>;
5
5
  parameters: {
6
6
  docs: {
7
7
  page: (props: any) => JSX.Element;
@@ -1,2 +1,2 @@
1
- export declare const useStylesTabs: (props?: any) => import("@material-ui/styles").ClassNameMap<"outline" | "root" | "pills" | "indicator">;
1
+ export declare const useStylesTabs: (props?: any) => import("@material-ui/styles").ClassNameMap<"outline" | "root" | "indicator" | "pills">;
2
2
  export declare const useStylesTab: (props?: any) => import("@material-ui/styles").ClassNameMap<"outline" | "root" | "selected" | "pills">;
@@ -1,2 +1,2 @@
1
- declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"button" | "color" | "blue" | "green" | "orange" | "purple" | "red" | "solid" | "label" | "root" | "close" | "standard" | "rootClose" | "rootClick" | "rootSmall">;
1
+ declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"button" | "color" | "label" | "solid" | "blue" | "green" | "orange" | "purple" | "red" | "root" | "close" | "standard" | "rootClose" | "rootClick" | "rootSmall">;
2
2
  export default useStyles;
@@ -51,5 +51,5 @@ export interface ITextFieldProps extends React.HTMLAttributes<HTMLInputElement>,
51
51
  format?: string;
52
52
  allowEmptyFormatting?: boolean;
53
53
  }
54
- declare const TextField: React.SFC<ITextFieldProps>;
54
+ declare const TextField: React.FC<ITextFieldProps>;
55
55
  export default TextField;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const TextInputBase: import("react").ComponentType<Pick<import("@material-ui/core").InputBaseProps, "rows" | "id" | "color" | "translate" | "margin" | "hidden" | "style" | "disabled" | "ref" | "slot" | "title" | "className" | "type" | "role" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "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" | "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" | "css" | "innerRef" | "name" | "autoFocus" | "value" | "autoComplete" | "readOnly" | "required" | "fullWidth" | "error" | "inputRef" | "inputProps" | "multiline" | "endAdornment" | "inputComponent" | "renderSuffix" | "rowsMax" | "rowsMin" | "maxRows" | "minRows" | "startAdornment"> & import("@material-ui/core").StyledComponentProps<"input">>;
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" | "disabled" | "fullWidth" | "type" | "error" | "autoComplete" | "autoFocus" | "name" | "readOnly" | "required" | "rows" | "value" | "innerRef" | "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<"helperText" | "secondaryLabel" | "inputBase" | "inputLabel" | "inputLabelFocused" | "asteriskRequired" | "inputContainer" | "inputContainerFocus" | "inputContainerDisabled" | "inputContainerError" | "multilineContainer" | "inputDisabled" | "inputAction" | "inputGroupAppend" | "inputBtn" | "withAppend" | "withIconLeft" | "sideIcon" | "colorPickerButton" | "colorPopover" | "withMask" | "append" | "edgeEnd">;
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 {};
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  declare const _default: {
3
3
  title: string;
4
- component: React.SFC<import("../TextField").ITextFieldProps>;
4
+ component: React.FC<import("../TextField").ITextFieldProps>;
5
5
  parameters: {
6
6
  docs: {
7
7
  page: (props: any) => JSX.Element;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  declare const _default: {
3
3
  title: string;
4
- component: React.SFC<import("../TextField").ITextFieldProps>;
4
+ component: React.FC<import("../TextField").ITextFieldProps>;
5
5
  parameters: {
6
6
  docs: {
7
7
  page: (props: any) => JSX.Element;
@@ -9,7 +9,7 @@ interface ITopBarProps {
9
9
  logo?: any;
10
10
  }
11
11
  declare class TopBar extends React.Component<ITopBarProps> {
12
- static UserMenu: React.SFC<import("./components/UserMenu/UserMenu").IUserMenuProps>;
12
+ static UserMenu: React.FC<import("./components/UserMenu/UserMenu").IUserMenuProps>;
13
13
  static SearchField: typeof SearchField;
14
14
  render(): JSX.Element;
15
15
  }
@@ -7,5 +7,5 @@ export interface IUserMenuProps {
7
7
  open: boolean;
8
8
  onToggle?: () => void;
9
9
  }
10
- declare const UserMenu: React.SFC<IUserMenuProps>;
10
+ declare const UserMenu: React.FC<IUserMenuProps>;
11
11
  export default UserMenu;
@@ -7,5 +7,5 @@ export interface IUnstyledLinkProps extends React.HTMLProps<HTMLAnchorElement> {
7
7
  activeClassName?: string;
8
8
  [key: string]: any;
9
9
  }
10
- declare const UnstyledLink: React.SFC<IUnstyledLinkProps>;
10
+ declare const UnstyledLink: React.FC<IUnstyledLinkProps>;
11
11
  export default UnstyledLink;
@@ -2,53 +2,9 @@ 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
6
  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
7
  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 TopBar } from './components/TopBar/TopBar';
47
- export { default as Tabs } from './components/Tabs/Tabs';
48
- export { default as Tag } from './components/Tag/Tag';
49
- export { default as TextField } from './components/TextField/TextField';
50
8
  export { default as UnstyledLink } from './components/UnstyledLink/UnstyledLink';
51
- export { default as SpinnerCube } from './components/SpinnerCube/SpinnerCube';
52
- export { default as StatusInline } from './components/StatusInline/StatusInline';
53
9
  export { IStepType } from './components/ProgressIndicator/ProgressIndicator';
54
10
  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.445-alpha.0",
3
+ "version": "0.0.447-alpha.0",
4
4
  "description": "Agile's product component library",
5
5
  "author": "Michael de Lima Alves <michaelalves@outlook.com>",
6
6
  "license": "MIT",
@@ -51,10 +51,10 @@
51
51
  "lodash": "^4.17.21",
52
52
  "mdi-material-ui": "6.21.0",
53
53
  "popper.js": "^1.16.0",
54
- "react": "16.13.1",
55
- "react-calendar": "^3.7.0",
54
+ "react": "18.2.0",
55
+ "react-calendar": "^4.0.0",
56
56
  "react-color": "^2.19.3",
57
- "react-dom": "16.13.1",
57
+ "react-dom": "18.2.0",
58
58
  "react-multi-select-component": "^4.2.3",
59
59
  "react-router-dom": "^5.1.2",
60
60
  "react-scripts": "^3.4.3",
@@ -82,10 +82,10 @@
82
82
  "@storybook/react": "^6.4.19",
83
83
  "@storybook/theming": "^6.4.19",
84
84
  "@types/classnames": "^2.3.1",
85
- "@types/jest": "^27.4.1",
86
- "@types/node": "^16.6.1",
87
- "@types/react": "^17.0.40",
88
- "@types/react-dom": "^17.0.13",
85
+ "@types/jest": "^29.5.0",
86
+ "@types/node": "^18.15.3",
87
+ "@types/react": "^18.0.28",
88
+ "@types/react-dom": "^18.0.11",
89
89
  "@typescript-eslint/eslint-plugin": "^5.55.0",
90
90
  "@typescript-eslint/parser": "^5.55.0",
91
91
  "autoprefixer": "^10.4.2",
@@ -121,11 +121,11 @@
121
121
  "tslint-config-prettier": "^1.18.0",
122
122
  "tslint-react": "^5.0.0",
123
123
  "typescript": "5.0.2",
124
- "typescript-plugin-css-modules": "^3.4.0",
124
+ "typescript-plugin-css-modules": "^4.2.3",
125
125
  "webpack": "^5.76.2",
126
126
  "webpack-bundle-analyzer": "^4.8.0",
127
127
  "webpack-cli": "^5.0.1",
128
- "yup": "^0.32.9"
128
+ "yup": "^1.0.2"
129
129
  },
130
130
  "peerDependencies": {
131
131
  "classnames": "*",
@@ -138,5 +138,5 @@
138
138
  "react-router-dom": "*"
139
139
  },
140
140
  "bugs": {},
141
- "gitHead": "fa38820e7fc550335f84bfff995a77f1047e9299"
141
+ "gitHead": "411e37a163dd34b441cfde76f7169ef9e60ba3dc"
142
142
  }