This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
completions.json
2225 lines (2225 loc) · 59.8 KB
/
completions.json
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
{
"tags": [
"a",
"b",
"blockquote",
"body",
"br",
"button",
"canvas",
"code",
"div",
"em",
"form",
"footer",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6",
"head",
"header",
"hgroup",
"hr",
"html",
"i",
"iframe",
"img",
"input",
"label",
"li",
"nav",
"ol",
"p",
"pre",
"select",
"span",
"strong",
"sub",
"summary",
"table",
"td",
"textarea",
"th",
"title",
"tr",
"ul",
"abbr",
"address",
"area",
"article",
"aside",
"audio",
"base",
"bdi",
"bdo",
"big",
"caption",
"cite",
"col",
"colgroup",
"command",
"datalist",
"dd",
"del",
"details",
"dfn",
"dialog",
"dl",
"dt",
"embed",
"fieldset",
"figcaption",
"figure",
"ilayer",
"ins",
"kbd",
"keygen",
"legend",
"link",
"main",
"map",
"mark",
"marquee",
"menu",
"meta",
"meter",
"noscript",
"object",
"optgroup",
"option",
"output",
"param",
"progress",
"q",
"rp",
"rt",
"ruby",
"samp",
"script",
"section",
"small",
"source",
"style",
"sup",
"tbody",
"tfoot",
"thead",
"time",
"track",
"tt",
"var",
"video",
"wbr"
],
"properties": {
"width": {
"values": [
"auto",
"inherit"
],
"description": "Specifies the width of an element."
},
"height": {
"values": [
"auto",
"inherit"
],
"description": "Specifies the height of an element."
},
"margin": {
"values": [
"auto",
"inherit"
],
"description": "Sets the margin area on all four sides of an element."
},
"margin-left": {
"values": [
"auto",
"inherit"
],
"description": "Sets the margin area on the left side of an element."
},
"margin-right": {
"values": [
"auto",
"inherit"
],
"description": "Sets the margin area on the right side of an element."
},
"margin-top": {
"values": [
"auto",
"inherit"
],
"description": "Sets the margin area on the top of an element."
},
"margin-bottom": {
"values": [
"auto",
"inherit"
],
"description": "Sets the margin area on the bottom of an element."
},
"padding": {
"values": [
"inherit"
],
"description": "Sets the padding area on all four sides of an element."
},
"padding-left": {
"values": [],
"description": "Sets the width of the padding area on the left side of an element."
},
"padding-right": {
"values": [],
"description": "Sets the width of the padding area on the right side of an element."
},
"padding-top": {
"values": [],
"description": "Sets the height of the padding area on the top of an element."
},
"padding-bottom": {
"values": [],
"description": "Sets the height of the padding area on the bottom of an element."
},
"font": {
"values": [],
"description": "Either a shorthand property for setting font-style, font-variant, font-weight, font-size, line-height, and font-family ; or a way to set the element's font to a system font, using specific keywords."
},
"font-size": {
"values": [],
"description": "Specifies the size of the font."
},
"font-style": {
"values": [
"italic",
"normal",
"oblique"
],
"description": "Specifies whether a font should be styled with a normal, italic, or oblique face from its font-family."
},
"font-weight": {
"values": [
"bold",
"bolder",
"lighter",
"normal",
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900",
"inherit"
],
"description": "Specifies the weight (or boldness) of the font."
},
"font-family": {
"values": [
"cursive",
"fantasy",
"inherit",
"monospace",
"sans-serif",
"serif"
],
"description": "Specifies a prioritized list of one or more font family names and/or generic family names for the selected element."
},
"border": {
"values": [],
"description": "A shorthand property for setting all individual border property values at once: border-width, border-style, and border-color."
},
"border-radius": {
"values": [],
"description": "Allows Web authors to define how rounded border corners are."
},
"border-top": {
"values": [],
"description": "A shorthand that sets the values of border-top-color, border-top-style, and border-top-width."
},
"border-bottom": {
"values": [],
"description": "A shorthand that sets the values of border-bottom-color, border-bottom-style, and border-bottom-width."
},
"border-left": {
"values": [],
"description": "A shorthand that sets the values of border-left-color, border-left-style, and border-left-width."
},
"border-right": {
"values": [],
"description": "A shorthand that sets the values of border-right-color, border-right-style, and border-right-width."
},
"border-color": {
"values": [
"inherit"
],
"type": "color",
"description": "A shorthand property for setting the color of the four sides of an element's border."
},
"border-width": {
"values": [
"medium",
"thin",
"thick",
"inherit"
],
"description": "A shorthand property for setting the widths on all four sides of an element's border: border-top-width, border-right-width, border-bottom-width, and border-left-width."
},
"position": {
"values": [
"absolute",
"fixed",
"relative",
"static",
"sticky",
"inherit"
],
"description": "Specifies how an element is positioned in a document."
},
"text-align": {
"values": [
"center",
"left",
"justify",
"right",
"inherit"
],
"description": "Describes how inline content like text is aligned in its parent block element."
},
"background": {
"values": [],
"description": "The CSS background shorthand property lets you adjust all of the available background style options at once, including color image, origin and size, repeat method, and other features."
},
"background-color": {
"values": [
"inherit"
],
"type": "color",
"description": "Sets the background color of an element, using either a color value or the keyword transparent."
},
"background-position": {
"values": [
"left",
"center",
"right",
"bottom",
"top"
],
"description": "Sets the initial position for each defined background image, relative to the background position layer defined by background-origin."
},
"background-repeat": {
"values": [
"no-repeat",
"repeat",
"repeat-x",
"repeat-y",
"round",
"space"
],
"description": "Defines how background images are repeated."
},
"background-image": {
"values": [
"image()",
"linear-gradient()",
"radial-gradient()",
"repeating-linear-gradient()",
"repeating-radial-gradient()",
"url()"
],
"description": "Sets one or more background images on an element."
},
"background-size": {
"values": [
"auto",
"contain",
"cover"
],
"description": "Specifies the size of an element's background image."
},
"background-clip": {
"values": [
"border-box",
"content-box",
"padding-box",
"inherit"
],
"description": "Specifies if an element's background, whether a color or an image, extends underneath its border."
},
"right": {
"values": [
"auto",
"inherit"
],
"description": "Participates in specifying the horizontal position of a positioned element."
},
"left": {
"values": [
"auto",
"inherit"
],
"description": "Participates in specifying the horizontal position of a positioned element."
},
"top": {
"values": [
"auto",
"inherit"
],
"description": "Participates in specifying the vertical position of a positioned element."
},
"bottom": {
"values": [
"auto",
"inherit"
],
"description": "Participates in specifying the vertical position of a positioned element."
},
"overflow": {
"values": [
"auto",
"hidden",
"scroll",
"visible",
"inherit"
],
"description": "Shorthand for the overflow-x and overflow-y properties, and specifies what to do when content is too large to fit in its block-level container."
},
"overflow-x": {
"values": [
"auto",
"hidden",
"scroll",
"visible",
"inherit"
],
"description": "Specifies whether to clip content, render a scroll bar, or display overflow content of a block-level element, when it overflows at the left and right edges."
},
"overflow-y": {
"values": [
"auto",
"hidden",
"scroll",
"visible",
"inherit"
],
"description": "Specifies whether to clip content, render a scroll bar, or display overflow content of a block-level element, when it overflows at the top and bottom edges."
},
"opacity": {
"values": [
"inherit"
],
"description": "Specifies the level of transparency of an element, that is, the degree to which the content behind the element is visible."
},
"cursor": {
"values": [
"alias",
"all-scroll",
"auto",
"cell",
"col-resize",
"context-menu",
"copy",
"crosshair",
"default",
"e-resize",
"ew-resize",
"grab",
"grabbing",
"help",
"inherit",
"move",
"n-resize",
"ne-resize",
"nesw-resize",
"no-drop",
"none",
"not-allowed",
"ns-resize",
"nw-resize",
"nwse-resize",
"pointer",
"progress",
"row-resize",
"s-resize",
"se-resize",
"sw-resize",
"text",
"vertical-text",
"w-resize",
"wait",
"zoom-in",
"zoom-out"
],
"description": "Specifies which mouse cursor to display when the mouse pointer is over an element."
},
"display": {
"values": [
"block",
"contents",
"flex",
"flow-root",
"grid",
"inline",
"inline-block",
"inline-flex",
"inline-grid",
"inline-table",
"list-item",
"none",
"run-in",
"subgrid",
"table",
"table-caption",
"table-cell",
"table-column",
"table-column-group",
"table-footer-group",
"table-header-group",
"table-row",
"table-row-group",
"inherit"
],
"description": "Specifies the type of rendering box used for an element."
},
"color": {
"values": [
"inherit"
],
"type": "color",
"description": "Sets the foreground color value of an element's text content and text decorations."
},
"visibility": {
"values": [
"collapse",
"hidden",
"visible",
"inherit"
],
"description": "Can show or hide an element without affecting the layout of a document (i."
},
"float": {
"values": [
"left",
"right",
"none",
"inherit"
],
"description": "Specifies that an element should be placed along the left or right side of its container, allowing text and inline elements to wrap around it."
},
"text-decoration": {
"values": [
"line-through",
"none",
"overline",
"underline",
"inherit"
],
"description": "Specifies the appearance of decorative lines used on text."
},
"line-height": {
"values": [
"normal",
"inherit"
],
"description": "Sets the amount of space used for lines, such as in text."
},
"z-index": {
"values": [
"auto",
"inherit"
],
"description": "Specifies the z-order of a positioned element and its descendants."
},
"vertical-align": {
"values": [
"baseline",
"bottom",
"middle",
"sub",
"super",
"text-bottom",
"text-top",
"top",
"inherit"
],
"description": "Specifies the vertical alignment of an inline or table-cell box."
},
"box-sizing": {
"values": [
"border-box",
"content-box",
"inherit"
],
"description": "Used to alter the default CSS box model used to calculate width and height of the elements."
},
"clear": {
"values": [
"both",
"left",
"none",
"right",
"inherit"
],
"description": "Specifies whether an element can be next to floating elements that precede it or must be moved down (cleared) below them."
},
"white-space": {
"values": [
"normal",
"nowrap",
"pre",
"pre-line",
"pre-wrap",
"inherit"
],
"description": "Determines how whitespace inside an element is handled."
},
"max-width": {
"values": [
"none",
"inherit"
],
"description": "Sets the maximum width of an element."
},
"outline": {
"values": [
"inherit"
],
"description": "A shorthand property for setting one or more of the individual outline properties outline-style, outline-width, and outline-color in a single declaration."
},
"content": {
"values": [
"attr()",
"close-quote",
"no-close-quote",
"no-open-quote",
"normal",
"none",
"open-quote",
"inherit"
],
"description": "Used with the ::before and ::after pseudo-elements to generate content in an element."
},
"min-width": {
"values": [
"inherit"
],
"description": "Sets the minimum width of an element."
},
"min-height": {
"values": [
"inherit"
],
"description": "Sets the minimum height of an element."
},
"list-style": {
"values": [
"none",
"inherit",
"initial",
"unset",
"url()",
"armenian",
"circle",
"decimal",
"decimal-leading-zero",
"disc",
"georgian",
"inside",
"lower-alpha",
"lower-greek",
"lower-latin",
"lower-roman",
"outside",
"square",
"upper-alpha",
"upper-latin",
"upper-roman"
],
"description": "A shorthand for setting the individual values that define how a list is displayed: list-style-type, list-style-image, and list-style-position."
},
"box-shadow": {
"values": [],
"description": "Used to add shadow effects around an element's frame."
},
"text-shadow": {
"values": [],
"description": "Adds shadows to text."
},
"text-indent": {
"values": [
"inherit"
],
"description": "Specifies the amount of indentation (empty space) that is put before lines of text in a block."
},
"max-height": {
"values": [
"none",
"inherit"
],
"description": "Sets the maximum height of an element."
},
"text-overflow": {
"values": [
"clip",
"ellipsis",
"inherit"
],
"description": "Determines how overflowed content that is not displayed is signaled to users."
},
"border-style": {
"values": [
"dashed",
"dotted",
"double",
"groove",
"hidden",
"inset",
"none",
"outset",
"ridge",
"solid",
"inherit"
],
"description": "A shorthand property that sets the line style for all four sides of an element's border."
},
"border-spacing": {
"values": [
"inherit"
],
"description": "Specifies the distance between the borders of adjacent table cells."
},
"border-collapse": {
"values": [
"collapse",
"separate",
"inherit"
],
"description": "Specifies whether a table's borders are separated (cells have distinct borders from each other) or collapsed (adjacent cells share borders)."
},
"border-left-color": {
"values": [
"inherit"
],
"type": "color",
"description": "Sets the color of an element's left border."
},
"border-left-style": {
"values": [
"dashed",
"dotted",
"double",
"groove",
"hidden",
"inset",
"none",
"outset",
"ridge",
"solid",
"inherit"
],
"description": "Sets the line style of an element's left border."
},
"border-left-width": {
"values": [
"medium",
"thin",
"thick",
"inherit"
],
"description": "Sets the width of the left border of a box."
},
"border-right-color": {
"values": [
"inherit"
],
"type": "color",
"description": "Sets the color of an element's right border."
},
"border-right-style": {
"values": [
"dashed",
"dotted",
"double",
"groove",
"hidden",
"inset",
"none",
"outset",
"ridge",
"solid",
"inherit"
],
"description": "Sets the line style of an element's right border."
},
"border-right-width": {
"values": [
"medium",
"thin",
"thick",
"inherit"
],
"description": "Sets the width of the right border of a box."
},
"border-top-color": {
"values": [
"inherit"
],
"type": "color",
"description": "Sets the color of an element's top border."
},
"border-top-style": {
"values": [
"dashed",
"dotted",
"double",
"groove",
"hidden",
"inset",
"none",
"outset",
"ridge",
"solid",
"inherit"
],
"description": "Sets the line style of an element's top border."
},
"border-top-width": {
"values": [
"medium",
"thin",
"thick",
"inherit"
],
"description": "Sets the width of the top border of a box."
},
"border-bottom-color": {
"values": [
"inherit"
],
"type": "color",
"description": "Sets the color of an element's bottom border."
},
"border-bottom-style": {
"values": [
"dashed",
"dotted",
"double",
"groove",
"hidden",
"inset",
"none",
"outset",
"ridge",
"solid",
"inherit"
],
"description": "Sets the line style of an element's bottom border."
},
"border-bottom-width": {
"values": [
"medium",
"thin",
"thick",
"inherit"
],
"description": "Sets the width of the bottom border of a box."
},
"border-top-left-radius": {
"values": [],
"description": "Sets the rounding of the top-left corner of the element."
},
"border-top-right-radius": {
"values": [],
"description": "Sets the rounding of the top-right corner of the element."
},
"border-bottom-left-radius": {
"values": [],
"description": "Sets the rounding of the bottom-left corner of the element."
},
"border-bottom-right-radius": {
"values": [],
"description": "Sets the rounding of the bottom-right corner of the element."
},
"user-select": {
"values": [
"all",
"auto",
"contain",
"none",
"text"
],
"description": "Controls whether the user can select text."
},
"text-transform": {
"values": [
"capitalize",
"full-width",
"lowercase",
"none",
"uppercase",
"inherit"
],
"description": "Specifies how to capitalize an element's text."
},
"list-style-type": {
"values": [
"armenian",
"circle",
"decimal",
"decimal-leading-zero",
"disc",
"georgian",
"lower-alpha",
"lower-greek",
"lower-latin",
"lower-roman",
"none",
"square",
"upper-alpha",
"upper-latin",
"upper-roman",
"inherit"
],
"description": "Specifies the appearance of a list item element."
},
"word-wrap": {
"values": [
"break-word",
"normal"
]
},
"transition": {
"values": [],
"description": "A shorthand property for transition-property, transition-duration, transition-timing-function, and transition-delay."
},
"letter-spacing": {
"values": [
"normal",
"inherit"
],
"description": "Specifies the spacing behavior between text characters."
},
"transform": {
"values": [
"matrix()",
"matrix3d()",
"none",
"perspective()",
"rotate()",
"rotate3d()",
"rotateX()",
"rotateY()",
"rotateZ()",
"scale()",
"scale3d()",
"scaleX()",
"scaleY()",
"scaleZ()",
"skewX()",
"skewY()",
"translate()",
"translate3d()",
"translateX()",
"translateY()",
"translateZ()"
],
"description": "Lets you modify the coordinate space of the CSS visual formatting model."
},
"pointer-events": {
"values": [
"all",
"auto",
"fill",
"inherit",
"none",
"painted",
"stroke",
"visible",
"visibleFill",
"visiblePainted",
"visibleStroke"
],
"description": "Specifies under what circumstances (if any) a particular graphic element can become the target of mouse events."
},
"direction": {
"values": [
"ltr",
"rtl",
"inherit"
],
"description": "Sets the direction of text, table columns, and horizontal overflow."
},
"clip": {
"values": [
"auto",
"inherit"
],
"description": "Defines what portion of an element is visible."
},
"table-layout": {
"values": [
"auto",
"fixed",
"inherit"
],
"description": "Specifies the algorithm used to lay out table cells, rows, and columns."
},
"src": {
"values": [
"url()"
]
},
"resize": {
"values": [
"both",
"horizontal",
"none",
"vertical",
"inherit"
],
"description": "The resize CSS sets whether an element is resizable, and if so, in which direction(s)."
},
"word-break": {
"values": [
"normal",
"break-all",
"keep-all"
],
"description": "Specifies whether or not the browser should insert line breaks wherever the text would otherwise overflow its content box."
},
"filter": {
"values": [
"blur()",
"brightness()",
"contrast()",