@thecb/components 10.9.0-beta.0 → 10.9.0-beta.1
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.cjs.js +9 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +9 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/country-dropdown/CountryDropdown.js +5 -1
- package/src/components/molecules/address-form/AddressForm.js +2 -0
package/dist/index.cjs.js
CHANGED
|
@@ -26150,7 +26150,11 @@ var CountryDropdown = function CountryDropdown(_ref) {
|
|
|
26150
26150
|
_ref$isRequired = _ref.isRequired,
|
|
26151
26151
|
isRequired = _ref$isRequired === void 0 ? false : _ref$isRequired,
|
|
26152
26152
|
_ref$dataQa = _ref.dataQa,
|
|
26153
|
-
dataQa = _ref$dataQa === void 0 ? null : _ref$dataQa
|
|
26153
|
+
dataQa = _ref$dataQa === void 0 ? null : _ref$dataQa,
|
|
26154
|
+
_ref$htmlFor = _ref.htmlFor,
|
|
26155
|
+
htmlFor = _ref$htmlFor === void 0 ? null : _ref$htmlFor,
|
|
26156
|
+
_ref$inputId = _ref.inputId,
|
|
26157
|
+
inputId = _ref$inputId === void 0 ? null : _ref$inputId;
|
|
26154
26158
|
return /*#__PURE__*/React__default.createElement(FormSelect$1, {
|
|
26155
26159
|
options: options,
|
|
26156
26160
|
field: field,
|
|
@@ -26161,6 +26165,8 @@ var CountryDropdown = function CountryDropdown(_ref) {
|
|
|
26161
26165
|
showErrors: showErrors,
|
|
26162
26166
|
onChange: onChange,
|
|
26163
26167
|
autocompleteValue: "country-name",
|
|
26168
|
+
htmlFor: htmlFor,
|
|
26169
|
+
inputId: inputId,
|
|
26164
26170
|
isRequired: isRequired
|
|
26165
26171
|
});
|
|
26166
26172
|
};
|
|
@@ -40856,6 +40862,8 @@ var AddressForm = function AddressForm(_ref) {
|
|
|
40856
40862
|
}
|
|
40857
40863
|
},
|
|
40858
40864
|
showErrors: showErrors,
|
|
40865
|
+
htmlFor: "country-name",
|
|
40866
|
+
inputId: "country-name",
|
|
40859
40867
|
dataQa: "Country",
|
|
40860
40868
|
isRequired: true
|
|
40861
40869
|
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|