digitinary-ui 1.0.73 → 1.0.76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ import 'react-datepicker/dist/react-datepicker.css';
3
+ import { DateProps } from '../../types/interfaces';
4
+ import './style.scss';
5
+ declare const ArenaDatePicker: FC<DateProps>;
6
+ export default ArenaDatePicker;
@@ -0,0 +1 @@
1
+ export { default } from './ArenaDatePicker';
@@ -0,0 +1,37 @@
1
+ import React from 'react';
2
+ import './style.scss';
3
+ interface DateRangePickerProps {
4
+ value: string | null;
5
+ onChange: (dateRange: string) => void;
6
+ label?: string | JSX.Element;
7
+ placeholder?: string;
8
+ showTimeInput?: boolean;
9
+ className?: string;
10
+ disabled?: boolean;
11
+ size?: string;
12
+ id?: string;
13
+ clearable?: boolean;
14
+ endDatePlaceholder: string;
15
+ startDatePlaceholder: string;
16
+ disableStartDate: boolean;
17
+ showMonthYearPicker: boolean;
18
+ disableEndDate: boolean;
19
+ maxStartDate?: string;
20
+ minStartDate?: string;
21
+ maxEndDate?: string;
22
+ minEndDate?: string;
23
+ required?: boolean;
24
+ labels?: {
25
+ month: string;
26
+ day: string;
27
+ Apply: string;
28
+ week: string;
29
+ Select: string;
30
+ Last: string;
31
+ Start_Date: string;
32
+ End_Date: string;
33
+ Selected_Date: string;
34
+ };
35
+ }
36
+ declare const ArenaDateRange: React.FC<DateRangePickerProps>;
37
+ export default ArenaDateRange;
@@ -0,0 +1 @@
1
+ export { default } from './ArenaDateRange';
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import './style.scss';
3
- type UploaderProps = {
4
- onChange?: (file: string | null | object | File, isDelete?: boolean) => void;
5
- acceptedFileExtensions?: string;
6
- size?: 'small' | 'medium' | 'large';
7
- multiple?: boolean;
8
- label?: string;
9
- placeholder?: string;
10
- isBase64?: boolean;
11
- disabled?: boolean;
12
- required?: boolean;
13
- errorMessage?: string;
14
- withPreview?: boolean;
15
- optional?: boolean;
16
- initialPreview?: string | File;
17
- fileName?: string;
18
- withFileName?: boolean;
19
- fullPagePreview?: boolean;
20
- logoName?: string;
21
- className?: string;
22
- };
23
- declare const Uploader: React.FC<UploaderProps>;
24
- export default Uploader;
@@ -22,27 +22,28 @@ export { default as SectionHead } from './SectionHead/SectionHead';
22
22
  export { default as SimpleLabelValue } from './SimpleLabelValue';
23
23
  export { default as Carousel } from './Carousel/Carousel';
24
24
  export { default as Tooltip } from './Tooltip/Tooltip';
25
- export { default as DonutChart } from './DonutChart/DonutChart';
26
25
  export { default as DropDown } from './DropDown/DropDown';
27
- export { default as LineChart } from './LineChart/LineChart';
28
- export { default as PieChart } from './PieChart/PieChart';
29
26
  export { default as JsonEditor } from './JsonEditor/JsonEditor';
27
+ export { default as JsonField } from './JsonField/JsonField';
30
28
  export { default as PhoneNumber } from './PhoneNumber/PhoneNumber';
31
29
  export { default as Stepper } from './Stepper/Stepper';
32
30
  export { default as SimpleCollapseSection } from './SimpleCollapseSection/SimpleCollapseSection';
33
- export { default as BarChart } from './BarChart/BarChart';
34
31
  export { default as Chips } from './Chips/Chips';
35
- export { default as JsonField } from './JsonField/JsonField';
36
- export { default as Uploader } from './Uploader/Uploader';
37
32
  export { default as MultiSelectWithChips } from './MultiSelectWithChips/MultiSelectWithChips';
38
33
  export { default as FieldArray } from './FieldArray/FieldArray';
39
34
  export { default as TimeTracker } from './TimeTracker/TimeTracker';
40
- export { default as DoubleBarChart } from './DoubleBarChart/DoubleBarChart';
41
35
  export { default as CounterComponent } from './CounterComponent/CounterComponent';
42
36
  export { default as ArenaLabel } from './ArenaLabel/ArenaLabel';
43
- export { default as FileUploader } from './FileUploader';
44
37
  export { default as ActionDropdown } from './ActionDropdown';
45
38
  export { default as InputRange } from './InputRange';
46
- export { default as StackedBarChart } from './StackedBarChart/StackedBarChart';
47
39
  export { default as NoDataFallback } from './NoDataFallback/NoDataFallback';
48
40
  export { default as EllipsisTextWithTooltip } from './EllipsisTextWithTooltip/EllipsisTextWithTooltip';
41
+ export { default as FileUploader } from './FileUploader';
42
+ export { default as DonutChart } from './DonutChart/DonutChart';
43
+ export { default as LineChart } from './LineChart/LineChart';
44
+ export { default as PieChart } from './PieChart/PieChart';
45
+ export { default as BarChart } from './BarChart/BarChart';
46
+ export { default as DoubleBarChart } from './DoubleBarChart/DoubleBarChart';
47
+ export { default as StackedBarChart } from './StackedBarChart/StackedBarChart';
48
+ export { default as ArenaDatePicker } from './ArenaDatePicker/index';
49
+ export { default as ArenaDateRange } from './ArenaDateRange/index';