@tap-payments/os-micro-frontend-shared 0.1.175 → 0.1.176

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.
Files changed (25) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +12 -12
  3. package/build/components/Menu/Menu.js +9 -4
  4. package/build/components/Menu/style.d.ts +6 -1
  5. package/build/components/Menu/style.js +12 -1
  6. package/build/components/RangeCalender/RangeCalender.d.ts +2 -2
  7. package/build/components/RangeCalender/RangeCalender.js +8 -17
  8. package/build/components/RangeCalender/components/CustomTimepicker/CustomTimepicker.d.ts +6 -2
  9. package/build/components/RangeCalender/components/CustomTimepicker/CustomTimepicker.js +27 -44
  10. package/build/components/RangeCalender/components/CustomTimepicker/style.d.ts +1 -1
  11. package/build/components/RangeCalender/components/RangeDatepicker/RangeDatepicker.d.ts +9 -1
  12. package/build/components/RangeCalender/components/RangeDatepicker/index.d.ts +0 -1
  13. package/build/components/RangeCalender/components/RangeDatepicker/index.js +0 -1
  14. package/build/components/RangeCalender/utils.d.ts +1 -3
  15. package/build/components/RangeCalender/utils.js +0 -2
  16. package/build/components/Timepicker/Timepicker.d.ts +1 -2
  17. package/build/components/Timepicker/Timepicker.js +2 -2
  18. package/build/components/Timepicker/index.d.ts +0 -1
  19. package/build/components/Timepicker/index.js +0 -1
  20. package/build/components/Timepicker/style.d.ts +0 -1
  21. package/build/components/Timepicker/style.js +1 -1
  22. package/build/components/Widget/useScrollWithShadow.js +2 -1
  23. package/package.json +166 -166
  24. package/build/components/RangeCalender/components/RangeDatepicker/type.d.ts +0 -9
  25. package/build/components/RangeCalender/components/RangeDatepicker/type.js +0 -1
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Tap Payments
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Tap Payments
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
- # os-micro-frontend-shared
2
-
3
- ## Publishing Workflow
4
-
5
- 1. Update version in package.json
6
- 2. Commit changes
7
- 3. Create and push a tag:
8
-
9
- ```bash
10
- npm version patch # or minor, major
11
- git push origin main --tags
12
- ```
1
+ # os-micro-frontend-shared
2
+
3
+ ## Publishing Workflow
4
+
5
+ 1. Update version in package.json
6
+ 2. Commit changes
7
+ 3. Create and push a tag:
8
+
9
+ ```bash
10
+ npm version patch # or minor, major
11
+ git push origin main --tags
12
+ ```
@@ -9,12 +9,17 @@ var __rest = (this && this.__rest) || function (s, e) {
9
9
  }
10
10
  return t;
11
11
  };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- import { memo } from 'react';
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ import { memo, Children } from 'react';
14
14
  import Popper from '@mui/material/Popper';
15
- import { Dropdown } from './style';
15
+ import { useScrollWithShadow } from '../Widget/useScrollWithShadow';
16
+ import { listShadowBg } from '../../constants/index.js';
17
+ import { StyledDropdown, ShadowBackground } from './style';
16
18
  function Menu(_a) {
17
19
  var { open, anchorEl, children, sx, placement, popperSx } = _a, props = __rest(_a, ["open", "anchorEl", "children", "sx", "placement", "popperSx"]);
18
- return (_jsx(Popper, Object.assign({ open: open, anchorEl: anchorEl, placement: placement || 'bottom-start', sx: popperSx }, props, { children: _jsx(Dropdown, Object.assign({ className: "MuiPopper-dropdown", sx: sx }, { children: children })) }), "menu"));
20
+ const { onScrollHandler, showShadow } = useScrollWithShadow();
21
+ const childrenCount = Children.count(children);
22
+ const shouldShowShadow = childrenCount > 11 && showShadow;
23
+ return (_jsx(Popper, Object.assign({ open: open, anchorEl: anchorEl, placement: placement || 'bottom-start', sx: popperSx }, props, { children: _jsxs(StyledDropdown, Object.assign({ onScroll: onScrollHandler, className: "MuiPopper-dropdown", sx: sx }, { children: [children, shouldShowShadow && _jsx(ShadowBackground, { component: "img", src: listShadowBg })] })) }), "menu"));
19
24
  }
20
25
  export default memo(Menu);
@@ -1,4 +1,9 @@
1
1
  /// <reference types="react" />
2
- export declare const Dropdown: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
2
+ export declare const StyledDropdown: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
3
  ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
4
4
  }, keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
5
+ export declare const ShadowBackground: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
6
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
7
+ }, keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
8
+ src: string;
9
+ }, {}, {}>;
@@ -1,6 +1,6 @@
1
1
  import Box from '@mui/material/Box';
2
2
  import { styled } from '@mui/material/styles';
3
- export const Dropdown = styled(Box)(({ theme }) => ({
3
+ export const StyledDropdown = styled(Box)(({ theme }) => ({
4
4
  borderRadius: theme.spacing(0.5),
5
5
  background: theme.palette.background.default,
6
6
  width: 'max-content',
@@ -8,7 +8,18 @@ export const Dropdown = styled(Box)(({ theme }) => ({
8
8
  boxShadow: theme.shadows[11],
9
9
  display: 'flex',
10
10
  flexDirection: 'column',
11
+ overflowY: 'scroll',
12
+ maxHeight: '432px',
11
13
  '.menu-item + .menu-item': {
12
14
  borderTop: `1px solid ${theme.palette.divider}`,
13
15
  },
14
16
  }));
17
+ export const ShadowBackground = styled(Box)(() => ({
18
+ width: '100%',
19
+ height: '34px',
20
+ objectFit: 'cover',
21
+ position: 'fixed',
22
+ bottom: 0,
23
+ pointerEvents: 'none',
24
+ zIndex: 999999,
25
+ }));
@@ -1,8 +1,8 @@
1
1
  import { MouseEvent } from 'react';
2
2
  import { PopperProps } from '@mui/material/Popper';
3
- import { SxProps } from '@mui/system';
4
3
  import type { CalenderMode, Timezone } from '../../types/index.js';
5
- import { RangeDatepickerProps } from './components/RangeDatepicker';
4
+ import { SxProps } from '@mui/system';
5
+ import { RangeDatepickerProps } from './components/RangeDatepicker/RangeDatepicker';
6
6
  interface RangeCalendarProps {
7
7
  defaultDate: [Date, Date];
8
8
  onDateChange: (date: [Date, Date], timezoneOffset?: number) => void;
@@ -13,10 +13,8 @@ import QuickFilters from './components/QuickFilters';
13
13
  import RangeDatePicker from './components/RangeDatepicker';
14
14
  import CustomTimezone from './components/Timezone';
15
15
  import { ButtonsWrapper, CalenderWrapper, CancelButton, FiltersArea, Footer, Main, OkayButton, SelectedDate, TimeZone, Settings } from './style';
16
- import CustomTimePicker from './components/CustomTimepicker';
17
- import { getEndOfDate, getStartOfDate } from './utils';
18
16
  function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalendarModeSwitch, numberOfMonths, noTimezone, noQuickFilter, maxDateRange, onCalendarGroupChange, groupBy, timezone, onChangeTimezoneHistory, onChangeTimezone, defaultTimezone, browserTimezone, renderCalendarButton, mainSx, popperProps, rangeDatePickerProps, }) {
19
- const [dates, setDates] = useState([new DateObject(defaultDate === null || defaultDate === void 0 ? void 0 : defaultDate[0]), new DateObject(defaultDate === null || defaultDate === void 0 ? void 0 : defaultDate[1])]);
17
+ const [dates, setDates] = useState([new DateObject(defaultDate[0]), new DateObject(defaultDate[1])]);
20
18
  const [values, setValues] = useState(dates);
21
19
  const [selectedTimezone, setSelectedTimezone] = useState(timezone);
22
20
  const [selectedGroupBy, setSelectedGroupBy] = useState(groupBy || 'day');
@@ -37,7 +35,7 @@ function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalend
37
35
  if (!open) {
38
36
  if (numberOfMonths === 1)
39
37
  return;
40
- setValues([new DateObject(defaultDate === null || defaultDate === void 0 ? void 0 : defaultDate[0]), new DateObject(defaultDate === null || defaultDate === void 0 ? void 0 : defaultDate[1])]);
38
+ setValues([new DateObject(defaultDate[0]), new DateObject(defaultDate[1])]);
41
39
  }
42
40
  }, [open]);
43
41
  useEffect(() => {
@@ -47,20 +45,13 @@ function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalend
47
45
  onChangeTimezone === null || onChangeTimezone === void 0 ? void 0 : onChangeTimezone(newTimezone);
48
46
  onChangeTimezoneHistory === null || onChangeTimezoneHistory === void 0 ? void 0 : onChangeTimezoneHistory(newTimezone);
49
47
  };
50
- const formatDate = (date) => new Date(date.toDate().toLocaleString('en-us', {
48
+ const formatDate = (date) => new Date(date.setHour(new Date().getHours()).setMinute(new Date().getMinutes()).setSecond(new Date().getSeconds()).toDate().toLocaleString('en-us', {
51
49
  timeZone: selectedTimezone === null || selectedTimezone === void 0 ? void 0 : selectedTimezone.timezone,
52
50
  }));
53
51
  const submitDate = () => {
54
52
  setDates(values);
55
53
  onCloseCalender();
56
- let newDates;
57
- if (values[0].dayOfYear === values[1].dayOfYear) {
58
- newDates = [formatDate(values[0]), formatDate(values[1])];
59
- }
60
- else {
61
- newDates = [formatDate(getStartOfDate(values[0])), formatDate(getEndOfDate(values[1]))];
62
- }
63
- onDateChange([newDates[0], newDates[1]], timezone === null || timezone === void 0 ? void 0 : timezone.offset);
54
+ onDateChange([formatDate(values[0]), formatDate(values[1] || values[0])], timezone === null || timezone === void 0 ? void 0 : timezone.offset);
64
55
  onCalendarGroupChange === null || onCalendarGroupChange === void 0 ? void 0 : onCalendarGroupChange(selectedGroupBy || 'day');
65
56
  updateTimezone(selectedTimezone);
66
57
  };
@@ -74,8 +65,8 @@ function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalend
74
65
  setValues(newDate);
75
66
  return;
76
67
  }
77
- const startDate = getStartOfDate(newDate[0]).toDate();
78
- const endDate = getEndOfDate(newDate[1]).toDate();
68
+ const startDate = newDate[0].toDate();
69
+ const endDate = newDate[1].toDate();
79
70
  const numberOfDays = dayjs(endDate).diff(startDate, 'day');
80
71
  if (numberOfDays <= maxDateRange) {
81
72
  setValues(newDate);
@@ -88,7 +79,7 @@ function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalend
88
79
  }, 3000);
89
80
  };
90
81
  const onChangeQuickFilter = (newValues) => {
91
- setValues([getStartOfDate(newValues[0]), getEndOfDate(newValues[1])]);
82
+ setValues(newValues);
92
83
  if (calendarRef.current)
93
84
  calendarRef.current.set({ date: newValues[0] });
94
85
  };
@@ -97,6 +88,6 @@ function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalend
97
88
  onCloseCalender();
98
89
  } })), _jsx(Popper, Object.assign({ open: open, anchorEl: anchorEl, placement: "bottom-end" }, popperProps, { children: _jsxs(CalenderWrapper, { children: [!noQuickFilter && (_jsxs(FiltersArea, { children: [_jsx(QuickFilters, { onChange: onChangeQuickFilter, isHijri: isHijri }), _jsxs(Settings, { children: [groupBy && (_jsx(GroupBy, { groupBy: selectedGroupBy, isCalenderOpen: open, onUpdate: (group) => {
99
90
  setSelectedGroupBy(group);
100
- } })), _jsx(Hijri, { isHijri: isHijri, onCalendarModeSwitch: onCalendarModeSwitch })] })] })), _jsxs(Box, Object.assign({ sx: { display: 'flex', flexDirection: 'column', justifyContent: 'space-between' } }, { children: [_jsx(RangeDatePicker, Object.assign({ values: values, onChange: onChange, isHijri: isHijri, ref: calendarRef, numberOfMonths: numberOfMonths }, rangeDatePickerProps)), _jsx(Collapse, Object.assign({ in: isError && Boolean(maxDateRange) }, { children: _jsx(Error, { error: t('dateRangeError', { number: maxDateRange }), sx: { marginInline: '16px', marginBottom: '16px' } }) })), _jsxs(Footer, Object.assign({ sx: { borderBottomLeftRadius: '8px' } }, { children: [!noTimezone ? (_jsx(TimeZone, { children: _jsx(CustomTimezone, { onChange: setSelectedTimezone, selectedTimezone: selectedTimezone, defaultTimezone: defaultTimezone, browserTimezone: browserTimezone }, String(open)) })) : (_jsx("div", {})), new DateObject(values[0]).dayOfYear === new DateObject(values[1]).dayOfYear && (_jsx(CustomTimePicker, { values: values, setValues: setValues })), _jsxs(ButtonsWrapper, { children: [_jsx(CancelButton, Object.assign({ variant: "contained", onClick: onCloseCalender }, { children: t('cancel') })), _jsx(OkayButton, Object.assign({ variant: "contained", onClick: submitDate }, { children: t('okay') }))] })] }))] }))] }) }))] })));
91
+ } })), _jsx(Hijri, { isHijri: isHijri, onCalendarModeSwitch: onCalendarModeSwitch })] })] })), _jsxs(Box, Object.assign({ sx: { display: 'flex', flexDirection: 'column', justifyContent: 'space-between' } }, { children: [_jsx(RangeDatePicker, Object.assign({ values: values, onChange: onChange, isHijri: isHijri, ref: calendarRef, numberOfMonths: numberOfMonths }, rangeDatePickerProps)), _jsx(Collapse, Object.assign({ in: isError && Boolean(maxDateRange) }, { children: _jsx(Error, { error: t('dateRangeError', { number: maxDateRange }), sx: { marginInline: '16px', marginBottom: '16px' } }) })), _jsxs(Footer, Object.assign({ sx: { borderBottomLeftRadius: '8px' } }, { children: [!noTimezone ? (_jsx(TimeZone, { children: _jsx(CustomTimezone, { onChange: setSelectedTimezone, selectedTimezone: selectedTimezone, defaultTimezone: defaultTimezone, browserTimezone: browserTimezone }, String(open)) })) : (_jsx("div", {})), _jsxs(ButtonsWrapper, { children: [_jsx(CancelButton, Object.assign({ variant: "contained", onClick: onCloseCalender }, { children: t('cancel') })), _jsx(OkayButton, Object.assign({ variant: "contained", onClick: submitDate }, { children: t('okay') }))] })] }))] }))] }) }))] })));
101
92
  }
