@secondstaxorg/sscomp 2.0.26 → 2.0.29

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": "2.0.26",
3
+ "version": "2.0.29",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -19,6 +19,10 @@ export interface AmountInputProps {
19
19
  * Boolean to specify whether the field is active or disabled
20
20
  */
21
21
  disabled?: boolean;
22
+ /**
23
+ * Set a currency and then lock the ability to change it
24
+ */
25
+ lockCurrency?: boolean;
22
26
  /**
23
27
  * Label of the field
24
28
  */
@@ -0,0 +1,3 @@
1
+ import { IconButtonProps } from "./type";
2
+ declare const IconButton: (props: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default IconButton;
@@ -0,0 +1 @@
1
+ export declare const Button: import("styled-components").StyledComponent<"button", any, {}, never>;
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ export interface IconButtonProps {
3
+ children: React.ReactNode;
4
+ onClick?: () => void;
5
+ disabled?: boolean;
6
+ isActive?: boolean;
7
+ transparentBg?: boolean;
8
+ }
@@ -86,3 +86,4 @@ export { default as MultipleFileUpload } from './MultipleFileUpload/MultipleFile
86
86
  export { default as AmountInput } from './AmountInput/AmountInput';
87
87
  export { default as ForgotPasswordForm } from './ForgotPasswordForm/ForgotPasswordForm';
88
88
  export { default as SetPassword } from './SetPassword/SetPassword';
89
+ export { default as IconButton } from './IconButton/IconButton';