Home Reference Source

src/components/_classes/widgetcomponent/editForm/WidgetComponent.edit.validation.js

export default [
  {
    type: 'checkbox',
    input: true,
    key: 'validate.strictDateValidation',
    label: 'Enable Strict Date Validation',
    tooltip: 'Makes sure the date inputted for this field is full and valid.',
    weight: 50,
    customConditional(context) {
      return context.data.widget && (context.data.widget.type === 'calendar');
    }
  }
];