@builder.io/sdk-qwik 0.17.2 → 0.17.3

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.
@@ -207,8 +207,8 @@ const Accordion = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlined
207
207
  }
208
208
  }, 3, "hf_1"), 1, "hf_2") : null
209
209
  ]
210
- }, 1, "hf_3");
211
- }), 1, "hf_4");
210
+ }, 1, index);
211
+ }), 1, "hf_3");
212
212
  }, "Accordion_component_jkuUCHm0nt0"));
213
213
  exports.Accordion = Accordion;
214
214
  exports.default = Accordion;
@@ -205,8 +205,8 @@ const Accordion = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props
205
205
  }
206
206
  }, 3, "hf_1"), 1, "hf_2") : null
207
207
  ]
208
- }, 1, "hf_3");
209
- }), 1, "hf_4");
208
+ }, 1, index);
209
+ }), 1, "hf_3");
210
210
  }, "Accordion_component_jkuUCHm0nt0"));
211
211
  export {
212
212
  Accordion,
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const SDK_VERSION = "0.17.2";
3
+ const SDK_VERSION = "0.17.3";
4
4
  exports.SDK_VERSION = SDK_VERSION;
@@ -1,4 +1,4 @@
1
- const SDK_VERSION = "0.17.2";
1
+ const SDK_VERSION = "0.17.3";
2
2
  export {
3
3
  SDK_VERSION
4
4
  };
@@ -207,8 +207,8 @@ const Accordion = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlined
207
207
  }
208
208
  }, 3, "hf_1"), 1, "hf_2") : null
209
209
  ]
210
- }, 1, "hf_3");
211
- }), 1, "hf_4");
210
+ }, 1, index);
211
+ }), 1, "hf_3");
212
212
  }, "Accordion_component_jkuUCHm0nt0"));
213
213
  exports.Accordion = Accordion;
214
214
  exports.default = Accordion;
@@ -205,8 +205,8 @@ const Accordion = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props
205
205
  }
206
206
  }, 3, "hf_1"), 1, "hf_2") : null
207
207
  ]
208
- }, 1, "hf_3");
209
- }), 1, "hf_4");
208
+ }, 1, index);
209
+ }), 1, "hf_3");
210
210
  }, "Accordion_component_jkuUCHm0nt0"));
211
211
  export {
212
212
  Accordion,
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const SDK_VERSION = "0.17.2";
3
+ const SDK_VERSION = "0.17.3";
4
4
  exports.SDK_VERSION = SDK_VERSION;
@@ -1,4 +1,4 @@
1
- const SDK_VERSION = "0.17.2";
1
+ const SDK_VERSION = "0.17.3";
2
2
  export {
3
3
  SDK_VERSION
4
4
  };
@@ -207,8 +207,8 @@ const Accordion = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlined
207
207
  }
208
208
  }, 3, "hf_1"), 1, "hf_2") : null
209
209
  ]
210
- }, 1, "hf_3");
211
- }), 1, "hf_4");
210
+ }, 1, index);
211
+ }), 1, "hf_3");
212
212
  }, "Accordion_component_jkuUCHm0nt0"));
213
213
  exports.Accordion = Accordion;
214
214
  exports.default = Accordion;
@@ -205,8 +205,8 @@ const Accordion = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props
205
205
  }
206
206
  }, 3, "hf_1"), 1, "hf_2") : null
207
207
  ]
208
- }, 1, "hf_3");
209
- }), 1, "hf_4");
208
+ }, 1, index);
209
+ }), 1, "hf_3");
210
210
  }, "Accordion_component_jkuUCHm0nt0"));
211
211
  export {
212
212
  Accordion,
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const SDK_VERSION = "0.17.2";
3
+ const SDK_VERSION = "0.17.3";
4
4
  exports.SDK_VERSION = SDK_VERSION;
@@ -1,4 +1,4 @@
1
- const SDK_VERSION = "0.17.2";
1
+ const SDK_VERSION = "0.17.3";
2
2
  export {
3
3
  SDK_VERSION
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/sdk-qwik",
3
- "version": "0.17.2",
3
+ "version": "0.17.3",
4
4
  "homepage": "https://github.com/BuilderIO/builder/tree/main/packages/sdks/output/qwik",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.17.2";
1
+ export declare const SDK_VERSION = "0.17.3";
@@ -33,6 +33,7 @@ export interface BuilderContent extends BuilderContentVariation {
33
33
  published?: 'published' | 'draft' | 'archived';
34
34
  modelId?: string;
35
35
  priority?: number;
36
+ firstPublished?: number;
36
37
  lastUpdated?: number;
37
38
  startDate?: number;
38
39
  endDate?: number;
@@ -19,6 +19,16 @@ export interface Input {
19
19
  /** @hidden */
20
20
  autoFocus?: boolean;
21
21
  subFields?: Input[];
22
+ /**
23
+ * When input is of `type` `object`, use this field to collapse multiple inputs
24
+ * in the Visual Editor by default and preserve screen space.
25
+ */
26
+ folded?: boolean;
27
+ /**
28
+ * When input is of `type` `object`, provide guidance in the Visual Editor
29
+ * on how to edit this object's contents.
30
+ */
31
+ keysHelperText?: string;
22
32
  /**
23
33
  * Additional text to render in the UI to give guidance on how to use this
24
34
  *