@2digits/eslint-config 4.12.4 → 4.12.6

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +330 -19
  2. package/package.json +11 -11
package/dist/index.d.mts CHANGED
@@ -330,6 +330,11 @@ interface RuleOptions {
330
330
  * @see https://github.com/eslint/css/blob/main/docs/rules/no-invalid-properties.md
331
331
  */
332
332
  'css/no-invalid-properties'?: Linter.RuleEntry<CssNoInvalidProperties>;
333
+ /**
334
+ * Disallow unmatchable selectors
335
+ * @see https://github.com/eslint/css/blob/main/docs/rules/no-unmatchable-selectors.md
336
+ */
337
+ 'css/no-unmatchable-selectors'?: Linter.RuleEntry<[]>;
333
338
  /**
334
339
  * Enforce the use of logical properties
335
340
  * @see https://github.com/eslint/css/blob/main/docs/rules/prefer-logical-properties.md
@@ -3205,6 +3210,11 @@ interface RuleOptions {
3205
3210
  * @see https://eslint-react.xyz/docs/rules/dom-prefer-namespace-import
3206
3211
  */
3207
3212
  'react-dom/prefer-namespace-import'?: Linter.RuleEntry<[]>;
3213
+ /**
3214
+ * Prevents dollar signs from being inserted as text nodes before expressions.
3215
+ * @see https://eslint-react.xyz/docs/rules/jsx-dollar
3216
+ */
3217
+ 'react-extra/jsx-dollar'?: Linter.RuleEntry<[]>;
3208
3218
  /**
3209
3219
  * Enforces that the 'key' prop is placed before the spread prop in JSX elements.
3210
3220
  * @see https://eslint-react.xyz/docs/rules/jsx-key-before-spread
@@ -7780,67 +7790,67 @@ interface RuleOptions {
7780
7790
  'yoda'?: Linter.RuleEntry<Yoda>;
7781
7791
  /**
7782
7792
  * Enforce consistent Zod array style
7783
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/consistent-array-style.md
7793
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/consistent-array-style.md
7784
7794
  */
7785
7795
  'zod/array-style'?: Linter.RuleEntry<ZodArrayStyle>;
7786
7796
  /**
7787
7797
  * Enforce consistent source from Zod imports
7788
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/consistent-import-source.md
7798
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/consistent-import-source.md
7789
7799
  */
7790
7800
  'zod/consistent-import-source'?: Linter.RuleEntry<ZodConsistentImportSource>;
7791
7801
  /**
7792
7802
  * Disallow usage of `z.any()` in Zod schemas
7793
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/no-any.md
7803
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/no-any.md
7794
7804
  */
7795
7805
  'zod/no-any'?: Linter.RuleEntry<[]>;
7796
7806
  /**
7797
7807
  * Disallow usage of `z.custom()` without arguments
7798
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/no-empty-custom-schema.md
7808
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/no-empty-custom-schema.md
7799
7809
  */
7800
7810
  'zod/no-empty-custom-schema'?: Linter.RuleEntry<[]>;
7801
7811
  /**
7802
7812
  * Disallow usage of `z.number().int()` as it is considered legacy
7803
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/no-number-schema-with-int.md
7813
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/no-number-schema-with-int.md
7804
7814
  */
7805
7815
  'zod/no-number-schema-with-int'?: Linter.RuleEntry<[]>;
7806
7816
  /**
7807
7817
  * Disallow using both `.optional()` and `.default()` on the same Zod schema
7808
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/no-optional-and-default-together.md
7818
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/no-optional-and-default-together.md
7809
7819
  */
7810
7820
  'zod/no-optional-and-default-together'?: Linter.RuleEntry<ZodNoOptionalAndDefaultTogether>;
7811
7821
  /**
7812
7822
  * Disallow throwing errors directly inside Zod refine callbacks
7813
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/no-throw-in-refine.md
7823
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/no-throw-in-refine.md
7814
7824
  */
7815
7825
  'zod/no-throw-in-refine'?: Linter.RuleEntry<[]>;
7816
7826
  /**
7817
7827
  * Enforce usage of `.meta()` over `.describe()`
7818
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/prefer-meta.md
7828
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/prefer-meta.md
7819
7829
  */
7820
7830
  'zod/prefer-meta'?: Linter.RuleEntry<[]>;
7821
7831
  /**
7822
7832
  * Enforce `.meta()` as last method
7823
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/prefer-meta-last.md
7833
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/prefer-meta-last.md
7824
7834
  */
7825
7835
  'zod/prefer-meta-last'?: Linter.RuleEntry<[]>;
7826
7836
  /**
7827
7837
  * Enforce importing zod as a namespace import (`import * as z from 'zod'`)
7828
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/prefer-namespace-import.md
7838
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/prefer-namespace-import.md
7829
7839
  */
7830
7840
  'zod/prefer-namespace-import'?: Linter.RuleEntry<[]>;
7831
7841
  /**
7832
7842
  * Enforce usage of `.strictObject()` over `.object()` and/or `.looseObject()`
7833
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/prefer-strict-object.md
7843
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/prefer-strict-object.md
7834
7844
  */
7835
7845
  'zod/prefer-strict-object'?: Linter.RuleEntry<ZodPreferStrictObject>;
7836
7846
  /**
7837
7847
  * Enforce that custom refinements include an error message
7838
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/require-error-message.md
7848
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/require-error-message.md
7839
7849
  */
7840
7850
  'zod/require-error-message'?: Linter.RuleEntry<[]>;
7841
7851
  /**
7842
7852
  * Require schema suffix when declaring a Zod schema
7843
- * @see https://github.com/marcalexiei/eslint-plugin-zod-x/blob/main/docs/rules/require-schema-suffix.md
7853
+ * @see https://github.com/marcalexiei/eslint-plugin-zod-x#readme/blob/main/docs/rules/require-schema-suffix.md
7844
7854
  */
7845
7855
  'zod/require-schema-suffix'?: Linter.RuleEntry<ZodRequireSchemaSuffix>;
7846
7856
  }
@@ -8020,8 +8030,8 @@ type CssNoInvalidProperties = [] | [{
8020
8030
  }];
8021
8031
  // ----- css/prefer-logical-properties -----
