@mittwald/flow-remote-react-renderer 0.2.0-alpha.7 → 0.2.0-alpha.70
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.
- package/dist/js/RemoteRenderer.mjs +16 -0
- package/dist/js/RemoteRenderer.mjs.map +1 -0
- package/dist/js/RemoteRendererClient.mjs +55 -0
- package/dist/js/RemoteRendererClient.mjs.map +1 -0
- package/dist/js/auto-generated/index.mjs +112 -0
- package/dist/js/auto-generated/index.mjs.map +1 -0
- package/dist/js/components/Form.mjs +22 -0
- package/dist/js/components/Form.mjs.map +1 -0
- package/dist/js/components/lib/getFormDataObject.mjs +7 -0
- package/dist/js/components/lib/getFormDataObject.mjs.map +1 -0
- package/dist/js/components.mjs +26 -0
- package/dist/js/components.mjs.map +1 -0
- package/dist/js/hooks/useIsMounted.mjs +14 -0
- package/dist/js/hooks/useIsMounted.mjs.map +1 -0
- package/dist/js/index.mjs +7 -0
- package/dist/js/index.mjs.map +1 -0
- package/dist/js/lib/createFlowRemoteComponentRenderer.mjs +36 -0
- package/dist/js/lib/createFlowRemoteComponentRenderer.mjs.map +1 -0
- package/dist/js/lib/elementFactory.mjs +19 -0
- package/dist/js/lib/elementFactory.mjs.map +1 -0
- package/dist/js/lib/mapAttributeToReactProperty.mjs +14 -0
- package/dist/js/lib/mapAttributeToReactProperty.mjs.map +1 -0
- package/dist/js/lib/propClassifiers.mjs +13 -0
- package/dist/js/lib/propClassifiers.mjs.map +1 -0
- package/dist/types/RemoteRenderer.d.ts +4 -7
- package/dist/types/RemoteRenderer.d.ts.map +1 -0
- package/dist/types/RemoteRendererClient.d.ts +11 -0
- package/dist/types/RemoteRendererClient.d.ts.map +1 -0
- package/dist/types/auto-generated/index.d.ts +17 -26
- package/dist/types/auto-generated/index.d.ts.map +1 -0
- package/dist/types/components/Form.d.ts +1 -0
- package/dist/types/components/Form.d.ts.map +1 -0
- package/dist/types/components/lib/getFormDataObject.d.ts +1 -0
- package/dist/types/components/lib/getFormDataObject.d.ts.map +1 -0
- package/dist/types/components.d.ts +18 -26
- package/dist/types/components.d.ts.map +1 -0
- package/dist/types/hooks/useIsMounted.d.ts +2 -0
- package/dist/types/hooks/useIsMounted.d.ts.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/lib/createFlowRemoteComponentRenderer.d.ts +2 -1
- package/dist/types/lib/createFlowRemoteComponentRenderer.d.ts.map +1 -0
- package/dist/types/lib/elementFactory.d.ts +4 -2
- package/dist/types/lib/elementFactory.d.ts.map +1 -0
- package/dist/types/lib/mapAttributeToReactProperty.d.ts +2 -0
- package/dist/types/lib/mapAttributeToReactProperty.d.ts.map +1 -0
- package/dist/types/lib/propClassifiers.d.ts +3 -0
- package/dist/types/lib/propClassifiers.d.ts.map +1 -0
- package/dist/types/lib/stringChildrenExtractor.d.ts +1 -0
- package/dist/types/lib/stringChildrenExtractor.d.ts.map +1 -0
- package/dist/types/lib/types.d.ts +1 -0
- package/dist/types/lib/types.d.ts.map +1 -0
- package/package.json +32 -26
- package/dist/index.js +0 -770
- package/dist/polyfill.js +0 -2
- package/dist/types/lib/mapReactElementAttributes.d.ts +0 -6
- package/dist/types/lib/possibleStandardNames.d.ts +0 -495
- package/dist/types/polyfill.d.ts +0 -0
package/dist/polyfill.js
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { default as possibleStandardNames } from './possibleStandardNames';
|
|
2
|
-
export type SupportedProperties = Partial<Record<keyof typeof possibleStandardNames extends Record<string, unknown> ? keyof typeof possibleStandardNames : never, unknown>>;
|
|
3
|
-
export type MappedReactNames<P extends SupportedProperties> = {
|
|
4
|
-
[K in keyof P as K extends keyof typeof possibleStandardNames ? (typeof possibleStandardNames)[K] : K]: P[K];
|
|
5
|
-
};
|
|
6
|
-
export declare const mapReactElementAttributes: <PN extends SupportedProperties>(properties: PN) => MappedReactNames<PN>;
|
|
@@ -1,495 +0,0 @@
|
|
|
1
|
-
declare const possibleStandardNames: {
|
|
2
|
-
readonly accept: "accept";
|
|
3
|
-
readonly acceptcharset: "acceptCharset";
|
|
4
|
-
readonly "accept-charset": "acceptCharset";
|
|
5
|
-
readonly accesskey: "accessKey";
|
|
6
|
-
readonly action: "action";
|
|
7
|
-
readonly allowfullscreen: "allowFullScreen";
|
|
8
|
-
readonly alt: "alt";
|
|
9
|
-
readonly as: "as";
|
|
10
|
-
readonly async: "async";
|
|
11
|
-
readonly autocapitalize: "autoCapitalize";
|
|
12
|
-
readonly autocomplete: "autoComplete";
|
|
13
|
-
readonly autocorrect: "autoCorrect";
|
|
14
|
-
readonly autofocus: "autoFocus";
|
|
15
|
-
readonly autoplay: "autoPlay";
|
|
16
|
-
readonly autosave: "autoSave";
|
|
17
|
-
readonly capture: "capture";
|
|
18
|
-
readonly cellpadding: "cellPadding";
|
|
19
|
-
readonly cellspacing: "cellSpacing";
|
|
20
|
-
readonly challenge: "challenge";
|
|
21
|
-
readonly charset: "charSet";
|
|
22
|
-
readonly checked: "checked";
|
|
23
|
-
readonly children: "children";
|
|
24
|
-
readonly cite: "cite";
|
|
25
|
-
readonly class: "className";
|
|
26
|
-
readonly classid: "classID";
|
|
27
|
-
readonly classname: "className";
|
|
28
|
-
readonly cols: "cols";
|
|
29
|
-
readonly colspan: "colSpan";
|
|
30
|
-
readonly content: "content";
|
|
31
|
-
readonly contenteditable: "contentEditable";
|
|
32
|
-
readonly contextmenu: "contextMenu";
|
|
33
|
-
readonly controls: "controls";
|
|
34
|
-
readonly controlslist: "controlsList";
|
|
35
|
-
readonly coords: "coords";
|
|
36
|
-
readonly crossorigin: "crossOrigin";
|
|
37
|
-
readonly dangerouslysetinnerhtml: "dangerouslySetInnerHTML";
|
|
38
|
-
readonly data: "data";
|
|
39
|
-
readonly datetime: "dateTime";
|
|
40
|
-
readonly default: "default";
|
|
41
|
-
readonly defaultchecked: "defaultChecked";
|
|
42
|
-
readonly defaultvalue: "defaultValue";
|
|
43
|
-
readonly defer: "defer";
|
|
44
|
-
readonly dir: "dir";
|
|
45
|
-
readonly disabled: "disabled";
|
|
46
|
-
readonly disablepictureinpicture: "disablePictureInPicture";
|
|
47
|
-
readonly disableremoteplayback: "disableRemotePlayback";
|
|
48
|
-
readonly download: "download";
|
|
49
|
-
readonly draggable: "draggable";
|
|
50
|
-
readonly enctype: "encType";
|
|
51
|
-
readonly enterkeyhint: "enterKeyHint";
|
|
52
|
-
readonly fetchpriority: "fetchPriority";
|
|
53
|
-
readonly for: "htmlFor";
|
|
54
|
-
readonly form: "form";
|
|
55
|
-
readonly formmethod: "formMethod";
|
|
56
|
-
readonly formaction: "formAction";
|
|
57
|
-
readonly formenctype: "formEncType";
|
|
58
|
-
readonly formnovalidate: "formNoValidate";
|
|
59
|
-
readonly formtarget: "formTarget";
|
|
60
|
-
readonly frameborder: "frameBorder";
|
|
61
|
-
readonly headers: "headers";
|
|
62
|
-
readonly height: "height";
|
|
63
|
-
readonly hidden: "hidden";
|
|
64
|
-
readonly high: "high";
|
|
65
|
-
readonly href: "href";
|
|
66
|
-
readonly hreflang: "hrefLang";
|
|
67
|
-
readonly htmlfor: "htmlFor";
|
|
68
|
-
readonly httpequiv: "httpEquiv";
|
|
69
|
-
readonly "http-equiv": "httpEquiv";
|
|
70
|
-
readonly icon: "icon";
|
|
71
|
-
readonly id: "id";
|
|
72
|
-
readonly imagesizes: "imageSizes";
|
|
73
|
-
readonly imagesrcset: "imageSrcSet";
|
|
74
|
-
readonly inert: "inert";
|
|
75
|
-
readonly innerhtml: "innerHTML";
|
|
76
|
-
readonly inputmode: "inputMode";
|
|
77
|
-
readonly integrity: "integrity";
|
|
78
|
-
readonly is: "is";
|
|
79
|
-
readonly itemid: "itemID";
|
|
80
|
-
readonly itemprop: "itemProp";
|
|
81
|
-
readonly itemref: "itemRef";
|
|
82
|
-
readonly itemscope: "itemScope";
|
|
83
|
-
readonly itemtype: "itemType";
|
|
84
|
-
readonly keyparams: "keyParams";
|
|
85
|
-
readonly keytype: "keyType";
|
|
86
|
-
readonly kind: "kind";
|
|
87
|
-
readonly label: "label";
|
|
88
|
-
readonly lang: "lang";
|
|
89
|
-
readonly list: "list";
|
|
90
|
-
readonly loop: "loop";
|
|
91
|
-
readonly low: "low";
|
|
92
|
-
readonly manifest: "manifest";
|
|
93
|
-
readonly marginwidth: "marginWidth";
|
|
94
|
-
readonly marginheight: "marginHeight";
|
|
95
|
-
readonly max: "max";
|
|
96
|
-
readonly maxlength: "maxLength";
|
|
97
|
-
readonly media: "media";
|
|
98
|
-
readonly mediagroup: "mediaGroup";
|
|
99
|
-
readonly method: "method";
|
|
100
|
-
readonly min: "min";
|
|
101
|
-
readonly minlength: "minLength";
|
|
102
|
-
readonly multiple: "multiple";
|
|
103
|
-
readonly muted: "muted";
|
|
104
|
-
readonly name: "name";
|
|
105
|
-
readonly nomodule: "noModule";
|
|
106
|
-
readonly nonce: "nonce";
|
|
107
|
-
readonly novalidate: "noValidate";
|
|
108
|
-
readonly open: "open";
|
|
109
|
-
readonly optimum: "optimum";
|
|
110
|
-
readonly pattern: "pattern";
|
|
111
|
-
readonly placeholder: "placeholder";
|
|
112
|
-
readonly playsinline: "playsInline";
|
|
113
|
-
readonly poster: "poster";
|
|
114
|
-
readonly preload: "preload";
|
|
115
|
-
readonly profile: "profile";
|
|
116
|
-
readonly radiogroup: "radioGroup";
|
|
117
|
-
readonly readonly: "readOnly";
|
|
118
|
-
readonly referrerpolicy: "referrerPolicy";
|
|
119
|
-
readonly rel: "rel";
|
|
120
|
-
readonly required: "required";
|
|
121
|
-
readonly reversed: "reversed";
|
|
122
|
-
readonly role: "role";
|
|
123
|
-
readonly rows: "rows";
|
|
124
|
-
readonly rowspan: "rowSpan";
|
|
125
|
-
readonly sandbox: "sandbox";
|
|
126
|
-
readonly scope: "scope";
|
|
127
|
-
readonly scoped: "scoped";
|
|
128
|
-
readonly scrolling: "scrolling";
|
|
129
|
-
readonly seamless: "seamless";
|
|
130
|
-
readonly selected: "selected";
|
|
131
|
-
readonly shape: "shape";
|
|
132
|
-
readonly size: "size";
|
|
133
|
-
readonly sizes: "sizes";
|
|
134
|
-
readonly span: "span";
|
|
135
|
-
readonly spellcheck: "spellCheck";
|
|
136
|
-
readonly src: "src";
|
|
137
|
-
readonly srcdoc: "srcDoc";
|
|
138
|
-
readonly srclang: "srcLang";
|
|
139
|
-
readonly srcset: "srcSet";
|
|
140
|
-
readonly start: "start";
|
|
141
|
-
readonly step: "step";
|
|
142
|
-
readonly style: "style";
|
|
143
|
-
readonly summary: "summary";
|
|
144
|
-
readonly tabindex: "tabIndex";
|
|
145
|
-
readonly target: "target";
|
|
146
|
-
readonly title: "title";
|
|
147
|
-
readonly type: "type";
|
|
148
|
-
readonly usemap: "useMap";
|
|
149
|
-
readonly value: "value";
|
|
150
|
-
readonly width: "width";
|
|
151
|
-
readonly wmode: "wmode";
|
|
152
|
-
readonly wrap: "wrap";
|
|
153
|
-
readonly about: "about";
|
|
154
|
-
readonly accentheight: "accentHeight";
|
|
155
|
-
readonly "accent-height": "accentHeight";
|
|
156
|
-
readonly accumulate: "accumulate";
|
|
157
|
-
readonly additive: "additive";
|
|
158
|
-
readonly alignmentbaseline: "alignmentBaseline";
|
|
159
|
-
readonly "alignment-baseline": "alignmentBaseline";
|
|
160
|
-
readonly allowreorder: "allowReorder";
|
|
161
|
-
readonly alphabetic: "alphabetic";
|
|
162
|
-
readonly amplitude: "amplitude";
|
|
163
|
-
readonly arabicform: "arabicForm";
|
|
164
|
-
readonly "arabic-form": "arabicForm";
|
|
165
|
-
readonly ascent: "ascent";
|
|
166
|
-
readonly attributename: "attributeName";
|
|
167
|
-
readonly attributetype: "attributeType";
|
|
168
|
-
readonly autoreverse: "autoReverse";
|
|
169
|
-
readonly azimuth: "azimuth";
|
|
170
|
-
readonly basefrequency: "baseFrequency";
|
|
171
|
-
readonly baselineshift: "baselineShift";
|
|
172
|
-
readonly "baseline-shift": "baselineShift";
|
|
173
|
-
readonly baseprofile: "baseProfile";
|
|
174
|
-
readonly bbox: "bbox";
|
|
175
|
-
readonly begin: "begin";
|
|
176
|
-
readonly bias: "bias";
|
|
177
|
-
readonly by: "by";
|
|
178
|
-
readonly calcmode: "calcMode";
|
|
179
|
-
readonly capheight: "capHeight";
|
|
180
|
-
readonly "cap-height": "capHeight";
|
|
181
|
-
readonly clip: "clip";
|
|
182
|
-
readonly clippath: "clipPath";
|
|
183
|
-
readonly "clip-path": "clipPath";
|
|
184
|
-
readonly clippathunits: "clipPathUnits";
|
|
185
|
-
readonly cliprule: "clipRule";
|
|
186
|
-
readonly "clip-rule": "clipRule";
|
|
187
|
-
readonly color: "color";
|
|
188
|
-
readonly colorinterpolation: "colorInterpolation";
|
|
189
|
-
readonly "color-interpolation": "colorInterpolation";
|
|
190
|
-
readonly colorinterpolationfilters: "colorInterpolationFilters";
|
|
191
|
-
readonly "color-interpolation-filters": "colorInterpolationFilters";
|
|
192
|
-
readonly colorprofile: "colorProfile";
|
|
193
|
-
readonly "color-profile": "colorProfile";
|
|
194
|
-
readonly colorrendering: "colorRendering";
|
|
195
|
-
readonly "color-rendering": "colorRendering";
|
|
196
|
-
readonly contentscripttype: "contentScriptType";
|
|
197
|
-
readonly contentstyletype: "contentStyleType";
|
|
198
|
-
readonly cursor: "cursor";
|
|
199
|
-
readonly cx: "cx";
|
|
200
|
-
readonly cy: "cy";
|
|
201
|
-
readonly d: "d";
|
|
202
|
-
readonly datatype: "datatype";
|
|
203
|
-
readonly decelerate: "decelerate";
|
|
204
|
-
readonly descent: "descent";
|
|
205
|
-
readonly diffuseconstant: "diffuseConstant";
|
|
206
|
-
readonly direction: "direction";
|
|
207
|
-
readonly display: "display";
|
|
208
|
-
readonly divisor: "divisor";
|
|
209
|
-
readonly dominantbaseline: "dominantBaseline";
|
|
210
|
-
readonly "dominant-baseline": "dominantBaseline";
|
|
211
|
-
readonly dur: "dur";
|
|
212
|
-
readonly dx: "dx";
|
|
213
|
-
readonly dy: "dy";
|
|
214
|
-
readonly edgemode: "edgeMode";
|
|
215
|
-
readonly elevation: "elevation";
|
|
216
|
-
readonly enablebackground: "enableBackground";
|
|
217
|
-
readonly "enable-background": "enableBackground";
|
|
218
|
-
readonly end: "end";
|
|
219
|
-
readonly exponent: "exponent";
|
|
220
|
-
readonly externalresourcesrequired: "externalResourcesRequired";
|
|
221
|
-
readonly fill: "fill";
|
|
222
|
-
readonly fillopacity: "fillOpacity";
|
|
223
|
-
readonly "fill-opacity": "fillOpacity";
|
|
224
|
-
readonly fillrule: "fillRule";
|
|
225
|
-
readonly "fill-rule": "fillRule";
|
|
226
|
-
readonly filter: "filter";
|
|
227
|
-
readonly filterres: "filterRes";
|
|
228
|
-
readonly filterunits: "filterUnits";
|
|
229
|
-
readonly floodopacity: "floodOpacity";
|
|
230
|
-
readonly "flood-opacity": "floodOpacity";
|
|
231
|
-
readonly floodcolor: "floodColor";
|
|
232
|
-
readonly "flood-color": "floodColor";
|
|
233
|
-
readonly focusable: "focusable";
|
|
234
|
-
readonly fontfamily: "fontFamily";
|
|
235
|
-
readonly "font-family": "fontFamily";
|
|
236
|
-
readonly fontsize: "fontSize";
|
|
237
|
-
readonly "font-size": "fontSize";
|
|
238
|
-
readonly fontsizeadjust: "fontSizeAdjust";
|
|
239
|
-
readonly "font-size-adjust": "fontSizeAdjust";
|
|
240
|
-
readonly fontstretch: "fontStretch";
|
|
241
|
-
readonly "font-stretch": "fontStretch";
|
|
242
|
-
readonly fontstyle: "fontStyle";
|
|
243
|
-
readonly "font-style": "fontStyle";
|
|
244
|
-
readonly fontvariant: "fontVariant";
|
|
245
|
-
readonly "font-variant": "fontVariant";
|
|
246
|
-
readonly fontweight: "fontWeight";
|
|
247
|
-
readonly "font-weight": "fontWeight";
|
|
248
|
-
readonly format: "format";
|
|
249
|
-
readonly from: "from";
|
|
250
|
-
readonly fx: "fx";
|
|
251
|
-
readonly fy: "fy";
|
|
252
|
-
readonly g1: "g1";
|
|
253
|
-
readonly g2: "g2";
|
|
254
|
-
readonly glyphname: "glyphName";
|
|
255
|
-
readonly "glyph-name": "glyphName";
|
|
256
|
-
readonly glyphorientationhorizontal: "glyphOrientationHorizontal";
|
|
257
|
-
readonly "glyph-orientation-horizontal": "glyphOrientationHorizontal";
|
|
258
|
-
readonly glyphorientationvertical: "glyphOrientationVertical";
|
|
259
|
-
readonly "glyph-orientation-vertical": "glyphOrientationVertical";
|
|
260
|
-
readonly glyphref: "glyphRef";
|
|
261
|
-
readonly gradienttransform: "gradientTransform";
|
|
262
|
-
readonly gradientunits: "gradientUnits";
|
|
263
|
-
readonly hanging: "hanging";
|
|
264
|
-
readonly horizadvx: "horizAdvX";
|
|
265
|
-
readonly "horiz-adv-x": "horizAdvX";
|
|
266
|
-
readonly horizoriginx: "horizOriginX";
|
|
267
|
-
readonly "horiz-origin-x": "horizOriginX";
|
|
268
|
-
readonly ideographic: "ideographic";
|
|
269
|
-
readonly imagerendering: "imageRendering";
|
|
270
|
-
readonly "image-rendering": "imageRendering";
|
|
271
|
-
readonly in2: "in2";
|
|
272
|
-
readonly in: "in";
|
|
273
|
-
readonly inlist: "inlist";
|
|
274
|
-
readonly intercept: "intercept";
|
|
275
|
-
readonly k1: "k1";
|
|
276
|
-
readonly k2: "k2";
|
|
277
|
-
readonly k3: "k3";
|
|
278
|
-
readonly k4: "k4";
|
|
279
|
-
readonly k: "k";
|
|
280
|
-
readonly kernelmatrix: "kernelMatrix";
|
|
281
|
-
readonly kernelunitlength: "kernelUnitLength";
|
|
282
|
-
readonly kerning: "kerning";
|
|
283
|
-
readonly keypoints: "keyPoints";
|
|
284
|
-
readonly keysplines: "keySplines";
|
|
285
|
-
readonly keytimes: "keyTimes";
|
|
286
|
-
readonly lengthadjust: "lengthAdjust";
|
|
287
|
-
readonly letterspacing: "letterSpacing";
|
|
288
|
-
readonly "letter-spacing": "letterSpacing";
|
|
289
|
-
readonly lightingcolor: "lightingColor";
|
|
290
|
-
readonly "lighting-color": "lightingColor";
|
|
291
|
-
readonly limitingconeangle: "limitingConeAngle";
|
|
292
|
-
readonly local: "local";
|
|
293
|
-
readonly markerend: "markerEnd";
|
|
294
|
-
readonly "marker-end": "markerEnd";
|
|
295
|
-
readonly markerheight: "markerHeight";
|
|
296
|
-
readonly markermid: "markerMid";
|
|
297
|
-
readonly "marker-mid": "markerMid";
|
|
298
|
-
readonly markerstart: "markerStart";
|
|
299
|
-
readonly "marker-start": "markerStart";
|
|
300
|
-
readonly markerunits: "markerUnits";
|
|
301
|
-
readonly markerwidth: "markerWidth";
|
|
302
|
-
readonly mask: "mask";
|
|
303
|
-
readonly maskcontentunits: "maskContentUnits";
|
|
304
|
-
readonly maskunits: "maskUnits";
|
|
305
|
-
readonly mathematical: "mathematical";
|
|
306
|
-
readonly mode: "mode";
|
|
307
|
-
readonly numoctaves: "numOctaves";
|
|
308
|
-
readonly offset: "offset";
|
|
309
|
-
readonly opacity: "opacity";
|
|
310
|
-
readonly operator: "operator";
|
|
311
|
-
readonly order: "order";
|
|
312
|
-
readonly orient: "orient";
|
|
313
|
-
readonly orientation: "orientation";
|
|
314
|
-
readonly origin: "origin";
|
|
315
|
-
readonly overflow: "overflow";
|
|
316
|
-
readonly overlineposition: "overlinePosition";
|
|
317
|
-
readonly "overline-position": "overlinePosition";
|
|
318
|
-
readonly overlinethickness: "overlineThickness";
|
|
319
|
-
readonly "overline-thickness": "overlineThickness";
|
|
320
|
-
readonly paintorder: "paintOrder";
|
|
321
|
-
readonly "paint-order": "paintOrder";
|
|
322
|
-
readonly panose1: "panose1";
|
|
323
|
-
readonly "panose-1": "panose1";
|
|
324
|
-
readonly pathlength: "pathLength";
|
|
325
|
-
readonly patterncontentunits: "patternContentUnits";
|
|
326
|
-
readonly patterntransform: "patternTransform";
|
|
327
|
-
readonly patternunits: "patternUnits";
|
|
328
|
-
readonly pointerevents: "pointerEvents";
|
|
329
|
-
readonly "pointer-events": "pointerEvents";
|
|
330
|
-
readonly points: "points";
|
|
331
|
-
readonly pointsatx: "pointsAtX";
|
|
332
|
-
readonly pointsaty: "pointsAtY";
|
|
333
|
-
readonly pointsatz: "pointsAtZ";
|
|
334
|
-
readonly popover: "popover";
|
|
335
|
-
readonly popovertarget: "popoverTarget";
|
|
336
|
-
readonly popovertargetaction: "popoverTargetAction";
|
|
337
|
-
readonly prefix: "prefix";
|
|
338
|
-
readonly preservealpha: "preserveAlpha";
|
|
339
|
-
readonly preserveaspectratio: "preserveAspectRatio";
|
|
340
|
-
readonly primitiveunits: "primitiveUnits";
|
|
341
|
-
readonly property: "property";
|
|
342
|
-
readonly r: "r";
|
|
343
|
-
readonly radius: "radius";
|
|
344
|
-
readonly refx: "refX";
|
|
345
|
-
readonly refy: "refY";
|
|
346
|
-
readonly renderingintent: "renderingIntent";
|
|
347
|
-
readonly "rendering-intent": "renderingIntent";
|
|
348
|
-
readonly repeatcount: "repeatCount";
|
|
349
|
-
readonly repeatdur: "repeatDur";
|
|
350
|
-
readonly requiredextensions: "requiredExtensions";
|
|
351
|
-
readonly requiredfeatures: "requiredFeatures";
|
|
352
|
-
readonly resource: "resource";
|
|
353
|
-
readonly restart: "restart";
|
|
354
|
-
readonly result: "result";
|
|
355
|
-
readonly results: "results";
|
|
356
|
-
readonly rotate: "rotate";
|
|
357
|
-
readonly rx: "rx";
|
|
358
|
-
readonly ry: "ry";
|
|
359
|
-
readonly scale: "scale";
|
|
360
|
-
readonly security: "security";
|
|
361
|
-
readonly seed: "seed";
|
|
362
|
-
readonly shaperendering: "shapeRendering";
|
|
363
|
-
readonly "shape-rendering": "shapeRendering";
|
|
364
|
-
readonly slope: "slope";
|
|
365
|
-
readonly spacing: "spacing";
|
|
366
|
-
readonly specularconstant: "specularConstant";
|
|
367
|
-
readonly specularexponent: "specularExponent";
|
|
368
|
-
readonly speed: "speed";
|
|
369
|
-
readonly spreadmethod: "spreadMethod";
|
|
370
|
-
readonly startoffset: "startOffset";
|
|
371
|
-
readonly stddeviation: "stdDeviation";
|
|
372
|
-
readonly stemh: "stemh";
|
|
373
|
-
readonly stemv: "stemv";
|
|
374
|
-
readonly stitchtiles: "stitchTiles";
|
|
375
|
-
readonly stopcolor: "stopColor";
|
|
376
|
-
readonly "stop-color": "stopColor";
|
|
377
|
-
readonly stopopacity: "stopOpacity";
|
|
378
|
-
readonly "stop-opacity": "stopOpacity";
|
|
379
|
-
readonly strikethroughposition: "strikethroughPosition";
|
|
380
|
-
readonly "strikethrough-position": "strikethroughPosition";
|
|
381
|
-
readonly strikethroughthickness: "strikethroughThickness";
|
|
382
|
-
readonly "strikethrough-thickness": "strikethroughThickness";
|
|
383
|
-
readonly string: "string";
|
|
384
|
-
readonly stroke: "stroke";
|
|
385
|
-
readonly strokedasharray: "strokeDasharray";
|
|
386
|
-
readonly "stroke-dasharray": "strokeDasharray";
|
|
387
|
-
readonly strokedashoffset: "strokeDashoffset";
|
|
388
|
-
readonly "stroke-dashoffset": "strokeDashoffset";
|
|
389
|
-
readonly strokelinecap: "strokeLinecap";
|
|
390
|
-
readonly "stroke-linecap": "strokeLinecap";
|
|
391
|
-
readonly strokelinejoin: "strokeLinejoin";
|
|
392
|
-
readonly "stroke-linejoin": "strokeLinejoin";
|
|
393
|
-
readonly strokemiterlimit: "strokeMiterlimit";
|
|
394
|
-
readonly "stroke-miterlimit": "strokeMiterlimit";
|
|
395
|
-
readonly strokewidth: "strokeWidth";
|
|
396
|
-
readonly "stroke-width": "strokeWidth";
|
|
397
|
-
readonly strokeopacity: "strokeOpacity";
|
|
398
|
-
readonly "stroke-opacity": "strokeOpacity";
|
|
399
|
-
readonly suppresscontenteditablewarning: "suppressContentEditableWarning";
|
|
400
|
-
readonly suppresshydrationwarning: "suppressHydrationWarning";
|
|
401
|
-
readonly surfacescale: "surfaceScale";
|
|
402
|
-
readonly systemlanguage: "systemLanguage";
|
|
403
|
-
readonly tablevalues: "tableValues";
|
|
404
|
-
readonly targetx: "targetX";
|
|
405
|
-
readonly targety: "targetY";
|
|
406
|
-
readonly textanchor: "textAnchor";
|
|
407
|
-
readonly "text-anchor": "textAnchor";
|
|
408
|
-
readonly textdecoration: "textDecoration";
|
|
409
|
-
readonly "text-decoration": "textDecoration";
|
|
410
|
-
readonly textlength: "textLength";
|
|
411
|
-
readonly textrendering: "textRendering";
|
|
412
|
-
readonly "text-rendering": "textRendering";
|
|
413
|
-
readonly to: "to";
|
|
414
|
-
readonly transform: "transform";
|
|
415
|
-
readonly transformorigin: "transformOrigin";
|
|
416
|
-
readonly "transform-origin": "transformOrigin";
|
|
417
|
-
readonly typeof: "typeof";
|
|
418
|
-
readonly u1: "u1";
|
|
419
|
-
readonly u2: "u2";
|
|
420
|
-
readonly underlineposition: "underlinePosition";
|
|
421
|
-
readonly "underline-position": "underlinePosition";
|
|
422
|
-
readonly underlinethickness: "underlineThickness";
|
|
423
|
-
readonly "underline-thickness": "underlineThickness";
|
|
424
|
-
readonly unicode: "unicode";
|
|
425
|
-
readonly unicodebidi: "unicodeBidi";
|
|
426
|
-
readonly "unicode-bidi": "unicodeBidi";
|
|
427
|
-
readonly unicoderange: "unicodeRange";
|
|
428
|
-
readonly "unicode-range": "unicodeRange";
|
|
429
|
-
readonly unitsperem: "unitsPerEm";
|
|
430
|
-
readonly "units-per-em": "unitsPerEm";
|
|
431
|
-
readonly unselectable: "unselectable";
|
|
432
|
-
readonly valphabetic: "vAlphabetic";
|
|
433
|
-
readonly "v-alphabetic": "vAlphabetic";
|
|
434
|
-
readonly values: "values";
|
|
435
|
-
readonly vectoreffect: "vectorEffect";
|
|
436
|
-
readonly "vector-effect": "vectorEffect";
|
|
437
|
-
readonly version: "version";
|
|
438
|
-
readonly vertadvy: "vertAdvY";
|
|
439
|
-
readonly "vert-adv-y": "vertAdvY";
|
|
440
|
-
readonly vertoriginx: "vertOriginX";
|
|
441
|
-
readonly "vert-origin-x": "vertOriginX";
|
|
442
|
-
readonly vertoriginy: "vertOriginY";
|
|
443
|
-
readonly "vert-origin-y": "vertOriginY";
|
|
444
|
-
readonly vhanging: "vHanging";
|
|
445
|
-
readonly "v-hanging": "vHanging";
|
|
446
|
-
readonly videographic: "vIdeographic";
|
|
447
|
-
readonly "v-ideographic": "vIdeographic";
|
|
448
|
-
readonly viewbox: "viewBox";
|
|
449
|
-
readonly viewtarget: "viewTarget";
|
|
450
|
-
readonly visibility: "visibility";
|
|
451
|
-
readonly vmathematical: "vMathematical";
|
|
452
|
-
readonly "v-mathematical": "vMathematical";
|
|
453
|
-
readonly vocab: "vocab";
|
|
454
|
-
readonly widths: "widths";
|
|
455
|
-
readonly wordspacing: "wordSpacing";
|
|
456
|
-
readonly "word-spacing": "wordSpacing";
|
|
457
|
-
readonly writingmode: "writingMode";
|
|
458
|
-
readonly "writing-mode": "writingMode";
|
|
459
|
-
readonly x1: "x1";
|
|
460
|
-
readonly x2: "x2";
|
|
461
|
-
readonly x: "x";
|
|
462
|
-
readonly xchannelselector: "xChannelSelector";
|
|
463
|
-
readonly xheight: "xHeight";
|
|
464
|
-
readonly "x-height": "xHeight";
|
|
465
|
-
readonly xlinkactuate: "xlinkActuate";
|
|
466
|
-
readonly "xlink:actuate": "xlinkActuate";
|
|
467
|
-
readonly xlinkarcrole: "xlinkArcrole";
|
|
468
|
-
readonly "xlink:arcrole": "xlinkArcrole";
|
|
469
|
-
readonly xlinkhref: "xlinkHref";
|
|
470
|
-
readonly "xlink:href": "xlinkHref";
|
|
471
|
-
readonly xlinkrole: "xlinkRole";
|
|
472
|
-
readonly "xlink:role": "xlinkRole";
|
|
473
|
-
readonly xlinkshow: "xlinkShow";
|
|
474
|
-
readonly "xlink:show": "xlinkShow";
|
|
475
|
-
readonly xlinktitle: "xlinkTitle";
|
|
476
|
-
readonly "xlink:title": "xlinkTitle";
|
|
477
|
-
readonly xlinktype: "xlinkType";
|
|
478
|
-
readonly "xlink:type": "xlinkType";
|
|
479
|
-
readonly xmlbase: "xmlBase";
|
|
480
|
-
readonly "xml:base": "xmlBase";
|
|
481
|
-
readonly xmllang: "xmlLang";
|
|
482
|
-
readonly "xml:lang": "xmlLang";
|
|
483
|
-
readonly xmlns: "xmlns";
|
|
484
|
-
readonly "xml:space": "xmlSpace";
|
|
485
|
-
readonly xmlnsxlink: "xmlnsXlink";
|
|
486
|
-
readonly "xmlns:xlink": "xmlnsXlink";
|
|
487
|
-
readonly xmlspace: "xmlSpace";
|
|
488
|
-
readonly y1: "y1";
|
|
489
|
-
readonly y2: "y2";
|
|
490
|
-
readonly y: "y";
|
|
491
|
-
readonly ychannelselector: "yChannelSelector";
|
|
492
|
-
readonly z: "z";
|
|
493
|
-
readonly zoomandpan: "zoomAndPan";
|
|
494
|
-
};
|
|
495
|
-
export default possibleStandardNames;
|
package/dist/types/polyfill.d.ts
DELETED
|
File without changes
|