102
93
  export default RangeCalender;
@@ -1,7 +1,11 @@
1
+ import { DateObject } from 'react-multi-date-picker';
1
2
  import { Dates } from '../../type';
2
3
  interface CustomTimePickerProps {
3
4
  values: Dates;
4
- setValues: (values: Dates) => void;
5
+ startTime: DateObject;
6
+ endTime: DateObject;
7
+ onChangeStartTime: (value: DateObject) => void;
8
+ onChangeEndTime: (value: DateObject) => void;
5
9
  }
6
- declare function CustomTimePicker({ values, setValues }: CustomTimePickerProps): import("react/jsx-runtime").JSX.Element;
10
+ declare function CustomTimePicker({ values, onChangeStartTime, onChangeEndTime, startTime, endTime }: CustomTimePickerProps): import("react/jsx-runtime").JSX.Element;
7
11
  export default CustomTimePicker;
@@ -1,50 +1,33 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { useState } from 'react';
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { useState, useEffect } from 'react';
3
3
  import { useTranslation } from 'react-i18next';
4
- import { DateObject } from 'react-multi-date-picker';
4
+ import DatePicker, { DateObject } from 'react-multi-date-picker';
5
+ import TimePicker from 'react-multi-date-picker/plugins/time_picker';
5
6
  import { IOSSwitch } from '../../../index.js';
6
- import TimePicker, { convertTo12Hour, maxHour } from '../../../Timepicker';
7
7
  import { AllDayStyled, TimeArea, TimePickerWrapper, TimeAreaInner } from './style';