8022
8032
  type CssPreferLogicalProperties = [] | [{
8023
- allowProperties?: string[];
8024
- allowUnits?: string[];
8033
+ allowProperties?: ("bottom" | "border-bottom" | "border-bottom-color" | "border-bottom-left-radius" | "border-bottom-right-radius" | "border-bottom-style" | "border-bottom-width" | "border-left" | "border-left-color" | "border-left-style" | "border-left-width" | "border-right" | "border-right-color" | "border-right-style" | "border-right-width" | "border-top" | "border-top-color" | "border-top-left-radius" | "border-top-right-radius" | "border-top-style" | "border-top-width" | "contain-intrinsic-height" | "contain-intrinsic-width" | "height" | "left" | "margin-bottom" | "margin-left" | "margin-right" | "margin-top" | "max-height" | "max-width" | "min-height" | "min-width" | "overflow-x" | "overflow-y" | "overscroll-behavior-x" | "overscroll-behavior-y" | "padding-bottom" | "padding-left" | "padding-right" | "padding-top" | "right" | "scroll-margin-bottom" | "scroll-margin-left" | "scroll-margin-right" | "scroll-margin-top" | "scroll-padding-bottom" | "scroll-padding-left" | "scroll-padding-right" | "scroll-padding-top" | "top" | "width")[];
8034
+ allowUnits?: ("cqh" | "cqw" | "dvh" | "dvw" | "lvh" | "lvw" | "svh" | "svw" | "vh" | "vw")[];
8025
8035
  }];
8026
8036
  // ----- css/relative-font-units -----
