@secondstaxorg/sscomp 1.5.4 → 1.5.6

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.4",
3
+ "version": "1.5.6",
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
  }