@mindly/ui-components 5.4.0 → 5.6.0

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.
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { FC } from 'react';
3
+ export declare const IconSpinner: FC<React.SVGAttributes<SVGElement>>;
@@ -29,3 +29,4 @@ export * from './IconVisible';
29
29
  export * from './IconApple';
30
30
  export * from './IconGoogle';
31
31
  export * from './IconLetter';
32
+ export * from './IconSpinner';
@@ -2,3 +2,4 @@ export * from './ui';
2
2
  export * from './providers';
3
3
  export * from './hooks';
4
4
  export * from './assets';
5
+ export * from './utils';
@@ -0,0 +1,8 @@
1
+ import React, { InputHTMLAttributes } from 'react';
2
+ interface ScreenInputProps extends InputHTMLAttributes<HTMLInputElement> {
3
+ variant?: 'default' | 'large';
4
+ type?: 'text' | 'email' | 'password' | 'number';
5
+ className?: string;
6
+ }
7
+ declare const ScreenInput: React.ForwardRefExoticComponent<ScreenInputProps & React.RefAttributes<HTMLInputElement>>;
8
+ export default ScreenInput;
@@ -0,0 +1 @@
1
+ export { default as ScreenInput } from './ScreenInput';
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ type SpinnerProps = {
3
+ size?: number;
4
+ };
5
+ declare const Spinner: FC<SpinnerProps>;
6
+ export default Spinner;
@@ -0,0 +1 @@
1
+ export { default as Spinner } from './Spinner';
@@ -15,3 +15,5 @@ export * from './Textarea_v2';
15
15
  export * from './Rating';
16
16
  export * from './IconButton';
17
17
  export * from './Toast';
18
+ export * from './ScreenInput';
19
+ export * from './Spinner';
@@ -0,0 +1 @@
1
+ export { mergeRefs } from './mergeRefs';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ type AnyRef = React.Ref<any>;
3
+ export declare const mergeRefs: <T extends unknown>(...refs: AnyRef[]) => React.Ref<T>;
4
+ export {};