glints-aries 4.0.303 → 4.0.304
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/es/Display/Swipeable/Swipeable.d.ts +2 -2
- package/es/Display/Tabs/Tabs.d.ts +2 -2
- package/es/Navigation/Breadcrumb/Breadcrumb.d.ts +2 -2
- package/es/index.d.ts +3 -3
- package/es/index.js +3 -0
- package/lib/Display/Swipeable/Swipeable.d.ts +2 -2
- package/lib/Display/Tabs/Tabs.d.ts +2 -2
- package/lib/Navigation/Breadcrumb/Breadcrumb.d.ts +2 -2
- package/lib/index.d.ts +3 -3
- package/lib/index.js +9 -3
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import SwipeableItem from './SwipeableItem';
|
|
3
3
|
/** You can add any number of <Swipeable.Item /> components as children of the Swipeable component, controlling the behavior of an individual swipeable item. */
|
|
4
|
-
export declare const Swipeable:
|
|
5
|
-
declare type
|
|
4
|
+
export declare const Swipeable: SwipeableType;
|
|
5
|
+
declare type SwipeableType = React.FunctionComponent<Props> & {
|
|
6
6
|
Item: typeof SwipeableItem;
|
|
7
7
|
};
|
|
8
8
|
export interface Props {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import TabPane from './TabPane';
|
|
3
|
-
export declare const Tabs:
|
|
3
|
+
export declare const Tabs: TabsType;
|
|
4
4
|
export declare type Alignment = 'horizontal' | 'vertical';
|
|
5
5
|
export declare type Theme = 'blue' | 'black';
|
|
6
6
|
export interface Props {
|
|
@@ -15,7 +15,7 @@ export interface Props {
|
|
|
15
15
|
onTabClick?(tab: React.ReactText | React.ReactNode): void;
|
|
16
16
|
className?: string;
|
|
17
17
|
}
|
|
18
|
-
declare type
|
|
18
|
+
declare type TabsType = React.FunctionComponent<Props> & {
|
|
19
19
|
Pane: typeof TabPane;
|
|
20
20
|
};
|
|
21
21
|
export default Tabs;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { BreadcrumbContainer } from './BreadcrumbStyle';
|
|
3
3
|
import BreadcrumbItem from './BreadcrumbItem';
|
|
4
|
-
export declare const Breadcrumb:
|
|
5
|
-
declare type
|
|
4
|
+
export declare const Breadcrumb: BreadcrumbType;
|
|
5
|
+
declare type BreadcrumbType = React.FunctionComponent<Props> & {
|
|
6
6
|
Item: typeof BreadcrumbItem;
|
|
7
7
|
};
|
|
8
8
|
export declare type Props = React.ComponentPropsWithoutRef<typeof BreadcrumbContainer> & {
|
package/es/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export { default as Accordion } from './Display/Accordion';
|
|
|
2
2
|
export { default as Alert } from './General/Alert';
|
|
3
3
|
export { default as Badge } from './General/Badge';
|
|
4
4
|
export { default as Brand } from './General/Brand';
|
|
5
|
-
export
|
|
5
|
+
export { default as Breadcrumb } from './Navigation/Breadcrumb';
|
|
6
6
|
export { default as Button } from './General/Button';
|
|
7
7
|
export { default as Checkbox } from './Input/Checkbox';
|
|
8
8
|
export { default as Collapsible } from './Display/Collapsible';
|
|
@@ -29,8 +29,8 @@ export { default as Select } from './Input/Select';
|
|
|
29
29
|
export { Select as DownshiftSelect, SubComponents as DownshiftSelectSubComponents, defaultTransformFunction as DownshiftSelectDefaultTransformFunction, itemToString as DownshiftSelectItemToString, defaultEmptyListText } from './Input/DownshiftSelect/Select';
|
|
30
30
|
export type { Item as DownshiftSelectItem, ItemProps as DownshiftSelectItemComponentProps, Props as DownshiftSelectProps } from './Input/DownshiftSelect/Select';
|
|
31
31
|
export { default as Slider } from './Display/Slider';
|
|
32
|
-
export
|
|
33
|
-
export
|
|
32
|
+
export { default as Swipeable } from './Display/Swipeable';
|
|
33
|
+
export { default as Tabs } from './Display/Tabs';
|
|
34
34
|
export { default as Tag } from './General/Tag';
|
|
35
35
|
export { default as Textarea } from './Input/Textarea';
|
|
36
36
|
export { default as TextField } from './Input/TextField';
|
package/es/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export { default as Accordion } from './Display/Accordion';
|
|
|
5
5
|
export { default as Alert } from './General/Alert';
|
|
6
6
|
export { default as Badge } from './General/Badge';
|
|
7
7
|
export { default as Brand } from './General/Brand';
|
|
8
|
+
export { default as Breadcrumb } from './Navigation/Breadcrumb';
|
|
8
9
|
export { default as Button } from './General/Button';
|
|
9
10
|
export { default as Checkbox } from './Input/Checkbox';
|
|
10
11
|
export { default as Collapsible } from './Display/Collapsible';
|
|
@@ -29,6 +30,8 @@ export { default as RadioButton } from './Input/RadioButton';
|
|
|
29
30
|
export { default as Select } from './Input/Select';
|
|
30
31
|
export { Select as DownshiftSelect, SubComponents as DownshiftSelectSubComponents, defaultTransformFunction as DownshiftSelectDefaultTransformFunction, itemToString as DownshiftSelectItemToString, defaultEmptyListText } from './Input/DownshiftSelect/Select';
|
|
31
32
|
export { default as Slider } from './Display/Slider';
|
|
33
|
+
export { default as Swipeable } from './Display/Swipeable';
|
|
34
|
+
export { default as Tabs } from './Display/Tabs';
|
|
32
35
|
export { default as Tag } from './General/Tag';
|
|
33
36
|
export { default as Textarea } from './Input/Textarea';
|
|
34
37
|
export { default as TextField } from './Input/TextField';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import SwipeableItem from './SwipeableItem';
|
|
3
3
|
/** You can add any number of <Swipeable.Item /> components as children of the Swipeable component, controlling the behavior of an individual swipeable item. */
|
|
4
|
-
export declare const Swipeable:
|
|
5
|
-
declare type
|
|
4
|
+
export declare const Swipeable: SwipeableType;
|
|
5
|
+
declare type SwipeableType = React.FunctionComponent<Props> & {
|
|
6
6
|
Item: typeof SwipeableItem;
|
|
7
7
|
};
|
|
8
8
|
export interface Props {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import TabPane from './TabPane';
|
|
3
|
-
export declare const Tabs:
|
|
3
|
+
export declare const Tabs: TabsType;
|
|
4
4
|
export declare type Alignment = 'horizontal' | 'vertical';
|
|
5
5
|
export declare type Theme = 'blue' | 'black';
|
|
6
6
|
export interface Props {
|
|
@@ -15,7 +15,7 @@ export interface Props {
|
|
|
15
15
|
onTabClick?(tab: React.ReactText | React.ReactNode): void;
|
|
16
16
|
className?: string;
|
|
17
17
|
}
|
|
18
|
-
declare type
|
|
18
|
+
declare type TabsType = React.FunctionComponent<Props> & {
|
|
19
19
|
Pane: typeof TabPane;
|
|
20
20
|
};
|
|
21
21
|
export default Tabs;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { BreadcrumbContainer } from './BreadcrumbStyle';
|
|
3
3
|
import BreadcrumbItem from './BreadcrumbItem';
|
|
4
|
-
export declare const Breadcrumb:
|
|
5
|
-
declare type
|
|
4
|
+
export declare const Breadcrumb: BreadcrumbType;
|
|
5
|
+
declare type BreadcrumbType = React.FunctionComponent<Props> & {
|
|
6
6
|
Item: typeof BreadcrumbItem;
|
|
7
7
|
};
|
|
8
8
|
export declare type Props = React.ComponentPropsWithoutRef<typeof BreadcrumbContainer> & {
|
package/lib/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export { default as Accordion } from './Display/Accordion';
|
|
|
2
2
|
export { default as Alert } from './General/Alert';
|
|
3
3
|
export { default as Badge } from './General/Badge';
|
|
4
4
|
export { default as Brand } from './General/Brand';
|
|
5
|
-
export
|
|
5
|
+
export { default as Breadcrumb } from './Navigation/Breadcrumb';
|
|
6
6
|
export { default as Button } from './General/Button';
|
|
7
7
|
export { default as Checkbox } from './Input/Checkbox';
|
|
8
8
|
export { default as Collapsible } from './Display/Collapsible';
|
|
@@ -29,8 +29,8 @@ export { default as Select } from './Input/Select';
|
|
|
29
29
|
export { Select as DownshiftSelect, SubComponents as DownshiftSelectSubComponents, defaultTransformFunction as DownshiftSelectDefaultTransformFunction, itemToString as DownshiftSelectItemToString, defaultEmptyListText } from './Input/DownshiftSelect/Select';
|
|
30
30
|
export type { Item as DownshiftSelectItem, ItemProps as DownshiftSelectItemComponentProps, Props as DownshiftSelectProps } from './Input/DownshiftSelect/Select';
|
|
31
31
|
export { default as Slider } from './Display/Slider';
|
|
32
|
-
export
|
|
33
|
-
export
|
|
32
|
+
export { default as Swipeable } from './Display/Swipeable';
|
|
33
|
+
export { default as Tabs } from './Display/Tabs';
|
|
34
34
|
export { default as Tag } from './General/Tag';
|
|
35
35
|
export { default as Textarea } from './Input/Textarea';
|
|
36
36
|
export { default as TextField } from './Input/TextField';
|
package/lib/index.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
4
|
exports.__esModule = true;
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.defaultEmptyListText = exports.ZaloIcon = exports.YoutubeIcon = exports.WhatsappIcon = exports.WarningSolidIcon = exports.WarningOutlineIcon = exports.WarningIcon = exports.WarningCircleSolidIcon = exports.VimeoIcon = exports.ViewIcon = exports.VideoOffIcon = exports.VideoIcon = exports.UserWrenchIcon = exports.UserIcon = exports.UserCogIcon = exports.UpvoteIcon = exports.UploadIcon = exports.Typography = exports.TwitterIcon = exports.TvPlayIcon = exports.TrashIcon = void 0;
|
|
5
|
+
exports.Greyscale = exports.GraduationHatIcon = exports.GlobeIcon = exports.GlintsContainer = exports.GithubIcon = exports.Gallery = exports.FullScreenIcon = exports.FolderIcon = exports.Flex = exports.FlagIcon = exports.FilterIcon = exports.FileSolidIcon = exports.FilePreviewIcon = exports.FileIcon = exports.FileAlternateIcon = exports.FacebookIcon = exports.EyeSolidIcon = exports.EyeSlashedIcon = exports.EyeIcon = exports.ExternalLinkIcon = exports.ExitFullScreenIcon = exports.ExclamationIcon = exports.EditOutlineIcon = exports.EditIcon = exports.Dropdown = exports.Drawer = exports.DragStripesIcon = exports.DragArrowIcon = exports.DownshiftSelectSubComponents = exports.DownshiftSelectItemToString = exports.DownshiftSelectDefaultTransformFunction = exports.DownshiftSelect = exports.DownloadIcon = exports.DoveIcon = exports.DoubleCheckmarkIcon = exports.DotIcon = exports.DocumentCheckIcon = exports.Divider = exports.DiscountSolidIcon = exports.Device = exports.DeleteIcon = exports.CurrencyIcon = exports.CopyOutlinedIcon = exports.CopyLinkIcon = exports.CopyIcon = exports.ConnectionIcon = exports.CompassIcon = exports.CommunityIcon = exports.Collapsible = exports.CodepenIcon = exports.CloudUploadIcon = exports.CloudDownloadIcon = exports.CloseIcon = exports.CloseCircleSolidIcon = exports.ClockIcon = exports.ClipboardIcon = exports.ClipboardCheckOutlineIcon = exports.CircleIcon = exports.CircleAndCheckIcon = exports.CheckmarkThickIcon = exports.CheckmarkSolidIcon = exports.CheckmarkIcon = exports.ChecklistIcon = exports.Checkbox = exports.CameraIcon = exports.CalendarIcon = exports.Button = exports.BulletListIcon = exports.BuildingSolidIcon = exports.BriefcaseSolidIcon = exports.Breadcrumb = exports.Brand = exports.BoxWithHandleSolidIcon = exports.Box = exports.BookmarkRoundedOutlineIcon = exports.BookmarkOutlineIcon = exports.BookmarkIcon = exports.BellIcon = exports.BehanceIcon = exports.Badge = exports.AttachmentIcon = exports.AsteriskSolidIcon = exports.ArrowUpSolidIcon = exports.ArrowUpIcon = exports.ArrowRoundForwardIcon = exports.ArrowRoundBackIcon = exports.ArrowNextSolidIcon = exports.ArrowNextIcon = exports.ArrowNextDoubleIcon = exports.ArrowDownSolidIcon = exports.ArrowDownIcon = exports.ArrowDownCircleOutlineIcon = exports.ArrowBackSolidIcon = exports.ArrowBackIcon = exports.ArrowBackDoubleIcon = exports.Alert = exports.AddIcon = exports.AddCircleSolidIcon = exports.AddCircleOutlineIcon = exports.Accordion = void 0;
|
|
6
|
+
exports.TicketSolidIcon = exports.ThumbsUpOutlineIcon = exports.ThumbsUpIcon = exports.Textarea = exports.TextField = exports.TelegramIcon = exports.TaskIcon = exports.TagIcon = exports.Tag = exports.Tabs = exports.Swipeable = exports.StarOutlineIcon = exports.StarIcon = exports.StarCircleIcon = exports.StackIcon = exports.SpinnerIcon = exports.SpeechBubbleOutlineIcon = exports.SpeechBubbleIcon = exports.SpeakerIcon = exports.Slider = exports.ShieldCheckIcon = exports.ShareScreenIcon = exports.ShareOutlineIcon = exports.ShareIcon = exports.ShareArrowOutlineIcon = exports.ShareArrowIcon = exports.Shadow = exports.SettingSolidIcon = exports.SettingIcon = exports.SendIcon = exports.Select = exports.SecondaryColor = exports.SearchIcon = exports.ScreenSize = exports.SaveSolidIcon = exports.SalaryIcon = exports.RssIcon = exports.RotateIcon = exports.ResumeOutlineIcon = exports.ReplyIcon = exports.RefreshSolidIcon = exports.RadioButton = exports.QuotationIcon = exports.QuestionOutlineIcon = exports.PuzzleIcon = exports.ProfilePicture = exports.PrimaryColor = exports.PowerIcon = exports.Popover = exports.PointingModal = exports.PhoneNumberInput = exports.PhoneIcon = exports.PdfOutlineIcon = exports.PdfIcon = exports.OnlineIcon = exports.NumberListIcon = exports.NumberInput = exports.NotificationIcon = exports.NameTagIcon = exports.MoreIcon = exports.MoreHorizontalIcon = exports.Modal = exports.MinusIcon = exports.MinusCircleSolidIcon = exports.MinusCircleIcon = exports.MicOffIcon = exports.MicIcon = exports.MessageOutlineIncomingIcon = exports.MessageOutlineIcon = exports.MenuIcon = exports.MenuHalfIcon = exports.MedalIcon = exports.MailSolidIcon = exports.MailIcon = exports.LockSolidIcon = exports.LocationIcon = exports.LoadingIcon = exports.Loading = exports.LinkedinIcon = exports.LineIcon = exports.LightningOutlineIcon = exports.LightbulbIcon = exports.JobSearchIcon = exports.JobOutlineIcon = exports.InstagramIcon = exports.InfoSolidIcon = exports.InfoIcon = exports.ImageIcon = exports.Icon = exports.HourglassIcon = exports.HomeIcon = exports.HelpIcon = exports.HeartSolidIcon = exports.HeartIcon = exports.Heading = exports.HandShakeIcon = exports.HandIcon = exports.GuaranteeIcon = exports.GroupIcon = exports.Grid = void 0;
|
|
7
|
+
exports.defaultEmptyListText = exports.ZaloIcon = exports.YoutubeIcon = exports.WhatsappIcon = exports.WarningSolidIcon = exports.WarningOutlineIcon = exports.WarningIcon = exports.WarningCircleSolidIcon = exports.VimeoIcon = exports.ViewIcon = exports.VideoOffIcon = exports.VideoIcon = exports.UserWrenchIcon = exports.UserIcon = exports.UserCogIcon = exports.UpvoteIcon = exports.UploadIcon = exports.Typography = exports.TwitterIcon = exports.TvPlayIcon = exports.TrashIcon = exports.Tooltip = exports.ToggleSwitch = exports.TieIcon = void 0;
|
|
8
8
|
var _Accordion = _interopRequireDefault(require("./Display/Accordion"));
|
|
9
9
|
exports.Accordion = _Accordion["default"];
|
|
10
10
|
var _Alert = _interopRequireDefault(require("./General/Alert"));
|
|
@@ -13,6 +13,8 @@ var _Badge = _interopRequireDefault(require("./General/Badge"));
|
|
|
13
13
|
exports.Badge = _Badge["default"];
|
|
14
14
|
var _Brand = _interopRequireDefault(require("./General/Brand"));
|
|
15
15
|
exports.Brand = _Brand["default"];
|
|
16
|
+
var _Breadcrumb = _interopRequireDefault(require("./Navigation/Breadcrumb"));
|
|
17
|
+
exports.Breadcrumb = _Breadcrumb["default"];
|
|
16
18
|
var _Button = _interopRequireDefault(require("./General/Button"));
|
|
17
19
|
exports.Button = _Button["default"];
|
|
18
20
|
var _Checkbox = _interopRequireDefault(require("./Input/Checkbox"));
|
|
@@ -63,6 +65,10 @@ exports.DownshiftSelectItemToString = _Select2.itemToString;
|
|
|
63
65
|
exports.defaultEmptyListText = _Select2.defaultEmptyListText;
|
|
64
66
|
var _Slider = _interopRequireDefault(require("./Display/Slider"));
|
|
65
67
|
exports.Slider = _Slider["default"];
|
|
68
|
+
var _Swipeable = _interopRequireDefault(require("./Display/Swipeable"));
|
|
69
|
+
exports.Swipeable = _Swipeable["default"];
|
|
70
|
+
var _Tabs = _interopRequireDefault(require("./Display/Tabs"));
|
|
71
|
+
exports.Tabs = _Tabs["default"];
|
|
66
72
|
var _Tag = _interopRequireDefault(require("./General/Tag"));
|
|
67
73
|
exports.Tag = _Tag["default"];
|
|
68
74
|
var _Textarea = _interopRequireDefault(require("./Input/Textarea"));
|