@cssfn/css-prop-list
Advanced tools
@@ -0,3 +1,4 @@ | ||
| import type { CssKnownName } from '@cssfn/css-types'; | ||
| export declare const getKnownCssPropList: () => string[]; | ||
| export declare const isKnownCssProp: (propName: string) => propName is "foreg" | "foreground" | "backg" | "backgClip" | "anim" | "transf" | "gapX" | "gapY" | "gapInline" | "gapBlock" | keyof import("@cssfn/css-types").CssKnownBaseProps<import("@cssfn/css-types").CssLength, import("@cssfn/css-types").CssDuration>; | ||
| export declare const isKnownCssPropInternal: (propName: string) => propName is "foreg" | "foreground" | "backg" | "backgClip" | "anim" | "transf" | "gapX" | "gapY" | "gapInline" | "gapBlock" | keyof import("@cssfn/css-types").CssKnownBaseProps<import("@cssfn/css-types").CssLength, import("@cssfn/css-types").CssDuration>; | ||
| export declare const isKnownCssProp: (propName: string) => propName is CssKnownName; | ||
| export declare const isKnownCssPropInternal: (propName: string) => propName is CssKnownName; |
@@ -1,2 +0,2 @@ | ||
| import type { CssKnownStandardLonghandProps, CssKnownStandardShorthandProps, CssKnownShorthandProps, CssKnownVendorLonghandProps, CssKnownVendorShorthandProps, CssKnownObsoleteProps, CssKnownSvgProps, CssKnownProps } from '@cssfn/css-types'; | ||
| import { type CssKnownStandardLonghandProps, type CssKnownStandardShorthandProps, type CssKnownShorthandProps, type CssKnownVendorLonghandProps, type CssKnownVendorShorthandProps, type CssKnownObsoleteProps, type CssKnownSvgProps, type CssKnownProps } from '@cssfn/css-types'; | ||
| export declare const cssKnownStandardLonghandProps: (keyof CssKnownStandardLonghandProps)[]; | ||
@@ -3,0 +3,0 @@ export declare const cssKnownStandardShorthandProps: (keyof CssKnownStandardShorthandProps)[]; |
@@ -451,3 +451,2 @@ export const cssKnownStandardLonghandProps = [ | ||
| 'MozAppearance', | ||
| 'MozBackfaceVisibility', | ||
| 'MozBinding', | ||
@@ -481,4 +480,2 @@ 'MozBorderBottomColors', | ||
| 'MozPaddingStart', | ||
| 'MozPerspective', | ||
| 'MozPerspectiveOrigin', | ||
| 'MozStackSizing', | ||
@@ -488,8 +485,2 @@ 'MozTabSize', | ||
| 'MozTextSizeAdjust', | ||
| 'MozTransformOrigin', | ||
| 'MozTransformStyle', | ||
| 'MozTransitionDelay', | ||
| 'MozTransitionDuration', | ||
| 'MozTransitionProperty', | ||
| 'MozTransitionTimingFunction', | ||
| 'MozUserFocus', | ||
@@ -676,3 +667,2 @@ 'MozUserModify', | ||
| 'MozColumns', | ||
| 'MozTransition', | ||
| 'msContentZoomLimit', | ||
@@ -758,7 +748,2 @@ 'msContentZoomSnap', | ||
| 'MozOutlineColor', | ||
| 'MozOutlineRadius', | ||
| 'MozOutlineRadiusBottomleft', | ||
| 'MozOutlineRadiusBottomright', | ||
| 'MozOutlineRadiusTopleft', | ||
| 'MozOutlineRadiusTopright', | ||
| 'MozOutlineStyle', | ||
@@ -802,4 +787,2 @@ 'MozOutlineWidth', | ||
| 'WebkitBoxPack', | ||
| 'WebkitScrollSnapPointsX', | ||
| 'WebkitScrollSnapPointsY', | ||
| ]; | ||
@@ -806,0 +789,0 @@ export const cssKnownSvgProps = [ |
+4
-4
| { | ||
| "name": "@cssfn/css-prop-list", | ||
| "version": "3.2.0", | ||
| "version": "3.3.0", | ||
| "description": "Checks for valid css properties.", | ||
@@ -32,8 +32,8 @@ "keywords": [ | ||
| "dependencies": { | ||
| "@cssfn/css-types": "^3.2.0" | ||
| "@cssfn/css-types": "^3.3.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@cssfn/bulk-list-builder": "^3.2.0" | ||
| "@cssfn/bulk-list-builder": "^3.3.0" | ||
| }, | ||
| "gitHead": "86e3bc9e9d47919dc93eeac6bf8039bce9d03620" | ||
| "gitHead": "58e94c3b0565005c40bd95e2b602c89ce814a551" | ||
| } |
+10
-28
@@ -1,18 +0,17 @@ | ||
| // cssfn: | ||
| import type { | ||
| // Cssfn: | ||
| import { | ||
| // types: | ||
| CssKnownStandardLonghandProps, | ||
| CssKnownStandardShorthandProps, | ||
| type CssKnownStandardLonghandProps, | ||
| type CssKnownStandardShorthandProps, | ||
| CssKnownShorthandProps, | ||
| type CssKnownShorthandProps, | ||
| CssKnownVendorLonghandProps, | ||
| CssKnownVendorShorthandProps, | ||
| type CssKnownVendorLonghandProps, | ||
| type CssKnownVendorShorthandProps, | ||
| CssKnownObsoleteProps, | ||
| type CssKnownObsoleteProps, | ||
| CssKnownSvgProps, | ||
| type CssKnownSvgProps, | ||
| CssKnownProps, | ||
| type CssKnownProps, | ||
| } from '@cssfn/css-types' | ||
@@ -475,3 +474,2 @@ | ||
| 'MozAppearance', | ||
| 'MozBackfaceVisibility', | ||
| 'MozBinding', | ||
@@ -505,4 +503,2 @@ 'MozBorderBottomColors', | ||
| 'MozPaddingStart', | ||
| 'MozPerspective', | ||
| 'MozPerspectiveOrigin', | ||
| 'MozStackSizing', | ||
@@ -512,8 +508,2 @@ 'MozTabSize', | ||
| 'MozTextSizeAdjust', | ||
| 'MozTransformOrigin', | ||
| 'MozTransformStyle', | ||
| 'MozTransitionDelay', | ||
| 'MozTransitionDuration', | ||
| 'MozTransitionProperty', | ||
| 'MozTransitionTimingFunction', | ||
| 'MozUserFocus', | ||
@@ -701,3 +691,2 @@ 'MozUserModify', | ||
| 'MozColumns', | ||
| 'MozTransition', | ||
| 'msContentZoomLimit', | ||
@@ -784,7 +773,2 @@ 'msContentZoomSnap', | ||
| 'MozOutlineColor', | ||
| 'MozOutlineRadius', | ||
| 'MozOutlineRadiusBottomleft', | ||
| 'MozOutlineRadiusBottomright', | ||
| 'MozOutlineRadiusTopleft', | ||
| 'MozOutlineRadiusTopright', | ||
| 'MozOutlineStyle', | ||
@@ -828,4 +812,2 @@ 'MozOutlineWidth', | ||
| 'WebkitBoxPack', | ||
| 'WebkitScrollSnapPointsX', | ||
| 'WebkitScrollSnapPointsY', | ||
| ]; | ||
@@ -832,0 +814,0 @@ |
60298
-3.59%2169
-1.59%Updated