phlex 2.0.0.beta2 → 2.0.0.rc2

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.
@@ -1,453 +1,421 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Phlex::SVG::StandardElements
4
- extend Phlex::Elements
5
-
6
- # @!method a(**attributes, &content)
7
- # Outputs an `<a>` tag.
8
- # @return [nil]
9
- # @yieldparam component [self]
10
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/a
11
- register_element :a
12
-
13
- # @!method animate(**attributes, &content)
14
- # Outputs an `<animate>` tag.
15
- # @return [nil]
16
- # @yieldparam component [self]
17
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/animate
18
- register_element :animate
19
-
20
- # @!method animateMotion(**attributes, &content)
21
- # Outputs an `<animateMotion>` tag.
22
- # @return [nil]
23
- # @yieldparam component [self]
24
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/animateMotion
25
- register_element :animateMotion
26
-
27
- # @!method animateTransform(**attributes, &content)
28
- # Outputs an `<animateTransform>` tag.
29
- # @return [nil]
30
- # @yieldparam component [self]
31
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/animateTransform
32
- register_element :animateTransform
33
-
34
- # @!method circle(**attributes, &content)
35
- # Outputs a `<circle>` tag.
36
- # @return [nil]
37
- # @yieldparam component [self]
38
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/circle
39
- register_element :circle
40
-
41
- # @!method clipPath(**attributes, &content)
42
- # Outputs a `<clipPath>` tag.
43
- # @return [nil]
44
- # @yieldparam component [self]
45
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/clipPath
46
- register_element :clipPath
47
-
48
- # @!method defs(**attributes, &content)
49
- # Outputs a `<defs>` tag.
50
- # @return [nil]
51
- # @yieldparam component [self]
52
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/defs
53
- register_element :defs
54
-
55
- # @!method desc(**attributes, &content)
56
- # Outputs a `<desc>` tag.
57
- # @return [nil]
58
- # @yieldparam component [self]
59
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/desc
60
- register_element :desc
61
-
62
- # @!method discard(**attributes, &content)
63
- # Outputs a `<discard>` tag.
64
- # @return [nil]
65
- # @yieldparam component [self]
66
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/discard
67
- register_element :discard
68
-
69
- # @!method ellipse(**attributes, &content)
70
- # Outputs an `<ellipse>` tag.
71
- # @return [nil]
72
- # @yieldparam component [self]
73
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/ellipse
74
- register_element :ellipse
75
-
76
- # @!method feBlend(**attributes, &content)
77
- # Outputs an `<feBlend>` tag.
78
- # @return [nil]
79
- # @yieldparam component [self]
80
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feBlend
81
- register_element :feBlend
82
-
83
- # @!method feColorMatrix(**attributes, &content)
84
- # Outputs an `<feColorMatrix>` tag.
85
- # @return [nil]
86
- # @yieldparam component [self]
87
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feColorMatrix
88
- register_element :feColorMatrix
89
-
90
- # @!method feComponentTransfer(**attributes, &content)
91
- # Outputs an `<feComponentTransfer>` tag.
92
- # @return [nil]
93
- # @yieldparam component [self]
94
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feComponentTransfer
95
- register_element :feComponentTransfer
96
-
97
- # @!method feComposite(**attributes, &content)
98
- # Outputs an `<feComposite>` tag.
99
- # @return [nil]
100
- # @yieldparam component [self]
101
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feComposite
102
- register_element :feComposite
103
-
104
- # @!method feConvolveMatrix(**attributes, &content)
105
- # Outputs an `<feConvolveMatrix>` tag.
106
- # @return [nil]
107
- # @yieldparam component [self]
108
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feConvolveMatrix
109
- register_element :feConvolveMatrix
110
-
111
- # @!method feDiffuseLighting(**attributes, &content)
112
- # Outputs an `<feDiffuseLighting>` tag.
113
- # @return [nil]
114
- # @yieldparam component [self]
115
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feDiffuseLighting
116
- register_element :feDiffuseLighting
117
-
118
- # @!method feDisplacementMap(**attributes, &content)
119
- # Outputs an `<feDisplacementMap>` tag.
120
- # @return [nil]
121
- # @yieldparam component [self]
122
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feDisplacementMap
123
- register_element :feDisplacementMap
124
-
125
- # @!method feDistantLight(**attributes, &content)
126
- # Outputs an `<feDistantLight>` tag.
127
- # @return [nil]
128
- # @yieldparam component [self]
129
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feDistantLight
130
- register_element :feDistantLight
131
-
132
- # @!method feDropShadow(**attributes, &content)
133
- # Outputs an `<feDropShadow>` tag.
134
- # @return [nil]
135
- # @yieldparam component [self]
136
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feDropShadow
137
- register_element :feDropShadow
138
-
139
- # @!method feFlood(**attributes, &content)
140
- # Outputs an `<feFlood>` tag.
141
- # @return [nil]
142
- # @yieldparam component [self]
143
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feFlood
144
- register_element :feFlood
145
-
146
- # @!method feFuncA(**attributes, &content)
147
- # Outputs an `<feFuncA>` tag.
148
- # @return [nil]
149
- # @yieldparam component [self]
150
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feFuncA
151
- register_element :feFuncA
152
-
153
- # @!method feFuncB(**attributes, &content)
154
- # Outputs an `<feFuncB>` tag.
155
- # @return [nil]
156
- # @yieldparam component [self]
157
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feFuncB
158
- register_element :feFuncB
159
-
160
- # @!method feFuncG(**attributes, &content)
161
- # Outputs an `<feFuncG>` tag.
162
- # @return [nil]
163
- # @yieldparam component [self]
164
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feFuncG
165
- register_element :feFuncG
166
-
167
- # @!method feFuncR(**attributes, &content)
168
- # Outputs an `<feFuncR>` tag.
169
- # @return [nil]
170
- # @yieldparam component [self]
171
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feFuncR
172
- register_element :feFuncR
173
-
174
- # @!method feGaussianBlur(**attributes, &content)
175
- # Outputs an `<feGaussianBlur>` tag.
176
- # @return [nil]
177
- # @yieldparam component [self]
178
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feGaussianBlur
179
- register_element :feGaussianBlur
180
-
181
- # @!method feImage(**attributes, &content)
182
- # Outputs an `<feImage>` tag.
183
- # @return [nil]
184
- # @yieldparam component [self]
185
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feImage
186
- register_element :feImage
187
-
188
- # @!method feMerge(**attributes, &content)
189
- # Outputs an `<feMerge>` tag.
190
- # @return [nil]
191
- # @yieldparam component [self]
192
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feMerge
193
- register_element :feMerge
194
-
195
- # @!method feMergeNode(**attributes, &content)
196
- # Outputs an `<feMergeNode>` tag.
197
- # @return [nil]
198
- # @yieldparam component [self]
199
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feMergeNode
200
- register_element :feMergeNode
201
-
202
- # @!method feMorphology(**attributes, &content)
203
- # Outputs an `<feMorphology>` tag.
204
- # @return [nil]
205
- # @yieldparam component [self]
206
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feMorphology
207
- register_element :feMorphology
208
-
209
- # @!method feOffset(**attributes, &content)
210
- # Outputs an `<feOffset>` tag.
211
- # @return [nil]
212
- # @yieldparam component [self]
213
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feOffset
214
- register_element :feOffset
215
-
216
- # @!method fePointLight(**attributes, &content)
217
- # Outputs an `<fePointLight>` tag.
218
- # @return [nil]
219
- # @yieldparam component [self]
220
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/fePointLight
221
- register_element :fePointLight
222
-
223
- # @!method feSpecularLighting(**attributes, &content)
224
- # Outputs an `<feSpecularLighting>` tag.
225
- # @return [nil]
226
- # @yieldparam component [self]
227
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feSpecularLighting
228
- register_element :feSpecularLighting
229
-
230
- # @!method feSpotLight(**attributes, &content)
231
- # Outputs an `<feSpotLight>` tag.
232
- # @return [nil]
233
- # @yieldparam component [self]
234
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feSpotLight
235
- register_element :feSpotLight
236
-
237
- # @!method feTile(**attributes, &content)
238
- # Outputs an `<feTile>` tag.
239
- # @return [nil]
240
- # @yieldparam component [self]
241
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feTile
242
- register_element :feTile
243
-
244
- # @!method feTurbulence(**attributes, &content)
245
- # Outputs an `<feTurbulence>` tag.
246
- # @return [nil]
247
- # @yieldparam component [self]
248
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/feTurbulence
249
- register_element :feTurbulence
250
-
251
- # @!method filter(**attributes, &content)
252
- # Outputs a `<filter>` tag.
253
- # @return [nil]
254
- # @yieldparam component [self]
255
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/filter
256
- register_element :filter
257
-
258
- # @!method foreignObject(**attributes, &content)
259
- # Outputs a `<foreignObject>` tag.
260
- # @return [nil]
261
- # @yieldparam component [self]
262
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/foreignObject
263
- register_element :foreignObject
264
-
265
- # @!method g(**attributes, &content)
266
- # Outputs a `<g>` tag.
267
- # @return [nil]
268
- # @yieldparam component [self]
269
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/g
270
- register_element :g
271
-
272
- # @!method image(**attributes, &content)
273
- # Outputs an `<image>` tag.
274
- # @return [nil]
275
- # @yieldparam component [self]
276
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/image
277
- register_element :image
278
-
279
- # @!method line(**attributes, &content)
280
- # Outputs a `<line>` tag.
281
- # @return [nil]
282
- # @yieldparam component [self]
283
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/line
284
- register_element :line
285
-
286
- # @!method linearGradient(**attributes, &content)
287
- # Outputs a `<linearGradient>` tag.
288
- # @return [nil]
289
- # @yieldparam component [self]
290
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/linearGradient
291
- register_element :linearGradient
292
-
293
- # @!method marker(**attributes, &content)
294
- # Outputs a `<marker>` tag.
295
- # @return [nil]
296
- # @yieldparam component [self]
297
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/marker
298
- register_element :marker
299
-
300
- # @!method mask(**attributes, &content)
301
- # Outputs a `<mask>` tag.
302
- # @return [nil]
303
- # @yieldparam component [self]
304
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/mask
305
- register_element :mask
306
-
307
- # @!method metadata(**attributes, &content)
308
- # Outputs a `<metadata>` tag.
309
- # @return [nil]
310
- # @yieldparam component [self]
311
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/metadata
312
- register_element :metadata
313
-
314
- # @!method mpath(**attributes, &content)
315
- # Outputs an `<mpath>` tag.
316
- # @return [nil]
317
- # @yieldparam component [self]
318
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/mpath
319
- register_element :mpath
320
-
321
- # @!method path(**attributes, &content)
322
- # Outputs a `<path>` tag.
323
- # @return [nil]
324
- # @yieldparam component [self]
325
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/path
326
- register_element :path
327
-
328
- # @!method pattern(**attributes, &content)
329
- # Outputs a `<pattern>` tag.
330
- # @return [nil]
331
- # @yieldparam component [self]
332
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/pattern
333
- register_element :pattern
334
-
335
- # @!method polygon(**attributes, &content)
336
- # Outputs a `<polygon>` tag.
337
- # @return [nil]
338
- # @yieldparam component [self]
339
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/polygon
340
- register_element :polygon
341
-
342
- # @!method polyline(**attributes, &content)
343
- # Outputs a `<polyline>` tag.
344
- # @return [nil]
345
- # @yieldparam component [self]
346
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/polyline
347
- register_element :polyline
348
-
349
- # @!method radialGradient(**attributes, &content)
350
- # Outputs a `<radialGradient>` tag.
351
- # @return [nil]
352
- # @yieldparam component [self]
353
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/radialGradient
354
- register_element :radialGradient
355
-
356
- # @!method rect(**attributes, &content)
357
- # Outputs a `<rect>` tag.
358
- # @return [nil]
359
- # @yieldparam component [self]
360
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/rect
361
- register_element :rect
362
-
363
- # @!method script(**attributes, &content)
364
- # Outputs a `<script>` tag.
365
- # @return [nil]
366
- # @yieldparam component [self]
367
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/script
368
- register_element :script
369
-
370
- # @!method set(**attributes, &content)
371
- # Outputs a `<set>` tag.
372
- # @return [nil]
373
- # @yieldparam component [self]
374
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/set
375
- register_element :set
376
-
377
- # @!method stop(**attributes, &content)
378
- # Outputs a `<stop>` tag.
379
- # @return [nil]
380
- # @yieldparam component [self]
381
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/stop
382
- register_element :stop
383
-
384
- # @!method style(**attributes, &content)
385
- # Outputs a `<style>` tag.
386
- # @return [nil]
387
- # @yieldparam component [self]
388
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/style
389
- register_element :style
390
-
391
- # @!method svg(**attributes, &content)
392
- # Outputs an `<svg>` tag.
393
- # @return [nil]
394
- # @yieldparam component [self]
395
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/svg
396
- register_element :svg
397
-
398
- # @!method switch(**attributes, &content)
399
- # Outputs a `<switch>` tag.
400
- # @return [nil]
401
- # @yieldparam component [self]
402
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/switch
403
- register_element :switch
404
-
405
- # @!method symbol(**attributes, &content)
406
- # Outputs a `<symbol>` tag.
407
- # @return [nil]
408
- # @yieldparam component [self]
409
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/symbol
410
- register_element :symbol
411
-
412
- # @!method text(**attributes, &content)
413
- # Outputs a `<text>` tag.
414
- # @return [nil]
415
- # @yieldparam component [self]
416
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/text
417
- register_element :text
418
-
419
- # @!method textPath(**attributes, &content)
420
- # Outputs a `<textPath>` tag.
421
- # @return [nil]
422
- # @yieldparam component [self]
423
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/textPath
424
- register_element :textPath
425
-
426
- # @!method title(**attributes, &content)
427
- # Outputs a `<title>` tag.
428
- # @return [nil]
429
- # @yieldparam component [self]
430
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/title
431
- register_element :title
432
-
433
- # @!method tspan(**attributes, &content)
434
- # Outputs a `<tspan>` tag.
435
- # @return [nil]
436
- # @yieldparam component [self]
437
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/tspan
438
- register_element :tspan
439
-
440
- # @!method use(**attributes, &content)
441
- # Outputs a `<use>` tag.
442
- # @return [nil]
443
- # @yieldparam component [self]
444
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/use
445
- register_element :use
446
-
447
- # @!method view(**attributes, &content)
448
- # Outputs a `<view>` tag.
449
- # @return [nil]
450
- # @yieldparam component [self]
451
- # @see https://developer.mozilla.org/docs/Web/SVG/Element/view
452
- register_element :view
4
+ extend Phlex::SGML::Elements
5
+
6
+ # Outputs an `<a>` tag.
7
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/a
8
+ register_element def a(
9
+ download: nil,
10
+ href: nil,
11
+ hreflang: nil,
12
+ ping: nil,
13
+ referrerpolicy: nil,
14
+ rel: nil,
15
+ target: nil,
16
+ type: nil,
17
+ **attributes,
18
+ &content
19
+ ) = nil
20
+ # Outputs an `<animate>` tag.
21
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/animate
22
+ register_element def animate(
23
+ attributeName: nil,
24
+ values: nil,
25
+ dur: nil,
26
+ repeatCount: nil,
27
+ **attributes,
28
+ &content
29
+ ) = nil
30
+ # Outputs an `<animateMotion>` tag.
31
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/animateMotion
32
+ register_element def animateMotion(
33
+ keyPoints: nil,
34
+ path: nil,
35
+ rotate: nil,
36
+ begin: nil,
37
+ dur: nil,
38
+ end: nil,
39
+ repeatCount: nil,
40
+ repeatDur: nil,
41
+ fill: nil,
42
+ calcMode: nil,
43
+ values: nil,
44
+ keyTimes: nil,
45
+ keySplines: nil,
46
+ from: nil,
47
+ to: nil,
48
+ by: nil,
49
+ attributeName: nil,
50
+ additive: nil,
51
+ accumulate: nil,
52
+ **attributes,
53
+ &content
54
+ ) = nil
55
+ # Outputs an `<animateTransform>` tag.
56
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/animateTransform
57
+ register_element def animateTransform(
58
+ **attributes,
59
+ &content
60
+ ) = nil
61
+ # Outputs a `<circle>` tag.
62
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/circle
63
+ register_element def circle(
64
+ **attributes,
65
+ &content
66
+ ) = nil
67
+ # Outputs a `<clipPath>` tag.
68
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/clipPath
69
+ register_element def clipPath(
70
+ **attributes,
71
+ &content
72
+ ) = nil
73
+ # Outputs a `<defs>` tag.
74
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/defs
75
+ register_element def defs(
76
+ **attributes,
77
+ &content
78
+ ) = nil
79
+ # Outputs a `<desc>` tag.
80
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/desc
81
+ register_element def desc(
82
+ **attributes,
83
+ &content
84
+ ) = nil
85
+ # Outputs a `<discard>` tag.
86
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/discard
87
+ register_element def discard(
88
+ **attributes,
89
+ &content
90
+ ) = nil
91
+ # Outputs an `<ellipse>` tag.
92
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/ellipse
93
+ register_element def ellipse(
94
+ **attributes,
95
+ &content
96
+ ) = nil
97
+ # Outputs an `<feBlend>` tag.
98
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feBlend
99
+ register_element def feBlend(
100
+ **attributes,
101
+ &content
102
+ ) = nil
103
+ # Outputs an `<feColorMatrix>` tag.
104
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feColorMatrix
105
+ register_element def feColorMatrix(
106
+ **attributes,
107
+ &content
108
+ ) = nil
109
+ # Outputs an `<feComponentTransfer>` tag.
110
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feComponentTransfer
111
+ register_element def feComponentTransfer(
112
+ **attributes,
113
+ &content
114
+ ) = nil
115
+ # Outputs an `<feComposite>` tag.
116
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feComposite
117
+ register_element def feComposite(
118
+ **attributes,
119
+ &content
120
+ ) = nil
121
+ # Outputs an `<feConvolveMatrix>` tag.
122
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feConvolveMatrix
123
+ register_element def feConvolveMatrix(
124
+ **attributes,
125
+ &content
126
+ ) = nil
127
+ # Outputs an `<feDiffuseLighting>` tag.
128
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feDiffuseLighting
129
+ register_element def feDiffuseLighting(
130
+ **attributes,
131
+ &content
132
+ ) = nil
133
+ # Outputs an `<feDisplacementMap>` tag.
134
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feDisplacementMap
135
+ register_element def feDisplacementMap(
136
+ **attributes,
137
+ &content
138
+ ) = nil
139
+ # Outputs an `<feDistantLight>` tag.
140
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feDistantLight
141
+ register_element def feDistantLight(
142
+ **attributes,
143
+ &content
144
+ ) = nil
145
+ # Outputs an `<feDropShadow>` tag.
146
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feDropShadow
147
+ register_element def feDropShadow(
148
+ **attributes,
149
+ &content
150
+ ) = nil
151
+ # Outputs an `<feFlood>` tag.
152
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feFlood
153
+ register_element def feFlood(
154
+ **attributes,
155
+ &content
156
+ ) = nil
157
+ # Outputs an `<feFuncA>` tag.
158
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feFuncA
159
+ register_element def feFuncA(
160
+ **attributes,
161
+ &content
162
+ ) = nil
163
+ # Outputs an `<feFuncB>` tag.
164
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feFuncB
165
+ register_element def feFuncB(
166
+ **attributes,
167
+ &content
168
+ ) = nil
169
+ # Outputs an `<feFuncG>` tag.
170
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feFuncG
171
+ register_element def feFuncG(
172
+ **attributes,
173
+ &content
174
+ ) = nil
175
+ # Outputs an `<feFuncR>` tag.
176
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feFuncR
177
+ register_element def feFuncR(
178
+ **attributes,
179
+ &content
180
+ ) = nil
181
+ # Outputs an `<feGaussianBlur>` tag.
182
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feGaussianBlur
183
+ register_element def feGaussianBlur(
184
+ **attributes,
185
+ &content
186
+ ) = nil
187
+ # Outputs an `<feImage>` tag.
188
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feImage
189
+ register_element def feImage(
190
+ **attributes,
191
+ &content
192
+ ) = nil
193
+ # Outputs an `<feMerge>` tag.
194
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feMerge
195
+ register_element def feMerge(
196
+ **attributes,
197
+ &content
198
+ ) = nil
199
+ # Outputs an `<feMergeNode>` tag.
200
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feMergeNode
201
+ register_element def feMergeNode(
202
+ **attributes,
203
+ &content
204
+ ) = nil
205
+ # Outputs an `<feMorphology>` tag.
206
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feMorphology
207
+ register_element def feMorphology(
208
+ **attributes,
209
+ &content
210
+ ) = nil
211
+ # Outputs an `<feOffset>` tag.
212
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feOffset
213
+ register_element def feOffset(
214
+ **attributes,
215
+ &content
216
+ ) = nil
217
+ # Outputs an `<fePointLight>` tag.
218
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/fePointLight
219
+ register_element def fePointLight(
220
+ **attributes,
221
+ &content
222
+ ) = nil
223
+ # Outputs an `<feSpecularLighting>` tag.
224
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feSpecularLighting
225
+ register_element def feSpecularLighting(
226
+ **attributes,
227
+ &content
228
+ ) = nil
229
+ # Outputs an `<feSpotLight>` tag.
230
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feSpotLight
231
+ register_element def feSpotLight(
232
+ **attributes,
233
+ &content
234
+ ) = nil
235
+ # Outputs an `<feTile>` tag.
236
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feTile
237
+ register_element def feTile(
238
+ **attributes,
239
+ &content
240
+ ) = nil
241
+ # Outputs an `<feTurbulence>` tag.
242
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/feTurbulence
243
+ register_element def feTurbulence(
244
+ **attributes,
245
+ &content
246
+ ) = nil
247
+ # Outputs a `<filter>` tag.
248
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/filter
249
+ register_element def filter(
250
+ **attributes,
251
+ &content
252
+ ) = nil
253
+ # Outputs a `<foreignObject>` tag.
254
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/foreignObject
255
+ register_element def foreignObject(
256
+ **attributes,
257
+ &content
258
+ ) = nil
259
+ # Outputs a `<g>` tag.
260
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/g
261
+ register_element def g(
262
+ **attributes,
263
+ &content
264
+ ) = nil
265
+ # Outputs an `<image>` tag.
266
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/image
267
+ register_element def image(
268
+ **attributes,
269
+ &content
270
+ ) = nil
271
+ # Outputs a `<line>` tag.
272
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/line
273
+ register_element def line(
274
+ **attributes,
275
+ &content
276
+ ) = nil
277
+ # Outputs a `<linearGradient>` tag.
278
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/linearGradient
279
+ register_element def linearGradient(
280
+ **attributes,
281
+ &content
282
+ ) = nil
283
+ # Outputs a `<marker>` tag.
284
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/marker
285
+ register_element def marker(
286
+ **attributes,
287
+ &content
288
+ ) = nil
289
+ # Outputs a `<mask>` tag.
290
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/mask
291
+ register_element def mask(
292
+ **attributes,
293
+ &content
294
+ ) = nil
295
+ # Outputs a `<metadata>` tag.
296
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/metadata
297
+ register_element def metadata(
298
+ **attributes,
299
+ &content
300
+ ) = nil
301
+ # Outputs an `<mpath>` tag.
302
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/mpath
303
+ register_element def mpath(
304
+ **attributes,
305
+ &content
306
+ ) = nil
307
+ # Outputs a `<path>` tag.
308
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/path
309
+ register_element def path(
310
+ **attributes,
311
+ &content
312
+ ) = nil
313
+ # Outputs a `<pattern>` tag.
314
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/pattern
315
+ register_element def pattern(
316
+ **attributes,
317
+ &content
318
+ ) = nil
319
+ # Outputs a `<polygon>` tag.
320
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/polygon
321
+ register_element def polygon(
322
+ **attributes,
323
+ &content
324
+ ) = nil
325
+ # Outputs a `<polyline>` tag.
326
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/polyline
327
+ register_element def polyline(
328
+ **attributes,
329
+ &content
330
+ ) = nil
331
+ # Outputs a `<radialGradient>` tag.
332
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/radialGradient
333
+ register_element def radialGradient(
334
+ **attributes,
335
+ &content
336
+ ) = nil
337
+ # Outputs a `<rect>` tag.
338
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/rect
339
+ register_element def rect(
340
+ **attributes,
341
+ &content
342
+ ) = nil
343
+ # Outputs a `<script>` tag.
344
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/script
345
+ register_element def script(
346
+ **attributes,
347
+ &content
348
+ ) = nil
349
+ # Outputs a `<set>` tag.
350
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/set
351
+ register_element def set(
352
+ **attributes,
353
+ &content
354
+ ) = nil
355
+ # Outputs a `<stop>` tag.
356
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/stop
357
+ register_element def stop(
358
+ **attributes,
359
+ &content
360
+ ) = nil
361
+ # Outputs a `<style>` tag.
362
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/style
363
+ register_element def style(
364
+ **attributes,
365
+ &content
366
+ ) = nil
367
+ # Outputs an `<svg>` tag.
368
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/svg
369
+ register_element def svg(
370
+ **attributes,
371
+ &content
372
+ ) = nil
373
+ # Outputs a `<switch>` tag.
374
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/switch
375
+ register_element def switch(
376
+ **attributes,
377
+ &content
378
+ ) = nil
379
+ # Outputs a `<symbol>` tag.
380
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/symbol
381
+ register_element def symbol(
382
+ **attributes,
383
+ &content
384
+ ) = nil
385
+ # Outputs a `<text>` tag.
386
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/text
387
+ register_element def text(
388
+ **attributes,
389
+ &content
390
+ ) = nil
391
+ # Outputs a `<textPath>` tag.
392
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/textPath
393
+ register_element def textPath(
394
+ **attributes,
395
+ &content
396
+ ) = nil
397
+ # Outputs a `<title>` tag.
398
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/title
399
+ register_element def title(
400
+ **attributes,
401
+ &content
402
+ ) = nil
403
+ # Outputs a `<tspan>` tag.
404
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/tspan
405
+ register_element def tspan(
406
+ **attributes,
407
+ &content
408
+ ) = nil
409
+ # Outputs a `<use>` tag.
410
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/use
411
+ register_element def use(
412
+ **attributes,
413
+ &content
414
+ ) = nil
415
+ # Outputs a `<view>` tag.
416
+ # See https://developer.mozilla.org/docs/Web/SVG/Element/view
417
+ register_element def view(
418
+ **attributes,
419
+ &content
420
+ ) = nil
453
421
  end