forstok-ui-lib 5.1.4 → 5.1.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/dist/index.d.ts CHANGED
@@ -299,7 +299,7 @@ type TOption = {
299
299
  readonly channel?: Omit<TChannel, 'stores'>;
300
300
  postalCode?: string;
301
301
  localId?: string;
302
- isDisabled?: boolean;
302
+ isDisabled?: boolean | null;
303
303
  option?: {
304
304
  readonly value: any;
305
305
  readonly label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "5.1.4",
3
+ "version": "5.1.5",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -9,7 +9,7 @@ export type TOption = {
9
9
  readonly channel?: Omit<TChannel, 'stores'>
10
10
  postalCode?: string
11
11
  localId?: string
12
- isDisabled?: boolean
12
+ isDisabled?: boolean | null
13
13
  option?: {
14
14
  readonly value: any
15
15
  readonly label: string