8
- import { getEndOfDate, getStartOfDate } from '../../utils';
9
- function CustomTimePicker({ values, setValues }) {
8
+ function CustomTimePicker({ values, onChangeStartTime, onChangeEndTime, startTime, endTime }) {
9
+ const [isAllDay, setIsAllDay] = useState(false);
10
+ const [lastTime, setLastTime] = useState([startTime, endTime]);
10
11
  const { t } = useTranslation();
11
- const startDate = new DateObject(values[0]);
12
- const endDate = new DateObject(values[1]);
13
- const [isAllDay, setIsAllDay] = useState(startDate.dayOfYear === endDate.dayOfYear && startDate.hour === 0 && startDate.minute === 0 && endDate.hour === 23 && endDate.minute === 59);
14
- const onChangeStartTime = ({ hour, minute, period }) => {
15
- setValues([
16
- startDate
17
- .setHour(period === 'PM' ? hour + 12 : hour)
18
- .setMinute(minute)
19
- .setSecond(0),
20
- endDate,
21
- ]);
22
- };
23
- const onChangeEndTime = ({ hour, minute, period }) => {
24
- setValues([
25
- startDate,
26
- endDate
27
- .setHour(period === 'PM' ? hour + 12 : hour)
28
- .setMinute(minute)
29
- .setSecond(0),
30
- ]);
31
- };
32
- return (_jsx(TimeArea, { children: _jsxs(TimeAreaInner, { children: [_jsxs(AllDayStyled, Object.assign({ isAllDay: isAllDay }, { children: [_jsx("span", Object.assign({ className: "label" }, { children: t('allDay') })), _jsx(IOSSwitch, { checked: isAllDay, onChange: (e) => {
33
- setIsAllDay(!isAllDay);
34
- if (e.target.checked) {
35
- setValues([getStartOfDate(values[0]), getEndOfDate(values[1])]);
36
- }
37
- else {
38
- setValues(values);
39
- }
40
- } })] })), !isAllDay && (_jsxs(TimePickerWrapper, { children: [_jsx(TimePicker, { defaultTime: {
41
- hour: convertTo12Hour(startDate.hour),
42
- minute: startDate.minute,
43
- period: startDate.hour >= maxHour ? 'PM' : 'AM',
44
- }, size: "small", onChange: onChangeStartTime, enableRealTimeChange: true }, `${values[0].toString()}-start`), _jsx(TimePicker, { defaultTime: {
45
- hour: convertTo12Hour(endDate.hour),
46
- minute: endDate.minute,
47
- period: endDate.hour >= maxHour ? 'PM' : 'AM',
48
- }, size: "small", onChange: onChangeEndTime, enableRealTimeChange: true }, `${values[1].toString()}-end`)] }))] }) }));
12
+ useEffect(() => {
13
+ if (isAllDay)
14
+ setIsAllDay(new DateObject(values[0]).dayOfYear === new DateObject(values[1]).dayOfYear);
15
+ }, [values]);
16
+ return (_jsx(_Fragment, { children: new DateObject(values[0]).dayOfYear === new DateObject(values[1]).dayOfYear && (_jsx(TimeArea, { children: _jsxs(TimeAreaInner, { children: [_jsxs(AllDayStyled, Object.assign({ isAllDay: isAllDay }, { children: [_jsx("span", Object.assign({ className: "label" }, { children: t('allDay') })), _jsx(IOSSwitch, { checked: isAllDay, onChange: (e) => {
17
+ setIsAllDay(!isAllDay);
18
+ if (e.target.checked) {
19
+ setLastTime([startTime, endTime]);
20
+ onChangeStartTime(new DateObject().setHour(0).setMinute(0));
21
+ onChangeEndTime(new DateObject().setHour(23).setMinute(59));
22
+ }
23
+ else {
24
+ onChangeStartTime(lastTime[0]);
25
+ onChangeEndTime(lastTime[1]);
26
+ }
27
+ } })] })), !isAllDay && (_jsxs(TimePickerWrapper, { children: [_jsx(DatePicker, { arrow: false, disableDayPicker: true, hideOnScroll: true, format: "hh:mma", value: startTime, onChange: (time) => {
28
+ onChangeStartTime(time);
29
+ }, type: "button", plugins: [_jsx(TimePicker, { position: "top", hideSeconds: true })] }), _jsx(DatePicker, { arrow: false, disableDayPicker: true, hideOnScroll: true, format: "hh:mma", value: endTime, onChange: (time) => {
30
+ onChangeEndTime(time);
31
+ }, type: "button", plugins: [_jsx(TimePicker, { position: "top", hideSeconds: true })] })] }))] }) })) }));
49
32
  }
50
33
  export default CustomTimePicker;
@@ -2,7 +2,7 @@
2
2
  export declare const AllDayStyled: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
3
  ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
4
4
  }, keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
5
- isAllDay?: boolean | undefined;
5
+ isAllDay: boolean;
6
6
  }, {}, {}>;
7
7
  export declare const TimeArea: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
8
8
  ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
@@ -1,4 +1,12 @@
1
1
  import React from 'react';
2
- import { RangeDatepickerProps } from './type';
2
+ import { CalendarProps } from 'react-multi-date-picker';
3
+ import { Dates } from '../../type';
4
+ export interface RangeDatepickerProps extends Omit<CalendarProps, 'onChange'> {
5
+ isAr?: boolean;
6
+ isHijri: boolean;
7
+ values: Dates;
8
+ onChange: (v: Dates) => void;
9
+ numberOfMonths?: number;
10
+ }
3
11
  declare const _default: React.ForwardRefExoticComponent<Omit<RangeDatepickerProps, "ref"> & React.RefAttributes<unknown>>;
4
12
  export default _default;
@@ -1,3 +1,2 @@
1
1
  import RangeDatepicker from './RangeDatepicker';
2
- export * from './type';
3
2
  export default RangeDatepicker;
@@ -1,3 +1,2 @@
1
1
  import RangeDatepicker from './RangeDatepicker';
2
- export * from './type';
3
2
  export default RangeDatepicker;
@@ -1,8 +1,6 @@
1
- import DateObject from 'react-date-object';
1
+ /// <reference types="react-date-object" />
2
2
  export declare const getLocale: ({ isHijri, isAr }: {
3
3
  isHijri: boolean;
4
4
  isAr?: boolean | undefined;
5
5
  }) => import("react-date-object").Locale;
6
6
  export declare const getCalender: (isHijri: boolean) => import("react-date-object").Calendar;
