Master
This commit is contained in:
parent
45a168d1b9
commit
f0a57e8aab
|
|
@ -327,7 +327,7 @@ const PropertyPaneConfigResponse: PropertyPaneConfigState = {
|
||||||
{
|
{
|
||||||
id: "9.7",
|
id: "9.7",
|
||||||
propertyName: "isVisible",
|
propertyName: "isVisible",
|
||||||
label: "Visibile",
|
label: "Visible",
|
||||||
controlType: "SWITCH",
|
controlType: "SWITCH",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -392,6 +392,12 @@ const PropertyPaneConfigResponse: PropertyPaneConfigState = {
|
||||||
label: "Visible",
|
label: "Visible",
|
||||||
controlType: "SWITCH",
|
controlType: "SWITCH",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: "11.6",
|
||||||
|
propertyName: "tableData",
|
||||||
|
label: "Enter data array",
|
||||||
|
controlType: "INPUT_TEXT",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ export function* evaluateJSONPathSaga(path: string): any {
|
||||||
return getDynamicBoundValue(dataTree, path);
|
return getDynamicBoundValue(dataTree, path);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function* executeAPIQueryActionSaga(apiAction: ActionPayload) {
|
export function* executeAPIQueryActionSaga(apiAction: { actionId: string }) {
|
||||||
const api: PageAction = yield select(getAction, apiAction.actionId);
|
const api: PageAction = yield select(getAction, apiAction.actionId);
|
||||||
|
|
||||||
const executeActionRequest: ExecuteActionRequest = {
|
const executeActionRequest: ExecuteActionRequest = {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import * as React from "react";
|
import React from "react";
|
||||||
import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget";
|
import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget";
|
||||||
import { WidgetType } from "../constants/WidgetConstants";
|
import { WidgetType } from "../constants/WidgetConstants";
|
||||||
import RadioGroupComponent from "../components/designSystems/blueprint/RadioGroupComponent";
|
import RadioGroupComponent from "../components/designSystems/blueprint/RadioGroupComponent";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user