Skip to content

Commit 768acff

Browse files
author
github-actions[bot]
committed
chore: update package version
1 parent 071498f commit 768acff

2 files changed

Lines changed: 29 additions & 46 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"changes":{"package.json":"Patch"},"note":"chore: update package version","date":"2026-05-07T00:42:51.600094649Z"}

src/index.d.ts

Lines changed: 28 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,12 @@ export interface StandardLonghandProperties {
4545
baselineShift?: Property.BaselineShift | undefined
4646
baselineSource?: Property.BaselineSource | undefined
4747
blockSize?: Property.BlockSize | undefined
48-
borderBlockColor?: Property.BorderBlockColor | undefined
4948
borderBlockEndColor?: Property.BorderBlockEndColor | undefined
5049
borderBlockEndStyle?: Property.BorderBlockEndStyle | undefined
5150
borderBlockEndWidth?: Property.BorderBlockEndWidth | undefined
5251
borderBlockStartColor?: Property.BorderBlockStartColor | undefined
5352
borderBlockStartStyle?: Property.BorderBlockStartStyle | undefined
5453
borderBlockStartWidth?: Property.BorderBlockStartWidth | undefined
55-
borderBlockStyle?: Property.BorderBlockStyle | undefined
56-
borderBlockWidth?: Property.BorderBlockWidth | undefined
5754
borderBottomColor?: Property.BorderBottomColor | undefined
5855
borderBottomLeftRadius?: Property.BorderBottomLeftRadius | undefined
5956
borderBottomRightRadius?: Property.BorderBottomRightRadius | undefined
@@ -67,15 +64,12 @@ export interface StandardLonghandProperties {
6764
borderImageSlice?: Property.BorderImageSlice | undefined
6865
borderImageSource?: Property.BorderImageSource | undefined
6966
borderImageWidth?: Property.BorderImageWidth | undefined
70-
borderInlineColor?: Property.BorderInlineColor | undefined
7167
borderInlineEndColor?: Property.BorderInlineEndColor | undefined
7268
borderInlineEndStyle?: Property.BorderInlineEndStyle | undefined
7369
borderInlineEndWidth?: Property.BorderInlineEndWidth | undefined
7470
borderInlineStartColor?: Property.BorderInlineStartColor | undefined
7571
borderInlineStartStyle?: Property.BorderInlineStartStyle | undefined
7672
borderInlineStartWidth?: Property.BorderInlineStartWidth | undefined
77-
borderInlineStyle?: Property.BorderInlineStyle | undefined
78-
borderInlineWidth?: Property.BorderInlineWidth | undefined
7973
borderLeftColor?: Property.BorderLeftColor | undefined
8074
borderLeftStyle?: Property.BorderLeftStyle | undefined
8175
borderLeftWidth?: Property.BorderLeftWidth | undefined
@@ -510,14 +504,20 @@ export interface StandardShorthandProperties {
510504
backgroundPosition?: Property.BackgroundPosition | undefined
511505
border?: Property.Border | undefined
512506
borderBlock?: Property.BorderBlock | undefined
507+
borderBlockColor?: Property.BorderBlockColor | undefined
513508
borderBlockEnd?: Property.BorderBlockEnd | undefined
514509
borderBlockStart?: Property.BorderBlockStart | undefined
510+
borderBlockStyle?: Property.BorderBlockStyle | undefined
511+
borderBlockWidth?: Property.BorderBlockWidth | undefined
515512
borderBottom?: Property.BorderBottom | undefined
516513
borderColor?: Property.BorderColor | undefined
517514
borderImage?: Property.BorderImage | undefined
518515
borderInline?: Property.BorderInline | undefined
516+
borderInlineColor?: Property.BorderInlineColor | undefined
519517
borderInlineEnd?: Property.BorderInlineEnd | undefined
520518
borderInlineStart?: Property.BorderInlineStart | undefined
519+
borderInlineStyle?: Property.BorderInlineStyle | undefined
520+
borderInlineWidth?: Property.BorderInlineWidth | undefined
521521
borderLeft?: Property.BorderLeft | undefined
522522
borderRadius?: Property.BorderRadius | undefined
523523
borderRight?: Property.BorderRight | undefined
@@ -1049,10 +1049,6 @@ export namespace Property {
10491049
| Globals
10501050
| (string & {})
10511051
export type BlockSize = Property.Width | Globals | (string & {})
1052-
export type BorderBlockColor =
1053-
| Property.BorderTopColor
1054-
| Globals
1055-
| (string & {})
10561052
export type BorderBlockEndColor =
10571053
| Property.BorderTopColor
10581054
| Globals
@@ -1077,14 +1073,6 @@ export namespace Property {
10771073
| Property.BorderTopWidth
10781074
| Globals
10791075
| (string & {})
1080-
export type BorderBlockStyle =
1081-
| Property.BorderTopStyle
1082-
| Globals
1083-
| (string & {})
1084-
export type BorderBlockWidth =
1085-
| Property.BorderTopWidth
1086-
| Globals
1087-
| (string & {})
10881076
export type BorderBottomColor =
10891077
| Property.BorderTopColor
10901078
| Globals
@@ -1124,10 +1112,6 @@ export namespace Property {
11241112
| 'auto'
11251113
| Globals
11261114
| (string & {})
1127-
export type BorderInlineColor =
1128-
| Property.BorderTopColor
1129-
| Globals
1130-
| (string & {})
11311115
export type BorderInlineEndColor =
11321116
| Property.BorderTopColor
11331117
| Globals
@@ -1152,14 +1136,6 @@ export namespace Property {
11521136
| Property.BorderTopWidth
11531137
| Globals
11541138
| (string & {})
1155-
export type BorderInlineStyle =
1156-
| Property.BorderTopStyle
1157-
| Globals
1158-
| (string & {})
1159-
export type BorderInlineWidth =
1160-
| Property.BorderTopWidth
1161-
| Globals
1162-
| (string & {})
11631139
export type BorderLeftColor = TColor | Globals | (string & {})
11641140
export type BorderLeftStyle = TLineStyle | Globals | (string & {})
11651141
export type BorderLeftWidth = TLineWidth | Globals | (string & {})
@@ -1372,8 +1348,8 @@ export namespace Property {
13721348
export type ColumnGap = 'normal' | TLengthPercentage | Globals | (string & {})
13731349
export type ColumnHeight = 'auto' | number | Globals | (string & {})
13741350
export type ColumnRuleColor = TColor | Globals | (string & {})
1375-
export type ColumnRuleStyle = Property.BorderStyle | Globals | (string & {})
1376-
export type ColumnRuleWidth = Property.BorderWidth | Globals | (string & {})
1351+
export type ColumnRuleStyle = TLineStyle | Globals | (string & {})
1352+
export type ColumnRuleWidth = TLineWidth | Globals | (string & {})
13771353
export type ColumnSpan = 'none' | 'all' | Globals | (string & {})
13781354
export type ColumnWidth = 'auto' | number | Globals | (string & {})
13791355
export type ColumnWrap = 'auto' | 'nowrap' | 'wrap' | Globals | (string & {})
@@ -2153,9 +2129,11 @@ export namespace Property {
21532129
| Globals
21542130
| (string & {})
21552131
export type PositionAnchor =
2132+
| 'normal'
21562133
| 'auto'
21572134
| 'none'
21582135
| TAnchorName
2136+
| 'match-parent'
21592137
| Globals
21602138
| (string & {})
21612139
export type PositionArea = 'none' | TPositionArea | Globals | (string & {})
@@ -2816,17 +2794,19 @@ export namespace Property {
28162794
| TColor
28172795
| Globals
28182796
| (string & {})
2819-
export type BorderBlock = Property.BorderBlockStart | Globals | (string & {})
2820-
export type BorderBlockEnd =
2821-
| Property.BorderTopWidth
2797+
export type BorderBlock = Property.BorderTop | Globals | (string & {})
2798+
export type BorderBlockColor =
2799+
| Property.BorderTopColor
2800+
| Globals
2801+
| (string & {})
2802+
export type BorderBlockEnd = Property.BorderTop | Globals | (string & {})
2803+
export type BorderBlockStart = Property.BorderTop | Globals | (string & {})
2804+
export type BorderBlockStyle =
28222805
| Property.BorderTopStyle
2823-
| TColor
28242806
| Globals
28252807
| (string & {})
2826-
export type BorderBlockStart =
2808+
export type BorderBlockWidth =
28272809
| Property.BorderTopWidth
2828-
| Property.BorderTopStyle
2829-
| TColor
28302810
| Globals
28312811
| (string & {})
28322812
export type BorderBottom =
@@ -2845,17 +2825,19 @@ export namespace Property {
28452825
| Property.BorderImageRepeat
28462826
| Globals
28472827
| (string & {})
2848-
export type BorderInline = Property.BorderBlockStart | Globals | (string & {})
2849-
export type BorderInlineEnd =
2850-
| Property.BorderTopWidth
2828+
export type BorderInline = Property.BorderTop | Globals | (string & {})
2829+
export type BorderInlineColor =
2830+
| Property.BorderTopColor
2831+
| Globals
2832+
| (string & {})
2833+
export type BorderInlineEnd = Property.BorderTop | Globals | (string & {})
2834+
export type BorderInlineStart = Property.BorderTop | Globals | (string & {})
2835+
export type BorderInlineStyle =
28512836
| Property.BorderTopStyle
2852-
| TColor
28532837
| Globals
28542838
| (string & {})
2855-
export type BorderInlineStart =
2839+
export type BorderInlineWidth =
28562840
| Property.BorderTopWidth
2857-
| Property.BorderTopStyle
2858-
| TColor
28592841
| Globals
28602842
| (string & {})
28612843
export type BorderLeft =

0 commit comments

Comments
 (0)