@webstudio-is/sdk-components-react 0.151.0 → 0.167.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/metas.js CHANGED
@@ -63,6 +63,113 @@ var propsMeta = {
63
63
  initialProps: ["clientOnly", "executeScriptOnCanvas"]
64
64
  };
65
65
 
66
+ // src/content-embed.ws.ts
67
+ import { ContentEmbedIcon } from "@webstudio-is/icons/svg";
68
+ import {
69
+ descendantComponent
70
+ } from "@webstudio-is/react-sdk";
71
+ var imagePlaceholder = `
72
+ <svg
73
+ width="140"
74
+ height="140"
75
+ viewBox="0 0 600 600"
76
+ fill="none"
77
+ xmlns="http://www.w3.org/2000/svg"
78
+ >
79
+ <rect width="600" height="600" fill="#CCCCCC" />
80
+ <path
81
+ fill-rule="evenodd"
82
+ clip-rule="evenodd"
83
+ d="M450 170H150C141.716 170 135 176.716 135 185V415C135 423.284 141.716 430 150 430H450C458.284 430 465 423.284 465 415V185C465 176.716 458.284 170 450 170ZM150 145C127.909 145 110 162.909 110 185V415C110 437.091 127.909 455 150 455H450C472.091 455 490 437.091 490 415V185C490 162.909 472.091 145 450 145H150Z"
84
+ fill="#A2A2A2"
85
+ />
86
+ <path
87
+ d="M237.135 235.012C237.135 255.723 220.345 272.512 199.635 272.512C178.924 272.512 162.135 255.723 162.135 235.012C162.135 214.301 178.924 197.512 199.635 197.512C220.345 197.512 237.135 214.301 237.135 235.012Z"
88
+ fill="#A2A2A2"
89
+ />
90
+ <path
91
+ d="M160 405V367.205L221.609 306.364L256.552 338.628L358.161 234L440 316.043V405H160Z"
92
+ fill="#A2A2A2"
93
+ />
94
+ </svg>
95
+ `.trim();
96
+ var htmlSample = `
97
+ <h1>Styling HTML with Content Embed</h1>
98
+ <p>Content Embed allows styling of HTML, which primarily comes from external data.</p>
99
+ <h2>How to Use Content Embed</h2>
100
+ <ul>
101
+ <li>Every element is shown in the Navigator.</li>
102
+ <li>Apply styles and Tokens to each element.</li>
103
+ <li>Adjustments to elements apply universally within this embed, ensuring consistency across your content.</li>
104
+ </ul>
105
+ <hr>
106
+ <h2>This sample text contains all the elements that can be styled.</h2>
107
+ <p>Any elements that were not used above are used below.</p>
108
+ <h3>Heading 3</h3>
109
+ <h4>Heading 4</h4>
110
+ <h5>Heading 5</h5>
111
+ <h6>Heading 6</h6>
112
+ <p><a href="#">Links</a> connect your content to relevant resources.</p>
113
+ <p><strong>Bold text</strong> makes your important points stand out.</p>
114
+ <p><em>Italic text</em> is great for emphasizing terms.</p>
115
+ <ol>
116
+ <li>First Step</li>
117
+ <li>Second Step</li>
118
+ </ol>
119
+ <img src="data:image/svg+xml;base64,${btoa(imagePlaceholder)}">
120
+ <blockquote>Capture attention with a powerful quote.</blockquote>
121
+ <p>Using <code>console.log("Hello World");</code> will log to the console.</p>
122
+ `.trimStart();
123
+ var descendant = (label2, tag) => {
124
+ return {
125
+ type: "instance",
126
+ component: descendantComponent,
127
+ label: label2,
128
+ props: [{ type: "string", name: "selector", value: ` ${tag}` }],
129
+ children: []
130
+ };
131
+ };
132
+ var meta4 = {
133
+ category: "data",
134
+ type: "control",
135
+ label: "Content Embed",
136
+ description: "Content Embed allows styling of HTML, which can be provided via the Code property statically or loaded dynamically from any Resource, for example, from a CMS.",
137
+ icon: ContentEmbedIcon,
138
+ order: 3,
139
+ template: [
140
+ {
141
+ type: "instance",
142
+ component: "HtmlEmbed",
143
+ label: "Content Embed",
144
+ props: [
145
+ {
146
+ name: "code",
147
+ type: "string",
148
+ value: htmlSample
149
+ }
150
+ ],
151
+ children: [
152
+ descendant("Paragraph", "p"),
153
+ descendant("Heading 1", "h1"),
154
+ descendant("Heading 2", "h2"),
155
+ descendant("Heading 3", "h3"),
156
+ descendant("Heading 4", "h4"),
157
+ descendant("Heading 5", "h5"),
158
+ descendant("Heading 6", "h6"),
159
+ descendant("Bold", ":where(strong, b)"),
160
+ descendant("Italic", ":where(em, i)"),
161
+ descendant("Link", "a"),
162
+ descendant("Image", "img"),
163
+ descendant("Blockquote", "blockquote"),
164
+ descendant("Code Text", "code"),
165
+ descendant("List", ":where(ul, ol)"),
166
+ descendant("List Item", "li"),
167
+ descendant("Separator", "hr")
168
+ ]
169
+ }
170
+ ]
171
+ };
172
+
66
173
  // src/body.ws.ts
