@tamagui/dom 0.0.0-bootstrap.0 → 3.0.0-beta.643.1

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.
Files changed (93) hide show
  1. package/dist/cjs/events.cjs +17 -0
  2. package/dist/cjs/events.native.cjs +19 -0
  3. package/dist/cjs/events.native.js +21 -0
  4. package/dist/cjs/events.native.js.map +1 -0
  5. package/dist/cjs/index.cjs +26 -0
  6. package/dist/cjs/index.native.cjs +28 -0
  7. package/dist/cjs/index.native.js +30 -0
  8. package/dist/cjs/index.native.js.map +1 -0
  9. package/dist/cjs/props.cjs +17 -0
  10. package/dist/cjs/props.native.cjs +19 -0
  11. package/dist/cjs/props.native.js +21 -0
  12. package/dist/cjs/props.native.js.map +1 -0
  13. package/dist/cjs/tables/attributes.cjs +850 -0
  14. package/dist/cjs/tables/attributes.native.cjs +862 -0
  15. package/dist/cjs/tables/attributes.native.js +864 -0
  16. package/dist/cjs/tables/attributes.native.js.map +1 -0
  17. package/dist/cjs/tables/compatibility.cjs +338 -0
  18. package/dist/cjs/tables/compatibility.native.cjs +340 -0
  19. package/dist/cjs/tables/compatibility.native.js +342 -0
  20. package/dist/cjs/tables/compatibility.native.js.map +1 -0
  21. package/dist/cjs/tables/events.cjs +169 -0
  22. package/dist/cjs/tables/events.native.cjs +175 -0
  23. package/dist/cjs/tables/events.native.js +177 -0
  24. package/dist/cjs/tables/events.native.js.map +1 -0
  25. package/dist/cjs/tables/nativeBacking.cjs +133 -0
  26. package/dist/cjs/tables/nativeBacking.native.cjs +135 -0
  27. package/dist/cjs/tables/nativeBacking.native.js +137 -0
  28. package/dist/cjs/tables/nativeBacking.native.js.map +1 -0
  29. package/dist/cjs/tables/tags.cjs +576 -0
  30. package/dist/cjs/tables/tags.native.cjs +578 -0
  31. package/dist/cjs/tables/tags.native.js +580 -0
  32. package/dist/cjs/tables/tags.native.js.map +1 -0
  33. package/dist/cjs/tables/types.cjs +17 -0
  34. package/dist/cjs/tables/types.native.cjs +19 -0
  35. package/dist/cjs/tables/types.native.js +21 -0
  36. package/dist/cjs/tables/types.native.js.map +1 -0
  37. package/dist/esm/events.mjs +0 -0
  38. package/dist/esm/events.native.js +0 -0
  39. package/dist/esm/index.mjs +15 -0
  40. package/dist/esm/index.native.js +15 -0
  41. package/dist/esm/props.mjs +0 -0
  42. package/dist/esm/props.native.js +0 -0
  43. package/dist/esm/tables/attributes.mjs +821 -0
  44. package/dist/esm/tables/attributes.mjs.map +1 -0
  45. package/dist/esm/tables/attributes.native.js +831 -0
  46. package/dist/esm/tables/attributes.native.js.map +1 -0
  47. package/dist/esm/tables/compatibility.mjs +314 -0
  48. package/dist/esm/tables/compatibility.mjs.map +1 -0
  49. package/dist/esm/tables/compatibility.native.js +314 -0
  50. package/dist/esm/tables/compatibility.native.js.map +1 -0
  51. package/dist/esm/tables/events.mjs +145 -0
  52. package/dist/esm/tables/events.mjs.map +1 -0
  53. package/dist/esm/tables/events.native.js +149 -0
  54. package/dist/esm/tables/events.native.js.map +1 -0
  55. package/dist/esm/tables/nativeBacking.mjs +106 -0
  56. package/dist/esm/tables/nativeBacking.mjs.map +1 -0
  57. package/dist/esm/tables/nativeBacking.native.js +106 -0
  58. package/dist/esm/tables/nativeBacking.native.js.map +1 -0
  59. package/dist/esm/tables/tags.mjs +550 -0
  60. package/dist/esm/tables/tags.mjs.map +1 -0
  61. package/dist/esm/tables/tags.native.js +550 -0
  62. package/dist/esm/tables/tags.native.js.map +1 -0
  63. package/dist/esm/tables/types.mjs +0 -0
  64. package/dist/esm/tables/types.native.js +0 -0
  65. package/package.json +57 -7
  66. package/src/events.ts +58 -0
  67. package/src/index.ts +19 -0
  68. package/src/props.ts +699 -0
  69. package/src/tables/attributes.ts +863 -0
  70. package/src/tables/compatibility.ts +360 -0
  71. package/src/tables/events.ts +176 -0
  72. package/src/tables/nativeBacking.ts +132 -0
  73. package/src/tables/tags.ts +557 -0
  74. package/src/tables/types.ts +202 -0
  75. package/types/events.d.ts +58 -0
  76. package/types/events.d.ts.map +11 -0
  77. package/types/index.d.ts +20 -0
  78. package/types/index.d.ts.map +11 -0
  79. package/types/props.d.ts +499 -0
  80. package/types/props.d.ts.map +11 -0
  81. package/types/tables/attributes.d.ts +21 -0
  82. package/types/tables/attributes.d.ts.map +11 -0
  83. package/types/tables/compatibility.d.ts +28 -0
  84. package/types/tables/compatibility.d.ts.map +11 -0
  85. package/types/tables/events.d.ts +5 -0
  86. package/types/tables/events.d.ts.map +11 -0
  87. package/types/tables/nativeBacking.d.ts +28 -0
  88. package/types/tables/nativeBacking.d.ts.map +11 -0
  89. package/types/tables/tags.d.ts +36 -0
  90. package/types/tables/tags.d.ts.map +11 -0
  91. package/types/tables/types.d.ts +135 -0
  92. package/types/tables/types.d.ts.map +11 -0
  93. package/README.md +0 -1
@@ -0,0 +1,580 @@
1
+ "use strict";
2
+
3
+
4
+ var __defProp = Object.defineProperty;
5
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
+ var __getOwnPropNames = Object.getOwnPropertyNames;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all) __defProp(target, name, {
10
+ get: all[name],
11
+ enumerable: true
12
+ });
13
+ };
14
+ var __copyProps = (to, from, except, desc) => {
15
+ if (from && typeof from === "object" || typeof from === "function") {
16
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
17
+ get: () => from[key],
18
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
19
+ });
20
+ }
21
+ return to;
22
+ };
23
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
24
+ var tags_exports = {};
25
+ __export(tags_exports, {
26
+ DISPLAY_WEB_RESET: () => DISPLAY_WEB_RESET,
27
+ TAGS: () => TAGS,
28
+ TAG_NAMES: () => TAG_NAMES,
29
+ TAG_WEB_DEFAULTS: () => TAG_WEB_DEFAULTS
30
+ });
31
+ module.exports = __toCommonJS(tags_exports);
32
+ var DISPLAY_WEB_RESET = {
33
+ block: {
34
+ margin: 0,
35
+ padding: 0
36
+ },
37
+ inline: {
38
+ margin: 0,
39
+ padding: 0,
40
+ textDecorationLine: "none"
41
+ },
42
+ "inline-block": {
43
+ margin: 0,
44
+ padding: 0,
45
+ borderStyle: "solid"
46
+ }
47
+ };
48
+ var MONOSPACE = { fontFamily: "monospace" };
49
+ var HEADING = {
50
+ fontSize: "1.5rem",
51
+ fontWeight: "bold"
52
+ };
53
+ var NO_FORM_SUBMISSION = "renders as a container on native; there is no form submission, validation or reset";
54
+ var NO_NATIVE_PICKER = "native has no menu-based select control, so this tag is a native build error";
55
+ var TAGS = {
56
+ a: {
57
+ display: "inline",
58
+ content: "phrasing",
59
+ backing: "text",
60
+ role: "link",
61
+ element: "HTMLAnchorElement",
62
+ props: "anchor",
63
+ web: "host",
64
+ native: "polyfill",
65
+ note: "native has no navigation for href, target, rel, download or referrerPolicy"
66
+ },
67
+ article: {
68
+ display: "block",
69
+ content: "flow",
70
+ backing: "view",
71
+ element: "HTMLElement",
72
+ props: "common",
73
+ web: "host",
74
+ native: "polyfill"
75
+ },
76
+ aside: {
77
+ display: "block",
78
+ content: "flow",
79
+ backing: "view",
80
+ element: "HTMLElement",
81
+ props: "common",
82
+ web: "host",
83
+ native: "polyfill"
84
+ },
85
+ b: {
86
+ display: "inline",
87
+ content: "phrasing",
88
+ backing: "text",
89
+ element: "HTMLElement",
90
+ props: "common",
91
+ defaults: { fontWeight: "bold" },
92
+ web: "host",
93
+ native: "polyfill"
94
+ },
95
+ bdi: {
96
+ display: "inline",
97
+ content: "phrasing",
98
+ backing: "text",
99
+ element: "HTMLElement",
100
+ props: "common",
101
+ web: "host",
102
+ native: "polyfill",
103
+ note: "native has no bidirectional isolation; the text renders in the inherited direction"
104
+ },
105
+ bdo: {
106
+ display: "inline",
107
+ content: "phrasing",
108
+ backing: "text",
109
+ element: "HTMLElement",
110
+ props: "common",
111
+ web: "host",
112
+ native: "polyfill",
113
+ note: "native honours dir as a writing direction but does not override embedded bidi runs"
114
+ },
115
+ blockquote: {
116
+ display: "block",
117
+ content: "flow",
118
+ backing: "view",
119
+ element: "HTMLQuoteElement",
120
+ props: "common",
121
+ web: "host",
122
+ native: "polyfill"
123
+ },
124
+ br: {
125
+ display: "inline",
126
+ content: "void",
127
+ backing: "text",
128
+ element: "HTMLBRElement",
129
+ props: "common",
130
+ web: "host",
131
+ native: "polyfill"
132
+ },
133
+ button: {
134
+ display: "inline-block",
135
+ content: "flow",
136
+ backing: "view",
137
+ role: "button",
138
+ element: "HTMLButtonElement",
139
+ props: "button",
140
+ defaults: { borderWidth: 1 },
141
+ web: "host",
142
+ native: "polyfill",
143
+ note: "html restricts button content to phrasing; the native backing is a view, so block children are allowed"
144
+ },
145
+ code: {
146
+ display: "inline",
147
+ content: "phrasing",
148
+ backing: "text",
149
+ element: "HTMLElement",
150
+ props: "common",
151
+ defaults: MONOSPACE,
152
+ web: "host",
153
+ native: "polyfill"
154
+ },
155
+ del: {
156
+ display: "inline",
157
+ content: "phrasing",
158
+ backing: "text",
159
+ element: "HTMLModElement",
160
+ props: "common",
161
+ defaults: { textDecorationLine: "line-through" },
162
+ web: "host",
163
+ native: "polyfill"
164
+ },
165
+ div: {
166
+ display: "block",
167
+ content: "flow",
168
+ backing: "view",
169
+ element: "HTMLDivElement",
170
+ props: "common",
171
+ web: "host",
172
+ native: "polyfill"
173
+ },
174
+ em: {
175
+ display: "inline",
176
+ content: "phrasing",
177
+ backing: "text",
178
+ element: "HTMLElement",
179
+ props: "common",
180
+ defaults: { fontStyle: "italic" },
181
+ web: "host",
182
+ native: "polyfill"
183
+ },
184
+ fieldset: {
185
+ display: "block",
186
+ content: "flow",
187
+ backing: "view",
188
+ element: "HTMLFieldSetElement",
189
+ props: "common",
190
+ web: "host",
191
+ native: "polyfill",
192
+ note: NO_FORM_SUBMISSION
193
+ },
194
+ footer: {
195
+ display: "block",
196
+ content: "flow",
197
+ backing: "view",
198
+ element: "HTMLElement",
199
+ props: "common",
200
+ web: "host",
201
+ native: "polyfill"
202
+ },
203
+ form: {
204
+ display: "block",
205
+ content: "flow",
206
+ backing: "view",
207
+ element: "HTMLFormElement",
208
+ props: "common",
209
+ web: "host",
210
+ native: "polyfill",
211
+ note: NO_FORM_SUBMISSION
212
+ },
213
+ h1: {
214
+ display: "block",
215
+ content: "phrasing",
216
+ backing: "text",
217
+ role: "heading",
218
+ element: "HTMLHeadingElement",
219
+ props: "common",
220
+ defaults: HEADING,
221
+ web: "host",
222
+ native: "polyfill"
223
+ },
224
+ h2: {
225
+ display: "block",
226
+ content: "phrasing",
227
+ backing: "text",
228
+ role: "heading",
229
+ element: "HTMLHeadingElement",
230
+ props: "common",
231
+ defaults: HEADING,
232
+ web: "host",
233
+ native: "polyfill"
234
+ },
235
+ h3: {
236
+ display: "block",
237
+ content: "phrasing",
238
+ backing: "text",
239
+ role: "heading",
240
+ element: "HTMLHeadingElement",
241
+ props: "common",
242
+ defaults: HEADING,
243
+ web: "host",
244
+ native: "polyfill"
245
+ },
246
+ h4: {
247
+ display: "block",
248
+ content: "phrasing",
249
+ backing: "text",
250
+ role: "heading",
251
+ element: "HTMLHeadingElement",
252
+ props: "common",
253
+ defaults: HEADING,
254
+ web: "host",
255
+ native: "polyfill"
256
+ },
257
+ h5: {
258
+ display: "block",
259
+ content: "phrasing",
260
+ backing: "text",
261
+ role: "heading",
262
+ element: "HTMLHeadingElement",
263
+ props: "common",
264
+ defaults: HEADING,
265
+ web: "host",
266
+ native: "polyfill"
267
+ },
268
+ h6: {
269
+ display: "block",
270
+ content: "phrasing",
271
+ backing: "text",
272
+ role: "heading",
273
+ element: "HTMLHeadingElement",
274
+ props: "common",
275
+ defaults: HEADING,
276
+ web: "host",
277
+ native: "polyfill"
278
+ },
279
+ header: {
280
+ display: "block",
281
+ content: "flow",
282
+ backing: "view",
283
+ role: "header",
284
+ element: "HTMLElement",
285
+ props: "common",
286
+ web: "host",
287
+ native: "polyfill"
288
+ },
289
+ hr: {
290
+ display: "block",
291
+ content: "void",
292
+ backing: "view",
293
+ element: "HTMLHRElement",
294
+ props: "common",
295
+ defaults: {
296
+ backgroundColor: "black",
297
+ height: 1
298
+ },
299
+ web: "host",
300
+ native: "polyfill"
301
+ },
302
+ i: {
303
+ display: "inline",
304
+ content: "phrasing",
305
+ backing: "text",
306
+ element: "HTMLElement",
307
+ props: "common",
308
+ defaults: { fontStyle: "italic" },
309
+ web: "host",
310
+ native: "polyfill"
311
+ },
312
+ img: {
313
+ display: "inline",
314
+ content: "void",
315
+ backing: "image",
316
+ element: "HTMLImageElement",
317
+ props: "image",
318
+ defaults: { objectFit: "fill" },
319
+ web: "host",
320
+ native: "polyfill",
321
+ note: "width and height props set an aspect ratio on native, where images have no intrinsic layout size until they load"
322
+ },
323
+ input: {
324
+ display: "inline-block",
325
+ content: "void",
326
+ backing: "textinput",
327
+ element: "HTMLInputElement",
328
+ props: "input",
329
+ defaults: { borderWidth: 1 },
330
+ web: "host",
331
+ native: "polyfill",
332
+ note: "native supports the text-like input types only; checkbox, color, date, datetime-local, file, month, radio, range, time and week are a native build error"
333
+ },
334
+ ins: {
335
+ display: "inline",
336
+ content: "phrasing",
337
+ backing: "text",
338
+ element: "HTMLModElement",
339
+ props: "common",
340
+ defaults: { textDecorationLine: "underline" },
341
+ web: "host",
342
+ native: "polyfill"
343
+ },
344
+ kbd: {
345
+ display: "inline",
346
+ content: "phrasing",
347
+ backing: "text",
348
+ element: "HTMLElement",
349
+ props: "common",
350
+ defaults: MONOSPACE,
351
+ web: "host",
352
+ native: "polyfill"
353
+ },
354
+ label: {
355
+ display: "inline",
356
+ content: "phrasing",
357
+ backing: "text",
358
+ element: "HTMLLabelElement",
359
+ props: "label",
360
+ web: "host",
361
+ native: "polyfill",
362
+ note: "native has no label association, so `for` does not focus or activate its control"
363
+ },
364
+ li: {
365
+ display: "block",
366
+ content: "flow",
367
+ backing: "view",
368
+ role: "listitem",
369
+ element: "HTMLLIElement",
370
+ props: "listitem",
371
+ web: "host",
372
+ native: "polyfill",
373
+ note: "list markers and the `value` counter are not rendered on either platform, matching the list-style reset"
374
+ },
375
+ main: {
376
+ display: "block",
377
+ content: "flow",
378
+ backing: "view",
379
+ element: "HTMLElement",
380
+ props: "common",
381
+ web: "host",
382
+ native: "polyfill"
383
+ },
384
+ mark: {
385
+ display: "inline",
386
+ content: "phrasing",
387
+ backing: "text",
388
+ element: "HTMLElement",
389
+ props: "common",
390
+ defaults: {
391
+ backgroundColor: "yellow",
392
+ color: "black"
393
+ },
394
+ web: "host",
395
+ native: "polyfill"
396
+ },
397
+ nav: {
398
+ display: "block",
399
+ content: "flow",
400
+ backing: "view",
401
+ element: "HTMLElement",
402
+ props: "common",
403
+ web: "host",
404
+ native: "polyfill"
405
+ },
406
+ ol: {
407
+ display: "block",
408
+ content: "tags",
409
+ childTags: ["li"],
410
+ backing: "view",
411
+ role: "list",
412
+ element: "HTMLOListElement",
413
+ props: "common",
414
+ web: "host",
415
+ native: "polyfill"
416
+ },
417
+ optgroup: {
418
+ display: "block",
419
+ content: "tags",
420
+ childTags: ["option"],
421
+ backing: "view",
422
+ element: "HTMLOptGroupElement",
423
+ props: "optgroup",
424
+ web: "host",
425
+ native: "none",
426
+ note: NO_NATIVE_PICKER
427
+ },
428
+ option: {
429
+ display: "block",
430
+ content: "text",
431
+ backing: "text",
432
+ element: "HTMLOptionElement",
433
+ props: "option",
434
+ web: "host",
435
+ native: "none",
436
+ note: NO_NATIVE_PICKER
437
+ },
438
+ p: {
439
+ display: "block",
440
+ content: "phrasing",
441
+ backing: "text",
442
+ element: "HTMLParagraphElement",
443
+ props: "common",
444
+ web: "host",
445
+ native: "polyfill"
446
+ },
447
+ pre: {
448
+ display: "block",
449
+ content: "phrasing",
450
+ backing: "text",
451
+ element: "HTMLPreElement",
452
+ props: "common",
453
+ defaults: MONOSPACE,
454
+ web: "host",
455
+ native: "polyfill",
456
+ note: "native preserves whitespace in text but has no scroll container, so long lines wrap instead of scrolling"
457
+ },
458
+ s: {
459
+ display: "inline",
460
+ content: "phrasing",
461
+ backing: "text",
462
+ element: "HTMLElement",
463
+ props: "common",
464
+ defaults: { textDecorationLine: "line-through" },
465
+ web: "host",
466
+ native: "polyfill"
467
+ },
468
+ section: {
469
+ display: "block",
470
+ content: "flow",
471
+ backing: "view",
472
+ element: "HTMLElement",
473
+ props: "common",
474
+ web: "host",
475
+ native: "polyfill"
476
+ },
477
+ select: {
478
+ display: "inline-block",
479
+ content: "tags",
480
+ childTags: ["optgroup", "option"],
481
+ backing: "view",
482
+ element: "HTMLSelectElement",
483
+ props: "select",
484
+ web: "host",
485
+ native: "none",
486
+ note: NO_NATIVE_PICKER
487
+ },
488
+ span: {
489
+ display: "inline",
490
+ content: "phrasing",
491
+ backing: "text",
492
+ element: "HTMLSpanElement",
493
+ props: "common",
494
+ web: "host",
495
+ native: "polyfill"
496
+ },
497
+ strong: {
498
+ display: "inline",
499
+ content: "phrasing",
500
+ backing: "text",
501
+ element: "HTMLElement",
502
+ props: "common",
503
+ defaults: { fontWeight: "bold" },
504
+ web: "host",
505
+ native: "polyfill"
506
+ },
507
+ sub: {
508
+ display: "inline",
509
+ content: "phrasing",
510
+ backing: "text",
511
+ element: "HTMLElement",
512
+ props: "common",
513
+ web: "host",
514
+ native: "polyfill",
515
+ note: "native has no vertical-align, so subscript text sits on the baseline"
516
+ },
517
+ sup: {
518
+ display: "inline",
519
+ content: "phrasing",
520
+ backing: "text",
521
+ element: "HTMLElement",
522
+ props: "common",
523
+ web: "host",
524
+ native: "polyfill",
525
+ note: "native has no vertical-align, so superscript text sits on the baseline"
526
+ },
527
+ textarea: {
528
+ display: "inline-block",
529
+ content: "void",
530
+ backing: "textinput",
531
+ element: "HTMLTextAreaElement",
532
+ props: "textarea",
533
+ defaults: { borderWidth: 1 },
534
+ nativeDefaults: { verticalAlign: "top" },
535
+ web: "host",
536
+ native: "polyfill",
537
+ note: "the value comes from value or defaultValue; children are a build error on both platforms"
538
+ },
539
+ u: {
540
+ display: "inline",
541
+ content: "phrasing",
542
+ backing: "text",
543
+ element: "HTMLElement",
544
+ props: "common",
545
+ defaults: { textDecorationLine: "underline" },
546
+ web: "host",
547
+ native: "polyfill"
548
+ },
549
+ ul: {
550
+ display: "block",
551
+ content: "tags",
552
+ childTags: ["li"],
553
+ backing: "view",
554
+ role: "list",
555
+ element: "HTMLUListElement",
556
+ props: "common",
557
+ web: "host",
558
+ native: "polyfill"
559
+ }
560
+ };
561
+ var TAG_WEB_DEFAULTS = {
562
+ code: { fontSize: "1em" },
563
+ hr: {
564
+ borderStyle: "none",
565
+ borderWidth: 0,
566
+ boxSizing: "border-box"
567
+ },
568
+ img: {
569
+ height: "auto",
570
+ maxWidth: "100%"
571
+ },
572
+ kbd: { fontSize: "1em" },
573
+ pre: {
574
+ fontSize: "1em",
575
+ overflow: "auto"
576
+ }
577
+ };
578
+ var TAG_NAMES = Object.keys(TAGS);
579
+
580
+ //# sourceMappingURL=tags.native.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tags.native.js","names":[],"sources":["cjs/tables/tags.native.js"],"sourcesContent":["\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\nvar tags_exports = {};\n__export(tags_exports, {\n DISPLAY_WEB_RESET: () => DISPLAY_WEB_RESET,\n TAGS: () => TAGS,\n TAG_NAMES: () => TAG_NAMES,\n TAG_WEB_DEFAULTS: () => TAG_WEB_DEFAULTS\n});\nmodule.exports = __toCommonJS(tags_exports);\nvar DISPLAY_WEB_RESET = {\n block: {\n margin: 0,\n padding: 0\n },\n inline: {\n margin: 0,\n padding: 0,\n textDecorationLine: \"none\"\n },\n \"inline-block\": {\n margin: 0,\n padding: 0,\n borderStyle: \"solid\"\n }\n};\nvar MONOSPACE = {\n fontFamily: \"monospace\"\n};\nvar HEADING = {\n fontSize: \"1.5rem\",\n fontWeight: \"bold\"\n};\nvar NO_FORM_SUBMISSION = \"renders as a container on native; there is no form submission, validation or reset\";\nvar NO_NATIVE_PICKER = \"native has no menu-based select control, so this tag is a native build error\";\nvar TAGS = {\n a: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n role: \"link\",\n element: \"HTMLAnchorElement\",\n props: \"anchor\",\n web: \"host\",\n native: \"polyfill\",\n note: \"native has no navigation for href, target, rel, download or referrerPolicy\"\n },\n article: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n aside: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n b: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n defaults: {\n fontWeight: \"bold\"\n },\n web: \"host\",\n native: \"polyfill\"\n },\n bdi: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\",\n note: \"native has no bidirectional isolation; the text renders in the inherited direction\"\n },\n bdo: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\",\n note: \"native honours dir as a writing direction but does not override embedded bidi runs\"\n },\n blockquote: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n element: \"HTMLQuoteElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n br: {\n display: \"inline\",\n content: \"void\",\n backing: \"text\",\n element: \"HTMLBRElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n button: {\n display: \"inline-block\",\n content: \"flow\",\n backing: \"view\",\n role: \"button\",\n element: \"HTMLButtonElement\",\n props: \"button\",\n defaults: {\n borderWidth: 1\n },\n web: \"host\",\n native: \"polyfill\",\n note: \"html restricts button content to phrasing; the native backing is a view, so block children are allowed\"\n },\n code: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n defaults: MONOSPACE,\n web: \"host\",\n native: \"polyfill\"\n },\n del: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLModElement\",\n props: \"common\",\n defaults: {\n textDecorationLine: \"line-through\"\n },\n web: \"host\",\n native: \"polyfill\"\n },\n div: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n element: \"HTMLDivElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n em: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n defaults: {\n fontStyle: \"italic\"\n },\n web: \"host\",\n native: \"polyfill\"\n },\n fieldset: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n element: \"HTMLFieldSetElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\",\n note: NO_FORM_SUBMISSION\n },\n footer: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n form: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n element: \"HTMLFormElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\",\n note: NO_FORM_SUBMISSION\n },\n h1: {\n display: \"block\",\n content: \"phrasing\",\n backing: \"text\",\n role: \"heading\",\n element: \"HTMLHeadingElement\",\n props: \"common\",\n defaults: HEADING,\n web: \"host\",\n native: \"polyfill\"\n },\n h2: {\n display: \"block\",\n content: \"phrasing\",\n backing: \"text\",\n role: \"heading\",\n element: \"HTMLHeadingElement\",\n props: \"common\",\n defaults: HEADING,\n web: \"host\",\n native: \"polyfill\"\n },\n h3: {\n display: \"block\",\n content: \"phrasing\",\n backing: \"text\",\n role: \"heading\",\n element: \"HTMLHeadingElement\",\n props: \"common\",\n defaults: HEADING,\n web: \"host\",\n native: \"polyfill\"\n },\n h4: {\n display: \"block\",\n content: \"phrasing\",\n backing: \"text\",\n role: \"heading\",\n element: \"HTMLHeadingElement\",\n props: \"common\",\n defaults: HEADING,\n web: \"host\",\n native: \"polyfill\"\n },\n h5: {\n display: \"block\",\n content: \"phrasing\",\n backing: \"text\",\n role: \"heading\",\n element: \"HTMLHeadingElement\",\n props: \"common\",\n defaults: HEADING,\n web: \"host\",\n native: \"polyfill\"\n },\n h6: {\n display: \"block\",\n content: \"phrasing\",\n backing: \"text\",\n role: \"heading\",\n element: \"HTMLHeadingElement\",\n props: \"common\",\n defaults: HEADING,\n web: \"host\",\n native: \"polyfill\"\n },\n header: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n role: \"header\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n hr: {\n display: \"block\",\n content: \"void\",\n backing: \"view\",\n element: \"HTMLHRElement\",\n props: \"common\",\n defaults: {\n backgroundColor: \"black\",\n height: 1\n },\n web: \"host\",\n native: \"polyfill\"\n },\n i: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n defaults: {\n fontStyle: \"italic\"\n },\n web: \"host\",\n native: \"polyfill\"\n },\n img: {\n display: \"inline\",\n content: \"void\",\n backing: \"image\",\n element: \"HTMLImageElement\",\n props: \"image\",\n defaults: {\n objectFit: \"fill\"\n },\n web: \"host\",\n native: \"polyfill\",\n note: \"width and height props set an aspect ratio on native, where images have no intrinsic layout size until they load\"\n },\n input: {\n display: \"inline-block\",\n content: \"void\",\n backing: \"textinput\",\n element: \"HTMLInputElement\",\n props: \"input\",\n defaults: {\n borderWidth: 1\n },\n web: \"host\",\n native: \"polyfill\",\n note: \"native supports the text-like input types only; checkbox, color, date, datetime-local, file, month, radio, range, time and week are a native build error\"\n },\n ins: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLModElement\",\n props: \"common\",\n defaults: {\n textDecorationLine: \"underline\"\n },\n web: \"host\",\n native: \"polyfill\"\n },\n kbd: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n defaults: MONOSPACE,\n web: \"host\",\n native: \"polyfill\"\n },\n label: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLLabelElement\",\n props: \"label\",\n web: \"host\",\n native: \"polyfill\",\n note: \"native has no label association, so `for` does not focus or activate its control\"\n },\n li: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n role: \"listitem\",\n element: \"HTMLLIElement\",\n props: \"listitem\",\n web: \"host\",\n native: \"polyfill\",\n note: \"list markers and the `value` counter are not rendered on either platform, matching the list-style reset\"\n },\n main: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n mark: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n defaults: {\n backgroundColor: \"yellow\",\n color: \"black\"\n },\n web: \"host\",\n native: \"polyfill\"\n },\n nav: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n ol: {\n display: \"block\",\n content: \"tags\",\n childTags: [\n \"li\"\n ],\n backing: \"view\",\n role: \"list\",\n element: \"HTMLOListElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n optgroup: {\n display: \"block\",\n content: \"tags\",\n childTags: [\n \"option\"\n ],\n backing: \"view\",\n element: \"HTMLOptGroupElement\",\n props: \"optgroup\",\n web: \"host\",\n native: \"none\",\n note: NO_NATIVE_PICKER\n },\n option: {\n display: \"block\",\n content: \"text\",\n backing: \"text\",\n element: \"HTMLOptionElement\",\n props: \"option\",\n web: \"host\",\n native: \"none\",\n note: NO_NATIVE_PICKER\n },\n p: {\n display: \"block\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLParagraphElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n pre: {\n display: \"block\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLPreElement\",\n props: \"common\",\n defaults: MONOSPACE,\n web: \"host\",\n native: \"polyfill\",\n note: \"native preserves whitespace in text but has no scroll container, so long lines wrap instead of scrolling\"\n },\n s: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n defaults: {\n textDecorationLine: \"line-through\"\n },\n web: \"host\",\n native: \"polyfill\"\n },\n section: {\n display: \"block\",\n content: \"flow\",\n backing: \"view\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n select: {\n display: \"inline-block\",\n content: \"tags\",\n childTags: [\n \"optgroup\",\n \"option\"\n ],\n backing: \"view\",\n element: \"HTMLSelectElement\",\n props: \"select\",\n web: \"host\",\n native: \"none\",\n note: NO_NATIVE_PICKER\n },\n span: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLSpanElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n },\n strong: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n defaults: {\n fontWeight: \"bold\"\n },\n web: \"host\",\n native: \"polyfill\"\n },\n sub: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\",\n note: \"native has no vertical-align, so subscript text sits on the baseline\"\n },\n sup: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\",\n note: \"native has no vertical-align, so superscript text sits on the baseline\"\n },\n textarea: {\n display: \"inline-block\",\n content: \"void\",\n backing: \"textinput\",\n element: \"HTMLTextAreaElement\",\n props: \"textarea\",\n defaults: {\n borderWidth: 1\n },\n nativeDefaults: {\n verticalAlign: \"top\"\n },\n web: \"host\",\n native: \"polyfill\",\n note: \"the value comes from value or defaultValue; children are a build error on both platforms\"\n },\n u: {\n display: \"inline\",\n content: \"phrasing\",\n backing: \"text\",\n element: \"HTMLElement\",\n props: \"common\",\n defaults: {\n textDecorationLine: \"underline\"\n },\n web: \"host\",\n native: \"polyfill\"\n },\n ul: {\n display: \"block\",\n content: \"tags\",\n childTags: [\n \"li\"\n ],\n backing: \"view\",\n role: \"list\",\n element: \"HTMLUListElement\",\n props: \"common\",\n web: \"host\",\n native: \"polyfill\"\n }\n};\nvar TAG_WEB_DEFAULTS = {\n code: {\n fontSize: \"1em\"\n },\n hr: {\n borderStyle: \"none\",\n borderWidth: 0,\n boxSizing: \"border-box\"\n },\n img: {\n height: \"auto\",\n maxWidth: \"100%\"\n },\n kbd: {\n fontSize: \"1em\"\n },\n pre: {\n fontSize: \"1em\",\n overflow: \"auto\"\n }\n};\nvar TAG_NAMES = Object.keys(TAGS);\n//# sourceMappingURL=tags.js.map\n"],"mappings":";;;;AACA,IAAI,YAAY,OAAO;AACvB,IAAI,mBAAmB,OAAO;AAC9B,IAAI,oBAAoB,OAAO;AAC/B,IAAI,eAAe,OAAO,UAAU;AACpC,IAAI,YAAY,QAAQ,QAAQ;CAC9B,KAAK,IAAI,QAAQ,KACf,UAAU,QAAQ,MAAM;EAAE,KAAK,IAAI;EAAO,YAAY;CAAK,CAAC;AAChE;AACA,IAAI,eAAe,IAAI,MAAM,QAAQ,SAAS;CAC5C,IAAI,QAAQ,OAAO,SAAS,YAAY,OAAO,SAAS,YAAY;EAClE,KAAK,IAAI,OAAO,kBAAkB,IAAI,GACpC,IAAI,CAAC,aAAa,KAAK,IAAI,GAAG,KAAK,QAAQ,QACzC,UAAU,IAAI,KAAK;GAAE,WAAW,KAAK;GAAM,YAAY,EAAE,OAAO,iBAAiB,MAAM,GAAG,MAAM,KAAK;EAAW,CAAC;CACvH;CACA,OAAO;AACT;AACA,IAAI,gBAAgB,QAAQ,YAAY,UAAU,CAAC,GAAG,cAAc,EAAE,OAAO,KAAK,CAAC,GAAG,GAAG;AACzF,IAAI,eAAe,CAAC;AACpB,SAAS,cAAc;CACrB,yBAAyB;CACzB,YAAY;CACZ,iBAAiB;CACjB,wBAAwB;AAC1B,CAAC;AACD,OAAO,UAAU,aAAa,YAAY;AAC1C,IAAI,oBAAoB;CACtB,OAAO;EACL,QAAQ;EACR,SAAS;CACX;CACA,QAAQ;EACN,QAAQ;EACR,SAAS;EACT,oBAAoB;CACtB;CACA,gBAAgB;EACd,QAAQ;EACR,SAAS;EACT,aAAa;CACf;AACF;AACA,IAAI,YAAY,EACd,YAAY,YACd;AACA,IAAI,UAAU;CACZ,UAAU;CACV,YAAY;AACd;AACA,IAAI,qBAAqB;AACzB,IAAI,mBAAmB;AACvB,IAAI,OAAO;CACT,GAAG;EACD,SAAS;EACT,SAAS;EACT,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,SAAS;EACP,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,OAAO;EACL,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,GAAG;EACD,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,YAAY,OACd;EACA,KAAK;EACL,QAAQ;CACV;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,YAAY;EACV,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,QAAQ;EACN,SAAS;EACT,SAAS;EACT,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,UAAU,EACR,aAAa,EACf;EACA,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,MAAM;EACJ,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU;EACV,KAAK;EACL,QAAQ;CACV;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,oBAAoB,eACtB;EACA,KAAK;EACL,QAAQ;CACV;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,WAAW,SACb;EACA,KAAK;EACL,QAAQ;CACV;CACA,UAAU;EACR,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,QAAQ;EACN,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,MAAM;EACJ,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,UAAU;EACV,KAAK;EACL,QAAQ;CACV;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,UAAU;EACV,KAAK;EACL,QAAQ;CACV;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,UAAU;EACV,KAAK;EACL,QAAQ;CACV;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,UAAU;EACV,KAAK;EACL,QAAQ;CACV;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,UAAU;EACV,KAAK;EACL,QAAQ;CACV;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,UAAU;EACV,KAAK;EACL,QAAQ;CACV;CACA,QAAQ;EACN,SAAS;EACT,SAAS;EACT,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU;GACR,iBAAiB;GACjB,QAAQ;EACV;EACA,KAAK;EACL,QAAQ;CACV;CACA,GAAG;EACD,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,WAAW,SACb;EACA,KAAK;EACL,QAAQ;CACV;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,WAAW,OACb;EACA,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,OAAO;EACL,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,aAAa,EACf;EACA,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,oBAAoB,YACtB;EACA,KAAK;EACL,QAAQ;CACV;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU;EACV,KAAK;EACL,QAAQ;CACV;CACA,OAAO;EACL,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,MAAM;EACJ,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,MAAM;EACJ,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU;GACR,iBAAiB;GACjB,OAAO;EACT;EACA,KAAK;EACL,QAAQ;CACV;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,WAAW,CACT,IACF;EACA,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,UAAU;EACR,SAAS;EACT,SAAS;EACT,WAAW,CACT,QACF;EACA,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,QAAQ;EACN,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,GAAG;EACD,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU;EACV,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,GAAG;EACD,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,oBAAoB,eACtB;EACA,KAAK;EACL,QAAQ;CACV;CACA,SAAS;EACP,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,QAAQ;EACN,SAAS;EACT,SAAS;EACT,WAAW,CACT,YACA,QACF;EACA,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,MAAM;EACJ,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;CACA,QAAQ;EACN,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,YAAY,OACd;EACA,KAAK;EACL,QAAQ;CACV;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,KAAK;EACH,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,UAAU;EACR,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,aAAa,EACf;EACA,gBAAgB,EACd,eAAe,MACjB;EACA,KAAK;EACL,QAAQ;EACR,MAAM;CACR;CACA,GAAG;EACD,SAAS;EACT,SAAS;EACT,SAAS;EACT,SAAS;EACT,OAAO;EACP,UAAU,EACR,oBAAoB,YACtB;EACA,KAAK;EACL,QAAQ;CACV;CACA,IAAI;EACF,SAAS;EACT,SAAS;EACT,WAAW,CACT,IACF;EACA,SAAS;EACT,MAAM;EACN,SAAS;EACT,OAAO;EACP,KAAK;EACL,QAAQ;CACV;AACF;AACA,IAAI,mBAAmB;CACrB,MAAM,EACJ,UAAU,MACZ;CACA,IAAI;EACF,aAAa;EACb,aAAa;EACb,WAAW;CACb;CACA,KAAK;EACH,QAAQ;EACR,UAAU;CACZ;CACA,KAAK,EACH,UAAU,MACZ;CACA,KAAK;EACH,UAAU;EACV,UAAU;CACZ;AACF;AACA,IAAI,YAAY,OAAO,KAAK,IAAI"}
@@ -0,0 +1,17 @@
1
+
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from === "object" || typeof from === "function") {
8
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
9
+ get: () => from[key],
10
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
11
+ });
12
+ }
13
+ return to;
14
+ };
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
16
+ var types_exports = {};
17
+ module.exports = __toCommonJS(types_exports);
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+
4
+ var __defProp = Object.defineProperty;
5
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
+ var __getOwnPropNames = Object.getOwnPropertyNames;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __copyProps = (to, from, except, desc) => {
9
+ if (from && typeof from === "object" || typeof from === "function") {
10
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
11
+ get: () => from[key],
12
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
13
+ });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+ var types_exports = {};
19
+ module.exports = __toCommonJS(types_exports);
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+
3
+
4
+ var __defProp = Object.defineProperty;
5
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
+ var __getOwnPropNames = Object.getOwnPropertyNames;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __copyProps = (to, from, except, desc) => {
9
+ if (from && typeof from === "object" || typeof from === "function") {
10
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
11
+ get: () => from[key],
12
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
13
+ });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+ var types_exports = {};
19
+ module.exports = __toCommonJS(types_exports);
20
+
21
+ //# sourceMappingURL=types.native.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.native.js","names":[],"sources":["cjs/tables/types.native.js"],"sourcesContent":["\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\nvar types_exports = {};\nmodule.exports = __toCommonJS(types_exports);\n//# sourceMappingURL=types.js.map\n"],"mappings":";;;;AACA,IAAI,YAAY,OAAO;AACvB,IAAI,mBAAmB,OAAO;AAC9B,IAAI,oBAAoB,OAAO;AAC/B,IAAI,eAAe,OAAO,UAAU;AACpC,IAAI,eAAe,IAAI,MAAM,QAAQ,SAAS;CAC5C,IAAI,QAAQ,OAAO,SAAS,YAAY,OAAO,SAAS,YAAY;EAClE,KAAK,IAAI,OAAO,kBAAkB,IAAI,GACpC,IAAI,CAAC,aAAa,KAAK,IAAI,GAAG,KAAK,QAAQ,QACzC,UAAU,IAAI,KAAK;GAAE,WAAW,KAAK;GAAM,YAAY,EAAE,OAAO,iBAAiB,MAAM,GAAG,MAAM,KAAK;EAAW,CAAC;CACvH;CACA,OAAO;AACT;AACA,IAAI,gBAAgB,QAAQ,YAAY,UAAU,CAAC,GAAG,cAAc,EAAE,OAAO,KAAK,CAAC,GAAG,GAAG;AACzF,IAAI,gBAAgB,CAAC;AACrB,OAAO,UAAU,aAAa,aAAa"}