@connectif/ui-components 5.0.2 → 5.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/CHANGELOG.md +10 -0
- package/dist/components/button/ToggleButton.d.ts +1 -1
- package/dist/components/card/EnhancedCardRow.d.ts +2 -2
- package/dist/components/chip/Chip.d.ts +87 -55
- package/dist/components/drawer/InputDrawer.d.ts +1 -1
- package/dist/components/input/CodeEditor.d.ts +2 -7
- package/dist/components/input/Select.d.ts +2 -7
- package/dist/components/input/autocomplete/AutocompleteInput.d.ts +2 -2
- package/dist/components/input/autocomplete/AutocompleteList.d.ts +2 -2
- package/dist/hooks/useResizeObserver.d.ts +1 -1
- package/dist/index.js +60 -38
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +14 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.1.0] - 2026-01-26
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Updated to React 19 support while maintaining backward compatibility with React 18
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Fixed issue with ColorPicker component where external changes to value were not properly propagated into the component
|
|
12
|
+
|
|
3
13
|
## [5.0.2] - 2026-01-23
|
|
4
14
|
|
|
5
15
|
### Fixed
|
|
@@ -18,7 +18,7 @@ export type ToggleButtonProps = Pick<MuiToggleButtonProps, 'children' | 'id' | '
|
|
|
18
18
|
/**
|
|
19
19
|
* The ref to button.
|
|
20
20
|
*/
|
|
21
|
-
buttonRef?: React.
|
|
21
|
+
buttonRef?: React.Ref<HTMLButtonElement>;
|
|
22
22
|
};
|
|
23
23
|
/**
|
|
24
24
|
* A component that displays a ToggleButton with an icon at the start or at the end.
|
|
@@ -5,8 +5,8 @@ export interface EnhancedCardRowProps {
|
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
gap?: string;
|
|
7
7
|
justifyContent?: 'flex-start' | 'center' | 'flex-end' | 'space-between' | 'space-around' | 'space-evenly';
|
|
8
|
-
titleProps?: EnhancedCardTitleProps
|
|
9
|
-
subtitleProps?: EnhancedCardSubtitleProps
|
|
8
|
+
titleProps?: Partial<EnhancedCardTitleProps>;
|
|
9
|
+
subtitleProps?: Partial<EnhancedCardSubtitleProps>;
|
|
10
10
|
}
|
|
11
11
|
declare const EnhancedCardRow: React.FC<EnhancedCardRowProps>;
|
|
12
12
|
export default EnhancedCardRow;
|
|
@@ -25,6 +25,9 @@ declare const sizeStyles: {
|
|
|
25
25
|
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
26
26
|
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
27
27
|
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
28
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
29
|
+
anchorName?: import("csstype").Property.AnchorName | undefined;
|
|
30
|
+
anchorScope?: import("csstype").Property.AnchorScope | undefined;
|
|
28
31
|
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
29
32
|
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
30
33
|
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
@@ -51,17 +54,14 @@ declare const sizeStyles: {
|
|
|
51
54
|
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
52
55
|
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
53
56
|
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
54
|
-
|
|
57
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
55
58
|
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
56
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
57
59
|
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
58
60
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
59
61
|
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
60
62
|
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
61
63
|
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
62
64
|
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
63
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
64
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
65
65
|
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
66
66
|
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
67
67
|
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -75,15 +75,12 @@ declare const sizeStyles: {
|
|
|
75
75
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
76
76
|
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
77
77
|
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
78
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
79
78
|
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
80
79
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
81
80
|
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
82
81
|
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
83
82
|
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
84
83
|
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
85
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
86
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
87
84
|
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
88
85
|
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
89
86
|
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -110,8 +107,10 @@ declare const sizeStyles: {
|
|
|
110
107
|
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
111
108
|
clear?: import("csstype").Property.Clear | undefined;
|
|
112
109
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
110
|
+
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
113
111
|
color?: import("csstype").Property.Color | undefined;
|
|
114
112
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
113
|
+
colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
|
|
115
114
|
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
116
115
|
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
117
116
|
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
@@ -134,9 +133,17 @@ declare const sizeStyles: {
|
|
|
134
133
|
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
135
134
|
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
136
135
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
136
|
+
cx?: import("csstype").Property.Cx<string | number> | undefined;
|
|
137
|
+
cy?: import("csstype").Property.Cy<string | number> | undefined;
|
|
138
|
+
d?: import("csstype").Property.D | undefined;
|
|
137
139
|
direction?: import("csstype").Property.Direction | undefined;
|
|
138
140
|
display?: import("csstype").Property.Display | undefined;
|
|
141
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
139
142
|
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
143
|
+
fieldSizing?: import("csstype").Property.FieldSizing | undefined;
|
|
144
|
+
fill?: import("csstype").Property.Fill | undefined;
|
|
145
|
+
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
146
|
+
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
140
147
|
filter?: import("csstype").Property.Filter | undefined;
|
|
141
148
|
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
142
149
|
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
@@ -144,6 +151,8 @@ declare const sizeStyles: {
|
|
|
144
151
|
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
145
152
|
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
146
153
|
float?: import("csstype").Property.Float | undefined;
|
|
154
|
+
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
155
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
147
156
|
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
148
157
|
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
149
158
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
@@ -153,7 +162,6 @@ declare const sizeStyles: {
|
|
|
153
162
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
154
163
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
155
164
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
156
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
157
165
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
158
166
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
159
167
|
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
@@ -170,6 +178,7 @@ declare const sizeStyles: {
|
|
|
170
178
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
171
179
|
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
172
180
|
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
181
|
+
fontWidth?: import("csstype").Property.FontWidth | undefined;
|
|
173
182
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
174
183
|
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
175
184
|
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
@@ -190,12 +199,13 @@ declare const sizeStyles: {
|
|
|
190
199
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
191
200
|
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
192
201
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
202
|
+
initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
|
|
193
203
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
194
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
195
204
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
196
205
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
197
206
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
198
207
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
208
|
+
interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
|
|
199
209
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
200
210
|
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
201
211
|
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
@@ -203,6 +213,7 @@ declare const sizeStyles: {
|
|
|
203
213
|
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
204
214
|
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
205
215
|
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
216
|
+
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
206
217
|
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
207
218
|
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
208
219
|
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
@@ -218,6 +229,10 @@ declare const sizeStyles: {
|
|
|
218
229
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
219
230
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
220
231
|
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
232
|
+
marker?: import("csstype").Property.Marker | undefined;
|
|
233
|
+
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
234
|
+
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
235
|
+
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
221
236
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
222
237
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
223
238
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -252,6 +267,7 @@ declare const sizeStyles: {
|
|
|
252
267
|
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
253
268
|
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
254
269
|
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
270
|
+
objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
|
|
255
271
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
256
272
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
257
273
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
@@ -287,25 +303,32 @@ declare const sizeStyles: {
|
|
|
287
303
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
288
304
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
289
305
|
page?: import("csstype").Property.Page | undefined;
|
|
290
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
291
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
292
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
293
306
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
294
307
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
295
308
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
296
309
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
297
310
|
position?: import("csstype").Property.Position | undefined;
|
|
311
|
+
positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
|
|
312
|
+
positionArea?: import("csstype").Property.PositionArea | undefined;
|
|
313
|
+
positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
314
|
+
positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
|
|
315
|
+
positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
|
|
298
316
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
299
317
|
quotes?: import("csstype").Property.Quotes | undefined;
|
|
318
|
+
r?: import("csstype").Property.R<string | number> | undefined;
|
|
300
319
|
resize?: import("csstype").Property.Resize | undefined;
|
|
301
320
|
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
302
321
|
rotate?: import("csstype").Property.Rotate | undefined;
|
|
303
322
|
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
304
323
|
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
305
324
|
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
325
|
+
rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
|
|
306
326
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
327
|
+
rx?: import("csstype").Property.Rx<string | number> | undefined;
|
|
328
|
+
ry?: import("csstype").Property.Ry<string | number> | undefined;
|
|
307
329
|
scale?: import("csstype").Property.Scale | undefined;
|
|
308
330
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
331
|
+
scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
|
|
309
332
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
310
333
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
311
334
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -337,10 +360,28 @@ declare const sizeStyles: {
|
|
|
337
360
|
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
338
361
|
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
339
362
|
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
363
|
+
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
364
|
+
speakAs?: import("csstype").Property.SpeakAs | undefined;
|
|
365
|
+
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
366
|
+
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
367
|
+
stroke?: import("csstype").Property.Stroke | undefined;
|
|
368
|
+
strokeColor?: import("csstype").Property.StrokeColor | undefined;
|
|
369
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
370
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
371
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
372
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
373
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
374
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
375
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
340
376
|
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
341
377
|
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
342
378
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
343
379
|
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
380
|
+
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
381
|
+
textAutospace?: import("csstype").Property.TextAutospace | undefined;
|
|
382
|
+
textBox?: import("csstype").Property.TextBox | undefined;
|
|
383
|
+
textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
|
|
384
|
+
textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
|
|
344
385
|
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
345
386
|
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
346
387
|
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
@@ -358,10 +399,12 @@ declare const sizeStyles: {
|
|
|
358
399
|
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
359
400
|
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
360
401
|
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
402
|
+
textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
|
|
361
403
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
362
404
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
363
405
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
364
|
-
|
|
406
|
+
textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
|
|
407
|
+
textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
|
|
365
408
|
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
366
409
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
367
410
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
@@ -377,15 +420,16 @@ declare const sizeStyles: {
|
|
|
377
420
|
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
378
421
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
379
422
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
423
|
+
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
380
424
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
381
425
|
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
382
426
|
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
383
427
|
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
428
|
+
viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
|
|
384
429
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
385
430
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
386
431
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
387
432
|
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
388
|
-
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
389
433
|
widows?: import("csstype").Property.Widows | undefined;
|
|
390
434
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
391
435
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -393,6 +437,8 @@ declare const sizeStyles: {
|
|
|
393
437
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
394
438
|
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
395
439
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
440
|
+
x?: import("csstype").Property.X<string | number> | undefined;
|
|
441
|
+
y?: import("csstype").Property.Y<string | number> | undefined;
|
|
396
442
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
397
443
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
398
444
|
all?: import("csstype").Property.All | undefined;
|
|
@@ -402,14 +448,20 @@ declare const sizeStyles: {
|
|
|
402
448
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
403
449
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
404
450
|
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
451
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
405
452
|
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
406
453
|
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
454
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
455
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
407
456
|
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
408
457
|
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
409
458
|
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
410
459
|
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
460
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
411
461
|
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
412
462
|
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
463
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
464
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
413
465
|
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
414
466
|
borderRadius: import("csstype").Property.BorderRadius<string | number>;
|
|
415
467
|
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
@@ -451,6 +503,7 @@ declare const sizeStyles: {
|
|
|
451
503
|
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
452
504
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
453
505
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
506
|
+
positionTry?: import("csstype").Property.PositionTry | undefined;
|
|
454
507
|
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
455
508
|
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
456
509
|
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -461,6 +514,7 @@ declare const sizeStyles: {
|
|
|
461
514
|
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
462
515
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
463
516
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
517
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
464
518
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
465
519
|
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
466
520
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
@@ -472,6 +526,7 @@ declare const sizeStyles: {
|
|
|
472
526
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
473
527
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
474
528
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
529
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
475
530
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
476
531
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
477
532
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -483,8 +538,6 @@ declare const sizeStyles: {
|
|
|
483
538
|
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
484
539
|
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
485
540
|
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
486
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
487
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
488
541
|
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
489
542
|
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
490
543
|
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -493,7 +546,6 @@ declare const sizeStyles: {
|
|
|
493
546
|
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
494
547
|
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
495
548
|
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
496
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
497
549
|
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
498
550
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
499
551
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
@@ -504,11 +556,15 @@ declare const sizeStyles: {
|
|
|
504
556
|
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
505
557
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
506
558
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
559
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
560
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
507
561
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
508
562
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
509
563
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
510
564
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
511
|
-
|
|
565
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
566
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
567
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
512
568
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
513
569
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
514
570
|
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
@@ -627,6 +683,8 @@ declare const sizeStyles: {
|
|
|
627
683
|
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
628
684
|
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
629
685
|
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
686
|
+
WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
687
|
+
WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
630
688
|
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
631
689
|
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
632
690
|
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
@@ -681,13 +739,14 @@ declare const sizeStyles: {
|
|
|
681
739
|
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
682
740
|
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
683
741
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
684
|
-
WebkitUserSelect?: import("csstype").Property.
|
|
742
|
+
WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
|
|
685
743
|
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
686
744
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
687
745
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
688
746
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
689
747
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
690
748
|
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
749
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
691
750
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
692
751
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
693
752
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -708,7 +767,6 @@ declare const sizeStyles: {
|
|
|
708
767
|
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
709
768
|
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
710
769
|
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
711
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
712
770
|
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
713
771
|
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
714
772
|
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
@@ -718,16 +776,22 @@ declare const sizeStyles: {
|
|
|
718
776
|
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
719
777
|
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
720
778
|
clip?: import("csstype").Property.Clip | undefined;
|
|
779
|
+
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
721
780
|
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
722
781
|
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
723
782
|
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
724
783
|
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
784
|
+
insetArea?: import("csstype").Property.PositionArea | undefined;
|
|
725
785
|
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
726
786
|
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
727
787
|
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
728
788
|
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
729
789
|
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
730
790
|
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
791
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
792
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
793
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
794
|
+
positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
|
|
731
795
|
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
732
796
|
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
733
797
|
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
@@ -745,9 +809,7 @@ declare const sizeStyles: {
|
|
|
745
809
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
746
810
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
747
811
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
748
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
749
812
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
750
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
751
813
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
752
814
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
753
815
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
@@ -762,6 +824,8 @@ declare const sizeStyles: {
|
|
|
762
824
|
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
763
825
|
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
764
826
|
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
827
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
828
|
+
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
765
829
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
766
830
|
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
767
831
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -769,20 +833,15 @@ declare const sizeStyles: {
|
|
|
769
833
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
770
834
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
771
835
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
772
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
773
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
774
836
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
775
837
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
776
838
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
777
839
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
778
|
-
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
779
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
780
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
781
|
-
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
782
840
|
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
783
841
|
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
784
842
|
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
785
843
|
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
844
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
786
845
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
787
846
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
788
847
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -815,36 +874,9 @@ declare const sizeStyles: {
|
|
|
815
874
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
816
875
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
817
876
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
818
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
819
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
820
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
821
877
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
822
878
|
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
823
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
824
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
825
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
826
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
827
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
828
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
829
879
|
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
830
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
831
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
832
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
833
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
834
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
835
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
836
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
837
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
838
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
839
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
840
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
841
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
842
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
843
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
844
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
845
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
846
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
847
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
848
880
|
};
|
|
849
881
|
};
|
|
850
882
|
export type ChipProps = Pick<MuiChipProps, 'id' | 'label' | 'sx' | 'onClick' | 'onDelete' | 'onMouseEnter' | 'onMouseLeave'> & {
|
|
@@ -25,11 +25,6 @@ export type CodeEditorProps<T extends LanguageId> = ReactCodeMirrorProps & {
|
|
|
25
25
|
config?: Parameters<typeof linter>[1];
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
* The following languages are supported: html.
|
|
31
|
-
* The functionality of the editor can be extended through plugins and customizations.
|
|
32
|
-
*/
|
|
33
|
-
declare const CodeEditor: <T extends LanguageId>({ extensions, placeholder, language, languageOptions, lintGutterConfig, linterOptions, ...rest }: CodeEditorProps<T>, ref: React.Ref<ReactCodeMirrorRef>) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
declare const _default: typeof CodeEditor;
|
|
28
|
+
type CodeEditorComponent = <T extends LanguageId>(props: CodeEditorProps<T> & React.RefAttributes<ReactCodeMirrorRef>) => React.ReactElement;
|
|
29
|
+
declare const _default: CodeEditorComponent;
|
|
35
30
|
export default _default;
|
|
@@ -85,11 +85,6 @@ export type SelectProps<T extends string | number | undefined, Multiple extends
|
|
|
85
85
|
onOpen?: () => void;
|
|
86
86
|
};
|
|
87
87
|
export declare const BootstrapInput: import("@emotion/styled").StyledComponent<import("@mui/material/InputBase").InputBaseProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
* If `multiple=true`, then value and onChange parameter are an array of values.
|
|
91
|
-
* The Select component value type can be restricted to any type that extends `string | number | undefined`.
|
|
92
|
-
*/
|
|
93
|
-
declare const Select: <T extends string | number | undefined = string | number | undefined, Multiple extends boolean | undefined = undefined, Value = SelectValue<T, Multiple>>({ variant, placeholder, children, onChange, onClose, options, multiple, value, virtualized, virtualizedProps, className, paperClassName, size, sx, renderValue, menuZIndex, menuColors, menuMaxHeight, "data-testid": dataTestId, open, onOpen, ...rest }: SelectProps<T, Multiple, Value>, ref: React.Ref<HTMLSelectElement>) => import("react/jsx-runtime").JSX.Element;
|
|
94
|
-
declare const _default: typeof Select;
|
|
88
|
+
type SelectComponent = <T extends string | number | undefined = string | number | undefined, Multiple extends boolean | undefined = undefined, Value = SelectValue<T, Multiple>>(props: SelectProps<T, Multiple, Value>) => React.ReactElement | null;
|
|
89
|
+
declare const _default: SelectComponent;
|
|
95
90
|
export default _default;
|
|
@@ -51,8 +51,8 @@ export type AutocompleteInputProps<T extends string, Multiple extends boolean |
|
|
|
51
51
|
/**
|
|
52
52
|
* Ref to the outer HTMLDivElement
|
|
53
53
|
*/
|
|
54
|
-
containerRef: React.RefObject<HTMLDivElement>;
|
|
55
|
-
inputRef: React.RefObject<HTMLInputElement>;
|
|
54
|
+
containerRef: React.RefObject<HTMLDivElement | null>;
|
|
55
|
+
inputRef: React.RefObject<HTMLInputElement | null>;
|
|
56
56
|
inputValue: string;
|
|
57
57
|
setInputValue: (value: string) => void;
|
|
58
58
|
placeholder: string;
|
|
@@ -23,8 +23,8 @@ type AutocompleteListProps<T extends string, Multiple extends boolean | undefine
|
|
|
23
23
|
* Custom text to be shown when allowFreeText feature is enabled and written text is a new value to add.
|
|
24
24
|
*/
|
|
25
25
|
addNewValueText?: string;
|
|
26
|
-
inputContainerRef: React.RefObject<HTMLDivElement>;
|
|
27
|
-
virtualListRef: React.RefObject<FixedSizeList<unknown
|
|
26
|
+
inputContainerRef: React.RefObject<HTMLDivElement | null>;
|
|
27
|
+
virtualListRef: React.RefObject<FixedSizeList<unknown> | null>;
|
|
28
28
|
isOpen: boolean;
|
|
29
29
|
selectedIndex: SelectedIndex<Multiple>;
|
|
30
30
|
highlightedIndex: number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare function useResizeObserver<T extends HTMLElement>(): readonly [import("react").RefObject<T>, {
|
|
1
|
+
export declare function useResizeObserver<T extends HTMLElement>(): readonly [import("react").RefObject<T | null>, {
|
|
2
2
|
readonly width: number;
|
|
3
3
|
readonly height: number;
|
|
4
4
|
readonly contentWidth: number;
|