PromucFlow_constructor/app/client/src/constants/HelpConstants.ts
Paul Li 4f6a62fa53
Icon Button Widget (#5723)
Introducing the **Floating action button / Icon button**. Now you can use this to show small actions as icons. We have added a bunch of styling customisation to this as well. You can bind an onClick action to this and easily trigger an even. The component also automatically resizes within the widget as you scale it while maintaining the right aspect ratio.
2021-08-05 16:46:26 +05:30

148 lines
3.0 KiB
TypeScript

export const HelpMap = {
CONTAINER_WIDGET: {
path: "/widget-reference/container",
searchKey: "Container",
},
CHECKBOX_WIDGET: {
path: "/widget-reference/checkbox",
searchKey: "Checkbox",
},
BUTTON_WIDGET: {
path: "/widget-reference/button",
searchKey: "Button",
},
TEXT_WIDGET: {
path: "/widget-reference/text",
searchKey: "Text",
},
IMAGE_WIDGET: {
path: "/widget-reference/image",
searchKey: "Image",
},
INPUT_WIDGET: {
path: "/widget-reference/input",
searchKey: "Input",
},
DATE_PICKER_WIDGET: {
path: "/widget-reference/datepicker",
searchKey: "DatePicker",
},
DATE_PICKER_WIDGET2: {
path: "/widget-reference/datepicker",
searchKey: "DatePicker",
},
TABLE_WIDGET: {
path: "/widget-reference/table",
searchKey: "Table",
},
VIDEO_WIDGET: {
path: "/widget-reference/video",
searchKey: "Video",
},
DROP_DOWN_WIDGET: {
path: "/widget-reference/dropdown",
searchKey: "Select",
},
RADIO_GROUP_WIDGET: {
path: "/widget-reference/radio",
searchKey: "Radio",
},
RICH_TEXT_EDITOR_WIDGET: {
path: "",
searchKey: "Rich Text Editor",
},
CHART_WIDGET: {
path: "/widget-reference/chart",
searchKey: "Chart",
},
FORM_WIDGET: {
path: "/widget-reference/form",
searchKey: "Form",
},
FILE_PICKER_WIDGET: {
path: "/widget-reference/filepicker",
searchKey: "File picker",
},
FORM_BUTTON_WIDGET: {
path: "",
searchKey: "",
},
CANVAS_WIDGET: {
path: "",
searchKey: "",
},
ICON_WIDGET: {
path: "",
searchKey: "",
},
SKELETON_WIDGET: {
path: "",
searchKey: "",
},
TABS_WIDGET: {
path: "",
searchKey: "Tabs",
},
TABS_MIGRATOR_WIDGET: {
path: "",
searchKey: "",
},
MODAL_WIDGET: {
path: "",
searchKey: "",
},
MAP_WIDGET: {
path: "",
searchKey: "Map",
},
API_MAIN: {
path: "/core-concepts/apis",
searchKey: "Apis",
},
API_BINDING: {
path: "/core-concepts/capturing-data-write",
searchKey: "Taking Inputs from Widgets",
},
DATASOURCE_FORM: {
path: "/core-concepts/connecting-to-data-sources/connecting-to-databases",
searchKey: "Connecting to databases",
},
LIST_WIDGET: {
path: "/widget-reference/list",
searchKey: "List",
},
SWITCH_WIDGET: {
path: "/widget-reference/switch",
searchKey: "Switch",
},
MULTI_SELECT_WIDGET: {
path: "",
searchKey: "",
},
RATE_WIDGET: {
path: "/widget-reference/rate",
searchKey: "Rate",
},
IFRAME_WIDGET: {
path: "/widget-reference/iframe",
searchKey: "Iframe",
},
DIVIDER_WIDGET: {
path: "/widget-reference/divider",
searchKey: "Divider",
},
MENU_BUTTON_WIDGET: {
path: "/widget-reference/menu-button",
searchKey: "Menu Button",
},
ICON_BUTTON_WIDGET: {
path: "/widget-reference/icon-button",
searchKey: "Icon Button",
},
};
export const HelpBaseURL = "https://docs.appsmith.com";
export const HELP_MODAL_WIDTH = 240;
export const HELP_MODAL_HEIGHT = 206;