1.0.6 • Published 6 years ago

aor-datetime-input v1.0.6

Weekly downloads
46
License
MIT
Repository
github
Last release
6 years ago

aor-datetime-input

DateTimeInput component for Admin-on-Rest. Some tips:

  • TimePicker has not prop container and it's always as the dailog(by therminology DatePicker), and so container='dialog' for DatePicker is hard-code option.
  • Also a button to clear field is placed to component.
  • For DatePicker and TimePicker was set hard-code style to place its in one line.

Component will work in two steps: 1) Select date

date

2) Select time

time

Just try it!

Installation

npm install aor-datetime-input --save

Usage

import React from 'react';
import {
    Edit,
    TextInput,
    LongTextInput,
    TabbedForm,
    FormTab,
} from 'admin-on-rest'
import DateTimeInput from 'aor-datetime-input';

export const NewsEdit = (props) => (
  <Edit title={<NewsTitle />} {...props}>
    <TabbedForm>
      <FormTab>
        <LongTextInput source="title" validate={required} />
        <DateTimeInput source="publish_date" validate={required} />
      </FormTab>
    </TabbedForm>
  </Edit>
);

Development

You can build sources:

npm run build

License

This library is licensed under the MIT Licence.

Copyright (c) 2017 iamsimakov.

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago