@biggive/components 202411061640.0.0 → 202411071423.0.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/dist/biggive/biggive.esm.js +1 -1
- package/dist/biggive/p-a9242b40.entry.js +2 -0
- package/dist/biggive/p-a9242b40.entry.js.map +1 -0
- package/dist/cjs/biggive-accordion_40.cjs.entry.js +3 -0
- package/dist/cjs/biggive-accordion_40.cjs.entry.js.map +1 -1
- package/dist/collection/components/biggive-form-field-select/biggive-form-field-select.js +3 -0
- package/dist/collection/components/biggive-form-field-select/biggive-form-field-select.js.map +1 -1
- package/dist/components/biggive-form-field-select2.js +3 -0
- package/dist/components/biggive-form-field-select2.js.map +1 -1
- package/dist/esm/biggive-accordion_40.entry.js +3 -0
- package/dist/esm/biggive-accordion_40.entry.js.map +1 -1
- package/hydrate/index.js +3 -0
- package/hydrate/index.mjs +3 -0
- package/package.json +1 -1
- package/dist/biggive/p-a15a9af9.entry.js +0 -2
- package/dist/biggive/p-a15a9af9.entry.js.map +0 -1
package/hydrate/index.js
CHANGED
|
@@ -3892,6 +3892,9 @@ class BiggiveFormFieldSelect {
|
|
|
3892
3892
|
(this.selectedOptionColour === 'inherit' ? ' inherit-colour' : '') }, hAsync("div", { key: '63beb631b161db5ffe16158430af3d1eede56130', class: "sleeve" }, hAsync("select", { key: '153a730cbf15eb1571c44e855dccc040b3a5f2a3', class: greyIfRequired, onChange: this.doOptionSelectCompletedHandler }, options.map(option => (hAsync("option", { selected: this.selectedValue === option.value, value: option.value }, option.label)))), hAsync("div", { key: '238e74f29d312129f831f5a4cf1598ce3024f145', class: "arrow" }))))));
|
|
3893
3893
|
}
|
|
3894
3894
|
formatOptions(options) {
|
|
3895
|
+
if (options === undefined) {
|
|
3896
|
+
return [];
|
|
3897
|
+
}
|
|
3895
3898
|
if (typeof options === 'string') {
|
|
3896
3899
|
options = JSON.parse(options);
|
|
3897
3900
|
}
|
package/hydrate/index.mjs
CHANGED
|
@@ -3888,6 +3888,9 @@ class BiggiveFormFieldSelect {
|
|
|
3888
3888
|
(this.selectedOptionColour === 'inherit' ? ' inherit-colour' : '') }, hAsync("div", { key: '63beb631b161db5ffe16158430af3d1eede56130', class: "sleeve" }, hAsync("select", { key: '153a730cbf15eb1571c44e855dccc040b3a5f2a3', class: greyIfRequired, onChange: this.doOptionSelectCompletedHandler }, options.map(option => (hAsync("option", { selected: this.selectedValue === option.value, value: option.value }, option.label)))), hAsync("div", { key: '238e74f29d312129f831f5a4cf1598ce3024f145', class: "arrow" }))))));
|
|
3889
3889
|
}
|
|
3890
3890
|
formatOptions(options) {
|
|
3891
|
+
if (options === undefined) {
|
|
3892
|
+
return [];
|
|
3893
|
+
}
|
|
3891
3894
|
if (typeof options === 'string') {
|
|
3892
3895
|
options = JSON.parse(options);
|
|
3893
3896
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@biggive/components",
|
|
3
3
|
"_comment": "Version number below is automatically replaced during CircleCI build.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "202411071423.0.0",
|
|
5
5
|
"description": "Big Give Components",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
7
7
|
"module": "dist/index.js",
|