@dito-uai/components 5.0.0-alpha28 → 5.0.0-alpha29
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 +1489 -52
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1451 -14
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1797,8 +1797,8 @@ declare const Input: React__default.ForwardRefExoticComponent<React__default.Inp
|
|
|
1797
1797
|
id?: string;
|
|
1798
1798
|
value?: string;
|
|
1799
1799
|
defaultValue?: string;
|
|
1800
|
-
prefixIcon?: React__default.
|
|
1801
|
-
suffixIcon?: React__default.
|
|
1800
|
+
prefixIcon?: React__default.ReactNode;
|
|
1801
|
+
suffixIcon?: React__default.ReactNode;
|
|
1802
1802
|
invalid?: boolean;
|
|
1803
1803
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
1804
1804
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1797,8 +1797,8 @@ declare const Input: React__default.ForwardRefExoticComponent<React__default.Inp
|
|
|
1797
1797
|
id?: string;
|
|
1798
1798
|
value?: string;
|
|
1799
1799
|
defaultValue?: string;
|
|
1800
|
-
prefixIcon?: React__default.
|
|
1801
|
-
suffixIcon?: React__default.
|
|
1800
|
+
prefixIcon?: React__default.ReactNode;
|
|
1801
|
+
suffixIcon?: React__default.ReactNode;
|
|
1802
1802
|
invalid?: boolean;
|
|
1803
1803
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
1804
1804
|
|