Merge branch 'develop' into bugfix/fix-empty-screen-description

This commit is contained in:
Nikita Gopienko 2020-11-30 13:27:35 +03:00
commit 4ad116937a
22 changed files with 87 additions and 92 deletions

View File

@ -103,7 +103,7 @@ const UserContent = ({
type="page" type="page"
href={`/products/people/view/${userName}`} href={`/products/people/view/${userName}`}
title={displayName} title={displayName}
fontWeight="bold" fontWeight={600}
onClick={onUserNameClick} onClick={onUserNameClick}
fontSize="15px" fontSize="15px"
color={nameColor} color={nameColor}

View File

@ -37,10 +37,6 @@ const AvatarWrapper = styled.div`
const EditButtonWrapper = styled.div` const EditButtonWrapper = styled.div`
margin-top: 16px; margin-top: 16px;
width: 160px; width: 160px;
& > button {
padding: 8px 20px 9px 20px;
}
`; `;
const ToggleWrapper = styled.div` const ToggleWrapper = styled.div`
@ -62,6 +58,7 @@ const ContactWrapper = styled.div`
.contact-link { .contact-link {
padding: 0 8px; padding: 0 8px;
line-height: 16px;
} }
`; `;

View File

@ -6,6 +6,7 @@ import { ComboBox, TextInput, IconButton } from "asc-web-components";
const Container = styled.div` const Container = styled.div`
display: flex; display: flex;
margin: 0 0 16px 0; margin: 0 0 16px 0;
align-items: center;
.remove_icon { .remove_icon {
padding-left: 8px; padding-left: 8px;
@ -61,6 +62,7 @@ class ContactField extends React.Component {
iconName={"CatalogTrashIcon"} iconName={"CatalogTrashIcon"}
isFill={true} isFill={true}
isClickable={true} isClickable={true}
color="#A3A9AE"
/> />
</Container> </Container>
); );

View File

@ -108,10 +108,10 @@ const StyledButton = styled(ButtonWrapper).attrs((props) => ({
: "0px" : "0px"
: props.icon : props.icon
? props.label ? props.label
? "11px 24px 13px 24px" ? "10px 24px 13px 24px"
: "11px 11px 13px 11px" : "10px 11px 13px 11px"
: props.label : props.label
? "12px 20px 12px 20px" ? "11px 20px 12px 20px"
: "0px")) || : "0px")) ||
(props.size === "big" && (props.size === "big" &&
(props.primary (props.primary
@ -124,10 +124,10 @@ const StyledButton = styled(ButtonWrapper).attrs((props) => ({
: "0px" : "0px"
: props.icon : props.icon
? props.label ? props.label
? "8px 24px 9px 24px" ? "7px 24px 9px 24px"
: "8px 10px 9px 10px" : "7px 10px 9px 10px"
: props.label : props.label
? "8px 16px 8px 16px" ? "7px 16px 8px 16px"
: "0px")) || : "0px")) ||
(props.size === "medium" && (props.size === "medium" &&
(props.primary (props.primary
@ -140,10 +140,10 @@ const StyledButton = styled(ButtonWrapper).attrs((props) => ({
: "0px" : "0px"
: props.icon : props.icon
? props.label ? props.label
? "6px 24px 7px 24px" ? "5px 24px 7px 24px"
: "6px 10px 7px 10px" : "5px 10px 7px 10px"
: props.label : props.label
? "7px 16px 7px 16px" ? "6px 16px 7px 16px"
: "0px")) || : "0px")) ||
(props.size === "base" && (props.size === "base" &&
(props.primary (props.primary
@ -156,10 +156,10 @@ const StyledButton = styled(ButtonWrapper).attrs((props) => ({
: "0px" : "0px"
: props.icon : props.icon
? props.label ? props.label
? "3px 20px 5px 20px" ? "2px 20px 5px 20px"
: "3px 5px 5px 5px" : "2px 5px 5px 5px"
: props.label : props.label
? "4px 12px 5px 12px" ? "3px 12px 5px 12px"
: "0px"))}; : "0px"))};
${(props) => (props.minwidth ? `min-width: ${props.minwidth};` : null)} ${(props) => (props.minwidth ? `min-width: ${props.minwidth};` : null)}

View File

@ -106,9 +106,9 @@ const StyledOptionalItem = styled.div`
`; `;
const StyledIcon = styled.div` const StyledIcon = styled.div`
margin: -6px 8px 0px 0px;
width: 16px; width: 16px;
margin-right: 8px; height: 16px;
margin-top: -2px;
`; `;
const StyledArrowIcon = styled.div` const StyledArrowIcon = styled.div`

View File

@ -14,8 +14,7 @@ import Heading from "../heading";
import throttle from "lodash/throttle"; import throttle from "lodash/throttle";
const DateInputStyle = styled.div` const DateInputStyle = styled.div`
max-width: 110px; width: 115px;
width: 110px;
`; `;
const DropDownStyle = styled.div` const DropDownStyle = styled.div`
@ -127,14 +126,18 @@ class DatePicker extends Component {
}; };
onChange = (value) => { onChange = (value) => {
this.onClick(!this.state.isOpen);
const formatValue = moment(value).format("L"); const formatValue = moment(value).format("L");
this.props.onChange && this.props.onChange(value); this.props.onChange && this.props.onChange(value);
this.setState({ selectedDate: value, value: formatValue, hasError: false }); this.setState({
selectedDate: value,
value: formatValue,
hasError: false,
isOpen: !this.state.isOpen,
});
}; };
onClick = (isOpen) => { onClick = () => {
this.setState({ isOpen }); this.setState({ isOpen: !this.state.isOpen });
}; };
onClose = () => { onClose = () => {
@ -359,9 +362,8 @@ class DatePicker extends Component {
isDisabled={isDisabled} isDisabled={isDisabled}
isReadOnly={isReadOnly} isReadOnly={isReadOnly}
hasError={hasError} hasError={hasError}
//onFocus={this.onClick.bind(this, true)} iconName="CalendarIcon"
iconName={"CalendarIcon"} onIconClick={this.onClick}
onIconClick={this.onClick.bind(this, !isOpen)}
value={value} value={value}
onChange={this.handleChange} onChange={this.handleChange}
mask={mask} mask={mask}

View File

@ -57,7 +57,7 @@ function getVerticalCss() {
.icon-button { .icon-button {
position: relative; position: relative;
margin: 0; margin: 0;
padding: 1px 8px; padding: 0px 8px;
width: 13px; width: 13px;
height: 13px; height: 13px;
} }

View File

@ -85,7 +85,7 @@ const StyledGrid = styled.div`
${(props) => props.columnsProp && columnsStyle(props)} ${(props) => props.columnsProp && columnsStyle(props)}
display: grid; display: grid;
${(props) => props.gridArea && gridAreaStyle(props.gridArea)} ${(props) => props.gridArea && gridAreaStyle(props.gridArea)}
${(props) => props.gridColumnGap && gridColumnGapStyle(props)} ${(props) => props.gridColumnGap && gridColumnGapStyle(props.gridColumnGap)}
${(props) => props.gridGap && gridGapStyle(props.gridGap)} ${(props) => props.gridGap && gridGapStyle(props.gridGap)}
${(props) => props.gridRowGap && gridRowGapStyle(props)} ${(props) => props.gridRowGap && gridRowGapStyle(props)}
${(props) => props.heightProp && heightStyle(props.heightProp)} ${(props) => props.heightProp && heightStyle(props.heightProp)}

View File

@ -248,6 +248,7 @@ HelpButton.defaultProps = {
displayType: "auto", displayType: "auto",
className: "icon-button", className: "icon-button",
iconName: "QuestionIcon", iconName: "QuestionIcon",
color: "#A3A9AE",
}; };
export default HelpButton; export default HelpButton;

View File

@ -1,3 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 0C0.895508 0 0 0.895508 0 2V14C0 15.1045 0.895508 16 2 16H14C15.1045 16 16 15.1045 16 14V2C16 0.895508 15.1045 0 14 0H2ZM13.625 7.3833C14.0691 7.9502 14.0718 8.59521 14.0757 9.4873C14.0764 9.66992 14.0818 10.1348 14.082 10.1348C14.0696 11.29 13.709 12.2607 13.0391 12.9419C12.3679 13.6245 11.4207 13.9902 10.2996 13.9995H10.2893H5.91699L5.83496 14C4.57837 14 3.6084 13.6499 2.95239 12.9595C2.2959 12.2686 2.08569 11.3345 2.08569 10.0361C2.08618 9.99951 2.08496 9.96289 2.08374 9.92676C2.08203 9.875 2.08032 9.82373 2.08374 9.77344L2.08594 5.21045C2.14014 4.07861 2.65161 3.37891 3.03687 2.97803C3.65918 2.33057 4.53882 2.00195 5.65186 2.00195L5.68262 2.00244L8.54468 2L8.57178 2.00098C10.4429 2.05176 11.791 3.33887 11.8044 5.12988C11.8535 5.66748 11.8228 6.16504 11.7168 6.61377C12.3459 6.63232 13.1218 6.74121 13.625 7.3833ZM8.36011 4.43066L5.91479 4.43359C5.33765 4.42822 4.86426 4.87891 4.85498 5.44873C4.8457 6.01807 5.30542 6.4873 5.88184 6.49609L8.34399 6.49512C8.9126 6.49512 9.37793 6.0835 9.38721 5.51953C9.39648 4.9502 8.93652 4.43994 8.36011 4.43066ZM5.62061 11.2227H10.5112C11.0876 11.2227 11.5549 10.7607 11.5549 10.1909C11.5549 9.62158 11.0879 9.15967 10.5112 9.15967H5.62061C5.04443 9.15967 4.5769 9.62158 4.5769 10.1909C4.5769 10.7607 5.04443 11.2227 5.62061 11.2227Z" fill="#333333"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M2 0C0.895431 0 0 0.895431 0 2V14C0 15.1046 0.895431 16 2 16H14C15.1046 16 16 15.1046 16 14V2C16 0.895431 15.1046 0 14 0H2ZM14.0757 9.48723V9.48754C14.0765 9.67003 14.0818 10.135 14.0819 10.135C14.0696 11.2898 13.7089 12.2606 13.0391 12.9419C12.3679 13.6245 11.4206 13.9902 10.2996 13.9995H10.2892H5.91699C5.88953 13.9999 5.86206 14 5.83485 14C4.57826 14 3.60831 13.6499 2.95236 12.9593C2.2959 12.2687 2.08569 11.3343 2.08569 10.036C2.08615 9.99929 2.08496 9.96295 2.08377 9.92691C2.08206 9.87522 2.08038 9.82413 2.08366 9.77335L2.08594 5.21036C2.14011 4.07874 2.65165 3.3789 3.03677 2.97827C3.65906 2.33059 4.5389 2.00213 5.65198 2.00213L5.68273 2.00225L8.54473 2L8.57168 2.00075C10.4429 2.05178 11.7911 3.339 11.8045 5.1298C11.8535 5.66753 11.8228 6.16498 11.7169 6.61365C12.3459 6.63216 13.1218 6.74099 13.6249 7.38316C14.069 7.95034 14.0718 8.59506 14.0757 9.48723ZM8.3602 4.43085L5.91484 4.43372C5.33773 4.42822 4.86415 4.87901 4.85504 5.44864C4.8458 6.01801 5.30546 6.48707 5.88181 6.4962L8.344 6.4952C8.91263 6.4952 9.37799 6.08368 9.3871 5.51968C9.39646 4.95006 8.93655 4.43985 8.3602 4.43085ZM5.62059 11.2226H10.5112C11.0877 11.2226 11.5549 10.7609 11.5549 10.1911C11.5549 9.6215 11.0878 9.1597 10.5113 9.1597H5.62059C5.04437 9.1597 4.57699 9.6215 4.57699 10.1911C4.57699 10.7609 5.04437 11.2226 5.62059 11.2226Z" fill="#333333"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,12 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 16 16"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<title>calendar</title> <path fill-rule="evenodd" clip-rule="evenodd" d="M14.4444 1H12.6667V0H11.1111V1H4.88889V0H3.33333V1H1.55556C0.696134 1 0.00780207 1.71599 0.00780207 2.60001L0 14.4C0 15.284 0.696097 16 1.55556 16H14.4444C15.3039 16 16 15.284 16 14.4V2.59997C16 1.71599 15.3039 1 14.4444 1ZM14 14H2V5H14V14ZM4 7H7V9H4V7ZM12 7H9V9H12V7ZM4 10H7V12H4V10ZM12 10H9V12H12V10Z" fill="#A3A9AE"/>
<g>
<path fill="#83888d" d="M14,2H12V1H11V2H5V1H4V2H2a.86.86,0,0,0-.39.06,1.08,1.08,0,0,0-.34.21,1.08,1.08,0,0,0-.21.34A.86.86,0,0,0,1,3V14a.86.86,0,0,0,.06.39,1.08,1.08,0,0,0,.21.34,1.08,1.08,0,0,0,.34.21A.86.86,0,0,0,2,15H14a.86.86,0,0,0,.39-.06.87.87,0,0,0,.55-.55A.86.86,0,0,0,15,14V3a.86.86,0,0,0-.06-.39,1.08,1.08,0,0,0-.21-.34,1.08,1.08,0,0,0-.34-.21A.86.86,0,0,0,14,2Zm0,12H2V5H14Z"/>
<path fill="#83888d" d="M6,7H4V9H6Z"/>
<path fill="#83888d" d="M9,7H7V9H9Z"/>
<path fill="#83888d" d="M12,7H10V9h2Z"/>
<path fill="#83888d" d="M6,10H4v2H6Z"/>
<path fill="#83888d" d="M9,10H7v2H9Z"/>
<path fill="#83888d" d="M12,10H10v2h2Z"/>
</g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 792 B

After

Width:  |  Height:  |  Size: 473 B

View File

@ -1,3 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.6868 8.78273L15.5718 8.60175C15.3878 8.33117 15.2047 8.06059 14.9282 7.88014C14.6984 7.72192 14.4223 7.60956 14.1702 7.49649C14.8824 7.158 15.3697 6.68457 15.5999 6.0755C15.7606 5.57878 15.4667 5.17362 15.4667 4.76739V4.72242C15.4667 4.2705 14.8417 3.9777 14.2673 3.81965C13.9215 3.75209 13.5403 3.75209 13.1958 3.77396L12.4407 3.93218L12.6968 3.36862C12.9261 2.6463 12.8589 1.94745 12.4681 1.29269L12.3995 1.18069C12.0544 0.616059 11.549 0.277922 10.859 0.0976536C10.1469 -0.0831484 9.54045 -0.0155921 8.89689 0.322901C8.25226 0.662104 7.64443 1.18104 7.64443 1.85696V1.90194L7.56318 2.06016L7.44194 1.90194L7.19714 1.4966C6.82913 0.93233 6.36246 0.593837 5.78734 0.435613C5.28138 0.323078 4.86502 0.368234 4.42804 0.593837C3.9459 0.88664 3.6675 1.33909 3.55229 1.97003C3.43709 2.62426 3.55194 3.25627 3.89683 3.88721L4.05666 4.11352L3.50518 3.93218C2.81522 3.77396 2.17184 3.86463 1.52845 4.20294C0.861243 4.54108 0.447727 5.01522 0.171457 5.66927C-0.0813453 6.30092 -0.0578784 6.90929 0.263725 7.47391C0.40186 7.72209 0.608618 7.92512 0.792087 8.06059C1.06836 8.33099 1.41325 8.48904 1.82694 8.55659L1.9873 8.60157L1.64312 8.89562C1.3208 9.16673 1.13751 9.50469 1.02249 9.84283C0.907821 10.2487 0.953688 10.6549 1.18338 11.0391C1.29858 11.2192 1.41325 11.3758 1.59725 11.49C1.78125 11.6469 2.01094 11.7602 2.2865 11.7829C2.79246 11.8962 3.32136 11.8962 3.89541 11.7148L3.48118 12.392L3.36723 12.6852C3.137 13.4059 3.20545 14.0377 3.55052 14.6919C3.71159 14.9412 3.89541 15.1664 4.07941 15.3693C4.35515 15.6175 4.69933 15.7755 5.11391 15.8888C5.80228 16.0687 6.49224 16.0452 7.15962 15.7074C7.80319 15.3693 8.21617 14.8271 8.42364 14.1511L8.44586 14.0164C8.88302 14.4889 9.29671 14.8052 9.75699 14.9181C10.2164 15.053 10.6759 15.0313 11.0898 14.7599C11.4806 14.5339 11.7563 14.1508 11.8939 13.6766C12.0087 13.1806 12.0087 12.6848 11.8939 12.122C12.1232 12.2786 12.3538 12.3917 12.6292 12.4587C13.3643 12.6848 14.0086 12.6617 14.652 12.3236C15.2726 11.9858 15.6863 11.4432 15.8929 10.7444C16.0778 10.0679 16.0319 9.41402 15.6868 8.78273ZM12.3542 5.0154L12.6296 4.90215C13.0441 4.72242 13.434 4.67673 13.8486 4.72242C14.2379 4.76739 14.5151 4.94713 14.6523 5.21842L14.7442 5.51122L14.6984 5.73736C14.5378 6.14341 14.1924 6.45915 13.6184 6.70715C13.3885 6.81933 13.136 6.86502 12.8603 6.90928L10.0329 7.24867L9.98632 7.09044L9.94046 7.02235L10.0329 6.90911L12.3542 5.0154ZM8.44604 2.17305C8.56088 1.72203 8.8832 1.38371 9.29689 1.15793C9.71076 0.93233 10.1703 0.886818 10.6068 1.04486C11.0902 1.15793 11.4342 1.40593 11.6418 1.78941C11.7567 2.01519 11.8249 2.28594 11.8249 2.5791L11.7565 3.07493C11.6647 3.32311 11.5495 3.54907 11.4119 3.75227L9.34329 6.23337C9.13671 6.0755 8.90684 5.96243 8.67626 5.8499L8.44604 3.30107L8.42382 2.3983L8.44604 2.17305ZM4.51693 2.24043C4.53897 1.83456 4.69933 1.5638 4.97578 1.40611C5.11391 1.29304 5.32067 1.29304 5.50414 1.38371C5.91837 1.49678 6.26344 1.78958 6.53828 2.35368C6.65349 2.57946 6.76815 2.80488 6.81473 3.07529L7.27411 5.73789L6.92993 5.85043L4.88351 3.66178L4.76884 3.43636C4.58484 3.02995 4.47035 2.64666 4.51693 2.24043ZM1.13716 7.02253C0.953511 6.68475 0.953511 6.34661 1.09165 6.00812C1.25236 5.57878 1.55103 5.241 1.98694 5.06038C2.40153 4.8346 2.81451 4.76757 3.2746 4.87957L3.89523 5.12775L5.91801 6.5715C5.73419 6.79764 5.61898 7.02235 5.54965 7.24867L2.23992 7.65472L2.01059 7.60974C1.5969 7.54165 1.3208 7.36209 1.13716 7.02253ZM7.64443 13.6777L7.56318 13.9037C7.40212 14.3095 7.09705 14.648 6.68353 14.8274C6.26948 15.0536 5.81721 15.0985 5.40458 14.9867C4.9436 14.8735 4.59213 14.6029 4.40813 14.2416C4.29381 14.0169 4.19888 13.7456 4.19888 13.4745L4.31035 12.9566C4.35693 12.7307 4.47177 12.5045 4.65542 12.3245L6.58522 10.0677C6.81509 10.1811 7.10291 10.2939 7.35625 10.317C7.40158 11.0834 7.64443 11.8967 7.64443 12.7753V13.6777ZM6.76798 9.16709C6.46931 8.89597 6.30913 8.51161 6.30913 8.10592C6.30913 7.69969 6.46931 7.36173 6.76798 7.04546C7.04425 6.79764 7.41207 6.63959 7.8487 6.63959C8.26257 6.63959 8.65333 6.79782 8.90684 7.04546C9.22738 7.36173 9.36623 7.69969 9.36623 8.10592C9.36623 8.51161 9.22738 8.89562 8.90684 9.16709C8.60746 9.46007 8.26257 9.61687 7.8487 9.61687C7.41207 9.61723 7.04442 9.46042 6.76798 9.16709ZM11.0214 13.1138C10.9753 13.5209 10.8374 13.8139 10.5607 13.927C10.4007 14.0386 10.2165 14.0386 10.0325 14.0173C9.59592 13.9039 9.25103 13.5661 8.99858 13.0237L8.72195 12.2795L8.37777 10.3171L8.76764 10.181L9.0672 10.0243L10.0327 10.9929L10.6304 11.7152L10.7451 11.9403C10.9518 12.3245 11.0672 12.6857 11.0214 13.1138ZM14.9745 10.4741C14.8594 10.9264 14.5837 11.2644 14.1924 11.4441C13.7794 11.6702 13.3648 11.7154 12.906 11.5575C12.6296 11.4905 12.4459 11.376 12.2854 11.1966L9.87148 9.23411L10.0325 8.89597L10.1021 8.62468L12.6989 8.39872L13.618 8.37686L13.8486 8.39872C14.1924 8.51197 14.5151 8.71499 14.698 9.05295C14.9279 9.3022 15.0431 9.64034 15.0431 10.0247L14.9745 10.4741Z" fill="black"/> <path d="M15.6868 8.78273L15.5718 8.60175C15.3878 8.33117 15.2047 8.06059 14.9282 7.88014C14.6984 7.72192 14.4223 7.60956 14.1702 7.49649C14.8824 7.158 15.3697 6.68457 15.5999 6.0755C15.7606 5.57878 15.4667 5.17362 15.4667 4.76739V4.72242C15.4667 4.2705 14.8417 3.9777 14.2673 3.81965C13.9215 3.75209 13.5403 3.75209 13.1958 3.77396L12.4407 3.93218L12.6968 3.36862C12.9261 2.6463 12.8589 1.94745 12.4681 1.29269L12.3995 1.18069C12.0544 0.616059 11.549 0.277922 10.859 0.0976536C10.1469 -0.0831484 9.54045 -0.0155921 8.89689 0.322901C8.25226 0.662104 7.64443 1.18104 7.64443 1.85696V1.90194L7.56318 2.06016L7.44194 1.90194L7.19714 1.4966C6.82913 0.93233 6.36246 0.593837 5.78734 0.435613C5.28138 0.323078 4.86502 0.368234 4.42804 0.593837C3.9459 0.88664 3.6675 1.33909 3.55229 1.97003C3.43709 2.62426 3.55194 3.25627 3.89683 3.88721L4.05666 4.11352L3.50518 3.93218C2.81522 3.77396 2.17184 3.86463 1.52845 4.20294C0.861243 4.54108 0.447727 5.01522 0.171457 5.66927C-0.0813453 6.30092 -0.0578784 6.90929 0.263725 7.47391C0.40186 7.72209 0.608618 7.92512 0.792087 8.06059C1.06836 8.33099 1.41325 8.48904 1.82694 8.55659L1.9873 8.60157L1.64312 8.89562C1.3208 9.16673 1.13751 9.50469 1.02249 9.84283C0.907821 10.2487 0.953688 10.6549 1.18338 11.0391C1.29858 11.2192 1.41325 11.3758 1.59725 11.49C1.78125 11.6469 2.01094 11.7602 2.2865 11.7829C2.79246 11.8962 3.32136 11.8962 3.89541 11.7148L3.48118 12.392L3.36723 12.6852C3.137 13.4059 3.20545 14.0377 3.55052 14.6919C3.71159 14.9412 3.89541 15.1664 4.07941 15.3693C4.35515 15.6175 4.69933 15.7755 5.11391 15.8888C5.80228 16.0687 6.49224 16.0452 7.15962 15.7074C7.80319 15.3693 8.21617 14.8271 8.42364 14.1511L8.44586 14.0164C8.88302 14.4889 9.29671 14.8052 9.75699 14.9181C10.2164 15.053 10.6759 15.0313 11.0898 14.7599C11.4806 14.5339 11.7563 14.1508 11.8939 13.6766C12.0087 13.1806 12.0087 12.6848 11.8939 12.122C12.1232 12.2786 12.3538 12.3917 12.6292 12.4587C13.3643 12.6848 14.0086 12.6617 14.652 12.3236C15.2726 11.9858 15.6863 11.4432 15.8929 10.7444C16.0778 10.0679 16.0319 9.41402 15.6868 8.78273ZM12.3542 5.0154L12.6296 4.90215C13.0441 4.72242 13.434 4.67673 13.8486 4.72242C14.2379 4.76739 14.5151 4.94713 14.6523 5.21842L14.7442 5.51122L14.6984 5.73736C14.5378 6.14341 14.1924 6.45915 13.6184 6.70715C13.3885 6.81933 13.136 6.86502 12.8603 6.90928L10.0329 7.24867L9.98632 7.09044L9.94046 7.02235L10.0329 6.90911L12.3542 5.0154ZM8.44604 2.17305C8.56088 1.72203 8.8832 1.38371 9.29689 1.15793C9.71076 0.93233 10.1703 0.886818 10.6068 1.04486C11.0902 1.15793 11.4342 1.40593 11.6418 1.78941C11.7567 2.01519 11.8249 2.28594 11.8249 2.5791L11.7565 3.07493C11.6647 3.32311 11.5495 3.54907 11.4119 3.75227L9.34329 6.23337C9.13671 6.0755 8.90684 5.96243 8.67626 5.8499L8.44604 3.30107L8.42382 2.3983L8.44604 2.17305ZM4.51693 2.24043C4.53897 1.83456 4.69933 1.5638 4.97578 1.40611C5.11391 1.29304 5.32067 1.29304 5.50414 1.38371C5.91837 1.49678 6.26344 1.78958 6.53828 2.35368C6.65349 2.57946 6.76815 2.80488 6.81473 3.07529L7.27411 5.73789L6.92993 5.85043L4.88351 3.66178L4.76884 3.43636C4.58484 3.02995 4.47035 2.64666 4.51693 2.24043ZM1.13716 7.02253C0.953511 6.68475 0.953511 6.34661 1.09165 6.00812C1.25236 5.57878 1.55103 5.241 1.98694 5.06038C2.40153 4.8346 2.81451 4.76757 3.2746 4.87957L3.89523 5.12775L5.91801 6.5715C5.73419 6.79764 5.61898 7.02235 5.54965 7.24867L2.23992 7.65472L2.01059 7.60974C1.5969 7.54165 1.3208 7.36209 1.13716 7.02253ZM7.64443 13.6777L7.56318 13.9037C7.40212 14.3095 7.09705 14.648 6.68353 14.8274C6.26948 15.0536 5.81721 15.0985 5.40458 14.9867C4.9436 14.8735 4.59213 14.6029 4.40813 14.2416C4.29381 14.0169 4.19888 13.7456 4.19888 13.4745L4.31035 12.9566C4.35693 12.7307 4.47177 12.5045 4.65542 12.3245L6.58522 10.0677C6.81509 10.1811 7.10291 10.2939 7.35625 10.317C7.40158 11.0834 7.64443 11.8967 7.64443 12.7753V13.6777ZM6.76798 9.16709C6.46931 8.89597 6.30913 8.51161 6.30913 8.10592C6.30913 7.69969 6.46931 7.36173 6.76798 7.04546C7.04425 6.79764 7.41207 6.63959 7.8487 6.63959C8.26257 6.63959 8.65333 6.79782 8.90684 7.04546C9.22738 7.36173 9.36623 7.69969 9.36623 8.10592C9.36623 8.51161 9.22738 8.89562 8.90684 9.16709C8.60746 9.46007 8.26257 9.61687 7.8487 9.61687C7.41207 9.61723 7.04442 9.46042 6.76798 9.16709ZM11.0214 13.1138C10.9753 13.5209 10.8374 13.8139 10.5607 13.927C10.4007 14.0386 10.2165 14.0386 10.0325 14.0173C9.59592 13.9039 9.25103 13.5661 8.99858 13.0237L8.72195 12.2795L8.37777 10.3171L8.76764 10.181L9.0672 10.0243L10.0327 10.9929L10.6304 11.7152L10.7451 11.9403C10.9518 12.3245 11.0672 12.6857 11.0214 13.1138ZM14.9745 10.4741C14.8594 10.9264 14.5837 11.2644 14.1924 11.4441C13.7794 11.6702 13.3648 11.7154 12.906 11.5575C12.6296 11.4905 12.4459 11.376 12.2854 11.1966L9.87148 9.23411L10.0325 8.89597L10.1021 8.62468L12.6989 8.39872L13.618 8.37686L13.8486 8.39872C14.1924 8.51197 14.5151 8.71499 14.698 9.05295C14.9279 9.3022 15.0431 9.64034 15.0431 10.0247L14.9745 10.4741Z" fill="#333333"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -1,3 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.2 4H20.8C22.01 4 23 4.97122 23 6.15826V18.8417C23 20.0288 22.01 21 20.8 21H3.2C1.99 21 1 20.0288 1 18.8417V6.15826C1 4.97122 1.99 4 3.2 4ZM12 13L21 8V6L12 11L3 6V8L12 13Z" fill="#7A95B0"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M14.4 1H1.6C0.72 1 0 1.7427 0 2.65044V12.3496C0 13.2573 0.72 14 1.6 14H14.4C15.28 14 16 13.2573 16 12.3496V2.65044C16 1.7427 15.28 1 14.4 1ZM14.5455 4.15152L8 8.09091L1.45455 4.15152V2.57576L8 6.51515L14.5455 2.57576V4.15152Z" fill="#333333"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 343 B

After

Width:  |  Height:  |  Size: 396 B

View File

@ -1,3 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.9673 3.8126C15.973 3.88308 15.9792 3.95889 15.9862 4.04092C15.9862 4.04092 15.9997 4.15334 16 4.20071C16 4.64509 15.7014 5 15.334 5H12.6497C12.2904 4.98609 11.9999 4.63457 11.9999 4.19807L11.9956 3.87975C11.9956 3.39288 11.6675 3 11.2593 3H4.74139C4.33412 3 4.00391 3.39288 4.00391 3.87975L4.00235 4.18304C4.00235 4.61953 3.71036 4.98609 3.35165 5H0.667302C0.301382 5 0 4.64509 0 4.20071C0 4.15221 0.0144112 4.04092 0.0144112 4.04092C0.11059 2.90702 0.139086 2.84377 1 1.83093C2.03761 0.611313 5.14992 0 8.00115 0C10.8499 0 13.9636 0.610561 15 1.83093C15.8916 2.88079 15.8938 2.90886 15.9673 3.8126ZM11 4.83335V5L15.4756 8.80793C15.798 9.11119 16 9.53414 16 10L16.0007 13.6669C16.0007 14.4047 15.3796 14.9999 14.6094 14.9999H14.0007V15.1653C14.0007 15.6255 13.481 15.9999 13.0007 15.9999C12.5218 15.9999 12.0007 15.6255 12.0007 15.1653V14.9999H4.00073V15.1653C4.00073 15.6255 3.48259 15.9999 3.00073 15.9999C2.52214 15.9999 2.00073 15.6255 2.00073 15.1653V14.9999H1.39204C0.623812 14.9999 0.000732422 14.4044 0.000732422 13.6669L0 10C0 9.53382 0.2017 9.11119 0.525335 8.80793L5 5V4.83335C5 4.37438 5.51978 4 6 4C6.48055 4 7 4.3747 7 4.83335V5H9V4.83335C9 4.37438 9.52141 4 10 4C10.4789 4 11 4.3747 11 4.83335ZM8 13C9.65685 13 11 11.6569 11 10C11 8.34315 9.65685 7 8 7C6.34315 7 5 8.34315 5 10C5 11.6569 6.34315 13 8 13ZM8 11C8.55229 11 9 10.5523 9 10C9 9.44771 8.55229 9 8 9C7.44772 9 7 9.44771 7 10C7 10.5523 7.44772 11 8 11Z" fill="#333333"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M15.9665 3.81262C15.9723 3.8831 15.9784 3.95891 15.9855 4.04094C15.9855 4.04094 15.999 4.15335 15.9993 4.20073C15.9993 4.64511 15.7007 5.00002 15.3332 5.00002H12.6491C12.2898 4.98611 11.9994 4.63459 11.9994 4.19809L11.995 3.87977C11.995 3.3929 11.667 3.00001 11.2588 3.00001H4.74118C4.33392 3.00001 4.00373 3.3929 4.00373 3.87977L4.00217 4.18306C4.00217 4.61955 3.71019 4.98611 3.3515 5.00002H0.667272C0.301369 5.00002 0 4.64511 0 4.20073C0 4.15223 0.0144106 4.04094 0.0144106 4.04094C0.110585 2.90704 0.13908 2.84378 0.999954 1.83094C2.03751 0.611316 5.14968 0 8.00078 0C10.8494 0 13.963 0.610564 14.9993 1.83094C15.8908 2.88081 15.8931 2.90887 15.9665 3.81262ZM10.9995 4.83336V5L15.4749 8.80795C15.7972 9.11122 15.9993 9.53416 15.9993 10L16 13.6669C16 14.4047 15.3789 15 14.6088 15H14.0001V15.1654C14.0001 15.6256 13.4803 16 13.0001 16C12.5212 16 12.0002 15.6256 12.0002 15.1654V15H4.00055V15.1654C4.00055 15.6256 3.48243 16 3.0006 16C2.52203 16 2.00064 15.6256 2.00064 15.1654V15H1.39197C0.623783 15 0.000732388 14.4044 0.000732388 13.6669L0 10C0 9.53385 0.201691 9.11122 0.525311 8.80795L4.99977 5V4.83336C4.99977 4.37438 5.51953 4 5.99973 4C6.48025 4 6.99968 4.3747 6.99968 4.83336V5H8.99959V4.83336C8.99959 4.37438 9.52098 4 9.99954 4C10.4784 4 10.9995 4.3747 10.9995 4.83336ZM7.99963 13.0001C9.65641 13.0001 10.9995 11.6569 10.9995 10C10.9995 8.34318 9.65641 7.00003 7.99963 7.00003C6.34286 7.00003 4.99977 8.34318 4.99977 10C4.99977 11.6569 6.34286 13.0001 7.99963 13.0001ZM7.99968 11C8.55196 11 8.99968 10.5523 8.99968 10C8.99968 9.44776 8.55196 9.00004 7.99968 9.00004C7.44739 9.00004 6.99968 9.44776 6.99968 10C6.99968 10.5523 7.44739 11 7.99968 11Z" fill="#333333"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1,3 +1,3 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.75 0H2.25C1.00912 0 0 1.00912 0 2.25V15.75C0 16.9909 1.00912 18 2.25 18H9V11.4579H6.54346V9H9V6.64499C9 4.78087 10.5109 3.26999 12.375 3.26999H14.7237V5.73094H13.401C12.78 5.73094 12.276 5.92288 12.276 6.54388V9H15.1875L14.0625 11.4579H12.276V18H15.75C16.9909 18 18 16.9909 18 15.75V2.25C18 1.00912 16.9909 0 15.75 0Z" fill="#4469B0"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M14 0H2C0.897 0 0 0.897 0 2V14C0 15.103 0.897 16 2 16H8V10.1848H5.81641V8H8V5.90666C8 4.24966 9.343 2.90666 11 2.90666H13.0877V5.09417H11.912C11.36 5.09417 10.912 5.26478 10.912 5.81678V8H13.5L12.5 10.1848H10.912V16H14C15.103 16 16 15.103 16 14V2C16 0.897 15.103 0 14 0Z" fill="#333333"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 494 B

After

Width:  |  Height:  |  Size: 441 B

View File

@ -1,3 +1,3 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.2 0H1.8C0.81 0 0 0.81 0 1.8V16.2C0 17.19 0.81 18 1.8 18H16.2C17.19 18 18 17.19 18 16.2V1.8C18 0.81 17.19 0 16.2 0ZM14.13 6.57002C14.04 10.71 11.43 13.59 7.47 13.77C5.85 13.86 4.68 13.32 3.6 12.69C4.77 12.8701 6.3 12.4201 7.11 11.7C5.94 11.61 5.22 10.98 4.86 9.99002C5.22 10.08 5.58 9.99002 5.85 9.99002C4.77 9.63002 4.05 9.00002 3.96 7.56002C4.23 7.74002 4.59 7.83002 4.95 7.83002C4.14 7.38002 3.6 5.67002 4.23 4.59002C5.4 5.85002 6.84 6.93002 9.18 7.11002C8.55 4.59002 11.97 3.24002 13.32 4.95002C13.95 4.86002 14.4 4.59002 14.85 4.41002C14.67 5.04002 14.31 5.40002 13.86 5.76002C14.31 5.67002 14.76 5.58002 15.12 5.40002C15.03 5.85002 14.58 6.21002 14.13 6.57002Z" fill="#2AA3EF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M14.4 0H1.6C0.72 0 0 0.72 0 1.6V14.4C0 15.28 0.72 16 1.6 16H14.4C15.28 16 16 15.28 16 14.4V1.6C16 0.72 15.28 0 14.4 0ZM12.56 5.84C12.48 9.52 10.16 12.08 6.64 12.24C5.2 12.32 4.16 11.84 3.2 11.28C4.24 11.44 5.6 11.04 6.32 10.4C5.28 10.32 4.64 9.76 4.32 8.88C4.64 8.96 4.96 8.88 5.2 8.88C4.24 8.56 3.6 8 3.52 6.72C3.76 6.88 4.08 6.96 4.4 6.96C3.68 6.56 3.2 5.04 3.76 4.08C4.8 5.2 6.08 6.16 8.16 6.32C7.6 4.08 10.64 2.88 11.84 4.4C12.4 4.32 12.8 4.08 13.2 3.92C13.04 4.48 12.72 4.8 12.32 5.12C12.72 5.04 13.12 4.96 13.44 4.8C13.36 5.2 12.96 5.52 12.56 5.84Z" fill="#333333"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 842 B

After

Width:  |  Height:  |  Size: 725 B

View File

@ -1,3 +1,3 @@
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.0135 9.35418C15.0975 8.91623 15.1419 8.46432 15.1419 8.00193C15.1419 4.05724 11.9439 0.859468 7.99934 0.859468C7.5369 0.859468 7.08494 0.903932 6.64694 0.987915C5.07009 -0.386639 2.67602 -0.324331 1.17452 1.17712C-0.327022 2.67852 -0.389378 5.07274 0.985321 6.64968C0.901387 7.08758 0.856923 7.53954 0.856923 8.00193C0.856923 11.9467 4.05489 15.1444 7.99938 15.1444C8.46187 15.1444 8.91388 15.1 9.35192 15.016C10.9287 16.3905 13.3228 16.3282 14.8243 14.8268C16.3256 13.3253 16.3881 10.9311 15.0135 9.35418ZM8.13544 12.4011C6.02003 12.4011 4.25723 11.4556 4.25723 10.3016C4.25723 9.78888 4.54554 9.32397 5.20252 9.32397C6.21234 9.32397 6.30859 10.7663 8.03963 10.7663C8.87276 10.7663 9.40172 10.3977 9.40172 9.91703C9.40172 9.32397 8.88891 9.22787 8.05558 9.01956L6.67734 8.6831C5.31486 8.34644 4.25723 7.78557 4.25723 6.21493C4.25723 4.30778 6.14819 3.60271 7.76688 3.60271C9.54597 3.60271 11.3409 4.30778 11.3409 5.38146C11.3409 5.92628 10.972 6.40738 10.3632 6.40738C9.44963 6.40738 9.41733 5.33356 7.94328 5.33356C7.12601 5.33356 6.59714 5.55786 6.59714 6.05477C6.59714 6.59959 7.12601 6.72765 7.84737 6.88805L8.82471 7.1125C10.1547 7.41677 11.7416 7.97778 11.7416 9.61277C11.7416 11.5196 9.89824 12.4011 8.13544 12.4011Z" fill="#333333"/> <path d="M15.0133 9.35222C15.0972 8.91428 15.1416 8.46236 15.1416 7.99998C15.1416 4.05529 11.9436 0.857515 7.99909 0.857515C7.53666 0.857515 7.08469 0.901979 6.6467 0.985961C5.06985 -0.388592 2.67578 -0.326284 1.17428 1.17516C-0.327266 2.67656 -0.389623 5.07078 0.985076 6.64773C0.901143 7.08563 0.856679 7.53759 0.856679 7.99998C0.856679 11.9447 4.05464 15.1425 7.99914 15.1425C8.46162 15.1425 8.91363 15.098 9.35168 15.014C10.9284 16.3886 13.3226 16.3263 14.824 14.8248C16.3254 13.3234 16.3879 10.9292 15.0133 9.35222ZM8.1352 12.3991C6.01979 12.3991 4.25699 11.4536 4.25699 10.2997C4.25699 9.78693 4.5453 9.32202 5.20227 9.32202C6.21209 9.32202 6.30834 10.7644 8.03939 10.7644C8.87252 10.7644 9.40148 10.3957 9.40148 9.91508C9.40148 9.32202 8.88866 9.22591 8.05534 9.0176L6.6771 8.68114C5.31462 8.34449 4.25699 7.78362 4.25699 6.21298C4.25699 4.30583 6.14794 3.60076 7.76664 3.60076C9.54573 3.60076 11.3406 4.30583 11.3406 5.37951C11.3406 5.92433 10.9717 6.40543 10.363 6.40543C9.44938 6.40543 9.41709 5.3316 7.94304 5.3316C7.12576 5.3316 6.5969 5.55591 6.5969 6.05282C6.5969 6.59764 7.12576 6.7257 7.84713 6.8861L8.82446 7.11055C10.1544 7.41482 11.7413 7.97583 11.7413 9.61081C11.7413 11.5176 9.898 12.3991 8.1352 12.3991Z" fill="#333333"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,3 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 7V3L6 2V7H0ZM8 1.5L15.9979 0V7H8V1.5ZM15.9979 9V16L8 14.5V9H15.9979ZM6 14L0 13L0.00520002 9H6V14Z" fill="#333333"/> <path d="M0 7V3L6.00078 2V7H0ZM8.00103 1.5L16 0V7H8.00103V1.5ZM16 9V16L8.00103 14.5V9H16ZM6.00078 14L0 13L0.00520069 9H6.00078V14Z" fill="#333333"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 231 B

After

Width:  |  Height:  |  Size: 252 B

View File

@ -102,7 +102,7 @@ class InputBlock extends React.Component {
} else { } else {
switch (size) { switch (size) {
case "base": case "base":
iconButtonSize = 15; iconButtonSize = 16;
break; break;
case "middle": case "middle":
iconButtonSize = 18; iconButtonSize = 18;

View File

@ -411,45 +411,46 @@ class PasswordInput extends React.Component {
) )
: null; : null;
const tooltipContent = !isDisableTooltip ? ( const tooltipContent =
<StyledTooltipContainer forwardedAs="div" title={tooltipPasswordTitle}> !isDisableTooltip && !isDisabled ? (
{tooltipPasswordTitle} <StyledTooltipContainer forwardedAs="div" title={tooltipPasswordTitle}>
<StyledTooltipItem {tooltipPasswordTitle}
forwardedAs="div"
title={tooltipPasswordLength}
valid={validLength}
>
{tooltipPasswordLength}
</StyledTooltipItem>
{passwordSettings.digits && (
<StyledTooltipItem <StyledTooltipItem
forwardedAs="div" forwardedAs="div"
title={tooltipPasswordDigits} title={tooltipPasswordLength}
valid={validDigits} valid={validLength}
> >
{tooltipPasswordDigits} {tooltipPasswordLength}
</StyledTooltipItem> </StyledTooltipItem>
)} {passwordSettings.digits && (
{passwordSettings.upperCase && ( <StyledTooltipItem
<StyledTooltipItem forwardedAs="div"
forwardedAs="div" title={tooltipPasswordDigits}
title={tooltipPasswordCapital} valid={validDigits}
valid={validCapital} >
> {tooltipPasswordDigits}
{tooltipPasswordCapital} </StyledTooltipItem>
</StyledTooltipItem> )}
)} {passwordSettings.upperCase && (
{passwordSettings.specSymbols && ( <StyledTooltipItem
<StyledTooltipItem forwardedAs="div"
forwardedAs="div" title={tooltipPasswordCapital}
title={tooltipPasswordSpecial} valid={validCapital}
valid={validSpecial} >
> {tooltipPasswordCapital}
{tooltipPasswordSpecial} </StyledTooltipItem>
</StyledTooltipItem> )}
)} {passwordSettings.specSymbols && (
</StyledTooltipContainer> <StyledTooltipItem
) : null; forwardedAs="div"
title={tooltipPasswordSpecial}
valid={validSpecial}
>
{tooltipPasswordSpecial}
</StyledTooltipItem>
)}
</StyledTooltipContainer>
) : null;
const inputGroup = ( const inputGroup = (
<> <>

View File

@ -130,7 +130,7 @@ const TreeNodeMenu = styled(TreeNode)`
} }
`} `}
.draggable { .draggable {
color: #333; color: #555F65;
/* Required to make elements draggable in old WebKit */ /* Required to make elements draggable in old WebKit */
-khtml-user-drag: none; -khtml-user-drag: none;
-webkit-user-drag: none; -webkit-user-drag: none;
@ -291,7 +291,7 @@ const TreeNodeMenu = styled(TreeNode)`
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
color: #333; color: #555F65;
padding-left: ${(props) => padding-left: ${(props) =>
props.icon || props.disableSwitch ? "0" : "20px"}; props.icon || props.disableSwitch ? "0" : "20px"};
} }

View File

@ -18,6 +18,7 @@ export { default as EmailInput } from "./components/email-input";
export { default as EmptyScreenContainer } from "./components/empty-screen-container"; export { default as EmptyScreenContainer } from "./components/empty-screen-container";
export { default as FieldContainer } from "./components/field-container"; export { default as FieldContainer } from "./components/field-container";
export { default as FileInput } from "./components/file-input"; export { default as FileInput } from "./components/file-input";
export { default as Grid } from "./components/grid";
export { default as GroupButton } from "./components/group-button"; export { default as GroupButton } from "./components/group-button";
export { default as GroupButtonsMenu } from "./components/group-buttons-menu"; export { default as GroupButtonsMenu } from "./components/group-buttons-menu";
export { default as Heading } from "./components/heading"; export { default as Heading } from "./components/heading";