@sellout/ui 0.0.109 → 0.0.110
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/components/FormattedfullInput.d.ts +32 -0
- package/build/components/FormattedfullInput.js +85 -0
- package/build/components/Icons.d.ts +188 -188
- package/build/index.d.ts +2 -1
- package/build/index.js +1 -0
- package/package.json +4 -4
- package/build/stories/Button.stories.d.ts +0 -9
- package/build/stories/Counter.stories.d.ts +0 -7
- package/build/stories/Icon.stories.d.ts +0 -7
- package/build/stories/Input.stories.d.ts +0 -9
- package/build/stories/Loader.stories.d.ts +0 -11
- package/build/stories/Product.stories.d.ts +0 -8
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare enum InputfullFormats {
|
|
3
|
+
Price = "Price",
|
|
4
|
+
Percent = "Percent"
|
|
5
|
+
}
|
|
6
|
+
export declare type InputProps = {
|
|
7
|
+
inputRef?: React.Ref<HTMLInputElement>;
|
|
8
|
+
autoFocus?: boolean | undefined;
|
|
9
|
+
placeholder?: string;
|
|
10
|
+
value: string;
|
|
11
|
+
defaultValue?: string;
|
|
12
|
+
type?: string;
|
|
13
|
+
format?: InputfullFormats;
|
|
14
|
+
onMouseEnter?: any;
|
|
15
|
+
onMouseLeave?: any;
|
|
16
|
+
onChange?: any;
|
|
17
|
+
onFocus?: any;
|
|
18
|
+
onBlur?: any;
|
|
19
|
+
onSubmit?: Function;
|
|
20
|
+
canSubmit?: boolean;
|
|
21
|
+
loading?: boolean;
|
|
22
|
+
margin?: string;
|
|
23
|
+
width?: string;
|
|
24
|
+
onEnter?: Function;
|
|
25
|
+
label?: string;
|
|
26
|
+
subLabel?: string;
|
|
27
|
+
tip?: string;
|
|
28
|
+
maxLength?: number;
|
|
29
|
+
validationError?: string;
|
|
30
|
+
disabled?: boolean;
|
|
31
|
+
};
|
|
32
|
+
export default function Input({ inputRef, autoFocus, placeholder, value, defaultValue, format, type, onMouseEnter, onMouseLeave, onChange, onFocus, onBlur, onSubmit, canSubmit, loading, margin, width, onEnter, label, subLabel, tip, maxLength, validationError, disabled, }: InputProps): JSX.Element;
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { Colors } from '../Colors.js';
|
|
2
|
+
import { __makeTemplateObject } from '../_virtual/_tslib.js';
|
|
3
|
+
import React, { useState } from 'react';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
import { darken } from 'polished';
|
|
6
|
+
import Icon, { Icons } from './Icon.js';
|
|
7
|
+
import Label from './Label.js';
|
|
8
|
+
import Flex from './Flex.js';
|
|
9
|
+
import MaxLength from './MaxLength.js';
|
|
10
|
+
import ValidationError from './ValidationError.js';
|
|
11
|
+
import { media } from '../utils/MediaQuery.js';
|
|
12
|
+
|
|
13
|
+
var InputfullFormats;
|
|
14
|
+
(function (InputfullFormats) {
|
|
15
|
+
InputfullFormats["Price"] = "Price";
|
|
16
|
+
InputfullFormats["Percent"] = "Percent";
|
|
17
|
+
})(InputfullFormats || (InputfullFormats = {}));
|
|
18
|
+
var Container = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: ", ";\n"], ["\n width: ", ";\n"])), function (props) { return props.width; });
|
|
19
|
+
var Form = styled.form(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n margin: ", ";\n width: ", ";\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n position: relative;\n border-radius: 10px;\n transition: all 0.2s;\n border: 1px solid\n ", ";\n overflow: hidden;\n"], ["\n margin: ", ";\n width: ", ";\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n position: relative;\n border-radius: 10px;\n transition: all 0.2s;\n border: 1px solid\n ",
|
|
20
|
+
";\n overflow: hidden;\n"])), function (props) { return props.margin; }, function (props) { return props.width; }, function (props) {
|
|
21
|
+
if (props.focused)
|
|
22
|
+
return Colors.Grey4;
|
|
23
|
+
if (props.hovered)
|
|
24
|
+
return darken(0.05, Colors.Grey5);
|
|
25
|
+
return Colors.Grey5;
|
|
26
|
+
});
|
|
27
|
+
var PriceContainer = styled.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 25px;\n background-color: ", ";\n"], ["\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 25px;\n background-color: ", ";\n"])), Colors.Grey5);
|
|
28
|
+
var InputStyled = styled.input(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n background-color: ", ";\n color: ", ";\n outline: none;\n border: 0px;\n height: 38px;\n width: 100%;\n font-family: \"neue-haas-grotesk-display\", sans-serif;\n font-weight: 500;\n text-indent: 1px;\n transition: all 0.2s;\n padding: 0 16px;\n text-align: left;\n\n ", ";\n\n ", ";\n\n ::placeholder {\n color: ", ";\n }\n"], ["\n background-color: ",
|
|
29
|
+
";\n color: ", ";\n outline: none;\n border: 0px;\n height: 38px;\n width: 100%;\n font-family: \"neue-haas-grotesk-display\", sans-serif;\n font-weight: 500;\n text-indent: 1px;\n transition: all 0.2s;\n padding: 0 16px;\n text-align: left;\n\n ",
|
|
30
|
+
";\n\n ",
|
|
31
|
+
";\n\n ::placeholder {\n color: ", ";\n }\n"])), function (props) {
|
|
32
|
+
return props.disabled ? Colors.Grey6 + " !important" : null;
|
|
33
|
+
}, function (props) { return (props.disabled ? Colors.Grey4 : Colors.Grey1); }, media.mobile(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n font-size: 1.6rem;\n "], ["\n font-size: 1.6rem;\n "]))), media.desktop(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n font-size: 1.4rem;\n "], ["\n font-size: 1.4rem;\n "]))), Colors.Grey4);
|
|
34
|
+
var IconText = styled.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n font-size: 1.4rem;\n font-weight: 600;\n color: ", ";\n"], ["\n font-size: 1.4rem;\n font-weight: 600;\n color: ", ";\n"])), Colors.Grey3);
|
|
35
|
+
function Input(_a) {
|
|
36
|
+
var inputRef = _a.inputRef, autoFocus = _a.autoFocus, placeholder = _a.placeholder, value = _a.value, defaultValue = _a.defaultValue, _b = _a.format, format = _b === void 0 ? InputfullFormats.Price : _b, _c = _a.type, type = _c === void 0 ? "text" : _c, onMouseEnter = _a.onMouseEnter, onMouseLeave = _a.onMouseLeave, onChange = _a.onChange, onFocus = _a.onFocus, onBlur = _a.onBlur, onSubmit = _a.onSubmit, _d = _a.canSubmit, canSubmit = _d === void 0 ? true : _d, loading = _a.loading, margin = _a.margin, width = _a.width, onEnter = _a.onEnter, label = _a.label, subLabel = _a.subLabel, tip = _a.tip, maxLength = _a.maxLength, validationError = _a.validationError, _e = _a.disabled, disabled = _e === void 0 ? false : _e;
|
|
37
|
+
var _f = useState(false), hovered = _f[0], setHovered = _f[1];
|
|
38
|
+
var _g = useState(false), focused = _g[0], setFocused = _g[1];
|
|
39
|
+
var submit = function (event) {
|
|
40
|
+
event.preventDefault();
|
|
41
|
+
if (onSubmit && canSubmit && !loading) {
|
|
42
|
+
onSubmit();
|
|
43
|
+
}
|
|
44
|
+
else if (onEnter && !loading) {
|
|
45
|
+
onEnter();
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
return (React.createElement(Container, { width: width },
|
|
49
|
+
React.createElement(Flex, { justify: "space-between" },
|
|
50
|
+
label && React.createElement(Label, { text: label, subText: subLabel, tip: tip }),
|
|
51
|
+
maxLength && React.createElement(MaxLength, { value: value, maxLength: maxLength })),
|
|
52
|
+
React.createElement(Form, { hovered: hovered, focused: focused, onSubmit: function (event) { return submit(event); }, width: width, margin: margin, noValidate // disables default html5 validation
|
|
53
|
+
: true, disabled: disabled },
|
|
54
|
+
format === InputfullFormats.Price && (React.createElement(PriceContainer, null,
|
|
55
|
+
React.createElement(Icon, { icon: Icons.Dollar, size: 14, color: Colors.Grey3 }))),
|
|
56
|
+
React.createElement(InputStyled, { ref: inputRef, disabled: disabled, autoFocus: autoFocus, placeholder: placeholder, value: value, defaultValue: defaultValue, type: type, onChange: function (e) {
|
|
57
|
+
if (maxLength && e.currentTarget.value.length > maxLength) ;
|
|
58
|
+
else {
|
|
59
|
+
onChange(e);
|
|
60
|
+
}
|
|
61
|
+
}, onFocus: function (event) {
|
|
62
|
+
setFocused(true);
|
|
63
|
+
if (onFocus)
|
|
64
|
+
onFocus(event);
|
|
65
|
+
}, onBlur: function (event) {
|
|
66
|
+
setFocused(false);
|
|
67
|
+
if (onFocus)
|
|
68
|
+
onBlur(event);
|
|
69
|
+
}, onMouseEnter: function (event) {
|
|
70
|
+
setHovered(true);
|
|
71
|
+
if (onMouseEnter)
|
|
72
|
+
onMouseEnter(event);
|
|
73
|
+
}, onMouseLeave: function (event) {
|
|
74
|
+
setHovered(false);
|
|
75
|
+
if (onMouseLeave)
|
|
76
|
+
onMouseLeave(event);
|
|
77
|
+
} }),
|
|
78
|
+
format === InputfullFormats.Percent && (React.createElement(PriceContainer, null,
|
|
79
|
+
React.createElement(IconText, null, "%")))),
|
|
80
|
+
validationError && (React.createElement(ValidationError, { validationError: validationError }))));
|
|
81
|
+
}
|
|
82
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7;
|
|
83
|
+
|
|
84
|
+
export default Input;
|
|
85
|
+
export { InputfullFormats };
|
|
@@ -1,190 +1,190 @@
|
|
|
1
1
|
export declare const IconEnum: {
|
|
2
|
-
Amex: import("@fortawesome/
|
|
3
|
-
Discover: import("@fortawesome/
|
|
4
|
-
FacebookPlain: import("@fortawesome/
|
|
5
|
-
Google: import("@fortawesome/
|
|
6
|
-
Mastercard: import("@fortawesome/
|
|
7
|
-
Visa: import("@fortawesome/
|
|
8
|
-
AnalyticsLight: import("@fortawesome/
|
|
9
|
-
BellLight: import("@fortawesome/
|
|
10
|
-
BoxOfficeLight: import("@fortawesome/
|
|
11
|
-
BullHornLight: import("@fortawesome/
|
|
12
|
-
CalculatorLight: import("@fortawesome/
|
|
13
|
-
CalendarDayLight: import("@fortawesome/
|
|
14
|
-
CalendarLight: import("@fortawesome/
|
|
15
|
-
CalendarStarLight: import("@fortawesome/
|
|
16
|
-
CancelLight: import("@fortawesome/
|
|
17
|
-
CartLight: import("@fortawesome/
|
|
18
|
-
CheckLight: import("@fortawesome/
|
|
19
|
-
ClipboardLight: import("@fortawesome/
|
|
20
|
-
CopyLight: import("@fortawesome/
|
|
21
|
-
CreditCardFrontLight: import("@fortawesome/
|
|
22
|
-
EditLight: import("@fortawesome/
|
|
23
|
-
EnvelopeLight: import("@fortawesome/
|
|
24
|
-
EnvelopeOpenRegular: import("@fortawesome/
|
|
25
|
-
ExportLight: import("@fortawesome/
|
|
26
|
-
EyeLight: import("@fortawesome/
|
|
27
|
-
FilterLight: import("@fortawesome/
|
|
28
|
-
GiftLight: import("@fortawesome/
|
|
29
|
-
GlobeLinesLight: import("@fortawesome/
|
|
30
|
-
HelpLight: import("@fortawesome/
|
|
31
|
-
HomeLight: import("@fortawesome/
|
|
32
|
-
LinkLight: import("@fortawesome/
|
|
33
|
-
Lock: import("@fortawesome/
|
|
34
|
-
MapPinLight: import("@fortawesome/
|
|
35
|
-
MetricsLight: import("@fortawesome/
|
|
36
|
-
MicrophoneLight: import("@fortawesome/
|
|
37
|
-
MinusCircleLight: import("@fortawesome/
|
|
38
|
-
MobileLight: import("@fortawesome/
|
|
39
|
-
OrganizationLight: import("@fortawesome/
|
|
40
|
-
PhoneLight: import("@fortawesome/
|
|
41
|
-
PiggyBankLight: import("@fortawesome/
|
|
42
|
-
PlugLight: import("@fortawesome/
|
|
43
|
-
PlusCircleLight: import("@fortawesome/
|
|
44
|
-
ReceiptLight: import("@fortawesome/
|
|
45
|
-
ReportLight: import("@fortawesome/
|
|
46
|
-
Scan: import("@fortawesome/
|
|
47
|
-
SearchLight: import("@fortawesome/
|
|
48
|
-
SeatingLight: import("@fortawesome/
|
|
49
|
-
ShareLight: import("@fortawesome/
|
|
50
|
-
SortByLight: import("@fortawesome/
|
|
51
|
-
TeamLight: import("@fortawesome/
|
|
52
|
-
ThumbsDownLight: import("@fortawesome/
|
|
53
|
-
ThumbsUpLight: import("@fortawesome/
|
|
54
|
-
UnlockLight: import("@fortawesome/
|
|
55
|
-
UploadLight: import("@fortawesome/
|
|
56
|
-
UserLight: import("@fortawesome/
|
|
57
|
-
UsersLight: import("@fortawesome/
|
|
58
|
-
VenueLight: import("@fortawesome/
|
|
59
|
-
AnalyticsSolid: import("@fortawesome/
|
|
60
|
-
CalendarStarSolid: import("@fortawesome/
|
|
61
|
-
CreditCardFront: import("@fortawesome/
|
|
62
|
-
FeeSolid: import("@fortawesome/
|
|
63
|
-
KeySolid: import("@fortawesome/
|
|
64
|
-
LongRightArrow: import("@fortawesome/
|
|
65
|
-
QuestionSquareSolid: import("@fortawesome/
|
|
66
|
-
ReportSolid: import("@fortawesome/
|
|
67
|
-
SortBy: import("@fortawesome/
|
|
68
|
-
TeamSolid: import("@fortawesome/
|
|
69
|
-
UpgradeSolid: import("@fortawesome/
|
|
70
|
-
AngleDownRegular: import("@fortawesome/
|
|
71
|
-
AngleUpRegular: import("@fortawesome/
|
|
72
|
-
AudienceRegular: import("@fortawesome/
|
|
73
|
-
BoldRegular: import("@fortawesome/
|
|
74
|
-
CalculatorRegular: import("@fortawesome/
|
|
75
|
-
CalendarDayRegular: import("@fortawesome/
|
|
76
|
-
CheckRegular: import("@fortawesome/
|
|
77
|
-
Cheers: import("@fortawesome/
|
|
78
|
-
Clipboard: import("@fortawesome/
|
|
79
|
-
CrownRegular: import("@fortawesome/
|
|
80
|
-
DeleteRegular: import("@fortawesome/
|
|
81
|
-
Dollar: import("@fortawesome/
|
|
82
|
-
DownArrow: import("@fortawesome/
|
|
83
|
-
DownloadReport: import("@fortawesome/
|
|
84
|
-
Embed: import("@fortawesome/
|
|
85
|
-
FeeRegular: import("@fortawesome/
|
|
86
|
-
FilterRegular: import("@fortawesome/
|
|
87
|
-
FireRegular: import("@fortawesome/
|
|
88
|
-
GiftRegular: import("@fortawesome/
|
|
89
|
-
GlobeLinesRegular: import("@fortawesome/
|
|
90
|
-
GlobeRegular: import("@fortawesome/
|
|
91
|
-
GraphGrowth: import("@fortawesome/
|
|
92
|
-
ItalicRegular: import("@fortawesome/
|
|
93
|
-
KeyRegular: import("@fortawesome/
|
|
94
|
-
LeftArrowRegular: import("@fortawesome/
|
|
95
|
-
LeftChevronRegular: import("@fortawesome/
|
|
96
|
-
LinkRegular: import("@fortawesome/
|
|
97
|
-
LongRightArrowRegular: import("@fortawesome/
|
|
98
|
-
OListRegular: import("@fortawesome/
|
|
99
|
-
PlusRegular: import("@fortawesome/
|
|
100
|
-
PrintRegular: import("@fortawesome/
|
|
101
|
-
ReportRegular: import("@fortawesome/
|
|
102
|
-
RightArrowRegular: import("@fortawesome/
|
|
103
|
-
RightChevronRegular: import("@fortawesome/
|
|
104
|
-
SearchRegular: import("@fortawesome/
|
|
105
|
-
SettingsRegular: import("@fortawesome/
|
|
106
|
-
SignOut: import("@fortawesome/
|
|
107
|
-
StreamRegular: import("@fortawesome/
|
|
108
|
-
SyncRegular: import("@fortawesome/
|
|
109
|
-
TicketRegular: import("@fortawesome/
|
|
110
|
-
UListRegular: import("@fortawesome/
|
|
111
|
-
UnderlineRegular: import("@fortawesome/
|
|
112
|
-
UnlockRegular: import("@fortawesome/
|
|
113
|
-
UpArrow: import("@fortawesome/
|
|
114
|
-
Update: import("@fortawesome/
|
|
115
|
-
UpgradeRegular: import("@fortawesome/
|
|
116
|
-
UsersRegular: import("@fortawesome/
|
|
117
|
-
VerticalEllipsisRegular: import("@fortawesome/
|
|
118
|
-
WarningRegular: import("@fortawesome/
|
|
119
|
-
AngleDownSolid: import("@fortawesome/
|
|
120
|
-
AngleUpSolid: import("@fortawesome/
|
|
121
|
-
AudienceSolid: import("@fortawesome/
|
|
122
|
-
BackArrow: import("@fortawesome/
|
|
123
|
-
BoxOfficeSolid: import("@fortawesome/
|
|
124
|
-
BullhornSolid: import("@fortawesome/
|
|
125
|
-
CalculatorSolid: import("@fortawesome/
|
|
126
|
-
CalendarDaySolid: import("@fortawesome/
|
|
127
|
-
CalendarWeekSolid: import("@fortawesome/
|
|
128
|
-
Cancel: import("@fortawesome/
|
|
129
|
-
CancelCircle: import("@fortawesome/
|
|
130
|
-
CaretDown: import("@fortawesome/
|
|
131
|
-
Cash: import("@fortawesome/
|
|
132
|
-
CheckCircle: import("@fortawesome/
|
|
133
|
-
ContactSolid: import("@fortawesome/
|
|
134
|
-
CopySolid: import("@fortawesome/
|
|
135
|
-
CreditCardBack: import("@fortawesome/
|
|
136
|
-
CrownSolid: import("@fortawesome/
|
|
137
|
-
Cursor: import("@fortawesome/
|
|
138
|
-
DeleteSolid: import("@fortawesome/
|
|
139
|
-
EnvelopeSolid: import("@fortawesome/
|
|
140
|
-
EyeSolid: import("@fortawesome/
|
|
141
|
-
GlobeLinesSolid: import("@fortawesome/
|
|
142
|
-
GlobeSolid: import("@fortawesome/
|
|
143
|
-
HelpSolid: import("@fortawesome/
|
|
144
|
-
HomeSolid: import("@fortawesome/
|
|
145
|
-
InfotipSolid: import("@fortawesome/
|
|
146
|
-
LeftArrowSolid: import("@fortawesome/
|
|
147
|
-
LeftChevronSolid: import("@fortawesome/
|
|
148
|
-
LockSolid: import("@fortawesome/
|
|
149
|
-
Menu: import("@fortawesome/
|
|
150
|
-
MetricsSolid: import("@fortawesome/
|
|
151
|
-
MicrophoneSolid: import("@fortawesome/
|
|
152
|
-
MobileSolid: import("@fortawesome/
|
|
153
|
-
OrganizationSolid: import("@fortawesome/
|
|
154
|
-
PauseSolid: import("@fortawesome/
|
|
155
|
-
PiggyBankSolid: import("@fortawesome/
|
|
156
|
-
PlugSolid: import("@fortawesome/
|
|
157
|
-
Plus: import("@fortawesome/
|
|
158
|
-
PlusCircle: import("@fortawesome/
|
|
159
|
-
PrintSolid: import("@fortawesome/
|
|
160
|
-
ReceiptSolid: import("@fortawesome/
|
|
161
|
-
RightChevronCircle: import("@fortawesome/
|
|
162
|
-
RightChevronSolid: import("@fortawesome/
|
|
163
|
-
SearchSolid: import("@fortawesome/
|
|
164
|
-
SeatingSolid: import("@fortawesome/
|
|
165
|
-
SettingsSolid: import("@fortawesome/
|
|
166
|
-
ShareSolid: import("@fortawesome/
|
|
167
|
-
Sort: import("@fortawesome/
|
|
168
|
-
StarSolid: import("@fortawesome/
|
|
169
|
-
ThumbsDownSolid: import("@fortawesome/
|
|
170
|
-
ThumbsUpSolid: import("@fortawesome/
|
|
171
|
-
TicketSolid: import("@fortawesome/
|
|
172
|
-
UploadSolid: import("@fortawesome/
|
|
173
|
-
UserCircle: import("@fortawesome/
|
|
174
|
-
UserSolid: import("@fortawesome/
|
|
175
|
-
UsersSolid: import("@fortawesome/
|
|
176
|
-
VenueSolid: import("@fortawesome/
|
|
177
|
-
Warning: import("@fortawesome/
|
|
178
|
-
CalendarRegular: import("@fortawesome/
|
|
179
|
-
ChatRegular: import("@fortawesome/
|
|
180
|
-
Clock: import("@fortawesome/
|
|
181
|
-
CopyRegular: import("@fortawesome/
|
|
182
|
-
Edit: import("@fortawesome/
|
|
183
|
-
EyeRegular: import("@fortawesome/
|
|
184
|
-
EyeSlashRegular: import("@fortawesome/
|
|
185
|
-
Help: import("@fortawesome/
|
|
186
|
-
HelpRegular: import("@fortawesome/
|
|
187
|
-
SadTear: import("@fortawesome/
|
|
188
|
-
UserRegular: import("@fortawesome/
|
|
189
|
-
CreditCardBackLight: import("@fortawesome/
|
|
2
|
+
Amex: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
3
|
+
Discover: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
4
|
+
FacebookPlain: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
5
|
+
Google: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
6
|
+
Mastercard: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
7
|
+
Visa: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
8
|
+
AnalyticsLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
9
|
+
BellLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
10
|
+
BoxOfficeLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
11
|
+
BullHornLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
12
|
+
CalculatorLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
13
|
+
CalendarDayLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
14
|
+
CalendarLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
15
|
+
CalendarStarLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
16
|
+
CancelLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
17
|
+
CartLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
18
|
+
CheckLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
19
|
+
ClipboardLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
20
|
+
CopyLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
21
|
+
CreditCardFrontLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
22
|
+
EditLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
23
|
+
EnvelopeLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
24
|
+
EnvelopeOpenRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
25
|
+
ExportLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
26
|
+
EyeLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
27
|
+
FilterLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
28
|
+
GiftLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
29
|
+
GlobeLinesLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
30
|
+
HelpLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
31
|
+
HomeLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
32
|
+
LinkLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
33
|
+
Lock: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
34
|
+
MapPinLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
35
|
+
MetricsLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
36
|
+
MicrophoneLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
37
|
+
MinusCircleLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
38
|
+
MobileLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
39
|
+
OrganizationLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
40
|
+
PhoneLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
41
|
+
PiggyBankLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
42
|
+
PlugLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
43
|
+
PlusCircleLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
44
|
+
ReceiptLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
45
|
+
ReportLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
46
|
+
Scan: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
47
|
+
SearchLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
48
|
+
SeatingLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
49
|
+
ShareLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
50
|
+
SortByLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
51
|
+
TeamLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
52
|
+
ThumbsDownLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
53
|
+
ThumbsUpLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
54
|
+
UnlockLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
55
|
+
UploadLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
56
|
+
UserLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
57
|
+
UsersLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
58
|
+
VenueLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
59
|
+
AnalyticsSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
60
|
+
CalendarStarSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
61
|
+
CreditCardFront: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
62
|
+
FeeSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
63
|
+
KeySolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
64
|
+
LongRightArrow: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
65
|
+
QuestionSquareSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
66
|
+
ReportSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
67
|
+
SortBy: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
68
|
+
TeamSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
69
|
+
UpgradeSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
70
|
+
AngleDownRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
71
|
+
AngleUpRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
72
|
+
AudienceRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
73
|
+
BoldRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
74
|
+
CalculatorRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
75
|
+
CalendarDayRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
76
|
+
CheckRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
77
|
+
Cheers: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
78
|
+
Clipboard: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
79
|
+
CrownRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
80
|
+
DeleteRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
81
|
+
Dollar: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
82
|
+
DownArrow: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
83
|
+
DownloadReport: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
84
|
+
Embed: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
85
|
+
FeeRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
86
|
+
FilterRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
87
|
+
FireRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
88
|
+
GiftRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
89
|
+
GlobeLinesRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
90
|
+
GlobeRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
91
|
+
GraphGrowth: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
92
|
+
ItalicRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
93
|
+
KeyRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
94
|
+
LeftArrowRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
95
|
+
LeftChevronRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
96
|
+
LinkRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
97
|
+
LongRightArrowRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
98
|
+
OListRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
99
|
+
PlusRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
100
|
+
PrintRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
101
|
+
ReportRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
102
|
+
RightArrowRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
103
|
+
RightChevronRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
104
|
+
SearchRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
105
|
+
SettingsRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
106
|
+
SignOut: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
107
|
+
StreamRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
108
|
+
SyncRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
109
|
+
TicketRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
110
|
+
UListRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
111
|
+
UnderlineRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
112
|
+
UnlockRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
113
|
+
UpArrow: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
114
|
+
Update: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
115
|
+
UpgradeRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
116
|
+
UsersRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
117
|
+
VerticalEllipsisRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
118
|
+
WarningRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
119
|
+
AngleDownSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
120
|
+
AngleUpSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
121
|
+
AudienceSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
122
|
+
BackArrow: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
123
|
+
BoxOfficeSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
124
|
+
BullhornSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
125
|
+
CalculatorSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
126
|
+
CalendarDaySolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
127
|
+
CalendarWeekSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
128
|
+
Cancel: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
129
|
+
CancelCircle: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
130
|
+
CaretDown: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
131
|
+
Cash: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
132
|
+
CheckCircle: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
133
|
+
ContactSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
134
|
+
CopySolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
135
|
+
CreditCardBack: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
136
|
+
CrownSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
137
|
+
Cursor: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
138
|
+
DeleteSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
139
|
+
EnvelopeSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
140
|
+
EyeSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
141
|
+
GlobeLinesSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
142
|
+
GlobeSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
143
|
+
HelpSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
144
|
+
HomeSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
145
|
+
InfotipSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
146
|
+
LeftArrowSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
147
|
+
LeftChevronSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
148
|
+
LockSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
149
|
+
Menu: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
150
|
+
MetricsSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
151
|
+
MicrophoneSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
152
|
+
MobileSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
153
|
+
OrganizationSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
154
|
+
PauseSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
155
|
+
PiggyBankSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
156
|
+
PlugSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
157
|
+
Plus: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
158
|
+
PlusCircle: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
159
|
+
PrintSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
160
|
+
ReceiptSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
161
|
+
RightChevronCircle: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
162
|
+
RightChevronSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
163
|
+
SearchSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
164
|
+
SeatingSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
165
|
+
SettingsSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
166
|
+
ShareSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
167
|
+
Sort: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
168
|
+
StarSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
169
|
+
ThumbsDownSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
170
|
+
ThumbsUpSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
171
|
+
TicketSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
172
|
+
UploadSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
173
|
+
UserCircle: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
174
|
+
UserSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
175
|
+
UsersSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
176
|
+
VenueSolid: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
177
|
+
Warning: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
178
|
+
CalendarRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
179
|
+
ChatRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
180
|
+
Clock: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
181
|
+
CopyRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
182
|
+
Edit: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
183
|
+
EyeRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
184
|
+
EyeSlashRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
185
|
+
Help: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
186
|
+
HelpRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
187
|
+
SadTear: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
188
|
+
UserRegular: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
189
|
+
CreditCardBackLight: import("@fortawesome/pro-regular-svg-icons").IconDefinition;
|
|
190
190
|
};
|
package/build/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import Counter from "./components/Counter";
|
|
|
5
5
|
import Dropdown from "./components/Dropdown";
|
|
6
6
|
import Flex from "./components/Flex";
|
|
7
7
|
import FormattedInput, { InputFormats } from "./components/FormattedInput";
|
|
8
|
+
import FormattedfullInput, { InputfullFormats } from "./components/FormattedfullInput";
|
|
8
9
|
import Icon, { Icons } from "./components/Icon";
|
|
9
10
|
import Input from "./components/Input";
|
|
10
11
|
import Label from "./components/Label";
|
|
@@ -24,4 +25,4 @@ import * as ErrorUtil from './utils/ErrorUtil';
|
|
|
24
25
|
import makeEventHandler from './utils/makeEventHandler';
|
|
25
26
|
import * as MediaQuery from './utils/MediaQuery';
|
|
26
27
|
import * as Validation from './utils/Validation';
|
|
27
|
-
export { Colors, Button, CodeInput, Counter, Dropdown, Flex, FormattedInput, InputFormats, Icon, Icons, Input, Label, MaxLength, Loader, LoaderSizes, Motion, PhoneNumberInput, Product, TextButton, Tip, UserImage, UserInfo, ValidationError, ErrorUtil, makeEventHandler, MediaQuery, Validation, AddressSearchDropdown, SearchDropdown };
|
|
28
|
+
export { Colors, Button, CodeInput, Counter, Dropdown, Flex, FormattedInput, InputFormats, FormattedfullInput, InputfullFormats, Icon, Icons, Input, Label, MaxLength, Loader, LoaderSizes, Motion, PhoneNumberInput, Product, TextButton, Tip, UserImage, UserInfo, ValidationError, ErrorUtil, makeEventHandler, MediaQuery, Validation, AddressSearchDropdown, SearchDropdown };
|
package/build/index.js
CHANGED
|
@@ -15,6 +15,7 @@ export { default as ValidationError } from './components/ValidationError.js';
|
|
|
15
15
|
import * as MediaQuery from './utils/MediaQuery.js';
|
|
16
16
|
export { MediaQuery };
|
|
17
17
|
export { default as FormattedInput, InputFormats } from './components/FormattedInput.js';
|
|
18
|
+
export { default as FormattedfullInput, InputfullFormats } from './components/FormattedfullInput.js';
|
|
18
19
|
export { default as Input } from './components/Input.js';
|
|
19
20
|
export { default as PhoneNumberInput } from './components/PhoneNumberInput.js';
|
|
20
21
|
export { default as Product } from './components/Product.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellout/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.110",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"module": "build/index.es.js",
|
|
6
6
|
"files": [
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"@hapi/joi": "^17.1.1",
|
|
57
57
|
"@react-pdf/primitives": "^2.0.0",
|
|
58
58
|
"@react-pdf/renderer": "^2.0.20",
|
|
59
|
-
"@sellout/models": "^0.0.
|
|
60
|
-
"@sellout/utils": "^0.0.
|
|
59
|
+
"@sellout/models": "^0.0.110",
|
|
60
|
+
"@sellout/utils": "^0.0.110",
|
|
61
61
|
"@types/escape-html": "^1.0.1",
|
|
62
62
|
"@types/hapi__joi": "^16.0.12",
|
|
63
63
|
"@types/react-pdf": "^4.0.6",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"shortid": "^2.2.16",
|
|
72
72
|
"use-places-autocomplete": "^1.9.4"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "f0424d166bf32ead0bce38f54d5d37caec02cfc6",
|
|
75
75
|
"peerDependencies": {
|
|
76
76
|
"react": "^16.13.0",
|
|
77
77
|
"react-dom": "^16.13.0",
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
declare namespace _default {
|
|
2
|
-
export const title: string;
|
|
3
|
-
export { OldButton as component };
|
|
4
|
-
}
|
|
5
|
-
export default _default;
|
|
6
|
-
export function Text(): JSX.Element;
|
|
7
|
-
export function Loading(): JSX.Element;
|
|
8
|
-
export function MaxWidth(): JSX.Element;
|
|
9
|
-
import OldButton from "../components/Button";
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
declare namespace _default {
|
|
2
|
-
export const title: string;
|
|
3
|
-
export { Input as component };
|
|
4
|
-
}
|
|
5
|
-
export default _default;
|
|
6
|
-
export function Clear(): JSX.Element;
|
|
7
|
-
export function Submit(): JSX.Element;
|
|
8
|
-
export function Loading(): JSX.Element;
|
|
9
|
-
import Input from "../components/Input";
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
declare namespace _default {
|
|
2
|
-
export const title: string;
|
|
3
|
-
export { Loader as component };
|
|
4
|
-
}
|
|
5
|
-
export default _default;
|
|
6
|
-
export function VerySmall(): JSX.Element;
|
|
7
|
-
export function Small(): JSX.Element;
|
|
8
|
-
export function Medium(): JSX.Element;
|
|
9
|
-
export function Large(): JSX.Element;
|
|
10
|
-
export function Colored(): JSX.Element;
|
|
11
|
-
import Loader from "../components/Loader";
|