0.9.25 • Published 2 years ago

omni-ui v0.9.25

Weekly downloads
39
License
ISC
Repository
-
Last release
2 years ago

Omni-ui

Пакет UI-компонентов для системы 2.0

Installation:

npm install --save omni-ui

Demo:

make storybook

или

npm run storybook

Usage:

Для совместимости с IE 11 нужно добавить импорт полифилла core-js в точку входа приложения + настройки .babelrc, как в данном пакете. import "core-js/stable";

import "core-js/stable";
import React from 'react';

import {
  Select
  DateRangePicker,
  DatePicker,
  DateTimeRangePicker,
  Toggle,
} from 'omni-ui';

import 'omni-ui/dist/default.css';


class App extends React.Component {
  render() {
    const options = [
      { value: 'red', label: 'Red' },
      { value: 'green', label: 'Green' },
      { value: 'yellow', label: 'Yellow' },
    ];

    return (
      <>
        Multiselect:
        <Select
          options={options}
          isMulti
          onChange={r => console.log('multiselect:', r)}
        />

        Select:
        <Select
          options={options}
          onChange={r => console.log('select:', r)}
        />

        DateRangePicker:
        <div>
          <DateRangePicker options={{}} onChange={r => console.log('daterange:', r)} />
        </div>

        DatePicker:
        <div>
          <DatePicker options={{}} onChange={r => console.log('date:', r)} />
        </div>

        DateTimeRangePicker:
        <div>
          <DateTimeRangePicker options={{}} onChange={r => console.log('datetimerange:', r)} />
        </div>

        Toggle button:
        <div>
          <Toggle leftLabel='left' rightLabel='right' onChange={r => console.log('toggle:', r)} />
        </div>
      </>
    );
  }
}

Specification

0.9.12

2 years ago

0.9.13

2 years ago

0.9.14

2 years ago

0.9.15

2 years ago

0.9.16

2 years ago

0.9.17

2 years ago

0.9.18

2 years ago

0.9.19

2 years ago

0.9.23

2 years ago

0.9.24

2 years ago

0.9.25

2 years ago

0.9.20

2 years ago

0.9.21

2 years ago

0.9.22

2 years ago

0.9.11

2 years ago

0.9.10

2 years ago

0.9.8

2 years ago

0.9.7

2 years ago

0.9.9

2 years ago

0.9.4

2 years ago

0.9.3

2 years ago

0.9.6

2 years ago

0.9.5

2 years ago

0.9.2

3 years ago

0.9.0

3 years ago

0.8.11

3 years ago

0.8.10

3 years ago

0.8.9

3 years ago

0.8.8

3 years ago

0.8.6

3 years ago

0.8.5

3 years ago

0.8.4

3 years ago

0.8.3

3 years ago

0.8.2

3 years ago

0.8.1

3 years ago

0.7.35

3 years ago

0.7.34

3 years ago

0.8.0

3 years ago

0.7.33

3 years ago

0.7.32

3 years ago

0.7.31

3 years ago

0.7.30

3 years ago

0.7.24

3 years ago

0.7.23

3 years ago

0.7.29

3 years ago

0.7.26

3 years ago

0.7.25

3 years ago

0.7.28

3 years ago

0.7.27

3 years ago

0.7.22

3 years ago

0.7.21

3 years ago

0.7.20

3 years ago

0.7.19

3 years ago

0.7.18

3 years ago

0.7.17

3 years ago

0.7.16

3 years ago

0.7.15

3 years ago

0.7.14

4 years ago

0.7.13

4 years ago

0.7.12

4 years ago

0.7.11

4 years ago

0.7.10

4 years ago

0.7.9

4 years ago

0.7.8

4 years ago

0.7.7

4 years ago

0.7.6

4 years ago

0.7.5

4 years ago

0.7.4

4 years ago

0.7.3

4 years ago

0.7.2

4 years ago

0.7.1

4 years ago

0.7.0

4 years ago

0.6.0

4 years ago

0.5.0

4 years ago

0.4.6

4 years ago

0.4.5

4 years ago

0.4.4

5 years ago

0.4.3

5 years ago

0.4.2

5 years ago

0.4.1

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago