@pikacss/core 0.0.52 → 0.0.53

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/dist/index.d.mts CHANGED
@@ -1,5 +1,18 @@
1
1
  //#region src/plugins/important.d.ts
2
+ /**
3
+ * Configuration object for the `important` engine option.
4
+ *
5
+ * @example
6
+ * ```ts
7
+ * const config: ImportantConfig = { default: true }
8
+ * ```
9
+ */
2
10
  interface ImportantConfig {
11
+ /**
12
+ * Whether `!important` is appended to every generated declaration by default.
13
+ *
14
+ * @default false
15
+ */
3
16
  default?: boolean;
4
17
  }
5
18
  declare module '@pikacss/core' {
@@ -17,7 +30,7 @@ declare module '@pikacss/core' {
17
30
  *
18
31
  * @returns An `EnginePlugin` that intercepts `transformStyleDefinitions` to conditionally append `!important` to every property value.
19
32
  *
20
- * @remarks When `EngineConfig.important.default` is `true`, all property values receive `!important` unless the style definition explicitly sets `__important: false`. Individual style definitions can also opt-in with `__important: true` regardless of the default.
33
+ * @remarks When `EngineConfig.important.default` is `true`, all property values receive `!important` unless the style definition explicitly sets `__important: false`. Individual style definitions can also opt-in with `__important: true` regardless of the default. An explicit `__important` flag is propagated into nested selector blocks (which may override it with their own explicit flag). The `__shortcut` reference is never modified.
21
34
  *
22
35
  * @example
23
36
  * ```ts
@@ -166,7 +179,7 @@ interface ResolvedResult<T> {
166
179
  *
167
180
  * @example
168
181
  * ```ts
169
- * const rule: StaticRule<string[]> = { key: 'hover', string: 'hover', resolved: ['&:hover'] }
182
+ * const rule: StaticRule<string[]> = { key: 'hover', string: 'hover', resolved: ['$:hover'] }
170
183
  * ```
171
184
  */
172
185
  interface StaticRule<T> {
@@ -183,7 +196,7 @@ interface StaticRule<T> {
183
196
  *
184
197
  * @typeParam T - The type of the resolved value.
185
198
  *
186
- * @remarks Dynamic rules are tried in registration order after all static rules fail to match. The `stringPattern` must not have the global flag (it is stripped on creation). The `createResolved` callback receives the regex match array and may be async.
199
+ * @remarks Dynamic rules are tried in registration order after all static rules fail to match. The `stringPattern` must not have the global flag (it is stripped on creation). The `createResolved` callback receives the regex match array and may be async. Returning `undefined` or `null` signals a retryable-unresolved result: the input is treated as unresolved and no cache entry is stored, so a later resolve call re-invokes the rule (e.g. after a transient failure such as a network error).
187
200
  *
188
201
  * @example
189
202
  * ```ts
@@ -199,8 +212,8 @@ interface DynamicRule<T> {
199
212
  key: string;
200
213
  /** Regex pattern (without global flag) tested against input strings. */
201
214
  stringPattern: RegExp;
202
- /** Factory function that computes the resolved value from the regex match. */
203
- createResolved: (matched: RegExpMatchArray) => Awaitable<T>;
215
+ /** Factory function that computes the resolved value from the regex match. Returning `undefined`/`null` means retryable-unresolved: nothing is cached and the rule is re-invoked on a later resolve call. */
216
+ createResolved: (matched: RegExpMatchArray) => Awaitable<T | Nullish>;
204
217
  }
205
218
  /**
206
219
  * Base resolver class that manages static and dynamic rules and caches resolution results.
@@ -220,6 +233,10 @@ interface DynamicRule<T> {
220
233
  declare abstract class AbstractResolver<T> {
221
234
  /** Cache of previously resolved input-string → result pairs. */
222
235
  _resolvedResultsMap: Map<string, ResolvedResult<T>>;
236
+ /** Negative cache of input strings that matched no rule at all. Retryable-unresolved dynamic results (a matched dynamic rule whose value fn returned nullish) are never stored here. */
237
+ _unmatchedStrings: Set<string>;
238
+ /** Index of static rules keyed by their exact match string (first registered rule wins on string collisions), giving O(1) static lookups. */
239
+ _staticRulesByString: Map<string, StaticRule<T>>;
223
240
  /** Registry of static rules keyed by their unique key. */
224
241
  staticRulesMap: Map<string, StaticRule<T>>;
225
242
  /** Registry of dynamic rules keyed by their unique key. */
@@ -234,7 +251,7 @@ declare abstract class AbstractResolver<T> {
234
251
  * @param rule - The static rule to register.
235
252
  * @returns `this` for chaining.
236
253
  *
237
- * @remarks Overwrites any existing static rule with the same key.
254
+ * @remarks Overwrites any existing static rule with the same key. The entire resolution cache is cleared because cached results (including recursively expanded ones) may depend on the previous rule.
238
255
  *
239
256
  * @example
240
257
  * ```ts
@@ -248,7 +265,7 @@ declare abstract class AbstractResolver<T> {
248
265
  * @param key - The key of the static rule to remove.
249
266
  * @returns `this` for chaining.
250
267
  *
251
- * @remarks Logs a warning if the key does not exist. Also evicts the cached result for the rule's input string.
268
+ * @remarks Logs a warning if the key does not exist. The entire resolution cache is cleared because cached results (including recursively expanded ones) may depend on the removed rule.
252
269
  *
253
270
  * @example
254
271
  * ```ts
@@ -256,13 +273,21 @@ declare abstract class AbstractResolver<T> {
256
273
  * ```
257
274
  */
258
275
  removeStaticRule(key: string): this;
276
+ /**
277
+ * Recomputes the string-index entry for a given match string after a rule mutation.
278
+ *
279
+ * @param string - The match string whose index entry should be recomputed.
280
+ *
281
+ * @remarks Scans `staticRulesMap` in insertion order so the first registered rule matching the string wins, mirroring the pre-index linear-scan behavior. Removes the entry when no rule matches the string anymore.
282
+ */
283
+ _reindexStaticRuleString(string: string): void;
259
284
  /**
260
285
  * Registers a dynamic rule in the resolver.
261
286
  *
262
287
  * @param rule - The dynamic rule to register.
263
288
  * @returns `this` for chaining.
264
289
  *
265
- * @remarks Overwrites any existing dynamic rule with the same key.
290
+ * @remarks Overwrites any existing dynamic rule with the same key. The entire resolution cache is cleared because cached results (including recursively expanded ones) may depend on the previous rule.
266
291
  *
267
292
  * @example
268
293
  * ```ts
@@ -276,7 +301,7 @@ declare abstract class AbstractResolver<T> {
276
301
  * @param key - The key of the dynamic rule to remove.
277
302
  * @returns `this` for chaining.
278
303
  *
279
- * @remarks Iterates through all cached results and deletes any whose input string matches the removed rule's pattern. Logs a warning if the key does not exist.
304
+ * @remarks Logs a warning if the key does not exist. The entire resolution cache is cleared because cached results (including recursively expanded ones) may depend on the removed rule.
280
305
  *
281
306
  * @example
282
307
  * ```ts
@@ -290,7 +315,7 @@ declare abstract class AbstractResolver<T> {
290
315
  * @param string - The input string to resolve.
291
316
  * @returns The resolved result wrapper, or `null`/`undefined` if no rule matches.
292
317
  *
293
- * @remarks Results are cached for subsequent calls. Invokes `onResolved` after a successful match. Dynamic rule matching is async because `createResolved` may return a `Promise`.
318
+ * @remarks Results are cached for subsequent calls. Invokes `onResolved` after a successful match. Dynamic rule matching is async because `createResolved` may return a `Promise`. When a dynamic rule's `createResolved` returns `undefined`/`null`, the input is treated as unresolved and no cache entry is stored, so a later resolve call re-invokes the rule.
294
319
  *
295
320
  * @example
296
321
  * ```ts
@@ -308,7 +333,7 @@ declare abstract class AbstractResolver<T> {
308
333
  *
309
334
  * @example
310
335
  * ```ts
311
- * resolver._setResolvedResult('hover', ['&:hover'])
336
+ * resolver._setResolvedResult('hover', ['$:hover'])
312
337
  * ```
313
338
  */
314
339
  _setResolvedResult(string: string, resolved: T): void;
@@ -325,7 +350,7 @@ declare abstract class AbstractResolver<T> {
325
350
  * ```ts
326
351
  * class SelectorResolver extends RecursiveResolver<string> { }
327
352
  * const result = await resolver.resolve('hover-focus')
328
- * // ['&:hover', '&:focus'] after recursive expansion
353
+ * // ['$:hover', '$:focus'] after recursive expansion
329
354
  * ```
330
355
  */
331
356
  declare abstract class RecursiveResolver<T> extends AbstractResolver<T[]> {
@@ -357,7 +382,7 @@ declare abstract class RecursiveResolver<T> extends AbstractResolver<T[]> {
357
382
  * ```ts
358
383
  * const config: ResolvedRuleConfig<string> = {
359
384
  * type: 'static',
360
- * rule: { key: 'hover', string: 'hover', resolved: ['&:hover'] },
385
+ * rule: { key: 'hover', string: 'hover', resolved: ['$:hover'] },
361
386
  * autocomplete: ['hover'],
362
387
  * }
363
388
  * ```
@@ -382,17 +407,19 @@ type ResolvedRuleConfig<T> = {
382
407
  * - **Tuple `[RegExp, fn, autocomplete?]`**: a dynamic rule matching a pattern and lazily computing resolved CSS selectors.
383
408
  * - **Object `{ selector, value, autocomplete? }`**: an explicit form of either static or dynamic rule.
384
409
  *
410
+ * A dynamic rule's value function may return `undefined`/`null` to signal a retryable-unresolved result: nothing is cached and the rule is re-invoked on a later resolve call (e.g. after a transient failure).
411
+ *
385
412
  * @example
386
413
  * ```ts
387
414
  * const rules: Selector[] = [
388
- * ['hover', '&:hover'],
415
+ * ['hover', '$:hover'],
389
416
  * [/^media-(\d+)$/, m => `@media (min-width: ${m[1]}px)`, 'media-${breakpoint}'],
390
417
  * ]
391
418
  * ```
392
419
  */
393
- type Selector = string | [selector: RegExp, value: (matched: RegExpMatchArray) => Awaitable<Arrayable<UnionString | ResolvedSelector>>, autocomplete?: Arrayable<string>] | [selector: string, value: Arrayable<UnionString | ResolvedSelector>] | {
420
+ type Selector = string | [selector: RegExp, value: (matched: RegExpMatchArray) => Awaitable<Arrayable<UnionString | ResolvedSelector> | Nullish>, autocomplete?: Arrayable<string>] | [selector: string, value: Arrayable<UnionString | ResolvedSelector>] | {
394
421
  selector: RegExp;
395
- value: (matched: RegExpMatchArray) => Awaitable<Arrayable<UnionString | ResolvedSelector>>;
422
+ value: (matched: RegExpMatchArray) => Awaitable<Arrayable<UnionString | ResolvedSelector> | Nullish>;
396
423
  autocomplete?: Arrayable<string>;
397
424
  } | {
398
425
  selector: string;
@@ -406,7 +433,7 @@ type Selector = string | [selector: RegExp, value: (matched: RegExpMatchArray) =
406
433
  * @example
407
434
  * ```ts
408
435
  * const config: SelectorsConfig = {
409
- * definitions: [['hover', '&:hover'], ['focus', '&:focus']],
436
+ * definitions: [['hover', '$:hover'], ['focus', '$:focus']],
410
437
  * }
411
438
  * ```
412
439
  */
@@ -455,7 +482,7 @@ declare class SelectorResolver extends RecursiveResolver<string> {}
455
482
  *
456
483
  * @example
457
484
  * ```ts
458
- * const resolved = resolveSelectorConfig(['hover', '&:hover'])
485
+ * const resolved = resolveSelectorConfig(['hover', '$:hover'])
459
486
  * ```
460
487
  */
461
488
  declare function resolveSelectorConfig(config: Selector): string | Nullish | ResolvedRuleConfig<string>;
@@ -464,7 +491,7 @@ declare function resolveSelectorConfig(config: Selector): string | Nullish | Res
464
491
  /**
465
492
  * User-facing shortcut rule configuration. Accepts string redirects, tuple shorthands, or object forms.
466
493
  *
467
- * @remarks Shortcuts expand a single name into one or more style items, allowing reusable composition of atomic styles. The configuration shapes mirror `Selector`: string redirect, `[string, value]` static, `[RegExp, fn, autocomplete?]` dynamic, or object equivalents.
494
+ * @remarks Shortcuts expand a single name into one or more style items, allowing reusable composition of atomic styles. The configuration shapes mirror `Selector`: string redirect, `[string, value]` static, `[RegExp, fn, autocomplete?]` dynamic, or object equivalents. A dynamic rule's value function may return `undefined`/`null` to signal a retryable-unresolved result: nothing is cached and the rule is re-invoked on a later resolve call (e.g. after a transient failure).
468
495
  *
469
496
  * @example
470
497
  * ```ts
@@ -474,9 +501,9 @@ declare function resolveSelectorConfig(config: Selector): string | Nullish | Res
474
501
  * ]
475
502
  * ```
476
503
  */
477
- type Shortcut = string | [shortcut: RegExp, value: (matched: RegExpMatchArray) => Awaitable<Arrayable<ResolvedStyleItem>>, autocomplete?: Arrayable<string>] | {
504
+ type Shortcut = string | [shortcut: RegExp, value: (matched: RegExpMatchArray) => Awaitable<Arrayable<ResolvedStyleItem> | Nullish>, autocomplete?: Arrayable<string>] | {
478
505
  shortcut: RegExp;
479
- value: (matched: RegExpMatchArray) => Awaitable<Arrayable<ResolvedStyleItem>>;
506
+ value: (matched: RegExpMatchArray) => Awaitable<Arrayable<ResolvedStyleItem> | Nullish>;
480
507
  autocomplete?: Arrayable<string>;
481
508
  } | [shortcut: string, value: Arrayable<ResolvedStyleItem>] | {
482
509
  shortcut: string;
@@ -1299,6 +1326,12 @@ declare class Engine {
1299
1326
  extract: ExtractFn;
1300
1327
  /** The engine's runtime store holding registered atomic styles and their ID mappings. */
1301
1328
  store: EngineStore;
1329
+ /**
1330
+ * Absolute paths of external files this engine's config depends on (e.g. token files loaded by plugins).
1331
+ *
1332
+ * @remarks Plugins register paths via `addConfigDependency` during `configureEngine`. Integration layers (e.g. the unplugin) watch these files and re-create the engine when they change.
1333
+ */
1334
+ configDependencies: Set<string>;
1302
1335
  /**
1303
1336
  * Creates an engine instance from a resolved configuration.
1304
1337
  *
@@ -1312,6 +1345,35 @@ declare class Engine {
1312
1345
  * ```
1313
1346
  */
1314
1347
  constructor(config: ResolvedEngineConfig);
1348
+ /**
1349
+ * Invokes a preflight function, memoizing the result in the given render-pass context.
1350
+ *
1351
+ * @param fn - The preflight function to invoke.
1352
+ * @param isFormatted - Whether the preflight should produce formatted output.
1353
+ * @param ctx - The render-pass context created by `renderPreflights`. When provided, each function executes at most once per pass and the context is forwarded to the preflight function.
1354
+ * @returns A promise of the preflight result.
1355
+ *
1356
+ * @remarks Within one render pass each function executes at most once; concurrent callers (e.g. the variables pruning preflight scanning other preflights for `var()` usage) share the same promise. The memoization is scoped to `ctx`, so overlapping `renderPreflights` calls never interfere with each other. Without a context the function is invoked directly without caching — this is a deliberate change from the previous instance-scoped memoization, which could not tell overlapping passes apart. A preflight that inspects other preflights must therefore forward the `ctx` it receives (its third argument); calling with only `(fn, isFormatted)` from inside a pass runs `fn` again instead of reusing the pass result.
1357
+ *
1358
+ * @example
1359
+ * ```ts
1360
+ * const result = await engine.invokePreflight(preflight.fn, false, ctx)
1361
+ * ```
1362
+ */
1363
+ invokePreflight(fn: PreflightFn, isFormatted: boolean, ctx?: PreflightContext): Promise<string | PreflightDefinition>;
1364
+ /**
1365
+ * Registers an external file path as a config dependency of this engine.
1366
+ *
1367
+ * @param path - The file path (ideally absolute) the current config was derived from.
1368
+ *
1369
+ * @remarks Call from a plugin (typically in `configureEngine`) after loading data from disk. Integration layers watch registered paths and rebuild the engine when any of them changes.
1370
+ *
1371
+ * @example
1372
+ * ```ts
1373
+ * engine.addConfigDependency('/project/design.md')
1374
+ * ```
1375
+ */
1376
+ addConfigDependency(path: string): void;
1315
1377
  /**
1316
1378
  * Fires the `preflightUpdated` hook to notify plugins that preflight content has changed.
1317
1379
  *
@@ -1392,7 +1454,7 @@ declare class Engine {
1392
1454
  * Processes style items through the plugin pipeline and registers the resulting atomic styles in the store.
1393
1455
  *
1394
1456
  * @param itemList - Style items to process: string references (shortcuts) and/or style definition objects.
1395
- * @returns An array of atomic style IDs (and unresolved string references) in insertion order.
1457
+ * @returns An array containing any unresolved string references first, followed by atomic style IDs in resolution order.
1396
1458
  *
1397
1459
  * @remarks Runs `transformStyleItems` and `extractStyleDefinition` hooks, resolves each extracted content into an atomic style, deduplicates by base key, and fires `atomicStyleAdded` for new entries.
1398
1460
  *
@@ -1406,16 +1468,21 @@ declare class Engine {
1406
1468
  * Renders all registered preflight definitions into a CSS string.
1407
1469
  *
1408
1470
  * @param isFormatted - Whether to produce human-readable CSS with newlines and indentation.
1471
+ * @param options - Optional render-pass options.
1472
+ * @param options.usedAtomicStyleIds - Atomic style IDs considered "in use" for this pass. When provided, pruning preflights (variables, keyframes) only consider these atomic styles instead of the whole append-only store; when omitted, all stored atomic styles are considered.
1409
1473
  * @returns The rendered preflight CSS, including `@import` statements, optional `@layer` wrappers, and all preflight content.
1410
1474
  *
1411
- * @remarks Evaluates each preflight function, groups output by layer, wraps unlayered preflights in the default preflights layer (when present), and respects configured layer ordering.
1475
+ * @remarks Evaluates each preflight function, groups output by layer, wraps unlayered preflights in the default preflights layer (when present), and respects configured layer ordering. Each call creates its own `PreflightContext`, so within one pass each preflight function executes exactly once even when passes overlap.
1412
1476
  *
1413
1477
  * @example
1414
1478
  * ```ts
1415
1479
  * const css = await engine.renderPreflights(true)
1480
+ * const scoped = await engine.renderPreflights(true, { usedAtomicStyleIds: ['pk-a'] })
1416
1481
  * ```
1417
1482
  */
1418
- renderPreflights(isFormatted: boolean): Promise<string>;
1483
+ renderPreflights(isFormatted: boolean, options?: {
1484
+ usedAtomicStyleIds?: Iterable<string>;
1485
+ }): Promise<string>;
1419
1486
  /**
1420
1487
  * Renders atomic styles into a CSS string, optionally filtered by ID and grouped by layer.
1421
1488
  *
@@ -1492,7 +1559,7 @@ type EnginePluginHooksOptions = { [K in keyof EngineHooksDefinition]?: EngineHoo
1492
1559
  * ```ts
1493
1560
  * const myPlugin: EnginePlugin = {
1494
1561
  * name: 'my-plugin',
1495
- * configureRawConfig: (config) => ({ ...config, important: true }),
1562
+ * configureRawConfig: (config) => ({ ...config, important: { default: true } }),
1496
1563
  * }
1497
1564
  * ```
1498
1565
  */
@@ -1518,7 +1585,7 @@ interface EnginePlugin extends EnginePluginHooksOptions {
1518
1585
  * ```ts
1519
1586
  * export default defineEnginePlugin({
1520
1587
  * name: 'my-plugin',
1521
- * configureRawConfig: (config) => ({ ...config, important: true }),
1588
+ * configureRawConfig: (config) => ({ ...config, important: { default: true } }),
1522
1589
  * })
1523
1590
  * ```
1524
1591
  */
@@ -1992,7 +2059,9 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1992
2059
  *
1993
2060
  * 🔑 Values: `auto` | `no-ellipsis`
1994
2061
  *
1995
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
2062
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
2063
+ *
2064
+ * @experimental
1996
2065
  */
1997
2066
  blockEllipsis?: Property.BlockEllipsis | undefined;
1998
2067
  /**
@@ -3173,10 +3242,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3173
3242
  */
3174
3243
  columnRule?: Property.ColumnRule<TLength> | undefined;
3175
3244
  /**
3245
+ * ❌ Baseline: Not widely available
3176
3246
  *
3177
3247
  * 🔑 Values: `intersection` | `none` | `normal`
3178
3248
  *
3179
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
3249
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
3250
+ *
3251
+ * @experimental
3180
3252
  */
3181
3253
  columnRuleBreak?: Property.ColumnRuleBreak | undefined;
3182
3254
  /**
@@ -3190,48 +3262,87 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3190
3262
  */
3191
3263
  columnRuleColor?: Property.ColumnRuleColor | undefined;
3192
3264
  /**
3265
+ * ❌ Baseline: Not widely available
3193
3266
  *
3194
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
3267
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
3268
+ *
3269
+ * @experimental
3195
3270
  */
3196
- columnRuleInset?: Property.ColumnRuleInset<TLength> | undefined;
3271
+ columnRuleInset?: Property.ColumnRuleInset | undefined;
3197
3272
  /**
3273
+ * ❌ Baseline: Not widely available
3198
3274
  *
3199
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
3275
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
3276
+ *
3277
+ * @experimental
3200
3278
  */
3201
- columnRuleInsetCap?: Property.ColumnRuleInsetCap<TLength> | undefined;
3279
+ columnRuleInsetCap?: Property.ColumnRuleInsetCap | undefined;
3202
3280
  /**
3281
+ * ❌ Baseline: Not widely available
3203
3282
  *
3204
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
3283
+ * 🔑 Values: `overlap-join`
3284
+ *
3285
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
3286
+ *
3287
+ * @experimental
3205
3288
  */
3206
3289
  columnRuleInsetCapEnd?: Property.ColumnRuleInsetCapEnd<TLength> | undefined;
3207
3290
  /**
3291
+ * ❌ Baseline: Not widely available
3208
3292
  *
3209
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
3293
+ * 🔑 Values: `overlap-join`
3294
+ *
3295
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
3296
+ *
3297
+ * @experimental
3210
3298
  */
3211
3299
  columnRuleInsetCapStart?: Property.ColumnRuleInsetCapStart<TLength> | undefined;
3212
3300
  /**
3301
+ * ❌ Baseline: Not widely available
3213
3302
  *
3214
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
3303
+ * 🔑 Values: `overlap-join`
3304
+ *
3305
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
3306
+ *
3307
+ * @experimental
3215
3308
  */
3216
3309
  columnRuleInsetEnd?: Property.ColumnRuleInsetEnd<TLength> | undefined;
3217
3310
  /**
3311
+ * ❌ Baseline: Not widely available
3218
3312
  *
3219
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
3313
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
3314
+ *
3315
+ * @experimental
3220
3316
  */
3221
- columnRuleInsetJunction?: Property.ColumnRuleInsetJunction<TLength> | undefined;
3317
+ columnRuleInsetJunction?: Property.ColumnRuleInsetJunction | undefined;
3222
3318
  /**
3319
+ * ❌ Baseline: Not widely available
3223
3320
  *
3224
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
3321
+ * 🔑 Values: `overlap-join`
3322
+ *
3323
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
3324
+ *
3325
+ * @experimental
3225
3326
  */
3226
3327
  columnRuleInsetJunctionEnd?: Property.ColumnRuleInsetJunctionEnd<TLength> | undefined;
3227
3328
  /**
3329
+ * ❌ Baseline: Not widely available
3228
3330
  *
3229
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
3331
+ * 🔑 Values: `overlap-join`
3332
+ *
3333
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
3334
+ *
3335
+ * @experimental
3230
3336
  */
3231
3337
  columnRuleInsetJunctionStart?: Property.ColumnRuleInsetJunctionStart<TLength> | undefined;
3232
3338
  /**
3339
+ * ❌ Baseline: Not widely available
3233
3340
  *
3234
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
3341
+ * 🔑 Values: `overlap-join`
3342
+ *
3343
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
3344
+ *
3345
+ * @experimental
3235
3346
  */
3236
3347
  columnRuleInsetStart?: Property.ColumnRuleInsetStart<TLength> | undefined;
3237
3348
  /**
@@ -3245,10 +3356,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3245
3356
  */
3246
3357
  columnRuleStyle?: Property.ColumnRuleStyle | undefined;
3247
3358
  /**
3359
+ * ❌ Baseline: Not widely available
3248
3360
  *
3249
3361
  * 🔑 Values: `all` | `around` | `between` | `normal`
3250
3362
  *
3251
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
3363
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
3364
+ *
3365
+ * @experimental
3252
3366
  */
3253
3367
  columnRuleVisibilityItems?: Property.ColumnRuleVisibilityItems | undefined;
3254
3368
  /**
@@ -3406,7 +3520,9 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3406
3520
  *
3407
3521
  * 🔑 Values: `auto` | `collapse` | `discard` | `fragments` | `overflow` | `paginate`
3408
3522
  *
3409
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
3523
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
3524
+ *
3525
+ * @experimental
3410
3526
  */
3411
3527
  continue?: Property.Continue | undefined;
3412
3528
  /**
@@ -3760,7 +3876,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3760
3876
  */
3761
3877
  counterReset?: Property.CounterReset | undefined;
3762
3878
  /**
3763
- * ⚠️ Baseline: Newly available (since Dec 2023)
3879
+ * Baseline: Widely available (since Jun 2026)
3764
3880
  *
3765
3881
  * 🔑 Values: `none`
3766
3882
  *
@@ -3896,7 +4012,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3896
4012
  */
3897
4013
  eventTriggerSource?: Property.EventTriggerSource | undefined;
3898
4014
  /**
3899
- * Baseline: Not widely available
4015
+ * ⚠️ Baseline: Newly available (since Jun 2026)
3900
4016
  *
3901
4017
  * 🔑 Values: `content` | `fixed`
3902
4018
  *
@@ -4040,6 +4156,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
4040
4156
  * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
4041
4157
  */
4042
4158
  flexGrow?: Property.FlexGrow | undefined;
4159
+ /**
4160
+ *
4161
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✗
4162
+ *
4163
+ * @experimental
4164
+ */
4165
+ flexLineCount?: Property.FlexLineCount | undefined;
4043
4166
  /**
4044
4167
  * ✅ Baseline: Widely available (since Mar 2018)
4045
4168
  *
@@ -4439,7 +4562,9 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
4439
4562
  *
4440
4563
  * 🔑 Values: `auto` | `content-block-size` | `content-height` | `content-inline-size` | `content-width`
4441
4564
  *
4442
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
4565
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
4566
+ *
4567
+ * @experimental
4443
4568
  */
4444
4569
  frameSizing?: Property.FrameSizing | undefined;
4445
4570
  /**
@@ -5053,7 +5178,9 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5053
5178
  *
5054
5179
  * 🔑 Values: `none`
5055
5180
  *
5056
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
5181
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
5182
+ *
5183
+ * @experimental
5057
5184
  */
5058
5185
  linkParameters?: Property.LinkParameters | undefined;
5059
5186
  /**
@@ -5273,7 +5400,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5273
5400
  */
5274
5401
  markerStart?: Property.MarkerStart | undefined;
5275
5402
  /**
5276
- * ⚠️ Baseline: Newly available (since Dec 2023)
5403
+ * Baseline: Widely available (since Jun 2026)
5277
5404
  *
5278
5405
  * 🔑 Values: `add` | `alpha` | `border-box` | `bottom` | `center` | `content-box` | `exclude` | `fill-box` | `intersect` | `left` | `luminance` | `margin-box` | `match-source` | `no-repeat` | `padding-box` | `repeat` | `repeat-x` | `repeat-y` | `right` | `round`, ... and 5 more
5279
5406
  *
@@ -5344,7 +5471,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5344
5471
  */
5345
5472
  maskBorderWidth?: Property.MaskBorderWidth<TLength> | undefined;
5346
5473
  /**
5347
- * ⚠️ Baseline: Newly available (since Dec 2023)
5474
+ * Baseline: Widely available (since Jun 2026)
5348
5475
  *
5349
5476
  * 📦 Sources: webref ✓ | mdn-data ✓ | BCD ✓ | web-features ✓
5350
5477
  *
@@ -5352,7 +5479,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5352
5479
  */
5353
5480
  maskClip?: Property.MaskClip | undefined;
5354
5481
  /**
5355
- * ⚠️ Baseline: Newly available (since Dec 2023)
5482
+ * Baseline: Widely available (since Jun 2026)
5356
5483
  *
5357
5484
  * 🔑 Values: `add` | `exclude` | `intersect` | `subtract`
5358
5485
  *
@@ -5362,7 +5489,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5362
5489
  */
5363
5490
  maskComposite?: Property.MaskComposite | undefined;
5364
5491
  /**
5365
- * ⚠️ Baseline: Newly available (since Dec 2023)
5492
+ * Baseline: Widely available (since Jun 2026)
5366
5493
  *
5367
5494
  * 🔑 Values: `none`
5368
5495
  *
@@ -5372,7 +5499,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5372
5499
  */
5373
5500
  maskImage?: Property.MaskImage | undefined;
5374
5501
  /**
5375
- * ⚠️ Baseline: Newly available (since Dec 2023)
5502
+ * Baseline: Widely available (since Jun 2026)
5376
5503
  *
5377
5504
  * 🔑 Values: `alpha` | `luminance` | `match-source`
5378
5505
  *
@@ -5382,7 +5509,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5382
5509
  */
5383
5510
  maskMode?: Property.MaskMode | undefined;
5384
5511
  /**
5385
- * ⚠️ Baseline: Newly available (since Dec 2023)
5512
+ * Baseline: Widely available (since Jun 2026)
5386
5513
  *
5387
5514
  * 🔑 Values: `border-box` | `content-box` | `fill-box` | `padding-box` | `stroke-box` | `view-box`
5388
5515
  *
@@ -5392,7 +5519,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5392
5519
  */
5393
5520
  maskOrigin?: Property.MaskOrigin | undefined;
5394
5521
  /**
5395
- * ⚠️ Baseline: Newly available (since Dec 2023)
5522
+ * Baseline: Widely available (since Jun 2026)
5396
5523
  *
5397
5524
  * 🔑 Values: `bottom` | `center` | `left` | `right` | `top`
5398
5525
  *
@@ -5402,7 +5529,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5402
5529
  */
5403
5530
  maskPosition?: Property.MaskPosition<TLength> | undefined;
5404
5531
  /**
5405
- * ⚠️ Baseline: Newly available (since Dec 2023)
5532
+ * Baseline: Widely available (since Jun 2026)
5406
5533
  *
5407
5534
  * 🔑 Values: `no-repeat` | `repeat` | `repeat-x` | `repeat-y` | `round` | `space`
5408
5535
  *
@@ -5412,7 +5539,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5412
5539
  */
5413
5540
  maskRepeat?: Property.MaskRepeat | undefined;
5414
5541
  /**
5415
- * ⚠️ Baseline: Newly available (since Dec 2023)
5542
+ * Baseline: Widely available (since Jun 2026)
5416
5543
  *
5417
5544
  * 🔑 Values: `contain` | `cover`
5418
5545
  *
@@ -5502,7 +5629,9 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
5502
5629
  *
5503
5630
  * 🔑 Values: `none`
5504
5631
  *
5505
- * 📦 Sources: webref ✓ | mdn-data ✓ | BCD | web-features ✗
5632
+ * 📦 Sources: webref ✓ | mdn-data ✓ | BCD | web-features ✗
5633
+ *
5634
+ * @experimental
5506
5635
  */
5507
5636
  maxLines?: Property.MaxLines | undefined;
5508
5637
  /**
@@ -6594,12 +6723,15 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
6594
6723
  */
6595
6724
  paintOrder?: Property.PaintOrder | undefined;
6596
6725
  /**
6726
+ * ✅ Baseline: Widely available (since Jul 2022)
6597
6727
  *
6598
6728
  * 🔑 Values: `none`
6599
6729
  *
6600
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
6730
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
6731
+ *
6732
+ * @experimental
6601
6733
  */
6602
- pathLength?: Property.PathLength | undefined;
6734
+ pathLength?: Property.PathLength<TLength> | undefined;
6603
6735
  /**
6604
6736
  *
6605
6737
  * 🔑 Values: `medium` | `none` | `strong` | `weak` | `x-strong` | `x-weak`
@@ -6709,7 +6841,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
6709
6841
  /**
6710
6842
  * ❌ Baseline: Not widely available
6711
6843
  *
6712
- * 🔑 Values: `auto` | `none`
6844
+ * 🔑 Values: `auto` | `match-parent` | `none` | `normal`
6713
6845
  *
6714
6846
  * 📦 Sources: webref ✓ | mdn-data ✓ | BCD ✓ | web-features ✓
6715
6847
  *
@@ -6885,90 +7017,147 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
6885
7017
  */
6886
7018
  rowGap?: Property.RowGap<TLength> | undefined;
6887
7019
  /**
7020
+ * ❌ Baseline: Not widely available
6888
7021
  *
6889
7022
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 185 more
6890
7023
  *
6891
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7024
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7025
+ *
7026
+ * @experimental
6892
7027
  */
6893
7028
  rowRule?: Property.RowRule<TLength> | undefined;
6894
7029
  /**
7030
+ * ❌ Baseline: Not widely available
6895
7031
  *
6896
7032
  * 🔑 Values: `intersection` | `none` | `normal`
6897
7033
  *
6898
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7034
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7035
+ *
7036
+ * @experimental
6899
7037
  */
6900
7038
  rowRuleBreak?: Property.RowRuleBreak | undefined;
6901
7039
  /**
7040
+ * ❌ Baseline: Not widely available
6902
7041
  *
6903
7042
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 172 more
6904
7043
  *
6905
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7044
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7045
+ *
7046
+ * @experimental
6906
7047
  */
6907
7048
  rowRuleColor?: Property.RowRuleColor | undefined;
6908
7049
  /**
7050
+ * ❌ Baseline: Not widely available
6909
7051
  *
6910
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7052
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7053
+ *
7054
+ * @experimental
6911
7055
  */
6912
- rowRuleInset?: Property.RowRuleInset<TLength> | undefined;
7056
+ rowRuleInset?: Property.RowRuleInset | undefined;
6913
7057
  /**
7058
+ * ❌ Baseline: Not widely available
6914
7059
  *
6915
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7060
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7061
+ *
7062
+ * @experimental
6916
7063
  */
6917
- rowRuleInsetCap?: Property.RowRuleInsetCap<TLength> | undefined;
7064
+ rowRuleInsetCap?: Property.RowRuleInsetCap | undefined;
6918
7065
  /**
7066
+ * ❌ Baseline: Not widely available
6919
7067
  *
6920
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
7068
+ * 🔑 Values: `overlap-join`
7069
+ *
7070
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
7071
+ *
7072
+ * @experimental
6921
7073
  */
6922
7074
  rowRuleInsetCapEnd?: Property.RowRuleInsetCapEnd<TLength> | undefined;
6923
7075
  /**
7076
+ * ❌ Baseline: Not widely available
6924
7077
  *
6925
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
7078
+ * 🔑 Values: `overlap-join`
7079
+ *
7080
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
7081
+ *
7082
+ * @experimental
6926
7083
  */
6927
7084
  rowRuleInsetCapStart?: Property.RowRuleInsetCapStart<TLength> | undefined;
6928
7085
  /**
7086
+ * ❌ Baseline: Not widely available
6929
7087
  *
6930
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
7088
+ * 🔑 Values: `overlap-join`
7089
+ *
7090
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
7091
+ *
7092
+ * @experimental
6931
7093
  */
6932
7094
  rowRuleInsetEnd?: Property.RowRuleInsetEnd<TLength> | undefined;
6933
7095
  /**
7096
+ * ❌ Baseline: Not widely available
6934
7097
  *
6935
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7098
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7099
+ *
7100
+ * @experimental
6936
7101
  */
6937
- rowRuleInsetJunction?: Property.RowRuleInsetJunction<TLength> | undefined;
7102
+ rowRuleInsetJunction?: Property.RowRuleInsetJunction | undefined;
6938
7103
  /**
7104
+ * ❌ Baseline: Not widely available
6939
7105
  *
6940
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
7106
+ * 🔑 Values: `overlap-join`
7107
+ *
7108
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
7109
+ *
7110
+ * @experimental
6941
7111
  */
6942
7112
  rowRuleInsetJunctionEnd?: Property.RowRuleInsetJunctionEnd<TLength> | undefined;
6943
7113
  /**
7114
+ * ❌ Baseline: Not widely available
6944
7115
  *
6945
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
7116
+ * 🔑 Values: `overlap-join`
7117
+ *
7118
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
7119
+ *
7120
+ * @experimental
6946
7121
  */
6947
7122
  rowRuleInsetJunctionStart?: Property.RowRuleInsetJunctionStart<TLength> | undefined;
6948
7123
  /**
7124
+ * ❌ Baseline: Not widely available
6949
7125
  *
6950
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
7126
+ * 🔑 Values: `overlap-join`
7127
+ *
7128
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
7129
+ *
7130
+ * @experimental
6951
7131
  */
6952
7132
  rowRuleInsetStart?: Property.RowRuleInsetStart<TLength> | undefined;
6953
7133
  /**
7134
+ * ❌ Baseline: Not widely available
6954
7135
  *
6955
7136
  * 🔑 Values: `dashed` | `dotted` | `double` | `groove` | `hidden` | `inset` | `none` | `outset` | `ridge` | `solid`
6956
7137
  *
6957
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7138
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7139
+ *
7140
+ * @experimental
6958
7141
  */
6959
7142
  rowRuleStyle?: Property.RowRuleStyle | undefined;
6960
7143
  /**
7144
+ * ❌ Baseline: Not widely available
6961
7145
  *
6962
7146
  * 🔑 Values: `all` | `around` | `between` | `normal`
6963
7147
  *
6964
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7148
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7149
+ *
7150
+ * @experimental
6965
7151
  */
6966
7152
  rowRuleVisibilityItems?: Property.RowRuleVisibilityItems | undefined;
6967
7153
  /**
7154
+ * ❌ Baseline: Not widely available
6968
7155
  *
6969
7156
  * 🔑 Values: `medium` | `thick` | `thin`
6970
7157
  *
6971
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7158
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7159
+ *
7160
+ * @experimental
6972
7161
  */
6973
7162
  rowRuleWidth?: Property.RowRuleWidth<TLength> | undefined;
6974
7163
  /**
@@ -7009,77 +7198,117 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
7009
7198
  */
7010
7199
  rubyPosition?: Property.RubyPosition | undefined;
7011
7200
  /**
7201
+ * ❌ Baseline: Not widely available
7012
7202
  *
7013
7203
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 185 more
7014
7204
  *
7015
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7205
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7206
+ *
7207
+ * @experimental
7016
7208
  */
7017
7209
  rule?: Property.Rule<TLength> | undefined;
7018
7210
  /**
7211
+ * ❌ Baseline: Not widely available
7019
7212
  *
7020
7213
  * 🔑 Values: `intersection` | `none` | `normal`
7021
7214
  *
7022
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7215
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7216
+ *
7217
+ * @experimental
7023
7218
  */
7024
7219
  ruleBreak?: Property.RuleBreak | undefined;
7025
7220
  /**
7221
+ * ❌ Baseline: Not widely available
7026
7222
  *
7027
7223
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 172 more
7028
7224
  *
7029
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7225
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7226
+ *
7227
+ * @experimental
7030
7228
  */
7031
7229
  ruleColor?: Property.RuleColor | undefined;
7032
7230
  /**
7231
+ * ❌ Baseline: Not widely available
7033
7232
  *
7034
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7233
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7234
+ *
7235
+ * @experimental
7035
7236
  */
7036
- ruleInset?: Property.RuleInset<TLength> | undefined;
7237
+ ruleInset?: Property.RuleInset | undefined;
7037
7238
  /**
7239
+ * ❌ Baseline: Not widely available
7038
7240
  *
7039
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7241
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7242
+ *
7243
+ * @experimental
7040
7244
  */
7041
- ruleInsetCap?: Property.RuleInsetCap<TLength> | undefined;
7245
+ ruleInsetCap?: Property.RuleInsetCap | undefined;
7042
7246
  /**
7247
+ * ❌ Baseline: Not widely available
7043
7248
  *
7044
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
7249
+ * 🔑 Values: `overlap-join`
7250
+ *
7251
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
7252
+ *
7253
+ * @experimental
7045
7254
  */
7046
7255
  ruleInsetEnd?: Property.RuleInsetEnd<TLength> | undefined;
7047
7256
  /**
7257
+ * ❌ Baseline: Not widely available
7048
7258
  *
7049
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7259
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7260
+ *
7261
+ * @experimental
7050
7262
  */
7051
- ruleInsetJunction?: Property.RuleInsetJunction<TLength> | undefined;
7263
+ ruleInsetJunction?: Property.RuleInsetJunction | undefined;
7052
7264
  /**
7265
+ * ❌ Baseline: Not widely available
7053
7266
  *
7054
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
7267
+ * 🔑 Values: `overlap-join`
7268
+ *
7269
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
7270
+ *
7271
+ * @experimental
7055
7272
  */
7056
7273
  ruleInsetStart?: Property.RuleInsetStart<TLength> | undefined;
7057
7274
  /**
7275
+ * ❌ Baseline: Not widely available
7058
7276
  *
7059
7277
  * 🔑 Values: `column-over-row` | `row-over-column`
7060
7278
  *
7061
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7279
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7280
+ *
7281
+ * @experimental
7062
7282
  */
7063
7283
  ruleOverlap?: Property.RuleOverlap | undefined;
7064
7284
  /**
7285
+ * ❌ Baseline: Not widely available
7065
7286
  *
7066
7287
  * 🔑 Values: `dashed` | `dotted` | `double` | `groove` | `hidden` | `inset` | `none` | `outset` | `ridge` | `solid`
7067
7288
  *
7068
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7289
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7290
+ *
7291
+ * @experimental
7069
7292
  */
7070
7293
  ruleStyle?: Property.RuleStyle | undefined;
7071
7294
  /**
7295
+ * ❌ Baseline: Not widely available
7072
7296
  *
7073
7297
  * 🔑 Values: `all` | `around` | `between` | `normal`
7074
7298
  *
7075
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7299
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7300
+ *
7301
+ * @experimental
7076
7302
  */
7077
7303
  ruleVisibilityItems?: Property.RuleVisibilityItems | undefined;
7078
7304
  /**
7305
+ * ❌ Baseline: Not widely available
7079
7306
  *
7080
7307
  * 🔑 Values: `medium` | `thick` | `thin`
7081
7308
  *
7082
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7309
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
7310
+ *
7311
+ * @experimental
7083
7312
  */
7084
7313
  ruleWidth?: Property.RuleWidth<TLength> | undefined;
7085
7314
  /**
@@ -8018,7 +8247,9 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
8018
8247
  textEmphasisStyle?: Property.TextEmphasisStyle | undefined;
8019
8248
  /**
8020
8249
  *
8021
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
8250
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
8251
+ *
8252
+ * @experimental
8022
8253
  */
8023
8254
  textFit?: Property.TextFit | undefined;
8024
8255
  /**
@@ -8521,12 +8752,15 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
8521
8752
  */
8522
8753
  viewTransitionName?: Property.ViewTransitionName | undefined;
8523
8754
  /**
8755
+ * ❌ Baseline: Not widely available
8524
8756
  *
8525
8757
  * 🔑 Values: `all` | `none`
8526
8758
  *
8527
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features
8759
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features
8528
8760
  *
8529
8761
  * @experimental
8762
+ *
8763
+ * @see https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-transition-scope
8530
8764
  */
8531
8765
  viewTransitionScope?: Property.ViewTransitionScope | undefined;
8532
8766
  /**
@@ -8911,7 +9145,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
8911
9145
  WebkitFlexShrink?: Property.WebkitFlexShrink | undefined;
8912
9146
  /**
8913
9147
  *
8914
- * 🔑 Values: `nowrap` | `wrap` | `wrap-reverse`
9148
+ * 🔑 Values: `nowrap`
8915
9149
  *
8916
9150
  * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
8917
9151
  */
@@ -9285,6 +9519,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
9285
9519
  * @see https://developer.mozilla.org/docs/Web/CSS/will-change
9286
9520
  */
9287
9521
  willChange?: Property.WillChange | undefined;
9522
+ /**
9523
+ *
9524
+ * 🔑 Values: `move` | `none`
9525
+ *
9526
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
9527
+ */
9528
+ windowDrag?: Property.WindowDrag | undefined;
9288
9529
  /**
9289
9530
  * ✅ Baseline: Widely available (since Jan 2018)
9290
9531
  *
@@ -9688,6 +9929,7 @@ interface PropertyRelatedNames {
9688
9929
  flexDirection: "flexDirection" | "flex-direction";
9689
9930
  flexFlow: "flexFlow" | "flex-flow";
9690
9931
  flexGrow: "flexGrow" | "flex-grow";
9932
+ flexLineCount: "flexLineCount" | "flex-line-count";
9691
9933
  flexShrink: "flexShrink" | "flex-shrink";
9692
9934
  flexWrap: "flexWrap" | "flex-wrap";
9693
9935
  float: "float" | "float";
@@ -10315,6 +10557,7 @@ interface PropertyRelatedNames {
10315
10557
  widows: "widows" | "widows";
10316
10558
  width: "width" | "width";
10317
10559
  willChange: "willChange" | "will-change";
10560
+ windowDrag: "windowDrag" | "window-drag";
10318
10561
  wordBreak: "wordBreak" | "word-break";
10319
10562
  wordSpaceTransform: "wordSpaceTransform" | "word-space-transform";
10320
10563
  wordSpacing: "wordSpacing" | "word-spacing";
@@ -11127,7 +11370,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
11127
11370
  "-webkit-flex-shrink"?: Property.WebkitFlexShrink | undefined;
11128
11371
  /**
11129
11372
  *
11130
- * 🔑 Values: `nowrap` | `wrap` | `wrap-reverse`
11373
+ * 🔑 Values: `nowrap`
11131
11374
  *
11132
11375
  * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
11133
11376
  */
@@ -11908,7 +12151,9 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
11908
12151
  *
11909
12152
  * 🔑 Values: `auto` | `no-ellipsis`
11910
12153
  *
11911
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
12154
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
12155
+ *
12156
+ * @experimental
11912
12157
  */
11913
12158
  "block-ellipsis"?: Property.BlockEllipsis | undefined;
11914
12159
  /**
@@ -13089,10 +13334,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
13089
13334
  */
13090
13335
  "column-rule"?: Property.ColumnRule<TLength> | undefined;
13091
13336
  /**
13337
+ * ❌ Baseline: Not widely available
13092
13338
  *
13093
13339
  * 🔑 Values: `intersection` | `none` | `normal`
13094
13340
  *
13095
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
13341
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
13342
+ *
13343
+ * @experimental
13096
13344
  */
13097
13345
  "column-rule-break"?: Property.ColumnRuleBreak | undefined;
13098
13346
  /**
@@ -13106,48 +13354,87 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
13106
13354
  */
13107
13355
  "column-rule-color"?: Property.ColumnRuleColor | undefined;
13108
13356
  /**
13357
+ * ❌ Baseline: Not widely available
13109
13358
  *
13110
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
13359
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
13360
+ *
13361
+ * @experimental
13111
13362
  */
13112
- "column-rule-inset"?: Property.ColumnRuleInset<TLength> | undefined;
13363
+ "column-rule-inset"?: Property.ColumnRuleInset | undefined;
13113
13364
  /**
13365
+ * ❌ Baseline: Not widely available
13114
13366
  *
13115
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
13367
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
13368
+ *
13369
+ * @experimental
13116
13370
  */
13117
- "column-rule-inset-cap"?: Property.ColumnRuleInsetCap<TLength> | undefined;
13371
+ "column-rule-inset-cap"?: Property.ColumnRuleInsetCap | undefined;
13118
13372
  /**
13373
+ * ❌ Baseline: Not widely available
13119
13374
  *
13120
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
13375
+ * 🔑 Values: `overlap-join`
13376
+ *
13377
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
13378
+ *
13379
+ * @experimental
13121
13380
  */
13122
13381
  "column-rule-inset-cap-end"?: Property.ColumnRuleInsetCapEnd<TLength> | undefined;
13123
13382
  /**
13383
+ * ❌ Baseline: Not widely available
13124
13384
  *
13125
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
13385
+ * 🔑 Values: `overlap-join`
13386
+ *
13387
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
13388
+ *
13389
+ * @experimental
13126
13390
  */
13127
13391
  "column-rule-inset-cap-start"?: Property.ColumnRuleInsetCapStart<TLength> | undefined;
13128
13392
  /**
13393
+ * ❌ Baseline: Not widely available
13129
13394
  *
13130
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
13395
+ * 🔑 Values: `overlap-join`
13396
+ *
13397
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
13398
+ *
13399
+ * @experimental
13131
13400
  */
13132
13401
  "column-rule-inset-end"?: Property.ColumnRuleInsetEnd<TLength> | undefined;
13133
13402
  /**
13403
+ * ❌ Baseline: Not widely available
13134
13404
  *
13135
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
13405
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
13406
+ *
13407
+ * @experimental
13136
13408
  */
13137
- "column-rule-inset-junction"?: Property.ColumnRuleInsetJunction<TLength> | undefined;
13409
+ "column-rule-inset-junction"?: Property.ColumnRuleInsetJunction | undefined;
13138
13410
  /**
13411
+ * ❌ Baseline: Not widely available
13139
13412
  *
13140
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
13413
+ * 🔑 Values: `overlap-join`
13414
+ *
13415
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
13416
+ *
13417
+ * @experimental
13141
13418
  */
13142
13419
  "column-rule-inset-junction-end"?: Property.ColumnRuleInsetJunctionEnd<TLength> | undefined;
13143
13420
  /**
13421
+ * ❌ Baseline: Not widely available
13144
13422
  *
13145
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
13423
+ * 🔑 Values: `overlap-join`
13424
+ *
13425
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
13426
+ *
13427
+ * @experimental
13146
13428
  */
13147
13429
  "column-rule-inset-junction-start"?: Property.ColumnRuleInsetJunctionStart<TLength> | undefined;
13148
13430
  /**
13431
+ * ❌ Baseline: Not widely available
13149
13432
  *
13150
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
13433
+ * 🔑 Values: `overlap-join`
13434
+ *
13435
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
13436
+ *
13437
+ * @experimental
13151
13438
  */
13152
13439
  "column-rule-inset-start"?: Property.ColumnRuleInsetStart<TLength> | undefined;
13153
13440
  /**
@@ -13161,10 +13448,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
13161
13448
  */
13162
13449
  "column-rule-style"?: Property.ColumnRuleStyle | undefined;
13163
13450
  /**
13451
+ * ❌ Baseline: Not widely available
13164
13452
  *
13165
13453
  * 🔑 Values: `all` | `around` | `between` | `normal`
13166
13454
  *
13167
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
13455
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
13456
+ *
13457
+ * @experimental
13168
13458
  */
13169
13459
  "column-rule-visibility-items"?: Property.ColumnRuleVisibilityItems | undefined;
13170
13460
  /**
@@ -13322,7 +13612,9 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
13322
13612
  *
13323
13613
  * 🔑 Values: `auto` | `collapse` | `discard` | `fragments` | `overflow` | `paginate`
13324
13614
  *
13325
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
13615
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
13616
+ *
13617
+ * @experimental
13326
13618
  */
13327
13619
  "continue"?: Property.Continue | undefined;
13328
13620
  /**
@@ -13676,7 +13968,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
13676
13968
  */
13677
13969
  "counter-reset"?: Property.CounterReset | undefined;
13678
13970
  /**
13679
- * ⚠️ Baseline: Newly available (since Dec 2023)
13971
+ * Baseline: Widely available (since Jun 2026)
13680
13972
  *
13681
13973
  * 🔑 Values: `none`
13682
13974
  *
@@ -13812,7 +14104,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
13812
14104
  */
13813
14105
  "event-trigger-source"?: Property.EventTriggerSource | undefined;
13814
14106
  /**
13815
- * Baseline: Not widely available
14107
+ * ⚠️ Baseline: Newly available (since Jun 2026)
13816
14108
  *
13817
14109
  * 🔑 Values: `content` | `fixed`
13818
14110
  *
@@ -13956,6 +14248,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
13956
14248
  * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
13957
14249
  */
13958
14250
  "flex-grow"?: Property.FlexGrow | undefined;
14251
+ /**
14252
+ *
14253
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✗
14254
+ *
14255
+ * @experimental
14256
+ */
14257
+ "flex-line-count"?: Property.FlexLineCount | undefined;
13959
14258
  /**
13960
14259
  * ✅ Baseline: Widely available (since Mar 2018)
13961
14260
  *
@@ -14355,7 +14654,9 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
14355
14654
  *
14356
14655
  * 🔑 Values: `auto` | `content-block-size` | `content-height` | `content-inline-size` | `content-width`
14357
14656
  *
14358
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
14657
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
14658
+ *
14659
+ * @experimental
14359
14660
  */
14360
14661
  "frame-sizing"?: Property.FrameSizing | undefined;
14361
14662
  /**
@@ -14969,7 +15270,9 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
14969
15270
  *
14970
15271
  * 🔑 Values: `none`
14971
15272
  *
14972
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
15273
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
15274
+ *
15275
+ * @experimental
14973
15276
  */
14974
15277
  "link-parameters"?: Property.LinkParameters | undefined;
14975
15278
  /**
@@ -15189,7 +15492,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
15189
15492
  */
15190
15493
  "marker-start"?: Property.MarkerStart | undefined;
15191
15494
  /**
15192
- * ⚠️ Baseline: Newly available (since Dec 2023)
15495
+ * Baseline: Widely available (since Jun 2026)
15193
15496
  *
15194
15497
  * 🔑 Values: `add` | `alpha` | `border-box` | `bottom` | `center` | `content-box` | `exclude` | `fill-box` | `intersect` | `left` | `luminance` | `margin-box` | `match-source` | `no-repeat` | `padding-box` | `repeat` | `repeat-x` | `repeat-y` | `right` | `round`, ... and 5 more
15195
15498
  *
@@ -15260,7 +15563,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
15260
15563
  */
15261
15564
  "mask-border-width"?: Property.MaskBorderWidth<TLength> | undefined;
15262
15565
  /**
15263
- * ⚠️ Baseline: Newly available (since Dec 2023)
15566
+ * Baseline: Widely available (since Jun 2026)
15264
15567
  *
15265
15568
  * 📦 Sources: webref ✓ | mdn-data ✓ | BCD ✓ | web-features ✓
15266
15569
  *
@@ -15268,7 +15571,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
15268
15571
  */
15269
15572
  "mask-clip"?: Property.MaskClip | undefined;
15270
15573
  /**
15271
- * ⚠️ Baseline: Newly available (since Dec 2023)
15574
+ * Baseline: Widely available (since Jun 2026)
15272
15575
  *
15273
15576
  * 🔑 Values: `add` | `exclude` | `intersect` | `subtract`
15274
15577
  *
@@ -15278,7 +15581,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
15278
15581
  */
15279
15582
  "mask-composite"?: Property.MaskComposite | undefined;
15280
15583
  /**
15281
- * ⚠️ Baseline: Newly available (since Dec 2023)
15584
+ * Baseline: Widely available (since Jun 2026)
15282
15585
  *
15283
15586
  * 🔑 Values: `none`
15284
15587
  *
@@ -15288,7 +15591,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
15288
15591
  */
15289
15592
  "mask-image"?: Property.MaskImage | undefined;
15290
15593
  /**
15291
- * ⚠️ Baseline: Newly available (since Dec 2023)
15594
+ * Baseline: Widely available (since Jun 2026)
15292
15595
  *
15293
15596
  * 🔑 Values: `alpha` | `luminance` | `match-source`
15294
15597
  *
@@ -15298,7 +15601,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
15298
15601
  */
15299
15602
  "mask-mode"?: Property.MaskMode | undefined;
15300
15603
  /**
15301
- * ⚠️ Baseline: Newly available (since Dec 2023)
15604
+ * Baseline: Widely available (since Jun 2026)
15302
15605
  *
15303
15606
  * 🔑 Values: `border-box` | `content-box` | `fill-box` | `padding-box` | `stroke-box` | `view-box`
15304
15607
  *
@@ -15308,7 +15611,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
15308
15611
  */
15309
15612
  "mask-origin"?: Property.MaskOrigin | undefined;
15310
15613
  /**
15311
- * ⚠️ Baseline: Newly available (since Dec 2023)
15614
+ * Baseline: Widely available (since Jun 2026)
15312
15615
  *
15313
15616
  * 🔑 Values: `bottom` | `center` | `left` | `right` | `top`
15314
15617
  *
@@ -15318,7 +15621,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
15318
15621
  */
15319
15622
  "mask-position"?: Property.MaskPosition<TLength> | undefined;
15320
15623
  /**
15321
- * ⚠️ Baseline: Newly available (since Dec 2023)
15624
+ * Baseline: Widely available (since Jun 2026)
15322
15625
  *
15323
15626
  * 🔑 Values: `no-repeat` | `repeat` | `repeat-x` | `repeat-y` | `round` | `space`
15324
15627
  *
@@ -15328,7 +15631,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
15328
15631
  */
15329
15632
  "mask-repeat"?: Property.MaskRepeat | undefined;
15330
15633
  /**
15331
- * ⚠️ Baseline: Newly available (since Dec 2023)
15634
+ * Baseline: Widely available (since Jun 2026)
15332
15635
  *
15333
15636
  * 🔑 Values: `contain` | `cover`
15334
15637
  *
@@ -15418,7 +15721,9 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
15418
15721
  *
15419
15722
  * 🔑 Values: `none`
15420
15723
  *
15421
- * 📦 Sources: webref ✓ | mdn-data ✓ | BCD | web-features ✗
15724
+ * 📦 Sources: webref ✓ | mdn-data ✓ | BCD | web-features ✗
15725
+ *
15726
+ * @experimental
15422
15727
  */
15423
15728
  "max-lines"?: Property.MaxLines | undefined;
15424
15729
  /**
@@ -16036,12 +16341,15 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
16036
16341
  */
16037
16342
  "paint-order"?: Property.PaintOrder | undefined;
16038
16343
  /**
16344
+ * ✅ Baseline: Widely available (since Jul 2022)
16039
16345
  *
16040
16346
  * 🔑 Values: `none`
16041
16347
  *
16042
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16348
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16349
+ *
16350
+ * @experimental
16043
16351
  */
16044
- "path-length"?: Property.PathLength | undefined;
16352
+ "path-length"?: Property.PathLength<TLength> | undefined;
16045
16353
  /**
16046
16354
  *
16047
16355
  * 🔑 Values: `medium` | `none` | `strong` | `weak` | `x-strong` | `x-weak`
@@ -16151,7 +16459,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
16151
16459
  /**
16152
16460
  * ❌ Baseline: Not widely available
16153
16461
  *
16154
- * 🔑 Values: `auto` | `none`
16462
+ * 🔑 Values: `auto` | `match-parent` | `none` | `normal`
16155
16463
  *
16156
16464
  * 📦 Sources: webref ✓ | mdn-data ✓ | BCD ✓ | web-features ✓
16157
16465
  *
@@ -16327,90 +16635,147 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
16327
16635
  */
16328
16636
  "row-gap"?: Property.RowGap<TLength> | undefined;
16329
16637
  /**
16638
+ * ❌ Baseline: Not widely available
16330
16639
  *
16331
16640
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 185 more
16332
16641
  *
16333
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16642
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16643
+ *
16644
+ * @experimental
16334
16645
  */
16335
16646
  "row-rule"?: Property.RowRule<TLength> | undefined;
16336
16647
  /**
16648
+ * ❌ Baseline: Not widely available
16337
16649
  *
16338
16650
  * 🔑 Values: `intersection` | `none` | `normal`
16339
16651
  *
16340
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16652
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16653
+ *
16654
+ * @experimental
16341
16655
  */
16342
16656
  "row-rule-break"?: Property.RowRuleBreak | undefined;
16343
16657
  /**
16658
+ * ❌ Baseline: Not widely available
16344
16659
  *
16345
16660
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 172 more
16346
16661
  *
16347
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16662
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16663
+ *
16664
+ * @experimental
16348
16665
  */
16349
16666
  "row-rule-color"?: Property.RowRuleColor | undefined;
16350
16667
  /**
16668
+ * ❌ Baseline: Not widely available
16351
16669
  *
16352
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16670
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16671
+ *
16672
+ * @experimental
16353
16673
  */
16354
- "row-rule-inset"?: Property.RowRuleInset<TLength> | undefined;
16674
+ "row-rule-inset"?: Property.RowRuleInset | undefined;
16355
16675
  /**
16676
+ * ❌ Baseline: Not widely available
16356
16677
  *
16357
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16678
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16679
+ *
16680
+ * @experimental
16358
16681
  */
16359
- "row-rule-inset-cap"?: Property.RowRuleInsetCap<TLength> | undefined;
16682
+ "row-rule-inset-cap"?: Property.RowRuleInsetCap | undefined;
16360
16683
  /**
16684
+ * ❌ Baseline: Not widely available
16361
16685
  *
16362
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
16686
+ * 🔑 Values: `overlap-join`
16687
+ *
16688
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
16689
+ *
16690
+ * @experimental
16363
16691
  */
16364
16692
  "row-rule-inset-cap-end"?: Property.RowRuleInsetCapEnd<TLength> | undefined;
16365
16693
  /**
16694
+ * ❌ Baseline: Not widely available
16366
16695
  *
16367
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
16696
+ * 🔑 Values: `overlap-join`
16697
+ *
16698
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
16699
+ *
16700
+ * @experimental
16368
16701
  */
16369
16702
  "row-rule-inset-cap-start"?: Property.RowRuleInsetCapStart<TLength> | undefined;
16370
16703
  /**
16704
+ * ❌ Baseline: Not widely available
16371
16705
  *
16372
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
16706
+ * 🔑 Values: `overlap-join`
16707
+ *
16708
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
16709
+ *
16710
+ * @experimental
16373
16711
  */
16374
16712
  "row-rule-inset-end"?: Property.RowRuleInsetEnd<TLength> | undefined;
16375
16713
  /**
16714
+ * ❌ Baseline: Not widely available
16376
16715
  *
16377
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16716
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16717
+ *
16718
+ * @experimental
16378
16719
  */
16379
- "row-rule-inset-junction"?: Property.RowRuleInsetJunction<TLength> | undefined;
16720
+ "row-rule-inset-junction"?: Property.RowRuleInsetJunction | undefined;
16380
16721
  /**
16722
+ * ❌ Baseline: Not widely available
16381
16723
  *
16382
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
16724
+ * 🔑 Values: `overlap-join`
16725
+ *
16726
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
16727
+ *
16728
+ * @experimental
16383
16729
  */
16384
16730
  "row-rule-inset-junction-end"?: Property.RowRuleInsetJunctionEnd<TLength> | undefined;
16385
16731
  /**
16732
+ * ❌ Baseline: Not widely available
16386
16733
  *
16387
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
16734
+ * 🔑 Values: `overlap-join`
16735
+ *
16736
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
16737
+ *
16738
+ * @experimental
16388
16739
  */
16389
16740
  "row-rule-inset-junction-start"?: Property.RowRuleInsetJunctionStart<TLength> | undefined;
16390
16741
  /**
16742
+ * ❌ Baseline: Not widely available
16391
16743
  *
16392
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
16744
+ * 🔑 Values: `overlap-join`
16745
+ *
16746
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
16747
+ *
16748
+ * @experimental
16393
16749
  */
16394
16750
  "row-rule-inset-start"?: Property.RowRuleInsetStart<TLength> | undefined;
16395
16751
  /**
16752
+ * ❌ Baseline: Not widely available
16396
16753
  *
16397
16754
  * 🔑 Values: `dashed` | `dotted` | `double` | `groove` | `hidden` | `inset` | `none` | `outset` | `ridge` | `solid`
16398
16755
  *
16399
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16756
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16757
+ *
16758
+ * @experimental
16400
16759
  */
16401
16760
  "row-rule-style"?: Property.RowRuleStyle | undefined;
16402
16761
  /**
16762
+ * ❌ Baseline: Not widely available
16403
16763
  *
16404
16764
  * 🔑 Values: `all` | `around` | `between` | `normal`
16405
16765
  *
16406
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16766
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16767
+ *
16768
+ * @experimental
16407
16769
  */
16408
16770
  "row-rule-visibility-items"?: Property.RowRuleVisibilityItems | undefined;
16409
16771
  /**
16772
+ * ❌ Baseline: Not widely available
16410
16773
  *
16411
16774
  * 🔑 Values: `medium` | `thick` | `thin`
16412
16775
  *
16413
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16776
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16777
+ *
16778
+ * @experimental
16414
16779
  */
16415
16780
  "row-rule-width"?: Property.RowRuleWidth<TLength> | undefined;
16416
16781
  /**
@@ -16451,77 +16816,117 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
16451
16816
  */
16452
16817
  "ruby-position"?: Property.RubyPosition | undefined;
16453
16818
  /**
16819
+ * ❌ Baseline: Not widely available
16454
16820
  *
16455
16821
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 185 more
16456
16822
  *
16457
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16823
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16824
+ *
16825
+ * @experimental
16458
16826
  */
16459
16827
  "rule"?: Property.Rule<TLength> | undefined;
16460
16828
  /**
16829
+ * ❌ Baseline: Not widely available
16461
16830
  *
16462
16831
  * 🔑 Values: `intersection` | `none` | `normal`
16463
16832
  *
16464
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16833
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16834
+ *
16835
+ * @experimental
16465
16836
  */
16466
16837
  "rule-break"?: Property.RuleBreak | undefined;
16467
16838
  /**
16839
+ * ❌ Baseline: Not widely available
16468
16840
  *
16469
16841
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 172 more
16470
16842
  *
16471
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16843
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16844
+ *
16845
+ * @experimental
16472
16846
  */
16473
16847
  "rule-color"?: Property.RuleColor | undefined;
16474
16848
  /**
16849
+ * ❌ Baseline: Not widely available
16475
16850
  *
16476
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16851
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16852
+ *
16853
+ * @experimental
16477
16854
  */
16478
- "rule-inset"?: Property.RuleInset<TLength> | undefined;
16855
+ "rule-inset"?: Property.RuleInset | undefined;
16479
16856
  /**
16857
+ * ❌ Baseline: Not widely available
16480
16858
  *
16481
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16859
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16860
+ *
16861
+ * @experimental
16482
16862
  */
16483
- "rule-inset-cap"?: Property.RuleInsetCap<TLength> | undefined;
16863
+ "rule-inset-cap"?: Property.RuleInsetCap | undefined;
16484
16864
  /**
16865
+ * ❌ Baseline: Not widely available
16485
16866
  *
16486
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
16867
+ * 🔑 Values: `overlap-join`
16868
+ *
16869
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
16870
+ *
16871
+ * @experimental
16487
16872
  */
16488
16873
  "rule-inset-end"?: Property.RuleInsetEnd<TLength> | undefined;
16489
16874
  /**
16875
+ * ❌ Baseline: Not widely available
16490
16876
  *
16491
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16877
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16878
+ *
16879
+ * @experimental
16492
16880
  */
16493
- "rule-inset-junction"?: Property.RuleInsetJunction<TLength> | undefined;
16881
+ "rule-inset-junction"?: Property.RuleInsetJunction | undefined;
16494
16882
  /**
16883
+ * ❌ Baseline: Not widely available
16495
16884
  *
16496
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
16885
+ * 🔑 Values: `overlap-join`
16886
+ *
16887
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
16888
+ *
16889
+ * @experimental
16497
16890
  */
16498
16891
  "rule-inset-start"?: Property.RuleInsetStart<TLength> | undefined;
16499
16892
  /**
16893
+ * ❌ Baseline: Not widely available
16500
16894
  *
16501
16895
  * 🔑 Values: `column-over-row` | `row-over-column`
16502
16896
  *
16503
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16897
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16898
+ *
16899
+ * @experimental
16504
16900
  */
16505
16901
  "rule-overlap"?: Property.RuleOverlap | undefined;
16506
16902
  /**
16903
+ * ❌ Baseline: Not widely available
16507
16904
  *
16508
16905
  * 🔑 Values: `dashed` | `dotted` | `double` | `groove` | `hidden` | `inset` | `none` | `outset` | `ridge` | `solid`
16509
16906
  *
16510
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16907
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16908
+ *
16909
+ * @experimental
16511
16910
  */
16512
16911
  "rule-style"?: Property.RuleStyle | undefined;
16513
16912
  /**
16913
+ * ❌ Baseline: Not widely available
16514
16914
  *
16515
16915
  * 🔑 Values: `all` | `around` | `between` | `normal`
16516
16916
  *
16517
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16917
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16918
+ *
16919
+ * @experimental
16518
16920
  */
16519
16921
  "rule-visibility-items"?: Property.RuleVisibilityItems | undefined;
16520
16922
  /**
16923
+ * ❌ Baseline: Not widely available
16521
16924
  *
16522
16925
  * 🔑 Values: `medium` | `thick` | `thin`
16523
16926
  *
16524
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16927
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
16928
+ *
16929
+ * @experimental
16525
16930
  */
16526
16931
  "rule-width"?: Property.RuleWidth<TLength> | undefined;
16527
16932
  /**
@@ -17460,7 +17865,9 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
17460
17865
  "text-emphasis-style"?: Property.TextEmphasisStyle | undefined;
17461
17866
  /**
17462
17867
  *
17463
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
17868
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
17869
+ *
17870
+ * @experimental
17464
17871
  */
17465
17872
  "text-fit"?: Property.TextFit | undefined;
17466
17873
  /**
@@ -17963,12 +18370,15 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
17963
18370
  */
17964
18371
  "view-transition-name"?: Property.ViewTransitionName | undefined;
17965
18372
  /**
18373
+ * ❌ Baseline: Not widely available
17966
18374
  *
17967
18375
  * 🔑 Values: `all` | `none`
17968
18376
  *
17969
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features
18377
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features
17970
18378
  *
17971
18379
  * @experimental
18380
+ *
18381
+ * @see https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-transition-scope
17972
18382
  */
17973
18383
  "view-transition-scope"?: Property.ViewTransitionScope | undefined;
17974
18384
  /**
@@ -18086,6 +18496,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
18086
18496
  * @see https://developer.mozilla.org/docs/Web/CSS/will-change
18087
18497
  */
18088
18498
  "will-change"?: Property.WillChange | undefined;
18499
+ /**
18500
+ *
18501
+ * 🔑 Values: `move` | `none`
18502
+ *
18503
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
18504
+ */
18505
+ "window-drag"?: Property.WindowDrag | undefined;
18089
18506
  /**
18090
18507
  * ✅ Baseline: Widely available (since Jan 2018)
18091
18508
  *
@@ -18650,6 +19067,7 @@ interface PropertyHyphenRelatedNames {
18650
19067
  "flex-direction": "flex-direction" | "flexDirection";
18651
19068
  "flex-flow": "flex-flow" | "flexFlow";
18652
19069
  "flex-grow": "flex-grow" | "flexGrow";
19070
+ "flex-line-count": "flex-line-count" | "flexLineCount";
18653
19071
  "flex-shrink": "flex-shrink" | "flexShrink";
18654
19072
  "flex-wrap": "flex-wrap" | "flexWrap";
18655
19073
  "float": "float" | "float";
@@ -19116,6 +19534,7 @@ interface PropertyHyphenRelatedNames {
19116
19534
  "widows": "widows" | "widows";
19117
19535
  "width": "width" | "width";
19118
19536
  "will-change": "will-change" | "willChange";
19537
+ "window-drag": "window-drag" | "windowDrag";
19119
19538
  "word-break": "word-break" | "wordBreak";
19120
19539
  "word-space-transform": "word-space-transform" | "wordSpaceTransform";
19121
19540
  "word-spacing": "word-spacing" | "wordSpacing";
@@ -19136,7 +19555,7 @@ declare namespace AtRules {
19136
19555
  type Nested = "@-webkit-keyframes" | "@container" | "@counter-style" | "@document" | "@font-face" | "@font-feature-values" | "@font-palette-values" | "@keyframes" | "@layer" | "@media" | "@page" | "@position-try" | "@property" | "@scope" | "@starting-style" | "@supports" | "@view-transition";
19137
19556
  }
19138
19557
  type AtRules = AtRules.Regular | AtRules.Nested;
19139
- type CSSPseudos$1 = "$::-moz-progress-bar" | "$::-moz-range-progress" | "$::-moz-range-thumb" | "$::-moz-range-track" | "$::-ms-browse" | "$::-ms-check" | "$::-ms-clear" | "$::-ms-expand" | "$::-ms-fill" | "$::-ms-fill-lower" | "$::-ms-fill-upper" | "$::-ms-reveal" | "$::-ms-thumb" | "$::-ms-ticks-after" | "$::-ms-ticks-before" | "$::-ms-tooltip" | "$::-ms-track" | "$::-ms-value" | "$::-webkit-progress-bar" | "$::-webkit-progress-inner-value" | "$::-webkit-progress-value" | "$::-webkit-slider-runnable-track" | "$::-webkit-slider-thumb" | "$::after" | "$::backdrop" | "$::before" | "$::checkmark" | "$::clear-icon" | "$::color-swatch" | "$::column" | "$::cue" | "$::cue()" | "$::cue-region" | "$::cue-region()" | "$::details-content" | "$::field-component" | "$::field-separator" | "$::field-text" | "$::file-selector-button" | "$::first-letter" | "$::first-line" | "$::grammar-error" | "$::highlight()" | "$::marker" | "$::nth-fragment()" | "$::part()" | "$::picker()" | "$::picker-icon" | "$::placeholder" | "$::reveal-icon" | "$::scroll-button()" | "$::scroll-marker" | "$::scroll-marker-group" | "$::search-text" | "$::selection" | "$::slider-fill" | "$::slider-thumb" | "$::slider-track" | "$::slotted()" | "$::spelling-error" | "$::step-control" | "$::step-down" | "$::step-up" | "$::target-text" | "$::view-transition" | "$::view-transition-group()" | "$::view-transition-group-children()" | "$::view-transition-image-pair()" | "$::view-transition-new()" | "$::view-transition-old()" | "$:active" | "$:active-view-transition" | "$:active-view-transition-type()" | "$:after" | "$:animated-image" | "$:any-link" | "$:autofill" | "$:before" | "$:blank" | "$:buffering" | "$:checked" | "$:current" | "$:current()" | "$:default" | "$:defined" | "$:dir()" | "$:disabled" | "$:empty" | "$:enabled" | "$:first" | "$:first-child" | "$:first-letter" | "$:first-line" | "$:first-of-page" | "$:first-of-type" | "$:focus" | "$:focus-visible" | "$:focus-within" | "$:fullscreen" | "$:future" | "$:has()" | "$:has-slotted" | "$:heading" | "$:heading()" | "$:high-value" | "$:host" | "$:host()" | "$:host-context()" | "$:hover" | "$:in-range" | "$:indeterminate" | "$:interest-source" | "$:interest-target" | "$:invalid" | "$:is()" | "$:lang()" | "$:last-child" | "$:last-of-page" | "$:last-of-type" | "$:left" | "$:link" | "$:link-to()" | "$:local-link" | "$:low-value" | "$:matches()" | "$:modal" | "$:muted" | "$:not()" | "$:nth()" | "$:nth-child()" | "$:nth-col()" | "$:nth-last-child()" | "$:nth-last-col()" | "$:nth-last-of-type()" | "$:nth-of-page()" | "$:nth-of-type()" | "$:only-child" | "$:only-of-type" | "$:open" | "$:optimal-value" | "$:optional" | "$:out-of-range" | "$:past" | "$:paused" | "$:picture-in-picture" | "$:placeholder-shown" | "$:playing" | "$:popover-open" | "$:read-only" | "$:read-write" | "$:required" | "$:right" | "$:root" | "$:scope" | "$:seeking" | "$:snapped" | "$:snapped-block" | "$:snapped-inline" | "$:snapped-x" | "$:snapped-y" | "$:stalled" | "$:start-of-page" | "$:state()" | "$:target" | "$:target-after" | "$:target-before" | "$:target-current" | "$:target-within" | "$:unchecked" | "$:user-invalid" | "$:user-valid" | "$:valid" | "$:visited" | "$:volume-locked" | "$:where()" | "$:xr-overlay";
19558
+ type CSSPseudos$1 = "$::-moz-progress-bar" | "$::-moz-range-progress" | "$::-moz-range-thumb" | "$::-moz-range-track" | "$::-ms-browse" | "$::-ms-check" | "$::-ms-clear" | "$::-ms-expand" | "$::-ms-fill" | "$::-ms-fill-lower" | "$::-ms-fill-upper" | "$::-ms-reveal" | "$::-ms-thumb" | "$::-ms-ticks-after" | "$::-ms-ticks-before" | "$::-ms-tooltip" | "$::-ms-track" | "$::-ms-value" | "$::-webkit-progress-bar" | "$::-webkit-progress-inner-value" | "$::-webkit-progress-value" | "$::-webkit-slider-runnable-track" | "$::-webkit-slider-thumb" | "$::after" | "$::backdrop" | "$::before" | "$::checkmark" | "$::clear-icon" | "$::color-swatch" | "$::column" | "$::cue" | "$::cue()" | "$::cue-region" | "$::cue-region()" | "$::details-content" | "$::field-component" | "$::field-separator" | "$::field-text" | "$::file-selector-button" | "$::first-letter" | "$::first-line" | "$::grammar-error" | "$::highlight()" | "$::marker" | "$::nth-fragment()" | "$::part()" | "$::picker()" | "$::picker-icon" | "$::placeholder" | "$::reveal-icon" | "$::scroll-button()" | "$::scroll-marker" | "$::scroll-marker-group" | "$::search-text" | "$::selection" | "$::slider-fill" | "$::slider-thumb" | "$::slider-track" | "$::slotted()" | "$::spelling-error" | "$::step-control" | "$::step-down" | "$::step-up" | "$::target-text" | "$::view-transition" | "$::view-transition-group()" | "$::view-transition-group-children()" | "$::view-transition-image-pair()" | "$::view-transition-new()" | "$::view-transition-old()" | "$:active" | "$:active-view-transition" | "$:active-view-transition-type()" | "$:after" | "$:animated-image" | "$:any-link" | "$:autofill" | "$:before" | "$:blank" | "$:buffering" | "$:checked" | "$:current" | "$:current()" | "$:default" | "$:defined" | "$:dir()" | "$:disabled" | "$:empty" | "$:enabled" | "$:first" | "$:first-child" | "$:first-letter" | "$:first-line" | "$:first-of-page" | "$:first-of-type" | "$:focus" | "$:focus-visible" | "$:focus-within" | "$:fullscreen" | "$:future" | "$:has()" | "$:has-slotted" | "$:heading" | "$:heading()" | "$:high-value" | "$:host" | "$:host()" | "$:host-context()" | "$:hover" | "$:in-range" | "$:indeterminate" | "$:interest-source" | "$:interest-target" | "$:invalid" | "$:is()" | "$:lang()" | "$:last-child" | "$:last-of-page" | "$:last-of-type" | "$:left" | "$:link" | "$:link-to()" | "$:local-link" | "$:low-value" | "$:matches()" | "$:modal" | "$:muted" | "$:nav-source" | "$:not()" | "$:nth()" | "$:nth-child()" | "$:nth-col()" | "$:nth-last-child()" | "$:nth-last-col()" | "$:nth-last-of-type()" | "$:nth-of-page()" | "$:nth-of-type()" | "$:only-child" | "$:only-of-type" | "$:open" | "$:optimal-value" | "$:optional" | "$:out-of-range" | "$:past" | "$:paused" | "$:picture-in-picture" | "$:placeholder-shown" | "$:playing" | "$:popover-open" | "$:read-only" | "$:read-write" | "$:required" | "$:right" | "$:root" | "$:scope" | "$:seeking" | "$:snapped" | "$:snapped-block" | "$:snapped-inline" | "$:snapped-x" | "$:snapped-y" | "$:stalled" | "$:start-of-page" | "$:state()" | "$:target" | "$:target-after" | "$:target-before" | "$:target-current" | "$:target-within" | "$:unchecked" | "$:user-invalid" | "$:user-valid" | "$:valid" | "$:visited" | "$:volume-locked" | "$:where()" | "$:xr-overlay";
19140
19559
  type AutocompleteLookup<TValueMap, TRelatedKeys extends string> = [TValueMap] extends [never] ? never : TRelatedKeys extends keyof TValueMap ? TValueMap[TRelatedKeys] : never;
19141
19560
  type PropertyInputAtom<TValueMap, BaseValue, TRelatedKeys extends string> = UnionString$1 | BaseValue | AutocompleteLookup<TValueMap, TRelatedKeys | "*">;
19142
19561
  type PropertyInputValue<TValueMap, BaseValue, TRelatedKeys extends string = never> = PropertyInputAtom<TValueMap, BaseValue, TRelatedKeys> | [value: PropertyInputAtom<TValueMap, BaseValue, TRelatedKeys>, fallback: Array<PropertyInputAtom<TValueMap, BaseValue, TRelatedKeys>>] | null | undefined;
@@ -19603,7 +20022,9 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
19603
20022
  *
19604
20023
  * 🔑 Values: `auto` | `no-ellipsis`
19605
20024
  *
19606
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
20025
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
20026
+ *
20027
+ * @experimental
19607
20028
  */
19608
20029
  blockEllipsis?: PropertyInputValue<TValueMap, Property.BlockEllipsis, PropertyRelatedNames["blockEllipsis"]> | undefined;
19609
20030
  /**
@@ -20784,10 +21205,13 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
20784
21205
  */
20785
21206
  columnRule?: PropertyInputValue<TValueMap, Property.ColumnRule<TLength>, PropertyRelatedNames["columnRule"]> | undefined;
20786
21207
  /**
21208
+ * ❌ Baseline: Not widely available
20787
21209
  *
20788
21210
  * 🔑 Values: `intersection` | `none` | `normal`
20789
21211
  *
20790
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
21212
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
21213
+ *
21214
+ * @experimental
20791
21215
  */
20792
21216
  columnRuleBreak?: PropertyInputValue<TValueMap, Property.ColumnRuleBreak, PropertyRelatedNames["columnRuleBreak"]> | undefined;
20793
21217
  /**
@@ -20801,48 +21225,87 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
20801
21225
  */
20802
21226
  columnRuleColor?: PropertyInputValue<TValueMap, Property.ColumnRuleColor, PropertyRelatedNames["columnRuleColor"]> | undefined;
20803
21227
  /**
21228
+ * ❌ Baseline: Not widely available
20804
21229
  *
20805
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
21230
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
21231
+ *
21232
+ * @experimental
20806
21233
  */
20807
- columnRuleInset?: PropertyInputValue<TValueMap, Property.ColumnRuleInset<TLength>, PropertyRelatedNames["columnRuleInset"]> | undefined;
21234
+ columnRuleInset?: PropertyInputValue<TValueMap, Property.ColumnRuleInset, PropertyRelatedNames["columnRuleInset"]> | undefined;
20808
21235
  /**
21236
+ * ❌ Baseline: Not widely available
20809
21237
  *
20810
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
21238
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
21239
+ *
21240
+ * @experimental
20811
21241
  */
20812
- columnRuleInsetCap?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetCap<TLength>, PropertyRelatedNames["columnRuleInsetCap"]> | undefined;
21242
+ columnRuleInsetCap?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetCap, PropertyRelatedNames["columnRuleInsetCap"]> | undefined;
20813
21243
  /**
21244
+ * ❌ Baseline: Not widely available
20814
21245
  *
20815
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
21246
+ * 🔑 Values: `overlap-join`
21247
+ *
21248
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
21249
+ *
21250
+ * @experimental
20816
21251
  */
20817
21252
  columnRuleInsetCapEnd?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetCapEnd<TLength>, PropertyRelatedNames["columnRuleInsetCapEnd"]> | undefined;
20818
21253
  /**
21254
+ * ❌ Baseline: Not widely available
20819
21255
  *
20820
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
21256
+ * 🔑 Values: `overlap-join`
21257
+ *
21258
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
21259
+ *
21260
+ * @experimental
20821
21261
  */
20822
21262
  columnRuleInsetCapStart?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetCapStart<TLength>, PropertyRelatedNames["columnRuleInsetCapStart"]> | undefined;
20823
21263
  /**
21264
+ * ❌ Baseline: Not widely available
20824
21265
  *
20825
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
21266
+ * 🔑 Values: `overlap-join`
21267
+ *
21268
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
21269
+ *
21270
+ * @experimental
20826
21271
  */
20827
21272
  columnRuleInsetEnd?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetEnd<TLength>, PropertyRelatedNames["columnRuleInsetEnd"]> | undefined;
20828
21273
  /**
21274
+ * ❌ Baseline: Not widely available
20829
21275
  *
20830
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
21276
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
21277
+ *
21278
+ * @experimental
20831
21279
  */
20832
- columnRuleInsetJunction?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetJunction<TLength>, PropertyRelatedNames["columnRuleInsetJunction"]> | undefined;
21280
+ columnRuleInsetJunction?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetJunction, PropertyRelatedNames["columnRuleInsetJunction"]> | undefined;
20833
21281
  /**
21282
+ * ❌ Baseline: Not widely available
20834
21283
  *
20835
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
21284
+ * 🔑 Values: `overlap-join`
21285
+ *
21286
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
21287
+ *
21288
+ * @experimental
20836
21289
  */
20837
21290
  columnRuleInsetJunctionEnd?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetJunctionEnd<TLength>, PropertyRelatedNames["columnRuleInsetJunctionEnd"]> | undefined;
20838
21291
  /**
21292
+ * ❌ Baseline: Not widely available
20839
21293
  *
20840
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
21294
+ * 🔑 Values: `overlap-join`
21295
+ *
21296
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
21297
+ *
21298
+ * @experimental
20841
21299
  */
20842
21300
  columnRuleInsetJunctionStart?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetJunctionStart<TLength>, PropertyRelatedNames["columnRuleInsetJunctionStart"]> | undefined;
20843
21301
  /**
21302
+ * ❌ Baseline: Not widely available
20844
21303
  *
20845
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
21304
+ * 🔑 Values: `overlap-join`
21305
+ *
21306
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
21307
+ *
21308
+ * @experimental
20846
21309
  */
20847
21310
  columnRuleInsetStart?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetStart<TLength>, PropertyRelatedNames["columnRuleInsetStart"]> | undefined;
20848
21311
  /**
@@ -20856,10 +21319,13 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
20856
21319
  */
20857
21320
  columnRuleStyle?: PropertyInputValue<TValueMap, Property.ColumnRuleStyle, PropertyRelatedNames["columnRuleStyle"]> | undefined;
20858
21321
  /**
21322
+ * ❌ Baseline: Not widely available
20859
21323
  *
20860
21324
  * 🔑 Values: `all` | `around` | `between` | `normal`
20861
21325
  *
20862
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
21326
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
21327
+ *
21328
+ * @experimental
20863
21329
  */
20864
21330
  columnRuleVisibilityItems?: PropertyInputValue<TValueMap, Property.ColumnRuleVisibilityItems, PropertyRelatedNames["columnRuleVisibilityItems"]> | undefined;
20865
21331
  /**
@@ -21017,7 +21483,9 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
21017
21483
  *
21018
21484
  * 🔑 Values: `auto` | `collapse` | `discard` | `fragments` | `overflow` | `paginate`
21019
21485
  *
21020
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
21486
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
21487
+ *
21488
+ * @experimental
21021
21489
  */
21022
21490
  continue?: PropertyInputValue<TValueMap, Property.Continue, PropertyRelatedNames["continue"]> | undefined;
21023
21491
  /**
@@ -21371,7 +21839,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
21371
21839
  */
21372
21840
  counterReset?: PropertyInputValue<TValueMap, Property.CounterReset, PropertyRelatedNames["counterReset"]> | undefined;
21373
21841
  /**
21374
- * ⚠️ Baseline: Newly available (since Dec 2023)
21842
+ * Baseline: Widely available (since Jun 2026)
21375
21843
  *
21376
21844
  * 🔑 Values: `none`
21377
21845
  *
@@ -21507,7 +21975,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
21507
21975
  */
21508
21976
  eventTriggerSource?: PropertyInputValue<TValueMap, Property.EventTriggerSource, PropertyRelatedNames["eventTriggerSource"]> | undefined;
21509
21977
  /**
21510
- * Baseline: Not widely available
21978
+ * ⚠️ Baseline: Newly available (since Jun 2026)
21511
21979
  *
21512
21980
  * 🔑 Values: `content` | `fixed`
21513
21981
  *
@@ -21651,6 +22119,13 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
21651
22119
  * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
21652
22120
  */
21653
22121
  flexGrow?: PropertyInputValue<TValueMap, Property.FlexGrow, PropertyRelatedNames["flexGrow"]> | undefined;
22122
+ /**
22123
+ *
22124
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✗
22125
+ *
22126
+ * @experimental
22127
+ */
22128
+ flexLineCount?: PropertyInputValue<TValueMap, Property.FlexLineCount, PropertyRelatedNames["flexLineCount"]> | undefined;
21654
22129
  /**
21655
22130
  * ✅ Baseline: Widely available (since Mar 2018)
21656
22131
  *
@@ -22050,7 +22525,9 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
22050
22525
  *
22051
22526
  * 🔑 Values: `auto` | `content-block-size` | `content-height` | `content-inline-size` | `content-width`
22052
22527
  *
22053
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
22528
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
22529
+ *
22530
+ * @experimental
22054
22531
  */
22055
22532
  frameSizing?: PropertyInputValue<TValueMap, Property.FrameSizing, PropertyRelatedNames["frameSizing"]> | undefined;
22056
22533
  /**
@@ -22664,7 +23141,9 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
22664
23141
  *
22665
23142
  * 🔑 Values: `none`
22666
23143
  *
22667
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
23144
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
23145
+ *
23146
+ * @experimental
22668
23147
  */
22669
23148
  linkParameters?: PropertyInputValue<TValueMap, Property.LinkParameters, PropertyRelatedNames["linkParameters"]> | undefined;
22670
23149
  /**
@@ -22884,7 +23363,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
22884
23363
  */
22885
23364
  markerStart?: PropertyInputValue<TValueMap, Property.MarkerStart, PropertyRelatedNames["markerStart"]> | undefined;
22886
23365
  /**
22887
- * ⚠️ Baseline: Newly available (since Dec 2023)
23366
+ * Baseline: Widely available (since Jun 2026)
22888
23367
  *
22889
23368
  * 🔑 Values: `add` | `alpha` | `border-box` | `bottom` | `center` | `content-box` | `exclude` | `fill-box` | `intersect` | `left` | `luminance` | `margin-box` | `match-source` | `no-repeat` | `padding-box` | `repeat` | `repeat-x` | `repeat-y` | `right` | `round`, ... and 5 more
22890
23369
  *
@@ -22955,7 +23434,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
22955
23434
  */
22956
23435
  maskBorderWidth?: PropertyInputValue<TValueMap, Property.MaskBorderWidth<TLength>, PropertyRelatedNames["maskBorderWidth"]> | undefined;
22957
23436
  /**
22958
- * ⚠️ Baseline: Newly available (since Dec 2023)
23437
+ * Baseline: Widely available (since Jun 2026)
22959
23438
  *
22960
23439
  * 📦 Sources: webref ✓ | mdn-data ✓ | BCD ✓ | web-features ✓
22961
23440
  *
@@ -22963,7 +23442,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
22963
23442
  */
22964
23443
  maskClip?: PropertyInputValue<TValueMap, Property.MaskClip, PropertyRelatedNames["maskClip"]> | undefined;
22965
23444
  /**
22966
- * ⚠️ Baseline: Newly available (since Dec 2023)
23445
+ * Baseline: Widely available (since Jun 2026)
22967
23446
  *
22968
23447
  * 🔑 Values: `add` | `exclude` | `intersect` | `subtract`
22969
23448
  *
@@ -22973,7 +23452,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
22973
23452
  */
22974
23453
  maskComposite?: PropertyInputValue<TValueMap, Property.MaskComposite, PropertyRelatedNames["maskComposite"]> | undefined;
22975
23454
  /**
22976
- * ⚠️ Baseline: Newly available (since Dec 2023)
23455
+ * Baseline: Widely available (since Jun 2026)
22977
23456
  *
22978
23457
  * 🔑 Values: `none`
22979
23458
  *
@@ -22983,7 +23462,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
22983
23462
  */
22984
23463
  maskImage?: PropertyInputValue<TValueMap, Property.MaskImage, PropertyRelatedNames["maskImage"]> | undefined;
22985
23464
  /**
22986
- * ⚠️ Baseline: Newly available (since Dec 2023)
23465
+ * Baseline: Widely available (since Jun 2026)
22987
23466
  *
22988
23467
  * 🔑 Values: `alpha` | `luminance` | `match-source`
22989
23468
  *
@@ -22993,7 +23472,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
22993
23472
  */
22994
23473
  maskMode?: PropertyInputValue<TValueMap, Property.MaskMode, PropertyRelatedNames["maskMode"]> | undefined;
22995
23474
  /**
22996
- * ⚠️ Baseline: Newly available (since Dec 2023)
23475
+ * Baseline: Widely available (since Jun 2026)
22997
23476
  *
22998
23477
  * 🔑 Values: `border-box` | `content-box` | `fill-box` | `padding-box` | `stroke-box` | `view-box`
22999
23478
  *
@@ -23003,7 +23482,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
23003
23482
  */
23004
23483
  maskOrigin?: PropertyInputValue<TValueMap, Property.MaskOrigin, PropertyRelatedNames["maskOrigin"]> | undefined;
23005
23484
  /**
23006
- * ⚠️ Baseline: Newly available (since Dec 2023)
23485
+ * Baseline: Widely available (since Jun 2026)
23007
23486
  *
23008
23487
  * 🔑 Values: `bottom` | `center` | `left` | `right` | `top`
23009
23488
  *
@@ -23013,7 +23492,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
23013
23492
  */
23014
23493
  maskPosition?: PropertyInputValue<TValueMap, Property.MaskPosition<TLength>, PropertyRelatedNames["maskPosition"]> | undefined;
23015
23494
  /**
23016
- * ⚠️ Baseline: Newly available (since Dec 2023)
23495
+ * Baseline: Widely available (since Jun 2026)
23017
23496
  *
23018
23497
  * 🔑 Values: `no-repeat` | `repeat` | `repeat-x` | `repeat-y` | `round` | `space`
23019
23498
  *
@@ -23023,7 +23502,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
23023
23502
  */
23024
23503
  maskRepeat?: PropertyInputValue<TValueMap, Property.MaskRepeat, PropertyRelatedNames["maskRepeat"]> | undefined;
23025
23504
  /**
23026
- * ⚠️ Baseline: Newly available (since Dec 2023)
23505
+ * Baseline: Widely available (since Jun 2026)
23027
23506
  *
23028
23507
  * 🔑 Values: `contain` | `cover`
23029
23508
  *
@@ -23113,7 +23592,9 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
23113
23592
  *
23114
23593
  * 🔑 Values: `none`
23115
23594
  *
23116
- * 📦 Sources: webref ✓ | mdn-data ✓ | BCD | web-features ✗
23595
+ * 📦 Sources: webref ✓ | mdn-data ✓ | BCD | web-features ✗
23596
+ *
23597
+ * @experimental
23117
23598
  */
23118
23599
  maxLines?: PropertyInputValue<TValueMap, Property.MaxLines, PropertyRelatedNames["maxLines"]> | undefined;
23119
23600
  /**
@@ -24205,12 +24686,15 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
24205
24686
  */
24206
24687
  paintOrder?: PropertyInputValue<TValueMap, Property.PaintOrder, PropertyRelatedNames["paintOrder"]> | undefined;
24207
24688
  /**
24689
+ * ✅ Baseline: Widely available (since Jul 2022)
24208
24690
  *
24209
24691
  * 🔑 Values: `none`
24210
24692
  *
24211
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
24693
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
24694
+ *
24695
+ * @experimental
24212
24696
  */
24213
- pathLength?: PropertyInputValue<TValueMap, Property.PathLength, PropertyRelatedNames["pathLength"]> | undefined;
24697
+ pathLength?: PropertyInputValue<TValueMap, Property.PathLength<TLength>, PropertyRelatedNames["pathLength"]> | undefined;
24214
24698
  /**
24215
24699
  *
24216
24700
  * 🔑 Values: `medium` | `none` | `strong` | `weak` | `x-strong` | `x-weak`
@@ -24320,7 +24804,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
24320
24804
  /**
24321
24805
  * ❌ Baseline: Not widely available
24322
24806
  *
24323
- * 🔑 Values: `auto` | `none`
24807
+ * 🔑 Values: `auto` | `match-parent` | `none` | `normal`
24324
24808
  *
24325
24809
  * 📦 Sources: webref ✓ | mdn-data ✓ | BCD ✓ | web-features ✓
24326
24810
  *
@@ -24496,90 +24980,147 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
24496
24980
  */
24497
24981
  rowGap?: PropertyInputValue<TValueMap, Property.RowGap<TLength>, PropertyRelatedNames["rowGap"]> | undefined;
24498
24982
  /**
24983
+ * ❌ Baseline: Not widely available
24499
24984
  *
24500
24985
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 185 more
24501
24986
  *
24502
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
24987
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
24988
+ *
24989
+ * @experimental
24503
24990
  */
24504
24991
  rowRule?: PropertyInputValue<TValueMap, Property.RowRule<TLength>, PropertyRelatedNames["rowRule"]> | undefined;
24505
24992
  /**
24993
+ * ❌ Baseline: Not widely available
24506
24994
  *
24507
24995
  * 🔑 Values: `intersection` | `none` | `normal`
24508
24996
  *
24509
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
24997
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
24998
+ *
24999
+ * @experimental
24510
25000
  */
24511
25001
  rowRuleBreak?: PropertyInputValue<TValueMap, Property.RowRuleBreak, PropertyRelatedNames["rowRuleBreak"]> | undefined;
24512
25002
  /**
25003
+ * ❌ Baseline: Not widely available
24513
25004
  *
24514
25005
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 172 more
24515
25006
  *
24516
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25007
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25008
+ *
25009
+ * @experimental
24517
25010
  */
24518
25011
  rowRuleColor?: PropertyInputValue<TValueMap, Property.RowRuleColor, PropertyRelatedNames["rowRuleColor"]> | undefined;
24519
25012
  /**
25013
+ * ❌ Baseline: Not widely available
24520
25014
  *
24521
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25015
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25016
+ *
25017
+ * @experimental
24522
25018
  */
24523
- rowRuleInset?: PropertyInputValue<TValueMap, Property.RowRuleInset<TLength>, PropertyRelatedNames["rowRuleInset"]> | undefined;
25019
+ rowRuleInset?: PropertyInputValue<TValueMap, Property.RowRuleInset, PropertyRelatedNames["rowRuleInset"]> | undefined;
24524
25020
  /**
25021
+ * ❌ Baseline: Not widely available
24525
25022
  *
24526
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25023
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25024
+ *
25025
+ * @experimental
24527
25026
  */
24528
- rowRuleInsetCap?: PropertyInputValue<TValueMap, Property.RowRuleInsetCap<TLength>, PropertyRelatedNames["rowRuleInsetCap"]> | undefined;
25027
+ rowRuleInsetCap?: PropertyInputValue<TValueMap, Property.RowRuleInsetCap, PropertyRelatedNames["rowRuleInsetCap"]> | undefined;
24529
25028
  /**
25029
+ * ❌ Baseline: Not widely available
24530
25030
  *
24531
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
25031
+ * 🔑 Values: `overlap-join`
25032
+ *
25033
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
25034
+ *
25035
+ * @experimental
24532
25036
  */
24533
25037
  rowRuleInsetCapEnd?: PropertyInputValue<TValueMap, Property.RowRuleInsetCapEnd<TLength>, PropertyRelatedNames["rowRuleInsetCapEnd"]> | undefined;
24534
25038
  /**
25039
+ * ❌ Baseline: Not widely available
24535
25040
  *
24536
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
25041
+ * 🔑 Values: `overlap-join`
25042
+ *
25043
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
25044
+ *
25045
+ * @experimental
24537
25046
  */
24538
25047
  rowRuleInsetCapStart?: PropertyInputValue<TValueMap, Property.RowRuleInsetCapStart<TLength>, PropertyRelatedNames["rowRuleInsetCapStart"]> | undefined;
24539
25048
  /**
25049
+ * ❌ Baseline: Not widely available
24540
25050
  *
24541
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
25051
+ * 🔑 Values: `overlap-join`
25052
+ *
25053
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
25054
+ *
25055
+ * @experimental
24542
25056
  */
24543
25057
  rowRuleInsetEnd?: PropertyInputValue<TValueMap, Property.RowRuleInsetEnd<TLength>, PropertyRelatedNames["rowRuleInsetEnd"]> | undefined;
24544
25058
  /**
25059
+ * ❌ Baseline: Not widely available
24545
25060
  *
24546
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25061
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25062
+ *
25063
+ * @experimental
24547
25064
  */
24548
- rowRuleInsetJunction?: PropertyInputValue<TValueMap, Property.RowRuleInsetJunction<TLength>, PropertyRelatedNames["rowRuleInsetJunction"]> | undefined;
25065
+ rowRuleInsetJunction?: PropertyInputValue<TValueMap, Property.RowRuleInsetJunction, PropertyRelatedNames["rowRuleInsetJunction"]> | undefined;
24549
25066
  /**
25067
+ * ❌ Baseline: Not widely available
24550
25068
  *
24551
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
25069
+ * 🔑 Values: `overlap-join`
25070
+ *
25071
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
25072
+ *
25073
+ * @experimental
24552
25074
  */
24553
25075
  rowRuleInsetJunctionEnd?: PropertyInputValue<TValueMap, Property.RowRuleInsetJunctionEnd<TLength>, PropertyRelatedNames["rowRuleInsetJunctionEnd"]> | undefined;
24554
25076
  /**
25077
+ * ❌ Baseline: Not widely available
24555
25078
  *
24556
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
25079
+ * 🔑 Values: `overlap-join`
25080
+ *
25081
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
25082
+ *
25083
+ * @experimental
24557
25084
  */
24558
25085
  rowRuleInsetJunctionStart?: PropertyInputValue<TValueMap, Property.RowRuleInsetJunctionStart<TLength>, PropertyRelatedNames["rowRuleInsetJunctionStart"]> | undefined;
24559
25086
  /**
25087
+ * ❌ Baseline: Not widely available
24560
25088
  *
24561
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
25089
+ * 🔑 Values: `overlap-join`
25090
+ *
25091
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
25092
+ *
25093
+ * @experimental
24562
25094
  */
24563
25095
  rowRuleInsetStart?: PropertyInputValue<TValueMap, Property.RowRuleInsetStart<TLength>, PropertyRelatedNames["rowRuleInsetStart"]> | undefined;
24564
25096
  /**
25097
+ * ❌ Baseline: Not widely available
24565
25098
  *
24566
25099
  * 🔑 Values: `dashed` | `dotted` | `double` | `groove` | `hidden` | `inset` | `none` | `outset` | `ridge` | `solid`
24567
25100
  *
24568
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25101
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25102
+ *
25103
+ * @experimental
24569
25104
  */
24570
25105
  rowRuleStyle?: PropertyInputValue<TValueMap, Property.RowRuleStyle, PropertyRelatedNames["rowRuleStyle"]> | undefined;
24571
25106
  /**
25107
+ * ❌ Baseline: Not widely available
24572
25108
  *
24573
25109
  * 🔑 Values: `all` | `around` | `between` | `normal`
24574
25110
  *
24575
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25111
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25112
+ *
25113
+ * @experimental
24576
25114
  */
24577
25115
  rowRuleVisibilityItems?: PropertyInputValue<TValueMap, Property.RowRuleVisibilityItems, PropertyRelatedNames["rowRuleVisibilityItems"]> | undefined;
24578
25116
  /**
25117
+ * ❌ Baseline: Not widely available
24579
25118
  *
24580
25119
  * 🔑 Values: `medium` | `thick` | `thin`
24581
25120
  *
24582
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25121
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25122
+ *
25123
+ * @experimental
24583
25124
  */
24584
25125
  rowRuleWidth?: PropertyInputValue<TValueMap, Property.RowRuleWidth<TLength>, PropertyRelatedNames["rowRuleWidth"]> | undefined;
24585
25126
  /**
@@ -24620,77 +25161,117 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
24620
25161
  */
24621
25162
  rubyPosition?: PropertyInputValue<TValueMap, Property.RubyPosition, PropertyRelatedNames["rubyPosition"]> | undefined;
24622
25163
  /**
25164
+ * ❌ Baseline: Not widely available
24623
25165
  *
24624
25166
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 185 more
24625
25167
  *
24626
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25168
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25169
+ *
25170
+ * @experimental
24627
25171
  */
24628
25172
  rule?: PropertyInputValue<TValueMap, Property.Rule<TLength>, PropertyRelatedNames["rule"]> | undefined;
24629
25173
  /**
25174
+ * ❌ Baseline: Not widely available
24630
25175
  *
24631
25176
  * 🔑 Values: `intersection` | `none` | `normal`
24632
25177
  *
24633
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25178
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25179
+ *
25180
+ * @experimental
24634
25181
  */
24635
25182
  ruleBreak?: PropertyInputValue<TValueMap, Property.RuleBreak, PropertyRelatedNames["ruleBreak"]> | undefined;
24636
25183
  /**
25184
+ * ❌ Baseline: Not widely available
24637
25185
  *
24638
25186
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 172 more
24639
25187
  *
24640
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25188
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25189
+ *
25190
+ * @experimental
24641
25191
  */
24642
25192
  ruleColor?: PropertyInputValue<TValueMap, Property.RuleColor, PropertyRelatedNames["ruleColor"]> | undefined;
24643
25193
  /**
25194
+ * ❌ Baseline: Not widely available
24644
25195
  *
24645
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25196
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25197
+ *
25198
+ * @experimental
24646
25199
  */
24647
- ruleInset?: PropertyInputValue<TValueMap, Property.RuleInset<TLength>, PropertyRelatedNames["ruleInset"]> | undefined;
25200
+ ruleInset?: PropertyInputValue<TValueMap, Property.RuleInset, PropertyRelatedNames["ruleInset"]> | undefined;
24648
25201
  /**
25202
+ * ❌ Baseline: Not widely available
24649
25203
  *
24650
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25204
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25205
+ *
25206
+ * @experimental
24651
25207
  */
24652
- ruleInsetCap?: PropertyInputValue<TValueMap, Property.RuleInsetCap<TLength>, PropertyRelatedNames["ruleInsetCap"]> | undefined;
25208
+ ruleInsetCap?: PropertyInputValue<TValueMap, Property.RuleInsetCap, PropertyRelatedNames["ruleInsetCap"]> | undefined;
24653
25209
  /**
25210
+ * ❌ Baseline: Not widely available
24654
25211
  *
24655
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
25212
+ * 🔑 Values: `overlap-join`
25213
+ *
25214
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
25215
+ *
25216
+ * @experimental
24656
25217
  */
24657
25218
  ruleInsetEnd?: PropertyInputValue<TValueMap, Property.RuleInsetEnd<TLength>, PropertyRelatedNames["ruleInsetEnd"]> | undefined;
24658
25219
  /**
25220
+ * ❌ Baseline: Not widely available
24659
25221
  *
24660
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25222
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25223
+ *
25224
+ * @experimental
24661
25225
  */
24662
- ruleInsetJunction?: PropertyInputValue<TValueMap, Property.RuleInsetJunction<TLength>, PropertyRelatedNames["ruleInsetJunction"]> | undefined;
25226
+ ruleInsetJunction?: PropertyInputValue<TValueMap, Property.RuleInsetJunction, PropertyRelatedNames["ruleInsetJunction"]> | undefined;
24663
25227
  /**
25228
+ * ❌ Baseline: Not widely available
24664
25229
  *
24665
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
25230
+ * 🔑 Values: `overlap-join`
25231
+ *
25232
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
25233
+ *
25234
+ * @experimental
24666
25235
  */
24667
25236
  ruleInsetStart?: PropertyInputValue<TValueMap, Property.RuleInsetStart<TLength>, PropertyRelatedNames["ruleInsetStart"]> | undefined;
24668
25237
  /**
25238
+ * ❌ Baseline: Not widely available
24669
25239
  *
24670
25240
  * 🔑 Values: `column-over-row` | `row-over-column`
24671
25241
  *
24672
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25242
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25243
+ *
25244
+ * @experimental
24673
25245
  */
24674
25246
  ruleOverlap?: PropertyInputValue<TValueMap, Property.RuleOverlap, PropertyRelatedNames["ruleOverlap"]> | undefined;
24675
25247
  /**
25248
+ * ❌ Baseline: Not widely available
24676
25249
  *
24677
25250
  * 🔑 Values: `dashed` | `dotted` | `double` | `groove` | `hidden` | `inset` | `none` | `outset` | `ridge` | `solid`
24678
25251
  *
24679
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25252
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25253
+ *
25254
+ * @experimental
24680
25255
  */
24681
25256
  ruleStyle?: PropertyInputValue<TValueMap, Property.RuleStyle, PropertyRelatedNames["ruleStyle"]> | undefined;
24682
25257
  /**
25258
+ * ❌ Baseline: Not widely available
24683
25259
  *
24684
25260
  * 🔑 Values: `all` | `around` | `between` | `normal`
24685
25261
  *
24686
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25262
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25263
+ *
25264
+ * @experimental
24687
25265
  */
24688
25266
  ruleVisibilityItems?: PropertyInputValue<TValueMap, Property.RuleVisibilityItems, PropertyRelatedNames["ruleVisibilityItems"]> | undefined;
24689
25267
  /**
25268
+ * ❌ Baseline: Not widely available
24690
25269
  *
24691
25270
  * 🔑 Values: `medium` | `thick` | `thin`
24692
25271
  *
24693
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25272
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
25273
+ *
25274
+ * @experimental
24694
25275
  */
24695
25276
  ruleWidth?: PropertyInputValue<TValueMap, Property.RuleWidth<TLength>, PropertyRelatedNames["ruleWidth"]> | undefined;
24696
25277
  /**
@@ -25629,7 +26210,9 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
25629
26210
  textEmphasisStyle?: PropertyInputValue<TValueMap, Property.TextEmphasisStyle, PropertyRelatedNames["textEmphasisStyle"]> | undefined;
25630
26211
  /**
25631
26212
  *
25632
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
26213
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
26214
+ *
26215
+ * @experimental
25633
26216
  */
25634
26217
  textFit?: PropertyInputValue<TValueMap, Property.TextFit, PropertyRelatedNames["textFit"]> | undefined;
25635
26218
  /**
@@ -26132,12 +26715,15 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
26132
26715
  */
26133
26716
  viewTransitionName?: PropertyInputValue<TValueMap, Property.ViewTransitionName, PropertyRelatedNames["viewTransitionName"]> | undefined;
26134
26717
  /**
26718
+ * ❌ Baseline: Not widely available
26135
26719
  *
26136
26720
  * 🔑 Values: `all` | `none`
26137
26721
  *
26138
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features
26722
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features
26139
26723
  *
26140
26724
  * @experimental
26725
+ *
26726
+ * @see https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-transition-scope
26141
26727
  */
26142
26728
  viewTransitionScope?: PropertyInputValue<TValueMap, Property.ViewTransitionScope, PropertyRelatedNames["viewTransitionScope"]> | undefined;
26143
26729
  /**
@@ -26522,7 +27108,7 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
26522
27108
  WebkitFlexShrink?: PropertyInputValue<TValueMap, Property.WebkitFlexShrink, PropertyRelatedNames["WebkitFlexShrink"]> | undefined;
26523
27109
  /**
26524
27110
  *
26525
- * 🔑 Values: `nowrap` | `wrap` | `wrap-reverse`
27111
+ * 🔑 Values: `nowrap`
26526
27112
  *
26527
27113
  * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
26528
27114
  */
@@ -26896,6 +27482,13 @@ interface PropertiesInput<TValueMap = never, TLength = DefaultTLength, TTime = D
26896
27482
  * @see https://developer.mozilla.org/docs/Web/CSS/will-change
26897
27483
  */
26898
27484
  willChange?: PropertyInputValue<TValueMap, Property.WillChange, PropertyRelatedNames["willChange"]> | undefined;
27485
+ /**
27486
+ *
27487
+ * 🔑 Values: `move` | `none`
27488
+ *
27489
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
27490
+ */
27491
+ windowDrag?: PropertyInputValue<TValueMap, Property.WindowDrag, PropertyRelatedNames["windowDrag"]> | undefined;
26899
27492
  /**
26900
27493
  * ✅ Baseline: Widely available (since Jan 2018)
26901
27494
  *
@@ -27811,7 +28404,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
27811
28404
  "-webkit-flex-shrink"?: PropertyInputValue<TValueMap, Property.WebkitFlexShrink, PropertyHyphenRelatedNames["-webkit-flex-shrink"]> | undefined;
27812
28405
  /**
27813
28406
  *
27814
- * 🔑 Values: `nowrap` | `wrap` | `wrap-reverse`
28407
+ * 🔑 Values: `nowrap`
27815
28408
  *
27816
28409
  * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
27817
28410
  */
@@ -28592,7 +29185,9 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
28592
29185
  *
28593
29186
  * 🔑 Values: `auto` | `no-ellipsis`
28594
29187
  *
28595
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
29188
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
29189
+ *
29190
+ * @experimental
28596
29191
  */
28597
29192
  "block-ellipsis"?: PropertyInputValue<TValueMap, Property.BlockEllipsis, PropertyHyphenRelatedNames["block-ellipsis"]> | undefined;
28598
29193
  /**
@@ -29773,10 +30368,13 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
29773
30368
  */
29774
30369
  "column-rule"?: PropertyInputValue<TValueMap, Property.ColumnRule<TLength>, PropertyHyphenRelatedNames["column-rule"]> | undefined;
29775
30370
  /**
30371
+ * ❌ Baseline: Not widely available
29776
30372
  *
29777
30373
  * 🔑 Values: `intersection` | `none` | `normal`
29778
30374
  *
29779
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
30375
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
30376
+ *
30377
+ * @experimental
29780
30378
  */
29781
30379
  "column-rule-break"?: PropertyInputValue<TValueMap, Property.ColumnRuleBreak, PropertyHyphenRelatedNames["column-rule-break"]> | undefined;
29782
30380
  /**
@@ -29790,48 +30388,87 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
29790
30388
  */
29791
30389
  "column-rule-color"?: PropertyInputValue<TValueMap, Property.ColumnRuleColor, PropertyHyphenRelatedNames["column-rule-color"]> | undefined;
29792
30390
  /**
30391
+ * ❌ Baseline: Not widely available
29793
30392
  *
29794
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
30393
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
30394
+ *
30395
+ * @experimental
29795
30396
  */
29796
- "column-rule-inset"?: PropertyInputValue<TValueMap, Property.ColumnRuleInset<TLength>, PropertyHyphenRelatedNames["column-rule-inset"]> | undefined;
30397
+ "column-rule-inset"?: PropertyInputValue<TValueMap, Property.ColumnRuleInset, PropertyHyphenRelatedNames["column-rule-inset"]> | undefined;
29797
30398
  /**
30399
+ * ❌ Baseline: Not widely available
29798
30400
  *
29799
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
30401
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
30402
+ *
30403
+ * @experimental
29800
30404
  */
29801
- "column-rule-inset-cap"?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetCap<TLength>, PropertyHyphenRelatedNames["column-rule-inset-cap"]> | undefined;
30405
+ "column-rule-inset-cap"?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetCap, PropertyHyphenRelatedNames["column-rule-inset-cap"]> | undefined;
29802
30406
  /**
30407
+ * ❌ Baseline: Not widely available
29803
30408
  *
29804
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
30409
+ * 🔑 Values: `overlap-join`
30410
+ *
30411
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
30412
+ *
30413
+ * @experimental
29805
30414
  */
29806
30415
  "column-rule-inset-cap-end"?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetCapEnd<TLength>, PropertyHyphenRelatedNames["column-rule-inset-cap-end"]> | undefined;
29807
30416
  /**
30417
+ * ❌ Baseline: Not widely available
29808
30418
  *
29809
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
30419
+ * 🔑 Values: `overlap-join`
30420
+ *
30421
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
30422
+ *
30423
+ * @experimental
29810
30424
  */
29811
30425
  "column-rule-inset-cap-start"?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetCapStart<TLength>, PropertyHyphenRelatedNames["column-rule-inset-cap-start"]> | undefined;
29812
30426
  /**
30427
+ * ❌ Baseline: Not widely available
29813
30428
  *
29814
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
30429
+ * 🔑 Values: `overlap-join`
30430
+ *
30431
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
30432
+ *
30433
+ * @experimental
29815
30434
  */
29816
30435
  "column-rule-inset-end"?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetEnd<TLength>, PropertyHyphenRelatedNames["column-rule-inset-end"]> | undefined;
29817
30436
  /**
30437
+ * ❌ Baseline: Not widely available
29818
30438
  *
29819
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
30439
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
30440
+ *
30441
+ * @experimental
29820
30442
  */
29821
- "column-rule-inset-junction"?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetJunction<TLength>, PropertyHyphenRelatedNames["column-rule-inset-junction"]> | undefined;
30443
+ "column-rule-inset-junction"?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetJunction, PropertyHyphenRelatedNames["column-rule-inset-junction"]> | undefined;
29822
30444
  /**
30445
+ * ❌ Baseline: Not widely available
29823
30446
  *
29824
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
30447
+ * 🔑 Values: `overlap-join`
30448
+ *
30449
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
30450
+ *
30451
+ * @experimental
29825
30452
  */
29826
30453
  "column-rule-inset-junction-end"?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetJunctionEnd<TLength>, PropertyHyphenRelatedNames["column-rule-inset-junction-end"]> | undefined;
29827
30454
  /**
30455
+ * ❌ Baseline: Not widely available
29828
30456
  *
29829
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
30457
+ * 🔑 Values: `overlap-join`
30458
+ *
30459
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
30460
+ *
30461
+ * @experimental
29830
30462
  */
29831
30463
  "column-rule-inset-junction-start"?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetJunctionStart<TLength>, PropertyHyphenRelatedNames["column-rule-inset-junction-start"]> | undefined;
29832
30464
  /**
30465
+ * ❌ Baseline: Not widely available
29833
30466
  *
29834
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
30467
+ * 🔑 Values: `overlap-join`
30468
+ *
30469
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
30470
+ *
30471
+ * @experimental
29835
30472
  */
29836
30473
  "column-rule-inset-start"?: PropertyInputValue<TValueMap, Property.ColumnRuleInsetStart<TLength>, PropertyHyphenRelatedNames["column-rule-inset-start"]> | undefined;
29837
30474
  /**
@@ -29845,10 +30482,13 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
29845
30482
  */
29846
30483
  "column-rule-style"?: PropertyInputValue<TValueMap, Property.ColumnRuleStyle, PropertyHyphenRelatedNames["column-rule-style"]> | undefined;
29847
30484
  /**
30485
+ * ❌ Baseline: Not widely available
29848
30486
  *
29849
30487
  * 🔑 Values: `all` | `around` | `between` | `normal`
29850
30488
  *
29851
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
30489
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
30490
+ *
30491
+ * @experimental
29852
30492
  */
29853
30493
  "column-rule-visibility-items"?: PropertyInputValue<TValueMap, Property.ColumnRuleVisibilityItems, PropertyHyphenRelatedNames["column-rule-visibility-items"]> | undefined;
29854
30494
  /**
@@ -30006,7 +30646,9 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
30006
30646
  *
30007
30647
  * 🔑 Values: `auto` | `collapse` | `discard` | `fragments` | `overflow` | `paginate`
30008
30648
  *
30009
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
30649
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
30650
+ *
30651
+ * @experimental
30010
30652
  */
30011
30653
  "continue"?: PropertyInputValue<TValueMap, Property.Continue, PropertyHyphenRelatedNames["continue"]> | undefined;
30012
30654
  /**
@@ -30360,7 +31002,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
30360
31002
  */
30361
31003
  "counter-reset"?: PropertyInputValue<TValueMap, Property.CounterReset, PropertyHyphenRelatedNames["counter-reset"]> | undefined;
30362
31004
  /**
30363
- * ⚠️ Baseline: Newly available (since Dec 2023)
31005
+ * Baseline: Widely available (since Jun 2026)
30364
31006
  *
30365
31007
  * 🔑 Values: `none`
30366
31008
  *
@@ -30496,7 +31138,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
30496
31138
  */
30497
31139
  "event-trigger-source"?: PropertyInputValue<TValueMap, Property.EventTriggerSource, PropertyHyphenRelatedNames["event-trigger-source"]> | undefined;
30498
31140
  /**
30499
- * Baseline: Not widely available
31141
+ * ⚠️ Baseline: Newly available (since Jun 2026)
30500
31142
  *
30501
31143
  * 🔑 Values: `content` | `fixed`
30502
31144
  *
@@ -30640,6 +31282,13 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
30640
31282
  * @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
30641
31283
  */
30642
31284
  "flex-grow"?: PropertyInputValue<TValueMap, Property.FlexGrow, PropertyHyphenRelatedNames["flex-grow"]> | undefined;
31285
+ /**
31286
+ *
31287
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✗
31288
+ *
31289
+ * @experimental
31290
+ */
31291
+ "flex-line-count"?: PropertyInputValue<TValueMap, Property.FlexLineCount, PropertyHyphenRelatedNames["flex-line-count"]> | undefined;
30643
31292
  /**
30644
31293
  * ✅ Baseline: Widely available (since Mar 2018)
30645
31294
  *
@@ -31039,7 +31688,9 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
31039
31688
  *
31040
31689
  * 🔑 Values: `auto` | `content-block-size` | `content-height` | `content-inline-size` | `content-width`
31041
31690
  *
31042
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
31691
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
31692
+ *
31693
+ * @experimental
31043
31694
  */
31044
31695
  "frame-sizing"?: PropertyInputValue<TValueMap, Property.FrameSizing, PropertyHyphenRelatedNames["frame-sizing"]> | undefined;
31045
31696
  /**
@@ -31653,7 +32304,9 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
31653
32304
  *
31654
32305
  * 🔑 Values: `none`
31655
32306
  *
31656
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
32307
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
32308
+ *
32309
+ * @experimental
31657
32310
  */
31658
32311
  "link-parameters"?: PropertyInputValue<TValueMap, Property.LinkParameters, PropertyHyphenRelatedNames["link-parameters"]> | undefined;
31659
32312
  /**
@@ -31873,7 +32526,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
31873
32526
  */
31874
32527
  "marker-start"?: PropertyInputValue<TValueMap, Property.MarkerStart, PropertyHyphenRelatedNames["marker-start"]> | undefined;
31875
32528
  /**
31876
- * ⚠️ Baseline: Newly available (since Dec 2023)
32529
+ * Baseline: Widely available (since Jun 2026)
31877
32530
  *
31878
32531
  * 🔑 Values: `add` | `alpha` | `border-box` | `bottom` | `center` | `content-box` | `exclude` | `fill-box` | `intersect` | `left` | `luminance` | `margin-box` | `match-source` | `no-repeat` | `padding-box` | `repeat` | `repeat-x` | `repeat-y` | `right` | `round`, ... and 5 more
31879
32532
  *
@@ -31944,7 +32597,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
31944
32597
  */
31945
32598
  "mask-border-width"?: PropertyInputValue<TValueMap, Property.MaskBorderWidth<TLength>, PropertyHyphenRelatedNames["mask-border-width"]> | undefined;
31946
32599
  /**
31947
- * ⚠️ Baseline: Newly available (since Dec 2023)
32600
+ * Baseline: Widely available (since Jun 2026)
31948
32601
  *
31949
32602
  * 📦 Sources: webref ✓ | mdn-data ✓ | BCD ✓ | web-features ✓
31950
32603
  *
@@ -31952,7 +32605,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
31952
32605
  */
31953
32606
  "mask-clip"?: PropertyInputValue<TValueMap, Property.MaskClip, PropertyHyphenRelatedNames["mask-clip"]> | undefined;
31954
32607
  /**
31955
- * ⚠️ Baseline: Newly available (since Dec 2023)
32608
+ * Baseline: Widely available (since Jun 2026)
31956
32609
  *
31957
32610
  * 🔑 Values: `add` | `exclude` | `intersect` | `subtract`
31958
32611
  *
@@ -31962,7 +32615,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
31962
32615
  */
31963
32616
  "mask-composite"?: PropertyInputValue<TValueMap, Property.MaskComposite, PropertyHyphenRelatedNames["mask-composite"]> | undefined;
31964
32617
  /**
31965
- * ⚠️ Baseline: Newly available (since Dec 2023)
32618
+ * Baseline: Widely available (since Jun 2026)
31966
32619
  *
31967
32620
  * 🔑 Values: `none`
31968
32621
  *
@@ -31972,7 +32625,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
31972
32625
  */
31973
32626
  "mask-image"?: PropertyInputValue<TValueMap, Property.MaskImage, PropertyHyphenRelatedNames["mask-image"]> | undefined;
31974
32627
  /**
31975
- * ⚠️ Baseline: Newly available (since Dec 2023)
32628
+ * Baseline: Widely available (since Jun 2026)
31976
32629
  *
31977
32630
  * 🔑 Values: `alpha` | `luminance` | `match-source`
31978
32631
  *
@@ -31982,7 +32635,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
31982
32635
  */
31983
32636
  "mask-mode"?: PropertyInputValue<TValueMap, Property.MaskMode, PropertyHyphenRelatedNames["mask-mode"]> | undefined;
31984
32637
  /**
31985
- * ⚠️ Baseline: Newly available (since Dec 2023)
32638
+ * Baseline: Widely available (since Jun 2026)
31986
32639
  *
31987
32640
  * 🔑 Values: `border-box` | `content-box` | `fill-box` | `padding-box` | `stroke-box` | `view-box`
31988
32641
  *
@@ -31992,7 +32645,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
31992
32645
  */
31993
32646
  "mask-origin"?: PropertyInputValue<TValueMap, Property.MaskOrigin, PropertyHyphenRelatedNames["mask-origin"]> | undefined;
31994
32647
  /**
31995
- * ⚠️ Baseline: Newly available (since Dec 2023)
32648
+ * Baseline: Widely available (since Jun 2026)
31996
32649
  *
31997
32650
  * 🔑 Values: `bottom` | `center` | `left` | `right` | `top`
31998
32651
  *
@@ -32002,7 +32655,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
32002
32655
  */
32003
32656
  "mask-position"?: PropertyInputValue<TValueMap, Property.MaskPosition<TLength>, PropertyHyphenRelatedNames["mask-position"]> | undefined;
32004
32657
  /**
32005
- * ⚠️ Baseline: Newly available (since Dec 2023)
32658
+ * Baseline: Widely available (since Jun 2026)
32006
32659
  *
32007
32660
  * 🔑 Values: `no-repeat` | `repeat` | `repeat-x` | `repeat-y` | `round` | `space`
32008
32661
  *
@@ -32012,7 +32665,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
32012
32665
  */
32013
32666
  "mask-repeat"?: PropertyInputValue<TValueMap, Property.MaskRepeat, PropertyHyphenRelatedNames["mask-repeat"]> | undefined;
32014
32667
  /**
32015
- * ⚠️ Baseline: Newly available (since Dec 2023)
32668
+ * Baseline: Widely available (since Jun 2026)
32016
32669
  *
32017
32670
  * 🔑 Values: `contain` | `cover`
32018
32671
  *
@@ -32102,7 +32755,9 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
32102
32755
  *
32103
32756
  * 🔑 Values: `none`
32104
32757
  *
32105
- * 📦 Sources: webref ✓ | mdn-data ✓ | BCD | web-features ✗
32758
+ * 📦 Sources: webref ✓ | mdn-data ✓ | BCD | web-features ✗
32759
+ *
32760
+ * @experimental
32106
32761
  */
32107
32762
  "max-lines"?: PropertyInputValue<TValueMap, Property.MaxLines, PropertyHyphenRelatedNames["max-lines"]> | undefined;
32108
32763
  /**
@@ -32720,12 +33375,15 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
32720
33375
  */
32721
33376
  "paint-order"?: PropertyInputValue<TValueMap, Property.PaintOrder, PropertyHyphenRelatedNames["paint-order"]> | undefined;
32722
33377
  /**
33378
+ * ✅ Baseline: Widely available (since Jul 2022)
32723
33379
  *
32724
33380
  * 🔑 Values: `none`
32725
33381
  *
32726
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33382
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33383
+ *
33384
+ * @experimental
32727
33385
  */
32728
- "path-length"?: PropertyInputValue<TValueMap, Property.PathLength, PropertyHyphenRelatedNames["path-length"]> | undefined;
33386
+ "path-length"?: PropertyInputValue<TValueMap, Property.PathLength<TLength>, PropertyHyphenRelatedNames["path-length"]> | undefined;
32729
33387
  /**
32730
33388
  *
32731
33389
  * 🔑 Values: `medium` | `none` | `strong` | `weak` | `x-strong` | `x-weak`
@@ -32835,7 +33493,7 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
32835
33493
  /**
32836
33494
  * ❌ Baseline: Not widely available
32837
33495
  *
32838
- * 🔑 Values: `auto` | `none`
33496
+ * 🔑 Values: `auto` | `match-parent` | `none` | `normal`
32839
33497
  *
32840
33498
  * 📦 Sources: webref ✓ | mdn-data ✓ | BCD ✓ | web-features ✓
32841
33499
  *
@@ -33011,90 +33669,147 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
33011
33669
  */
33012
33670
  "row-gap"?: PropertyInputValue<TValueMap, Property.RowGap<TLength>, PropertyHyphenRelatedNames["row-gap"]> | undefined;
33013
33671
  /**
33672
+ * ❌ Baseline: Not widely available
33014
33673
  *
33015
33674
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 185 more
33016
33675
  *
33017
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33676
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33677
+ *
33678
+ * @experimental
33018
33679
  */
33019
33680
  "row-rule"?: PropertyInputValue<TValueMap, Property.RowRule<TLength>, PropertyHyphenRelatedNames["row-rule"]> | undefined;
33020
33681
  /**
33682
+ * ❌ Baseline: Not widely available
33021
33683
  *
33022
33684
  * 🔑 Values: `intersection` | `none` | `normal`
33023
33685
  *
33024
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33686
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33687
+ *
33688
+ * @experimental
33025
33689
  */
33026
33690
  "row-rule-break"?: PropertyInputValue<TValueMap, Property.RowRuleBreak, PropertyHyphenRelatedNames["row-rule-break"]> | undefined;
33027
33691
  /**
33692
+ * ❌ Baseline: Not widely available
33028
33693
  *
33029
33694
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 172 more
33030
33695
  *
33031
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33696
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33697
+ *
33698
+ * @experimental
33032
33699
  */
33033
33700
  "row-rule-color"?: PropertyInputValue<TValueMap, Property.RowRuleColor, PropertyHyphenRelatedNames["row-rule-color"]> | undefined;
33034
33701
  /**
33702
+ * ❌ Baseline: Not widely available
33035
33703
  *
33036
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33704
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33705
+ *
33706
+ * @experimental
33037
33707
  */
33038
- "row-rule-inset"?: PropertyInputValue<TValueMap, Property.RowRuleInset<TLength>, PropertyHyphenRelatedNames["row-rule-inset"]> | undefined;
33708
+ "row-rule-inset"?: PropertyInputValue<TValueMap, Property.RowRuleInset, PropertyHyphenRelatedNames["row-rule-inset"]> | undefined;
33039
33709
  /**
33710
+ * ❌ Baseline: Not widely available
33040
33711
  *
33041
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33712
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33713
+ *
33714
+ * @experimental
33042
33715
  */
33043
- "row-rule-inset-cap"?: PropertyInputValue<TValueMap, Property.RowRuleInsetCap<TLength>, PropertyHyphenRelatedNames["row-rule-inset-cap"]> | undefined;
33716
+ "row-rule-inset-cap"?: PropertyInputValue<TValueMap, Property.RowRuleInsetCap, PropertyHyphenRelatedNames["row-rule-inset-cap"]> | undefined;
33044
33717
  /**
33718
+ * ❌ Baseline: Not widely available
33045
33719
  *
33046
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
33720
+ * 🔑 Values: `overlap-join`
33721
+ *
33722
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
33723
+ *
33724
+ * @experimental
33047
33725
  */
33048
33726
  "row-rule-inset-cap-end"?: PropertyInputValue<TValueMap, Property.RowRuleInsetCapEnd<TLength>, PropertyHyphenRelatedNames["row-rule-inset-cap-end"]> | undefined;
33049
33727
  /**
33728
+ * ❌ Baseline: Not widely available
33050
33729
  *
33051
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
33730
+ * 🔑 Values: `overlap-join`
33731
+ *
33732
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
33733
+ *
33734
+ * @experimental
33052
33735
  */
33053
33736
  "row-rule-inset-cap-start"?: PropertyInputValue<TValueMap, Property.RowRuleInsetCapStart<TLength>, PropertyHyphenRelatedNames["row-rule-inset-cap-start"]> | undefined;
33054
33737
  /**
33738
+ * ❌ Baseline: Not widely available
33055
33739
  *
33056
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
33740
+ * 🔑 Values: `overlap-join`
33741
+ *
33742
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
33743
+ *
33744
+ * @experimental
33057
33745
  */
33058
33746
  "row-rule-inset-end"?: PropertyInputValue<TValueMap, Property.RowRuleInsetEnd<TLength>, PropertyHyphenRelatedNames["row-rule-inset-end"]> | undefined;
33059
33747
  /**
33748
+ * ❌ Baseline: Not widely available
33060
33749
  *
33061
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33750
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33751
+ *
33752
+ * @experimental
33062
33753
  */
33063
- "row-rule-inset-junction"?: PropertyInputValue<TValueMap, Property.RowRuleInsetJunction<TLength>, PropertyHyphenRelatedNames["row-rule-inset-junction"]> | undefined;
33754
+ "row-rule-inset-junction"?: PropertyInputValue<TValueMap, Property.RowRuleInsetJunction, PropertyHyphenRelatedNames["row-rule-inset-junction"]> | undefined;
33064
33755
  /**
33756
+ * ❌ Baseline: Not widely available
33065
33757
  *
33066
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
33758
+ * 🔑 Values: `overlap-join`
33759
+ *
33760
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
33761
+ *
33762
+ * @experimental
33067
33763
  */
33068
33764
  "row-rule-inset-junction-end"?: PropertyInputValue<TValueMap, Property.RowRuleInsetJunctionEnd<TLength>, PropertyHyphenRelatedNames["row-rule-inset-junction-end"]> | undefined;
33069
33765
  /**
33766
+ * ❌ Baseline: Not widely available
33070
33767
  *
33071
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
33768
+ * 🔑 Values: `overlap-join`
33769
+ *
33770
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
33771
+ *
33772
+ * @experimental
33072
33773
  */
33073
33774
  "row-rule-inset-junction-start"?: PropertyInputValue<TValueMap, Property.RowRuleInsetJunctionStart<TLength>, PropertyHyphenRelatedNames["row-rule-inset-junction-start"]> | undefined;
33074
33775
  /**
33776
+ * ❌ Baseline: Not widely available
33075
33777
  *
33076
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
33778
+ * 🔑 Values: `overlap-join`
33779
+ *
33780
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
33781
+ *
33782
+ * @experimental
33077
33783
  */
33078
33784
  "row-rule-inset-start"?: PropertyInputValue<TValueMap, Property.RowRuleInsetStart<TLength>, PropertyHyphenRelatedNames["row-rule-inset-start"]> | undefined;
33079
33785
  /**
33786
+ * ❌ Baseline: Not widely available
33080
33787
  *
33081
33788
  * 🔑 Values: `dashed` | `dotted` | `double` | `groove` | `hidden` | `inset` | `none` | `outset` | `ridge` | `solid`
33082
33789
  *
33083
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33790
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33791
+ *
33792
+ * @experimental
33084
33793
  */
33085
33794
  "row-rule-style"?: PropertyInputValue<TValueMap, Property.RowRuleStyle, PropertyHyphenRelatedNames["row-rule-style"]> | undefined;
33086
33795
  /**
33796
+ * ❌ Baseline: Not widely available
33087
33797
  *
33088
33798
  * 🔑 Values: `all` | `around` | `between` | `normal`
33089
33799
  *
33090
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33800
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33801
+ *
33802
+ * @experimental
33091
33803
  */
33092
33804
  "row-rule-visibility-items"?: PropertyInputValue<TValueMap, Property.RowRuleVisibilityItems, PropertyHyphenRelatedNames["row-rule-visibility-items"]> | undefined;
33093
33805
  /**
33806
+ * ❌ Baseline: Not widely available
33094
33807
  *
33095
33808
  * 🔑 Values: `medium` | `thick` | `thin`
33096
33809
  *
33097
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33810
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33811
+ *
33812
+ * @experimental
33098
33813
  */
33099
33814
  "row-rule-width"?: PropertyInputValue<TValueMap, Property.RowRuleWidth<TLength>, PropertyHyphenRelatedNames["row-rule-width"]> | undefined;
33100
33815
  /**
@@ -33135,77 +33850,117 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
33135
33850
  */
33136
33851
  "ruby-position"?: PropertyInputValue<TValueMap, Property.RubyPosition, PropertyHyphenRelatedNames["ruby-position"]> | undefined;
33137
33852
  /**
33853
+ * ❌ Baseline: Not widely available
33138
33854
  *
33139
33855
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 185 more
33140
33856
  *
33141
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33857
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33858
+ *
33859
+ * @experimental
33142
33860
  */
33143
33861
  "rule"?: PropertyInputValue<TValueMap, Property.Rule<TLength>, PropertyHyphenRelatedNames["rule"]> | undefined;
33144
33862
  /**
33863
+ * ❌ Baseline: Not widely available
33145
33864
  *
33146
33865
  * 🔑 Values: `intersection` | `none` | `normal`
33147
33866
  *
33148
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33867
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33868
+ *
33869
+ * @experimental
33149
33870
  */
33150
33871
  "rule-break"?: PropertyInputValue<TValueMap, Property.RuleBreak, PropertyHyphenRelatedNames["rule-break"]> | undefined;
33151
33872
  /**
33873
+ * ❌ Baseline: Not widely available
33152
33874
  *
33153
33875
  * 🔑 Values: `AccentColor` | `AccentColorText` | `ActiveBorder` | `ActiveCaption` | `ActiveText` | `AppWorkspace` | `Background` | `ButtonBorder` | `ButtonFace` | `ButtonHighlight` | `ButtonShadow` | `ButtonText` | `Canvas` | `CanvasText` | `CaptionText` | `Field` | `FieldText` | `GrayText` | `Highlight` | `HighlightText`, ... and 172 more
33154
33876
  *
33155
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33877
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33878
+ *
33879
+ * @experimental
33156
33880
  */
33157
33881
  "rule-color"?: PropertyInputValue<TValueMap, Property.RuleColor, PropertyHyphenRelatedNames["rule-color"]> | undefined;
33158
33882
  /**
33883
+ * ❌ Baseline: Not widely available
33159
33884
  *
33160
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33885
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33886
+ *
33887
+ * @experimental
33161
33888
  */
33162
- "rule-inset"?: PropertyInputValue<TValueMap, Property.RuleInset<TLength>, PropertyHyphenRelatedNames["rule-inset"]> | undefined;
33889
+ "rule-inset"?: PropertyInputValue<TValueMap, Property.RuleInset, PropertyHyphenRelatedNames["rule-inset"]> | undefined;
33163
33890
  /**
33891
+ * ❌ Baseline: Not widely available
33164
33892
  *
33165
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33893
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33894
+ *
33895
+ * @experimental
33166
33896
  */
33167
- "rule-inset-cap"?: PropertyInputValue<TValueMap, Property.RuleInsetCap<TLength>, PropertyHyphenRelatedNames["rule-inset-cap"]> | undefined;
33897
+ "rule-inset-cap"?: PropertyInputValue<TValueMap, Property.RuleInsetCap, PropertyHyphenRelatedNames["rule-inset-cap"]> | undefined;
33168
33898
  /**
33899
+ * ❌ Baseline: Not widely available
33169
33900
  *
33170
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
33901
+ * 🔑 Values: `overlap-join`
33902
+ *
33903
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
33904
+ *
33905
+ * @experimental
33171
33906
  */
33172
33907
  "rule-inset-end"?: PropertyInputValue<TValueMap, Property.RuleInsetEnd<TLength>, PropertyHyphenRelatedNames["rule-inset-end"]> | undefined;
33173
33908
  /**
33909
+ * ❌ Baseline: Not widely available
33174
33910
  *
33175
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33911
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33912
+ *
33913
+ * @experimental
33176
33914
  */
33177
- "rule-inset-junction"?: PropertyInputValue<TValueMap, Property.RuleInsetJunction<TLength>, PropertyHyphenRelatedNames["rule-inset-junction"]> | undefined;
33915
+ "rule-inset-junction"?: PropertyInputValue<TValueMap, Property.RuleInsetJunction, PropertyHyphenRelatedNames["rule-inset-junction"]> | undefined;
33178
33916
  /**
33917
+ * ❌ Baseline: Not widely available
33179
33918
  *
33180
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
33919
+ * 🔑 Values: `overlap-join`
33920
+ *
33921
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features ✓
33922
+ *
33923
+ * @experimental
33181
33924
  */
33182
33925
  "rule-inset-start"?: PropertyInputValue<TValueMap, Property.RuleInsetStart<TLength>, PropertyHyphenRelatedNames["rule-inset-start"]> | undefined;
33183
33926
  /**
33927
+ * ❌ Baseline: Not widely available
33184
33928
  *
33185
33929
  * 🔑 Values: `column-over-row` | `row-over-column`
33186
33930
  *
33187
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33931
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33932
+ *
33933
+ * @experimental
33188
33934
  */
33189
33935
  "rule-overlap"?: PropertyInputValue<TValueMap, Property.RuleOverlap, PropertyHyphenRelatedNames["rule-overlap"]> | undefined;
33190
33936
  /**
33937
+ * ❌ Baseline: Not widely available
33191
33938
  *
33192
33939
  * 🔑 Values: `dashed` | `dotted` | `double` | `groove` | `hidden` | `inset` | `none` | `outset` | `ridge` | `solid`
33193
33940
  *
33194
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33941
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33942
+ *
33943
+ * @experimental
33195
33944
  */
33196
33945
  "rule-style"?: PropertyInputValue<TValueMap, Property.RuleStyle, PropertyHyphenRelatedNames["rule-style"]> | undefined;
33197
33946
  /**
33947
+ * ❌ Baseline: Not widely available
33198
33948
  *
33199
33949
  * 🔑 Values: `all` | `around` | `between` | `normal`
33200
33950
  *
33201
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33951
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33952
+ *
33953
+ * @experimental
33202
33954
  */
33203
33955
  "rule-visibility-items"?: PropertyInputValue<TValueMap, Property.RuleVisibilityItems, PropertyHyphenRelatedNames["rule-visibility-items"]> | undefined;
33204
33956
  /**
33957
+ * ❌ Baseline: Not widely available
33205
33958
  *
33206
33959
  * 🔑 Values: `medium` | `thick` | `thin`
33207
33960
  *
33208
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33961
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features
33962
+ *
33963
+ * @experimental
33209
33964
  */
33210
33965
  "rule-width"?: PropertyInputValue<TValueMap, Property.RuleWidth<TLength>, PropertyHyphenRelatedNames["rule-width"]> | undefined;
33211
33966
  /**
@@ -34144,7 +34899,9 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
34144
34899
  "text-emphasis-style"?: PropertyInputValue<TValueMap, Property.TextEmphasisStyle, PropertyHyphenRelatedNames["text-emphasis-style"]> | undefined;
34145
34900
  /**
34146
34901
  *
34147
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
34902
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD | web-features ✗
34903
+ *
34904
+ * @experimental
34148
34905
  */
34149
34906
  "text-fit"?: PropertyInputValue<TValueMap, Property.TextFit, PropertyHyphenRelatedNames["text-fit"]> | undefined;
34150
34907
  /**
@@ -34647,12 +35404,15 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
34647
35404
  */
34648
35405
  "view-transition-name"?: PropertyInputValue<TValueMap, Property.ViewTransitionName, PropertyHyphenRelatedNames["view-transition-name"]> | undefined;
34649
35406
  /**
35407
+ * ❌ Baseline: Not widely available
34650
35408
  *
34651
35409
  * 🔑 Values: `all` | `none`
34652
35410
  *
34653
- * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features
35411
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✓ | web-features
34654
35412
  *
34655
35413
  * @experimental
35414
+ *
35415
+ * @see https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-transition-scope
34656
35416
  */
34657
35417
  "view-transition-scope"?: PropertyInputValue<TValueMap, Property.ViewTransitionScope, PropertyHyphenRelatedNames["view-transition-scope"]> | undefined;
34658
35418
  /**
@@ -34770,6 +35530,13 @@ interface PropertiesHyphenInput<TValueMap = never, TLength = DefaultTLength, TTi
34770
35530
  * @see https://developer.mozilla.org/docs/Web/CSS/will-change
34771
35531
  */
34772
35532
  "will-change"?: PropertyInputValue<TValueMap, Property.WillChange, PropertyHyphenRelatedNames["will-change"]> | undefined;
35533
+ /**
35534
+ *
35535
+ * 🔑 Values: `move` | `none`
35536
+ *
35537
+ * 📦 Sources: webref ✓ | mdn-data ✗ | BCD ✗ | web-features ✗
35538
+ */
35539
+ "window-drag"?: PropertyInputValue<TValueMap, Property.WindowDrag, PropertyHyphenRelatedNames["window-drag"]> | undefined;
34773
35540
  /**
34774
35541
  * ✅ Baseline: Widely available (since Jan 2018)
34775
35542
  *
@@ -34950,16 +35717,16 @@ declare namespace Property {
34950
35717
  type BookmarkLevel = Globals | "none";
34951
35718
  type BookmarkState = Globals | "open" | "closed";
34952
35719
  type Border<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
34953
- type BorderBlock<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
35720
+ type BorderBlock<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
34954
35721
  type BorderBlockClip<TLength = DefaultTLength> = Globals | "none" | TLength;
34955
35722
  type BorderBlockColor = Globals | DataType.Color;
34956
- type BorderBlockEnd<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
35723
+ type BorderBlockEnd<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
34957
35724
  type BorderBlockEndClip<TLength = DefaultTLength> = Globals | "none" | TLength;
34958
35725
  type BorderBlockEndColor = Globals | DataType.Color;
34959
35726
  type BorderBlockEndRadius<TLength = DefaultTLength> = Globals | TLength;
34960
35727
  type BorderBlockEndStyle = Globals | DataType.LineStyle;
34961
35728
  type BorderBlockEndWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
34962
- type BorderBlockStart<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
35729
+ type BorderBlockStart<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
34963
35730
  type BorderBlockStartClip<TLength = DefaultTLength> = Globals | "none" | TLength;
34964
35731
  type BorderBlockStartColor = Globals | DataType.Color;
34965
35732
  type BorderBlockStartRadius<TLength = DefaultTLength> = Globals | TLength;
@@ -34987,16 +35754,16 @@ declare namespace Property {
34987
35754
  type BorderImageSlice = Globals;
34988
35755
  type BorderImageSource = Globals | "none";
34989
35756
  type BorderImageWidth<TLength = DefaultTLength> = Globals | TLength;
34990
- type BorderInline<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
35757
+ type BorderInline<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
34991
35758
  type BorderInlineClip<TLength = DefaultTLength> = Globals | "none" | TLength;
34992
35759
  type BorderInlineColor = Globals | DataType.Color;
34993
- type BorderInlineEnd<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
35760
+ type BorderInlineEnd<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
34994
35761
  type BorderInlineEndClip<TLength = DefaultTLength> = Globals | "none" | TLength;
34995
35762
  type BorderInlineEndColor = Globals | DataType.Color;
34996
35763
  type BorderInlineEndRadius<TLength = DefaultTLength> = Globals | TLength;
34997
35764
  type BorderInlineEndStyle = Globals | DataType.LineStyle;
34998
35765
  type BorderInlineEndWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
34999
- type BorderInlineStart<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
35766
+ type BorderInlineStart<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
35000
35767
  type BorderInlineStartClip<TLength = DefaultTLength> = Globals | "none" | TLength;
35001
35768
  type BorderInlineStartColor = Globals | DataType.Color;
35002
35769
  type BorderInlineStartRadius<TLength = DefaultTLength> = Globals | TLength;
@@ -35075,15 +35842,15 @@ declare namespace Property {
35075
35842
  type ColumnRule<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
35076
35843
  type ColumnRuleBreak = Globals | "none" | "normal" | "intersection";
35077
35844
  type ColumnRuleColor = Globals | DataType.Color;
35078
- type ColumnRuleInset<TLength = DefaultTLength> = Globals | TLength;
35079
- type ColumnRuleInsetCap<TLength = DefaultTLength> = Globals | TLength;
35080
- type ColumnRuleInsetCapEnd<TLength = DefaultTLength> = Globals | TLength;
35081
- type ColumnRuleInsetCapStart<TLength = DefaultTLength> = Globals | TLength;
35082
- type ColumnRuleInsetEnd<TLength = DefaultTLength> = Globals | TLength;
35083
- type ColumnRuleInsetJunction<TLength = DefaultTLength> = Globals | TLength;
35084
- type ColumnRuleInsetJunctionEnd<TLength = DefaultTLength> = Globals | TLength;
35085
- type ColumnRuleInsetJunctionStart<TLength = DefaultTLength> = Globals | TLength;
35086
- type ColumnRuleInsetStart<TLength = DefaultTLength> = Globals | TLength;
35845
+ type ColumnRuleInset = Globals;
35846
+ type ColumnRuleInsetCap = Globals;
35847
+ type ColumnRuleInsetCapEnd<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
35848
+ type ColumnRuleInsetCapStart<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
35849
+ type ColumnRuleInsetEnd<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
35850
+ type ColumnRuleInsetJunction = Globals;
35851
+ type ColumnRuleInsetJunctionEnd<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
35852
+ type ColumnRuleInsetJunctionStart<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
35853
+ type ColumnRuleInsetStart<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
35087
35854
  type ColumnRuleStyle = Globals | DataType.LineStyle;
35088
35855
  type ColumnRuleVisibilityItems = Globals | "all" | "around" | "between" | "normal";
35089
35856
  type ColumnRuleWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
@@ -35173,6 +35940,7 @@ declare namespace Property {
35173
35940
  type FlexDirection = Globals | "row" | "row-reverse" | "column" | "column-reverse";
35174
35941
  type FlexFlow = Globals | "row" | "row-reverse" | "column" | "column-reverse" | "nowrap" | "wrap" | "wrap-reverse";
35175
35942
  type FlexGrow = Globals;
35943
+ type FlexLineCount = Globals;
35176
35944
  type FlexShrink = Globals;
35177
35945
  type FlexWrap = Globals | "nowrap" | "wrap" | "wrap-reverse";
35178
35946
  type Float = Globals | "left" | "right" | "none" | "inline-start" | "inline-end";
@@ -35470,7 +36238,7 @@ declare namespace Property {
35470
36238
  type PageBreakBefore = Globals | "auto" | "always" | "avoid" | "left" | "right" | "recto" | "verso";
35471
36239
  type PageBreakInside = Globals | "auto" | "avoid";
35472
36240
  type PaintOrder = Globals | "normal";
35473
- type PathLength = Globals | "none";
36241
+ type PathLength<TLength = DefaultTLength> = Globals | "none" | TLength;
35474
36242
  type Pause<TTime = DefaultTTime> = Globals | TTime | "none" | "x-weak" | "weak" | "medium" | "strong" | "x-strong";
35475
36243
  type PauseAfter<TTime = DefaultTTime> = Globals | TTime | "none" | "x-weak" | "weak" | "medium" | "strong" | "x-strong";
35476
36244
  type PauseBefore<TTime = DefaultTTime> = Globals | TTime | "none" | "x-weak" | "weak" | "medium" | "strong" | "x-strong";
@@ -35484,7 +36252,7 @@ declare namespace Property {
35484
36252
  type PointerTimelineAxis = Globals;
35485
36253
  type PointerTimelineName = Globals;
35486
36254
  type Position = Globals | "static" | "relative" | "absolute" | "sticky" | "fixed";
35487
- type PositionAnchor = Globals | "auto" | "none";
36255
+ type PositionAnchor = Globals | "normal" | "auto" | "none" | "match-parent";
35488
36256
  type PositionArea = Globals | "none" | DataType.PositionArea;
35489
36257
  type PositionTry = Globals | "normal" | DataType.TrySize | "none" | DataType.TryTactic | DataType.PositionArea;
35490
36258
  type PositionTryFallbacks = Globals | "none" | DataType.TryTactic | DataType.PositionArea;
@@ -35506,15 +36274,15 @@ declare namespace Property {
35506
36274
  type RowRule<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
35507
36275
  type RowRuleBreak = Globals | "none" | "normal" | "intersection";
35508
36276
  type RowRuleColor = Globals | DataType.Color;
35509
- type RowRuleInset<TLength = DefaultTLength> = Globals | TLength;
35510
- type RowRuleInsetCap<TLength = DefaultTLength> = Globals | TLength;
35511
- type RowRuleInsetCapEnd<TLength = DefaultTLength> = Globals | TLength;
35512
- type RowRuleInsetCapStart<TLength = DefaultTLength> = Globals | TLength;
35513
- type RowRuleInsetEnd<TLength = DefaultTLength> = Globals | TLength;
35514
- type RowRuleInsetJunction<TLength = DefaultTLength> = Globals | TLength;
35515
- type RowRuleInsetJunctionEnd<TLength = DefaultTLength> = Globals | TLength;
35516
- type RowRuleInsetJunctionStart<TLength = DefaultTLength> = Globals | TLength;
35517
- type RowRuleInsetStart<TLength = DefaultTLength> = Globals | TLength;
36277
+ type RowRuleInset = Globals;
36278
+ type RowRuleInsetCap = Globals;
36279
+ type RowRuleInsetCapEnd<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
36280
+ type RowRuleInsetCapStart<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
36281
+ type RowRuleInsetEnd<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
36282
+ type RowRuleInsetJunction = Globals;
36283
+ type RowRuleInsetJunctionEnd<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
36284
+ type RowRuleInsetJunctionStart<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
36285
+ type RowRuleInsetStart<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
35518
36286
  type RowRuleStyle = Globals | DataType.LineStyle;
35519
36287
  type RowRuleVisibilityItems = Globals | "all" | "around" | "between" | "normal";
35520
36288
  type RowRuleWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
@@ -35525,11 +36293,11 @@ declare namespace Property {
35525
36293
  type Rule<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
35526
36294
  type RuleBreak = Globals | "none" | "normal" | "intersection";
35527
36295
  type RuleColor = Globals | DataType.Color;
35528
- type RuleInset<TLength = DefaultTLength> = Globals | TLength;
35529
- type RuleInsetCap<TLength = DefaultTLength> = Globals | TLength;
35530
- type RuleInsetEnd<TLength = DefaultTLength> = Globals | TLength;
35531
- type RuleInsetJunction<TLength = DefaultTLength> = Globals | TLength;
35532
- type RuleInsetStart<TLength = DefaultTLength> = Globals | TLength;
36296
+ type RuleInset = Globals;
36297
+ type RuleInsetCap = Globals;
36298
+ type RuleInsetEnd<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
36299
+ type RuleInsetJunction = Globals;
36300
+ type RuleInsetStart<TLength = DefaultTLength> = Globals | TLength | "overlap-join";
35533
36301
  type RuleOverlap = Globals | "row-over-column" | "column-over-row";
35534
36302
  type RuleStyle = Globals | DataType.LineStyle;
35535
36303
  type RuleVisibilityItems = Globals | "all" | "around" | "between" | "normal";
@@ -35751,7 +36519,7 @@ declare namespace Property {
35751
36519
  type WebkitFlexFlow = Globals | "row" | "row-reverse" | "column" | "column-reverse" | "nowrap" | "wrap" | "wrap-reverse";
35752
36520
  type WebkitFlexGrow = Globals;
35753
36521
  type WebkitFlexShrink = Globals;
35754
- type WebkitFlexWrap = Globals | "nowrap" | "wrap" | "wrap-reverse";
36522
+ type WebkitFlexWrap = Globals | "nowrap";
35755
36523
  type WebkitJustifyContent = Globals | "normal" | DataType.ContentDistribution | DataType.ContentPosition;
35756
36524
  type WebkitLineClamp = Globals | "none";
35757
36525
  type WebkitMask<TLength = DefaultTLength> = Globals | DataType.Position<TLength> | DataType.RepeatStyle | DataType.VisualBox;
@@ -35800,6 +36568,7 @@ declare namespace Property {
35800
36568
  type Widows = Globals;
35801
36569
  type Width<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
35802
36570
  type WillChange = Globals | "auto" | DataType.AnimateableFeature;
36571
+ type WindowDrag = Globals | "none" | "move";
35803
36572
  type WordBreak = Globals | "normal" | "break-all" | "keep-all" | "break-word" | "auto-phrase";
35804
36573
  type WordSpaceTransform = Globals | "none";
35805
36574
  type WordSpacing<TLength = DefaultTLength> = Globals | "normal" | TLength;
@@ -36041,17 +36810,18 @@ type StyleItem = UnionString | ResolvedAutocomplete['Shortcut'] | StyleDefinitio
36041
36810
  */
36042
36811
  interface PikaAugment {}
36043
36812
  /**
36044
- * Internal alias for `PropertyValue<string>` used inside the engine where the generic parameter is always `string`.
36813
+ * Internal alias for `PropertyValue<string | number>` used inside the engine.
36045
36814
  * @internal
36046
36815
  *
36047
- * @remarks Avoids repeatedly writing `PropertyValue<string>` in internal utility signatures. Represents a single CSS value, a `[value, fallback[]]` tuple, `null`, or `undefined`.
36816
+ * @remarks Avoids repeatedly writing `PropertyValue<string | number>` in internal utility signatures. Represents a single CSS value, a `[value, fallback[]]` tuple, `null`, or `undefined`. Numbers are accepted because the csstype-based input types allow numeric values such as `0`; they are converted to strings during normalization.
36048
36817
  *
36049
36818
  * @example
36050
36819
  * ```ts
36051
36820
  * const val: InternalPropertyValue = ['red', ['blue', 'green']]
36821
+ * const zero: InternalPropertyValue = 0
36052
36822
  * ```
36053
36823
  */
36054
- type InternalPropertyValue = PropertyValue<string>;
36824
+ type InternalPropertyValue = PropertyValue<string | number>;
36055
36825
  /**
36056
36826
  * Internal alias for the resolved `Properties` type used inside the engine.
36057
36827
  * @internal
@@ -36355,9 +37125,35 @@ type ResolvedStyleItem = ResolveFrom<PikaAugment, 'StyleItem', any, InternalStyl
36355
37125
  */
36356
37126
  type PreflightDefinition = { [selector in UnionString | ResolvedSelector]?: ResolvedCSSProperties | PreflightDefinition };
36357
37127
  /**
36358
- * A function that receives the engine instance and formatting flag, returning CSS text or a `PreflightDefinition` object.
37128
+ * Per-render-pass context threaded through preflight invocations by `engine.renderPreflights()`.
37129
+ *
37130
+ * @remarks Each `renderPreflights` call creates its own context, so overlapping render passes never share memoization state. Preflight functions that invoke other preflights (e.g. the variables pruning preflight) must forward the context to `engine.invokePreflight()` to keep the "each preflight function runs exactly once per pass" invariant.
37131
+ *
37132
+ * @example
37133
+ * ```ts
37134
+ * const fn: PreflightFn = async (engine, isFormatted, ctx) => {
37135
+ * const other = await engine.invokePreflight(otherFn, isFormatted, ctx)
37136
+ * return ''
37137
+ * }
37138
+ * ```
37139
+ */
37140
+ interface PreflightContext {
37141
+ /**
37142
+ * Per-pass memoization of preflight function invocations.
37143
+ * @internal
37144
+ */
37145
+ invocations: Map<PreflightFn, Promise<string | PreflightDefinition>>;
37146
+ /**
37147
+ * Atomic style IDs considered "in use" for this render pass. When set, pruning preflights (variables, keyframes) only consider these atomic styles; when omitted, the whole store is considered.
37148
+ *
37149
+ * @default undefined
37150
+ */
37151
+ usedAtomicStyleIds?: ReadonlySet<string>;
37152
+ }
37153
+ /**
37154
+ * A function that receives the engine instance, formatting flag, and optional render-pass context, returning CSS text or a `PreflightDefinition` object.
36359
37155
  *
36360
- * @remarks Preflight functions are invoked at render time, after all atomic styles have been resolved. This allows them to inspect the engine store (e.g. which variables or keyframes are actually used) and prune unused declarations.
37156
+ * @remarks Preflight functions are invoked at render time, after all atomic styles have been resolved. This allows them to inspect the engine store (e.g. which variables or keyframes are actually used) and prune unused declarations. The optional `ctx` parameter is provided when the invocation happens inside a `renderPreflights` pass; forward it to `engine.invokePreflight()` when invoking other preflights.
36361
37157
  *
36362
37158
  * @example
36363
37159
  * ```ts
@@ -36366,7 +37162,7 @@ type PreflightDefinition = { [selector in UnionString | ResolvedSelector]?: Reso
36366
37162
  * }
36367
37163
  * ```
36368
37164
  */
36369
- type PreflightFn = (engine: Engine, isFormatted: boolean) => Awaitable<string | PreflightDefinition>;
37165
+ type PreflightFn = (engine: Engine, isFormatted: boolean, ctx?: PreflightContext) => Awaitable<string | PreflightDefinition>;
36370
37166
  /**
36371
37167
  * Normalized preflight entry after resolution, with an optional layer scope and a stable identifier for deduplication.
36372
37168
  *
@@ -36585,6 +37381,39 @@ declare const log: {
36585
37381
  setWarnFn: (fn: (prefix: string, ...args: unknown[]) => void) => void;
36586
37382
  setErrorFn: (fn: (prefix: string, ...args: unknown[]) => void) => void;
36587
37383
  };
37384
+ /**
37385
+ * Type-narrowing guard that returns `true` when the value is a plain object record (non-null, non-array object).
37386
+ * @internal
37387
+ *
37388
+ * @param value - The value to test.
37389
+ * @returns `true` if the value is an object that is neither `null` nor an array, narrowing the type to `Record<string, unknown>`.
37390
+ *
37391
+ * @remarks Used to distinguish nested definition objects (variables, design tokens) from scalar values and arrays while walking configuration trees.
37392
+ *
37393
+ * @example
37394
+ * ```ts
37395
+ * isPlainObjectRecord({ a: 1 }) // true
37396
+ * isPlainObjectRecord([1, 2]) // false
37397
+ * isPlainObjectRecord(null) // false
37398
+ * ```
37399
+ */
37400
+ declare function isPlainObjectRecord(value: unknown): value is Record<string, unknown>;
37401
+ /**
37402
+ * Escapes regular expression special characters in a string so it can be embedded in a `RegExp` source as a literal match.
37403
+ * @internal
37404
+ *
37405
+ * @param value - The literal text to escape.
37406
+ * @returns The input with every regex special character prefixed by a backslash.
37407
+ *
37408
+ * @remarks Runtime substitute for `RegExp.escape()` (available in Node.js >= 24 but not yet typed by TypeScript 5.9). Escapes all regex syntax characters plus `/` and `-`; the extra escapes are identity escapes in non-`u`-flag patterns, so the result is safe to embed in the non-unicode-mode regexes built by the engine and integrations.
37409
+ *
37410
+ * @example
37411
+ * ```ts
37412
+ * escapeRegExp('i-icon?') // 'i\\-icon\\?'
37413
+ * new RegExp(`^${escapeRegExp('a.b')}$`).test('a.b') // true
37414
+ * ```
37415
+ */
37416
+ declare function escapeRegExp(value: string): string;
36588
37417
  /**
36589
37418
  * Merges an `AutocompleteContribution` or `AutocompleteConfig` into the resolved autocomplete state, returning whether any entry changed.
36590
37419
  *
@@ -36640,4 +37469,4 @@ declare function renderCSSStyleBlocks(blocks: CSSStyleBlocks, isFormatted: boole
36640
37469
  */
36641
37470
  declare function defineEngineConfig<const T extends EngineConfig>(config: T): T;
36642
37471
  //#endregion
36643
- export { Arrayable, type AutocompleteConfig, type AutocompleteContribution, type AutocompletePatternsConfig, Awaitable, type CSSProperty, type CSSSelector, type CSSStyleBlockBody, type CSSStyleBlocks, type DefineAutocomplete, type Engine, type EngineConfig, type EnginePlugin, FromKebab, GetValue, IsEqual, IsNever, Keyframes, KeyframesConfig, KeyframesProgress, Nullish, type PikaAugment, type Preflight, type PreflightDefinition, type PreflightFn, type Properties, type PropertyValue, ResolveFrom, type ResolvedLayerName, type ResolvedPreflight, Selector, SelectorsConfig, Shortcut, ShortcutsConfig, Simplify, type StyleDefinition, type StyleDefinitionMap, type StyleItem, ToKebab, UnionString, UnionToIntersection, Variable, VariableAutocomplete, VariableObject, VariablesConfig, VariablesDefinition, appendAutocomplete, createEngine, createLogger, defineEngineConfig, defineEnginePlugin, extractUsedVarNames, extractUsedVarNamesFromPreflightResult, important, keyframes, log, normalizeVariableName, renderCSSStyleBlocks, resolveSelectorConfig, selectors$1 as selectors, shortcuts, sortLayerNames, variables };
37472
+ export { Arrayable, type AutocompleteConfig, type AutocompleteContribution, type AutocompletePatternsConfig, Awaitable, type CSSProperty, type CSSSelector, type CSSStyleBlockBody, type CSSStyleBlocks, type DefineAutocomplete, type Engine, type EngineConfig, type EnginePlugin, FromKebab, GetValue, ImportantConfig, IsEqual, IsNever, Keyframes, KeyframesConfig, KeyframesProgress, Nullish, type PikaAugment, type Preflight, type PreflightDefinition, type PreflightFn, type Properties, type PropertyValue, ResolveFrom, type ResolvedLayerName, type ResolvedPreflight, Selector, SelectorsConfig, Shortcut, ShortcutsConfig, Simplify, type StyleDefinition, type StyleDefinitionMap, type StyleItem, ToKebab, UnionString, UnionToIntersection, Variable, VariableAutocomplete, VariableObject, VariablesConfig, VariablesDefinition, appendAutocomplete, createEngine, createLogger, defineEngineConfig, defineEnginePlugin, escapeRegExp, extractUsedVarNames, extractUsedVarNamesFromPreflightResult, important, isPlainObjectRecord, keyframes, log, normalizeVariableName, renderCSSStyleBlocks, resolveSelectorConfig, selectors$1 as selectors, shortcuts, sortLayerNames, variables };