@dmitriikapustin/ui 0.1.0 → 0.2.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.
- package/dist/index.cjs +1547 -780
- package/dist/index.css +4596 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1547 -780
- package/package.json +8 -10
package/dist/index.d.cts
CHANGED
|
@@ -46,7 +46,7 @@ interface ToggleProps {
|
|
|
46
46
|
disabled?: boolean;
|
|
47
47
|
className?: string;
|
|
48
48
|
}
|
|
49
|
-
declare function Toggle({ checked, onChange, label, disabled, className }: ToggleProps): react_jsx_runtime.JSX.Element;
|
|
49
|
+
declare function Toggle({ checked, onChange, label, disabled, className, }: ToggleProps): react_jsx_runtime.JSX.Element;
|
|
50
50
|
|
|
51
51
|
type AvatarSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
52
52
|
interface AvatarProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, 'size'> {
|
package/dist/index.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ interface ToggleProps {
|
|
|
46
46
|
disabled?: boolean;
|
|
47
47
|
className?: string;
|
|
48
48
|
}
|
|
49
|
-
declare function Toggle({ checked, onChange, label, disabled, className }: ToggleProps): react_jsx_runtime.JSX.Element;
|
|
49
|
+
declare function Toggle({ checked, onChange, label, disabled, className, }: ToggleProps): react_jsx_runtime.JSX.Element;
|
|
50
50
|
|
|
51
51
|
type AvatarSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
52
52
|
interface AvatarProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, 'size'> {
|