@secondstaxorg/sscomp 2.0.99 → 2.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "2.0.99",
3
+ "version": "2.1.01",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -1,2 +1,4 @@
1
1
  export declare const MainContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
2
- export declare const SelectorItem: import("styled-components").StyledComponent<"button", any, {}, never>;
2
+ export declare const SelectorItem: import("styled-components").StyledComponent<"button", any, {
3
+ disabled?: boolean | undefined;
4
+ }, never>;
@@ -12,4 +12,8 @@ export interface ConsentCheckboxProps {
12
12
  * Initial state of the checkbox
13
13
  */
14
14
  isChecked?: boolean;
15
+ /**
16
+ * Make the checkbox active or disabled
17
+ */
18
+ disabled?: boolean;
15
19
  }