mayak-common-library 0.0.729 → 0.0.731

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.mts CHANGED
@@ -1317,7 +1317,7 @@ type Values = {
1317
1317
  value: string | number[];
1318
1318
  title: string;
1319
1319
  }[];
1320
- interface ToggleButtonsMultipleProps extends ToggleButtonGroupProps$1 {
1320
+ interface ToggleButtonsMultipleProps {
1321
1321
  values: Values;
1322
1322
  textView?: boolean;
1323
1323
  collapseOnClick?: boolean;
@@ -1327,6 +1327,9 @@ interface ToggleButtonsMultipleProps extends ToggleButtonGroupProps$1 {
1327
1327
  fixWidth?: boolean;
1328
1328
  arrayValueFormat?: boolean;
1329
1329
  name: any;
1330
+ onChange: (event: MouseEvent<HTMLElement>, value: any) => void;
1331
+ value?: any;
1332
+ exclusive?: boolean;
1330
1333
  }
1331
1334
  declare const ToggleButtonsWithLabel: FC<ToggleButtonsMultipleProps>;
1332
1335
 
package/dist/index.d.ts CHANGED
@@ -1317,7 +1317,7 @@ type Values = {
1317
1317
  value: string | number[];
1318
1318
  title: string;
1319
1319
  }[];
1320
- interface ToggleButtonsMultipleProps extends ToggleButtonGroupProps$1 {
1320
+ interface ToggleButtonsMultipleProps {
1321
1321
  values: Values;
1322
1322
  textView?: boolean;
1323
1323
  collapseOnClick?: boolean;
@@ -1327,6 +1327,9 @@ interface ToggleButtonsMultipleProps extends ToggleButtonGroupProps$1 {
1327
1327
  fixWidth?: boolean;
1328
1328
  arrayValueFormat?: boolean;
1329
1329
  name: any;
1330
+ onChange: (event: MouseEvent<HTMLElement>, value: any) => void;
1331
+ value?: any;
1332
+ exclusive?: boolean;
1330
1333
  }
1331
1334
  declare const ToggleButtonsWithLabel: FC<ToggleButtonsMultipleProps>;
1332
1335