@webstudio-is/sdk-components-react 0.189.0 → 0.191.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.
Files changed (126) hide show
  1. package/lib/__generated__/blockquote.props.js +514 -0
  2. package/lib/__generated__/body.props.js +508 -0
  3. package/lib/__generated__/bold.props.js +508 -0
  4. package/lib/__generated__/box.props.js +527 -0
  5. package/lib/__generated__/button.props.js +570 -0
  6. package/lib/__generated__/checkbox.props.js +672 -0
  7. package/lib/__generated__/code-text.props.js +509 -0
  8. package/lib/__generated__/form.props.js +556 -0
  9. package/lib/__generated__/heading.props.js +516 -0
  10. package/lib/__generated__/html-embed.props.js +13 -0
  11. package/lib/__generated__/image.props.js +592 -0
  12. package/lib/__generated__/input.props.js +696 -0
  13. package/lib/__generated__/italic.props.js +508 -0
  14. package/lib/__generated__/label.props.js +520 -0
  15. package/lib/__generated__/link.props.js +568 -0
  16. package/lib/__generated__/list-item.props.js +514 -0
  17. package/lib/__generated__/list.props.js +534 -0
  18. package/lib/__generated__/markdown-embed.props.js +7 -0
  19. package/lib/__generated__/option.props.js +532 -0
  20. package/lib/__generated__/paragraph.props.js +508 -0
  21. package/lib/__generated__/radio-button.props.js +672 -0
  22. package/lib/__generated__/select.props.js +556 -0
  23. package/lib/__generated__/separator.props.js +508 -0
  24. package/lib/__generated__/span.props.js +508 -0
  25. package/lib/__generated__/subscript.props.js +508 -0
  26. package/lib/__generated__/superscript.props.js +508 -0
  27. package/lib/__generated__/text.props.js +516 -0
  28. package/lib/__generated__/textarea.props.js +587 -0
  29. package/lib/__generated__/time.props.js +312 -0
  30. package/lib/__generated__/vimeo-play-button.props.js +569 -0
  31. package/lib/__generated__/vimeo-preview-image.props.js +586 -0
  32. package/lib/__generated__/vimeo-spinner.props.js +508 -0
  33. package/lib/__generated__/vimeo.props.js +674 -0
  34. package/lib/__generated__/xml-node.props.js +7 -0
  35. package/lib/__generated__/xml-time.props.js +18 -0
  36. package/lib/blockquote.js +9 -0
  37. package/lib/blockquote.ws.js +79 -0
  38. package/lib/body.js +7 -0
  39. package/lib/body.ws.js +30 -0
  40. package/lib/bold.js +7 -0
  41. package/lib/bold.ws.js +20 -0
  42. package/lib/box.js +9 -0
  43. package/lib/box.ws.js +31 -0
  44. package/lib/button.js +9 -0
  45. package/lib/button.ws.js +44 -0
  46. package/lib/checkbox.js +15 -0
  47. package/lib/checkbox.ws.js +59 -0
  48. package/lib/code-text.js +10 -0
  49. package/lib/code-text.ws.js +60 -0
  50. package/lib/components.js +77 -1357
  51. package/lib/content-embed.ws.js +77 -0
  52. package/lib/form.js +7 -0
  53. package/lib/form.ws.js +31 -0
  54. package/lib/fragment.js +7 -0
  55. package/lib/fragment.ws.js +11 -0
  56. package/lib/heading.js +9 -0
  57. package/lib/heading.ws.js +45 -0
  58. package/lib/home_wsKvRSqvkajPPBeycZ-C8.svg +3 -0
  59. package/lib/hooks.js +5 -0
  60. package/lib/html-embed-patchers.js +29 -0
  61. package/lib/html-embed.js +112 -0
  62. package/lib/html-embed.ws.js +46 -0
  63. package/lib/image.js +40 -0
  64. package/lib/image.ws.js +65 -0
  65. package/lib/input.js +17 -0
  66. package/lib/input.ws.js +55 -0
  67. package/lib/italic.js +7 -0
  68. package/lib/italic.ws.js +26 -0
  69. package/lib/label.js +7 -0
  70. package/lib/label.ws.js +43 -0
  71. package/lib/link.js +15 -0
  72. package/lib/link.ws.js +68 -0
  73. package/lib/list-item.js +9 -0
  74. package/lib/list-item.ws.js +40 -0
  75. package/lib/list.js +6 -0
  76. package/lib/list.ws.js +92 -0
  77. package/lib/markdown-embed.js +14 -0
  78. package/lib/markdown-embed.ws.js +111 -0
  79. package/lib/metas.js +79 -4581
  80. package/lib/option.js +7 -0
  81. package/lib/option.ws.js +47 -0
  82. package/lib/paragraph.js +7 -0
  83. package/lib/paragraph.ws.js +40 -0
  84. package/lib/props.js +77 -17919
  85. package/lib/radio-button.js +15 -0
  86. package/lib/radio-button.ws.js +61 -0
  87. package/lib/rich-text-link.js +8 -0
  88. package/lib/rich-text-link.ws.js +11 -0
  89. package/lib/select.js +19 -0
  90. package/lib/select.ws.js +97 -0
  91. package/lib/separator.js +9 -0
  92. package/lib/separator.ws.js +48 -0
  93. package/lib/slot.js +14 -0
  94. package/lib/slot.ws.js +15 -0
  95. package/lib/span.js +7 -0
  96. package/lib/span.ws.js +20 -0
  97. package/lib/subscript.js +7 -0
  98. package/lib/subscript.ws.js +20 -0
  99. package/lib/superscript.js +7 -0
  100. package/lib/superscript.ws.js +20 -0
  101. package/lib/text.js +10 -0
  102. package/lib/text.ws.js +41 -0
  103. package/lib/textarea.js +7 -0
  104. package/lib/textarea.ws.js +56 -0
  105. package/lib/time.js +319 -0
  106. package/lib/time.ws.js +22 -0
  107. package/lib/types/__generated__/xml-time.props.d.ts +2 -0
  108. package/lib/types/components.d.ts +1 -0
  109. package/lib/types/metas.d.ts +1 -0
  110. package/lib/types/props.d.ts +1 -0
  111. package/lib/types/vimeo-preview-image.d.ts +94 -94
  112. package/lib/types/xml-time.d.ts +6 -0
  113. package/lib/types/xml-time.ws.d.ts +3 -0
  114. package/lib/vimeo-play-button.js +15 -0
  115. package/lib/vimeo-play-button.ws.js +33 -0
  116. package/lib/vimeo-preview-image.js +19 -0
  117. package/lib/vimeo-preview-image.ws.js +20 -0
  118. package/lib/vimeo-spinner.js +13 -0
  119. package/lib/vimeo-spinner.ws.js +26 -0
  120. package/lib/vimeo.js +215 -0
  121. package/lib/vimeo.ws.js +330 -0
  122. package/lib/xml-node.js +44 -0
  123. package/lib/xml-node.ws.js +18 -0
  124. package/lib/xml-time.js +25 -0
  125. package/lib/xml-time.ws.js +18 -0
  126. package/package.json +8 -11
