@agility/plenum-ui 1.2.8 → 1.3.1

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/.prettierrc CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "singleQuote": false,
3
- "printWidth": 100,
3
+ "printWidth": 80,
4
4
  "editor.formatOnSave": true,
5
5
  "proseWrap": "preserve",
6
6
  "tabWidth": 4,
@@ -34,6 +34,7 @@ export interface ButtonProps {
34
34
  * If button should be of type submit
35
35
  */
36
36
  isSubmit?: boolean;
37
+ isWidthFull?: boolean;
37
38
  }
38
39
  /**
39
40
  * Primary UI component for user interaction
@@ -18,7 +18,7 @@ export interface BaseFieldProps {
18
18
  /** Max length of input character */
19
19
  maxLength?: number;
20
20
  /** Input style classes */
21
- inputStyles?: string;
21
+ className?: string;
22
22
  /** Callback on change */
23
23
  onChange?(value: string): void;
24
24
  /** Callback on onFocus */
@@ -6,6 +6,8 @@ export interface InputSelectProps {
6
6
  inputOptions: SelectOptions[];
7
7
  /** Onclick callback */
8
8
  onSelectOption?(value: string): void;
9
+ className?: string;
10
+ isDisabled?: boolean;
9
11
  }
10
12
  /** Comment */
11
13
  export declare const InputSelect: FC<InputSelectProps>;