@youngonesworks/ui 1.0.3 → 1.0.5

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.
@@ -1,5 +1,5 @@
1
- import React from 'react';
2
- export interface IRadioButton extends React.InputHTMLAttributes<HTMLInputElement> {
1
+ import React, { type InputHTMLAttributes } from 'react';
2
+ export interface IRadioButton extends InputHTMLAttributes<HTMLInputElement> {
3
3
  id?: string;
4
4
  name?: string;
5
5
  value: string;
@@ -1 +1,2 @@
1
- export declare const usePhoneNumberPrefix: (defaultCountry: string) => import("country-list-with-dial-code-and-flag").Country[];
1
+ import type { Country } from 'country-list-with-dial-code-and-flag';
2
+ export declare const usePhoneNumberPrefix: (defaultCountry: string) => Country[];