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