braid-ui 1.0.119 → 1.0.120
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -512,8 +512,9 @@ interface AddressFormProps {
|
|
|
512
512
|
countryCodeError?: boolean;
|
|
513
513
|
address?: AddressData;
|
|
514
514
|
onAddressChange?: (address: AddressData) => void;
|
|
515
|
+
requiredFields?: Array<"line1" | "city" | "state" | "postalCode" | "countryCode">;
|
|
515
516
|
}
|
|
516
|
-
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, address, onAddressChange, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
517
|
+
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, address, onAddressChange, requiredFields, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
517
518
|
|
|
518
519
|
interface CreateCounterpartyViewProps {
|
|
519
520
|
counterpartyData: any;
|
package/dist/index.d.ts
CHANGED
|
@@ -512,8 +512,9 @@ interface AddressFormProps {
|
|
|
512
512
|
countryCodeError?: boolean;
|
|
513
513
|
address?: AddressData;
|
|
514
514
|
onAddressChange?: (address: AddressData) => void;
|
|
515
|
+
requiredFields?: Array<"line1" | "city" | "state" | "postalCode" | "countryCode">;
|
|
515
516
|
}
|
|
516
|
-
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, address, onAddressChange, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
517
|
+
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, address, onAddressChange, requiredFields, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
517
518
|
|
|
518
519
|
interface CreateCounterpartyViewProps {
|
|
519
520
|
counterpartyData: any;
|