import { StringHack, AnimationDelayProperty, AnimationDirectionProperty, AnimationDurationProperty, AnimationFillModeProperty, AnimationIterationCountProperty, AnimationNameProperty, AnimationPlayStateProperty, AnimationTimingFunctionProperty, MozAppearanceProperty, BackfaceVisibilityProperty, MozBorderBottomColorsProperty, BorderInlineEndColorProperty, BorderInlineEndStyleProperty, BorderInlineEndWidthProperty, MozBorderLeftColorsProperty, MozBorderRightColorsProperty, BorderInlineStartColorProperty, BorderInlineStartStyleProperty, MozBorderTopColorsProperty, BoxSizingProperty, ColumnCountProperty, ColumnFillProperty, ColumnGapProperty, ColumnRuleColorProperty, ColumnRuleStyleProperty, ColumnRuleWidthProperty, ColumnWidthProperty, MozContextPropertiesProperty, MozFloatEdgeProperty, FontFeatureSettingsProperty, FontLanguageOverrideProperty, MozForceBrokenImageIconProperty, HyphensProperty, MozImageRegionProperty, MarginInlineEndProperty, MarginInlineStartProperty, MozOrientProperty, MozOutlineRadiusBottomleftProperty, MozOutlineRadiusBottomrightProperty, MozOutlineRadiusTopleftProperty, MozOutlineRadiusToprightProperty, PaddingInlineEndProperty, PaddingInlineStartProperty, PerspectiveProperty, PerspectiveOriginProperty, MozStackSizingProperty, TabSizeProperty, TextSizeAdjustProperty, TransformOriginProperty, TransformStyleProperty, TransitionDelayProperty, TransitionDurationProperty, TransitionPropertyProperty, TransitionTimingFunctionProperty, MozUserFocusProperty, MozUserModifyProperty, UserSelectProperty, MozWindowDraggingProperty, MozWindowShadowProperty, MsAcceleratorProperty, AlignSelfProperty, MsBlockProgressionProperty, MsContentZoomChainingProperty, MsContentZoomLimitMaxProperty, MsContentZoomLimitMinProperty, MsContentZoomSnapPointsProperty, MsContentZoomSnapTypeProperty, MsContentZoomingProperty, MsFilterProperty, FlexDirectionProperty, FlexGrowProperty, MsFlowFromProperty, MsFlowIntoProperty, GridAutoColumnsProperty, GridAutoRowsProperty, MsHighContrastAdjustProperty, MsHyphenateLimitCharsProperty, MsHyphenateLimitLinesProperty, MsHyphenateLimitZoneProperty, MsImeAlignProperty, LineBreakProperty, OrderProperty, MsOverflowStyleProperty, OverflowXProperty, OverflowYProperty, MsScrollChainingProperty, MsScrollLimitXMaxProperty, MsScrollLimitXMinProperty, MsScrollLimitYMaxProperty, MsScrollLimitYMinProperty, MsScrollRailsProperty, MsScrollSnapPointsXProperty, MsScrollSnapPointsYProperty, MsScrollSnapTypeProperty, MsScrollTranslationProperty, MsTextAutospaceProperty, TextCombineUprightProperty, TextOverflowProperty, TouchActionProperty, MsTouchSelectProperty, TransformProperty, MsUserSelectProperty, WordBreakProperty, MsWrapFlowProperty, MsWrapMarginProperty, MsWrapThroughProperty, WritingModeProperty, ObjectFitProperty, ObjectPositionProperty, AlignContentProperty, AlignItemsProperty, WebkitAppearanceProperty, BackdropFilterProperty, BackgroundClipProperty, BackgroundOriginProperty, BackgroundSizeProperty, WebkitBorderBeforeColorProperty, WebkitBorderBeforeStyleProperty, WebkitBorderBeforeWidthProperty, BorderBottomLeftRadiusProperty, BorderBottomRightRadiusProperty, BorderImageSliceProperty, BorderTopLeftRadiusProperty, BorderTopRightRadiusProperty, BoxDecorationBreakProperty, WebkitBoxReflectProperty, BoxShadowProperty, ClipPathProperty, ColorAdjustProperty, ColumnSpanProperty, FilterProperty, FlexBasisProperty, FlexShrinkProperty, FlexWrapProperty, FontKerningProperty, FontVariantLigaturesProperty, JustifyContentProperty, WebkitMaskAttachmentProperty, WebkitMaskClipProperty, WebkitMaskCompositeProperty, WebkitMaskImageProperty, WebkitMaskOriginProperty, WebkitMaskPositionProperty, WebkitMaskPositionXProperty, WebkitMaskPositionYProperty, WebkitMaskRepeatProperty, WebkitMaskRepeatXProperty, WebkitMaskRepeatYProperty, WebkitMaskSizeProperty, MaxInlineSizeProperty, WebkitOverflowScrollingProperty, ScrollSnapTypeProperty, ShapeMarginProperty, WebkitTapHighlightColorProperty, TextDecorationColorProperty, TextDecorationLineProperty, TextDecorationSkipProperty, TextDecorationStyleProperty, TextEmphasisColorProperty, TextEmphasisPositionProperty, TextEmphasisStyleProperty, WebkitTextFillColorProperty, TextOrientationProperty, WebkitTextStrokeColorProperty, WebkitTextStrokeWidthProperty, WebkitTouchCalloutProperty, WebkitUserModifyProperty, } from "./index"; export interface VendorLonghandPropertiesFallback { /** * The **`animation-delay`** CSS property sets when an animation starts. The animation can start later, immediately from its beginning, or immediately and partway through the animation. * * **Initial value**: `0s` */ MozAnimationDelay?: AnimationDelayProperty | AnimationDelayProperty[]; /** * The **`animation-direction`** CSS property sets whether an animation should play forwards, backwards, or alternating back and forth. * * **Initial value**: `normal` */ MozAnimationDirection?: AnimationDirectionProperty | AnimationDirectionProperty[]; /** * The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle. * * **Initial value**: `0s` */ MozAnimationDuration?: AnimationDurationProperty | AnimationDurationProperty[]; /** * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution. * * **Initial value**: `none` */ MozAnimationFillMode?: AnimationFillModeProperty | AnimationFillModeProperty[]; /** * The **`animation-iteration-count`** CSS property sets the number of times an animation cycle should be played before stopping. * * **Initial value**: `1` */ MozAnimationIterationCount?: AnimationIterationCountProperty | AnimationIterationCountProperty[]; /** * The **`animation-name`** CSS property sets one or more animations to apply to an element. Each name is an `@keyframes` at-rule that sets the property values for the animation sequence. * * **Initial value**: `none` */ MozAnimationName?: AnimationNameProperty | AnimationNameProperty[]; /** * The **`animation-play-state`** CSS property sets whether an animation is running or paused. * * **Initial value**: `running` */ MozAnimationPlayState?: AnimationPlayStateProperty | AnimationPlayStateProperty[]; /** * The `**animation-timing-function**` CSS property sets how an animation progresses through the duration of each cycle. * * **Initial value**: `ease` */ MozAnimationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[]; /** * The **`-moz-appearance`** CSS property is used in Gecko (Firefox) to display an element using platform-native styling based on the operating system's theme. * * **Initial value**: `none` (but this value is overridden in the user agent CSS) */ MozAppearance?: MozAppearanceProperty | MozAppearanceProperty[]; /** * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user. * * **Initial value**: `visible` */ MozBackfaceVisibility?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[]; /** * In Mozilla applications like Firefox, the **`-moz-border-bottom-colors`** CSS property sets a list of colors for the bottom border. * * **Initial value**: `none` */ MozBorderBottomColors?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[]; /** * The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * **Initial value**: `currentcolor` */ MozBorderEndColor?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[]; /** * The **`border-inline-end-style`** CSS property defines the style of the logical inline end border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * **Initial value**: `none` */ MozBorderEndStyle?: BorderInlineEndStyleProperty | BorderInlineEndStyleProperty[]; /** * The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * **Initial value**: `medium` */ MozBorderEndWidth?: BorderInlineEndWidthProperty | BorderInlineEndWidthProperty[]; /** * In Mozilla applications like Firefox, the **`-moz-border-left-colors`** CSS property sets a list of colors for the left border. * * **Initial value**: `none` */ MozBorderLeftColors?: MozBorderLeftColorsProperty | MozBorderLeftColorsProperty[]; /** * In Mozilla applications like Firefox, the **`-moz-border-right-colors`** CSS property sets a list of colors for the right border. * * **Initial value**: `none` */ MozBorderRightColors?: MozBorderRightColorsProperty | MozBorderRightColorsProperty[]; /** * The **`border-inline-start-color`** CSS property defines the color of the logical inline start border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * **Initial value**: `currentcolor` */ MozBorderStartColor?: BorderInlineStartColorProperty | BorderInlineStartColorProperty[]; /** * The **`border-inline-start-style`** CSS property defines the style of the logical inline start border of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * **Initial value**: `none` */ MozBorderStartStyle?: BorderInlineStartStyleProperty | BorderInlineStartStyleProperty[]; /** * In Mozilla applications like Firefox, the **`-moz-border-top-colors`** CSS property sets a list of colors for the top border. * * **Initial value**: `none` */ MozBorderTopColors?: MozBorderTopColorsProperty | MozBorderTopColorsProperty[]; /** * The **`box-sizing`** CSS property defines how the user agent should calculate the total width and height of an element. * * **Initial value**: `content-box` */ MozBoxSizing?: BoxSizingProperty | BoxSizingProperty[]; /** * The **`column-count`** CSS property breaks an element's content into the specified number of columns. * * **Initial value**: `auto` */ MozColumnCount?: ColumnCountProperty | ColumnCountProperty[]; /** * The **`column-fill`** CSS property controls how an element's contents are balanced when broken into columns. * * **Initial value**: `balance` */ MozColumnFill?: ColumnFillProperty | ColumnFillProperty[]; /** * The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns. * * **Initial value**: `normal` */ MozColumnGap?: ColumnGapProperty | ColumnGapProperty[]; /** * The **`column-rule-color`** CSS property sets the color of the rule (line) drawn between columns in a multi-column layout. * * **Initial value**: `currentcolor` */ MozColumnRuleColor?: ColumnRuleColorProperty | ColumnRuleColorProperty[]; /** * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. * * **Initial value**: `none` */ MozColumnRuleStyle?: ColumnRuleStyleProperty | ColumnRuleStyleProperty[]; /** * The **`column-rule-width`** CSS property sets the width of the rule (line) drawn between columns in a multi-column layout. * * **Initial value**: `medium` */ MozColumnRuleWidth?: ColumnRuleWidthProperty | ColumnRuleWidthProperty[]; /** * The **`column-width`** CSS property specifies the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width. * * **Initial value**: `auto` */ MozColumnWidth?: ColumnWidthProperty | ColumnWidthProperty[]; /** * If you reference an SVG image in a webpage (such as with the `` element or as a background image), the SVG image can coordinate with the embedding element (its context) to have the image adopt property values set on the embedding element. To do this the embedding element needs to list the properties that are to be made available to the image by listing them as values of the **`-moz-context-properties`** property, and the image needs to opt in to using those properties by using values such as the `context-fill` value. * * **Initial value**: `none` */ MozContextProperties?: MozContextPropertiesProperty | MozContextPropertiesProperty[]; /** * The non-standard **`-moz-float-edge`** CSS property specifies whether the height and width properties of the element include the margin, border, or padding thickness. * * **Initial value**: `content-box` */ MozFloatEdge?: MozFloatEdgeProperty | MozFloatEdgeProperty[]; /** * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. * * **Initial value**: `normal` */ MozFontFeatureSettings?: FontFeatureSettingsProperty | FontFeatureSettingsProperty[]; /** * The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface. * * **Initial value**: `normal` */ MozFontLanguageOverride?: FontLanguageOverrideProperty | FontLanguageOverrideProperty[]; /** * The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute. * * **Initial value**: `0` */ MozForceBrokenImageIcon?: MozForceBrokenImageIconProperty | MozForceBrokenImageIconProperty[]; /** * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. * * **Initial value**: `manual` */ MozHyphens?: HyphensProperty | HyphensProperty[]; /** * For certain XUL elements and pseudo-elements that use an image from the `list-style-image` property, this property specifies a region of the image that is used in place of the whole image. This allows elements to use different pieces of the same image to improve performance. * * **Initial value**: `auto` */ MozImageRegion?: MozImageRegionProperty | MozImageRegionProperty[]; /** * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * **Initial value**: `0` */ MozMarginEnd?: MarginInlineEndProperty | MarginInlineEndProperty[]; /** * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * **Initial value**: `0` */ MozMarginStart?: MarginInlineStartProperty | MarginInlineStartProperty[]; /** * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied. * * **Initial value**: `inline` */ MozOrient?: MozOrientProperty | MozOrientProperty[]; /** * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`. * * **Initial value**: `0` */ MozOutlineRadiusBottomleft?: MozOutlineRadiusBottomleftProperty | MozOutlineRadiusBottomleftProperty[]; /** * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`. * * **Initial value**: `0` */ MozOutlineRadiusBottomright?: MozOutlineRadiusBottomrightProperty | MozOutlineRadiusBottomrightProperty[]; /** * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`. * * **Initial value**: `0` */ MozOutlineRadiusTopleft?: MozOutlineRadiusTopleftProperty | MozOutlineRadiusTopleftProperty[]; /** * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`. * * **Initial value**: `0` */ MozOutlineRadiusTopright?: MozOutlineRadiusToprightProperty | MozOutlineRadiusToprightProperty[]; /** * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation. It corresponds to the `padding-top`, `padding-right`, `padding-bottom`, or `padding-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * **Initial value**: `0` */ MozPaddingEnd?: PaddingInlineEndProperty | PaddingInlineEndProperty[]; /** * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation. It corresponds to the `padding-top`, `padding-right`, `padding-bottom`, or `padding-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * **Initial value**: `0` */ MozPaddingStart?: PaddingInlineStartProperty | PaddingInlineStartProperty[]; /** * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective. Each 3D element with z>0 becomes larger; each 3D-element with z<0 becomes smaller. The strength of the effect is determined by the value of this property. * * **Initial value**: `none` */ MozPerspective?: PerspectiveProperty | PerspectiveProperty[]; /** * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property. * * **Initial value**: `50% 50%` */ MozPerspectiveOrigin?: PerspectiveOriginProperty | PerspectiveOriginProperty[]; /** * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `stack` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible. * * **Initial value**: `stretch-to-fit` */ MozStackSizing?: MozStackSizingProperty | MozStackSizingProperty[]; /** * The **`tab-size`** CSS property is used to customize the width of a tab (`U+0009`) character. * * **Initial value**: `8` */ MozTabSize?: TabSizeProperty | TabSizeProperty[]; /** * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. * * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable). */ MozTextSizeAdjust?: TextSizeAdjustProperty | TextSizeAdjustProperty[]; /** * The **`transform-origin`** CSS property sets the origin for an element's transformations. * * **Initial value**: `50% 50% 0` */ MozTransformOrigin?: TransformOriginProperty | TransformOriginProperty[]; /** * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element. * * **Initial value**: `flat` */ MozTransformStyle?: TransformStyleProperty | TransformStyleProperty[]; /** * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. * * **Initial value**: `0s` */ MozTransitionDelay?: TransitionDelayProperty | TransitionDelayProperty[]; /** * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur. * * **Initial value**: `0s` */ MozTransitionDuration?: TransitionDurationProperty | TransitionDurationProperty[]; /** * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied. * * **Initial value**: all */ MozTransitionProperty?: TransitionPropertyProperty | TransitionPropertyProperty[]; /** * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. * * **Initial value**: `ease` */ MozTransitionTimingFunction?: TransitionTimingFunctionProperty | TransitionTimingFunctionProperty[]; /** * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus. * * **Initial value**: `none` */ MozUserFocus?: MozUserFocusProperty | MozUserFocusProperty[]; /** * The **`user-modify`** property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user. * * **Initial value**: `read-only` */ MozUserModify?: MozUserModifyProperty | MozUserModifyProperty[]; /** * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. * * **Initial value**: `auto` */ MozUserSelect?: UserSelectProperty | UserSelectProperty[]; /** * The **`-moz-window-dragging`** CSS property specifies whether a window is draggable or not. It only works in Chrome code, and only on Mac OS X. * * **Initial value**: `drag` */ MozWindowDragging?: MozWindowDraggingProperty | MozWindowDraggingProperty[]; /** * The **`-moz-window-shadow`** CSS property specifies whether a window will have a shadow. It only works on Mac OS X. * * **Initial value**: `default` */ MozWindowShadow?: MozWindowShadowProperty | MozWindowShadowProperty[]; /** * The **`-ms-accelerator`** CSS property is a Microsoft extension that sets or retrieves a string indicating whether the object represents a keyboard shortcut. * * **Initial value**: `false` */ msAccelerator?: MsAcceleratorProperty | MsAcceleratorProperty[]; /** * The **`align-self`** CSS property aligns flex items of the current flex line overriding the `align-items` value. If any of the item's cross-axis margin is set to `auto`, then `align-self` is ignored. In Grid layout `align-self` aligns the item inside the grid area. * * **Initial value**: `auto` */ msAlignSelf?: AlignSelfProperty | AlignSelfProperty[]; /** * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation. * * **Initial value**: `tb` */ msBlockProgression?: MsBlockProgressionProperty | MsBlockProgressionProperty[]; /** * The **`-ms-content-zoom-chaining`** CSS property is a Microsoft extension specifying the zoom behavior that occurs when a user hits the zoom limit during page manipulation. * * **Initial value**: `none` */ msContentZoomChaining?: MsContentZoomChainingProperty | MsContentZoomChainingProperty[]; /** * The **`-ms-content-zoom-limit-max`** CSS property is a Microsoft extension that specifies the selected elements' maximum zoom factor. * * **Initial value**: `400%` */ msContentZoomLimitMax?: MsContentZoomLimitMaxProperty | MsContentZoomLimitMaxProperty[]; /** * The **`-ms-content-zoom-limit-min`** CSS property is a Microsoft extension that specifies the minimum zoom factor. * * **Initial value**: `100%` */ msContentZoomLimitMin?: MsContentZoomLimitMinProperty | MsContentZoomLimitMinProperty[]; /** * The **`-ms-content-zoom-snap-points`** CSS property is a Microsoft extension that specifies where zoom snap-points are located. * * **Initial value**: `snapInterval(0%, 100%)` */ msContentZoomSnapPoints?: MsContentZoomSnapPointsProperty | MsContentZoomSnapPointsProperty[]; /** * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points. * * **Initial value**: `none` */ msContentZoomSnapType?: MsContentZoomSnapTypeProperty | MsContentZoomSnapTypeProperty[]; /** * The **`-ms-content-zooming`** CSS property is a Microsoft extension that specifies whether zooming is enabled. * * **Initial value**: zoom for the top level element, none for all other elements */ msContentZooming?: MsContentZoomingProperty | MsContentZoomingProperty[]; /** * The `-ms-filter` CSS property is a Microsoft extension that sets or retrieves the filter or collection of filters applied to an object. * * **Initial value**: "" (the empty string) */ msFilter?: MsFilterProperty | MsFilterProperty[]; /** * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed). * * **Initial value**: `row` */ msFlexDirection?: FlexDirectionProperty | FlexDirectionProperty[]; /** * The **`flex-grow`** CSS property sets how much of the available space in the flex container should be assigned to that item (the flex grow factor). If all sibling items have the same flex grow factor, then all items will receive the same share of available space, otherwise it is distributed according to the ratio defined by the different flex grow factors. * * **Initial value**: `0` */ msFlexPositive?: FlexGrowProperty | FlexGrowProperty[]; /** * The **`-ms-flow-from`** CSS property is a Microsoft extension that gets or sets a value identifying a region container in the document that accepts the content flow from the data source. * * **Initial value**: `none` */ msFlowFrom?: MsFlowFromProperty | MsFlowFromProperty[]; /** * The **`-ms-flow-into`** CSS property is a Microsoft extension that gets or sets a value identifying an iframe container in the document that serves as the region's data source. * * **Initial value**: `none` */ msFlowInto?: MsFlowIntoProperty | MsFlowIntoProperty[]; /** * The **`grid-auto-columns`** CSS property specifies the size of an implicitly-created grid column track. * * **Initial value**: `auto` */ msGridColumns?: GridAutoColumnsProperty | GridAutoColumnsProperty[]; /** * The **`grid-auto-rows`** CSS property specifies the size of an implicitly-created grid row track. * * **Initial value**: `auto` */ msGridRows?: GridAutoRowsProperty | GridAutoRowsProperty[]; /** * The **`-ms-high-contrast-adjust`** CSS property is a Microsoft extension that gets or sets a value indicating whether to override any CSS properties that would have been set in high contrast mode. * * **Initial value**: `auto` */ msHighContrastAdjust?: MsHighContrastAdjustProperty | MsHighContrastAdjustProperty[]; /** * The **`-ms-hyphenate-limit-chars`** CSS property is a Microsoft extension that specifies one to three values indicating the minimum number of characters in a hyphenated word. If the word does not meet the required minimum number of characters in the word, before the hyphen, or after the hyphen, then the word is not hyphenated. * * **Initial value**: `auto` */ msHyphenateLimitChars?: MsHyphenateLimitCharsProperty | MsHyphenateLimitCharsProperty[]; /** * The **`-ms-hyphenate-limit-lines`** CSS property is a Microsoft extension specifying the maximum number of consecutive lines in an element that may be ended with a hyphenated word. * * **Initial value**: `no-limit` */ msHyphenateLimitLines?: MsHyphenateLimitLinesProperty | MsHyphenateLimitLinesProperty[]; /** * The `**-ms-hyphenate-limit-zone**` CSS property is a Microsoft extension specifying the width of the hyphenation zone. * * **Initial value**: `0` */ msHyphenateLimitZone?: MsHyphenateLimitZoneProperty | MsHyphenateLimitZoneProperty[]; /** * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. * * **Initial value**: `manual` */ msHyphens?: HyphensProperty | HyphensProperty[]; /** * The **`-ms-ime-align`** CSS property is a Microsoft extension aligning the Input Method Editor (IME) candidate window box relative to the element on which the IME composition is active. The extension is implemented in Microsoft Edge and Internet Explorer 11. * * **Initial value**: `auto` */ msImeAlign?: MsImeAlignProperty | MsImeAlignProperty[]; /** * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. * * **Initial value**: `auto` */ msLineBreak?: LineBreakProperty | LineBreakProperty[]; /** * The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order. * * **Initial value**: `0` */ msOrder?: OrderProperty | OrderProperty[]; /** * The **`-ms-overflow-style`** CSS property is a Microsoft extension controlling the behavior of scrollbars when the content of an element overflows. * * **Initial value**: `auto` */ msOverflowStyle?: MsOverflowStyleProperty | MsOverflowStyleProperty[]; /** * The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content. * * **Initial value**: `visible` */ msOverflowX?: OverflowXProperty | OverflowXProperty[]; /** * The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content. * * **Initial value**: `visible` */ msOverflowY?: OverflowYProperty | OverflowYProperty[]; /** * The `**-ms-scroll-chaining**` CSS property is a Microsoft extension that specifies the scrolling behavior that occurs when a user hits the scroll limit during a manipulation. * * **Initial value**: `chained` */ msScrollChaining?: MsScrollChainingProperty | MsScrollChainingProperty[]; /** * The `**-ms-scroll-limit-x-max**` CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollLeft` property. * * **Initial value**: `auto` */ msScrollLimitXMax?: MsScrollLimitXMaxProperty | MsScrollLimitXMaxProperty[]; /** * The **`-ms-scroll-limit-x-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollLeft` property. * * **Initial value**: `0` */ msScrollLimitXMin?: MsScrollLimitXMinProperty | MsScrollLimitXMinProperty[]; /** * The **`-ms-scroll-limit-y-max`** CSS property is a Microsoft extension that specifies the maximum value for the `Element.scrollTop` property. * * **Initial value**: `auto` */ msScrollLimitYMax?: MsScrollLimitYMaxProperty | MsScrollLimitYMaxProperty[]; /** * The **`-ms-scroll-limit-y-min`** CSS property is a Microsoft extension that specifies the minimum value for the `Element.scrollTop` property. * * **Initial value**: `0` */ msScrollLimitYMin?: MsScrollLimitYMinProperty | MsScrollLimitYMinProperty[]; /** * The **`-ms-scroll-rails`** CSS property is a Microsoft extension that specifies whether scrolling locks to the primary axis of motion. * * **Initial value**: `railed` */ msScrollRails?: MsScrollRailsProperty | MsScrollRailsProperty[]; /** * The **`-ms-scroll-snap-points-x`** CSS property is a Microsoft extension that specifies where snap-points will be located along the x-axis. * * **Initial value**: `snapInterval(0px, 100%)` */ msScrollSnapPointsX?: MsScrollSnapPointsXProperty | MsScrollSnapPointsXProperty[]; /** * The **`-ms-scroll-snap-points-y`** CSS property is a Microsoft extension that specifies where snap-points will be located along the y-axis. * * **Initial value**: `snapInterval(0px, 100%)` */ msScrollSnapPointsY?: MsScrollSnapPointsYProperty | MsScrollSnapPointsYProperty[]; /** * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one. * * **Initial value**: `none` */ msScrollSnapType?: MsScrollSnapTypeProperty | MsScrollSnapTypeProperty[]; /** * The **`-ms-scroll-translation`** CSS property is a Microsoft extension that specifies whether vertical-to-horizontal scroll wheel translation occurs on the specified element. * * **Initial value**: `none` */ msScrollTranslation?: MsScrollTranslationProperty | MsScrollTranslationProperty[]; /** * The **`-ms-text-autospace`** CSS property is a Microsoft extension that specifies the autospacing and narrow space width adjustment of text. * * **Initial value**: `none` */ msTextAutospace?: MsTextAutospaceProperty | MsTextAutospaceProperty[]; /** * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes. * * **Initial value**: `none` */ msTextCombineHorizontal?: TextCombineUprightProperty | TextCombineUprightProperty[]; /** * The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string. * * **Initial value**: `clip` */ msTextOverflow?: TextOverflowProperty | TextOverflowProperty[]; /** * The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. * * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable). */ msTextSizeAdjust?: TextSizeAdjustProperty | TextSizeAdjustProperty[]; /** * The **`touch-action`** CSS property sets how a region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). * * **Initial value**: `auto` */ msTouchAction?: TouchActionProperty | TouchActionProperty[]; /** * The **`-ms-touch-select`** CSS property is a Microsoft extension that toggles the gripper visual elements that enable touch text selection. * * **Initial value**: `grippers` */ msTouchSelect?: MsTouchSelectProperty | MsTouchSelectProperty[]; /** * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model. * * **Initial value**: `none` */ msTransform?: TransformProperty | TransformProperty[]; /** * The **`transform-origin`** CSS property sets the origin for an element's transformations. * * **Initial value**: `50% 50% 0` */ msTransformOrigin?: TransformOriginProperty | TransformOriginProperty[]; /** * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. * * **Initial value**: `text` */ msUserSelect?: MsUserSelectProperty | MsUserSelectProperty[]; /** * The **`word-break`** CSS property sets whether line breaks appear wherever the text would otherwise overflow its content box. * * **Initial value**: `normal` */ msWordBreak?: WordBreakProperty | WordBreakProperty[]; /** * The **`-ms-wrap-flow`** CSS property is a Microsoft extension that specifies how exclusions impact inline content within block-level elements. * * **Initial value**: `auto` */ msWrapFlow?: MsWrapFlowProperty | MsWrapFlowProperty[]; /** * The **`-ms-wrap-margin`** CSS property is a Microsoft extension that specifies a margin that offsets the inner wrap shape from other shapes. * * **Initial value**: `0` */ msWrapMargin?: MsWrapMarginProperty | MsWrapMarginProperty[]; /** * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element. * * **Initial value**: `wrap` */ msWrapThrough?: MsWrapThroughProperty | MsWrapThroughProperty[]; /** * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. * * **Initial value**: `horizontal-tb` */ msWritingMode?: WritingModeProperty | WritingModeProperty[]; /** * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `` or `