@sellout/ui 0.0.57 → 0.0.60
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/build/Colors.js +26 -0
- package/build/_virtual/_tslib.js +51 -0
- package/build/components/Button.d.ts +20 -6
- package/build/components/Button.js +210 -0
- package/build/components/CodeInput.d.ts +8 -0
- package/build/components/CodeInput.js +78 -0
- package/build/components/Counter.js +28 -0
- package/build/components/Dropdown.d.ts +24 -0
- package/build/components/Dropdown.js +49 -0
- package/build/components/Flex.d.ts +12 -0
- package/build/components/Flex.js +12 -0
- package/build/components/Icon.d.ts +49 -3
- package/build/components/Icon.js +39 -0
- package/build/components/Icons.d.ts +49 -3
- package/build/components/Icons.js +181 -0
- package/build/components/Input.d.ts +16 -1
- package/build/components/Input.js +177 -0
- package/build/components/InputOld.d.ts +23 -0
- package/build/components/InputOld.js +83 -0
- package/build/components/Label.d.ts +9 -0
- package/build/components/Label.js +22 -0
- package/build/components/Loader.js +37 -0
- package/build/components/MaxLength.d.ts +7 -0
- package/build/components/MaxLength.js +16 -0
- package/build/components/Motion.d.ts +30 -0
- package/build/components/Motion.js +39 -0
- package/build/components/PhoneNumberInput.d.ts +19 -0
- package/build/components/PhoneNumberInput.js +39 -0
- package/build/components/Product.js +54 -0
- package/build/components/TextButton.d.ts +15 -0
- package/build/components/TextButton.js +39 -0
- package/build/components/Tip.d.ts +7 -0
- package/build/components/Tip.js +18 -0
- package/build/components/UserImage.d.ts +13 -0
- package/build/components/UserImage.js +20 -0
- package/build/components/UserInfo.d.ts +12 -0
- package/build/components/UserInfo.js +38 -0
- package/build/components/ValidationError.d.ts +6 -0
- package/build/components/ValidationError.js +23 -0
- package/build/components/VerticalUserInfo.d.ts +12 -0
- package/build/index.d.ts +18 -126
- package/build/index.js +27 -453
- package/build/utils/ErrorUtil.d.ts +1 -0
- package/build/utils/ErrorUtil.js +18 -0
- package/build/utils/MediaQuery.d.ts +17 -0
- package/build/utils/MediaQuery.js +64 -0
- package/build/utils/Validation.d.ts +6 -0
- package/build/utils/Validation.js +53 -0
- package/build/utils/makeEventHandler.js +11 -0
- package/package.json +13 -5
- package/.storybook/config.js +0 -3
- package/.storybook/preview-head.html +0 -21
- package/.storybook/webpack.config.js +0 -19
- package/build/index.es.js +0 -443
- package/rollup.config.js +0 -20
- package/src/Colors.ts +0 -23
- package/src/assets/images/sellout-logo-long.svg +0 -11
- package/src/assets/images/sellout-logo-mono-white.svg +0 -4
- package/src/components/Button.tsx +0 -141
- package/src/components/Counter.tsx +0 -91
- package/src/components/Icon.tsx +0 -78
- package/src/components/Icons.ts +0 -251
- package/src/components/Input.tsx +0 -258
- package/src/components/Loader.tsx +0 -88
- package/src/components/Product.tsx +0 -156
- package/src/index.ts +0 -28
- package/src/stories/Button.stories.js +0 -30
- package/src/stories/Counter.stories.js +0 -28
- package/src/stories/Icon.stories.js +0 -25
- package/src/stories/Input.stories.js +0 -79
- package/src/stories/Loader.stories.js +0 -50
- package/src/stories/Product.stories.js +0 -67
- package/src/utils/makeEventHandler.ts +0 -8
- package/tsconfig.json +0 -24
- package/utils/generateIconLibrary.js +0 -49
- package/utils/icon-library.csv +0 -129
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Colors } from '../Colors.js';
|
|
2
|
+
import { __makeTemplateObject } from '../_virtual/_tslib.js';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
import Icon from './Icon.js';
|
|
6
|
+
|
|
7
|
+
var TextButtonSizes;
|
|
8
|
+
(function (TextButtonSizes) {
|
|
9
|
+
TextButtonSizes["Regular"] = "Regular";
|
|
10
|
+
TextButtonSizes["Small"] = "Small";
|
|
11
|
+
})(TextButtonSizes || (TextButtonSizes = {}));
|
|
12
|
+
var Container = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n flex-direction: row;\n align-items: center;\n margin: ", ";\n"], ["\n display: flex;\n flex-direction: row;\n align-items: center;\n margin: ", ";\n"])), function (props) { return props.margin; });
|
|
13
|
+
var Text = styled.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n font-size: ", ";\n color: ", ";\n text-decoration: underline;\n cursor: pointer;\n font-weight: 500;\n &:hover {\n text-decoration: none;\n }\n"], ["\n font-size: ",
|
|
14
|
+
";\n color: ", ";\n text-decoration: underline;\n cursor: pointer;\n font-weight: 500;\n &:hover {\n text-decoration: none;\n }\n"])), function (props) {
|
|
15
|
+
if (props.size === TextButtonSizes.Regular)
|
|
16
|
+
return "1.4rem";
|
|
17
|
+
if (props.size === TextButtonSizes.Small)
|
|
18
|
+
return "1.2rem";
|
|
19
|
+
return "1.4rem";
|
|
20
|
+
}, Colors.Orange);
|
|
21
|
+
var TextButton = function (_a) {
|
|
22
|
+
var children = _a.children, _b = _a.size, size = _b === void 0 ? TextButtonSizes.Regular : _b, onClick = _a.onClick, margin = _a.margin, icon = _a.icon, iconRotation = _a.iconRotation;
|
|
23
|
+
var iconSize = (function () {
|
|
24
|
+
if (size === TextButtonSizes.Regular) {
|
|
25
|
+
return 12;
|
|
26
|
+
}
|
|
27
|
+
if (size === TextButtonSizes.Small) {
|
|
28
|
+
return 10;
|
|
29
|
+
}
|
|
30
|
+
return 12;
|
|
31
|
+
})();
|
|
32
|
+
return (React.createElement(Container, { onClick: onClick ? onClick : function () { }, margin: margin },
|
|
33
|
+
icon && (React.createElement(Icon, { icon: icon, size: iconSize, color: Colors.Orange, margin: "0 7px 0 0", rotation: iconRotation })),
|
|
34
|
+
React.createElement(Text, { size: size }, children)));
|
|
35
|
+
};
|
|
36
|
+
var templateObject_1, templateObject_2;
|
|
37
|
+
|
|
38
|
+
export default TextButton;
|
|
39
|
+
export { TextButtonSizes };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Colors } from '../Colors.js';
|
|
2
|
+
import { __makeTemplateObject } from '../_virtual/_tslib.js';
|
|
3
|
+
import React, { useLayoutEffect } from 'react';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
import Icon, { Icons } from './Icon.js';
|
|
6
|
+
|
|
7
|
+
var Container = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n margin: ", ";\n"], ["\n margin: ", ";\n"])), function (props) { return props.margin; });
|
|
8
|
+
var Tip = function (_a) {
|
|
9
|
+
var tip = _a.tip, margin = _a.margin;
|
|
10
|
+
useLayoutEffect(function () {
|
|
11
|
+
// ReactTooltip.rebuild();
|
|
12
|
+
}, []);
|
|
13
|
+
return (React.createElement(Container, { margin: margin, "data-tip": tip },
|
|
14
|
+
React.createElement(Icon, { icon: Icons.InfotipSolid, color: Colors.Grey4, size: 12 })));
|
|
15
|
+
};
|
|
16
|
+
var templateObject_1;
|
|
17
|
+
|
|
18
|
+
export default Tip;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare type PropTypes = {
|
|
3
|
+
imageUrl?: string;
|
|
4
|
+
height?: string;
|
|
5
|
+
size?: string;
|
|
6
|
+
firstName: string;
|
|
7
|
+
lastName: string;
|
|
8
|
+
margin?: string;
|
|
9
|
+
invert?: boolean;
|
|
10
|
+
circle?: boolean;
|
|
11
|
+
};
|
|
12
|
+
declare const UserImage: React.FC<PropTypes>;
|
|
13
|
+
export default UserImage;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Colors } from '../Colors.js';
|
|
2
|
+
import { __makeTemplateObject } from '../_virtual/_tslib.js';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
|
|
6
|
+
var UserImageDiv = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n background-color: ", ";\n height: ", ";\n width: ", ";\n min-height: ", ";\n min-width: ", ";\n border-radius: ", ";\n color: ", ";\n font-size: ", ";\n font-weight: 600;\n display: flex;\n justify-content: center;\n align-items: center;\n margin: ", ";\n background-image: ", ";\n background-position: center;\n background-size: cover;\n"], ["\n background-color: ", ";\n height: ", ";\n width: ", ";\n min-height: ", ";\n min-width: ", ";\n border-radius: ", ";\n color: ", ";\n font-size: ", ";\n font-weight: 600;\n display: flex;\n justify-content: center;\n align-items: center;\n margin: ", ";\n background-image: ", ";\n background-position: center;\n background-size: cover;\n"])), function (props) { return (props.invert ? Colors.White : Colors.Grey1); }, function (props) { return props.height; }, function (props) { return props.height; }, function (props) { return props.height; }, function (props) { return props.height; }, function (props) { return (props.circle ? '50%' : '0'); }, function (props) { return (props.invert ? Colors.Grey1 : Colors.White); }, function (props) { return props.size; }, function (props) { return props.margin || '0px 10px 0px 0px'; }, function (props) { return "url(" + props.src + ")"; });
|
|
7
|
+
var UserImage = function (_a) {
|
|
8
|
+
var imageUrl = _a.imageUrl, _b = _a.height, height = _b === void 0 ? '45px' : _b, _c = _a.size, size = _c === void 0 ? '1.8rem' : _c, firstName = _a.firstName, lastName = _a.lastName, margin = _a.margin, invert = _a.invert, _d = _a.circle, circle = _d === void 0 ? true : _d;
|
|
9
|
+
if (!imageUrl) {
|
|
10
|
+
var userInitials = '?';
|
|
11
|
+
if (firstName && lastName) {
|
|
12
|
+
userInitials = "" + firstName.split('')[0] + lastName.split('')[0];
|
|
13
|
+
}
|
|
14
|
+
return (React.createElement(UserImageDiv, { height: height, margin: margin, invert: invert, size: size, circle: circle }, userInitials));
|
|
15
|
+
}
|
|
16
|
+
return (React.createElement(UserImageDiv, { src: imageUrl, height: height, margin: margin, circle: circle }));
|
|
17
|
+
};
|
|
18
|
+
var templateObject_1;
|
|
19
|
+
|
|
20
|
+
export default UserImage;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare enum UserInfoSizeEnum {
|
|
3
|
+
Regular = "Regular",
|
|
4
|
+
Large = "Large"
|
|
5
|
+
}
|
|
6
|
+
declare type UserInfoPropTypes = {
|
|
7
|
+
user?: any;
|
|
8
|
+
size?: UserInfoSizeEnum;
|
|
9
|
+
invert?: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const UserInfo: React.FC<UserInfoPropTypes>;
|
|
12
|
+
export default UserInfo;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Colors } from '../Colors.js';
|
|
2
|
+
import { __makeTemplateObject } from '../_virtual/_tslib.js';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
import UserImage from './UserImage.js';
|
|
6
|
+
|
|
7
|
+
var Container = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n"], ["\n display: flex;\n"])));
|
|
8
|
+
var Details = styled.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n"], ["\n display: flex;\n flex-direction: column;\n justify-content: center;\n"])));
|
|
9
|
+
var Name = styled.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n font-size: 1.4rem;\n color: ", ";\n font-weight: 600;\n"], ["\n font-size: 1.4rem;\n color: ", ";\n font-weight: 600;\n"])), Colors.Grey1);
|
|
10
|
+
var Email = styled.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n font-size: 1.2rem;\n color: ", ";\n"], ["\n font-size: 1.2rem;\n color: ", ";\n"])), Colors.Grey2);
|
|
11
|
+
var PhoneNumber = styled.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n font-size: 1.2rem;\n color: ", ";\n"], ["\n font-size: 1.2rem;\n color: ", ";\n"])), Colors.Grey2);
|
|
12
|
+
var UserInfoSizeEnum;
|
|
13
|
+
(function (UserInfoSizeEnum) {
|
|
14
|
+
UserInfoSizeEnum["Regular"] = "Regular";
|
|
15
|
+
UserInfoSizeEnum["Large"] = "Large";
|
|
16
|
+
})(UserInfoSizeEnum || (UserInfoSizeEnum = {}));
|
|
17
|
+
var UserInfo = function (_a) {
|
|
18
|
+
var _b = _a.user, user = _b === void 0 ? {} : _b, _c = _a.size, size = _c === void 0 ? UserInfoSizeEnum.Regular : _c, _d = _a.invert, invert = _d === void 0 ? false : _d;
|
|
19
|
+
var firstName = user.firstName, lastName = user.lastName, email = user.email, phoneNumber = user.phoneNumber, _e = user.userProfile, _f = (_e === void 0 ? {} : _e).imageUrl, imageUrl = _f === void 0 ? '' : _f;
|
|
20
|
+
var isLarge = size === UserInfoSizeEnum.Large;
|
|
21
|
+
var UserName = React.memo(function () { return React.createElement(Name, null,
|
|
22
|
+
firstName,
|
|
23
|
+
"\u00A0",
|
|
24
|
+
lastName); });
|
|
25
|
+
var UserEmail = React.memo(function () { return React.createElement(Email, null, email); });
|
|
26
|
+
var UserPhoneNumber = React.memo(function () { return React.createElement(PhoneNumber, null, phoneNumber); });
|
|
27
|
+
var height = isLarge ? '50px' : '36px';
|
|
28
|
+
return (React.createElement(Container, null,
|
|
29
|
+
React.createElement(UserImage, { imageUrl: imageUrl, height: height, size: isLarge ? "1.8rem" : "1.4rem", firstName: firstName, lastName: lastName, invert: invert }),
|
|
30
|
+
React.createElement(Details, null,
|
|
31
|
+
React.createElement(UserName, null),
|
|
32
|
+
React.createElement(UserEmail, null),
|
|
33
|
+
isLarge && React.createElement(UserPhoneNumber, null))));
|
|
34
|
+
};
|
|
35
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5;
|
|
36
|
+
|
|
37
|
+
export default UserInfo;
|
|
38
|
+
export { UserInfoSizeEnum };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Colors } from '../Colors.js';
|
|
2
|
+
import { __makeTemplateObject } from '../_virtual/_tslib.js';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
import Icon, { Icons } from './Icon.js';
|
|
6
|
+
import { FadeIn } from './Motion.js';
|
|
7
|
+
|
|
8
|
+
var ValidationErrorRelative = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: relative;\n"], ["\n position: relative;\n"])));
|
|
9
|
+
var ValidationErrorAbsolute = styled.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n position: absolute;\n z-index: 700;\n width: fit-content;\n height: 50px;\n"], ["\n position: absolute;\n z-index: 700;\n width: fit-content;\n height: 50px;\n"])));
|
|
10
|
+
var ValidationErrorBox = styled.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n background: ", ";\n border: 1px solid ", ";\n box-sizing: border-box;\n box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);\n border-radius: 10px;\n display: flex;\n align-items: center;\n margin-top: 5px;\n padding: 10px 15px;\n width: fit-content;\n justify-content: center;\n"], ["\n background: ", ";\n border: 1px solid ", ";\n box-sizing: border-box;\n box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);\n border-radius: 10px;\n display: flex;\n align-items: center;\n margin-top: 5px;\n padding: 10px 15px;\n width: fit-content;\n justify-content: center;\n"])), Colors.White, Colors.Grey5);
|
|
11
|
+
var ValidationErrorText = styled.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n margin-left: 10px;\n font-weight: 500;\n color: ", ";\n"], ["\n margin-left: 10px;\n font-weight: 500;\n color: ", ";\n"])), Colors.Grey2);
|
|
12
|
+
var ValidationError = function (_a) {
|
|
13
|
+
var validationError = _a.validationError;
|
|
14
|
+
return (React.createElement(ValidationErrorRelative, null,
|
|
15
|
+
React.createElement(ValidationErrorAbsolute, null,
|
|
16
|
+
React.createElement(FadeIn, null,
|
|
17
|
+
React.createElement(ValidationErrorBox, null,
|
|
18
|
+
React.createElement(Icon, { icon: Icons.Warning, size: 16, color: Colors.Yellow }),
|
|
19
|
+
React.createElement(ValidationErrorText, null, validationError))))));
|
|
20
|
+
};
|
|
21
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4;
|
|
22
|
+
|
|
23
|
+
export default ValidationError;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare enum UserInfoSizeEnum {
|
|
3
|
+
Regular = "Regular",
|
|
4
|
+
Large = "Large"
|
|
5
|
+
}
|
|
6
|
+
declare type UserInfoPropTypes = {
|
|
7
|
+
user?: any;
|
|
8
|
+
size?: UserInfoSizeEnum;
|
|
9
|
+
invert?: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const VerticalUserInfo: React.FC<UserInfoPropTypes>;
|
|
12
|
+
export default VerticalUserInfo;
|
package/build/index.d.ts
CHANGED
|
@@ -1,132 +1,24 @@
|
|
|
1
1
|
import { Colors } from "./Colors";
|
|
2
|
-
import Button
|
|
2
|
+
import Button from './components/Button';
|
|
3
|
+
import CodeInput from "./components/CodeInput";
|
|
3
4
|
import Counter from "./components/Counter";
|
|
4
|
-
import
|
|
5
|
+
import Dropdown from "./components/Dropdown";
|
|
6
|
+
import Flex from "./components/Flex";
|
|
7
|
+
import Icon, { Icons } from "./components/Icon";
|
|
5
8
|
import Input from "./components/Input";
|
|
9
|
+
import Label from "./components/Label";
|
|
10
|
+
import MaxLength from "./components/MaxLength";
|
|
11
|
+
import * as Motion from "./components/Motion";
|
|
6
12
|
import Loader, { LoaderSizes } from "./components/Loader";
|
|
13
|
+
import PhoneNumberInput from "./components/PhoneNumberInput";
|
|
7
14
|
import Product from "./components/Product";
|
|
15
|
+
import TextButton from './components/TextButton';
|
|
16
|
+
import Tip from "./components/Tip";
|
|
17
|
+
import UserImage from './components/UserImage';
|
|
18
|
+
import UserInfo from './components/UserInfo';
|
|
19
|
+
import ValidationError from './components/ValidationError';
|
|
20
|
+
import * as ErrorUtil from './utils/ErrorUtil';
|
|
8
21
|
import makeEventHandler from './utils/makeEventHandler';
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
BoxOfficeLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
13
|
-
BullHornLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
14
|
-
CalendarDayLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
15
|
-
CalendarLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
16
|
-
CalendarStarLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
17
|
-
CheckLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
18
|
-
EnvelopeLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
19
|
-
EnvelopeOpenRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
20
|
-
ExportLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
21
|
-
FilterLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
22
|
-
HelpLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
23
|
-
HomeLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
24
|
-
Lock: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
25
|
-
mapPinLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
26
|
-
MicrophoneLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
27
|
-
MinusCircleLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
28
|
-
MobileLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
29
|
-
PlusCircleLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
30
|
-
ReceiptLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
31
|
-
SearchLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
32
|
-
SortByLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
33
|
-
UnlockLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
34
|
-
UploadLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
35
|
-
UserLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
36
|
-
UsersLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
37
|
-
VenueLight: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
38
|
-
AnalyticsSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
39
|
-
CalendarStarSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
40
|
-
CreditCardFront: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
41
|
-
FeeSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
42
|
-
KeySolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
43
|
-
LongRightArrow: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
44
|
-
ReportSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
45
|
-
SortBy: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
46
|
-
UpgradeSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
47
|
-
AudienceRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
48
|
-
BoldRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
49
|
-
CalculatorRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
50
|
-
CheckRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
51
|
-
Cheers: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
52
|
-
Clipboard: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
53
|
-
CrownRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
54
|
-
DeleteRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
55
|
-
Dollar: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
56
|
-
DownArrow: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
57
|
-
DownloadReport: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
58
|
-
Embed: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
59
|
-
FeeRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
60
|
-
FilterRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
61
|
-
GlobeRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
62
|
-
GraphGrowth: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
63
|
-
ItalicRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
64
|
-
KeyRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
65
|
-
LeftChevronRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
66
|
-
LinkRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
67
|
-
PrintRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
68
|
-
ReportRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
69
|
-
SearchRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
70
|
-
Settings: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
71
|
-
SignOut: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
72
|
-
SyncRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
73
|
-
TicketRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
74
|
-
UnderlineRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
75
|
-
UnlockRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
76
|
-
UpArrow: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
77
|
-
Update: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
78
|
-
UpgradeRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
79
|
-
UsersRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
80
|
-
AudienceSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
81
|
-
BackArrow: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
82
|
-
BoxOfficeSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
83
|
-
BullhornSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
84
|
-
CalculatorSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
85
|
-
CalendarDaySolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
86
|
-
Cancel: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
87
|
-
CancelCircle: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
88
|
-
CaretDown: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
89
|
-
Cash: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
90
|
-
CheckCircle: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
91
|
-
CopySolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
92
|
-
CreditCardBack: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
93
|
-
CrownSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
94
|
-
Cursor: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
95
|
-
DeleteSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
96
|
-
EnvelopeSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
97
|
-
EyeSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
98
|
-
HelpSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
99
|
-
HomeSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
100
|
-
InfotipSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
101
|
-
LeftArrowSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
102
|
-
LeftChevronSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
103
|
-
Menu: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
104
|
-
MicrophoneSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
105
|
-
MobileSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
106
|
-
Plus: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
107
|
-
PlusCircle: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
108
|
-
PrintSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
109
|
-
ReceiptSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
110
|
-
RightChevronCircle: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
111
|
-
RightChevronSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
112
|
-
SearchSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
113
|
-
Sort: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
114
|
-
ThumbsUpSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
115
|
-
ThumbsDownSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
116
|
-
TicketSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
117
|
-
UserCircle: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
118
|
-
UserSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
119
|
-
UsersSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
120
|
-
VenueSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
121
|
-
Warning: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
122
|
-
CalendarRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
123
|
-
Clock: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
124
|
-
CopyRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
125
|
-
Edit: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
126
|
-
EyeRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
127
|
-
EyeSlashRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
128
|
-
Help: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
129
|
-
SadTear: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
130
|
-
UserRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
131
|
-
};
|
|
132
|
-
export { Colors, Button, ButtonTypes, ButtonStates, Counter, Icon, Icons, Input, Loader, LoaderSizes, Product, makeEventHandler };
|
|
22
|
+
import * as MediaQuery from './utils/MediaQuery';
|
|
23
|
+
import * as Validation from './utils/Validation';
|
|
24
|
+
export { Colors, Button, CodeInput, Counter, Dropdown, Flex, Icon, Icons, Input, Label, MaxLength, Loader, LoaderSizes, Motion, PhoneNumberInput, Product, TextButton, Tip, UserImage, UserInfo, ValidationError, ErrorUtil, makeEventHandler, MediaQuery, Validation, };
|