@bryntum/chart-react-thin 7.3.0 → 7.3.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/lib/BryntumChart.d.ts +1 -1
- package/package.json +1 -1
- package/src/BryntumChart.tsx +1 -1
package/lib/BryntumChart.d.ts
CHANGED
|
@@ -147,7 +147,7 @@ export declare type BryntumChartProps = {
|
|
|
147
147
|
}) => void) | string;
|
|
148
148
|
onBeforeHide?: ((event: {
|
|
149
149
|
source: Widget;
|
|
150
|
-
}) =>
|
|
150
|
+
}) => boolean | void) | string;
|
|
151
151
|
onBeforeSetRecord?: ((event: {
|
|
152
152
|
source: Container;
|
|
153
153
|
record: Model;
|
package/package.json
CHANGED
package/src/BryntumChart.tsx
CHANGED
|
@@ -720,7 +720,7 @@ export type BryntumChartProps = {
|
|
|
720
720
|
* @param {object} event Event object
|
|
721
721
|
* @param {Core.widget.Widget} event.source The widget being hidden.
|
|
722
722
|
*/
|
|
723
|
-
onBeforeHide? : ((event: { source: Widget }) =>
|
|
723
|
+
onBeforeHide? : ((event: { source: Widget }) => boolean|void)|string
|
|
724
724
|
/**
|
|
725
725
|
* Fired before this container will load record values into its child fields. This is useful if you
|
|
726
726
|
* want to modify the UI before data is loaded (e.g. set some input field to be readonly)
|