PromucFlow_constructor/app/client/src/widgets/ButtonWidget/index.ts

32 lines
793 B
TypeScript
Raw Normal View History

import Widget from "./widget";
import IconSVG from "./icon.svg";
import { GRID_DENSITY_MIGRATION_V1 } from "widgets/constants";
export const CONFIG = {
type: Widget.getWidgetType(),
name: "Button",
iconSVG: IconSVG,
needsMeta: true,
defaults: {
text: "Submit",
buttonStyle: "PRIMARY",
buttonVariant: "SOLID",
rows: 1 * GRID_DENSITY_MIGRATION_V1,
columns: 4 * GRID_DENSITY_MIGRATION_V1,
widgetName: "Button",
isDisabled: false,
isVisible: true,
isDefaultClickDisabled: true,
recaptchaV2: false,
version: 1,
},
properties: {
derived: Widget.getDerivedPropertiesMap(),
default: Widget.getDefaultPropertiesMap(),
meta: Widget.getMetaPropertiesMap(),
config: Widget.getPropertyPaneConfig(),
},
};
export default Widget;