@jtlan/csstype 0.0.1 → 0.0.3
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 +65 -65
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
22
22
|
*
|
|
23
23
|
* @see https://developer.mozilla.org/docs/Web/CSS/accent-color
|
|
24
24
|
*/
|
|
25
|
-
accentColor
|
|
25
|
+
accentColor/*;强调颜色*/?: Property.AccentColor | undefined;
|
|
26
26
|
/**
|
|
27
27
|
* The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
|
|
28
28
|
*
|
|
@@ -51,7 +51,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
51
51
|
*
|
|
52
52
|
* @see https://developer.mozilla.org/docs/Web/CSS/align-content
|
|
53
53
|
*/
|
|
54
|
-
alignContent
|
|
54
|
+
alignContent/*;纵向内容排列*/?: Property.AlignContent | undefined;
|
|
55
55
|
/**
|
|
56
56
|
* The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.
|
|
57
57
|
*
|
|
@@ -80,7 +80,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
80
80
|
*
|
|
81
81
|
* @see https://developer.mozilla.org/docs/Web/CSS/align-items
|
|
82
82
|
*/
|
|
83
|
-
alignItems
|
|
83
|
+
alignItems/*;纵向项目排列*/?: Property.AlignItems | undefined;
|
|
84
84
|
/**
|
|
85
85
|
* The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
|
|
86
86
|
*
|
|
@@ -109,7 +109,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
109
109
|
*
|
|
110
110
|
* @see https://developer.mozilla.org/docs/Web/CSS/align-self
|
|
111
111
|
*/
|
|
112
|
-
alignSelf
|
|
112
|
+
alignSelf/*;纵向自己排列*/?: Property.AlignSelf | undefined;
|
|
113
113
|
/**
|
|
114
114
|
* The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.
|
|
115
115
|
*
|
|
@@ -123,7 +123,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
123
123
|
*
|
|
124
124
|
* @see https://developer.mozilla.org/docs/Web/CSS/align-tracks
|
|
125
125
|
*/
|
|
126
|
-
alignTracks
|
|
126
|
+
alignTracks/*;对齐轨道*/?: Property.AlignTracks | undefined;
|
|
127
127
|
/**
|
|
128
128
|
* The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
|
|
129
129
|
*
|
|
@@ -138,7 +138,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
138
138
|
*
|
|
139
139
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-delay
|
|
140
140
|
*/
|
|
141
|
-
animationDelay
|
|
141
|
+
animationDelay/*;动画延迟*/?: Property.AnimationDelay<TTime> | undefined;
|
|
142
142
|
/**
|
|
143
143
|
* The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
|
|
144
144
|
*
|
|
@@ -153,7 +153,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
153
153
|
*
|
|
154
154
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-direction
|
|
155
155
|
*/
|
|
156
|
-
animationDirection
|
|
156
|
+
animationDirection/*;动画方向*/?: Property.AnimationDirection | undefined;
|
|
157
157
|
/**
|
|
158
158
|
* The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
|
|
159
159
|
*
|
|
@@ -168,7 +168,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
168
168
|
*
|
|
169
169
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-duration
|
|
170
170
|
*/
|
|
171
|
-
animationDuration
|
|
171
|
+
animationDuration/*;动画时长*/?: Property.AnimationDuration<TTime> | undefined;
|
|
172
172
|
/**
|
|
173
173
|
* The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
|
|
174
174
|
*
|
|
@@ -183,7 +183,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
183
183
|
*
|
|
184
184
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode
|
|
185
185
|
*/
|
|
186
|
-
animationFillMode
|
|
186
|
+
animationFillMode/*;动画填充模式*/?: Property.AnimationFillMode | undefined;
|
|
187
187
|
/**
|
|
188
188
|
* The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
|
|
189
189
|
*
|
|
@@ -198,7 +198,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
198
198
|
*
|
|
199
199
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count
|
|
200
200
|
*/
|
|
201
|
-
animationIterationCount
|
|
201
|
+
animationIterationCount/*;动画播放次数*/?: Property.AnimationIterationCount | undefined;
|
|
202
202
|
/**
|
|
203
203
|
* The **`animation-name`** CSS property specifies the names of one or more `@keyframes` at-rules describing the animation or animations to apply to the element.
|
|
204
204
|
*
|
|
@@ -213,7 +213,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
213
213
|
*
|
|
214
214
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-name
|
|
215
215
|
*/
|
|
216
|
-
animationName
|
|
216
|
+
animationName/*;动画名称*/?: Property.AnimationName | undefined;
|
|
217
217
|
/**
|
|
218
218
|
* The **`animation-play-state`** CSS property sets whether an animation is running or paused.
|
|
219
219
|
*
|
|
@@ -228,7 +228,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
228
228
|
*
|
|
229
229
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state
|
|
230
230
|
*/
|
|
231
|
-
animationPlayState
|
|
231
|
+
animationPlayState/*;动画播放状态*/?: Property.AnimationPlayState | undefined;
|
|
232
232
|
/**
|
|
233
233
|
* The **`animation-timeline`** CSS property specifies the names of one or more `@scroll-timeline` at-rules describing the scroll animations to apply to the element.
|
|
234
234
|
*
|
|
@@ -242,7 +242,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
242
242
|
*
|
|
243
243
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-timeline
|
|
244
244
|
*/
|
|
245
|
-
animationTimeline
|
|
245
|
+
animationTimeline/*;动画时间线*/?: Property.AnimationTimeline | undefined;
|
|
246
246
|
/**
|
|
247
247
|
* The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
|
|
248
248
|
*
|
|
@@ -257,7 +257,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
257
257
|
*
|
|
258
258
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function
|
|
259
259
|
*/
|
|
260
|
-
animationTimingFunction
|
|
260
|
+
animationTimingFunction/*;动画时间函数*/?: Property.AnimationTimingFunction | undefined;
|
|
261
261
|
/**
|
|
262
262
|
* The **`appearance`** CSS property is used to display an element using platform-native styling, based on the operating system's theme. The **`-moz-appearance`** and **`-webkit-appearance`** properties are non-standard versions of this property, used (respectively) by Gecko (Firefox) and by WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome, Opera) browsers to achieve the same thing. Note that Firefox and Edge also support **`-webkit-appearance`**, for compatibility reasons.
|
|
263
263
|
*
|
|
@@ -272,7 +272,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
272
272
|
*
|
|
273
273
|
* @see https://developer.mozilla.org/docs/Web/CSS/appearance
|
|
274
274
|
*/
|
|
275
|
-
appearance
|
|
275
|
+
appearance/*;外观*/?: Property.Appearance | undefined;
|
|
276
276
|
/**
|
|
277
277
|
* The **`aspect-ratio`** CSS property sets a **preferred aspect ratio** for the box, which will be used in the calculation of auto sizes and some other layout functions.
|
|
278
278
|
*
|
|
@@ -286,7 +286,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
286
286
|
*
|
|
287
287
|
* @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio
|
|
288
288
|
*/
|
|
289
|
-
aspectRatio
|
|
289
|
+
aspectRatio/*;高宽比*/?: Property.AspectRatio | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.
|
|
292
292
|
*
|
|
@@ -315,7 +315,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
315
315
|
*
|
|
316
316
|
* @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility
|
|
317
317
|
*/
|
|
318
|
-
backfaceVisibility
|
|
318
|
+
backfaceVisibility/*;背面可见*/?: Property.BackfaceVisibility | undefined;
|
|
319
319
|
/**
|
|
320
320
|
* The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.
|
|
321
321
|
*
|
|
@@ -329,7 +329,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
329
329
|
*
|
|
330
330
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
|
|
331
331
|
*/
|
|
332
|
-
backgroundAttachment
|
|
332
|
+
backgroundAttachment/*;背景附件*/?: Property.BackgroundAttachment | undefined;
|
|
333
333
|
/**
|
|
334
334
|
* The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.
|
|
335
335
|
*
|
|
@@ -343,7 +343,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
343
343
|
*
|
|
344
344
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-blend-mode
|
|
345
345
|
*/
|
|
346
|
-
backgroundBlendMode
|
|
346
|
+
backgroundBlendMode/*;背景混合模式*/?: Property.BackgroundBlendMode | undefined;
|
|
347
347
|
/**
|
|
348
348
|
* The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
|
|
349
349
|
*
|
|
@@ -358,7 +358,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
358
358
|
*
|
|
359
359
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-clip
|
|
360
360
|
*/
|
|
361
|
-
backgroundClip
|
|
361
|
+
backgroundClip/*;背景裁剪*/?: Property.BackgroundClip | undefined;
|
|
362
362
|
/**
|
|
363
363
|
* The **`background-color`** CSS property sets the background color of an element.
|
|
364
364
|
*
|
|
@@ -372,7 +372,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
372
372
|
*
|
|
373
373
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-color
|
|
374
374
|
*/
|
|
375
|
-
backgroundColor
|
|
375
|
+
backgroundColor/*;背景色*/?: Property.BackgroundColor | undefined;
|
|
376
376
|
/**
|
|
377
377
|
* The **`background-image`** CSS property sets one or more background images on an element.
|
|
378
378
|
*
|
|
@@ -386,7 +386,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
386
386
|
*
|
|
387
387
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-image
|
|
388
388
|
*/
|
|
389
|
-
backgroundImage
|
|
389
|
+
backgroundImage/*;背景图*/?: Property.BackgroundImage | undefined;
|
|
390
390
|
/**
|
|
391
391
|
* The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
|
|
392
392
|
*
|
|
@@ -400,7 +400,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
400
400
|
*
|
|
401
401
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-origin
|
|
402
402
|
*/
|
|
403
|
-
backgroundOrigin
|
|
403
|
+
backgroundOrigin/*;背景原点*/?: Property.BackgroundOrigin | undefined;
|
|
404
404
|
/**
|
|
405
405
|
* The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`.
|
|
406
406
|
*
|
|
@@ -442,7 +442,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
442
442
|
*
|
|
443
443
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-repeat
|
|
444
444
|
*/
|
|
445
|
-
backgroundRepeat
|
|
445
|
+
backgroundRepeat/*;背景重复*/?: Property.BackgroundRepeat | undefined;
|
|
446
446
|
/**
|
|
447
447
|
* The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.
|
|
448
448
|
*
|
|
@@ -457,7 +457,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
457
457
|
*
|
|
458
458
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-size
|
|
459
459
|
*/
|
|
460
|
-
backgroundSize
|
|
460
|
+
backgroundSize/*;背景尺寸*/?: Property.BackgroundSize<TLength> | undefined;
|
|
461
461
|
/**
|
|
462
462
|
* **Syntax**: `clip | ellipsis | <string>`
|
|
463
463
|
*
|
|
@@ -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
|
*
|
|
@@ -689,7 +689,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
689
689
|
*
|
|
690
690
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-collapse
|
|
691
691
|
*/
|
|
692
|
-
borderCollapse
|
|
692
|
+
borderCollapse/*;框合并*/?: Property.BorderCollapse | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
|
|
695
695
|
*
|
|
@@ -731,7 +731,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
731
731
|
*
|
|
732
732
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset
|
|
733
733
|
*/
|
|
734
|
-
borderImageOutset
|
|
734
|
+
borderImageOutset/*;框图突出*/?: Property.BorderImageOutset<TLength> | undefined;
|
|
735
735
|
/**
|
|
736
736
|
* The **`border-image-repeat`** CSS property defines how the edge regions of a source image are adjusted to fit the dimensions of an element's border image.
|
|
737
737
|
*
|
|
@@ -745,7 +745,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
745
745
|
*
|
|
746
746
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat
|
|
747
747
|
*/
|
|
748
|
-
borderImageRepeat
|
|
748
|
+
borderImageRepeat/*;框图重复*/?: Property.BorderImageRepeat | undefined;
|
|
749
749
|
/**
|
|
750
750
|
* The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image.
|
|
751
751
|
*
|
|
@@ -759,7 +759,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
759
759
|
*
|
|
760
760
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice
|
|
761
761
|
*/
|
|
762
|
-
borderImageSlice
|
|
762
|
+
borderImageSlice/*;框图内移*/?: Property.BorderImageSlice | undefined;
|
|
763
763
|
/**
|
|
764
764
|
* The **`border-image-source`** CSS property sets the source image used to create an element's border image.
|
|
765
765
|
*
|
|
@@ -773,7 +773,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
773
773
|
*
|
|
774
774
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-source
|
|
775
775
|
*/
|
|
776
|
-
borderImageSource
|
|
776
|
+
borderImageSource/*;框图源*/?: Property.BorderImageSource | undefined;
|
|
777
777
|
/**
|
|
778
778
|
* The **`border-image-width`** CSS property sets the width of an element's border image.
|
|
779
779
|
*
|
|
@@ -787,7 +787,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
787
787
|
*
|
|
788
788
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-width
|
|
789
789
|
*/
|
|
790
|
-
borderImageWidth
|
|
790
|
+
borderImageWidth/*;框图宽*/?: Property.BorderImageWidth<TLength> | undefined;
|
|
791
791
|
/**
|
|
792
792
|
* The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
793
793
|
*
|
|
@@ -932,7 +932,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
932
932
|
*
|
|
933
933
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-left-color
|
|
934
934
|
*/
|
|
935
|
-
borderLeftColor
|
|
935
|
+
borderLeftColor/*;框左颜色*/?: Property.BorderLeftColor | undefined;
|
|
936
936
|
/**
|
|
937
937
|
* The **`border-left-style`** CSS property sets the line style of an element's left `border`.
|
|
938
938
|
*
|
|
@@ -946,7 +946,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
946
946
|
*
|
|
947
947
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-left-style
|
|
948
948
|
*/
|
|
949
|
-
borderLeftStyle
|
|
949
|
+
borderLeftStyle/*;框左样式*/?: Property.BorderLeftStyle | undefined;
|
|
950
950
|
/**
|
|
951
951
|
* The **`border-left-width`** CSS property sets the width of the left border of an element.
|
|
952
952
|
*
|
|
@@ -960,7 +960,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
960
960
|
*
|
|
961
961
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-left-width
|
|
962
962
|
*/
|
|
963
|
-
borderLeftWidth
|
|
963
|
+
borderLeftWidth/*;框左宽*/?: Property.BorderLeftWidth<TLength> | undefined;
|
|
964
964
|
/**
|
|
965
965
|
* The **`border-right-color`** CSS property sets the color of an element's right border. It can also be set with the shorthand CSS properties `border-color` or `border-right`.
|
|
966
966
|
*
|
|
@@ -1329,7 +1329,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
1329
1329
|
*
|
|
1330
1330
|
* @see https://developer.mozilla.org/docs/Web/CSS/color
|
|
1331
1331
|
*/
|
|
1332
|
-
color
|
|
1332
|
+
color/*;颜色*/?: Property.Color | undefined;
|
|
1333
1333
|
/**
|
|
1334
1334
|
* The **`print-color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
|
|
1335
1335
|
*
|
|
@@ -3679,7 +3679,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
3679
3679
|
*
|
|
3680
3680
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-top
|
|
3681
3681
|
*/
|
|
3682
|
-
paddingTop
|
|
3682
|
+
paddingTop/*;内衬上*/?: Property.PaddingTop<TLength> | undefined;
|
|
3683
3683
|
/**
|
|
3684
3684
|
* The **`page-break-after`** CSS property adjusts page breaks _after_ the current element.
|
|
3685
3685
|
*
|
|
@@ -20268,7 +20268,7 @@ export namespace AtRule {
|
|
|
20268
20268
|
|
|
20269
20269
|
type LineGapOverride = "normal" | (string & {});
|
|
20270
20270
|
|
|
20271
|
-
type Bleed<TLength> = TLength | "auto"
|
|
20271
|
+
type Bleed<TLength> = TLength | "auto"/*;自动*/;
|
|
20272
20272
|
|
|
20273
20273
|
type Marks = "crop" | "cross" | "none" | (string & {});
|
|
20274
20274
|
|
|
@@ -20464,16 +20464,16 @@ export namespace DataType {
|
|
|
20464
20464
|
type MaskingMode = "alpha" | "luminance" | "match-source";
|
|
20465
20465
|
|
|
20466
20466
|
type NamedColor =
|
|
20467
|
-
| "aliceblue"
|
|
20468
|
-
| "antiquewhite"
|
|
20469
|
-
| "aqua"
|
|
20470
|
-
| "aquamarine"
|
|
20471
|
-
| "azure"
|
|
20472
|
-
| "beige"
|
|
20467
|
+
| "aliceblue"/*;艾丽丝蓝*/
|
|
20468
|
+
| "antiquewhite"/*;古白*/
|
|
20469
|
+
| "aqua"/*;浅绿*/
|
|
20470
|
+
| "aquamarine"/*;浅蓝色*/
|
|
20471
|
+
| "azure"/*;天青*/
|
|
20472
|
+
| "beige"/*;米黄*/
|
|
20473
20473
|
| "bisque"
|
|
20474
|
-
| "black"
|
|
20474
|
+
| "black"/*;黑*/
|
|
20475
20475
|
| "blanchedalmond"
|
|
20476
|
-
| "blue"
|
|
20476
|
+
| "blue"/*;蓝*/
|
|
20477
20477
|
| "blueviolet"
|
|
20478
20478
|
| "brown"
|
|
20479
20479
|
| "burlywood"
|
|
@@ -20512,13 +20512,13 @@ export namespace DataType {
|
|
|
20512
20512
|
| "firebrick"
|
|
20513
20513
|
| "floralwhite"
|
|
20514
20514
|
| "forestgreen"
|
|
20515
|
-
| "fuchsia"
|
|
20515
|
+
| "fuchsia"/*;樱红*/
|
|
20516
20516
|
| "gainsboro"
|
|
20517
20517
|
| "ghostwhite"
|
|
20518
20518
|
| "gold"
|
|
20519
20519
|
| "goldenrod"
|
|
20520
|
-
| "gray"
|
|
20521
|
-
| "green"
|
|
20520
|
+
| "gray"/*;灰*/
|
|
20521
|
+
| "green"/*;绿*/
|
|
20522
20522
|
| "greenyellow"
|
|
20523
20523
|
| "grey"
|
|
20524
20524
|
| "honeydew"
|
|
@@ -20546,11 +20546,11 @@ export namespace DataType {
|
|
|
20546
20546
|
| "lightslategrey"
|
|
20547
20547
|
| "lightsteelblue"
|
|
20548
20548
|
| "lightyellow"
|
|
20549
|
-
| "lime"
|
|
20549
|
+
| "lime"/*;青柠 */
|
|
20550
20550
|
| "limegreen"
|
|
20551
20551
|
| "linen"
|
|
20552
20552
|
| "magenta"
|
|
20553
|
-
| "maroon"
|
|
20553
|
+
| "maroon"/*;褐红*/
|
|
20554
20554
|
| "mediumaquamarine"
|
|
20555
20555
|
| "mediumblue"
|
|
20556
20556
|
| "mediumorchid"
|
|
@@ -20565,11 +20565,11 @@ export namespace DataType {
|
|
|
20565
20565
|
| "mistyrose"
|
|
20566
20566
|
| "moccasin"
|
|
20567
20567
|
| "navajowhite"
|
|
20568
|
-
| "navy"
|
|
20568
|
+
| "navy"/*;海军蓝*/
|
|
20569
20569
|
| "oldlace"
|
|
20570
|
-
| "olive"
|
|
20570
|
+
| "olive"/*;橄榄*/
|
|
20571
20571
|
| "olivedrab"
|
|
20572
|
-
| "orange"
|
|
20572
|
+
| "orange"/*;橙*/
|
|
20573
20573
|
| "orangered"
|
|
20574
20574
|
| "orchid"
|
|
20575
20575
|
| "palegoldenrod"
|
|
@@ -20582,9 +20582,9 @@ export namespace DataType {
|
|
|
20582
20582
|
| "pink"
|
|
20583
20583
|
| "plum"
|
|
20584
20584
|
| "powderblue"
|
|
20585
|
-
| "purple"
|
|
20585
|
+
| "purple"/*;紫*/
|
|
20586
20586
|
| "rebeccapurple"
|
|
20587
|
-
| "red"
|
|
20587
|
+
| "red"/*;红*/
|
|
20588
20588
|
| "rosybrown"
|
|
20589
20589
|
| "royalblue"
|
|
20590
20590
|
| "saddlebrown"
|
|
@@ -20593,7 +20593,7 @@ export namespace DataType {
|
|
|
20593
20593
|
| "seagreen"
|
|
20594
20594
|
| "seashell"
|
|
20595
20595
|
| "sienna"
|
|
20596
|
-
| "silver"
|
|
20596
|
+
| "silver"/*;银*/
|
|
20597
20597
|
| "skyblue"
|
|
20598
20598
|
| "slateblue"
|
|
20599
20599
|
| "slategray"
|
|
@@ -20602,16 +20602,16 @@ export namespace DataType {
|
|
|
20602
20602
|
| "springgreen"
|
|
20603
20603
|
| "steelblue"
|
|
20604
20604
|
| "tan"
|
|
20605
|
-
| "teal"
|
|
20605
|
+
| "teal"/*;蓝绿*/
|
|
20606
20606
|
| "thistle"
|
|
20607
20607
|
| "tomato"
|
|
20608
|
-
| "transparent"
|
|
20608
|
+
| "transparent"/*;透*/
|
|
20609
20609
|
| "turquoise"
|
|
20610
20610
|
| "violet"
|
|
20611
20611
|
| "wheat"
|
|
20612
|
-
| "white"
|
|
20612
|
+
| "white"/*;白*/
|
|
20613
20613
|
| "whitesmoke"
|
|
20614
|
-
| "yellow"
|
|
20614
|
+
| "yellow"/*;黄*/
|
|
20615
20615
|
| "yellowgreen";
|
|
20616
20616
|
|
|
20617
20617
|
type PageSize = "A3" | "A4" | "A5" | "B4" | "B5" | "JIS-B4" | "JIS-B5" | "ledger" | "legal" | "letter";
|