@jtlan/csstype 0.0.4 → 3.1.0
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/index.d.ts +5 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -617,7 +617,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
617
617
|
*
|
|
618
618
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-color
|
|
619
619
|
*/
|
|
620
|
-
borderBottomColor
|
|
620
|
+
borderBottomColor/*;框下颜色*/?: Property.BorderBottomColor | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
|
|
623
623
|
*
|
|
@@ -632,7 +632,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
632
632
|
*
|
|
633
633
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius
|
|
634
634
|
*/
|
|
635
|
-
borderBottomLeftRadius
|
|
635
|
+
borderBottomLeftRadius/*;框下左圆角*/?: Property.BorderBottomLeftRadius<TLength> | undefined;
|
|
636
636
|
/**
|
|
637
637
|
* The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
|
|
638
638
|
*
|
|
@@ -647,7 +647,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
647
647
|
*
|
|
648
648
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius
|
|
649
649
|
*/
|
|
650
|
-
borderBottomRightRadius
|
|
650
|
+
borderBottomRightRadius/*;框下右圆角*/?: Property.BorderBottomRightRadius<TLength> | undefined;
|
|
651
651
|
/**
|
|
652
652
|
* The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.
|
|
653
653
|
*
|
|
@@ -661,7 +661,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
661
661
|
*
|
|
662
662
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-style
|
|
663
663
|
*/
|
|
664
|
-
borderBottomStyle
|
|
664
|
+
borderBottomStyle/*;框下样式*/?: Property.BorderBottomStyle | undefined;
|
|
665
665
|
/**
|
|
666
666
|
* The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.
|
|
667
667
|
*
|
|
@@ -675,7 +675,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
675
675
|
*
|
|
676
676
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-width
|
|
677
677
|
*/
|
|
678
|
-
borderBottomWidth
|
|
678
|
+
borderBottomWidth/*;框下宽*/?: Property.BorderBottomWidth<TLength> | undefined;
|
|
679
679
|
/**
|
|
680
680
|
* The **`border-collapse`** CSS property sets whether cells inside a `<table>` have shared or separate borders.
|
|
681
681
|
*
|