dothtml-interfaces 0.1.35 → 0.1.37
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/package.json +1 -1
- package/src/i-component.d.ts +4 -0
- package/src/i-dot-css.d.ts +705 -702
- package/src/i-dot.d.ts +265 -150
package/src/i-dot-css.d.ts
CHANGED
|
@@ -303,24 +303,26 @@ type FlexShorthand = BasicCommonValues|`${BasicCommonValues|number} ${BasicCommo
|
|
|
303
303
|
type AtRule = "@charset"|"@color-profile"|"@container"|"@counter-style"|"@font-face"|"@document"|"@font-feature-values"|"@font-palette-values"|"@import"|"@keyframes"|"@layer"|"@media"|"@namespace"|"@page"|"@property"|"@scope"|"@starting-style"|"@supports";
|
|
304
304
|
|
|
305
305
|
interface IDotcssProp{
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
306
|
+
|
|
307
|
+
// SPECIAL FUNCITONS COMMENTED OUT IN v6!
|
|
308
|
+
// angleToDeg(a: number|string);
|
|
309
|
+
// matrixMultiply3D(a: Array<number>, b: Array<number>): Array<number>;
|
|
310
|
+
// lengthToPx(l: string|number, prop?: LengthProp, element?: Element);
|
|
311
|
+
// angleSubtract(a, b);
|
|
312
|
+
// url(url: string);
|
|
313
|
+
// rgb(r: number, g: number, b: number);
|
|
314
|
+
// rgba(r: number, g: number, b: number, a: number);
|
|
315
|
+
// buildTransform();
|
|
316
|
+
// scopeToEl(el: HTMLElement);
|
|
317
|
+
// cacheScopedStaticStyles(el: HTMLElement);
|
|
318
|
+
// clearDynamicStyles(el: HTMLElement);
|
|
319
|
+
// unscope();
|
|
320
|
+
// formatNumberValue(value: number, unit?: string);
|
|
321
|
+
// hide(params?: HideParams);
|
|
322
|
+
// show(params?: ShowParams);
|
|
323
|
+
// fadeOut(duration: number, complete: Function);
|
|
324
|
+
// fadeIn(duration: number, complete: Function);
|
|
325
|
+
// END SPECIAL FUNCTIONS!
|
|
324
326
|
|
|
325
327
|
// Private.
|
|
326
328
|
//cacheScopedStaticStyles(el: HTMLElement);
|
|
@@ -344,680 +346,680 @@ interface IDotcssProp{
|
|
|
344
346
|
|
|
345
347
|
|
|
346
348
|
//color:
|
|
347
|
-
color:
|
|
348
|
-
backgroundColor:
|
|
349
|
-
borderBottomColor:
|
|
350
|
-
borderColor:
|
|
351
|
-
borderLeftColor:
|
|
352
|
-
borderRightColor:
|
|
353
|
-
borderTopColor:
|
|
354
|
-
textDecorationColor:
|
|
355
|
-
outlineColor:
|
|
356
|
-
columnRuleColor:
|
|
357
|
-
|
|
358
|
-
//length:
|
|
359
|
-
backgroundSize:
|
|
360
|
-
backgroundSizeCm:
|
|
361
|
-
backgroundSizeCh:
|
|
362
|
-
backgroundSizeEm:
|
|
363
|
-
backgroundSizeEx:
|
|
364
|
-
backgroundSizeIn:
|
|
365
|
-
backgroundSizeMm:
|
|
366
|
-
backgroundSizeP:
|
|
367
|
-
backgroundSizePc:
|
|
368
|
-
backgroundSizePt:
|
|
369
|
-
backgroundSizePx:
|
|
370
|
-
backgroundSizeRem:
|
|
371
|
-
backgroundSizeVh:
|
|
372
|
-
backgroundSizeVw:
|
|
373
|
-
backgroundSizeVMax:
|
|
374
|
-
backgroundSizeVMin:
|
|
375
|
-
|
|
376
|
-
blockSize:
|
|
377
|
-
blockSizeCm:
|
|
378
|
-
blockSizeCh:
|
|
379
|
-
blockSizeEm:
|
|
380
|
-
blockSizeEx:
|
|
381
|
-
blockSizeIn:
|
|
382
|
-
blockSizeMm:
|
|
383
|
-
blockSizeP:
|
|
384
|
-
blockSizePc:
|
|
385
|
-
blockSizePt:
|
|
386
|
-
blockSizePx:
|
|
387
|
-
blockSizeRem:
|
|
388
|
-
blockSizeVh:
|
|
389
|
-
blockSizeVw:
|
|
390
|
-
blockSizeVMax:
|
|
391
|
-
blockSizeVMin:
|
|
392
|
-
|
|
393
|
-
borderBottomLeftRadius:
|
|
394
|
-
borderBottomLeftRadiusCm:
|
|
395
|
-
borderBottomLeftRadiusCh:
|
|
396
|
-
borderBottomLeftRadiusEm:
|
|
397
|
-
borderBottomLeftRadiusEx:
|
|
398
|
-
borderBottomLeftRadiusIn:
|
|
399
|
-
borderBottomLeftRadiusMm:
|
|
400
|
-
borderBottomLeftRadiusP:
|
|
401
|
-
borderBottomLeftRadiusPc:
|
|
402
|
-
borderBottomLeftRadiusPt:
|
|
403
|
-
borderBottomLeftRadiusPx:
|
|
404
|
-
borderBottomLeftRadiusRem:
|
|
405
|
-
borderBottomLeftRadiusVh:
|
|
406
|
-
borderBottomLeftRadiusVw:
|
|
407
|
-
borderBottomLeftRadiusVMax:
|
|
408
|
-
borderBottomLeftRadiusVMin:
|
|
409
|
-
|
|
410
|
-
borderBottomRightRadius:
|
|
411
|
-
borderBottomRightRadiusCm:
|
|
412
|
-
borderBottomRightRadiusCh:
|
|
413
|
-
borderBottomRightRadiusEm:
|
|
414
|
-
borderBottomRightRadiusEx:
|
|
415
|
-
borderBottomRightRadiusIn:
|
|
416
|
-
borderBottomRightRadiusMm:
|
|
417
|
-
borderBottomRightRadiusP:
|
|
418
|
-
borderBottomRightRadiusPc:
|
|
419
|
-
borderBottomRightRadiusPt:
|
|
420
|
-
borderBottomRightRadiusPx:
|
|
421
|
-
borderBottomRightRadiusRem:
|
|
422
|
-
borderBottomRightRadiusVh:
|
|
423
|
-
borderBottomRightRadiusVw:
|
|
424
|
-
borderBottomRightRadiusVMax:
|
|
425
|
-
borderBottomRightRadiusVMin:
|
|
426
|
-
|
|
427
|
-
borderBottomWidth:
|
|
428
|
-
borderBottomWidthCm:
|
|
429
|
-
borderBottomWidthCh:
|
|
430
|
-
borderBottomWidthEm:
|
|
431
|
-
borderBottomWidthEx:
|
|
432
|
-
borderBottomWidthIn:
|
|
433
|
-
borderBottomWidthMm:
|
|
434
|
-
borderBottomWidthP:
|
|
435
|
-
borderBottomWidthPc:
|
|
436
|
-
borderBottomWidthPt:
|
|
437
|
-
borderBottomWidthPx:
|
|
438
|
-
borderBottomWidthRem:
|
|
439
|
-
borderBottomWidthVh:
|
|
440
|
-
borderBottomWidthVw:
|
|
441
|
-
borderBottomWidthVMax:
|
|
442
|
-
borderBottomWidthVMin:
|
|
443
|
-
|
|
444
|
-
borderImageWidth:
|
|
445
|
-
borderImageWidthCm:
|
|
446
|
-
borderImageWidthCh:
|
|
447
|
-
borderImageWidthEm:
|
|
448
|
-
borderImageWidthEx:
|
|
449
|
-
borderImageWidthIn:
|
|
450
|
-
borderImageWidthMm:
|
|
451
|
-
borderImageWidthP:
|
|
452
|
-
borderImageWidthPc:
|
|
453
|
-
borderImageWidthPt:
|
|
454
|
-
borderImageWidthPx:
|
|
455
|
-
borderImageWidthRem:
|
|
456
|
-
borderImageWidthVh:
|
|
457
|
-
borderImageWidthVw:
|
|
458
|
-
borderImageWidthVMax:
|
|
459
|
-
borderImageWidthVMin:
|
|
460
|
-
|
|
461
|
-
borderLeftWidth:
|
|
462
|
-
borderLeftWidthCm:
|
|
463
|
-
borderLeftWidthCh:
|
|
464
|
-
borderLeftWidthEm:
|
|
465
|
-
borderLeftWidthEx:
|
|
466
|
-
borderLeftWidthIn:
|
|
467
|
-
borderLeftWidthMm:
|
|
468
|
-
borderLeftWidthP:
|
|
469
|
-
borderLeftWidthPc:
|
|
470
|
-
borderLeftWidthPt:
|
|
471
|
-
borderLeftWidthPx:
|
|
472
|
-
borderLeftWidthRem:
|
|
473
|
-
borderLeftWidthVh:
|
|
474
|
-
borderLeftWidthVw:
|
|
475
|
-
borderLeftWidthVMax:
|
|
476
|
-
borderLeftWidthVMin:
|
|
477
|
-
|
|
478
|
-
borderRadius:
|
|
479
|
-
borderRadiusCm:
|
|
480
|
-
borderRadiusCh:
|
|
481
|
-
borderRadiusEm:
|
|
482
|
-
borderRadiusEx:
|
|
483
|
-
borderRadiusIn:
|
|
484
|
-
borderRadiusMm:
|
|
485
|
-
borderRadiusP:
|
|
486
|
-
borderRadiusPc:
|
|
487
|
-
borderRadiusPt:
|
|
488
|
-
borderRadiusPx:
|
|
489
|
-
borderRadiusRem:
|
|
490
|
-
borderRadiusVh:
|
|
491
|
-
borderRadiusVw:
|
|
492
|
-
borderRadiusVMax:
|
|
493
|
-
borderRadiusVMin:
|
|
494
|
-
|
|
495
|
-
borderRightWidth:
|
|
496
|
-
borderRightWidthCm:
|
|
497
|
-
borderRightWidthCh:
|
|
498
|
-
borderRightWidthEm:
|
|
499
|
-
borderRightWidthEx:
|
|
500
|
-
borderRightWidthIn:
|
|
501
|
-
borderRightWidthMm:
|
|
502
|
-
borderRightWidthP:
|
|
503
|
-
borderRightWidthPc:
|
|
504
|
-
borderRightWidthPt:
|
|
505
|
-
borderRightWidthPx:
|
|
506
|
-
borderRightWidthRem:
|
|
507
|
-
borderRightWidthVh:
|
|
508
|
-
borderRightWidthVw:
|
|
509
|
-
borderRightWidthVMax:
|
|
510
|
-
borderRightWidthVMin:
|
|
511
|
-
|
|
512
|
-
borderTopLeftRadius:
|
|
513
|
-
borderTopLeftRadiusCm:
|
|
514
|
-
borderTopLeftRadiusCh:
|
|
515
|
-
borderTopLeftRadiusEm:
|
|
516
|
-
borderTopLeftRadiusEx:
|
|
517
|
-
borderTopLeftRadiusIn:
|
|
518
|
-
borderTopLeftRadiusMm:
|
|
519
|
-
borderTopLeftRadiusP:
|
|
520
|
-
borderTopLeftRadiusPc:
|
|
521
|
-
borderTopLeftRadiusPt:
|
|
522
|
-
borderTopLeftRadiusPx:
|
|
523
|
-
borderTopLeftRadiusRem:
|
|
524
|
-
borderTopLeftRadiusVh:
|
|
525
|
-
borderTopLeftRadiusVw:
|
|
526
|
-
borderTopLeftRadiusVMax:
|
|
527
|
-
borderTopLeftRadiusVMin:
|
|
528
|
-
|
|
529
|
-
borderTopRightRadius:
|
|
530
|
-
borderTopRightRadiusCm:
|
|
531
|
-
borderTopRightRadiusCh:
|
|
532
|
-
borderTopRightRadiusEm:
|
|
533
|
-
borderTopRightRadiusEx:
|
|
534
|
-
borderTopRightRadiusIn:
|
|
535
|
-
borderTopRightRadiusMm:
|
|
536
|
-
borderTopRightRadiusP:
|
|
537
|
-
borderTopRightRadiusPc:
|
|
538
|
-
borderTopRightRadiusPt:
|
|
539
|
-
borderTopRightRadiusPx:
|
|
540
|
-
borderTopRightRadiusRem:
|
|
541
|
-
borderTopRightRadiusVh:
|
|
542
|
-
borderTopRightRadiusVw:
|
|
543
|
-
borderTopRightRadiusVMax:
|
|
544
|
-
borderTopRightRadiusVMin:
|
|
545
|
-
|
|
546
|
-
borderTopWidth:
|
|
547
|
-
borderTopWidthCm:
|
|
548
|
-
borderTopWidthCh:
|
|
549
|
-
borderTopWidthEm:
|
|
550
|
-
borderTopWidthEx:
|
|
551
|
-
borderTopWidthIn:
|
|
552
|
-
borderTopWidthMm:
|
|
553
|
-
borderTopWidthP:
|
|
554
|
-
borderTopWidthPc:
|
|
555
|
-
borderTopWidthPt:
|
|
556
|
-
borderTopWidthPx:
|
|
557
|
-
borderTopWidthRem:
|
|
558
|
-
borderTopWidthVh:
|
|
559
|
-
borderTopWidthVw:
|
|
560
|
-
borderTopWidthVMax:
|
|
561
|
-
borderTopWidthVMin:
|
|
562
|
-
|
|
563
|
-
borderWidth:
|
|
564
|
-
borderWidthCm:
|
|
565
|
-
borderWidthCh:
|
|
566
|
-
borderWidthEm:
|
|
567
|
-
borderWidthEx:
|
|
568
|
-
borderWidthIn:
|
|
569
|
-
borderWidthMm:
|
|
570
|
-
borderWidthP:
|
|
571
|
-
borderWidthPc:
|
|
572
|
-
borderWidthPt:
|
|
573
|
-
borderWidthPx:
|
|
574
|
-
borderWidthRem:
|
|
575
|
-
borderWidthVh:
|
|
576
|
-
borderWidthVw:
|
|
577
|
-
borderWidthVMax:
|
|
578
|
-
borderWidthVMin:
|
|
579
|
-
|
|
580
|
-
bottom:
|
|
581
|
-
bottomCm:
|
|
582
|
-
bottomCh:
|
|
583
|
-
bottomEm:
|
|
584
|
-
bottomEx:
|
|
585
|
-
bottomIn:
|
|
586
|
-
bottomMm:
|
|
587
|
-
bottomP:
|
|
588
|
-
bottomPc:
|
|
589
|
-
bottomPt:
|
|
590
|
-
bottomPx:
|
|
591
|
-
bottomRem:
|
|
592
|
-
bottomVh:
|
|
593
|
-
bottomVw:
|
|
594
|
-
bottomVMax:
|
|
595
|
-
bottomVMin:
|
|
596
|
-
|
|
597
|
-
gap:
|
|
598
|
-
gapCm:
|
|
599
|
-
gapCh:
|
|
600
|
-
gapEm:
|
|
601
|
-
gapEx:
|
|
602
|
-
gapIn:
|
|
603
|
-
gapMm:
|
|
604
|
-
gapP:
|
|
605
|
-
gapPc:
|
|
606
|
-
gapPt:
|
|
607
|
-
gapPx:
|
|
608
|
-
gapRem:
|
|
609
|
-
gapVh:
|
|
610
|
-
gapVw:
|
|
611
|
-
gapVMax:
|
|
612
|
-
gapVMin:
|
|
613
|
-
|
|
614
|
-
height:
|
|
615
|
-
heightCm:
|
|
616
|
-
heightCh:
|
|
617
|
-
heightEm:
|
|
618
|
-
heightEx:
|
|
619
|
-
heightIn:
|
|
620
|
-
heightMm:
|
|
621
|
-
heightP:
|
|
622
|
-
heightPc:
|
|
623
|
-
heightPt:
|
|
624
|
-
heightPx:
|
|
625
|
-
heightRem:
|
|
626
|
-
heightVh:
|
|
627
|
-
heightVw:
|
|
628
|
-
heightVMax:
|
|
629
|
-
heightVMin:
|
|
630
|
-
|
|
631
|
-
left:
|
|
632
|
-
leftCm:
|
|
633
|
-
leftCh:
|
|
634
|
-
leftEm:
|
|
635
|
-
leftEx:
|
|
636
|
-
leftIn:
|
|
637
|
-
leftMm:
|
|
638
|
-
leftP:
|
|
639
|
-
leftPc:
|
|
640
|
-
leftPt:
|
|
641
|
-
leftPx:
|
|
642
|
-
leftRem:
|
|
643
|
-
leftVh:
|
|
644
|
-
leftVw:
|
|
645
|
-
leftVMax:
|
|
646
|
-
leftVMin:
|
|
647
|
-
|
|
648
|
-
margin:
|
|
649
|
-
marginCm:
|
|
650
|
-
marginCh:
|
|
651
|
-
marginEm:
|
|
652
|
-
marginEx:
|
|
653
|
-
marginIn:
|
|
654
|
-
marginMm:
|
|
655
|
-
marginP:
|
|
656
|
-
marginPc:
|
|
657
|
-
marginPt:
|
|
658
|
-
marginPx:
|
|
659
|
-
marginRem:
|
|
660
|
-
marginVh:
|
|
661
|
-
marginVw:
|
|
662
|
-
marginVMax:
|
|
663
|
-
marginVMin:
|
|
664
|
-
|
|
665
|
-
marginBottom:
|
|
666
|
-
marginBottomCm:
|
|
667
|
-
marginBottomCh:
|
|
668
|
-
marginBottomEm:
|
|
669
|
-
marginBottomEx:
|
|
670
|
-
marginBottomIn:
|
|
671
|
-
marginBottomMm:
|
|
672
|
-
marginBottomP:
|
|
673
|
-
marginBottomPc:
|
|
674
|
-
marginBottomPt:
|
|
675
|
-
marginBottomPx:
|
|
676
|
-
marginBottomRem:
|
|
677
|
-
marginBottomVh:
|
|
678
|
-
marginBottomVw:
|
|
679
|
-
marginBottomVMax:
|
|
680
|
-
marginBottomVMin:
|
|
681
|
-
|
|
682
|
-
marginLeft:
|
|
683
|
-
marginLeftCm:
|
|
684
|
-
marginLeftCh:
|
|
685
|
-
marginLeftEm:
|
|
686
|
-
marginLeftEx:
|
|
687
|
-
marginLeftIn:
|
|
688
|
-
marginLeftMm:
|
|
689
|
-
marginLeftP:
|
|
690
|
-
marginLeftPc:
|
|
691
|
-
marginLeftPt:
|
|
692
|
-
marginLeftPx:
|
|
693
|
-
marginLeftRem:
|
|
694
|
-
marginLeftVh:
|
|
695
|
-
marginLeftVw:
|
|
696
|
-
marginLeftVMax:
|
|
697
|
-
marginLeftVMin:
|
|
698
|
-
|
|
699
|
-
marginRight:
|
|
700
|
-
marginRightCm:
|
|
701
|
-
marginRightCh:
|
|
702
|
-
marginRightEm:
|
|
703
|
-
marginRightEx:
|
|
704
|
-
marginRightIn:
|
|
705
|
-
marginRightMm:
|
|
706
|
-
marginRightP:
|
|
707
|
-
marginRightPc:
|
|
708
|
-
marginRightPt:
|
|
709
|
-
marginRightPx:
|
|
710
|
-
marginRightRem:
|
|
711
|
-
marginRightVh:
|
|
712
|
-
marginRightVw:
|
|
713
|
-
marginRightVMax:
|
|
714
|
-
marginRightVMin:
|
|
715
|
-
|
|
716
|
-
marginTop:
|
|
717
|
-
marginTopCm:
|
|
718
|
-
marginTopCh:
|
|
719
|
-
marginTopEm:
|
|
720
|
-
marginTopEx:
|
|
721
|
-
marginTopIn:
|
|
722
|
-
marginTopMm:
|
|
723
|
-
marginTopP:
|
|
724
|
-
marginTopPc:
|
|
725
|
-
marginTopPt:
|
|
726
|
-
marginTopPx:
|
|
727
|
-
marginTopRem:
|
|
728
|
-
marginTopVh:
|
|
729
|
-
marginTopVw:
|
|
730
|
-
marginTopVMax:
|
|
731
|
-
marginTopVMin:
|
|
732
|
-
|
|
733
|
-
maxHeight:
|
|
734
|
-
maxHeightCm:
|
|
735
|
-
maxHeightCh:
|
|
736
|
-
maxHeightEm:
|
|
737
|
-
maxHeightEx:
|
|
738
|
-
maxHeightIn:
|
|
739
|
-
maxHeightMm:
|
|
740
|
-
maxHeightP:
|
|
741
|
-
maxHeightPc:
|
|
742
|
-
maxHeightPt:
|
|
743
|
-
maxHeightPx:
|
|
744
|
-
maxHeightRem:
|
|
745
|
-
maxHeightVh:
|
|
746
|
-
maxHeightVw:
|
|
747
|
-
maxHeightVMax:
|
|
748
|
-
maxHeightVMin:
|
|
749
|
-
|
|
750
|
-
maxWidth:
|
|
751
|
-
maxWidthCm:
|
|
752
|
-
maxWidthCh:
|
|
753
|
-
maxWidthEm:
|
|
754
|
-
maxWidthEx:
|
|
755
|
-
maxWidthIn:
|
|
756
|
-
maxWidthMm:
|
|
757
|
-
maxWidthP:
|
|
758
|
-
maxWidthPc:
|
|
759
|
-
maxWidthPt:
|
|
760
|
-
maxWidthPx:
|
|
761
|
-
maxWidthRem:
|
|
762
|
-
maxWidthVh:
|
|
763
|
-
maxWidthVw:
|
|
764
|
-
maxWidthVMax:
|
|
765
|
-
maxWidthVMin:
|
|
766
|
-
|
|
767
|
-
minHeight:
|
|
768
|
-
minHeightCm:
|
|
769
|
-
minHeightCh:
|
|
770
|
-
minHeightEm:
|
|
771
|
-
minHeightEx:
|
|
772
|
-
minHeightIn:
|
|
773
|
-
minHeightMm:
|
|
774
|
-
minHeightP:
|
|
775
|
-
minHeightPc:
|
|
776
|
-
minHeightPt:
|
|
777
|
-
minHeightPx:
|
|
778
|
-
minHeightRem:
|
|
779
|
-
minHeightVh:
|
|
780
|
-
minHeightVw:
|
|
781
|
-
minHeightVMax:
|
|
782
|
-
minHeightVMin:
|
|
783
|
-
|
|
784
|
-
minWidth:
|
|
785
|
-
minWidthCm:
|
|
786
|
-
minWidthCh:
|
|
787
|
-
minWidthEm:
|
|
788
|
-
minWidthEx:
|
|
789
|
-
minWidthIn:
|
|
790
|
-
minWidthMm:
|
|
791
|
-
minWidthP:
|
|
792
|
-
minWidthPc:
|
|
793
|
-
minWidthPt:
|
|
794
|
-
minWidthPx:
|
|
795
|
-
minWidthRem:
|
|
796
|
-
minWidthVh:
|
|
797
|
-
minWidthVw:
|
|
798
|
-
minWidthVMax:
|
|
799
|
-
minWidthVMin:
|
|
800
|
-
|
|
801
|
-
outlineOffset:
|
|
802
|
-
outlineOffsetCm:
|
|
803
|
-
outlineOffsetCh:
|
|
804
|
-
outlineOffsetEm:
|
|
805
|
-
outlineOffsetEx:
|
|
806
|
-
outlineOffsetIn:
|
|
807
|
-
outlineOffsetMm:
|
|
808
|
-
outlineOffsetP:
|
|
809
|
-
outlineOffsetPc:
|
|
810
|
-
outlineOffsetPt:
|
|
811
|
-
outlineOffsetPx:
|
|
812
|
-
outlineOffsetRem:
|
|
813
|
-
outlineOffsetVh:
|
|
814
|
-
outlineOffsetVw:
|
|
815
|
-
outlineOffsetVMax:
|
|
816
|
-
outlineOffsetVMin:
|
|
817
|
-
|
|
818
|
-
padding:
|
|
819
|
-
paddingCm:
|
|
820
|
-
paddingCh:
|
|
821
|
-
paddingEm:
|
|
822
|
-
paddingEx:
|
|
823
|
-
paddingIn:
|
|
824
|
-
paddingMm:
|
|
825
|
-
paddingP:
|
|
826
|
-
paddingPc:
|
|
827
|
-
paddingPt:
|
|
828
|
-
paddingPx:
|
|
829
|
-
paddingRem:
|
|
830
|
-
paddingVh:
|
|
831
|
-
paddingVw:
|
|
832
|
-
paddingVMax:
|
|
833
|
-
paddingVMin:
|
|
834
|
-
|
|
835
|
-
paddingBottom:
|
|
836
|
-
paddingBottomCm:
|
|
837
|
-
paddingBottomCh:
|
|
838
|
-
paddingBottomEm:
|
|
839
|
-
paddingBottomEx:
|
|
840
|
-
paddingBottomIn:
|
|
841
|
-
paddingBottomMm:
|
|
842
|
-
paddingBottomP:
|
|
843
|
-
paddingBottomPc:
|
|
844
|
-
paddingBottomPt:
|
|
845
|
-
paddingBottomPx:
|
|
846
|
-
paddingBottomRem:
|
|
847
|
-
paddingBottomVh:
|
|
848
|
-
paddingBottomVw:
|
|
849
|
-
paddingBottomVMax:
|
|
850
|
-
paddingBottomVMin:
|
|
851
|
-
|
|
852
|
-
paddingLeft:
|
|
853
|
-
paddingLeftCm:
|
|
854
|
-
paddingLeftCh:
|
|
855
|
-
paddingLeftEm:
|
|
856
|
-
paddingLeftEx:
|
|
857
|
-
paddingLeftIn:
|
|
858
|
-
paddingLeftMm:
|
|
859
|
-
paddingLeftP:
|
|
860
|
-
paddingLeftPc:
|
|
861
|
-
paddingLeftPt:
|
|
862
|
-
paddingLeftPx:
|
|
863
|
-
paddingLeftRem:
|
|
864
|
-
paddingLeftVh:
|
|
865
|
-
paddingLeftVw:
|
|
866
|
-
paddingLeftVMax:
|
|
867
|
-
paddingLeftVMin:
|
|
868
|
-
|
|
869
|
-
paddingRight:
|
|
870
|
-
paddingRightCm:
|
|
871
|
-
paddingRightCh:
|
|
872
|
-
paddingRightEm:
|
|
873
|
-
paddingRightEx:
|
|
874
|
-
paddingRightIn:
|
|
875
|
-
paddingRightMm:
|
|
876
|
-
paddingRightP:
|
|
877
|
-
paddingRightPc:
|
|
878
|
-
paddingRightPt:
|
|
879
|
-
paddingRightPx:
|
|
880
|
-
paddingRightRem:
|
|
881
|
-
paddingRightVh:
|
|
882
|
-
paddingRightVw:
|
|
883
|
-
paddingRightVMax:
|
|
884
|
-
paddingRightVMin:
|
|
885
|
-
|
|
886
|
-
paddingTop:
|
|
887
|
-
paddingTopCm:
|
|
888
|
-
paddingTopCh:
|
|
889
|
-
paddingTopEm:
|
|
890
|
-
paddingTopEx:
|
|
891
|
-
paddingTopIn:
|
|
892
|
-
paddingTopMm:
|
|
893
|
-
paddingTopP:
|
|
894
|
-
paddingTopPc:
|
|
895
|
-
paddingTopPt:
|
|
896
|
-
paddingTopPx:
|
|
897
|
-
paddingTopRem:
|
|
898
|
-
paddingTopVh:
|
|
899
|
-
paddingTopVw:
|
|
900
|
-
paddingTopVMax:
|
|
901
|
-
paddingTopVMin:
|
|
902
|
-
|
|
903
|
-
right:
|
|
904
|
-
rightCm:
|
|
905
|
-
rightCh:
|
|
906
|
-
rightEm:
|
|
907
|
-
rightEx:
|
|
908
|
-
rightIn:
|
|
909
|
-
rightMm:
|
|
910
|
-
rightP:
|
|
911
|
-
rightPc:
|
|
912
|
-
rightPt:
|
|
913
|
-
rightPx:
|
|
914
|
-
rightRem:
|
|
915
|
-
rightVh:
|
|
916
|
-
rightVw:
|
|
917
|
-
rightVMax:
|
|
918
|
-
rightVMin:
|
|
919
|
-
|
|
920
|
-
textIndent:
|
|
921
|
-
textIndentCm:
|
|
922
|
-
textIndentCh:
|
|
923
|
-
textIndentEm:
|
|
924
|
-
textIndentEx:
|
|
925
|
-
textIndentIn:
|
|
926
|
-
textIndentMm:
|
|
927
|
-
textIndentP:
|
|
928
|
-
textIndentPc:
|
|
929
|
-
textIndentPt:
|
|
930
|
-
textIndentPx:
|
|
931
|
-
textIndentRem:
|
|
932
|
-
textIndentVh:
|
|
933
|
-
textIndentVw:
|
|
934
|
-
textIndentVMax:
|
|
935
|
-
textIndentVMin:
|
|
936
|
-
|
|
937
|
-
top:
|
|
938
|
-
topCm:
|
|
939
|
-
topCh:
|
|
940
|
-
topEm:
|
|
941
|
-
topEx:
|
|
942
|
-
topIn:
|
|
943
|
-
topMm:
|
|
944
|
-
topP:
|
|
945
|
-
topPc:
|
|
946
|
-
topPt:
|
|
947
|
-
topPx:
|
|
948
|
-
topRem:
|
|
949
|
-
topVh:
|
|
950
|
-
topVw:
|
|
951
|
-
topVMax:
|
|
952
|
-
topVMin:
|
|
953
|
-
|
|
954
|
-
width:
|
|
955
|
-
widthCm:
|
|
956
|
-
widthCh:
|
|
957
|
-
widthEm:
|
|
958
|
-
widthEx:
|
|
959
|
-
widthIn:
|
|
960
|
-
widthMm:
|
|
961
|
-
widthP:
|
|
962
|
-
widthPc:
|
|
963
|
-
widthPt:
|
|
964
|
-
widthPx:
|
|
965
|
-
widthRem:
|
|
966
|
-
widthVh:
|
|
967
|
-
widthVw:
|
|
968
|
-
widthVMax:
|
|
969
|
-
widthVMin:
|
|
970
|
-
|
|
971
|
-
lineHeight:
|
|
972
|
-
lineHeightCm:
|
|
973
|
-
lineHeightCh:
|
|
974
|
-
lineHeightEm:
|
|
975
|
-
lineHeightEx:
|
|
976
|
-
lineHeightIn:
|
|
977
|
-
lineHeightMm:
|
|
978
|
-
lineHeightP:
|
|
979
|
-
lineHeightPc:
|
|
980
|
-
lineHeightPt:
|
|
981
|
-
lineHeightPx:
|
|
982
|
-
lineHeightRem:
|
|
983
|
-
lineHeightVh:
|
|
984
|
-
lineHeightVw:
|
|
985
|
-
lineHeightVMax:
|
|
986
|
-
lineHeightVMin:
|
|
987
|
-
|
|
988
|
-
fontSize:
|
|
989
|
-
fontSizeCm:
|
|
990
|
-
fontSizeCh:
|
|
991
|
-
fontSizeEm:
|
|
992
|
-
fontSizeEx:
|
|
993
|
-
fontSizeIn:
|
|
994
|
-
fontSizeMm:
|
|
995
|
-
fontSizeP:
|
|
996
|
-
fontSizePc:
|
|
997
|
-
fontSizePt:
|
|
998
|
-
fontSizePx:
|
|
999
|
-
fontSizeRem:
|
|
1000
|
-
fontSizeVh:
|
|
1001
|
-
fontSizeVw:
|
|
1002
|
-
fontSizeVMax:
|
|
1003
|
-
fontSizeVMin:
|
|
1004
|
-
|
|
1005
|
-
flexBasis:
|
|
1006
|
-
flexBasisCm:
|
|
1007
|
-
flexBasisCh:
|
|
1008
|
-
flexBasisEm:
|
|
1009
|
-
flexBasisEx:
|
|
1010
|
-
flexBasisIn:
|
|
1011
|
-
flexBasisMm:
|
|
1012
|
-
flexBasisP:
|
|
1013
|
-
flexBasisPc:
|
|
1014
|
-
flexBasisPt:
|
|
1015
|
-
flexBasisPx:
|
|
1016
|
-
flexBasisRem:
|
|
1017
|
-
flexBasisVh:
|
|
1018
|
-
flexBasisVw:
|
|
1019
|
-
flexBasisVMax:
|
|
1020
|
-
flexBasisVMin:
|
|
349
|
+
color:(value: Color)=>IDotcssProp;
|
|
350
|
+
backgroundColor:(value: Color)=>IDotcssProp;
|
|
351
|
+
borderBottomColor:(value: Color)=>IDotcssProp;
|
|
352
|
+
borderColor:(value: Color)=>IDotcssProp;
|
|
353
|
+
borderLeftColor:(value: Color)=>IDotcssProp;
|
|
354
|
+
borderRightColor:(value: Color)=>IDotcssProp;
|
|
355
|
+
borderTopColor:(value: Color)=>IDotcssProp;
|
|
356
|
+
textDecorationColor:(value: Color)=>IDotcssProp;
|
|
357
|
+
outlineColor:(value: Color)=>IDotcssProp;
|
|
358
|
+
columnRuleColor:(value: Color)=>IDotcssProp;
|
|
359
|
+
|
|
360
|
+
//length:(value:
|
|
361
|
+
backgroundSize:(value: BackgroundSizeValues)=>IDotcssProp;
|
|
362
|
+
backgroundSizeCm:(value: number)=>IDotcssProp;
|
|
363
|
+
backgroundSizeCh:(value: number)=>IDotcssProp;
|
|
364
|
+
backgroundSizeEm:(value: number)=>IDotcssProp;
|
|
365
|
+
backgroundSizeEx:(value: number)=>IDotcssProp;
|
|
366
|
+
backgroundSizeIn:(value: number)=>IDotcssProp;
|
|
367
|
+
backgroundSizeMm:(value: number)=>IDotcssProp;
|
|
368
|
+
backgroundSizeP:(value: number)=>IDotcssProp;
|
|
369
|
+
backgroundSizePc:(value: number)=>IDotcssProp;
|
|
370
|
+
backgroundSizePt:(value: number)=>IDotcssProp;
|
|
371
|
+
backgroundSizePx:(value: number)=>IDotcssProp;
|
|
372
|
+
backgroundSizeRem:(value: number)=>IDotcssProp;
|
|
373
|
+
backgroundSizeVh:(value: number)=>IDotcssProp;
|
|
374
|
+
backgroundSizeVw:(value: number)=>IDotcssProp;
|
|
375
|
+
backgroundSizeVMax:(value: number)=>IDotcssProp;
|
|
376
|
+
backgroundSizeVMin:(value: number)=>IDotcssProp;
|
|
377
|
+
|
|
378
|
+
blockSize:(value: NumericLength)=>IDotcssProp;
|
|
379
|
+
blockSizeCm:(value: number)=>IDotcssProp;
|
|
380
|
+
blockSizeCh:(value: number)=>IDotcssProp;
|
|
381
|
+
blockSizeEm:(value: number)=>IDotcssProp;
|
|
382
|
+
blockSizeEx:(value: number)=>IDotcssProp;
|
|
383
|
+
blockSizeIn:(value: number)=>IDotcssProp;
|
|
384
|
+
blockSizeMm:(value: number)=>IDotcssProp;
|
|
385
|
+
blockSizeP:(value: number)=>IDotcssProp;
|
|
386
|
+
blockSizePc:(value: number)=>IDotcssProp;
|
|
387
|
+
blockSizePt:(value: number)=>IDotcssProp;
|
|
388
|
+
blockSizePx:(value: number)=>IDotcssProp;
|
|
389
|
+
blockSizeRem:(value: number)=>IDotcssProp;
|
|
390
|
+
blockSizeVh:(value: number)=>IDotcssProp;
|
|
391
|
+
blockSizeVw:(value: number)=>IDotcssProp;
|
|
392
|
+
blockSizeVMax:(value: number)=>IDotcssProp;
|
|
393
|
+
blockSizeVMin:(value: number)=>IDotcssProp;
|
|
394
|
+
|
|
395
|
+
borderBottomLeftRadius:(value: NumericLength)=>IDotcssProp;
|
|
396
|
+
borderBottomLeftRadiusCm:(value: number)=>IDotcssProp;
|
|
397
|
+
borderBottomLeftRadiusCh:(value: number)=>IDotcssProp;
|
|
398
|
+
borderBottomLeftRadiusEm:(value: number)=>IDotcssProp;
|
|
399
|
+
borderBottomLeftRadiusEx:(value: number)=>IDotcssProp;
|
|
400
|
+
borderBottomLeftRadiusIn:(value: number)=>IDotcssProp;
|
|
401
|
+
borderBottomLeftRadiusMm:(value: number)=>IDotcssProp;
|
|
402
|
+
borderBottomLeftRadiusP:(value: number)=>IDotcssProp;
|
|
403
|
+
borderBottomLeftRadiusPc:(value: number)=>IDotcssProp;
|
|
404
|
+
borderBottomLeftRadiusPt:(value: number)=>IDotcssProp;
|
|
405
|
+
borderBottomLeftRadiusPx:(value: number)=>IDotcssProp;
|
|
406
|
+
borderBottomLeftRadiusRem:(value: number)=>IDotcssProp;
|
|
407
|
+
borderBottomLeftRadiusVh:(value: number)=>IDotcssProp;
|
|
408
|
+
borderBottomLeftRadiusVw:(value: number)=>IDotcssProp;
|
|
409
|
+
borderBottomLeftRadiusVMax:(value: number)=>IDotcssProp;
|
|
410
|
+
borderBottomLeftRadiusVMin:(value: number)=>IDotcssProp;
|
|
411
|
+
|
|
412
|
+
borderBottomRightRadius:(value: NumericLength)=>IDotcssProp;
|
|
413
|
+
borderBottomRightRadiusCm:(value: number)=>IDotcssProp;
|
|
414
|
+
borderBottomRightRadiusCh:(value: number)=>IDotcssProp;
|
|
415
|
+
borderBottomRightRadiusEm:(value: number)=>IDotcssProp;
|
|
416
|
+
borderBottomRightRadiusEx:(value: number)=>IDotcssProp;
|
|
417
|
+
borderBottomRightRadiusIn:(value: number)=>IDotcssProp;
|
|
418
|
+
borderBottomRightRadiusMm:(value: number)=>IDotcssProp;
|
|
419
|
+
borderBottomRightRadiusP:(value: number)=>IDotcssProp;
|
|
420
|
+
borderBottomRightRadiusPc:(value: number)=>IDotcssProp;
|
|
421
|
+
borderBottomRightRadiusPt:(value: number)=>IDotcssProp;
|
|
422
|
+
borderBottomRightRadiusPx:(value: number)=>IDotcssProp;
|
|
423
|
+
borderBottomRightRadiusRem:(value: number)=>IDotcssProp;
|
|
424
|
+
borderBottomRightRadiusVh:(value: number)=>IDotcssProp;
|
|
425
|
+
borderBottomRightRadiusVw:(value: number)=>IDotcssProp;
|
|
426
|
+
borderBottomRightRadiusVMax:(value: number)=>IDotcssProp;
|
|
427
|
+
borderBottomRightRadiusVMin:(value: number)=>IDotcssProp;
|
|
428
|
+
|
|
429
|
+
borderBottomWidth:(value: NumericLength)=>IDotcssProp;
|
|
430
|
+
borderBottomWidthCm:(value: number)=>IDotcssProp;
|
|
431
|
+
borderBottomWidthCh:(value: number)=>IDotcssProp;
|
|
432
|
+
borderBottomWidthEm:(value: number)=>IDotcssProp;
|
|
433
|
+
borderBottomWidthEx:(value: number)=>IDotcssProp;
|
|
434
|
+
borderBottomWidthIn:(value: number)=>IDotcssProp;
|
|
435
|
+
borderBottomWidthMm:(value: number)=>IDotcssProp;
|
|
436
|
+
borderBottomWidthP:(value: number)=>IDotcssProp;
|
|
437
|
+
borderBottomWidthPc:(value: number)=>IDotcssProp;
|
|
438
|
+
borderBottomWidthPt:(value: number)=>IDotcssProp;
|
|
439
|
+
borderBottomWidthPx:(value: number)=>IDotcssProp;
|
|
440
|
+
borderBottomWidthRem:(value: number)=>IDotcssProp;
|
|
441
|
+
borderBottomWidthVh:(value: number)=>IDotcssProp;
|
|
442
|
+
borderBottomWidthVw:(value: number)=>IDotcssProp;
|
|
443
|
+
borderBottomWidthVMax:(value: number)=>IDotcssProp;
|
|
444
|
+
borderBottomWidthVMin:(value: number)=>IDotcssProp;
|
|
445
|
+
|
|
446
|
+
borderImageWidth:(value: NumericLength)=>IDotcssProp;
|
|
447
|
+
borderImageWidthCm:(value: number)=>IDotcssProp;
|
|
448
|
+
borderImageWidthCh:(value: number)=>IDotcssProp;
|
|
449
|
+
borderImageWidthEm:(value: number)=>IDotcssProp;
|
|
450
|
+
borderImageWidthEx:(value: number)=>IDotcssProp;
|
|
451
|
+
borderImageWidthIn:(value: number)=>IDotcssProp;
|
|
452
|
+
borderImageWidthMm:(value: number)=>IDotcssProp;
|
|
453
|
+
borderImageWidthP:(value: number)=>IDotcssProp;
|
|
454
|
+
borderImageWidthPc:(value: number)=>IDotcssProp;
|
|
455
|
+
borderImageWidthPt:(value: number)=>IDotcssProp;
|
|
456
|
+
borderImageWidthPx:(value: number)=>IDotcssProp;
|
|
457
|
+
borderImageWidthRem:(value: number)=>IDotcssProp;
|
|
458
|
+
borderImageWidthVh:(value: number)=>IDotcssProp;
|
|
459
|
+
borderImageWidthVw:(value: number)=>IDotcssProp;
|
|
460
|
+
borderImageWidthVMax:(value: number)=>IDotcssProp;
|
|
461
|
+
borderImageWidthVMin:(value: number)=>IDotcssProp;
|
|
462
|
+
|
|
463
|
+
borderLeftWidth:(value: NumericLength)=>IDotcssProp;
|
|
464
|
+
borderLeftWidthCm:(value: number)=>IDotcssProp;
|
|
465
|
+
borderLeftWidthCh:(value: number)=>IDotcssProp;
|
|
466
|
+
borderLeftWidthEm:(value: number)=>IDotcssProp;
|
|
467
|
+
borderLeftWidthEx:(value: number)=>IDotcssProp;
|
|
468
|
+
borderLeftWidthIn:(value: number)=>IDotcssProp;
|
|
469
|
+
borderLeftWidthMm:(value: number)=>IDotcssProp;
|
|
470
|
+
borderLeftWidthP:(value: number)=>IDotcssProp;
|
|
471
|
+
borderLeftWidthPc:(value: number)=>IDotcssProp;
|
|
472
|
+
borderLeftWidthPt:(value: number)=>IDotcssProp;
|
|
473
|
+
borderLeftWidthPx:(value: number)=>IDotcssProp;
|
|
474
|
+
borderLeftWidthRem:(value: number)=>IDotcssProp;
|
|
475
|
+
borderLeftWidthVh:(value: number)=>IDotcssProp;
|
|
476
|
+
borderLeftWidthVw:(value: number)=>IDotcssProp;
|
|
477
|
+
borderLeftWidthVMax:(value: number)=>IDotcssProp;
|
|
478
|
+
borderLeftWidthVMin:(value: number)=>IDotcssProp;
|
|
479
|
+
|
|
480
|
+
borderRadius:(value: NumericLength)=>IDotcssProp;
|
|
481
|
+
borderRadiusCm:(value: number)=>IDotcssProp;
|
|
482
|
+
borderRadiusCh:(value: number)=>IDotcssProp;
|
|
483
|
+
borderRadiusEm:(value: number)=>IDotcssProp;
|
|
484
|
+
borderRadiusEx:(value: number)=>IDotcssProp;
|
|
485
|
+
borderRadiusIn:(value: number)=>IDotcssProp;
|
|
486
|
+
borderRadiusMm:(value: number)=>IDotcssProp;
|
|
487
|
+
borderRadiusP:(value: number)=>IDotcssProp;
|
|
488
|
+
borderRadiusPc:(value: number)=>IDotcssProp;
|
|
489
|
+
borderRadiusPt:(value: number)=>IDotcssProp;
|
|
490
|
+
borderRadiusPx:(value: number)=>IDotcssProp;
|
|
491
|
+
borderRadiusRem:(value: number)=>IDotcssProp;
|
|
492
|
+
borderRadiusVh:(value: number)=>IDotcssProp;
|
|
493
|
+
borderRadiusVw:(value: number)=>IDotcssProp;
|
|
494
|
+
borderRadiusVMax:(value: number)=>IDotcssProp;
|
|
495
|
+
borderRadiusVMin:(value: number)=>IDotcssProp;
|
|
496
|
+
|
|
497
|
+
borderRightWidth:(value: NumericLength)=>IDotcssProp;
|
|
498
|
+
borderRightWidthCm:(value: number)=>IDotcssProp;
|
|
499
|
+
borderRightWidthCh:(value: number)=>IDotcssProp;
|
|
500
|
+
borderRightWidthEm:(value: number)=>IDotcssProp;
|
|
501
|
+
borderRightWidthEx:(value: number)=>IDotcssProp;
|
|
502
|
+
borderRightWidthIn:(value: number)=>IDotcssProp;
|
|
503
|
+
borderRightWidthMm:(value: number)=>IDotcssProp;
|
|
504
|
+
borderRightWidthP:(value: number)=>IDotcssProp;
|
|
505
|
+
borderRightWidthPc:(value: number)=>IDotcssProp;
|
|
506
|
+
borderRightWidthPt:(value: number)=>IDotcssProp;
|
|
507
|
+
borderRightWidthPx:(value: number)=>IDotcssProp;
|
|
508
|
+
borderRightWidthRem:(value: number)=>IDotcssProp;
|
|
509
|
+
borderRightWidthVh:(value: number)=>IDotcssProp;
|
|
510
|
+
borderRightWidthVw:(value: number)=>IDotcssProp;
|
|
511
|
+
borderRightWidthVMax:(value: number)=>IDotcssProp;
|
|
512
|
+
borderRightWidthVMin:(value: number)=>IDotcssProp;
|
|
513
|
+
|
|
514
|
+
borderTopLeftRadius:(value: NumericLength)=>IDotcssProp;
|
|
515
|
+
borderTopLeftRadiusCm:(value: number)=>IDotcssProp;
|
|
516
|
+
borderTopLeftRadiusCh:(value: number)=>IDotcssProp;
|
|
517
|
+
borderTopLeftRadiusEm:(value: number)=>IDotcssProp;
|
|
518
|
+
borderTopLeftRadiusEx:(value: number)=>IDotcssProp;
|
|
519
|
+
borderTopLeftRadiusIn:(value: number)=>IDotcssProp;
|
|
520
|
+
borderTopLeftRadiusMm:(value: number)=>IDotcssProp;
|
|
521
|
+
borderTopLeftRadiusP:(value: number)=>IDotcssProp;
|
|
522
|
+
borderTopLeftRadiusPc:(value: number)=>IDotcssProp;
|
|
523
|
+
borderTopLeftRadiusPt:(value: number)=>IDotcssProp;
|
|
524
|
+
borderTopLeftRadiusPx:(value: number)=>IDotcssProp;
|
|
525
|
+
borderTopLeftRadiusRem:(value: number)=>IDotcssProp;
|
|
526
|
+
borderTopLeftRadiusVh:(value: number)=>IDotcssProp;
|
|
527
|
+
borderTopLeftRadiusVw:(value: number)=>IDotcssProp;
|
|
528
|
+
borderTopLeftRadiusVMax:(value: number)=>IDotcssProp;
|
|
529
|
+
borderTopLeftRadiusVMin:(value: number)=>IDotcssProp;
|
|
530
|
+
|
|
531
|
+
borderTopRightRadius:(value: NumericLength)=>IDotcssProp;
|
|
532
|
+
borderTopRightRadiusCm:(value: number)=>IDotcssProp;
|
|
533
|
+
borderTopRightRadiusCh:(value: number)=>IDotcssProp;
|
|
534
|
+
borderTopRightRadiusEm:(value: number)=>IDotcssProp;
|
|
535
|
+
borderTopRightRadiusEx:(value: number)=>IDotcssProp;
|
|
536
|
+
borderTopRightRadiusIn:(value: number)=>IDotcssProp;
|
|
537
|
+
borderTopRightRadiusMm:(value: number)=>IDotcssProp;
|
|
538
|
+
borderTopRightRadiusP:(value: number)=>IDotcssProp;
|
|
539
|
+
borderTopRightRadiusPc:(value: number)=>IDotcssProp;
|
|
540
|
+
borderTopRightRadiusPt:(value: number)=>IDotcssProp;
|
|
541
|
+
borderTopRightRadiusPx:(value: number)=>IDotcssProp;
|
|
542
|
+
borderTopRightRadiusRem:(value: number)=>IDotcssProp;
|
|
543
|
+
borderTopRightRadiusVh:(value: number)=>IDotcssProp;
|
|
544
|
+
borderTopRightRadiusVw:(value: number)=>IDotcssProp;
|
|
545
|
+
borderTopRightRadiusVMax:(value: number)=>IDotcssProp;
|
|
546
|
+
borderTopRightRadiusVMin:(value: number)=>IDotcssProp;
|
|
547
|
+
|
|
548
|
+
borderTopWidth:(value: NumericLength)=>IDotcssProp;
|
|
549
|
+
borderTopWidthCm:(value: number)=>IDotcssProp;
|
|
550
|
+
borderTopWidthCh:(value: number)=>IDotcssProp;
|
|
551
|
+
borderTopWidthEm:(value: number)=>IDotcssProp;
|
|
552
|
+
borderTopWidthEx:(value: number)=>IDotcssProp;
|
|
553
|
+
borderTopWidthIn:(value: number)=>IDotcssProp;
|
|
554
|
+
borderTopWidthMm:(value: number)=>IDotcssProp;
|
|
555
|
+
borderTopWidthP:(value: number)=>IDotcssProp;
|
|
556
|
+
borderTopWidthPc:(value: number)=>IDotcssProp;
|
|
557
|
+
borderTopWidthPt:(value: number)=>IDotcssProp;
|
|
558
|
+
borderTopWidthPx:(value: number)=>IDotcssProp;
|
|
559
|
+
borderTopWidthRem:(value: number)=>IDotcssProp;
|
|
560
|
+
borderTopWidthVh:(value: number)=>IDotcssProp;
|
|
561
|
+
borderTopWidthVw:(value: number)=>IDotcssProp;
|
|
562
|
+
borderTopWidthVMax:(value: number)=>IDotcssProp;
|
|
563
|
+
borderTopWidthVMin:(value: number)=>IDotcssProp;
|
|
564
|
+
|
|
565
|
+
borderWidth:(value: NumericLength)=>IDotcssProp;
|
|
566
|
+
borderWidthCm:(value: number)=>IDotcssProp;
|
|
567
|
+
borderWidthCh:(value: number)=>IDotcssProp;
|
|
568
|
+
borderWidthEm:(value: number)=>IDotcssProp;
|
|
569
|
+
borderWidthEx:(value: number)=>IDotcssProp;
|
|
570
|
+
borderWidthIn:(value: number)=>IDotcssProp;
|
|
571
|
+
borderWidthMm:(value: number)=>IDotcssProp;
|
|
572
|
+
borderWidthP:(value: number)=>IDotcssProp;
|
|
573
|
+
borderWidthPc:(value: number)=>IDotcssProp;
|
|
574
|
+
borderWidthPt:(value: number)=>IDotcssProp;
|
|
575
|
+
borderWidthPx:(value: number)=>IDotcssProp;
|
|
576
|
+
borderWidthRem:(value: number)=>IDotcssProp;
|
|
577
|
+
borderWidthVh:(value: number)=>IDotcssProp;
|
|
578
|
+
borderWidthVw:(value: number)=>IDotcssProp;
|
|
579
|
+
borderWidthVMax:(value: number)=>IDotcssProp;
|
|
580
|
+
borderWidthVMin:(value: number)=>IDotcssProp;
|
|
581
|
+
|
|
582
|
+
bottom:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
583
|
+
bottomCm:(value: number)=>IDotcssProp;
|
|
584
|
+
bottomCh:(value: number)=>IDotcssProp;
|
|
585
|
+
bottomEm:(value: number)=>IDotcssProp;
|
|
586
|
+
bottomEx:(value: number)=>IDotcssProp;
|
|
587
|
+
bottomIn:(value: number)=>IDotcssProp;
|
|
588
|
+
bottomMm:(value: number)=>IDotcssProp;
|
|
589
|
+
bottomP:(value: number)=>IDotcssProp;
|
|
590
|
+
bottomPc:(value: number)=>IDotcssProp;
|
|
591
|
+
bottomPt:(value: number)=>IDotcssProp;
|
|
592
|
+
bottomPx:(value: number)=>IDotcssProp;
|
|
593
|
+
bottomRem:(value: number)=>IDotcssProp;
|
|
594
|
+
bottomVh:(value: number)=>IDotcssProp;
|
|
595
|
+
bottomVw:(value: number)=>IDotcssProp;
|
|
596
|
+
bottomVMax:(value: number)=>IDotcssProp;
|
|
597
|
+
bottomVMin:(value: number)=>IDotcssProp;
|
|
598
|
+
|
|
599
|
+
gap:(value: NumericLength)=>IDotcssProp;
|
|
600
|
+
gapCm:(value: number)=>IDotcssProp;
|
|
601
|
+
gapCh:(value: number)=>IDotcssProp;
|
|
602
|
+
gapEm:(value: number)=>IDotcssProp;
|
|
603
|
+
gapEx:(value: number)=>IDotcssProp;
|
|
604
|
+
gapIn:(value: number)=>IDotcssProp;
|
|
605
|
+
gapMm:(value: number)=>IDotcssProp;
|
|
606
|
+
gapP:(value: number)=>IDotcssProp;
|
|
607
|
+
gapPc:(value: number)=>IDotcssProp;
|
|
608
|
+
gapPt:(value: number)=>IDotcssProp;
|
|
609
|
+
gapPx:(value: number)=>IDotcssProp;
|
|
610
|
+
gapRem:(value: number)=>IDotcssProp;
|
|
611
|
+
gapVh:(value: number)=>IDotcssProp;
|
|
612
|
+
gapVw:(value: number)=>IDotcssProp;
|
|
613
|
+
gapVMax:(value: number)=>IDotcssProp;
|
|
614
|
+
gapVMin:(value: number)=>IDotcssProp;
|
|
615
|
+
|
|
616
|
+
height:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
617
|
+
heightCm:(value: number)=>IDotcssProp;
|
|
618
|
+
heightCh:(value: number)=>IDotcssProp;
|
|
619
|
+
heightEm:(value: number)=>IDotcssProp;
|
|
620
|
+
heightEx:(value: number)=>IDotcssProp;
|
|
621
|
+
heightIn:(value: number)=>IDotcssProp;
|
|
622
|
+
heightMm:(value: number)=>IDotcssProp;
|
|
623
|
+
heightP:(value: number)=>IDotcssProp;
|
|
624
|
+
heightPc:(value: number)=>IDotcssProp;
|
|
625
|
+
heightPt:(value: number)=>IDotcssProp;
|
|
626
|
+
heightPx:(value: number)=>IDotcssProp;
|
|
627
|
+
heightRem:(value: number)=>IDotcssProp;
|
|
628
|
+
heightVh:(value: number)=>IDotcssProp;
|
|
629
|
+
heightVw:(value: number)=>IDotcssProp;
|
|
630
|
+
heightVMax:(value: number)=>IDotcssProp;
|
|
631
|
+
heightVMin:(value: number)=>IDotcssProp;
|
|
632
|
+
|
|
633
|
+
left:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
634
|
+
leftCm:(value: number)=>IDotcssProp;
|
|
635
|
+
leftCh:(value: number)=>IDotcssProp;
|
|
636
|
+
leftEm:(value: number)=>IDotcssProp;
|
|
637
|
+
leftEx:(value: number)=>IDotcssProp;
|
|
638
|
+
leftIn:(value: number)=>IDotcssProp;
|
|
639
|
+
leftMm:(value: number)=>IDotcssProp;
|
|
640
|
+
leftP:(value: number)=>IDotcssProp;
|
|
641
|
+
leftPc:(value: number)=>IDotcssProp;
|
|
642
|
+
leftPt:(value: number)=>IDotcssProp;
|
|
643
|
+
leftPx:(value: number)=>IDotcssProp;
|
|
644
|
+
leftRem:(value: number)=>IDotcssProp;
|
|
645
|
+
leftVh:(value: number)=>IDotcssProp;
|
|
646
|
+
leftVw:(value: number)=>IDotcssProp;
|
|
647
|
+
leftVMax:(value: number)=>IDotcssProp;
|
|
648
|
+
leftVMin:(value: number)=>IDotcssProp;
|
|
649
|
+
|
|
650
|
+
margin:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
651
|
+
marginCm:(value: number)=>IDotcssProp;
|
|
652
|
+
marginCh:(value: number)=>IDotcssProp;
|
|
653
|
+
marginEm:(value: number)=>IDotcssProp;
|
|
654
|
+
marginEx:(value: number)=>IDotcssProp;
|
|
655
|
+
marginIn:(value: number)=>IDotcssProp;
|
|
656
|
+
marginMm:(value: number)=>IDotcssProp;
|
|
657
|
+
marginP:(value: number)=>IDotcssProp;
|
|
658
|
+
marginPc:(value: number)=>IDotcssProp;
|
|
659
|
+
marginPt:(value: number)=>IDotcssProp;
|
|
660
|
+
marginPx:(value: number)=>IDotcssProp;
|
|
661
|
+
marginRem:(value: number)=>IDotcssProp;
|
|
662
|
+
marginVh:(value: number)=>IDotcssProp;
|
|
663
|
+
marginVw:(value: number)=>IDotcssProp;
|
|
664
|
+
marginVMax:(value: number)=>IDotcssProp;
|
|
665
|
+
marginVMin:(value: number)=>IDotcssProp;
|
|
666
|
+
|
|
667
|
+
marginBottom:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
668
|
+
marginBottomCm:(value: number)=>IDotcssProp;
|
|
669
|
+
marginBottomCh:(value: number)=>IDotcssProp;
|
|
670
|
+
marginBottomEm:(value: number)=>IDotcssProp;
|
|
671
|
+
marginBottomEx:(value: number)=>IDotcssProp;
|
|
672
|
+
marginBottomIn:(value: number)=>IDotcssProp;
|
|
673
|
+
marginBottomMm:(value: number)=>IDotcssProp;
|
|
674
|
+
marginBottomP:(value: number)=>IDotcssProp;
|
|
675
|
+
marginBottomPc:(value: number)=>IDotcssProp;
|
|
676
|
+
marginBottomPt:(value: number)=>IDotcssProp;
|
|
677
|
+
marginBottomPx:(value: number)=>IDotcssProp;
|
|
678
|
+
marginBottomRem:(value: number)=>IDotcssProp;
|
|
679
|
+
marginBottomVh:(value: number)=>IDotcssProp;
|
|
680
|
+
marginBottomVw:(value: number)=>IDotcssProp;
|
|
681
|
+
marginBottomVMax:(value: number)=>IDotcssProp;
|
|
682
|
+
marginBottomVMin:(value: number)=>IDotcssProp;
|
|
683
|
+
|
|
684
|
+
marginLeft:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
685
|
+
marginLeftCm:(value: number)=>IDotcssProp;
|
|
686
|
+
marginLeftCh:(value: number)=>IDotcssProp;
|
|
687
|
+
marginLeftEm:(value: number)=>IDotcssProp;
|
|
688
|
+
marginLeftEx:(value: number)=>IDotcssProp;
|
|
689
|
+
marginLeftIn:(value: number)=>IDotcssProp;
|
|
690
|
+
marginLeftMm:(value: number)=>IDotcssProp;
|
|
691
|
+
marginLeftP:(value: number)=>IDotcssProp;
|
|
692
|
+
marginLeftPc:(value: number)=>IDotcssProp;
|
|
693
|
+
marginLeftPt:(value: number)=>IDotcssProp;
|
|
694
|
+
marginLeftPx:(value: number)=>IDotcssProp;
|
|
695
|
+
marginLeftRem:(value: number)=>IDotcssProp;
|
|
696
|
+
marginLeftVh:(value: number)=>IDotcssProp;
|
|
697
|
+
marginLeftVw:(value: number)=>IDotcssProp;
|
|
698
|
+
marginLeftVMax:(value: number)=>IDotcssProp;
|
|
699
|
+
marginLeftVMin:(value: number)=>IDotcssProp;
|
|
700
|
+
|
|
701
|
+
marginRight:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
702
|
+
marginRightCm:(value: number)=>IDotcssProp;
|
|
703
|
+
marginRightCh:(value: number)=>IDotcssProp;
|
|
704
|
+
marginRightEm:(value: number)=>IDotcssProp;
|
|
705
|
+
marginRightEx:(value: number)=>IDotcssProp;
|
|
706
|
+
marginRightIn:(value: number)=>IDotcssProp;
|
|
707
|
+
marginRightMm:(value: number)=>IDotcssProp;
|
|
708
|
+
marginRightP:(value: number)=>IDotcssProp;
|
|
709
|
+
marginRightPc:(value: number)=>IDotcssProp;
|
|
710
|
+
marginRightPt:(value: number)=>IDotcssProp;
|
|
711
|
+
marginRightPx:(value: number)=>IDotcssProp;
|
|
712
|
+
marginRightRem:(value: number)=>IDotcssProp;
|
|
713
|
+
marginRightVh:(value: number)=>IDotcssProp;
|
|
714
|
+
marginRightVw:(value: number)=>IDotcssProp;
|
|
715
|
+
marginRightVMax:(value: number)=>IDotcssProp;
|
|
716
|
+
marginRightVMin:(value: number)=>IDotcssProp;
|
|
717
|
+
|
|
718
|
+
marginTop:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
719
|
+
marginTopCm:(value: number)=>IDotcssProp;
|
|
720
|
+
marginTopCh:(value: number)=>IDotcssProp;
|
|
721
|
+
marginTopEm:(value: number)=>IDotcssProp;
|
|
722
|
+
marginTopEx:(value: number)=>IDotcssProp;
|
|
723
|
+
marginTopIn:(value: number)=>IDotcssProp;
|
|
724
|
+
marginTopMm:(value: number)=>IDotcssProp;
|
|
725
|
+
marginTopP:(value: number)=>IDotcssProp;
|
|
726
|
+
marginTopPc:(value: number)=>IDotcssProp;
|
|
727
|
+
marginTopPt:(value: number)=>IDotcssProp;
|
|
728
|
+
marginTopPx:(value: number)=>IDotcssProp;
|
|
729
|
+
marginTopRem:(value: number)=>IDotcssProp;
|
|
730
|
+
marginTopVh:(value: number)=>IDotcssProp;
|
|
731
|
+
marginTopVw:(value: number)=>IDotcssProp;
|
|
732
|
+
marginTopVMax:(value: number)=>IDotcssProp;
|
|
733
|
+
marginTopVMin:(value: number)=>IDotcssProp;
|
|
734
|
+
|
|
735
|
+
maxHeight:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
736
|
+
maxHeightCm:(value: number)=>IDotcssProp;
|
|
737
|
+
maxHeightCh:(value: number)=>IDotcssProp;
|
|
738
|
+
maxHeightEm:(value: number)=>IDotcssProp;
|
|
739
|
+
maxHeightEx:(value: number)=>IDotcssProp;
|
|
740
|
+
maxHeightIn:(value: number)=>IDotcssProp;
|
|
741
|
+
maxHeightMm:(value: number)=>IDotcssProp;
|
|
742
|
+
maxHeightP:(value: number)=>IDotcssProp;
|
|
743
|
+
maxHeightPc:(value: number)=>IDotcssProp;
|
|
744
|
+
maxHeightPt:(value: number)=>IDotcssProp;
|
|
745
|
+
maxHeightPx:(value: number)=>IDotcssProp;
|
|
746
|
+
maxHeightRem:(value: number)=>IDotcssProp;
|
|
747
|
+
maxHeightVh:(value: number)=>IDotcssProp;
|
|
748
|
+
maxHeightVw:(value: number)=>IDotcssProp;
|
|
749
|
+
maxHeightVMax:(value: number)=>IDotcssProp;
|
|
750
|
+
maxHeightVMin:(value: number)=>IDotcssProp;
|
|
751
|
+
|
|
752
|
+
maxWidth:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
753
|
+
maxWidthCm:(value: number)=>IDotcssProp;
|
|
754
|
+
maxWidthCh:(value: number)=>IDotcssProp;
|
|
755
|
+
maxWidthEm:(value: number)=>IDotcssProp;
|
|
756
|
+
maxWidthEx:(value: number)=>IDotcssProp;
|
|
757
|
+
maxWidthIn:(value: number)=>IDotcssProp;
|
|
758
|
+
maxWidthMm:(value: number)=>IDotcssProp;
|
|
759
|
+
maxWidthP:(value: number)=>IDotcssProp;
|
|
760
|
+
maxWidthPc:(value: number)=>IDotcssProp;
|
|
761
|
+
maxWidthPt:(value: number)=>IDotcssProp;
|
|
762
|
+
maxWidthPx:(value: number)=>IDotcssProp;
|
|
763
|
+
maxWidthRem:(value: number)=>IDotcssProp;
|
|
764
|
+
maxWidthVh:(value: number)=>IDotcssProp;
|
|
765
|
+
maxWidthVw:(value: number)=>IDotcssProp;
|
|
766
|
+
maxWidthVMax:(value: number)=>IDotcssProp;
|
|
767
|
+
maxWidthVMin:(value: number)=>IDotcssProp;
|
|
768
|
+
|
|
769
|
+
minHeight:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
770
|
+
minHeightCm:(value: number)=>IDotcssProp;
|
|
771
|
+
minHeightCh:(value: number)=>IDotcssProp;
|
|
772
|
+
minHeightEm:(value: number)=>IDotcssProp;
|
|
773
|
+
minHeightEx:(value: number)=>IDotcssProp;
|
|
774
|
+
minHeightIn:(value: number)=>IDotcssProp;
|
|
775
|
+
minHeightMm:(value: number)=>IDotcssProp;
|
|
776
|
+
minHeightP:(value: number)=>IDotcssProp;
|
|
777
|
+
minHeightPc:(value: number)=>IDotcssProp;
|
|
778
|
+
minHeightPt:(value: number)=>IDotcssProp;
|
|
779
|
+
minHeightPx:(value: number)=>IDotcssProp;
|
|
780
|
+
minHeightRem:(value: number)=>IDotcssProp;
|
|
781
|
+
minHeightVh:(value: number)=>IDotcssProp;
|
|
782
|
+
minHeightVw:(value: number)=>IDotcssProp;
|
|
783
|
+
minHeightVMax:(value: number)=>IDotcssProp;
|
|
784
|
+
minHeightVMin:(value: number)=>IDotcssProp;
|
|
785
|
+
|
|
786
|
+
minWidth:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
787
|
+
minWidthCm:(value: number)=>IDotcssProp;
|
|
788
|
+
minWidthCh:(value: number)=>IDotcssProp;
|
|
789
|
+
minWidthEm:(value: number)=>IDotcssProp;
|
|
790
|
+
minWidthEx:(value: number)=>IDotcssProp;
|
|
791
|
+
minWidthIn:(value: number)=>IDotcssProp;
|
|
792
|
+
minWidthMm:(value: number)=>IDotcssProp;
|
|
793
|
+
minWidthP:(value: number)=>IDotcssProp;
|
|
794
|
+
minWidthPc:(value: number)=>IDotcssProp;
|
|
795
|
+
minWidthPt:(value: number)=>IDotcssProp;
|
|
796
|
+
minWidthPx:(value: number)=>IDotcssProp;
|
|
797
|
+
minWidthRem:(value: number)=>IDotcssProp;
|
|
798
|
+
minWidthVh:(value: number)=>IDotcssProp;
|
|
799
|
+
minWidthVw:(value: number)=>IDotcssProp;
|
|
800
|
+
minWidthVMax:(value: number)=>IDotcssProp;
|
|
801
|
+
minWidthVMin:(value: number)=>IDotcssProp;
|
|
802
|
+
|
|
803
|
+
outlineOffset:(value: NumericLength)=>IDotcssProp;
|
|
804
|
+
outlineOffsetCm:(value: number)=>IDotcssProp;
|
|
805
|
+
outlineOffsetCh:(value: number)=>IDotcssProp;
|
|
806
|
+
outlineOffsetEm:(value: number)=>IDotcssProp;
|
|
807
|
+
outlineOffsetEx:(value: number)=>IDotcssProp;
|
|
808
|
+
outlineOffsetIn:(value: number)=>IDotcssProp;
|
|
809
|
+
outlineOffsetMm:(value: number)=>IDotcssProp;
|
|
810
|
+
outlineOffsetP:(value: number)=>IDotcssProp;
|
|
811
|
+
outlineOffsetPc:(value: number)=>IDotcssProp;
|
|
812
|
+
outlineOffsetPt:(value: number)=>IDotcssProp;
|
|
813
|
+
outlineOffsetPx:(value: number)=>IDotcssProp;
|
|
814
|
+
outlineOffsetRem:(value: number)=>IDotcssProp;
|
|
815
|
+
outlineOffsetVh:(value: number)=>IDotcssProp;
|
|
816
|
+
outlineOffsetVw:(value: number)=>IDotcssProp;
|
|
817
|
+
outlineOffsetVMax:(value: number)=>IDotcssProp;
|
|
818
|
+
outlineOffsetVMin:(value: number)=>IDotcssProp;
|
|
819
|
+
|
|
820
|
+
padding:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
821
|
+
paddingCm:(value: number)=>IDotcssProp;
|
|
822
|
+
paddingCh:(value: number)=>IDotcssProp;
|
|
823
|
+
paddingEm:(value: number)=>IDotcssProp;
|
|
824
|
+
paddingEx:(value: number)=>IDotcssProp;
|
|
825
|
+
paddingIn:(value: number)=>IDotcssProp;
|
|
826
|
+
paddingMm:(value: number)=>IDotcssProp;
|
|
827
|
+
paddingP:(value: number)=>IDotcssProp;
|
|
828
|
+
paddingPc:(value: number)=>IDotcssProp;
|
|
829
|
+
paddingPt:(value: number)=>IDotcssProp;
|
|
830
|
+
paddingPx:(value: number)=>IDotcssProp;
|
|
831
|
+
paddingRem:(value: number)=>IDotcssProp;
|
|
832
|
+
paddingVh:(value: number)=>IDotcssProp;
|
|
833
|
+
paddingVw:(value: number)=>IDotcssProp;
|
|
834
|
+
paddingVMax:(value: number)=>IDotcssProp;
|
|
835
|
+
paddingVMin:(value: number)=>IDotcssProp;
|
|
836
|
+
|
|
837
|
+
paddingBottom:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
838
|
+
paddingBottomCm:(value: number)=>IDotcssProp;
|
|
839
|
+
paddingBottomCh:(value: number)=>IDotcssProp;
|
|
840
|
+
paddingBottomEm:(value: number)=>IDotcssProp;
|
|
841
|
+
paddingBottomEx:(value: number)=>IDotcssProp;
|
|
842
|
+
paddingBottomIn:(value: number)=>IDotcssProp;
|
|
843
|
+
paddingBottomMm:(value: number)=>IDotcssProp;
|
|
844
|
+
paddingBottomP:(value: number)=>IDotcssProp;
|
|
845
|
+
paddingBottomPc:(value: number)=>IDotcssProp;
|
|
846
|
+
paddingBottomPt:(value: number)=>IDotcssProp;
|
|
847
|
+
paddingBottomPx:(value: number)=>IDotcssProp;
|
|
848
|
+
paddingBottomRem:(value: number)=>IDotcssProp;
|
|
849
|
+
paddingBottomVh:(value: number)=>IDotcssProp;
|
|
850
|
+
paddingBottomVw:(value: number)=>IDotcssProp;
|
|
851
|
+
paddingBottomVMax:(value: number)=>IDotcssProp;
|
|
852
|
+
paddingBottomVMin:(value: number)=>IDotcssProp;
|
|
853
|
+
|
|
854
|
+
paddingLeft:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
855
|
+
paddingLeftCm:(value: number)=>IDotcssProp;
|
|
856
|
+
paddingLeftCh:(value: number)=>IDotcssProp;
|
|
857
|
+
paddingLeftEm:(value: number)=>IDotcssProp;
|
|
858
|
+
paddingLeftEx:(value: number)=>IDotcssProp;
|
|
859
|
+
paddingLeftIn:(value: number)=>IDotcssProp;
|
|
860
|
+
paddingLeftMm:(value: number)=>IDotcssProp;
|
|
861
|
+
paddingLeftP:(value: number)=>IDotcssProp;
|
|
862
|
+
paddingLeftPc:(value: number)=>IDotcssProp;
|
|
863
|
+
paddingLeftPt:(value: number)=>IDotcssProp;
|
|
864
|
+
paddingLeftPx:(value: number)=>IDotcssProp;
|
|
865
|
+
paddingLeftRem:(value: number)=>IDotcssProp;
|
|
866
|
+
paddingLeftVh:(value: number)=>IDotcssProp;
|
|
867
|
+
paddingLeftVw:(value: number)=>IDotcssProp;
|
|
868
|
+
paddingLeftVMax:(value: number)=>IDotcssProp;
|
|
869
|
+
paddingLeftVMin:(value: number)=>IDotcssProp;
|
|
870
|
+
|
|
871
|
+
paddingRight:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
872
|
+
paddingRightCm:(value: number)=>IDotcssProp;
|
|
873
|
+
paddingRightCh:(value: number)=>IDotcssProp;
|
|
874
|
+
paddingRightEm:(value: number)=>IDotcssProp;
|
|
875
|
+
paddingRightEx:(value: number)=>IDotcssProp;
|
|
876
|
+
paddingRightIn:(value: number)=>IDotcssProp;
|
|
877
|
+
paddingRightMm:(value: number)=>IDotcssProp;
|
|
878
|
+
paddingRightP:(value: number)=>IDotcssProp;
|
|
879
|
+
paddingRightPc:(value: number)=>IDotcssProp;
|
|
880
|
+
paddingRightPt:(value: number)=>IDotcssProp;
|
|
881
|
+
paddingRightPx:(value: number)=>IDotcssProp;
|
|
882
|
+
paddingRightRem:(value: number)=>IDotcssProp;
|
|
883
|
+
paddingRightVh:(value: number)=>IDotcssProp;
|
|
884
|
+
paddingRightVw:(value: number)=>IDotcssProp;
|
|
885
|
+
paddingRightVMax:(value: number)=>IDotcssProp;
|
|
886
|
+
paddingRightVMin:(value: number)=>IDotcssProp;
|
|
887
|
+
|
|
888
|
+
paddingTop:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
889
|
+
paddingTopCm:(value: number)=>IDotcssProp;
|
|
890
|
+
paddingTopCh:(value: number)=>IDotcssProp;
|
|
891
|
+
paddingTopEm:(value: number)=>IDotcssProp;
|
|
892
|
+
paddingTopEx:(value: number)=>IDotcssProp;
|
|
893
|
+
paddingTopIn:(value: number)=>IDotcssProp;
|
|
894
|
+
paddingTopMm:(value: number)=>IDotcssProp;
|
|
895
|
+
paddingTopP:(value: number)=>IDotcssProp;
|
|
896
|
+
paddingTopPc:(value: number)=>IDotcssProp;
|
|
897
|
+
paddingTopPt:(value: number)=>IDotcssProp;
|
|
898
|
+
paddingTopPx:(value: number)=>IDotcssProp;
|
|
899
|
+
paddingTopRem:(value: number)=>IDotcssProp;
|
|
900
|
+
paddingTopVh:(value: number)=>IDotcssProp;
|
|
901
|
+
paddingTopVw:(value: number)=>IDotcssProp;
|
|
902
|
+
paddingTopVMax:(value: number)=>IDotcssProp;
|
|
903
|
+
paddingTopVMin:(value: number)=>IDotcssProp;
|
|
904
|
+
|
|
905
|
+
right:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
906
|
+
rightCm:(value: number)=>IDotcssProp;
|
|
907
|
+
rightCh:(value: number)=>IDotcssProp;
|
|
908
|
+
rightEm:(value: number)=>IDotcssProp;
|
|
909
|
+
rightEx:(value: number)=>IDotcssProp;
|
|
910
|
+
rightIn:(value: number)=>IDotcssProp;
|
|
911
|
+
rightMm:(value: number)=>IDotcssProp;
|
|
912
|
+
rightP:(value: number)=>IDotcssProp;
|
|
913
|
+
rightPc:(value: number)=>IDotcssProp;
|
|
914
|
+
rightPt:(value: number)=>IDotcssProp;
|
|
915
|
+
rightPx:(value: number)=>IDotcssProp;
|
|
916
|
+
rightRem:(value: number)=>IDotcssProp;
|
|
917
|
+
rightVh:(value: number)=>IDotcssProp;
|
|
918
|
+
rightVw:(value: number)=>IDotcssProp;
|
|
919
|
+
rightVMax:(value: number)=>IDotcssProp;
|
|
920
|
+
rightVMin:(value: number)=>IDotcssProp;
|
|
921
|
+
|
|
922
|
+
textIndent:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
923
|
+
textIndentCm:(value: number)=>IDotcssProp;
|
|
924
|
+
textIndentCh:(value: number)=>IDotcssProp;
|
|
925
|
+
textIndentEm:(value: number)=>IDotcssProp;
|
|
926
|
+
textIndentEx:(value: number)=>IDotcssProp;
|
|
927
|
+
textIndentIn:(value: number)=>IDotcssProp;
|
|
928
|
+
textIndentMm:(value: number)=>IDotcssProp;
|
|
929
|
+
textIndentP:(value: number)=>IDotcssProp;
|
|
930
|
+
textIndentPc:(value: number)=>IDotcssProp;
|
|
931
|
+
textIndentPt:(value: number)=>IDotcssProp;
|
|
932
|
+
textIndentPx:(value: number)=>IDotcssProp;
|
|
933
|
+
textIndentRem:(value: number)=>IDotcssProp;
|
|
934
|
+
textIndentVh:(value: number)=>IDotcssProp;
|
|
935
|
+
textIndentVw:(value: number)=>IDotcssProp;
|
|
936
|
+
textIndentVMax:(value: number)=>IDotcssProp;
|
|
937
|
+
textIndentVMin:(value: number)=>IDotcssProp;
|
|
938
|
+
|
|
939
|
+
top:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
940
|
+
topCm:(value: number)=>IDotcssProp;
|
|
941
|
+
topCh:(value: number)=>IDotcssProp;
|
|
942
|
+
topEm:(value: number)=>IDotcssProp;
|
|
943
|
+
topEx:(value: number)=>IDotcssProp;
|
|
944
|
+
topIn:(value: number)=>IDotcssProp;
|
|
945
|
+
topMm:(value: number)=>IDotcssProp;
|
|
946
|
+
topP:(value: number)=>IDotcssProp;
|
|
947
|
+
topPc:(value: number)=>IDotcssProp;
|
|
948
|
+
topPt:(value: number)=>IDotcssProp;
|
|
949
|
+
topPx:(value: number)=>IDotcssProp;
|
|
950
|
+
topRem:(value: number)=>IDotcssProp;
|
|
951
|
+
topVh:(value: number)=>IDotcssProp;
|
|
952
|
+
topVw:(value: number)=>IDotcssProp;
|
|
953
|
+
topVMax:(value: number)=>IDotcssProp;
|
|
954
|
+
topVMin:(value: number)=>IDotcssProp;
|
|
955
|
+
|
|
956
|
+
width:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
957
|
+
widthCm:(value: number)=>IDotcssProp;
|
|
958
|
+
widthCh:(value: number)=>IDotcssProp;
|
|
959
|
+
widthEm:(value: number)=>IDotcssProp;
|
|
960
|
+
widthEx:(value: number)=>IDotcssProp;
|
|
961
|
+
widthIn:(value: number)=>IDotcssProp;
|
|
962
|
+
widthMm:(value: number)=>IDotcssProp;
|
|
963
|
+
widthP:(value: number)=>IDotcssProp;
|
|
964
|
+
widthPc:(value: number)=>IDotcssProp;
|
|
965
|
+
widthPt:(value: number)=>IDotcssProp;
|
|
966
|
+
widthPx:(value: number)=>IDotcssProp;
|
|
967
|
+
widthRem:(value: number)=>IDotcssProp;
|
|
968
|
+
widthVh:(value: number)=>IDotcssProp;
|
|
969
|
+
widthVw:(value: number)=>IDotcssProp;
|
|
970
|
+
widthVMax:(value: number)=>IDotcssProp;
|
|
971
|
+
widthVMin:(value: number)=>IDotcssProp;
|
|
972
|
+
|
|
973
|
+
lineHeight:(value: NumericLength)=>IDotcssProp;
|
|
974
|
+
lineHeightCm:(value: number)=>IDotcssProp;
|
|
975
|
+
lineHeightCh:(value: number)=>IDotcssProp;
|
|
976
|
+
lineHeightEm:(value: number)=>IDotcssProp;
|
|
977
|
+
lineHeightEx:(value: number)=>IDotcssProp;
|
|
978
|
+
lineHeightIn:(value: number)=>IDotcssProp;
|
|
979
|
+
lineHeightMm:(value: number)=>IDotcssProp;
|
|
980
|
+
lineHeightP:(value: number)=>IDotcssProp;
|
|
981
|
+
lineHeightPc:(value: number)=>IDotcssProp;
|
|
982
|
+
lineHeightPt:(value: number)=>IDotcssProp;
|
|
983
|
+
lineHeightPx:(value: number)=>IDotcssProp;
|
|
984
|
+
lineHeightRem:(value: number)=>IDotcssProp;
|
|
985
|
+
lineHeightVh:(value: number)=>IDotcssProp;
|
|
986
|
+
lineHeightVw:(value: number)=>IDotcssProp;
|
|
987
|
+
lineHeightVMax:(value: number)=>IDotcssProp;
|
|
988
|
+
lineHeightVMin:(value: number)=>IDotcssProp;
|
|
989
|
+
|
|
990
|
+
fontSize:(value: NumericLength)=>IDotcssProp;
|
|
991
|
+
fontSizeCm:(value: number)=>IDotcssProp;
|
|
992
|
+
fontSizeCh:(value: number)=>IDotcssProp;
|
|
993
|
+
fontSizeEm:(value: number)=>IDotcssProp;
|
|
994
|
+
fontSizeEx:(value: number)=>IDotcssProp;
|
|
995
|
+
fontSizeIn:(value: number)=>IDotcssProp;
|
|
996
|
+
fontSizeMm:(value: number)=>IDotcssProp;
|
|
997
|
+
fontSizeP:(value: number)=>IDotcssProp;
|
|
998
|
+
fontSizePc:(value: number)=>IDotcssProp;
|
|
999
|
+
fontSizePt:(value: number)=>IDotcssProp;
|
|
1000
|
+
fontSizePx:(value: number)=>IDotcssProp;
|
|
1001
|
+
fontSizeRem:(value: number)=>IDotcssProp;
|
|
1002
|
+
fontSizeVh:(value: number)=>IDotcssProp;
|
|
1003
|
+
fontSizeVw:(value: number)=>IDotcssProp;
|
|
1004
|
+
fontSizeVMax:(value: number)=>IDotcssProp;
|
|
1005
|
+
fontSizeVMin:(value: number)=>IDotcssProp;
|
|
1006
|
+
|
|
1007
|
+
flexBasis:(value: NumericLengthOrAuto)=>IDotcssProp;
|
|
1008
|
+
flexBasisCm:(value: number)=>IDotcssProp;
|
|
1009
|
+
flexBasisCh:(value: number)=>IDotcssProp;
|
|
1010
|
+
flexBasisEm:(value: number)=>IDotcssProp;
|
|
1011
|
+
flexBasisEx:(value: number)=>IDotcssProp;
|
|
1012
|
+
flexBasisIn:(value: number)=>IDotcssProp;
|
|
1013
|
+
flexBasisMm:(value: number)=>IDotcssProp;
|
|
1014
|
+
flexBasisP:(value: number)=>IDotcssProp;
|
|
1015
|
+
flexBasisPc:(value: number)=>IDotcssProp;
|
|
1016
|
+
flexBasisPt:(value: number)=>IDotcssProp;
|
|
1017
|
+
flexBasisPx:(value: number)=>IDotcssProp;
|
|
1018
|
+
flexBasisRem:(value: number)=>IDotcssProp;
|
|
1019
|
+
flexBasisVh:(value: number)=>IDotcssProp;
|
|
1020
|
+
flexBasisVw:(value: number)=>IDotcssProp;
|
|
1021
|
+
flexBasisVMax:(value: number)=>IDotcssProp;
|
|
1022
|
+
flexBasisVMin:(value: number)=>IDotcssProp;
|
|
1021
1023
|
|
|
1022
1024
|
//url:
|
|
1023
1025
|
backgroundImage: (value: BackgroundImageFormat)=>IDotcssProp;
|
|
@@ -1031,9 +1033,10 @@ interface IDotcssProp{
|
|
|
1031
1033
|
backdropFilter: (filterBuilder: FilterBuilder)=>IDotcssProp;
|
|
1032
1034
|
|
|
1033
1035
|
//misc numeric:
|
|
1034
|
-
opacity:
|
|
1036
|
+
opacity: number|string;
|
|
1035
1037
|
|
|
1036
1038
|
//misc:
|
|
1039
|
+
all: (value: BasicCommonValues)=>IDotcssProp;
|
|
1037
1040
|
appearance: (value: AppearanceValues)=>IDotcssProp;
|
|
1038
1041
|
aspectRatio: (value: string)=>IDotcssProp; // TODO: better typing on this. Low priority.
|
|
1039
1042
|
|
|
@@ -1249,18 +1252,18 @@ export default interface IDotCss extends IDotcssProp{
|
|
|
1249
1252
|
version: string;
|
|
1250
1253
|
}
|
|
1251
1254
|
|
|
1252
|
-
export interface IDotcssAnimatable<T> extends IDotcssProp{
|
|
1253
|
-
|
|
1255
|
+
// export interface IDotcssAnimatable<T> extends IDotcssProp{
|
|
1256
|
+
// (value: T): IDotcssProp;
|
|
1254
1257
|
|
|
1255
|
-
|
|
1256
|
-
}
|
|
1258
|
+
// animate(value: number|string, duration: number, style: "ease", complete: Function): IDotcssProp;
|
|
1259
|
+
// }
|
|
1257
1260
|
|
|
1258
|
-
export interface IDotcssAnimatableColor extends IDotcssProp{
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
+
// export interface IDotcssAnimatableColor extends IDotcssProp{
|
|
1262
|
+
// (value: Color|Array<number>): IDotcssProp;
|
|
1263
|
+
// (r: number, g: number, b: number, a?: number): IDotcssProp;
|
|
1261
1264
|
|
|
1262
|
-
|
|
1263
|
-
}
|
|
1265
|
+
// animate(value: Color|Array<number>, duration: number, style: "ease", complete: Function): IDotcssProp;
|
|
1266
|
+
// }
|
|
1264
1267
|
|
|
1265
1268
|
export interface HideParams{
|
|
1266
1269
|
duration?: number,
|