@wireapp/react-ui-kit 8.14.3 → 8.14.4
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/package.json +5 -4
- package/src/Form/Button.d.js +2 -0
- package/src/Form/Button.d.js.map +1 -0
- package/src/Form/Button.d.ts +21 -0
- package/src/Form/Button.js +221 -0
- package/src/Form/Button.js.map +1 -0
- package/src/Form/ButtonLink.d.js +2 -0
- package/src/Form/ButtonLink.d.js.map +1 -0
- package/src/Form/ButtonLink.d.ts +6 -0
- package/src/Form/ButtonLink.js +67 -0
- package/src/Form/ButtonLink.js.map +1 -0
- package/src/Form/Checkbox.d.js +6 -0
- package/src/Form/Checkbox.d.js.map +1 -0
- package/src/Form/Checkbox.d.ts +18 -0
- package/src/Form/Checkbox.js +146 -0
- package/src/Form/Checkbox.js.map +1 -0
- package/src/Form/CodeInput.d.js +2 -0
- package/src/Form/CodeInput.d.js.map +1 -0
- package/src/Form/CodeInput.d.ts +10 -0
- package/src/Form/CodeInput.js +206 -0
- package/src/Form/CodeInput.js.map +1 -0
- package/src/Form/DropFileInput.d.js +2 -0
- package/src/Form/DropFileInput.d.js.map +1 -0
- package/src/Form/DropFileInput.d.ts +19 -0
- package/src/Form/DropFileInput.js +237 -0
- package/src/Form/DropFileInput.js.map +1 -0
- package/src/Form/ErrorMessage.d.js +6 -0
- package/src/Form/ErrorMessage.d.js.map +1 -0
- package/src/Form/ErrorMessage.d.ts +8 -0
- package/src/Form/ErrorMessage.js +87 -0
- package/src/Form/ErrorMessage.js.map +1 -0
- package/src/Form/Form.d.js +2 -0
- package/src/Form/Form.d.js.map +1 -0
- package/src/Form/Form.d.ts +4 -0
- package/src/Form/Form.js +35 -0
- package/src/Form/Form.js.map +1 -0
- package/src/Form/Input.d.js +2 -0
- package/src/Form/Input.d.js.map +1 -0
- package/src/Form/Input.d.ts +18 -0
- package/src/Form/Input.js +185 -0
- package/src/Form/Input.js.map +1 -0
- package/src/Form/InputBlock.d.js +2 -0
- package/src/Form/InputBlock.d.js.map +1 -0
- package/src/Form/InputBlock.d.ts +5 -0
- package/src/Form/InputBlock.js +67 -0
- package/src/Form/InputBlock.js.map +1 -0
- package/src/Form/InputLabel.d.js +2 -0
- package/src/Form/InputLabel.d.js.map +1 -0
- package/src/Form/InputLabel.d.ts +9 -0
- package/src/Form/InputLabel.js +49 -0
- package/src/Form/InputLabel.js.map +1 -0
- package/src/Form/InputSubmitCombo.d.js +2 -0
- package/src/Form/InputSubmitCombo.d.js.map +1 -0
- package/src/Form/InputSubmitCombo.d.ts +6 -0
- package/src/Form/InputSubmitCombo.js +58 -0
- package/src/Form/InputSubmitCombo.js.map +1 -0
- package/src/Form/RangeInput.d.js +2 -0
- package/src/Form/RangeInput.d.js.map +1 -0
- package/src/Form/RangeInput.d.ts +11 -0
- package/src/Form/RangeInput.js +75 -0
- package/src/Form/RangeInput.js.map +1 -0
- package/src/Form/RangeInput.styles.d.js +2 -0
- package/src/Form/RangeInput.styles.d.js.map +1 -0
- package/src/Form/RangeInput.styles.d.ts +9 -0
- package/src/Form/RangeInput.styles.js +76 -0
- package/src/Form/RangeInput.styles.js.map +1 -0
- package/src/Form/RoundIconButton.d.js +2 -0
- package/src/Form/RoundIconButton.d.js.map +1 -0
- package/src/Form/RoundIconButton.d.ts +9 -0
- package/src/Form/RoundIconButton.js +69 -0
- package/src/Form/RoundIconButton.js.map +1 -0
- package/src/Form/Select.d.js +6 -0
- package/src/Form/Select.d.js.map +1 -0
- package/src/Form/Select.d.ts +25 -0
- package/src/Form/Select.js +100 -0
- package/src/Form/Select.js.map +1 -0
- package/src/Form/SelectComponents.d.js +2 -0
- package/src/Form/SelectComponents.d.js.map +1 -0
- package/src/Form/SelectComponents.d.ts +13 -0
- package/src/Form/SelectComponents.js +190 -0
- package/src/Form/SelectComponents.js.map +1 -0
- package/src/Form/SelectStyles.d.js +2 -0
- package/src/Form/SelectStyles.d.js.map +1 -0
- package/src/Form/SelectStyles.d.ts +930 -0
- package/src/Form/SelectStyles.js +183 -0
- package/src/Form/SelectStyles.js.map +1 -0
- package/src/Form/ShakeBox.d.js +2 -0
- package/src/Form/ShakeBox.d.js.map +1 -0
- package/src/Form/ShakeBox.d.ts +11 -0
- package/src/Form/ShakeBox.js +104 -0
- package/src/Form/ShakeBox.js.map +1 -0
- package/src/Form/Switch.d.js +2 -0
- package/src/Form/Switch.d.js.map +1 -0
- package/src/Form/Switch.d.ts +17 -0
- package/src/Form/Switch.js +128 -0
- package/src/Form/Switch.js.map +1 -0
- package/src/Form/TextArea.d.js +2 -0
- package/src/Form/TextArea.d.js.map +1 -0
- package/src/Form/TextArea.d.ts +13 -0
- package/src/Form/TextArea.js +85 -0
- package/src/Form/TextArea.js.map +1 -0
- package/src/Form/Tooltip.d.js +6 -0
- package/src/Form/Tooltip.d.js.map +1 -0
- package/src/Form/Tooltip.d.ts +13 -0
- package/src/Form/Tooltip.js +88 -0
- package/src/Form/Tooltip.js.map +1 -0
- package/src/Form/index.d.js +240 -0
- package/src/Form/index.d.js.map +1 -0
- package/src/Form/index.d.ts +19 -0
- package/src/Form/index.js +240 -0
- package/src/Form/index.js.map +1 -0
- package/src/GlobalCssVariables.d.js +2 -0
- package/src/GlobalCssVariables.d.js.map +1 -0
- package/src/GlobalCssVariables.d.ts +7 -0
- package/src/GlobalCssVariables.js +132 -0
- package/src/GlobalCssVariables.js.map +1 -0
- package/src/GlobalStyle.d.js +4 -0
- package/src/GlobalStyle.d.js.map +1 -0
- package/src/GlobalStyle.d.ts +7 -0
- package/src/GlobalStyle.js +66 -0
- package/src/GlobalStyle.js.map +1 -0
- package/src/Icon/AddPeopleIcon.d.js +2 -0
- package/src/Icon/AddPeopleIcon.d.js.map +1 -0
- package/src/Icon/AddPeopleIcon.d.ts +4 -0
- package/src/Icon/AddPeopleIcon.js +47 -0
- package/src/Icon/AddPeopleIcon.js.map +1 -0
- package/src/Icon/ArchiveIcon.d.js +2 -0
- package/src/Icon/ArchiveIcon.d.js.map +1 -0
- package/src/Icon/ArchiveIcon.d.ts +4 -0
- package/src/Icon/ArchiveIcon.js +46 -0
- package/src/Icon/ArchiveIcon.js.map +1 -0
- package/src/Icon/ArrowDown.d.js +2 -0
- package/src/Icon/ArrowDown.d.js.map +1 -0
- package/src/Icon/ArrowDown.d.ts +2 -0
- package/src/Icon/ArrowDown.js +45 -0
- package/src/Icon/ArrowDown.js.map +1 -0
- package/src/Icon/ArrowIcon.d.js +2 -0
- package/src/Icon/ArrowIcon.d.js.map +1 -0
- package/src/Icon/ArrowIcon.d.ts +14 -0
- package/src/Icon/ArrowIcon.js +41 -0
- package/src/Icon/ArrowIcon.js.map +1 -0
- package/src/Icon/AttachmentIcon.d.js +2 -0
- package/src/Icon/AttachmentIcon.d.js.map +1 -0
- package/src/Icon/AttachmentIcon.d.ts +4 -0
- package/src/Icon/AttachmentIcon.js +46 -0
- package/src/Icon/AttachmentIcon.js.map +1 -0
- package/src/Icon/AudioVideoIcon.d.js +2 -0
- package/src/Icon/AudioVideoIcon.d.js.map +1 -0
- package/src/Icon/AudioVideoIcon.d.ts +4 -0
- package/src/Icon/AudioVideoIcon.js +46 -0
- package/src/Icon/AudioVideoIcon.js.map +1 -0
- package/src/Icon/BlockIcon.d.js +2 -0
- package/src/Icon/BlockIcon.d.js.map +1 -0
- package/src/Icon/BlockIcon.d.ts +4 -0
- package/src/Icon/BlockIcon.js +46 -0
- package/src/Icon/BlockIcon.js.map +1 -0
- package/src/Icon/Brand/AndroidIcon.d.js +2 -0
- package/src/Icon/Brand/AndroidIcon.d.js.map +1 -0
- package/src/Icon/Brand/AndroidIcon.d.ts +4 -0
- package/src/Icon/Brand/AndroidIcon.js +47 -0
- package/src/Icon/Brand/AndroidIcon.js.map +1 -0
- package/src/Icon/Brand/AppleIcon.d.js +2 -0
- package/src/Icon/Brand/AppleIcon.d.js.map +1 -0
- package/src/Icon/Brand/AppleIcon.d.ts +4 -0
- package/src/Icon/Brand/AppleIcon.js +47 -0
- package/src/Icon/Brand/AppleIcon.js.map +1 -0
- package/src/Icon/Brand/ChromeIcon.d.js +2 -0
- package/src/Icon/Brand/ChromeIcon.d.js.map +1 -0
- package/src/Icon/Brand/ChromeIcon.d.ts +4 -0
- package/src/Icon/Brand/ChromeIcon.js +47 -0
- package/src/Icon/Brand/ChromeIcon.js.map +1 -0
- package/src/Icon/Brand/FacebookIcon.d.js +2 -0
- package/src/Icon/Brand/FacebookIcon.d.js.map +1 -0
- package/src/Icon/Brand/FacebookIcon.d.ts +4 -0
- package/src/Icon/Brand/FacebookIcon.js +46 -0
- package/src/Icon/Brand/FacebookIcon.js.map +1 -0
- package/src/Icon/Brand/GitHubIcon.d.js +2 -0
- package/src/Icon/Brand/GitHubIcon.d.js.map +1 -0
- package/src/Icon/Brand/GitHubIcon.d.ts +4 -0
- package/src/Icon/Brand/GitHubIcon.js +46 -0
- package/src/Icon/Brand/GitHubIcon.js.map +1 -0
- package/src/Icon/Brand/LinkedInIcon.d.js +2 -0
- package/src/Icon/Brand/LinkedInIcon.d.js.map +1 -0
- package/src/Icon/Brand/LinkedInIcon.d.ts +4 -0
- package/src/Icon/Brand/LinkedInIcon.js +46 -0
- package/src/Icon/Brand/LinkedInIcon.js.map +1 -0
- package/src/Icon/Brand/LinuxIcon.d.js +2 -0
- package/src/Icon/Brand/LinuxIcon.d.js.map +1 -0
- package/src/Icon/Brand/LinuxIcon.d.ts +4 -0
- package/src/Icon/Brand/LinuxIcon.js +47 -0
- package/src/Icon/Brand/LinuxIcon.js.map +1 -0
- package/src/Icon/Brand/MicrosoftIcon.d.js +2 -0
- package/src/Icon/Brand/MicrosoftIcon.d.js.map +1 -0
- package/src/Icon/Brand/MicrosoftIcon.d.ts +4 -0
- package/src/Icon/Brand/MicrosoftIcon.js +47 -0
- package/src/Icon/Brand/MicrosoftIcon.js.map +1 -0
- package/src/Icon/Brand/TwitterIcon.d.js +2 -0
- package/src/Icon/Brand/TwitterIcon.d.js.map +1 -0
- package/src/Icon/Brand/TwitterIcon.d.ts +4 -0
- package/src/Icon/Brand/TwitterIcon.js +46 -0
- package/src/Icon/Brand/TwitterIcon.js.map +1 -0
- package/src/Icon/CallIcon.d.js +2 -0
- package/src/Icon/CallIcon.d.js.map +1 -0
- package/src/Icon/CallIcon.d.ts +4 -0
- package/src/Icon/CallIcon.js +46 -0
- package/src/Icon/CallIcon.js.map +1 -0
- package/src/Icon/CamIcon.d.js +2 -0
- package/src/Icon/CamIcon.d.js.map +1 -0
- package/src/Icon/CamIcon.d.ts +4 -0
- package/src/Icon/CamIcon.js +46 -0
- package/src/Icon/CamIcon.js.map +1 -0
- package/src/Icon/CameraIcon.d.js +2 -0
- package/src/Icon/CameraIcon.d.js.map +1 -0
- package/src/Icon/CameraIcon.d.ts +4 -0
- package/src/Icon/CameraIcon.js +47 -0
- package/src/Icon/CameraIcon.js.map +1 -0
- package/src/Icon/CheckIcon.d.js +2 -0
- package/src/Icon/CheckIcon.d.js.map +1 -0
- package/src/Icon/CheckIcon.d.ts +4 -0
- package/src/Icon/CheckIcon.js +46 -0
- package/src/Icon/CheckIcon.js.map +1 -0
- package/src/Icon/CheckRoundIcon.d.js +2 -0
- package/src/Icon/CheckRoundIcon.d.js.map +1 -0
- package/src/Icon/CheckRoundIcon.d.ts +4 -0
- package/src/Icon/CheckRoundIcon.js +46 -0
- package/src/Icon/CheckRoundIcon.js.map +1 -0
- package/src/Icon/ChevronIcon.d.js +2 -0
- package/src/Icon/ChevronIcon.d.js.map +1 -0
- package/src/Icon/ChevronIcon.d.ts +4 -0
- package/src/Icon/ChevronIcon.js +36 -0
- package/src/Icon/ChevronIcon.js.map +1 -0
- package/src/Icon/CloseIcon.d.js +2 -0
- package/src/Icon/CloseIcon.d.js.map +1 -0
- package/src/Icon/CloseIcon.d.ts +4 -0
- package/src/Icon/CloseIcon.js +46 -0
- package/src/Icon/CloseIcon.js.map +1 -0
- package/src/Icon/CopyIcon.d.js +2 -0
- package/src/Icon/CopyIcon.d.js.map +1 -0
- package/src/Icon/CopyIcon.d.ts +4 -0
- package/src/Icon/CopyIcon.js +46 -0
- package/src/Icon/CopyIcon.js.map +1 -0
- package/src/Icon/DeviceIcon.d.js +2 -0
- package/src/Icon/DeviceIcon.d.js.map +1 -0
- package/src/Icon/DeviceIcon.d.ts +4 -0
- package/src/Icon/DeviceIcon.js +46 -0
- package/src/Icon/DeviceIcon.js.map +1 -0
- package/src/Icon/DownloadIcon.d.js +2 -0
- package/src/Icon/DownloadIcon.d.js.map +1 -0
- package/src/Icon/DownloadIcon.d.ts +4 -0
- package/src/Icon/DownloadIcon.js +46 -0
- package/src/Icon/DownloadIcon.js.map +1 -0
- package/src/Icon/EditDocumentIcon.d.js +2 -0
- package/src/Icon/EditDocumentIcon.d.js.map +1 -0
- package/src/Icon/EditDocumentIcon.d.ts +4 -0
- package/src/Icon/EditDocumentIcon.js +48 -0
- package/src/Icon/EditDocumentIcon.js.map +1 -0
- package/src/Icon/EditIcon.d.js +2 -0
- package/src/Icon/EditIcon.d.js.map +1 -0
- package/src/Icon/EditIcon.d.ts +4 -0
- package/src/Icon/EditIcon.js +46 -0
- package/src/Icon/EditIcon.js.map +1 -0
- package/src/Icon/EnterIcon.d.js +2 -0
- package/src/Icon/EnterIcon.d.js.map +1 -0
- package/src/Icon/EnterIcon.d.ts +4 -0
- package/src/Icon/EnterIcon.js +46 -0
- package/src/Icon/EnterIcon.js.map +1 -0
- package/src/Icon/ErrorIcon.d.js +2 -0
- package/src/Icon/ErrorIcon.d.js.map +1 -0
- package/src/Icon/ErrorIcon.d.ts +4 -0
- package/src/Icon/ErrorIcon.js +61 -0
- package/src/Icon/ErrorIcon.js.map +1 -0
- package/src/Icon/FileIcon.d.js +2 -0
- package/src/Icon/FileIcon.d.js.map +1 -0
- package/src/Icon/FileIcon.d.ts +4 -0
- package/src/Icon/FileIcon.js +46 -0
- package/src/Icon/FileIcon.js.map +1 -0
- package/src/Icon/GifIcon.d.js +2 -0
- package/src/Icon/GifIcon.d.js.map +1 -0
- package/src/Icon/GifIcon.d.ts +4 -0
- package/src/Icon/GifIcon.js +46 -0
- package/src/Icon/GifIcon.js.map +1 -0
- package/src/Icon/GridIcon.d.js +2 -0
- package/src/Icon/GridIcon.d.js.map +1 -0
- package/src/Icon/GridIcon.d.ts +4 -0
- package/src/Icon/GridIcon.js +47 -0
- package/src/Icon/GridIcon.js.map +1 -0
- package/src/Icon/GroupIcon.d.js +2 -0
- package/src/Icon/GroupIcon.d.js.map +1 -0
- package/src/Icon/GroupIcon.d.ts +4 -0
- package/src/Icon/GroupIcon.js +46 -0
- package/src/Icon/GroupIcon.js.map +1 -0
- package/src/Icon/HangupIcon.d.js +2 -0
- package/src/Icon/HangupIcon.d.js.map +1 -0
- package/src/Icon/HangupIcon.d.ts +4 -0
- package/src/Icon/HangupIcon.js +46 -0
- package/src/Icon/HangupIcon.js.map +1 -0
- package/src/Icon/HideIcon.d.js +2 -0
- package/src/Icon/HideIcon.d.js.map +1 -0
- package/src/Icon/HideIcon.d.ts +4 -0
- package/src/Icon/HideIcon.js +46 -0
- package/src/Icon/HideIcon.js.map +1 -0
- package/src/Icon/ImageIcon.d.js +2 -0
- package/src/Icon/ImageIcon.d.js.map +1 -0
- package/src/Icon/ImageIcon.d.ts +4 -0
- package/src/Icon/ImageIcon.js +46 -0
- package/src/Icon/ImageIcon.js.map +1 -0
- package/src/Icon/InfoIcon.d.js +2 -0
- package/src/Icon/InfoIcon.d.js.map +1 -0
- package/src/Icon/InfoIcon.d.ts +4 -0
- package/src/Icon/InfoIcon.js +46 -0
- package/src/Icon/InfoIcon.js.map +1 -0
- package/src/Icon/InviteIcon.d.js +2 -0
- package/src/Icon/InviteIcon.d.js.map +1 -0
- package/src/Icon/InviteIcon.d.ts +4 -0
- package/src/Icon/InviteIcon.js +46 -0
- package/src/Icon/InviteIcon.js.map +1 -0
- package/src/Icon/LeaveIcon.d.js +2 -0
- package/src/Icon/LeaveIcon.d.js.map +1 -0
- package/src/Icon/LeaveIcon.d.ts +4 -0
- package/src/Icon/LeaveIcon.js +46 -0
- package/src/Icon/LeaveIcon.js.map +1 -0
- package/src/Icon/LinkIcon.d.js +2 -0
- package/src/Icon/LinkIcon.d.js.map +1 -0
- package/src/Icon/LinkIcon.d.ts +4 -0
- package/src/Icon/LinkIcon.js +47 -0
- package/src/Icon/LinkIcon.js.map +1 -0
- package/src/Icon/ListIcon.d.js +2 -0
- package/src/Icon/ListIcon.d.js.map +1 -0
- package/src/Icon/ListIcon.d.ts +4 -0
- package/src/Icon/ListIcon.js +46 -0
- package/src/Icon/ListIcon.js.map +1 -0
- package/src/Icon/LockIcon.d.js +2 -0
- package/src/Icon/LockIcon.d.js.map +1 -0
- package/src/Icon/LockIcon.d.ts +4 -0
- package/src/Icon/LockIcon.js +47 -0
- package/src/Icon/LockIcon.js.map +1 -0
- package/src/Icon/MessageIcon.d.js +2 -0
- package/src/Icon/MessageIcon.d.js.map +1 -0
- package/src/Icon/MessageIcon.d.ts +4 -0
- package/src/Icon/MessageIcon.js +46 -0
- package/src/Icon/MessageIcon.js.map +1 -0
- package/src/Icon/MinusIcon.d.js +2 -0
- package/src/Icon/MinusIcon.d.js.map +1 -0
- package/src/Icon/MinusIcon.d.ts +4 -0
- package/src/Icon/MinusIcon.js +46 -0
- package/src/Icon/MinusIcon.js.map +1 -0
- package/src/Icon/MoreIcon.d.js +2 -0
- package/src/Icon/MoreIcon.d.js.map +1 -0
- package/src/Icon/MoreIcon.d.ts +4 -0
- package/src/Icon/MoreIcon.js +46 -0
- package/src/Icon/MoreIcon.js.map +1 -0
- package/src/Icon/MuteIcon.d.js +2 -0
- package/src/Icon/MuteIcon.d.js.map +1 -0
- package/src/Icon/MuteIcon.d.ts +4 -0
- package/src/Icon/MuteIcon.js +46 -0
- package/src/Icon/MuteIcon.js.map +1 -0
- package/src/Icon/NotificationIcon.d.js +2 -0
- package/src/Icon/NotificationIcon.d.js.map +1 -0
- package/src/Icon/NotificationIcon.d.ts +4 -0
- package/src/Icon/NotificationIcon.js +46 -0
- package/src/Icon/NotificationIcon.js.map +1 -0
- package/src/Icon/NotificationOffIcon.d.js +2 -0
- package/src/Icon/NotificationOffIcon.d.js.map +1 -0
- package/src/Icon/NotificationOffIcon.d.ts +4 -0
- package/src/Icon/NotificationOffIcon.js +46 -0
- package/src/Icon/NotificationOffIcon.js.map +1 -0
- package/src/Icon/OptionsIcon.d.js +2 -0
- package/src/Icon/OptionsIcon.d.js.map +1 -0
- package/src/Icon/OptionsIcon.d.ts +4 -0
- package/src/Icon/OptionsIcon.js +46 -0
- package/src/Icon/OptionsIcon.js.map +1 -0
- package/src/Icon/PeopleIcon.d.js +2 -0
- package/src/Icon/PeopleIcon.d.js.map +1 -0
- package/src/Icon/PeopleIcon.d.ts +4 -0
- package/src/Icon/PeopleIcon.js +47 -0
- package/src/Icon/PeopleIcon.js.map +1 -0
- package/src/Icon/PingIcon.d.js +2 -0
- package/src/Icon/PingIcon.d.js.map +1 -0
- package/src/Icon/PingIcon.d.ts +4 -0
- package/src/Icon/PingIcon.js +46 -0
- package/src/Icon/PingIcon.js.map +1 -0
- package/src/Icon/PlaneIcon.d.js +2 -0
- package/src/Icon/PlaneIcon.d.js.map +1 -0
- package/src/Icon/PlaneIcon.d.ts +4 -0
- package/src/Icon/PlaneIcon.js +46 -0
- package/src/Icon/PlaneIcon.js.map +1 -0
- package/src/Icon/PlusIcon.d.js +2 -0
- package/src/Icon/PlusIcon.d.js.map +1 -0
- package/src/Icon/PlusIcon.d.ts +4 -0
- package/src/Icon/PlusIcon.js +46 -0
- package/src/Icon/PlusIcon.js.map +1 -0
- package/src/Icon/ProfileIcon.d.js +2 -0
- package/src/Icon/ProfileIcon.d.js.map +1 -0
- package/src/Icon/ProfileIcon.d.ts +4 -0
- package/src/Icon/ProfileIcon.js +46 -0
- package/src/Icon/ProfileIcon.js.map +1 -0
- package/src/Icon/RecordBoldIcon.d.js +2 -0
- package/src/Icon/RecordBoldIcon.d.js.map +1 -0
- package/src/Icon/RecordBoldIcon.d.ts +4 -0
- package/src/Icon/RecordBoldIcon.js +55 -0
- package/src/Icon/RecordBoldIcon.js.map +1 -0
- package/src/Icon/RecordIcon.d.js +2 -0
- package/src/Icon/RecordIcon.d.js.map +1 -0
- package/src/Icon/RecordIcon.d.ts +4 -0
- package/src/Icon/RecordIcon.js +56 -0
- package/src/Icon/RecordIcon.js.map +1 -0
- package/src/Icon/RecordPendingIcon.d.js +2 -0
- package/src/Icon/RecordPendingIcon.d.js.map +1 -0
- package/src/Icon/RecordPendingIcon.d.ts +4 -0
- package/src/Icon/RecordPendingIcon.js +53 -0
- package/src/Icon/RecordPendingIcon.js.map +1 -0
- package/src/Icon/ReloadIcon.d.js +2 -0
- package/src/Icon/ReloadIcon.d.js.map +1 -0
- package/src/Icon/ReloadIcon.d.ts +4 -0
- package/src/Icon/ReloadIcon.js +46 -0
- package/src/Icon/ReloadIcon.js.map +1 -0
- package/src/Icon/SVGIcon.d.js +2 -0
- package/src/Icon/SVGIcon.d.js.map +1 -0
- package/src/Icon/SVGIcon.d.ts +15 -0
- package/src/Icon/SVGIcon.js +84 -0
- package/src/Icon/SVGIcon.js.map +1 -0
- package/src/Icon/ScreenshareIcon.d.js +2 -0
- package/src/Icon/ScreenshareIcon.d.js.map +1 -0
- package/src/Icon/ScreenshareIcon.d.ts +4 -0
- package/src/Icon/ScreenshareIcon.js +46 -0
- package/src/Icon/ScreenshareIcon.js.map +1 -0
- package/src/Icon/SearchIcon.d.js +2 -0
- package/src/Icon/SearchIcon.d.js.map +1 -0
- package/src/Icon/SearchIcon.d.ts +4 -0
- package/src/Icon/SearchIcon.js +47 -0
- package/src/Icon/SearchIcon.js.map +1 -0
- package/src/Icon/ServicesIcon.d.js +2 -0
- package/src/Icon/ServicesIcon.d.js.map +1 -0
- package/src/Icon/ServicesIcon.d.ts +4 -0
- package/src/Icon/ServicesIcon.js +46 -0
- package/src/Icon/ServicesIcon.js.map +1 -0
- package/src/Icon/SettingsIcon.d.js +2 -0
- package/src/Icon/SettingsIcon.d.js.map +1 -0
- package/src/Icon/SettingsIcon.d.ts +4 -0
- package/src/Icon/SettingsIcon.js +46 -0
- package/src/Icon/SettingsIcon.js.map +1 -0
- package/src/Icon/ShowIcon.d.js +2 -0
- package/src/Icon/ShowIcon.d.js.map +1 -0
- package/src/Icon/ShowIcon.d.ts +4 -0
- package/src/Icon/ShowIcon.js +46 -0
- package/src/Icon/ShowIcon.js.map +1 -0
- package/src/Icon/SignIcon.d.js +2 -0
- package/src/Icon/SignIcon.d.js.map +1 -0
- package/src/Icon/SignIcon.d.ts +4 -0
- package/src/Icon/SignIcon.js +46 -0
- package/src/Icon/SignIcon.js.map +1 -0
- package/src/Icon/SpeakerIcon.d.js +2 -0
- package/src/Icon/SpeakerIcon.d.js.map +1 -0
- package/src/Icon/SpeakerIcon.d.ts +4 -0
- package/src/Icon/SpeakerIcon.js +46 -0
- package/src/Icon/SpeakerIcon.js.map +1 -0
- package/src/Icon/SupportIcon.d.js +2 -0
- package/src/Icon/SupportIcon.d.js.map +1 -0
- package/src/Icon/SupportIcon.d.ts +4 -0
- package/src/Icon/SupportIcon.js +46 -0
- package/src/Icon/SupportIcon.js.map +1 -0
- package/src/Icon/TeamIcon.d.js +2 -0
- package/src/Icon/TeamIcon.d.js.map +1 -0
- package/src/Icon/TeamIcon.d.ts +4 -0
- package/src/Icon/TeamIcon.js +46 -0
- package/src/Icon/TeamIcon.js.map +1 -0
- package/src/Icon/TimedIcon.d.js +2 -0
- package/src/Icon/TimedIcon.d.js.map +1 -0
- package/src/Icon/TimedIcon.d.ts +4 -0
- package/src/Icon/TimedIcon.js +46 -0
- package/src/Icon/TimedIcon.js.map +1 -0
- package/src/Icon/TrashCrossIcon.d.js +2 -0
- package/src/Icon/TrashCrossIcon.d.js.map +1 -0
- package/src/Icon/TrashCrossIcon.d.ts +4 -0
- package/src/Icon/TrashCrossIcon.js +46 -0
- package/src/Icon/TrashCrossIcon.js.map +1 -0
- package/src/Icon/TrashIcon.d.js +2 -0
- package/src/Icon/TrashIcon.d.js.map +1 -0
- package/src/Icon/TrashIcon.d.ts +4 -0
- package/src/Icon/TrashIcon.js +46 -0
- package/src/Icon/TrashIcon.js.map +1 -0
- package/src/Icon/TriangleIcon.d.js +2 -0
- package/src/Icon/TriangleIcon.d.js.map +1 -0
- package/src/Icon/TriangleIcon.d.ts +8 -0
- package/src/Icon/TriangleIcon.js +41 -0
- package/src/Icon/TriangleIcon.js.map +1 -0
- package/src/Icon/UploadIcon.d.js +2 -0
- package/src/Icon/UploadIcon.d.js.map +1 -0
- package/src/Icon/UploadIcon.d.ts +4 -0
- package/src/Icon/UploadIcon.js +46 -0
- package/src/Icon/UploadIcon.js.map +1 -0
- package/src/Icon/WireIcon.d.js +2 -0
- package/src/Icon/WireIcon.d.js.map +1 -0
- package/src/Icon/WireIcon.d.ts +4 -0
- package/src/Icon/WireIcon.js +46 -0
- package/src/Icon/WireIcon.js.map +1 -0
- package/src/Icon/index.d.js +955 -0
- package/src/Icon/index.d.js.map +1 -0
- package/src/Icon/index.d.ts +73 -0
- package/src/Icon/index.js +955 -0
- package/src/Icon/index.js.map +1 -0
- package/src/Identity/Animation.d.js +6 -0
- package/src/Identity/Animation.d.js.map +1 -0
- package/src/Identity/Animation.d.ts +30 -0
- package/src/Identity/Animation.js +247 -0
- package/src/Identity/Animation.js.map +1 -0
- package/src/Identity/Avatar.d.js +2 -0
- package/src/Identity/Avatar.d.js.map +1 -0
- package/src/Identity/Avatar.d.ts +15 -0
- package/src/Identity/Avatar.js +138 -0
- package/src/Identity/Avatar.js.map +1 -0
- package/src/Identity/AvatarGrid.d.js +6 -0
- package/src/Identity/AvatarGrid.d.js.map +1 -0
- package/src/Identity/AvatarGrid.d.ts +14 -0
- package/src/Identity/AvatarGrid.js +114 -0
- package/src/Identity/AvatarGrid.js.map +1 -0
- package/src/Identity/Logo.d.js +2 -0
- package/src/Identity/Logo.d.js.map +1 -0
- package/src/Identity/Logo.d.ts +7 -0
- package/src/Identity/Logo.js +62 -0
- package/src/Identity/Logo.js.map +1 -0
- package/src/Identity/colors-v2.d.js +2 -0
- package/src/Identity/colors-v2.d.js.map +1 -0
- package/src/Identity/colors-v2.d.ts +3 -0
- package/src/Identity/colors-v2.js +221 -0
- package/src/Identity/colors-v2.js.map +1 -0
- package/src/Identity/colors.d.js +2 -0
- package/src/Identity/colors.d.js.map +1 -0
- package/src/Identity/colors.d.ts +3 -0
- package/src/Identity/colors.js +94 -0
- package/src/Identity/colors.js.map +1 -0
- package/src/Identity/index.d.js +84 -0
- package/src/Identity/index.d.js.map +1 -0
- package/src/Identity/index.d.ts +6 -0
- package/src/Identity/index.js +84 -0
- package/src/Identity/index.js.map +1 -0
- package/src/Identity/motions.d.js +2 -0
- package/src/Identity/motions.d.js.map +1 -0
- package/src/Identity/motions.d.ts +26 -0
- package/src/Identity/motions.js +49 -0
- package/src/Identity/motions.js.map +1 -0
- package/src/Layout/Box.d.js +2 -0
- package/src/Layout/Box.d.js.map +1 -0
- package/src/Layout/Box.d.ts +6 -0
- package/src/Layout/Box.js +55 -0
- package/src/Layout/Box.js.map +1 -0
- package/src/Layout/Column.d.js +2 -0
- package/src/Layout/Column.d.js.map +1 -0
- package/src/Layout/Column.d.ts +11 -0
- package/src/Layout/Column.js +86 -0
- package/src/Layout/Column.js.map +1 -0
- package/src/Layout/Container.d.js +2 -0
- package/src/Layout/Container.d.js.map +1 -0
- package/src/Layout/Container.d.ts +20 -0
- package/src/Layout/Container.js +128 -0
- package/src/Layout/Container.js.map +1 -0
- package/src/Layout/Content.d.js +2 -0
- package/src/Layout/Content.d.js.map +1 -0
- package/src/Layout/Content.d.ts +6 -0
- package/src/Layout/Content.js +56 -0
- package/src/Layout/Content.js.map +1 -0
- package/src/Layout/FlexBox.d.js +2 -0
- package/src/Layout/FlexBox.d.js.map +1 -0
- package/src/Layout/FlexBox.d.ts +13 -0
- package/src/Layout/FlexBox.js +72 -0
- package/src/Layout/FlexBox.js.map +1 -0
- package/src/Layout/Footer.d.js +6 -0
- package/src/Layout/Footer.d.js.map +1 -0
- package/src/Layout/Footer.d.ts +6 -0
- package/src/Layout/Footer.js +39 -0
- package/src/Layout/Footer.js.map +1 -0
- package/src/Layout/Header.d.js +2 -0
- package/src/Layout/Header.d.js.map +1 -0
- package/src/Layout/Header.d.ts +6 -0
- package/src/Layout/Header.js +54 -0
- package/src/Layout/Header.js.map +1 -0
- package/src/Layout/MatchMedia.d.js +6 -0
- package/src/Layout/MatchMedia.d.js.map +1 -0
- package/src/Layout/MatchMedia.d.ts +21 -0
- package/src/Layout/MatchMedia.js +147 -0
- package/src/Layout/MatchMedia.js.map +1 -0
- package/src/Layout/Spacer.d.js +2 -0
- package/src/Layout/Spacer.d.js.map +1 -0
- package/src/Layout/Spacer.d.ts +6 -0
- package/src/Layout/Spacer.js +48 -0
- package/src/Layout/Spacer.js.map +1 -0
- package/src/Layout/StyledApp.d.js +6 -0
- package/src/Layout/StyledApp.d.js.map +1 -0
- package/src/Layout/StyledApp.d.ts +16 -0
- package/src/Layout/StyledApp.js +59 -0
- package/src/Layout/StyledApp.js.map +1 -0
- package/src/Layout/Theme.d.js +2 -0
- package/src/Layout/Theme.d.js.map +1 -0
- package/src/Layout/Theme.d.ts +77 -0
- package/src/Layout/Theme.js +232 -0
- package/src/Layout/Theme.js.map +1 -0
- package/src/Layout/headerMenu/HeaderMenu.d.js +2 -0
- package/src/Layout/headerMenu/HeaderMenu.d.js.map +1 -0
- package/src/Layout/headerMenu/HeaderMenu.d.ts +8 -0
- package/src/Layout/headerMenu/HeaderMenu.js +122 -0
- package/src/Layout/headerMenu/HeaderMenu.js.map +1 -0
- package/src/Layout/headerMenu/HeaderSubMenu.d.js +2 -0
- package/src/Layout/headerMenu/HeaderSubMenu.d.js.map +1 -0
- package/src/Layout/headerMenu/HeaderSubMenu.d.ts +15 -0
- package/src/Layout/headerMenu/HeaderSubMenu.js +154 -0
- package/src/Layout/headerMenu/HeaderSubMenu.js.map +1 -0
- package/src/Layout/headerMenu/MenuContent.d.js +2 -0
- package/src/Layout/headerMenu/MenuContent.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuContent.d.ts +8 -0
- package/src/Layout/headerMenu/MenuContent.js +52 -0
- package/src/Layout/headerMenu/MenuContent.js.map +1 -0
- package/src/Layout/headerMenu/MenuItems.d.js +2 -0
- package/src/Layout/headerMenu/MenuItems.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuItems.d.ts +9 -0
- package/src/Layout/headerMenu/MenuItems.js +76 -0
- package/src/Layout/headerMenu/MenuItems.js.map +1 -0
- package/src/Layout/headerMenu/MenuLink.d.js +2 -0
- package/src/Layout/headerMenu/MenuLink.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuLink.d.ts +11 -0
- package/src/Layout/headerMenu/MenuLink.js +96 -0
- package/src/Layout/headerMenu/MenuLink.js.map +1 -0
- package/src/Layout/headerMenu/MenuOpenButton.d.js +2 -0
- package/src/Layout/headerMenu/MenuOpenButton.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuOpenButton.d.ts +9 -0
- package/src/Layout/headerMenu/MenuOpenButton.js +85 -0
- package/src/Layout/headerMenu/MenuOpenButton.js.map +1 -0
- package/src/Layout/headerMenu/MenuScrollableItems.d.js +2 -0
- package/src/Layout/headerMenu/MenuScrollableItems.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuScrollableItems.d.ts +8 -0
- package/src/Layout/headerMenu/MenuScrollableItems.js +61 -0
- package/src/Layout/headerMenu/MenuScrollableItems.js.map +1 -0
- package/src/Layout/headerMenu/MenuSubLink.d.js +6 -0
- package/src/Layout/headerMenu/MenuSubLink.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuSubLink.d.ts +8 -0
- package/src/Layout/headerMenu/MenuSubLink.js +69 -0
- package/src/Layout/headerMenu/MenuSubLink.js.map +1 -0
- package/src/Layout/headerMenu/index.d.js +110 -0
- package/src/Layout/headerMenu/index.d.js.map +1 -0
- package/src/Layout/headerMenu/index.d.ts +8 -0
- package/src/Layout/headerMenu/index.js +110 -0
- package/src/Layout/headerMenu/index.js.map +1 -0
- package/src/Layout/index.d.js +175 -0
- package/src/Layout/index.d.js.map +1 -0
- package/src/Layout/index.d.ts +13 -0
- package/src/Layout/index.js +175 -0
- package/src/Layout/index.js.map +1 -0
- package/src/Layout/sizes.d.js +2 -0
- package/src/Layout/sizes.d.js.map +1 -0
- package/src/Layout/sizes.d.ts +13 -0
- package/src/Layout/sizes.js +42 -0
- package/src/Layout/sizes.js.map +1 -0
- package/src/Menu/MenuModal.d.js +6 -0
- package/src/Menu/MenuModal.d.js.map +1 -0
- package/src/Menu/MenuModal.d.ts +10 -0
- package/src/Menu/MenuModal.js +139 -0
- package/src/Menu/MenuModal.js.map +1 -0
- package/src/Menu/TabBar.d.js +2 -0
- package/src/Menu/TabBar.d.js.map +1 -0
- package/src/Menu/TabBar.d.ts +10 -0
- package/src/Menu/TabBar.js +105 -0
- package/src/Menu/TabBar.js.map +1 -0
- package/src/Menu/index.d.js +32 -0
- package/src/Menu/index.d.js.map +1 -0
- package/src/Menu/index.d.ts +2 -0
- package/src/Menu/index.js +32 -0
- package/src/Menu/index.js.map +1 -0
- package/src/Misc/ButtonGroup.d.js +2 -0
- package/src/Misc/ButtonGroup.d.js.map +1 -0
- package/src/Misc/ButtonGroup.d.ts +14 -0
- package/src/Misc/ButtonGroup.js +113 -0
- package/src/Misc/ButtonGroup.js.map +1 -0
- package/src/Misc/IconButton.d.js +2 -0
- package/src/Misc/IconButton.d.js.map +1 -0
- package/src/Misc/IconButton.d.ts +14 -0
- package/src/Misc/IconButton.js +123 -0
- package/src/Misc/IconButton.js.map +1 -0
- package/src/Misc/IsInViewport.d.js +2 -0
- package/src/Misc/IsInViewport.d.js.map +1 -0
- package/src/Misc/IsInViewport.d.ts +9 -0
- package/src/Misc/IsInViewport.js +69 -0
- package/src/Misc/IsInViewport.js.map +1 -0
- package/src/Misc/Loading.d.js +2 -0
- package/src/Misc/Loading.d.js.map +1 -0
- package/src/Misc/Loading.d.ts +15 -0
- package/src/Misc/Loading.js +72 -0
- package/src/Misc/Loading.js.map +1 -0
- package/src/Misc/Pagination.d.js +6 -0
- package/src/Misc/Pagination.d.js.map +1 -0
- package/src/Misc/Pagination.d.ts +10 -0
- package/src/Misc/Pagination.js +155 -0
- package/src/Misc/Pagination.js.map +1 -0
- package/src/Misc/Pill.d.js +2 -0
- package/src/Misc/Pill.d.js.map +1 -0
- package/src/Misc/Pill.d.ts +16 -0
- package/src/Misc/Pill.js +89 -0
- package/src/Misc/Pill.js.map +1 -0
- package/src/Misc/childrenWithDefaultProps.d.js +2 -0
- package/src/Misc/childrenWithDefaultProps.d.js.map +1 -0
- package/src/Misc/childrenWithDefaultProps.d.ts +6 -0
- package/src/Misc/childrenWithDefaultProps.js +35 -0
- package/src/Misc/childrenWithDefaultProps.js.map +1 -0
- package/src/Misc/index.d.js +123 -0
- package/src/Misc/index.d.js.map +1 -0
- package/src/Misc/index.d.ts +9 -0
- package/src/Misc/index.js +123 -0
- package/src/Misc/index.js.map +1 -0
- package/src/Misc/useLongTouch.d.js +2 -0
- package/src/Misc/useLongTouch.d.js.map +1 -0
- package/src/Misc/useLongTouch.d.ts +2 -0
- package/src/Misc/useLongTouch.js +60 -0
- package/src/Misc/useLongTouch.js.map +1 -0
- package/src/Misc/useTimeout.d.js +2 -0
- package/src/Misc/useTimeout.d.js.map +1 -0
- package/src/Misc/useTimeout.d.ts +5 -0
- package/src/Misc/useTimeout.js +67 -0
- package/src/Misc/useTimeout.js.map +1 -0
- package/src/Modal/Modal.d.js +6 -0
- package/src/Modal/Modal.d.js.map +1 -0
- package/src/Modal/Modal.d.ts +19 -0
- package/src/Modal/Modal.js +213 -0
- package/src/Modal/Modal.js.map +1 -0
- package/src/Modal/Overlay.d.js +2 -0
- package/src/Modal/Overlay.d.js.map +1 -0
- package/src/Modal/Overlay.d.ts +14 -0
- package/src/Modal/Overlay.js +116 -0
- package/src/Modal/Overlay.js.map +1 -0
- package/src/Modal/index.d.js +31 -0
- package/src/Modal/index.d.js.map +1 -0
- package/src/Modal/index.d.ts +2 -0
- package/src/Modal/index.js +31 -0
- package/src/Modal/index.js.map +1 -0
- package/src/Text/Heading.d.js +6 -0
- package/src/Text/Heading.d.js.map +1 -0
- package/src/Text/Heading.d.ts +17 -0
- package/src/Text/Heading.js +205 -0
- package/src/Text/Heading.js.map +1 -0
- package/src/Text/Label.d.js +2 -0
- package/src/Text/Label.d.js.map +1 -0
- package/src/Text/Label.d.ts +10 -0
- package/src/Text/Label.js +81 -0
- package/src/Text/Label.js.map +1 -0
- package/src/Text/Line.d.js +2 -0
- package/src/Text/Line.d.js.map +1 -0
- package/src/Text/Line.d.ts +8 -0
- package/src/Text/Line.js +60 -0
- package/src/Text/Line.js.map +1 -0
- package/src/Text/Link.d.js +2 -0
- package/src/Text/Link.d.js.map +1 -0
- package/src/Text/Link.d.ts +15 -0
- package/src/Text/Link.js +98 -0
- package/src/Text/Link.js.map +1 -0
- package/src/Text/Paragraph.d.js +2 -0
- package/src/Text/Paragraph.d.js.map +1 -0
- package/src/Text/Paragraph.d.ts +10 -0
- package/src/Text/Paragraph.js +84 -0
- package/src/Text/Paragraph.js.map +1 -0
- package/src/Text/Text.d.js +2 -0
- package/src/Text/Text.d.js.map +1 -0
- package/src/Text/Text.d.ts +25 -0
- package/src/Text/Text.js +138 -0
- package/src/Text/Text.js.map +1 -0
- package/src/Text/TextLink.d.js +2 -0
- package/src/Text/TextLink.d.js.map +1 -0
- package/src/Text/TextLink.d.ts +7 -0
- package/src/Text/TextLink.js +58 -0
- package/src/Text/TextLink.js.map +1 -0
- package/src/Text/Title.d.js +2 -0
- package/src/Text/Title.d.js.map +1 -0
- package/src/Text/Title.d.ts +5 -0
- package/src/Text/Title.js +60 -0
- package/src/Text/Title.js.map +1 -0
- package/src/Text/index.d.js +110 -0
- package/src/Text/index.d.js.map +1 -0
- package/src/Text/index.d.ts +8 -0
- package/src/Text/index.js +110 -0
- package/src/Text/index.js.map +1 -0
- package/src/index.d.js +123 -0
- package/src/index.d.js.map +1 -0
- package/src/index.d.ts +9 -0
- package/src/index.js +123 -0
- package/src/index.js.map +1 -0
- package/src/mediaQueries.d.js +2 -0
- package/src/mediaQueries.d.js.map +1 -0
- package/src/mediaQueries.d.ts +13 -0
- package/src/mediaQueries.js +46 -0
- package/src/mediaQueries.js.map +1 -0
- package/src/util.d.js +2 -0
- package/src/util.d.js.map +1 -0
- package/src/util.d.ts +5 -0
- package/src/util.js +66 -0
- package/src/util.js.map +1 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
var _Animation = require("./Animation");
|
|
8
|
+
|
|
9
|
+
Object.keys(_Animation).forEach(function (key) {
|
|
10
|
+
if (key === "default" || key === "__esModule") return;
|
|
11
|
+
if (key in exports && exports[key] === _Animation[key]) return;
|
|
12
|
+
Object.defineProperty(exports, key, {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _Animation[key];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
var _Avatar = require("./Avatar");
|
|
21
|
+
|
|
22
|
+
Object.keys(_Avatar).forEach(function (key) {
|
|
23
|
+
if (key === "default" || key === "__esModule") return;
|
|
24
|
+
if (key in exports && exports[key] === _Avatar[key]) return;
|
|
25
|
+
Object.defineProperty(exports, key, {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
get: function get() {
|
|
28
|
+
return _Avatar[key];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
var _AvatarGrid = require("./AvatarGrid");
|
|
34
|
+
|
|
35
|
+
Object.keys(_AvatarGrid).forEach(function (key) {
|
|
36
|
+
if (key === "default" || key === "__esModule") return;
|
|
37
|
+
if (key in exports && exports[key] === _AvatarGrid[key]) return;
|
|
38
|
+
Object.defineProperty(exports, key, {
|
|
39
|
+
enumerable: true,
|
|
40
|
+
get: function get() {
|
|
41
|
+
return _AvatarGrid[key];
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
var _colors = require("./colors");
|
|
47
|
+
|
|
48
|
+
Object.keys(_colors).forEach(function (key) {
|
|
49
|
+
if (key === "default" || key === "__esModule") return;
|
|
50
|
+
if (key in exports && exports[key] === _colors[key]) return;
|
|
51
|
+
Object.defineProperty(exports, key, {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function get() {
|
|
54
|
+
return _colors[key];
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
var _colorsV = require("./colors-v2");
|
|
60
|
+
|
|
61
|
+
Object.keys(_colorsV).forEach(function (key) {
|
|
62
|
+
if (key === "default" || key === "__esModule") return;
|
|
63
|
+
if (key in exports && exports[key] === _colorsV[key]) return;
|
|
64
|
+
Object.defineProperty(exports, key, {
|
|
65
|
+
enumerable: true,
|
|
66
|
+
get: function get() {
|
|
67
|
+
return _colorsV[key];
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
var _Logo = require("./Logo");
|
|
73
|
+
|
|
74
|
+
Object.keys(_Logo).forEach(function (key) {
|
|
75
|
+
if (key === "default" || key === "__esModule") return;
|
|
76
|
+
if (key in exports && exports[key] === _Logo[key]) return;
|
|
77
|
+
Object.defineProperty(exports, key, {
|
|
78
|
+
enumerable: true,
|
|
79
|
+
get: function get() {
|
|
80
|
+
return _Logo[key];
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
//# sourceMappingURL=index.d.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["index.d.ts"],"names":[],"mappings":";;;;;;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA","sourcesContent":["export * from './Animation';\nexport * from './Avatar';\nexport * from './AvatarGrid';\nexport * from './colors';\nexport * from './colors-v2';\nexport * from './Logo';\n"],"file":"index.d.js"}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
var _Animation = require("./Animation");
|
|
8
|
+
|
|
9
|
+
Object.keys(_Animation).forEach(function (key) {
|
|
10
|
+
if (key === "default" || key === "__esModule") return;
|
|
11
|
+
if (key in exports && exports[key] === _Animation[key]) return;
|
|
12
|
+
Object.defineProperty(exports, key, {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _Animation[key];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
var _Avatar = require("./Avatar");
|
|
21
|
+
|
|
22
|
+
Object.keys(_Avatar).forEach(function (key) {
|
|
23
|
+
if (key === "default" || key === "__esModule") return;
|
|
24
|
+
if (key in exports && exports[key] === _Avatar[key]) return;
|
|
25
|
+
Object.defineProperty(exports, key, {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
get: function get() {
|
|
28
|
+
return _Avatar[key];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
var _AvatarGrid = require("./AvatarGrid");
|
|
34
|
+
|
|
35
|
+
Object.keys(_AvatarGrid).forEach(function (key) {
|
|
36
|
+
if (key === "default" || key === "__esModule") return;
|
|
37
|
+
if (key in exports && exports[key] === _AvatarGrid[key]) return;
|
|
38
|
+
Object.defineProperty(exports, key, {
|
|
39
|
+
enumerable: true,
|
|
40
|
+
get: function get() {
|
|
41
|
+
return _AvatarGrid[key];
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
var _colors = require("./colors");
|
|
47
|
+
|
|
48
|
+
Object.keys(_colors).forEach(function (key) {
|
|
49
|
+
if (key === "default" || key === "__esModule") return;
|
|
50
|
+
if (key in exports && exports[key] === _colors[key]) return;
|
|
51
|
+
Object.defineProperty(exports, key, {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function get() {
|
|
54
|
+
return _colors[key];
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
var _colorsV = require("./colors-v2");
|
|
60
|
+
|
|
61
|
+
Object.keys(_colorsV).forEach(function (key) {
|
|
62
|
+
if (key === "default" || key === "__esModule") return;
|
|
63
|
+
if (key in exports && exports[key] === _colorsV[key]) return;
|
|
64
|
+
Object.defineProperty(exports, key, {
|
|
65
|
+
enumerable: true,
|
|
66
|
+
get: function get() {
|
|
67
|
+
return _colorsV[key];
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
var _Logo = require("./Logo");
|
|
73
|
+
|
|
74
|
+
Object.keys(_Logo).forEach(function (key) {
|
|
75
|
+
if (key === "default" || key === "__esModule") return;
|
|
76
|
+
if (key in exports && exports[key] === _Logo[key]) return;
|
|
77
|
+
Object.defineProperty(exports, key, {
|
|
78
|
+
enumerable: true,
|
|
79
|
+
get: function get() {
|
|
80
|
+
return _Logo[key];
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;AAmBA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA","sourcesContent":["/*\n * Wire\n * Copyright (C) 2018 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\nexport * from './Animation';\nexport * from './Avatar';\nexport * from './AvatarGrid';\nexport * from './colors';\nexport * from './colors-v2';\nexport * from './Logo';\n"],"file":"index.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"motions.d.js"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Duration exception - When a motion longer than 0.7 seconds is needed use a multiplier of 700.
|
|
3
|
+
*/
|
|
4
|
+
export declare const DURATION: {
|
|
5
|
+
DEFAULT: number;
|
|
6
|
+
EXTRA_LONG: number;
|
|
7
|
+
PROACTIVE_FAST: number;
|
|
8
|
+
PROACTIVE_SLOW: number;
|
|
9
|
+
SYSTEM: number;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* The rule of thumb is using Quart Out when animating only the object's opacity,
|
|
13
|
+
* otherwise use Expo Out ease.
|
|
14
|
+
*/
|
|
15
|
+
export declare const EASE: {
|
|
16
|
+
EXPONENTIAL: string;
|
|
17
|
+
QUART: string;
|
|
18
|
+
};
|
|
19
|
+
export declare const ANIMATION: {
|
|
20
|
+
bottomUpMovement: import("@emotion/serialize").Keyframes;
|
|
21
|
+
fadeIn: import("@emotion/serialize").Keyframes;
|
|
22
|
+
rotate: import("@emotion/serialize").Keyframes;
|
|
23
|
+
topDownMovement: import("@emotion/serialize").Keyframes;
|
|
24
|
+
topDownMovementLight: import("@emotion/serialize").Keyframes;
|
|
25
|
+
};
|
|
26
|
+
export declare const defaultTransition = "all 0.24s";
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.defaultTransition = exports.ANIMATION = exports.EASE = exports.DURATION = void 0;
|
|
9
|
+
|
|
10
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
11
|
+
|
|
12
|
+
var _react = require("@emotion/react");
|
|
13
|
+
|
|
14
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
|
|
15
|
+
|
|
16
|
+
// https://motion.wire.com/_guidelines_/rules.html
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Duration exception - When a motion longer than 0.7 seconds is needed use a multiplier of 700.
|
|
20
|
+
*/
|
|
21
|
+
var DURATION = {
|
|
22
|
+
DEFAULT: 550,
|
|
23
|
+
EXTRA_LONG: 2400,
|
|
24
|
+
PROACTIVE_FAST: 150,
|
|
25
|
+
PROACTIVE_SLOW: 350,
|
|
26
|
+
SYSTEM: 700
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* The rule of thumb is using Quart Out when animating only the object's opacity,
|
|
30
|
+
* otherwise use Expo Out ease.
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
exports.DURATION = DURATION;
|
|
34
|
+
var EASE = {
|
|
35
|
+
EXPONENTIAL: 'cubic-bezier(0.19, 1, 0.22, 1)',
|
|
36
|
+
QUART: 'cubic-bezier(0.165, 0.84, 0.44, 1)'
|
|
37
|
+
};
|
|
38
|
+
exports.EASE = EASE;
|
|
39
|
+
var ANIMATION = {
|
|
40
|
+
bottomUpMovement: (0, _react.keyframes)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n 0% {\n transform: translateY(100%);\n }\n 100% {\n transform: translateY(0);\n }\n "]))),
|
|
41
|
+
fadeIn: (0, _react.keyframes)(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2["default"])(["\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n "]))),
|
|
42
|
+
rotate: (0, _react.keyframes)(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2["default"])(["\n 0% {\n transform: rotate(0);\n }\n 100% {\n transform: rotate(360deg);\n }\n "]))),
|
|
43
|
+
topDownMovement: (0, _react.keyframes)(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n 0% {\n transform: translateY(-100%);\n }\n 100% {\n transform: translateY(0);\n }\n "]))),
|
|
44
|
+
topDownMovementLight: (0, _react.keyframes)(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n 0% {\n transform: translateY(-20%);\n }\n 100% {\n transform: translateY(0);\n }\n "])))
|
|
45
|
+
};
|
|
46
|
+
exports.ANIMATION = ANIMATION;
|
|
47
|
+
var defaultTransition = 'all 0.24s';
|
|
48
|
+
exports.defaultTransition = defaultTransition;
|
|
49
|
+
//# sourceMappingURL=motions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["motions.ts"],"names":["DURATION","DEFAULT","EXTRA_LONG","PROACTIVE_FAST","PROACTIVE_SLOW","SYSTEM","EASE","EXPONENTIAL","QUART","ANIMATION","bottomUpMovement","keyframes","fadeIn","rotate","topDownMovement","topDownMovementLight","defaultTransition"],"mappings":";;;;;;;;;;;AAmBA;;;;AAEA;;AAEA;AACA;AACA;AACO,IAAMA,QAAQ,GAAG;AACtBC,EAAAA,OAAO,EAAE,GADa;AAEtBC,EAAAA,UAAU,EAAE,IAFU;AAGtBC,EAAAA,cAAc,EAAE,GAHM;AAItBC,EAAAA,cAAc,EAAE,GAJM;AAKtBC,EAAAA,MAAM,EAAE;AALc,CAAjB;AAQP;AACA;AACA;AACA;;;AACO,IAAMC,IAAI,GAAG;AAClBC,EAAAA,WAAW,EAAE,gCADK;AAElBC,EAAAA,KAAK,EAAE;AAFW,CAAb;;AAKA,IAAMC,SAAS,GAAG;AACvBC,EAAAA,gBAAgB,MAAEC,gBAAF,oMADO;AASvBC,EAAAA,MAAM,MAAED,gBAAF,uKATiB;AAiBvBE,EAAAA,MAAM,MAAEF,gBAAF,gMAjBiB;AAyBvBG,EAAAA,eAAe,MAAEH,gBAAF,uMAzBQ;AAiCvBI,EAAAA,oBAAoB,MAAEJ,gBAAF;AAjCG,CAAlB;;AA2CA,IAAMK,iBAAiB,GAAG,WAA1B","sourcesContent":["/*\n * Wire\n * Copyright (C) 2018 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\nimport {keyframes} from '@emotion/react';\n\n// https://motion.wire.com/_guidelines_/rules.html\n\n/**\n * Duration exception - When a motion longer than 0.7 seconds is needed use a multiplier of 700.\n */\nexport const DURATION = {\n DEFAULT: 550,\n EXTRA_LONG: 2400,\n PROACTIVE_FAST: 150,\n PROACTIVE_SLOW: 350,\n SYSTEM: 700,\n};\n\n/**\n * The rule of thumb is using Quart Out when animating only the object's opacity,\n * otherwise use Expo Out ease.\n */\nexport const EASE = {\n EXPONENTIAL: 'cubic-bezier(0.19, 1, 0.22, 1)',\n QUART: 'cubic-bezier(0.165, 0.84, 0.44, 1)',\n};\n\nexport const ANIMATION = {\n bottomUpMovement: keyframes`\n 0% {\n transform: translateY(100%);\n }\n 100% {\n transform: translateY(0);\n }\n `,\n fadeIn: keyframes`\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n `,\n rotate: keyframes`\n 0% {\n transform: rotate(0);\n }\n 100% {\n transform: rotate(360deg);\n }\n `,\n topDownMovement: keyframes`\n 0% {\n transform: translateY(-100%);\n }\n 100% {\n transform: translateY(0);\n }\n `,\n topDownMovementLight: keyframes`\n 0% {\n transform: translateY(-20%);\n }\n 100% {\n transform: translateY(0);\n }\n `,\n};\n\nexport const defaultTransition = 'all 0.24s';\n"],"file":"motions.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"Box.d.js"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import { CSSObject, jsx } from '@emotion/react';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
export declare type BoxProps<T = HTMLDivElement> = React.HTMLProps<T>;
|
|
5
|
+
export declare const boxStyle: <T>(props: BoxProps<T>) => CSSObject;
|
|
6
|
+
export declare const Box: (props: BoxProps<HTMLDivElement>) => jsx.JSX.Element;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.Box = exports.boxStyle = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _react = require("@emotion/react");
|
|
13
|
+
|
|
14
|
+
var _react2 = _interopRequireDefault(require("react"));
|
|
15
|
+
|
|
16
|
+
var _Identity = require("../Identity");
|
|
17
|
+
|
|
18
|
+
/*
|
|
19
|
+
* Wire
|
|
20
|
+
* Copyright (C) 2018 Wire Swiss GmbH
|
|
21
|
+
*
|
|
22
|
+
* This program is free software: you can redistribute it and/or modify
|
|
23
|
+
* it under the terms of the GNU General Public License as published by
|
|
24
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
25
|
+
* (at your option) any later version.
|
|
26
|
+
*
|
|
27
|
+
* This program is distributed in the hope that it will be useful,
|
|
28
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
29
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
30
|
+
* GNU General Public License for more details.
|
|
31
|
+
*
|
|
32
|
+
* You should have received a copy of the GNU General Public License
|
|
33
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
34
|
+
*
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
/** @jsx jsx */
|
|
38
|
+
var boxStyle = function boxStyle(props) {
|
|
39
|
+
return {
|
|
40
|
+
border: "2px solid ".concat(_Identity.COLOR.GRAY_LIGHTEN_72),
|
|
41
|
+
borderRadius: '8px',
|
|
42
|
+
padding: '16px 32px'
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
exports.boxStyle = boxStyle;
|
|
47
|
+
|
|
48
|
+
var Box = function Box(props) {
|
|
49
|
+
return (0, _react.jsx)("div", (0, _extends2["default"])({
|
|
50
|
+
css: boxStyle(props)
|
|
51
|
+
}, props));
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
exports.Box = Box;
|
|
55
|
+
//# sourceMappingURL=Box.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["Box.tsx"],"names":["boxStyle","props","border","COLOR","GRAY_LIGHTEN_72","borderRadius","padding","Box"],"mappings":";;;;;;;;;;;AAoBA;;AACA;;AAEA;;AAvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AAQO,IAAMA,QAA8C,GAAG,SAAjDA,QAAiD,CAAAC,KAAK;AAAA,SAAK;AACtEC,IAAAA,MAAM,sBAAeC,gBAAMC,eAArB,CADgE;AAEtEC,IAAAA,YAAY,EAAE,KAFwD;AAGtEC,IAAAA,OAAO,EAAE;AAH6D,GAAL;AAAA,CAA5D;;;;AAMA,IAAMC,GAAG,GAAG,SAANA,GAAM,CAACN,KAAD;AAAA,SAAqB;AAAK,IAAA,GAAG,EAAED,QAAQ,CAACC,KAAD;AAAlB,KAA+BA,KAA/B,EAArB;AAAA,CAAZ","sourcesContent":["/*\n * Wire\n * Copyright (C) 2018 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\n/** @jsx jsx */\nimport {CSSObject, jsx} from '@emotion/react';\nimport React from 'react';\n\nimport {COLOR} from '../Identity';\n\nexport type BoxProps<T = HTMLDivElement> = React.HTMLProps<T>;\n\nexport const boxStyle: <T>(props: BoxProps<T>) => CSSObject = props => ({\n border: `2px solid ${COLOR.GRAY_LIGHTEN_72}`,\n borderRadius: '8px',\n padding: '16px 32px',\n});\n\nexport const Box = (props: BoxProps) => <div css={boxStyle(props)} {...props} />;\n"],"file":"Box.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"Column.d.js"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { jsx } from '@emotion/react';
|
|
4
|
+
import { QueryKeys } from '../mediaQueries';
|
|
5
|
+
export interface ColumnsProps<T = HTMLDivElement> extends React.HTMLProps<T> {
|
|
6
|
+
query?: QueryKeys;
|
|
7
|
+
}
|
|
8
|
+
export declare const filterColumnsProps: (props: ColumnsProps) => Object;
|
|
9
|
+
export declare const Columns: (props: ColumnsProps) => jsx.JSX.Element;
|
|
10
|
+
export declare type ColumnProps<T = HTMLDivElement> = React.HTMLProps<T>;
|
|
11
|
+
export declare const Column: (props: ColumnProps<HTMLDivElement>) => jsx.JSX.Element;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.Column = exports.Columns = exports.filterColumnsProps = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
|
15
|
+
|
|
16
|
+
var _react2 = require("@emotion/react");
|
|
17
|
+
|
|
18
|
+
var _mediaQueries = require("../mediaQueries");
|
|
19
|
+
|
|
20
|
+
var _util = require("../util");
|
|
21
|
+
|
|
22
|
+
var _sizes = require("./sizes");
|
|
23
|
+
|
|
24
|
+
/*
|
|
25
|
+
* Wire
|
|
26
|
+
* Copyright (C) 2018 Wire Swiss GmbH
|
|
27
|
+
*
|
|
28
|
+
* This program is free software: you can redistribute it and/or modify
|
|
29
|
+
* it under the terms of the GNU General Public License as published by
|
|
30
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
31
|
+
* (at your option) any later version.
|
|
32
|
+
*
|
|
33
|
+
* This program is distributed in the hope that it will be useful,
|
|
34
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
35
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
36
|
+
* GNU General Public License for more details.
|
|
37
|
+
*
|
|
38
|
+
* You should have received a copy of the GNU General Public License
|
|
39
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
40
|
+
*
|
|
41
|
+
*/
|
|
42
|
+
|
|
43
|
+
/** @jsx jsx */
|
|
44
|
+
var filterColumnsProps = function filterColumnsProps(props) {
|
|
45
|
+
return (0, _util.filterProps)(props, ['query']);
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
exports.filterColumnsProps = filterColumnsProps;
|
|
49
|
+
|
|
50
|
+
var columnsStyle = function columnsStyle(_ref) {
|
|
51
|
+
var _ref$query = _ref.query,
|
|
52
|
+
query = _ref$query === void 0 ? _mediaQueries.QueryKeys.MOBILE : _ref$query;
|
|
53
|
+
return (0, _defineProperty2["default"])({
|
|
54
|
+
display: 'flex',
|
|
55
|
+
marginLeft: "-".concat(_sizes.GUTTER, "px")
|
|
56
|
+
}, _mediaQueries.media[query], {
|
|
57
|
+
flexDirection: 'column'
|
|
58
|
+
});
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
var Columns = function Columns(props) {
|
|
62
|
+
return (0, _react2.jsx)("div", (0, _extends2["default"])({
|
|
63
|
+
css: columnsStyle(props)
|
|
64
|
+
}, filterColumnsProps(props)));
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
exports.Columns = Columns;
|
|
68
|
+
|
|
69
|
+
var columnStyle = function columnStyle(props) {
|
|
70
|
+
return {
|
|
71
|
+
display: 'block',
|
|
72
|
+
flexBasis: '0',
|
|
73
|
+
flexGrow: 1,
|
|
74
|
+
flexShrink: 1,
|
|
75
|
+
marginLeft: "".concat(_sizes.GUTTER, "px")
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
var Column = function Column(props) {
|
|
80
|
+
return (0, _react2.jsx)("div", (0, _extends2["default"])({
|
|
81
|
+
css: columnStyle(props)
|
|
82
|
+
}, props));
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
exports.Column = Column;
|
|
86
|
+
//# sourceMappingURL=Column.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["Column.tsx"],"names":["filterColumnsProps","props","columnsStyle","query","QueryKeys","MOBILE","display","marginLeft","GUTTER","media","flexDirection","Columns","columnStyle","flexBasis","flexGrow","flexShrink","Column"],"mappings":";;;;;;;;;;;;;AAoBA;;AACA;;AAEA;;AACA;;AACA;;AAzBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AAYO,IAAMA,kBAAkB,GAAG,SAArBA,kBAAqB,CAACC,KAAD,EAAyB;AACzD,SAAO,uBAAYA,KAAZ,EAAmB,CAAC,OAAD,CAAnB,CAAP;AACD,CAFM;;;;AAIP,IAAMC,YAAsD,GAAG,SAAzDA,YAAyD;AAAA,wBAAEC,KAAF;AAAA,MAAEA,KAAF,2BAAUC,wBAAUC,MAApB;AAAA;AAC7DC,IAAAA,OAAO,EAAE,MADoD;AAE7DC,IAAAA,UAAU,aAAMC,aAAN;AAFmD,KAG5DC,oBAAMN,KAAN,CAH4D,EAG7C;AAACO,IAAAA,aAAa,EAAE;AAAhB,GAH6C;AAAA,CAA/D;;AAMO,IAAMC,OAAO,GAAG,SAAVA,OAAU,CAACV,KAAD;AAAA,SAAyB;AAAK,IAAA,GAAG,EAAEC,YAAY,CAACD,KAAD;AAAtB,KAAmCD,kBAAkB,CAACC,KAAD,CAArD,EAAzB;AAAA,CAAhB;;;;AAIP,IAAMW,WAAoD,GAAG,SAAvDA,WAAuD,CAAAX,KAAK;AAAA,SAAK;AACrEK,IAAAA,OAAO,EAAE,OAD4D;AAErEO,IAAAA,SAAS,EAAE,GAF0D;AAGrEC,IAAAA,QAAQ,EAAE,CAH2D;AAIrEC,IAAAA,UAAU,EAAE,CAJyD;AAKrER,IAAAA,UAAU,YAAKC,aAAL;AAL2D,GAAL;AAAA,CAAlE;;AAQO,IAAMQ,MAAM,GAAG,SAATA,MAAS,CAACf,KAAD;AAAA,SAAwB;AAAK,IAAA,GAAG,EAAEW,WAAW,CAACX,KAAD;AAArB,KAAkCA,KAAlC,EAAxB;AAAA,CAAf","sourcesContent":["/*\n * Wire\n * Copyright (C) 2018 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\n/** @jsx jsx */\nimport React from 'react';\nimport {CSSObject, jsx} from '@emotion/react';\n\nimport {QueryKeys, media} from '../mediaQueries';\nimport {filterProps} from '../util';\nimport {GUTTER} from './sizes';\n\nexport interface ColumnsProps<T = HTMLDivElement> extends React.HTMLProps<T> {\n query?: QueryKeys;\n}\n\nexport const filterColumnsProps = (props: ColumnsProps) => {\n return filterProps(props, ['query']);\n};\n\nconst columnsStyle: <T>(props: ColumnsProps<T>) => CSSObject = ({query = QueryKeys.MOBILE}) => ({\n display: 'flex',\n marginLeft: `-${GUTTER}px`,\n [media[query]]: {flexDirection: 'column'},\n});\n\nexport const Columns = (props: ColumnsProps) => <div css={columnsStyle(props)} {...filterColumnsProps(props)} />;\n\nexport type ColumnProps<T = HTMLDivElement> = React.HTMLProps<T>;\n\nconst columnStyle: <T>(props: ColumnProps<T>) => CSSObject = props => ({\n display: 'block',\n flexBasis: '0',\n flexGrow: 1,\n flexShrink: 1,\n marginLeft: `${GUTTER}px`,\n});\n\nexport const Column = (props: ColumnProps) => <div css={columnStyle(props)} {...props} />;\n"],"file":"Column.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"Container.d.js"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface ContainerProps<T = HTMLDivElement> extends React.HTMLProps<T> {
|
|
3
|
+
centerText?: boolean;
|
|
4
|
+
level?: keyof Level;
|
|
5
|
+
verticalCenter?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export interface Level {
|
|
8
|
+
lg: number;
|
|
9
|
+
md: number;
|
|
10
|
+
sm: number;
|
|
11
|
+
xs: number;
|
|
12
|
+
xxs: number;
|
|
13
|
+
}
|
|
14
|
+
export declare const Container: React.FC<ContainerProps>;
|
|
15
|
+
export declare type LevelContainerProps = Omit<ContainerProps, 'level'>;
|
|
16
|
+
export declare const ContainerLG: React.ForwardRefExoticComponent<Pick<LevelContainerProps, "children" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "color" | "content" | "height" | "translate" | "width" | "hidden" | "className" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "nonce" | "noValidate" | "open" | "optimum" | "value" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "wmode" | "wrap" | "centerText" | "verticalCenter"> & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
export declare const ContainerMD: React.ForwardRefExoticComponent<Pick<LevelContainerProps, "children" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "color" | "content" | "height" | "translate" | "width" | "hidden" | "className" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "nonce" | "noValidate" | "open" | "optimum" | "value" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "wmode" | "wrap" | "centerText" | "verticalCenter"> & React.RefAttributes<HTMLDivElement>>;
|
|
18
|
+
export declare const ContainerSM: React.ForwardRefExoticComponent<Pick<LevelContainerProps, "children" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "color" | "content" | "height" | "translate" | "width" | "hidden" | "className" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "nonce" | "noValidate" | "open" | "optimum" | "value" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "wmode" | "wrap" | "centerText" | "verticalCenter"> & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
export declare const ContainerXS: React.ForwardRefExoticComponent<Pick<LevelContainerProps, "children" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "color" | "content" | "height" | "translate" | "width" | "hidden" | "className" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "nonce" | "noValidate" | "open" | "optimum" | "value" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "wmode" | "wrap" | "centerText" | "verticalCenter"> & React.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
export declare const ContainerXXS: React.ForwardRefExoticComponent<Pick<LevelContainerProps, "children" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "color" | "content" | "height" | "translate" | "width" | "hidden" | "className" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "nonce" | "noValidate" | "open" | "optimum" | "value" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "wmode" | "wrap" | "centerText" | "verticalCenter"> & React.RefAttributes<HTMLDivElement>>;
|