@unifiedsoftware/react-ui 2.0.1-beta.8 → 2.0.1-beta.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.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -579,9 +579,9 @@ type Timer = ReturnType<typeof useTimer>;
|
|
|
579
579
|
|
|
580
580
|
type SelectionItem = Record<string, any>;
|
|
581
581
|
|
|
582
|
-
type InputVariant = 'filled' | 'outlined' | '
|
|
582
|
+
type InputVariant = 'filled' | 'outlined' | 'flat' | 'text';
|
|
583
583
|
type InputColor = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'dark' | 'light';
|
|
584
|
-
type InputSize = '
|
|
584
|
+
type InputSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
585
585
|
|
|
586
586
|
interface InputBaseProps {
|
|
587
587
|
className?: string;
|