@driveflux/beam 2.1.0 → 2.1.1
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.
- package/dist/badge/Badge.js +96 -7
- package/dist/button/Button.js +124 -12
- package/dist/chip/Chip.js +104 -3
- package/dist/command/command.js +170 -13
- package/dist/datepicker/DatePickerDrawer.js +110 -14
- package/dist/datepicker/DatePickerPopover.js +207 -35
- package/dist/dialog/index.js +180 -33
- package/dist/drawer/index.js +157 -12
- package/dist/input/Input.js +125 -11
- package/dist/input-select/InputSelect.js +357 -68
- package/dist/select/Select.js +315 -29
- package/dist/styles.css +19 -4
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { format } from 'date-fns';
|
|
|
4
4
|
import Calendar from 'react-calendar';
|
|
5
5
|
import Box from '../box/Box';
|
|
6
6
|
import Button from '../button/Button';
|
|
7
|
-
import { Drawer, DrawerClose, DrawerContent, DrawerHeader, DrawerTitle, DrawerTrigger
|
|
7
|
+
import { Drawer, DrawerClose, DrawerContent, DrawerHeader, DrawerTitle, DrawerTrigger } from '../drawer';
|
|
8
8
|
import FieldWrapper from '../field-wrapper/FieldWrapper';
|
|
9
9
|
import IconCalendar from '../icons/IconCalendar';
|
|
10
10
|
import IconCalendarArrowBack from '../icons/IconCalendarArrowBack';
|
|
@@ -16,23 +16,119 @@ import Stack from '../stack/Stack';
|
|
|
16
16
|
import Text from '../text/Text';
|
|
17
17
|
import { cn } from '../utils';
|
|
18
18
|
import { formatInputBy } from './utils';
|
|
19
|
-
|
|
20
|
-
// non-customized props
|
|
21
|
-
innerValue, setInnerValue, focused, setFocused, handleSelect, handleCancel, handleApply
|
|
22
|
-
|
|
19
|
+
var DatePickerDrawer = function(param) {
|
|
20
|
+
var _param_htmlFor = param.htmlFor, htmlFor = _param_htmlFor === void 0 ? 'datepicker' : _param_htmlFor, _param_locale = param.locale, locale = _param_locale === void 0 ? 'en' : _param_locale, isRange = param.isRange, providedValue = param.value, minDate = param.minDate, maxDate = param.maxDate, placeholder = param.placeholder, calendarType = param.calendarType, isDisabled = param.isDisabled, inputProps = param.inputProps, drawerTitle = param.drawerTitle, cancelButton = param.cancelButton, applyButton = param.applyButton, tileDisabled = param.tileDisabled, error = param.error, // non-customized props
|
|
21
|
+
innerValue = param.innerValue, setInnerValue = param.setInnerValue, focused = param.focused, setFocused = param.setFocused, handleSelect = param.handleSelect, handleCancel = param.handleCancel, handleApply = param.handleApply;
|
|
22
|
+
var handleOpenChange = function(open) {
|
|
23
23
|
setFocused(open);
|
|
24
24
|
if (!open) {
|
|
25
25
|
handleCancel();
|
|
26
26
|
}
|
|
27
27
|
};
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
28
|
+
var isApplyDisabled = !innerValue || isRange && (!Array.isArray(innerValue) || innerValue.length !== 2 || !innerValue[0] || !innerValue[1]);
|
|
29
|
+
return /*#__PURE__*/ _jsx(FieldWrapper, {
|
|
30
|
+
htmlFor: htmlFor,
|
|
31
|
+
label: inputProps === null || inputProps === void 0 ? void 0 : inputProps.label,
|
|
32
|
+
error: error,
|
|
33
|
+
className: 'w-full',
|
|
34
|
+
children: /*#__PURE__*/ _jsxs(Drawer, {
|
|
35
|
+
open: focused,
|
|
36
|
+
onOpenChange: handleOpenChange,
|
|
37
|
+
children: [
|
|
38
|
+
/*#__PURE__*/ _jsx(DrawerTrigger, {
|
|
39
|
+
asChild: true,
|
|
40
|
+
disabled: isDisabled,
|
|
41
|
+
className: 'w-full',
|
|
42
|
+
children: /*#__PURE__*/ _jsxs(Box, {
|
|
43
|
+
className: cn('flex flex-row p-3 border border-primary2 cursor-pointer hover:border-primary4 rounded-lg', isDisabled && 'bg-primary2', error && 'border-alert4 hover:border-alert4 focus-within:border-alert4'),
|
|
44
|
+
children: [
|
|
45
|
+
innerValue ? /*#__PURE__*/ _jsx(Text, {
|
|
46
|
+
className: "flex-1",
|
|
47
|
+
children: formatInputBy(innerValue, isRange)
|
|
48
|
+
}) : /*#__PURE__*/ _jsx(Text, {
|
|
49
|
+
className: 'flex-1 text-primary2',
|
|
50
|
+
children: placeholder || 'DD-MM-YYYY'
|
|
51
|
+
}),
|
|
52
|
+
/*#__PURE__*/ _jsx(IconCalendar, {
|
|
53
|
+
size: '16px'
|
|
54
|
+
})
|
|
55
|
+
]
|
|
56
|
+
})
|
|
57
|
+
}),
|
|
58
|
+
/*#__PURE__*/ _jsxs(DrawerContent, {
|
|
59
|
+
hideGrabber: true,
|
|
60
|
+
className: 'datepicker-content flex flex-col items-stretch',
|
|
61
|
+
children: [
|
|
62
|
+
/*#__PURE__*/ _jsxs(DrawerHeader, {
|
|
63
|
+
className: 'flex items-center justify-between py-4 px-6',
|
|
64
|
+
children: [
|
|
65
|
+
/*#__PURE__*/ _jsx(DrawerTitle, {
|
|
66
|
+
children: /*#__PURE__*/ _jsx(Text, {
|
|
67
|
+
className: 'text-xl font-bold uppercase',
|
|
68
|
+
children: drawerTitle || (inputProps === null || inputProps === void 0 ? void 0 : inputProps.label) || 'date'
|
|
69
|
+
})
|
|
70
|
+
}),
|
|
71
|
+
/*#__PURE__*/ _jsx(DrawerClose, {
|
|
72
|
+
className: 'text-primary3',
|
|
73
|
+
children: /*#__PURE__*/ _jsx(IconClose, {
|
|
74
|
+
className: 'w-4 h-4 lg:w-6 lg:h-6'
|
|
75
|
+
})
|
|
76
|
+
})
|
|
77
|
+
]
|
|
78
|
+
}),
|
|
79
|
+
/*#__PURE__*/ _jsx(Calendar, {
|
|
80
|
+
value: innerValue,
|
|
81
|
+
onChange: handleSelect,
|
|
82
|
+
locale: locale || 'en',
|
|
83
|
+
selectRange: isRange,
|
|
84
|
+
minDate: minDate,
|
|
85
|
+
maxDate: maxDate,
|
|
86
|
+
calendarType: calendarType,
|
|
87
|
+
formatShortWeekday: function(_, date) {
|
|
88
|
+
return format(date, 'EEEEE');
|
|
89
|
+
},
|
|
90
|
+
className: 'p-6',
|
|
91
|
+
tileDisabled: tileDisabled,
|
|
92
|
+
tileClassName: 'flex item-center justify-center text-center',
|
|
93
|
+
prevLabel: /*#__PURE__*/ _jsx(IconCalendarArrowBack, {
|
|
94
|
+
size: 24
|
|
95
|
+
}),
|
|
96
|
+
nextLabel: /*#__PURE__*/ _jsx(IconCalendarArrowForward, {
|
|
97
|
+
size: 24
|
|
98
|
+
}),
|
|
99
|
+
prev2Label: /*#__PURE__*/ _jsx(IconCalendarDoubleArrowBack, {
|
|
100
|
+
size: 24
|
|
101
|
+
}),
|
|
102
|
+
next2Label: /*#__PURE__*/ _jsx(IconCalendarDoubleArrowForward, {
|
|
103
|
+
size: 24
|
|
104
|
+
})
|
|
105
|
+
}),
|
|
106
|
+
/*#__PURE__*/ _jsxs(Stack, {
|
|
107
|
+
className: 'flex flex-row gap-2 py-4 px-6 border-t border-primary1',
|
|
108
|
+
children: [
|
|
109
|
+
/*#__PURE__*/ _jsx(Button, {
|
|
110
|
+
type: 'button',
|
|
111
|
+
variant: 'outline',
|
|
112
|
+
className: 'w-full text-sm p-3 h-10 tracking-[0.5px]',
|
|
113
|
+
onClick: function() {
|
|
114
|
+
return handleOpenChange(false);
|
|
115
|
+
},
|
|
116
|
+
children: (cancelButton === null || cancelButton === void 0 ? void 0 : cancelButton.label) || 'cancel'
|
|
117
|
+
}),
|
|
118
|
+
/*#__PURE__*/ _jsx(Button, {
|
|
119
|
+
className: cn('w-full text-sm p-3 h-10 tracking-[0.5px]', isApplyDisabled && 'bg-primary1 hover:bg-primary1'),
|
|
120
|
+
onClick: isApplyDisabled ? undefined : handleApply,
|
|
121
|
+
children: (applyButton === null || applyButton === void 0 ? void 0 : applyButton.label) || 'done'
|
|
122
|
+
})
|
|
123
|
+
]
|
|
124
|
+
}),
|
|
125
|
+
/*#__PURE__*/ _jsx(Box, {
|
|
126
|
+
className: 'h-safe-bottom-edge'
|
|
127
|
+
})
|
|
128
|
+
]
|
|
129
|
+
})
|
|
130
|
+
]
|
|
131
|
+
})
|
|
132
|
+
});
|
|
36
133
|
};
|
|
37
134
|
export default DatePickerDrawer;
|
|
38
|
-
//# sourceMappingURL=DatePickerDrawer.js.map
|
|
@@ -1,4 +1,102 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
function _array_like_to_array(arr, len) {
|
|
3
|
+
if (len == null || len > arr.length) len = arr.length;
|
|
4
|
+
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
5
|
+
return arr2;
|
|
6
|
+
}
|
|
7
|
+
function _array_with_holes(arr) {
|
|
8
|
+
if (Array.isArray(arr)) return arr;
|
|
9
|
+
}
|
|
10
|
+
function _define_property(obj, key, value) {
|
|
11
|
+
if (key in obj) {
|
|
12
|
+
Object.defineProperty(obj, key, {
|
|
13
|
+
value: value,
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true,
|
|
16
|
+
writable: true
|
|
17
|
+
});
|
|
18
|
+
} else {
|
|
19
|
+
obj[key] = value;
|
|
20
|
+
}
|
|
21
|
+
return obj;
|
|
22
|
+
}
|
|
23
|
+
function _iterable_to_array_limit(arr, i) {
|
|
24
|
+
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
25
|
+
if (_i == null) return;
|
|
26
|
+
var _arr = [];
|
|
27
|
+
var _n = true;
|
|
28
|
+
var _d = false;
|
|
29
|
+
var _s, _e;
|
|
30
|
+
try {
|
|
31
|
+
for(_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true){
|
|
32
|
+
_arr.push(_s.value);
|
|
33
|
+
if (i && _arr.length === i) break;
|
|
34
|
+
}
|
|
35
|
+
} catch (err) {
|
|
36
|
+
_d = true;
|
|
37
|
+
_e = err;
|
|
38
|
+
} finally{
|
|
39
|
+
try {
|
|
40
|
+
if (!_n && _i["return"] != null) _i["return"]();
|
|
41
|
+
} finally{
|
|
42
|
+
if (_d) throw _e;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
return _arr;
|
|
46
|
+
}
|
|
47
|
+
function _non_iterable_rest() {
|
|
48
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
49
|
+
}
|
|
50
|
+
function _object_spread(target) {
|
|
51
|
+
for(var i = 1; i < arguments.length; i++){
|
|
52
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
|
53
|
+
var ownKeys = Object.keys(source);
|
|
54
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
55
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
56
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
57
|
+
}));
|
|
58
|
+
}
|
|
59
|
+
ownKeys.forEach(function(key) {
|
|
60
|
+
_define_property(target, key, source[key]);
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
return target;
|
|
64
|
+
}
|
|
65
|
+
function ownKeys(object, enumerableOnly) {
|
|
66
|
+
var keys = Object.keys(object);
|
|
67
|
+
if (Object.getOwnPropertySymbols) {
|
|
68
|
+
var symbols = Object.getOwnPropertySymbols(object);
|
|
69
|
+
if (enumerableOnly) {
|
|
70
|
+
symbols = symbols.filter(function(sym) {
|
|
71
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
keys.push.apply(keys, symbols);
|
|
75
|
+
}
|
|
76
|
+
return keys;
|
|
77
|
+
}
|
|
78
|
+
function _object_spread_props(target, source) {
|
|
79
|
+
source = source != null ? source : {};
|
|
80
|
+
if (Object.getOwnPropertyDescriptors) {
|
|
81
|
+
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
82
|
+
} else {
|
|
83
|
+
ownKeys(Object(source)).forEach(function(key) {
|
|
84
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
return target;
|
|
88
|
+
}
|
|
89
|
+
function _sliced_to_array(arr, i) {
|
|
90
|
+
return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
|
|
91
|
+
}
|
|
92
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
93
|
+
if (!o) return;
|
|
94
|
+
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
95
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
96
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
97
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
98
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
99
|
+
}
|
|
2
100
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
101
|
import { format } from 'date-fns';
|
|
4
102
|
import { useEffect, useRef } from 'react';
|
|
@@ -16,59 +114,133 @@ import Stack from '../stack/Stack';
|
|
|
16
114
|
import { cn } from '../utils';
|
|
17
115
|
import { DATERANGE_REGEX, DATE_REGEX } from './constants';
|
|
18
116
|
import { formatPlaceholderBy } from './utils';
|
|
19
|
-
|
|
20
|
-
// non-customized props
|
|
21
|
-
inputValue, innerValue, setInnerValue, setInputValue, focused, setFocused, handleSelect, handleCancel, handleApply
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
setInputValue
|
|
117
|
+
var DatePickerPopover = function(param) {
|
|
118
|
+
var _param_htmlFor = param.htmlFor, htmlFor = _param_htmlFor === void 0 ? 'datepicker' : _param_htmlFor, _param_locale = param.locale, locale = _param_locale === void 0 ? 'en' : _param_locale, isRange = param.isRange, minDate = param.minDate, maxDate = param.maxDate, placeholder = param.placeholder, calendarType = param.calendarType, isDisabled = param.isDisabled, onError = param.onError, inputProps = param.inputProps, cancelButton = param.cancelButton, applyButton = param.applyButton, tileDisabled = param.tileDisabled, providedValue = param.value, // non-customized props
|
|
119
|
+
inputValue = param.inputValue, innerValue = param.innerValue, setInnerValue = param.setInnerValue, setInputValue = param.setInputValue, focused = param.focused, setFocused = param.setFocused, handleSelect = param.handleSelect, handleCancel = param.handleCancel, handleApply = param.handleApply;
|
|
120
|
+
var containerRef = useRef(null);
|
|
121
|
+
var handleChange = function(e) {
|
|
122
|
+
var value = e.target.value;
|
|
123
|
+
setInputValue === null || setInputValue === void 0 ? void 0 : setInputValue(value);
|
|
26
124
|
if (isRange && DATERANGE_REGEX.test(value)) {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
125
|
+
var _value_split = _sliced_to_array(value.split(' - '), 2), startDate = _value_split[0], endDate = _value_split[1];
|
|
126
|
+
var _startDate_split = _sliced_to_array(startDate.split('/'), 3), startDay = _startDate_split[0], startMonth = _startDate_split[1], startYear = _startDate_split[2];
|
|
127
|
+
var _endDate_split = _sliced_to_array(endDate.split('/'), 3), endDay = _endDate_split[0], endMonth = _endDate_split[1], endYear = _endDate_split[2];
|
|
128
|
+
var formattedStartDate = new Date("".concat(startYear, "-").concat(startMonth, "-").concat(startDay));
|
|
129
|
+
var formattedEndDate = new Date("".concat(endYear, "-").concat(endMonth, "-").concat(endDay));
|
|
32
130
|
if (formattedStartDate >= formattedEndDate) {
|
|
33
|
-
onError
|
|
131
|
+
onError === null || onError === void 0 ? void 0 : onError('start-gte-end');
|
|
34
132
|
return;
|
|
35
133
|
}
|
|
36
|
-
setInnerValue
|
|
134
|
+
setInnerValue === null || setInnerValue === void 0 ? void 0 : setInnerValue([
|
|
135
|
+
formattedStartDate,
|
|
136
|
+
formattedEndDate
|
|
137
|
+
]);
|
|
37
138
|
return;
|
|
38
139
|
}
|
|
39
140
|
if (!isRange && DATE_REGEX.test(value)) {
|
|
40
|
-
|
|
41
|
-
setInnerValue
|
|
141
|
+
var _value_split1 = _sliced_to_array(value.split('-'), 3), day = _value_split1[0], month = _value_split1[1], year = _value_split1[2];
|
|
142
|
+
setInnerValue === null || setInnerValue === void 0 ? void 0 : setInnerValue(new Date("".concat(year, "-").concat(month, "-").concat(day)));
|
|
42
143
|
return;
|
|
43
144
|
}
|
|
44
145
|
};
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
const handleClick = (e) => {
|
|
53
|
-
const targetElement = e.target;
|
|
54
|
-
const isCalendarClick = targetElement.closest('.react-calendar__tile');
|
|
55
|
-
const open = !!containerRef.current?.contains(targetElement) || !!isCalendarClick;
|
|
146
|
+
var isApplyDisabled = !innerValue || isRange && (!Array.isArray(innerValue) || innerValue.length !== 2 || !innerValue[0] || !innerValue[1]);
|
|
147
|
+
useEffect(function() {
|
|
148
|
+
var handleClick = function(e) {
|
|
149
|
+
var _containerRef_current;
|
|
150
|
+
var targetElement = e.target;
|
|
151
|
+
var isCalendarClick = targetElement.closest('.react-calendar__tile');
|
|
152
|
+
var open = !!((_containerRef_current = containerRef.current) === null || _containerRef_current === void 0 ? void 0 : _containerRef_current.contains(targetElement)) || !!isCalendarClick;
|
|
56
153
|
setFocused(open);
|
|
57
154
|
if (!open) {
|
|
58
155
|
handleCancel();
|
|
59
156
|
}
|
|
60
157
|
};
|
|
61
158
|
document.addEventListener('click', handleClick);
|
|
62
|
-
return ()
|
|
63
|
-
|
|
64
|
-
|
|
159
|
+
return function() {
|
|
160
|
+
return document.removeEventListener('click', handleClick);
|
|
161
|
+
};
|
|
162
|
+
}, [
|
|
163
|
+
setFocused,
|
|
164
|
+
handleCancel
|
|
165
|
+
]);
|
|
166
|
+
var _ref;
|
|
167
|
+
return /*#__PURE__*/ _jsxs(Box, {
|
|
168
|
+
ref: containerRef,
|
|
169
|
+
className: 'relative',
|
|
170
|
+
children: [
|
|
171
|
+
/*#__PURE__*/ _jsx(InputMask, _object_spread_props(_object_spread({
|
|
172
|
+
htmlFor: htmlFor,
|
|
173
|
+
placeholder: placeholder || formatPlaceholderBy(isRange),
|
|
174
|
+
className: cn(isDisabled ? 'cursor-text' : 'cursor-pointer'),
|
|
175
|
+
value: inputValue,
|
|
176
|
+
isDisabled: isDisabled,
|
|
177
|
+
suffix: /*#__PURE__*/ _jsx(IconCalendar, {
|
|
178
|
+
size: '16px'
|
|
179
|
+
}),
|
|
180
|
+
onChange: handleChange,
|
|
181
|
+
onClick: function() {
|
|
65
182
|
!isDisabled && setFocused(true);
|
|
66
|
-
}
|
|
183
|
+
}
|
|
184
|
+
}, inputProps), {
|
|
185
|
+
mask: formatPlaceholderBy(isRange),
|
|
186
|
+
maskReplacement: {
|
|
67
187
|
D: /\d/,
|
|
68
188
|
M: /\d/,
|
|
69
|
-
Y: /\d
|
|
70
|
-
},
|
|
71
|
-
|
|
189
|
+
Y: /\d/
|
|
190
|
+
},
|
|
191
|
+
maskTrack: function(data) {
|
|
192
|
+
return maskTrackDate(data, isRange);
|
|
193
|
+
}
|
|
194
|
+
})),
|
|
195
|
+
focused && /*#__PURE__*/ _jsxs(Box, {
|
|
196
|
+
className: 'absolute top-full left-0 mt-1 z-1 w-max max-w-sm border border-primary1 shadow-xl bg-white rounded-lg',
|
|
197
|
+
children: [
|
|
198
|
+
/*#__PURE__*/ _jsx(Calendar, {
|
|
199
|
+
value: (_ref = innerValue !== null && innerValue !== void 0 ? innerValue : minDate) !== null && _ref !== void 0 ? _ref : new Date(),
|
|
200
|
+
onChange: handleSelect,
|
|
201
|
+
locale: locale || 'en',
|
|
202
|
+
selectRange: isRange,
|
|
203
|
+
minDate: minDate,
|
|
204
|
+
maxDate: maxDate,
|
|
205
|
+
calendarType: calendarType,
|
|
206
|
+
formatShortWeekday: function(_, date) {
|
|
207
|
+
return format(date, 'EEEEE');
|
|
208
|
+
},
|
|
209
|
+
className: 'p-4',
|
|
210
|
+
tileDisabled: tileDisabled,
|
|
211
|
+
prevLabel: /*#__PURE__*/ _jsx(IconCalendarArrowBack, {
|
|
212
|
+
size: 24
|
|
213
|
+
}),
|
|
214
|
+
nextLabel: /*#__PURE__*/ _jsx(IconCalendarArrowForward, {
|
|
215
|
+
size: 24
|
|
216
|
+
}),
|
|
217
|
+
prev2Label: /*#__PURE__*/ _jsx(IconCalendarDoubleArrowBack, {
|
|
218
|
+
size: 24
|
|
219
|
+
}),
|
|
220
|
+
next2Label: /*#__PURE__*/ _jsx(IconCalendarDoubleArrowForward, {
|
|
221
|
+
size: 24
|
|
222
|
+
})
|
|
223
|
+
}),
|
|
224
|
+
/*#__PURE__*/ _jsxs(Stack, {
|
|
225
|
+
className: 'flex flex-row gap-2 p-4 border-t border-primary1',
|
|
226
|
+
children: [
|
|
227
|
+
/*#__PURE__*/ _jsx(Button, {
|
|
228
|
+
type: 'button',
|
|
229
|
+
variant: 'outline',
|
|
230
|
+
className: 'w-full text-sm p-3 h-10 tracking-[0.5px]',
|
|
231
|
+
onClick: handleCancel,
|
|
232
|
+
children: (cancelButton === null || cancelButton === void 0 ? void 0 : cancelButton.label) || 'cancel'
|
|
233
|
+
}),
|
|
234
|
+
/*#__PURE__*/ _jsx(Button, {
|
|
235
|
+
className: cn('w-full text-sm p-3 h-10 tracking-[0.5px]', isApplyDisabled && 'bg-primary1 hover:bg-primary1 cursor-not-allowed'),
|
|
236
|
+
onClick: isApplyDisabled ? undefined : handleApply,
|
|
237
|
+
children: (applyButton === null || applyButton === void 0 ? void 0 : applyButton.label) || 'done'
|
|
238
|
+
})
|
|
239
|
+
]
|
|
240
|
+
})
|
|
241
|
+
]
|
|
242
|
+
})
|
|
243
|
+
]
|
|
244
|
+
});
|
|
72
245
|
};
|
|
73
246
|
export default DatePickerPopover;
|
|
74
|
-
//# sourceMappingURL=DatePickerPopover.js.map
|
package/dist/dialog/index.js
CHANGED
|
@@ -1,46 +1,193 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
function _define_property(obj, key, value) {
|
|
3
|
+
if (key in obj) {
|
|
4
|
+
Object.defineProperty(obj, key, {
|
|
5
|
+
value: value,
|
|
6
|
+
enumerable: true,
|
|
7
|
+
configurable: true,
|
|
8
|
+
writable: true
|
|
9
|
+
});
|
|
10
|
+
} else {
|
|
11
|
+
obj[key] = value;
|
|
12
|
+
}
|
|
13
|
+
return obj;
|
|
14
|
+
}
|
|
15
|
+
function _object_spread(target) {
|
|
16
|
+
for(var i = 1; i < arguments.length; i++){
|
|
17
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
|
18
|
+
var ownKeys = Object.keys(source);
|
|
19
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
20
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
21
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
22
|
+
}));
|
|
23
|
+
}
|
|
24
|
+
ownKeys.forEach(function(key) {
|
|
25
|
+
_define_property(target, key, source[key]);
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
return target;
|
|
29
|
+
}
|
|
30
|
+
function ownKeys(object, enumerableOnly) {
|
|
31
|
+
var keys = Object.keys(object);
|
|
32
|
+
if (Object.getOwnPropertySymbols) {
|
|
33
|
+
var symbols = Object.getOwnPropertySymbols(object);
|
|
34
|
+
if (enumerableOnly) {
|
|
35
|
+
symbols = symbols.filter(function(sym) {
|
|
36
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
keys.push.apply(keys, symbols);
|
|
40
|
+
}
|
|
41
|
+
return keys;
|
|
42
|
+
}
|
|
43
|
+
function _object_spread_props(target, source) {
|
|
44
|
+
source = source != null ? source : {};
|
|
45
|
+
if (Object.getOwnPropertyDescriptors) {
|
|
46
|
+
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
47
|
+
} else {
|
|
48
|
+
ownKeys(Object(source)).forEach(function(key) {
|
|
49
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
return target;
|
|
53
|
+
}
|
|
54
|
+
function _object_without_properties(source, excluded) {
|
|
55
|
+
if (source == null) return {};
|
|
56
|
+
var target = _object_without_properties_loose(source, excluded);
|
|
57
|
+
var key, i;
|
|
58
|
+
if (Object.getOwnPropertySymbols) {
|
|
59
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
60
|
+
for(i = 0; i < sourceSymbolKeys.length; i++){
|
|
61
|
+
key = sourceSymbolKeys[i];
|
|
62
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
63
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
64
|
+
target[key] = source[key];
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
return target;
|
|
68
|
+
}
|
|
69
|
+
function _object_without_properties_loose(source, excluded) {
|
|
70
|
+
if (source == null) return {};
|
|
71
|
+
var target = {};
|
|
72
|
+
var sourceKeys = Object.keys(source);
|
|
73
|
+
var key, i;
|
|
74
|
+
for(i = 0; i < sourceKeys.length; i++){
|
|
75
|
+
key = sourceKeys[i];
|
|
76
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
77
|
+
target[key] = source[key];
|
|
78
|
+
}
|
|
79
|
+
return target;
|
|
80
|
+
}
|
|
2
81
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
82
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
4
83
|
import * as React from 'react';
|
|
5
84
|
import HStack from '../hstack/HStack';
|
|
6
85
|
import IconClose from '../icons/IconClose';
|
|
7
86
|
import { cn } from '../utils';
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
87
|
+
var Dialog = DialogPrimitive.Root;
|
|
88
|
+
var DialogTrigger = DialogPrimitive.Trigger;
|
|
89
|
+
var DialogPortal = DialogPrimitive.Portal;
|
|
90
|
+
var DialogClose = DialogPrimitive.Close;
|
|
91
|
+
var DialogOverlay = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
92
|
+
var className = _param.className, props = _object_without_properties(_param, [
|
|
93
|
+
"className"
|
|
94
|
+
]);
|
|
95
|
+
return /*#__PURE__*/ _jsx(DialogPrimitive.Overlay, _object_spread({
|
|
96
|
+
ref: ref,
|
|
97
|
+
className: cn('fixed inset-0 z-50 bg-black/45 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0', className)
|
|
98
|
+
}, props));
|
|
99
|
+
});
|
|
13
100
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
//
|
|
21
|
-
//
|
|
22
|
-
//
|
|
23
|
-
//
|
|
24
|
-
//
|
|
25
|
-
// '
|
|
26
|
-
// '
|
|
27
|
-
// '
|
|
28
|
-
//
|
|
29
|
-
//
|
|
30
|
-
//
|
|
31
|
-
//
|
|
32
|
-
//
|
|
33
|
-
//
|
|
34
|
-
//
|
|
35
|
-
|
|
101
|
+
var DialogContent = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
102
|
+
var className = _param.className, children = _param.children, showCloseButton = _param.showCloseButton, props = _object_without_properties(_param, [
|
|
103
|
+
"className",
|
|
104
|
+
"children",
|
|
105
|
+
"showCloseButton"
|
|
106
|
+
]);
|
|
107
|
+
return(// <DialogPortal>
|
|
108
|
+
// <DialogOverlay />
|
|
109
|
+
// <DialogPrimitive.Content
|
|
110
|
+
// ref={ref}
|
|
111
|
+
// className={cn(
|
|
112
|
+
// 'fixed left-[50%] top-[50%] z-50 w-full max-w-[628px] translate-x-[-50%] translate-y-[-50%]',
|
|
113
|
+
// 'border border-zinc-200 bg-white shadow-lg duration-200',
|
|
114
|
+
// 'data-[state=open]:animate-in data-[state=closed]:animate-out',
|
|
115
|
+
// 'data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0',
|
|
116
|
+
// 'data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95',
|
|
117
|
+
// 'data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%]',
|
|
118
|
+
// 'data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%]',
|
|
119
|
+
// 'dark:border-zinc-800 dark:bg-zinc-950',
|
|
120
|
+
// className,
|
|
121
|
+
// )}
|
|
122
|
+
// {...props}
|
|
123
|
+
// >
|
|
124
|
+
// {children}
|
|
125
|
+
// </DialogPrimitive.Content>
|
|
126
|
+
// </DialogPortal>
|
|
127
|
+
/*#__PURE__*/ _jsxs(DialogPortal, {
|
|
128
|
+
"data-slot": "dialog-portal",
|
|
129
|
+
children: [
|
|
130
|
+
/*#__PURE__*/ _jsx(DialogOverlay, {}),
|
|
131
|
+
/*#__PURE__*/ _jsxs(DialogPrimitive.Content, _object_spread_props(_object_spread({
|
|
132
|
+
autoFocus: false,
|
|
133
|
+
"data-slot": "dialog-content",
|
|
134
|
+
className: cn('bg-white data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[628px] translate-x-[-50%] translate-y-[-50%] border duration-200 rounded-xl', className)
|
|
135
|
+
}, props), {
|
|
136
|
+
children: [
|
|
137
|
+
children,
|
|
138
|
+
showCloseButton && /*#__PURE__*/ _jsxs(DialogPrimitive.Close, {
|
|
139
|
+
"data-slot": "dialog-close",
|
|
140
|
+
className: "ring-offset-black focus:ring-ring data-[state=open]:bg-accent data-[state=open]:text-muted-foreground absolute top-4 right-4 opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
|
141
|
+
children: [
|
|
142
|
+
/*#__PURE__*/ _jsx(IconClose, {}),
|
|
143
|
+
/*#__PURE__*/ _jsx("span", {
|
|
144
|
+
className: "sr-only",
|
|
145
|
+
children: "Close"
|
|
146
|
+
})
|
|
147
|
+
]
|
|
148
|
+
})
|
|
149
|
+
]
|
|
150
|
+
}))
|
|
151
|
+
]
|
|
152
|
+
}));
|
|
153
|
+
});
|
|
36
154
|
DialogContent.displayName = DialogPrimitive.Content.displayName;
|
|
37
|
-
|
|
155
|
+
var DialogHeader = function(_param) {
|
|
156
|
+
var className = _param.className, props = _object_without_properties(_param, [
|
|
157
|
+
"className"
|
|
158
|
+
]);
|
|
159
|
+
return /*#__PURE__*/ _jsx(HStack, _object_spread({
|
|
160
|
+
className: cn('justify-between p-6 border-b border-b-primary1', className)
|
|
161
|
+
}, props));
|
|
162
|
+
};
|
|
38
163
|
DialogHeader.displayName = 'DialogHeader';
|
|
39
|
-
|
|
164
|
+
var DialogFooter = function(_param) {
|
|
165
|
+
var className = _param.className, props = _object_without_properties(_param, [
|
|
166
|
+
"className"
|
|
167
|
+
]);
|
|
168
|
+
return /*#__PURE__*/ _jsx(HStack, _object_spread({
|
|
169
|
+
className: cn('gap-6 p-6 border-t border-t-primary1', className)
|
|
170
|
+
}, props));
|
|
171
|
+
};
|
|
40
172
|
DialogFooter.displayName = 'DialogFooter';
|
|
41
|
-
|
|
173
|
+
var DialogTitle = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
174
|
+
var className = _param.className, props = _object_without_properties(_param, [
|
|
175
|
+
"className"
|
|
176
|
+
]);
|
|
177
|
+
return /*#__PURE__*/ _jsx(DialogPrimitive.Title, _object_spread({
|
|
178
|
+
ref: ref,
|
|
179
|
+
className: cn('text-lg font-semibold leading-none tracking-tight', className)
|
|
180
|
+
}, props));
|
|
181
|
+
});
|
|
42
182
|
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
43
|
-
|
|
183
|
+
var DialogDescription = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
184
|
+
var className = _param.className, props = _object_without_properties(_param, [
|
|
185
|
+
"className"
|
|
186
|
+
]);
|
|
187
|
+
return /*#__PURE__*/ _jsx(DialogPrimitive.Description, _object_spread({
|
|
188
|
+
ref: ref,
|
|
189
|
+
className: cn('text-sm text-zinc-500 dark:text-zinc-400', className)
|
|
190
|
+
}, props));
|
|
191
|
+
});
|
|
44
192
|
DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
45
|
-
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger,
|
|
46
|
-
//# sourceMappingURL=index.js.map
|
|
193
|
+
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, };
|