@types/web 0.0.244 → 0.0.245
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +213 -1
- package/package.json +1 -1
- package/ts5.5/index.d.ts +212 -1
- package/ts5.6/index.d.ts +213 -1
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.245 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.245.
|
package/index.d.ts
CHANGED
|
@@ -5402,6 +5402,39 @@ declare var CSSNumericValue: {
|
|
|
5402
5402
|
parse(cssText: string): CSSNumericValue;
|
|
5403
5403
|
};
|
|
5404
5404
|
|
|
5405
|
+
/**
|
|
5406
|
+
* The **`CSSPageDescriptors`** interface represents a CSS declaration block for an @page at-rule.
|
|
5407
|
+
*
|
|
5408
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors)
|
|
5409
|
+
*/
|
|
5410
|
+
interface CSSPageDescriptors extends CSSStyleDeclaration {
|
|
5411
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin) */
|
|
5412
|
+
margin: string;
|
|
5413
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-bottom) */
|
|
5414
|
+
"margin-bottom": string;
|
|
5415
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-left) */
|
|
5416
|
+
"margin-left": string;
|
|
5417
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-right) */
|
|
5418
|
+
"margin-right": string;
|
|
5419
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-top) */
|
|
5420
|
+
"margin-top": string;
|
|
5421
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#marginbottom) */
|
|
5422
|
+
marginBottom: string;
|
|
5423
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#marginleft) */
|
|
5424
|
+
marginLeft: string;
|
|
5425
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#marginright) */
|
|
5426
|
+
marginRight: string;
|
|
5427
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margintop) */
|
|
5428
|
+
marginTop: string;
|
|
5429
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#size) */
|
|
5430
|
+
size: string;
|
|
5431
|
+
}
|
|
5432
|
+
|
|
5433
|
+
declare var CSSPageDescriptors: {
|
|
5434
|
+
prototype: CSSPageDescriptors;
|
|
5435
|
+
new(): CSSPageDescriptors;
|
|
5436
|
+
};
|
|
5437
|
+
|
|
5405
5438
|
/**
|
|
5406
5439
|
* **`CSSPageRule`** represents a single CSS @page rule.
|
|
5407
5440
|
*
|
|
@@ -5419,7 +5452,7 @@ interface CSSPageRule extends CSSGroupingRule {
|
|
|
5419
5452
|
*
|
|
5420
5453
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageRule/style)
|
|
5421
5454
|
*/
|
|
5422
|
-
get style():
|
|
5455
|
+
get style(): CSSPageDescriptors;
|
|
5423
5456
|
set style(cssText: string);
|
|
5424
5457
|
}
|
|
5425
5458
|
|
|
@@ -5447,6 +5480,185 @@ declare var CSSPerspective: {
|
|
|
5447
5480
|
new(length: CSSPerspectiveValue): CSSPerspective;
|
|
5448
5481
|
};
|
|
5449
5482
|
|
|
5483
|
+
/**
|
|
5484
|
+
* The **`CSSPositionTryDescriptors`** interface defines properties that represent the list of CSS descriptors that can be set in the body of a @position-try at-rule.
|
|
5485
|
+
*
|
|
5486
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors)
|
|
5487
|
+
*/
|
|
5488
|
+
interface CSSPositionTryDescriptors extends CSSStyleDeclaration {
|
|
5489
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5490
|
+
"align-self": string;
|
|
5491
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5492
|
+
alignSelf: string;
|
|
5493
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5494
|
+
"block-size": string;
|
|
5495
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5496
|
+
blockSize: string;
|
|
5497
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5498
|
+
bottom: string;
|
|
5499
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5500
|
+
height: string;
|
|
5501
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5502
|
+
"inline-size": string;
|
|
5503
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5504
|
+
inlineSize: string;
|
|
5505
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5506
|
+
inset: string;
|
|
5507
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5508
|
+
"inset-block": string;
|
|
5509
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5510
|
+
"inset-block-end": string;
|
|
5511
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5512
|
+
"inset-block-start": string;
|
|
5513
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5514
|
+
"inset-inline": string;
|
|
5515
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5516
|
+
"inset-inline-end": string;
|
|
5517
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5518
|
+
"inset-inline-start": string;
|
|
5519
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5520
|
+
insetBlock: string;
|
|
5521
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5522
|
+
insetBlockEnd: string;
|
|
5523
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5524
|
+
insetBlockStart: string;
|
|
5525
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5526
|
+
insetInline: string;
|
|
5527
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5528
|
+
insetInlineEnd: string;
|
|
5529
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5530
|
+
insetInlineStart: string;
|
|
5531
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5532
|
+
"justify-self": string;
|
|
5533
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5534
|
+
justifySelf: string;
|
|
5535
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5536
|
+
left: string;
|
|
5537
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5538
|
+
margin: string;
|
|
5539
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5540
|
+
"margin-block": string;
|
|
5541
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5542
|
+
"margin-block-end": string;
|
|
5543
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5544
|
+
"margin-block-start": string;
|
|
5545
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5546
|
+
"margin-bottom": string;
|
|
5547
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5548
|
+
"margin-inline": string;
|
|
5549
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5550
|
+
"margin-inline-end": string;
|
|
5551
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5552
|
+
"margin-inline-start": string;
|
|
5553
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5554
|
+
"margin-left": string;
|
|
5555
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5556
|
+
"margin-right": string;
|
|
5557
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5558
|
+
"margin-top": string;
|
|
5559
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5560
|
+
marginBlock: string;
|
|
5561
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5562
|
+
marginBlockEnd: string;
|
|
5563
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5564
|
+
marginBlockStart: string;
|
|
5565
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5566
|
+
marginBottom: string;
|
|
5567
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5568
|
+
marginInline: string;
|
|
5569
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5570
|
+
marginInlineEnd: string;
|
|
5571
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5572
|
+
marginInlineStart: string;
|
|
5573
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5574
|
+
marginLeft: string;
|
|
5575
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5576
|
+
marginRight: string;
|
|
5577
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5578
|
+
marginTop: string;
|
|
5579
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5580
|
+
"max-block-size": string;
|
|
5581
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5582
|
+
"max-height": string;
|
|
5583
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5584
|
+
"max-inline-size": string;
|
|
5585
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5586
|
+
"max-width": string;
|
|
5587
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5588
|
+
maxBlockSize: string;
|
|
5589
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5590
|
+
maxHeight: string;
|
|
5591
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5592
|
+
maxInlineSize: string;
|
|
5593
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5594
|
+
maxWidth: string;
|
|
5595
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5596
|
+
"min-block-size": string;
|
|
5597
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5598
|
+
"min-height": string;
|
|
5599
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5600
|
+
"min-inline-size": string;
|
|
5601
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5602
|
+
"min-width": string;
|
|
5603
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5604
|
+
minBlockSize: string;
|
|
5605
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5606
|
+
minHeight: string;
|
|
5607
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5608
|
+
minInlineSize: string;
|
|
5609
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5610
|
+
minWidth: string;
|
|
5611
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5612
|
+
"place-self": string;
|
|
5613
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5614
|
+
placeSelf: string;
|
|
5615
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5616
|
+
"position-anchor": string;
|
|
5617
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5618
|
+
"position-area": string;
|
|
5619
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5620
|
+
positionAnchor: string;
|
|
5621
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5622
|
+
positionArea: string;
|
|
5623
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5624
|
+
right: string;
|
|
5625
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5626
|
+
top: string;
|
|
5627
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5628
|
+
width: string;
|
|
5629
|
+
}
|
|
5630
|
+
|
|
5631
|
+
declare var CSSPositionTryDescriptors: {
|
|
5632
|
+
prototype: CSSPositionTryDescriptors;
|
|
5633
|
+
new(): CSSPositionTryDescriptors;
|
|
5634
|
+
};
|
|
5635
|
+
|
|
5636
|
+
/**
|
|
5637
|
+
* The **`CSSPositionTryRule`** interface describes an object representing a @position-try at-rule.
|
|
5638
|
+
*
|
|
5639
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryRule)
|
|
5640
|
+
*/
|
|
5641
|
+
interface CSSPositionTryRule extends CSSRule {
|
|
5642
|
+
/**
|
|
5643
|
+
* The **`name`** read-only property of the CSSPositionTryRule interface represents the name of the position try fallback option specified by the `@position-try` at-rule's dashed-ident.
|
|
5644
|
+
*
|
|
5645
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryRule/name)
|
|
5646
|
+
*/
|
|
5647
|
+
readonly name: string;
|
|
5648
|
+
/**
|
|
5649
|
+
* The **`style`** read-only property of the CSSPositionTryRule interface returns a CSSPositionTryDescriptors object representing the declarations set in the body of the `@position-try` at-rule.
|
|
5650
|
+
*
|
|
5651
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryRule/style)
|
|
5652
|
+
*/
|
|
5653
|
+
get style(): CSSPositionTryDescriptors;
|
|
5654
|
+
set style(cssText: string);
|
|
5655
|
+
}
|
|
5656
|
+
|
|
5657
|
+
declare var CSSPositionTryRule: {
|
|
5658
|
+
prototype: CSSPositionTryRule;
|
|
5659
|
+
new(): CSSPositionTryRule;
|
|
5660
|
+
};
|
|
5661
|
+
|
|
5450
5662
|
/**
|
|
5451
5663
|
* The **`CSSPropertyRule`** interface of the CSS Properties and Values API represents a single CSS @property rule.
|
|
5452
5664
|
*
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -5397,6 +5397,39 @@ declare var CSSNumericValue: {
|
|
|
5397
5397
|
parse(cssText: string): CSSNumericValue;
|
|
5398
5398
|
};
|
|
5399
5399
|
|
|
5400
|
+
/**
|
|
5401
|
+
* The **`CSSPageDescriptors`** interface represents a CSS declaration block for an @page at-rule.
|
|
5402
|
+
*
|
|
5403
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors)
|
|
5404
|
+
*/
|
|
5405
|
+
interface CSSPageDescriptors extends CSSStyleDeclaration {
|
|
5406
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin) */
|
|
5407
|
+
margin: string;
|
|
5408
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-bottom) */
|
|
5409
|
+
"margin-bottom": string;
|
|
5410
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-left) */
|
|
5411
|
+
"margin-left": string;
|
|
5412
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-right) */
|
|
5413
|
+
"margin-right": string;
|
|
5414
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-top) */
|
|
5415
|
+
"margin-top": string;
|
|
5416
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#marginbottom) */
|
|
5417
|
+
marginBottom: string;
|
|
5418
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#marginleft) */
|
|
5419
|
+
marginLeft: string;
|
|
5420
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#marginright) */
|
|
5421
|
+
marginRight: string;
|
|
5422
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margintop) */
|
|
5423
|
+
marginTop: string;
|
|
5424
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#size) */
|
|
5425
|
+
size: string;
|
|
5426
|
+
}
|
|
5427
|
+
|
|
5428
|
+
declare var CSSPageDescriptors: {
|
|
5429
|
+
prototype: CSSPageDescriptors;
|
|
5430
|
+
new(): CSSPageDescriptors;
|
|
5431
|
+
};
|
|
5432
|
+
|
|
5400
5433
|
/**
|
|
5401
5434
|
* **`CSSPageRule`** represents a single CSS @page rule.
|
|
5402
5435
|
*
|
|
@@ -5414,7 +5447,7 @@ interface CSSPageRule extends CSSGroupingRule {
|
|
|
5414
5447
|
*
|
|
5415
5448
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageRule/style)
|
|
5416
5449
|
*/
|
|
5417
|
-
readonly style:
|
|
5450
|
+
readonly style: CSSPageDescriptors;
|
|
5418
5451
|
}
|
|
5419
5452
|
|
|
5420
5453
|
declare var CSSPageRule: {
|
|
@@ -5441,6 +5474,184 @@ declare var CSSPerspective: {
|
|
|
5441
5474
|
new(length: CSSPerspectiveValue): CSSPerspective;
|
|
5442
5475
|
};
|
|
5443
5476
|
|
|
5477
|
+
/**
|
|
5478
|
+
* The **`CSSPositionTryDescriptors`** interface defines properties that represent the list of CSS descriptors that can be set in the body of a @position-try at-rule.
|
|
5479
|
+
*
|
|
5480
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors)
|
|
5481
|
+
*/
|
|
5482
|
+
interface CSSPositionTryDescriptors extends CSSStyleDeclaration {
|
|
5483
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5484
|
+
"align-self": string;
|
|
5485
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5486
|
+
alignSelf: string;
|
|
5487
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5488
|
+
"block-size": string;
|
|
5489
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5490
|
+
blockSize: string;
|
|
5491
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5492
|
+
bottom: string;
|
|
5493
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5494
|
+
height: string;
|
|
5495
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5496
|
+
"inline-size": string;
|
|
5497
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5498
|
+
inlineSize: string;
|
|
5499
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5500
|
+
inset: string;
|
|
5501
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5502
|
+
"inset-block": string;
|
|
5503
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5504
|
+
"inset-block-end": string;
|
|
5505
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5506
|
+
"inset-block-start": string;
|
|
5507
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5508
|
+
"inset-inline": string;
|
|
5509
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5510
|
+
"inset-inline-end": string;
|
|
5511
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5512
|
+
"inset-inline-start": string;
|
|
5513
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5514
|
+
insetBlock: string;
|
|
5515
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5516
|
+
insetBlockEnd: string;
|
|
5517
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5518
|
+
insetBlockStart: string;
|
|
5519
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5520
|
+
insetInline: string;
|
|
5521
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5522
|
+
insetInlineEnd: string;
|
|
5523
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5524
|
+
insetInlineStart: string;
|
|
5525
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5526
|
+
"justify-self": string;
|
|
5527
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5528
|
+
justifySelf: string;
|
|
5529
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5530
|
+
left: string;
|
|
5531
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5532
|
+
margin: string;
|
|
5533
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5534
|
+
"margin-block": string;
|
|
5535
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5536
|
+
"margin-block-end": string;
|
|
5537
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5538
|
+
"margin-block-start": string;
|
|
5539
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5540
|
+
"margin-bottom": string;
|
|
5541
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5542
|
+
"margin-inline": string;
|
|
5543
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5544
|
+
"margin-inline-end": string;
|
|
5545
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5546
|
+
"margin-inline-start": string;
|
|
5547
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5548
|
+
"margin-left": string;
|
|
5549
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5550
|
+
"margin-right": string;
|
|
5551
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5552
|
+
"margin-top": string;
|
|
5553
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5554
|
+
marginBlock: string;
|
|
5555
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5556
|
+
marginBlockEnd: string;
|
|
5557
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5558
|
+
marginBlockStart: string;
|
|
5559
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5560
|
+
marginBottom: string;
|
|
5561
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5562
|
+
marginInline: string;
|
|
5563
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5564
|
+
marginInlineEnd: string;
|
|
5565
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5566
|
+
marginInlineStart: string;
|
|
5567
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5568
|
+
marginLeft: string;
|
|
5569
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5570
|
+
marginRight: string;
|
|
5571
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5572
|
+
marginTop: string;
|
|
5573
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5574
|
+
"max-block-size": string;
|
|
5575
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5576
|
+
"max-height": string;
|
|
5577
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5578
|
+
"max-inline-size": string;
|
|
5579
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5580
|
+
"max-width": string;
|
|
5581
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5582
|
+
maxBlockSize: string;
|
|
5583
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5584
|
+
maxHeight: string;
|
|
5585
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5586
|
+
maxInlineSize: string;
|
|
5587
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5588
|
+
maxWidth: string;
|
|
5589
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5590
|
+
"min-block-size": string;
|
|
5591
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5592
|
+
"min-height": string;
|
|
5593
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5594
|
+
"min-inline-size": string;
|
|
5595
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5596
|
+
"min-width": string;
|
|
5597
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5598
|
+
minBlockSize: string;
|
|
5599
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5600
|
+
minHeight: string;
|
|
5601
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5602
|
+
minInlineSize: string;
|
|
5603
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5604
|
+
minWidth: string;
|
|
5605
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5606
|
+
"place-self": string;
|
|
5607
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5608
|
+
placeSelf: string;
|
|
5609
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5610
|
+
"position-anchor": string;
|
|
5611
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5612
|
+
"position-area": string;
|
|
5613
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5614
|
+
positionAnchor: string;
|
|
5615
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5616
|
+
positionArea: string;
|
|
5617
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5618
|
+
right: string;
|
|
5619
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5620
|
+
top: string;
|
|
5621
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5622
|
+
width: string;
|
|
5623
|
+
}
|
|
5624
|
+
|
|
5625
|
+
declare var CSSPositionTryDescriptors: {
|
|
5626
|
+
prototype: CSSPositionTryDescriptors;
|
|
5627
|
+
new(): CSSPositionTryDescriptors;
|
|
5628
|
+
};
|
|
5629
|
+
|
|
5630
|
+
/**
|
|
5631
|
+
* The **`CSSPositionTryRule`** interface describes an object representing a @position-try at-rule.
|
|
5632
|
+
*
|
|
5633
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryRule)
|
|
5634
|
+
*/
|
|
5635
|
+
interface CSSPositionTryRule extends CSSRule {
|
|
5636
|
+
/**
|
|
5637
|
+
* The **`name`** read-only property of the CSSPositionTryRule interface represents the name of the position try fallback option specified by the `@position-try` at-rule's dashed-ident.
|
|
5638
|
+
*
|
|
5639
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryRule/name)
|
|
5640
|
+
*/
|
|
5641
|
+
readonly name: string;
|
|
5642
|
+
/**
|
|
5643
|
+
* The **`style`** read-only property of the CSSPositionTryRule interface returns a CSSPositionTryDescriptors object representing the declarations set in the body of the `@position-try` at-rule.
|
|
5644
|
+
*
|
|
5645
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryRule/style)
|
|
5646
|
+
*/
|
|
5647
|
+
readonly style: CSSPositionTryDescriptors;
|
|
5648
|
+
}
|
|
5649
|
+
|
|
5650
|
+
declare var CSSPositionTryRule: {
|
|
5651
|
+
prototype: CSSPositionTryRule;
|
|
5652
|
+
new(): CSSPositionTryRule;
|
|
5653
|
+
};
|
|
5654
|
+
|
|
5444
5655
|
/**
|
|
5445
5656
|
* The **`CSSPropertyRule`** interface of the CSS Properties and Values API represents a single CSS @property rule.
|
|
5446
5657
|
*
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -5402,6 +5402,39 @@ declare var CSSNumericValue: {
|
|
|
5402
5402
|
parse(cssText: string): CSSNumericValue;
|
|
5403
5403
|
};
|
|
5404
5404
|
|
|
5405
|
+
/**
|
|
5406
|
+
* The **`CSSPageDescriptors`** interface represents a CSS declaration block for an @page at-rule.
|
|
5407
|
+
*
|
|
5408
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors)
|
|
5409
|
+
*/
|
|
5410
|
+
interface CSSPageDescriptors extends CSSStyleDeclaration {
|
|
5411
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin) */
|
|
5412
|
+
margin: string;
|
|
5413
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-bottom) */
|
|
5414
|
+
"margin-bottom": string;
|
|
5415
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-left) */
|
|
5416
|
+
"margin-left": string;
|
|
5417
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-right) */
|
|
5418
|
+
"margin-right": string;
|
|
5419
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margin-top) */
|
|
5420
|
+
"margin-top": string;
|
|
5421
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#marginbottom) */
|
|
5422
|
+
marginBottom: string;
|
|
5423
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#marginleft) */
|
|
5424
|
+
marginLeft: string;
|
|
5425
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#marginright) */
|
|
5426
|
+
marginRight: string;
|
|
5427
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#margintop) */
|
|
5428
|
+
marginTop: string;
|
|
5429
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageDescriptors#size) */
|
|
5430
|
+
size: string;
|
|
5431
|
+
}
|
|
5432
|
+
|
|
5433
|
+
declare var CSSPageDescriptors: {
|
|
5434
|
+
prototype: CSSPageDescriptors;
|
|
5435
|
+
new(): CSSPageDescriptors;
|
|
5436
|
+
};
|
|
5437
|
+
|
|
5405
5438
|
/**
|
|
5406
5439
|
* **`CSSPageRule`** represents a single CSS @page rule.
|
|
5407
5440
|
*
|
|
@@ -5419,7 +5452,7 @@ interface CSSPageRule extends CSSGroupingRule {
|
|
|
5419
5452
|
*
|
|
5420
5453
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageRule/style)
|
|
5421
5454
|
*/
|
|
5422
|
-
get style():
|
|
5455
|
+
get style(): CSSPageDescriptors;
|
|
5423
5456
|
set style(cssText: string);
|
|
5424
5457
|
}
|
|
5425
5458
|
|
|
@@ -5447,6 +5480,185 @@ declare var CSSPerspective: {
|
|
|
5447
5480
|
new(length: CSSPerspectiveValue): CSSPerspective;
|
|
5448
5481
|
};
|
|
5449
5482
|
|
|
5483
|
+
/**
|
|
5484
|
+
* The **`CSSPositionTryDescriptors`** interface defines properties that represent the list of CSS descriptors that can be set in the body of a @position-try at-rule.
|
|
5485
|
+
*
|
|
5486
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors)
|
|
5487
|
+
*/
|
|
5488
|
+
interface CSSPositionTryDescriptors extends CSSStyleDeclaration {
|
|
5489
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5490
|
+
"align-self": string;
|
|
5491
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5492
|
+
alignSelf: string;
|
|
5493
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5494
|
+
"block-size": string;
|
|
5495
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5496
|
+
blockSize: string;
|
|
5497
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5498
|
+
bottom: string;
|
|
5499
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5500
|
+
height: string;
|
|
5501
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5502
|
+
"inline-size": string;
|
|
5503
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5504
|
+
inlineSize: string;
|
|
5505
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5506
|
+
inset: string;
|
|
5507
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5508
|
+
"inset-block": string;
|
|
5509
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5510
|
+
"inset-block-end": string;
|
|
5511
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5512
|
+
"inset-block-start": string;
|
|
5513
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5514
|
+
"inset-inline": string;
|
|
5515
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5516
|
+
"inset-inline-end": string;
|
|
5517
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5518
|
+
"inset-inline-start": string;
|
|
5519
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5520
|
+
insetBlock: string;
|
|
5521
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5522
|
+
insetBlockEnd: string;
|
|
5523
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5524
|
+
insetBlockStart: string;
|
|
5525
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5526
|
+
insetInline: string;
|
|
5527
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5528
|
+
insetInlineEnd: string;
|
|
5529
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5530
|
+
insetInlineStart: string;
|
|
5531
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5532
|
+
"justify-self": string;
|
|
5533
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5534
|
+
justifySelf: string;
|
|
5535
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5536
|
+
left: string;
|
|
5537
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5538
|
+
margin: string;
|
|
5539
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5540
|
+
"margin-block": string;
|
|
5541
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5542
|
+
"margin-block-end": string;
|
|
5543
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5544
|
+
"margin-block-start": string;
|
|
5545
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5546
|
+
"margin-bottom": string;
|
|
5547
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5548
|
+
"margin-inline": string;
|
|
5549
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5550
|
+
"margin-inline-end": string;
|
|
5551
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5552
|
+
"margin-inline-start": string;
|
|
5553
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5554
|
+
"margin-left": string;
|
|
5555
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5556
|
+
"margin-right": string;
|
|
5557
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5558
|
+
"margin-top": string;
|
|
5559
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5560
|
+
marginBlock: string;
|
|
5561
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5562
|
+
marginBlockEnd: string;
|
|
5563
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5564
|
+
marginBlockStart: string;
|
|
5565
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5566
|
+
marginBottom: string;
|
|
5567
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5568
|
+
marginInline: string;
|
|
5569
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5570
|
+
marginInlineEnd: string;
|
|
5571
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5572
|
+
marginInlineStart: string;
|
|
5573
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5574
|
+
marginLeft: string;
|
|
5575
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5576
|
+
marginRight: string;
|
|
5577
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5578
|
+
marginTop: string;
|
|
5579
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5580
|
+
"max-block-size": string;
|
|
5581
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5582
|
+
"max-height": string;
|
|
5583
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5584
|
+
"max-inline-size": string;
|
|
5585
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5586
|
+
"max-width": string;
|
|
5587
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5588
|
+
maxBlockSize: string;
|
|
5589
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5590
|
+
maxHeight: string;
|
|
5591
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5592
|
+
maxInlineSize: string;
|
|
5593
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5594
|
+
maxWidth: string;
|
|
5595
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5596
|
+
"min-block-size": string;
|
|
5597
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5598
|
+
"min-height": string;
|
|
5599
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5600
|
+
"min-inline-size": string;
|
|
5601
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5602
|
+
"min-width": string;
|
|
5603
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5604
|
+
minBlockSize: string;
|
|
5605
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5606
|
+
minHeight: string;
|
|
5607
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5608
|
+
minInlineSize: string;
|
|
5609
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5610
|
+
minWidth: string;
|
|
5611
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5612
|
+
"place-self": string;
|
|
5613
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5614
|
+
placeSelf: string;
|
|
5615
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5616
|
+
"position-anchor": string;
|
|
5617
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5618
|
+
"position-area": string;
|
|
5619
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5620
|
+
positionAnchor: string;
|
|
5621
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5622
|
+
positionArea: string;
|
|
5623
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5624
|
+
right: string;
|
|
5625
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5626
|
+
top: string;
|
|
5627
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryDescriptors#instance_properties) */
|
|
5628
|
+
width: string;
|
|
5629
|
+
}
|
|
5630
|
+
|
|
5631
|
+
declare var CSSPositionTryDescriptors: {
|
|
5632
|
+
prototype: CSSPositionTryDescriptors;
|
|
5633
|
+
new(): CSSPositionTryDescriptors;
|
|
5634
|
+
};
|
|
5635
|
+
|
|
5636
|
+
/**
|
|
5637
|
+
* The **`CSSPositionTryRule`** interface describes an object representing a @position-try at-rule.
|
|
5638
|
+
*
|
|
5639
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryRule)
|
|
5640
|
+
*/
|
|
5641
|
+
interface CSSPositionTryRule extends CSSRule {
|
|
5642
|
+
/**
|
|
5643
|
+
* The **`name`** read-only property of the CSSPositionTryRule interface represents the name of the position try fallback option specified by the `@position-try` at-rule's dashed-ident.
|
|
5644
|
+
*
|
|
5645
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryRule/name)
|
|
5646
|
+
*/
|
|
5647
|
+
readonly name: string;
|
|
5648
|
+
/**
|
|
5649
|
+
* The **`style`** read-only property of the CSSPositionTryRule interface returns a CSSPositionTryDescriptors object representing the declarations set in the body of the `@position-try` at-rule.
|
|
5650
|
+
*
|
|
5651
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryRule/style)
|
|
5652
|
+
*/
|
|
5653
|
+
get style(): CSSPositionTryDescriptors;
|
|
5654
|
+
set style(cssText: string);
|
|
5655
|
+
}
|
|
5656
|
+
|
|
5657
|
+
declare var CSSPositionTryRule: {
|
|
5658
|
+
prototype: CSSPositionTryRule;
|
|
5659
|
+
new(): CSSPositionTryRule;
|
|
5660
|
+
};
|
|
5661
|
+
|
|
5450
5662
|
/**
|
|
5451
5663
|
* The **`CSSPropertyRule`** interface of the CSS Properties and Values API represents a single CSS @property rule.
|
|
5452
5664
|
*
|