prlg-ui 1.8.145 → 1.8.147

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 CHANGED
@@ -1600,14 +1600,16 @@ declare type InputTextProps = {
1600
1600
  disabled?: boolean;
1601
1601
  error?: boolean;
1602
1602
  errorText?: string;
1603
- type?: "text" | "password";
1604
- size?: "small" | "default" | "large";
1603
+ type?: 'text' | 'password';
1604
+ size?: 'small' | 'default' | 'large';
1605
1605
  inputId?: string;
1606
1606
  variant?: 'empty' | 'outlined' | 'fill';
1607
1607
  value?: string;
1608
1608
  required?: boolean;
1609
1609
  full?: boolean;
1610
1610
  readonly?: boolean;
1611
+ maxlength?: number;
1612
+ showMaxLength?: boolean;
1611
1613
  };
1612
1614
 
1613
1615
  declare type MenuItem = {