@@ -0,0 +1,15 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import { forwardRef as i } from "react";
3
+ const a = i(({ children: n, checked: o, defaultChecked: t, ...r }, d) => /* @__PURE__ */ e(
4
+ "input",
5
+ {
6
+ ...r,
7
+ defaultChecked: o ?? t,
8
+ type: "radio",
9
+ ref: d
10
+ }
11
+ ));
12
+ a.displayName = "RadioButton";
13
+ export {
14
+ a as RadioButton
15
+ };
@@ -0,0 +1,61 @@
1
+ import { RadioCheckedIcon as e } from "@webstudio-is/icons/svg";
2
+ import { defaultStates as t } from "@webstudio-is/react-sdk";
3
+ import { radio as o } from "@webstudio-is/sdk/normalize.css";
4
+ import { props as i } from "./__generated__/radio-button.props.js";
5
+ const a = {
6
+ input: [
7
+ ...o,
8
+ {
9
+ property: "marginRight",
10
+ value: { type: "unit", unit: "em", value: 0.5 }
11
+ }
12
+ ]
13
+ }, s = {
14
+ category: "forms",
15
+ invalidAncestors: ["Button", "Link"],
16
+ constraints: {
17
+ relation: "ancestor",
18
+ component: { $nin: ["Button", "Link"] }
19
+ },
20
+ type: "control",
21
+ label: "Radio",
22
+ description: "Use within a form to allow your users to select a single option from a set of mutually exclusive choices. Group multiple radios by matching their “Name” properties.",
23
+ icon: e,
24
+ presetStyle: a,
25
+ order: 5,
26
+ states: [
27
+ ...t,
28
+ { selector: ":checked", label: "Checked" },
29
+ { selector: ":required", label: "Required" },
30
+ { selector: ":optional", label: "Optional" }
31
+ // Additional states will go into submenu
32
+ //{ selector: ":disabled", label: "Disabled" },
33
+ //{ selector: ":enabled", label: "Enabled" },
34
+ //{ selector: ":read-only", label: "Read Only" },
35
+ //{ selector: ":read-write", label: "Read Write" },
36
+ ],
37
+ template: [
38
+ {
39
+ type: "instance",
40
+ component: "Label",
41
+ label: "Radio Field",
42
+ children: [
43
+ { type: "instance", component: "RadioButton", props: [], children: [] },
44
+ {
45
+ type: "instance",
46
+ component: "Text",
47
+ label: "Radio Label",
48
+ props: [{ type: "string", name: "tag", value: "span" }],
49
+ children: [{ type: "text", value: "Radio", placeholder: !0 }]
50
+ }
51
+ ]
52
+ }
53
+ ]
54
+ }, c = {
55
+ props: i,
56
+ initialProps: ["id", "className", "name", "value", "required", "checked"]
57
+ };
58
+ export {
59
+ s as meta,
60
+ c as propsMeta
61
+ };
@@ -0,0 +1,8 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import { forwardRef as m } from "react";
3
+ import { Link as t } from "./link.js";
4
+ const e = m((i, o) => /* @__PURE__ */ r(t, { ...i, ref: o }));
5
+ e.displayName = "RichTextLink";
6
+ export {
7
+ e as RichTextLink
8
+ };
@@ -0,0 +1,11 @@
1
+ import { meta as t, propsMeta as e } from "./link.ws.js";
2
+ const p = {
3
+ ...t,
4
+ category: "hidden",
5
+ type: "rich-text-child",
6
+ template: []
7
+ }, o = e;
8
+ export {
9
+ p as meta,
10
+ o as propsMeta
11
+ };
package/lib/select.js ADDED
@@ -0,0 +1,19 @@
1
+ import { jsx as c } from "react/jsx-runtime";
2
+ import "@webstudio-is/react-sdk/runtime";
3
+ import { forwardRef as r } from "react";
4
+ const s = r(({ value: o, defaultValue: t, ...e }, n) => /* @__PURE__ */ c("select", { ...e, defaultValue: o ?? t, ref: n }));
5
+ s.displayName = "Select";
6
+ const l = {
7
+ onNavigatorUnselect: (o, t) => {
8
+ for (const e of t.instancePath)
9
+ e.component === "Option" && o.setMemoryProp(e, "selected", void 0);
10
+ },
11
+ onNavigatorSelect: (o, t) => {
12
+ for (const e of t.instancePath)
13
+ e.component === "Option" && o.setMemoryProp(e, "selected", !0);
14
+ }
15
+ };
16
+ export {
17
+ s as Select,
18
+ l as hooksSelect
19
+ };
@@ -0,0 +1,97 @@
1
+ import { SelectIcon as e } from "@webstudio-is/icons/svg";
2
+ import { defaultStates as t } from "@webstudio-is/react-sdk";
3
+ import { select as n } from "@webstudio-is/sdk/normalize.css";
4
+ import { props as l } from "./__generated__/select.props.js";
5
+ const o = {
6
+ select: [
7
+ ...n,
8
+ {
9
+ property: "display",
10
+ value: { type: "keyword", value: "block" }
11
+ }
12
+ ]
13
+ }, s = {
14
+ category: "forms",
15
+ invalidAncestors: ["Button", "Link"],
16
+ constraints: {
17
+ relation: "ancestor",
18
+ component: { $nin: ["Button", "Link"] }
19
+ },
20
+ type: "container",
21
+ description: "A drop-down menu for users to select a single option from a predefined list.",
22
+ icon: e,
23
+ presetStyle: o,
24
+ order: 4,
25
+ states: [
26
+ ...t,
27
+ { selector: "::placeholder", label: "Placeholder" },
28
+ { selector: ":valid", label: "Valid" },
29
+ { selector: ":invalid", label: "Invalid" },
30
+ { selector: ":required", label: "Required" },
31
+ { selector: ":optional", label: "Optional" }
32
+ ],
33
+ template: [
34
+ {
35
+ type: "instance",
36
+ component: "Select",
37
+ label: "Select",
38
+ children: [
39
+ {
40
+ type: "instance",
41
+ component: "Option",
42
+ label: "Option",
43
+ props: [
44
+ { type: "string", name: "label", value: "Please choose an option" },
45
+ { type: "string", name: "value", value: "" }
46
+ ],
47
+ children: []
48
+ },
49
+ {
50
+ type: "instance",
51
+ component: "Option",
52
+ label: "Option",
53
+ props: [
54
+ { type: "string", name: "label", value: "Option A" },
55
+ { type: "string", name: "value", value: "a" }
56
+ ],
57
+ children: []
58
+ },
59
+ {
60
+ type: "instance",
61
+ component: "Option",
62
+ label: "Option",
63
+ props: [
64
+ { type: "string", name: "label", value: "Option B" },
65
+ { type: "string", name: "value", value: "b" }
66
+ ],
67
+ children: []
68
+ },
69
+ {
70
+ type: "instance",
71
+ component: "Option",
72
+ label: "Option",
73
+ props: [
74
+ { type: "string", name: "label", value: "Option C" },
75
+ { type: "string", name: "value", value: "c" }
76
+ ],
77
+ children: []
78
+ }
79
+ ]
80
+ }
81
+ ]
82
+ }, c = {
83
+ props: l,
84
+ initialProps: [
85
+ "id",
86
+ "className",
87
+ "name",
88
+ "value",
89
+ "multiple",
90
+ "required",
91
+ "autoFocus"
92
+ ]
93
+ };
94
+ export {
95
+ s as meta,
96
+ c as propsMeta
97
+ };
@@ -0,0 +1,9 @@
1
+ import { forwardRef as a, createElement as t } from "react";
2
+ const o = "hr", p = a(
3
+ (r, e) => t(o, { ...r, ref: e })
4
+ );
5
+ p.displayName = "Separator";
6
+ export {
7
+ p as Separator,
8
+ o as defaultTag
9
+ };
@@ -0,0 +1,48 @@
1
+ import { DashIcon as e } from "@webstudio-is/icons/svg";
2
+ import { defaultStates as o } from "@webstudio-is/react-sdk";
3
+ import { hr as r } from "@webstudio-is/sdk/normalize.css";
4
+ import { props as t } from "./__generated__/separator.props.js";
5
+ const p = {
6
+ hr: [
7
+ ...r,
8
+ {
9
+ property: "height",
10
+ value: { type: "keyword", value: "1px" }
11
+ },
12
+ {
13
+ property: "backgroundColor",
14
+ value: { type: "keyword", value: "gray" }
15
+ },
16
+ {
17
+ property: "borderTopStyle",
18
+ value: { type: "keyword", value: "none" }
19
+ },
20
+ {
21
+ property: "borderRightStyle",
22
+ value: { type: "keyword", value: "none" }
23
+ },
24
+ {
25
+ property: "borderLeftStyle",
26
+ value: { type: "keyword", value: "none" }
27
+ },
28
+ {
29
+ property: "borderBottomStyle",
30
+ value: { type: "keyword", value: "none" }
31
+ }
32
+ ]
33
+ }, n = {
34
+ category: "general",
35
+ type: "embed",
36
+ description: "Used to visually divide sections of content, helping to improve readability and organization within a webpage.",
37
+ icon: e,
38
+ states: o,
39
+ presetStyle: p,
40
+ order: 5
41
+ }, d = {
42
+ props: t,
43
+ initialProps: ["id", "className"]
44
+ };
45
+ export {
46
+ n as meta,
47
+ d as propsMeta
48
+ };
package/lib/slot.js ADDED
@@ -0,0 +1,14 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import { forwardRef as e } from "react";
3
+ const l = e((o, t) => /* @__PURE__ */ r(
4
+ "div",
5
+ {
6
+ ...o,
7
+ ref: t,
8
+ style: { display: o.children ? "contents" : "block" }
9
+ }
10
+ ));
11
+ l.displayName = "Slot";
12
+ export {
13
+ l as Slot
14
+ };
package/lib/slot.ws.js ADDED
@@ -0,0 +1,15 @@
1
+ import { SlotComponentIcon as t } from "@webstudio-is/icons/svg";
2
+ const o = {
3
+ category: "general",
4
+ type: "container",
5
+ description: "Slot is a container for content that you want to reference across the project. Changes made to a Slot's children will be reflected in all other instances of that Slot.",
6
+ icon: t,
7
+ stylable: !1,
8
+ order: 6
9
+ }, n = {
10
+ props: {}
11
+ };
12
+ export {
13
+ o as meta,
14
+ n as propsMeta
15
+ };
package/lib/span.js ADDED
@@ -0,0 +1,7 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import { forwardRef as a } from "react";
3
+ const m = a((o, p) => /* @__PURE__ */ r("span", { ...o, ref: p }));
4
+ m.displayName = "Span";
5
+ export {
6
+ m as Span
7
+ };
package/lib/span.ws.js ADDED
@@ -0,0 +1,20 @@
1
+ import { PaintBrushIcon as t } from "@webstudio-is/icons/svg";
2
+ import { defaultStates as o } from "@webstudio-is/react-sdk";
3
+ import { span as r } from "@webstudio-is/sdk/normalize.css";
4
+ import { props as e } from "./__generated__/span.props.js";
5
+ const s = {
6
+ span: r
7
+ }, c = {
8
+ type: "rich-text-child",
9
+ label: "Text",
10
+ icon: t,
11
+ states: o,
12
+ presetStyle: s
13
+ }, n = {
14
+ props: e,
15
+ initialProps: ["id", "className"]
16
+ };
17
+ export {
18
+ c as meta,
19
+ n as propsMeta
20
+ };
@@ -0,0 +1,7 @@
1
+ import { jsx as p } from "react/jsx-runtime";
2
+ import { forwardRef as s } from "react";
3
+ const t = s((r, o) => /* @__PURE__ */ p("sub", { ...r, ref: o }));
4
+ t.displayName = "Subscript";
5
+ export {
6
+ t as Subscript
7
+ };
@@ -0,0 +1,20 @@
1
+ import { SubscriptIcon as t } from "@webstudio-is/icons/svg";
2
+ import { defaultStates as o } from "@webstudio-is/react-sdk";
3
+ import { sub as r } from "@webstudio-is/sdk/normalize.css";
4
+ import { props as s } from "./__generated__/subscript.props.js";
5
+ const e = {
6
+ sub: r
7
+ }, a = {
8
+ type: "rich-text-child",
9
+ label: "Subscript Text",
10
+ icon: t,
11
+ states: o,
12
+ presetStyle: e
13
+ }, l = {
14
+ props: s,
15
+ initialProps: ["id", "className"]
16
+ };
17
+ export {
18
+ a as meta,
19
+ l as propsMeta
20
+ };
@@ -0,0 +1,7 @@
1
+ import { jsx as p } from "react/jsx-runtime";
2
+ import { forwardRef as m } from "react";
3
+ const s = m((r, o) => /* @__PURE__ */ p("sup", { ...r, ref: o }));
4
+ s.displayName = "Bold";
5
+ export {
6
+ s as Superscript
7
+ };
@@ -0,0 +1,20 @@
1
+ import { SuperscriptIcon as t } from "@webstudio-is/icons/svg";
2
+ import { defaultStates as r } from "@webstudio-is/react-sdk";
3
+ import { sup as o } from "@webstudio-is/sdk/normalize.css";
4
+ import { props as p } from "./__generated__/superscript.props.js";
5
+ const e = {
6
+ sup: o
7
+ }, a = {
8
+ type: "rich-text-child",
9
+ label: "Superscript Text",
10
+ icon: t,
11
+ states: r,
12
+ presetStyle: e
13
+ }, l = {
14
+ props: p,
15
+ initialProps: ["id", "className"]
16
+ };
17
+ export {
18
+ a as meta,
19
+ l as propsMeta
20
+ };
package/lib/text.js ADDED
@@ -0,0 +1,10 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import { forwardRef as f } from "react";
3
+ const m = "div", s = f(
4
+ ({ tag: t = m, children: o, ...r }, a) => /* @__PURE__ */ e(t, { ...r, ref: a, children: o })
5
+ );
6
+ s.displayName = "Text";
7
+ export {
8
+ s as Text,
9
+ m as defaultTag
10
+ };
package/lib/text.ws.js ADDED
@@ -0,0 +1,41 @@
1
+ import { TextIcon as t } from "@webstudio-is/icons/svg";
2
+ import { defaultStates as e } from "@webstudio-is/react-sdk";
3
+ import { div as o } from "@webstudio-is/sdk/normalize.css";
4
+ import { props as n } from "./__generated__/text.props.js";
5
+ const r = {
6
+ div: [
7
+ ...o,
8
+ {
9
+ property: "minHeight",
10
+ value: { type: "unit", unit: "em", value: 1 }
11
+ }
12
+ ]
13
+ }, s = {
14
+ category: "text",
15
+ type: "container",
16
+ description: "A generic container for any text content that is not a heading or a link.",
17
+ icon: t,
18
+ states: e,
19
+ presetStyle: r,
20
+ order: 0,
21
+ template: [
22
+ {
23
+ type: "instance",
24
+ component: "Text",
25
+ children: [
26
+ {
27
+ type: "text",
28
+ value: "The text you can edit",
29
+ placeholder: !0
30
+ }
31
+ ]
32
+ }
33
+ ]
34
+ }, m = {
35
+ props: n,
36
+ initialProps: ["id", "className", "tag"]
37
+ };
38
+ export {
39
+ s as meta,
40
+ m as propsMeta
41
+ };
@@ -0,0 +1,7 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import { forwardRef as d } from "react";
3
+ const f = d(({ children: i, value: e, defaultValue: r, ...a }, t) => /* @__PURE__ */ o("textarea", { ...a, defaultValue: e ?? r, ref: t }));
4
+ f.displayName = "Textarea";
5
+ export {
6
+ f as Textarea
7
+ };
@@ -0,0 +1,56 @@
1
+ import { FormTextAreaIcon as e } from "@webstudio-is/icons/svg";
2
+ import { defaultStates as t } from "@webstudio-is/react-sdk";
3
+ import { textarea as o } from "@webstudio-is/sdk/normalize.css";
4
+ import { props as r } from "./__generated__/textarea.props.js";
5
+ const l = {
6
+ textarea: [
7
+ ...o,
8
+ // resize doesn't work well while on canvas
9
+ { property: "resize", value: { type: "keyword", value: "none" } },
10
+ {
11
+ property: "display",
12
+ value: { type: "keyword", value: "block" }
13
+ }
14
+ ]
15
+ }, p = {
16
+ category: "forms",
17
+ type: "control",
18
+ label: "Text Area",
19
+ description: "A multi-line text input for collecting longer string data from your users.",
20
+ icon: e,
21
+ presetStyle: l,
22
+ order: 4,
23
+ invalidAncestors: ["Button", "Link"],
24
+ constraints: {
25
+ relation: "ancestor",
26
+ component: { $nin: ["Button", "Link"] }
27
+ },
28
+ states: [
29
+ ...t,
30
+ { selector: "::placeholder", label: "Placeholder" },
31
+ { selector: ":valid", label: "Valid" },
32
+ { selector: ":invalid", label: "Invalid" },
33
+ { selector: ":required", label: "Required" },
34
+ { selector: ":optional", label: "Optional" }
35
+ // Additional states will go into submenu
36
+ //{ selector: ":disabled", label: "Disabled" },
37
+ //{ selector: ":enabled", label: "Enabled" },
38
+ //{ selector: ":read-only", label: "Read Only" },
39
+ //{ selector: ":read-write", label: "Read Write" },
40
+ ]
41
+ }, c = {
42
+ props: r,
43
+ initialProps: [
44
+ "id",
45
+ "className",
46
+ "name",
47
+ "value",
48
+ "placeholder",
49
+ "required",
50
+ "autoFocus"
51
+ ]
52
+ };
53
+ export {
54
+ p as meta,
55
+ c as propsMeta
56
+ };