@builder.io/sdk-qwik 0.0.8 → 0.0.11

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 (106) hide show
  1. package/README.md +65 -2
  2. package/lib/index.qwik.cjs +259 -216
  3. package/lib/index.qwik.mjs +260 -217
  4. package/package.json +4 -4
  5. package/src/blocks/button/button.jsx +22 -0
  6. package/src/blocks/button/component-info.js +41 -0
  7. package/src/blocks/columns/columns.jsx +97 -0
  8. package/src/blocks/columns/component-info.js +242 -0
  9. package/src/blocks/custom-code/component-info.js +31 -0
  10. package/src/blocks/custom-code/custom-code.jsx +71 -0
  11. package/src/blocks/embed/component-info.js +44 -0
  12. package/src/blocks/embed/embed.jsx +63 -0
  13. package/src/blocks/embed/helpers.js +9 -0
  14. package/src/blocks/form/builder-blocks.jsx +11 -0
  15. package/src/blocks/form/component-info.js +262 -0
  16. package/src/blocks/form/form.jsx +303 -0
  17. package/src/blocks/fragment/component-info.js +11 -0
  18. package/src/blocks/fragment/fragment.jsx +11 -0
  19. package/src/blocks/image/component-info.js +151 -0
  20. package/src/blocks/image/image.helpers.js +48 -0
  21. package/src/blocks/image/image.jsx +110 -0
  22. package/src/blocks/img/component-info.js +20 -0
  23. package/src/blocks/img/img.jsx +19 -0
  24. package/src/blocks/input/component-info.js +74 -0
  25. package/src/blocks/input/input.jsx +21 -0
  26. package/src/blocks/raw-text/component-info.js +16 -0
  27. package/src/blocks/raw-text/raw-text.jsx +12 -0
  28. package/src/blocks/section/component-info.js +49 -0
  29. package/src/blocks/section/section.jsx +20 -0
  30. package/src/blocks/select/component-info.js +59 -0
  31. package/src/blocks/select/select.jsx +24 -0
  32. package/src/blocks/submit-button/component-info.js +28 -0
  33. package/src/blocks/submit-button/submit-button.jsx +11 -0
  34. package/src/blocks/symbol/component-info.js +43 -0
  35. package/src/blocks/symbol/symbol.jsx +77 -0
  36. package/src/blocks/text/component-info.js +24 -0
  37. package/src/blocks/text/text.jsx +7 -0
  38. package/src/blocks/textarea/component-info.js +47 -0
  39. package/src/blocks/textarea/textarea.jsx +15 -0
  40. package/src/blocks/util.js +7 -0
  41. package/src/blocks/video/component-info.js +106 -0
  42. package/src/blocks/video/video.jsx +53 -0
  43. package/src/components/render-block/block-styles.jsx +60 -0
  44. package/src/components/render-block/render-block.helpers.js +23 -0
  45. package/src/components/render-block/render-block.jsx +221 -0
  46. package/src/components/render-block/render-component.jsx +34 -0
  47. package/src/components/render-block/render-repeated-block.jsx +37 -0
  48. package/src/components/render-block/types.js +0 -0
  49. package/src/components/render-blocks.jsx +93 -0
  50. package/src/components/render-content/components/render-styles.jsx +76 -0
  51. package/src/components/render-content/index.js +4 -0
  52. package/src/components/render-content/render-content.jsx +351 -0
  53. package/src/components/render-inlined-styles.jsx +25 -0
  54. package/src/constants/builder-registered-components.js +48 -0
  55. package/src/constants/device-sizes.js +21 -0
  56. package/src/constants/target.js +4 -0
  57. package/src/context/builder.context.js +5 -0
  58. package/src/functions/camel-to-kebab-case.js +4 -0
  59. package/src/functions/convert-style-object.js +6 -0
  60. package/src/functions/evaluate.js +28 -0
  61. package/src/functions/event-handler-name.js +7 -0
  62. package/src/functions/get-block-actions.js +23 -0
  63. package/src/functions/get-block-component-options.js +28 -0
  64. package/src/functions/get-block-properties.js +29 -0
  65. package/src/functions/get-block-styles.js +34 -0
  66. package/src/functions/get-block-tag.js +6 -0
  67. package/src/functions/get-builder-search-params/fn.test.js +13 -0
  68. package/src/functions/get-builder-search-params/index.js +33 -0
  69. package/src/functions/get-content/ab-testing.js +38 -0
  70. package/src/functions/get-content/fn.test.js +31 -0
  71. package/src/functions/get-content/index.js +96 -0
  72. package/src/functions/get-content/types.js +0 -0
  73. package/src/functions/get-fetch.js +34 -0
  74. package/src/functions/get-global-this.js +18 -0
  75. package/src/functions/get-processed-block.js +53 -0
  76. package/src/functions/get-processed-block.test.js +32 -0
  77. package/src/functions/if-target.js +15 -0
  78. package/src/functions/is-browser.js +6 -0
  79. package/src/functions/is-editing.js +7 -0
  80. package/src/functions/is-iframe.js +7 -0
  81. package/src/functions/is-previewing.js +14 -0
  82. package/src/functions/on-change.js +27 -0
  83. package/src/functions/on-change.test.js +19 -0
  84. package/src/functions/register-component.js +72 -0
  85. package/src/functions/register.js +29 -0
  86. package/src/functions/sanitize-styles.js +5 -0
  87. package/src/functions/set-editor-settings.js +15 -0
  88. package/src/functions/set.js +11 -0
  89. package/src/functions/set.test.js +16 -0
  90. package/src/functions/track.js +22 -0
  91. package/src/functions/transform-block.js +6 -0
  92. package/src/helpers/css.js +12 -0
  93. package/src/helpers/flatten.js +34 -0
  94. package/src/index-helpers/blocks-exports.js +22 -0
  95. package/src/index-helpers/top-of-file.js +4 -0
  96. package/src/index.js +10 -0
  97. package/src/scripts/init-editing.js +79 -0
  98. package/src/types/builder-block.js +0 -0
  99. package/src/types/builder-content.js +0 -0
  100. package/src/types/components.js +0 -0
  101. package/src/types/deep-partial.js +0 -0
  102. package/src/types/element.js +0 -0
  103. package/src/types/targets.js +0 -0
  104. package/src/types/typescript.js +0 -0
  105. package/types.d.ts +7 -12
  106. package/root.json +0 -1176
