@asdp/ferryui 0.1.22-dev.9176 → 0.1.22-dev.9182
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/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3265,7 +3265,7 @@ var InputDynamic = ({
|
|
|
3265
3265
|
autoCapitalize: "off",
|
|
3266
3266
|
spellCheck: "false"
|
|
3267
3267
|
},
|
|
3268
|
-
value: COUNTRIES.find((country) => country.value === field.value) || null,
|
|
3268
|
+
value: (options && options.length > 0 ? options : COUNTRIES).find((country) => country.value === field.value) || null,
|
|
3269
3269
|
onChange: (selectedOption) => {
|
|
3270
3270
|
field.onChange(selectedOption ? selectedOption.value : "");
|
|
3271
3271
|
if (onChange) {
|
|
@@ -12069,7 +12069,7 @@ var PriceDetailsTerms = ({
|
|
|
12069
12069
|
const linkColor = tokens.colorBrandBackground;
|
|
12070
12070
|
const bookingTerms = labels.bookingTerms;
|
|
12071
12071
|
const agreementTerms = [
|
|
12072
|
-
/* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(Link, { href: "/
|
|
12072
|
+
/* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(Link, { href: "/term-condition", style: { color: linkColor }, children: labels.agreementLinkFerizy }) }),
|
|
12073
12073
|
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
12074
12074
|
labels.agreementCovidInfo,
|
|
12075
12075
|
/* @__PURE__ */ jsx(Link, { href: "/surat-edaran-satgas-covid-19", style: { color: linkColor }, children: labels.agreementCovidLink })
|