PromucFlow_constructor/app/client/src/constants/HelpConstants.ts
Paul Li 38ffe86290
Rate widget (#4891)
* FEATURE-3357 : Rate Widget

-- Create the first MVP of rate widget

* FEATURE-3357 : Rate Widget

-- Change the widget name into rating
-- Change the widget icon
-- Fix the overflow issue in case max count is big
-- Fix the issue in case default rate is zero
-- Add validations for maxCount and defaultRate

* FEATURE-3357 : Rate Widget

-- Fix an issue : Stars is cut off if maxCount is greater than 20
-- Add test cases for two validation types, RATE_DEFAULT_RATE and RATE_MAX_COUNT

* FEATURE-3357 : Rate Widget

-- Add expected data type for tooltip field

* FEATURE-3357 : Rate Widget

-- Expose maxCount

* FEATURE-3357 : Rate Widget

-- Change contents of isAllowHalf property
-- Adjust alignment of stars dynamically
-- Decrease default widget width

* FEATURE-3357 : Rate Widget

-- Remove a unnecessary comment block
2021-07-02 15:25:50 +05:30

132 lines
2.7 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",
},
RATE_WIDGET: {
path: "/widget-reference/rate",
searchKey: "Rate",
},
IFRAME_WIDGET: {
path: "/widget-reference/iframe",
searchKey: "Iframe",
},
};
export const HelpBaseURL = "https://docs.appsmith.com";
export const HELP_MODAL_WIDTH = 240;
export const HELP_MODAL_HEIGHT = 206;