beesoft-components 0.2.17 → 0.2.20
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/build/index.cjs.js +109 -95
- package/build/index.js +109 -95
- package/build/index.min.js +4 -4
- package/build/index.min.js.gz +0 -0
- package/package.json +1 -1
- package/types/src/components/form/date-time/date-time-functions.d.ts +2 -0
- package/types/src/components/form/date-time/date-time-month-selector.component.d.ts +3 -1
- package/types/src/components/form/date-time/date-time.component.d.ts +4 -4
package/build/index.cjs.js
CHANGED
|
@@ -6535,7 +6535,7 @@ function parseISO(argument, dirtyOptions) {
|
|
|
6535
6535
|
|
|
6536
6536
|
if (dateStrings.date) {
|
|
6537
6537
|
var parseYearResult = parseYear(dateStrings.date, additionalDigits);
|
|
6538
|
-
date = parseDate(parseYearResult.restDateString, parseYearResult.year);
|
|
6538
|
+
date = parseDate$1(parseYearResult.restDateString, parseYearResult.year);
|
|
6539
6539
|
}
|
|
6540
6540
|
|
|
6541
6541
|
if (isNaN(date) || !date) {
|
|
@@ -6628,7 +6628,7 @@ function parseYear(dateString, additionalDigits) {
|
|
|
6628
6628
|
};
|
|
6629
6629
|
}
|
|
6630
6630
|
|
|
6631
|
-
function parseDate(dateString, year) {
|
|
6631
|
+
function parseDate$1(dateString, year) {
|
|
6632
6632
|
// Invalid ISO-formatted year
|
|
6633
6633
|
if (year === null) return null;
|
|
6634
6634
|
var captures = dateString.match(dateRegex); // Invalid ISO-formatted string
|
|
@@ -24980,7 +24980,7 @@ function OverlayPanel(_a) {
|
|
|
24980
24980
|
}
|
|
24981
24981
|
return (jsxRuntime.jsx(BeeSoftTransition, __assign({ start: visibility, timeout: transitionDuration, showTransitionOptions: showTransitionOptions, hideTransitionOptions: hideTransitionOptions, onEntering: onEntering, onEntered: onEntered, onExit: onExit, onExited: onExited, unmountOnExit: unmountWhenHidden }, { children: function (_a) {
|
|
24982
24982
|
var state = _a.state, defaultStyle = _a.defaultStyle, transitionStyles = _a.transitionStyles;
|
|
24983
|
-
return (jsxRuntime.jsx("div", __assign({ className: "bsc-
|
|
24983
|
+
return (jsxRuntime.jsx("div", __assign({ className: "bsc-absolute bsc-bg-white dark:bsc-bg-gray-900 bsc-border bsc-border-solid dark:bsc-text-white dark:bsc-border-white bsc-shadow", style: __assign(__assign(__assign({}, baseStyles), defaultStyle), transitionStyles[state]), ref: function (element) { return element && onMarkupCreated(element); } }, { children: children }), void 0));
|
|
24984
24984
|
} }), void 0));
|
|
24985
24985
|
};
|
|
24986
24986
|
return ReactDOM__default['default'].createPortal(createElement(), appendTo);
|
|
@@ -25542,40 +25542,14 @@ function ContentEditableInput(props, ref) {
|
|
|
25542
25542
|
}, className);
|
|
25543
25543
|
var leftElementClasses = classnames('bsc-flex-shrink', { 'bsc-mr-2': leftElement }, leftElementClassName);
|
|
25544
25544
|
var rightElementClasses = classnames('bsc-flex-shrink', { 'bsc-ml-2': rightElement }, rightElementClassName);
|
|
25545
|
-
return (jsxRuntime.jsxs("div", __assign({ className: classNames, ref: function (element) { return onElementCreated(element); } }, { children: [jsxRuntime.jsx("div", __assign({ className: leftElementClasses, onClick: onLeftElementClicked }, { children: leftElement }), void 0),
|
|
25545
|
+
return (jsxRuntime.jsxs("div", __assign({ className: classNames, ref: function (element) { return onElementCreated(element); } }, { children: [leftElement && (jsxRuntime.jsx("div", __assign({ className: leftElementClasses, onClick: onLeftElementClicked }, { children: leftElement }), void 0)),
|
|
25546
25546
|
jsxRuntime.jsx("div", __assign({ ref: inputRef, className: "bsc-flex-grow focus:bsc-outline-none", contentEditable: !readOnly, suppressContentEditableWarning: true, onFocus: onFocused, onBlur: onBlur, onInput: onInputChanged }, { children: value }), void 0),
|
|
25547
|
-
jsxRuntime.jsx("div", __assign({ className: rightElementClasses, onClick: onRightElementClicked }, { children: rightElement }), void 0)] }), void 0));
|
|
25547
|
+
rightElement && (jsxRuntime.jsx("div", __assign({ className: rightElementClasses, onClick: onRightElementClicked }, { children: rightElement }), void 0))] }), void 0));
|
|
25548
25548
|
}
|
|
25549
25549
|
var ContentEditableInput$1 = React.forwardRef(ContentEditableInput);
|
|
25550
25550
|
|
|
25551
25551
|
var DateTimeContext = React.createContext(undefined);
|
|
25552
25552
|
|
|
25553
|
-
function useKeyDown(keyCode) {
|
|
25554
|
-
var _a = React.useState(false), keyDown = _a[0], setKeyDown = _a[1];
|
|
25555
|
-
var keyCodes = typeof keyCode === 'string' ? [keyCode] : keyCode;
|
|
25556
|
-
var downHandler = function (_a) {
|
|
25557
|
-
var key = _a.key;
|
|
25558
|
-
if (keyCodes.includes(key)) {
|
|
25559
|
-
setKeyDown(true);
|
|
25560
|
-
}
|
|
25561
|
-
};
|
|
25562
|
-
var upHandler = function (_a) {
|
|
25563
|
-
var key = _a.key;
|
|
25564
|
-
if (keyCodes.includes(key)) {
|
|
25565
|
-
setKeyDown(false);
|
|
25566
|
-
}
|
|
25567
|
-
};
|
|
25568
|
-
React.useEffect(function () {
|
|
25569
|
-
window.addEventListener('keydown', downHandler);
|
|
25570
|
-
window.addEventListener('keyup', upHandler);
|
|
25571
|
-
return function () {
|
|
25572
|
-
window.removeEventListener('keydown', downHandler);
|
|
25573
|
-
window.removeEventListener('keyup', upHandler);
|
|
25574
|
-
};
|
|
25575
|
-
}, []);
|
|
25576
|
-
return keyDown;
|
|
25577
|
-
}
|
|
25578
|
-
|
|
25579
25553
|
function getMonthMatrix(matrixDate, locale, loadOtherMonths) {
|
|
25580
25554
|
var _a, _b;
|
|
25581
25555
|
if (loadOtherMonths === void 0) { loadOtherMonths = true; }
|
|
@@ -25627,13 +25601,19 @@ function createDefaultMatrix(rows, columns, defaultValue) {
|
|
|
25627
25601
|
for (var row = 0, length_2 = rows; row < length_2; row++) {
|
|
25628
25602
|
var colArray = [];
|
|
25629
25603
|
for (var col = 0, colLength = columns; col < colLength; col++) {
|
|
25630
|
-
var clonedValue =
|
|
25604
|
+
var clonedValue = valueIsPrimitive(defaultValue)
|
|
25605
|
+
? defaultValue
|
|
25606
|
+
: __assign({}, defaultValue);
|
|
25631
25607
|
colArray.push(clonedValue);
|
|
25632
25608
|
}
|
|
25633
25609
|
rowArray.push(colArray);
|
|
25634
25610
|
}
|
|
25635
25611
|
return rowArray;
|
|
25636
25612
|
}
|
|
25613
|
+
function valueIsPrimitive(value) {
|
|
25614
|
+
var valueType = typeof value;
|
|
25615
|
+
return valueType === 'string' || valueType === 'number' || valueType === 'boolean' || value instanceof Date;
|
|
25616
|
+
}
|
|
25637
25617
|
function getTranslatedDays(locale) {
|
|
25638
25618
|
var _a;
|
|
25639
25619
|
var startDate = nextDay(new Date(), ((_a = locale.options) === null || _a === void 0 ? void 0 : _a.weekStartsOn) || 0);
|
|
@@ -25726,6 +25706,37 @@ function createDefaultColors() {
|
|
|
25726
25706
|
todayDateColor: 'bsc-bg-green-100',
|
|
25727
25707
|
};
|
|
25728
25708
|
}
|
|
25709
|
+
function parseDate(dateValue, locale) {
|
|
25710
|
+
var isoDate = parseISO(dateValue);
|
|
25711
|
+
if (isNaN(isoDate.valueOf())) {
|
|
25712
|
+
var localDate = parse(dateValue, 'Ppp', new Date(), { locale: locale });
|
|
25713
|
+
if (!isNaN(localDate.valueOf()))
|
|
25714
|
+
return localDate;
|
|
25715
|
+
localDate = parse(dateValue, 'P', new Date(), { locale: locale });
|
|
25716
|
+
if (!isNaN(localDate.valueOf()))
|
|
25717
|
+
return localDate;
|
|
25718
|
+
localDate = parse(dateValue, 'pp', new Date(), { locale: locale });
|
|
25719
|
+
if (!isNaN(localDate.valueOf()))
|
|
25720
|
+
return localDate;
|
|
25721
|
+
localDate = parse(dateValue, 'p', new Date(), { locale: locale });
|
|
25722
|
+
if (!isNaN(localDate.valueOf()))
|
|
25723
|
+
return localDate;
|
|
25724
|
+
return undefined;
|
|
25725
|
+
}
|
|
25726
|
+
return isoDate;
|
|
25727
|
+
}
|
|
25728
|
+
function parseDateRange(dateRangeValue, locale) {
|
|
25729
|
+
var datesToParse = dateRangeValue.split('-');
|
|
25730
|
+
if (datesToParse.length !== 2)
|
|
25731
|
+
return undefined;
|
|
25732
|
+
var dateValue1 = parseDate(datesToParse[0].trim(), locale);
|
|
25733
|
+
if (!dateValue1)
|
|
25734
|
+
return undefined;
|
|
25735
|
+
var dateValue2 = parseDate(datesToParse[1].trim(), locale);
|
|
25736
|
+
if (!dateValue2)
|
|
25737
|
+
return undefined;
|
|
25738
|
+
return [dateValue1, dateValue2];
|
|
25739
|
+
}
|
|
25729
25740
|
|
|
25730
25741
|
var DateSelectionType;
|
|
25731
25742
|
(function (DateSelectionType) {
|
|
@@ -25844,7 +25855,6 @@ function DateTimeCalendar(_a) {
|
|
|
25844
25855
|
var _f = React.useState(), currentSelectedDate = _f[0], setCurrentSelectedDate = _f[1];
|
|
25845
25856
|
var _g = React.useState(), selectedStartComparison = _g[0], setSelectedStartComparison = _g[1];
|
|
25846
25857
|
var _h = React.useState(), selectedEndComparison = _h[0], setSelectedEndComparison = _h[1];
|
|
25847
|
-
useKeyDown(['Meta', 'Control']);
|
|
25848
25858
|
var context = React.useContext(DateTimeContext);
|
|
25849
25859
|
var viewTemplate = context.calendarTemplate;
|
|
25850
25860
|
var loadLocaleObject = function () { return __awaiter(_this, void 0, void 0, function () {
|
|
@@ -26053,7 +26063,7 @@ function DateTimeDaySelector(_a) {
|
|
|
26053
26063
|
}
|
|
26054
26064
|
|
|
26055
26065
|
function DateTimeMonthSelector(_a) {
|
|
26056
|
-
var viewDate = _a.viewDate, locale = _a.locale, dispatcher = _a.dispatcher;
|
|
26066
|
+
var viewDate = _a.viewDate, locale = _a.locale, _b = _a.dateSelection, dateSelection = _b === void 0 ? DateSelectionType.DateTime : _b, dispatcher = _a.dispatcher;
|
|
26057
26067
|
var monthMatrix = React.useRef(getTranslatedMonthMatrix(locale));
|
|
26058
26068
|
var movePreviousYear = function () {
|
|
26059
26069
|
var previousYear = subYears(viewDate, 1);
|
|
@@ -26071,7 +26081,9 @@ function DateTimeMonthSelector(_a) {
|
|
|
26071
26081
|
};
|
|
26072
26082
|
var onMonthClicked = function (monthNumber) {
|
|
26073
26083
|
dispatcher({
|
|
26074
|
-
type:
|
|
26084
|
+
type: dateSelection !== DateSelectionType.DateRange
|
|
26085
|
+
? DateTimeActionType.DaySelector
|
|
26086
|
+
: DateTimeActionType.DateRangeSelector,
|
|
26075
26087
|
viewDate: setMonth(viewDate, monthNumber),
|
|
26076
26088
|
});
|
|
26077
26089
|
};
|
|
@@ -26108,10 +26120,17 @@ function DateTimeRangeSelector(_a) {
|
|
|
26108
26120
|
});
|
|
26109
26121
|
}
|
|
26110
26122
|
};
|
|
26123
|
+
var onMonthsClicked = function () {
|
|
26124
|
+
dispatcher({
|
|
26125
|
+
type: DateTimeActionType.MonthSelector,
|
|
26126
|
+
});
|
|
26127
|
+
};
|
|
26111
26128
|
var getSelectorTitle = function () {
|
|
26112
|
-
return viewDate.toLocaleDateString(locale.code, { month: 'long' }) + "
|
|
26129
|
+
return viewDate.toLocaleDateString(locale.code, { month: 'long' }) + " " + viewDate.toLocaleDateString(locale.code, {
|
|
26130
|
+
year: 'numeric',
|
|
26131
|
+
}) + " - " + nextMonth.toLocaleDateString(locale.code, {
|
|
26113
26132
|
month: 'long',
|
|
26114
|
-
});
|
|
26133
|
+
}) + " " + nextMonth.toLocaleDateString(locale.code, { year: 'numeric' });
|
|
26115
26134
|
};
|
|
26116
26135
|
var movePreviousMonth = function () {
|
|
26117
26136
|
if (viewDate) {
|
|
@@ -26129,7 +26148,7 @@ function DateTimeRangeSelector(_a) {
|
|
|
26129
26148
|
});
|
|
26130
26149
|
}
|
|
26131
26150
|
};
|
|
26132
|
-
return (jsxRuntime.jsxs("div", __assign({ className: "bsc-flex bsc-flex-col bc-dt-range-selector" }, { children: [jsxRuntime.jsx("div", __assign({ className: "bsc-flex-shrink bc-dt-range-scroller-wrapper" }, { children: jsxRuntime.jsx(DateTimeScroller, { title: getSelectorTitle(), scrollerType: DateScrollerType.Range, onMovePrevious: movePreviousMonth, onMoveNext: moveNextMonth }, void 0) }), void 0),
|
|
26151
|
+
return (jsxRuntime.jsxs("div", __assign({ className: "bsc-flex bsc-flex-col bc-dt-range-selector" }, { children: [jsxRuntime.jsx("div", __assign({ className: "bsc-flex-shrink bc-dt-range-scroller-wrapper" }, { children: jsxRuntime.jsx(DateTimeScroller, { title: getSelectorTitle(), scrollerType: DateScrollerType.Range, onTitleClicked: onMonthsClicked, onMovePrevious: movePreviousMonth, onMoveNext: moveNextMonth }, void 0) }), void 0),
|
|
26133
26152
|
jsxRuntime.jsx("div", __assign({ className: "bsc-flex-grow" }, { children: jsxRuntime.jsxs("div", __assign({ className: "bsc-flex bsc-flex-row bsc-py-1 bsc-px-2 bc-dt-range-wrapper" }, { children: [jsxRuntime.jsx("div", __assign({ className: "bsc-border-r bsc-border-solid bsc-border-gray-400 bsc-pr-4 bc-dt-range-calendar-1" }, { children: jsxRuntime.jsx(DateTimeCalendar, { viewDate: viewDate, selectedStartDate: selectedStartDate, selectedEndDate: selectedEndDate, selectionMode: CalendarSelectionMode.Range, onDateSelected: onDateSelected, locale: locale, dispatcher: dispatcher }, void 0) }), void 0),
|
|
26134
26153
|
jsxRuntime.jsx("div", __assign({ className: "bsc-pl-4 bc-dt-range-calendar-2" }, { children: jsxRuntime.jsx(DateTimeCalendar, { viewDate: nextMonth, selectedStartDate: selectedStartDate, selectedEndDate: selectedEndDate, selectionMode: CalendarSelectionMode.Range, onDateSelected: onDateSelected, locale: locale, dispatcher: dispatcher }, void 0) }), void 0)] }), void 0) }), void 0)] }), void 0));
|
|
26135
26154
|
}
|
|
@@ -26240,23 +26259,25 @@ function DateTimeYearSelector(_a) {
|
|
|
26240
26259
|
var getCurrentDecade = function () { return yearMatrix[0][0].toString() + " - " + yearMatrix[2][1].toString(); };
|
|
26241
26260
|
return (jsxRuntime.jsxs("div", __assign({ className: "bc-dt-year-selector", style: { minWidth: '20rem' } }, { children: [jsxRuntime.jsx(DateTimeScroller, { title: getCurrentDecade(), scrollerType: DateScrollerType.Year, onMovePrevious: movePreviousDecade, onMoveNext: moveNextDecade }, void 0),
|
|
26242
26261
|
jsxRuntime.jsx("div", __assign({ className: "bsc-w-full bc-dt-year-wrapper" }, { children: jsxRuntime.jsx("div", __assign({ className: "bsc-grid bsc-grid-cols-4 bsc-gap-4 bc-dt-year-grid" }, { children: yearMatrix.map(function (row, rIndex) {
|
|
26243
|
-
return row.map(function (column, cIndex) {
|
|
26262
|
+
return row.map(function (column, cIndex) {
|
|
26263
|
+
return column.length > 0 ? (jsxRuntime.jsx("div", __assign({ className: "bsc-text-center bsc-cursor-pointer bc-dt-year-cell", onClick: function () { return onYearClicked(column); } }, { children: column }), rIndex.toString() + cIndex.toString())) : (jsxRuntime.jsx("div", {}, rIndex.toString() + cIndex.toString()));
|
|
26264
|
+
});
|
|
26244
26265
|
}) }), void 0) }), void 0)] }), void 0));
|
|
26245
26266
|
}
|
|
26246
26267
|
|
|
26247
26268
|
function DateTime(_a) {
|
|
26248
26269
|
var _b;
|
|
26249
|
-
var value = _a.value, _c = _a.readOnly, readOnly = _c === void 0 ? false : _c, label = _a.label, _d = _a.useDefaultDateValue, useDefaultDateValue = _d === void 0 ? false : _d, locale = _a.locale, className = _a.className,
|
|
26250
|
-
var
|
|
26251
|
-
var
|
|
26270
|
+
var value = _a.value, _c = _a.readOnly, readOnly = _c === void 0 ? false : _c, label = _a.label, _d = _a.useDefaultDateValue, useDefaultDateValue = _d === void 0 ? false : _d, _e = _a.allowClear, allowClear = _e === void 0 ? false : _e, locale = _a.locale, className = _a.className, _f = _a.dateSelection, dateSelection = _f === void 0 ? DateSelectionType.DateTime : _f, dateFormat = _a.dateFormat, timeConstraints = _a.timeConstraints, icon = _a.icon, _g = _a.iconPosition, iconPosition = _g === void 0 ? CalendarIconPosition.Right : _g, inputElement = _a.inputElement, _h = _a.colors, colors = _h === void 0 ? createDefaultColors() : _h, selectableDate = _a.selectableDate, isValidDate = _a.isValidDate, onChange = _a.onChange, calendarTemplate = _a.calendarTemplate, dateScrollerTemplate = _a.dateScrollerTemplate, inputTemplate = _a.inputTemplate;
|
|
26271
|
+
var _j = React.useState(false), selectorOpen = _j[0], setSelectorOpen = _j[1];
|
|
26272
|
+
var _k = React.useState(), dropDownTarget = _k[0], setDropDownTarget = _k[1];
|
|
26252
26273
|
var language = React.useRef(locale || getBrowserLanguage());
|
|
26253
26274
|
var loadedLocale = React.useRef();
|
|
26254
26275
|
var inputElementRef = React.useRef();
|
|
26255
|
-
var contextProps = {
|
|
26276
|
+
var contextProps = React.useRef({
|
|
26256
26277
|
calendarTemplate: calendarTemplate,
|
|
26257
26278
|
dateScrollerTemplate: dateScrollerTemplate,
|
|
26258
26279
|
colors: colors,
|
|
26259
|
-
};
|
|
26280
|
+
});
|
|
26260
26281
|
React.useEffect(function () {
|
|
26261
26282
|
if (language.current) {
|
|
26262
26283
|
loadLocaleObject(language.current);
|
|
@@ -26301,62 +26322,37 @@ function DateTime(_a) {
|
|
|
26301
26322
|
})
|
|
26302
26323
|
.catch(function (error) { return console.error(error); });
|
|
26303
26324
|
};
|
|
26304
|
-
var parseDate = function (dateValue) {
|
|
26305
|
-
var isoDate = parseISO(dateValue);
|
|
26306
|
-
if (isNaN(isoDate.valueOf())) {
|
|
26307
|
-
var localDate = parse(dateValue, 'Ppp', new Date(), { locale: loadedLocale.current });
|
|
26308
|
-
if (!isNaN(localDate.valueOf()))
|
|
26309
|
-
return localDate;
|
|
26310
|
-
localDate = parse(dateValue, 'P', new Date(), { locale: loadedLocale.current });
|
|
26311
|
-
if (!isNaN(localDate.valueOf()))
|
|
26312
|
-
return localDate;
|
|
26313
|
-
localDate = parse(dateValue, 'pp', new Date(), { locale: loadedLocale.current });
|
|
26314
|
-
if (!isNaN(localDate.valueOf()))
|
|
26315
|
-
return localDate;
|
|
26316
|
-
localDate = parse(dateValue, 'p', new Date(), { locale: loadedLocale.current });
|
|
26317
|
-
if (!isNaN(localDate.valueOf()))
|
|
26318
|
-
return localDate;
|
|
26319
|
-
return undefined;
|
|
26320
|
-
}
|
|
26321
|
-
return isoDate;
|
|
26322
|
-
};
|
|
26323
|
-
var parseDateRange = function (dateRangeValue) {
|
|
26324
|
-
var datesToParse = dateRangeValue.split('-');
|
|
26325
|
-
if (datesToParse.length !== 2)
|
|
26326
|
-
return undefined;
|
|
26327
|
-
var dateValue1 = parseDate(datesToParse[0].trim());
|
|
26328
|
-
if (!dateValue1)
|
|
26329
|
-
return undefined;
|
|
26330
|
-
var dateValue2 = parseDate(datesToParse[1].trim());
|
|
26331
|
-
if (!dateValue2)
|
|
26332
|
-
return undefined;
|
|
26333
|
-
return [dateValue1, dateValue2];
|
|
26334
|
-
};
|
|
26335
26325
|
var getDateValue = function () {
|
|
26336
26326
|
var defaultDate = new Date();
|
|
26337
26327
|
defaultDate.setHours(0, 0, 0, 0);
|
|
26338
26328
|
return value
|
|
26339
26329
|
? typeof value === 'string'
|
|
26340
26330
|
? dateSelection !== DateSelectionType.DateRange
|
|
26341
|
-
? parseDate(value)
|
|
26342
|
-
: parseDateRange(value)
|
|
26331
|
+
? parseDate(value, loadedLocale.current)
|
|
26332
|
+
: parseDateRange(value, loadedLocale.current)
|
|
26343
26333
|
: value
|
|
26344
26334
|
: defaultDate;
|
|
26345
26335
|
};
|
|
26346
26336
|
var initialState = {
|
|
26347
|
-
currentSelector: dateSelection === DateSelectionType.TimeOnly
|
|
26337
|
+
currentSelector: dateSelection === DateSelectionType.TimeOnly
|
|
26338
|
+
? DateTimeActionType.TimeSelector
|
|
26339
|
+
: dateSelection === DateSelectionType.DateTime || dateSelection === DateSelectionType.DateOnly
|
|
26340
|
+
? DateTimeActionType.DaySelector
|
|
26341
|
+
: DateTimeActionType.DateRangeSelector,
|
|
26348
26342
|
currentViewDate: new Date(),
|
|
26349
26343
|
selectedDateChanged: false,
|
|
26350
26344
|
dateInitialized: false,
|
|
26351
26345
|
};
|
|
26352
|
-
var
|
|
26346
|
+
var _l = React.useReducer(reducer, initialState), state = _l[0], dispatcher = _l[1];
|
|
26353
26347
|
var onFocus = function (event) {
|
|
26354
26348
|
setDropDownElement();
|
|
26355
26349
|
setSelectorOpen(true);
|
|
26356
26350
|
};
|
|
26357
26351
|
var onInput = function (event) {
|
|
26358
26352
|
var dateString = event.target.innerText;
|
|
26359
|
-
var inputDate = dateSelection !== DateSelectionType.DateRange
|
|
26353
|
+
var inputDate = dateSelection !== DateSelectionType.DateRange
|
|
26354
|
+
? parseDate(dateString, loadedLocale.current)
|
|
26355
|
+
: parseDateRange(dateString, loadedLocale.current);
|
|
26360
26356
|
if (inputDate) {
|
|
26361
26357
|
if (!Array.isArray(inputDate)) {
|
|
26362
26358
|
dispatcher({
|
|
@@ -26392,6 +26388,13 @@ function DateTime(_a) {
|
|
|
26392
26388
|
setDropDownElement();
|
|
26393
26389
|
setSelectorOpen(!selectorOpen);
|
|
26394
26390
|
};
|
|
26391
|
+
var onClearClick = function () {
|
|
26392
|
+
dispatcher({
|
|
26393
|
+
type: DateTimeActionType.ClearDates,
|
|
26394
|
+
});
|
|
26395
|
+
setSelectorOpen(false);
|
|
26396
|
+
onChange && onChange();
|
|
26397
|
+
};
|
|
26395
26398
|
var onInputElementCreated = function (element) {
|
|
26396
26399
|
if (!inputElementRef.current) {
|
|
26397
26400
|
inputElementRef.current = element;
|
|
@@ -26405,7 +26408,11 @@ function DateTime(_a) {
|
|
|
26405
26408
|
var onDateTimeHidden = function () {
|
|
26406
26409
|
setSelectorOpen(false);
|
|
26407
26410
|
dispatcher({
|
|
26408
|
-
type: dateSelection === DateSelectionType.TimeOnly
|
|
26411
|
+
type: dateSelection === DateSelectionType.TimeOnly
|
|
26412
|
+
? DateTimeActionType.TimeSelector
|
|
26413
|
+
: dateSelection === DateSelectionType.DateTime || dateSelection === DateSelectionType.DateOnly
|
|
26414
|
+
? DateTimeActionType.DaySelector
|
|
26415
|
+
: DateTimeActionType.DateRangeSelector,
|
|
26409
26416
|
});
|
|
26410
26417
|
if (onChange && dateSelection !== DateSelectionType.DateRange && state.selectedDate && state.selectedDateChanged) {
|
|
26411
26418
|
onChange(state.selectedDate);
|
|
@@ -26483,31 +26490,30 @@ function DateTime(_a) {
|
|
|
26483
26490
|
: '';
|
|
26484
26491
|
}
|
|
26485
26492
|
};
|
|
26486
|
-
var canShowDateSelectors = dateSelection === DateSelectionType.DateTime ||
|
|
26493
|
+
var canShowDateSelectors = dateSelection === DateSelectionType.DateTime ||
|
|
26494
|
+
dateSelection === DateSelectionType.DateOnly ||
|
|
26495
|
+
dateSelection === DateSelectionType.DateRange;
|
|
26487
26496
|
var canShowTimeSelector = dateSelection === DateSelectionType.DateTime || dateSelection === DateSelectionType.TimeOnly;
|
|
26488
26497
|
var inputProps = iconPosition === CalendarIconPosition.None
|
|
26489
26498
|
? {}
|
|
26490
26499
|
: iconPosition === CalendarIconPosition.Right
|
|
26491
26500
|
? {
|
|
26492
|
-
rightElement:
|
|
26493
|
-
|
|
26494
|
-
onRightElementClick: !readOnly ? onCalendarClick : undefined,
|
|
26501
|
+
rightElement: (jsxRuntime.jsxs("div", __assign({ className: "bsc-flex" }, { children: [allowClear && !readOnly && (jsxRuntime.jsx("div", { children: jsxRuntime.jsx(FontAwesomeIcon, { className: "bsc-cursor-pointer bsc-text-sm", icon: ['fas', 'times'], size: "sm", onClick: onClearClick }, void 0) }, void 0)),
|
|
26502
|
+
jsxRuntime.jsx("div", __assign({ className: "bsc-ml-2" }, { children: icon || (jsxRuntime.jsx(FontAwesomeIcon, { className: !readOnly ? 'bsc-cursor-pointer' : undefined, icon: ['far', 'calendar-alt'], onClick: !readOnly ? onCalendarClick : undefined }, void 0)) }), void 0)] }), void 0)),
|
|
26495
26503
|
}
|
|
26496
26504
|
: {
|
|
26497
|
-
leftElement: icon || jsxRuntime.jsx(FontAwesomeIcon, { icon: ['far', 'calendar-alt'] }, void 0),
|
|
26498
|
-
|
|
26499
|
-
onLeftElementClick: !readOnly ? onCalendarClick : undefined,
|
|
26505
|
+
leftElement: (jsxRuntime.jsxs("div", __assign({ className: "bsc-flex" }, { children: [jsxRuntime.jsx("div", __assign({ className: "bsc-mr-2" }, { children: icon || (jsxRuntime.jsx(FontAwesomeIcon, { className: !readOnly ? 'bsc-cursor-pointer' : undefined, icon: ['far', 'calendar-alt'], onClick: !readOnly ? onCalendarClick : undefined }, void 0)) }), void 0),
|
|
26506
|
+
allowClear && !readOnly && (jsxRuntime.jsx("div", { children: jsxRuntime.jsx(FontAwesomeIcon, { className: "bsc-cursor-pointer bsc-text-sm", icon: ['fas', 'times'], size: "sm", onClick: onClearClick }, void 0) }, void 0))] }), void 0)),
|
|
26500
26507
|
};
|
|
26501
26508
|
var inputTemplateProps = {
|
|
26502
26509
|
label: label,
|
|
26503
26510
|
readOnly: readOnly,
|
|
26511
|
+
allowClear: allowClear,
|
|
26504
26512
|
getValue: getValue,
|
|
26505
26513
|
onFocus: onFocus,
|
|
26506
26514
|
onInput: onInput,
|
|
26507
26515
|
iconPosition: iconPosition,
|
|
26508
26516
|
iconElement: inputProps.rightElement || inputProps.leftElement,
|
|
26509
|
-
iconElementClassName: inputProps.rightElementClassName || inputProps.leftElementClassName,
|
|
26510
|
-
onElementClick: inputProps.onRightElementClick || inputProps.onLeftElementClick,
|
|
26511
26517
|
};
|
|
26512
26518
|
var defaultTemplate = function (props, children) { return (jsxRuntime.jsx(jsxRuntime.Fragment, { children: children }, void 0)); };
|
|
26513
26519
|
var template = inputTemplate || defaultTemplate;
|
|
@@ -26515,7 +26521,7 @@ function DateTime(_a) {
|
|
|
26515
26521
|
_b["" + ((colors === null || colors === void 0 ? void 0 : colors.readOnlyInputBgColor) || 'bsc-bg-gray-200')] = readOnly,
|
|
26516
26522
|
_b["" + ((colors === null || colors === void 0 ? void 0 : colors.inputBgColor) || 'bsc-bg-white')] = !readOnly,
|
|
26517
26523
|
_b), "dark:bsc-bg-black " + (colors === null || colors === void 0 ? void 0 : colors.inputBorderColor) + " bc-dt-input", className);
|
|
26518
|
-
return (jsxRuntime.jsx(DateTimeContext.Provider, __assign({ value: contextProps }, { children: jsxRuntime.jsxs("div", __assign({ className: "bc-date-time" }, { children: [jsxRuntime.jsxs(TemplateOutlet, __assign({ props: inputTemplateProps, template: template }, { children: [label && jsxRuntime.jsx("label", __assign({ className: "dark:bsc-text-white bc-dt-label" }, { children: label }), void 0),
|
|
26524
|
+
return (jsxRuntime.jsx(DateTimeContext.Provider, __assign({ value: contextProps.current }, { children: jsxRuntime.jsxs("div", __assign({ className: "bc-date-time" }, { children: [jsxRuntime.jsxs(TemplateOutlet, __assign({ props: inputTemplateProps, template: template }, { children: [label && jsxRuntime.jsx("label", __assign({ className: "dark:bsc-text-white bc-dt-label" }, { children: label }), void 0),
|
|
26519
26525
|
jsxRuntime.jsx(ContentEditableInput$1, __assign({ value: getValue(), readOnly: readOnly, className: inputStyles, onFocus: onFocus, onInput: onInput, onElementCreate: onInputElementCreated }, inputProps), void 0)] }), void 0),
|
|
26520
26526
|
jsxRuntime.jsx(OverlayPanel, __assign({ visible: selectorOpen, target: dropDownTarget, shouldTargetCloseOverlay: false, shouldScrollCloseOverlay: true, shouldCheckZIndex: true, hidden: onDateTimeHidden, unmountWhenHidden: true }, { children: jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [state.currentSelector === DateTimeActionType.DaySelector &&
|
|
26521
26527
|
canShowDateSelectors &&
|
|
@@ -26524,7 +26530,7 @@ function DateTime(_a) {
|
|
|
26524
26530
|
state.currentSelector === DateTimeActionType.MonthSelector &&
|
|
26525
26531
|
canShowDateSelectors &&
|
|
26526
26532
|
state.dateInitialized &&
|
|
26527
|
-
loadedLocale.current && (jsxRuntime.jsx(DateTimeMonthSelector, { viewDate: state.currentViewDate, locale: loadedLocale.current, dispatcher: dispatcher }, void 0)),
|
|
26533
|
+
loadedLocale.current && (jsxRuntime.jsx(DateTimeMonthSelector, { viewDate: state.currentViewDate, locale: loadedLocale.current, dateSelection: dateSelection, dispatcher: dispatcher }, void 0)),
|
|
26528
26534
|
state.currentSelector === DateTimeActionType.YearSelector &&
|
|
26529
26535
|
canShowDateSelectors &&
|
|
26530
26536
|
state.dateInitialized &&
|
|
@@ -26533,7 +26539,10 @@ function DateTime(_a) {
|
|
|
26533
26539
|
canShowTimeSelector &&
|
|
26534
26540
|
state.dateInitialized &&
|
|
26535
26541
|
loadedLocale.current && (jsxRuntime.jsx(DateTimeTimeSelector, { viewDate: state.currentViewDate, showDateSelector: dateSelection === DateSelectionType.DateTime, locale: loadedLocale.current, timeConstraints: timeConstraints, dispatcher: dispatcher }, void 0)),
|
|
26536
|
-
|
|
26542
|
+
state.currentSelector === DateTimeActionType.DateRangeSelector &&
|
|
26543
|
+
canShowDateSelectors &&
|
|
26544
|
+
state.dateInitialized &&
|
|
26545
|
+
loadedLocale.current && (jsxRuntime.jsx(DateTimeRangeSelector, { viewDate: state.currentViewDate, selectedStartDate: state.selectedStartDate, selectedEndDate: state.selectedEndDate, locale: loadedLocale.current, dispatcher: dispatcher }, void 0))] }, void 0) }), void 0)] }), void 0) }), void 0));
|
|
26537
26546
|
}
|
|
26538
26547
|
|
|
26539
26548
|
function styleInject(css, ref) {
|
|
@@ -26563,7 +26572,7 @@ function styleInject(css, ref) {
|
|
|
26563
26572
|
}
|
|
26564
26573
|
}
|
|
26565
26574
|
|
|
26566
|
-
var css_248z = "/*! tailwindcss v2.1.2 | MIT License | https://tailwindcss.com */\n\n/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */\n\n/*\nDocument\n========\n*/\n\n/**\nUse a better box model (opinionated).\n*/\n\n*,\n::before,\n::after {\n box-sizing: border-box;\n}\n\n/**\nUse a more readable tab size (opinionated).\n*/\n\nhtml {\n -moz-tab-size: 4;\n tab-size: 4;\n}\n\n/**\n1. Correct the line height in all browsers.\n2. Prevent adjustments of font size after orientation changes in iOS.\n*/\n\nhtml {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/*\nSections\n========\n*/\n\n/**\nRemove the margin in all browsers.\n*/\n\nbody {\n margin: 0;\n}\n\n/**\nImprove consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n*/\n\nbody {\n font-family:\n\t\tsystem-ui,\n\t\t-apple-system, /* Firefox supports this but not yet `system-ui` */\n\t\t'Segoe UI',\n\t\tRoboto,\n\t\tHelvetica,\n\t\tArial,\n\t\tsans-serif,\n\t\t'Apple Color Emoji',\n\t\t'Segoe UI Emoji';\n}\n\n/*\nGrouping content\n================\n*/\n\n/**\n1. Add the correct height in Firefox.\n2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n*/\n\nhr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n}\n\n/*\nText-level semantics\n====================\n*/\n\n/**\nAdd the correct text decoration in Chrome, Edge, and Safari.\n*/\n\nabbr[title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n}\n\n/**\nAdd the correct font weight in Edge and Safari.\n*/\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n2. Correct the odd 'em' font sizing in all browsers.\n*/\n\ncode,\nkbd,\nsamp,\npre {\n font-family:\n\t\tui-monospace,\n\t\tSFMono-Regular,\n\t\tConsolas,\n\t\t'Liberation Mono',\n\t\tMenlo,\n\t\tmonospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\nAdd the correct font size in all browsers.\n*/\n\nsmall {\n font-size: 80%;\n}\n\n/**\nPrevent 'sub' and 'sup' elements from affecting the line height in all browsers.\n*/\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/*\nTabular data\n============\n*/\n\n/**\n1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n*/\n\ntable {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n}\n\n/*\nForms\n=====\n*/\n\n/**\n1. Change the font styles in all browsers.\n2. Remove the margin in Firefox and Safari.\n*/\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n}\n\n/**\nRemove the inheritance of text transform in Edge and Firefox.\n1. Remove the inheritance of text transform in Firefox.\n*/\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\nCorrect the inability to style clickable types in iOS and Safari.\n*/\n\nbutton,\n[type='button'] {\n -webkit-appearance: button;\n}\n\n/**\nRemove the inner border and padding in Firefox.\n*/\n\n/**\nRestore the focus styles unset by the previous rule.\n*/\n\n/**\nRemove the additional ':invalid' styles in Firefox.\nSee: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737\n*/\n\n/**\nRemove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.\n*/\n\nlegend {\n padding: 0;\n}\n\n/**\nAdd the correct vertical alignment in Chrome and Firefox.\n*/\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\nCorrect the cursor style of increment and decrement buttons in Safari.\n*/\n\n/**\n1. Correct the odd appearance in Chrome and Safari.\n2. Correct the outline style in Safari.\n*/\n\n/**\nRemove the inner padding in Chrome and Safari on macOS.\n*/\n\n/**\n1. Correct the inability to style clickable types in iOS and Safari.\n2. Change font properties to 'inherit' in Safari.\n*/\n\n/*\nInteractive\n===========\n*/\n\n/*\nAdd the correct display in Chrome and Safari.\n*/\n\nsummary {\n display: list-item;\n}\n\n/**\n * Manually forked from SUIT CSS Base: https://github.com/suitcss/base\n * A thin layer on top of normalize.css that provides a starting point more\n * suitable for web applications.\n */\n\n/**\n * Removes the default spacing and border for appropriate elements.\n */\n\nblockquote,\ndl,\ndd,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\nhr,\nfigure,\np,\npre {\n margin: 0;\n}\n\nbutton {\n background-color: transparent;\n background-image: none;\n}\n\n/**\n * Work around a Firefox/IE bug where the transparent `button` background\n * results in a loss of the default `button` focus styles.\n */\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\nfieldset {\n margin: 0;\n padding: 0;\n}\n\nol,\nul {\n list-style: none;\n margin: 0;\n padding: 0;\n}\n\n/**\n * Tailwind custom reset styles\n */\n\n/**\n * 1. Use the user's configured `sans` font-family (with Tailwind's default\n * sans-serif font stack as a fallback) as a sane default.\n * 2. Use Tailwind's default \"normal\" line-height so the user isn't forced\n * to override it to ensure consistency even when using the default theme.\n */\n\nhtml {\n font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; /* 1 */\n line-height: 1.5; /* 2 */\n}\n\n/**\n * Inherit font-family and line-height from `html` so users can set them as\n * a class directly on the `html` element.\n */\n\nbody {\n font-family: inherit;\n line-height: inherit;\n}\n\n/**\n * 1. Prevent padding and border from affecting element width.\n *\n * We used to set this in the html element and inherit from\n * the parent element for everything else. This caused issues\n * in shadow-dom-enhanced elements like <details> where the content\n * is wrapped by a div with box-sizing set to `content-box`.\n *\n * https://github.com/mozdevs/cssremedy/issues/4\n *\n *\n * 2. Allow adding a border to an element by just adding a border-width.\n *\n * By default, the way the browser specifies that an element should have no\n * border is by setting it's border-style to `none` in the user-agent\n * stylesheet.\n *\n * In order to easily add borders to elements by just setting the `border-width`\n * property, we change the default border-style for all elements to `solid`, and\n * use border-width to hide them instead. This way our `border` utilities only\n * need to set the `border-width` property instead of the entire `border`\n * shorthand, making our border utilities much more straightforward to compose.\n *\n * https://github.com/tailwindcss/tailwindcss/pull/116\n */\n\n*,\n::before,\n::after {\n box-sizing: border-box; /* 1 */\n border-width: 0; /* 2 */\n border-style: solid; /* 2 */\n border-color: #e5e7eb; /* 2 */\n}\n\n/*\n * Ensure horizontal rules are visible by default\n */\n\nhr {\n border-top-width: 1px;\n}\n\n/**\n * Undo the `border-style: none` reset that Normalize applies to images so that\n * our `border-{width}` utilities have the expected effect.\n *\n * The Normalize reset is unnecessary for us since we default the border-width\n * to 0 on all elements.\n *\n * https://github.com/tailwindcss/tailwindcss/issues/362\n */\n\nimg {\n border-style: solid;\n}\n\ntextarea {\n resize: vertical;\n}\n\ninput::-webkit-input-placeholder, textarea::-webkit-input-placeholder {\n opacity: 1;\n color: #9ca3af;\n}\n\ninput:-ms-input-placeholder, textarea:-ms-input-placeholder {\n opacity: 1;\n color: #9ca3af;\n}\n\ninput::placeholder,\ntextarea::placeholder {\n opacity: 1;\n color: #9ca3af;\n}\n\nbutton {\n cursor: pointer;\n}\n\ntable {\n border-collapse: collapse;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-size: inherit;\n font-weight: inherit;\n}\n\n/**\n * Reset links to optimize for opt-in styling instead of\n * opt-out.\n */\n\na {\n color: inherit;\n text-decoration: inherit;\n}\n\n/**\n * Reset form element properties that are easy to forget to\n * style explicitly so you don't inadvertently introduce\n * styles that deviate from your design system. These styles\n * supplement a partial reset that is already applied by\n * normalize.css.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n padding: 0;\n line-height: inherit;\n color: inherit;\n}\n\n/**\n * Use the configured 'mono' font family for elements that\n * are expected to be rendered with a monospace font, falling\n * back to the system monospace stack if there is no configured\n * 'mono' font family.\n */\n\npre,\ncode,\nkbd,\nsamp {\n font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n/**\n * Make replaced elements `display: block` by default as that's\n * the behavior you want almost all of the time. Inspired by\n * CSS Remedy, with `svg` added as well.\n *\n * https://github.com/mozdevs/cssremedy/issues/14\n */\n\nimg,\nsvg,\nvideo,\ncanvas,\naudio,\niframe,\nembed,\nobject {\n display: block;\n vertical-align: middle;\n}\n\n/**\n * Constrain images and videos to the parent width and preserve\n * their intrinsic aspect ratio.\n *\n * https://github.com/mozdevs/cssremedy/issues/14\n */\n\nimg,\nvideo {\n max-width: 100%;\n height: auto;\n}\n\n.bsc-bg-white {\n --tw-bg-opacity: 1;\n background-color: rgba(255, 255, 255, var(--tw-bg-opacity));\n}\n\n.bsc-bg-gray-200 {\n --tw-bg-opacity: 1;\n background-color: rgba(229, 231, 235, var(--tw-bg-opacity));\n}\n\n.bsc-bg-gray-900 {\n --tw-bg-opacity: 1;\n background-color: rgba(17, 24, 39, var(--tw-bg-opacity));\n}\n\n.bsc-bg-red-500 {\n --tw-bg-opacity: 1;\n background-color: rgba(239, 68, 68, var(--tw-bg-opacity));\n}\n\n.bsc-bg-green-100 {\n --tw-bg-opacity: 1;\n background-color: rgba(209, 250, 229, var(--tw-bg-opacity));\n}\n\n.bsc-bg-blue-100 {\n --tw-bg-opacity: 1;\n background-color: rgba(219, 234, 254, var(--tw-bg-opacity));\n}\n\n.bsc-bg-blue-200 {\n --tw-bg-opacity: 1;\n background-color: rgba(191, 219, 254, var(--tw-bg-opacity));\n}\n\n.hover\\:bsc-bg-gray-300:hover {\n --tw-bg-opacity: 1;\n background-color: rgba(209, 213, 219, var(--tw-bg-opacity));\n}\n\n.bsc-dark .dark\\:bsc-bg-black {\n --tw-bg-opacity: 1;\n background-color: rgba(0, 0, 0, var(--tw-bg-opacity));\n}\n\n.bsc-dark .dark\\:bsc-bg-white {\n --tw-bg-opacity: 1;\n background-color: rgba(255, 255, 255, var(--tw-bg-opacity));\n}\n\n.bsc-dark .dark\\:bsc-bg-gray-900 {\n --tw-bg-opacity: 1;\n background-color: rgba(17, 24, 39, var(--tw-bg-opacity));\n}\n\n.bsc-dark .dark\\:hover\\:bsc-bg-white:hover {\n --tw-bg-opacity: 1;\n background-color: rgba(255, 255, 255, var(--tw-bg-opacity));\n}\n\n.bsc-border-transparent {\n border-color: transparent;\n}\n\n.bsc-border-black {\n --tw-border-opacity: 1;\n border-color: rgba(0, 0, 0, var(--tw-border-opacity));\n}\n\n.bsc-border-gray-300 {\n --tw-border-opacity: 1;\n border-color: rgba(209, 213, 219, var(--tw-border-opacity));\n}\n\n.bsc-border-gray-400 {\n --tw-border-opacity: 1;\n border-color: rgba(156, 163, 175, var(--tw-border-opacity));\n}\n\n.bsc-border-gray-500 {\n --tw-border-opacity: 1;\n border-color: rgba(107, 114, 128, var(--tw-border-opacity));\n}\n\n.bsc-dark .dark\\:bsc-border-white {\n --tw-border-opacity: 1;\n border-color: rgba(255, 255, 255, var(--tw-border-opacity));\n}\n\n.bsc-rounded-md {\n border-radius: 0.375rem;\n}\n\n.bsc-rounded-full {\n border-radius: 9999px;\n}\n\n.bsc-border-solid {\n border-style: solid;\n}\n\n.bsc-border-none {\n border-style: none;\n}\n\n.bsc-border {\n border-width: 1px;\n}\n\n.bsc-border-r {\n border-right-width: 1px;\n}\n\n.bsc-cursor-pointer {\n cursor: pointer;\n}\n\n.bsc-cursor-not-allowed {\n cursor: not-allowed;\n}\n\n.bsc-flex {\n display: flex;\n}\n\n.bsc-grid {\n display: grid;\n}\n\n.bsc-flex-row {\n flex-direction: row;\n}\n\n.bsc-flex-col {\n flex-direction: column;\n}\n\n.bsc-justify-center {\n justify-content: center;\n}\n\n.bsc-flex-grow {\n flex-grow: 1;\n}\n\n.bsc-flex-shrink {\n flex-shrink: 1;\n}\n\n.bsc-font-bold {\n font-weight: 700;\n}\n\n.bsc-text-sm {\n font-size: 0.875rem;\n line-height: 1.25rem;\n}\n\n.bsc-mr-2 {\n margin-right: 0.5rem;\n}\n\n.bsc-ml-2 {\n margin-left: 0.5rem;\n}\n\n.focus\\:bsc-outline-none:focus {\n outline: 2px solid transparent;\n outline-offset: 2px;\n}\n\n.bsc-overflow-hidden {\n overflow: hidden;\n}\n\n.bsc-overflow-scroll {\n overflow: scroll;\n}\n\n.bsc-overflow-x-auto {\n overflow-x: auto;\n}\n\n.bsc-overflow-y-hidden {\n overflow-y: hidden;\n}\n\n.bsc-p-2 {\n padding: 0.5rem;\n}\n\n.bsc-p-4 {\n padding: 1rem;\n}\n\n.bsc-py-1 {\n padding-top: 0.25rem;\n padding-bottom: 0.25rem;\n}\n\n.bsc-px-2 {\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n}\n\n.bsc-pr-4 {\n padding-right: 1rem;\n}\n\n.bsc-pl-4 {\n padding-left: 1rem;\n}\n\n.bsc-pb-8 {\n padding-bottom: 2rem;\n}\n\n.bsc-fixed {\n position: fixed;\n}\n\n* {\n --tw-shadow: 0 0 #0000;\n}\n\n.bsc-shadow-sm {\n --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n\n.bsc-shadow {\n --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n\n* {\n --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-color: rgba(59, 130, 246, 0.5);\n --tw-ring-offset-shadow: 0 0 #0000;\n --tw-ring-shadow: 0 0 #0000;\n}\n\n.bsc-text-left {\n text-align: left;\n}\n\n.bsc-text-center {\n text-align: center;\n}\n\n.bsc-text-gray-400 {\n --tw-text-opacity: 1;\n color: rgba(156, 163, 175, var(--tw-text-opacity));\n}\n\n.bsc-text-red-300 {\n --tw-text-opacity: 1;\n color: rgba(252, 165, 165, var(--tw-text-opacity));\n}\n\n.bsc-dark .dark\\:bsc-text-black {\n --tw-text-opacity: 1;\n color: rgba(0, 0, 0, var(--tw-text-opacity));\n}\n\n.bsc-dark .dark\\:bsc-text-white {\n --tw-text-opacity: 1;\n color: rgba(255, 255, 255, var(--tw-text-opacity));\n}\n\n.bsc-dark .dark\\:hover\\:bsc-text-black:hover {\n --tw-text-opacity: 1;\n color: rgba(0, 0, 0, var(--tw-text-opacity));\n}\n\n.bsc-whitespace-pre {\n white-space: pre;\n}\n\n.bsc-w-24 {\n width: 6rem;\n}\n\n.bsc-w-full {\n width: 100%;\n}\n\n.bsc-gap-3 {\n gap: 0.75rem;\n}\n\n.bsc-gap-4 {\n gap: 1rem;\n}\n\n.bsc-grid-cols-4 {\n grid-template-columns: repeat(4, minmax(0, 1fr));\n}\n\n.bsc-grid-cols-7 {\n grid-template-columns: repeat(7, minmax(0, 1fr));\n}\n\n.bsc-col-span-4 {\n grid-column: span 4 / span 4;\n}\n\n@-webkit-keyframes bsc-spin {\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes bsc-spin {\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@-webkit-keyframes bsc-ping {\n 75%, 100% {\n -webkit-transform: scale(2);\n transform: scale(2);\n opacity: 0;\n }\n}\n\n@keyframes bsc-ping {\n 75%, 100% {\n -webkit-transform: scale(2);\n transform: scale(2);\n opacity: 0;\n }\n}\n\n@-webkit-keyframes bsc-pulse {\n 50% {\n opacity: .5;\n }\n}\n\n@keyframes bsc-pulse {\n 50% {\n opacity: .5;\n }\n}\n\n@-webkit-keyframes bsc-bounce {\n 0%, 100% {\n -webkit-transform: translateY(-25%);\n transform: translateY(-25%);\n -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);\n animation-timing-function: cubic-bezier(0.8,0,1,1);\n }\n\n 50% {\n -webkit-transform: none;\n transform: none;\n -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);\n animation-timing-function: cubic-bezier(0,0,0.2,1);\n }\n}\n\n@keyframes bsc-bounce {\n 0%, 100% {\n -webkit-transform: translateY(-25%);\n transform: translateY(-25%);\n -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);\n animation-timing-function: cubic-bezier(0.8,0,1,1);\n }\n\n 50% {\n -webkit-transform: none;\n transform: none;\n -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);\n animation-timing-function: cubic-bezier(0,0,0.2,1);\n }\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',\n monospace;\n}\n\n@media (min-width: 640px) {\n}\n\n@media (min-width: 768px) {\n}\n\n@media (min-width: 1024px) {\n}\n\n@media (min-width: 1280px) {\n}\n\n@media (min-width: 1536px) {\n}\n";
|
|
26575
|
+
var css_248z = "/*! tailwindcss v2.1.2 | MIT License | https://tailwindcss.com */\n\n/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */\n\n/*\nDocument\n========\n*/\n\n/**\nUse a better box model (opinionated).\n*/\n\n*,\n::before,\n::after {\n box-sizing: border-box;\n}\n\n/**\nUse a more readable tab size (opinionated).\n*/\n\nhtml {\n tab-size: 4;\n}\n\n/**\n1. Correct the line height in all browsers.\n2. Prevent adjustments of font size after orientation changes in iOS.\n*/\n\nhtml {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/*\nSections\n========\n*/\n\n/**\nRemove the margin in all browsers.\n*/\n\nbody {\n margin: 0;\n}\n\n/**\nImprove consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n*/\n\nbody {\n font-family:\n\t\tsystem-ui,\n\t\t-apple-system, /* Firefox supports this but not yet `system-ui` */\n\t\t'Segoe UI',\n\t\tRoboto,\n\t\tHelvetica,\n\t\tArial,\n\t\tsans-serif,\n\t\t'Apple Color Emoji',\n\t\t'Segoe UI Emoji';\n}\n\n/*\nGrouping content\n================\n*/\n\n/**\n1. Add the correct height in Firefox.\n2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n*/\n\nhr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n}\n\n/*\nText-level semantics\n====================\n*/\n\n/**\nAdd the correct text decoration in Chrome, Edge, and Safari.\n*/\n\nabbr[title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n}\n\n/**\nAdd the correct font weight in Edge and Safari.\n*/\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n2. Correct the odd 'em' font sizing in all browsers.\n*/\n\ncode,\nkbd,\nsamp,\npre {\n font-family:\n\t\tui-monospace,\n\t\tSFMono-Regular,\n\t\tConsolas,\n\t\t'Liberation Mono',\n\t\tMenlo,\n\t\tmonospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\nAdd the correct font size in all browsers.\n*/\n\nsmall {\n font-size: 80%;\n}\n\n/**\nPrevent 'sub' and 'sup' elements from affecting the line height in all browsers.\n*/\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/*\nTabular data\n============\n*/\n\n/**\n1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n*/\n\ntable {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n}\n\n/*\nForms\n=====\n*/\n\n/**\n1. Change the font styles in all browsers.\n2. Remove the margin in Firefox and Safari.\n*/\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n}\n\n/**\nRemove the inheritance of text transform in Edge and Firefox.\n1. Remove the inheritance of text transform in Firefox.\n*/\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\nCorrect the inability to style clickable types in iOS and Safari.\n*/\n\nbutton,\n[type='button'] {\n -webkit-appearance: button;\n}\n\n/**\nRemove the inner border and padding in Firefox.\n*/\n\n/**\nRestore the focus styles unset by the previous rule.\n*/\n\n/**\nRemove the additional ':invalid' styles in Firefox.\nSee: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737\n*/\n\n/**\nRemove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.\n*/\n\nlegend {\n padding: 0;\n}\n\n/**\nAdd the correct vertical alignment in Chrome and Firefox.\n*/\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\nCorrect the cursor style of increment and decrement buttons in Safari.\n*/\n\n/**\n1. Correct the odd appearance in Chrome and Safari.\n2. Correct the outline style in Safari.\n*/\n\n/**\nRemove the inner padding in Chrome and Safari on macOS.\n*/\n\n/**\n1. Correct the inability to style clickable types in iOS and Safari.\n2. Change font properties to 'inherit' in Safari.\n*/\n\n/*\nInteractive\n===========\n*/\n\n/*\nAdd the correct display in Chrome and Safari.\n*/\n\nsummary {\n display: list-item;\n}\n\n/**\n * Manually forked from SUIT CSS Base: https://github.com/suitcss/base\n * A thin layer on top of normalize.css that provides a starting point more\n * suitable for web applications.\n */\n\n/**\n * Removes the default spacing and border for appropriate elements.\n */\n\nblockquote,\ndl,\ndd,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\nhr,\nfigure,\np,\npre {\n margin: 0;\n}\n\nbutton {\n background-color: transparent;\n background-image: none;\n}\n\n/**\n * Work around a Firefox/IE bug where the transparent `button` background\n * results in a loss of the default `button` focus styles.\n */\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\nfieldset {\n margin: 0;\n padding: 0;\n}\n\nol,\nul {\n list-style: none;\n margin: 0;\n padding: 0;\n}\n\n/**\n * Tailwind custom reset styles\n */\n\n/**\n * 1. Use the user's configured `sans` font-family (with Tailwind's default\n * sans-serif font stack as a fallback) as a sane default.\n * 2. Use Tailwind's default \"normal\" line-height so the user isn't forced\n * to override it to ensure consistency even when using the default theme.\n */\n\nhtml {\n font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; /* 1 */\n line-height: 1.5; /* 2 */\n}\n\n/**\n * Inherit font-family and line-height from `html` so users can set them as\n * a class directly on the `html` element.\n */\n\nbody {\n font-family: inherit;\n line-height: inherit;\n}\n\n/**\n * 1. Prevent padding and border from affecting element width.\n *\n * We used to set this in the html element and inherit from\n * the parent element for everything else. This caused issues\n * in shadow-dom-enhanced elements like <details> where the content\n * is wrapped by a div with box-sizing set to `content-box`.\n *\n * https://github.com/mozdevs/cssremedy/issues/4\n *\n *\n * 2. Allow adding a border to an element by just adding a border-width.\n *\n * By default, the way the browser specifies that an element should have no\n * border is by setting it's border-style to `none` in the user-agent\n * stylesheet.\n *\n * In order to easily add borders to elements by just setting the `border-width`\n * property, we change the default border-style for all elements to `solid`, and\n * use border-width to hide them instead. This way our `border` utilities only\n * need to set the `border-width` property instead of the entire `border`\n * shorthand, making our border utilities much more straightforward to compose.\n *\n * https://github.com/tailwindcss/tailwindcss/pull/116\n */\n\n*,\n::before,\n::after {\n box-sizing: border-box; /* 1 */\n border-width: 0; /* 2 */\n border-style: solid; /* 2 */\n border-color: #e5e7eb; /* 2 */\n}\n\n/*\n * Ensure horizontal rules are visible by default\n */\n\nhr {\n border-top-width: 1px;\n}\n\n/**\n * Undo the `border-style: none` reset that Normalize applies to images so that\n * our `border-{width}` utilities have the expected effect.\n *\n * The Normalize reset is unnecessary for us since we default the border-width\n * to 0 on all elements.\n *\n * https://github.com/tailwindcss/tailwindcss/issues/362\n */\n\nimg {\n border-style: solid;\n}\n\ntextarea {\n resize: vertical;\n}\n\ninput::-webkit-input-placeholder, textarea::-webkit-input-placeholder {\n opacity: 1;\n color: #9ca3af;\n}\n\ninput:-ms-input-placeholder, textarea:-ms-input-placeholder {\n opacity: 1;\n color: #9ca3af;\n}\n\ninput::placeholder,\ntextarea::placeholder {\n opacity: 1;\n color: #9ca3af;\n}\n\nbutton {\n cursor: pointer;\n}\n\ntable {\n border-collapse: collapse;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-size: inherit;\n font-weight: inherit;\n}\n\n/**\n * Reset links to optimize for opt-in styling instead of\n * opt-out.\n */\n\na {\n color: inherit;\n text-decoration: inherit;\n}\n\n/**\n * Reset form element properties that are easy to forget to\n * style explicitly so you don't inadvertently introduce\n * styles that deviate from your design system. These styles\n * supplement a partial reset that is already applied by\n * normalize.css.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n padding: 0;\n line-height: inherit;\n color: inherit;\n}\n\n/**\n * Use the configured 'mono' font family for elements that\n * are expected to be rendered with a monospace font, falling\n * back to the system monospace stack if there is no configured\n * 'mono' font family.\n */\n\npre,\ncode,\nkbd,\nsamp {\n font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n/**\n * Make replaced elements `display: block` by default as that's\n * the behavior you want almost all of the time. Inspired by\n * CSS Remedy, with `svg` added as well.\n *\n * https://github.com/mozdevs/cssremedy/issues/14\n */\n\nimg,\nsvg,\nvideo,\ncanvas,\naudio,\niframe,\nembed,\nobject {\n display: block;\n vertical-align: middle;\n}\n\n/**\n * Constrain images and videos to the parent width and preserve\n * their intrinsic aspect ratio.\n *\n * https://github.com/mozdevs/cssremedy/issues/14\n */\n\nimg,\nvideo {\n max-width: 100%;\n height: auto;\n}\n\n.bsc-bg-white {\n --tw-bg-opacity: 1;\n background-color: rgba(255, 255, 255, var(--tw-bg-opacity));\n}\n\n.bsc-bg-gray-200 {\n --tw-bg-opacity: 1;\n background-color: rgba(229, 231, 235, var(--tw-bg-opacity));\n}\n\n.bsc-bg-gray-900 {\n --tw-bg-opacity: 1;\n background-color: rgba(17, 24, 39, var(--tw-bg-opacity));\n}\n\n.bsc-bg-red-500 {\n --tw-bg-opacity: 1;\n background-color: rgba(239, 68, 68, var(--tw-bg-opacity));\n}\n\n.bsc-bg-green-100 {\n --tw-bg-opacity: 1;\n background-color: rgba(209, 250, 229, var(--tw-bg-opacity));\n}\n\n.bsc-bg-blue-100 {\n --tw-bg-opacity: 1;\n background-color: rgba(219, 234, 254, var(--tw-bg-opacity));\n}\n\n.bsc-bg-blue-200 {\n --tw-bg-opacity: 1;\n background-color: rgba(191, 219, 254, var(--tw-bg-opacity));\n}\n\n.hover\\:bsc-bg-gray-300:hover {\n --tw-bg-opacity: 1;\n background-color: rgba(209, 213, 219, var(--tw-bg-opacity));\n}\n\n.bsc-dark .dark\\:bsc-bg-black {\n --tw-bg-opacity: 1;\n background-color: rgba(0, 0, 0, var(--tw-bg-opacity));\n}\n\n.bsc-dark .dark\\:bsc-bg-white {\n --tw-bg-opacity: 1;\n background-color: rgba(255, 255, 255, var(--tw-bg-opacity));\n}\n\n.bsc-dark .dark\\:bsc-bg-gray-900 {\n --tw-bg-opacity: 1;\n background-color: rgba(17, 24, 39, var(--tw-bg-opacity));\n}\n\n.bsc-dark .dark\\:hover\\:bsc-bg-white:hover {\n --tw-bg-opacity: 1;\n background-color: rgba(255, 255, 255, var(--tw-bg-opacity));\n}\n\n.bsc-border-transparent {\n border-color: transparent;\n}\n\n.bsc-border-black {\n --tw-border-opacity: 1;\n border-color: rgba(0, 0, 0, var(--tw-border-opacity));\n}\n\n.bsc-border-gray-300 {\n --tw-border-opacity: 1;\n border-color: rgba(209, 213, 219, var(--tw-border-opacity));\n}\n\n.bsc-border-gray-400 {\n --tw-border-opacity: 1;\n border-color: rgba(156, 163, 175, var(--tw-border-opacity));\n}\n\n.bsc-border-gray-500 {\n --tw-border-opacity: 1;\n border-color: rgba(107, 114, 128, var(--tw-border-opacity));\n}\n\n.bsc-dark .dark\\:bsc-border-white {\n --tw-border-opacity: 1;\n border-color: rgba(255, 255, 255, var(--tw-border-opacity));\n}\n\n.bsc-rounded-md {\n border-radius: 0.375rem;\n}\n\n.bsc-rounded-full {\n border-radius: 9999px;\n}\n\n.bsc-border-solid {\n border-style: solid;\n}\n\n.bsc-border-none {\n border-style: none;\n}\n\n.bsc-border {\n border-width: 1px;\n}\n\n.bsc-border-r {\n border-right-width: 1px;\n}\n\n.bsc-cursor-pointer {\n cursor: pointer;\n}\n\n.bsc-cursor-not-allowed {\n cursor: not-allowed;\n}\n\n.bsc-flex {\n display: flex;\n}\n\n.bsc-grid {\n display: grid;\n}\n\n.bsc-flex-row {\n flex-direction: row;\n}\n\n.bsc-flex-col {\n flex-direction: column;\n}\n\n.bsc-justify-center {\n justify-content: center;\n}\n\n.bsc-flex-grow {\n flex-grow: 1;\n}\n\n.bsc-flex-shrink {\n flex-shrink: 1;\n}\n\n.bsc-font-bold {\n font-weight: 700;\n}\n\n.bsc-text-sm {\n font-size: 0.875rem;\n line-height: 1.25rem;\n}\n\n.bsc-mr-2 {\n margin-right: 0.5rem;\n}\n\n.bsc-ml-2 {\n margin-left: 0.5rem;\n}\n\n.focus\\:bsc-outline-none:focus {\n outline: 2px solid transparent;\n outline-offset: 2px;\n}\n\n.bsc-overflow-hidden {\n overflow: hidden;\n}\n\n.bsc-overflow-scroll {\n overflow: scroll;\n}\n\n.bsc-overflow-x-auto {\n overflow-x: auto;\n}\n\n.bsc-overflow-y-hidden {\n overflow-y: hidden;\n}\n\n.bsc-p-2 {\n padding: 0.5rem;\n}\n\n.bsc-p-4 {\n padding: 1rem;\n}\n\n.bsc-py-1 {\n padding-top: 0.25rem;\n padding-bottom: 0.25rem;\n}\n\n.bsc-px-2 {\n padding-left: 0.5rem;\n padding-right: 0.5rem;\n}\n\n.bsc-pr-4 {\n padding-right: 1rem;\n}\n\n.bsc-pl-4 {\n padding-left: 1rem;\n}\n\n.bsc-pb-8 {\n padding-bottom: 2rem;\n}\n\n.bsc-absolute {\n position: absolute;\n}\n\n* {\n --tw-shadow: 0 0 #0000;\n}\n\n.bsc-shadow-sm {\n --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n\n.bsc-shadow {\n --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);\n box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n\n* {\n --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-color: rgba(59, 130, 246, 0.5);\n --tw-ring-offset-shadow: 0 0 #0000;\n --tw-ring-shadow: 0 0 #0000;\n}\n\n.bsc-text-left {\n text-align: left;\n}\n\n.bsc-text-center {\n text-align: center;\n}\n\n.bsc-text-gray-400 {\n --tw-text-opacity: 1;\n color: rgba(156, 163, 175, var(--tw-text-opacity));\n}\n\n.bsc-text-red-300 {\n --tw-text-opacity: 1;\n color: rgba(252, 165, 165, var(--tw-text-opacity));\n}\n\n.bsc-dark .dark\\:bsc-text-black {\n --tw-text-opacity: 1;\n color: rgba(0, 0, 0, var(--tw-text-opacity));\n}\n\n.bsc-dark .dark\\:bsc-text-white {\n --tw-text-opacity: 1;\n color: rgba(255, 255, 255, var(--tw-text-opacity));\n}\n\n.bsc-dark .dark\\:hover\\:bsc-text-black:hover {\n --tw-text-opacity: 1;\n color: rgba(0, 0, 0, var(--tw-text-opacity));\n}\n\n.bsc-whitespace-pre {\n white-space: pre;\n}\n\n.bsc-w-24 {\n width: 6rem;\n}\n\n.bsc-w-full {\n width: 100%;\n}\n\n.bsc-gap-3 {\n gap: 0.75rem;\n}\n\n.bsc-gap-4 {\n gap: 1rem;\n}\n\n.bsc-grid-cols-4 {\n grid-template-columns: repeat(4, minmax(0, 1fr));\n}\n\n.bsc-grid-cols-7 {\n grid-template-columns: repeat(7, minmax(0, 1fr));\n}\n\n.bsc-col-span-4 {\n grid-column: span 4 / span 4;\n}\n\n@-webkit-keyframes bsc-spin {\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes bsc-spin {\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@-webkit-keyframes bsc-ping {\n 75%, 100% {\n -webkit-transform: scale(2);\n transform: scale(2);\n opacity: 0;\n }\n}\n\n@keyframes bsc-ping {\n 75%, 100% {\n -webkit-transform: scale(2);\n transform: scale(2);\n opacity: 0;\n }\n}\n\n@-webkit-keyframes bsc-pulse {\n 50% {\n opacity: .5;\n }\n}\n\n@keyframes bsc-pulse {\n 50% {\n opacity: .5;\n }\n}\n\n@-webkit-keyframes bsc-bounce {\n 0%, 100% {\n -webkit-transform: translateY(-25%);\n transform: translateY(-25%);\n -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);\n animation-timing-function: cubic-bezier(0.8,0,1,1);\n }\n\n 50% {\n -webkit-transform: none;\n transform: none;\n -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);\n animation-timing-function: cubic-bezier(0,0,0.2,1);\n }\n}\n\n@keyframes bsc-bounce {\n 0%, 100% {\n -webkit-transform: translateY(-25%);\n transform: translateY(-25%);\n -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);\n animation-timing-function: cubic-bezier(0.8,0,1,1);\n }\n\n 50% {\n -webkit-transform: none;\n transform: none;\n -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);\n animation-timing-function: cubic-bezier(0,0,0.2,1);\n }\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',\n monospace;\n}\n\n@media (min-width: 640px) {\n}\n\n@media (min-width: 768px) {\n}\n\n@media (min-width: 1024px) {\n}\n\n@media (min-width: 1280px) {\n}\n\n@media (min-width: 1536px) {\n}\n";
|
|
26567
26576
|
styleInject(css_248z);
|
|
26568
26577
|
|
|
26569
26578
|
/*!
|
|
@@ -26590,6 +26599,11 @@ var faChevronUp = {
|
|
|
26590
26599
|
iconName: 'chevron-up',
|
|
26591
26600
|
icon: [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"]
|
|
26592
26601
|
};
|
|
26602
|
+
var faTimes = {
|
|
26603
|
+
prefix: 'fas',
|
|
26604
|
+
iconName: 'times',
|
|
26605
|
+
icon: [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"]
|
|
26606
|
+
};
|
|
26593
26607
|
|
|
26594
26608
|
/*!
|
|
26595
26609
|
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
|
@@ -26606,7 +26620,7 @@ var faCalendarTimes = {
|
|
|
26606
26620
|
icon: [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"]
|
|
26607
26621
|
};
|
|
26608
26622
|
|
|
26609
|
-
library.add(faAngleRight, faAngleLeft, faChevronUp, faChevronDown, faCalendarAlt, faCalendarTimes);
|
|
26623
|
+
library.add(faAngleRight, faAngleLeft, faChevronUp, faChevronDown, faCalendarAlt, faCalendarTimes, faTimes);
|
|
26610
26624
|
|
|
26611
26625
|
exports.DateTime = DateTime;
|
|
26612
26626
|
exports.OverlayPanel = OverlayPanel;
|