@secondstaxorg/sscomp 1.5.3 → 1.5.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.5.3",
3
+ "version": "1.5.5",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -16,4 +16,5 @@ export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElemen
16
16
  * HTML or text content of the button. Essentially the label.
17
17
  */
18
18
  children: any;
19
+ width?: 'full' | 'fit-content' | number;
19
20
  }
@@ -5,4 +5,5 @@ export interface OutlineButtonProps extends React.ButtonHTMLAttributes<HTMLButto
5
5
  disabled?: boolean;
6
6
  children: any;
7
7
  withBg?: boolean;
8
+ width?: 'full' | 'fit-content' | number;
8
9
  }
@@ -23,4 +23,5 @@ export interface DatePickerProps {
23
23
  * Placeholder text for the datepicker field
24
24
  */
25
25
  placeholder?: string;
26
+ width?: number;
26
27
  }
@@ -22,4 +22,5 @@ export interface DateRangePickerProps {
22
22
  * Placeholder text for the date range picker field
23
23
  */
24
24
  showActionButtons?: boolean;
25
+ width?: number;
25
26
  }
@@ -33,4 +33,5 @@ export interface DropdownProps {
33
33
  * Boolean to specify whether the list is searchable
34
34
  */
35
35
  searchable?: boolean;
36
+ width?: number;
36
37
  }
@@ -20,4 +20,5 @@ export interface PasswordFieldProps extends React.InputHTMLAttributes<HTMLInputE
20
20
  * Placeholder text for the password field in the form
21
21
  */
22
22
  placeholder?: string;
23
+ width?: number;
23
24
  }
@@ -13,4 +13,5 @@ export interface SelectorProps {
13
13
  label: string;
14
14
  value?: string;
15
15
  } | null) => void;
16
+ width?: number;
16
17
  }
@@ -16,4 +16,5 @@ export interface TextAreaProps extends React.TextareaHTMLAttributes<HTMLTextArea
16
16
  * Initial value to be displayed
17
17
  */
18
18
  initialVal?: string | number;
19
+ width?: number;
19
20
  }
@@ -16,4 +16,5 @@ export interface TextFieldProps extends React.InputHTMLAttributes<HTMLInputEleme
16
16
  * The initial value of the field to be displayed in the component
17
17
  */
18
18
  initialVal?: string | number;
19
+ width?: number;
19
20
  }