8027
8037
  type CssRelativeFontUnits = [] | [{
@@ -8042,14 +8052,315 @@ type CssSelectorComplexity = [] | [{
8042
8052
  disallowPseudoElements?: string[];
8043
8053
  disallowAttributes?: string[];
8044
8054
  disallowAttributeMatchers?: string[];
8045
- [k: string]: unknown | undefined;
8046
8055
  }];
8047
8056
  // ----- css/use-baseline -----
8048
8057
  type CssUseBaseline = [] | [{
8049
8058
  available?: (("widely" | "newly") | number);
8050
- allowAtRules?: string[];
8051
- allowProperties?: string[];
8052
- allowSelectors?: string[];
8059
+ allowAtRules?: ("position-try" | "keyframes" | "layer" | "charset" | "container" | "counter-style" | "view-transition" | "font-face" | "font-palette-values" | "font-feature-values" | "function" | "import" | "media" | "namespace" | "page" | "property" | "scope" | "starting-style" | "supports")[];
8060
+ allowFunctions?: ("abs" | "sign" | "anchor" | "anchor-size" | "color" | "attr" | "calc" | "calc-size" | "rect" | "color-mix" | "conic-gradient" | "repeating-conic-gradient" | "round" | "counter" | "counters" | "cross-fade" | "cubic-bezier" | "var" | "element" | "exp" | "hypot" | "log" | "pow" | "sqrt" | "blur" | "brightness" | "contrast" | "drop-shadow" | "grayscale" | "hue-rotate" | "invert" | "opacity" | "saturate" | "sepia" | "linear-gradient" | "radial-gradient" | "repeating-linear-gradient" | "repeating-radial-gradient" | "image" | "hsl" | "hwb" | "image-set" | "lab" | "lch" | "light-dark" | "clamp" | "max" | "min" | "ray" | "oklab" | "oklch" | "paint" | "path" | "rem" | "rgb" | "mod" | "env" | "circle" | "ellipse" | "inset" | "polygon" | "xywh" | "steps" | "matrix" | "rotate" | "scale" | "scaleX" | "scaleY" | "skew" | "skewX" | "skewY" | "translate" | "translateX" | "translateY" | "matrix3d" | "perspective" | "rotate3d" | "rotateX" | "rotateY" | "rotateZ" | "scale3d" | "scaleZ" | "translate3d" | "translateZ" | "acos" | "asin" | "atan" | "atan2" | "cos" | "sin" | "tan")[];
8061
+ allowMediaConditions?: ("color-gamut" | "device-posture" | "device-aspect-ratio" | "device-height" | "device-width" | "display-mode" | "dynamic-range" | "forced-colors" | "any-hover" | "any-pointer" | "hover" | "pointer" | "inverted-colors" | "aspect-ratio" | "calc" | "color" | "color-index" | "grid" | "height" | "monochrome" | "nested-queries" | "orientation" | "width" | "overflow-block" | "overflow-inline" | "prefers-color-scheme" | "prefers-contrast" | "prefers-reduced-data" | "prefers-reduced-motion" | "prefers-reduced-transparency" | "resolution" | "-webkit-device-pixel-ratio" | "-webkit-max-device-pixel-ratio" | "-webkit-min-device-pixel-ratio" | "scripting" | "-webkit-transform-3d" | "update" | "video-dynamic-range" | "horizontal-viewport-segments" | "vertical-viewport-segments")[];
8062
+ allowProperties?: ("accent-color" | "alignment-baseline" | "all" | "anchor-name" | "anchor-scope" | "position-anchor" | "position-area" | "position-try" | "position-try-fallbacks" | "position-try-order" | "position-visibility" | "animation-composition" | "animation" | "animation-delay" | "animation-direction" | "animation-duration" | "animation-fill-mode" | "animation-iteration-count" | "animation-name" | "animation-play-state" | "animation-timing-function" | "appearance" | "aspect-ratio" | "backdrop-filter" | "background" | "background-attachment" | "background-blend-mode" | "background-clip" | "background-color" | "background-image" | "background-origin" | "background-position" | "background-position-x" | "background-position-y" | "background-repeat" | "background-size" | "baseline-shift" | "baseline-source" | "border-image" | "border-image-outset" | "border-image-repeat" | "border-image-slice" | "border-image-source" | "border-image-width" | "border-bottom-left-radius" | "border-bottom-right-radius" | "border-radius" | "border-top-left-radius" | "border-top-right-radius" | "border" | "border-bottom" | "border-bottom-color" | "border-bottom-style" | "border-bottom-width" | "border-color" | "border-left" | "border-left-color" | "border-left-style" | "border-left-width" | "border-right" | "border-right-color" | "border-right-style" | "border-right-width" | "border-style" | "border-top" | "border-top-color" | "border-top-style" | "border-top-width" | "border-width" | "box-decoration-break" | "box-shadow" | "box-sizing" | "caret-color" | "caret-shape" | "clip" | "clip-path" | "color" | "color-adjust" | "color-scheme" | "column-fill" | "column-span" | "contain" | "contain-intrinsic-block-size" | "contain-intrinsic-height" | "contain-intrinsic-inline-size" | "contain-intrinsic-size" | "contain-intrinsic-width" | "container" | "container-name" | "container-type" | "content" | "content-visibility" | "corner-block-end-shape" | "corner-block-start-shape" | "corner-bottom-left-shape" | "corner-bottom-right-shape" | "corner-bottom-shape" | "corner-end-end-shape" | "corner-end-start-shape" | "corner-inline-end-shape" | "corner-inline-start-shape" | "corner-left-shape" | "corner-right-shape" | "corner-shape" | "corner-start-end-shape" | "corner-start-start-shape" | "corner-top-left-shape" | "corner-top-right-shape" | "corner-top-shape" | "counter-set" | "counter-increment" | "counter-reset" | "custom-property" | "display" | "dominant-baseline" | "field-sizing" | "filter" | "align-content" | "align-items" | "align-self" | "flex" | "flex-basis" | "flex-direction" | "flex-flow" | "flex-grow" | "flex-shrink" | "flex-wrap" | "justify-content" | "justify-items" | "order" | "place-content" | "place-items" | "place-self" | "clear" | "float" | "font-family" | "font-feature-settings" | "font-kerning" | "font-language-override" | "font-optical-sizing" | "font-palette" | "font" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-synthesis" | "font-synthesis-position" | "font-synthesis-small-caps" | "font-synthesis-style" | "font-synthesis-weight" | "font-variant" | "font-variant-alternates" | "font-variant-caps" | "font-variant-east-asian" | "font-variant-emoji" | "font-variant-ligatures" | "font-variant-numeric" | "font-variant-position" | "font-variation-settings" | "font-weight" | "font-width" | "forced-color-adjust" | "glyph-orientation-vertical" | "gap" | "grid" | "grid-area" | "grid-auto-columns" | "grid-auto-flow" | "grid-auto-rows" | "grid-column" | "grid-column-end" | "grid-column-start" | "grid-row" | "grid-row-end" | "grid-row-start" | "grid-template" | "grid-template-areas" | "grid-template-columns" | "grid-template-rows" | "justify-self" | "row-gap" | "hanging-punctuation" | "hyphenate-character" | "hyphenate-limit-chars" | "hyphens" | "image-orientation" | "image-rendering" | "ime-mode" | "rotate" | "scale" | "translate" | "initial-letter" | "interactivity" | "interpolate-size" | "isolation" | "direction" | "unicode-bidi" | "letter-spacing" | "line-break" | "line-clamp" | "line-height" | "list-style" | "list-style-image" | "list-style-position" | "list-style-type" | "block-size" | "border-block" | "border-block-color" | "border-block-end" | "border-block-end-color" | "border-block-end-style" | "border-block-end-width" | "border-block-start" | "border-block-start-color" | "border-block-start-style" | "border-block-start-width" | "border-block-style" | "border-block-width" | "border-end-end-radius" | "border-end-start-radius" | "border-inline" | "border-inline-color" | "border-inline-end" | "border-inline-end-color" | "border-inline-end-style" | "border-inline-end-width" | "border-inline-start" | "border-inline-start-color" | "border-inline-start-style" | "border-inline-start-width" | "border-inline-style" | "border-inline-width" | "border-start-end-radius" | "border-start-start-radius" | "inline-size" | "inset" | "inset-block" | "inset-block-end" | "inset-block-start" | "inset-inline" | "inset-inline-end" | "inset-inline-start" | "margin-block" | "margin-block-end" | "margin-block-start" | "margin-inline" | "margin-inline-end" | "margin-inline-start" | "max-block-size" | "max-inline-size" | "min-block-size" | "min-inline-size" | "overflow-block" | "overflow-inline" | "padding-block" | "padding-block-end" | "padding-block-start" | "padding-inline" | "padding-inline-end" | "padding-inline-start" | "margin" | "margin-bottom" | "margin-left" | "margin-right" | "margin-top" | "margin-trim" | "mask-border" | "mask-border-outset" | "mask-border-repeat" | "mask-border-slice" | "mask-border-source" | "mask-border-width" | "mask-type" | "mask" | "mask-clip" | "mask-composite" | "mask-image" | "mask-mode" | "mask-origin" | "mask-position" | "mask-repeat" | "mask-size" | "math-depth" | "math-shift" | "math-style" | "max-height" | "max-width" | "min-height" | "min-width" | "mix-blend-mode" | "offset" | "offset-anchor" | "offset-distance" | "offset-path" | "offset-position" | "offset-rotate" | "column-count" | "column-gap" | "column-rule" | "column-rule-color" | "column-rule-style" | "column-rule-width" | "column-width" | "columns" | "object-fit" | "object-position" | "object-view-box" | "opacity" | "fill-opacity" | "stroke-opacity" | "outline" | "outline-color" | "outline-offset" | "outline-style" | "outline-width" | "overflow-anchor" | "overflow-clip-margin" | "overflow" | "overflow-x" | "overflow-y" | "overflow-wrap" | "overlay" | "overscroll-behavior" | "overscroll-behavior-block" | "overscroll-behavior-inline" | "overscroll-behavior-x" | "overscroll-behavior-y" | "padding" | "padding-bottom" | "padding-left" | "padding-right" | "padding-top" | "page-break-after" | "page-break-before" | "page-break-inside" | "break-after" | "break-before" | "break-inside" | "page" | "paint-order" | "bottom" | "left" | "right" | "top" | "pointer-events" | "position" | "print-color-adjust" | "quotes" | "reading-flow" | "reading-order" | "resize" | "ruby-align" | "ruby-overhang" | "ruby-position" | "scroll-behavior" | "animation-range" | "animation-range-end" | "animation-range-start" | "animation-timeline" | "scroll-timeline" | "scroll-timeline-axis" | "scroll-timeline-name" | "timeline-scope" | "view-timeline" | "view-timeline-axis" | "view-timeline-inset" | "view-timeline-name" | "scroll-initial-target" | "scroll-marker-group" | "scroll-margin" | "scroll-margin-block" | "scroll-margin-block-end" | "scroll-margin-block-start" | "scroll-margin-bottom" | "scroll-margin-inline" | "scroll-margin-inline-end" | "scroll-margin-inline-start" | "scroll-margin-left" | "scroll-margin-right" | "scroll-margin-top" | "scroll-padding" | "scroll-padding-block" | "scroll-padding-block-end" | "scroll-padding-block-start" | "scroll-padding-bottom" | "scroll-padding-inline" | "scroll-padding-inline-end" | "scroll-padding-inline-start" | "scroll-padding-left" | "scroll-padding-right" | "scroll-padding-top" | "scroll-snap-align" | "scroll-snap-stop" | "scroll-snap-type" | "scrollbar-color" | "scrollbar-gutter" | "scrollbar-width" | "shape-image-threshold" | "shape-margin" | "shape-outside" | "speak" | "speak-as" | "clip-rule" | "color-interpolation" | "cx" | "cy" | "d" | "fill" | "fill-rule" | "marker" | "marker-end" | "marker-mid" | "marker-start" | "r" | "rx" | "ry" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-color" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-width" | "text-anchor" | "text-rendering" | "vector-effect" | "x" | "y" | "color-interpolation-filters" | "flood-color" | "flood-opacity" | "lighting-color" | "tab-size" | "border-collapse" | "border-spacing" | "caption-side" | "empty-cells" | "table-layout" | "text-align" | "text-align-last" | "text-autospace" | "text-box" | "text-box-edge" | "text-box-trim" | "text-combine-upright" | "text-decoration" | "text-decoration-color" | "text-decoration-line" | "text-decoration-skip" | "text-decoration-skip-ink" | "text-decoration-style" | "text-decoration-thickness" | "text-emphasis" | "text-emphasis-color" | "text-emphasis-position" | "text-emphasis-style" | "text-indent" | "text-justify" | "text-orientation" | "text-overflow" | "text-shadow" | "text-size-adjust" | "text-spacing-trim" | "-webkit-text-fill-color" | "-webkit-text-stroke" | "-webkit-text-stroke-color" | "-webkit-text-stroke-width" | "text-transform" | "text-underline-offset" | "text-underline-position" | "text-wrap" | "text-wrap-mode" | "text-wrap-style" | "touch-action" | "transform-box" | "transform" | "transform-origin" | "backface-visibility" | "perspective" | "perspective-origin" | "transform-style" | "transition-behavior" | "transition" | "transition-delay" | "transition-duration" | "transition-property" | "transition-timing-function" | "user-select" | "vertical-align" | "view-transition-class" | "view-transition-name" | "visibility" | "white-space" | "white-space-collapse" | "orphans" | "widows" | "height" | "width" | "will-change" | "word-break" | "word-spacing" | "writing-mode" | "z-index" | "zoom")[];
8063
+ allowPropertyValues?: {
8064
+ position?: ("absolute" | "fixed" | "relative" | "static" | "sticky")[];
8065
+ "accent-color"?: ("auto")[];
8066
+ "alignment-baseline"?: ("alphabetic" | "baseline" | "central" | "ideographic" | "mathematical" | "middle" | "text-after-edge" | "text-before-edge")[];
8067
+ "align-items"?: ("anchor-center")[];
8068
+ "align-self"?: ("anchor-center" | "auto" | "normal" | "stretch")[];
8069
+ "anchor-name"?: ("none")[];
8070
+ "anchor-scope"?: ("all" | "none")[];
8071
+ "block-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
8072
+ bottom?: ("anchor" | "anchor-size" | "auto")[];
8073
+ height?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "stretch" | "auto")[];
8074
+ "inline-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
8075
+ "inset-block-end"?: ("anchor" | "anchor-size" | "auto")[];
8076
+ "inset-block-start"?: ("anchor" | "anchor-size" | "auto")[];
8077
+ "inset-block"?: ("anchor" | "anchor-size" | "auto")[];
8078
+ "inset-inline-end"?: ("anchor" | "anchor-size" | "auto")[];
8079
+ "inset-inline-start"?: ("anchor" | "anchor-size" | "auto")[];
8080
+ "inset-inline"?: ("anchor" | "anchor-size" | "auto")[];
8081
+ inset?: ("anchor" | "anchor-size" | "auto")[];
8082
+ "justify-items"?: ("anchor-center" | "left" | "legacy" | "right")[];
8083
+ "justify-self"?: ("anchor-center" | "auto" | "left" | "normal" | "right" | "stretch")[];
8084
+ left?: ("anchor" | "anchor-size" | "auto")[];
8085
+ "margin-block-end"?: ("anchor-size")[];
8086
+ "margin-block-start"?: ("anchor-size")[];
8087
+ "margin-block"?: ("anchor-size")[];
8088
+ "margin-bottom"?: ("anchor-size" | "auto")[];
8089
+ "margin-inline-end"?: ("anchor-size")[];
8090
+ "margin-inline-start"?: ("anchor-size")[];
8091
+ "margin-inline"?: ("anchor-size")[];
8092
+ "margin-left"?: ("anchor-size" | "auto")[];
8093
+ "margin-right"?: ("anchor-size" | "auto")[];
8094
+ "margin-top"?: ("anchor-size" | "auto")[];
8095
+ margin?: ("anchor-size" | "auto")[];
8096
+ "max-block-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
8097
+ "max-height"?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "none" | "stretch")[];
8098
+ "max-inline-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
8099
+ "max-width"?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "none" | "stretch")[];
8100
+ "min-block-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
8101
+ "min-height"?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "auto" | "stretch")[];
8102
+ "min-inline-size"?: ("anchor-size" | "fit-content" | "max-content" | "min-content")[];
8103
+ "min-width"?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "auto" | "stretch")[];
8104
+ "place-items"?: ("anchor-center")[];
8105
+ "place-self"?: ("anchor-center")[];
8106
+ "position-anchor"?: ("auto")[];
8107
+ "position-area"?: ("block-end" | "block-start" | "bottom" | "center" | "end" | "inline-end" | "inline-start" | "left" | "none" | "right" | "self-block-end" | "self-block-start" | "self-end" | "self-inline-end" | "self-inline-start" | "self-start" | "span-all" | "span-block-end" | "span-block-start" | "span-bottom" | "span-end" | "span-inline-end" | "span-inline-start" | "span-self-block-end" | "span-self-block-start" | "span-self-end" | "span-self-inline-end" | "span-self-inline-start" | "span-self-start" | "span-start" | "span-top" | "span-x-end" | "span-x-self-end" | "span-x-self-start" | "span-x-start" | "span-y-end" | "span-y-self-end" | "span-y-self-start" | "span-y-start" | "start" | "top" | "x-end" | "x-self-end" | "x-self-start" | "x-start" | "y-end" | "y-self-end" | "y-self-start" | "y-start")[];
8108
+ "position-try-fallbacks"?: ("flip-block" | "flip-inline" | "flip-start" | "none" | "position-area")[];
8109
+ "position-try-order"?: ("most-block-size" | "most-height" | "most-inline-size" | "most-width" | "normal")[];
8110
+ "position-visibility"?: ("always" | "anchors-visible" | "no-overflow")[];
8111
+ right?: ("anchor" | "anchor-size" | "auto")[];
8112
+ top?: ("anchor" | "anchor-size" | "auto")[];
8113
+ width?: ("anchor-size" | "fit-content" | "max-content" | "min-content" | "stretch" | "auto")[];
8114
+ "animation-direction"?: ("alternate" | "alternate-reverse" | "normal" | "reverse")[];
8115
+ "animation-duration"?: ("auto")[];
8116
+ "animation-fill-mode"?: ("backwards" | "both" | "forwards" | "none")[];
8117
+ "animation-iteration-count"?: ("infinite")[];
8118
+ "animation-name"?: ("none")[];
8119
+ "animation-play-state"?: ("paused" | "running")[];
8120
+ "animation-timing-function"?: ("jump")[];
8121
+ appearance?: ("auto" | "button" | "checkbox" | "listbox" | "menulist" | "menulist-button" | "meter" | "none" | "progress-bar" | "radio" | "searchfield" | "textarea" | "textfield" | "base-select")[];
8122
+ "aspect-ratio"?: ("auto")[];
8123
+ "background-attachment"?: ("fixed" | "local" | "scroll")[];
8124
+ "background-clip"?: ("border-box" | "content-box" | "padding-box" | "border-area" | "text")[];
8125
+ background?: ("background-clip" | "background-origin" | "background-size")[];
8126
+ "background-image"?: ("none" | "element" | "gradients" | "image-set")[];
8127
+ "background-origin"?: ("border-box" | "content-box" | "padding-box")[];
8128
+ "background-position"?: ("bottom" | "center" | "left" | "right" | "top")[];
8129
+ "background-repeat"?: ("2-value" | "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space")[];
8130
+ "background-size"?: ("auto" | "contain" | "cover")[];
8131
+ "baseline-shift"?: ("baseline" | "sub" | "super")[];
8132
+ "baseline-source"?: ("auto" | "first" | "last")[];
8133
+ "border-image-repeat"?: ("repeat" | "round" | "space" | "stretch")[];
8134
+ "border-image-width"?: ("auto")[];
8135
+ "border-image"?: ("fill" | "gradient")[];
8136
+ "border-bottom-left-radius"?: ("percentages")[];
8137
+ "border-bottom-right-radius"?: ("percentages")[];
8138
+ "border-radius"?: ("percentages")[];
8139
+ "border-top-left-radius"?: ("percentages")[];
8140
+ "border-top-right-radius"?: ("percentages")[];
8141
+ "border-style"?: ("dashed" | "dotted" | "double" | "groove" | "hidden" | "inset" | "none" | "outset" | "ridge" | "solid")[];
8142
+ "box-decoration-break"?: ("clone" | "slice")[];
8143
+ "box-shadow"?: ("inset")[];
8144
+ "box-sizing"?: ("border-box" | "content-box")[];
8145
+ "caret-shape"?: ("auto" | "bar" | "block" | "underscore")[];
8146
+ clip?: ("auto")[];
8147
+ "clip-path"?: ("path" | "fill-box" | "stroke-box" | "view-box")[];
8148
+ "color-scheme"?: ("dark" | "light" | "normal" | "only")[];
8149
+ "break-after"?: ("avoid-column" | "column" | "always" | "auto" | "avoid" | "avoid-page" | "left" | "page" | "recto" | "right" | "verso")[];
8150
+ "break-before"?: ("avoid-column" | "column" | "always" | "auto" | "avoid" | "avoid-page" | "left" | "page" | "recto" | "right" | "verso")[];
8151
+ "break-inside"?: ("avoid-column" | "auto" | "avoid" | "avoid-page")[];
8152
+ "column-fill"?: ("auto" | "balance")[];
8153
+ "column-span"?: ("all" | "none")[];
8154
+ contain?: ("content" | "none" | "strict" | "inline-size" | "layout" | "paint" | "size" | "style")[];
8155
+ "contain-intrinsic-block-size"?: ("none")[];
8156
+ "contain-intrinsic-height"?: ("none")[];
8157
+ "contain-intrinsic-inline-size"?: ("none")[];
8158
+ "contain-intrinsic-size"?: ("none")[];
8159
+ "contain-intrinsic-width"?: ("none")[];
8160
+ "container-name"?: ("none")[];
8161
+ "container-type"?: ("inline-size" | "normal" | "size" | "scroll-state")[];
8162
+ content?: ("gradient" | "none" | "normal" | "url" | "image-set")[];
8163
+ "content-visibility"?: ("auto" | "hidden" | "visible")[];
8164
+ "counter-reset"?: ("reversed" | "list-item" | "none")[];
8165
+ "counter-set"?: ("list-item" | "none")[];
8166
+ "counter-increment"?: ("list-item" | "none")[];
8167
+ "image-rendering"?: ("crisp-edges" | "auto" | "pixelated" | "smooth")[];
8168
+ "text-overflow"?: ("string" | "clip" | "ellipsis")[];
8169
+ display?: ("block" | "inline" | "inline-block" | "none" | "contents" | "flow-root" | "list-item" | "ruby" | "ruby-base" | "ruby-base-container" | "ruby-text" | "ruby-text-container" | "inline-table" | "table" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row" | "table-row-group" | "flex" | "inline-flex" | "grid" | "inline-grid" | "math")[];
8170
+ "ruby-position"?: ("alternate" | "inter-character" | "over" | "under")[];
8171
+ "dominant-baseline"?: ("alphabetic" | "auto" | "central" | "hanging" | "ideographic" | "mathematical" | "middle")[];
8172
+ "field-sizing"?: ("content" | "fixed")[];
8173
+ filter?: ("blur" | "brightness" | "contrast" | "drop-shadow" | "grayscale" | "hue-rotate" | "invert" | "opacity" | "saturate" | "sepia")[];
8174
+ "align-content"?: ("normal")[];
8175
+ "flex-basis"?: ("auto" | "content" | "fit-content" | "max-content" | "min-content")[];
8176
+ "flex-direction"?: ("column" | "column-reverse" | "row" | "row-reverse")[];
8177
+ "flex-wrap"?: ("nowrap" | "wrap" | "wrap-reverse")[];
8178
+ flex?: ("none")[];
8179
+ "justify-content"?: ("left" | "normal" | "right")[];
8180
+ clear?: ("both" | "left" | "right" | "inline-end" | "inline-start")[];
8181
+ float?: ("left" | "none" | "right" | "inline-end" | "inline-start")[];
8182
+ "font-family"?: ("math" | "system-ui" | "ui-monospace" | "ui-rounded" | "ui-sans-serif" | "ui-serif")[];
8183
+ "font-feature-settings"?: ("normal")[];
8184
+ "font-kerning"?: ("auto" | "none" | "normal")[];
8185
+ "font-optical-sizing"?: ("auto" | "none")[];
8186
+ "font-palette"?: ("dark" | "light" | "normal")[];
8187
+ font?: ("caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar")[];
8188
+ "font-size"?: ("xxx-large" | "math")[];
8189
+ "font-size-adjust"?: ("from-font" | "none" | "two-values")[];
8190
+ "font-stretch"?: ("percentage")[];
8191
+ "font-style"?: ("italic" | "normal" | "oblique-angle")[];
8192
+ "font-synthesis"?: ("position" | "small-caps" | "style" | "weight")[];
8193
+ "font-synthesis-position"?: ("auto" | "none")[];
8194
+ "font-synthesis-small-caps"?: ("auto" | "none")[];
8195
+ "font-synthesis-style"?: ("auto" | "none")[];
8196
+ "font-synthesis-weight"?: ("auto" | "none")[];
8197
+ "font-variant"?: ("historical-forms" | "none" | "normal" | "sub" | "super")[];
8198
+ "font-variant-alternates"?: ("annotation" | "historical-forms" | "normal" | "ornaments" | "styleset" | "stylistic" | "swash")[];
8199
+ "font-variant-caps"?: ("all-petite-caps" | "all-small-caps" | "normal" | "petite-caps" | "small-caps" | "titling-caps" | "unicase")[];
8200
+ "font-variant-east-asian"?: ("full-width" | "jis04" | "jis78" | "jis83" | "jis90" | "normal" | "proportional-width" | "ruby" | "simplified" | "traditional")[];
8201
+ "font-variant-emoji"?: ("emoji" | "normal" | "text" | "unicode")[];
8202
+ "font-variant-ligatures"?: ("common-ligatures" | "contextual" | "discretionary-ligatures" | "historical-ligatures" | "no-common-ligatures" | "no-contextual" | "no-discretionary-ligatures" | "no-historical-ligatures" | "none" | "normal")[];
8203
+ "font-variant-numeric"?: ("diagonal-fractions" | "lining-nums" | "normal" | "oldstyle-nums" | "ordinal" | "proportional-nums" | "slashed-zero" | "stacked-fractions" | "tabular-nums")[];
8204
+ "font-variant-position"?: ("normal" | "sub" | "super")[];
8205
+ "font-weight"?: ("bold" | "bolder" | "lighter" | "normal" | "number")[];
8206
+ "font-width"?: ("condensed" | "expanded" | "extra-condensed" | "extra-expanded" | "normal" | "semi-condensed" | "semi-expanded" | "ultra-condensed" | "ultra-expanded")[];
8207
+ "forced-color-adjust"?: ("auto" | "none" | "preserve-parent-color")[];
8208
+ gap?: ("normal")[];
8209
+ "grid-auto-flow"?: ("column" | "dense" | "row")[];
8210
+ "grid-template-areas"?: ("none")[];
8211
+ "grid-template-columns"?: ("auto" | "fit-content" | "max-content" | "min-content" | "minmax" | "none" | "repeat" | "animation" | "masonry" | "subgrid")[];
8212
+ "grid-template-rows"?: ("auto" | "fit-content" | "max-content" | "min-content" | "minmax" | "none" | "repeat" | "animation" | "masonry" | "subgrid")[];
8213
+ "grid-template"?: ("none")[];
8214
+ "row-gap"?: ("normal")[];
8215
+ "hanging-punctuation"?: ("allow-end" | "first" | "last" | "none")[];
8216
+ "hyphenate-character"?: ("auto")[];
8217
+ "hyphenate-limit-chars"?: ("auto")[];
8218
+ hyphens?: ("auto")[];
8219
+ "image-orientation"?: ("from-image" | "none")[];
8220
+ rotate?: ("none")[];
8221
+ scale?: ("none")[];
8222
+ translate?: ("none")[];
8223
+ "initial-letter"?: ("normal")[];
8224
+ interactivity?: ("auto" | "inert")[];
8225
+ "interpolate-size"?: ("allow-keywords" | "numeric-only")[];
8226
+ direction?: ("ltr" | "rtl")[];
8227
+ "unicode-bidi"?: ("bidi-override" | "embed" | "isolate" | "isolate-override" | "normal" | "plaintext")[];
8228
+ "letter-spacing"?: ("normal")[];
8229
+ "line-break"?: ("anywhere" | "auto" | "loose" | "normal" | "strict")[];
8230
+ "line-clamp"?: ("none")[];
8231
+ "line-height"?: ("normal")[];
8232
+ "list-style-image"?: ("none")[];
8233
+ "list-style-position"?: ("inside" | "outside")[];
8234
+ "list-style-type"?: ("arabic-indic" | "armenian" | "bengali" | "cambodian" | "circle" | "cjk-decimal" | "cjk-earthly-branch" | "cjk-heavenly-stem" | "cjk-ideographic" | "decimal" | "decimal-leading-zero" | "devanagari" | "disc" | "disclosure-closed" | "disclosure-open" | "ethiopic-numeric" | "georgian" | "gujarati" | "gurmukhi" | "hebrew" | "hiragana" | "hiragana-iroha" | "japanese-formal" | "japanese-informal" | "kannada" | "katakana" | "katakana-iroha" | "khmer" | "korean-hangul-formal" | "korean-hanja-formal" | "korean-hanja-informal" | "lao" | "lower-alpha" | "lower-armenian" | "lower-greek" | "lower-latin" | "lower-roman" | "malayalam" | "mongolian" | "myanmar" | "none" | "oriya" | "persian" | "simp-chinese-formal" | "simp-chinese-informal" | "square" | "string" | "symbols" | "tamil" | "telugu" | "thai" | "tibetan" | "trad-chinese-formal" | "trad-chinese-informal" | "upper-alpha" | "upper-armenian" | "upper-latin" | "upper-roman")[];
8235
+ "list-style"?: ("symbols")[];
8236
+ "overflow-block"?: ("overlay")[];
8237
+ "overflow-inline"?: ("overlay")[];
8238
+ "margin-trim"?: ("block" | "block-end" | "block-start" | "inline" | "inline-end" | "inline-start" | "none")[];
8239
+ "mask-type"?: ("alpha" | "luminance")[];
8240
+ "mask-clip"?: ("border" | "content" | "padding" | "text")[];
8241
+ "mask-composite"?: ("add" | "exclude" | "intersect" | "subtract")[];
8242
+ "mask-mode"?: ("alpha" | "luminance" | "match-source")[];
8243
+ "mask-origin"?: ("border" | "content" | "fill-box" | "padding" | "stroke-box" | "view-box")[];
8244
+ "text-transform"?: ("math-auto" | "capitalize" | "full-size-kana" | "full-width" | "lowercase" | "none" | "uppercase")[];
8245
+ "mix-blend-mode"?: ("plus-darker" | "plus-lighter")[];
8246
+ "offset-anchor"?: ("auto" | "bottom" | "center" | "left" | "right" | "top")[];
8247
+ "offset-path"?: ("border-box" | "content-box" | "fill-box" | "margin-box" | "none" | "padding-box" | "path" | "ray" | "stroke-box" | "url" | "view-box")[];
8248
+ "offset-position"?: ("auto" | "bottom" | "center" | "left" | "normal" | "right" | "top")[];
8249
+ "offset-rotate"?: ("auto" | "reverse")[];
8250
+ "column-count"?: ("auto")[];
8251
+ "column-gap"?: ("normal")[];
8252
+ "column-width"?: ("auto")[];
8253
+ "object-fit"?: ("contain" | "cover" | "fill" | "none" | "scale-down")[];
8254
+ "object-view-box"?: ("none")[];
8255
+ opacity?: ("percentages")[];
8256
+ "outline-style"?: ("auto" | "dashed" | "dotted" | "double" | "groove" | "inset" | "none" | "outset" | "ridge" | "solid")[];
8257
+ "overflow-anchor"?: ("auto" | "none")[];
8258
+ "overflow-x"?: ("clip" | "auto" | "hidden" | "scroll" | "visible")[];
8259
+ "overflow-y"?: ("clip" | "auto" | "hidden" | "scroll" | "visible")[];
8260
+ overflow?: ("clip" | "auto" | "hidden" | "scroll" | "visible")[];
8261
+ "overflow-clip-margin"?: ("border-box" | "content-box" | "padding-box")[];
8262
+ "overflow-wrap"?: ("anywhere" | "break-word" | "normal")[];
8263
+ overlay?: ("auto" | "none")[];
8264
+ "overscroll-behavior-block"?: ("auto" | "contain" | "none")[];
8265
+ "overscroll-behavior-inline"?: ("auto" | "contain" | "none")[];
8266
+ "overscroll-behavior-x"?: ("auto" | "contain" | "none")[];
8267
+ "overscroll-behavior-y"?: ("auto" | "contain" | "none")[];
8268
+ "overscroll-behavior"?: ("auto" | "contain" | "none")[];
8269
+ "page-break-after"?: ("always" | "auto" | "avoid" | "left" | "right")[];
8270
+ "page-break-before"?: ("always" | "auto" | "avoid" | "left" | "right")[];
8271
+ "page-break-inside"?: ("auto" | "avoid")[];
8272
+ "print-color-adjust"?: ("economy" | "exact")[];
8273
+ quotes?: ("auto" | "none")[];
8274
+ "reading-flow"?: ("flex-flow" | "flex-visual" | "grid-columns" | "grid-order" | "grid-rows" | "normal" | "source-order")[];
8275
+ resize?: ("block" | "inline")[];
8276
+ "ruby-align"?: ("center" | "space-around" | "space-between" | "start")[];
8277
+ "ruby-overhang"?: ("auto" | "none")[];
8278
+ "scroll-behavior"?: ("auto" | "smooth")[];
8279
+ "animation-range-end"?: ("normal")[];
8280
+ "animation-range-start"?: ("normal")[];
8281
+ "animation-timeline"?: ("scroll" | "view")[];
8282
+ "scroll-timeline-axis"?: ("block" | "inline" | "x" | "y")[];
8283
+ "timeline-scope"?: ("all" | "none")[];
8284
+ "view-timeline-axis"?: ("block" | "inline" | "x" | "y")[];
8285
+ "view-timeline-inset"?: ("auto")[];
8286
+ "scroll-initial-target"?: ("nearest" | "none")[];
8287
+ "scroll-marker-group"?: ("after" | "before" | "none")[];
8288
+ "scroll-padding-block-end"?: ("auto")[];
8289
+ "scroll-padding-block-start"?: ("auto")[];
8290
+ "scroll-padding-block"?: ("auto")[];
8291
+ "scroll-padding-inline-end"?: ("auto")[];
8292
+ "scroll-padding-inline-start"?: ("auto")[];
8293
+ "scroll-padding-inline"?: ("auto")[];
8294
+ "scroll-padding"?: ("auto")[];
8295
+ "scroll-snap-align"?: ("center" | "end" | "none" | "start")[];
8296
+ "scroll-snap-stop"?: ("always" | "normal")[];
8297
+ "scroll-snap-type"?: ("block" | "both" | "inline" | "none" | "x" | "y")[];
8298
+ "scrollbar-color"?: ("auto")[];
8299
+ "scrollbar-gutter"?: ("auto" | "stable")[];
8300
+ "scrollbar-width"?: ("auto" | "none" | "thin")[];
8301
+ "shape-image-threshold"?: ("percentages")[];
8302
+ "shape-outside"?: ("circle" | "gradient" | "image" | "inset" | "none" | "path" | "polygon")[];
8303
+ "speak-as"?: ("digits" | "literal-punctuation" | "no-punctuation" | "normal" | "spell-out")[];
8304
+ "clip-rule"?: ("evenodd" | "nonzero")[];
8305
+ "color-interpolation"?: ("linearGradient" | "sRGB")[];
8306
+ "fill-rule"?: ("evenodd" | "nonzero")[];
8307
+ "stroke-dasharray"?: ("none")[];
8308
+ "stroke-linecap"?: ("butt" | "round" | "square")[];
8309
+ "stroke-linejoin"?: ("bevel" | "miter" | "round")[];
8310
+ "text-rendering"?: ("auto" | "geometricPrecision")[];
8311
+ "color-interpolation-filters"?: ("auto" | "linearRGB" | "sRGB")[];
8312
+ "tab-size"?: ("length")[];
8313
+ "border-collapse"?: ("collapse" | "separate")[];
8314
+ "caption-side"?: ("bottom" | "bottom-outside" | "top" | "top-outside")[];
8315
+ "empty-cells"?: ("hide" | "show")[];
8316
+ "table-layout"?: ("auto" | "fixed")[];
8317
+ "text-align"?: ("center" | "end" | "justify" | "left" | "match-parent" | "right" | "start")[];
8318
+ "text-align-last"?: ("auto")[];
8319
+ "text-autospace"?: ("auto" | "ideograph-alpha" | "ideograph-numeric" | "insert" | "no-autospace" | "normal" | "punctuation" | "replace")[];
8320
+ "text-box-edge"?: ("auto")[];
8321
+ "text-box-trim"?: ("none" | "trim-both" | "trim-end" | "trim-start")[];
8322
+ "text-box"?: ("normal")[];
8323
+ "text-combine-upright"?: ("all" | "none")[];
8324
+ "text-decoration-line"?: ("grammar-error" | "line-through" | "none" | "overline" | "spelling-error" | "underline" | "blink")[];
8325
+ "text-decoration-skip-ink"?: ("all" | "auto" | "none")[];
8326
+ "text-decoration-skip"?: ("auto" | "none")[];
8327
+ "text-decoration-style"?: ("wavy")[];
8328
+ "text-decoration-thickness"?: ("auto" | "from-font" | "percentage")[];
8329
+ "text-emphasis-position"?: ("auto" | "left" | "over" | "right" | "under")[];
8330
+ "text-emphasis-style"?: ("circle" | "dot" | "double-circle" | "filled" | "none" | "sesame" | "triangle")[];
8331
+ "text-indent"?: ("each-line" | "hanging")[];
8332
+ "text-justify"?: ("auto" | "inter-character" | "inter-word" | "none")[];
8333
+ "text-orientation"?: ("mixed" | "sideways" | "upright")[];
8334
+ "text-size-adjust"?: ("auto" | "none" | "percentages")[];
8335
+ "text-spacing-trim"?: ("normal" | "space-all" | "space-first" | "trim-start")[];
8336
+ "text-underline-offset"?: ("auto" | "percentage")[];
8337
+ "text-underline-position"?: ("auto" | "from-font" | "left" | "right" | "under")[];
8338
+ "text-wrap"?: ("wrap" | "balance" | "nowrap" | "pretty" | "stable")[];
8339
+ "text-wrap-mode"?: ("nowrap" | "wrap")[];
8340
+ "text-wrap-style"?: ("auto" | "balance" | "pretty" | "stable")[];
8341
+ "touch-action"?: ("manipulation" | "none" | "pan-down" | "pan-left" | "pan-right" | "pan-up" | "pan-x" | "pan-y" | "pinch-zoom")[];
8342
+ "transform-box"?: ("border-box" | "content-box" | "fill-box" | "stroke-box" | "view-box")[];
8343
+ "transform-origin"?: ("bottom" | "center" | "left" | "right" | "top")[];
8344
+ "perspective-origin"?: ("bottom" | "center" | "left" | "right" | "top")[];
8345
+ perspective?: ("none")[];
8346
+ transform?: ("3d")[];
8347
+ transition?: ("transition-behavior")[];
8348
+ "transition-property"?: ("all" | "none")[];
8349
+ "transition-timing-function"?: ("jump")[];
8350
+ "user-select"?: ("all" | "auto" | "none" | "text")[];
8351
+ "vertical-align"?: ("baseline" | "bottom" | "middle" | "sub" | "super" | "text-bottom" | "text-top" | "top")[];
8352
+ "view-transition-class"?: ("none")[];
8353
+ "view-transition-name"?: ("match-element" | "none")[];
8354
+ visibility?: ("collapse" | "hidden" | "visible")[];
8355
+ "white-space"?: ("break-spaces" | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap")[];
8356
+ "white-space-collapse"?: ("break-spaces" | "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces")[];
8357
+ "will-change"?: ("auto" | "contents" | "scroll-position")[];
8358
+ "word-break"?: ("break-all" | "keep-all" | "normal" | "auto-phrase" | "break-word")[];
8359
+ "word-spacing"?: ("normal")[];
8360
+ "writing-mode"?: ("horizontal-tb" | "sideways-lr" | "sideways-rl" | "vertical-lr" | "vertical-rl" | "lr" | "lr-tb" | "rl" | "rl-tb" | "tb" | "tb-rl")[];
8361
+ "z-index"?: ("auto")[];
8362
+ };
8363
+ allowSelectors?: ("active-view-transition" | "active-view-transition-type" | "autofill" | "defined" | "backdrop" | "after" | "before" | "column" | "checkmark" | "picker" | "picker-icon" | "default" | "details-content" | "dir" | "empty" | "file-selector-button" | "first-letter" | "first-line" | "focus-visible" | "focus-within" | "in-range" | "invalid" | "optional" | "out-of-range" | "required" | "valid" | "fullscreen" | "has" | "has-slotted" | "heading" | "headingfunction" | "highlight" | "host" | "hostfunction" | "host-context" | "indeterminate" | "checked" | "disabled" | "enabled" | "is" | "lang" | "any-link" | "link" | "visited" | "marker" | "buffering" | "muted" | "paused" | "playing" | "seeking" | "stalled" | "volume-locked" | "modal" | "namespace" | "nesting" | "not" | "first-child" | "last-child" | "nth-child" | "nth-last-child" | "only-child" | "first-of-type" | "last-of-type" | "nth-last-of-type" | "nth-of-type" | "only-of-type" | "open" | "first" | "left" | "right" | "picture-in-picture" | "placeholder" | "placeholder-shown" | "popover-open" | "read-only" | "read-write" | "root" | "scope" | "scroll-button" | "scroll-marker" | "scroll-marker-group" | "selection" | "attribute" | "child" | "class" | "descendant" | "id" | "list" | "next-sibling" | "subsequent-sibling" | "type" | "universal" | "part" | "slotted" | "grammar-error" | "spelling-error" | "state" | "target" | "target-text" | "future" | "past" | "active" | "focus" | "hover" | "user-invalid" | "user-valid" | "view-transition" | "view-transition-group" | "view-transition-image-pair" | "view-transition-new" | "view-transition-old" | "cue" | "xr-overlay" | "where")[];
8053
8364
  }];
