-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.json
20638 lines (20638 loc) · 689 KB
/
index.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
[
{
"__docId__": 0,
"kind": "file",
"name": "lib/index.js",
"content": "var d3 = window && window.d3 || require(\"d3-selection\");\nvar selection = d3.selection;\nimport {default as A} from \"./selection/A\";\n selection.prototype.A = A;\nimport {default as Abbr} from \"./selection/Abbr\";\n selection.prototype.Abbr = Abbr;\nimport {default as Accept} from \"./selection/Accept\";\n selection.prototype.Accept = Accept;\nimport {default as Accesskey} from \"./selection/Accesskey\";\n selection.prototype.Accesskey = Accesskey;\nimport {default as Action} from \"./selection/Action\";\n selection.prototype.Action = Action;\nimport {default as Address} from \"./selection/Address\";\n selection.prototype.Address = Address;\nimport {default as AlignContent} from \"./selection/AlignContent\";\n selection.prototype.AlignContent = AlignContent;\nimport {default as AlignItems} from \"./selection/AlignItems\";\n selection.prototype.AlignItems = AlignItems;\nimport {default as AlignSelf} from \"./selection/AlignSelf\";\n selection.prototype.AlignSelf = AlignSelf;\nimport {default as Alt} from \"./selection/Alt\";\n selection.prototype.Alt = Alt;\nimport {default as Area} from \"./selection/Area\";\n selection.prototype.Area = Area;\nimport {default as Article} from \"./selection/Article\";\n selection.prototype.Article = Article;\nimport {default as Aside} from \"./selection/Aside\";\n selection.prototype.Aside = Aside;\nimport {default as Audio} from \"./selection/Audio\";\n selection.prototype.Audio = Audio;\nimport {default as Autocomplete} from \"./selection/Autocomplete\";\n selection.prototype.Autocomplete = Autocomplete;\nimport {default as Autofocus} from \"./selection/Autofocus\";\n selection.prototype.Autofocus = Autofocus;\nimport {default as B} from \"./selection/B\";\n selection.prototype.B = B;\nimport {default as Background} from \"./selection/Background\";\n selection.prototype.Background = Background;\nimport {default as BackgroundAttachment} from \"./selection/BackgroundAttachment\";\n selection.prototype.BackgroundAttachment = BackgroundAttachment;\nimport {default as BackgroundBlendMode} from \"./selection/BackgroundBlendMode\";\n selection.prototype.BackgroundBlendMode = BackgroundBlendMode;\nimport {default as BackgroundClip} from \"./selection/BackgroundClip\";\n selection.prototype.BackgroundClip = BackgroundClip;\nimport {default as BackgroundColor} from \"./selection/BackgroundColor\";\n selection.prototype.BackgroundColor = BackgroundColor;\nimport {default as BackgroundImage} from \"./selection/BackgroundImage\";\n selection.prototype.BackgroundImage = BackgroundImage;\nimport {default as BackgroundOrigin} from \"./selection/BackgroundOrigin\";\n selection.prototype.BackgroundOrigin = BackgroundOrigin;\nimport {default as BackgroundPosition} from \"./selection/BackgroundPosition\";\n selection.prototype.BackgroundPosition = BackgroundPosition;\nimport {default as BackgroundRepeat} from \"./selection/BackgroundRepeat\";\n selection.prototype.BackgroundRepeat = BackgroundRepeat;\nimport {default as BackgroundSize} from \"./selection/BackgroundSize\";\n selection.prototype.BackgroundSize = BackgroundSize;\nimport {default as Base} from \"./selection/Base\";\n selection.prototype.Base = Base;\nimport {default as Bdi} from \"./selection/Bdi\";\n selection.prototype.Bdi = Bdi;\nimport {default as Bdo} from \"./selection/Bdo\";\n selection.prototype.Bdo = Bdo;\nimport {default as Blockquote} from \"./selection/Blockquote\";\n selection.prototype.Blockquote = Blockquote;\nimport {default as Border} from \"./selection/Border\";\n selection.prototype.Border = Border;\nimport {default as BorderBottom} from \"./selection/BorderBottom\";\n selection.prototype.BorderBottom = BorderBottom;\nimport {default as BorderBottomColor} from \"./selection/BorderBottomColor\";\n selection.prototype.BorderBottomColor = BorderBottomColor;\nimport {default as BorderBottomLeftRadius} from \"./selection/BorderBottomLeftRadius\";\n selection.prototype.BorderBottomLeftRadius = BorderBottomLeftRadius;\nimport {default as BorderBottomRightRadius} from \"./selection/BorderBottomRightRadius\";\n selection.prototype.BorderBottomRightRadius = BorderBottomRightRadius;\nimport {default as BorderBottomStyle} from \"./selection/BorderBottomStyle\";\n selection.prototype.BorderBottomStyle = BorderBottomStyle;\nimport {default as BorderBottomWidth} from \"./selection/BorderBottomWidth\";\n selection.prototype.BorderBottomWidth = BorderBottomWidth;\nimport {default as BorderCollapse} from \"./selection/BorderCollapse\";\n selection.prototype.BorderCollapse = BorderCollapse;\nimport {default as BorderColor} from \"./selection/BorderColor\";\n selection.prototype.BorderColor = BorderColor;\nimport {default as BorderImage} from \"./selection/BorderImage\";\n selection.prototype.BorderImage = BorderImage;\nimport {default as BorderImageOutset} from \"./selection/BorderImageOutset\";\n selection.prototype.BorderImageOutset = BorderImageOutset;\nimport {default as BorderImageRepeat} from \"./selection/BorderImageRepeat\";\n selection.prototype.BorderImageRepeat = BorderImageRepeat;\nimport {default as BorderImageSlice} from \"./selection/BorderImageSlice\";\n selection.prototype.BorderImageSlice = BorderImageSlice;\nimport {default as BorderImageSource} from \"./selection/BorderImageSource\";\n selection.prototype.BorderImageSource = BorderImageSource;\nimport {default as BorderImageWidth} from \"./selection/BorderImageWidth\";\n selection.prototype.BorderImageWidth = BorderImageWidth;\nimport {default as BorderLeft} from \"./selection/BorderLeft\";\n selection.prototype.BorderLeft = BorderLeft;\nimport {default as BorderLeftColor} from \"./selection/BorderLeftColor\";\n selection.prototype.BorderLeftColor = BorderLeftColor;\nimport {default as BorderLeftStyle} from \"./selection/BorderLeftStyle\";\n selection.prototype.BorderLeftStyle = BorderLeftStyle;\nimport {default as BorderLeftWidth} from \"./selection/BorderLeftWidth\";\n selection.prototype.BorderLeftWidth = BorderLeftWidth;\nimport {default as BorderRadius} from \"./selection/BorderRadius\";\n selection.prototype.BorderRadius = BorderRadius;\nimport {default as BorderRight} from \"./selection/BorderRight\";\n selection.prototype.BorderRight = BorderRight;\nimport {default as BorderRightColor} from \"./selection/BorderRightColor\";\n selection.prototype.BorderRightColor = BorderRightColor;\nimport {default as BorderRightStyle} from \"./selection/BorderRightStyle\";\n selection.prototype.BorderRightStyle = BorderRightStyle;\nimport {default as BorderRightWidth} from \"./selection/BorderRightWidth\";\n selection.prototype.BorderRightWidth = BorderRightWidth;\nimport {default as BorderSpacing} from \"./selection/BorderSpacing\";\n selection.prototype.BorderSpacing = BorderSpacing;\nimport {default as BorderStyle} from \"./selection/BorderStyle\";\n selection.prototype.BorderStyle = BorderStyle;\nimport {default as BorderTop} from \"./selection/BorderTop\";\n selection.prototype.BorderTop = BorderTop;\nimport {default as BorderTopColor} from \"./selection/BorderTopColor\";\n selection.prototype.BorderTopColor = BorderTopColor;\nimport {default as BorderTopLeftRadius} from \"./selection/BorderTopLeftRadius\";\n selection.prototype.BorderTopLeftRadius = BorderTopLeftRadius;\nimport {default as BorderTopRightRadius} from \"./selection/BorderTopRightRadius\";\n selection.prototype.BorderTopRightRadius = BorderTopRightRadius;\nimport {default as BorderTopStyle} from \"./selection/BorderTopStyle\";\n selection.prototype.BorderTopStyle = BorderTopStyle;\nimport {default as BorderTopWidth} from \"./selection/BorderTopWidth\";\n selection.prototype.BorderTopWidth = BorderTopWidth;\nimport {default as BorderWidth} from \"./selection/BorderWidth\";\n selection.prototype.BorderWidth = BorderWidth;\nimport {default as Bottom} from \"./selection/Bottom\";\n selection.prototype.Bottom = Bottom;\nimport {default as BoxDecorationBreak} from \"./selection/BoxDecorationBreak\";\n selection.prototype.BoxDecorationBreak = BoxDecorationBreak;\nimport {default as BoxShadow} from \"./selection/BoxShadow\";\n selection.prototype.BoxShadow = BoxShadow;\nimport {default as BoxSizing} from \"./selection/BoxSizing\";\n selection.prototype.BoxSizing = BoxSizing;\nimport {default as Br} from \"./selection/Br\";\n selection.prototype.Br = Br;\nimport {default as Button} from \"./selection/Button\";\n selection.prototype.Button = Button;\nimport {default as Canvas} from \"./selection/Canvas\";\n selection.prototype.Canvas = Canvas;\nimport {default as Caption} from \"./selection/Caption\";\n selection.prototype.Caption = Caption;\nimport {default as CaptionSide} from \"./selection/CaptionSide\";\n selection.prototype.CaptionSide = CaptionSide;\nimport {default as Checkbox} from \"./selection/Checkbox\";\n selection.prototype.Checkbox = Checkbox;\nimport {default as Checked} from \"./selection/Checked\";\n selection.prototype.Checked = Checked;\nimport {default as Children} from \"./selection/Children\";\n selection.prototype.Children = Children;\nimport {default as Cite} from \"./selection/Cite\";\n selection.prototype.Cite = Cite;\nimport {default as Class} from \"./selection/Class\";\n selection.prototype.Class = Class;\nimport {default as Clear} from \"./selection/Clear\";\n selection.prototype.Clear = Clear;\nimport {default as Clip} from \"./selection/Clip\";\n selection.prototype.Clip = Clip;\nimport {default as Code} from \"./selection/Code\";\n selection.prototype.Code = Code;\nimport {default as Col} from \"./selection/Col\";\n selection.prototype.Col = Col;\nimport {default as Colgroup} from \"./selection/Colgroup\";\n selection.prototype.Colgroup = Colgroup;\nimport {default as Color} from \"./selection/Color\";\n selection.prototype.Color = Color;\nimport {default as Cols} from \"./selection/Cols\";\n selection.prototype.Cols = Cols;\nimport {default as Colspan} from \"./selection/Colspan\";\n selection.prototype.Colspan = Colspan;\nimport {default as Content} from \"./selection/Content\";\n selection.prototype.Content = Content;\nimport {default as ContentEditable} from \"./selection/ContentEditable\";\n selection.prototype.ContentEditable = ContentEditable;\nimport {default as Cursor} from \"./selection/Cursor\";\n selection.prototype.Cursor = Cursor;\nimport {default as Data} from \"./selection/Data\";\n selection.prototype.Data = Data;\nimport {default as Datalist} from \"./selection/Datalist\";\n selection.prototype.Datalist = Datalist;\nimport {default as Date} from \"./selection/Date\";\n selection.prototype.Date = Date;\nimport {default as DatetimeLocal} from \"./selection/DatetimeLocal\";\n selection.prototype.DatetimeLocal = DatetimeLocal;\nimport {default as Dd} from \"./selection/Dd\";\n selection.prototype.Dd = Dd;\nimport {default as Del} from \"./selection/Del\";\n selection.prototype.Del = Del;\nimport {default as Details} from \"./selection/Details\";\n selection.prototype.Details = Details;\nimport {default as Dfn} from \"./selection/Dfn\";\n selection.prototype.Dfn = Dfn;\nimport {default as Disabled} from \"./selection/Disabled\";\n selection.prototype.Disabled = Disabled;\nimport {default as Display} from \"./selection/Display\";\n selection.prototype.Display = Display;\nimport {default as Div} from \"./selection/Div\";\n selection.prototype.Div = Div;\nimport {default as Dl} from \"./selection/Dl\";\n selection.prototype.Dl = Dl;\nimport {default as Download} from \"./selection/Download\";\n selection.prototype.Download = Download;\nimport {default as Draggable} from \"./selection/Draggable\";\n selection.prototype.Draggable = Draggable;\nimport {default as Dropzone} from \"./selection/Dropzone\";\n selection.prototype.Dropzone = Dropzone;\nimport {default as Dt} from \"./selection/Dt\";\n selection.prototype.Dt = Dt;\nimport {default as Element} from \"./selection/Element\";\n selection.prototype.Element = Element;\nimport {default as Em} from \"./selection/Em\";\n selection.prototype.Em = Em;\nimport {default as Email} from \"./selection/Email\";\n selection.prototype.Email = Email;\nimport {default as Embed} from \"./selection/Embed\";\n selection.prototype.Embed = Embed;\nimport {default as EmptyCells} from \"./selection/EmptyCells\";\n selection.prototype.EmptyCells = EmptyCells;\nimport {default as Enctype} from \"./selection/Enctype\";\n selection.prototype.Enctype = Enctype;\nimport {default as Fieldset} from \"./selection/Fieldset\";\n selection.prototype.Fieldset = Fieldset;\nimport {default as Figcaption} from \"./selection/Figcaption\";\n selection.prototype.Figcaption = Figcaption;\nimport {default as Figure} from \"./selection/Figure\";\n selection.prototype.Figure = Figure;\nimport {default as File} from \"./selection/File\";\n selection.prototype.File = File;\nimport {default as Flex} from \"./selection/Flex\";\n selection.prototype.Flex = Flex;\nimport {default as FlexBasis} from \"./selection/FlexBasis\";\n selection.prototype.FlexBasis = FlexBasis;\nimport {default as FlexDirection} from \"./selection/FlexDirection\";\n selection.prototype.FlexDirection = FlexDirection;\nimport {default as FlexFlow} from \"./selection/FlexFlow\";\n selection.prototype.FlexFlow = FlexFlow;\nimport {default as FlexGrow} from \"./selection/FlexGrow\";\n selection.prototype.FlexGrow = FlexGrow;\nimport {default as FlexShrink} from \"./selection/FlexShrink\";\n selection.prototype.FlexShrink = FlexShrink;\nimport {default as FlexWrap} from \"./selection/FlexWrap\";\n selection.prototype.FlexWrap = FlexWrap;\nimport {default as Float} from \"./selection/Float\";\n selection.prototype.Float = Float;\nimport {default as Font} from \"./selection/Font\";\n selection.prototype.Font = Font;\nimport {default as FontFamily} from \"./selection/FontFamily\";\n selection.prototype.FontFamily = FontFamily;\nimport {default as FontFeatureSettings} from \"./selection/FontFeatureSettings\";\n selection.prototype.FontFeatureSettings = FontFeatureSettings;\nimport {default as FontKerning} from \"./selection/FontKerning\";\n selection.prototype.FontKerning = FontKerning;\nimport {default as FontLanguageOverride} from \"./selection/FontLanguageOverride\";\n selection.prototype.FontLanguageOverride = FontLanguageOverride;\nimport {default as FontSize} from \"./selection/FontSize\";\n selection.prototype.FontSize = FontSize;\nimport {default as FontSizeAdjust} from \"./selection/FontSizeAdjust\";\n selection.prototype.FontSizeAdjust = FontSizeAdjust;\nimport {default as FontStretch} from \"./selection/FontStretch\";\n selection.prototype.FontStretch = FontStretch;\nimport {default as FontStyle} from \"./selection/FontStyle\";\n selection.prototype.FontStyle = FontStyle;\nimport {default as FontSynthesis} from \"./selection/FontSynthesis\";\n selection.prototype.FontSynthesis = FontSynthesis;\nimport {default as FontVariant} from \"./selection/FontVariant\";\n selection.prototype.FontVariant = FontVariant;\nimport {default as FontVariantAlternates} from \"./selection/FontVariantAlternates\";\n selection.prototype.FontVariantAlternates = FontVariantAlternates;\nimport {default as FontVariantCaps} from \"./selection/FontVariantCaps\";\n selection.prototype.FontVariantCaps = FontVariantCaps;\nimport {default as FontVariantEastAsian} from \"./selection/FontVariantEastAsian\";\n selection.prototype.FontVariantEastAsian = FontVariantEastAsian;\nimport {default as FontVariantLigatures} from \"./selection/FontVariantLigatures\";\n selection.prototype.FontVariantLigatures = FontVariantLigatures;\nimport {default as FontVariantNumeric} from \"./selection/FontVariantNumeric\";\n selection.prototype.FontVariantNumeric = FontVariantNumeric;\nimport {default as FontVariantPosition} from \"./selection/FontVariantPosition\";\n selection.prototype.FontVariantPosition = FontVariantPosition;\nimport {default as FontWeight} from \"./selection/FontWeight\";\n selection.prototype.FontWeight = FontWeight;\nimport {default as Footer} from \"./selection/Footer\";\n selection.prototype.Footer = Footer;\nimport {default as For} from \"./selection/For\";\n selection.prototype.For = For;\nimport {default as Form} from \"./selection/Form\";\n selection.prototype.Form = Form;\nimport {default as Formaction} from \"./selection/Formaction\";\n selection.prototype.Formaction = Formaction;\nimport {default as H1} from \"./selection/H1\";\n selection.prototype.H1 = H1;\nimport {default as H2} from \"./selection/H2\";\n selection.prototype.H2 = H2;\nimport {default as H3} from \"./selection/H3\";\n selection.prototype.H3 = H3;\nimport {default as H4} from \"./selection/H4\";\n selection.prototype.H4 = H4;\nimport {default as H5} from \"./selection/H5\";\n selection.prototype.H5 = H5;\nimport {default as H6} from \"./selection/H6\";\n selection.prototype.H6 = H6;\nimport {default as HangingPunctuation} from \"./selection/HangingPunctuation\";\n selection.prototype.HangingPunctuation = HangingPunctuation;\nimport {default as HashStateRouter} from \"./selection/HashStateRouter\";\n d3.HashStateRouter = HashStateRouter;\nimport {default as Header} from \"./selection/Header\";\n selection.prototype.Header = Header;\nimport {default as Height} from \"./selection/Height\";\n selection.prototype.Height = Height;\nimport {default as Hidden} from \"./selection/Hidden\";\n selection.prototype.Hidden = Hidden;\nimport {default as Hr} from \"./selection/Hr\";\n selection.prototype.Hr = Hr;\nimport {default as Href} from \"./selection/Href\";\n selection.prototype.Href = Href;\nimport {default as Hyphens} from \"./selection/Hyphens\";\n selection.prototype.Hyphens = Hyphens;\nimport {default as I} from \"./selection/I\";\n selection.prototype.I = I;\nimport {default as Id} from \"./selection/Id\";\n selection.prototype.Id = Id;\nimport {default as Iframe} from \"./selection/Iframe\";\n selection.prototype.Iframe = Iframe;\nimport {default as Image} from \"./selection/Image\";\n selection.prototype.Image = Image;\nimport {default as ImeMode} from \"./selection/ImeMode\";\n selection.prototype.ImeMode = ImeMode;\nimport {default as Img} from \"./selection/Img\";\n selection.prototype.Img = Img;\nimport {default as Input} from \"./selection/Input\";\n selection.prototype.Input = Input;\nimport {default as InputCheckbox} from \"./selection/InputCheckbox\";\n selection.prototype.InputCheckbox = InputCheckbox;\nimport {default as InputColor} from \"./selection/InputColor\";\n selection.prototype.InputColor = InputColor;\nimport {default as InputDate} from \"./selection/InputDate\";\n selection.prototype.InputDate = InputDate;\nimport {default as InputDatetimeLocal} from \"./selection/InputDatetimeLocal\";\n selection.prototype.InputDatetimeLocal = InputDatetimeLocal;\nimport {default as InputEmail} from \"./selection/InputEmail\";\n selection.prototype.InputEmail = InputEmail;\nimport {default as InputFile} from \"./selection/InputFile\";\n selection.prototype.InputFile = InputFile;\nimport {default as InputHidden} from \"./selection/InputHidden\";\n selection.prototype.InputHidden = InputHidden;\nimport {default as InputImage} from \"./selection/InputImage\";\n selection.prototype.InputImage = InputImage;\nimport {default as InputMonth} from \"./selection/InputMonth\";\n selection.prototype.InputMonth = InputMonth;\nimport {default as InputNumber} from \"./selection/InputNumber\";\n selection.prototype.InputNumber = InputNumber;\nimport {default as InputPassword} from \"./selection/InputPassword\";\n selection.prototype.InputPassword = InputPassword;\nimport {default as InputRadio} from \"./selection/InputRadio\";\n selection.prototype.InputRadio = InputRadio;\nimport {default as InputRange} from \"./selection/InputRange\";\n selection.prototype.InputRange = InputRange;\nimport {default as InputReset} from \"./selection/InputReset\";\n selection.prototype.InputReset = InputReset;\nimport {default as InputSearch} from \"./selection/InputSearch\";\n selection.prototype.InputSearch = InputSearch;\nimport {default as InputSubmit} from \"./selection/InputSubmit\";\n selection.prototype.InputSubmit = InputSubmit;\nimport {default as InputTel} from \"./selection/InputTel\";\n selection.prototype.InputTel = InputTel;\nimport {default as InputText} from \"./selection/InputText\";\n selection.prototype.InputText = InputText;\nimport {default as InputTime} from \"./selection/InputTime\";\n selection.prototype.InputTime = InputTime;\nimport {default as InputUrl} from \"./selection/InputUrl\";\n selection.prototype.InputUrl = InputUrl;\nimport {default as InputWeek} from \"./selection/InputWeek\";\n selection.prototype.InputWeek = InputWeek;\nimport {default as Ins} from \"./selection/Ins\";\n selection.prototype.Ins = Ins;\nimport {default as JustifyContent} from \"./selection/JustifyContent\";\n selection.prototype.JustifyContent = JustifyContent;\nimport {default as Kbd} from \"./selection/Kbd\";\n selection.prototype.Kbd = Kbd;\nimport {default as Label} from \"./selection/Label\";\n selection.prototype.Label = Label;\nimport {default as Left} from \"./selection/Left\";\n selection.prototype.Left = Left;\nimport {default as Legend} from \"./selection/Legend\";\n selection.prototype.Legend = Legend;\nimport {default as LetterSpacing} from \"./selection/LetterSpacing\";\n selection.prototype.LetterSpacing = LetterSpacing;\nimport {default as Li} from \"./selection/Li\";\n selection.prototype.Li = Li;\nimport {default as LineBreak} from \"./selection/LineBreak\";\n selection.prototype.LineBreak = LineBreak;\nimport {default as LineHeight} from \"./selection/LineHeight\";\n selection.prototype.LineHeight = LineHeight;\nimport {default as Link} from \"./selection/Link\";\n selection.prototype.Link = Link;\nimport {default as Main} from \"./selection/Main\";\n selection.prototype.Main = Main;\nimport {default as Map} from \"./selection/Map\";\n selection.prototype.Map = Map;\nimport {default as Margin} from \"./selection/Margin\";\n selection.prototype.Margin = Margin;\nimport {default as MarginBottom} from \"./selection/MarginBottom\";\n selection.prototype.MarginBottom = MarginBottom;\nimport {default as MarginLeft} from \"./selection/MarginLeft\";\n selection.prototype.MarginLeft = MarginLeft;\nimport {default as MarginRight} from \"./selection/MarginRight\";\n selection.prototype.MarginRight = MarginRight;\nimport {default as MarginTop} from \"./selection/MarginTop\";\n selection.prototype.MarginTop = MarginTop;\nimport {default as Mark} from \"./selection/Mark\";\n selection.prototype.Mark = Mark;\nimport {default as MaxHeight} from \"./selection/MaxHeight\";\n selection.prototype.MaxHeight = MaxHeight;\nimport {default as MaxWidth} from \"./selection/MaxWidth\";\n selection.prototype.MaxWidth = MaxWidth;\nimport {default as Media} from \"./selection/Media\";\n selection.prototype.Media = Media;\nimport {default as Meta} from \"./selection/Meta\";\n selection.prototype.Meta = Meta;\nimport {default as Meter} from \"./selection/Meter\";\n selection.prototype.Meter = Meter;\nimport {default as Method} from \"./selection/Method\";\n selection.prototype.Method = Method;\nimport {default as MinHeight} from \"./selection/MinHeight\";\n selection.prototype.MinHeight = MinHeight;\nimport {default as MinWidth} from \"./selection/MinWidth\";\n selection.prototype.MinWidth = MinWidth;\nimport {default as Month} from \"./selection/Month\";\n selection.prototype.Month = Month;\nimport {default as Name} from \"./selection/Name\";\n selection.prototype.Name = Name;\nimport {default as Nav} from \"./selection/Nav\";\n selection.prototype.Nav = Nav;\nimport {default as NavDown} from \"./selection/NavDown\";\n selection.prototype.NavDown = NavDown;\nimport {default as NavIndex} from \"./selection/NavIndex\";\n selection.prototype.NavIndex = NavIndex;\nimport {default as NavLeft} from \"./selection/NavLeft\";\n selection.prototype.NavLeft = NavLeft;\nimport {default as NavRight} from \"./selection/NavRight\";\n selection.prototype.NavRight = NavRight;\nimport {default as NavUp} from \"./selection/NavUp\";\n selection.prototype.NavUp = NavUp;\nimport {default as Noframes} from \"./selection/Noframes\";\n selection.prototype.Noframes = Noframes;\nimport {default as Noscript} from \"./selection/Noscript\";\n selection.prototype.Noscript = Noscript;\nimport {default as Number} from \"./selection/Number\";\n selection.prototype.Number = Number;\nimport {default as Object} from \"./selection/Object\";\n selection.prototype.Object = Object;\nimport {default as Ol} from \"./selection/Ol\";\n selection.prototype.Ol = Ol;\nimport {default as OnAbort} from \"./selection/OnAbort\";\n selection.prototype.OnAbort = OnAbort;\nimport {default as OnAfterprint} from \"./selection/OnAfterprint\";\n selection.prototype.OnAfterprint = OnAfterprint;\nimport {default as OnBeforeprint} from \"./selection/OnBeforeprint\";\n selection.prototype.OnBeforeprint = OnBeforeprint;\nimport {default as OnBeforeunload} from \"./selection/OnBeforeunload\";\n selection.prototype.OnBeforeunload = OnBeforeunload;\nimport {default as OnBlur} from \"./selection/OnBlur\";\n selection.prototype.OnBlur = OnBlur;\nimport {default as OnCanplay} from \"./selection/OnCanplay\";\n selection.prototype.OnCanplay = OnCanplay;\nimport {default as OnCanplaythrough} from \"./selection/OnCanplaythrough\";\n selection.prototype.OnCanplaythrough = OnCanplaythrough;\nimport {default as OnChange} from \"./selection/OnChange\";\n selection.prototype.OnChange = OnChange;\nimport {default as OnClick} from \"./selection/OnClick\";\n selection.prototype.OnClick = OnClick;\nimport {default as OnContextmenu} from \"./selection/OnContextmenu\";\n selection.prototype.OnContextmenu = OnContextmenu;\nimport {default as OnCopy} from \"./selection/OnCopy\";\n selection.prototype.OnCopy = OnCopy;\nimport {default as OnCuechange} from \"./selection/OnCuechange\";\n selection.prototype.OnCuechange = OnCuechange;\nimport {default as OnCut} from \"./selection/OnCut\";\n selection.prototype.OnCut = OnCut;\nimport {default as OnDblclick} from \"./selection/OnDblclick\";\n selection.prototype.OnDblclick = OnDblclick;\nimport {default as OnDrag} from \"./selection/OnDrag\";\n selection.prototype.OnDrag = OnDrag;\nimport {default as OnDragend} from \"./selection/OnDragend\";\n selection.prototype.OnDragend = OnDragend;\nimport {default as OnDragenter} from \"./selection/OnDragenter\";\n selection.prototype.OnDragenter = OnDragenter;\nimport {default as OnDragleave} from \"./selection/OnDragleave\";\n selection.prototype.OnDragleave = OnDragleave;\nimport {default as OnDragover} from \"./selection/OnDragover\";\n selection.prototype.OnDragover = OnDragover;\nimport {default as OnDragstart} from \"./selection/OnDragstart\";\n selection.prototype.OnDragstart = OnDragstart;\nimport {default as OnDrop} from \"./selection/OnDrop\";\n selection.prototype.OnDrop = OnDrop;\nimport {default as OnDurationchange} from \"./selection/OnDurationchange\";\n selection.prototype.OnDurationchange = OnDurationchange;\nimport {default as OnEmptied} from \"./selection/OnEmptied\";\n selection.prototype.OnEmptied = OnEmptied;\nimport {default as OnEnded} from \"./selection/OnEnded\";\n selection.prototype.OnEnded = OnEnded;\nimport {default as OnError} from \"./selection/OnError\";\n selection.prototype.OnError = OnError;\nimport {default as OnFocus} from \"./selection/OnFocus\";\n selection.prototype.OnFocus = OnFocus;\nimport {default as OnHashchange} from \"./selection/OnHashchange\";\n selection.prototype.OnHashchange = OnHashchange;\nimport {default as OnInput} from \"./selection/OnInput\";\n selection.prototype.OnInput = OnInput;\nimport {default as OnInvalid} from \"./selection/OnInvalid\";\n selection.prototype.OnInvalid = OnInvalid;\nimport {default as OnKeydown} from \"./selection/OnKeydown\";\n selection.prototype.OnKeydown = OnKeydown;\nimport {default as OnKeypress} from \"./selection/OnKeypress\";\n selection.prototype.OnKeypress = OnKeypress;\nimport {default as OnKeyup} from \"./selection/OnKeyup\";\n selection.prototype.OnKeyup = OnKeyup;\nimport {default as OnLoad} from \"./selection/OnLoad\";\n selection.prototype.OnLoad = OnLoad;\nimport {default as OnLoadeddata} from \"./selection/OnLoadeddata\";\n selection.prototype.OnLoadeddata = OnLoadeddata;\nimport {default as OnLoadedmetadata} from \"./selection/OnLoadedmetadata\";\n selection.prototype.OnLoadedmetadata = OnLoadedmetadata;\nimport {default as OnLoadstart} from \"./selection/OnLoadstart\";\n selection.prototype.OnLoadstart = OnLoadstart;\nimport {default as OnMessage} from \"./selection/OnMessage\";\n selection.prototype.OnMessage = OnMessage;\nimport {default as OnMousedown} from \"./selection/OnMousedown\";\n selection.prototype.OnMousedown = OnMousedown;\nimport {default as OnMousemove} from \"./selection/OnMousemove\";\n selection.prototype.OnMousemove = OnMousemove;\nimport {default as OnMouseout} from \"./selection/OnMouseout\";\n selection.prototype.OnMouseout = OnMouseout;\nimport {default as OnMouseover} from \"./selection/OnMouseover\";\n selection.prototype.OnMouseover = OnMouseover;\nimport {default as OnMouseup} from \"./selection/OnMouseup\";\n selection.prototype.OnMouseup = OnMouseup;\nimport {default as OnMousewheel} from \"./selection/OnMousewheel\";\n selection.prototype.OnMousewheel = OnMousewheel;\nimport {default as OnOffline} from \"./selection/OnOffline\";\n selection.prototype.OnOffline = OnOffline;\nimport {default as OnOnline} from \"./selection/OnOnline\";\n selection.prototype.OnOnline = OnOnline;\nimport {default as OnPagehide} from \"./selection/OnPagehide\";\n selection.prototype.OnPagehide = OnPagehide;\nimport {default as OnPageshow} from \"./selection/OnPageshow\";\n selection.prototype.OnPageshow = OnPageshow;\nimport {default as OnPaste} from \"./selection/OnPaste\";\n selection.prototype.OnPaste = OnPaste;\nimport {default as OnPause} from \"./selection/OnPause\";\n selection.prototype.OnPause = OnPause;\nimport {default as OnPlay} from \"./selection/OnPlay\";\n selection.prototype.OnPlay = OnPlay;\nimport {default as OnPlaying} from \"./selection/OnPlaying\";\n selection.prototype.OnPlaying = OnPlaying;\nimport {default as OnPopstate} from \"./selection/OnPopstate\";\n selection.prototype.OnPopstate = OnPopstate;\nimport {default as OnProgress} from \"./selection/OnProgress\";\n selection.prototype.OnProgress = OnProgress;\nimport {default as OnRatechange} from \"./selection/OnRatechange\";\n selection.prototype.OnRatechange = OnRatechange;\nimport {default as OnReset} from \"./selection/OnReset\";\n selection.prototype.OnReset = OnReset;\nimport {default as OnResize} from \"./selection/OnResize\";\n selection.prototype.OnResize = OnResize;\nimport {default as OnScroll} from \"./selection/OnScroll\";\n selection.prototype.OnScroll = OnScroll;\nimport {default as OnSearch} from \"./selection/OnSearch\";\n selection.prototype.OnSearch = OnSearch;\nimport {default as OnSeeked} from \"./selection/OnSeeked\";\n selection.prototype.OnSeeked = OnSeeked;\nimport {default as OnSeeking} from \"./selection/OnSeeking\";\n selection.prototype.OnSeeking = OnSeeking;\nimport {default as OnSelect} from \"./selection/OnSelect\";\n selection.prototype.OnSelect = OnSelect;\nimport {default as OnShow} from \"./selection/OnShow\";\n selection.prototype.OnShow = OnShow;\nimport {default as OnStalled} from \"./selection/OnStalled\";\n selection.prototype.OnStalled = OnStalled;\nimport {default as OnStorage} from \"./selection/OnStorage\";\n selection.prototype.OnStorage = OnStorage;\nimport {default as OnSubmit} from \"./selection/OnSubmit\";\n selection.prototype.OnSubmit = OnSubmit;\nimport {default as OnSuspend} from \"./selection/OnSuspend\";\n selection.prototype.OnSuspend = OnSuspend;\nimport {default as OnTimeupdate} from \"./selection/OnTimeupdate\";\n selection.prototype.OnTimeupdate = OnTimeupdate;\nimport {default as OnToggle} from \"./selection/OnToggle\";\n selection.prototype.OnToggle = OnToggle;\nimport {default as OnUnload} from \"./selection/OnUnload\";\n selection.prototype.OnUnload = OnUnload;\nimport {default as OnVolumechange} from \"./selection/OnVolumechange\";\n selection.prototype.OnVolumechange = OnVolumechange;\nimport {default as OnWaiting} from \"./selection/OnWaiting\";\n selection.prototype.OnWaiting = OnWaiting;\nimport {default as OnWheel} from \"./selection/OnWheel\";\n selection.prototype.OnWheel = OnWheel;\nimport {default as Optgroup} from \"./selection/Optgroup\";\n selection.prototype.Optgroup = Optgroup;\nimport {default as Option} from \"./selection/Option\";\n selection.prototype.Option = Option;\nimport {default as Options} from \"./selection/Options\";\n selection.prototype.Options = Options;\nimport {default as Order} from \"./selection/Order\";\n selection.prototype.Order = Order;\nimport {default as Outline} from \"./selection/Outline\";\n selection.prototype.Outline = Outline;\nimport {default as OutlineColor} from \"./selection/OutlineColor\";\n selection.prototype.OutlineColor = OutlineColor;\nimport {default as OutlineOffset} from \"./selection/OutlineOffset\";\n selection.prototype.OutlineOffset = OutlineOffset;\nimport {default as OutlineStyle} from \"./selection/OutlineStyle\";\n selection.prototype.OutlineStyle = OutlineStyle;\nimport {default as OutlineWidth} from \"./selection/OutlineWidth\";\n selection.prototype.OutlineWidth = OutlineWidth;\nimport {default as Output} from \"./selection/Output\";\n selection.prototype.Output = Output;\nimport {default as Overflow} from \"./selection/Overflow\";\n selection.prototype.Overflow = Overflow;\nimport {default as OverflowWrap} from \"./selection/OverflowWrap\";\n selection.prototype.OverflowWrap = OverflowWrap;\nimport {default as OverflowX} from \"./selection/OverflowX\";\n selection.prototype.OverflowX = OverflowX;\nimport {default as OverflowY} from \"./selection/OverflowY\";\n selection.prototype.OverflowY = OverflowY;\nimport {default as P} from \"./selection/P\";\n selection.prototype.P = P;\nimport {default as Padding} from \"./selection/Padding\";\n selection.prototype.Padding = Padding;\nimport {default as PaddingBottom} from \"./selection/PaddingBottom\";\n selection.prototype.PaddingBottom = PaddingBottom;\nimport {default as PaddingLeft} from \"./selection/PaddingLeft\";\n selection.prototype.PaddingLeft = PaddingLeft;\nimport {default as PaddingRight} from \"./selection/PaddingRight\";\n selection.prototype.PaddingRight = PaddingRight;\nimport {default as PaddingTop} from \"./selection/PaddingTop\";\n selection.prototype.PaddingTop = PaddingTop;\nimport {default as Param} from \"./selection/Param\";\n selection.prototype.Param = Param;\nimport {default as ParentNode} from \"./selection/ParentNode\";\n selection.prototype.ParentNode = ParentNode;\nimport {default as Password} from \"./selection/Password\";\n selection.prototype.Password = Password;\nimport {default as Pattern} from \"./selection/Pattern\";\n selection.prototype.Pattern = Pattern;\nimport {default as Placeholder} from \"./selection/Placeholder\";\n selection.prototype.Placeholder = Placeholder;\nimport {default as Position} from \"./selection/Position\";\n selection.prototype.Position = Position;\nimport {default as Pre} from \"./selection/Pre\";\n selection.prototype.Pre = Pre;\nimport {default as Progress} from \"./selection/Progress\";\n selection.prototype.Progress = Progress;\nimport {default as Q} from \"./selection/Q\";\n selection.prototype.Q = Q;\nimport {default as Radio} from \"./selection/Radio\";\n selection.prototype.Radio = Radio;\nimport {default as Range} from \"./selection/Range\";\n selection.prototype.Range = Range;\nimport {default as Reset} from \"./selection/Reset\";\n selection.prototype.Reset = Reset;\nimport {default as Resize} from \"./selection/Resize\";\n selection.prototype.Resize = Resize;\nimport {default as Right} from \"./selection/Right\";\n selection.prototype.Right = Right;\nimport {default as Rowspan} from \"./selection/Rowspan\";\n selection.prototype.Rowspan = Rowspan;\nimport {default as Rp} from \"./selection/Rp\";\n selection.prototype.Rp = Rp;\nimport {default as Rt} from \"./selection/Rt\";\n selection.prototype.Rt = Rt;\nimport {default as Rtc} from \"./selection/Rtc\";\n selection.prototype.Rtc = Rtc;\nimport {default as Ruby} from \"./selection/Ruby\";\n selection.prototype.Ruby = Ruby;\nimport {default as S} from \"./selection/S\";\n selection.prototype.S = S;\nimport {default as Samp} from \"./selection/Samp\";\n selection.prototype.Samp = Samp;\nimport {default as Script} from \"./selection/Script\";\n selection.prototype.Script = Script;\nimport {default as Search} from \"./selection/Search\";\n selection.prototype.Search = Search;\nimport {default as Section} from \"./selection/Section\";\n selection.prototype.Section = Section;\nimport {default as Select} from \"./selection/Select\";\n selection.prototype.Select = Select;\nimport {default as Selected} from \"./selection/Selected\";\n selection.prototype.Selected = Selected;\nimport {default as Shadow} from \"./selection/Shadow\";\n selection.prototype.Shadow = Shadow;\nimport {default as Small} from \"./selection/Small\";\n selection.prototype.Small = Small;\nimport {default as Source} from \"./selection/Source\";\n selection.prototype.Source = Source;\nimport {default as Span} from \"./selection/Span\";\n selection.prototype.Span = Span;\nimport {default as Src} from \"./selection/Src\";\n selection.prototype.Src = Src;\nimport {default as Strong} from \"./selection/Strong\";\n selection.prototype.Strong = Strong;\nimport {default as Sub} from \"./selection/Sub\";\n selection.prototype.Sub = Sub;\nimport {default as Submit} from \"./selection/Submit\";\n selection.prototype.Submit = Submit;\nimport {default as Summary} from \"./selection/Summary\";\n selection.prototype.Summary = Summary;\nimport {default as Sup} from \"./selection/Sup\";\n selection.prototype.Sup = Sup;\nimport {default as Svg} from \"./selection/Svg\";\n selection.prototype.Svg = Svg;\nimport {default as TabSize} from \"./selection/TabSize\";\n selection.prototype.TabSize = TabSize;\nimport {default as Tabindex} from \"./selection/Tabindex\";\n selection.prototype.Tabindex = Tabindex;\nimport {default as Table} from \"./selection/Table\";\n selection.prototype.Table = Table;\nimport {default as TableLayout} from \"./selection/TableLayout\";\n selection.prototype.TableLayout = TableLayout;\nimport {default as Target} from \"./selection/Target\";\n selection.prototype.Target = Target;\nimport {default as Tbody} from \"./selection/Tbody\";\n selection.prototype.Tbody = Tbody;\nimport {default as Td} from \"./selection/Td\";\n selection.prototype.Td = Td;\nimport {default as Tel} from \"./selection/Tel\";\n selection.prototype.Tel = Tel;\nimport {default as Template} from \"./selection/Template\";\n selection.prototype.Template = Template;\nimport {default as Text} from \"./selection/Text\";\n selection.prototype.Text = Text;\nimport {default as TextAlign} from \"./selection/TextAlign\";\n selection.prototype.TextAlign = TextAlign;\nimport {default as TextAlignLast} from \"./selection/TextAlignLast\";\n selection.prototype.TextAlignLast = TextAlignLast;\nimport {default as TextCombineUpright} from \"./selection/TextCombineUpright\";\n selection.prototype.TextCombineUpright = TextCombineUpright;\nimport {default as TextDecoration} from \"./selection/TextDecoration\";\n selection.prototype.TextDecoration = TextDecoration;\nimport {default as TextDecorationColor} from \"./selection/TextDecorationColor\";\n selection.prototype.TextDecorationColor = TextDecorationColor;\nimport {default as TextDecorationLine} from \"./selection/TextDecorationLine\";\n selection.prototype.TextDecorationLine = TextDecorationLine;\nimport {default as TextDecorationStyle} from \"./selection/TextDecorationStyle\";\n selection.prototype.TextDecorationStyle = TextDecorationStyle;\nimport {default as TextIndent} from \"./selection/TextIndent\";\n selection.prototype.TextIndent = TextIndent;\nimport {default as TextJustify} from \"./selection/TextJustify\";\n selection.prototype.TextJustify = TextJustify;\nimport {default as TextOverflow} from \"./selection/TextOverflow\";\n selection.prototype.TextOverflow = TextOverflow;\nimport {default as TextShadow} from \"./selection/TextShadow\";\n selection.prototype.TextShadow = TextShadow;\nimport {default as TextTransform} from \"./selection/TextTransform\";\n selection.prototype.TextTransform = TextTransform;\nimport {default as TextUnderlinePosition} from \"./selection/TextUnderlinePosition\";\n selection.prototype.TextUnderlinePosition = TextUnderlinePosition;\nimport {default as Textarea} from \"./selection/Textarea\";\n selection.prototype.Textarea = Textarea;\nimport {default as Tfoot} from \"./selection/Tfoot\";\n selection.prototype.Tfoot = Tfoot;\nimport {default as Th} from \"./selection/Th\";\n selection.prototype.Th = Th;\nimport {default as Thead} from \"./selection/Thead\";\n selection.prototype.Thead = Thead;\nimport {default as Time} from \"./selection/Time\";\n selection.prototype.Time = Time;\nimport {default as Title} from \"./selection/Title\";\n selection.prototype.Title = Title;\nimport {default as Top} from \"./selection/Top\";\n selection.prototype.Top = Top;\nimport {default as Tr} from \"./selection/Tr\";\n selection.prototype.Tr = Tr;\nimport {default as Track} from \"./selection/Track\";\n selection.prototype.Track = Track;\nimport {default as U} from \"./selection/U\";\n selection.prototype.U = U;\nimport {default as Ul} from \"./selection/Ul\";\n selection.prototype.Ul = Ul;\nimport {default as Url} from \"./selection/Url\";\n selection.prototype.Url = Url;\nimport {default as UserSelect} from \"./selection/UserSelect\";\n selection.prototype.UserSelect = UserSelect;\nimport {default as Validity} from \"./selection/Validity\";\n selection.prototype.Validity = Validity;\nimport {default as Value} from \"./selection/Value\";\n selection.prototype.Value = Value;\nimport {default as Var} from \"./selection/Var\";\n selection.prototype.Var = Var;\nimport {default as VerticalAlign} from \"./selection/VerticalAlign\";\n selection.prototype.VerticalAlign = VerticalAlign;\nimport {default as Video} from \"./selection/Video\";\n selection.prototype.Video = Video;\nimport {default as Visibility} from \"./selection/Visibility\";\n selection.prototype.Visibility = Visibility;\nimport {default as Wbr} from \"./selection/Wbr\";\n selection.prototype.Wbr = Wbr;\nimport {default as Week} from \"./selection/Week\";\n selection.prototype.Week = Week;\nimport {default as WhiteSpace} from \"./selection/WhiteSpace\";\n selection.prototype.WhiteSpace = WhiteSpace;\nimport {default as Width} from \"./selection/Width\";\n selection.prototype.Width = Width;\nimport {default as WordBreak} from \"./selection/WordBreak\";\n selection.prototype.WordBreak = WordBreak;\nimport {default as WordSpacing} from \"./selection/WordSpacing\";\n selection.prototype.WordSpacing = WordSpacing;\nimport {default as WordWrap} from \"./selection/WordWrap\";\n selection.prototype.WordWrap = WordWrap;\nimport {default as ZIndex} from \"./selection/ZIndex\";\n selection.prototype.ZIndex = ZIndex;\nimport {default as clear} from \"./selection/clear\";\n selection.prototype.clear = clear;\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/index.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 1,
"kind": "variable",
"name": "d3",
"memberof": "lib/index.js",
"static": true,
"longname": "lib/index.js~d3",
"access": null,
"export": false,
"importPath": "d3-html/lib/index.js",
"importStyle": null,
"description": null,
"lineNumber": 1,
"undocument": true
},
{
"__docId__": 2,
"kind": "variable",
"name": "selection",
"memberof": "lib/index.js",
"static": true,
"longname": "lib/index.js~selection",
"access": null,
"export": false,
"importPath": "d3-html/lib/index.js",
"importStyle": null,
"description": null,
"lineNumber": 2,
"undocument": true
},
{
"__docId__": 3,
"kind": "file",
"name": "lib/selection/A.js",
"content": "/**\n * selection.A() creates <a> element\n * @param {string} [contents=''] option content html\n * @return created element\n */\nexport default function (contents)\n{\n return this.append('a')\n .html(contents || '');\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/A.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 4,
"kind": "function",
"name": "A",
"memberof": "lib/selection/A.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/A.js~A",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/A.js",
"importStyle": "A",
"description": "selection.A() creates <a> element",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "contents",
"description": "option content html"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "created element"
}
},
{
"__docId__": 5,
"kind": "file",
"name": "lib/selection/Abbr.js",
"content": "/**\n * selection.Abbr() creates <abbr> element\n * @param {string} [contents=''] option content html\n * @return created element\n */\nexport default function (contents)\n{\n return this.append('abbr')\n .html(contents || '');\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Abbr.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 6,
"kind": "function",
"name": "Abbr",
"memberof": "lib/selection/Abbr.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Abbr.js~Abbr",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Abbr.js",
"importStyle": "Abbr",
"description": "selection.Abbr() creates <abbr> element",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "contents",
"description": "option content html"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "created element"
}
},
{
"__docId__": 7,
"kind": "file",
"name": "lib/selection/Accept.js",
"content": "/**\n * selection.Accept() get or change accept attribute value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.attr('accept');\n }\n else\n {\n return this.attr('accept', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Accept.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 8,
"kind": "function",
"name": "Accept",
"memberof": "lib/selection/Accept.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Accept.js~Accept",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Accept.js",
"importStyle": "Accept",
"description": "selection.Accept() get or change accept attribute value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 9,
"kind": "file",
"name": "lib/selection/Accesskey.js",
"content": "/**\n * selection.Accesskey() get or change accesskey attribute value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.attr('accesskey');\n }\n else\n {\n return this.attr('accesskey', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Accesskey.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 10,
"kind": "function",
"name": "Accesskey",
"memberof": "lib/selection/Accesskey.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Accesskey.js~Accesskey",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Accesskey.js",
"importStyle": "Accesskey",
"description": "selection.Accesskey() get or change accesskey attribute value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 11,
"kind": "file",
"name": "lib/selection/Action.js",
"content": "/**\n * selection.Action() get or change action attribute value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.attr('action');\n }\n else\n {\n return this.attr('action', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Action.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 12,
"kind": "function",
"name": "Action",
"memberof": "lib/selection/Action.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Action.js~Action",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Action.js",
"importStyle": "Action",
"description": "selection.Action() get or change action attribute value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 13,
"kind": "file",
"name": "lib/selection/Address.js",
"content": "/**\n * selection.Address() creates <address> element\n * @param {string} [contents=''] option content html\n * @return created element\n */\nexport default function (contents)\n{\n return this.append('address')\n .html(contents || '');\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Address.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 14,
"kind": "function",
"name": "Address",
"memberof": "lib/selection/Address.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Address.js~Address",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Address.js",
"importStyle": "Address",
"description": "selection.Address() creates <address> element",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "contents",
"description": "option content html"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "created element"
}
},
{
"__docId__": 15,
"kind": "file",
"name": "lib/selection/AlignContent.js",
"content": "/**\n * selection.AlignContent() get or change align-content style value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.style('align-content');\n }\n else\n {\n return this.style('align-content', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/AlignContent.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 16,
"kind": "function",
"name": "AlignContent",
"memberof": "lib/selection/AlignContent.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/AlignContent.js~AlignContent",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/AlignContent.js",
"importStyle": "AlignContent",
"description": "selection.AlignContent() get or change align-content style value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 17,
"kind": "file",
"name": "lib/selection/AlignItems.js",
"content": "/**\n * selection.AlignItems() get or change align-items style value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.style('align-items');\n }\n else\n {\n return this.style('align-items', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/AlignItems.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 18,
"kind": "function",
"name": "AlignItems",
"memberof": "lib/selection/AlignItems.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/AlignItems.js~AlignItems",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/AlignItems.js",
"importStyle": "AlignItems",
"description": "selection.AlignItems() get or change align-items style value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 19,
"kind": "file",
"name": "lib/selection/AlignSelf.js",
"content": "/**\n * selection.AlignSelf() get or change align-self style value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.style('align-self');\n }\n else\n {\n return this.style('align-self', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/AlignSelf.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 20,
"kind": "function",
"name": "AlignSelf",
"memberof": "lib/selection/AlignSelf.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/AlignSelf.js~AlignSelf",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/AlignSelf.js",
"importStyle": "AlignSelf",
"description": "selection.AlignSelf() get or change align-self style value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 21,
"kind": "file",
"name": "lib/selection/Alt.js",
"content": "/**\n * selection.Alt() get or change alt attribute value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.attr('alt');\n }\n else\n {\n return this.attr('alt', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Alt.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 22,
"kind": "function",
"name": "Alt",
"memberof": "lib/selection/Alt.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Alt.js~Alt",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Alt.js",
"importStyle": "Alt",
"description": "selection.Alt() get or change alt attribute value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 23,
"kind": "file",
"name": "lib/selection/Area.js",
"content": "/**\n * selection.Area() creates <area> element\n * @param {string} [contents=''] option content html\n * @return created element\n */\nexport default function (contents)\n{\n return this.append('area')\n .html(contents || '');\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Area.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 24,
"kind": "function",
"name": "Area",
"memberof": "lib/selection/Area.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Area.js~Area",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Area.js",
"importStyle": "Area",
"description": "selection.Area() creates <area> element",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "contents",
"description": "option content html"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "created element"
}
},
{
"__docId__": 25,
"kind": "file",
"name": "lib/selection/Article.js",
"content": "/**\n * selection.Article() creates <article> element\n * @param {string} [contents=''] option content html\n * @return created element\n */\nexport default function (contents)\n{\n return this.append('article')\n .html(contents || '');\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Article.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 26,
"kind": "function",
"name": "Article",
"memberof": "lib/selection/Article.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Article.js~Article",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Article.js",
"importStyle": "Article",
"description": "selection.Article() creates <article> element",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "contents",
"description": "option content html"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "created element"
}
},
{
"__docId__": 27,
"kind": "file",
"name": "lib/selection/Aside.js",
"content": "/**\n * selection.Aside() creates <aside> element\n * @param {string} [contents=''] option content html\n * @return created element\n */\nexport default function (contents)\n{\n return this.append('aside')\n .html(contents || '');\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Aside.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 28,
"kind": "function",
"name": "Aside",
"memberof": "lib/selection/Aside.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Aside.js~Aside",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Aside.js",
"importStyle": "Aside",
"description": "selection.Aside() creates <aside> element",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "contents",
"description": "option content html"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "created element"
}
},
{
"__docId__": 29,
"kind": "file",
"name": "lib/selection/Audio.js",
"content": "/**\n * selection.Audio() creates <audio> element\n * @param {string} [contents=''] option content html\n * @return created element\n */\nexport default function (contents)\n{\n return this.append('audio')\n .html(contents || '');\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Audio.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 30,
"kind": "function",
"name": "Audio",
"memberof": "lib/selection/Audio.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Audio.js~Audio",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Audio.js",
"importStyle": "Audio",
"description": "selection.Audio() creates <audio> element",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "contents",
"description": "option content html"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "created element"
}
},
{
"__docId__": 31,
"kind": "file",
"name": "lib/selection/Autocomplete.js",
"content": "/**\n * selection.Autocomplete() get or change autocomplete attribute value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.attr('autocomplete');\n }\n else\n {\n return this.attr('autocomplete', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Autocomplete.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 32,
"kind": "function",
"name": "Autocomplete",
"memberof": "lib/selection/Autocomplete.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Autocomplete.js~Autocomplete",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Autocomplete.js",
"importStyle": "Autocomplete",
"description": "selection.Autocomplete() get or change autocomplete attribute value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 33,
"kind": "file",
"name": "lib/selection/Autofocus.js",
"content": "/**\n * selection.Autofocus() get or change autofocus attribute value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.attr('autofocus');\n }\n else\n {\n return this.attr('autofocus', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Autofocus.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 34,
"kind": "function",
"name": "Autofocus",
"memberof": "lib/selection/Autofocus.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Autofocus.js~Autofocus",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Autofocus.js",
"importStyle": "Autofocus",
"description": "selection.Autofocus() get or change autofocus attribute value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 35,
"kind": "file",
"name": "lib/selection/B.js",
"content": "/**\n * selection.B() creates <b> element\n * @param {string} [contents=''] option content html\n * @return created element\n */\nexport default function (contents)\n{\n return this.append('b')\n .html(contents || '');\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/B.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 36,
"kind": "function",
"name": "B",
"memberof": "lib/selection/B.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/B.js~B",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/B.js",
"importStyle": "B",
"description": "selection.B() creates <b> element",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "contents",
"description": "option content html"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "created element"
}
},
{
"__docId__": 37,
"kind": "file",
"name": "lib/selection/Background.js",
"content": "/**\n * selection.Background() get or change background style value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.style('background');\n }\n else\n {\n return this.style('background', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/Background.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 38,
"kind": "function",
"name": "Background",
"memberof": "lib/selection/Background.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/Background.js~Background",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/Background.js",
"importStyle": "Background",
"description": "selection.Background() get or change background style value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 39,
"kind": "file",
"name": "lib/selection/BackgroundAttachment.js",
"content": "/**\n * selection.BackgroundAttachment() get or change background-attachment style value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.style('background-attachment');\n }\n else\n {\n return this.style('background-attachment', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/BackgroundAttachment.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 40,
"kind": "function",
"name": "BackgroundAttachment",
"memberof": "lib/selection/BackgroundAttachment.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/BackgroundAttachment.js~BackgroundAttachment",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/BackgroundAttachment.js",
"importStyle": "BackgroundAttachment",
"description": "selection.BackgroundAttachment() get or change background-attachment style value of selection",
"lineNumber": 6,
"params": [
{
"nullable": null,
"types": [
"string"
],
"spread": false,
"optional": true,
"defaultValue": "''",
"defaultRaw": "''",
"name": "value",
"description": "new value or dont specify to return current value"
}
],
"return": {
"nullable": null,
"types": [
"*"
],
"spread": false,
"description": "selected if setting or current value"
}
},
{
"__docId__": 41,
"kind": "file",
"name": "lib/selection/BackgroundBlendMode.js",
"content": "/**\n * selection.BackgroundBlendMode() get or change background-blend-mode style value of selection\n * @param {string} [value=''] new value or dont specify to return current value\n * @return selected if setting or current value\n */\nexport default function (value)\n{\n if (arguments.length < 1)\n {\n return this.style('background-blend-mode');\n }\n else\n {\n return this.style('background-blend-mode', value);\n }\n}\n",
"static": true,
"longname": "/home/god/lib/d3-html/lib/selection/BackgroundBlendMode.js",
"access": null,
"description": null,
"lineNumber": 1
},
{
"__docId__": 42,
"kind": "function",
"name": "BackgroundBlendMode",
"memberof": "lib/selection/BackgroundBlendMode.js",
"generator": false,
"async": false,
"static": true,
"longname": "lib/selection/BackgroundBlendMode.js~BackgroundBlendMode",
"access": null,
"export": true,
"importPath": "d3-html/lib/selection/BackgroundBlendMode.js",
"importStyle": "BackgroundBlendMode",
"description": "selection.BackgroundBlendMode() get or change background-blend-mode style value of selection",
"lineNumber": 6,
"params": [