elm-ssr 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1208 @@
1
+ module ElmSsr.Svg.Attributes exposing
2
+ ( attr
3
+ , accentHeight, accumulate, additive, alignmentBaseline, alphabetic, amplitude, arabicForm, ascent, attributeName, attributeType, azimuth, baseFrequency, baseProfile, bbox, begin, bias, by, calcMode, capHeight, class, clipPath, clipPathUnits, clipRule, colorInterpolation, colorInterpolationFilters, colorProfile, colorRendering, contentScriptType, contentStyleType, cursor, cx, cy, d, diffuseConstant, direction, display, divisor, dominantBaseline, dur, dx, dy, edgeMode, elevation, enableBackground, end, exponent, externalResourcesRequired, fill, fillOpacity, fillRule, filter, filterRes, filterUnits, floodColor, floodOpacity, fontFamily, fontSize, fontSizeAdjust, fontStretch, fontStyle, fontVariant, fontWeight, format, from, fx, fy, g1, g2, glyphName, glyphOrientationHorizontal, glyphOrientationVertical, glyphRef, gradientTransform, gradientUnits, hanging, height, horizAdvX, horizOriginX, id, ideographic, imageRendering, in_, in2, intercept, k, k1, k2, k3, k4, kernelMatrix, kernelUnitLength, kerning, keyPoints, keySplines, keyTimes, lang, lengthAdjust, letterSpacing, lightingColor, limitingConeAngle, local, markerEnd, markerHeight, markerMid, markerStart, markerUnits, markerWidth, mask, maskContentUnits, maskUnits, mathematical, max, media, method, min, mode, name, numOctaves, offset, opacity, operator, order, orient, orientation, origin, overflow, overlinePosition, overlineThickness, panose1, pathLength, patternContentUnits, patternTransform, patternUnits, pointerEvents, points, pointsAtX, pointsAtY, pointsAtZ, preserveAlpha, preserveAspectRatio, primitiveUnits, r, radius, refX, refY, repeatCount, repeatDur, restart, result, rotate, rx, ry, scale, seed, shapeRendering, slope, spacing, specularConstant, specularExponent, speed, spreadMethod, startOffset, stdDeviation, stemh, stemv, stitchTiles, stopColor, stopOpacity, strikethroughPosition, strikethroughThickness, stroke, strokeDasharray, strokeDashoffset, strokeLinecap, strokeLinejoin, strokeMiterlimit, strokeOpacity, strokeWidth, style, surfaceScale, systemLanguage, tableValues, target, targetX, targetY, textAnchor, textDecoration, textLength, textRendering, title, to, transform, type_, u1, u2, underlinePosition, underlineThickness, unicode, unicodeBidi, unicodeRange, unitsPerEm, vAlphabetic, vHanging, vIdeographic, vMathematical, values, version, vertAdvY, vertOriginX, vertOriginY, viewBox, viewTarget, visibility, width, widths, wordSpacing, writingMode, x, x1, x2, xChannelSelector, xHeight, xlinkActuate, xlinkArcrole, xlinkHref, xlinkRole, xlinkShow, xlinkTitle, xlinkType, xmlBase, xmlLang, xmlSpace, y, y1, y2, yChannelSelector, z, zoomAndPan
4
+ )
5
+
6
+ {-| SVG attributes for ElmSsr. Mirrors `elm/svg`.
7
+
8
+ @docs attr
9
+ @docs accentHeight, accumulate, additive, alignmentBaseline, alphabetic, amplitude, arabicForm, ascent, attributeName, attributeType, azimuth, baseFrequency, baseProfile, bbox, begin, bias, by, calcMode, capHeight, class, clipPath, clipPathUnits, clipRule, colorInterpolation, colorInterpolationFilters, colorProfile, colorRendering, contentScriptType, contentStyleType, cursor, cx, cy, d, diffuseConstant, direction, display, divisor, dominantBaseline, dur, dx, dy, edgeMode, elevation, enableBackground, end, exponent, externalResourcesRequired, fill, fillOpacity, fillRule, filter, filterRes, filterUnits, floodColor, floodOpacity, fontFamily, fontSize, fontSizeAdjust, fontStretch, fontStyle, fontVariant, fontWeight, format, from, fx, fy, g1, g2, glyphName, glyphOrientationHorizontal, glyphOrientationVertical, glyphRef, gradientTransform, gradientUnits, hanging, height, horizAdvX, horizOriginX, id, ideographic, imageRendering, in_, in2, intercept, k, k1, k2, k3, k4, kernelMatrix, kernelUnitLength, kerning, keyPoints, keySplines, keyTimes, lang, lengthAdjust, letterSpacing, lightingColor, limitingConeAngle, local, markerEnd, markerHeight, markerMid, markerStart, markerUnits, markerWidth, mask, maskContentUnits, maskUnits, mathematical, max, media, method, min, mode, name, numOctaves, offset, opacity, operator, order, orient, orientation, origin, overflow, overlinePosition, overlineThickness, panose1, pathLength, patternContentUnits, patternTransform, patternUnits, pointerEvents, points, pointsAtX, pointsAtY, pointsAtZ, preserveAlpha, preserveAspectRatio, primitiveUnits, r, radius, refX, refY, repeatCount, repeatDur, restart, result, rotate, rx, ry, scale, seed, shapeRendering, slope, spacing, specularConstant, specularExponent, speed, spreadMethod, startOffset, stdDeviation, stemh, stemv, stitchTiles, stopColor, stopOpacity, strikethroughPosition, strikethroughThickness, stroke, strokeDasharray, strokeDashoffset, strokeLinecap, strokeLinejoin, strokeMiterlimit, strokeOpacity, strokeWidth, style, surfaceScale, systemLanguage, tableValues, target, targetX, targetY, textAnchor, textDecoration, textLength, textRendering, title, to, transform, type_, u1, u2, underlinePosition, underlineThickness, unicode, unicodeBidi, unicodeRange, unitsPerEm, vAlphabetic, vHanging, vIdeographic, vMathematical, values, version, vertAdvY, vertOriginX, vertOriginY, viewBox, viewTarget, visibility, width, widths, wordSpacing, writingMode, x, x1, x2, xChannelSelector, xHeight, xlinkActuate, xlinkArcrole, xlinkHref, xlinkRole, xlinkShow, xlinkTitle, xlinkType, xmlBase, xmlLang, xmlSpace, y, y1, y2, yChannelSelector, z, zoomAndPan
10
+ -}
11
+
12
+ import ElmSsr.Html exposing (Attribute(..))
13
+
14
+
15
+ {-| Set an arbitrary attribute. -}
16
+ attr : String -> String -> Attribute msg
17
+ attr =
18
+ Property
19
+
20
+
21
+ accentHeight : String -> Attribute msg
22
+ accentHeight =
23
+ attr "accent-height"
24
+
25
+
26
+ accumulate : String -> Attribute msg
27
+ accumulate =
28
+ attr "accumulate"
29
+
30
+
31
+ additive : String -> Attribute msg
32
+ additive =
33
+ attr "additive"
34
+
35
+
36
+ alignmentBaseline : String -> Attribute msg
37
+ alignmentBaseline =
38
+ attr "alignment-baseline"
39
+
40
+
41
+ alphabetic : String -> Attribute msg
42
+ alphabetic =
43
+ attr "alphabetic"
44
+
45
+
46
+ amplitude : String -> Attribute msg
47
+ amplitude =
48
+ attr "amplitude"
49
+
50
+
51
+ arabicForm : String -> Attribute msg
52
+ arabicForm =
53
+ attr "arabic-form"
54
+
55
+
56
+ ascent : String -> Attribute msg
57
+ ascent =
58
+ attr "ascent"
59
+
60
+
61
+ attributeName : String -> Attribute msg
62
+ attributeName =
63
+ attr "attributeName"
64
+
65
+
66
+ attributeType : String -> Attribute msg
67
+ attributeType =
68
+ attr "attributeType"
69
+
70
+
71
+ azimuth : String -> Attribute msg
72
+ azimuth =
73
+ attr "azimuth"
74
+
75
+
76
+ baseFrequency : String -> Attribute msg
77
+ baseFrequency =
78
+ attr "baseFrequency"
79
+
80
+
81
+ baseProfile : String -> Attribute msg
82
+ baseProfile =
83
+ attr "baseProfile"
84
+
85
+
86
+ bbox : String -> Attribute msg
87
+ bbox =
88
+ attr "bbox"
89
+
90
+
91
+ begin : String -> Attribute msg
92
+ begin =
93
+ attr "begin"
94
+
95
+
96
+ bias : String -> Attribute msg
97
+ bias =
98
+ attr "bias"
99
+
100
+
101
+ by : String -> Attribute msg
102
+ by =
103
+ attr "by"
104
+
105
+
106
+ calcMode : String -> Attribute msg
107
+ calcMode =
108
+ attr "calcMode"
109
+
110
+
111
+ capHeight : String -> Attribute msg
112
+ capHeight =
113
+ attr "cap-height"
114
+
115
+
116
+ class : String -> Attribute msg
117
+ class =
118
+ attr "class"
119
+
120
+
121
+ clipPath : String -> Attribute msg
122
+ clipPath =
123
+ attr "clip-path"
124
+
125
+
126
+ clipPathUnits : String -> Attribute msg
127
+ clipPathUnits =
128
+ attr "clipPathUnits"
129
+
130
+
131
+ clipRule : String -> Attribute msg
132
+ clipRule =
133
+ attr "clip-rule"
134
+
135
+
136
+ colorInterpolation : String -> Attribute msg
137
+ colorInterpolation =
138
+ attr "color-interpolation"
139
+
140
+
141
+ colorInterpolationFilters : String -> Attribute msg
142
+ colorInterpolationFilters =
143
+ attr "color-interpolation-filters"
144
+
145
+
146
+ colorProfile : String -> Attribute msg
147
+ colorProfile =
148
+ attr "color-profile"
149
+
150
+
151
+ colorRendering : String -> Attribute msg
152
+ colorRendering =
153
+ attr "color-rendering"
154
+
155
+
156
+ contentScriptType : String -> Attribute msg
157
+ contentScriptType =
158
+ attr "contentScriptType"
159
+
160
+
161
+ contentStyleType : String -> Attribute msg
162
+ contentStyleType =
163
+ attr "contentStyleType"
164
+
165
+
166
+ cursor : String -> Attribute msg
167
+ cursor =
168
+ attr "cursor"
169
+
170
+
171
+ cx : String -> Attribute msg
172
+ cx =
173
+ attr "cx"
174
+
175
+
176
+ cy : String -> Attribute msg
177
+ cy =
178
+ attr "cy"
179
+
180
+
181
+ d : String -> Attribute msg
182
+ d =
183
+ attr "d"
184
+
185
+
186
+ diffuseConstant : String -> Attribute msg
187
+ diffuseConstant =
188
+ attr "diffuseConstant"
189
+
190
+
191
+ direction : String -> Attribute msg
192
+ direction =
193
+ attr "direction"
194
+
195
+
196
+ display : String -> Attribute msg
197
+ display =
198
+ attr "display"
199
+
200
+
201
+ divisor : String -> Attribute msg
202
+ divisor =
203
+ attr "divisor"
204
+
205
+
206
+ dominantBaseline : String -> Attribute msg
207
+ dominantBaseline =
208
+ attr "dominant-baseline"
209
+
210
+
211
+ dur : String -> Attribute msg
212
+ dur =
213
+ attr "dur"
214
+
215
+
216
+ dx : String -> Attribute msg
217
+ dx =
218
+ attr "dx"
219
+
220
+
221
+ dy : String -> Attribute msg
222
+ dy =
223
+ attr "dy"
224
+
225
+
226
+ edgeMode : String -> Attribute msg
227
+ edgeMode =
228
+ attr "edgeMode"
229
+
230
+
231
+ elevation : String -> Attribute msg
232
+ elevation =
233
+ attr "elevation"
234
+
235
+
236
+ enableBackground : String -> Attribute msg
237
+ enableBackground =
238
+ attr "enable-background"
239
+
240
+
241
+ end : String -> Attribute msg
242
+ end =
243
+ attr "end"
244
+
245
+
246
+ exponent : String -> Attribute msg
247
+ exponent =
248
+ attr "exponent"
249
+
250
+
251
+ externalResourcesRequired : String -> Attribute msg
252
+ externalResourcesRequired =
253
+ attr "externalResourcesRequired"
254
+
255
+
256
+ fill : String -> Attribute msg
257
+ fill =
258
+ attr "fill"
259
+
260
+
261
+ fillOpacity : String -> Attribute msg
262
+ fillOpacity =
263
+ attr "fill-opacity"
264
+
265
+
266
+ fillRule : String -> Attribute msg
267
+ fillRule =
268
+ attr "fill-rule"
269
+
270
+
271
+ filter : String -> Attribute msg
272
+ filter =
273
+ attr "filter"
274
+
275
+
276
+ filterRes : String -> Attribute msg
277
+ filterRes =
278
+ attr "filterRes"
279
+
280
+
281
+ filterUnits : String -> Attribute msg
282
+ filterUnits =
283
+ attr "filterUnits"
284
+
285
+
286
+ floodColor : String -> Attribute msg
287
+ floodColor =
288
+ attr "flood-color"
289
+
290
+
291
+ floodOpacity : String -> Attribute msg
292
+ floodOpacity =
293
+ attr "flood-opacity"
294
+
295
+
296
+ fontFamily : String -> Attribute msg
297
+ fontFamily =
298
+ attr "font-family"
299
+
300
+
301
+ fontSize : String -> Attribute msg
302
+ fontSize =
303
+ attr "font-size"
304
+
305
+
306
+ fontSizeAdjust : String -> Attribute msg
307
+ fontSizeAdjust =
308
+ attr "font-size-adjust"
309
+
310
+
311
+ fontStretch : String -> Attribute msg
312
+ fontStretch =
313
+ attr "font-stretch"
314
+
315
+
316
+ fontStyle : String -> Attribute msg
317
+ fontStyle =
318
+ attr "font-style"
319
+
320
+
321
+ fontVariant : String -> Attribute msg
322
+ fontVariant =
323
+ attr "font-variant"
324
+
325
+
326
+ fontWeight : String -> Attribute msg
327
+ fontWeight =
328
+ attr "font-weight"
329
+
330
+
331
+ format : String -> Attribute msg
332
+ format =
333
+ attr "format"
334
+
335
+
336
+ from : String -> Attribute msg
337
+ from =
338
+ attr "from"
339
+
340
+
341
+ fx : String -> Attribute msg
342
+ fx =
343
+ attr "fx"
344
+
345
+
346
+ fy : String -> Attribute msg
347
+ fy =
348
+ attr "fy"
349
+
350
+
351
+ g1 : String -> Attribute msg
352
+ g1 =
353
+ attr "g1"
354
+
355
+
356
+ g2 : String -> Attribute msg
357
+ g2 =
358
+ attr "g2"
359
+
360
+
361
+ glyphName : String -> Attribute msg
362
+ glyphName =
363
+ attr "glyph-name"
364
+
365
+
366
+ glyphOrientationHorizontal : String -> Attribute msg
367
+ glyphOrientationHorizontal =
368
+ attr "glyph-orientation-horizontal"
369
+
370
+
371
+ glyphOrientationVertical : String -> Attribute msg
372
+ glyphOrientationVertical =
373
+ attr "glyph-orientation-vertical"
374
+
375
+
376
+ glyphRef : String -> Attribute msg
377
+ glyphRef =
378
+ attr "glyphRef"
379
+
380
+
381
+ gradientTransform : String -> Attribute msg
382
+ gradientTransform =
383
+ attr "gradientTransform"
384
+
385
+
386
+ gradientUnits : String -> Attribute msg
387
+ gradientUnits =
388
+ attr "gradientUnits"
389
+
390
+
391
+ hanging : String -> Attribute msg
392
+ hanging =
393
+ attr "hanging"
394
+
395
+
396
+ height : String -> Attribute msg
397
+ height =
398
+ attr "height"
399
+
400
+
401
+ horizAdvX : String -> Attribute msg
402
+ horizAdvX =
403
+ attr "horiz-adv-x"
404
+
405
+
406
+ horizOriginX : String -> Attribute msg
407
+ horizOriginX =
408
+ attr "horiz-origin-x"
409
+
410
+
411
+ id : String -> Attribute msg
412
+ id =
413
+ attr "id"
414
+
415
+
416
+ ideographic : String -> Attribute msg
417
+ ideographic =
418
+ attr "ideographic"
419
+
420
+
421
+ imageRendering : String -> Attribute msg
422
+ imageRendering =
423
+ attr "image-rendering"
424
+
425
+
426
+ in_ : String -> Attribute msg
427
+ in_ =
428
+ attr "in"
429
+
430
+
431
+ in2 : String -> Attribute msg
432
+ in2 =
433
+ attr "in2"
434
+
435
+
436
+ intercept : String -> Attribute msg
437
+ intercept =
438
+ attr "intercept"
439
+
440
+
441
+ k : String -> Attribute msg
442
+ k =
443
+ attr "k"
444
+
445
+
446
+ k1 : String -> Attribute msg
447
+ k1 =
448
+ attr "k1"
449
+
450
+
451
+ k2 : String -> Attribute msg
452
+ k2 =
453
+ attr "k2"
454
+
455
+
456
+ k3 : String -> Attribute msg
457
+ k3 =
458
+ attr "k3"
459
+
460
+
461
+ k4 : String -> Attribute msg
462
+ k4 =
463
+ attr "k4"
464
+
465
+
466
+ kernelMatrix : String -> Attribute msg
467
+ kernelMatrix =
468
+ attr "kernelMatrix"
469
+
470
+
471
+ kernelUnitLength : String -> Attribute msg
472
+ kernelUnitLength =
473
+ attr "kernelUnitLength"
474
+
475
+
476
+ kerning : String -> Attribute msg
477
+ kerning =
478
+ attr "kerning"
479
+
480
+
481
+ keyPoints : String -> Attribute msg
482
+ keyPoints =
483
+ attr "keyPoints"
484
+
485
+
486
+ keySplines : String -> Attribute msg
487
+ keySplines =
488
+ attr "keySplines"
489
+
490
+
491
+ keyTimes : String -> Attribute msg
492
+ keyTimes =
493
+ attr "keyTimes"
494
+
495
+
496
+ lang : String -> Attribute msg
497
+ lang =
498
+ attr "lang"
499
+
500
+
501
+ lengthAdjust : String -> Attribute msg
502
+ lengthAdjust =
503
+ attr "lengthAdjust"
504
+
505
+
506
+ letterSpacing : String -> Attribute msg
507
+ letterSpacing =
508
+ attr "letter-spacing"
509
+
510
+
511
+ lightingColor : String -> Attribute msg
512
+ lightingColor =
513
+ attr "lighting-color"
514
+
515
+
516
+ limitingConeAngle : String -> Attribute msg
517
+ limitingConeAngle =
518
+ attr "limitingConeAngle"
519
+
520
+
521
+ local : String -> Attribute msg
522
+ local =
523
+ attr "local"
524
+
525
+
526
+ markerEnd : String -> Attribute msg
527
+ markerEnd =
528
+ attr "marker-end"
529
+
530
+
531
+ markerHeight : String -> Attribute msg
532
+ markerHeight =
533
+ attr "markerHeight"
534
+
535
+
536
+ markerMid : String -> Attribute msg
537
+ markerMid =
538
+ attr "marker-mid"
539
+
540
+
541
+ markerStart : String -> Attribute msg
542
+ markerStart =
543
+ attr "marker-start"
544
+
545
+
546
+ markerUnits : String -> Attribute msg
547
+ markerUnits =
548
+ attr "markerUnits"
549
+
550
+
551
+ markerWidth : String -> Attribute msg
552
+ markerWidth =
553
+ attr "markerWidth"
554
+
555
+
556
+ mask : String -> Attribute msg
557
+ mask =
558
+ attr "mask"
559
+
560
+
561
+ maskContentUnits : String -> Attribute msg
562
+ maskContentUnits =
563
+ attr "maskContentUnits"
564
+
565
+
566
+ maskUnits : String -> Attribute msg
567
+ maskUnits =
568
+ attr "maskUnits"
569
+
570
+
571
+ mathematical : String -> Attribute msg
572
+ mathematical =
573
+ attr "mathematical"
574
+
575
+
576
+ max : String -> Attribute msg
577
+ max =
578
+ attr "max"
579
+
580
+
581
+ media : String -> Attribute msg
582
+ media =
583
+ attr "media"
584
+
585
+
586
+ method : String -> Attribute msg
587
+ method =
588
+ attr "method"
589
+
590
+
591
+ min : String -> Attribute msg
592
+ min =
593
+ attr "min"
594
+
595
+
596
+ mode : String -> Attribute msg
597
+ mode =
598
+ attr "mode"
599
+
600
+
601
+ name : String -> Attribute msg
602
+ name =
603
+ attr "name"
604
+
605
+
606
+ numOctaves : String -> Attribute msg
607
+ numOctaves =
608
+ attr "numOctaves"
609
+
610
+
611
+ offset : String -> Attribute msg
612
+ offset =
613
+ attr "offset"
614
+
615
+
616
+ opacity : String -> Attribute msg
617
+ opacity =
618
+ attr "opacity"
619
+
620
+
621
+ operator : String -> Attribute msg
622
+ operator =
623
+ attr "operator"
624
+
625
+
626
+ order : String -> Attribute msg
627
+ order =
628
+ attr "order"
629
+
630
+
631
+ orient : String -> Attribute msg
632
+ orient =
633
+ attr "orient"
634
+
635
+
636
+ orientation : String -> Attribute msg
637
+ orientation =
638
+ attr "orientation"
639
+
640
+
641
+ origin : String -> Attribute msg
642
+ origin =
643
+ attr "origin"
644
+
645
+
646
+ overflow : String -> Attribute msg
647
+ overflow =
648
+ attr "overflow"
649
+
650
+
651
+ overlinePosition : String -> Attribute msg
652
+ overlinePosition =
653
+ attr "overline-position"
654
+
655
+
656
+ overlineThickness : String -> Attribute msg
657
+ overlineThickness =
658
+ attr "overline-thickness"
659
+
660
+
661
+ panose1 : String -> Attribute msg
662
+ panose1 =
663
+ attr "panose-1"
664
+
665
+
666
+ pathLength : String -> Attribute msg
667
+ pathLength =
668
+ attr "pathLength"
669
+
670
+
671
+ patternContentUnits : String -> Attribute msg
672
+ patternContentUnits =
673
+ attr "patternContentUnits"
674
+
675
+
676
+ patternTransform : String -> Attribute msg
677
+ patternTransform =
678
+ attr "patternTransform"
679
+
680
+
681
+ patternUnits : String -> Attribute msg
682
+ patternUnits =
683
+ attr "patternUnits"
684
+
685
+
686
+ pointerEvents : String -> Attribute msg
687
+ pointerEvents =
688
+ attr "pointer-events"
689
+
690
+
691
+ points : String -> Attribute msg
692
+ points =
693
+ attr "points"
694
+
695
+
696
+ pointsAtX : String -> Attribute msg
697
+ pointsAtX =
698
+ attr "pointsAtX"
699
+
700
+
701
+ pointsAtY : String -> Attribute msg
702
+ pointsAtY =
703
+ attr "pointsAtY"
704
+
705
+
706
+ pointsAtZ : String -> Attribute msg
707
+ pointsAtZ =
708
+ attr "pointsAtZ"
709
+
710
+
711
+ preserveAlpha : String -> Attribute msg
712
+ preserveAlpha =
713
+ attr "preserveAlpha"
714
+
715
+
716
+ preserveAspectRatio : String -> Attribute msg
717
+ preserveAspectRatio =
718
+ attr "preserveAspectRatio"
719
+
720
+
721
+ primitiveUnits : String -> Attribute msg
722
+ primitiveUnits =
723
+ attr "primitiveUnits"
724
+
725
+
726
+ r : String -> Attribute msg
727
+ r =
728
+ attr "r"
729
+
730
+
731
+ radius : String -> Attribute msg
732
+ radius =
733
+ attr "radius"
734
+
735
+
736
+ refX : String -> Attribute msg
737
+ refX =
738
+ attr "refX"
739
+
740
+
741
+ refY : String -> Attribute msg
742
+ refY =
743
+ attr "refY"
744
+
745
+
746
+ repeatCount : String -> Attribute msg
747
+ repeatCount =
748
+ attr "repeatCount"
749
+
750
+
751
+ repeatDur : String -> Attribute msg
752
+ repeatDur =
753
+ attr "repeatDur"
754
+
755
+
756
+ restart : String -> Attribute msg
757
+ restart =
758
+ attr "restart"
759
+
760
+
761
+ result : String -> Attribute msg
762
+ result =
763
+ attr "result"
764
+
765
+
766
+ rotate : String -> Attribute msg
767
+ rotate =
768
+ attr "rotate"
769
+
770
+
771
+ rx : String -> Attribute msg
772
+ rx =
773
+ attr "rx"
774
+
775
+
776
+ ry : String -> Attribute msg
777
+ ry =
778
+ attr "ry"
779
+
780
+
781
+ scale : String -> Attribute msg
782
+ scale =
783
+ attr "scale"
784
+
785
+
786
+ seed : String -> Attribute msg
787
+ seed =
788
+ attr "seed"
789
+
790
+
791
+ shapeRendering : String -> Attribute msg
792
+ shapeRendering =
793
+ attr "shape-rendering"
794
+
795
+
796
+ slope : String -> Attribute msg
797
+ slope =
798
+ attr "slope"
799
+
800
+
801
+ spacing : String -> Attribute msg
802
+ spacing =
803
+ attr "spacing"
804
+
805
+
806
+ specularConstant : String -> Attribute msg
807
+ specularConstant =
808
+ attr "specularConstant"
809
+
810
+
811
+ specularExponent : String -> Attribute msg
812
+ specularExponent =
813
+ attr "specularExponent"
814
+
815
+
816
+ speed : String -> Attribute msg
817
+ speed =
818
+ attr "speed"
819
+
820
+
821
+ spreadMethod : String -> Attribute msg
822
+ spreadMethod =
823
+ attr "spreadMethod"
824
+
825
+
826
+ startOffset : String -> Attribute msg
827
+ startOffset =
828
+ attr "startOffset"
829
+
830
+
831
+ stdDeviation : String -> Attribute msg
832
+ stdDeviation =
833
+ attr "stdDeviation"
834
+
835
+
836
+ stemh : String -> Attribute msg
837
+ stemh =
838
+ attr "stemh"
839
+
840
+
841
+ stemv : String -> Attribute msg
842
+ stemv =
843
+ attr "stemv"
844
+
845
+
846
+ stitchTiles : String -> Attribute msg
847
+ stitchTiles =
848
+ attr "stitchTiles"
849
+
850
+
851
+ stopColor : String -> Attribute msg
852
+ stopColor =
853
+ attr "stop-color"
854
+
855
+
856
+ stopOpacity : String -> Attribute msg
857
+ stopOpacity =
858
+ attr "stop-opacity"
859
+
860
+
861
+ strikethroughPosition : String -> Attribute msg
862
+ strikethroughPosition =
863
+ attr "strikethrough-position"
864
+
865
+
866
+ strikethroughThickness : String -> Attribute msg
867
+ strikethroughThickness =
868
+ attr "strikethrough-thickness"
869
+
870
+
871
+ stroke : String -> Attribute msg
872
+ stroke =
873
+ attr "stroke"
874
+
875
+
876
+ strokeDasharray : String -> Attribute msg
877
+ strokeDasharray =
878
+ attr "stroke-dasharray"
879
+
880
+
881
+ strokeDashoffset : String -> Attribute msg
882
+ strokeDashoffset =
883
+ attr "stroke-dashoffset"
884
+
885
+
886
+ strokeLinecap : String -> Attribute msg
887
+ strokeLinecap =
888
+ attr "stroke-linecap"
889
+
890
+
891
+ strokeLinejoin : String -> Attribute msg
892
+ strokeLinejoin =
893
+ attr "stroke-linejoin"
894
+
895
+
896
+ strokeMiterlimit : String -> Attribute msg
897
+ strokeMiterlimit =
898
+ attr "stroke-miterlimit"
899
+
900
+
901
+ strokeOpacity : String -> Attribute msg
902
+ strokeOpacity =
903
+ attr "stroke-opacity"
904
+
905
+
906
+ strokeWidth : String -> Attribute msg
907
+ strokeWidth =
908
+ attr "stroke-width"
909
+
910
+
911
+ style : String -> Attribute msg
912
+ style =
913
+ attr "style"
914
+
915
+
916
+ surfaceScale : String -> Attribute msg
917
+ surfaceScale =
918
+ attr "surfaceScale"
919
+
920
+
921
+ systemLanguage : String -> Attribute msg
922
+ systemLanguage =
923
+ attr "systemLanguage"
924
+
925
+
926
+ tableValues : String -> Attribute msg
927
+ tableValues =
928
+ attr "tableValues"
929
+
930
+
931
+ target : String -> Attribute msg
932
+ target =
933
+ attr "target"
934
+
935
+
936
+ targetX : String -> Attribute msg
937
+ targetX =
938
+ attr "targetX"
939
+
940
+
941
+ targetY : String -> Attribute msg
942
+ targetY =
943
+ attr "targetY"
944
+
945
+
946
+ textAnchor : String -> Attribute msg
947
+ textAnchor =
948
+ attr "text-anchor"
949
+
950
+
951
+ textDecoration : String -> Attribute msg
952
+ textDecoration =
953
+ attr "text-decoration"
954
+
955
+
956
+ textLength : String -> Attribute msg
957
+ textLength =
958
+ attr "textLength"
959
+
960
+
961
+ textRendering : String -> Attribute msg
962
+ textRendering =
963
+ attr "text-rendering"
964
+
965
+
966
+ title : String -> Attribute msg
967
+ title =
968
+ attr "title"
969
+
970
+
971
+ to : String -> Attribute msg
972
+ to =
973
+ attr "to"
974
+
975
+
976
+ transform : String -> Attribute msg
977
+ transform =
978
+ attr "transform"
979
+
980
+
981
+ type_ : String -> Attribute msg
982
+ type_ =
983
+ attr "type"
984
+
985
+
986
+ u1 : String -> Attribute msg
987
+ u1 =
988
+ attr "u1"
989
+
990
+
991
+ u2 : String -> Attribute msg
992
+ u2 =
993
+ attr "u2"
994
+
995
+
996
+ underlinePosition : String -> Attribute msg
997
+ underlinePosition =
998
+ attr "underline-position"
999
+
1000
+
1001
+ underlineThickness : String -> Attribute msg
1002
+ underlineThickness =
1003
+ attr "underline-thickness"
1004
+
1005
+
1006
+ unicode : String -> Attribute msg
1007
+ unicode =
1008
+ attr "unicode"
1009
+
1010
+
1011
+ unicodeBidi : String -> Attribute msg
1012
+ unicodeBidi =
1013
+ attr "unicode-bidi"
1014
+
1015
+
1016
+ unicodeRange : String -> Attribute msg
1017
+ unicodeRange =
1018
+ attr "unicode-range"
1019
+
1020
+
1021
+ unitsPerEm : String -> Attribute msg
1022
+ unitsPerEm =
1023
+ attr "units-per-em"
1024
+
1025
+
1026
+ vAlphabetic : String -> Attribute msg
1027
+ vAlphabetic =
1028
+ attr "v-alphabetic"
1029
+
1030
+
1031
+ vHanging : String -> Attribute msg
1032
+ vHanging =
1033
+ attr "v-hanging"
1034
+
1035
+
1036
+ vIdeographic : String -> Attribute msg
1037
+ vIdeographic =
1038
+ attr "v-ideographic"
1039
+
1040
+
1041
+ vMathematical : String -> Attribute msg
1042
+ vMathematical =
1043
+ attr "v-mathematical"
1044
+
1045
+
1046
+ values : String -> Attribute msg
1047
+ values =
1048
+ attr "values"
1049
+
1050
+
1051
+ version : String -> Attribute msg
1052
+ version =
1053
+ attr "version"
1054
+
1055
+
1056
+ vertAdvY : String -> Attribute msg
1057
+ vertAdvY =
1058
+ attr "vert-adv-y"
1059
+
1060
+
1061
+ vertOriginX : String -> Attribute msg
1062
+ vertOriginX =
1063
+ attr "vert-origin-x"
1064
+
1065
+
1066
+ vertOriginY : String -> Attribute msg
1067
+ vertOriginY =
1068
+ attr "vert-origin-y"
1069
+
1070
+
1071
+ viewBox : String -> Attribute msg
1072
+ viewBox =
1073
+ attr "viewBox"
1074
+
1075
+
1076
+ viewTarget : String -> Attribute msg
1077
+ viewTarget =
1078
+ attr "viewTarget"
1079
+
1080
+
1081
+ visibility : String -> Attribute msg
1082
+ visibility =
1083
+ attr "visibility"
1084
+
1085
+
1086
+ width : String -> Attribute msg
1087
+ width =
1088
+ attr "width"
1089
+
1090
+
1091
+ widths : String -> Attribute msg
1092
+ widths =
1093
+ attr "widths"
1094
+
1095
+
1096
+ wordSpacing : String -> Attribute msg
1097
+ wordSpacing =
1098
+ attr "word-spacing"
1099
+
1100
+
1101
+ writingMode : String -> Attribute msg
1102
+ writingMode =
1103
+ attr "writing-mode"
1104
+
1105
+
1106
+ x : String -> Attribute msg
1107
+ x =
1108
+ attr "x"
1109
+
1110
+
1111
+ x1 : String -> Attribute msg
1112
+ x1 =
1113
+ attr "x1"
1114
+
1115
+
1116
+ x2 : String -> Attribute msg
1117
+ x2 =
1118
+ attr "x2"
1119
+
1120
+
1121
+ xChannelSelector : String -> Attribute msg
1122
+ xChannelSelector =
1123
+ attr "xChannelSelector"
1124
+
1125
+
1126
+ xHeight : String -> Attribute msg
1127
+ xHeight =
1128
+ attr "x-height"
1129
+
1130
+
1131
+ xlinkActuate : String -> Attribute msg
1132
+ xlinkActuate =
1133
+ attr "xlink:actuate"
1134
+
1135
+
1136
+ xlinkArcrole : String -> Attribute msg
1137
+ xlinkArcrole =
1138
+ attr "xlink:arcrole"
1139
+
1140
+
1141
+ xlinkHref : String -> Attribute msg
1142
+ xlinkHref =
1143
+ attr "xlink:href"
1144
+
1145
+
1146
+ xlinkRole : String -> Attribute msg
1147
+ xlinkRole =
1148
+ attr "xlink:role"
1149
+
1150
+
1151
+ xlinkShow : String -> Attribute msg
1152
+ xlinkShow =
1153
+ attr "xlink:show"
1154
+
1155
+
1156
+ xlinkTitle : String -> Attribute msg
1157
+ xlinkTitle =
1158
+ attr "xlink:title"
1159
+
1160
+
1161
+ xlinkType : String -> Attribute msg
1162
+ xlinkType =
1163
+ attr "xlink:type"
1164
+
1165
+
1166
+ xmlBase : String -> Attribute msg
1167
+ xmlBase =
1168
+ attr "xml:base"
1169
+
1170
+
1171
+ xmlLang : String -> Attribute msg
1172
+ xmlLang =
1173
+ attr "xml:lang"
1174
+
1175
+
1176
+ xmlSpace : String -> Attribute msg
1177
+ xmlSpace =
1178
+ attr "xml:space"
1179
+
1180
+
1181
+ y : String -> Attribute msg
1182
+ y =
1183
+ attr "y"
1184
+
1185
+
1186
+ y1 : String -> Attribute msg
1187
+ y1 =
1188
+ attr "y1"
1189
+
1190
+
1191
+ y2 : String -> Attribute msg
1192
+ y2 =
1193
+ attr "y2"
1194
+
1195
+
1196
+ yChannelSelector : String -> Attribute msg
1197
+ yChannelSelector =
1198
+ attr "yChannelSelector"
1199
+
1200
+
1201
+ z : String -> Attribute msg
1202
+ z =
1203
+ attr "z"
1204
+
1205
+
1206
+ zoomAndPan : String -> Attribute msg
1207
+ zoomAndPan =
1208
+ attr "zoomAndPan"