@handlewithcare/react-prosemirror 3.1.0-tiptap.53 → 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/README.md +3 -0
- package/dist/cjs/ReactEditorView.js +18 -7
- package/dist/cjs/components/ChildNodeViews.js +10 -16
- package/dist/cjs/components/CursorWrapper.js +6 -4
- package/dist/cjs/components/ProseMirror.js +12 -4
- package/dist/cjs/components/TextNodeView.js +7 -216
- package/dist/cjs/components/TrailingHackView.js +0 -70
- package/dist/cjs/components/nodes/NodeView.js +40 -4
- package/dist/cjs/contexts/ChildDescriptionsContext.js +1 -3
- package/dist/cjs/contexts/CompositionContext.js +14 -0
- package/dist/cjs/hooks/useMarkViewDescription.js +2 -63
- package/dist/cjs/hooks/useNodeViewDescription.js +2 -66
- package/dist/cjs/plugins/beforeInputPlugin.js +130 -120
- package/dist/cjs/plugins/reactKeys.js +16 -4
- package/dist/cjs/tiptap/tiptapNodeView.js +10 -9
- package/dist/cjs/viewdesc.js +4 -1
- package/dist/esm/ReactEditorView.js +18 -7
- package/dist/esm/components/ChildNodeViews.js +12 -18
- package/dist/esm/components/CursorWrapper.js +6 -4
- package/dist/esm/components/ProseMirror.js +12 -4
- package/dist/esm/components/TextNodeView.js +5 -165
- package/dist/esm/components/TrailingHackView.js +1 -71
- package/dist/esm/components/nodes/NodeView.js +38 -5
- package/dist/esm/contexts/ChildDescriptionsContext.js +1 -3
- package/dist/esm/contexts/CompositionContext.js +4 -0
- package/dist/esm/hooks/useIsEditorStatic.js +4 -1
- package/dist/esm/hooks/useMarkViewDescription.js +3 -64
- package/dist/esm/hooks/useNodeViewDescription.js +3 -67
- package/dist/esm/plugins/beforeInputPlugin.js +131 -121
- package/dist/esm/plugins/reactKeys.js +16 -4
- package/dist/esm/tiptap/ReactProseMirrorNodeView.js +1 -1
- package/dist/esm/tiptap/TiptapEditorContent.js +8 -1
- package/dist/esm/tiptap/hooks/useIsInReactProseMirror.js +5 -1
- package/dist/esm/tiptap/tiptapNodeView.js +13 -14
- package/dist/esm/viewdesc.js +4 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/ReactEditorView.d.ts +8 -4
- package/dist/types/components/ChildNodeViews.d.ts +2 -2
- package/dist/types/components/CursorWrapper.d.ts +1 -1
- package/dist/types/components/TextNodeView.d.ts +6 -18
- package/dist/types/components/TrailingHackView.d.ts +1 -1
- package/dist/types/components/marks/DefaultMarkView.d.ts +1 -1
- package/dist/types/components/marks/MarkView.d.ts +1 -1
- package/dist/types/components/marks/MarkViewConstructorView.d.ts +1 -1
- package/dist/types/components/marks/ReactMarkView.d.ts +1 -1
- package/dist/types/components/nodes/DefaultNodeView.d.ts +1 -1
- package/dist/types/components/nodes/NodeView.d.ts +3 -1
- package/dist/types/components/nodes/NodeViewConstructorView.d.ts +1 -1
- package/dist/types/components/nodes/ReactNodeView.d.ts +1 -1
- package/dist/types/contexts/ChildDescriptionsContext.d.ts +1 -2
- package/dist/types/contexts/CompositionContext.d.ts +4 -0
- package/dist/types/hooks/useEditor.d.ts +2 -2
- package/dist/types/hooks/useIsEditorStatic.d.ts +4 -0
- package/dist/types/hooks/useMarkViewDescription.d.ts +1 -2
- package/dist/types/hooks/useNodeViewDescription.d.ts +1 -2
- package/dist/types/hooks/useReactKeys.d.ts +2 -5
- package/dist/types/plugins/reactKeys.d.ts +5 -5
- package/dist/types/props.d.ts +225 -225
- package/dist/types/tiptap/ReactProseMirrorNodeView.d.ts +1 -1
- package/dist/types/tiptap/TiptapEditorContent.d.ts +10 -1
- package/dist/types/tiptap/hooks/useIsInReactProseMirror.d.ts +5 -0
- package/dist/types/tiptap/tiptapNodeView.d.ts +5 -6
- package/dist/types/viewdesc.d.ts +2 -1
- package/package.json +20 -6
- package/dist/cjs/plugins/componentEventListeners.js +0 -28
- package/dist/cjs/plugins/componentEventListenersPlugin.js +0 -35
- package/dist/cjs/tiptap/utils/ssrJSDOMPatch.js +0 -59
- package/dist/esm/plugins/componentEventListeners.js +0 -18
- package/dist/esm/plugins/componentEventListenersPlugin.js +0 -25
- package/dist/esm/tiptap/utils/ssrJSDOMPatch.js +0 -56
- package/dist/types/plugins/componentEventListeners.d.ts +0 -3
- package/dist/types/plugins/componentEventListenersPlugin.d.ts +0 -4
- package/dist/types/tiptap/utils/ssrJSDOMPatch.d.ts +0 -1
package/dist/types/props.d.ts
CHANGED
|
@@ -33,12 +33,12 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
33
33
|
backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
|
|
34
34
|
backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
|
|
35
35
|
backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
36
|
-
backgroundPositionX?: string | number | undefined;
|
|
37
|
-
backgroundPositionY?: string | number | undefined;
|
|
36
|
+
backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
|
|
37
|
+
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
38
38
|
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
39
|
-
backgroundSize?: string | number | undefined;
|
|
39
|
+
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
40
40
|
blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
|
|
41
|
-
blockSize?: string | number | undefined;
|
|
41
|
+
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
42
42
|
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
43
43
|
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
44
44
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
@@ -49,18 +49,18 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
49
49
|
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
50
50
|
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
51
51
|
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
52
|
-
borderBottomLeftRadius?: string | number | undefined;
|
|
53
|
-
borderBottomRightRadius?: string | number | undefined;
|
|
52
|
+
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
53
|
+
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
54
54
|
borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
|
|
55
55
|
borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
|
|
56
56
|
borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
|
|
57
|
-
borderEndEndRadius?: string | number | undefined;
|
|
58
|
-
borderEndStartRadius?: string | number | undefined;
|
|
59
|
-
borderImageOutset?: string | number | undefined;
|
|
57
|
+
borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
|
|
58
|
+
borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
|
|
59
|
+
borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
|
|
60
60
|
borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
|
|
61
61
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
62
62
|
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
63
|
-
borderImageWidth?: string | number | undefined;
|
|
63
|
+
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
64
64
|
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
65
65
|
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
66
66
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -76,15 +76,15 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
76
76
|
borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
|
|
77
77
|
borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
|
|
78
78
|
borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
|
|
79
|
-
borderSpacing?: string | number | undefined;
|
|
80
|
-
borderStartEndRadius?: string | number | undefined;
|
|
81
|
-
borderStartStartRadius?: string | number | undefined;
|
|
79
|
+
borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
|
|
80
|
+
borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
|
|
81
|
+
borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
|
|
82
82
|
borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
|
|
83
|
-
borderTopLeftRadius?: string | number | undefined;
|
|
84
|
-
borderTopRightRadius?: string | number | undefined;
|
|
83
|
+
borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
84
|
+
borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
85
85
|
borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
|
|
86
86
|
borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
|
|
87
|
-
bottom?: string | number | undefined;
|
|
87
|
+
bottom?: import("csstype").Property.Bottom<string | number> | undefined;
|
|
88
88
|
boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
89
89
|
boxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
90
90
|
boxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
@@ -100,10 +100,10 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
100
100
|
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
101
101
|
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
102
102
|
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
103
|
-
columnGap?: string | number | undefined;
|
|
103
|
+
columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
104
104
|
columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
105
105
|
columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
106
|
-
columnRuleWidth?: string | number | undefined;
|
|
106
|
+
columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
107
107
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
108
108
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
109
109
|
contain?: import("csstype").Property.Contain | undefined;
|
|
@@ -117,7 +117,7 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
117
117
|
display?: import("csstype").Property.Display | undefined;
|
|
118
118
|
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
119
119
|
filter?: import("csstype").Property.Filter | undefined;
|
|
120
|
-
flexBasis?: string | number | undefined;
|
|
120
|
+
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
121
121
|
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
122
122
|
flexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
123
123
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
@@ -128,7 +128,7 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
128
128
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
129
129
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
130
130
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
131
|
-
fontSize?: string | number | undefined;
|
|
131
|
+
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
132
132
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
133
133
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
134
134
|
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
@@ -144,91 +144,91 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
144
144
|
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
145
145
|
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
146
146
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
147
|
-
gridAutoColumns?: string | number | undefined;
|
|
147
|
+
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
148
148
|
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
149
|
-
gridAutoRows?: string | number | undefined;
|
|
149
|
+
gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
|
|
150
150
|
gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
|
|
151
151
|
gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
|
|
152
152
|
gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
|
|
153
153
|
gridRowStart?: import("csstype").Property.GridRowStart | undefined;
|
|
154
154
|
gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
|
|
155
|
-
gridTemplateColumns?: string | number | undefined;
|
|
156
|
-
gridTemplateRows?: string | number | undefined;
|
|
155
|
+
gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
|
|
156
|
+
gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
|
|
157
157
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
158
|
-
height?: string | number | undefined;
|
|
158
|
+
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
159
159
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
160
160
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
161
161
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
162
162
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
163
163
|
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
164
164
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
165
|
-
inlineSize?: string | number | undefined;
|
|
165
|
+
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
166
166
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
167
|
-
inset?: string | number | undefined;
|
|
168
|
-
insetBlock?: string | number | undefined;
|
|
169
|
-
insetBlockEnd?: string | number | undefined;
|
|
170
|
-
insetBlockStart?: string | number | undefined;
|
|
171
|
-
insetInline?: string | number | undefined;
|
|
172
|
-
insetInlineEnd?: string | number | undefined;
|
|
173
|
-
insetInlineStart?: string | number | undefined;
|
|
167
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
168
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
169
|
+
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
170
|
+
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
171
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
172
|
+
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
173
|
+
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
174
174
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
175
175
|
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
176
176
|
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
177
177
|
justifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
178
178
|
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
179
|
-
left?: string | number | undefined;
|
|
179
|
+
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
180
180
|
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
181
181
|
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
182
|
-
lineHeight?: string | number | undefined;
|
|
182
|
+
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
183
183
|
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
184
184
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
185
185
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
186
186
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
187
|
-
marginBlock?: string | number | undefined;
|
|
188
|
-
marginBlockEnd?: string | number | undefined;
|
|
189
|
-
marginBlockStart?: string | number | undefined;
|
|
190
|
-
marginBottom?: string | number | undefined;
|
|
191
|
-
marginInline?: string | number | undefined;
|
|
192
|
-
marginInlineEnd?: string | number | undefined;
|
|
193
|
-
marginInlineStart?: string | number | undefined;
|
|
194
|
-
marginLeft?: string | number | undefined;
|
|
195
|
-
marginRight?: string | number | undefined;
|
|
196
|
-
marginTop?: string | number | undefined;
|
|
187
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
188
|
+
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
189
|
+
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
190
|
+
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
191
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
192
|
+
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
193
|
+
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
194
|
+
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
195
|
+
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
196
|
+
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
197
197
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
198
|
-
maskBorderOutset?: string | number | undefined;
|
|
198
|
+
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
199
199
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
200
200
|
maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
|
|
201
201
|
maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
|
|
202
|
-
maskBorderWidth?: string | number | undefined;
|
|
202
|
+
maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
|
|
203
203
|
maskClip?: import("csstype").Property.MaskClip | undefined;
|
|
204
204
|
maskComposite?: import("csstype").Property.MaskComposite | undefined;
|
|
205
205
|
maskImage?: import("csstype").Property.MaskImage | undefined;
|
|
206
206
|
maskMode?: import("csstype").Property.MaskMode | undefined;
|
|
207
207
|
maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
|
|
208
|
-
maskPosition?: string | number | undefined;
|
|
208
|
+
maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
|
|
209
209
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
210
|
-
maskSize?: string | number | undefined;
|
|
210
|
+
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
211
211
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
212
212
|
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
213
213
|
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
214
214
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
215
|
-
maxBlockSize?: string | number | undefined;
|
|
216
|
-
maxHeight?: string | number | undefined;
|
|
217
|
-
maxInlineSize?: string | number | undefined;
|
|
215
|
+
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
216
|
+
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
217
|
+
maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
|
|
218
218
|
maxLines?: import("csstype").Property.MaxLines | undefined;
|
|
219
|
-
maxWidth?: string | number | undefined;
|
|
220
|
-
minBlockSize?: string | number | undefined;
|
|
221
|
-
minHeight?: string | number | undefined;
|
|
222
|
-
minInlineSize?: string | number | undefined;
|
|
223
|
-
minWidth?: string | number | undefined;
|
|
219
|
+
maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
|
|
220
|
+
minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
|
|
221
|
+
minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
|
|
222
|
+
minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
|
|
223
|
+
minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
|
|
224
224
|
mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
|
|
225
|
-
motionDistance?: string | number | undefined;
|
|
225
|
+
motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
226
226
|
motionPath?: import("csstype").Property.OffsetPath | undefined;
|
|
227
227
|
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
228
228
|
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
229
|
-
objectPosition?: string | number | undefined;
|
|
230
|
-
offsetAnchor?: string | number | undefined;
|
|
231
|
-
offsetDistance?: string | number | undefined;
|
|
229
|
+
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
230
|
+
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
231
|
+
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
232
232
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
233
233
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
234
234
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
@@ -242,7 +242,7 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
242
242
|
overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
|
|
243
243
|
overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
|
|
244
244
|
overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
|
|
245
|
-
overflowClipMargin?: string | number | undefined;
|
|
245
|
+
overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
|
|
246
246
|
overflowInline?: import("csstype").Property.OverflowInline | undefined;
|
|
247
247
|
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
248
248
|
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
@@ -251,60 +251,60 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
251
251
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
252
252
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
253
253
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
254
|
-
paddingBlock?: string | number | undefined;
|
|
255
|
-
paddingBlockEnd?: string | number | undefined;
|
|
256
|
-
paddingBlockStart?: string | number | undefined;
|
|
257
|
-
paddingBottom?: string | number | undefined;
|
|
258
|
-
paddingInline?: string | number | undefined;
|
|
259
|
-
paddingInlineEnd?: string | number | undefined;
|
|
260
|
-
paddingInlineStart?: string | number | undefined;
|
|
261
|
-
paddingLeft?: string | number | undefined;
|
|
262
|
-
paddingRight?: string | number | undefined;
|
|
263
|
-
paddingTop?: string | number | undefined;
|
|
254
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
255
|
+
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
256
|
+
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
257
|
+
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
258
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
259
|
+
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
260
|
+
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
261
|
+
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
262
|
+
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
263
|
+
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
264
264
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
265
265
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
266
266
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
267
267
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
268
268
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
269
|
-
perspectiveOrigin?: string | number | undefined;
|
|
269
|
+
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
270
270
|
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
271
271
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
272
272
|
position?: import("csstype").Property.Position | undefined;
|
|
273
273
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
274
274
|
quotes?: import("csstype").Property.Quotes | undefined;
|
|
275
275
|
resize?: import("csstype").Property.Resize | undefined;
|
|
276
|
-
right?: string | number | undefined;
|
|
276
|
+
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
277
277
|
rotate?: import("csstype").Property.Rotate | undefined;
|
|
278
|
-
rowGap?: string | number | undefined;
|
|
278
|
+
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
279
279
|
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
280
280
|
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
281
281
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
282
282
|
scale?: import("csstype").Property.Scale | undefined;
|
|
283
283
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
284
|
-
scrollMargin?: string | number | undefined;
|
|
285
|
-
scrollMarginBlock?: string | number | undefined;
|
|
284
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
285
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
286
286
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
287
287
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
288
288
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
289
|
-
scrollMarginInline?: string | number | undefined;
|
|
289
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
290
290
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
291
291
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
292
292
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
293
293
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
294
294
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
295
|
-
scrollPadding?: string | number | undefined;
|
|
296
|
-
scrollPaddingBlock?: string | number | undefined;
|
|
297
|
-
scrollPaddingBlockEnd?: string | number | undefined;
|
|
298
|
-
scrollPaddingBlockStart?: string | number | undefined;
|
|
299
|
-
scrollPaddingBottom?: string | number | undefined;
|
|
300
|
-
scrollPaddingInline?: string | number | undefined;
|
|
301
|
-
scrollPaddingInlineEnd?: string | number | undefined;
|
|
302
|
-
scrollPaddingInlineStart?: string | number | undefined;
|
|
303
|
-
scrollPaddingLeft?: string | number | undefined;
|
|
304
|
-
scrollPaddingRight?: string | number | undefined;
|
|
305
|
-
scrollPaddingTop?: string | number | undefined;
|
|
295
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
296
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
297
|
+
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
298
|
+
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
299
|
+
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
300
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
301
|
+
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
302
|
+
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
303
|
+
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
304
|
+
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
305
|
+
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
306
306
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
307
|
-
scrollSnapMargin?: string | number | undefined;
|
|
307
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
308
308
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
309
309
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
310
310
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
@@ -315,9 +315,9 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
315
315
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
316
316
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
317
317
|
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
318
|
-
shapeMargin?: string | number | undefined;
|
|
318
|
+
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
319
319
|
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
320
|
-
tabSize?: string | number | undefined;
|
|
320
|
+
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
321
321
|
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
322
322
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
323
323
|
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
@@ -327,11 +327,11 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
327
327
|
textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
|
|
328
328
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
329
329
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
330
|
-
textDecorationThickness?: string | number | undefined;
|
|
330
|
+
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
331
331
|
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
332
332
|
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
333
333
|
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
334
|
-
textIndent?: string | number | undefined;
|
|
334
|
+
textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
|
|
335
335
|
textJustify?: import("csstype").Property.TextJustify | undefined;
|
|
336
336
|
textOrientation?: import("csstype").Property.TextOrientation | undefined;
|
|
337
337
|
textOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
@@ -339,26 +339,26 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
339
339
|
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
340
340
|
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
341
341
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
342
|
-
textUnderlineOffset?: string | number | undefined;
|
|
342
|
+
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
343
343
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
344
|
-
top?: string | number | undefined;
|
|
344
|
+
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
345
345
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
346
346
|
transform?: import("csstype").Property.Transform | undefined;
|
|
347
347
|
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
348
|
-
transformOrigin?: string | number | undefined;
|
|
348
|
+
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
349
349
|
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
350
350
|
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
351
351
|
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
352
352
|
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
353
353
|
transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
354
|
-
translate?: string | number | undefined;
|
|
354
|
+
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
355
355
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
356
356
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
357
|
-
verticalAlign?: string | number | undefined;
|
|
357
|
+
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
358
358
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
359
359
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
360
360
|
widows?: import("csstype").Property.Widows | undefined;
|
|
361
|
-
width?: string | number | undefined;
|
|
361
|
+
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
362
362
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
363
363
|
wordBreak?: import("csstype").Property.WordBreak | undefined;
|
|
364
364
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
@@ -366,32 +366,32 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
366
366
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
367
367
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
368
368
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
369
|
-
all?: import("csstype").
|
|
369
|
+
all?: import("csstype").Property.All | undefined;
|
|
370
370
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
371
|
-
background?: string | number | undefined;
|
|
372
|
-
backgroundPosition?: string | number | undefined;
|
|
373
|
-
border?: string | number | undefined;
|
|
374
|
-
borderBlock?: string | number | undefined;
|
|
375
|
-
borderBlockEnd?: string | number | undefined;
|
|
376
|
-
borderBlockStart?: string | number | undefined;
|
|
377
|
-
borderBottom?: string | number | undefined;
|
|
371
|
+
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
372
|
+
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
373
|
+
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
374
|
+
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
375
|
+
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
376
|
+
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
377
|
+
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
378
378
|
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
379
379
|
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
380
|
-
borderInline?: string | number | undefined;
|
|
381
|
-
borderInlineEnd?: string | number | undefined;
|
|
382
|
-
borderInlineStart?: string | number | undefined;
|
|
383
|
-
borderLeft?: string | number | undefined;
|
|
384
|
-
borderRadius?: string | number | undefined;
|
|
385
|
-
borderRight?: string | number | undefined;
|
|
380
|
+
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
381
|
+
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
382
|
+
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
383
|
+
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
384
|
+
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
385
|
+
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
386
386
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
387
|
-
borderTop?: string | number | undefined;
|
|
388
|
-
borderWidth?: string | number | undefined;
|
|
389
|
-
columnRule?: string | number | undefined;
|
|
390
|
-
columns?: string | number | undefined;
|
|
391
|
-
flex?: string | number | undefined;
|
|
387
|
+
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
388
|
+
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
389
|
+
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
390
|
+
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
391
|
+
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
392
392
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
393
393
|
font?: import("csstype").Property.Font | undefined;
|
|
394
|
-
gap?: string | number | undefined;
|
|
394
|
+
gap?: import("csstype").Property.Gap<string | number> | undefined;
|
|
395
395
|
grid?: import("csstype").Property.Grid | undefined;
|
|
396
396
|
gridArea?: import("csstype").Property.GridArea | undefined;
|
|
397
397
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
@@ -399,18 +399,18 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
399
399
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
400
400
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
401
401
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
402
|
-
margin?: string | number | undefined;
|
|
403
|
-
mask?: string | number | undefined;
|
|
402
|
+
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
403
|
+
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
404
404
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
405
|
-
motion?: string | number | undefined;
|
|
406
|
-
offset?: string | number | undefined;
|
|
407
|
-
outline?: string | number | undefined;
|
|
405
|
+
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
406
|
+
offset?: import("csstype").Property.Offset<string | number> | undefined;
|
|
407
|
+
outline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
408
408
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
409
409
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
410
|
-
padding?: string | number | undefined;
|
|
410
|
+
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
411
411
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
412
412
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
413
|
-
textDecoration?: string | number | undefined;
|
|
413
|
+
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
414
414
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
415
415
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
416
416
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -437,26 +437,26 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
437
437
|
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
438
438
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
439
439
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
440
|
-
MozColumnRuleWidth?: string | number | undefined;
|
|
440
|
+
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
441
441
|
MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
442
442
|
MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
|
|
443
443
|
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
444
444
|
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
445
445
|
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
446
446
|
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
447
|
-
MozMarginEnd?: string | number | undefined;
|
|
448
|
-
MozMarginStart?: string | number | undefined;
|
|
447
|
+
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
448
|
+
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
449
449
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
450
450
|
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
451
|
-
MozPaddingEnd?: string | number | undefined;
|
|
452
|
-
MozPaddingStart?: string | number | undefined;
|
|
451
|
+
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
452
|
+
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
453
453
|
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
454
|
-
MozPerspectiveOrigin?: string | number | undefined;
|
|
454
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
455
455
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
456
|
-
MozTabSize?: string | number | undefined;
|
|
456
|
+
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
457
457
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
458
458
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
459
|
-
MozTransformOrigin?: string | number | undefined;
|
|
459
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
460
460
|
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
461
461
|
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
462
462
|
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
@@ -480,12 +480,12 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
480
480
|
msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
|
|
481
481
|
msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
|
|
482
482
|
msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
|
|
483
|
-
msGridColumns?: string | number | undefined;
|
|
484
|
-
msGridRows?: string | number | undefined;
|
|
483
|
+
msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
|
|
484
|
+
msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
|
|
485
485
|
msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
|
|
486
486
|
msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
|
|
487
487
|
msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
|
|
488
|
-
msHyphenateLimitZone?: string | number | undefined;
|
|
488
|
+
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
489
489
|
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
490
490
|
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
491
491
|
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
@@ -517,7 +517,7 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
517
517
|
msTouchAction?: import("csstype").Property.TouchAction | undefined;
|
|
518
518
|
msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
|
|
519
519
|
msTransform?: import("csstype").Property.Transform | undefined;
|
|
520
|
-
msTransformOrigin?: string | number | undefined;
|
|
520
|
+
msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
521
521
|
msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
522
522
|
msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
523
523
|
msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -544,17 +544,17 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
544
544
|
WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
545
545
|
WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
546
546
|
WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
547
|
-
WebkitBackgroundSize?: string | number | undefined;
|
|
547
|
+
WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
548
548
|
WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
|
|
549
549
|
WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
|
|
550
|
-
WebkitBorderBeforeWidth?: string | number | undefined;
|
|
551
|
-
WebkitBorderBottomLeftRadius?: string | number | undefined;
|
|
552
|
-
WebkitBorderBottomRightRadius?: string | number | undefined;
|
|
550
|
+
WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
|
|
551
|
+
WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
552
|
+
WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
553
553
|
WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
554
|
-
WebkitBorderTopLeftRadius?: string | number | undefined;
|
|
555
|
-
WebkitBorderTopRightRadius?: string | number | undefined;
|
|
554
|
+
WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
555
|
+
WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
556
556
|
WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
557
|
-
WebkitBoxReflect?: string | number | undefined;
|
|
557
|
+
WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
|
|
558
558
|
WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
559
559
|
WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
560
560
|
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
@@ -562,11 +562,11 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
562
562
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
563
563
|
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
564
564
|
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
565
|
-
WebkitColumnRuleWidth?: string | number | undefined;
|
|
565
|
+
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
566
566
|
WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
567
567
|
WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
568
568
|
WebkitFilter?: import("csstype").Property.Filter | undefined;
|
|
569
|
-
WebkitFlexBasis?: string | number | undefined;
|
|
569
|
+
WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
570
570
|
WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
571
571
|
WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
572
572
|
WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
@@ -581,36 +581,36 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
581
581
|
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
582
582
|
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
583
583
|
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
584
|
-
WebkitMarginEnd?: string | number | undefined;
|
|
585
|
-
WebkitMarginStart?: string | number | undefined;
|
|
584
|
+
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
585
|
+
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
586
586
|
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
587
|
-
WebkitMaskBoxImageOutset?: string | number | undefined;
|
|
587
|
+
WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
588
588
|
WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
589
589
|
WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
|
|
590
590
|
WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
|
|
591
|
-
WebkitMaskBoxImageWidth?: string | number | undefined;
|
|
591
|
+
WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
|
|
592
592
|
WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
|
|
593
593
|
WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
|
|
594
594
|
WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
|
|
595
595
|
WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
|
|
596
|
-
WebkitMaskPosition?: string | number | undefined;
|
|
597
|
-
WebkitMaskPositionX?: string | number | undefined;
|
|
598
|
-
WebkitMaskPositionY?: string | number | undefined;
|
|
596
|
+
WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
|
|
597
|
+
WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
|
|
598
|
+
WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
|
|
599
599
|
WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
|
|
600
600
|
WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
|
|
601
601
|
WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
|
|
602
|
-
WebkitMaskSize?: string | number | undefined;
|
|
603
|
-
WebkitMaxInlineSize?: string | number | undefined;
|
|
602
|
+
WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
|
|
603
|
+
WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
|
|
604
604
|
WebkitOrder?: import("csstype").Property.Order | undefined;
|
|
605
605
|
WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
|
|
606
|
-
WebkitPaddingEnd?: string | number | undefined;
|
|
607
|
-
WebkitPaddingStart?: string | number | undefined;
|
|
606
|
+
WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
607
|
+
WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
608
608
|
WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
609
|
-
WebkitPerspectiveOrigin?: string | number | undefined;
|
|
609
|
+
WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
610
610
|
WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
611
611
|
WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
612
612
|
WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
613
|
-
WebkitShapeMargin?: string | number | undefined;
|
|
613
|
+
WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
614
614
|
WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
|
|
615
615
|
WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
|
|
616
616
|
WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
@@ -628,7 +628,7 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
628
628
|
WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
629
629
|
WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
|
|
630
630
|
WebkitTransform?: import("csstype").Property.Transform | undefined;
|
|
631
|
-
WebkitTransformOrigin?: string | number | undefined;
|
|
631
|
+
WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
632
632
|
WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
633
633
|
WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
634
634
|
WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
@@ -639,28 +639,28 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
639
639
|
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
640
640
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
641
641
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
642
|
-
MozColumnRule?: string | number | undefined;
|
|
643
|
-
MozColumns?: string | number | undefined;
|
|
642
|
+
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
643
|
+
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
644
644
|
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
645
645
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
646
646
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
647
|
-
msFlex?: string | number | undefined;
|
|
647
|
+
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
648
648
|
msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
|
|
649
649
|
msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
|
|
650
650
|
msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
|
|
651
651
|
msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
652
652
|
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
653
|
-
WebkitBorderBefore?: string | number | undefined;
|
|
653
|
+
WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
|
|
654
654
|
WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
655
|
-
WebkitBorderRadius?: string | number | undefined;
|
|
656
|
-
WebkitColumnRule?: string | number | undefined;
|
|
657
|
-
WebkitColumns?: string | number | undefined;
|
|
658
|
-
WebkitFlex?: string | number | undefined;
|
|
655
|
+
WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
656
|
+
WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
657
|
+
WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
658
|
+
WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
659
659
|
WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
660
|
-
WebkitMask?: string | number | undefined;
|
|
660
|
+
WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
|
|
661
661
|
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
|
|
662
662
|
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
663
|
-
WebkitTextStroke?: string | number | undefined;
|
|
663
|
+
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
664
664
|
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
665
665
|
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
666
666
|
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
@@ -672,18 +672,18 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
672
672
|
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
673
673
|
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
674
674
|
clip?: import("csstype").Property.Clip | undefined;
|
|
675
|
-
gridColumnGap?: string | number | undefined;
|
|
676
|
-
gridGap?: string | number | undefined;
|
|
677
|
-
gridRowGap?: string | number | undefined;
|
|
675
|
+
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
676
|
+
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
677
|
+
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
678
678
|
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
679
|
-
offsetBlock?: string | number | undefined;
|
|
680
|
-
offsetBlockEnd?: string | number | undefined;
|
|
681
|
-
offsetBlockStart?: string | number | undefined;
|
|
682
|
-
offsetInline?: string | number | undefined;
|
|
683
|
-
offsetInlineEnd?: string | number | undefined;
|
|
684
|
-
offsetInlineStart?: string | number | undefined;
|
|
685
|
-
scrollSnapCoordinate?: string | number | undefined;
|
|
686
|
-
scrollSnapDestination?: string | number | undefined;
|
|
679
|
+
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
680
|
+
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
681
|
+
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
682
|
+
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
683
|
+
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
684
|
+
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
685
|
+
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
686
|
+
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
687
687
|
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
688
688
|
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
689
689
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
@@ -702,13 +702,13 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
702
702
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
703
703
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
704
704
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
705
|
-
MozBackgroundSize?: string | number | undefined;
|
|
705
|
+
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
706
706
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
707
|
-
MozBorderRadius?: string | number | undefined;
|
|
708
|
-
MozBorderRadiusBottomleft?: string | number | undefined;
|
|
709
|
-
MozBorderRadiusBottomright?: string | number | undefined;
|
|
710
|
-
MozBorderRadiusTopleft?: string | number | undefined;
|
|
711
|
-
MozBorderRadiusTopright?: string | number | undefined;
|
|
707
|
+
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
708
|
+
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
709
|
+
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
710
|
+
MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
711
|
+
MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
712
712
|
MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
713
713
|
MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
714
714
|
MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -719,13 +719,13 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
719
719
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
720
720
|
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
721
721
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
722
|
-
MozOutline?: string | number | undefined;
|
|
722
|
+
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
723
723
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
724
|
-
MozOutlineRadius?: string | number | undefined;
|
|
725
|
-
MozOutlineRadiusBottomleft?: string | number | undefined;
|
|
726
|
-
MozOutlineRadiusBottomright?: string | number | undefined;
|
|
727
|
-
MozOutlineRadiusTopleft?: string | number | undefined;
|
|
728
|
-
MozOutlineRadiusTopright?: string | number | undefined;
|
|
724
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
725
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
726
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
727
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
728
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
729
729
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
730
730
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
731
731
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
@@ -743,14 +743,14 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
743
743
|
OAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
744
744
|
OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
745
745
|
OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
746
|
-
OBackgroundSize?: string | number | undefined;
|
|
746
|
+
OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
747
747
|
OBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
748
748
|
OObjectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
749
|
-
OObjectPosition?: string | number | undefined;
|
|
750
|
-
OTabSize?: string | number | undefined;
|
|
749
|
+
OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
750
|
+
OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
751
751
|
OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
752
752
|
OTransform?: import("csstype").Property.Transform | undefined;
|
|
753
|
-
OTransformOrigin?: string | number | undefined;
|
|
753
|
+
OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
754
754
|
OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
755
755
|
OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
756
756
|
OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
@@ -767,7 +767,7 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
767
767
|
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
768
768
|
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
769
769
|
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
770
|
-
baselineShift?: string | number | undefined;
|
|
770
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
771
771
|
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
772
772
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
773
773
|
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
@@ -787,19 +787,19 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
787
787
|
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
788
788
|
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
789
789
|
stroke?: import("csstype").Property.Stroke | undefined;
|
|
790
|
-
strokeDasharray?: string | number | undefined;
|
|
791
|
-
strokeDashoffset?: string | number | undefined;
|
|
790
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
791
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
792
792
|
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
793
793
|
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
794
794
|
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
795
795
|
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
796
|
-
strokeWidth?: string | number | undefined;
|
|
796
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
797
797
|
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
798
798
|
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
799
799
|
};
|
|
800
800
|
accept?: string | undefined;
|
|
801
801
|
acceptCharset?: string | undefined;
|
|
802
|
-
action?: string | undefined;
|
|
802
|
+
action?: string | undefined | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS];
|
|
803
803
|
allowFullScreen?: boolean | undefined;
|
|
804
804
|
allowTransparency?: boolean | undefined;
|
|
805
805
|
alt?: string | undefined;
|
|
@@ -808,8 +808,8 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
808
808
|
autoComplete?: string | undefined;
|
|
809
809
|
autoPlay?: boolean | undefined;
|
|
810
810
|
capture?: boolean | "user" | "environment" | undefined;
|
|
811
|
-
cellPadding?:
|
|
812
|
-
cellSpacing?:
|
|
811
|
+
cellPadding?: number | string | undefined;
|
|
812
|
+
cellSpacing?: number | string | undefined;
|
|
813
813
|
charSet?: string | undefined;
|
|
814
814
|
challenge?: string | undefined;
|
|
815
815
|
checked?: boolean | undefined;
|
|
@@ -828,14 +828,14 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
828
828
|
download?: any;
|
|
829
829
|
encType?: string | undefined;
|
|
830
830
|
form?: string | undefined;
|
|
831
|
-
formAction?: string | undefined;
|
|
831
|
+
formAction?: string | undefined | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS];
|
|
832
832
|
formEncType?: string | undefined;
|
|
833
833
|
formMethod?: string | undefined;
|
|
834
834
|
formNoValidate?: boolean | undefined;
|
|
835
835
|
formTarget?: string | undefined;
|
|
836
|
-
frameBorder?:
|
|
836
|
+
frameBorder?: number | string | undefined;
|
|
837
837
|
headers?: string | undefined;
|
|
838
|
-
height?:
|
|
838
|
+
height?: number | string | undefined;
|
|
839
839
|
high?: number | undefined;
|
|
840
840
|
href?: string | undefined;
|
|
841
841
|
hrefLang?: string | undefined;
|
|
@@ -852,12 +852,12 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
852
852
|
manifest?: string | undefined;
|
|
853
853
|
marginHeight?: number | undefined;
|
|
854
854
|
marginWidth?: number | undefined;
|
|
855
|
-
max?:
|
|
855
|
+
max?: number | string | undefined;
|
|
856
856
|
maxLength?: number | undefined;
|
|
857
857
|
media?: string | undefined;
|
|
858
858
|
mediaGroup?: string | undefined;
|
|
859
859
|
method?: string | undefined;
|
|
860
|
-
min?:
|
|
860
|
+
min?: number | string | undefined;
|
|
861
861
|
minLength?: number | undefined;
|
|
862
862
|
multiple?: boolean | undefined;
|
|
863
863
|
muted?: boolean | undefined;
|
|
@@ -890,13 +890,13 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
890
890
|
srcLang?: string | undefined;
|
|
891
891
|
srcSet?: string | undefined;
|
|
892
892
|
start?: number | undefined;
|
|
893
|
-
step?:
|
|
893
|
+
step?: number | string | undefined;
|
|
894
894
|
summary?: string | undefined;
|
|
895
895
|
target?: string | undefined;
|
|
896
896
|
type?: string | undefined;
|
|
897
897
|
useMap?: string | undefined;
|
|
898
|
-
value?: string |
|
|
899
|
-
width?:
|
|
898
|
+
value?: string | readonly string[] | number | undefined;
|
|
899
|
+
width?: number | string | undefined;
|
|
900
900
|
wmode?: string | undefined;
|
|
901
901
|
wrap?: string | undefined;
|
|
902
902
|
defaultChecked?: boolean | undefined;
|
|
@@ -904,7 +904,7 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
904
904
|
suppressContentEditableWarning?: boolean | undefined;
|
|
905
905
|
suppressHydrationWarning?: boolean | undefined;
|
|
906
906
|
accessKey?: string | undefined;
|
|
907
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {})
|
|
907
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
908
908
|
autoFocus?: boolean | undefined;
|
|
909
909
|
contentEditable?: (boolean | "false" | "true") | "inherit" | "plaintext-only" | undefined;
|
|
910
910
|
contextMenu?: string | undefined;
|
|
@@ -943,34 +943,34 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
943
943
|
itemRef?: string | undefined;
|
|
944
944
|
results?: number | undefined;
|
|
945
945
|
security?: string | undefined;
|
|
946
|
-
unselectable?: "
|
|
947
|
-
inputMode?: "
|
|
946
|
+
unselectable?: "on" | "off" | undefined;
|
|
947
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
948
948
|
is?: string | undefined;
|
|
949
949
|
exportparts?: string | undefined;
|
|
950
950
|
part?: string | undefined;
|
|
951
951
|
"aria-activedescendant"?: string | undefined;
|
|
952
952
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
953
|
-
"aria-autocomplete"?: "none" | "
|
|
953
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
954
954
|
"aria-braillelabel"?: string | undefined;
|
|
955
955
|
"aria-brailleroledescription"?: string | undefined;
|
|
956
956
|
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
957
|
-
"aria-checked"?: boolean | "false" | "
|
|
957
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
958
958
|
"aria-colcount"?: number | undefined;
|
|
959
959
|
"aria-colindex"?: number | undefined;
|
|
960
960
|
"aria-colindextext"?: string | undefined;
|
|
961
961
|
"aria-colspan"?: number | undefined;
|
|
962
962
|
"aria-controls"?: string | undefined;
|
|
963
|
-
"aria-current"?: boolean | "false" | "true" | "
|
|
963
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
964
964
|
"aria-describedby"?: string | undefined;
|
|
965
965
|
"aria-description"?: string | undefined;
|
|
966
966
|
"aria-details"?: string | undefined;
|
|
967
967
|
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
968
|
-
"aria-dropeffect"?: "none" | "
|
|
968
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
969
969
|
"aria-errormessage"?: string | undefined;
|
|
970
970
|
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
971
971
|
"aria-flowto"?: string | undefined;
|
|
972
972
|
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
973
|
-
"aria-haspopup"?: boolean | "false" | "true" | "
|
|
973
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
974
974
|
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
975
975
|
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
976
976
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -985,9 +985,9 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
985
985
|
"aria-owns"?: string | undefined;
|
|
986
986
|
"aria-placeholder"?: string | undefined;
|
|
987
987
|
"aria-posinset"?: number | undefined;
|
|
988
|
-
"aria-pressed"?: boolean | "false" | "
|
|
988
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
989
989
|
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
990
|
-
"aria-relevant"?: "
|
|
990
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
991
991
|
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
992
992
|
"aria-roledescription"?: string | undefined;
|
|
993
993
|
"aria-rowcount"?: number | undefined;
|
|
@@ -1001,7 +1001,7 @@ export declare function mergeReactProps(a: HTMLProps<HTMLElement>, b: HTMLProps<
|
|
|
1001
1001
|
"aria-valuemin"?: number | undefined;
|
|
1002
1002
|
"aria-valuenow"?: number | undefined;
|
|
1003
1003
|
"aria-valuetext"?: string | undefined;
|
|
1004
|
-
children?: import("react").ReactNode;
|
|
1004
|
+
children?: import("react").ReactNode | undefined;
|
|
1005
1005
|
dangerouslySetInnerHTML?: {
|
|
1006
1006
|
__html: string | TrustedHTML;
|
|
1007
1007
|
} | undefined;
|