@ikatec/nebula-react 1.0.8 → 1.0.9
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 +5 -11
- package/dist/index.d.ts +5 -11
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -491,22 +491,16 @@ interface CaptionProps extends HTMLAttributes<HTMLTableCaptionElement> {
|
|
|
491
491
|
declare const Caption: React__default.ForwardRefExoticComponent<CaptionProps & React__default.RefAttributes<HTMLTableCaptionElement>>;
|
|
492
492
|
interface LinkProps extends HTMLAttributes<HTMLAnchorElement> {
|
|
493
493
|
size?: 'md' | 'sm';
|
|
494
|
+
asChild?: boolean;
|
|
495
|
+
children: ReactNode;
|
|
494
496
|
}
|
|
495
|
-
declare const Link: React__default.ForwardRefExoticComponent<
|
|
496
|
-
[K: string]: any;
|
|
497
|
-
} & {
|
|
498
|
-
component?: (props: LinkProps) => ReactNode;
|
|
499
|
-
}, "ref"> & React__default.RefAttributes<HTMLAnchorElement>>;
|
|
497
|
+
declare const Link: React__default.ForwardRefExoticComponent<LinkProps & React__default.RefAttributes<HTMLAnchorElement>>;
|
|
500
498
|
|
|
501
499
|
type InputPhoneProps = {
|
|
502
|
-
value: string;
|
|
503
|
-
onChange: (value: string) => void;
|
|
504
|
-
className?: string;
|
|
505
|
-
disabled?: boolean;
|
|
506
|
-
placeholder?: string;
|
|
507
500
|
isError?: boolean;
|
|
508
501
|
defaultCountry?: RPNInput.Country;
|
|
509
|
-
|
|
502
|
+
onChange: (value: string) => void;
|
|
503
|
+
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, 'onChange'>;
|
|
510
504
|
declare function InputPhone({ value, onChange, className, disabled, isError, defaultCountry, ...props }: InputPhoneProps): react_jsx_runtime.JSX.Element;
|
|
511
505
|
|
|
512
506
|
interface SkeletonProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
package/dist/index.d.ts
CHANGED
|
@@ -491,22 +491,16 @@ interface CaptionProps extends HTMLAttributes<HTMLTableCaptionElement> {
|
|
|
491
491
|
declare const Caption: React__default.ForwardRefExoticComponent<CaptionProps & React__default.RefAttributes<HTMLTableCaptionElement>>;
|
|
492
492
|
interface LinkProps extends HTMLAttributes<HTMLAnchorElement> {
|
|
493
493
|
size?: 'md' | 'sm';
|
|
494
|
+
asChild?: boolean;
|
|
495
|
+
children: ReactNode;
|
|
494
496
|
}
|
|
495
|
-
declare const Link: React__default.ForwardRefExoticComponent<
|
|
496
|
-
[K: string]: any;
|
|
497
|
-
} & {
|
|
498
|
-
component?: (props: LinkProps) => ReactNode;
|
|
499
|
-
}, "ref"> & React__default.RefAttributes<HTMLAnchorElement>>;
|
|
497
|
+
declare const Link: React__default.ForwardRefExoticComponent<LinkProps & React__default.RefAttributes<HTMLAnchorElement>>;
|
|
500
498
|
|
|
501
499
|
type InputPhoneProps = {
|
|
502
|
-
value: string;
|
|
503
|
-
onChange: (value: string) => void;
|
|
504
|
-
className?: string;
|
|
505
|
-
disabled?: boolean;
|
|
506
|
-
placeholder?: string;
|
|
507
500
|
isError?: boolean;
|
|
508
501
|
defaultCountry?: RPNInput.Country;
|
|
509
|
-
|
|
502
|
+
onChange: (value: string) => void;
|
|
503
|
+
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, 'onChange'>;
|
|
510
504
|
declare function InputPhone({ value, onChange, className, disabled, isError, defaultCountry, ...props }: InputPhoneProps): react_jsx_runtime.JSX.Element;
|
|
511
505
|
|
|
512
506
|
interface SkeletonProps extends React__default.HTMLAttributes<HTMLDivElement> {
|