7
- export declare const getStartOfDate: (date: DateObject) => DateObject;
8
- export declare const getEndOfDate: (date: DateObject) => DateObject;
@@ -13,5 +13,3 @@ export const getLocale = ({ isHijri, isAr = false }) => {
13
13
  export const getCalender = (isHijri) => {
14
14
  return isHijri ? arabic : gregorian;
15
15
  };
16
- export const getStartOfDate = (date) => date.setHour(0).setMinute(0).setSecond(0);
17
- export const getEndOfDate = (date) => date.setHour(23).setMinute(59).setSecond(59);
@@ -7,7 +7,6 @@ interface TimePickerProps {
7
7
  defaultTime?: Time;
8
8
  onChange?: (time: Time) => void;
9
9
  enableRealTimeChange?: boolean;
10
- size?: 'large' | 'small';
11
10
  }
12
- export declare function TimePicker({ onChange, defaultTime, enableRealTimeChange, size }: TimePickerProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function TimePicker({ onChange, defaultTime, enableRealTimeChange }: TimePickerProps): import("react/jsx-runtime").JSX.Element;
13
12
  export {};
@@ -8,7 +8,7 @@ import { greyUpArrowIcon, greyDownArrowIcon } from '../../constants/index.js';
8
8
  import { Arrow, Button, Period, PeriodWrapper, Wrapper, Time, TimeWrapper, Input } from './style';
9
9
  import { getDefaultHour, getDefaultMinute } from './utils';
10
10
  import { maxHour, maxMinute, periodList } from './constant';
11
- export function TimePicker({ onChange, defaultTime, enableRealTimeChange, size = 'large' }) {
11
+ export function TimePicker({ onChange, defaultTime, enableRealTimeChange }) {
12
12
  var _a, _b, _c;
13
13
  const [anchorEl, setAnchorEl] = useState(null);
14
14
  const [period, setPeriod] = useState((_a = defaultTime === null || defaultTime === void 0 ? void 0 : defaultTime.period) !== null && _a !== void 0 ? _a : (new Date().getHours() >= maxHour ? 'PM' : 'AM'));
@@ -80,7 +80,7 @@ export function TimePicker({ onChange, defaultTime, enableRealTimeChange, size =
80
80
  });
81
81
  };
82
82
  const formatTime = useCallback((time) => (time < 10 ? `0${time}` : time), []);
83
- return (_jsx(ClickAwayListener, Object.assign({ onClickAway: onClose }, { children: _jsxs(Box, { children: [_jsx(Button, Object.assign({ size: size, open: open, onClick: onOpen }, { children: `${formatTime(hours)}:${formatTime(minutes)}${period.toLowerCase()}` })), _jsx(Menu, Object.assign({ open: open, anchorEl: anchorEl, placement: "top-start", sx: { marginTop: '8px', marginBottom: '8px' } }, { children: _jsxs(Wrapper, { children: [_jsxs(TimeWrapper, { children: [_jsxs(Time, { children: [_jsx(Arrow, Object.assign({ onClick: onIncreaseHours }, { children: _jsx("img", { src: greyUpArrowIcon, alt: "arrow" }) })), _jsx(Input, { value: formatTime(hours), onChange: onChangeHours }), _jsx(Arrow, Object.assign({ onClick: onDecreaseHours }, { children: _jsx("img", { src: greyDownArrowIcon, alt: "arrow" }) }))] }), _jsx(Text, { children: ":" }), _jsxs(Time, { children: [_jsx(Arrow, Object.assign({ onClick: onIncreaseMinutes }, { children: _jsx("img", { src: greyUpArrowIcon, alt: "arrow" }) })), _jsx(Input, { value: formatTime(minutes), onChange: onChangeMinutes }), _jsx(Arrow, Object.assign({ onClick: onDecreaseMinutes }, { children: _jsx("img", { src: greyDownArrowIcon, alt: "arrow" }) }))] })] }), _jsx(PeriodWrapper, { children: periodList.map((item) => (_jsx(Period, Object.assign({ onClick: () => {
83
+ return (_jsx(ClickAwayListener, Object.assign({ onClickAway: onClose }, { children: _jsxs(Box, { children: [_jsx(Button, Object.assign({ open: open, onClick: onOpen }, { children: `${formatTime(hours)}:${formatTime(minutes)}${period.toLowerCase()}` })), _jsx(Menu, Object.assign({ open: open, anchorEl: anchorEl, placement: "top-start", sx: { marginTop: '8px', marginBottom: '8px' } }, { children: _jsxs(Wrapper, { children: [_jsxs(TimeWrapper, { children: [_jsxs(Time, { children: [_jsx(Arrow, Object.assign({ onClick: onIncreaseHours }, { children: _jsx("img", { src: greyUpArrowIcon, alt: "arrow" }) })), _jsx(Input, { value: formatTime(hours), onChange: onChangeHours }), _jsx(Arrow, Object.assign({ onClick: onDecreaseHours }, { children: _jsx("img", { src: greyDownArrowIcon, alt: "arrow" }) }))] }), _jsx(Text, { children: ":" }), _jsxs(Time, { children: [_jsx(Arrow, Object.assign({ onClick: onIncreaseMinutes }, { children: _jsx("img", { src: greyUpArrowIcon, alt: "arrow" }) })), _jsx(Input, { value: formatTime(minutes), onChange: onChangeMinutes }), _jsx(Arrow, Object.assign({ onClick: onDecreaseMinutes }, { children: _jsx("img", { src: greyDownArrowIcon, alt: "arrow" }) }))] })] }), _jsx(PeriodWrapper, { children: periodList.map((item) => (_jsx(Period, Object.assign({ onClick: () => {
84
84
  onClickPeriod(item);
85
85
  }, selected: period === item }, { children: item }), item))) })] }) }))] }) })));
86
86
  }
@@ -1,5 +1,4 @@
1
1
  import { TimePicker } from './Timepicker';
2
2
  export * from './utils';
3
3
  export * from './Timepicker';
4
- export * from './constant';
5
4
  export default TimePicker;
@@ -1,5 +1,4 @@
1
1
  import { TimePicker } from './Timepicker';
2
2
  export * from './utils';
3
3
  export * from './Timepicker';
4
- export * from './constant';
5
4
  export default TimePicker;
@@ -8,7 +8,6 @@ export declare const Button: import("@emotion/styled").StyledComponent<import("@
8
8
  component?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
9
9
  } & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
10
10
  open: boolean;
11
- size: 'large' | 'small';
12
11
  }, {}, {}>;
13
12
  export declare const Arrow: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
14
13
  ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
@@ -10,7 +10,7 @@ export const Wrapper = styled(Box)(() => ({
10
10
  justifyContent: 'center',
11
11
  gap: '16px',
12
12
  }));
13
- export const Button = styled(Text, { shouldForwardProp: (props) => props !== 'open' && props !== 'size' })(({ theme, open, size }) => (Object.assign({ fontSize: '11px', fontWeight: 500, background: theme.palette.common.white, border: `1px solid ${theme.palette.divider}`, borderRadius: '19px', height: size === 'large' ? 32 : 24, width: size === 'large' ? 74 : 58, display: 'flex', alignItems: 'center', justifyContent: 'center', cursor: 'pointer' }, (open && { boxShadow: '0px 0px 4px 0px #1F88D080', borderColor: theme.palette.info.dark }))));
13
+ export const Button = styled(Text, { shouldForwardProp: (props) => props !== 'open' })(({ theme, open }) => (Object.assign({ fontSize: '11px', fontWeight: 500, background: theme.palette.common.white, border: `1px solid ${theme.palette.divider}`, borderRadius: '19px', height: 32, width: 74, display: 'flex', alignItems: 'center', justifyContent: 'center', cursor: 'pointer' }, (open && { boxShadow: '0px 0px 4px 0px #1F88D080', borderColor: theme.palette.info.dark }))));
14
14
  export const Arrow = styled(Box)(() => ({
15
15
  textAlign: 'center',
16
16
  cursor: 'pointer',
@@ -9,5 +9,6 @@ export function useScrollWithShadow() {
9
9
  setScrollHeight(target.scrollHeight);
10
10
  setClientHeight(target.clientHeight);
11
11
  };
12
- return { onScrollHandler, showShadow: scrollTop === 0 || clientHeight < scrollHeight - scrollTop };
12
+ const showShadow = scrollTop === 0 || clientHeight < scrollHeight - scrollTop - 1;
13
+ return { onScrollHandler, showShadow };
13
14
  }
package/package.json CHANGED
@@ -1,166 +1,166 @@
1
- {
2
- "name": "@tap-payments/os-micro-frontend-shared",
3
- "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.1.175",
5
- "testVersion": 0,
6
- "type": "module",
7
- "main": "build/index.js",
8
- "module": "build/index.js",
9
- "types": "build/index.d.ts",
10
- "exports": {
11
- "./package.json": "./package.json",
12
- ".": {
13
- "types": "./build/index.d.ts",
14
- "import": "./build/index.js",
15
- "require": "./build/index.js"
16
- },
17
- "./constants": {
18
- "types": "./build/constants/index.d.ts",
19
- "import": "./build/constants/index.js",
20
- "require": "./build/constants/index.js"
21
- },
22
- "./components": {
23
- "types": "./build/components/index.d.ts",
24
- "import": "./build/components/index.js",
25
- "require": "./build/components/index.js"
26
- },
27
- "./components/*": {
28
- "types": "./build/components/*/index.d.ts",
29
- "import": "./build/components/*/index.js",
30
- "require": "./build/components/*/index.js"
31
- },
32
- "./hooks": {
33
- "types": "./build/hooks/index.d.ts",
34
- "import": "./build/hooks/index.js",
35
- "require": "./build/hooks/index.js"
36
- },
37
- "./utils": {
38
- "types": "./build/utils/index.d.ts",
39
- "import": "./build/utils/index.js",
40
- "require": "./build/utils/index.js"
41
- },
42
- "./theme": {
43
- "types": "./build/theme/index.d.ts",
44
- "import": "./build/theme/index.js",
45
- "require": "./build/theme/index.js"
46
- },
47
- "./types": {
48
- "types": "./build/types/index.d.ts",
49
- "import": "./build/types/index.js",
50
- "require": "./build/types/index.js"
51
- }
52
- },
53
- "license": "MIT",
54
- "author": {
55
- "name": "Ahmed Sharkawy",
56
- "email": "a.elsharkawy@tap.company"
57
- },
58
- "files": [
59
- "build",
60
- "readme.md"
61
- ],
62
- "scripts": {
63
- "ts:build": "rm -rf build && tsc -p tsconfig.npm.json && tsc-alias -p tsconfig.npm.json",
64
- "push:local": "yarn ts:build && yalc publish --push",
65
- "push": "npm run ts:build && npm publish --access public",
66
- "push:test": "node scripts/increment-test-version.cjs && npm run ts:build && npm publish --access public --tag test && node scripts/restore-version.cjs",
67
- "dev": "vite",
68
- "build": "tsc -b && vite build ",
69
- "prettier": "prettier --list-different \"src/**/*.{md,mdx,ts,js,tsx,jsx,json}\"",
70
- "prettier:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md,css,json}\"",
71
- "lint": "eslint . --color",
72
- "lint:fix": "eslint src --fix --color",
73
- "preview": "vite preview",
74
- "prepare": "husky"
75
- },
76
- "dependencies": {
77
- "@emotion/react": "^11.11.0",
78
- "@emotion/styled": "^11.11.0",
79
- "@hookform/resolvers": "^3.3.1",
80
- "@mui/material": "^5.12.3",
81
- "@uiw/react-json-view": "^2.0.0-alpha.16",
82
- "axios": "^1.4.0",
83
- "color": "^5.0.0",
84
- "dayjs": "^1.11.8",
85
- "framer-motion": "10.11.0",
86
- "i18next": "^22.4.15",
87
- "memoize-one": "^6.0.0",
88
- "re-resizable": "^6.9.9",
89
- "react": "^18.2.0",
90
- "react-colorful": "^5.6.1",
91
- "react-currency-input-field": "^3.6.11",
92
- "react-dom": "^18.2.0",
93
- "react-draggable": "^4.4.6",
94
- "react-dropzone": "^14.2.3",
95
- "react-hook-form": "^7.45.4",
96
- "react-hot-toast": "^2.4.1",
97
- "react-i18next": "^12.2.2",
98
- "react-lazy-load-image-component": "^1.6.3",
99
- "react-multi-date-picker": "^4.1.2",
100
- "react-router-dom": "^7.7.0",
101
- "react-virtualized-auto-sizer": "^1.0.20",
102
- "react-window": "^1.8.9",
103
- "react-window-infinite-loader": "^1.0.9",
104
- "react18-input-otp": "^1.1.4",
105
- "recharts": "^2.15.1"
106
- },
107
- "devDependencies": {
108
- "@eslint/js": "^9.17.0",
109
- "@testing-library/jest-dom": "^5.16.5",
110
- "@types/lodash": "^4.17.15",
111
- "@types/react": "^18.2.6",
112
- "@types/react-dom": "^18.3.5",
113
- "@types/react-lazy-load-image-component": "^1.6.4",
114
- "@types/react-virtualized-auto-sizer": "^1.0.8",
115
- "@types/react-window": "^1.8.5",
116
- "@types/react-window-infinite-loader": "^1.0.6",
117
- "@vitejs/plugin-react": "^4.3.4",
118
- "eslint": "^9.17.0",
119
- "eslint-plugin-react-hooks": "^5.0.0",
120
- "eslint-plugin-react-refresh": "^0.4.16",
121
- "globals": "^15.14.0",
122
- "husky": "^8.0.3",
123
- "lint-staged": "^13.2.2",
124
- "prettier": "^2.8.8",
125
- "tsc-alias": "^1.8.16",
126
- "typescript": "5.0.2",
127
- "typescript-eslint": "^8.18.2",
128
- "vite": "6.0.5",
129
- "vite-tsconfig-paths": "^4.2.0"
130
- },
131
- "peerDependencies": {
132
- "react": "^18",
133
- "react-dom": "^18",
134
- "@mui/material": "^5",
135
- "@emotion/react": "^11",
136
- "@emotion/styled": "^11",
137
- "framer-motion": "^10",
138
- "react-hook-form": "^7",
139
- "@hookform/resolvers": "^3",
140
- "react-router-dom": "^7",
141
- "i18next": "^22",
142
- "react-i18next": "^12",
143
- "react-multi-date-picker": "^4",
144
- "dayjs": "^1",
145
- "react-dropzone": "^14",
146
- "react-hot-toast": "^2",
147
- "recharts": "^2",
148
- "react-window": "^1.8",
149
- "react-window-infinite-loader": "^1",
150
- "react-virtualized-auto-sizer": "^1",
151
- "re-resizable": "^6",
152
- "react-draggable": "^4",
153
- "react-currency-input-field": "^3",
154
- "react18-input-otp": "^1",
155
- "@uiw/react-json-view": "^2.0.0-alpha"
156
- },
157
- "lint-staged": {
158
- "src/**/*.{ts,tsx,json,js,jsx}": [
159
- "yarn run prettier:fix",
160
- "yarn run lint"
161
- ]
162
- },
163
- "publishConfig": {
164
- "registry": "https://registry.npmjs.org/"
165
- }
166
- }
1
+ {
2
+ "name": "@tap-payments/os-micro-frontend-shared",
3
+ "description": "Shared components and utilities for Tap Payments micro frontends",
4
+ "version": "0.1.176",
5
+ "testVersion": 0,
6
+ "type": "module",
7
+ "main": "build/index.js",
8
+ "module": "build/index.js",
9
+ "types": "build/index.d.ts",
10
+ "exports": {
11
+ "./package.json": "./package.json",
12
+ ".": {
13
+ "types": "./build/index.d.ts",
14
+ "import": "./build/index.js",
15
+ "require": "./build/index.js"
16
+ },
17
+ "./constants": {
18
+ "types": "./build/constants/index.d.ts",
19
+ "import": "./build/constants/index.js",
20
+ "require": "./build/constants/index.js"
21
+ },
22
+ "./components": {
23
+ "types": "./build/components/index.d.ts",
24
+ "import": "./build/components/index.js",
25
+ "require": "./build/components/index.js"
26
+ },
27
+ "./components/*": {
28
+ "types": "./build/components/*/index.d.ts",
29
+ "import": "./build/components/*/index.js",
30
+ "require": "./build/components/*/index.js"
31
+ },
32
+ "./hooks": {
33
+ "types": "./build/hooks/index.d.ts",
34
+ "import": "./build/hooks/index.js",
35
+ "require": "./build/hooks/index.js"
36
+ },
37
+ "./utils": {
38
+ "types": "./build/utils/index.d.ts",
39
+ "import": "./build/utils/index.js",
40
+ "require": "./build/utils/index.js"
41
+ },
42
+ "./theme": {
43
+ "types": "./build/theme/index.d.ts",
44
+ "import": "./build/theme/index.js",
45
+ "require": "./build/theme/index.js"
46
+ },
47
+ "./types": {
48
+ "types": "./build/types/index.d.ts",
49
+ "import": "./build/types/index.js",
50
+ "require": "./build/types/index.js"
51
+ }
52
+ },
53
+ "license": "MIT",
54
+ "author": {
55
+ "name": "Ahmed Sharkawy",
56
+ "email": "a.elsharkawy@tap.company"
57
+ },
58
+ "files": [
59
+ "build",
60
+ "readme.md"
61
+ ],
62
+ "scripts": {
63
+ "ts:build": "rm -rf build && tsc -p tsconfig.npm.json && tsc-alias -p tsconfig.npm.json",
64
+ "push:local": "yarn ts:build && yalc publish --push",
65
+ "push": "npm run ts:build && npm publish --access public",
66
+ "push:test": "node scripts/increment-test-version.cjs && npm run ts:build && npm publish --access public --tag test && node scripts/restore-version.cjs",
67
+ "dev": "vite",
68
+ "build": "tsc -b && vite build ",
69
+ "prettier": "prettier --list-different \"src/**/*.{md,mdx,ts,js,tsx,jsx,json}\"",
70
+ "prettier:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md,css,json}\"",
71
+ "lint": "eslint . --color",
72
+ "lint:fix": "eslint src --fix --color",
73
+ "preview": "vite preview",
74
+ "prepare": "husky"
75
+ },
76
+ "dependencies": {
77
+ "@emotion/react": "^11.11.0",
78
+ "@emotion/styled": "^11.11.0",
79
+ "@hookform/resolvers": "^3.3.1",
80
+ "@mui/material": "^5.12.3",
81
+ "@uiw/react-json-view": "^2.0.0-alpha.16",
82
+ "axios": "^1.4.0",
83
+ "color": "^5.0.0",
84
+ "dayjs": "^1.11.8",
85
+ "framer-motion": "10.11.0",
86
+ "i18next": "^22.4.15",
87
+ "memoize-one": "^6.0.0",
88
+ "re-resizable": "^6.9.9",
89
+ "react": "^18.2.0",
90
+ "react-colorful": "^5.6.1",
91
+ "react-currency-input-field": "^3.6.11",
92
+ "react-dom": "^18.2.0",
93
+ "react-draggable": "^4.4.6",
94
+ "react-dropzone": "^14.2.3",
95
+ "react-hook-form": "^7.45.4",
96
+ "react-hot-toast": "^2.4.1",
97
+ "react-i18next": "^12.2.2",
98
+ "react-lazy-load-image-component": "^1.6.3",
99
+ "react-multi-date-picker": "^4.1.2",
100
+ "react-router-dom": "^7.7.0",
101
+ "react-virtualized-auto-sizer": "^1.0.20",
102
+ "react-window": "^1.8.9",
103
+ "react-window-infinite-loader": "^1.0.9",
104
+ "react18-input-otp": "^1.1.4",
105
+ "recharts": "^2.15.1"
106
+ },
107
+ "devDependencies": {
108
+ "@eslint/js": "^9.17.0",
109
+ "@testing-library/jest-dom": "^5.16.5",
110
+ "@types/lodash": "^4.17.15",
111
+ "@types/react": "^18.2.6",
112
+ "@types/react-dom": "^18.3.5",
113
+ "@types/react-lazy-load-image-component": "^1.6.4",
114
+ "@types/react-virtualized-auto-sizer": "^1.0.8",
115
+ "@types/react-window": "^1.8.5",
116
+ "@types/react-window-infinite-loader": "^1.0.6",
117
+ "@vitejs/plugin-react": "^4.3.4",
118
+ "eslint": "^9.17.0",
119
+ "eslint-plugin-react-hooks": "^5.0.0",
120
+ "eslint-plugin-react-refresh": "^0.4.16",
121
+ "globals": "^15.14.0",
122
+ "husky": "^8.0.3",
123
+ "lint-staged": "^13.2.2",
124
+ "prettier": "^2.8.8",
125
+ "tsc-alias": "^1.8.16",
126
+ "typescript": "5.0.2",
127
+ "typescript-eslint": "^8.18.2",
128
+ "vite": "6.0.5",
129
+ "vite-tsconfig-paths": "^4.2.0"
130
+ },
131
+ "peerDependencies": {
132
+ "react": "^18",
133
+ "react-dom": "^18",
134
+ "@mui/material": "^5",
135
+ "@emotion/react": "^11",
136
+ "@emotion/styled": "^11",
137
+ "framer-motion": "^10",
138
+ "react-hook-form": "^7",
139
+ "@hookform/resolvers": "^3",
140
+ "react-router-dom": "^7",
141
+ "i18next": "^22",
142
+ "react-i18next": "^12",
143
+ "react-multi-date-picker": "^4",
144
+ "dayjs": "^1",
145
+ "react-dropzone": "^14",
146
+ "react-hot-toast": "^2",
147
+ "recharts": "^2",
148
+ "react-window": "^1.8",
149
+ "react-window-infinite-loader": "^1",
150
+ "react-virtualized-auto-sizer": "^1",
151
+ "re-resizable": "^6",
152
+ "react-draggable": "^4",
153
+ "react-currency-input-field": "^3",
154
+ "react18-input-otp": "^1",
155
+ "@uiw/react-json-view": "^2.0.0-alpha"
156
+ },
157
+ "lint-staged": {
158
+ "src/**/*.{ts,tsx,json,js,jsx}": [
159
+ "yarn run prettier:fix",
160
+ "yarn run lint"
161
+ ]
162
+ },
163
+ "publishConfig": {
164
+ "registry": "https://registry.npmjs.org/"
165
+ }
166
+ }
@@ -1,9 +0,0 @@
1
- import { CalendarProps } from 'react-multi-date-picker';
2
- import { Dates } from '../../type';
3
- export interface RangeDatepickerProps extends Omit<CalendarProps, 'onChange'> {
4
- isAr?: boolean;
5
- isHijri: boolean;
6
- values: Dates;
7
- onChange: (v: Dates) => void;
8
- numberOfMonths?: number;
9
- }