67
174
  import { BodyIcon } from "@webstudio-is/icons/svg";
68
175
  import {
@@ -82,7 +189,7 @@ var presetStyle = {
82
189
  }
83
190
  ]
84
191
  };
85
- var meta4 = {
192
+ var meta5 = {
86
193
  type: "container",
87
194
  label: "Body",
88
195
  icon: BodyIcon,
@@ -119,7 +226,7 @@ var presetStyle2 = {
119
226
  nav,
120
227
  section
121
228
  };
122
- var meta5 = {
229
+ var meta6 = {
123
230
  category: "general",
124
231
  type: "container",
125
232
  label: "Box",
@@ -145,7 +252,7 @@ var presetStyle3 = {
145
252
  }
146
253
  ]
147
254
  };
148
- var meta6 = {
255
+ var meta7 = {
149
256
  category: "text",
150
257
  type: "container",
151
258
  label: "Text",
@@ -153,7 +260,20 @@ var meta6 = {
153
260
  icon: TextIcon,
154
261
  states: defaultStates3,
155
262
  presetStyle: presetStyle3,
156
- order: 0
263
+ order: 0,
264
+ template: [
265
+ {
266
+ type: "instance",
267
+ component: "Text",
268
+ children: [
269
+ {
270
+ type: "text",
271
+ value: "The text you can edit",
272
+ placeholder: true
273
+ }
274
+ ]
275
+ }
276
+ ]
157
277
  };
158
278
 
159
279
  // src/heading.ws.ts
@@ -170,7 +290,7 @@ var presetStyle4 = {
170
290
  h5,
171
291
  h6
172
292
  };
173
- var meta7 = {
293
+ var meta8 = {
174
294
  category: "text",
175
295
  type: "container",
176
296
  label: "Heading",
@@ -179,7 +299,20 @@ var meta7 = {
179
299
  invalidAncestors: ["Heading"],
180
300
  states: defaultStates4,
181
301
  presetStyle: presetStyle4,
182
- order: 1
302
+ order: 1,
303
+ template: [
304
+ {
305
+ type: "instance",
306
+ component: "Heading",
307
+ children: [
308
+ {
309
+ type: "text",
310
+ value: "Heading text you can edit",
311
+ placeholder: true
312
+ }
313
+ ]
314
+ }
315
+ ]
183
316
  };
184
317
 
185
318
  // src/paragraph.ws.ts
@@ -191,7 +324,7 @@ import { p } from "@webstudio-is/react-sdk/css-normalize";
191
324
  var presetStyle5 = {
192
325
  p
193
326
  };
194
- var meta8 = {
327
+ var meta9 = {
195
328
  category: "text",
196
329
  type: "container",
197
330
  label: "Paragraph",
@@ -200,7 +333,20 @@ var meta8 = {
200
333
  invalidAncestors: ["Paragraph"],
201
334
  states: defaultStates5,
202
335
  presetStyle: presetStyle5,
203
- order: 2
336
+ order: 2,
337
+ template: [
338
+ {
339
+ type: "instance",
340
+ component: "Paragraph",
341
+ children: [
342
+ {
343
+ type: "text",
344
+ value: "Paragraph text you can edit",
345
+ placeholder: true
346
+ }
347
+ ]
348
+ }
349
+ ]
204
350
  };
205
351
 
206
352
  // src/link.ws.ts
@@ -780,7 +926,7 @@ var presetStyle6 = {
780
926
  }
781
927
  ]
782
928
  };
783
- var meta9 = {
929
+ var meta10 = {
784
930
  category: "general",
785
931
  type: "container",
786
932
  label: "Link",
@@ -800,6 +946,19 @@ var meta9 = {
800
946
  selector: "[aria-current=page]",
801
947
  label: "Current page"
802
948
  }
949
+ ],
950
+ template: [
951
+ {
952
+ type: "instance",
953
+ component: "Link",
954
+ children: [
955
+ {
956
+ type: "text",
957
+ value: "Link text you can edit",
958
+ placeholder: true
959
+ }
960
+ ]
961
+ }
803
962
  ]
804
963
  };
805
964
  var propsMeta2 = {
@@ -815,8 +974,8 @@ var propsMeta2 = {
815
974
  };
816
975
 
817
976
  // src/rich-text-link.ws.ts
818
- var meta10 = {
819
- ...meta9,
977
+ var meta11 = {
978
+ ...meta10,
820
979
  category: "hidden",
821
980
  type: "rich-text-child",
822
981
  template: []
@@ -831,7 +990,7 @@ import { span } from "@webstudio-is/react-sdk/css-normalize";
831
990
  var presetStyle7 = {
832
991
  span
833
992
  };
834
- var meta11 = {
993
+ var meta12 = {
835
994
  type: "rich-text-child",
836
995
  label: "Text",
837
996
  icon: PaintBrushIcon,
@@ -848,7 +1007,7 @@ import { b } from "@webstudio-is/react-sdk/css-normalize";
848
1007
  var presetStyle8 = {
849
1008
  b
850
1009
  };
851
- var meta12 = {
1010
+ var meta13 = {
852
1011
  type: "rich-text-child",
853
1012
  label: "Bold Text",
854
1013
  icon: BoldIcon,
@@ -871,7 +1030,7 @@ var presetStyle9 = {
871
1030
  }
872
1031
  ]
873
1032
  };
874
- var meta13 = {
1033
+ var meta14 = {
875
1034
  type: "rich-text-child",
876
1035
  label: "Italic Text",
877
1036
  icon: TextItalicIcon,
@@ -888,7 +1047,7 @@ import { sup } from "@webstudio-is/react-sdk/css-normalize";
888
1047
  var presetStyle10 = {
889
1048
  sup
890
1049
  };
891
- var meta14 = {
1050
+ var meta15 = {
892
1051
  type: "rich-text-child",
893
1052
  label: "Superscript Text",
894
1053
  icon: SuperscriptIcon,
@@ -905,7 +1064,7 @@ import { sub } from "@webstudio-is/react-sdk/css-normalize";
905
1064
  var presetStyle11 = {
906
1065
  sub
907
1066
  };
908
- var meta15 = {
1067
+ var meta16 = {
909
1068
  type: "rich-text-child",
910
1069
  label: "Subscript Text",
911
1070
  icon: SubscriptIcon,
@@ -922,7 +1081,7 @@ import { button } from "@webstudio-is/react-sdk/css-normalize";
922
1081
  var presetStyle12 = {
923
1082
  button
924
1083
  };
925
- var meta16 = {
1084
+ var meta17 = {
926
1085
  category: "forms",
927
1086
  type: "container",
928
1087
  invalidAncestors: ["Button", "Link"],
@@ -935,7 +1094,20 @@ var meta16 = {
935
1094
  { selector: ":disabled", label: "Disabled" },
936
1095
  { selector: ":enabled", label: "Enabled" }
937
1096
  ],
938
- order: 2
1097
+ order: 2,
1098
+ template: [
1099
+ {
1100
+ type: "instance",
1101
+ component: "Button",
1102
+ children: [
1103
+ {
1104
+ type: "text",
1105
+ value: "Button text you can edit",
1106
+ placeholder: true
1107
+ }
1108
+ ]
1109
+ }
1110
+ ]
939
1111
  };
940
1112
 
941
1113
  // src/input.ws.ts
@@ -953,7 +1125,7 @@ var presetStyle13 = {
953
1125
  }
954
1126
  ]
955
1127
  };
956
- var meta17 = {
1128
+ var meta18 = {
957
1129
  category: "forms",
958
1130
  invalidAncestors: ["Button", "Link"],
959
1131
  type: "control",
@@ -989,7 +1161,7 @@ var presetStyle14 = {
989
1161
  { property: "minHeight", value: { type: "unit", unit: "px", value: 20 } }
990
1162
  ]
991
1163
  };
992
- var meta18 = {
1164
+ var meta19 = {
993
1165
  category: "forms",
994
1166
  type: "container",
995
1167
  invalidAncestors: ["Form", "Button", "Link"],
@@ -1613,7 +1785,7 @@ var presetStyle15 = {
1613
1785
  }
1614
1786
  ]
1615
1787
  };
1616
- var meta19 = {
1788
+ var meta20 = {
1617
1789
  category: "media",
1618
1790
  type: "embed",
1619
1791
  label: "Image",
@@ -1692,7 +1864,7 @@ var presetStyle16 = {
1692
1864
  }
1693
1865
  ]
1694
1866
  };
1695
- var meta20 = {
1867
+ var meta21 = {
1696
1868
  category: "text",
1697
1869
  type: "container",
1698
1870
  label: "Blockquote",
@@ -1700,7 +1872,20 @@ var meta20 = {
1700
1872
  icon: BlockquoteIcon,
1701
1873
  states: defaultStates16,
1702
1874
  presetStyle: presetStyle16,
1703
- order: 3
1875
+ order: 3,
1876
+ template: [
1877
+ {
1878
+ type: "instance",
1879
+ component: "Blockquote",
1880
+ children: [
1881
+ {
1882
+ type: "text",
1883
+ value: "Blockquote text you can edit",
1884
+ placeholder: true
1885
+ }
1886
+ ]
1887
+ }
1888
+ ]
1704
1889
  };
1705
1890
 
1706
1891
  // src/list.ws.ts
@@ -1741,7 +1926,7 @@ var presetStyle17 = {
1741
1926
  }
1742
1927
  ]
1743
1928
  };
1744
- var meta21 = {
1929
+ var meta22 = {
1745
1930
  category: "general",
1746
1931
  type: "container",
1747
1932
  label: "List",
@@ -1758,17 +1943,35 @@ var meta21 = {
1758
1943
  {
1759
1944
  type: "instance",
1760
1945
  component: "ListItem",
1761
- children: []
1946
+ children: [
1947
+ {
1948
+ type: "text",
1949
+ value: "List Item text you can edit",
1950
+ placeholder: true
1951
+ }
1952
+ ]
1762
1953
  },
1763
1954
  {
1764
1955
  type: "instance",
1765
1956
  component: "ListItem",
1766
- children: []
1957
+ children: [
1958
+ {
1959
+ type: "text",
1960
+ value: "List Item text you can edit",
1961
+ placeholder: true
1962
+ }
1963
+ ]
1767
1964
  },
1768
1965
  {
1769
1966
  type: "instance",
1770
1967
  component: "ListItem",
1771
- children: []
1968
+ children: [
1969
+ {
1970
+ type: "text",
1971
+ value: "List Item text you can edit",
1972
+ placeholder: true
1973
+ }
1974
+ ]
1772
1975
  }
1773
1976
  ]
1774
1977
  }
@@ -1784,7 +1987,7 @@ import { li } from "@webstudio-is/react-sdk/css-normalize";
1784
1987
  var presetStyle18 = {
1785
1988
  li
1786
1989
  };
1787
- var meta22 = {
1990
+ var meta23 = {
1788
1991
  category: "general",
1789
1992
  type: "container",
1790
1993
  requiredAncestors: ["List"],
@@ -1793,7 +1996,20 @@ var meta22 = {
1793
1996
  icon: ListItemIcon,
1794
1997
  states: defaultStates18,
1795
1998
  presetStyle: presetStyle18,
1796
- order: 4
1999
+ order: 4,
2000
+ template: [
2001
+ {
2002
+ type: "instance",
2003
+ component: "ListItem",
2004
+ children: [
2005
+ {
2006
+ type: "text",
2007
+ value: "List Item text you can edit",
2008
+ placeholder: true
2009
+ }
2010
+ ]
2011
+ }
2012
+ ]
1797
2013
  };
1798
2014
 
1799
2015
  // src/separator.ws.ts
@@ -1831,7 +2047,7 @@ var presetStyle19 = {
1831
2047
  }
1832
2048
  ]
1833
2049
  };
1834
- var meta23 = {
2050
+ var meta24 = {
1835
2051
  category: "general",
1836
2052
  type: "embed",
1837
2053
  label: "Separator",
@@ -2378,7 +2594,7 @@ var presetStyle20 = {
2378
2594
  }
2379
2595
  ]
2380
2596
  };
2381
- var meta24 = {
2597
+ var meta25 = {
2382
2598
  category: "general",
2383
2599
  type: "embed",
2384
2600
  label: "Code Text",
@@ -2929,7 +3145,7 @@ var presetStyle21 = {
2929
3145
  { property: "display", value: { type: "keyword", value: "block" } }
2930
3146
  ]
2931
3147
  };
2932
- var meta25 = {
3148
+ var meta26 = {
2933
3149
  category: "forms",
2934
3150
  invalidAncestors: ["Button", "Label"],
2935
3151
  type: "container",
@@ -2942,7 +3158,7 @@ var meta25 = {
2942
3158
  {
2943
3159
  type: "instance",
2944
3160
  component: "Label",
2945
- children: [{ type: "text", value: "Form Label" }]
3161
+ children: [{ type: "text", value: "Form Label", placeholder: true }]
2946
3162
  }
2947
3163
  ]
2948
3164
  };
@@ -2974,7 +3190,7 @@ var presetStyle22 = {
2974
3190
  }
2975
3191
  ]
2976
3192
  };
2977
- var meta26 = {
3193
+ var meta27 = {
2978
3194
  category: "forms",
2979
3195
  type: "control",
2980
3196
  label: "Text Area",
@@ -3013,7 +3229,7 @@ var presetStyle23 = {
3013
3229
  }
3014
3230
  ]
3015
3231
  };
3016
- var meta27 = {
3232
+ var meta28 = {
3017
3233
  category: "forms",
3018
3234
  invalidAncestors: ["Button", "Link"],
3019
3235
  type: "control",
@@ -3045,7 +3261,7 @@ var meta27 = {
3045
3261
  component: "Text",
3046
3262
  label: "Radio Label",
3047
3263
  props: [{ type: "string", name: "tag", value: "span" }],
3048
- children: [{ type: "text", value: "Radio" }]
3264
+ children: [{ type: "text", value: "Radio", placeholder: true }]
3049
3265
  }
3050
3266
  ]
3051
3267
  }
@@ -3067,7 +3283,7 @@ var presetStyle24 = {
3067
3283
  }
3068
3284
  ]
3069
3285
  };
3070
- var meta28 = {
3286
+ var meta29 = {
3071
3287
  category: "forms",
3072
3288
  invalidAncestors: ["Button", "Link"],
3073
3289
  type: "control",
@@ -3098,7 +3314,7 @@ var meta28 = {
3098
3314
  component: "Text",
3099
3315
  label: "Checkbox Label",
3100
3316
  props: [{ type: "string", name: "tag", value: "span" }],
3101
- children: [{ type: "text", value: "Checkbox" }]
3317
+ children: [{ type: "text", value: "Checkbox", placeholder: true }]
3102
3318
  }
3103
3319
  ]
3104
3320
  }
@@ -3114,7 +3330,7 @@ import { div as div3 } from "@webstudio-is/react-sdk/css-normalize";
3114
3330
  var presetStyle25 = {
3115
3331
  div: div3
3116
3332
  };
3117
- var meta29 = {
3333
+ var meta30 = {
3118
3334
  category: "media",
3119
3335
  type: "container",
3120
3336
  label: "Vimeo",
@@ -3996,8 +4212,8 @@ var props6 = {
3996
4212
  };
3997
4213
 
3998
4214
  // src/vimeo-preview-image.ws.ts
3999
- var meta30 = {
4000
- ...meta19,
4215
+ var meta31 = {
4216
+ ...meta20,
4001
4217
  category: "hidden",
4002
4218
  label: "Preview Image",
4003
4219
  requiredAncestors: ["Vimeo"]
@@ -4016,7 +4232,7 @@ import { button as button2 } from "@webstudio-is/react-sdk/css-normalize";
4016
4232
  var presetStyle26 = {
4017
4233
  button: button2
4018
4234
  };
4019
- var meta31 = {
4235
+ var meta32 = {
4020
4236
  category: "hidden",
4021
4237
  type: "container",
4022
4238
  invalidAncestors: ["Button"],
@@ -4036,7 +4252,7 @@ import { BoxIcon as BoxIcon2 } from "@webstudio-is/icons/svg";
4036
4252
  var presetStyle27 = {
4037
4253
  div: div4
4038
4254
  };
4039
- var meta32 = {
4255
+ var meta33 = {
4040
4256
  type: "container",
4041
4257
  icon: BoxIcon2,
4042
4258
  states: defaultStates27,
@@ -4049,7 +4265,7 @@ var meta32 = {
4049
4265
  // src/xml-node.ws.ts
4050
4266
  import { XmlIcon } from "@webstudio-is/icons/svg";
4051
4267
  import "@webstudio-is/react-sdk";
4052
- var meta33 = {
4268
+ var meta34 = {
4053
4269
  category: "xml",
4054
4270
  order: 6,
4055
4271
  type: "container",
@@ -4057,38 +4273,59 @@ var meta33 = {
4057
4273
  stylable: false,
4058
4274
  description: "Xml Node"
4059
4275
  };
4276
+
4277
+ // src/time.ws.ts
4278
+ import { CalendarIcon } from "@webstudio-is/icons/svg";
4279
+ import {
4280
+ defaultStates as defaultStates28
4281
+ } from "@webstudio-is/react-sdk";
4282
+ import { time } from "@webstudio-is/react-sdk/css-normalize";
4283
+ var presetStyle28 = {
4284
+ time
4285
+ };
4286
+ var meta35 = {
4287
+ category: "data",
4288
+ type: "container",
4289
+ description: "Converts machine-readable date and time to a human-readable format.",
4290
+ icon: CalendarIcon,
4291
+ states: defaultStates28,
4292
+ presetStyle: presetStyle28,
4293
+ order: 4
4294
+ };
4060
4295
  export {
4061
- meta20 as Blockquote,
4062
- meta4 as Body,
4063
- meta12 as Bold,
4064
- meta5 as Box,
4065
- meta16 as Button,
4066
- meta28 as Checkbox,
4067
- meta24 as CodeText,
4068
- meta18 as Form,
4296
+ meta21 as Blockquote,
4297
+ meta5 as Body,
4298
+ meta13 as Bold,
4299
+ meta6 as Box,
4300
+ meta17 as Button,
4301
+ meta29 as Checkbox,
4302
+ meta25 as CodeText,
4303
+ meta4 as ContentEmbed,
4304
+ meta19 as Form,
4069
4305
  meta2 as Fragment,
4070
- meta7 as Heading,
4306
+ meta8 as Heading,
4071
4307
  meta3 as HtmlEmbed,
4072
- meta19 as Image,
4073
- meta17 as Input,
4074
- meta13 as Italic,
4075
- meta25 as Label,
4076
- meta9 as Link,
4077
- meta21 as List,
4078
- meta22 as ListItem,
4079
- meta8 as Paragraph,
4080
- meta27 as RadioButton,
4081
- meta10 as RichTextLink,
4082
- meta23 as Separator,
4308
+ meta20 as Image,
4309
+ meta18 as Input,
4310
+ meta14 as Italic,
4311
+ meta26 as Label,
4312
+ meta10 as Link,
4313
+ meta22 as List,
4314
+ meta23 as ListItem,
4315
+ meta9 as Paragraph,
4316
+ meta28 as RadioButton,
4317
+ meta11 as RichTextLink,
4318
+ meta24 as Separator,
4083
4319
  meta as Slot,
4084
- meta11 as Span,
4085
- meta15 as Subscript,
4086
- meta14 as Superscript,
4087
- meta6 as Text,
4088
- meta26 as Textarea,
4089
- meta29 as Vimeo,
4090
- meta31 as VimeoPlayButton,
4091
- meta30 as VimeoPreviewImage,
4092
- meta32 as VimeoSpinner,
4093
- meta33 as XmlNode
4320
+ meta12 as Span,
4321
+ meta16 as Subscript,
4322
+ meta15 as Superscript,
4323
+ meta7 as Text,
4324
+ meta27 as Textarea,
4325
+ meta35 as Time,
4326
+ meta30 as Vimeo,
4327
+ meta32 as VimeoPlayButton,
4328
+ meta31 as VimeoPreviewImage,
4329
+ meta33 as VimeoSpinner,
4330
+ meta34 as XmlNode
4094
4331
  };