taro-uno-ui 0.9.0 → 1.0.0
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/README.md +21 -0
- package/dist/app.config.d.ts +38 -0
- package/dist/app.d.ts +6 -0
- package/dist/components/basic/Button/Button.d.ts +6 -0
- package/dist/components/basic/Button/Button.styles.d.ts +2 -0
- package/dist/components/basic/Button/Button.types.d.ts +74 -0
- package/dist/components/basic/Button/index.d.ts +4 -0
- package/dist/components/basic/Divider/Divider.d.ts +6 -0
- package/dist/components/basic/Divider/Divider.styles.d.ts +87 -0
- package/dist/components/basic/Divider/Divider.types.d.ts +242 -0
- package/dist/components/basic/Divider/index.d.ts +6 -0
- package/dist/components/basic/Icon/Icon.d.ts +5 -0
- package/dist/components/basic/Icon/Icon.data.d.ts +29 -0
- package/dist/components/basic/Icon/Icon.styles.d.ts +61 -0
- package/dist/components/basic/Icon/Icon.types.d.ts +199 -0
- package/dist/components/basic/Icon/IconManager.d.ts +120 -0
- package/dist/components/basic/Icon/index.d.ts +6 -0
- package/dist/components/basic/Text/Text.d.ts +7 -0
- package/dist/components/basic/Text/Text.styles.d.ts +67 -0
- package/dist/components/basic/Text/Text.types.d.ts +274 -0
- package/dist/components/basic/Text/index.d.ts +5 -0
- package/dist/components/basic/Typography/Typography.d.ts +8 -0
- package/dist/components/basic/Typography/Typography.styles.d.ts +83 -0
- package/dist/components/basic/Typography/Typography.types.d.ts +245 -0
- package/dist/components/basic/Typography/index.d.ts +3 -0
- package/dist/components/basic/Video/Video.d.ts +7 -0
- package/dist/components/basic/Video/Video.styles.d.ts +212 -0
- package/dist/components/basic/Video/Video.types.d.ts +447 -0
- package/dist/components/basic/Video/index.d.ts +10 -0
- package/dist/components/basic/index.d.ts +217 -0
- package/dist/components/common/ErrorBoundary.d.ts +19 -0
- package/dist/components/common/LazyComponent.d.ts +78 -0
- package/dist/components/common/ResponsiveContainer.d.ts +23 -0
- package/dist/components/common/ResponsiveGrid.d.ts +44 -0
- package/dist/components/common/SecurityProvider.d.ts +15 -0
- package/dist/components/common/ThemeProvider.d.ts +17 -0
- package/dist/components/common/VirtualList.d.ts +89 -0
- package/dist/components/common/index.d.ts +17 -0
- package/dist/components/display/Avatar/Avatar.d.ts +3 -0
- package/dist/components/display/Avatar/Avatar.styles.d.ts +2 -0
- package/dist/components/display/Avatar/Avatar.types.d.ts +37 -0
- package/dist/components/display/Avatar/index.d.ts +3 -0
- package/dist/components/display/Badge/Badge.d.ts +3 -0
- package/dist/components/display/Badge/Badge.types.d.ts +27 -0
- package/dist/components/display/Badge/index.d.ts +2 -0
- package/dist/components/display/Calendar/Calendar.d.ts +5 -0
- package/dist/components/display/Calendar/Calendar.styles.d.ts +2 -0
- package/dist/components/display/Calendar/Calendar.types.d.ts +87 -0
- package/dist/components/display/Calendar/index.d.ts +3 -0
- package/dist/components/display/Card/Card.d.ts +3 -0
- package/dist/components/display/Card/Card.styles.d.ts +1 -0
- package/dist/components/display/Card/Card.types.d.ts +52 -0
- package/dist/components/display/Card/index.d.ts +3 -0
- package/dist/components/display/Carousel/Carousel.d.ts +5 -0
- package/dist/components/display/Carousel/Carousel.styles.d.ts +2 -0
- package/dist/components/display/Carousel/Carousel.types.d.ts +55 -0
- package/dist/components/display/Carousel/index.d.ts +3 -0
- package/dist/components/display/List/List.d.ts +4 -0
- package/dist/components/display/List/List.styles.d.ts +1 -0
- package/dist/components/display/List/List.types.d.ts +64 -0
- package/dist/components/display/List/index.d.ts +3 -0
- package/dist/components/display/Rate/Rate.d.ts +6 -0
- package/dist/components/display/Rate/Rate.styles.d.ts +100 -0
- package/dist/components/display/Rate/Rate.types.d.ts +105 -0
- package/dist/components/display/Rate/index.d.ts +17 -0
- package/dist/components/display/Table/Table.d.ts +7 -0
- package/dist/components/display/Table/Table.styles.d.ts +84 -0
- package/dist/components/display/Table/Table.types.d.ts +251 -0
- package/dist/components/display/Table/index.d.ts +4 -0
- package/dist/components/display/Tag/Tag.d.ts +5 -0
- package/dist/components/display/Tag/Tag.styles.d.ts +2 -0
- package/dist/components/display/Tag/Tag.types.d.ts +47 -0
- package/dist/components/display/Tag/index.d.ts +3 -0
- package/dist/components/display/Timeline/Timeline.d.ts +16 -0
- package/dist/components/display/Timeline/Timeline.styles.d.ts +2 -0
- package/dist/components/display/Timeline/Timeline.types.d.ts +53 -0
- package/dist/components/display/Timeline/index.d.ts +3 -0
- package/dist/components/display/index.d.ts +67 -0
- package/dist/components/feedback/Loading/Loading.d.ts +4 -0
- package/dist/components/feedback/Loading/Loading.styles.d.ts +2 -0
- package/dist/components/feedback/Loading/Loading.types.d.ts +29 -0
- package/dist/components/feedback/Loading/index.d.ts +4 -0
- package/dist/components/feedback/Message/Message.d.ts +4 -0
- package/dist/components/feedback/Message/Message.styles.d.ts +34 -0
- package/dist/components/feedback/Message/Message.types.d.ts +33 -0
- package/dist/components/feedback/Message/index.d.ts +4 -0
- package/dist/components/feedback/Modal/Modal.d.ts +8 -0
- package/dist/components/feedback/Modal/Modal.styles.d.ts +18 -0
- package/dist/components/feedback/Modal/Modal.types.d.ts +143 -0
- package/dist/components/feedback/Modal/index.d.ts +3 -0
- package/dist/components/feedback/Notification/Notification.d.ts +4 -0
- package/dist/components/feedback/Notification/Notification.styles.d.ts +88 -0
- package/dist/components/feedback/Notification/Notification.types.d.ts +279 -0
- package/dist/components/feedback/Notification/NotificationManager.d.ts +4 -0
- package/dist/components/feedback/Notification/index.d.ts +25 -0
- package/dist/components/feedback/Progress/Progress.d.ts +4 -0
- package/dist/components/feedback/Progress/Progress.styles.d.ts +261 -0
- package/dist/components/feedback/Progress/Progress.test.simple.d.ts +2 -0
- package/dist/components/feedback/Progress/Progress.types.d.ts +147 -0
- package/dist/components/feedback/Progress/index.d.ts +3 -0
- package/dist/components/feedback/Progress/utils/animation.d.ts +55 -0
- package/dist/components/feedback/Progress/utils/index.d.ts +2 -0
- package/dist/components/feedback/Progress/utils/progress-calculator.d.ts +75 -0
- package/dist/components/feedback/Result/Result.d.ts +7 -0
- package/dist/components/feedback/Result/Result.styles.d.ts +2 -0
- package/dist/components/feedback/Result/Result.types.d.ts +66 -0
- package/dist/components/feedback/Result/index.d.ts +3 -0
- package/dist/components/feedback/Toast/Toast.d.ts +7 -0
- package/dist/components/feedback/Toast/Toast.styles.d.ts +14 -0
- package/dist/components/feedback/Toast/Toast.types.d.ts +81 -0
- package/dist/components/feedback/Toast/index.d.ts +3 -0
- package/dist/components/feedback/Tooltip/Tooltip.d.ts +4 -0
- package/dist/components/feedback/Tooltip/Tooltip.examples.d.ts +6 -0
- package/dist/components/feedback/Tooltip/Tooltip.styles.d.ts +78 -0
- package/dist/components/feedback/Tooltip/Tooltip.types.d.ts +130 -0
- package/dist/components/feedback/Tooltip/index.d.ts +3 -0
- package/dist/components/feedback/index.d.ts +71 -0
- package/dist/components/form/Cascader/Cascader.d.ts +7 -0
- package/dist/components/form/Cascader/Cascader.styles.d.ts +107 -0
- package/dist/components/form/Cascader/Cascader.types.d.ts +418 -0
- package/dist/components/form/Cascader/hooks/index.d.ts +3 -0
- package/dist/components/form/Cascader/hooks/useCascaderFieldNames.d.ts +12 -0
- package/dist/components/form/Cascader/hooks/useCascaderOptions.d.ts +15 -0
- package/dist/components/form/Cascader/hooks/useCascaderState.d.ts +23 -0
- package/dist/components/form/Cascader/index.d.ts +6 -0
- package/dist/components/form/Cascader/utils/formatDisplayValue.d.ts +9 -0
- package/dist/components/form/Cascader/utils/index.d.ts +1 -0
- package/dist/components/form/Checkbox/Checkbox.d.ts +6 -0
- package/dist/components/form/Checkbox/Checkbox.styles.d.ts +111 -0
- package/dist/components/form/Checkbox/Checkbox.types.d.ts +473 -0
- package/dist/components/form/Checkbox/CheckboxGroup.d.ts +6 -0
- package/dist/components/form/Checkbox/index.d.ts +8 -0
- package/dist/components/form/DatePicker/DatePicker.d.ts +6 -0
- package/dist/components/form/DatePicker/DatePicker.styles.d.ts +99 -0
- package/dist/components/form/DatePicker/DatePicker.types.d.ts +236 -0
- package/dist/components/form/DatePicker/index.d.ts +3 -0
- package/dist/components/form/Form/Form.d.ts +8 -0
- package/dist/components/form/Form/Form.styles.d.ts +84 -0
- package/dist/components/form/Form/Form.types.d.ts +416 -0
- package/dist/components/form/Form/index.d.ts +9 -0
- package/dist/components/form/Form/useFormLogic.d.ts +22 -0
- package/dist/components/form/Input/Input.d.ts +6 -0
- package/dist/components/form/Input/Input.styles.d.ts +61 -0
- package/dist/components/form/Input/Input.types.d.ts +294 -0
- package/dist/components/form/Input/index.d.ts +8 -0
- package/dist/components/form/Input/useInputLogic.d.ts +35 -0
- package/dist/components/form/InputNumber/InputNumber.d.ts +6 -0
- package/dist/components/form/InputNumber/InputNumber.styles.d.ts +120 -0
- package/dist/components/form/InputNumber/InputNumber.types.d.ts +303 -0
- package/dist/components/form/InputNumber/components/InputNumberClearButton.d.ts +10 -0
- package/dist/components/form/InputNumber/components/InputNumberControls.d.ts +11 -0
- package/dist/components/form/InputNumber/components/index.d.ts +2 -0
- package/dist/components/form/InputNumber/hooks/index.d.ts +4 -0
- package/dist/components/form/InputNumber/hooks/useInputNumberState.d.ts +38 -0
- package/dist/components/form/InputNumber/hooks/useInputNumberValidation.d.ts +12 -0
- package/dist/components/form/InputNumber/index.d.ts +5 -0
- package/dist/components/form/Radio/Radio.d.ts +6 -0
- package/dist/components/form/Radio/Radio.styles.d.ts +80 -0
- package/dist/components/form/Radio/Radio.types.d.ts +415 -0
- package/dist/components/form/Radio/index.d.ts +8 -0
- package/dist/components/form/Select/Select.d.ts +6 -0
- package/dist/components/form/Select/Select.styles.d.ts +71 -0
- package/dist/components/form/Select/Select.types.d.ts +418 -0
- package/dist/components/form/Select/index.d.ts +8 -0
- package/dist/components/form/Slider/Slider.d.ts +7 -0
- package/dist/components/form/Slider/Slider.styles.d.ts +2 -0
- package/dist/components/form/Slider/Slider.types.d.ts +85 -0
- package/dist/components/form/Slider/index.d.ts +3 -0
- package/dist/components/form/Switch/Switch.d.ts +10 -0
- package/dist/components/form/Switch/Switch.styles.d.ts +154 -0
- package/dist/components/form/Switch/Switch.types.d.ts +351 -0
- package/dist/components/form/Switch/index.d.ts +7 -0
- package/dist/components/form/Textarea/Textarea.d.ts +6 -0
- package/dist/components/form/Textarea/Textarea.styles.d.ts +66 -0
- package/dist/components/form/Textarea/Textarea.types.d.ts +348 -0
- package/dist/components/form/Textarea/index.d.ts +7 -0
- package/dist/components/form/TimePicker/TimePicker.d.ts +6 -0
- package/dist/components/form/TimePicker/TimePicker.styles.d.ts +104 -0
- package/dist/components/form/TimePicker/TimePicker.types.d.ts +385 -0
- package/dist/components/form/TimePicker/index.d.ts +4 -0
- package/dist/components/form/Transfer/Transfer.d.ts +7 -0
- package/dist/components/form/Transfer/Transfer.styles.d.ts +106 -0
- package/dist/components/form/Transfer/Transfer.types.d.ts +384 -0
- package/dist/components/form/Transfer/components/TransferItem.d.ts +23 -0
- package/dist/components/form/Transfer/components/TransferList.d.ts +55 -0
- package/dist/components/form/Transfer/components/TransferOperations.d.ts +21 -0
- package/dist/components/form/Transfer/components/TransferPagination.d.ts +19 -0
- package/dist/components/form/Transfer/components/TransferSearch.d.ts +21 -0
- package/dist/components/form/Transfer/components/index.d.ts +6 -0
- package/dist/components/form/Transfer/hooks/index.d.ts +3 -0
- package/dist/components/form/Transfer/hooks/useTransferData.d.ts +41 -0
- package/dist/components/form/Transfer/hooks/useTransferState.d.ts +21 -0
- package/dist/components/form/Transfer/index.d.ts +9 -0
- package/dist/components/form/Upload/Upload.d.ts +7 -0
- package/dist/components/form/Upload/Upload.styles.d.ts +2 -0
- package/dist/components/form/Upload/Upload.types.d.ts +143 -0
- package/dist/components/form/Upload/index.d.ts +3 -0
- package/dist/components/form/index.d.ts +126 -0
- package/dist/components/index.d.ts +122 -0
- package/dist/components/layout/Affix/Affix.d.ts +4 -0
- package/dist/components/layout/Affix/Affix.styles.d.ts +1669 -0
- package/dist/components/layout/Affix/Affix.types.d.ts +25 -0
- package/dist/components/layout/Affix/index.d.ts +3 -0
- package/dist/components/layout/Col/Col.d.ts +6 -0
- package/dist/components/layout/Col/Col.styles.d.ts +52 -0
- package/dist/components/layout/Col/Col.types.d.ts +54 -0
- package/dist/components/layout/Col/index.d.ts +3 -0
- package/dist/components/layout/Container/Container.d.ts +6 -0
- package/dist/components/layout/Container/Container.styles.d.ts +41 -0
- package/dist/components/layout/Container/Container.types.d.ts +59 -0
- package/dist/components/layout/Container/index.d.ts +3 -0
- package/dist/components/layout/Grid/Grid.d.ts +6 -0
- package/dist/components/layout/Grid/Grid.styles.d.ts +60 -0
- package/dist/components/layout/Grid/Grid.types.d.ts +68 -0
- package/dist/components/layout/Grid/index.d.ts +3 -0
- package/dist/components/layout/Layout/Content.d.ts +4 -0
- package/dist/components/layout/Layout/Footer.d.ts +4 -0
- package/dist/components/layout/Layout/Header.d.ts +4 -0
- package/dist/components/layout/Layout/Layout.d.ts +4 -0
- package/dist/components/layout/Layout/Layout.styles.d.ts +3366 -0
- package/dist/components/layout/Layout/Layout.types.d.ts +48 -0
- package/dist/components/layout/Layout/Sider.d.ts +4 -0
- package/dist/components/layout/Layout/index.d.ts +8 -0
- package/dist/components/layout/Row/Row.d.ts +6 -0
- package/dist/components/layout/Row/Row.styles.d.ts +55 -0
- package/dist/components/layout/Row/Row.types.d.ts +51 -0
- package/dist/components/layout/Row/index.d.ts +3 -0
- package/dist/components/layout/Space/Space.d.ts +6 -0
- package/dist/components/layout/Space/Space.styles.d.ts +69 -0
- package/dist/components/layout/Space/Space.types.d.ts +84 -0
- package/dist/components/layout/Space/index.d.ts +3 -0
- package/dist/components/layout/index.d.ts +39 -0
- package/dist/components/navigation/Menu/Menu.constants.d.ts +59 -0
- package/dist/components/navigation/Menu/Menu.d.ts +10 -0
- package/dist/components/navigation/Menu/Menu.stories.d.ts +157 -0
- package/dist/components/navigation/Menu/Menu.styles.d.ts +143 -0
- package/dist/components/navigation/Menu/Menu.types.d.ts +210 -0
- package/dist/components/navigation/Menu/Menu.utils.d.ts +54 -0
- package/dist/components/navigation/Menu/MenuItem.d.ts +32 -0
- package/dist/components/navigation/Menu/SubMenu.d.ts +41 -0
- package/dist/components/navigation/Menu/index.d.ts +54 -0
- package/dist/components/navigation/NavBar/NavBar.d.ts +7 -0
- package/dist/components/navigation/NavBar/NavBar.styles.d.ts +114 -0
- package/dist/components/navigation/NavBar/NavBar.types.d.ts +50 -0
- package/dist/components/navigation/NavBar/index.d.ts +3 -0
- package/dist/components/navigation/Pagination/Pagination.d.ts +6 -0
- package/dist/components/navigation/Pagination/Pagination.styles.d.ts +55 -0
- package/dist/components/navigation/Pagination/Pagination.types.d.ts +77 -0
- package/dist/components/navigation/Pagination/index.d.ts +15 -0
- package/dist/components/navigation/Steps/Step.d.ts +4 -0
- package/dist/components/navigation/Steps/Steps.d.ts +4 -0
- package/dist/components/navigation/Steps/Steps.styles.d.ts +6716 -0
- package/dist/components/navigation/Steps/Steps.types.d.ts +41 -0
- package/dist/components/navigation/Steps/index.d.ts +3 -0
- package/dist/components/navigation/Tabs/Tabs.d.ts +6 -0
- package/dist/components/navigation/Tabs/Tabs.styles.d.ts +60 -0
- package/dist/components/navigation/Tabs/Tabs.types.d.ts +107 -0
- package/dist/components/navigation/Tabs/index.d.ts +3 -0
- package/dist/components/navigation/index.d.ts +35 -0
- package/dist/constants/index.d.ts +624 -0
- package/dist/hooks/index.d.ts +28 -0
- package/dist/hooks/types.d.ts +7 -0
- package/dist/hooks/useAsync.d.ts +17 -0
- package/dist/hooks/useClickOutside.d.ts +19 -0
- package/dist/hooks/useCounter.d.ts +36 -0
- package/dist/hooks/useDebounce.d.ts +31 -0
- package/dist/hooks/useDeepCompareEffect.d.ts +22 -0
- package/dist/hooks/useEventHandling.d.ts +81 -0
- package/dist/hooks/useEventListener.d.ts +19 -0
- package/dist/hooks/useLifecycle.d.ts +66 -0
- package/dist/hooks/useMediaQuery.d.ts +22 -0
- package/dist/hooks/useMutation.d.ts +47 -0
- package/dist/hooks/usePerformance.d.ts +73 -0
- package/dist/hooks/usePerformanceMonitor.d.ts +66 -0
- package/dist/hooks/usePlatform.d.ts +20 -0
- package/dist/hooks/usePrevious.d.ts +14 -0
- package/dist/hooks/useRequest.d.ts +32 -0
- package/dist/hooks/useStateManagement.d.ts +62 -0
- package/dist/hooks/useStorage.d.ts +27 -0
- package/dist/hooks/useStyle.d.ts +127 -0
- package/dist/hooks/useTheme.d.ts +58 -0
- package/dist/hooks/useToggle.d.ts +28 -0
- package/dist/hooks/useVirtualScroll.d.ts +42 -0
- package/dist/index.d.ts +271 -0
- package/dist/js/{index-DffLRSro.js → index-CDFsvu80.js} +15369 -10741
- package/dist/js/index-CDFsvu80.js.map +1 -0
- package/dist/js/index-DFdcksbe.js.map +1 -1
- package/dist/js/index-DXRIkWX1.js.map +1 -1
- package/dist/js/{index-6NJ3A1Dn.js → index-JffnTUrv.js} +15430 -10801
- package/dist/js/index-JffnTUrv.js.map +1 -0
- package/dist/platform/index.d.ts +172 -0
- package/dist/providers/AppProvider.d.ts +34 -0
- package/dist/providers/index.d.ts +1 -0
- package/dist/theme/ThemeProvider.d.ts +34 -0
- package/dist/theme/ThemeProvider.types.d.ts +21 -0
- package/dist/theme/animations.d.ts +96 -0
- package/dist/theme/defaults.d.ts +6 -0
- package/dist/theme/design-system.d.ts +400 -0
- package/dist/theme/design-tokens.d.ts +459 -0
- package/dist/theme/index.d.ts +187 -0
- package/dist/theme/responsive.d.ts +63 -0
- package/dist/theme/styles.d.ts +65 -0
- package/dist/theme/tokens/colors.d.ts +72 -0
- package/dist/theme/tokens/effects.d.ts +122 -0
- package/dist/theme/tokens/index.d.ts +94 -0
- package/dist/theme/tokens/spacing.d.ts +65 -0
- package/dist/theme/tokens/typography.d.ts +73 -0
- package/dist/theme/types.d.ts +153 -0
- package/dist/theme/useThemeUtils.d.ts +21 -0
- package/dist/theme/utils.d.ts +255 -0
- package/dist/theme/variables.d.ts +170 -0
- package/dist/types/accessibility.d.ts +46 -0
- package/dist/types/button.d.ts +285 -0
- package/dist/types/component-props.d.ts +109 -0
- package/dist/types/index.d.ts +343 -0
- package/dist/types/standardized-components.d.ts +263 -0
- package/dist/types/utils.d.ts +190 -0
- package/dist/utils/abort-controller.d.ts +19 -0
- package/dist/utils/cache.d.ts +28 -0
- package/dist/utils/createNamespace.d.ts +9 -0
- package/dist/utils/environment.d.ts +26 -0
- package/dist/utils/error-handler.d.ts +37 -0
- package/dist/utils/errorLogger.d.ts +72 -0
- package/dist/utils/formatUtils.d.ts +93 -0
- package/dist/utils/http/error-codes.d.ts +131 -0
- package/dist/utils/http/http-client.d.ts +53 -0
- package/dist/utils/http/request-cache.d.ts +65 -0
- package/dist/utils/http/request.d.ts +280 -0
- package/dist/utils/http/taro-adapter.d.ts +4 -0
- package/dist/utils/http/types.d.ts +351 -0
- package/dist/utils/http/web-adapter.d.ts +4 -0
- package/dist/utils/index.d.ts +46 -0
- package/dist/utils/inputValidator.d.ts +74 -0
- package/dist/utils/performance/performance.d.ts +167 -0
- package/dist/utils/responsiveUtils.d.ts +148 -0
- package/dist/utils/rtl-support.d.ts +78 -0
- package/dist/utils/security/api-security.d.ts +82 -0
- package/dist/utils/security/xss-protection.d.ts +20 -0
- package/dist/utils/securityHeaders.d.ts +74 -0
- package/dist/utils/typeHelpers.d.ts +1 -0
- package/dist/utils/types/dataProcessing.d.ts +111 -0
- package/dist/utils/types/typeHelpers.d.ts +50 -0
- package/dist/utils/xssProtection.d.ts +90 -0
- package/package.json +14 -10
- package/src/components/basic/Button/Button.tsx +53 -13
- package/src/components/basic/Button/Button.types.ts +45 -9
- package/src/components/basic/Divider/Divider.tsx +60 -29
- package/src/components/basic/Icon/Icon.data.ts +474 -0
- package/src/components/basic/Icon/Icon.test.tsx +2 -2
- package/src/components/basic/Icon/Icon.tsx +48 -35
- package/src/components/basic/Icon/IconManager.ts +229 -0
- package/src/components/basic/Text/Text.styles.ts +3 -3
- package/src/components/basic/Text/Text.types.ts +14 -4
- package/src/components/basic/Typography/Typography.styles.ts +10 -9
- package/src/components/basic/Typography/Typography.tsx +15 -13
- package/src/components/basic/Typography/Typography.types.ts +41 -41
- package/src/components/basic/Typography/index.tsx +1 -1
- package/src/components/basic/Video/Video.styles.ts +777 -0
- package/src/components/basic/Video/Video.test.tsx +490 -0
- package/src/components/basic/Video/Video.tsx +1468 -0
- package/src/components/basic/Video/Video.types.ts +500 -0
- package/src/components/basic/Video/index.tsx +26 -0
- package/src/components/basic/index.tsx +13 -15
- package/src/components/common/ErrorBoundary.tsx +1 -1
- package/src/components/common/LazyComponent.tsx +9 -8
- package/src/components/common/SecurityProvider.tsx +2 -14
- package/src/components/common/ThemeProvider.tsx +43 -56
- package/src/components/common/VirtualList.tsx +187 -205
- package/src/components/common/index.tsx +25 -0
- package/src/components/display/Avatar/Avatar.styles.ts +1 -1
- package/src/components/display/Avatar/Avatar.tsx +6 -19
- package/src/components/display/Avatar/Avatar.types.ts +1 -1
- package/src/components/display/Avatar/index.ts +1 -1
- package/src/components/display/Badge/Badge.tsx +3 -16
- package/src/components/display/Badge/Badge.types.ts +1 -1
- package/src/components/display/Badge/index.ts +1 -1
- package/src/components/display/Calendar/Calendar.styles.ts +36 -36
- package/src/components/display/Calendar/Calendar.test.tsx +27 -15
- package/src/components/display/Calendar/Calendar.tsx +56 -35
- package/src/components/display/Calendar/Calendar.types.ts +1 -1
- package/src/components/display/Calendar/index.ts +1 -1
- package/src/components/display/Card/Card.styles.ts +2 -2
- package/src/components/display/Card/Card.test.tsx +6 -4
- package/src/components/display/Card/Card.tsx +1 -1
- package/src/components/display/Card/Card.types.ts +4 -4
- package/src/components/display/Card/index.ts +1 -1
- package/src/components/display/Carousel/Carousel.styles.ts +31 -31
- package/src/components/display/Carousel/Carousel.tsx +34 -39
- package/src/components/display/Carousel/Carousel.types.ts +1 -1
- package/src/components/display/Carousel/index.ts +1 -1
- package/src/components/display/List/List.styles.ts +3 -3
- package/src/components/display/List/List.tsx +0 -1
- package/src/components/display/List/index.ts +1 -1
- package/src/components/display/Rate/Rate.styles.ts +5 -17
- package/src/components/display/Rate/Rate.tsx +6 -14
- package/src/components/display/Rate/Rate.types.ts +4 -3
- package/src/components/display/Rate/index.ts +3 -11
- package/src/components/display/Table/Table.test.tsx +2 -0
- package/src/components/display/Table/Table.tsx +3 -7
- package/src/components/display/Table/Table.types.ts +3 -2
- package/src/components/display/Tag/Tag.styles.ts +31 -31
- package/src/components/display/Tag/Tag.tsx +9 -26
- package/src/components/display/Tag/Tag.types.ts +1 -1
- package/src/components/display/Tag/index.ts +1 -1
- package/src/components/display/Timeline/Timeline.styles.ts +32 -32
- package/src/components/display/Timeline/Timeline.tsx +23 -42
- package/src/components/display/Timeline/Timeline.types.ts +1 -1
- package/src/components/display/Timeline/index.ts +1 -1
- package/src/components/display/index.tsx +33 -29
- package/src/components/feedback/Loading/Loading.tsx +6 -1
- package/src/components/feedback/Loading/index.ts +2 -5
- package/src/components/feedback/Message/Message.styles.ts +3 -3
- package/src/components/feedback/Message/index.ts +2 -5
- package/src/components/feedback/Modal/Modal.styles.ts +1 -1
- package/src/components/feedback/Modal/Modal.tsx +9 -31
- package/src/components/feedback/Modal/Modal.types.ts +12 -2
- package/src/components/feedback/Notification/Notification.styles.ts +49 -39
- package/src/components/feedback/Notification/Notification.test.tsx +1 -1
- package/src/components/feedback/Notification/Notification.tsx +97 -120
- package/src/components/feedback/Notification/Notification.types.ts +11 -8
- package/src/components/feedback/Notification/NotificationManager.tsx +135 -106
- package/src/components/feedback/Notification/index.ts +10 -3
- package/src/components/feedback/Notification/index.tsx +16 -26
- package/src/components/feedback/Progress/Progress.styles.ts +23 -14
- package/src/components/feedback/Progress/Progress.tsx +93 -113
- package/src/components/feedback/Progress/Progress.types.ts +1 -1
- package/src/components/feedback/Progress/index.ts +1 -1
- package/src/components/feedback/Progress/utils/animation.ts +12 -23
- package/src/components/feedback/Progress/utils/index.ts +2 -2
- package/src/components/feedback/Progress/utils/progress-calculator.ts +14 -32
- package/src/components/feedback/Result/Result.styles.ts +29 -29
- package/src/components/feedback/Result/Result.tsx +8 -20
- package/src/components/feedback/Result/Result.types.ts +7 -7
- package/src/components/feedback/Result/index.tsx +1 -1
- package/src/components/feedback/Toast/Toast.styles.ts +1 -1
- package/src/components/feedback/Toast/Toast.tsx +25 -13
- package/src/components/feedback/Tooltip/Tooltip.examples.tsx +21 -44
- package/src/components/feedback/Tooltip/Tooltip.styles.ts +16 -22
- package/src/components/feedback/Tooltip/Tooltip.test.tsx +1 -1
- package/src/components/feedback/Tooltip/Tooltip.tsx +65 -46
- package/src/components/feedback/Tooltip/Tooltip.types.ts +14 -20
- package/src/components/feedback/Tooltip/index.ts +1 -1
- package/src/components/feedback/Tooltip/index.tsx +12 -24
- package/src/components/feedback/index.tsx +54 -42
- package/src/components/form/Cascader/Cascader.styles.ts +2 -2
- package/src/components/form/Cascader/Cascader.tsx +84 -88
- package/src/components/form/Cascader/Cascader.types.ts +49 -50
- package/src/components/form/Cascader/hooks/useCascaderFieldNames.ts +11 -8
- package/src/components/form/Cascader/hooks/useCascaderOptions.ts +73 -55
- package/src/components/form/Cascader/hooks/useCascaderState.ts +31 -25
- package/src/components/form/Cascader/index.ts +1 -1
- package/src/components/form/Cascader/utils/formatDisplayValue.ts +4 -4
- package/src/components/form/Checkbox/Checkbox.styles.ts +83 -84
- package/src/components/form/Checkbox/Checkbox.tsx +2 -9
- package/src/components/form/Checkbox/CheckboxGroup.tsx +7 -7
- package/src/components/form/DatePicker/DatePicker.test.tsx +1 -1
- package/src/components/form/DatePicker/DatePicker.tsx +91 -75
- package/src/components/form/DatePicker/DatePicker.types.ts +4 -1
- package/src/components/form/Form/Form.tsx +66 -504
- package/src/components/form/Form/Form.types.ts +16 -1
- package/src/components/form/Form/useFormLogic.ts +497 -0
- package/src/components/form/Input/Input.styles.ts +8 -1
- package/src/components/form/Input/Input.tsx +55 -291
- package/src/components/form/Input/Input.types.ts +13 -1
- package/src/components/form/Input/useInputLogic.test.ts +82 -0
- package/src/components/form/Input/useInputLogic.ts +260 -0
- package/src/components/form/InputNumber/InputNumber.styles.ts +76 -25
- package/src/components/form/InputNumber/InputNumber.tsx +53 -21
- package/src/components/form/InputNumber/InputNumber.types.ts +21 -3
- package/src/components/form/InputNumber/components/InputNumberClearButton.tsx +3 -11
- package/src/components/form/InputNumber/components/InputNumberControls.tsx +3 -12
- package/src/components/form/InputNumber/hooks/index.ts +1 -1
- package/src/components/form/InputNumber/hooks/useInputNumberState.ts +7 -9
- package/src/components/form/InputNumber/hooks/useInputNumberValidation.ts +18 -17
- package/src/components/form/InputNumber/index.ts +7 -7
- package/src/components/form/Radio/Radio.styles.ts +1 -8
- package/src/components/form/Radio/Radio.tsx +3 -9
- package/src/components/form/Radio/Radio.types.ts +5 -1
- package/src/components/form/Select/Select.styles.ts +5 -1
- package/src/components/form/Select/Select.tsx +15 -15
- package/src/components/form/Select/Select.types.ts +2 -1
- package/src/components/form/Slider/Slider.styles.ts +13 -13
- package/src/components/form/Slider/Slider.tsx +19 -33
- package/src/components/form/Slider/Slider.types.ts +14 -12
- package/src/components/form/Slider/index.tsx +2 -9
- package/src/components/form/Switch/Switch.styles.ts +1 -7
- package/src/components/form/Switch/Switch.tsx +7 -13
- package/src/components/form/Textarea/Textarea.styles.ts +4 -4
- package/src/components/form/Textarea/Textarea.tsx +7 -1
- package/src/components/form/Textarea/Textarea.types.ts +4 -1
- package/src/components/form/TimePicker/TimePicker.styles.ts +8 -12
- package/src/components/form/TimePicker/TimePicker.tsx +122 -100
- package/src/components/form/TimePicker/TimePicker.types.ts +2 -2
- package/src/components/form/TimePicker/index.ts +1 -1
- package/src/components/form/Transfer/Transfer.styles.ts +3 -15
- package/src/components/form/Transfer/Transfer.tsx +146 -134
- package/src/components/form/Transfer/Transfer.types.ts +34 -26
- package/src/components/form/Transfer/components/TransferItem.tsx +55 -62
- package/src/components/form/Transfer/components/TransferList.tsx +212 -199
- package/src/components/form/Transfer/components/TransferOperations.tsx +52 -55
- package/src/components/form/Transfer/components/TransferPagination.tsx +115 -111
- package/src/components/form/Transfer/components/TransferSearch.tsx +52 -55
- package/src/components/form/Transfer/hooks/useTransferData.ts +91 -81
- package/src/components/form/Transfer/hooks/useTransferState.ts +22 -16
- package/src/components/form/Transfer/index.ts +2 -8
- package/src/components/form/Upload/Upload.styles.ts +21 -21
- package/src/components/form/Upload/Upload.tsx +189 -142
- package/src/components/form/Upload/Upload.types.ts +31 -31
- package/src/components/form/Upload/index.tsx +1 -1
- package/src/components/form/index.tsx +60 -29
- package/src/components/index.tsx +0 -1
- package/src/components/layout/Affix/Affix.styles.ts +16 -11
- package/src/components/layout/Affix/Affix.tsx +67 -75
- package/src/components/layout/Affix/Affix.types.ts +18 -18
- package/src/components/layout/Affix/index.tsx +1 -1
- package/src/components/layout/Col/Col.styles.ts +17 -17
- package/src/components/layout/Col/Col.test.tsx +7 -5
- package/src/components/layout/Col/Col.tsx +3 -21
- package/src/components/layout/Col/Col.types.ts +1 -1
- package/src/components/layout/Container/Container.styles.ts +3 -1
- package/src/components/layout/Container/Container.tsx +2 -11
- package/src/components/layout/Grid/Grid.tsx +3 -53
- package/src/components/layout/Layout/Content.tsx +24 -32
- package/src/components/layout/Layout/Footer.tsx +24 -32
- package/src/components/layout/Layout/Header.tsx +24 -32
- package/src/components/layout/Layout/Layout.styles.ts +17 -17
- package/src/components/layout/Layout/Layout.tsx +14 -25
- package/src/components/layout/Layout/Layout.types.ts +29 -29
- package/src/components/layout/Layout/Sider.tsx +44 -56
- package/src/components/layout/Layout/index.tsx +16 -2
- package/src/components/layout/Row/Row.tsx +15 -43
- package/src/components/layout/Space/Space.tsx +3 -11
- package/src/components/layout/Space/Space.types.ts +1 -1
- package/src/components/layout/index.tsx +29 -19
- package/src/components/navigation/Menu/Menu.constants.ts +69 -0
- package/src/components/navigation/Menu/Menu.stories.tsx +107 -0
- package/src/components/navigation/Menu/Menu.styles.ts +25 -37
- package/src/components/navigation/Menu/Menu.tsx +8 -11
- package/src/components/navigation/Menu/Menu.types.ts +2 -2
- package/src/components/navigation/Menu/Menu.utils.ts +17 -17
- package/src/components/navigation/Menu/MenuItem.tsx +9 -11
- package/src/components/navigation/Menu/SubMenu.tsx +8 -6
- package/src/components/navigation/Menu/index.tsx +4 -69
- package/src/components/navigation/NavBar/NavBar.styles.ts +1 -1
- package/src/components/navigation/NavBar/NavBar.tsx +7 -10
- package/src/components/navigation/NavBar/NavBar.types.ts +3 -3
- package/src/components/navigation/NavBar/index.tsx +1 -1
- package/src/components/navigation/Pagination/Pagination.test.tsx +2 -3
- package/src/components/navigation/Pagination/Pagination.tsx +3 -3
- package/src/components/navigation/Pagination/Pagination.types.ts +3 -2
- package/src/components/navigation/Pagination/index.ts +9 -3
- package/src/components/navigation/Steps/Step.tsx +24 -44
- package/src/components/navigation/Steps/Steps.styles.ts +28 -13
- package/src/components/navigation/Steps/Steps.test.tsx +2 -0
- package/src/components/navigation/Steps/Steps.tsx +88 -89
- package/src/components/navigation/Steps/Steps.types.ts +30 -30
- package/src/components/navigation/Steps/index.tsx +1 -1
- package/src/components/navigation/Tabs/Tabs.test.tsx +3 -2
- package/src/components/navigation/Tabs/Tabs.types.ts +4 -3
- package/src/components/navigation/index.tsx +21 -16
- package/src/constants/index.ts +1 -1
- package/src/hooks/index.ts +52 -102
- package/src/hooks/types.ts +4 -5
- package/src/hooks/useAsync.ts +46 -47
- package/src/hooks/useClickOutside.ts +52 -0
- package/src/hooks/useCounter.ts +87 -0
- package/src/hooks/useDebounce.ts +150 -0
- package/src/hooks/useDeepCompareEffect.ts +88 -0
- package/src/hooks/useEventListener.ts +77 -0
- package/src/hooks/useMediaQuery.ts +75 -0
- package/src/hooks/useMutation.ts +233 -0
- package/src/hooks/usePerformance.ts +1 -64
- package/src/hooks/usePlatform.ts +3 -1
- package/src/hooks/usePrevious.ts +25 -0
- package/src/hooks/useRequest.ts +12 -7
- package/src/hooks/useStateManagement.ts +1 -1
- package/src/hooks/useStorage.ts +169 -0
- package/src/hooks/useStyle.ts +8 -2
- package/src/hooks/useToggle.ts +54 -0
- package/src/index.ts +34 -9
- package/src/theme/ThemeProvider.tsx +3 -7
- package/src/theme/ThemeProvider.types.ts +1 -1
- package/src/theme/defaults.ts +1 -1
- package/src/theme/design-system.ts +2 -2
- package/src/theme/design-tokens.ts +85 -99
- package/src/theme/generated/dark-theme.scss +1 -1
- package/src/theme/generated/tokens.scss +82 -18
- package/src/theme/index.ts +8 -29
- package/src/theme/responsive.tsx +36 -34
- package/src/theme/styles.ts +1 -1
- package/src/theme/useThemeUtils.ts +43 -43
- package/src/theme/utils.ts +32 -32
- package/src/theme/variables.ts +70 -51
- package/src/types/accessibility.ts +36 -37
- package/src/types/button.ts +25 -27
- package/src/types/component-props.ts +6 -1
- package/src/types/glob.d.ts +4 -0
- package/src/types/index.ts +2 -2
- package/src/types/standardized-components.ts +9 -3
- package/src/types/utils.ts +13 -23
- package/src/utils/__tests__/responsiveUtils.test.ts +5 -4
- package/src/utils/abort-controller.ts +48 -0
- package/src/utils/cache.ts +2 -6
- package/src/utils/createNamespace.ts +4 -4
- package/src/utils/environment.ts +26 -6
- package/src/utils/error-handler.ts +2 -2
- package/src/utils/errorLogger.ts +16 -20
- package/src/utils/formatUtils.ts +38 -70
- package/src/utils/http/error-codes.ts +314 -0
- package/src/utils/http/http-client.test.ts +63 -0
- package/src/utils/{network → http}/http-client.ts +45 -35
- package/src/utils/http/request-cache.ts +127 -0
- package/src/utils/http/request.ts +954 -0
- package/src/utils/http/taro-adapter.test.ts +74 -0
- package/src/utils/http/taro-adapter.ts +24 -0
- package/src/utils/http/types.ts +414 -0
- package/src/utils/http/web-adapter.ts +33 -0
- package/src/utils/index.ts +5 -8
- package/src/utils/inputValidator.ts +17 -14
- package/src/utils/performance/performance.ts +60 -71
- package/src/utils/responsiveUtils.ts +7 -16
- package/src/utils/rtl-support.ts +29 -19
- package/src/utils/security/api-security.ts +47 -39
- package/src/utils/securityHeaders.ts +61 -67
- package/src/utils/typeHelpers.ts +10 -10
- package/src/utils/types/dataProcessing.ts +93 -92
- package/src/utils/types/typeHelpers.ts +31 -21
- package/src/utils/xssProtection.ts +96 -48
- package/dist/js/index-6NJ3A1Dn.js.map +0 -1
- package/dist/js/index-DffLRSro.js.map +0 -1
- package/src/components/form/Input/Input.enhanced.tsx +0 -732
- package/src/components/navigation/Menu/__tests__/Menu.test.tsx +0 -687
- package/src/components/navigation/Tree/Tree.styles.ts +0 -553
- package/src/components/navigation/Tree/Tree.test.basic.tsx +0 -7
- package/src/components/navigation/Tree/Tree.test.functional.tsx +0 -496
- package/src/components/navigation/Tree/Tree.test.import.check.tsx +0 -6
- package/src/components/navigation/Tree/Tree.test.import.tsx +0 -6
- package/src/components/navigation/Tree/Tree.test.minimal.tsx +0 -5
- package/src/components/navigation/Tree/Tree.test.simple.tsx +0 -30
- package/src/components/navigation/Tree/Tree.test.tsx +0 -908
- package/src/components/navigation/Tree/Tree.test.working.tsx +0 -673
- package/src/components/navigation/Tree/Tree.tsx +0 -600
- package/src/components/navigation/Tree/Tree.types.ts +0 -909
- package/src/components/navigation/Tree/Tree.utils.ts +0 -452
- package/src/components/navigation/Tree/index.ts +0 -33
- package/src/components/navigation/Tree/index.tsx +0 -23
- package/src/utils/network/http-client.test.ts +0 -18
|
@@ -0,0 +1,1669 @@
|
|
|
1
|
+
export declare const affixStyles: {
|
|
2
|
+
affix: {
|
|
3
|
+
position: "fixed";
|
|
4
|
+
zIndex: number;
|
|
5
|
+
};
|
|
6
|
+
affixTop: {
|
|
7
|
+
top: number;
|
|
8
|
+
};
|
|
9
|
+
affixBottom: {
|
|
10
|
+
bottom: number;
|
|
11
|
+
};
|
|
12
|
+
affixRelative: {
|
|
13
|
+
position: "relative";
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
export declare const getAffixStyle: (affixed: boolean, position?: "top" | "bottom", offset?: number, customStyle?: React.CSSProperties) => {
|
|
17
|
+
accentColor?: import("csstype").Property.AccentColor | undefined;
|
|
18
|
+
alignContent?: import("csstype").Property.AlignContent | undefined;
|
|
19
|
+
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
20
|
+
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
21
|
+
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
22
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
23
|
+
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
24
|
+
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
25
|
+
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
26
|
+
animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
27
|
+
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
28
|
+
animationName?: import("csstype").Property.AnimationName | undefined;
|
|
29
|
+
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
30
|
+
animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
31
|
+
animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
32
|
+
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
|
|
33
|
+
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
34
|
+
appearance?: import("csstype").Property.Appearance | undefined;
|
|
35
|
+
aspectRatio?: import("csstype").Property.AspectRatio | undefined;
|
|
36
|
+
backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
|
|
37
|
+
backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
38
|
+
backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
|
|
39
|
+
backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
|
|
40
|
+
backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
41
|
+
backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
|
|
42
|
+
backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
|
|
43
|
+
backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
44
|
+
backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
|
|
45
|
+
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
46
|
+
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
47
|
+
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
48
|
+
blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
|
|
49
|
+
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
50
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
51
|
+
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
52
|
+
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
53
|
+
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
54
|
+
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
55
|
+
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
56
|
+
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
57
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
58
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
59
|
+
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
60
|
+
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
61
|
+
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
62
|
+
borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
|
|
63
|
+
borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
|
|
64
|
+
borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
|
|
65
|
+
borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
|
|
66
|
+
borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
|
|
67
|
+
borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
|
|
68
|
+
borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
|
|
69
|
+
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
70
|
+
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
71
|
+
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
72
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
73
|
+
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
74
|
+
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
75
|
+
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
76
|
+
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
77
|
+
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
78
|
+
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
79
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
80
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
81
|
+
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
82
|
+
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
83
|
+
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
84
|
+
borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
|
|
85
|
+
borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
|
|
86
|
+
borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
|
|
87
|
+
borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
|
|
88
|
+
borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
|
|
89
|
+
borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
|
|
90
|
+
borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
|
|
91
|
+
borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
92
|
+
borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
93
|
+
borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
|
|
94
|
+
borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
|
|
95
|
+
bottom?: import("csstype").Property.Bottom<string | number> | undefined;
|
|
96
|
+
boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
97
|
+
boxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
98
|
+
boxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
99
|
+
breakAfter?: import("csstype").Property.BreakAfter | undefined;
|
|
100
|
+
breakBefore?: import("csstype").Property.BreakBefore | undefined;
|
|
101
|
+
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
102
|
+
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
103
|
+
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
104
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
105
|
+
clear?: import("csstype").Property.Clear | undefined;
|
|
106
|
+
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
107
|
+
color?: import("csstype").Property.Color | undefined;
|
|
108
|
+
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
109
|
+
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
110
|
+
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
111
|
+
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
112
|
+
columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
113
|
+
columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
114
|
+
columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
115
|
+
columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
116
|
+
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
117
|
+
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
118
|
+
contain?: import("csstype").Property.Contain | undefined;
|
|
119
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
120
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
121
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
122
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
123
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
124
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
125
|
+
content?: import("csstype").Property.Content | undefined;
|
|
126
|
+
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
127
|
+
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
128
|
+
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
129
|
+
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
130
|
+
cursor?: import("csstype").Property.Cursor | undefined;
|
|
131
|
+
direction?: import("csstype").Property.Direction | undefined;
|
|
132
|
+
display?: import("csstype").Property.Display | undefined;
|
|
133
|
+
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
134
|
+
filter?: import("csstype").Property.Filter | undefined;
|
|
135
|
+
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
136
|
+
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
137
|
+
flexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
138
|
+
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
139
|
+
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
140
|
+
float?: import("csstype").Property.Float | undefined;
|
|
141
|
+
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
142
|
+
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
143
|
+
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
144
|
+
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
145
|
+
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
146
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
147
|
+
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
148
|
+
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
149
|
+
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
150
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
151
|
+
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
152
|
+
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
153
|
+
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
154
|
+
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
155
|
+
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
156
|
+
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
157
|
+
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
158
|
+
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
159
|
+
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
160
|
+
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
161
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
162
|
+
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
163
|
+
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
164
|
+
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
165
|
+
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
166
|
+
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
167
|
+
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
168
|
+
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
169
|
+
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
170
|
+
gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
|
|
171
|
+
gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
|
|
172
|
+
gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
|
|
173
|
+
gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
|
|
174
|
+
gridRowStart?: import("csstype").Property.GridRowStart | undefined;
|
|
175
|
+
gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
|
|
176
|
+
gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
|
|
177
|
+
gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
|
|
178
|
+
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
179
|
+
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
180
|
+
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
181
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
182
|
+
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
183
|
+
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
184
|
+
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
185
|
+
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
186
|
+
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
187
|
+
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
188
|
+
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
189
|
+
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
190
|
+
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
191
|
+
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
192
|
+
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
193
|
+
isolation?: import("csstype").Property.Isolation | undefined;
|
|
194
|
+
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
195
|
+
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
196
|
+
justifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
197
|
+
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
198
|
+
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
199
|
+
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
200
|
+
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
201
|
+
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
202
|
+
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
203
|
+
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
204
|
+
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
205
|
+
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
206
|
+
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
207
|
+
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
208
|
+
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
209
|
+
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
210
|
+
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
211
|
+
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
212
|
+
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
213
|
+
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
214
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
215
|
+
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
216
|
+
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
217
|
+
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
218
|
+
maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
|
|
219
|
+
maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
|
|
220
|
+
maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
|
|
221
|
+
maskClip?: import("csstype").Property.MaskClip | undefined;
|
|
222
|
+
maskComposite?: import("csstype").Property.MaskComposite | undefined;
|
|
223
|
+
maskImage?: import("csstype").Property.MaskImage | undefined;
|
|
224
|
+
maskMode?: import("csstype").Property.MaskMode | undefined;
|
|
225
|
+
maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
|
|
226
|
+
maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
|
|
227
|
+
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
228
|
+
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
229
|
+
maskType?: import("csstype").Property.MaskType | undefined;
|
|
230
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
231
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
232
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
233
|
+
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
234
|
+
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
235
|
+
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
236
|
+
maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
|
|
237
|
+
maxLines?: import("csstype").Property.MaxLines | undefined;
|
|
238
|
+
maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
|
|
239
|
+
minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
|
|
240
|
+
minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
|
|
241
|
+
minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
|
|
242
|
+
minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
|
|
243
|
+
mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
|
|
244
|
+
motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
245
|
+
motionPath?: import("csstype").Property.OffsetPath | undefined;
|
|
246
|
+
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
247
|
+
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
248
|
+
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
249
|
+
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
250
|
+
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
251
|
+
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
252
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
253
|
+
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
254
|
+
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
255
|
+
opacity?: import("csstype").Property.Opacity | undefined;
|
|
256
|
+
order?: import("csstype").Property.Order | undefined;
|
|
257
|
+
orphans?: import("csstype").Property.Orphans | undefined;
|
|
258
|
+
outlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
259
|
+
outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
|
|
260
|
+
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
261
|
+
outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
262
|
+
overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
|
|
263
|
+
overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
|
|
264
|
+
overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
|
|
265
|
+
overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
|
|
266
|
+
overflowInline?: import("csstype").Property.OverflowInline | undefined;
|
|
267
|
+
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
268
|
+
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
269
|
+
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
270
|
+
overlay?: import("csstype").Property.Overlay | undefined;
|
|
271
|
+
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
272
|
+
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
273
|
+
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
274
|
+
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
275
|
+
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
276
|
+
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
277
|
+
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
278
|
+
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
279
|
+
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
280
|
+
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
281
|
+
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
282
|
+
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
283
|
+
page?: import("csstype").Property.Page | undefined;
|
|
284
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
285
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
286
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
287
|
+
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
288
|
+
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
289
|
+
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
290
|
+
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
291
|
+
position?: import("csstype").Property.Position | undefined;
|
|
292
|
+
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
293
|
+
quotes?: import("csstype").Property.Quotes | undefined;
|
|
294
|
+
resize?: import("csstype").Property.Resize | undefined;
|
|
295
|
+
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
296
|
+
rotate?: import("csstype").Property.Rotate | undefined;
|
|
297
|
+
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
298
|
+
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
299
|
+
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
300
|
+
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
301
|
+
scale?: import("csstype").Property.Scale | undefined;
|
|
302
|
+
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
303
|
+
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
304
|
+
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
305
|
+
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
306
|
+
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
307
|
+
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
308
|
+
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
309
|
+
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
310
|
+
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
311
|
+
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
312
|
+
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
313
|
+
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
314
|
+
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
315
|
+
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
316
|
+
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
317
|
+
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
318
|
+
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
319
|
+
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
320
|
+
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
321
|
+
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
322
|
+
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
323
|
+
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
324
|
+
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
325
|
+
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
326
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
327
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
328
|
+
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
329
|
+
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
330
|
+
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
331
|
+
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
332
|
+
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
333
|
+
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
334
|
+
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
335
|
+
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
336
|
+
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
337
|
+
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
338
|
+
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
339
|
+
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
340
|
+
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
341
|
+
textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
|
|
342
|
+
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
343
|
+
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
344
|
+
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
345
|
+
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
346
|
+
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
347
|
+
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
348
|
+
textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
|
|
349
|
+
textJustify?: import("csstype").Property.TextJustify | undefined;
|
|
350
|
+
textOrientation?: import("csstype").Property.TextOrientation | undefined;
|
|
351
|
+
textOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
352
|
+
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
353
|
+
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
354
|
+
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
355
|
+
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
356
|
+
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
357
|
+
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
358
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
359
|
+
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
360
|
+
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
361
|
+
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
362
|
+
transform?: import("csstype").Property.Transform | undefined;
|
|
363
|
+
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
364
|
+
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
365
|
+
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
366
|
+
transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
|
|
367
|
+
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
368
|
+
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
369
|
+
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
370
|
+
transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
371
|
+
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
372
|
+
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
373
|
+
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
374
|
+
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
375
|
+
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
376
|
+
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
377
|
+
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
378
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
379
|
+
visibility?: import("csstype").Property.Visibility | undefined;
|
|
380
|
+
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
381
|
+
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
382
|
+
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
383
|
+
widows?: import("csstype").Property.Widows | undefined;
|
|
384
|
+
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
385
|
+
willChange?: import("csstype").Property.WillChange | undefined;
|
|
386
|
+
wordBreak?: import("csstype").Property.WordBreak | undefined;
|
|
387
|
+
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
388
|
+
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
389
|
+
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
390
|
+
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
391
|
+
zoom?: import("csstype").Property.Zoom | undefined;
|
|
392
|
+
all?: import("csstype").Property.All | undefined;
|
|
393
|
+
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
394
|
+
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
395
|
+
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
396
|
+
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
397
|
+
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
398
|
+
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
399
|
+
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
400
|
+
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
401
|
+
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
402
|
+
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
403
|
+
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
404
|
+
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
405
|
+
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
406
|
+
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
407
|
+
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
408
|
+
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
409
|
+
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
410
|
+
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
411
|
+
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
412
|
+
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
413
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
414
|
+
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
415
|
+
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
416
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
417
|
+
container?: import("csstype").Property.Container | undefined;
|
|
418
|
+
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
419
|
+
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
420
|
+
font?: import("csstype").Property.Font | undefined;
|
|
421
|
+
gap?: import("csstype").Property.Gap<string | number> | undefined;
|
|
422
|
+
grid?: import("csstype").Property.Grid | undefined;
|
|
423
|
+
gridArea?: import("csstype").Property.GridArea | undefined;
|
|
424
|
+
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
425
|
+
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
426
|
+
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
427
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
428
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
429
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
430
|
+
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
431
|
+
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
432
|
+
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
433
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
434
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
435
|
+
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
436
|
+
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
437
|
+
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
438
|
+
offset?: import("csstype").Property.Offset<string | number> | undefined;
|
|
439
|
+
outline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
440
|
+
overflow?: import("csstype").Property.Overflow | undefined;
|
|
441
|
+
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
442
|
+
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
443
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
444
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
445
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
446
|
+
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
447
|
+
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
448
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
449
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
450
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
451
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
452
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
453
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
454
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
455
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
456
|
+
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
457
|
+
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
458
|
+
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
459
|
+
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
460
|
+
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
461
|
+
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
462
|
+
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
463
|
+
MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
464
|
+
MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
465
|
+
MozAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
466
|
+
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
467
|
+
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
468
|
+
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
469
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
470
|
+
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
471
|
+
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
472
|
+
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
473
|
+
MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
474
|
+
MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
|
|
475
|
+
MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
|
|
476
|
+
MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
477
|
+
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
478
|
+
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
479
|
+
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
480
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
481
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
482
|
+
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
483
|
+
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
484
|
+
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
485
|
+
MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
486
|
+
MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
|
|
487
|
+
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
488
|
+
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
489
|
+
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
490
|
+
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
491
|
+
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
492
|
+
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
493
|
+
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
494
|
+
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
495
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
496
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
497
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
498
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
499
|
+
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
500
|
+
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
501
|
+
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
502
|
+
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
503
|
+
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
504
|
+
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
505
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
506
|
+
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
507
|
+
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
508
|
+
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
509
|
+
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
510
|
+
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
511
|
+
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
512
|
+
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
513
|
+
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
514
|
+
msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
|
|
515
|
+
msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
|
|
516
|
+
msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
|
|
517
|
+
msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
|
|
518
|
+
msFilter?: import("csstype").Property.MsFilter | undefined;
|
|
519
|
+
msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
520
|
+
msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
|
|
521
|
+
msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
|
|
522
|
+
msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
|
|
523
|
+
msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
|
|
524
|
+
msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
|
|
525
|
+
msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
|
|
526
|
+
msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
|
|
527
|
+
msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
|
|
528
|
+
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
529
|
+
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
530
|
+
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
531
|
+
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
532
|
+
msOrder?: import("csstype").Property.Order | undefined;
|
|
533
|
+
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
534
|
+
msOverflowX?: import("csstype").Property.OverflowX | undefined;
|
|
535
|
+
msOverflowY?: import("csstype").Property.OverflowY | undefined;
|
|
536
|
+
msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
|
|
537
|
+
msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
|
|
538
|
+
msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
|
|
539
|
+
msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
|
|
540
|
+
msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
|
|
541
|
+
msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
|
|
542
|
+
msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
|
|
543
|
+
msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
|
|
544
|
+
msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
|
|
545
|
+
msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
|
|
546
|
+
msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
|
|
547
|
+
msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
|
|
548
|
+
msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
|
|
549
|
+
msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
|
|
550
|
+
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
551
|
+
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
552
|
+
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
553
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
554
|
+
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
555
|
+
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
556
|
+
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
557
|
+
msTouchAction?: import("csstype").Property.TouchAction | undefined;
|
|
558
|
+
msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
|
|
559
|
+
msTransform?: import("csstype").Property.Transform | undefined;
|
|
560
|
+
msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
561
|
+
msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
562
|
+
msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
563
|
+
msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
564
|
+
msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
565
|
+
msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
|
|
566
|
+
msWordBreak?: import("csstype").Property.WordBreak | undefined;
|
|
567
|
+
msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
|
|
568
|
+
msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
|
|
569
|
+
msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
|
|
570
|
+
msWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
571
|
+
WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
|
|
572
|
+
WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
|
|
573
|
+
WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
574
|
+
WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
575
|
+
WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
576
|
+
WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
577
|
+
WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
578
|
+
WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
579
|
+
WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
580
|
+
WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
581
|
+
WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
582
|
+
WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
|
|
583
|
+
WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
|
|
584
|
+
WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
585
|
+
WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
586
|
+
WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
587
|
+
WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
588
|
+
WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
|
|
589
|
+
WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
|
|
590
|
+
WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
|
|
591
|
+
WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
592
|
+
WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
593
|
+
WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
594
|
+
WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
595
|
+
WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
596
|
+
WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
597
|
+
WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
|
|
598
|
+
WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
599
|
+
WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
600
|
+
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
601
|
+
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
602
|
+
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
603
|
+
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
604
|
+
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
605
|
+
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
606
|
+
WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
607
|
+
WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
608
|
+
WebkitFilter?: import("csstype").Property.Filter | undefined;
|
|
609
|
+
WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
610
|
+
WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
611
|
+
WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
612
|
+
WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
613
|
+
WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
614
|
+
WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
615
|
+
WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
616
|
+
WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
617
|
+
WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
618
|
+
WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
619
|
+
WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
620
|
+
WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
621
|
+
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
622
|
+
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
623
|
+
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
624
|
+
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
625
|
+
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
626
|
+
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
627
|
+
WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
628
|
+
WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
629
|
+
WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
|
|
630
|
+
WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
|
|
631
|
+
WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
|
|
632
|
+
WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
|
|
633
|
+
WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
|
|
634
|
+
WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
|
|
635
|
+
WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
|
|
636
|
+
WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
|
|
637
|
+
WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
|
|
638
|
+
WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
|
|
639
|
+
WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
|
|
640
|
+
WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
|
|
641
|
+
WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
|
|
642
|
+
WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
|
|
643
|
+
WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
|
|
644
|
+
WebkitOrder?: import("csstype").Property.Order | undefined;
|
|
645
|
+
WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
|
|
646
|
+
WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
647
|
+
WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
648
|
+
WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
649
|
+
WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
650
|
+
WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
651
|
+
WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
652
|
+
WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
653
|
+
WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
654
|
+
WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
|
|
655
|
+
WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
|
|
656
|
+
WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
657
|
+
WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
658
|
+
WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
|
|
659
|
+
WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
660
|
+
WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
661
|
+
WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
662
|
+
WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
663
|
+
WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
|
|
664
|
+
WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
|
|
665
|
+
WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
666
|
+
WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
|
|
667
|
+
WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
|
|
668
|
+
WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
669
|
+
WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
|
|
670
|
+
WebkitTransform?: import("csstype").Property.Transform | undefined;
|
|
671
|
+
WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
672
|
+
WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
673
|
+
WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
674
|
+
WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
675
|
+
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
676
|
+
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
677
|
+
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
678
|
+
WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
679
|
+
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
680
|
+
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
681
|
+
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
682
|
+
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
683
|
+
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
684
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
685
|
+
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
686
|
+
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
687
|
+
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
688
|
+
msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
|
|
689
|
+
msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
|
|
690
|
+
msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
|
|
691
|
+
msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
692
|
+
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
693
|
+
WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
|
|
694
|
+
WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
695
|
+
WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
696
|
+
WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
697
|
+
WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
698
|
+
WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
699
|
+
WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
700
|
+
WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
|
|
701
|
+
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
|
|
702
|
+
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
703
|
+
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
704
|
+
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
705
|
+
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
706
|
+
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
707
|
+
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
708
|
+
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
709
|
+
boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
710
|
+
boxLines?: import("csstype").Property.BoxLines | undefined;
|
|
711
|
+
boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
712
|
+
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
713
|
+
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
714
|
+
clip?: import("csstype").Property.Clip | undefined;
|
|
715
|
+
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
716
|
+
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
717
|
+
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
718
|
+
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
719
|
+
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
720
|
+
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
721
|
+
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
722
|
+
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
723
|
+
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
724
|
+
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
725
|
+
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
726
|
+
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
727
|
+
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
728
|
+
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
729
|
+
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
730
|
+
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
731
|
+
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
732
|
+
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
733
|
+
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
734
|
+
KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
735
|
+
KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
|
|
736
|
+
KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
737
|
+
KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
738
|
+
KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
739
|
+
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
740
|
+
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
741
|
+
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
742
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
743
|
+
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
744
|
+
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
745
|
+
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
746
|
+
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
747
|
+
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
748
|
+
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
749
|
+
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
750
|
+
MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
751
|
+
MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
752
|
+
MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
753
|
+
MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
754
|
+
MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
755
|
+
MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
756
|
+
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
757
|
+
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
758
|
+
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
759
|
+
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
760
|
+
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
761
|
+
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
762
|
+
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
763
|
+
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
764
|
+
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
765
|
+
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
766
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
767
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
768
|
+
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
769
|
+
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
770
|
+
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
771
|
+
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
772
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
773
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
774
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
775
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
776
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
777
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
778
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
779
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
780
|
+
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
781
|
+
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
782
|
+
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
783
|
+
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
784
|
+
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
785
|
+
OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
786
|
+
OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
787
|
+
OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
788
|
+
OAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
789
|
+
OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
790
|
+
OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
791
|
+
OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
792
|
+
OBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
793
|
+
OObjectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
794
|
+
OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
795
|
+
OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
796
|
+
OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
797
|
+
OTransform?: import("csstype").Property.Transform | undefined;
|
|
798
|
+
OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
799
|
+
OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
800
|
+
OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
801
|
+
OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
802
|
+
OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
803
|
+
OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
804
|
+
WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
805
|
+
WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
806
|
+
WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
807
|
+
WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
808
|
+
WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
|
|
809
|
+
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
810
|
+
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
811
|
+
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
812
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
813
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
814
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
815
|
+
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
816
|
+
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
817
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
818
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
819
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
820
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
821
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
822
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
823
|
+
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
824
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
825
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
826
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
827
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
828
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
829
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
830
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
831
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
832
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
833
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
834
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
835
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
836
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
837
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
838
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
839
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
840
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
841
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
842
|
+
};
|
|
843
|
+
export declare const getRelativeStyle: (customStyle?: React.CSSProperties) => {
|
|
844
|
+
accentColor?: import("csstype").Property.AccentColor | undefined;
|
|
845
|
+
alignContent?: import("csstype").Property.AlignContent | undefined;
|
|
846
|
+
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
847
|
+
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
848
|
+
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
849
|
+
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
850
|
+
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
851
|
+
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
852
|
+
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
853
|
+
animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
854
|
+
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
855
|
+
animationName?: import("csstype").Property.AnimationName | undefined;
|
|
856
|
+
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
857
|
+
animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
858
|
+
animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
859
|
+
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
|
|
860
|
+
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
861
|
+
appearance?: import("csstype").Property.Appearance | undefined;
|
|
862
|
+
aspectRatio?: import("csstype").Property.AspectRatio | undefined;
|
|
863
|
+
backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
|
|
864
|
+
backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
865
|
+
backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
|
|
866
|
+
backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
|
|
867
|
+
backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
868
|
+
backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
|
|
869
|
+
backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
|
|
870
|
+
backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
871
|
+
backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
|
|
872
|
+
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
873
|
+
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
874
|
+
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
875
|
+
blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
|
|
876
|
+
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
877
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
878
|
+
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
879
|
+
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
880
|
+
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
881
|
+
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
882
|
+
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
883
|
+
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
884
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
885
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
886
|
+
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
887
|
+
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
888
|
+
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
889
|
+
borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
|
|
890
|
+
borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
|
|
891
|
+
borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
|
|
892
|
+
borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
|
|
893
|
+
borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
|
|
894
|
+
borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
|
|
895
|
+
borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
|
|
896
|
+
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
897
|
+
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
898
|
+
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
899
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
900
|
+
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
901
|
+
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
902
|
+
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
903
|
+
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
904
|
+
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
905
|
+
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
906
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
907
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
908
|
+
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
909
|
+
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
910
|
+
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
911
|
+
borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
|
|
912
|
+
borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
|
|
913
|
+
borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
|
|
914
|
+
borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
|
|
915
|
+
borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
|
|
916
|
+
borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
|
|
917
|
+
borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
|
|
918
|
+
borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
919
|
+
borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
920
|
+
borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
|
|
921
|
+
borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
|
|
922
|
+
bottom?: import("csstype").Property.Bottom<string | number> | undefined;
|
|
923
|
+
boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
924
|
+
boxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
925
|
+
boxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
926
|
+
breakAfter?: import("csstype").Property.BreakAfter | undefined;
|
|
927
|
+
breakBefore?: import("csstype").Property.BreakBefore | undefined;
|
|
928
|
+
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
929
|
+
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
930
|
+
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
931
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
932
|
+
clear?: import("csstype").Property.Clear | undefined;
|
|
933
|
+
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
934
|
+
color?: import("csstype").Property.Color | undefined;
|
|
935
|
+
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
936
|
+
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
937
|
+
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
938
|
+
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
939
|
+
columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
940
|
+
columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
941
|
+
columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
942
|
+
columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
943
|
+
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
944
|
+
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
945
|
+
contain?: import("csstype").Property.Contain | undefined;
|
|
946
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
947
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
948
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
949
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
950
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
951
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
952
|
+
content?: import("csstype").Property.Content | undefined;
|
|
953
|
+
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
954
|
+
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
955
|
+
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
956
|
+
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
957
|
+
cursor?: import("csstype").Property.Cursor | undefined;
|
|
958
|
+
direction?: import("csstype").Property.Direction | undefined;
|
|
959
|
+
display?: import("csstype").Property.Display | undefined;
|
|
960
|
+
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
961
|
+
filter?: import("csstype").Property.Filter | undefined;
|
|
962
|
+
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
963
|
+
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
964
|
+
flexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
965
|
+
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
966
|
+
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
967
|
+
float?: import("csstype").Property.Float | undefined;
|
|
968
|
+
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
969
|
+
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
970
|
+
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
971
|
+
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
972
|
+
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
973
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
974
|
+
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
975
|
+
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
976
|
+
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
977
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
978
|
+
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
979
|
+
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
980
|
+
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
981
|
+
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
982
|
+
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
983
|
+
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
984
|
+
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
985
|
+
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
986
|
+
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
987
|
+
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
988
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
989
|
+
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
990
|
+
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
991
|
+
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
992
|
+
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
993
|
+
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
994
|
+
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
995
|
+
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
996
|
+
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
997
|
+
gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
|
|
998
|
+
gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
|
|
999
|
+
gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
|
|
1000
|
+
gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
|
|
1001
|
+
gridRowStart?: import("csstype").Property.GridRowStart | undefined;
|
|
1002
|
+
gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
|
|
1003
|
+
gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
|
|
1004
|
+
gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
|
|
1005
|
+
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
1006
|
+
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
1007
|
+
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
1008
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
1009
|
+
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1010
|
+
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
1011
|
+
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
1012
|
+
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
1013
|
+
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
1014
|
+
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
1015
|
+
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
1016
|
+
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
1017
|
+
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
1018
|
+
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
1019
|
+
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
1020
|
+
isolation?: import("csstype").Property.Isolation | undefined;
|
|
1021
|
+
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
1022
|
+
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
1023
|
+
justifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
1024
|
+
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
1025
|
+
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
1026
|
+
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
1027
|
+
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1028
|
+
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
1029
|
+
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
1030
|
+
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
1031
|
+
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
1032
|
+
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
1033
|
+
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
1034
|
+
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
1035
|
+
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
1036
|
+
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1037
|
+
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1038
|
+
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
1039
|
+
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
1040
|
+
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
1041
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
1042
|
+
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
1043
|
+
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
1044
|
+
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
1045
|
+
maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
|
|
1046
|
+
maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
|
|
1047
|
+
maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
|
|
1048
|
+
maskClip?: import("csstype").Property.MaskClip | undefined;
|
|
1049
|
+
maskComposite?: import("csstype").Property.MaskComposite | undefined;
|
|
1050
|
+
maskImage?: import("csstype").Property.MaskImage | undefined;
|
|
1051
|
+
maskMode?: import("csstype").Property.MaskMode | undefined;
|
|
1052
|
+
maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
|
|
1053
|
+
maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
|
|
1054
|
+
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
1055
|
+
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
1056
|
+
maskType?: import("csstype").Property.MaskType | undefined;
|
|
1057
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
1058
|
+
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
1059
|
+
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
1060
|
+
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
1061
|
+
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
1062
|
+
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
1063
|
+
maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
|
|
1064
|
+
maxLines?: import("csstype").Property.MaxLines | undefined;
|
|
1065
|
+
maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
|
|
1066
|
+
minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
|
|
1067
|
+
minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
|
|
1068
|
+
minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
|
|
1069
|
+
minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
|
|
1070
|
+
mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
|
|
1071
|
+
motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
1072
|
+
motionPath?: import("csstype").Property.OffsetPath | undefined;
|
|
1073
|
+
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
1074
|
+
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
1075
|
+
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
1076
|
+
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
1077
|
+
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
1078
|
+
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
1079
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
1080
|
+
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
1081
|
+
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
1082
|
+
opacity?: import("csstype").Property.Opacity | undefined;
|
|
1083
|
+
order?: import("csstype").Property.Order | undefined;
|
|
1084
|
+
orphans?: import("csstype").Property.Orphans | undefined;
|
|
1085
|
+
outlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
1086
|
+
outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
|
|
1087
|
+
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
1088
|
+
outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1089
|
+
overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
|
|
1090
|
+
overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
|
|
1091
|
+
overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
|
|
1092
|
+
overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
|
|
1093
|
+
overflowInline?: import("csstype").Property.OverflowInline | undefined;
|
|
1094
|
+
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
1095
|
+
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
1096
|
+
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
1097
|
+
overlay?: import("csstype").Property.Overlay | undefined;
|
|
1098
|
+
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
1099
|
+
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
1100
|
+
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
1101
|
+
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
1102
|
+
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
1103
|
+
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
1104
|
+
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
1105
|
+
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1106
|
+
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1107
|
+
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
1108
|
+
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
1109
|
+
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
1110
|
+
page?: import("csstype").Property.Page | undefined;
|
|
1111
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
1112
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
1113
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
1114
|
+
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
1115
|
+
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1116
|
+
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1117
|
+
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
1118
|
+
position: import("csstype").Property.Position;
|
|
1119
|
+
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
1120
|
+
quotes?: import("csstype").Property.Quotes | undefined;
|
|
1121
|
+
resize?: import("csstype").Property.Resize | undefined;
|
|
1122
|
+
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
1123
|
+
rotate?: import("csstype").Property.Rotate | undefined;
|
|
1124
|
+
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
1125
|
+
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
1126
|
+
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
1127
|
+
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
1128
|
+
scale?: import("csstype").Property.Scale | undefined;
|
|
1129
|
+
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
1130
|
+
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1131
|
+
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1132
|
+
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1133
|
+
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
1134
|
+
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
1135
|
+
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1136
|
+
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1137
|
+
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1138
|
+
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
1139
|
+
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
1140
|
+
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
1141
|
+
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
1142
|
+
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
1143
|
+
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
1144
|
+
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
1145
|
+
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
1146
|
+
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
1147
|
+
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1148
|
+
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1149
|
+
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1150
|
+
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1151
|
+
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
1152
|
+
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
1153
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
1154
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
1155
|
+
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
1156
|
+
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
1157
|
+
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
1158
|
+
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
1159
|
+
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
1160
|
+
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
1161
|
+
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1162
|
+
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
1163
|
+
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
1164
|
+
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
1165
|
+
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
1166
|
+
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1167
|
+
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1168
|
+
textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
|
|
1169
|
+
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
1170
|
+
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1171
|
+
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
1172
|
+
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
1173
|
+
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
1174
|
+
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
1175
|
+
textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
|
|
1176
|
+
textJustify?: import("csstype").Property.TextJustify | undefined;
|
|
1177
|
+
textOrientation?: import("csstype").Property.TextOrientation | undefined;
|
|
1178
|
+
textOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
1179
|
+
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
1180
|
+
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
1181
|
+
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1182
|
+
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
1183
|
+
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
1184
|
+
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
1185
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
1186
|
+
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
1187
|
+
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
1188
|
+
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
1189
|
+
transform?: import("csstype").Property.Transform | undefined;
|
|
1190
|
+
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
1191
|
+
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1192
|
+
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1193
|
+
transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
|
|
1194
|
+
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1195
|
+
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1196
|
+
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1197
|
+
transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1198
|
+
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
1199
|
+
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1200
|
+
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1201
|
+
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
1202
|
+
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
1203
|
+
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
1204
|
+
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
1205
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1206
|
+
visibility?: import("csstype").Property.Visibility | undefined;
|
|
1207
|
+
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
1208
|
+
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
1209
|
+
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
1210
|
+
widows?: import("csstype").Property.Widows | undefined;
|
|
1211
|
+
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
1212
|
+
willChange?: import("csstype").Property.WillChange | undefined;
|
|
1213
|
+
wordBreak?: import("csstype").Property.WordBreak | undefined;
|
|
1214
|
+
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
1215
|
+
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
1216
|
+
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
1217
|
+
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
1218
|
+
zoom?: import("csstype").Property.Zoom | undefined;
|
|
1219
|
+
all?: import("csstype").Property.All | undefined;
|
|
1220
|
+
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
1221
|
+
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
1222
|
+
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
1223
|
+
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
1224
|
+
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
1225
|
+
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
1226
|
+
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
1227
|
+
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
1228
|
+
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
1229
|
+
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
1230
|
+
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1231
|
+
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
1232
|
+
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
1233
|
+
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
1234
|
+
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
1235
|
+
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
1236
|
+
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
1237
|
+
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
1238
|
+
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
1239
|
+
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
1240
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
1241
|
+
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1242
|
+
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1243
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
1244
|
+
container?: import("csstype").Property.Container | undefined;
|
|
1245
|
+
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
1246
|
+
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
1247
|
+
font?: import("csstype").Property.Font | undefined;
|
|
1248
|
+
gap?: import("csstype").Property.Gap<string | number> | undefined;
|
|
1249
|
+
grid?: import("csstype").Property.Grid | undefined;
|
|
1250
|
+
gridArea?: import("csstype").Property.GridArea | undefined;
|
|
1251
|
+
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
1252
|
+
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
1253
|
+
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
1254
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
1255
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1256
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1257
|
+
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
1258
|
+
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
1259
|
+
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
1260
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
1261
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
1262
|
+
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
1263
|
+
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
1264
|
+
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
1265
|
+
offset?: import("csstype").Property.Offset<string | number> | undefined;
|
|
1266
|
+
outline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1267
|
+
overflow?: import("csstype").Property.Overflow | undefined;
|
|
1268
|
+
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
1269
|
+
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
1270
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
1271
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
1272
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
1273
|
+
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
1274
|
+
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
1275
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1276
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
1277
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
1278
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
1279
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
1280
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
1281
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1282
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
1283
|
+
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
1284
|
+
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
1285
|
+
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1286
|
+
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
1287
|
+
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1288
|
+
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
1289
|
+
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
1290
|
+
MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
1291
|
+
MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1292
|
+
MozAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
1293
|
+
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1294
|
+
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1295
|
+
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
1296
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
1297
|
+
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
1298
|
+
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
1299
|
+
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
1300
|
+
MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
1301
|
+
MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
|
|
1302
|
+
MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
|
|
1303
|
+
MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
1304
|
+
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
1305
|
+
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
1306
|
+
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
1307
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1308
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1309
|
+
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1310
|
+
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1311
|
+
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
1312
|
+
MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
1313
|
+
MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
|
|
1314
|
+
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
1315
|
+
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
1316
|
+
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1317
|
+
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
1318
|
+
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1319
|
+
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1320
|
+
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
1321
|
+
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1322
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1323
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1324
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1325
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1326
|
+
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1327
|
+
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1328
|
+
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
1329
|
+
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1330
|
+
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
1331
|
+
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1332
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
1333
|
+
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
1334
|
+
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1335
|
+
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
1336
|
+
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
1337
|
+
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
1338
|
+
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
1339
|
+
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
1340
|
+
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
1341
|
+
msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
|
|
1342
|
+
msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
|
|
1343
|
+
msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
|
|
1344
|
+
msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
|
|
1345
|
+
msFilter?: import("csstype").Property.MsFilter | undefined;
|
|
1346
|
+
msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
1347
|
+
msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
|
|
1348
|
+
msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
|
|
1349
|
+
msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
|
|
1350
|
+
msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
|
|
1351
|
+
msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
|
|
1352
|
+
msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
|
|
1353
|
+
msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
|
|
1354
|
+
msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
|
|
1355
|
+
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
1356
|
+
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1357
|
+
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
1358
|
+
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1359
|
+
msOrder?: import("csstype").Property.Order | undefined;
|
|
1360
|
+
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
1361
|
+
msOverflowX?: import("csstype").Property.OverflowX | undefined;
|
|
1362
|
+
msOverflowY?: import("csstype").Property.OverflowY | undefined;
|
|
1363
|
+
msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
|
|
1364
|
+
msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
|
|
1365
|
+
msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
|
|
1366
|
+
msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
|
|
1367
|
+
msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
|
|
1368
|
+
msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
|
|
1369
|
+
msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
|
|
1370
|
+
msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
|
|
1371
|
+
msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
|
|
1372
|
+
msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
|
|
1373
|
+
msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
|
|
1374
|
+
msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
|
|
1375
|
+
msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
|
|
1376
|
+
msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
|
|
1377
|
+
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
1378
|
+
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
1379
|
+
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
1380
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1381
|
+
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
1382
|
+
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
1383
|
+
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
1384
|
+
msTouchAction?: import("csstype").Property.TouchAction | undefined;
|
|
1385
|
+
msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
|
|
1386
|
+
msTransform?: import("csstype").Property.Transform | undefined;
|
|
1387
|
+
msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1388
|
+
msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1389
|
+
msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1390
|
+
msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1391
|
+
msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1392
|
+
msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
|
|
1393
|
+
msWordBreak?: import("csstype").Property.WordBreak | undefined;
|
|
1394
|
+
msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
|
|
1395
|
+
msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
|
|
1396
|
+
msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
|
|
1397
|
+
msWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
1398
|
+
WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
|
|
1399
|
+
WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
|
|
1400
|
+
WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
1401
|
+
WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1402
|
+
WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
1403
|
+
WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
1404
|
+
WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
1405
|
+
WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1406
|
+
WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
1407
|
+
WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1408
|
+
WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1409
|
+
WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
|
|
1410
|
+
WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
|
|
1411
|
+
WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1412
|
+
WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
1413
|
+
WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
1414
|
+
WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1415
|
+
WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
|
|
1416
|
+
WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
|
|
1417
|
+
WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
|
|
1418
|
+
WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1419
|
+
WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
1420
|
+
WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
1421
|
+
WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
1422
|
+
WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
1423
|
+
WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1424
|
+
WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
|
|
1425
|
+
WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
1426
|
+
WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
1427
|
+
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
1428
|
+
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1429
|
+
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1430
|
+
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1431
|
+
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1432
|
+
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
1433
|
+
WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
1434
|
+
WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
1435
|
+
WebkitFilter?: import("csstype").Property.Filter | undefined;
|
|
1436
|
+
WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
1437
|
+
WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
1438
|
+
WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
1439
|
+
WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
1440
|
+
WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
1441
|
+
WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
1442
|
+
WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
1443
|
+
WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1444
|
+
WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
1445
|
+
WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
1446
|
+
WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1447
|
+
WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
1448
|
+
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
1449
|
+
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1450
|
+
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
1451
|
+
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1452
|
+
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1453
|
+
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
1454
|
+
WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
1455
|
+
WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
1456
|
+
WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
|
|
1457
|
+
WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
|
|
1458
|
+
WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
|
|
1459
|
+
WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
|
|
1460
|
+
WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
|
|
1461
|
+
WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
|
|
1462
|
+
WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
|
|
1463
|
+
WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
|
|
1464
|
+
WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
|
|
1465
|
+
WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
|
|
1466
|
+
WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
|
|
1467
|
+
WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
|
|
1468
|
+
WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
|
|
1469
|
+
WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
|
|
1470
|
+
WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
|
|
1471
|
+
WebkitOrder?: import("csstype").Property.Order | undefined;
|
|
1472
|
+
WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
|
|
1473
|
+
WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1474
|
+
WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1475
|
+
WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1476
|
+
WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1477
|
+
WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
1478
|
+
WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
1479
|
+
WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
1480
|
+
WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
1481
|
+
WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
|
|
1482
|
+
WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
|
|
1483
|
+
WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1484
|
+
WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1485
|
+
WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
|
|
1486
|
+
WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1487
|
+
WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
1488
|
+
WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
1489
|
+
WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
1490
|
+
WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
|
|
1491
|
+
WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
|
|
1492
|
+
WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1493
|
+
WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
|
|
1494
|
+
WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
|
|
1495
|
+
WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
1496
|
+
WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
|
|
1497
|
+
WebkitTransform?: import("csstype").Property.Transform | undefined;
|
|
1498
|
+
WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1499
|
+
WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1500
|
+
WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1501
|
+
WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1502
|
+
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1503
|
+
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1504
|
+
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
1505
|
+
WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1506
|
+
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
1507
|
+
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
1508
|
+
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1509
|
+
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1510
|
+
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1511
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1512
|
+
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
1513
|
+
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
1514
|
+
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
1515
|
+
msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
|
|
1516
|
+
msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
|
|
1517
|
+
msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
|
|
1518
|
+
msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1519
|
+
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
1520
|
+
WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
|
|
1521
|
+
WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1522
|
+
WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
1523
|
+
WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1524
|
+
WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1525
|
+
WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
1526
|
+
WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
1527
|
+
WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
|
|
1528
|
+
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
|
|
1529
|
+
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
1530
|
+
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
1531
|
+
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1532
|
+
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
1533
|
+
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
1534
|
+
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
1535
|
+
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
1536
|
+
boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
1537
|
+
boxLines?: import("csstype").Property.BoxLines | undefined;
|
|
1538
|
+
boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1539
|
+
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1540
|
+
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1541
|
+
clip?: import("csstype").Property.Clip | undefined;
|
|
1542
|
+
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
1543
|
+
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
1544
|
+
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
1545
|
+
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1546
|
+
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1547
|
+
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
1548
|
+
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
1549
|
+
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1550
|
+
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
1551
|
+
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
1552
|
+
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1553
|
+
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
1554
|
+
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
1555
|
+
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1556
|
+
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
1557
|
+
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
1558
|
+
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
1559
|
+
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
1560
|
+
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
1561
|
+
KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
1562
|
+
KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
|
|
1563
|
+
KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1564
|
+
KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1565
|
+
KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1566
|
+
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1567
|
+
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1568
|
+
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1569
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1570
|
+
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
1571
|
+
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1572
|
+
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
1573
|
+
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1574
|
+
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
1575
|
+
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1576
|
+
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
1577
|
+
MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
1578
|
+
MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
1579
|
+
MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
1580
|
+
MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
1581
|
+
MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
1582
|
+
MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1583
|
+
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1584
|
+
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1585
|
+
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
1586
|
+
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
1587
|
+
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
1588
|
+
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1589
|
+
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1590
|
+
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
1591
|
+
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
1592
|
+
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1593
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1594
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1595
|
+
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
1596
|
+
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1597
|
+
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1598
|
+
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1599
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
1600
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1601
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1602
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1603
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1604
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1605
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1606
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1607
|
+
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
1608
|
+
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
1609
|
+
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
1610
|
+
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1611
|
+
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
1612
|
+
OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
1613
|
+
OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
1614
|
+
OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1615
|
+
OAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
1616
|
+
OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1617
|
+
OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1618
|
+
OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1619
|
+
OBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1620
|
+
OObjectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
1621
|
+
OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
1622
|
+
OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1623
|
+
OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
1624
|
+
OTransform?: import("csstype").Property.Transform | undefined;
|
|
1625
|
+
OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1626
|
+
OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1627
|
+
OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1628
|
+
OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1629
|
+
OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1630
|
+
OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1631
|
+
WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
1632
|
+
WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
1633
|
+
WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
1634
|
+
WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
1635
|
+
WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
|
|
1636
|
+
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1637
|
+
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1638
|
+
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1639
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
1640
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
1641
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
1642
|
+
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
1643
|
+
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
1644
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
1645
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
1646
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
1647
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
1648
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
1649
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
1650
|
+
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
1651
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
1652
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
1653
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
1654
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
1655
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
1656
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
1657
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
1658
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
1659
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
1660
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
1661
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
1662
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
1663
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
1664
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
1665
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
1666
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
1667
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
1668
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
1669
|
+
};
|