@@ -0,0 +1,151 @@
1
+ import { markSerializable } from "../util";
2
+ const componentInfo = {
3
+ name: "Image",
4
+ static: true,
5
+ builtIn: true,
6
+ image: "https://firebasestorage.googleapis.com/v0/b/builder-3b0a2.appspot.com/o/images%2Fbaseline-insert_photo-24px.svg?alt=media&token=4e5d0ef4-f5e8-4e57-b3a9-38d63a9b9dc4",
7
+ defaultStyles: {
8
+ position: "relative",
9
+ minHeight: "20px",
10
+ minWidth: "20px",
11
+ overflow: "hidden"
12
+ },
13
+ canHaveChildren: true,
14
+ inputs: [
15
+ {
16
+ name: "image",
17
+ type: "file",
18
+ bubble: true,
19
+ allowedFileTypes: ["jpeg", "jpg", "png", "svg"],
20
+ required: true,
21
+ defaultValue: "https://cdn.builder.io/api/v1/image/assets%2Fpwgjf0RoYWbdnJSbpBAjXNRMe9F2%2Ffb27a7c790324294af8be1c35fe30f4d",
22
+ onChange: markSerializable((options) => {
23
+ const DEFAULT_ASPECT_RATIO = 0.7041;
24
+ options.delete("srcset");
25
+ options.delete("noWebp");
26
+ function loadImage(url, timeout = 6e4) {
27
+ return new Promise((resolve, reject) => {
28
+ const img = document.createElement("img");
29
+ let loaded = false;
30
+ img.onload = () => {
31
+ loaded = true;
32
+ resolve(img);
33
+ };
34
+ img.addEventListener("error", (event) => {
35
+ console.warn("Image load failed", event.error);
36
+ reject(event.error);
37
+ });
38
+ img.src = url;
39
+ setTimeout(() => {
40
+ if (!loaded) {
41
+ reject(new Error("Image load timed out"));
42
+ }
43
+ }, timeout);
44
+ });
45
+ }
46
+ function round(num) {
47
+ return Math.round(num * 1e3) / 1e3;
48
+ }
49
+ const value = options.get("image");
50
+ const aspectRatio = options.get("aspectRatio");
51
+ fetch(value).then((res) => res.blob()).then((blob) => {
52
+ if (blob.type.includes("svg")) {
53
+ options.set("noWebp", true);
54
+ }
55
+ });
56
+ if (value && (!aspectRatio || aspectRatio === DEFAULT_ASPECT_RATIO)) {
57
+ return loadImage(value).then((img) => {
58
+ const possiblyUpdatedAspectRatio = options.get("aspectRatio");
59
+ if (options.get("image") === value && (!possiblyUpdatedAspectRatio || possiblyUpdatedAspectRatio === DEFAULT_ASPECT_RATIO)) {
60
+ if (img.width && img.height) {
61
+ options.set("aspectRatio", round(img.height / img.width));
62
+ options.set("height", img.height);
63
+ options.set("width", img.width);
64
+ }
65
+ }
66
+ });
67
+ }
68
+ })
69
+ },
70
+ {
71
+ name: "backgroundSize",
72
+ type: "text",
73
+ defaultValue: "cover",
74
+ enum: [
75
+ {
76
+ label: "contain",
77
+ value: "contain",
78
+ helperText: "The image should never get cropped"
79
+ },
80
+ {
81
+ label: "cover",
82
+ value: "cover",
83
+ helperText: "The image should fill it's box, cropping when needed"
84
+ }
85
+ ]
86
+ },
87
+ {
88
+ name: "backgroundPosition",
89
+ type: "text",
90
+ defaultValue: "center",
91
+ enum: [
92
+ "center",
93
+ "top",
94
+ "left",
95
+ "right",
96
+ "bottom",
97
+ "top left",
98
+ "top right",
99
+ "bottom left",
100
+ "bottom right"
101
+ ]
102
+ },
103
+ {
104
+ name: "altText",
105
+ type: "string",
106
+ helperText: "Text to display when the user has images off"
107
+ },
108
+ {
109
+ name: "height",
110
+ type: "number",
111
+ hideFromUI: true
112
+ },
113
+ {
114
+ name: "width",
115
+ type: "number",
116
+ hideFromUI: true
117
+ },
118
+ {
119
+ name: "sizes",
120
+ type: "string",
121
+ hideFromUI: true
122
+ },
123
+ {
124
+ name: "srcset",
125
+ type: "string",
126
+ hideFromUI: true
127
+ },
128
+ {
129
+ name: "lazy",
130
+ type: "boolean",
131
+ defaultValue: true,
132
+ hideFromUI: true
133
+ },
134
+ {
135
+ name: "fitContent",
136
+ type: "boolean",
137
+ helperText: "When child blocks are provided, fit to them instead of using the image's aspect ratio",
138
+ defaultValue: true
139
+ },
140
+ {
141
+ name: "aspectRatio",
142
+ type: "number",
143
+ helperText: "This is the ratio of height/width, e.g. set to 1.5 for a 300px wide and 200px tall photo. Set to 0 to not force the image to maintain it's aspect ratio",
144
+ advanced: true,
145
+ defaultValue: 0.7041
146
+ }
147
+ ]
148
+ };
149
+ export {
150
+ componentInfo
151
+ };
@@ -0,0 +1,48 @@
1
+ function removeProtocol(path) {
2
+ return path.replace(/http(s)?:/, "");
3
+ }
4
+ function updateQueryParam(uri = "", key, value) {
5
+ const re = new RegExp("([?&])" + key + "=.*?(&|$)", "i");
6
+ const separator = uri.indexOf("?") !== -1 ? "&" : "?";
7
+ if (uri.match(re)) {
8
+ return uri.replace(re, "$1" + key + "=" + encodeURIComponent(value) + "$2");
9
+ }
10
+ return uri + separator + key + "=" + encodeURIComponent(value);
11
+ }
12
+ function getShopifyImageUrl(src, size) {
13
+ if (!src || !(src == null ? void 0 : src.match(/cdn\.shopify\.com/)) || !size) {
14
+ return src;
15
+ }
16
+ if (size === "master") {
17
+ return removeProtocol(src);
18
+ }
19
+ const match = src.match(/(_\d+x(\d+)?)?(\.(jpg|jpeg|gif|png|bmp|bitmap|tiff|tif)(\?v=\d+)?)/i);
20
+ if (match) {
21
+ const prefix = src.split(match[0]);
22
+ const suffix = match[3];
23
+ const useSize = size.match("x") ? size : `${size}x`;
24
+ return removeProtocol(`${prefix[0]}_${useSize}${suffix}`);
25
+ }
26
+ return null;
27
+ }
28
+ function getSrcSet(url) {
29
+ if (!url) {
30
+ return url;
31
+ }
32
+ const sizes = [100, 200, 400, 800, 1200, 1600, 2e3];
33
+ if (url.match(/builder\.io/)) {
34
+ let srcUrl = url;
35
+ const widthInSrc = Number(url.split("?width=")[1]);
36
+ if (!isNaN(widthInSrc)) {
37
+ srcUrl = `${srcUrl} ${widthInSrc}w`;
38
+ }
39
+ return sizes.filter((size) => size !== widthInSrc).map((size) => `${updateQueryParam(url, "width", size)} ${size}w`).concat([srcUrl]).join(", ");
40
+ }
41
+ if (url.match(/cdn\.shopify\.com/)) {
42
+ return sizes.map((size) => [getShopifyImageUrl(url, `${size}x${size}`), size]).filter(([sizeUrl]) => !!sizeUrl).map(([sizeUrl, size]) => `${sizeUrl} ${size}w`).concat([url]).join(", ");
43
+ }
44
+ return url;
45
+ }
46
+ export {
47
+ getSrcSet
48
+ };
@@ -0,0 +1,110 @@
1
+ // GENERATED BY MITOSIS
2
+
3
+ import { getSrcSet } from "./image.helpers";
4
+ import {
5
+ Fragment,
6
+ Slot,
7
+ component$,
8
+ h,
9
+ useStylesScoped$,
10
+ } from "@builder.io/qwik";
11
+ export const srcSetToUse = function srcSetToUse(props, state) {
12
+ const imageToUse = props.image || props.src;
13
+ const url = imageToUse;
14
+
15
+ if (
16
+ !url || // We can auto add srcset for cdn.builder.io and shopify
17
+ // images, otherwise you can supply this prop manually
18
+ !(url.match(/builder\.io/) || url.match(/cdn\.shopify\.com/))
19
+ ) {
20
+ return props.srcset;
21
+ }
22
+
23
+ if (props.srcset && props.image?.includes("builder.io/api/v1/image")) {
24
+ if (!props.srcset.includes(props.image.split("?")[0])) {
25
+ console.debug("Removed given srcset");
26
+ return getSrcSet(url);
27
+ }
28
+ } else if (props.image && !props.srcset) {
29
+ return getSrcSet(url);
30
+ }
31
+
32
+ return getSrcSet(url);
33
+ };
34
+ export const webpSrcSet = function webpSrcSet(props, state) {
35
+ if (srcSetToUse(props, state)?.match(/builder\.io/) && !props.noWebp) {
36
+ return srcSetToUse(props, state).replace(/\?/g, "?format=webp&");
37
+ } else {
38
+ return "";
39
+ }
40
+ };
41
+ export const Image = component$((props) => {
42
+ useStylesScoped$(STYLES);
43
+ const state = {};
44
+ return (
45
+ <div class="div-Image">
46
+ <picture>
47
+ {webpSrcSet(props, state) ? (
48
+ <source type="image/webp" srcset={webpSrcSet(props, state)}></source>
49
+ ) : null}
50
+ <img
51
+ loading="lazy"
52
+ alt={props.altText}
53
+ role={props.altText ? "presentation" : undefined}
54
+ style={{
55
+ objectPosition: props.backgroundSize || "center",
56
+ objectFit: props.backgroundSize || "cover",
57
+ }}
58
+ class={
59
+ "builder-image" +
60
+ (props.className ? " " + props.className : "") +
61
+ " img-Image"
62
+ }
63
+ src={props.image}
64
+ srcset={srcSetToUse(props, state)}
65
+ sizes={props.sizes}
66
+ ></img>
67
+ <source srcset={srcSetToUse(props, state)}></source>
68
+ </picture>
69
+ {props.aspectRatio &&
70
+ !(props.fitContent && props.builderBlock?.children?.length) ? (
71
+ <div
72
+ class="builder-image-sizer div-Image-2"
73
+ style={{
74
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
75
+ paddingTop: props.aspectRatio * 100 + "%",
76
+ }}
77
+ ></div>
78
+ ) : null}
79
+ {props.builderBlock?.children?.length && props.fitContent ? (
80
+ <Slot></Slot>
81
+ ) : null}
82
+ {!props.fitContent ? (
83
+ <div class="div-Image-3">
84
+ <Slot></Slot>
85
+ </div>
86
+ ) : null}
87
+ </div>
88
+ );
89
+ });
90
+ export default Image;
91
+ export const STYLES = `.div-Image {
92
+ position: relative; }.img-Image {
93
+ opacity: 1;
94
+ transition: opacity 0.2s ease-in-out;
95
+ position: absolute;
96
+ height: 100%;
97
+ width: 100%;
98
+ top: 0px;
99
+ left: 0px; }.div-Image-2 {
100
+ width: 100%;
101
+ pointer-events: none;
102
+ font-size: 0; }.div-Image-3 {
103
+ display: flex;
104
+ flex-direction: column;
105
+ align-items: stretch;
106
+ position: absolute;
107
+ top: 0;
108
+ left: 0;
109
+ width: 100%;
110
+ height: 100%; }`;
@@ -0,0 +1,20 @@
1
+ const componentInfo = {
2
+ name: "Raw:Img",
3
+ hideFromInsertMenu: true,
4
+ builtIn: true,
5
+ image: "https://firebasestorage.googleapis.com/v0/b/builder-3b0a2.appspot.com/o/images%2Fbaseline-insert_photo-24px.svg?alt=media&token=4e5d0ef4-f5e8-4e57-b3a9-38d63a9b9dc4",
6
+ inputs: [
7
+ {
8
+ name: "image",
9
+ bubble: true,
10
+ type: "file",
11
+ allowedFileTypes: ["jpeg", "jpg", "png", "svg"],
12
+ required: true
13
+ }
14
+ ],
15
+ noWrap: true,
16
+ static: true
17
+ };
18
+ export {
19
+ componentInfo
20
+ };
@@ -0,0 +1,19 @@
1
+ // GENERATED BY MITOSIS
2
+
3
+ import { isEditing } from "../../functions/is-editing.js";
4
+ import { Fragment, component$, h } from "@builder.io/qwik";
5
+ export const ImgComponent = component$((props) => {
6
+ return (
7
+ <img
8
+ style={{
9
+ objectFit: props.backgroundSize || "cover",
10
+ objectPosition: props.backgroundPosition || "center",
11
+ }}
12
+ {...props.attributes}
13
+ key={(isEditing() && props.imgSrc) || "default-key"}
14
+ alt={props.altText}
15
+ src={props.imgSrc}
16
+ ></img>
17
+ );
18
+ });
19
+ export default ImgComponent;
@@ -0,0 +1,74 @@
1
+ const componentInfo = {
2
+ name: "Form:Input",
3
+ builtIn: true,
4
+ image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Fad6f37889d9e40bbbbc72cdb5875d6ca",
5
+ inputs: [
6
+ {
7
+ name: "type",
8
+ type: "text",
9
+ enum: [
10
+ "text",
11
+ "number",
12
+ "email",
13
+ "url",
14
+ "checkbox",
15
+ "radio",
16
+ "range",
17
+ "date",
18
+ "datetime-local",
19
+ "search",
20
+ "tel",
21
+ "time",
22
+ "file",
23
+ "month",
24
+ "week",
25
+ "password",
26
+ "color",
27
+ "hidden"
28
+ ],
29
+ defaultValue: "text"
30
+ },
31
+ {
32
+ name: "name",
33
+ type: "string",
34
+ required: true,
35
+ helperText: 'Every input in a form needs a unique name describing what it takes, e.g. "email"'
36
+ },
37
+ {
38
+ name: "placeholder",
39
+ type: "string",
40
+ defaultValue: "Hello there",
41
+ helperText: "Text to display when there is no value"
42
+ },
43
+ {
44
+ name: "defaultValue",
45
+ type: "string"
46
+ },
47
+ {
48
+ name: "value",
49
+ type: "string",
50
+ advanced: true
51
+ },
52
+ {
53
+ name: "required",
54
+ type: "boolean",
55
+ helperText: "Is this input required to be filled out to submit a form",
56
+ defaultValue: false
57
+ }
58
+ ],
59
+ noWrap: true,
60
+ static: true,
61
+ defaultStyles: {
62
+ paddingTop: "10px",
63
+ paddingBottom: "10px",
64
+ paddingLeft: "10px",
65
+ paddingRight: "10px",
66
+ borderRadius: "3px",
67
+ borderWidth: "1px",
68
+ borderStyle: "solid",
69
+ borderColor: "#ccc"
70
+ }
71
+ };
72
+ export {
73
+ componentInfo
74
+ };
@@ -0,0 +1,21 @@
1
+ // GENERATED BY MITOSIS
2
+
3
+ import { isEditing } from "../../functions/is-editing.js";
4
+ import { Fragment, component$, h } from "@builder.io/qwik";
5
+ export const FormInputComponent = component$((props) => {
6
+ return (
7
+ <input
8
+ {...props.attributes}
9
+ key={
10
+ isEditing() && props.defaultValue ? props.defaultValue : "default-key"
11
+ }
12
+ placeholder={props.placeholder}
13
+ type={props.type}
14
+ name={props.name}
15
+ value={props.value}
16
+ defaultValue={props.defaultValue}
17
+ required={props.required}
18
+ ></input>
19
+ );
20
+ });
21
+ export default FormInputComponent;
@@ -0,0 +1,16 @@
1
+ const componentInfo = {
2
+ name: "Builder:RawText",
3
+ hideFromInsertMenu: true,
4
+ builtIn: true,
5
+ inputs: [
6
+ {
7
+ name: "text",
8
+ bubble: true,
9
+ type: "longText",
10
+ required: true
11
+ }
12
+ ]
13
+ };
14
+ export {
15
+ componentInfo
16
+ };
@@ -0,0 +1,12 @@
1
+ // GENERATED BY MITOSIS
2
+
3
+ import { Fragment, component$, h } from "@builder.io/qwik";
4
+ export const RawText = component$((props) => {
5
+ return (
6
+ <span
7
+ class={props.attributes?.class || props.attributes?.className}
8
+ dangerouslySetInnerHTML={props.text || ""}
9
+ ></span>
10
+ );
11
+ });
12
+ export default RawText;
@@ -0,0 +1,49 @@
1
+ const componentInfo = {
2
+ name: "Core:Section",
3
+ static: true,
4
+ builtIn: true,
5
+ image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F682efef23ace49afac61748dd305c70a",
6
+ inputs: [
7
+ {
8
+ name: "maxWidth",
9
+ type: "number",
10
+ defaultValue: 1200
11
+ },
12
+ {
13
+ name: "lazyLoad",
14
+ type: "boolean",
15
+ defaultValue: false,
16
+ advanced: true,
17
+ description: "Only render this section when in view"
18
+ }
19
+ ],
20
+ defaultStyles: {
21
+ paddingLeft: "20px",
22
+ paddingRight: "20px",
23
+ paddingTop: "50px",
24
+ paddingBottom: "50px",
25
+ marginTop: "0px",
26
+ width: "100vw",
27
+ marginLeft: "calc(50% - 50vw)"
28
+ },
29
+ canHaveChildren: true,
30
+ defaultChildren: [
31
+ {
32
+ "@type": "@builder.io/sdk:Element",
33
+ responsiveStyles: {
34
+ large: {
35
+ textAlign: "center"
36
+ }
37
+ },
38
+ component: {
39
+ name: "Text",
40
+ options: {
41
+ text: "<p><b>I am a section! My content keeps from getting too wide, so that it's easy to read even on big screens.</b></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur</p>"
42
+ }
43
+ }
44
+ }
45
+ ]
46
+ };
47
+ export {
48
+ componentInfo
49
+ };
@@ -0,0 +1,20 @@
1
+ // GENERATED BY MITOSIS
2
+
3
+ import { Fragment, Slot, component$, h } from "@builder.io/qwik";
4
+ export const SectionComponent = component$((props) => {
5
+ return (
6
+ <section
7
+ {...props.attributes}
8
+ style={(() => {
9
+ props.maxWidth && typeof props.maxWidth === "number"
10
+ ? {
11
+ maxWidth: props.maxWidth,
12
+ }
13
+ : undefined;
14
+ })()}
15
+ >
16
+ <Slot></Slot>
17
+ </section>
18
+ );
19
+ });
20
+ export default SectionComponent;
@@ -0,0 +1,59 @@
1
+ const componentInfo = {
2
+ name: "Form:Select",
3
+ builtIn: true,
4
+ image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F83acca093fb24aaf94dee136e9a4b045",
5
+ defaultStyles: {
6
+ alignSelf: "flex-start"
7
+ },
8
+ inputs: [
9
+ {
10
+ name: "options",
11
+ type: "list",
12
+ required: true,
13
+ subFields: [
14
+ {
15
+ name: "value",
16
+ type: "text",
17
+ required: true
18
+ },
19
+ {
20
+ name: "name",
21
+ type: "text"
22
+ }
23
+ ],
24
+ defaultValue: [
25
+ {
26
+ value: "option 1"
27
+ },
28
+ {
29
+ value: "option 2"
30
+ }
31
+ ]
32
+ },
33
+ {
34
+ name: "name",
35
+ type: "string",
36
+ required: true,
37
+ helperText: 'Every select in a form needs a unique name describing what it gets, e.g. "email"'
38
+ },
39
+ {
40
+ name: "defaultValue",
41
+ type: "string"
42
+ },
43
+ {
44
+ name: "value",
45
+ type: "string",
46
+ advanced: true
47
+ },
48
+ {
49
+ name: "required",
50
+ type: "boolean",
51
+ defaultValue: false
52
+ }
53
+ ],
54
+ static: true,
55
+ noWrap: true
56
+ };
57
+ export {
58
+ componentInfo
59
+ };
@@ -0,0 +1,24 @@
1
+ // GENERATED BY MITOSIS
2
+
3
+ import { isEditing } from "../../functions/is-editing.js";
4
+ import { Fragment, component$, h } from "@builder.io/qwik";
5
+ export const SelectComponent = component$((props) => {
6
+ return (
7
+ <select
8
+ {...props.attributes}
9
+ value={props.value}
10
+ key={
11
+ isEditing() && props.defaultValue ? props.defaultValue : "default-key"
12
+ }
13
+ defaultValue={props.defaultValue}
14
+ name={props.name}
15
+ >
16
+ {(props.options || []).map((option) => {
17
+ return (
18
+ <option value={option.value}>{option.name || option.value}</option>
19
+ );
20
+ })}
21
+ </select>
22
+ );
23
+ });
24
+ export default SelectComponent;
@@ -0,0 +1,28 @@
1
+ const componentInfo = {
2
+ name: "Form:SubmitButton",
3
+ builtIn: true,
4
+ image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Fdf2820ffed1f4349a94c40b3221f5b98",
5
+ defaultStyles: {
6
+ appearance: "none",
7
+ paddingTop: "15px",
8
+ paddingBottom: "15px",
9
+ paddingLeft: "25px",
10
+ paddingRight: "25px",
11
+ backgroundColor: "#3898EC",
12
+ color: "white",
13
+ borderRadius: "4px",
14
+ cursor: "pointer"
15
+ },
16
+ inputs: [
17
+ {
18
+ name: "text",
19
+ type: "text",
20
+ defaultValue: "Click me"
21
+ }
22
+ ],
23
+ static: true,
24
+ noWrap: true
25
+ };
26
+ export {
27
+ componentInfo
28
+ };
@@ -0,0 +1,11 @@
1
+ // GENERATED BY MITOSIS
2
+
3
+ import { Fragment, component$, h } from "@builder.io/qwik";
4
+ export const SubmitButton = component$((props) => {
5
+ return (
6
+ <button type="submit" {...props.attributes}>
7
+ {props.text}
8
+ </button>
9
+ );
10
+ });
11
+ export default SubmitButton;