We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b74b52 commit 8fc5ceeCopy full SHA for 8fc5cee
src/components.d.ts
@@ -805,6 +805,14 @@ export namespace Components {
805
* Specifies the distribution of the items in the flexible layout.
806
*/
807
"renders": FlexibleLayoutRenders;
808
+ /**
809
+ * Update the selected widget from a `"tabbed"` type leaf. Only works if the parent leaf is `"tabbed"` type.
810
+ */
811
+ "updateSelectedWidget": (parentLeafId: string, newSelectedWidgetId: string) => Promise<void>;
812
813
+ * Update the widget info.
814
815
+ "updateWidgetInfo": (widgetId: string, properties: Partial<Omit<FlexibleLayoutWidget, "id" | "wasRendered">>) => Promise<void>;
816
}
817
interface ChFormCheckbox {
818
/**
0 commit comments