phlex 2.0.0.beta2 → 2.0.0.rc1

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