@6thbridge/hexa 0.0.80 → 0.0.81

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.d.mts CHANGED
@@ -178,8 +178,14 @@ type PhoneInputProps = Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onCh
178
178
  showAsterisk?: boolean;
179
179
  description?: React$1.ReactNode;
180
180
  error?: string;
181
+ disableCountrySelect?: boolean;
182
+ countryOptions?: CountrySelectOption[];
181
183
  };
182
184
  declare const PhoneInput: React$1.ForwardRefExoticComponent<PhoneInputProps>;
185
+ type CountrySelectOption = {
186
+ label: string;
187
+ value: RPNInput.Country;
188
+ };
183
189
  type FlagComponentProps = RPNInput.FlagProps & {
184
190
  className?: string;
185
191
  };
package/dist/index.d.ts CHANGED
@@ -178,8 +178,14 @@ type PhoneInputProps = Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onCh
178
178
  showAsterisk?: boolean;
179
179
  description?: React$1.ReactNode;
180
180
  error?: string;
181
+ disableCountrySelect?: boolean;
182
+ countryOptions?: CountrySelectOption[];
181
183
  };
182
184
  declare const PhoneInput: React$1.ForwardRefExoticComponent<PhoneInputProps>;
185
+ type CountrySelectOption = {
186
+ label: string;
187
+ value: RPNInput.Country;
188
+ };
183
189
  type FlagComponentProps = RPNInput.FlagProps & {
184
190
  className?: string;
185
191
  };