* dip * test cases first commit * Adding Tabs migrator. * fixing tests. * bug fix. * selected tab fix * missed commit * fixing bugs * Fixing tab name bugs. * close property pane when dragging or resizing * migration changes. * release rebase changes. * adding List factory * remove dynamic bindings on deleting tabs. * Adding validation messages for nested properties as well * fixing validation issue. * tabs visibility validation. * missed commit * Fixing broken cypress tests. * Fixing broken tests.
124 lines
2.5 KiB
TypeScript
124 lines
2.5 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: "Dropdown",
|
|
},
|
|
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",
|
|
},
|
|
};
|
|
|
|
export const HelpBaseURL = "https://docs.appsmith.com";
|
|
|
|
export const HELP_MODAL_WIDTH = 240;
|
|
export const HELP_MODAL_HEIGHT = 206;
|