@kth/style 0.0.11 → 0.0.12

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.
@@ -24,7 +24,7 @@ interface OptionProps {
24
24
  /** Human-readable label for the option */
25
25
  children: string;
26
26
  /** True if the option should be disabled */
27
- disabled: boolean;
27
+ disabled?: boolean;
28
28
  }
29
29
  interface OptionGroupProps {
30
30
  label: string;
@@ -24,7 +24,7 @@ interface OptionProps {
24
24
  /** Human-readable label for the option */
25
25
  children: string;
26
26
  /** True if the option should be disabled */
27
- disabled: boolean;
27
+ disabled?: boolean;
28
28
  }
29
29
  interface OptionGroupProps {
30
30
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kth/style",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "scripts": {
@@ -47,5 +47,5 @@
47
47
  "peerDependencies": {
48
48
  "react": "*"
49
49
  },
50
- "gitHead": "f4a1be0abfad78482f4b311317fe59b63f1a3042"
50
+ "gitHead": "6774939491027282851d19e5ae9022183f98cfe5"
51
51
  }