@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,930 @@
|
|
|
1
|
+
import { Theme } from '../Layout';
|
|
2
|
+
export declare const customStyles: (theme: Theme, markInvalid?: boolean) => {
|
|
3
|
+
indicatorSeparator: () => {
|
|
4
|
+
display: string;
|
|
5
|
+
};
|
|
6
|
+
indicatorsContainer: (provided: any) => any;
|
|
7
|
+
container: (provided: any, { isDisabled, selectProps }: {
|
|
8
|
+
isDisabled: any;
|
|
9
|
+
selectProps: any;
|
|
10
|
+
}) => {
|
|
11
|
+
'& > div': {
|
|
12
|
+
cursor: string;
|
|
13
|
+
'&:focus:visible, active': {
|
|
14
|
+
boxShadow: string;
|
|
15
|
+
};
|
|
16
|
+
boxShadow: string;
|
|
17
|
+
'&:hover': {
|
|
18
|
+
boxShadow: string;
|
|
19
|
+
};
|
|
20
|
+
backgroundColor: string;
|
|
21
|
+
color: string;
|
|
22
|
+
padding: number;
|
|
23
|
+
height: string;
|
|
24
|
+
minHeight: string;
|
|
25
|
+
'&:-moz-focusring': {
|
|
26
|
+
color: string;
|
|
27
|
+
textShadow: string;
|
|
28
|
+
};
|
|
29
|
+
position: string;
|
|
30
|
+
alignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[];
|
|
31
|
+
alignItems?: import("csstype").Property.AlignItems | import("csstype").Property.AlignItems[];
|
|
32
|
+
alignSelf?: import("csstype").Property.AlignSelf | import("csstype").Property.AlignSelf[];
|
|
33
|
+
alignTracks?: import("csstype").Property.AlignTracks | import("csstype").Property.AlignTracks[];
|
|
34
|
+
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[];
|
|
35
|
+
animationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[];
|
|
36
|
+
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[];
|
|
37
|
+
animationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[];
|
|
38
|
+
animationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | ((string & {}) | import("csstype").Globals | "infinite")[];
|
|
39
|
+
animationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[];
|
|
40
|
+
animationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[];
|
|
41
|
+
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[];
|
|
42
|
+
appearance?: import("csstype").Property.Appearance | import("csstype").Property.Appearance[];
|
|
43
|
+
aspectRatio?: import("csstype").Property.AspectRatio | import("csstype").Property.AspectRatio[];
|
|
44
|
+
backdropFilter?: import("csstype").Property.BackdropFilter | import("csstype").Property.BackdropFilter[];
|
|
45
|
+
backfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[];
|
|
46
|
+
backgroundAttachment?: import("csstype").Property.BackgroundAttachment | import("csstype").Property.BackgroundAttachment[];
|
|
47
|
+
backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | import("csstype").Property.BackgroundBlendMode[];
|
|
48
|
+
backgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[];
|
|
49
|
+
backgroundImage?: import("csstype").Property.BackgroundImage | import("csstype").Property.BackgroundImage[];
|
|
50
|
+
backgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[];
|
|
51
|
+
backgroundPosition?: (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | import("csstype").Property.BackgroundPosition<string | number>[];
|
|
52
|
+
backgroundPositionX?: (string | (string & {}))[] | import("csstype").Property.BackgroundPositionX<string | number> | import("csstype").Property.BackgroundPositionX<string | number>[];
|
|
53
|
+
backgroundPositionY?: (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | import("csstype").Property.BackgroundPositionY<string | number>[];
|
|
54
|
+
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | import("csstype").Property.BackgroundRepeat[];
|
|
55
|
+
backgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | import("csstype").Property.BackgroundSize<string | number>[];
|
|
56
|
+
blockOverflow?: import("csstype").Property.BlockOverflow | import("csstype").Property.BlockOverflow[];
|
|
57
|
+
blockSize?: (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | import("csstype").Property.BlockSize<string | number>[];
|
|
58
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | import("csstype").Property.BorderBlockColor[];
|
|
59
|
+
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | import("csstype").Property.BorderBlockEndColor[];
|
|
60
|
+
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | import("csstype").Property.BorderBlockEndStyle[];
|
|
61
|
+
borderBlockEndWidth?: string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | import("csstype").Property.BorderBlockEndWidth<string | number>[];
|
|
62
|
+
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | import("csstype").Property.BorderBlockStartColor[];
|
|
63
|
+
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | import("csstype").Property.BorderBlockStartStyle[];
|
|
64
|
+
borderBlockStartWidth?: string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | import("csstype").Property.BorderBlockStartWidth<string | number>[];
|
|
65
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | import("csstype").Property.BorderBlockStyle[];
|
|
66
|
+
borderBlockWidth?: string[] | import("csstype").Property.BorderBlockWidth<string | number> | import("csstype").Property.BorderBlockWidth<string | number>[];
|
|
67
|
+
borderBottomColor?: import("csstype").Property.BorderBottomColor | import("csstype").Property.BorderBottomColor[];
|
|
68
|
+
borderBottomLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | import("csstype").Property.BorderBottomLeftRadius<string | number>[];
|
|
69
|
+
borderBottomRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | import("csstype").Property.BorderBottomRightRadius<string | number>[];
|
|
70
|
+
borderBottomStyle?: import("csstype").Property.BorderBottomStyle | import("csstype").Property.BorderBottomStyle[];
|
|
71
|
+
borderBottomWidth?: string[] | import("csstype").Property.BorderBottomWidth<string | number> | import("csstype").Property.BorderBottomWidth<string | number>[];
|
|
72
|
+
borderCollapse?: import("csstype").Property.BorderCollapse | import("csstype").Property.BorderCollapse[];
|
|
73
|
+
borderEndEndRadius?: (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | import("csstype").Property.BorderEndEndRadius<string | number>[];
|
|
74
|
+
borderEndStartRadius?: (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | import("csstype").Property.BorderEndStartRadius<string | number>[];
|
|
75
|
+
borderImageOutset?: (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | import("csstype").Property.BorderImageOutset<string | number>[];
|
|
76
|
+
borderImageRepeat?: import("csstype").Property.BorderImageRepeat | import("csstype").Property.BorderImageRepeat[];
|
|
77
|
+
borderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | ((string & {}) | import("csstype").Globals)[];
|
|
78
|
+
borderImageSource?: import("csstype").Property.BorderImageSource | import("csstype").Property.BorderImageSource[];
|
|
79
|
+
borderImageWidth?: (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | import("csstype").Property.BorderImageWidth<string | number>[];
|
|
80
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | import("csstype").Property.BorderInlineColor[];
|
|
81
|
+
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[];
|
|
82
|
+
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[];
|
|
83
|
+
borderInlineEndWidth?: string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[];
|
|
84
|
+
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[];
|
|
85
|
+
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[];
|
|
86
|
+
borderInlineStartWidth?: string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | import("csstype").Property.BorderInlineStartWidth<string | number>[];
|
|
87
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | import("csstype").Property.BorderInlineStyle[];
|
|
88
|
+
borderInlineWidth?: string[] | import("csstype").Property.BorderInlineWidth<string | number> | import("csstype").Property.BorderInlineWidth<string | number>[];
|
|
89
|
+
borderLeftColor?: import("csstype").Property.BorderLeftColor | import("csstype").Property.BorderLeftColor[];
|
|
90
|
+
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | import("csstype").Property.BorderLeftStyle[];
|
|
91
|
+
borderLeftWidth?: string[] | import("csstype").Property.BorderLeftWidth<string | number> | import("csstype").Property.BorderLeftWidth<string | number>[];
|
|
92
|
+
borderRightColor?: import("csstype").Property.BorderRightColor | import("csstype").Property.BorderRightColor[];
|
|
93
|
+
borderRightStyle?: import("csstype").Property.BorderRightStyle | import("csstype").Property.BorderRightStyle[];
|
|
94
|
+
borderRightWidth?: string[] | import("csstype").Property.BorderRightWidth<string | number> | import("csstype").Property.BorderRightWidth<string | number>[];
|
|
95
|
+
borderSpacing?: (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | import("csstype").Property.BorderSpacing<string | number>[];
|
|
96
|
+
borderStartEndRadius?: (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | import("csstype").Property.BorderStartEndRadius<string | number>[];
|
|
97
|
+
borderStartStartRadius?: (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | import("csstype").Property.BorderStartStartRadius<string | number>[];
|
|
98
|
+
borderTopColor?: import("csstype").Property.BorderTopColor | import("csstype").Property.BorderTopColor[];
|
|
99
|
+
borderTopLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | import("csstype").Property.BorderTopLeftRadius<string | number>[];
|
|
100
|
+
borderTopRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | import("csstype").Property.BorderTopRightRadius<string | number>[];
|
|
101
|
+
borderTopStyle?: import("csstype").Property.BorderTopStyle | import("csstype").Property.BorderTopStyle[];
|
|
102
|
+
borderTopWidth?: string[] | import("csstype").Property.BorderTopWidth<string | number> | import("csstype").Property.BorderTopWidth<string | number>[];
|
|
103
|
+
bottom?: (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | import("csstype").Property.Bottom<string | number>[];
|
|
104
|
+
boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[];
|
|
105
|
+
boxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[];
|
|
106
|
+
breakAfter?: import("csstype").Property.BreakAfter | import("csstype").Property.BreakAfter[];
|
|
107
|
+
breakBefore?: import("csstype").Property.BreakBefore | import("csstype").Property.BreakBefore[];
|
|
108
|
+
breakInside?: import("csstype").Property.BreakInside | import("csstype").Property.BreakInside[];
|
|
109
|
+
captionSide?: import("csstype").Property.CaptionSide | import("csstype").Property.CaptionSide[];
|
|
110
|
+
caretColor?: import("csstype").Property.CaretColor | import("csstype").Property.CaretColor[];
|
|
111
|
+
clear?: import("csstype").Property.Clear | import("csstype").Property.Clear[];
|
|
112
|
+
clipPath?: import("csstype").Property.ClipPath | import("csstype").Property.ClipPath[];
|
|
113
|
+
colorAdjust?: import("csstype").Property.ColorAdjust | import("csstype").Property.ColorAdjust[];
|
|
114
|
+
columnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | (import("csstype").Globals | "auto")[];
|
|
115
|
+
columnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[];
|
|
116
|
+
columnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | import("csstype").Property.ColumnGap<string | number>[];
|
|
117
|
+
columnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[];
|
|
118
|
+
columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[];
|
|
119
|
+
columnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | import("csstype").Property.ColumnRuleWidth<string | number>[];
|
|
120
|
+
columnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[];
|
|
121
|
+
columnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[];
|
|
122
|
+
contain?: import("csstype").Property.Contain | import("csstype").Property.Contain[];
|
|
123
|
+
content?: import("csstype").Property.Content | import("csstype").Property.Content[];
|
|
124
|
+
counterIncrement?: import("csstype").Property.CounterIncrement | import("csstype").Property.CounterIncrement[];
|
|
125
|
+
counterReset?: import("csstype").Property.CounterReset | import("csstype").Property.CounterReset[];
|
|
126
|
+
counterSet?: import("csstype").Property.CounterSet | import("csstype").Property.CounterSet[];
|
|
127
|
+
direction?: import("csstype").Property.Direction | import("csstype").Property.Direction[];
|
|
128
|
+
display?: import("csstype").Property.Display | import("csstype").Property.Display[];
|
|
129
|
+
emptyCells?: import("csstype").Property.EmptyCells | import("csstype").Property.EmptyCells[];
|
|
130
|
+
filter?: import("csstype").Property.Filter | import("csstype").Property.Filter[];
|
|
131
|
+
flexBasis?: (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | import("csstype").Property.FlexBasis<string | number>[];
|
|
132
|
+
flexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[];
|
|
133
|
+
flexGrow?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | import("csstype").Globals[];
|
|
134
|
+
flexShrink?: import("csstype").Globals[] | import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[];
|
|
135
|
+
flexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[];
|
|
136
|
+
float?: import("csstype").Property.Float | import("csstype").Property.Float[];
|
|
137
|
+
fontFamily?: import("csstype").Property.FontFamily | import("csstype").Property.FontFamily[];
|
|
138
|
+
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[];
|
|
139
|
+
fontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[];
|
|
140
|
+
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[];
|
|
141
|
+
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | import("csstype").Property.FontOpticalSizing[];
|
|
142
|
+
fontSize?: (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | import("csstype").Property.FontSize<string | number>[];
|
|
143
|
+
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | import("csstype").Property.FontSizeAdjust[] | ("none" | import("csstype").Globals)[];
|
|
144
|
+
fontSmooth?: string[] | import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[];
|
|
145
|
+
fontStretch?: import("csstype").Property.FontStretch | import("csstype").Property.FontStretch[];
|
|
146
|
+
fontStyle?: import("csstype").Property.FontStyle | import("csstype").Property.FontStyle[];
|
|
147
|
+
fontSynthesis?: import("csstype").Property.FontSynthesis | import("csstype").Property.FontSynthesis[];
|
|
148
|
+
fontVariant?: import("csstype").Property.FontVariant | import("csstype").Property.FontVariant[];
|
|
149
|
+
fontVariantCaps?: import("csstype").Property.FontVariantCaps | import("csstype").Property.FontVariantCaps[];
|
|
150
|
+
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | import("csstype").Property.FontVariantEastAsian[];
|
|
151
|
+
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | import("csstype").Property.FontVariantLigatures[];
|
|
152
|
+
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | import("csstype").Property.FontVariantNumeric[];
|
|
153
|
+
fontVariantPosition?: import("csstype").Property.FontVariantPosition | import("csstype").Property.FontVariantPosition[];
|
|
154
|
+
fontVariationSettings?: import("csstype").Property.FontVariationSettings | import("csstype").Property.FontVariationSettings[];
|
|
155
|
+
fontWeight?: import("csstype").Property.FontWeight | import("csstype").Property.FontWeight[] | ("bold" | import("csstype").Globals | "normal" | "bolder" | "lighter")[];
|
|
156
|
+
gridAutoColumns?: (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | import("csstype").Property.GridAutoColumns<string | number>[];
|
|
157
|
+
gridAutoFlow?: import("csstype").Property.GridAutoFlow | import("csstype").Property.GridAutoFlow[];
|
|
158
|
+
gridAutoRows?: (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | import("csstype").Property.GridAutoRows<string | number>[];
|
|
159
|
+
gridColumnEnd?: import("csstype").Property.GridColumnEnd | import("csstype").Property.GridColumnEnd[] | ((string & {}) | import("csstype").Globals | "auto")[];
|
|
160
|
+
gridColumnStart?: ((string & {}) | import("csstype").Globals | "auto")[] | import("csstype").Property.GridColumnStart | import("csstype").Property.GridColumnStart[];
|
|
161
|
+
gridRowEnd?: ((string & {}) | import("csstype").Globals | "auto")[] | import("csstype").Property.GridRowEnd | import("csstype").Property.GridRowEnd[];
|
|
162
|
+
gridRowStart?: ((string & {}) | import("csstype").Globals | "auto")[] | import("csstype").Property.GridRowStart | import("csstype").Property.GridRowStart[];
|
|
163
|
+
gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | import("csstype").Property.GridTemplateAreas[];
|
|
164
|
+
gridTemplateColumns?: (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | import("csstype").Property.GridTemplateColumns<string | number>[];
|
|
165
|
+
gridTemplateRows?: (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | import("csstype").Property.GridTemplateRows<string | number>[];
|
|
166
|
+
hangingPunctuation?: import("csstype").Property.HangingPunctuation | import("csstype").Property.HangingPunctuation[];
|
|
167
|
+
hyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[];
|
|
168
|
+
imageOrientation?: import("csstype").Property.ImageOrientation | import("csstype").Property.ImageOrientation[];
|
|
169
|
+
imageRendering?: import("csstype").Property.ImageRendering | import("csstype").Property.ImageRendering[];
|
|
170
|
+
imageResolution?: import("csstype").Property.ImageResolution | import("csstype").Property.ImageResolution[];
|
|
171
|
+
initialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | ((string & {}) | import("csstype").Globals | "normal")[];
|
|
172
|
+
inlineSize?: (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | import("csstype").Property.InlineSize<string | number>[];
|
|
173
|
+
inset?: (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | import("csstype").Property.Inset<string | number>[];
|
|
174
|
+
insetBlock?: (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | import("csstype").Property.InsetBlock<string | number>[];
|
|
175
|
+
insetBlockEnd?: (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | import("csstype").Property.InsetBlockEnd<string | number>[];
|
|
176
|
+
insetBlockStart?: (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | import("csstype").Property.InsetBlockStart<string | number>[];
|
|
177
|
+
insetInline?: (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | import("csstype").Property.InsetInline<string | number>[];
|
|
178
|
+
insetInlineEnd?: (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | import("csstype").Property.InsetInlineEnd<string | number>[];
|
|
179
|
+
insetInlineStart?: (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | import("csstype").Property.InsetInlineStart<string | number>[];
|
|
180
|
+
isolation?: import("csstype").Property.Isolation | import("csstype").Property.Isolation[];
|
|
181
|
+
justifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[];
|
|
182
|
+
justifyItems?: import("csstype").Property.JustifyItems | import("csstype").Property.JustifyItems[];
|
|
183
|
+
justifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[];
|
|
184
|
+
justifyTracks?: import("csstype").Property.JustifyTracks | import("csstype").Property.JustifyTracks[];
|
|
185
|
+
left?: (string | (string & {}))[] | import("csstype").Property.Left<string | number> | import("csstype").Property.Left<string | number>[];
|
|
186
|
+
letterSpacing?: string[] | import("csstype").Property.LetterSpacing<string | number> | import("csstype").Property.LetterSpacing<string | number>[];
|
|
187
|
+
lineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[];
|
|
188
|
+
lineHeight?: (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | import("csstype").Property.LineHeight<string | number>[];
|
|
189
|
+
lineHeightStep?: string[] | import("csstype").Property.LineHeightStep<string | number> | import("csstype").Property.LineHeightStep<string | number>[];
|
|
190
|
+
listStyleImage?: import("csstype").Property.ListStyleImage | import("csstype").Property.ListStyleImage[];
|
|
191
|
+
listStylePosition?: import("csstype").Property.ListStylePosition | import("csstype").Property.ListStylePosition[];
|
|
192
|
+
listStyleType?: import("csstype").Property.ListStyleType | import("csstype").Property.ListStyleType[];
|
|
193
|
+
marginBlock?: (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | import("csstype").Property.MarginBlock<string | number>[];
|
|
194
|
+
marginBlockEnd?: (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | import("csstype").Property.MarginBlockEnd<string | number>[];
|
|
195
|
+
marginBlockStart?: (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | import("csstype").Property.MarginBlockStart<string | number>[];
|
|
196
|
+
marginBottom?: (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | import("csstype").Property.MarginBottom<string | number>[];
|
|
197
|
+
marginInline?: (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | import("csstype").Property.MarginInline<string | number>[];
|
|
198
|
+
marginInlineEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | import("csstype").Property.MarginInlineEnd<string | number>[];
|
|
199
|
+
marginInlineStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | import("csstype").Property.MarginInlineStart<string | number>[];
|
|
200
|
+
marginLeft?: (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | import("csstype").Property.MarginLeft<string | number>[];
|
|
201
|
+
marginRight?: (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | import("csstype").Property.MarginRight<string | number>[];
|
|
202
|
+
marginTop?: (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | import("csstype").Property.MarginTop<string | number>[];
|
|
203
|
+
maskBorderMode?: import("csstype").Property.MaskBorderMode | import("csstype").Property.MaskBorderMode[];
|
|
204
|
+
maskBorderOutset?: (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | import("csstype").Property.MaskBorderOutset<string | number>[];
|
|
205
|
+
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[];
|
|
206
|
+
maskBorderSlice?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[];
|
|
207
|
+
maskBorderSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[];
|
|
208
|
+
maskBorderWidth?: (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | import("csstype").Property.MaskBorderWidth<string | number>[];
|
|
209
|
+
maskClip?: import("csstype").Property.MaskClip | import("csstype").Property.MaskClip[];
|
|
210
|
+
maskComposite?: import("csstype").Property.MaskComposite | import("csstype").Property.MaskComposite[];
|
|
211
|
+
maskImage?: import("csstype").Property.MaskImage | import("csstype").Property.MaskImage[];
|
|
212
|
+
maskMode?: import("csstype").Property.MaskMode | import("csstype").Property.MaskMode[];
|
|
213
|
+
maskOrigin?: import("csstype").Property.MaskOrigin | import("csstype").Property.MaskOrigin[];
|
|
214
|
+
maskPosition?: (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | import("csstype").Property.MaskPosition<string | number>[];
|
|
215
|
+
maskRepeat?: import("csstype").Property.MaskRepeat | import("csstype").Property.MaskRepeat[];
|
|
216
|
+
maskSize?: (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | import("csstype").Property.MaskSize<string | number>[];
|
|
217
|
+
maskType?: import("csstype").Property.MaskType | import("csstype").Property.MaskType[];
|
|
218
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | import("csstype").Property.MasonryAutoFlow[];
|
|
219
|
+
mathStyle?: import("csstype").Property.MathStyle | import("csstype").Property.MathStyle[];
|
|
220
|
+
maxBlockSize?: (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | import("csstype").Property.MaxBlockSize<string | number>[];
|
|
221
|
+
maxHeight?: (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | import("csstype").Property.MaxHeight<string | number>[];
|
|
222
|
+
maxInlineSize?: (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | import("csstype").Property.MaxInlineSize<string | number>[];
|
|
223
|
+
maxLines?: ("none" | import("csstype").Globals)[] | import("csstype").Property.MaxLines | import("csstype").Property.MaxLines[];
|
|
224
|
+
maxWidth?: (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | import("csstype").Property.MaxWidth<string | number>[];
|
|
225
|
+
minBlockSize?: (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | import("csstype").Property.MinBlockSize<string | number>[];
|
|
226
|
+
minInlineSize?: (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | import("csstype").Property.MinInlineSize<string | number>[];
|
|
227
|
+
minWidth?: (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | import("csstype").Property.MinWidth<string | number>[];
|
|
228
|
+
mixBlendMode?: import("csstype").Property.MixBlendMode | import("csstype").Property.MixBlendMode[];
|
|
229
|
+
motionDistance?: (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | import("csstype").Property.OffsetDistance<string | number>[];
|
|
230
|
+
motionPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[];
|
|
231
|
+
motionRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[];
|
|
232
|
+
objectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[];
|
|
233
|
+
objectPosition?: (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | import("csstype").Property.ObjectPosition<string | number>[];
|
|
234
|
+
offsetAnchor?: (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | import("csstype").Property.OffsetAnchor<string | number>[];
|
|
235
|
+
offsetDistance?: (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | import("csstype").Property.OffsetDistance<string | number>[];
|
|
236
|
+
offsetPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[];
|
|
237
|
+
offsetRotate?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[];
|
|
238
|
+
offsetRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[];
|
|
239
|
+
opacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | import("csstype").Property.Opacity[];
|
|
240
|
+
order?: import("csstype").Globals[] | import("csstype").Property.Order | import("csstype").Property.Order[];
|
|
241
|
+
orphans?: import("csstype").Globals[] | import("csstype").Property.Orphans | import("csstype").Property.Orphans[];
|
|
242
|
+
outlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[];
|
|
243
|
+
outlineOffset?: string[] | import("csstype").Property.OutlineOffset<string | number> | import("csstype").Property.OutlineOffset<string | number>[];
|
|
244
|
+
outlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[];
|
|
245
|
+
outlineWidth?: string[] | import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[];
|
|
246
|
+
overflowAnchor?: import("csstype").Property.OverflowAnchor | import("csstype").Property.OverflowAnchor[];
|
|
247
|
+
overflowBlock?: import("csstype").Property.OverflowBlock | import("csstype").Property.OverflowBlock[];
|
|
248
|
+
overflowClipBox?: import("csstype").Property.OverflowClipBox | import("csstype").Property.OverflowClipBox[];
|
|
249
|
+
overflowInline?: import("csstype").Property.OverflowInline | import("csstype").Property.OverflowInline[];
|
|
250
|
+
overflowWrap?: import("csstype").Property.OverflowWrap | import("csstype").Property.OverflowWrap[];
|
|
251
|
+
overflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[];
|
|
252
|
+
overflowY?: import("csstype").Property.OverflowY | import("csstype").Property.OverflowY[];
|
|
253
|
+
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | import("csstype").Property.OverscrollBehavior[];
|
|
254
|
+
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | import("csstype").Property.OverscrollBehaviorBlock[];
|
|
255
|
+
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | import("csstype").Property.OverscrollBehaviorInline[];
|
|
256
|
+
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | import("csstype").Property.OverscrollBehaviorX[];
|
|
257
|
+
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | import("csstype").Property.OverscrollBehaviorY[];
|
|
258
|
+
paddingBlock?: (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | import("csstype").Property.PaddingBlock<string | number>[];
|
|
259
|
+
paddingBlockEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | import("csstype").Property.PaddingBlockEnd<string | number>[];
|
|
260
|
+
paddingBlockStart?: (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | import("csstype").Property.PaddingBlockStart<string | number>[];
|
|
261
|
+
paddingBottom?: (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | import("csstype").Property.PaddingBottom<string | number>[];
|
|
262
|
+
paddingInline?: (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | import("csstype").Property.PaddingInline<string | number>[];
|
|
263
|
+
paddingInlineEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | import("csstype").Property.PaddingInlineEnd<string | number>[];
|
|
264
|
+
paddingInlineStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | import("csstype").Property.PaddingInlineStart<string | number>[];
|
|
265
|
+
paddingLeft?: (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | import("csstype").Property.PaddingLeft<string | number>[];
|
|
266
|
+
paddingRight?: (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | import("csstype").Property.PaddingRight<string | number>[];
|
|
267
|
+
paddingTop?: (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | import("csstype").Property.PaddingTop<string | number>[];
|
|
268
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | import("csstype").Property.PageBreakAfter[];
|
|
269
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | import("csstype").Property.PageBreakBefore[];
|
|
270
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | import("csstype").Property.PageBreakInside[];
|
|
271
|
+
paintOrder?: import("csstype").Property.PaintOrder | import("csstype").Property.PaintOrder[];
|
|
272
|
+
perspective?: string[] | import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[];
|
|
273
|
+
perspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | import("csstype").Property.PerspectiveOrigin<string | number>[];
|
|
274
|
+
placeContent?: import("csstype").Property.PlaceContent | import("csstype").Property.PlaceContent[];
|
|
275
|
+
pointerEvents?: import("csstype").Property.PointerEvents | import("csstype").Property.PointerEvents[];
|
|
276
|
+
quotes?: import("csstype").Property.Quotes | import("csstype").Property.Quotes[];
|
|
277
|
+
resize?: import("csstype").Property.Resize | import("csstype").Property.Resize[];
|
|
278
|
+
right?: (string | (string & {}))[] | import("csstype").Property.Right<string | number> | import("csstype").Property.Right<string | number>[];
|
|
279
|
+
rotate?: import("csstype").Property.Rotate | import("csstype").Property.Rotate[];
|
|
280
|
+
rowGap?: (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | import("csstype").Property.RowGap<string | number>[];
|
|
281
|
+
rubyAlign?: import("csstype").Property.RubyAlign | import("csstype").Property.RubyAlign[];
|
|
282
|
+
rubyMerge?: import("csstype").Property.RubyMerge | import("csstype").Property.RubyMerge[];
|
|
283
|
+
rubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[];
|
|
284
|
+
scale?: import("csstype").Property.Scale | import("csstype").Property.Scale[] | ("none" | (string & {}) | import("csstype").Globals)[];
|
|
285
|
+
scrollBehavior?: import("csstype").Property.ScrollBehavior | import("csstype").Property.ScrollBehavior[];
|
|
286
|
+
scrollMargin?: (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | import("csstype").Property.ScrollMargin<string | number>[];
|
|
287
|
+
scrollMarginBlock?: (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | import("csstype").Property.ScrollMarginBlock<string | number>[];
|
|
288
|
+
scrollMarginBlockEnd?: string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | import("csstype").Property.ScrollMarginBlockEnd<string | number>[];
|
|
289
|
+
scrollMarginBlockStart?: string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | import("csstype").Property.ScrollMarginBlockStart<string | number>[];
|
|
290
|
+
scrollMarginBottom?: string[] | import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[];
|
|
291
|
+
scrollMarginInline?: (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | import("csstype").Property.ScrollMarginInline<string | number>[];
|
|
292
|
+
scrollMarginInlineEnd?: string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | import("csstype").Property.ScrollMarginInlineEnd<string | number>[];
|
|
293
|
+
scrollMarginInlineStart?: string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | import("csstype").Property.ScrollMarginInlineStart<string | number>[];
|
|
294
|
+
scrollMarginLeft?: string[] | import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[];
|
|
295
|
+
scrollMarginRight?: string[] | import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[];
|
|
296
|
+
scrollMarginTop?: string[] | import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[];
|
|
297
|
+
scrollPadding?: (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | import("csstype").Property.ScrollPadding<string | number>[];
|
|
298
|
+
scrollPaddingBlock?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | import("csstype").Property.ScrollPaddingBlock<string | number>[];
|
|
299
|
+
scrollPaddingBlockEnd?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | import("csstype").Property.ScrollPaddingBlockEnd<string | number>[];
|
|
300
|
+
scrollPaddingBlockStart?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | import("csstype").Property.ScrollPaddingBlockStart<string | number>[];
|
|
301
|
+
scrollPaddingBottom?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | import("csstype").Property.ScrollPaddingBottom<string | number>[];
|
|
302
|
+
scrollPaddingInline?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | import("csstype").Property.ScrollPaddingInline<string | number>[];
|
|
303
|
+
scrollPaddingInlineEnd?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | import("csstype").Property.ScrollPaddingInlineEnd<string | number>[];
|
|
304
|
+
scrollPaddingInlineStart?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | import("csstype").Property.ScrollPaddingInlineStart<string | number>[];
|
|
305
|
+
scrollPaddingLeft?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | import("csstype").Property.ScrollPaddingLeft<string | number>[];
|
|
306
|
+
scrollPaddingRight?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | import("csstype").Property.ScrollPaddingRight<string | number>[];
|
|
307
|
+
scrollPaddingTop?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | import("csstype").Property.ScrollPaddingTop<string | number>[];
|
|
308
|
+
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | import("csstype").Property.ScrollSnapAlign[];
|
|
309
|
+
scrollSnapMargin?: (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | import("csstype").Property.ScrollMargin<string | number>[];
|
|
310
|
+
scrollSnapMarginBottom?: string[] | import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[];
|
|
311
|
+
scrollSnapMarginLeft?: string[] | import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[];
|
|
312
|
+
scrollSnapMarginRight?: string[] | import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[];
|
|
313
|
+
scrollSnapMarginTop?: string[] | import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[];
|
|
314
|
+
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | import("csstype").Property.ScrollSnapStop[];
|
|
315
|
+
scrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[];
|
|
316
|
+
scrollbarColor?: import("csstype").Property.ScrollbarColor | import("csstype").Property.ScrollbarColor[];
|
|
317
|
+
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | import("csstype").Property.ScrollbarGutter[];
|
|
318
|
+
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | import("csstype").Property.ScrollbarWidth[];
|
|
319
|
+
shapeImageThreshold?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.ShapeImageThreshold | import("csstype").Property.ShapeImageThreshold[];
|
|
320
|
+
shapeMargin?: (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | import("csstype").Property.ShapeMargin<string | number>[];
|
|
321
|
+
shapeOutside?: import("csstype").Property.ShapeOutside | import("csstype").Property.ShapeOutside[];
|
|
322
|
+
tabSize?: string[] | import("csstype").Property.TabSize<string | number> | import("csstype").Property.TabSize<string | number>[];
|
|
323
|
+
tableLayout?: import("csstype").Property.TableLayout | import("csstype").Property.TableLayout[];
|
|
324
|
+
textAlign?: import("csstype").Property.TextAlign | import("csstype").Property.TextAlign[];
|
|
325
|
+
textAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[];
|
|
326
|
+
textCombineUpright?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[];
|
|
327
|
+
textDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[];
|
|
328
|
+
textDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[];
|
|
329
|
+
textDecorationSkip?: import("csstype").Property.TextDecorationSkip | import("csstype").Property.TextDecorationSkip[];
|
|
330
|
+
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | import("csstype").Property.TextDecorationSkipInk[];
|
|
331
|
+
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[];
|
|
332
|
+
textDecorationThickness?: (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | import("csstype").Property.TextDecorationThickness<string | number>[];
|
|
333
|
+
textDecorationWidth?: (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | import("csstype").Property.TextDecorationThickness<string | number>[];
|
|
334
|
+
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | import("csstype").Property.TextEmphasisColor[];
|
|
335
|
+
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | import("csstype").Property.TextEmphasisPosition[];
|
|
336
|
+
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | import("csstype").Property.TextEmphasisStyle[];
|
|
337
|
+
textIndent?: (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | import("csstype").Property.TextIndent<string | number>[];
|
|
338
|
+
textJustify?: import("csstype").Property.TextJustify | import("csstype").Property.TextJustify[];
|
|
339
|
+
textOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[];
|
|
340
|
+
textOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[];
|
|
341
|
+
textRendering?: import("csstype").Property.TextRendering | import("csstype").Property.TextRendering[];
|
|
342
|
+
textShadow?: import("csstype").Property.TextShadow | import("csstype").Property.TextShadow[];
|
|
343
|
+
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[];
|
|
344
|
+
textTransform?: import("csstype").Property.TextTransform | import("csstype").Property.TextTransform[];
|
|
345
|
+
textUnderlineOffset?: (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | import("csstype").Property.TextUnderlineOffset<string | number>[];
|
|
346
|
+
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[];
|
|
347
|
+
top?: (string | (string & {}))[] | import("csstype").Property.Top<string | number> | import("csstype").Property.Top<string | number>[];
|
|
348
|
+
touchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[];
|
|
349
|
+
transform?: import("csstype").Property.Transform | import("csstype").Property.Transform[];
|
|
350
|
+
transformBox?: import("csstype").Property.TransformBox | import("csstype").Property.TransformBox[];
|
|
351
|
+
transformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | import("csstype").Property.TransformOrigin<string | number>[];
|
|
352
|
+
transformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[];
|
|
353
|
+
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[];
|
|
354
|
+
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[];
|
|
355
|
+
transitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[];
|
|
356
|
+
transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[];
|
|
357
|
+
translate?: (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | import("csstype").Property.Translate<string | number>[];
|
|
358
|
+
unicodeBidi?: import("csstype").Property.UnicodeBidi | import("csstype").Property.UnicodeBidi[];
|
|
359
|
+
userSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[];
|
|
360
|
+
verticalAlign?: (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | import("csstype").Property.VerticalAlign<string | number>[];
|
|
361
|
+
visibility?: import("csstype").Property.Visibility | import("csstype").Property.Visibility[];
|
|
362
|
+
whiteSpace?: import("csstype").Property.WhiteSpace | import("csstype").Property.WhiteSpace[];
|
|
363
|
+
widows?: import("csstype").Globals[] | import("csstype").Property.Widows | import("csstype").Property.Widows[];
|
|
364
|
+
width?: (string | (string & {}))[] | import("csstype").Property.Width<string | number> | import("csstype").Property.Width<string | number>[];
|
|
365
|
+
willChange?: import("csstype").Property.WillChange | import("csstype").Property.WillChange[];
|
|
366
|
+
wordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[];
|
|
367
|
+
wordSpacing?: (string | (string & {}))[] | import("csstype").Property.WordSpacing<string | number> | import("csstype").Property.WordSpacing<string | number>[];
|
|
368
|
+
wordWrap?: import("csstype").Property.WordWrap | import("csstype").Property.WordWrap[];
|
|
369
|
+
writingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[];
|
|
370
|
+
zIndex?: (import("csstype").Globals | "auto")[] | import("csstype").Property.ZIndex | import("csstype").Property.ZIndex[];
|
|
371
|
+
zoom?: import("csstype").Property.Zoom | import("csstype").Property.Zoom[] | ((string & {}) | import("csstype").Globals | "normal" | "reset")[];
|
|
372
|
+
all?: import("csstype").Globals | import("csstype").Globals[];
|
|
373
|
+
animation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | (import("csstype").Globals | ("normal" | "alternate" | "alternate-reverse" | "reverse") | ("none" | "both" | "backwards" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[];
|
|
374
|
+
background?: (string | (string & {}))[] | import("csstype").Property.Background<string | number> | import("csstype").Property.Background<string | number>[];
|
|
375
|
+
border?: import("csstype").Property.Border<string | number> | import("csstype").Property.Border<string | number>[] | (string | (string & {}))[];
|
|
376
|
+
borderBlock?: (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | import("csstype").Property.BorderBlock<string | number>[];
|
|
377
|
+
borderBlockEnd?: (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | import("csstype").Property.BorderBlockEnd<string | number>[];
|
|
378
|
+
borderBlockStart?: (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | import("csstype").Property.BorderBlockStart<string | number>[];
|
|
379
|
+
borderBottom?: (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | import("csstype").Property.BorderBottom<string | number>[];
|
|
380
|
+
borderColor?: import("csstype").Property.BorderColor | import("csstype").Property.BorderColor[];
|
|
381
|
+
borderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | ("repeat" | "none" | (string & {}) | import("csstype").Globals | "stretch" | "round" | "space")[];
|
|
382
|
+
borderInline?: (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | import("csstype").Property.BorderInline<string | number>[];
|
|
383
|
+
borderInlineEnd?: (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | import("csstype").Property.BorderInlineEnd<string | number>[];
|
|
384
|
+
borderInlineStart?: (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | import("csstype").Property.BorderInlineStart<string | number>[];
|
|
385
|
+
borderLeft?: (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | import("csstype").Property.BorderLeft<string | number>[];
|
|
386
|
+
borderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | import("csstype").Property.BorderRadius<string | number>[];
|
|
387
|
+
borderRight?: (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | import("csstype").Property.BorderRight<string | number>[];
|
|
388
|
+
borderStyle?: import("csstype").Property.BorderStyle | import("csstype").Property.BorderStyle[];
|
|
389
|
+
borderTop?: (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | import("csstype").Property.BorderTop<string | number>[];
|
|
390
|
+
borderWidth?: (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | import("csstype").Property.BorderWidth<string | number>[];
|
|
391
|
+
columnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | import("csstype").Property.ColumnRule<string | number>[];
|
|
392
|
+
columns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | import("csstype").Property.Columns<string | number>[];
|
|
393
|
+
flex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | import("csstype").Property.Flex<string | number>[];
|
|
394
|
+
flexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[];
|
|
395
|
+
font?: import("csstype").Property.Font | import("csstype").Property.Font[];
|
|
396
|
+
gap?: (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | import("csstype").Property.Gap<string | number>[];
|
|
397
|
+
grid?: import("csstype").Property.Grid | import("csstype").Property.Grid[];
|
|
398
|
+
gridArea?: ((string & {}) | import("csstype").Globals | "auto")[] | import("csstype").Property.GridArea | import("csstype").Property.GridArea[];
|
|
399
|
+
gridColumn?: ((string & {}) | import("csstype").Globals | "auto")[] | import("csstype").Property.GridColumn | import("csstype").Property.GridColumn[];
|
|
400
|
+
gridRow?: ((string & {}) | import("csstype").Globals | "auto")[] | import("csstype").Property.GridRow | import("csstype").Property.GridRow[];
|
|
401
|
+
gridTemplate?: import("csstype").Property.GridTemplate | import("csstype").Property.GridTemplate[];
|
|
402
|
+
lineClamp?: ("none" | import("csstype").Globals)[] | import("csstype").Property.LineClamp | import("csstype").Property.LineClamp[];
|
|
403
|
+
listStyle?: import("csstype").Property.ListStyle | import("csstype").Property.ListStyle[];
|
|
404
|
+
margin?: (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | import("csstype").Property.Margin<string | number>[];
|
|
405
|
+
mask?: (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | import("csstype").Property.Mask<string | number>[];
|
|
406
|
+
maskBorder?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | ("repeat" | "none" | (string & {}) | import("csstype").Globals | "stretch" | "round" | "space" | "alpha" | "luminance")[];
|
|
407
|
+
motion?: (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | import("csstype").Property.Offset<string | number>[];
|
|
408
|
+
offset?: (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | import("csstype").Property.Offset<string | number>[];
|
|
409
|
+
outline?: (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | import("csstype").Property.Outline<string | number>[];
|
|
410
|
+
overflow?: import("csstype").Property.Overflow | import("csstype").Property.Overflow[];
|
|
411
|
+
placeItems?: import("csstype").Property.PlaceItems | import("csstype").Property.PlaceItems[];
|
|
412
|
+
placeSelf?: import("csstype").Property.PlaceSelf | import("csstype").Property.PlaceSelf[];
|
|
413
|
+
textDecoration?: (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | import("csstype").Property.TextDecoration<string | number>[];
|
|
414
|
+
textEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[];
|
|
415
|
+
transition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[];
|
|
416
|
+
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[];
|
|
417
|
+
MozAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[];
|
|
418
|
+
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[];
|
|
419
|
+
MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[];
|
|
420
|
+
MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | ((string & {}) | import("csstype").Globals | "infinite")[];
|
|
421
|
+
MozAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[];
|
|
422
|
+
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[];
|
|
423
|
+
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[];
|
|
424
|
+
MozAppearance?: import("csstype").Property.MozAppearance | import("csstype").Property.MozAppearance[];
|
|
425
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[];
|
|
426
|
+
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | import("csstype").Property.MozBorderBottomColors[];
|
|
427
|
+
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[];
|
|
428
|
+
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[];
|
|
429
|
+
MozBorderEndWidth?: string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[];
|
|
430
|
+
MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | import("csstype").Property.MozBorderLeftColors[];
|
|
431
|
+
MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | import("csstype").Property.MozBorderRightColors[];
|
|
432
|
+
MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[];
|
|
433
|
+
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[];
|
|
434
|
+
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | import("csstype").Property.MozBorderTopColors[];
|
|
435
|
+
MozBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[];
|
|
436
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | (import("csstype").Globals | "auto")[];
|
|
437
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[];
|
|
438
|
+
MozColumnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | import("csstype").Property.ColumnGap<string | number>[];
|
|
439
|
+
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[];
|
|
440
|
+
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[];
|
|
441
|
+
MozColumnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | import("csstype").Property.ColumnRuleWidth<string | number>[];
|
|
442
|
+
MozColumnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[];
|
|
443
|
+
MozContextProperties?: import("csstype").Property.MozContextProperties | import("csstype").Property.MozContextProperties[];
|
|
444
|
+
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[];
|
|
445
|
+
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[];
|
|
446
|
+
MozHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[];
|
|
447
|
+
MozImageRegion?: import("csstype").Property.MozImageRegion | import("csstype").Property.MozImageRegion[];
|
|
448
|
+
MozMarginEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | import("csstype").Property.MarginInlineEnd<string | number>[];
|
|
449
|
+
MozMarginStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | import("csstype").Property.MarginInlineStart<string | number>[];
|
|
450
|
+
MozOrient?: import("csstype").Property.MozOrient | import("csstype").Property.MozOrient[];
|
|
451
|
+
MozOsxFontSmoothing?: string[] | import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[];
|
|
452
|
+
MozPaddingEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | import("csstype").Property.PaddingInlineEnd<string | number>[];
|
|
453
|
+
MozPaddingStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | import("csstype").Property.PaddingInlineStart<string | number>[];
|
|
454
|
+
MozPerspective?: string[] | import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[];
|
|
455
|
+
MozPerspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | import("csstype").Property.PerspectiveOrigin<string | number>[];
|
|
456
|
+
MozStackSizing?: import("csstype").Property.MozStackSizing | import("csstype").Property.MozStackSizing[];
|
|
457
|
+
MozTabSize?: string[] | import("csstype").Property.TabSize<string | number> | import("csstype").Property.TabSize<string | number>[];
|
|
458
|
+
MozTextBlink?: import("csstype").Property.MozTextBlink | import("csstype").Property.MozTextBlink[];
|
|
459
|
+
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[];
|
|
460
|
+
MozTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | import("csstype").Property.TransformOrigin<string | number>[];
|
|
461
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[];
|
|
462
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[];
|
|
463
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[];
|
|
464
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[];
|
|
465
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[];
|
|
466
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | import("csstype").Property.MozUserFocus[];
|
|
467
|
+
MozUserModify?: import("csstype").Property.MozUserModify | import("csstype").Property.MozUserModify[];
|
|
468
|
+
MozUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[];
|
|
469
|
+
MozWindowDragging?: import("csstype").Property.MozWindowDragging | import("csstype").Property.MozWindowDragging[];
|
|
470
|
+
MozWindowShadow?: import("csstype").Property.MozWindowShadow | import("csstype").Property.MozWindowShadow[];
|
|
471
|
+
msAccelerator?: import("csstype").Property.MsAccelerator | import("csstype").Property.MsAccelerator[];
|
|
472
|
+
msAlignSelf?: import("csstype").Property.AlignSelf | import("csstype").Property.AlignSelf[];
|
|
473
|
+
msBlockProgression?: import("csstype").Property.MsBlockProgression | import("csstype").Property.MsBlockProgression[];
|
|
474
|
+
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | import("csstype").Property.MsContentZoomChaining[];
|
|
475
|
+
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | import("csstype").Property.MsContentZoomLimitMax[];
|
|
476
|
+
msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | import("csstype").Property.MsContentZoomLimitMin[];
|
|
477
|
+
msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | import("csstype").Property.MsContentZoomSnapPoints[];
|
|
478
|
+
msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | import("csstype").Property.MsContentZoomSnapType[];
|
|
479
|
+
msContentZooming?: import("csstype").Property.MsContentZooming | import("csstype").Property.MsContentZooming[];
|
|
480
|
+
msFilter?: import("csstype").Property.MsFilter | import("csstype").Property.MsFilter[];
|
|
481
|
+
msFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[];
|
|
482
|
+
msFlexPositive?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | import("csstype").Globals[];
|
|
483
|
+
msFlowFrom?: import("csstype").Property.MsFlowFrom | import("csstype").Property.MsFlowFrom[];
|
|
484
|
+
msFlowInto?: import("csstype").Property.MsFlowInto | import("csstype").Property.MsFlowInto[];
|
|
485
|
+
msGridColumns?: (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | import("csstype").Property.MsGridColumns<string | number>[];
|
|
486
|
+
msGridRows?: (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | import("csstype").Property.MsGridRows<string | number>[];
|
|
487
|
+
msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | import("csstype").Property.MsHighContrastAdjust[];
|
|
488
|
+
msHyphenateLimitChars?: ((string & {}) | import("csstype").Globals | "auto")[] | import("csstype").Property.MsHyphenateLimitChars | import("csstype").Property.MsHyphenateLimitChars[];
|
|
489
|
+
msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | import("csstype").Property.MsHyphenateLimitLines[] | (import("csstype").Globals | "no-limit")[];
|
|
490
|
+
msHyphenateLimitZone?: (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | import("csstype").Property.MsHyphenateLimitZone<string | number>[];
|
|
491
|
+
msHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[];
|
|
492
|
+
msImeAlign?: import("csstype").Property.MsImeAlign | import("csstype").Property.MsImeAlign[];
|
|
493
|
+
msJustifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[];
|
|
494
|
+
msLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[];
|
|
495
|
+
msOrder?: import("csstype").Globals[] | import("csstype").Property.Order | import("csstype").Property.Order[];
|
|
496
|
+
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | import("csstype").Property.MsOverflowStyle[];
|
|
497
|
+
msOverflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[];
|
|
498
|
+
msOverflowY?: import("csstype").Property.OverflowY | import("csstype").Property.OverflowY[];
|
|
499
|
+
msScrollChaining?: import("csstype").Property.MsScrollChaining | import("csstype").Property.MsScrollChaining[];
|
|
500
|
+
msScrollLimitXMax?: string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | import("csstype").Property.MsScrollLimitXMax<string | number>[];
|
|
501
|
+
msScrollLimitXMin?: string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | import("csstype").Property.MsScrollLimitXMin<string | number>[];
|
|
502
|
+
msScrollLimitYMax?: string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | import("csstype").Property.MsScrollLimitYMax<string | number>[];
|
|
503
|
+
msScrollLimitYMin?: string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | import("csstype").Property.MsScrollLimitYMin<string | number>[];
|
|
504
|
+
msScrollRails?: import("csstype").Property.MsScrollRails | import("csstype").Property.MsScrollRails[];
|
|
505
|
+
msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | import("csstype").Property.MsScrollSnapPointsX[];
|
|
506
|
+
msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | import("csstype").Property.MsScrollSnapPointsY[];
|
|
507
|
+
msScrollSnapType?: import("csstype").Property.MsScrollSnapType | import("csstype").Property.MsScrollSnapType[];
|
|
508
|
+
msScrollTranslation?: import("csstype").Property.MsScrollTranslation | import("csstype").Property.MsScrollTranslation[];
|
|
509
|
+
msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | import("csstype").Property.MsScrollbar3dlightColor[];
|
|
510
|
+
msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | import("csstype").Property.MsScrollbarArrowColor[];
|
|
511
|
+
msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | import("csstype").Property.MsScrollbarBaseColor[];
|
|
512
|
+
msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | import("csstype").Property.MsScrollbarDarkshadowColor[];
|
|
513
|
+
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | import("csstype").Property.MsScrollbarFaceColor[];
|
|
514
|
+
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | import("csstype").Property.MsScrollbarHighlightColor[];
|
|
515
|
+
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | import("csstype").Property.MsScrollbarShadowColor[];
|
|
516
|
+
msTextAutospace?: import("csstype").Property.MsTextAutospace | import("csstype").Property.MsTextAutospace[];
|
|
517
|
+
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[];
|
|
518
|
+
msTextOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[];
|
|
519
|
+
msTouchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[];
|
|
520
|
+
msTouchSelect?: import("csstype").Property.MsTouchSelect | import("csstype").Property.MsTouchSelect[];
|
|
521
|
+
msTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[];
|
|
522
|
+
msTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | import("csstype").Property.TransformOrigin<string | number>[];
|
|
523
|
+
msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[];
|
|
524
|
+
msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[];
|
|
525
|
+
msTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[];
|
|
526
|
+
msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[];
|
|
527
|
+
msUserSelect?: import("csstype").Property.MsUserSelect | import("csstype").Property.MsUserSelect[];
|
|
528
|
+
msWordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[];
|
|
529
|
+
msWrapFlow?: import("csstype").Property.MsWrapFlow | import("csstype").Property.MsWrapFlow[];
|
|
530
|
+
msWrapMargin?: string[] | import("csstype").Property.MsWrapMargin<string | number> | import("csstype").Property.MsWrapMargin<string | number>[];
|
|
531
|
+
msWrapThrough?: import("csstype").Property.MsWrapThrough | import("csstype").Property.MsWrapThrough[];
|
|
532
|
+
msWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[];
|
|
533
|
+
OObjectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[];
|
|
534
|
+
OObjectPosition?: (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | import("csstype").Property.ObjectPosition<string | number>[];
|
|
535
|
+
OTabSize?: string[] | import("csstype").Property.TabSize<string | number> | import("csstype").Property.TabSize<string | number>[];
|
|
536
|
+
OTextOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[];
|
|
537
|
+
OTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | import("csstype").Property.TransformOrigin<string | number>[];
|
|
538
|
+
WebkitAlignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[];
|
|
539
|
+
WebkitAlignItems?: import("csstype").Property.AlignItems | import("csstype").Property.AlignItems[];
|
|
540
|
+
WebkitAlignSelf?: import("csstype").Property.AlignSelf | import("csstype").Property.AlignSelf[];
|
|
541
|
+
WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[];
|
|
542
|
+
WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[];
|
|
543
|
+
WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[];
|
|
544
|
+
WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[];
|
|
545
|
+
WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | ((string & {}) | import("csstype").Globals | "infinite")[];
|
|
546
|
+
WebkitAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[];
|
|
547
|
+
WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[];
|
|
548
|
+
WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[];
|
|
549
|
+
WebkitAppearance?: import("csstype").Property.WebkitAppearance | import("csstype").Property.WebkitAppearance[];
|
|
550
|
+
WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | import("csstype").Property.BackdropFilter[];
|
|
551
|
+
WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[];
|
|
552
|
+
WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[];
|
|
553
|
+
WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[];
|
|
554
|
+
WebkitBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | import("csstype").Property.BackgroundSize<string | number>[];
|
|
555
|
+
WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | import("csstype").Property.WebkitBorderBeforeColor[];
|
|
556
|
+
WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | import("csstype").Property.WebkitBorderBeforeStyle[];
|
|
557
|
+
WebkitBorderBeforeWidth?: (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | import("csstype").Property.WebkitBorderBeforeWidth<string | number>[];
|
|
558
|
+
WebkitBorderBottomLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | import("csstype").Property.BorderBottomLeftRadius<string | number>[];
|
|
559
|
+
WebkitBorderBottomRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | import("csstype").Property.BorderBottomRightRadius<string | number>[];
|
|
560
|
+
WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | ((string & {}) | import("csstype").Globals)[];
|
|
561
|
+
WebkitBorderTopLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | import("csstype").Property.BorderTopLeftRadius<string | number>[];
|
|
562
|
+
WebkitBorderTopRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | import("csstype").Property.BorderTopRightRadius<string | number>[];
|
|
563
|
+
WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[];
|
|
564
|
+
WebkitBoxReflect?: (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | import("csstype").Property.WebkitBoxReflect<string | number>[];
|
|
565
|
+
WebkitBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[];
|
|
566
|
+
WebkitBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[];
|
|
567
|
+
WebkitClipPath?: import("csstype").Property.ClipPath | import("csstype").Property.ClipPath[];
|
|
568
|
+
WebkitColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | (import("csstype").Globals | "auto")[];
|
|
569
|
+
WebkitColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[];
|
|
570
|
+
WebkitColumnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | import("csstype").Property.ColumnGap<string | number>[];
|
|
571
|
+
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[];
|
|
572
|
+
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[];
|
|
573
|
+
WebkitColumnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | import("csstype").Property.ColumnRuleWidth<string | number>[];
|
|
574
|
+
WebkitColumnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[];
|
|
575
|
+
WebkitColumnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[];
|
|
576
|
+
WebkitFilter?: import("csstype").Property.Filter | import("csstype").Property.Filter[];
|
|
577
|
+
WebkitFlexBasis?: (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | import("csstype").Property.FlexBasis<string | number>[];
|
|
578
|
+
WebkitFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[];
|
|
579
|
+
WebkitFlexGrow?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | import("csstype").Globals[];
|
|
580
|
+
WebkitFlexShrink?: import("csstype").Globals[] | import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[];
|
|
581
|
+
WebkitFlexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[];
|
|
582
|
+
WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[];
|
|
583
|
+
WebkitFontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[];
|
|
584
|
+
WebkitFontSmoothing?: string[] | import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[];
|
|
585
|
+
WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | import("csstype").Property.FontVariantLigatures[];
|
|
586
|
+
WebkitHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[];
|
|
587
|
+
WebkitJustifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[];
|
|
588
|
+
WebkitLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[];
|
|
589
|
+
WebkitLineClamp?: ("none" | import("csstype").Globals)[] | import("csstype").Property.WebkitLineClamp | import("csstype").Property.WebkitLineClamp[];
|
|
590
|
+
WebkitMarginEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | import("csstype").Property.MarginInlineEnd<string | number>[];
|
|
591
|
+
WebkitMarginStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | import("csstype").Property.MarginInlineStart<string | number>[];
|
|
592
|
+
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | import("csstype").Property.WebkitMaskAttachment[];
|
|
593
|
+
WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | import("csstype").Property.WebkitMaskClip[];
|
|
594
|
+
WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | import("csstype").Property.WebkitMaskComposite[];
|
|
595
|
+
WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | import("csstype").Property.WebkitMaskImage[];
|
|
596
|
+
WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | import("csstype").Property.WebkitMaskOrigin[];
|
|
597
|
+
WebkitMaskPosition?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | import("csstype").Property.WebkitMaskPosition<string | number>[];
|
|
598
|
+
WebkitMaskPositionX?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | import("csstype").Property.WebkitMaskPositionX<string | number>[];
|
|
599
|
+
WebkitMaskPositionY?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | import("csstype").Property.WebkitMaskPositionY<string | number>[];
|
|
600
|
+
WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | import("csstype").Property.WebkitMaskRepeat[];
|
|
601
|
+
WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | import("csstype").Property.WebkitMaskRepeatX[];
|
|
602
|
+
WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | import("csstype").Property.WebkitMaskRepeatY[];
|
|
603
|
+
WebkitMaskSize?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | import("csstype").Property.WebkitMaskSize<string | number>[];
|
|
604
|
+
WebkitMaxInlineSize?: (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | import("csstype").Property.MaxInlineSize<string | number>[];
|
|
605
|
+
WebkitOrder?: import("csstype").Globals[] | import("csstype").Property.Order | import("csstype").Property.Order[];
|
|
606
|
+
WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | import("csstype").Property.WebkitOverflowScrolling[];
|
|
607
|
+
WebkitPaddingEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | import("csstype").Property.PaddingInlineEnd<string | number>[];
|
|
608
|
+
WebkitPaddingStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | import("csstype").Property.PaddingInlineStart<string | number>[];
|
|
609
|
+
WebkitPerspective?: string[] | import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[];
|
|
610
|
+
WebkitPerspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | import("csstype").Property.PerspectiveOrigin<string | number>[];
|
|
611
|
+
WebkitPrintColorAdjust?: import("csstype").Property.ColorAdjust | import("csstype").Property.ColorAdjust[];
|
|
612
|
+
WebkitRubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[];
|
|
613
|
+
WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[];
|
|
614
|
+
WebkitShapeMargin?: (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | import("csstype").Property.ShapeMargin<string | number>[];
|
|
615
|
+
WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | import("csstype").Property.WebkitTapHighlightColor[];
|
|
616
|
+
WebkitTextCombine?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[];
|
|
617
|
+
WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[];
|
|
618
|
+
WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[];
|
|
619
|
+
WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | import("csstype").Property.TextDecorationSkip[];
|
|
620
|
+
WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[];
|
|
621
|
+
WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | import("csstype").Property.TextEmphasisColor[];
|
|
622
|
+
WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | import("csstype").Property.TextEmphasisPosition[];
|
|
623
|
+
WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | import("csstype").Property.TextEmphasisStyle[];
|
|
624
|
+
WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | import("csstype").Property.WebkitTextFillColor[];
|
|
625
|
+
WebkitTextOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[];
|
|
626
|
+
WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[];
|
|
627
|
+
WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | import("csstype").Property.WebkitTextStrokeColor[];
|
|
628
|
+
WebkitTextStrokeWidth?: string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | import("csstype").Property.WebkitTextStrokeWidth<string | number>[];
|
|
629
|
+
WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[];
|
|
630
|
+
WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | import("csstype").Property.WebkitTouchCallout[];
|
|
631
|
+
WebkitTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[];
|
|
632
|
+
WebkitTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | import("csstype").Property.TransformOrigin<string | number>[];
|
|
633
|
+
WebkitTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[];
|
|
634
|
+
WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[];
|
|
635
|
+
WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[];
|
|
636
|
+
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[];
|
|
637
|
+
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[];
|
|
638
|
+
WebkitUserModify?: import("csstype").Property.WebkitUserModify | import("csstype").Property.WebkitUserModify[];
|
|
639
|
+
WebkitUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[];
|
|
640
|
+
WebkitWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[];
|
|
641
|
+
MozAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | (import("csstype").Globals | ("normal" | "alternate" | "alternate-reverse" | "reverse") | ("none" | "both" | "backwards" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[];
|
|
642
|
+
MozBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | ("repeat" | "none" | (string & {}) | import("csstype").Globals | "stretch" | "round" | "space")[];
|
|
643
|
+
MozColumnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | import("csstype").Property.ColumnRule<string | number>[];
|
|
644
|
+
MozColumns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | import("csstype").Property.Columns<string | number>[];
|
|
645
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[];
|
|
646
|
+
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | import("csstype").Property.MsContentZoomLimit[];
|
|
647
|
+
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | import("csstype").Property.MsContentZoomSnap[];
|
|
648
|
+
msFlex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | import("csstype").Property.Flex<string | number>[];
|
|
649
|
+
msScrollLimit?: import("csstype").Property.MsScrollLimit | import("csstype").Property.MsScrollLimit[];
|
|
650
|
+
msScrollSnapX?: import("csstype").Property.MsScrollSnapX | import("csstype").Property.MsScrollSnapX[];
|
|
651
|
+
msScrollSnapY?: import("csstype").Property.MsScrollSnapY | import("csstype").Property.MsScrollSnapY[];
|
|
652
|
+
msTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[];
|
|
653
|
+
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | (import("csstype").Globals | ("normal" | "alternate" | "alternate-reverse" | "reverse") | ("none" | "both" | "backwards" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[];
|
|
654
|
+
WebkitBorderBefore?: (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | import("csstype").Property.WebkitBorderBefore<string | number>[];
|
|
655
|
+
WebkitBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | ("repeat" | "none" | (string & {}) | import("csstype").Globals | "stretch" | "round" | "space")[];
|
|
656
|
+
WebkitBorderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | import("csstype").Property.BorderRadius<string | number>[];
|
|
657
|
+
WebkitColumnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | import("csstype").Property.ColumnRule<string | number>[];
|
|
658
|
+
WebkitColumns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | import("csstype").Property.Columns<string | number>[];
|
|
659
|
+
WebkitFlex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | import("csstype").Property.Flex<string | number>[];
|
|
660
|
+
WebkitFlexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[];
|
|
661
|
+
WebkitMask?: (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | import("csstype").Property.WebkitMask<string | number>[];
|
|
662
|
+
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[];
|
|
663
|
+
WebkitTextStroke?: (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | import("csstype").Property.WebkitTextStroke<string | number>[];
|
|
664
|
+
WebkitTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[];
|
|
665
|
+
azimuth?: import("csstype").Property.Azimuth | import("csstype").Property.Azimuth[];
|
|
666
|
+
boxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[];
|
|
667
|
+
boxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[];
|
|
668
|
+
boxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[];
|
|
669
|
+
boxFlexGroup?: import("csstype").Globals[] | import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[];
|
|
670
|
+
boxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[];
|
|
671
|
+
boxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[];
|
|
672
|
+
boxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[];
|
|
673
|
+
boxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[];
|
|
674
|
+
clip?: import("csstype").Property.Clip | import("csstype").Property.Clip[];
|
|
675
|
+
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | import("csstype").Property.FontVariantAlternates[];
|
|
676
|
+
gridColumnGap?: (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | import("csstype").Property.GridColumnGap<string | number>[];
|
|
677
|
+
gridGap?: (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | import("csstype").Property.GridGap<string | number>[];
|
|
678
|
+
gridRowGap?: (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | import("csstype").Property.GridRowGap<string | number>[];
|
|
679
|
+
imeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[];
|
|
680
|
+
offsetBlock?: (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | import("csstype").Property.InsetBlock<string | number>[];
|
|
681
|
+
offsetBlockEnd?: (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | import("csstype").Property.InsetBlockEnd<string | number>[];
|
|
682
|
+
offsetBlockStart?: (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | import("csstype").Property.InsetBlockStart<string | number>[];
|
|
683
|
+
offsetInline?: (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | import("csstype").Property.InsetInline<string | number>[];
|
|
684
|
+
offsetInlineEnd?: (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | import("csstype").Property.InsetInlineEnd<string | number>[];
|
|
685
|
+
offsetInlineStart?: (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | import("csstype").Property.InsetInlineStart<string | number>[];
|
|
686
|
+
scrollSnapCoordinate?: (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | import("csstype").Property.ScrollSnapCoordinate<string | number>[];
|
|
687
|
+
scrollSnapDestination?: (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | import("csstype").Property.ScrollSnapDestination<string | number>[];
|
|
688
|
+
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[];
|
|
689
|
+
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[];
|
|
690
|
+
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | import("csstype").Property.ScrollSnapTypeX[];
|
|
691
|
+
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | import("csstype").Property.ScrollSnapTypeY[];
|
|
692
|
+
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[];
|
|
693
|
+
textCombineHorizontal?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[];
|
|
694
|
+
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[];
|
|
695
|
+
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[];
|
|
696
|
+
KhtmlBoxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[];
|
|
697
|
+
KhtmlBoxFlexGroup?: import("csstype").Globals[] | import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[];
|
|
698
|
+
KhtmlBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[];
|
|
699
|
+
KhtmlBoxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[];
|
|
700
|
+
KhtmlBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[];
|
|
701
|
+
KhtmlBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[];
|
|
702
|
+
KhtmlLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[];
|
|
703
|
+
KhtmlOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | import("csstype").Property.Opacity[];
|
|
704
|
+
KhtmlUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[];
|
|
705
|
+
MozBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[];
|
|
706
|
+
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[];
|
|
707
|
+
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[];
|
|
708
|
+
MozBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | import("csstype").Property.BackgroundSize<string | number>[];
|
|
709
|
+
MozBinding?: import("csstype").Property.MozBinding | import("csstype").Property.MozBinding[];
|
|
710
|
+
MozBorderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | import("csstype").Property.BorderRadius<string | number>[];
|
|
711
|
+
MozBorderRadiusBottomleft?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | import("csstype").Property.BorderBottomLeftRadius<string | number>[];
|
|
712
|
+
MozBorderRadiusBottomright?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | import("csstype").Property.BorderBottomRightRadius<string | number>[];
|
|
713
|
+
MozBorderRadiusTopleft?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | import("csstype").Property.BorderTopLeftRadius<string | number>[];
|
|
714
|
+
MozBorderRadiusTopright?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | import("csstype").Property.BorderTopRightRadius<string | number>[];
|
|
715
|
+
MozBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[];
|
|
716
|
+
MozBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[];
|
|
717
|
+
MozBoxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[];
|
|
718
|
+
MozBoxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[];
|
|
719
|
+
MozBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[];
|
|
720
|
+
MozBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[];
|
|
721
|
+
MozBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[];
|
|
722
|
+
MozFloatEdge?: import("csstype").Property.MozFloatEdge | import("csstype").Property.MozFloatEdge[];
|
|
723
|
+
MozForceBrokenImageIcon?: import("csstype").Globals[] | import("csstype").Property.MozForceBrokenImageIcon | import("csstype").Property.MozForceBrokenImageIcon[];
|
|
724
|
+
MozOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | import("csstype").Property.Opacity[];
|
|
725
|
+
MozOutline?: (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | import("csstype").Property.Outline<string | number>[];
|
|
726
|
+
MozOutlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[];
|
|
727
|
+
MozOutlineRadius?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | import("csstype").Property.MozOutlineRadius<string | number>[];
|
|
728
|
+
MozOutlineRadiusBottomleft?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | import("csstype").Property.MozOutlineRadiusBottomleft<string | number>[];
|
|
729
|
+
MozOutlineRadiusBottomright?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | import("csstype").Property.MozOutlineRadiusBottomright<string | number>[];
|
|
730
|
+
MozOutlineRadiusTopleft?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | import("csstype").Property.MozOutlineRadiusTopleft<string | number>[];
|
|
731
|
+
MozOutlineRadiusTopright?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | import("csstype").Property.MozOutlineRadiusTopright<string | number>[];
|
|
732
|
+
MozOutlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[];
|
|
733
|
+
MozOutlineWidth?: string[] | import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[];
|
|
734
|
+
MozTextAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[];
|
|
735
|
+
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[];
|
|
736
|
+
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[];
|
|
737
|
+
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[];
|
|
738
|
+
MozUserInput?: import("csstype").Property.MozUserInput | import("csstype").Property.MozUserInput[];
|
|
739
|
+
msImeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[];
|
|
740
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[];
|
|
741
|
+
OAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | (import("csstype").Globals | ("normal" | "alternate" | "alternate-reverse" | "reverse") | ("none" | "both" | "backwards" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[];
|
|
742
|
+
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[];
|
|
743
|
+
OAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[];
|
|
744
|
+
OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[];
|
|
745
|
+
OAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[];
|
|
746
|
+
OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | ((string & {}) | import("csstype").Globals | "infinite")[];
|
|
747
|
+
OAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[];
|
|
748
|
+
OAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[];
|
|
749
|
+
OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[];
|
|
750
|
+
OBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | import("csstype").Property.BackgroundSize<string | number>[];
|
|
751
|
+
OBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | ("repeat" | "none" | (string & {}) | import("csstype").Globals | "stretch" | "round" | "space")[];
|
|
752
|
+
OTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[];
|
|
753
|
+
OTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[];
|
|
754
|
+
OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[];
|
|
755
|
+
OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[];
|
|
756
|
+
OTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[];
|
|
757
|
+
OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[];
|
|
758
|
+
WebkitBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[];
|
|
759
|
+
WebkitBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[];
|
|
760
|
+
WebkitBoxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[];
|
|
761
|
+
WebkitBoxFlexGroup?: import("csstype").Globals[] | import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[];
|
|
762
|
+
WebkitBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[];
|
|
763
|
+
WebkitBoxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[];
|
|
764
|
+
WebkitBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[];
|
|
765
|
+
WebkitBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[];
|
|
766
|
+
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[];
|
|
767
|
+
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[];
|
|
768
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | import("csstype").Property.AlignmentBaseline[];
|
|
769
|
+
baselineShift?: (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | import("csstype").Property.BaselineShift<string | number>[];
|
|
770
|
+
clipRule?: import("csstype").Property.ClipRule | import("csstype").Property.ClipRule[];
|
|
771
|
+
colorInterpolation?: import("csstype").Property.ColorInterpolation | import("csstype").Property.ColorInterpolation[];
|
|
772
|
+
colorRendering?: import("csstype").Property.ColorRendering | import("csstype").Property.ColorRendering[];
|
|
773
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | import("csstype").Property.DominantBaseline[];
|
|
774
|
+
fill?: import("csstype").Property.Fill | import("csstype").Property.Fill[];
|
|
775
|
+
fillOpacity?: import("csstype").Globals[] | import("csstype").Property.FillOpacity | import("csstype").Property.FillOpacity[];
|
|
776
|
+
fillRule?: import("csstype").Property.FillRule | import("csstype").Property.FillRule[];
|
|
777
|
+
floodColor?: import("csstype").Property.FloodColor | import("csstype").Property.FloodColor[];
|
|
778
|
+
floodOpacity?: import("csstype").Globals[] | import("csstype").Property.FloodOpacity | import("csstype").Property.FloodOpacity[];
|
|
779
|
+
glyphOrientationVertical?: ((string & {}) | import("csstype").Globals | "auto")[] | import("csstype").Property.GlyphOrientationVertical | import("csstype").Property.GlyphOrientationVertical[];
|
|
780
|
+
lightingColor?: import("csstype").Property.LightingColor | import("csstype").Property.LightingColor[];
|
|
781
|
+
marker?: import("csstype").Property.Marker | import("csstype").Property.Marker[];
|
|
782
|
+
markerEnd?: import("csstype").Property.MarkerEnd | import("csstype").Property.MarkerEnd[];
|
|
783
|
+
markerMid?: import("csstype").Property.MarkerMid | import("csstype").Property.MarkerMid[];
|
|
784
|
+
markerStart?: import("csstype").Property.MarkerStart | import("csstype").Property.MarkerStart[];
|
|
785
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | import("csstype").Property.ShapeRendering[];
|
|
786
|
+
stopColor?: import("csstype").Property.StopColor | import("csstype").Property.StopColor[];
|
|
787
|
+
stopOpacity?: import("csstype").Globals[] | import("csstype").Property.StopOpacity | import("csstype").Property.StopOpacity[];
|
|
788
|
+
stroke?: import("csstype").Property.Stroke | import("csstype").Property.Stroke[];
|
|
789
|
+
strokeDasharray?: (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | import("csstype").Property.StrokeDasharray<string | number>[];
|
|
790
|
+
strokeDashoffset?: (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | import("csstype").Property.StrokeDashoffset<string | number>[];
|
|
791
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | import("csstype").Property.StrokeLinecap[];
|
|
792
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | import("csstype").Property.StrokeLinejoin[];
|
|
793
|
+
strokeMiterlimit?: import("csstype").Globals[] | import("csstype").Property.StrokeMiterlimit | import("csstype").Property.StrokeMiterlimit[];
|
|
794
|
+
strokeOpacity?: import("csstype").Globals[] | import("csstype").Property.StrokeOpacity | import("csstype").Property.StrokeOpacity[];
|
|
795
|
+
strokeWidth?: (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | import("csstype").Property.StrokeWidth<string | number>[];
|
|
796
|
+
textAnchor?: import("csstype").Property.TextAnchor | import("csstype").Property.TextAnchor[];
|
|
797
|
+
vectorEffect?: import("csstype").Property.VectorEffect | import("csstype").Property.VectorEffect[];
|
|
798
|
+
":-moz-any()"?: import("@emotion/serialize").CSSObject;
|
|
799
|
+
":-moz-dir"?: import("@emotion/serialize").CSSObject;
|
|
800
|
+
":-webkit-any()"?: import("@emotion/serialize").CSSObject;
|
|
801
|
+
"::cue"?: import("@emotion/serialize").CSSObject;
|
|
802
|
+
"::cue-region"?: import("@emotion/serialize").CSSObject;
|
|
803
|
+
"::part"?: import("@emotion/serialize").CSSObject;
|
|
804
|
+
"::slotted"?: import("@emotion/serialize").CSSObject;
|
|
805
|
+
":dir"?: import("@emotion/serialize").CSSObject;
|
|
806
|
+
":has"?: import("@emotion/serialize").CSSObject;
|
|
807
|
+
":host"?: import("@emotion/serialize").CSSObject;
|
|
808
|
+
":host-context"?: import("@emotion/serialize").CSSObject;
|
|
809
|
+
":is"?: import("@emotion/serialize").CSSObject;
|
|
810
|
+
":lang"?: import("@emotion/serialize").CSSObject;
|
|
811
|
+
":matches()"?: import("@emotion/serialize").CSSObject;
|
|
812
|
+
":not"?: import("@emotion/serialize").CSSObject;
|
|
813
|
+
":nth-child"?: import("@emotion/serialize").CSSObject;
|
|
814
|
+
":nth-last-child"?: import("@emotion/serialize").CSSObject;
|
|
815
|
+
":nth-last-of-type"?: import("@emotion/serialize").CSSObject;
|
|
816
|
+
":nth-of-type"?: import("@emotion/serialize").CSSObject;
|
|
817
|
+
":where"?: import("@emotion/serialize").CSSObject;
|
|
818
|
+
":-khtml-any-link"?: import("@emotion/serialize").CSSObject;
|
|
819
|
+
":-moz-any-link"?: import("@emotion/serialize").CSSObject;
|
|
820
|
+
":-moz-focusring"?: import("@emotion/serialize").CSSObject;
|
|
821
|
+
":-moz-full-screen"?: import("@emotion/serialize").CSSObject;
|
|
822
|
+
":-moz-placeholder"?: import("@emotion/serialize").CSSObject;
|
|
823
|
+
":-moz-read-only"?: import("@emotion/serialize").CSSObject;
|
|
824
|
+
":-moz-read-write"?: import("@emotion/serialize").CSSObject;
|
|
825
|
+
":-ms-fullscreen"?: import("@emotion/serialize").CSSObject;
|
|
826
|
+
":-ms-input-placeholder"?: import("@emotion/serialize").CSSObject;
|
|
827
|
+
":-webkit-any-link"?: import("@emotion/serialize").CSSObject;
|
|
828
|
+
":-webkit-full-screen"?: import("@emotion/serialize").CSSObject;
|
|
829
|
+
"::-moz-placeholder"?: import("@emotion/serialize").CSSObject;
|
|
830
|
+
"::-moz-progress-bar"?: import("@emotion/serialize").CSSObject;
|
|
831
|
+
"::-moz-range-progress"?: import("@emotion/serialize").CSSObject;
|
|
832
|
+
"::-moz-range-thumb"?: import("@emotion/serialize").CSSObject;
|
|
833
|
+
"::-moz-range-track"?: import("@emotion/serialize").CSSObject;
|
|
834
|
+
"::-moz-selection"?: import("@emotion/serialize").CSSObject;
|
|
835
|
+
"::-ms-backdrop"?: import("@emotion/serialize").CSSObject;
|
|
836
|
+
"::-ms-browse"?: import("@emotion/serialize").CSSObject;
|
|
837
|
+
"::-ms-check"?: import("@emotion/serialize").CSSObject;
|
|
838
|
+
"::-ms-clear"?: import("@emotion/serialize").CSSObject;
|
|
839
|
+
"::-ms-fill"?: import("@emotion/serialize").CSSObject;
|
|
840
|
+
"::-ms-fill-lower"?: import("@emotion/serialize").CSSObject;
|
|
841
|
+
"::-ms-fill-upper"?: import("@emotion/serialize").CSSObject;
|
|
842
|
+
"::-ms-input-placeholder"?: import("@emotion/serialize").CSSObject;
|
|
843
|
+
"::-ms-reveal"?: import("@emotion/serialize").CSSObject;
|
|
844
|
+
"::-ms-thumb"?: import("@emotion/serialize").CSSObject;
|
|
845
|
+
"::-ms-ticks-after"?: import("@emotion/serialize").CSSObject;
|
|
846
|
+
"::-ms-ticks-before"?: import("@emotion/serialize").CSSObject;
|
|
847
|
+
"::-ms-tooltip"?: import("@emotion/serialize").CSSObject;
|
|
848
|
+
"::-ms-track"?: import("@emotion/serialize").CSSObject;
|
|
849
|
+
"::-ms-value"?: import("@emotion/serialize").CSSObject;
|
|
850
|
+
"::-webkit-backdrop"?: import("@emotion/serialize").CSSObject;
|
|
851
|
+
"::-webkit-input-placeholder"?: import("@emotion/serialize").CSSObject;
|
|
852
|
+
"::-webkit-progress-bar"?: import("@emotion/serialize").CSSObject;
|
|
853
|
+
"::-webkit-progress-inner-value"?: import("@emotion/serialize").CSSObject;
|
|
854
|
+
"::-webkit-progress-value"?: import("@emotion/serialize").CSSObject;
|
|
855
|
+
"::-webkit-slider-runnable-track"?: import("@emotion/serialize").CSSObject;
|
|
856
|
+
"::-webkit-slider-thumb"?: import("@emotion/serialize").CSSObject;
|
|
857
|
+
"::after"?: import("@emotion/serialize").CSSObject;
|
|
858
|
+
"::backdrop"?: import("@emotion/serialize").CSSObject;
|
|
859
|
+
"::before"?: import("@emotion/serialize").CSSObject;
|
|
860
|
+
"::first-letter"?: import("@emotion/serialize").CSSObject;
|
|
861
|
+
"::first-line"?: import("@emotion/serialize").CSSObject;
|
|
862
|
+
"::grammar-error"?: import("@emotion/serialize").CSSObject;
|
|
863
|
+
"::marker"?: import("@emotion/serialize").CSSObject;
|
|
864
|
+
"::placeholder"?: import("@emotion/serialize").CSSObject;
|
|
865
|
+
"::selection"?: import("@emotion/serialize").CSSObject;
|
|
866
|
+
"::spelling-error"?: import("@emotion/serialize").CSSObject;
|
|
867
|
+
":active"?: import("@emotion/serialize").CSSObject;
|
|
868
|
+
":after"?: import("@emotion/serialize").CSSObject;
|
|
869
|
+
":any-link"?: import("@emotion/serialize").CSSObject;
|
|
870
|
+
":before"?: import("@emotion/serialize").CSSObject;
|
|
871
|
+
":blank"?: import("@emotion/serialize").CSSObject;
|
|
872
|
+
":checked"?: import("@emotion/serialize").CSSObject;
|
|
873
|
+
":default"?: import("@emotion/serialize").CSSObject;
|
|
874
|
+
":defined"?: import("@emotion/serialize").CSSObject;
|
|
875
|
+
":disabled"?: import("@emotion/serialize").CSSObject;
|
|
876
|
+
":empty"?: import("@emotion/serialize").CSSObject;
|
|
877
|
+
":enabled"?: import("@emotion/serialize").CSSObject;
|
|
878
|
+
":first"?: import("@emotion/serialize").CSSObject;
|
|
879
|
+
":first-child"?: import("@emotion/serialize").CSSObject;
|
|
880
|
+
":first-letter"?: import("@emotion/serialize").CSSObject;
|
|
881
|
+
":first-line"?: import("@emotion/serialize").CSSObject;
|
|
882
|
+
":first-of-type"?: import("@emotion/serialize").CSSObject;
|
|
883
|
+
":focus"?: import("@emotion/serialize").CSSObject;
|
|
884
|
+
":focus-visible"?: import("@emotion/serialize").CSSObject;
|
|
885
|
+
":focus-within"?: import("@emotion/serialize").CSSObject;
|
|
886
|
+
":fullscreen"?: import("@emotion/serialize").CSSObject;
|
|
887
|
+
":hover"?: import("@emotion/serialize").CSSObject;
|
|
888
|
+
":in-range"?: import("@emotion/serialize").CSSObject;
|
|
889
|
+
":indeterminate"?: import("@emotion/serialize").CSSObject;
|
|
890
|
+
":invalid"?: import("@emotion/serialize").CSSObject;
|
|
891
|
+
":last-child"?: import("@emotion/serialize").CSSObject;
|
|
892
|
+
":last-of-type"?: import("@emotion/serialize").CSSObject;
|
|
893
|
+
":left"?: import("@emotion/serialize").CSSObject;
|
|
894
|
+
":link"?: import("@emotion/serialize").CSSObject;
|
|
895
|
+
":only-child"?: import("@emotion/serialize").CSSObject;
|
|
896
|
+
":only-of-type"?: import("@emotion/serialize").CSSObject;
|
|
897
|
+
":optional"?: import("@emotion/serialize").CSSObject;
|
|
898
|
+
":out-of-range"?: import("@emotion/serialize").CSSObject;
|
|
899
|
+
":placeholder-shown"?: import("@emotion/serialize").CSSObject;
|
|
900
|
+
":read-only"?: import("@emotion/serialize").CSSObject;
|
|
901
|
+
":read-write"?: import("@emotion/serialize").CSSObject;
|
|
902
|
+
":required"?: import("@emotion/serialize").CSSObject;
|
|
903
|
+
":right"?: import("@emotion/serialize").CSSObject;
|
|
904
|
+
":root"?: import("@emotion/serialize").CSSObject;
|
|
905
|
+
":scope"?: import("@emotion/serialize").CSSObject;
|
|
906
|
+
":target"?: import("@emotion/serialize").CSSObject;
|
|
907
|
+
":valid"?: import("@emotion/serialize").CSSObject;
|
|
908
|
+
":visited"?: import("@emotion/serialize").CSSObject;
|
|
909
|
+
};
|
|
910
|
+
};
|
|
911
|
+
control: () => {
|
|
912
|
+
display: string;
|
|
913
|
+
alignItems: string;
|
|
914
|
+
appearance: string;
|
|
915
|
+
padding: string;
|
|
916
|
+
height: string;
|
|
917
|
+
minHeight: string;
|
|
918
|
+
};
|
|
919
|
+
dropdownIndicator: (provided: any, selectProps: any) => any;
|
|
920
|
+
menu: (provided: any) => any;
|
|
921
|
+
menuList: (provided: any) => any;
|
|
922
|
+
option: (provided: any, { isMulti, isDisabled, isFocused, isSelected }: {
|
|
923
|
+
isMulti: any;
|
|
924
|
+
isDisabled: any;
|
|
925
|
+
isFocused: any;
|
|
926
|
+
isSelected: any;
|
|
927
|
+
}) => any;
|
|
928
|
+
valueContainer: (provided: any) => any;
|
|
929
|
+
singleValue: (provided: any, selectProps: any) => any;
|
|
930
|
+
};
|