8054
8365
  // ----- css/use-layers -----
8055
8366
  type CssUseLayers = [] | [{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@2digits/eslint-config",
3
- "version": "4.12.4",
3
+ "version": "4.12.6",
4
4
  "description": "Effortlessly enforce best practices and catch errors with this comprehensive ESLint configuration for TypeScript, featuring popular plugins like @typescript-eslint, eslint-plugin-react, and eslint-plugin-unicorn.",
5
5
  "homepage": "https://2d-configs.vercel.app/",
6
6
  "repository": {
@@ -27,9 +27,9 @@
27
27
  "public": true,
28
28
  "dependencies": {
29
29
  "@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
30
- "@eslint-react/eslint-plugin": "2.2.4",
31
- "@eslint/compat": "1.4.0",
32
- "@eslint/css": "0.13.0",
30
+ "@eslint-react/eslint-plugin": "2.3.1",
31
+ "@eslint/compat": "1.4.1",
32
+ "@eslint/css": "0.14.0",
33
33
  "@eslint/js": "9.38.0",
34
34
  "@eslint/markdown": "7.5.0",
35
35
  "@graphql-eslint/eslint-plugin": "4.4.0",
@@ -49,7 +49,7 @@
49
49
  "eslint-plugin-depend": "1.3.1",
50
50
  "eslint-plugin-drizzle": "0.2.3",
51
51
  "eslint-plugin-github-action": "0.0.16",
52
- "eslint-plugin-jsdoc": "61.1.10",
52
+ "eslint-plugin-jsdoc": "61.1.11",
53
53
  "eslint-plugin-jsonc": "2.21.0",
54
54
  "eslint-plugin-n": "17.23.1",
55
55
  "eslint-plugin-pnpm": "1.3.0",
@@ -57,13 +57,13 @@
57
57
  "eslint-plugin-react-hooks": "7.0.1",
58
58
  "eslint-plugin-regexp": "2.10.0",
59
59
  "eslint-plugin-sonarjs": "3.0.5",
60
- "eslint-plugin-storybook": "10.0.0",
60
+ "eslint-plugin-storybook": "10.0.2",
61
61
  "eslint-plugin-tailwindcss": "3.18.2",
62
- "eslint-plugin-turbo": "2.5.8",
62
+ "eslint-plugin-turbo": "2.6.0",
63
63
  "eslint-plugin-unicorn": "62.0.0",
64
64
  "eslint-plugin-yml": "1.19.0",
65
- "eslint-plugin-zod-x": "1.7.0",
66
- "globals": "16.4.0",
65
+ "eslint-plugin-zod-x": "1.7.1",
66
+ "globals": "16.5.0",
67
67
  "graphql-config": "5.1.5",
68
68
  "jsonc-eslint-parser": "2.4.1",
69
69
  "local-pkg": "1.1.2",
@@ -83,9 +83,9 @@
83
83
  "react": "19.2.0",
84
84
  "tinyexec": "1.0.1",
85
85
  "tinyglobby": "0.2.15",
86
- "tsdown": "0.15.11",
86
+ "tsdown": "0.15.12",
87
87
  "typescript": "5.9.3",
88
- "vitest": "4.0.4",
88
+ "vitest": "4.0.6",
89
89
  "@2digits/tsconfig": "0.8.4"
90
90
  },
91
91
  "scripts": {