This repository has been archived by the owner on May 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
svelte-jsx.d.ts
2589 lines (2265 loc) · 100 KB
/
svelte-jsx.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Adapted from jsx-dom
* @see https://github.com/proteriax/jsx-dom/blob/be06937ba16908d87bf8aa4372a3583133e02b8a/index.d.ts
*
* which was adapted from
*
* Adapted from React’s TypeScript definition from DefinitelyTyped.
* @see https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts
*/
declare namespace JSX {
/* svelte specific */
interface ElementClass {
$$prop_def: any;
}
interface ElementAttributesProperty {
$$prop_def: any; // specify the property name to use
}
/* html jsx */
export type Child = Node | Node[] | string | number;
export type Children = Child | Child[];
type NativeElement = HTMLElement;
interface IntrinsicAttributes {
ref?: (instance: Element) => void;
}
// TypeScript SVGElement has no `dataset` (Chrome 55+, Firefox 51+).
type Element = NativeElement & {
dataset: DOMStringMap;
};
interface Ref<T> {
current: null | T;
}
//
// Event Handler Types
// ----------------------------------------------------------------------
type EventHandler<E = Event, T = HTMLElement> = (event: E & { target: EventTarget & T}) => any;
type ClipboardEventHandler<T> = EventHandler<ClipboardEvent, T>;
type CompositionEventHandler<T> = EventHandler<CompositionEvent, T>;
type DragEventHandler<T> = EventHandler<DragEvent, T>;
type FocusEventHandler<T> = EventHandler<FocusEvent, T>;
type FormEventHandler<T> = EventHandler<Event, T>;
type ChangeEventHandler<T> = EventHandler<Event, T>;
type KeyboardEventHandler<T> = EventHandler<KeyboardEvent, T>;
type MouseEventHandler<T> = EventHandler<MouseEvent, T>;
type TouchEventHandler<T> = EventHandler<TouchEvent, T>;
type UIEventHandler<T> = EventHandler<UIEvent, T>;
type WheelEventHandler<T> = EventHandler<WheelEvent, T>;
type AnimationEventHandler<T> = EventHandler<AnimationEvent, T>;
type TransitionEventHandler<T> = EventHandler<TransitionEvent, T>;
type ClassNameBase = boolean | string | number | void | null;
type ClassName = string | (ClassNameBase | ClassNameBase[])[] | {
[key: string]: boolean
}
// See CSS 3 CSS-wide keywords https://www.w3.org/TR/css3-values/#common-keywords
// See CSS 3 Explicit Defaulting https://www.w3.org/TR/css-cascade-3/#defaulting-keywords
// "all CSS properties can accept these values"
type CSSWideKeyword = "initial" | "inherit" | "unset";
// See CSS 3 <percentage> type https://drafts.csswg.org/css-values-3/#percentages
type CSSPercentage = string;
// See CSS 3 <length> type https://drafts.csswg.org/css-values-3/#lengths
type CSSLength = number | string;
// This interface is not complete. Only properties accepting
// unit-less numbers are listed here (see CSSProperty.js in React)
interface CSSProperties {
/**
* Aligns a flex container’s lines within the flex container when there is extra space in
* the cross-axis, similar to how justify-content aligns individual items within the main-axis.
*/
alignContent?: CSSWideKeyword | "flex-start" | "flex-end" | "center" | "space-between" |
"space-around" | "stretch";
/**
* Sets the default alignment in the cross axis for all of the flex container’s items,
* including anonymous flex items, similarly to how justify-content aligns items along the main
* axis.
*/
alignItems?: CSSWideKeyword | "flex-start" | "flex-end" | "center" | "baseline" | "stretch";
/**
* Allows the default alignment to be overridden for individual flex items.
*/
alignSelf?: CSSWideKeyword | "auto" | "flex-start" | "flex-end" | "center" | "baseline" |
"stretch";
/**
* This property allows precise alignment of elements, such as graphics, that do not have a
* baseline-table or lack the desired baseline in their baseline-table. With the
* alignment-adjust property, the position of the baseline identified by the alignment-baseline
* can be explicitly determined. It also determines precisely the alignment point for each
* glyph within a textual element.
*/
alignmentAdjust?: CSSWideKeyword | any;
alignmentBaseline?: CSSWideKeyword | any;
/**
* Defines a length of time to elapse before an animation starts, allowing an animation to
* begin execution some time after it is applied.
*/
animationDelay?: CSSWideKeyword | any;
/** Defines whether an animation should run in reverse on some or all cycles. */
animationDirection?: CSSWideKeyword | any;
/** Specifies how many times an animation cycle should play. */
animationIterationCount?: CSSWideKeyword | any;
/** Defines the list of animations that apply to the element. */
animationName?: CSSWideKeyword | any;
/** Defines whether an animation is running or paused. */
animationPlayState?: CSSWideKeyword | any;
/**
* Allows changing the style of any element to platform-based interface elements or vice versa.
*/
appearance?: CSSWideKeyword | any;
/**
* Determines whether or not the “back” side of a transformed element is visible when facing
* the viewer.
*/
backfaceVisibility?: CSSWideKeyword | any;
/**
* Shorthand property to set the values for one or more of:
* `background-clip`, `background-color`, `background-image`,
* `background-origin`, `background-position`, `background-repeat`,
* `background-size`, and `background-attachment`.
*/
background?: CSSWideKeyword | any;
/**
* If a `background-image` is specified, this property determines
* whether that image’s position is fixed within the viewport,
* or scrolls along with its containing block.
* @see https://drafts.csswg.org/css-backgrounds-3/#the-background-attachment
*/
backgroundAttachment?: CSSWideKeyword | "scroll" | "fixed" | "local";
/**
* This property describes how the element’s background images should blend with each other and
* the element’s background color.
*
* The value is a list of blend modes that corresponds to each background image. Each element
* in the list will apply to the corresponding element of background-image. If a property
* doesn’t have enough comma-separated values to match the number of layers, the UA must
* calculate its used value by repeating the list of values until there are enough.
*/
backgroundBlendMode?: CSSWideKeyword | any;
/**
* Sets the background color of an element.
*/
backgroundColor?: CSSWideKeyword | any;
backgroundComposite?: CSSWideKeyword | any;
/**
* Applies one or more background images to an element. These can be any valid CSS image,
* including url() paths to image files or CSS gradients.
*/
backgroundImage?: CSSWideKeyword | any;
/**
* Specifies what the background-position property is relative to.
*/
backgroundOrigin?: CSSWideKeyword | any;
/**
* Sets the position of a background image.
*/
backgroundPosition?: CSSWideKeyword | any;
/**
* Background-repeat defines if and how background images will be repeated after they have been
* sized and positioned
*/
backgroundRepeat?: CSSWideKeyword | any;
/**
* Obsolete - spec retired, not implemented.
*/
baselineShift?: CSSWideKeyword | any;
/**
* Non standard. Sets or retrieves the location of the Dynamic HTML (DHTML) behavior.
*/
behavior?: CSSWideKeyword | any;
/**
* Shorthand property that defines the different properties of all four sides of an
* element’s border in a single declaration. It can be used to set `border-width`,
* `border-style` and `border-color`, or a subset of these.
*/
border?: CSSWideKeyword | any;
/**
* Shorthand that sets the values of `border-bottom-color`, `border-bottom-style`,
* and `border-bottom-width`.
*/
borderBottom?: CSSWideKeyword | any;
/** Sets the color of the bottom border of an element. */
borderBottomColor?: CSSWideKeyword | any;
/** Defines the shape of the border of the bottom-left corner. */
borderBottomLeftRadius?: CSSWideKeyword | any;
/** Defines the shape of the border of the bottom-right corner. */
borderBottomRightRadius?: CSSWideKeyword | any;
/** Sets the line style of the bottom border of a box. */
borderBottomStyle?: CSSWideKeyword | any;
/**
* Sets the width of an element’s bottom border. To set all four borders, use the
* `border-width` shorthand property which sets the values simultaneously for
* `border-top-width`, `border-right-width`, `border-bottom-width`, and `border-left-width`.
*/
borderBottomWidth?: CSSWideKeyword | any;
/**
* Border-collapse can be used for collapsing the borders between table cells
*/
borderCollapse?: CSSWideKeyword | any;
/**
* The CSS `border-color` property sets the color of an element’s four borders. This property
* can have from one to four values, made up of the elementary properties:
*
* - `border-top-color`
* - `border-right-color`
* - `border-bottom-color`
* - `border-left-color` The default color is the `currentColor` of each of these values.
*
* If you provide one value, it sets the color for the element. Two values set the
* horizontal and vertical values, respectively. Providing three values sets the top, vertical,
* and bottom values, in that order. Four values set all for sides: top, right, bottom, and
* left, in that order.
*/
borderColor?: CSSWideKeyword | any;
/**
* Specifies different corner clipping effects, such as scoop (inner curves), bevel (straight
* cuts) or notch (cut-off rectangles). Works along with border-radius to specify the size of
* each corner effect.
*/
borderCornerShape?: CSSWideKeyword | any;
/**
* The property border-image-source is used to set the image to be used instead of the border
* style. If this is set to none the border-style is used instead.
*/
borderImageSource?: CSSWideKeyword | any;
/**
* The border-image-width CSS property defines the offset to use for dividing the border image
* in nine parts, the top-left corner, central top edge, top-right-corner, central right edge,
* bottom-right corner, central bottom edge, bottom-left corner, and central right edge. They
* represent inward distance from the top, right, bottom, and left edges.
*/
borderImageWidth?: CSSWideKeyword | any;
/**
* Shorthand property that defines the border-width, border-style and border-color of an
* element’s left border in a single declaration. Note that you can use the corresponding
* longhand properties to set specific individual properties of the left border:
* border-left-width, border-left-style and border-left-color.
*/
borderLeft?: CSSWideKeyword | any;
/**
* The CSS border-left-color property sets the color of an element’s left border. This page
* explains the border-left-color value, but often you will find it more convenient to fix
* the border’s left color as part of a shorthand set, either border-left or border-color.
* Colors can be defined several ways. For more information, see Usage.
*/
borderLeftColor?: CSSWideKeyword | any;
/**
* Sets the style of an element’s left border. To set all four borders, use the shorthand
* property, border-style. Otherwise, you can set the borders individually with
* border-top-style, border-right-style, border-bottom-style, border-left-style.
*/
borderLeftStyle?: CSSWideKeyword | any;
/**
* Sets the width of an element’s left border. To set all four borders, use the
* border-width shorthand property which sets the values simultaneously for border-top-width,
* border-right-width, border-bottom-width, and border-left-width.
*/
borderLeftWidth?: CSSWideKeyword | any;
/**
* Shorthand property that defines the border-width, border-style and border-color of an
* element’s right border in a single declaration. Note that you can use the corresponding
* longhand properties to set specific individual properties of the right border —
* border-right-width, border-right-style and border-right-color.
*/
borderRight?: CSSWideKeyword | any;
/**
* Sets the color of an element’s right border. This page explains the border-right-color value,
* but often you will find it more convenient to fix the border’s right color as part of a
* shorthand set, either border-right or border-color.
* Colors can be defined several ways. For more information, see Usage.
*/
borderRightColor?: CSSWideKeyword | any;
/**
* Sets the style of an element’s right border. To set all four borders, use the shorthand
* property, border-style. Otherwise, you can set the borders individually with
* border-top-style, border-right-style, border-bottom-style, border-left-style.
*/
borderRightStyle?: CSSWideKeyword | any;
/**
* Sets the width of an element’s right border. To set all four borders, use the border-width
* shorthand property which sets the values simultaneously for border-top-width,
* border-right-width, border-bottom-width, and border-left-width.
*/
borderRightWidth?: CSSWideKeyword | any;
/**
* Specifies the distance between the borders of adjacent cells.
*/
borderSpacing?: CSSWideKeyword | any;
/**
* Sets the style of an element’s four borders. This property can have from one to four values.
* With only one value, the value will be applied to all four borders; otherwise, this works as
* a shorthand property for each of border-top-style, border-right-style, border-bottom-style,
* border-left-style, where each border style may be assigned a separate value.
*/
borderStyle?: CSSWideKeyword | any;
/**
* Shorthand property that defines the border-width, border-style and border-color of an
* element’s top border in a single declaration. Note that you can use the corresponding
* longhand properties to set specific individual properties of the top border —
* border-top-width, border-top-style and border-top-color.
*/
borderTop?: CSSWideKeyword | any;
/**
* Sets the color of an element’s top border. This page explains the border-top-color value,
* but often you will find it more convenient to fix the border’s top color as part of a
* shorthand set, either border-top or border-color.
* Colors can be defined several ways. For more information, see Usage.
*/
borderTopColor?: CSSWideKeyword | any;
/**
* Sets the rounding of the top-left corner of the element.
*/
borderTopLeftRadius?: CSSWideKeyword | any;
/**
* Sets the rounding of the top-right corner of the element.
*/
borderTopRightRadius?: CSSWideKeyword | any;
/**
* Sets the style of an element’s top border. To set all four borders, use the shorthand
* property, border-style. Otherwise, you can set the borders individually with
* border-top-style, border-right-style, border-bottom-style, border-left-style.
*/
borderTopStyle?: CSSWideKeyword | any;
/**
* Sets the width of an element’s top border. To set all four borders, use the border-width
* shorthand property which sets the values simultaneously for border-top-width,
* border-right-width, border-bottom-width, and border-left-width.
*/
borderTopWidth?: CSSWideKeyword | any;
/**
* Sets the width of an element’s four borders. This property can have from one to four values.
* This is a shorthand property for setting values simultaneously for border-top-width,
* border-right-width, border-bottom-width, and border-left-width.
*/
borderWidth?: CSSWideKeyword | any;
/**
* This property specifies how far an absolutely positioned box’s bottom margin edge is offset
* above the bottom edge of the box’s containing block. For relatively positioned boxes, the
* offset is with respect to the bottom edges of the box itself (i.e., the box is given a
* position in the normal flow, then offset from that position according to these properties).
*/
bottom?: CSSWideKeyword | any;
/** @deprecated. */
boxAlign?: CSSWideKeyword | any;
/**
* Breaks a box into fragments creating new borders, padding and repeating backgrounds or
* lets it stay as a continuous box on a page break, column break, or, for inline elements,
* at a line break.
*/
boxDecorationBreak?: CSSWideKeyword | any;
/** @deprecated. */
boxDirection?: CSSWideKeyword | any;
/** @deprecated. */
boxFlex?: CSSWideKeyword | number;
/** @deprecated. */
boxFlexGroup?: CSSWideKeyword | number;
/**
* Cast a drop shadow from the frame of almost any element.
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
*/
boxShadow?: CSSWideKeyword | any;
/**
* The CSS break-after property allows you to force a break on multi-column layouts. More
* specifically, it allows you to force a break after an element. It allows you to determine
* if a break should occur, and what type of break it should be. The break-after CSS property
* describes how the page, column or region break behaves after the generated box. If there
* is no generated box, the property is ignored.
*/
breakAfter?: CSSWideKeyword | any;
/**
* Control page/column/region breaks that fall above a block of content
*/
breakBefore?: CSSWideKeyword | any;
/**
* Control page/column/region breaks that fall within a block of content
*/
breakInside?: CSSWideKeyword | any;
/**
* The clear CSS property specifies if an element can be positioned next to or must be
* positioned below the floating elements that precede it in the markup.
*/
clear?: CSSWideKeyword | any;
/**
* @deprecated see clip-path.
* Lets you specify the dimensions of an absolutely positioned element that should be
* visible, and the element is clipped into this shape, and displayed.
*/
clip?: CSSWideKeyword | any;
/**
* Clipping crops an graphic, so that only a portion of the graphic is rendered, or filled.
* This clip-rule property, when used with the clip-path property, defines which clip rule,
* or algorithm, to use when filling the different parts of a graphics.
*/
clipRule?: CSSWideKeyword | any;
/**
* The color property sets the color of an element’s foreground content (usually text),
* accepting any standard CSS color from keywords and hex values to RGB(a) and HSL(a).
*/
color?: CSSWideKeyword | any;
/**
* Describes the number of columns of the element.
* See CSS 3 column-count property https://www.w3.org/TR/css3-multicol/#cc
*/
columnCount?: CSSWideKeyword | number | "auto";
/** Specifies how to fill columns (balanced or sequential). */
columnFill?: CSSWideKeyword | any;
/**
* The column-gap property controls the width of the gap between columns in multi-column
* elements.
*/
columnGap?: CSSWideKeyword | any;
/** Sets the width, style, and color of the rule between columns. */
columnRule?: CSSWideKeyword | any;
/** Specifies the color of the rule between columns. */
columnRuleColor?: CSSWideKeyword | any;
/**
* Specifies the width of the rule between columns.
*/
columnRuleWidth?: CSSWideKeyword | any;
/**
* The column-span CSS property makes it possible for an element to span across all
* columns when its value is set to all. An element that spans more than one column is
* called a spanning element.
*/
columnSpan?: CSSWideKeyword | any;
/**
* Specifies the width of columns in multi-column elements.
*/
columnWidth?: CSSWideKeyword | any;
/**
* This property is a shorthand property for setting column-width and/or column-count.
*/
columns?: CSSWideKeyword | any;
/**
* The counter-increment property accepts one or more names of counters (identifiers),
* each one optionally followed by an integer which specifies the value by which the
* counter should be incremented (e.g. if the value is 2, the counter increases by 2
* each time it is invoked).
*/
counterIncrement?: CSSWideKeyword | any;
/**
* The counter-reset property contains a list of one or more names of counters, each one
* optionally followed by an integer (otherwise, the integer defaults to 0.) Each time the
* given element is invoked, the counters specified by the property are set to the given
* integer.
*/
counterReset?: CSSWideKeyword | any;
/**
* The cue property specifies sound files (known as an "auditory icon") to be played by speech
* media agents before and after presenting an element’s content; if only one file is
* specified, it is played both before and after. The volume at which the file(s) should be
* played, relative to the volume of the main element, may also be specified. The icon files
* may also be set separately with the cue-before and cue-after properties.
*/
cue?: CSSWideKeyword | any;
/**
* The cue-after property specifies a sound file (known as an "auditory icon") to be played by
* speech media agents after presenting an element’s content; the volume at which the file
* should be played may also be specified. The shorthand property cue sets cue sounds for
* both before and after the element is presented.
*/
cueAfter?: CSSWideKeyword | any;
/**
* Specifies the mouse cursor displayed when the mouse pointer is over an element.
*/
cursor?: CSSWideKeyword | any;
/**
* The direction CSS property specifies the text direction/writing direction. The rtl is used
* for Hebrew or Arabic text, the ltr is for other languages.
*/
direction?: CSSWideKeyword | any;
/**
* This property specifies the type of rendering box used for an element. It is a shorthand
* property for many other display properties.
*/
display?: CSSWideKeyword | any;
/**
* The ‘fill’ property paints the interior of the given graphical element. The area to be
* painted consists of any areas inside the outline of the shape. To determine the inside of
* the shape, all subpaths are considered, and the interior is determined according to the
* rules associated with the current value of the ‘fill-rule’ property. The zero-width
* geometric outline of a shape is included in the area to be painted.
*/
fill?: CSSWideKeyword | any;
/**
* SVG: Specifies the opacity of the color or the content the current object is filled with.
* See SVG 1.1 https://www.w3.org/TR/SVG/painting.html#FillOpacityProperty
*/
fillOpacity?: CSSWideKeyword | number;
/**
* The ‘fill-rule’ property indicates the algorithm which is to be used to determine what
* parts of the canvas are included inside the shape. For a simple, non-intersecting path,
* it is intuitively clear what region lies "inside"; however, for a more complex path,
* such as a path that intersects itself or where one subpath encloses another, the
* interpretation of "inside" is not so obvious.
* The ‘fill-rule’ property provides two options for how the inside of a shape is determined:
*/
fillRule?: CSSWideKeyword | any;
/**
* Applies various image processing effects. This property is largely unsupported.
* See Compatibility section for more information.
*/
filter?: CSSWideKeyword | any;
/** Shorthand for `flex-grow`, `flex-shrink`, and `flex-basis`. */
flex?: CSSWideKeyword | number | string;
/**
* @deprecated Do not use. This property has been renamed to align-items.
* Specifies the alignment (perpendicular to the layout axis defined by the flex-direction
* property) of child elements of the object.
*/
flexAlign?: CSSWideKeyword | any;
/**
* The `flex-basis` CSS property describes the initial main size of the flex item before any
* free space is distributed according to the flex factors described in the flex property
* (`flex-grow` and `flex-shrink`).
*/
flexBasis?: CSSWideKeyword | any;
/**
* The `flex-direction` CSS property describes how flex items are placed in the flex container,
* by setting the direction of the flex container’s main axis.
*/
flexDirection?: CSSWideKeyword | "row" | "row-reverse" | "column" | "column-reverse";
/**
* The `flex-flow` CSS property defines the flex container’s main and cross axis. It is a
* shorthand property for the `flex-direction` and `flex-wrap properties`.
*/
flexFlow?: CSSWideKeyword | string;
/**
* Specifies the flex grow factor of a flex item.
* See CSS flex-grow property https://drafts.csswg.org/css-flexbox-1/#flex-grow-property
*/
flexGrow?: CSSWideKeyword | number;
/**
* Gets or sets a value that specifies the ordinal group that a flexbox element belongs to.
* This ordinal value identifies the display order for the group.
*/
flexOrder?: CSSWideKeyword | any;
/**
* Specifies the flex shrink factor of a flex item.
* See CSS flex-shrink property https://drafts.csswg.org/css-flexbox-1/#flex-shrink-property
*/
flexShrink?: CSSWideKeyword | number;
/**
* Specifies whether flex items are forced into a single line or can be wrapped onto multiple
* lines. If wrapping is allowed, this property also enables you to control the direction in
* which lines are stacked.
* See CSS flex-wrap property https://drafts.csswg.org/css-flexbox-1/#flex-wrap-property
*/
flexWrap?: CSSWideKeyword | "nowrap" | "wrap" | "wrap-reverse";
/**
* Elements which have the style float are floated horizontally. These elements can move as far
* to the left or right of the containing element. All elements after the floating element will
* flow around it, but elements before the floating element are not impacted. If several
* floating elements are placed after each other, they will float next to each other as long
* as there is room.
*/
float?: CSSWideKeyword | any;
/**
* Flows content from a named flow (specified by a corresponding flow-into) through selected
* elements to form a dynamic chain of layout regions.
*/
flowFrom?: CSSWideKeyword | any;
/**
* The font property is shorthand that allows you to do one of two things: you can either set
* up six of the most mature font properties in one line, or you can set one of a choice of
* keywords to adopt a system font setting.
*/
font?: CSSWideKeyword | any;
/**
* The font-family property allows one or more font family names and/or generic family names
* to be specified for usage on the selected element(s)' text. The browser then goes through
* the list; for each character in the selection it applies the first font family that has an
* available glyph for that character.
*/
fontFamily?: CSSWideKeyword | any;
/**
* The font-kerning property allows contextual adjustment of inter-glyph spacing, i.e. the
* spaces between the characters in text. This property controls <bold>metric kerning</bold> -
* that utilizes adjustment data contained in the font. Optical Kerning is not supported as yet.
*/
fontKerning?: CSSWideKeyword | any;
/**
* Specifies the size of the font. Used to compute em and ex units.
* See CSS 3 font-size property https://www.w3.org/TR/css-fonts-3/#propdef-font-size
*/
fontSize?: CSSWideKeyword |
"xx-small" | "x-small" | "small" | "medium" | "large" | "x-large" | "xx-large" |
"larger" | "smaller" |
CSSLength | CSSPercentage;
/**
* The font-size-adjust property adjusts the font-size of the fallback fonts defined with
* font-family, so that the x-height is the same no matter what font is used. This preserves
* the readability of the text when fallback happens.
* @see https://www.w3.org/TR/css-fonts-3/#propdef-font-size-adjust
*/
fontSizeAdjust?: CSSWideKeyword | "none" | number;
/**
* Allows you to expand or condense the widths for a normal, condensed, or expanded font face.
* See CSS 3 font-stretch property https://drafts.csswg.org/css-fonts-3/#propdef-font-stretch
*/
fontStretch?: CSSWideKeyword |
"normal" | "ultra-condensed" | "extra-condensed" | "condensed" | "semi-condensed" |
"semi-expanded" | "expanded" | "extra-expanded" | "ultra-expanded";
/**
* The font-style property allows normal, italic, or oblique faces to be selected. Italic
* forms are generally cursive in nature while oblique faces are typically sloped versions
* of the regular face. Oblique faces can be simulated by artificially sloping the glyphs of
* the regular face.
* See CSS 3 font-style property https://www.w3.org/TR/css-fonts-3/#propdef-font-style
*/
fontStyle?: CSSWideKeyword | "normal" | "italic" | "oblique";
/**
* This value specifies whether the user agent is allowed to synthesize bold or oblique font
* faces when a font family lacks bold or italic faces.
*/
fontSynthesis?: CSSWideKeyword | any;
/**
* The font-variant property enables you to select the small-caps font within a font family.
*/
fontVariant?: CSSWideKeyword | any;
/**
* Fonts can provide alternate glyphs in addition to default glyph for a character. This
* property provides control over the selection of these alternate glyphs.
*/
fontVariantAlternates?: CSSWideKeyword | any;
/**
* Specifies the weight or boldness of the font.
* @see https://www.w3.org/TR/css-fonts-3/#propdef-font-weight
*/
fontWeight?: CSSWideKeyword | "normal" | "bold" | "bolder" | "lighter" | 100 | 200 |
300 | 400 | 500 | 600 | 700 | 800 | 900;
/**
* Lays out one or more grid items bound by 4 grid lines. Shorthand for setting
* `grid-column-start`, `grid-column-end`, `grid-row-start`, and `grid-row-end`
* in a single declaration.
*/
gridArea?: CSSWideKeyword | any;
/**
* Controls a grid item’s placement in a grid area, particularly grid position and a grid span.
* Shorthand for setting grid-column-start and grid-column-end in a single declaration.
*/
gridColumn?: CSSWideKeyword | any;
/**
* Controls a grid item’s placement in a grid area as well as grid position and a grid span.
* The grid-column-end property (with grid-row-start, grid-row-end, and grid-column-start)
* determines a grid item’s placement by specifying the grid lines of a grid item’s grid area.
*/
gridColumnEnd?: CSSWideKeyword | any;
/**
* Determines a grid item’s placement by specifying the starting grid lines of a grid item’s
* grid area. A grid item’s placement in a grid area consists of a grid position and a grid
* span. See also ( grid-row-start, grid-row-end, and grid-column-end)
*/
gridColumnStart?: CSSWideKeyword | any;
/**
* Gets or sets a value that indicates which row an element within a Grid should appear in.
* Shorthand for setting grid-row-start and grid-row-end in a single declaration.
*/
gridRow?: CSSWideKeyword | any;
/**
* Determines a grid item’s placement by specifying the block-end. A grid item’s placement in a
* grid area consists of a grid position and a grid span. The grid-row-end property (with
* grid-row-start, grid-column-start, and grid-column-end) determines a grid item’s placement
* by specifying the grid lines of a grid item’s grid area.
*/
gridRowEnd?: CSSWideKeyword | any;
/**
* Specifies a row position based upon an integer location, string value, or desired row size.
* css/properties/grid-row is used as short-hand for grid-row-position and grid-row-position
*/
gridRowPosition?: CSSWideKeyword | any;
gridRowSpan?: CSSWideKeyword | any;
/**
* Specifies named grid areas which are not associated with any particular grid item, but can
* be referenced from the grid-placement properties. The syntax of the grid-template-areas
* property also provides a visualization of the structure of the grid, making the overall
* layout of the grid container easier to understand.
*/
gridTemplateAreas?: CSSWideKeyword | any;
/**
* Specifies (with grid-template-rows) the line names and track sizing functions of the grid.
* Each sizing function can be specified as a length, a percentage of the grid container’s size,
* a measurement of the contents occupying the column or row, or a fraction of the free space
* in the grid.
*/
gridTemplateColumns?: CSSWideKeyword | any;
/**
* Specifies (with grid-template-columns) the line names and track sizing functions of the grid.
* Each sizing function can be specified as a length, a percentage of the grid container’s size,
* a measurement of the contents occupying the column or row, or a fraction of the free space in
* the grid.
*/
gridTemplateRows?: CSSWideKeyword | any;
/**
* Sets the height of an element. The content area of the element height does not include the
* padding, border, and margin of the element.
*/
height?: CSSWideKeyword | any;
/**
* Specifies the minimum number of characters in a hyphenated word
*/
hyphenateLimitChars?: CSSWideKeyword | any;
/**
* Indicates the maximum number of successive hyphenated lines in an element. The ‘no-limit’
* value means that there is no limit.
*/
hyphenateLimitLines?: CSSWideKeyword | any;
/**
* Specifies the maximum amount of trailing whitespace (before justification) that may be left
* in a line before hyphenation is triggered to pull part of a word from the next line back
* up into the current one.
*/
hyphenateLimitZone?: CSSWideKeyword | any;
/**
* Specifies whether or not words in a sentence can be split by the use of a manual or
* automatic hyphenation mechanism.
*/
hyphens?: CSSWideKeyword | any;
imeMode?: CSSWideKeyword | any;
/**
* Defines how the browser distributes space between and around flex items
* along the main-axis of their container.
* @see https://www.w3.org/TR/css-flexbox-1/#justify-content-property
*/
justifyContent?: CSSWideKeyword | "flex-start" | "flex-end" | "center" | "space-between" |
"space-around" | "space-evenly";
layoutGrid?: CSSWideKeyword | any;
layoutGridChar?: CSSWideKeyword | any;
layoutGridLine?: CSSWideKeyword | any;
layoutGridMode?: CSSWideKeyword | any;
layoutGridType?: CSSWideKeyword | any;
/**
* Sets the left edge of an element
*/
left?: CSSWideKeyword | any;
/**
* The letter-spacing CSS property specifies the spacing behavior between text characters.
*/
letterSpacing?: CSSWideKeyword | any;
/**
* @deprecated
* Gets or sets line-breaking rules for text in selected languages such as Japanese,
* Chinese, and Korean.
*/
lineBreak?: CSSWideKeyword | any;
lineClamp?: CSSWideKeyword | number;
/**
* Specifies the height of an inline block level element.
* @see https://www.w3.org/TR/CSS21/visudet.html#propdef-line-height
*/
lineHeight?: CSSWideKeyword | "normal" | number | CSSLength | CSSPercentage;
/**
* Shorthand property that sets the list-style-type, list-style-position and list-style-image
* properties in one declaration.
*/
listStyle?: CSSWideKeyword | any;
/**
* This property sets the image that will be used as the list item marker. When the image is
* available, it will replace the marker set with the 'list-style-type' marker. That also
* means that if the image is not available, it will show the style specified by
* list-style-property
*/
listStyleImage?: CSSWideKeyword | any;
/**
* Specifies if the list-item markers should appear inside or outside the content flow.
*/
listStylePosition?: CSSWideKeyword | any;
/**
* Specifies the type of list-item marker in a list.
*/
listStyleType?: CSSWideKeyword | any;
/**
* The margin property is shorthand to allow you to set all four margins of an element at once.
* Its equivalent longhand properties are margin-top, margin-right, margin-bottom and
* margin-left. Negative values are also allowed.
*/
margin?: CSSWideKeyword | any;
/**
* margin-bottom sets the bottom margin of an element.
*/
marginBottom?: CSSWideKeyword | any;
/**
* margin-left sets the left margin of an element.
*/
marginLeft?: CSSWideKeyword | any;
/**
* margin-right sets the right margin of an element.
*/
marginRight?: CSSWideKeyword | any;
/**
* margin-top sets the top margin of an element.
*/
marginTop?: CSSWideKeyword | any;
/**
* The marquee-direction determines the initial direction in which the marquee content moves.
*/
marqueeDirection?: CSSWideKeyword | any;
/**
* The 'marquee-style' property determines a marquee’s scrolling behavior.
*/
marqueeStyle?: CSSWideKeyword | any;
/**
* This property is shorthand for setting mask-image, mask-mode, mask-repeat, mask-position,
* mask-clip, mask-origin, mask-composite and mask-size. Omitted values are set to their
* original properties’ initial values.
*/
mask?: CSSWideKeyword | any;
/**
* This property is shorthand for setting mask-border-source, mask-border-slice,
* mask-border-width, mask-border-outset, and mask-border-repeat. Omitted values are set to
* their original properties' initial values.
*/
maskBorder?: CSSWideKeyword | any;
/**
* This property specifies how the images for the sides and the middle part of the mask image
* are scaled and tiled. The first keyword applies to the horizontal sides, the second one
* applies to the vertical ones. If the second keyword is absent, it is assumed to be the
* same as the first, similar to the CSS border-image-repeat property.
*/
maskBorderRepeat?: CSSWideKeyword | any;
/**
* This property specifies inward offsets from the top, right, bottom, and left edges of the
* mask image, dividing it into nine regions: four corners, four edges, and a middle. The
* middle image part is discarded and treated as fully transparent black unless the fill
* keyword is present. The four values set the top, right, bottom and left offsets in that
* order, similar to the CSS border-image-slice property.
*/
maskBorderSlice?: CSSWideKeyword | any;
/**
* Specifies an image to be used as a mask. An image that is empty, fails to download, is
* non-existent, or cannot be displayed is ignored and does not mask the element.
*/
maskBorderSource?: CSSWideKeyword | any;