glints-aries 4.0.189 → 4.0.190

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.
@@ -13,10 +13,11 @@ export { ButtonGroup, ButtonGroupProps } from './ButtonGroup';
13
13
  export { Divider } from './Divider';
14
14
  export { Icon, IconProps } from './Icon';
15
15
  export { IndexTable, IndexTableProps, useIndexResourceState, } from './IndexTable';
16
- export { Pagination, SimplePagination, PaginationProps } from './Pagination';
16
+ export { Pagination, PaginationProps, SimplePagination } from './Pagination';
17
17
  export { Popover, PopoverProps } from './Popover';
18
18
  export { RadioButton, RadioButtonProps } from './RadioButton';
19
19
  export { Tab, TabModel, TabProps, Tabs, TabsProps } from './Tabs';
20
20
  export { Tag, TagProps } from './Tag';
21
+ export { TextInput, TextInputProps } from './TextInput';
21
22
  export { Typography, TypographyProps } from './Typography';
22
23
  export { Breakpoints, BorderRadius, Colors, DropShadow, Fonts, Spacing };
package/es/@next/index.js CHANGED
@@ -14,10 +14,11 @@ export { ButtonGroup, ButtonGroupProps } from './ButtonGroup';
14
14
  export { Divider } from './Divider';
15
15
  export { Icon, IconProps } from './Icon';
16
16
  export { IndexTable, IndexTableProps, useIndexResourceState } from './IndexTable';
17
- export { Pagination, SimplePagination, PaginationProps } from './Pagination';
17
+ export { Pagination, PaginationProps, SimplePagination } from './Pagination';
18
18
  export { Popover, PopoverProps } from './Popover';
19
19
  export { RadioButton, RadioButtonProps } from './RadioButton';
20
20
  export { Tab, TabModel, TabProps, Tabs, TabsProps } from './Tabs';
21
21
  export { Tag, TagProps } from './Tag';
22
+ export { TextInput, TextInputProps } from './TextInput';
22
23
  export { Typography, TypographyProps } from './Typography';
23
24
  export { Breakpoints, BorderRadius, Colors, DropShadow, Fonts, Spacing };
@@ -13,10 +13,11 @@ export { ButtonGroup, ButtonGroupProps } from './ButtonGroup';
13
13
  export { Divider } from './Divider';
14
14
  export { Icon, IconProps } from './Icon';
15
15
  export { IndexTable, IndexTableProps, useIndexResourceState, } from './IndexTable';
16
- export { Pagination, SimplePagination, PaginationProps } from './Pagination';
16
+ export { Pagination, PaginationProps, SimplePagination } from './Pagination';
17
17
  export { Popover, PopoverProps } from './Popover';
18
18
  export { RadioButton, RadioButtonProps } from './RadioButton';
19
19
  export { Tab, TabModel, TabProps, Tabs, TabsProps } from './Tabs';
20
20
  export { Tag, TagProps } from './Tag';
21
+ export { TextInput, TextInputProps } from './TextInput';
21
22
  export { Typography, TypographyProps } from './Typography';
22
23
  export { Breakpoints, BorderRadius, Colors, DropShadow, Fonts, Spacing };
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
 
3
3
  exports.__esModule = true;
4
- exports.useIndexResourceState = exports.useAlert = exports.TypographyProps = exports.Typography = exports.TagProps = exports.Tag = exports.TabsProps = exports.Tabs = exports.TabProps = exports.TabModel = exports.Tab = exports.Spacing = exports.SimplePagination = exports.RadioButtonProps = exports.RadioButton = exports.PrimaryButton = exports.PopoverProps = exports.Popover = exports.PaginationProps = exports.Pagination = exports.OutlineMonochromeButton = exports.OutlineButton = exports.IndexTableProps = exports.IndexTable = exports.IconProps = exports.Icon = exports.Fonts = exports.DropShadow = exports.Divider = exports.DestructiveButton = exports.Colors = exports.ButtonProps = exports.ButtonGroupProps = exports.ButtonGroup = exports.Button = exports.Breakpoints = exports.BorderRadius = exports.BannerProps = exports.Banner = exports.BadgeProps = exports.Badge = exports.AvatarProps = exports.Avatar = exports.AlertWithProvider = exports.AlertProvider = exports.AlertProps = exports.AlertContextProps = exports.AlertContext = exports.Alert = void 0;
4
+ exports.useIndexResourceState = exports.useAlert = exports.TypographyProps = exports.Typography = exports.TextInputProps = exports.TextInput = exports.TagProps = exports.Tag = exports.TabsProps = exports.Tabs = exports.TabProps = exports.TabModel = exports.Tab = exports.Spacing = exports.SimplePagination = exports.RadioButtonProps = exports.RadioButton = exports.PrimaryButton = exports.PopoverProps = exports.Popover = exports.PaginationProps = exports.Pagination = exports.OutlineMonochromeButton = exports.OutlineButton = exports.IndexTableProps = exports.IndexTable = exports.IconProps = exports.Icon = exports.Fonts = exports.DropShadow = exports.Divider = exports.DestructiveButton = exports.Colors = exports.ButtonProps = exports.ButtonGroupProps = exports.ButtonGroup = exports.Button = exports.Breakpoints = exports.BorderRadius = exports.BannerProps = exports.Banner = exports.BadgeProps = exports.Badge = exports.AvatarProps = exports.Avatar = exports.AlertWithProvider = exports.AlertProvider = exports.AlertProps = exports.AlertContextProps = exports.AlertContext = exports.Alert = void 0;
5
5
  var BorderRadius = _interopRequireWildcard(require("./utilities/borderRadius"));
6
6
  exports.BorderRadius = BorderRadius;
7
7
  var Breakpoints = _interopRequireWildcard(require("./utilities/breakpoints"));
@@ -52,8 +52,8 @@ exports.IndexTableProps = _IndexTable.IndexTableProps;
52
52
  exports.useIndexResourceState = _IndexTable.useIndexResourceState;
53
53
  var _Pagination = require("./Pagination");
54
54
  exports.Pagination = _Pagination.Pagination;
55
- exports.SimplePagination = _Pagination.SimplePagination;
56
55
  exports.PaginationProps = _Pagination.PaginationProps;
56
+ exports.SimplePagination = _Pagination.SimplePagination;
57
57
  var _Popover = require("./Popover");
58
58
  exports.Popover = _Popover.Popover;
59
59
  exports.PopoverProps = _Popover.PopoverProps;
@@ -69,6 +69,9 @@ exports.TabsProps = _Tabs.TabsProps;
69
69
  var _Tag = require("./Tag");
70
70
  exports.Tag = _Tag.Tag;
71
71
  exports.TagProps = _Tag.TagProps;
72
+ var _TextInput = require("./TextInput");
73
+ exports.TextInput = _TextInput.TextInput;
74
+ exports.TextInputProps = _TextInput.TextInputProps;
72
75
  var _Typography = require("./Typography");
73
76
  exports.Typography = _Typography.Typography;
74
77
  exports.TypographyProps = _Typography.TypographyProps;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glints-aries",
3
- "version": "4.0.189",
3
+ "version": "4.0.190",
4
4
  "description": "Glints ui-kit for frontend",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./es/index.js",