@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.
- package/lib/browser/blocks/accordion/accordion.qwik.cjs +2 -2
- package/lib/browser/blocks/accordion/accordion.qwik.mjs +2 -2
- package/lib/browser/constants/sdk-version.qwik.cjs +1 -1
- package/lib/browser/constants/sdk-version.qwik.mjs +1 -1
- package/lib/edge/blocks/accordion/accordion.qwik.cjs +2 -2
- package/lib/edge/blocks/accordion/accordion.qwik.mjs +2 -2
- package/lib/edge/constants/sdk-version.qwik.cjs +1 -1
- package/lib/edge/constants/sdk-version.qwik.mjs +1 -1
- package/lib/node/blocks/accordion/accordion.qwik.cjs +2 -2
- package/lib/node/blocks/accordion/accordion.qwik.mjs +2 -2
- package/lib/node/constants/sdk-version.qwik.cjs +1 -1
- package/lib/node/constants/sdk-version.qwik.mjs +1 -1
- package/package.json +1 -1
- package/types/src/constants/sdk-version.d.ts +1 -1
- package/types/src/types/builder-content.d.ts +1 -0
- package/types/src/types/input.d.ts +10 -0
|
@@ -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,
|
|
211
|
-
}), 1, "
|
|
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,
|
|
209
|
-
}), 1, "
|
|
208
|
+
}, 1, index);
|
|
209
|
+
}), 1, "hf_3");
|
|
210
210
|
}, "Accordion_component_jkuUCHm0nt0"));
|
|
211
211
|
export {
|
|
212
212
|
Accordion,
|
|
@@ -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,
|
|
211
|
-
}), 1, "
|
|
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,
|
|
209
|
-
}), 1, "
|
|
208
|
+
}, 1, index);
|
|
209
|
+
}), 1, "hf_3");
|
|
210
210
|
}, "Accordion_component_jkuUCHm0nt0"));
|
|
211
211
|
export {
|
|
212
212
|
Accordion,
|
|
@@ -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,
|
|
211
|
-
}), 1, "
|
|
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,
|
|
209
|
-
}), 1, "
|
|
208
|
+
}, 1, index);
|
|
209
|
+
}), 1, "hf_3");
|
|
210
210
|
}, "Accordion_component_jkuUCHm0nt0"));
|
|
211
211
|
export {
|
|
212
212
|
Accordion,
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.17.
|
|
1
|
+
export declare const SDK_VERSION = "0.17.3";
|
|
@@ -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
|
*
|