19 lines
390 B
TypeScript
19 lines
390 B
TypeScript
|
|
import { RenderModes, WidgetTypes } from "constants/WidgetConstants";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
dummyWidgetProps: {
|
||
|
|
bottomRow: 0,
|
||
|
|
isLoading: false,
|
||
|
|
leftColumn: 0,
|
||
|
|
parentColumnSpace: 0,
|
||
|
|
parentRowSpace: 0,
|
||
|
|
renderMode: RenderModes.CANVAS,
|
||
|
|
rightColumn: 0,
|
||
|
|
topRow: 0,
|
||
|
|
type: WidgetTypes.SKELETON_WIDGET,
|
||
|
|
version: 0,
|
||
|
|
widgetId: "",
|
||
|
|
widgetName: "",
|
||
|
|
},
|
||
|
|
};
|