mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 15:07:23 +00:00
* Fix labels of component properties * Fix labels of component properties (table) * Fix inspector urlparms creation * Revert button spec changes * Fix table regression
18 lines
515 B
JavaScript
18 lines
515 B
JavaScript
export const datePickerText = {
|
|
customValidation: (name, message) => {
|
|
return [
|
|
"{{",
|
|
`moment(components.${name}.value,'DD/MM/YYYY').isAfter(moment()) ? true : '${message}'}}`,
|
|
];
|
|
},
|
|
|
|
datepicker1: "datepicker1",
|
|
labelDefaultValue: "Default value",
|
|
labelformat: "Format",
|
|
labelEnableDateSection: "Enable date selection?",
|
|
labelEnableTimeSection: "Enable time selection?",
|
|
labelDisabledDates: "Disabled dates",
|
|
|
|
noEventMessage: "No event handlers",
|
|
defaultTime: "12:00 AM",
|
|
};
|