@rio-cloud/rio-uikit 2.5.0-beta.1 → 2.5.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/CountedInput.d.ts +2 -0
- package/CountedInput.js +5 -0
- package/CountedInput.js.map +1 -0
- package/TabbedPanel.d.ts +2 -0
- package/TabbedPanel.js +5 -0
- package/TabbedPanel.js.map +1 -0
- package/components/applicationHeader/NavItems.js +58 -46
- package/components/applicationHeader/NavItems.js.map +1 -1
- package/components/applicationLayout/ApplicationLayoutBody.d.ts +1 -1
- package/components/applicationLayout/ApplicationLayoutBody.js +29 -29
- package/components/applicationLayout/ApplicationLayoutBody.js.map +1 -1
- package/components/applicationLayout/ApplicationLayoutHeader.js +22 -7
- package/components/applicationLayout/ApplicationLayoutHeader.js.map +1 -1
- package/components/assetTree/useTreeHeight.js.map +1 -1
- package/components/button/Button.d.ts +11 -3
- package/components/button/Button.js.map +1 -1
- package/components/clearableInput/ClearableInput.d.ts +4 -0
- package/components/clearableInput/ClearableInput.js.map +1 -1
- package/components/countedInput/CountedInput.d.ts +91 -0
- package/components/countedInput/CountedInput.js +65 -0
- package/components/countedInput/CountedInput.js.map +1 -0
- package/components/datepicker/DatePicker.d.ts +1 -1
- package/components/datepicker/DatePicker.js +1 -1
- package/components/datepicker/DatePicker.js.map +1 -1
- package/components/datepicker/DayPicker.js +3 -2
- package/components/datepicker/DayPicker.js.map +1 -1
- package/components/datepicker/DayPickerInput.d.ts +1 -1
- package/components/datepicker/DayPickerInput.js.map +1 -1
- package/components/datepicker/dayPickerTypes.d.ts +3 -2
- package/components/datepicker/dayPickerTypes.js.map +1 -1
- package/components/datepicker/dayPickerUtils.d.ts +1 -1
- package/components/datepicker/dayPickerUtils.js +45 -22
- package/components/datepicker/dayPickerUtils.js.map +1 -1
- package/components/datepicker/useDayPickerInputState.d.ts +1 -1
- package/components/dialog/ConfirmationDialog.d.ts +17 -0
- package/components/dialog/ConfirmationDialog.js +43 -19
- package/components/dialog/ConfirmationDialog.js.map +1 -1
- package/components/dialog/DialogHeader.js +20 -19
- package/components/dialog/DialogHeader.js.map +1 -1
- package/components/dropdown/ButtonDropdown.d.ts +5 -0
- package/components/dropdown/ButtonDropdown.js +63 -61
- package/components/dropdown/ButtonDropdown.js.map +1 -1
- package/components/dropdown/DropdownToggleButton.d.ts +2 -0
- package/components/dropdown/DropdownToggleButton.js +39 -35
- package/components/dropdown/DropdownToggleButton.js.map +1 -1
- package/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +103 -105
- package/components/map/components/features/settings/builtinSettings/MapTypeSettings.js.map +1 -1
- package/components/map/utils/eventHandling.js.map +1 -1
- package/components/map/utils/mapTypes.d.ts +7 -0
- package/components/map/utils/mapTypes.js.map +1 -1
- package/components/map/utils/rendering.js +5 -5
- package/components/numberControl/NumberControl.js.map +1 -1
- package/components/page/Page.d.ts +2 -0
- package/components/page/Page.js.map +1 -1
- package/components/rioglyph/Rioglyph.d.ts +8 -2
- package/components/rioglyph/Rioglyph.js.map +1 -1
- package/components/rioglyph/RioglyphIconType.d.ts +1 -1
- package/components/selects/BaseSelectDropdown.d.ts +8 -0
- package/components/selects/BaseSelectDropdown.js +76 -60
- package/components/selects/BaseSelectDropdown.js.map +1 -1
- package/components/selects/Multiselect.d.ts +5 -0
- package/components/selects/Multiselect.js +60 -58
- package/components/selects/Multiselect.js.map +1 -1
- package/components/selects/Select.d.ts +5 -0
- package/components/selects/Select.js +60 -58
- package/components/selects/Select.js.map +1 -1
- package/components/sidebars/Sidebar.js +40 -40
- package/components/sidebars/Sidebar.js.map +1 -1
- package/components/sidebars/SidebarCloseButton.d.ts +3 -1
- package/components/sidebars/SidebarCloseButton.js +19 -5
- package/components/sidebars/SidebarCloseButton.js.map +1 -1
- package/components/states/CustomState.d.ts +7 -1
- package/components/states/CustomState.js.map +1 -1
- package/components/states/StateButton.d.ts +11 -1
- package/components/states/StateButton.js +46 -10
- package/components/states/StateButton.js.map +1 -1
- package/components/statsWidget/StatsWidgetNumber.d.ts +16 -1
- package/components/statsWidget/StatsWidgetNumber.js +29 -12
- package/components/statsWidget/StatsWidgetNumber.js.map +1 -1
- package/components/tabbedPanel/TabbedPanel.d.ts +99 -0
- package/components/tabbedPanel/TabbedPanel.js +119 -0
- package/components/tabbedPanel/TabbedPanel.js.map +1 -0
- package/components/table/Table.types.d.ts +9 -1
- package/components/table/TableColumn.js +20 -19
- package/components/table/TableColumn.js.map +1 -1
- package/components/table/TableHeaderColumn.d.ts +4 -0
- package/components/table/TableHeaderColumn.js +50 -53
- package/components/table/TableHeaderColumn.js.map +1 -1
- package/components/table/TableToolbar.d.ts +4 -0
- package/components/table/TableToolbar.js.map +1 -1
- package/components/table/TableToolbarColumn.d.ts +3 -0
- package/components/table/TableToolbarColumn.js.map +1 -1
- package/components/table/render/header/resolveHeaderCellStyle.d.ts +87 -55
- package/components/timepicker/TimePicker.d.ts +6 -0
- package/components/timepicker/TimePicker.js +57 -56
- package/components/timepicker/TimePicker.js.map +1 -1
- package/hooks/useClickOutside.js +3 -3
- package/hooks/useClipboard.js.map +1 -1
- package/hooks/useScrollPosition.js.map +1 -1
- package/package.json +2 -4
- package/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js +23 -22
- package/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js.map +1 -1
- package/utils/analytics/getTrackingLabelFromNode.d.ts +2 -0
- package/utils/analytics/getTrackingLabelFromNode.js +24 -0
- package/utils/analytics/getTrackingLabelFromNode.js.map +1 -0
- package/utils/analytics/googleAnalyticsUtils.js +21 -28
- package/utils/analytics/googleAnalyticsUtils.js.map +1 -1
- package/utils/getNodeTextContent.d.ts +2 -0
- package/utils/getNodeTextContent.js +22 -0
- package/utils/getNodeTextContent.js.map +1 -0
- package/utils/init/initCSS.js +5 -5
- package/utils/init/initCSS.js.map +1 -1
- package/utils/init/initConfig.js +4 -7
- package/utils/init/initConfig.js.map +1 -1
- package/utils/init/initDocumentBootstrapping.js +14 -14
- package/utils/init/initDocumentBootstrapping.js.map +1 -1
- package/version.d.ts +1 -1
- package/version.js +2 -2
- package/version.js.map +1 -1
|
@@ -7,6 +7,9 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
7
7
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
8
8
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
9
9
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
10
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
11
|
+
anchorName?: import("csstype").Property.AnchorName | undefined;
|
|
12
|
+
anchorScope?: import("csstype").Property.AnchorScope | undefined;
|
|
10
13
|
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
11
14
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
12
15
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -33,17 +36,14 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
33
36
|
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
34
37
|
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
35
38
|
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
36
|
-
|
|
39
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
37
40
|
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
38
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
39
41
|
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
40
42
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
41
43
|
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
42
44
|
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
43
45
|
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
44
46
|
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
45
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
46
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
47
47
|
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
48
48
|
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
49
49
|
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -57,15 +57,12 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
57
57
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
58
58
|
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
59
59
|
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
60
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
61
60
|
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
62
61
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
63
62
|
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
64
63
|
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
65
64
|
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
66
65
|
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
67
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
68
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
69
66
|
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
70
67
|
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
71
68
|
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -92,8 +89,10 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
92
89
|
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
93
90
|
clear?: import("csstype").Property.Clear | undefined;
|
|
94
91
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
92
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
95
93
|
color?: import("csstype").Property.Color | undefined;
|
|
96
94
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
95
|
+
colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
|
|
97
96
|
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
98
97
|
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
99
98
|
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
@@ -116,9 +115,17 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
116
115
|
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
117
116
|
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
118
117
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
118
|
+
cx?: import("csstype").Property.Cx<string | number> | undefined;
|
|
119
|
+
cy?: import("csstype").Property.Cy<string | number> | undefined;
|
|
120
|
+
d?: import("csstype").Property.D | undefined;
|
|
119
121
|
direction?: import("csstype").Property.Direction | undefined;
|
|
120
122
|
display?: import("csstype").Property.Display | undefined;
|
|
123
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
121
124
|
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
125
|
+
fieldSizing?: import("csstype").Property.FieldSizing | undefined;
|
|
126
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
127
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
128
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
122
129
|
filter?: import("csstype").Property.Filter | undefined;
|
|
123
130
|
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
124
131
|
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
@@ -126,6 +133,8 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
126
133
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
127
134
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
128
135
|
float?: import("csstype").Property.Float | undefined;
|
|
136
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
137
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
129
138
|
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
130
139
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
131
140
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
@@ -135,7 +144,6 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
135
144
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
136
145
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
137
146
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
138
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
139
147
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
140
148
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
141
149
|
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
@@ -152,6 +160,7 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
152
160
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
153
161
|
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
154
162
|
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
163
|
+
fontWidth?: import("csstype").Property.FontWidth | undefined;
|
|
155
164
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
156
165
|
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
157
166
|
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
@@ -172,12 +181,13 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
172
181
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
173
182
|
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
174
183
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
184
|
+
initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
|
|
175
185
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
176
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
177
186
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
178
187
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
179
188
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
180
189
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
190
|
+
interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
|
|
181
191
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
182
192
|
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
183
193
|
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
@@ -185,6 +195,7 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
185
195
|
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
186
196
|
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
187
197
|
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
198
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
188
199
|
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
189
200
|
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
190
201
|
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
@@ -200,6 +211,10 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
200
211
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
201
212
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
202
213
|
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
214
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
215
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
216
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
217
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
203
218
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
204
219
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
205
220
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -234,6 +249,7 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
234
249
|
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
235
250
|
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
236
251
|
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
252
|
+
objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
|
|
237
253
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
238
254
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
239
255
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
@@ -269,25 +285,32 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
269
285
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
270
286
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
271
287
|
page?: import("csstype").Property.Page | undefined;
|
|
272
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
273
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
274
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
275
288
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
276
289
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
277
290
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
278
291
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
279
292
|
position?: import("csstype").Property.Position | undefined;
|
|
293
|
+
positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
|
|
294
|
+
positionArea?: import("csstype").Property.PositionArea | undefined;
|
|
295
|
+
positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
296
|
+
positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
|
|
297
|
+
positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
|
|
280
298
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
281
299
|
quotes?: import("csstype").Property.Quotes | undefined;
|
|
300
|
+
r?: import("csstype").Property.R<string | number> | undefined;
|
|
282
301
|
resize?: import("csstype").Property.Resize | undefined;
|
|
283
302
|
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
284
303
|
rotate?: import("csstype").Property.Rotate | undefined;
|
|
285
304
|
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
286
305
|
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
287
306
|
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
307
|
+
rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
|
|
288
308
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
309
|
+
rx?: import("csstype").Property.Rx<string | number> | undefined;
|
|
310
|
+
ry?: import("csstype").Property.Ry<string | number> | undefined;
|
|
289
311
|
scale?: import("csstype").Property.Scale | undefined;
|
|
290
312
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
313
|
+
scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
|
|
291
314
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
292
315
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
293
316
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -319,10 +342,28 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
319
342
|
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
320
343
|
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
321
344
|
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
345
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
346
|
+
speakAs?: import("csstype").Property.SpeakAs | undefined;
|
|
347
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
348
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
349
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
350
|
+
strokeColor?: import("csstype").Property.StrokeColor | undefined;
|
|
351
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
352
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
353
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
354
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
355
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
356
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
357
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
322
358
|
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
323
359
|
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
324
360
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
325
361
|
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
362
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
363
|
+
textAutospace?: import("csstype").Property.TextAutospace | undefined;
|
|
364
|
+
textBox?: import("csstype").Property.TextBox | undefined;
|
|
365
|
+
textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
|
|
366
|
+
textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
|
|
326
367
|
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
327
368
|
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
328
369
|
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
@@ -340,10 +381,12 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
340
381
|
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
341
382
|
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
342
383
|
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
384
|
+
textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
|
|
343
385
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
344
386
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
345
387
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
346
|
-
|
|
388
|
+
textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
|
|
389
|
+
textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
|
|
347
390
|
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
348
391
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
349
392
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
@@ -359,15 +402,16 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
359
402
|
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
360
403
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
361
404
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
405
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
362
406
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
363
407
|
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
364
408
|
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
365
409
|
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
410
|
+
viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
|
|
366
411
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
367
412
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
368
413
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
369
414
|
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
370
|
-
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
371
415
|
widows?: import("csstype").Property.Widows | undefined;
|
|
372
416
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
373
417
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -375,6 +419,8 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
375
419
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
376
420
|
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
377
421
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
422
|
+
x?: import("csstype").Property.X<string | number> | undefined;
|
|
423
|
+
y?: import("csstype").Property.Y<string | number> | undefined;
|
|
378
424
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
379
425
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
380
426
|
all?: import("csstype").Property.All | undefined;
|
|
@@ -384,14 +430,20 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
384
430
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
385
431
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
386
432
|
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
433
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
387
434
|
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
388
435
|
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
436
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
437
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
389
438
|
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
390
439
|
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
391
440
|
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
392
441
|
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
442
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
393
443
|
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
394
444
|
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
445
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
446
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
395
447
|
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
396
448
|
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
397
449
|
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
@@ -433,6 +485,7 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
433
485
|
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
434
486
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
435
487
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
488
|
+
positionTry?: import("csstype").Property.PositionTry | undefined;
|
|
436
489
|
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
437
490
|
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
438
491
|
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -443,6 +496,7 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
443
496
|
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
444
497
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
445
498
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
499
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
446
500
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
447
501
|
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
448
502
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -454,6 +508,7 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
454
508
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
455
509
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
456
510
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
511
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
457
512
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
458
513
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
459
514
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -465,8 +520,6 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
465
520
|
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
466
521
|
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
467
522
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
468
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
469
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
470
523
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
471
524
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
472
525
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -475,7 +528,6 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
475
528
|
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
476
529
|
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
477
530
|
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
478
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
479
531
|
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
480
532
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
481
533
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
@@ -486,11 +538,15 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
486
538
|
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
487
539
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
488
540
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
541
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
542
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
489
543
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
490
544
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
491
545
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
492
546
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
493
|
-
|
|
547
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
548
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
549
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
494
550
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
495
551
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
496
552
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
@@ -609,6 +665,8 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
609
665
|
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
610
666
|
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
611
667
|
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
668
|
+
WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
669
|
+
WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
612
670
|
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
613
671
|
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
614
672
|
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
@@ -663,13 +721,14 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
663
721
|
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
664
722
|
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
665
723
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
666
|
-
WebkitUserSelect?: import("csstype").Property.
|
|
724
|
+
WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
|
|
667
725
|
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
668
726
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
669
727
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
670
728
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
671
729
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
672
730
|
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
731
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
673
732
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
674
733
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
675
734
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -690,7 +749,6 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
690
749
|
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
691
750
|
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
692
751
|
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
693
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
694
752
|
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
695
753
|
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
696
754
|
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -700,16 +758,22 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
700
758
|
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
701
759
|
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
702
760
|
clip?: import("csstype").Property.Clip | undefined;
|
|
761
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
703
762
|
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
704
763
|
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
705
764
|
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
706
765
|
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
766
|
+
insetArea?: import("csstype").Property.PositionArea | undefined;
|
|
707
767
|
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
708
768
|
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
709
769
|
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
710
770
|
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
711
771
|
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
712
772
|
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
773
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
774
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
775
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
776
|
+
positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
713
777
|
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
714
778
|
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
715
779
|
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
@@ -727,9 +791,7 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
727
791
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
728
792
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
729
793
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
730
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
731
794
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
732
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
733
795
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
734
796
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
735
797
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
@@ -744,6 +806,8 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
744
806
|
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
745
807
|
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
746
808
|
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
809
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
810
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
747
811
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
748
812
|
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
749
813
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -751,20 +815,15 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
751
815
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
752
816
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
753
817
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
754
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
755
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
756
818
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
757
819
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
758
820
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
759
821
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
760
|
-
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
761
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
762
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
763
|
-
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
764
822
|
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
765
823
|
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
766
824
|
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
767
825
|
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
826
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
768
827
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
769
828
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
770
829
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -797,34 +856,7 @@ export declare const resolveHeaderCellStyle: (column: HeaderColumn<TableRowData>
|
|
|
797
856
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
798
857
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
799
858
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
800
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
801
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
802
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
803
859
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
804
860
|
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
805
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
806
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
807
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
808
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
809
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
810
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
811
861
|
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
812
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
813
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
814
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
815
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
816
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
817
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
818
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
819
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
820
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
821
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
822
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
823
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
824
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
825
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
826
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
827
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
828
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
829
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
830
862
|
};
|
|
@@ -29,6 +29,12 @@ export type TimePickerProps = {
|
|
|
29
29
|
* @default false
|
|
30
30
|
*/
|
|
31
31
|
dropdown?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Configures IMask overwrite behavior for manual input editing.
|
|
34
|
+
*
|
|
35
|
+
* @default 'shift'
|
|
36
|
+
*/
|
|
37
|
+
maskOverwrite?: boolean | 'shift';
|
|
32
38
|
/**
|
|
33
39
|
* Defines the minute interval for time controls and dropdown values.
|
|
34
40
|
* Invalid values fallback to 15.
|