@cwellt_software/cwellt-reactjs-lib 1.2.11 → 1.2.12
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/index.cjs.js +11 -46
- package/dist/index.css +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.es.js +12 -47
- package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/CwDateRangePicker.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/CwDateTimePickerCompact.d.ts.map +1 -1
- package/dist/src/components/display/data/table-serverside/CwTableServerSide.d.ts +3 -3
- package/dist/src/components/display/data/table-serverside/CwTableServerSide.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -1750,14 +1750,14 @@ function CwTable({ columns, data, pagination = false, pageSizeOptions = [5, 10,
|
|
|
1750
1750
|
* @param props - Component props to configure columns, data, styles, pagination, expanded rows, and more.
|
|
1751
1751
|
*
|
|
1752
1752
|
* @example
|
|
1753
|
-
* // ---
|
|
1753
|
+
* // --- Component ---
|
|
1754
1754
|
* const columns: Column<User>[] = [
|
|
1755
1755
|
* { title: "Name", dataIndex: "name", key: "name", sortable: true },
|
|
1756
1756
|
* { title: "Age", dataIndex: "age", key: "age", sortable: true },
|
|
1757
1757
|
* { title: "Address", dataIndex: "address", key: "address" }
|
|
1758
1758
|
* ];
|
|
1759
1759
|
*
|
|
1760
|
-
*
|
|
1760
|
+
*
|
|
1761
1761
|
* const [tableState, setTableState] = useState<ServerSideTableState<User>>({
|
|
1762
1762
|
* page: 1,
|
|
1763
1763
|
* pageSize: 5,
|
|
@@ -1768,7 +1768,7 @@ function CwTable({ columns, data, pagination = false, pageSizeOptions = [5, 10,
|
|
|
1768
1768
|
* const [totalItems, setTotalItems] = useState(0);
|
|
1769
1769
|
* const [loading, setLoading] = useState(false);
|
|
1770
1770
|
*
|
|
1771
|
-
* //
|
|
1771
|
+
* // Fetch simulation on table state change
|
|
1772
1772
|
* useEffect(() => {
|
|
1773
1773
|
* setLoading(true);
|
|
1774
1774
|
* fetch(`/api/users?page=${tableState.page}&pageSize=${tableState.pageSize}` +
|
|
@@ -1814,9 +1814,7 @@ function CwTableServerSide({ columns, data, totalItems, pagination = false, page
|
|
|
1814
1814
|
React.useEffect(() => {
|
|
1815
1815
|
setSelectedKeys(new Set(rowSelection?.selectedRowKeys || []));
|
|
1816
1816
|
}, [rowSelection?.selectedRowKeys]);
|
|
1817
|
-
// Usar estado controlado o interno
|
|
1818
1817
|
const state = serverState ?? internalState;
|
|
1819
|
-
// Notificar cambios al padre
|
|
1820
1818
|
const triggerChange = React.useCallback((next) => {
|
|
1821
1819
|
const newState = { ...state, ...next };
|
|
1822
1820
|
if (!serverState)
|
|
@@ -1939,7 +1937,7 @@ function CwTableServerSide({ columns, data, totalItems, pagination = false, page
|
|
|
1939
1937
|
? "sortable"
|
|
1940
1938
|
: state.sortDirection === "asc"
|
|
1941
1939
|
? "sortable-asc"
|
|
1942
|
-
: "sortable-desc" }))] }), jsxRuntime.jsx("span", { onMouseDown: (e) => startResize(e, col.key), className: "th-column-resizer" })] }, col.key)))] }) }), jsxRuntime.jsx("tbody", { children: renderTableBody() })] }) }), pagination &&
|
|
1940
|
+
: "sortable-desc" }))] }), jsxRuntime.jsx("span", { onMouseDown: (e) => startResize(e, col.key), className: "th-column-resizer" })] }, col.key)))] }) }), jsxRuntime.jsx("tbody", { children: renderTableBody() })] }) }), pagination && (jsxRuntime.jsxs("footer", { className: "cw-table-pagination", children: [jsxRuntime.jsx("button", { onClick: () => handlePageChange(1), disabled: state.page === 1 || totalPages === 1, className: "cw-button-icon cwi-chevron-left-double", title: "First" }), jsxRuntime.jsx("button", { onClick: () => handlePageChange(state.page - 1), disabled: state.page === 1 || totalPages === 1, className: "cw-button-icon cwi-chevron-left", title: "Previous" }), jsxRuntime.jsx("input", { type: "text", inputMode: "numeric", value: state.page, onChange: (e) => {
|
|
1943
1941
|
const value = parseInt(e.target.value, 10);
|
|
1944
1942
|
if (!isNaN(value))
|
|
1945
1943
|
handlePageChange(value);
|
|
@@ -4316,12 +4314,8 @@ function CwBtnDelete({ cw_btnOnclick, cw_btn_disabled, onClick, disabled, ...res
|
|
|
4316
4314
|
return (jsxRuntime.jsx(CwButton, { ...rest, variant: "icon", icon: "delete", color: "danger", onClick: onClick ?? cw_btnOnclick, disabled: disabled ?? cw_btn_disabled }));
|
|
4317
4315
|
}
|
|
4318
4316
|
|
|
4319
|
-
var styles$4 = {"pickerWrapper":"cw-pickers-base-module_pickerWrapper__Fb9Zo","pickerIcons":"cw-pickers-base-module_pickerIcons__dyd2-","pickerPopup":"cw-pickers-base-module_pickerPopup__dkxJo"
|
|
4317
|
+
var styles$4 = {"pickerWrapper":"cw-pickers-base-module_pickerWrapper__Fb9Zo","pickerIcons":"cw-pickers-base-module_pickerIcons__dyd2-","pickerPopup":"cw-pickers-base-module_pickerPopup__dkxJo"};
|
|
4320
4318
|
|
|
4321
|
-
function CustomCaption$2({ displayMonth }) {
|
|
4322
|
-
const { goToMonth, nextMonth, previousMonth } = reactDayPicker.useNavigation();
|
|
4323
|
-
return (jsxRuntime.jsxs("header", { children: [jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-left", onClick: () => previousMonth && goToMonth(previousMonth), disabled: !previousMonth, "aria-label": "Previous month" }), jsxRuntime.jsx("div", { className: styles$4.title, children: dateFns.format(displayMonth, "MMMM yyyy", { locale: locale.enGB }) }), jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-right", onClick: () => nextMonth && goToMonth(nextMonth), disabled: !nextMonth, "aria-label": "Next month" })] }));
|
|
4324
|
-
}
|
|
4325
4319
|
function CwDatePicker({ value, onChange, minDate, maxDate, disabledDates, disabledMatcher, defaultMonth, labelProps, alignProps, placeholder = "Select a date", displayFormat = "dd.MM.yyyy", disabled, required, className, showClear = true, popupPosition = "left-bottom", numberOfMonths = 1, showTodayButton = false, }) {
|
|
4326
4320
|
const [isOpen, setIsOpen] = React.useState(false);
|
|
4327
4321
|
const [inputValue, setInputValue] = React.useState("");
|
|
@@ -4492,11 +4486,6 @@ function CwDatePicker({ value, onChange, minDate, maxDate, disabledDates, disabl
|
|
|
4492
4486
|
setIsOpen(false);
|
|
4493
4487
|
}
|
|
4494
4488
|
}, [minDate, maxDate, onChange]);
|
|
4495
|
-
// Memoize formatters
|
|
4496
|
-
const formatters = React.useMemo(() => ({
|
|
4497
|
-
formatCaption: (date) => dateFns.format(date, "MMMM yyyy", { locale: locale.enGB }),
|
|
4498
|
-
formatWeekdayName: (date) => dateFns.format(date, "EEEEEE", { locale: locale.enGB })
|
|
4499
|
-
}), []);
|
|
4500
4489
|
// Memoize disabled days
|
|
4501
4490
|
const disabledDays = React.useMemo(() => [
|
|
4502
4491
|
...(disabledDates || []),
|
|
@@ -4504,12 +4493,10 @@ function CwDatePicker({ value, onChange, minDate, maxDate, disabledDates, disabl
|
|
|
4504
4493
|
...(maxDate ? [{ after: maxDate }] : []),
|
|
4505
4494
|
...(disabledMatcher ? [disabledMatcher] : []),
|
|
4506
4495
|
], [disabledDates, minDate, maxDate, disabledMatcher]);
|
|
4507
|
-
return (jsxRuntime.jsx("div", { ref: containerRef, className: `cw-datepicker ${className || ""}`, children: jsxRuntime.jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsxRuntime.jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxRuntime.jsxs("div", { className: styles$4.pickerWrapper, children: [jsxRuntime.jsx("input", { ref: inputRef, type: "text", value: inputValue, placeholder: placeholder, onChange: handleInputChange, onBlur: handleInputBlur, onClick: handleInputClick, onKeyDown: handleInputKeyDown, disabled: disabled, required: required }), jsxRuntime.jsx("div", { className: styles$4.pickerIcons, children: showClear && value && !disabled ? (jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClear, tabIndex: -1, "aria-label": "Clear date" })) : (jsxRuntime.jsx(CwIcon, { iconId: "calendar" })) }), isOpen && (jsxRuntime.jsxs("div", { className: styles$4.pickerPopup, "data-position": popupPosition, children: [jsxRuntime.jsx(reactDayPicker.DayPicker, { mode: "single", selected: value || undefined, defaultMonth: defaultMonth || value || undefined, onSelect: handleDaySelect, disabled: disabledDays,
|
|
4508
|
-
Caption: (props) => (jsxRuntime.jsx(CustomCaption$2, { ...props })),
|
|
4509
|
-
}, modifiers: {
|
|
4496
|
+
return (jsxRuntime.jsx("div", { ref: containerRef, className: `cw-datepicker ${className || ""}`, children: jsxRuntime.jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsxRuntime.jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxRuntime.jsxs("div", { className: styles$4.pickerWrapper, children: [jsxRuntime.jsx("input", { ref: inputRef, type: "text", value: inputValue, placeholder: placeholder, onChange: handleInputChange, onBlur: handleInputBlur, onClick: handleInputClick, onKeyDown: handleInputKeyDown, disabled: disabled, required: required }), jsxRuntime.jsx("div", { className: styles$4.pickerIcons, children: showClear && value && !disabled ? (jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClear, tabIndex: -1, "aria-label": "Clear date" })) : (jsxRuntime.jsx(CwIcon, { iconId: "calendar" })) }), isOpen && (jsxRuntime.jsxs("div", { className: styles$4.pickerPopup, "data-position": popupPosition, children: [jsxRuntime.jsx(reactDayPicker.DayPicker, { mode: "single", selected: value || undefined, defaultMonth: defaultMonth || value || undefined, onSelect: handleDaySelect, disabled: disabledDays, numberOfMonths: numberOfMonths, modifiers: {
|
|
4510
4497
|
today: new Date(),
|
|
4511
4498
|
}, modifiersClassNames: {
|
|
4512
|
-
today: "rdp-
|
|
4499
|
+
today: "rdp-day-today",
|
|
4513
4500
|
} }), showTodayButton && (jsxRuntime.jsx("footer", { className: "cw-flex-row cw-align-right-center", children: jsxRuntime.jsx(CwButton, { type: "button", variant: "outline", onClick: handleTodayClick, text: "Today" }) }))] }))] })] }) }));
|
|
4514
4501
|
}
|
|
4515
4502
|
|
|
@@ -4784,10 +4771,6 @@ const getPresetsByKeys = (keys) => {
|
|
|
4784
4771
|
.filter(preset => preset !== undefined);
|
|
4785
4772
|
};
|
|
4786
4773
|
|
|
4787
|
-
function CustomCaption$1({ displayMonth }) {
|
|
4788
|
-
const { goToMonth, nextMonth, previousMonth } = reactDayPicker.useNavigation();
|
|
4789
|
-
return (jsxRuntime.jsxs("header", { children: [jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-left", onClick: () => previousMonth && goToMonth(previousMonth), disabled: !previousMonth, "aria-label": "Previous month" }), jsxRuntime.jsx("div", { className: styles$4.title, children: dateFns.format(displayMonth, "MMMM yyyy", { locale: locale.enGB }) }), jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-right", onClick: () => nextMonth && goToMonth(nextMonth), disabled: !nextMonth, "aria-label": "Next month" })] }));
|
|
4790
|
-
}
|
|
4791
4774
|
function CwDateRangePicker({ value, onChange, minDate, maxDate, disabledDates, disabledMatcher, maxRangeDays, defaultMonth, labelProps, alignProps, placeholderFrom = "From date", placeholderTo = "To date", displayFormat = "dd.MM.yyyy", disabled, required, className, showClear = true, popupPosition = "left-bottom", numberOfMonths = 2, showPresets = false, presetKeys, customPresets, }) {
|
|
4792
4775
|
const [isOpen, setIsOpen] = React.useState(false);
|
|
4793
4776
|
const [inputFromValue, setInputFromValue] = React.useState("");
|
|
@@ -5101,11 +5084,6 @@ function CwDateRangePicker({ value, onChange, minDate, maxDate, disabledDates, d
|
|
|
5101
5084
|
onChange(preset.getValue());
|
|
5102
5085
|
setIsOpen(false);
|
|
5103
5086
|
}, [onChange]);
|
|
5104
|
-
// Memoize formatters
|
|
5105
|
-
const formatters = React.useMemo(() => ({
|
|
5106
|
-
formatCaption: (date) => dateFns.format(date, "MMMM yyyy", { locale: locale.enGB }),
|
|
5107
|
-
formatWeekdayName: (date) => dateFns.format(date, "EEEEEE", { locale: locale.enGB })
|
|
5108
|
-
}), []);
|
|
5109
5087
|
// Memoize disabled days
|
|
5110
5088
|
const disabledDays = React.useMemo(() => {
|
|
5111
5089
|
const baseDisabled = [
|
|
@@ -5145,12 +5123,10 @@ function CwDateRangePicker({ value, onChange, minDate, maxDate, disabledDates, d
|
|
|
5145
5123
|
}
|
|
5146
5124
|
return undefined;
|
|
5147
5125
|
}, [value]);
|
|
5148
|
-
return (jsxRuntime.jsx("div", { ref: containerRef, className: `cw-rangepicker ${className || ""}`, children: jsxRuntime.jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsxRuntime.jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxRuntime.jsxs("div", { className: rangeStyles.rangeWrapper, children: [jsxRuntime.jsxs("div", { className: styles$4.pickerWrapper, children: [jsxRuntime.jsx("input", { ref: inputFromRef, type: "text", value: inputFromValue, placeholder: placeholderFrom, onChange: handleInputFromChange, onBlur: () => handleInputBlur('from'), onClick: handleInputFromClick, onKeyDown: (e) => handleInputKeyDown(e, 'from'), disabled: disabled, required: required, "data-focused": focusedInput === 'from' }), jsxRuntime.jsx("div", { className: styles$4.pickerIcons, children: showClear && value?.from && !disabled ? (jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClearFrom, tabIndex: -1, "aria-label": "Clear from date" })) : (jsxRuntime.jsx(CwIcon, { iconId: "calendar" })) })] }), jsxRuntime.jsx(CwIcon, { iconId: "arrow-right", size: "medium" }), jsxRuntime.jsxs("div", { className: styles$4.pickerWrapper, children: [jsxRuntime.jsx("input", { ref: inputToRef, type: "text", value: inputToValue, placeholder: placeholderTo, onChange: handleInputToChange, onBlur: () => handleInputBlur('to'), onClick: handleInputToClick, onKeyDown: (e) => handleInputKeyDown(e, 'to'), disabled: disabled, required: required, "data-focused": focusedInput === 'to' }), jsxRuntime.jsx("div", { className: styles$4.pickerIcons, children: showClear && value?.to && !disabled ? (jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClearTo, tabIndex: -1, "aria-label": "Clear to date" })) : (jsxRuntime.jsx(CwIcon, { iconId: "calendar" })) })] }), isOpen && (jsxRuntime.jsxs("div", { className: `${styles$4.pickerPopup} ${rangeStyles.rangePopup}`, "data-position": popupPosition, children: [showPresets && presetsToRender.length > 0 && (jsxRuntime.jsx("div", { className: rangeStyles.presetList, children: presetsToRender.map((preset) => (jsxRuntime.jsx("button", { type: "button", onClick: (e) => handlePresetClick(preset, e), children: preset.label }, preset.key))) })), jsxRuntime.jsx(reactDayPicker.DayPicker, { mode: "range", selected: selectedRange, onSelect: handleRangeSelect, disabled: disabledDays,
|
|
5149
|
-
Caption: (props) => jsxRuntime.jsx(CustomCaption$1, { ...props }),
|
|
5150
|
-
}, modifiers: {
|
|
5126
|
+
return (jsxRuntime.jsx("div", { ref: containerRef, className: `cw-rangepicker ${className || ""}`, children: jsxRuntime.jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsxRuntime.jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxRuntime.jsxs("div", { className: rangeStyles.rangeWrapper, children: [jsxRuntime.jsxs("div", { className: styles$4.pickerWrapper, children: [jsxRuntime.jsx("input", { ref: inputFromRef, type: "text", value: inputFromValue, placeholder: placeholderFrom, onChange: handleInputFromChange, onBlur: () => handleInputBlur('from'), onClick: handleInputFromClick, onKeyDown: (e) => handleInputKeyDown(e, 'from'), disabled: disabled, required: required, "data-focused": focusedInput === 'from' }), jsxRuntime.jsx("div", { className: styles$4.pickerIcons, children: showClear && value?.from && !disabled ? (jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClearFrom, tabIndex: -1, "aria-label": "Clear from date" })) : (jsxRuntime.jsx(CwIcon, { iconId: "calendar" })) })] }), jsxRuntime.jsx(CwIcon, { iconId: "arrow-right", size: "medium" }), jsxRuntime.jsxs("div", { className: styles$4.pickerWrapper, children: [jsxRuntime.jsx("input", { ref: inputToRef, type: "text", value: inputToValue, placeholder: placeholderTo, onChange: handleInputToChange, onBlur: () => handleInputBlur('to'), onClick: handleInputToClick, onKeyDown: (e) => handleInputKeyDown(e, 'to'), disabled: disabled, required: required, "data-focused": focusedInput === 'to' }), jsxRuntime.jsx("div", { className: styles$4.pickerIcons, children: showClear && value?.to && !disabled ? (jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClearTo, tabIndex: -1, "aria-label": "Clear to date" })) : (jsxRuntime.jsx(CwIcon, { iconId: "calendar" })) })] }), isOpen && (jsxRuntime.jsxs("div", { className: `${styles$4.pickerPopup} ${rangeStyles.rangePopup}`, "data-position": popupPosition, children: [showPresets && presetsToRender.length > 0 && (jsxRuntime.jsx("div", { className: rangeStyles.presetList, children: presetsToRender.map((preset) => (jsxRuntime.jsx("button", { type: "button", onClick: (e) => handlePresetClick(preset, e), children: preset.label }, preset.key))) })), jsxRuntime.jsx(reactDayPicker.DayPicker, { mode: "range", selected: selectedRange, onSelect: handleRangeSelect, disabled: disabledDays, numberOfMonths: numberOfMonths, defaultMonth: defaultMonth || value?.from || undefined, modifiers: {
|
|
5151
5127
|
today: new Date(),
|
|
5152
5128
|
}, modifiersClassNames: {
|
|
5153
|
-
today: "rdp-
|
|
5129
|
+
today: "rdp-day-today",
|
|
5154
5130
|
} })] }))] })] }) }));
|
|
5155
5131
|
}
|
|
5156
5132
|
|
|
@@ -5541,10 +5517,6 @@ function CwDateTimePicker({ value, onChange, minDateTime, maxDateTime, disabledD
|
|
|
5541
5517
|
|
|
5542
5518
|
var compactStyles = {"compactPopup":"cw-datetime-compact-module_compactPopup__GiuNY","calendarWrapper":"cw-datetime-compact-module_calendarWrapper__P4Nlq","timeWrapper":"cw-datetime-compact-module_timeWrapper__uMe-A","compactTimeList":"cw-datetime-compact-module_compactTimeList__MzSQT"};
|
|
5543
5519
|
|
|
5544
|
-
function CustomCaption({ displayMonth }) {
|
|
5545
|
-
const { goToMonth, nextMonth, previousMonth } = reactDayPicker.useNavigation();
|
|
5546
|
-
return (jsxRuntime.jsxs("header", { children: [jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-left", onClick: () => previousMonth && goToMonth(previousMonth), disabled: !previousMonth, "aria-label": "Previous month" }), jsxRuntime.jsx("div", { className: styles$4.title, children: dateFns.format(displayMonth, "MMMM yyyy", { locale: locale.enGB }) }), jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-right", onClick: () => nextMonth && goToMonth(nextMonth), disabled: !nextMonth, "aria-label": "Next month" })] }));
|
|
5547
|
-
}
|
|
5548
5520
|
function CwDateTimePickerCompact({ value, onChange, minDateTime, maxDateTime, disabledDates, disabledMatcher, timeInterval = 15, minTime, maxTime, labelProps, alignProps, placeholder = "dd.mm.yyyy HH:mm", disabled, required, className, showClear = true, popupPosition = "left-bottom", numberOfMonths = 1, showTodayButton = false, }) {
|
|
5549
5521
|
const [isOpen, setIsOpen] = React.useState(false);
|
|
5550
5522
|
const [inputValue, setInputValue] = React.useState("");
|
|
@@ -5775,11 +5747,6 @@ function CwDateTimePickerCompact({ value, onChange, minDateTime, maxDateTime, di
|
|
|
5775
5747
|
setIsOpen(false);
|
|
5776
5748
|
}
|
|
5777
5749
|
}, [minDateTime, maxDateTime, onChange]);
|
|
5778
|
-
// Memoize formatters
|
|
5779
|
-
const formatters = React.useMemo(() => ({
|
|
5780
|
-
formatCaption: (date) => dateFns.format(date, "MMMM yyyy", { locale: locale.enGB }),
|
|
5781
|
-
formatWeekdayName: (date) => dateFns.format(date, "EEEEEE", { locale: locale.enGB })
|
|
5782
|
-
}), []);
|
|
5783
5750
|
// Memoize disabled days
|
|
5784
5751
|
const disabledDays = React.useMemo(() => [
|
|
5785
5752
|
...(disabledDates || []),
|
|
@@ -5787,12 +5754,10 @@ function CwDateTimePickerCompact({ value, onChange, minDateTime, maxDateTime, di
|
|
|
5787
5754
|
...(maxDateTime ? [{ after: maxDateTime }] : []),
|
|
5788
5755
|
...(disabledMatcher ? [disabledMatcher] : []),
|
|
5789
5756
|
], [disabledDates, minDateTime, maxDateTime, disabledMatcher]);
|
|
5790
|
-
return (jsxRuntime.jsx("div", { ref: containerRef, className: `cw-datetimepicker ${className || ""}`, children: jsxRuntime.jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsxRuntime.jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxRuntime.jsxs("div", { className: styles$4.pickerWrapper, children: [jsxRuntime.jsx("input", { ref: inputRef, type: "text", value: inputValue, placeholder: placeholder, onChange: handleInputChange, onBlur: handleInputBlur, onClick: handleInputClick, onKeyDown: handleInputKeyDown, disabled: disabled, required: required, maxLength: 16, style: { width: "24ch" } }), jsxRuntime.jsx("div", { className: styles$4.pickerIcons, children: showClear && value && !disabled ? (jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClear, tabIndex: -1, "aria-label": "Clear datetime" })) : (jsxRuntime.jsx(CwIcon, { iconId: "calendar-time" })) }), isOpen && (jsxRuntime.jsxs("div", { className: `${styles$4.pickerPopup} ${compactStyles.compactPopup}`, "data-position": popupPosition, children: [jsxRuntime.jsxs("div", { className: compactStyles.calendarWrapper, children: [jsxRuntime.jsx(reactDayPicker.DayPicker, { mode: "single", selected: selectedDate, onSelect: handleDaySelect, defaultMonth: selectedDate, disabled: disabledDays,
|
|
5791
|
-
Caption: (props) => jsxRuntime.jsx(CustomCaption, { ...props }),
|
|
5792
|
-
}, modifiers: {
|
|
5757
|
+
return (jsxRuntime.jsx("div", { ref: containerRef, className: `cw-datetimepicker ${className || ""}`, children: jsxRuntime.jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsxRuntime.jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxRuntime.jsxs("div", { className: styles$4.pickerWrapper, children: [jsxRuntime.jsx("input", { ref: inputRef, type: "text", value: inputValue, placeholder: placeholder, onChange: handleInputChange, onBlur: handleInputBlur, onClick: handleInputClick, onKeyDown: handleInputKeyDown, disabled: disabled, required: required, maxLength: 16, style: { width: "24ch" } }), jsxRuntime.jsx("div", { className: styles$4.pickerIcons, children: showClear && value && !disabled ? (jsxRuntime.jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClear, tabIndex: -1, "aria-label": "Clear datetime" })) : (jsxRuntime.jsx(CwIcon, { iconId: "calendar-time" })) }), isOpen && (jsxRuntime.jsxs("div", { className: `${styles$4.pickerPopup} ${compactStyles.compactPopup}`, "data-position": popupPosition, children: [jsxRuntime.jsxs("div", { className: compactStyles.calendarWrapper, children: [jsxRuntime.jsx(reactDayPicker.DayPicker, { mode: "single", selected: selectedDate, onSelect: handleDaySelect, defaultMonth: selectedDate, disabled: disabledDays, numberOfMonths: numberOfMonths, modifiers: {
|
|
5793
5758
|
today: new Date(),
|
|
5794
5759
|
}, modifiersClassNames: {
|
|
5795
|
-
today: "rdp-
|
|
5760
|
+
today: "rdp-day-today",
|
|
5796
5761
|
} }), showTodayButton && (jsxRuntime.jsx("footer", { className: "cw-flex-row cw-align-center-center", children: jsxRuntime.jsx(CwButton, { type: "button", variant: "outline", icon: "check-big", onClick: handleNowClick, text: "Now" }) }))] }), jsxRuntime.jsxs("div", { className: compactStyles.timeWrapper, children: [jsxRuntime.jsxs("header", { children: [jsxRuntime.jsx(CwIcon, { iconId: "clock", size: "medium" }), jsxRuntime.jsx("span", { children: "Time" })] }), jsxRuntime.jsx("div", { ref: timeListRef, className: `${timeStyles.timePickerList} ${compactStyles.compactTimeList}`, children: timeOptions.map((time) => {
|
|
5797
5762
|
const isSelected = time === selectedTime;
|
|
5798
5763
|
return (jsxRuntime.jsx("button", { type: "button", className: isSelected ? timeStyles.selected : "", onClick: () => handleTimeSelect(time), children: time }, time));
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! modern-normalize v3.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */*,:after,:before{box-sizing:border-box}html{-webkit-text-size-adjust:100%;font-family:system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;line-height:1.15;tab-size:4}body{margin:0}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:currentcolor}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}:root{--cw-color-primary:#3d74ff;--cw-color-on-primary:#fff;--cw-color-primary-container:#dfe4ff;--cw-color-on-primary-container:#0e065f;--cw-color-primary-variant:#170099;--cw-color-on-primary-variant:#fff;--cw-color-primary-rgb-values:61,116,255;--cw-color-secondary:#565f71;--cw-color-on-secondary:#fff;--cw-color-secondary-container:#dae2f9;--cw-color-on-secondary-container:#131c2b;--cw-color-error:#e52828;--cw-color-on-error:#fff;--cw-color-error-container:#f2ccd0;--cw-color-on-error-container:#93252f;--cw-color-info:#7695d2;--cw-color-on-info:#fff;--cw-color-info-container:#d3ebff;--cw-color-on-info-container:#202040;--cw-color-warn:#ff8c00;--cw-color-on-warn:#402a20;--cw-color-warn-container:#ffe0b2;--cw-color-on-warn-container:#402a20;--cw-color-success:#45a859;--cw-color-on-success:#fff;--cw-color-success-container:#b4e1ba;--cw-color-on-success-container:#0d2310;--cw-color-surface-bright:#fff;--cw-color-surface:#e8e8f1;--cw-color-surface-dim:#d9d9e0;--cw-color-on-surface-variant:#44474e;--cw-color-on-surface:#232733;--cw-color-surface-container-highest:#d6d6eb;--cw-color-surface-container-high:#e0e0f0;--cw-color-surface-container:#ebebf5;--cw-color-surface-container-low:#f5f5fa;--cw-color-surface-container-lowest:#fff;--cw-color-outline:#6576a3;--cw-color-outline-variant:#b0b7dd;--cw-color-scrim:#04040c40;--cw-color-shadow:#06050c20;--cw-color-inverse-surface:#2e3036;--cw-color-inverse-on-surface:#f0f0f7;--cw-color-inverse-primary:#aac7ff;--cw-color-icons:var(--cw-color-primary);--cw-color-icons-variant:var(--cw-color-primary-variant);--cw-color-button-background:var(--cw-color-primary);--cw-color-button-content:var(--cw-color-on-primary);--cw-color-button-hover-background:var(--cw-color-primary-variant);--cw-color-button-hover-content:var(--cw-color-on-primary-variant);--cw-color-layout-table-headers:var(--cw-color-primary);--cw-color-layout-on-table-headers:var(--cw-color-on-primary);--cw-color-layout-table-row-selected:var(--cw-color-primary-container);--cw-color-layout-on-table-row-selected:var(--cw-color-on-primary-container);--cw-spacing-pixel:1px;--cw-spacing-tiny:0.25rem;--cw-spacing-small:0.5rem;--cw-spacing-dense:0.75rem;--cw-spacing:1rem;--cw-spacing-medium:1.5rem;--cw-spacing-large:2rem;--cw-spacing-huge:3rem;--cw-gap-tiny:0.25rem;--cw-gap-small:0.5rem;--cw-gap:1rem;--cw-gap-large:1.5rem;--cw-size-tiny:1rem;--cw-size-small:1.5rem;--cw-size-medium:2rem;--cw-size-large:2.5rem;--cw-size-largest:3rem;--cw-z-index-base:0;--cw-z-index-medium:10;--cw-z-index-high:100;--cw-z-index-highest:1000;--cw-border-width:1px;--cw-border-width-thick:2px;--cw-border-radius-small:0.25rem;--cw-border-radius:0.375rem;--cw-border-radius-large:0.5rem;--cw-font-family:"Roboto Flex Variable","Roboto","Helvetica","Arial",sans-serif;--cw-font-icons:"NewCwIcons";--cw-font-size-smallest:0.625rem;--cw-font-size-small:0.75rem;--cw-font-size-regular:0.875rem;--cw-font-size-medium:1rem;--cw-font-size-large:1.0625rem;--cw-font-size-heading:1.125rem;--cw-font-size-display:1.25rem;--cw-font-weight-hairline:200;--cw-font-weight-light:300;--cw-font-weight-regular:400;--cw-font-weight-medium:500;--cw-font-weight-semibold:600;--cw-font-weight-bold:700;--cw-font-stretch-ultra-consensed:50%;--cw-font-stretch-condensed:60%;--cw-font-stretch-semi-condensed:75%;--cw-font-stretch-normal:100%;--cw-font-stretch-semi-expanded:115%;--cw-font-stretch-expanded:125%;--cw-font-line-height-min:100%;--cw-font-line-height-small:125%;--cw-font-line-height:150%;--cw-font-line-height-large:175%}*{box-sizing:border-box;margin:0;padding:0;scrollbar-color:var(--cw-color-surface-container-highest,#ccc) transparent}body{font-size:var(--cw-font-size-regular)}#root,body,h1,h2,h3,h4,h5,h6{font-family:var(--cw-font-family)}h1,h2,h3,h4,h5,h6{color:var(--cw-color-on-surface);margin:var(--cw-spacing) 0;&:first-child{margin-top:0}}h1,h2,main h1,main h2{font-size:var(--cw-font-size-display);font-weight:var(--cw-font-weight-bold);line-height:var(--cw-font-line-height)}h3,main h3{font-size:var(--cw-font-size-heading)}h3,h4,main h3,main h4{font-weight:var(--cw-font-weight-semibold);line-height:var(--cw-font-line-height)}h4,h5,main h4,main h5{font-size:var(--cw-font-size-medium)}h5,main h5{line-height:var(--cw-font-line-height)}h5,h6,main h5,main h6{font-weight:var(--cw-font-weight-medium)}h6,main h6{font-size:var(--cw-font-size-regular)}h6.cw-table-caption{background:transparent;font-weight:600;margin:0}button,input:where([type=button],[type=reset],[type=submit]){align-items:center;background:var(--cw-color-button-background);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-button-content);cursor:pointer;display:flex;font-size:var(--cw-font-size-regular);gap:.5rem;justify-content:center;line-height:var(--cw-font-size-medium);outline:none;padding:.5rem .75rem;transition:all .25s ease-in-out;&:focus{outline:none}&:disabled{cursor:default;filter:saturate(0);opacity:.5;pointer-events:none;user-select:none}}input[type=color]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;cursor:pointer;height:2.25rem;width:4rem;&:is(:hover,:focus,:active):not(:disabled){outline-color:var(--cw-color-outline-variant);outline-width:2px}&:disabled{cursor:default;filter:saturate(0);opacity:.5;pointer-events:none;user-select:none}}input[type=color]::-moz-color-swatch,input[type=color]::-webkit-color-swatch{border:1px solid var(--cw-color-surface-container-high);border-radius:var(--cw-border-radius)}input[type=color]::-webkit-color-swatch-wrapper{padding:0}input:not([type=button],[type=reset],[type=submit],[type=color],[type=checkbox]){background:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height);outline:1px solid transparent;padding:var(--cw-spacing-tiny) var(--cw-spacing-dense);transition:all .25s ease-in-out;&:is(:hover,:focus,:active):not(:disabled){outline-color:var(--cw-color-outline-variant)}&:required{~label:after{color:var(--cw-color-error);content:"*";padding-left:5px}&::placeholder{color:var(--cw-color-on-surface-variant)}}&:invalid:focus{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container);outline-color:var(--cw-color-error)}&:disabled{filter:saturate(0);opacity:.75;pointer-events:none;user-select:none}}textarea{background:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height);outline:1px solid transparent;padding:var(--cw-spacing-tiny) var(--cw-spacing-dense);transition:all .25s ease-in-out;&:disabled{filter:saturate(0);opacity:.75;pointer-events:none;user-select:none}&:focus{outline-color:var(--cw-color-outline-variant)}}input:where([type=checkbox],[type=radio]){accent-color:var(--cw-color-primary);border-radius:var(--cw-border-radius-small);cursor:pointer;height:var(--cw-font-size-medium);line-height:var(--cw-font-line-height);margin:0;outline:none;transition:all .25s ease-in-out;width:var(--cw-font-size-medium);&:disabled{filter:saturate(0);opacity:.75;pointer-events:none;user-select:none}+label{cursor:pointer;line-height:var(--cw-font-line-height);padding-left:var(--cw-spacing-tiny)}}select{background:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height);margin-bottom:0;outline:1px solid transparent;padding:var(--cw-spacing-tiny) var(--cw-spacing-dense);transition:all .25s ease-in-out;option{background:transparent;border-radius:var(--cw-border-radius-small);color:var(--cw-color-on-surface-variant);padding:var(--cw-spacing-tiny);&:hover{background-color:var(--cw-color-surface-container-high);color:var(--cw-color-on-surface)}}&:focus,&:focus-within{outline-color:var(--cw-color-outline-variant)}&:disabled{filter:saturate(0);opacity:.75;pointer-events:none;user-select:none}&[multiple]{padding:var(--cw-spacing-small) var(--cw-spacing-dense)}&:invalid:focus{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container);outline-color:var(--cw-color-error)}}::picker(select),select{appearance:base-select}::picker(select){background-color:var(--cw-color-surface-container-low);border:none;border-radius:.375rem;box-shadow:0 4px 8px -2px var(--cw-color-scrim);max-height:200px;padding:.25rem 0;scrollbar-width:thin;top:2px}select option:checked{background:var(--cw-color-primary-container);color:var(--cw-color-on-primary-container)}select option::checkmark{color:var(--cw-color-icons);content:"\ea21";font-family:var(--cw-font-icons);font-size:1.25rem}select::picker-icon{content:"\ea04";font-family:var(--cw-font-icons);font-size:1rem}label{font-family:var(--cw-font-family);font-size:var(--cw-font-size-regular);font-stretch:var(--cw-font-stretch-condensed);font-weight:var(--cw-font-weight-semibold);line-height:var(--cw-font-line-height-small);margin:0;width:var(--label-width,auto);&:empty{display:none}}strong.cw-label{font-stretch:var(--cw-font-stretch-condensed);font-weight:var(--cw-font-weight-semibold)}fieldset.cw-fieldset,form fieldset{border:none;border-radius:var(--cw-border-radius-large);margin-bottom:0;outline:solid 1px var(--cw-color-surface-dim);padding:var(--cw-spacing);>legend{background:var(--cw-color-surface-container-lowest);border:none;color:var(--cw-color-outline);font-size:var(--cw-font-size-regular);font-weight:var(--cw-font-weight-medium);line-height:var(--cw-font-line-height-small);margin:0 0 -.75rem;padding:var(--cw-spacing-tiny) var(--cw-spacing-small);position:relative;top:-.75rem;width:auto}}table{border-collapse:collapse;border-spacing:0;margin:0}table th{background-color:var(--cw-color-layout-table-headers);color:var(--cw-color-layout-on-table-headers)}table td{color:var(--cw-color-on-surface)}table td img{max-height:calc(var(--cw-spacing-huge)*2);max-width:calc(var(--cw-spacing-huge)*3);width:100%}p{font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height-small);margin-bottom:0}p.cw-title-h6{font-size:1rem;font-weight:500;margin-bottom:.5rem}p.cw-input-info,p.cw-title-h6{color:var(--cw-color-on-surface-variant);font-stretch:semi-condensed}p.cw-input-info{font-size:var(--cw-font-size-small);line-height:var(--cw-font-line-height-small);margin-top:.5rem}a[href^=tel]{align-items:center;color:var(--cw-color-primary-variant);display:inline-flex;&:hover{color:var(--cw-color-on-surface)}}a[href^=tel]:before{content:"\ea87";font-family:var(--cw-font-icons);font-size:1.25em;font-weight:400}details{background-color:var(--cw-color-surface-container);border-radius:var(--cw-border-radius);padding:var(--cw-spacing-tiny);>summary{cursor:pointer;font-size:var(--cw-font-size-heading);font-weight:var(--cw-font-weight-bold);padding:var(--cw-spacing-small)}>div{background-color:var(--cw-color-surface-container-low);border-radius:var(--cw-border-radius);padding:var(--cw-spacing) var(--cw-spacing-medium)}}hr{margin:var(--cw-spacing) 0}.cw-message-container{background:var(--cw-color-primary-container);border-radius:var(--cw-border-radius);color:var(--cw-color-on-primary-container);font-size:var(--cw-font-size-regular);padding:var(--cw-spacing-small) var(--cw-spacing-dense);&:is(code){border-radius:var(--cw-border-radius-small);padding:.125rem var(--cw-spacing-small)}&:is(.cw-font-size-small){font-size:var(--cw-font-size-small);line-height:var(--cw-font-size-regular);p{font-size:var(--cw-font-size-small)}}&:where([data-message-type=error],[data-color=danger]){background:var(--cw-color-error-container);color:var(--cw-color-on-error-container)}&:where([data-message-type=warn],[data-color=warning]){background:var(--cw-color-warn-container);color:var(--cw-color-on-warn-container)}&:where([data-message-type=success],[data-color=success]){background:var(--cw-color-success-container);color:var(--cw-color-on-success-container)}&:where([data-message-type=neutral],[data-color=neutral]){background:var(--cw-color-surface-container);color:var(--cw-color-on-surface-variant)}h6{background:transparent;color:inherit;font-weight:600;padding:0}}span.input-like-span{border:1px solid var(--cw-color-surface-container-high);border-radius:.375rem;opacity:.75;padding:.25rem .5rem}.cw-page-container-react{padding:1rem}.cw-navbar-row{align-items:center;display:flex;gap:var(--cw-gap);padding:var(--cw-spacing-small)}.cw-button-text-group{align-items:center;display:flex;gap:var(--cw-gap-small)}.cw-button-small :is(.cw-button,.cw-button-outline){font-size:var(--cw-font-size-regular);padding:var(--cw-spacing-tiny) var(--cw-spacing-small)}.cw-button-icon-group{align-items:center;display:flex}footer.cw-button-icon-group{justify-self:flex-end}.cw-checkbox-row{display:grid;gap:var(--cw-gap-small);grid-template-columns:1rem 1fr}.cw-checkbox-column{align-items:center;cursor:pointer;display:flex;flex-direction:column;gap:.5rem;width:auto}:is(td,th):where(.cw-table-col-tiny,.cw-table-col-small,.cw-table-col-medium,.cw-table-col-large,.cw-table-col-huge){width:var(--column-width,auto)}.cw-table-col-action{--column-width:3rem;max-width:var(--column-width,auto);min-width:var(--column-width,auto);padding:0!important}.cw-table-col-action,.cw-table-col-object{text-align:center;width:var(--column-width,auto)}.cw-table-col-object{--column-width:6rem}:is(td,th).cw-table-col-number{text-align:right}.cw-table-col-action.cw-table-col-buttons,.cw-table-col-tiny{--column-width:6rem}.cw-table-col-small{--column-width:9rem}.cw-table-col-medium{--column-width:12rem}.cw-table-col-large{--column-width:18rem}.cw-table-col-huge{--column-width:24rem}.col-no-grow{max-width:var(--column-width,auto)}.col-no-shrink{min-width:var(--column-width,auto)}.cw-table-cell-wrap{-webkit-line-clamp:2;-webkit-box-orient:vertical;line-clamp:2;display:-webkit-box;overflow:hidden;word-break:break-all}tr.cw-row-status-success{background-color:var(--cw-color-success-container);color:var(--cw-color-on-success-container);button.cw-button-icon{--cw-color-icons:var(--cw-color-on-success-container);--cw-color-error:var(--cw-color-on-success-container)}}tr.cw-row-status-warn{background-color:var(--cw-color-warn-container);color:var(--cw-color-on-warn-container);button.cw-button-icon{--cw-color-icons:var(--cw-color-on-warn-container);--cw-color-error:var(--cw-color-on-warn-container)}}tr.cw-row-status-error{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container);button.cw-button-icon{--cw-color-icons:var(--cw-color-on-error-container);--cw-color-error:var(--cw-color-on-error-container)}}tr.cw-row-status-neutral{background-color:var(--cw-color-surface-container);>td{color:var(--cw-color-on-surface-variant);opacity:.75}button.cw-button-icon{--cw-color-icons:var(--cw-color-on-surface-variant);--cw-color-error:var(--cw-color-on-surface-variant)}}[data-label-width="6rem"]{--label-width:6rem}[data-label-width="7rem"]{--label-width:7rem}[data-label-width="8rem"]{--label-width:8rem}[data-label-width="9rem"]{--label-width:9rem}[data-label-width="10rem"]{--label-width:10rem}[data-label-width="12rem"]{--label-width:12rem}[data-label-width="15rem"]{--label-width:15rem}.cw-fieldset-columns-150-1fr{--label-width:150px}[data-label-align=right] label{text-align:right}.cw-fieldset-row{align-items:center;display:grid;gap:var(--cw-gap);grid-template-columns:var(--label-width,1fr) 1fr;justify-content:flex-start;&.cw-align-vertical-bottom{align-items:flex-end}>.cw-grid-column-all{grid-column:1/3}+.cw-message-container{margin-left:calc(var(--label-width) + 1rem)}+.cw-message-container,>.cw-message-container{font-size:var(--cw-font-size-small)}.ant-form-item{margin:0}}.cw-label-input-column{display:flex;flex-direction:column;gap:.25rem;.ant-form-item{margin:0}}[data-gap="0.5"]{--gap:0.5rem}[data-gap="0.25"]{--gap:0.25rem}.cw-flex-row{display:flex;flex-direction:row;gap:var(--gap,1rem);&:is(.cw-align-left-stretch,.cw-align-left-top,.cw-align-left-center,.cw-align-left-bottom){justify-content:flex-start}&:is(.cw-align-center-stretch,.cw-align-center-top,.cw-align-center-center,.cw-align-center-bottom){justify-content:center}&:is(.cw-align-right-stretch,.cw-align-right-top,.cw-align-right-center,.cw-align-right-bottom){justify-content:flex-end}&:is(.cw-align-stretch-stretch,.cw-align-stretch-top,.cw-align-stretch-center,.cw-align-stretch-bottom){justify-content:stretch}&:is(.cw-align-between-stretch,.cw-align-between-top,.cw-align-between-center,.cw-align-between-bottom){justify-content:space-between}&:is(.cw-align-stretch-top,.cw-align-left-top,.cw-align-center-top,.cw-align-right-top,.cw-align-between-top){align-items:flex-start}&:is(.cw-align-stretch-center,.cw-align-left-center,.cw-align-center-center,.cw-align-right-center,.cw-align-between-center){align-items:center}&:is(.cw-align-stretch-bottom,.cw-align-left-bottom,.cw-align-center-bottom,.cw-align-right-bottom,.cw-align-between-bottom){align-items:flex-end}&:is(.cw-align-stretch-stretch,.cw-align-left-stretch,.cw-align-center-stretch,.cw-align-right-stretch,.cw-align-between-stretch){align-items:stretch}}.cw-flex-column{display:flex;flex-direction:column;gap:var(--gap,1rem);&:is(.cw-align-left-stretch,.cw-align-left-top,.cw-align-left-center,.cw-align-left-bottom,.cw-align-left-between){align-items:flex-start}&:is(.cw-align-center-stretch,.cw-align-center-top,.cw-align-center-center,.cw-align-center-bottom,.cw-align-center-between){align-items:center}&:is(.cw-align-right-stretch,.cw-align-right-top,.cw-align-right-center,.cw-align-right-bottom,.cw-align-right-between){align-items:flex-end}&:is(.cw-align-stretch-stretch,.cw-align-stretch-top,.cw-align-stretch-center,.cw-align-stretch-bottom,.cw-align-stretch-between){align-items:stretch}&:is(.cw-align-stretch-top,.cw-align-left-top,.cw-align-center-top,.cw-align-right-top){justify-content:flex-start}&:is(.cw-align-stretch-center,.cw-align-left-center,.cw-align-center-center,.cw-align-right-center){justify-content:center}&:is(.cw-align-stretch-bottom,.cw-align-left-bottom,.cw-align-center-bottom,.cw-align-right-bottom){justify-content:flex-end}&:is(.cw-align-stretch-stretch,.cw-align-left-stretch,.cw-align-center-stretch,.cw-align-right-stretch){justify-content:stretch}&:is(.cw-align-stretch-between,.cw-align-left-between,.cw-align-center-between,.cw-align-right-between){justify-content:space-between}}.cw-flex-grow{flex-grow:1}.cw-flex-wrap{flex-wrap:wrap}.cw-grid-base-2{display:grid;gap:var(--gap,1rem);grid-template-columns:1fr 1fr;&.cw-columns-2080{grid-template-columns:2fr 8fr}&.cw-columns-4060{grid-template-columns:4fr 6fr}&.cw-columns-6040{grid-template-columns:6fr 4fr}&.cw-columns-7030{grid-template-columns:7fr 3fr}&.cw-columns-8020{grid-template-columns:8fr 2fr}&.cw-align-stretch-bottom{align-items:flex-end;justify-content:stretch}&>.cw-grid-column-all{grid-column:1/3}}.cw-grid-base-3{display:grid;gap:var(--gap,1rem);grid-template-columns:1fr 1fr 1fr;&>.cw-grid-column-all{grid-column:1/4}}.cw-grid-base-4{display:grid;gap:var(--cw-gap);grid-template-columns:repeat(4,1fr);&>.cw-grid-column-all{grid-column:1/5}}.cw-grid-base-5{display:grid;gap:var(--gap,1rem);grid-template-columns:repeat(5,1fr);&>.cw-grid-column-all{grid-column:1/6}}.cw-grid-base-7{display:grid;gap:var(--gap,1rem);grid-template-columns:repeat(7,1fr);&>.cw-grid-column-all{grid-column:1/8}}.cw-grid-base-auto{display:grid;gap:var(--gap,1rem);grid-template-columns:repeat(auto-fit,minmax(var(--auto-columns,300px),1fr));&.cw-columns-100px{--auto-columns:100px}&.cw-columns-200px{--auto-columns:200px}&.cw-columns-300px{--auto-columns:300px}&.cw-columns-450px{--auto-columns:450px}&.cw-columns-600px{--auto-columns:600px}}.cw-grid-rows-2{display:grid;gap:1rem;grid-auto-flow:column;grid-template-rows:repeat(2,auto)}@media (max-width:768px){.cw-grid-rows-2{grid-auto-flow:row;grid-template-rows:none}}[class^=cw-grid-base]{&.cw-align-stretch-bottom{align-items:flex-end;justify-content:stretch}}.cw-grid-column{.ant-select{display:block}}.cw-gap-none{gap:0}.cw-gap-tiny{gap:.25rem}.cw-gap-small{gap:.5rem}.cw-gap-dense{gap:.75rem}.cw-gap-medium{gap:1.5rem}.cw-gap-large{gap:2rem}.cw-gap-huge{gap:3rem}textarea.ant-input.cw-textarea{background-color:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);&:focus,&:hover{box-shadow:none;outline:solid 1px var(--cw-color-outline-variant)}&:disabled{filter:saturate(0);opacity:.75}}.cw-select.ant-select{margin-bottom:0;width:100%}.cw-select.ant-select:not(.ant-select-customize-input) .ant-select-selector{background-color:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);&:focus,&:hover{box-shadow:none;outline:solid 1px var(--cw-color-outline-variant)}&:disabled{filter:saturate(0);opacity:.75}}input.ant-input.cw-input{background-color:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height-large);&:focus,&:hover{box-shadow:none;outline:solid 1px var(--cw-color-outline-variant)}&:disabled{filter:saturate(0);opacity:.75}}.cw-checkbox input[type=checkbox]{margin:0}.cw-checkbox.ant-checkbox-disabled .ant-checkbox-inner{background-color:inherit;border-color:inherit;filter:saturate(0);opacity:.75}.cw-checkbox.ant-checkbox-checked .ant-checkbox-inner{background-color:var(--cw-color-primary);border-color:var(--cw-color-primary)}.cw-box-success{background-color:var(--cw-color-success);color:var(--cw-color-on-success)}.cw-box-warn{background-color:var(--cw-color-warn);color:var(--cw-color-on-warn)}.cw-box-error{background-color:var(--cw-color-error);color:var(--cw-color-on-error)}.cw-box-info{background-color:var(--cw-color-info);color:var(--cw-color-on-info)}.cw-box-neutral{background-color:#888;color:#fff}.cw-container-warn{background-color:var(--cw-color-warn-container);color:var(--cw-color-on-warn-container)}.cw-color-success{color:var(--cw-color-success)}.cw-color-warning{color:var(--cw-color-warn)}.cw-color-danger,.cw-color-error{color:var(--cw-color-error)}.cw-color-inverse-error{color:hsl(from var(--cw-color-error) h s 70%)}.cw-text-ellipsis{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cw-icon-text{align-items:center;display:flex;flex-direction:row;gap:.25rem;>strong{font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:600}>.cwi-icons{font-size:1.25em}}.cw-font-size-small{font-size:var(--cw-font-size-small);line-height:var(--cw-font-size-regular)}.cw-font-size-regular{font-size:var(--cw-font-size-regular);line-height:var(--cw-font-size-medium)}.cw-font-size-medium{font-size:var(--cw-font-size-medium);line-height:var(--cw-font-size-large)}.cw-font-size-large{font-size:var(--cw-font-size-display);line-height:var(--cw-font-size-display)}.cw-padding-none{--table-cell-padding:0;padding:0}.cw-padding-small{padding:.5rem}.cw-margin-none{margin:0}.cw-margin-bottom-1rem{margin-bottom:1rem}.cw-button,.cw-button-outline,.cw-button-solid{font-size:var(--cw-font-size-regular);line-height:1.125rem;padding:.5rem .75rem;>strong{font-weight:600;line-height:1.125rem}>span.cwi-icons{font-size:1.5em;line-height:1.125rem}&:disabled{cursor:default;filter:saturate(0);opacity:.5;pointer-events:none;user-select:none}}.cw-button-solid{&:hover:not(:disabled){background:var(--cw-color-button-hover-background);color:var(--cw-color-button-hover-content)}&[data-color=danger]{--cw-color-button-background:var(--cw-color-error);--cw-color-button-content:var(--cw-color-on-error);--cw-color-button-hover-background:var(--cw-color-inverse-surface);--cw-color-button-hover-content:var(--cw-color-inverse-on-surface)}&[data-color=neutral]{--cw-color-button-background:var(--cw-color-on-surface-variant);--cw-color-button-content:var(--cw-color-inverse-on-surface);--cw-color-button-hover-background:var(--cw-color-inverse-surface);--cw-color-button-hover-content:var(--cw-color-inverse-on-surface)}}.cw-button-outline{background:transparent;border:1px solid;color:var(--cw-color-primary-variant);&:hover:not(:disabled){background:transparent;color:var(--cw-color-primary)}&[data-color=danger]{color:var(--cw-color-error);&:hover:not(:disabled){background:transparent;color:var(--cw-color-on-surface-variant)}}&[data-color=neutral]{color:var(--cw-color-on-surface-variant);&:hover:not(:disabled){background:transparent;color:var(--cw-color-on-surface)}}}.cw-button-icon{align-items:center;background-color:transparent;color:var(--cw-color-icons);display:inline-flex;font-family:var(--cw-font-icons);font-size:1.5rem;height:2rem;justify-content:center;padding:.5rem;width:2rem;&:hover:not(:disabled){background-color:transparent;color:var(--cw-color-icons-variant)}&:active,&[data-active=true]{background-color:var(--cw-color-primary-container);color:var(--cw-color-on-primary-container)}&[data-color=danger]{color:var(--cw-color-error);&:hover:not(:disabled){color:var(--cw-color-on-surface-variant)}&:active{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container)}}&[data-color=neutral]{color:var(--cw-color-on-surface-variant);&:hover:not(:disabled){color:var(--cw-color-primary-variant)}&:active{background-color:var(--cw-color-surface-container-high);color:var(--cw-color-on-surface)}}}.cw-button-icon.cwi-cancel,.cw-button-icon.cwi-delete{color:var(--cw-color-error);&:hover:not(:disabled){color:var(--cw-color-on-surface-variant)}&:active{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container)}}.cw-button-icon.cwi-delete:before{color:inherit;content:"\ea26";font-family:var(--cw-font-icons)}.cw-button-icon.cwi-cancel:before{color:inherit;content:"\ea34";font-family:var(--cw-font-icons)}.cw-search-input{position:relative}.cw-search-input-wrapper{align-items:center;display:flex;flex-grow:1;position:relative}.cw-search-input-wrapper:has(.cw-search-input-icons) input{padding-right:1.5rem}.cw-search-input input{flex-grow:1;overflow:hidden}.cw-search-input .cw-search-input-loading{color:var(--cw-color-on-surface-variant);font-size:1rem;position:absolute;right:2rem;top:.25rem}.cw-search-input-icons{align-items:center;color:var(--neutral-060,#889);display:flex;gap:.5rem;pointer-events:none;position:absolute;right:.5rem}.cw-search-input-icons .cw-button-icon{border-radius:1rem;font-size:var(--cw-font-size-regular);height:1rem;padding:.25rem;pointer-events:auto;width:1rem}.cw-search-input-icons .cw-button-icon:hover{background:var(--cw-color-surface-container-highest)}.cw-input-search-dropdown{background:var(--cw-color-surface-container-low);border:none;border-radius:.375rem;box-shadow:0 4px 8px -2px var(--cw-color-scrim);font-size:var(--cw-font-size-regular);left:0;max-height:12rem;min-width:6rem;outline:solid 1px var(--cw-color-surface-container);overflow-y:auto;padding:.25rem;position:absolute;right:0;scrollbar-width:thin;top:calc(100% + 2px);transition:all .2s ease-in-out;z-index:10}.cw-search-input[data-direction=row]:has(label) .cw-input-search-dropdown{margin-left:calc(var(--label-width, 10rem))}.cw-input-search-dropdown>ul{height:fit-content;line-height:1.5em;list-style:none;margin:0;min-width:5rem;outline:none;width:100%}.cw-input-search-dropdown>ul>li{border-radius:.25rem;color:var(--cw-color-on-surface-variant);cursor:pointer;list-style:none;min-width:100%;outline:none;padding:.25rem;transition:all .2s ease-in-out}.cw-input-search-dropdown>ul>li:hover{background:var(--cw-color-surface-container-high);color:var(--cw-color-on-surface)}.cw_checkboxContent,.cwellt_checkboxContent{align-items:center;display:flex;gap:.5rem;.cwellt_label_text,>.cw_label_text{&.cw_label_disabled{pointer-events:none;user-select:none}&:empty{display:none}}}input.cwellt_checkbox{accent-color:var(--cw-color-primary);height:var(--cw-font-size-medium);margin:0;width:var(--cw-font-size-medium);&:disabled{cursor:not-allowed;filter:saturate(0);opacity:.75}&:not(:last-of-type){margin-right:1.5rem}}nav.cw-dropdown-menu{background-color:var(--cw-color-surface-container-low);border-radius:.5rem;box-shadow:0 10px 30px rgba(0,0,0,.08),0 3px 8px rgba(0,0,0,.12);padding:.75rem;position:absolute;right:0;width:12rem;z-index:1000}nav.cw-dropdown-menu>ul{display:flex;flex-direction:column;list-style-type:none;margin:0;width:100%}nav.cw-dropdown-menu>ul>li{border-radius:.25rem;color:var(--cw-color-on-surface-variant);font-size:.875rem;padding:.25rem;position:relative;&:not(:has(hr)):hover{background-color:var(--cw-color-surface-container-high)}hr{border-bottom:none;border-top:1px solid var(--cw-color-outline-variant);margin:.5rem}&:has(>.dropdown-input){padding:.125rem .25rem}}.dropdown-nested{position:absolute;right:calc(100% + .95rem);top:-1rem}.cw-input-text.dropdown-input .cw-align{align-items:center;flex-direction:row;justify-content:space-between;.cw-label{flex-grow:1;label{font-weight:400}}input{background-color:var(--cw-color-surface-container);flex-grow:0;padding:.125rem;text-align:right;width:3rem}}.dropdown-input input{background-color:var(--cw-color-surface-container);max-width:9rem;padding:.125rem}.cw-toggle.dropdown-toggle{display:block;min-height:auto;width:100%;label{color:currentColor;font-weight:400;justify-content:space-between}label,span.cw-icon-text{flex-grow:1}input[type=checkbox]{--toggle-color:currentColor;transform:scale(.75);&:not(:checked){opacity:0;transition:.5s}}&:hover input[type=checkbox]:not(:checked){opacity:1}}div.cw-select{margin-bottom:0}div.cw-select[data-direction=row]{align-items:center;gap:1rem}div.cw-select select{height:var(--cw-size-medium);width:100%}div.cw-select select:focus,div.cw-select select:hover{outline-width:1px}.cw-toggle{--toggle-color:var(--cw-color-primary-variant);align-items:center;display:flex;width:max-content}.cw-toggle input[type=checkbox]{appearance:none;border-radius:1rem;display:flex;height:1.2rem;justify-content:flex-start;padding:.2rem;position:relative;transition:all .5s ease-in-out;width:2.4rem}.cw-toggle input[type=checkbox]:before{border-radius:1rem;content:"";display:inline-flex;height:.8rem;left:.2rem;position:absolute;transition:all .5s;width:.8rem}.cw-toggle input[type=checkbox]:checked:before{left:1.4rem}.cw-toggle input[type=checkbox]:disabled{opacity:.35;pointer-events:none}.cw-toggle input[type=checkbox]:focus{outline:2px solid var(--cw-color-outline-variant)}.cw-toggle label{align-items:center;cursor:pointer;display:flex;width:auto;.cw-icon-text{padding-right:1rem;width:var(--label-width,10rem)}&[data-direction=column]{flex-direction:column}}.cw-toggle input[type=checkbox]:not(:checked){background-color:transparent;border:1px solid var(--toggle-color);&:before{background-color:var(--toggle-color)}}.cw-toggle input[type=checkbox]:checked{background-color:var(--toggle-color);&:before{background-color:var(--cw-color-on-primary-variant)}}.cw-toggle input[type=checkbox]:disabled:checked{background-color:var(--cw-color-on-surface-variant);&:before{background-color:var(--cw-color-inverse-on-surface)}}input.cw_input{background:var(--cw-color-surface-container-low);color:var(--cw-color-on-surface-variant);outline:1px solid transparent;&:is(:hover,:focus,:active):not(:disabled){outline-color:var(--cw-color-outline-variant)}&:disabled{filter:saturate(0);opacity:.75;pointer-events:none;user-select:none}&:required{~label:after{color:var(--cw-color-error);content:"*";padding-left:5px}}&:invalid:focus{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container);outline-color:var(--cw-color-error)}}.cw-input-container:is([class^=ant-input]){border:none;box-shadow:none}.cw-input-container .ant-input-number-handler-wrap{display:none}.cw-input-container input:is([class^=ant-input]){background:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);font-size:var(--cw-font-size-regular);height:auto;line-height:var(--cw-font-line-height-min);outline:1px solid transparent;padding:var(--cw-spacing-small)!important;&:focus{border:none}&:focus,&:hover{outline:solid 1px var(--cw-color-outline-variant)}}label.cw_label_text_disabled{user-select:none}.cw_inputContent{align-items:center;display:inline-flex;gap:.5rem;justify-content:flex-start;margin-left:1em}button.cw_button_clear{cursor:pointer;height:2em;margin-left:-3em;right:0;width:2em}button.cw_button_clear,button.cw_button_clear:active,button.cw_button_clear:focus{background:transparent;border:0 solid transparent;outline:none}button.cw_button_clear:before{clear:both;color:var(--cw-color-on-surface);content:"\ea33";font-family:var(--cw-font-icons);font-size:1.5em;font-weight:400}div.cw-input-date-text{--size:25px}div.cw-input-date-text input[type=text]{background:var(--cw-color-surface-container-low);border:none;border-radius:5px;color:var(--cw-color-on-surface);font-family:var(--cw-font-family);font-size:11pt;justify-content:center;padding:5px 10px;width:100%}div.cw-input-date-text>div>div{position:relative}div.cw-input-date-text>div>div>span{align-items:center;color:var(--cw-color-icons-variant);display:inline-flex;font-size:1.05rem;height:100%;justify-content:center;position:absolute;right:0;width:2rem}div.cw-input-date-text>div>div>span>span.cwi-icons{font-size:1em}div.cw-input-date-text input[type=date]::-webkit-calendar-picker-indicator{cursor:pointer;height:100%;left:0;position:absolute;top:0;width:100%}div.cw-input-date-text input[type=date]{height:var(--size);left:0;opacity:0;position:relative;position:absolute;top:0;width:var(--size)}div.cw-input-date-text input[type=date]::selection{background:transparent;color:transparent}div.cw-input-date-text input[type=text]:focus,div.cw-input-date-text input[type=text]:hover{outline-width:1px}div.cw-input-date-text input[type=text]:invalid{outline-color:var(--cw-color-error)}div.cw-input-date-text input[type=text]:disabled{cursor:not-allowed;opacity:.5}div.cw-input-date input{background-color:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface);font-family:var(--cw-font-family);font-size:var(--cw-font-size-regular);justify-content:center;padding:5px 10px}div.cw-input-date input:focus,div.cw-input-date input:hover{outline:solid 1px var(--cw-color-outline-variant)}div.cw-input-date input:invalid{outline:var(--cw-color-error) solid 1px}div.cw-input-date input:disabled{cursor:not-allowed;opacity:.5}input[type=time]::-webkit-calendar-picker-indicator{opacity:.5}.row{margin-bottom:10px}.error{color:var(--cw-color-error)}div.cw-image-area{overflow:hidden}div.cw-image-area section{background-color:#fff2;border-radius:2px;box-shadow:0 0 0 20rem #0002;outline:2px dashed var(--cw-color-outline-variant)}div.cw-image-area img{border:1px solid var(--cw-color-outline-variant);border-radius:5px;cursor:crosshair;object-fit:contain}div.cw-image-area img:focus,div.cw-image-area img:hover{outline-width:2px}cw-input-image{display:block}label.cw_label_text_disabled{cursor:not-allowed;opacity:.5;pointer-events:none}.cw_input_numberContent{align-items:center;display:inline-flex;gap:.5rem;justify-content:flex-start;margin-left:1em}span.cw-label+.cw_input_numberContent{gap:0;margin:0}div.cw-input-phone input:focus,div.cw-input-phone input:hover{outline-width:1px}div.cw-input-phone div[itemprop=required]:after{color:var(--cw-color-error);content:"*";padding-left:5px}div.cw-input-phone input:invalid{outline:1px solid var(--cw-color-error)}div.cw-input-phone input:disabled{cursor:not-allowed;opacity:.5}div.cw-text-area textarea{flex-grow:1;min-height:calc(var(--cw-size-large)*2)}div.cw-text-area textarea:focus,div.cw-text-area textarea:hover{outline-color:var(--cw-color-outline-variant)}div.cw-text-area textarea:disabled{cursor:not-allowed;opacity:.75}div.cw-text-area div[itemprop=required]:after{color:var(--cw-color-error);content:"*";padding-left:5px}div.cw-text-area input:invalid:focus{outline-color:var(--cw-color-error)}div.cw-input-text{.cw-input-button,input{flex:1}.cw-input-button{display:flex;gap:.75rem}}.cw-table-container{--table-font-size:var(--cw-font-size-regular);--table-cell-padding:var(--cw-spacing-small);--table-outline:var(--cw-color-surface-container-high);--table-radius:1rem;border-radius:1rem;margin-bottom:1rem;width:100%;>div{overflow-x:auto}}table.cw-table{background-color:var(--cw-color-surface-container-lowest);border-radius:1rem;font-size:var(--table-font-size);line-height:125%}table.cw-table>thead th{background-color:var(--cw-color-surface-container);border:none;border-bottom:1px solid var(--cw-color-surface-container-lowest);color:var(--cw-color-on-surface-variant);font-stretch:var(--cw-font-stretch-condensed);font-weight:var(--cw-font-weight-semibold);padding:var(--table-cell-padding);position:relative;text-align:left;width:var(--column-width,fit-content);.th-column-resizer{background-color:var(--cw-color-surface-container-lowest);bottom:0;cursor:col-resize;height:80%;position:absolute;right:0;top:10%;width:1px;z-index:1}&:first-child{border-top-left-radius:var(--table-radius);padding-left:calc(var(--table-cell-padding)*1.5)}&:last-child{border-top-right-radius:var(--table-radius);padding-right:calc(var(--table-cell-padding)*1.5);.th-column-resizer{display:none}}}table.cw-table>tbody>tr{&.cw-row-status-disabled{background-color:var(--cw-color-surface-container);pointer-events:none;>td{color:var(--cw-color-on-surface-variant);opacity:.75}button.cw-button-icon{--cw-color-icons:var(--cw-color-on-surface-variant);--cw-color-error:var(--cw-color-on-surface-variant)}}}table.cw-table>tbody>tr>td{border-bottom:1px solid var(--table-outline);color:var(--cw-color-on-surface);padding:var(--table-cell-padding);transition:all .2s ease-in-out;vertical-align:middle;width:var(--column-width,fit-content);&.cw-table-cell-empty{opacity:.5;padding:1rem}input,span.ant-select-selection-item{font-size:var(--table-font-size)}}table.cw-table tr:not(.cw-table-row-expanded):has(>td:hover){background-color:var(--cw-color-surface-container-low);div.ant-select-selector,input:not([type=checkbox]){outline:solid 1px var(--cw-color-surface-container-highest)}}table.cw-table tr:has(+tr.cw-table-row-expanded){background-color:var(--cw-color-surface-container)}table.cw-table tr.cw-table-row-expanded>td{padding:1rem;padding:calc(var(--table-cell-padding)*2)}.cw-table-pagination{align-items:center;background:var(--cw-color-surface-container);border-radius:0 0 1rem 1rem;color:var(--cw-color-on-surface-variant);display:flex;font-size:calc(var(--table-font-size)*.875);gap:1rem;justify-content:center;margin:0;padding:.5rem;input{font-size:var(--table-font-size);margin-right:.25rem;max-width:5ch;padding:.25rem .5rem;text-align:center}input+span{line-height:1rem}select{font-size:var(--table-font-size);margin-bottom:0;margin-left:.5rem}}.cw-table-container:has(table.cw-table-bordered){border:1px solid var(--table-outline)}table.cw-table-bordered td:not(:last-child){border-right:1px solid var(--table-outline)}table.cw-table-bordered tbody tr:last-child td{border-bottom:none}.cw-table-container:has(>div>table.cw-font-size-small){--table-font-size:var(--cw-font-size-small);--table-cell-padding:0.375rem;--table-radius:0.5rem}.cw-table-scroll{max-height:var(--table-height,20rem);overflow:auto;padding:0;scrollbar-width:thin;thead{position:sticky;top:0}}.cw-table-container:has(table.table-width-thin) footer.cw-table-pagination{gap:.25rem}.cw-icon-svg{fill:currentColor;display:inline-block;height:1em;vertical-align:-.125em;width:1em}@container main (width < 1600px){table.cw-table .hide-xl{display:none}}@container main (width < 1200px){table.cw-table .hide-lg{display:none}}@container main (width < 900px){table.cw-table .hide-md{display:none}}@container main (width < 600px){table.cw-table .hide-sm{display:none}}.cw-heading :is(h2,h3){color:var(--cw-color-on-surface-variant);font-weight:600}.cw-heading h2{font-size:var(--cw-font-size-display)}.cw-heading h3{font-size:var(--cw-font-size-heading)}label.cw-label{color:var(--cw-color-on-surface);flex-shrink:0}[data-required=true]>label:after,[itemprop=required]>label:after,label:has(+[itemprop=required]):after{color:var(--cw-color-error);content:"*";padding-left:.25rem}.cw-message-wrapper{--message-position:calc(var(--navbar-size, 4rem) + 1rem);align-items:center;display:flex;flex-direction:column;pointer-events:none;position:fixed;top:var(--message-position);width:100%;z-index:1010}.cw-message-wrapper .cw-message{box-shadow:0 12px 28px 0 rgba(0,0,0,.2),0 2px 4px 0 rgba(0,0,0,.1),inset 0 0 0 1px hsla(0,0%,100%,.05);margin-bottom:.5rem}@media screen and (width > 600px){.cw-message-wrapper{align-items:flex-end;right:1rem}}.cw-message{--message-background:var(--cw-color-primary-container);--message-accent:var(--cw-color-on-primary-container);align-items:center;background:var(--message-background);border-radius:.5rem;color:var(--message-accent);display:flex;font-size:.875rem;gap:.5rem;max-width:30rem;padding:.5rem 1rem .5rem .75rem;width:fit-content}.cw-message[data-message-type=ERROR]{--message-background:var(--cw-color-error-container);--message-accent:var(--cw-color-on-error-container)}.cw-message[data-message-type=WARN]{--message-background:var(--cw-color-warn-container);--message-accent:var(--cw-color-on-warn-container)}.cw-message[data-message-type=INFO]{--message-background:var(--cw-color-info-container);--message-accent:var(--cw-color-oninfo-container)}.cw-message[data-message-type=SUCCESS]{--message-background:var(--cw-color-success-container);--message-accent:var(--cw-color-on-success-container)}.cw-tooltip{position:relative}.cw-tooltip .cw-tooltip-title{background-color:var(--cw-color-inverse-surface);border-radius:.25em;box-shadow:0 .25em .25em var(--cw-color-shadow);color:var(--cw-color-on-inverse-surface)!important;font-size:13px;font-weight:400;left:50%;line-height:1.5em;min-width:10em;opacity:0;padding:.5em;position:absolute;top:-50%;transition:all .2s ease;visibility:hidden;white-space:pre-line;width:auto;z-index:1200}.cw-tooltip:hover .cw-tooltip-title{opacity:1;visibility:visible}.cw-expandable{--cw-expandable-padding:0.5rem;--cw-expandable-radius:0.4rem;margin-bottom:1px;&>details{background-color:var(--cw-color-surface-container-low);&>summary{border-radius:var(--cw-expandable-radius);cursor:pointer;list-style-type:none;padding:var(--cw-expandable-padding);&:before{content:"\f054";display:inline-block;font-family:FontAwesome;width:24px}}}&>details[open]{border-radius:var(--cw-expandable-radius);&>summary{border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:var(--cw-expandable-radius);border-top-right-radius:var(--cw-expandable-radius);&:before{content:"\f078";font-family:FontAwesome;width:24px}}&>section{background-color:var(--cw-color-surface-container-lowest);border-bottom-left-radius:var(--cw-expandable-radius);border-bottom-right-radius:var(--cw-expandable-radius);box-shadow:inset 0 5px 15px -10px var(--cw-color-shadow);padding:var(--cw-expandable-padding)}}}.cw-modal-hover>dialog{background-color:var(--cw-color-surface-container-lowest);border:none;border-radius:8px;box-shadow:0 1px 5px 0 var(--cw-color-shadow);min-width:600px;padding:.75rem;position:absolute;transform:translate(-90%)}.cw-modal-hover>dialog[open=false],.cw-modal-hover>dialog[open=true]{transition:opacity .2s ease-in-out}.cw-modal-hover>div[data-hovereable-icon],div.cw-modal-hover{display:inline-block}div.cw-modal-hover{position:relative}.cw-modal .cw-modal-overlay{align-items:center;display:flex;height:100vh;justify-content:center;left:0;position:fixed;top:0;width:100vw;z-index:1000}.cw-modal .cw-modal-overlay-bg{background:rgba(51,38,38,.5);height:100vh;left:0;position:fixed;top:0;width:100vw}.cw-modal .cw-container-modal{background:#fff;border-radius:1em;-moz-box-shadow:0 0 .5em rgba(0,0,0,.2);box-shadow:0 0 .5em rgba(0,0,0,.2);display:flex;flex-direction:column;justify-content:space-between;margin:auto;max-width:calc(100vw - 2em);position:relative}.cw-modal .cw-modal-header{align-items:center;border-bottom:1px solid #f0efef;cursor:move;display:flex;height:3em;justify-content:space-between;width:100%}.cw-modal .cw-modal-title{color:#000;cursor:move;font-family:var(--cw-font-family);font-size:1em;font-style:normal;font-weight:700;letter-spacing:-.45px;line-height:19px;margin-left:1.125em;min-height:1.1875em}.cw-modal .cw-btn-close-modal{background:transparent;border:0 solid transparent;cursor:pointer;height:2em;margin-right:1.125em;outline:none;padding:0;width:2em}.cw-modal .cw-close-icon:before{clear:both;color:var(--cw-color-on-surface);content:"\ea14";font-family:var(--cw-font-icons);font-size:1.75em;font-weight:700}.cw-modal .cw-modal-body{align-items:center;display:flex;justify-content:center}.cw-modal .cw-container-modal-body{height:100%;margin:1.125em;width:100%}.cw-modal .cw-modal-body-scroll{height:39.719375em;overflow:hidden auto;padding-right:.5em;width:100%}.cw-modal .cw-modal-body-scroll::-webkit-scrollbar{width:6px}.cw-modal .cw-modal-body-scroll::-webkit-scrollbar-track{background:#f0efef;-moz-border-radius:4px;border-radius:4px}.cw-modal .cw-modal-body-scroll::-webkit-scrollbar-thumb{background:rgba(0,0,0,.5);-moz-border-radius:4px;border-radius:4px}.cw-modal .cw-modal-confirm-desc{color:#000;font-size:1em;font-weight:400!important}.cw-modal .cw-modal-footer{align-items:center;border-top:1px solid #f0efef;cursor:move;display:flex;height:3em;justify-content:flex-end;width:100%}.cw-modal .cw-modal-footer-cont-button{align-items:center;display:flex;justify-content:center;width:2em}.cw-modal .cw-modal-footer div:last-child{margin-right:1.125em}.cw-modal .cw-btn-modal-footer{background:transparent;-moz-border-radius:6px;border-radius:6px;cursor:pointer;height:31px;margin-right:1.125em;outline:none;padding-left:1em;padding-right:1em}.cw-modal .cw-btn-modal-save{background:#368ee0;color:#fff}.cw-modal .cw-btn-modal-cancel{background:#d11;color:#fff}#resizableModal{background:#9c9c9c;border-radius:2em;box-shadow:0 0 .25em rgba(0,0,0,.2);cursor:pointer;height:1em;position:absolute;right:-46px;top:31px;width:4em}.videoWrapper{height:0;padding-bottom:56.25%;padding-top:25px;position:relative}.videoWrapper iframe{height:100%;left:0;position:absolute;top:0;width:100%}div.cw-table-grouped{border-radius:.25rem;color:var(--cw-color-on-surface);font-size:var(--cw-font-size-regular);max-height:80vh;overflow-y:auto;scrollbar-width:thin;width:100%;table{border-collapse:collapse}td,th{padding:.5rem}th{font-weight:500;text-align:left}tr[data-group]+tr[data-row]{box-shadow:inset 0 4px 8px -5px var(--cw-color-shadow)}tr[data-expanded]{background-color:var(--cw-color-surface-container);cursor:pointer}tr[data-expanded]>td:before{content:" ";display:inline-block;font-family:FontAwesome;text-align:center;width:24px}tr[data-expanded=true]>td:before{content:" "}tr[data-row]{background-color:var(--cw-color-surface-container-low)}}@font-face{font-family:NewCwIcons;src:url(content/icons/new-cw-icons/fonts/NewCwIcons.woff) format("woff")}.cwi-icons,[class^=cwi-]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:NewCwIcons;font-style:normal;font-weight:400;line-height:100%}:where(.cwi-icons,[class^=cwi-]){font-size:1em}:is(.cwi-icons,[class^=cwi-]):before{font-family:NewCwIcons}.cwi-alert:before{content:"\ea01"}.cwi-chevron-down-small:before{content:"\ea02"}.cwi-chevron-right:before{content:"\ea03"}.cwi-chevron-down:before{content:"\ea04"}.cwi-chevron-right-double:before{content:"\ea05"}.cwi-add-users:before{content:"\ea06"}.cwi-chevron-left:before{content:"\ea07"}.cwi-windows:before{content:"\ea08"}.cwi-warning:before{content:"\ea09"}.cwi-search:before{content:"\ea0a"}.cwi-folder-square:before{content:"\ea0b"}.cwi-download:before{content:"\ea0c"}.cwi-inbox:before{content:"\ea0d"}.cwi-pin:before{content:"\ea0e"}.cwi-chevron-up-small:before{content:"\ea0f"}.cwi-ticket-requested:before{content:"\ea10"}.cwi-check-small:before{content:"\ea11"}.cwi-refresh:before{content:"\ea12"}.cwi-airplane-mode:before{content:"\ea13"}.cwi-close:before{content:"\ea14"}.cwi-users:before{content:"\ea15"}.cwi-info-bubble:before{content:"\ea16"}.cwi-flight-new:before,.cwi-new-flight:before{content:"\ea17"}.cwi-timezone-globe:before{content:"\ea18"}.cwi-menu:before{content:"\ea19"}.cwi-save:before{content:"\ea1a"}.cwi-calendar:before{content:"\ea1b"}.cwi-alarm:before{content:"\ea1c"}.cwi-question:before{content:"\ea1d"}.cwi-chevron-up:before{content:"\ea1e"}.cwi-share:before{content:"\ea1f"}.cwi-star:before{content:"\ea20"}.cwi-check-big:before{content:"\ea21"}.cwi-eye-hide:before{content:"\ea22"}.cwi-comment:before{content:"\ea23"}.cwi-around-the-globe:before{content:"\ea24"}.cwi-envelope:before{content:"\ea25"}.cwi-delete:before{content:"\ea26"}.cwi-options:before{content:"\ea27"}.cwi-login:before{content:"\ea28"}.cwi-plus:before{content:"\ea29"}.cwi-ticket-delete:before{content:"\ea2a"}.cwi-logout:before{content:"\ea2b"}.cwi-page:before{content:"\ea2c"}.cwi-document:before{content:"\ea2d"}.cwi-chevron-left-double:before{content:"\ea2e"}.cwi-list:before{content:"\ea2f"}.cwi-eye-show:before{content:"\ea30"}.cwi-print:before{content:"\ea31"}.cwi-edit:before{content:"\ea32"}.cwi-close-circle:before{content:"\ea33"}.cwi-cancel:before{content:"\ea34"}.cwi-clock:before{content:"\ea35"}.cwi-emergency:before{content:"\ea36"}.cwi-folder-open:before{content:"\ea37"}.cwi-calculator:before{content:"\ea38"}.cwi-cloud:before{content:"\ea39"}.cwi-crop:before{content:"\ea3a"}.cwi-file-view:before{content:"\ea3b"}.cwi-user:before{content:"\ea3c"}.cwi-bus:before{content:"\ea3d"}.cwi-ticket:before{content:"\ea3e"}.cwi-plane-ladder:before{content:"\ea3f"}.cwi-traveler:before{content:"\ea40"}.cwi-journey:before{content:"\ea41"}.cwi-airport:before{content:"\ea42"}.cwi-flight-search:before,.cwi-search-flight:before{content:"\ea43"}.cwi-generate-report:before{content:"\ea44"}.cwi-journey-add:before{content:"\ea45"}.cwi-passport:before{content:"\ea46"}.cwi-departure:before{content:"\ea47"}.cwi-landing:before{content:"\ea48"}.cwi-flight:before{content:"\ea49"}.cwi-house-black:before{content:"\ea4a"}.cwi-reset:before{content:"\ea4b"}.cwi-upload:before{content:"\ea4c"}.cwi-thumbs-up:before{content:"\ea4d"}.cwi-hand-ok:before{content:"\ea4e"}.cwi-remarks:before{content:"\ea4f"}.cwi-departure-delayed:before{content:"\ea50"}.cwi-flight-aog:before{content:"\ea51"}.cwi-flight-delayed:before{content:"\ea52"}.cwi-flight-cancelled:before{content:"\ea53"}.cwi-wrench:before{content:"\ea54"}.cwi-waiting:before{content:"\ea55"}.cwi-favorite-files:before{content:"\ea56"}.cwi-archive:before{content:"\ea57"}.cwi-archive-restore:before{content:"\ea58"}.cwi-directory:before{content:"\ea59"}.cwi-lock-solid:before{content:"\ea5a"}.cwi-plane-movement:before{content:"\ea5b"}.cwi-folder-add:before{content:"\ea5c"}.cwi-folder-edit:before{content:"\ea5d"}.cwi-folder-download:before{content:"\ea5e"}.cwi-plane-delay:before{content:"\ea5f"}.cwi-folder-closed:before{content:"\ea60"}.cwi-folder-user:before{content:"\ea61"}.cwi-folder-selected:before{content:"\ea62"}.cwi-paper-plane:before{content:"\ea63"}.cwi-file-accepted:before{content:"\ea64"}.cwi-arrow-left-circle:before{content:"\ea65"}.cwi-arrow-left:before{content:"\ea66"}.cwi-envelope-sent:before{content:"\ea67"}.cwi-undo:before{content:"\ea68"}.cwi-file-report:before{content:"\ea69"}.cwi-fuel:before{content:"\ea6a"}.cwi-location:before{content:"\ea6b"}.cwi-copy:before{content:"\ea6c"}.cwi-check-circle:before{content:"\ea6d"}.cwi-important:before{content:"\ea6e"}.cwi-plane-solid:before{content:"\ea6f"}.cwi-birthday:before{content:"\ea70"}.cwi-link:before{content:"\ea71"}.cwi-user-delete:before{content:"\ea72"}.cwi-crew:before{content:"\ea73"}.cwi-luggage:before{content:"\ea74"}.cwi-user-luggage:before{content:"\ea75"}.cwi-calendar-view:before{content:"\ea76"}.cwi-calendar-plane:before{content:"\ea77"}.cwi-calendar-time:before{content:"\ea78"}.cwi-calendar-solid:before{content:"\ea79"}.cwi-duty-free:before{content:"\ea7a"}.cwi-undo-selected:before{content:"\ea7b"}.cwi-plane-pairing:before{content:"\ea7c"}.cwi-typerating:before{content:"\ea7d"}.cwi-save-selected:before{content:"\ea7e"}.cwi-search-filter:before{content:"\ea7f"}.cwi-linetraining:before{content:"\ea80"}.cwi-arrow-down:before{content:"\ea81"}.cwi-arrow-up:before{content:"\ea82"}.cwi-arrow-right:before{content:"\ea83"}.cwi-accounting:before{content:"\ea84"}.cwi-employee-document:before{content:"\ea85"}.cwi-employees:before{content:"\ea86"}.cwi-phone:before{content:"\ea87"}.cwi-stats:before{content:"\ea88"}.cwi-customers:before{content:"\ea89"}.cwi-crew-planning:before{content:"\ea8a"}.cwi-aircraft-owner:before{content:"\ea8b"}.cwi-crew-control:before{content:"\ea8c"}.cwi-control-tower:before{content:"\ea8d"}.cwi-classroom:before{content:"\ea8e"}.cwi-catering:before{content:"\ea8f"}.cwi-card:before{content:"\ea90"}.cwi-audit:before{content:"\ea91"}.cwi-administrator:before{content:"\ea92"}.cwi-cabincrew:before{content:"\ea93"}.cwi-flight-operations:before{content:"\ea94"}.cwi-dispatch:before{content:"\ea95"}.cwi-fleet:before{content:"\ea96"}.cwi-fatigue-risk:before{content:"\ea97"}.cwi-management:before{content:"\ea98"}.cwi-balance:before{content:"\ea99"}.cwi-master-crew:before{content:"\ea9a"}.cwi-passengers:before{content:"\ea9b"}.cwi-tools:before{content:"\ea9c"}.cwi-risk-assessment:before{content:"\ea9d"}.cwi-sales:before{content:"\ea9e"}.cwi-quiz:before{content:"\ea9f"}.cwi-learning:before{content:"\eaa0"}.cwi-support:before{content:"\eaa1"}.cwi-stock:before{content:"\eaa2"}.cwi-security:before{content:"\eaa3"}.cwi-plane-approval:before{content:"\eaa4"}.cwi-user-account:before{content:"\eaa5"}.cwi-money-transfer:before{content:"\eaa6"}.cwi-plane-spot:before{content:"\eaa7"}.cwi-hotel:before{content:"\eaa8"}.cwi-rental-car:before{content:"\eaa9"}.cwi-plane-seat-solid:before{content:"\eaaa"}.cwi-plane-seat:before{content:"\eaab"}.cwi-spinner:before{content:"\eaac"}.cwi-sortable:before{content:"\eaad"}.cwi-settings:before{content:"\eaae"}.cwi-steering-wheel:before{content:"\eaaf"}.cwi-road:before{content:"\eab0"}.cwi-grip-dots:before{content:"\eab1"}.cwi-medal:before{content:"\eab2"}.cwi-tire:before{content:"\eab3"}.cwi-zoom-in:before{content:"\eab4"}.cwi-zoom-out:before{content:"\eab5"}.cwi-user-solid:before{content:"\eab6"}.cwi-lock-solid-open:before{content:"\eab7"}.cwi-stopwatch:before{content:"\eab8"}.cwi-quote-right:before{content:"\eab9"}.cwi-paste:before{content:"\eaba"}.cwi-clip:before{content:"\eabb"}.cwi-grid:before{content:"\eabc"}.cwi-table:before{content:"\eabd"}.cwi-star-solid:before{content:"\eabe"}.cwi-library:before{content:"\eabf"}.cwi-inventory:before{content:"\eac0"}.cwi-passport-add:before{content:"\eac1"}.cwi-passport-settings:before{content:"\eac2"}.cwi-passport-search:before{content:"\eac3"}.cwi-split:before{content:"\eac4"}.cwi-flight-repeat:before{content:"\eac5"}.cwi-coins:before{content:"\eac6"}.cwi-signature:before{content:"\eac7"}.cwi-undo:before{content:"\ea68"!important}.cwi-undo-selected:before{content:"\ea7b"!important}.cwi-save-selected:before{content:"\ea7e"!important}.cwi-spinner{animation:spin 2s linear infinite}@font-face{font-display:swap;font-family:Roboto Flex Variable;font-stretch:25% 151%;font-style:oblique 0deg 10deg;font-weight:100 1000;src:url(content/fonts/roboto-flex/files/roboto-flex-latin-ext-full-normal.woff2) format("woff2-variations");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto Flex Variable;font-stretch:25% 151%;font-style:oblique 0deg 10deg;font-weight:100 1000;src:url(content/fonts/roboto-flex/files/roboto-flex-latin-full-normal.woff2) format("woff2-variations");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}.cw-chip{align-items:center;border-radius:.25rem;display:inline-flex;font-size:.75rem;font-weight:500;gap:.25rem;line-height:100%;padding:.25rem .75rem;transition:outline .25s ease;user-select:none;>.cwi-icons{font-size:1rem;font-weight:400;line-height:100%}}.cw-chip-closable{padding-right:.25rem}.cw-chip:has(.cwi-icons:first-child){padding-left:.5rem}.cw-chip-close-button{align-items:center;background:none;border:none;border-radius:50%;color:inherit;cursor:pointer;display:inline-flex;font-size:1rem;height:1.25rem;justify-content:center;opacity:.75;padding:0;transition:opacity .2s,background-color .2s;width:1.25rem}.cw-chip-close-button:hover{background-color:rgba(0,0,0,.05);opacity:1}.cw-chip-close-button:focus{background-color:rgba(0,0,0,.1);opacity:1;outline:none}.cw-chip:is([data-variant=solid],[data-variant=soft]){--chip-text:#fff;--chip-accent:currentColor;background-color:var(--chip-accent);color:var(--chip-text)}.cw-chip[data-variant=outline]{--chip-accent:currentColor;border:1px solid var(--chip-accent);color:var(--chip-accent)}.cw-chip[data-variant=soft][data-color-scheme=danger]{--chip-text:var(--cw-color-on-error-container);--chip-accent:var(--cw-color-error-container)}.cw-chip[data-variant=soft][data-color-scheme=warning]{--chip-text:var(--cw-color-on-warn-container);--chip-accent:var(--cw-color-warn-container)}.cw-chip[data-variant=soft][data-color-scheme=success]{--chip-text:var(--cw-color-on-success-container);--chip-accent:var(--cw-color-success-container)}.cw-chip[data-variant=soft][data-color-scheme=info]{--chip-text:var(--cw-color-on-info-container);--chip-accent:var(--cw-color-info-container)}.cw-chip[data-variant=soft][data-color-scheme=neutral]{--chip-text:var(--cw-color-on-surface-variant);--chip-accent:var(--cw-color-surface-container)}.cw-chip:not([data-variant=soft])[data-color-scheme=danger]{--chip-text:var(--cw-color-on-error);--chip-accent:var(--cw-color-error)}.cw-chip:not([data-variant=soft])[data-color-scheme=warning]{--chip-text:var(--cw-color-on-warn);--chip-accent:var(--cw-color-warn)}.cw-chip:not([data-variant=soft])[data-color-scheme=success]{--chip-text:var(--cw-color-on-success);--chip-accent:var(--cw-color-success)}.cw-chip:not([data-variant=soft])[data-color-scheme=info]{--chip-text:var(--cw-color-on-info);--chip-accent:var(--cw-color-info)}.cw-chip:not([data-variant=soft])[data-color-scheme=neutral]{--chip-text:var(--cw-color-inverse-on-surface);--chip-accent:var(--cw-color-on-surface-variant)}.cw-note{align-items:flex-start;border-radius:var(--cw-border-radius);display:flex;font-size:var(--cw-font-size-regular);font-weight:500;gap:.5rem;line-height:1.25;padding:var(--cw-spacing-small) var(--cw-spacing-dense);>.cwi-icons{font-size:1.25em;font-weight:400;line-height:1}}.cw-note.cw-note-small,.cw-note.cw-note-small p{font-size:var(--cw-font-size-small);line-height:1.25}.cw-note.cw-note-large,.cw-note.cw-note-large p{font-size:var(--cw-font-size-medium);line-height:1.25}.cw-note-content{flex-grow:1}.cw-note-dismiss-button{background:transparent;color:inherit;font-size:1.25em;height:auto;line-height:1;padding:0;width:auto;&:hover{color:inherit;opacity:.9}}.cw-note[data-variant=soft][data-color=primary]{background:var(--cw-color-primary-container);color:var(--cw-color-on-primary-container)}.cw-note[data-variant=soft][data-color=danger]{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container)}.cw-note[data-variant=soft][data-color=warning]{background-color:var(--cw-color-warn-container);color:var(--cw-color-on-warn-container)}.cw-note[data-variant=soft][data-color=success]{background-color:var(--cw-color-success-container);color:var(--cw-color-on-success-container)}.cw-note[data-variant=soft][data-color=info]{background-color:var(--cw-color-info-container);color:var(--cw-color-on-info-container)}.cw-note[data-variant=soft][data-color=neutral]{background-color:var(--cw-color-surface-container);color:var(--cw-color-on-surface-variant)}.cw-note[data-variant=solid][data-color=primary]{background-color:var(--cw-color-primary);color:var(--cw-color-on-primary)}.cw-note[data-variant=solid][data-color=danger]{background-color:var(--cw-color-error);color:var(--cw-color-on-error)}.cw-note[data-variant=solid][data-color=warning]{background-color:var(--cw-color-warn);color:var(--cw-color-on-warn)}.cw-note[data-variant=solid][data-color=success]{background-color:var(--cw-color-success);color:var(--cw-color-on-success)}.cw-note[data-variant=solid][data-color=info]{background-color:var(--cw-color-info);color:var(--cw-color-on-info)}.cw-note[data-variant=solid][data-color=neutral]{background-color:var(--cw-color-on-surface-variant);color:var(--cw-color-inverse-on-surface)}.cw-note[data-variant=outline][data-color=primary]{border:1px solid;color:var(--cw-color-primary-variant)}.cw-note[data-variant=outline][data-color=danger]{border:1px solid;color:var(--cw-color-error)}.cw-note[data-variant=outline][data-color=warning]{border:1px solid;color:var(--cw-color-warn)}.cw-note[data-variant=outline][data-color=success]{border:1px solid;color:var(--cw-color-success)}.cw-note[data-variant=outline][data-color=info]{border:1px solid;color:var(--cw-color-info)}.cw-note[data-variant=outline][data-color=neutral]{border:1px solid;color:var(--cw-color-on-surface-variant)}.cw-loading-container{--loading-size:2rem;height:100%;left:0;position:relative;top:0;width:100%;z-index:999}.cw-loading-content{--icon-scale:calc(var(--loading-size)*0.875);align-items:center;display:flex;flex-direction:column;gap:1rem;justify-content:center;left:calc(50% - var(--loading-size));min-height:calc(var(--loading-size)*2);position:absolute;top:calc(50% - var(--loading-size));z-index:999;>p{color:var(--cw-color-primary-variant);font-size:calc(var(--loading-size)*.75);font-weight:500;margin:0}}.cw-loading-container[data-children=false]:has(.cw-loading-content[data-size=small]){width:var(--loading-size)}.cw-loading-content[data-size=small]{--loading-size:1rem;--icon-scale:calc(var(--loading-size)*1.125)}.cw-loading-content[data-size=large]{--loading-size:3rem}.cw-loading{animation:spin 2s linear infinite;border-radius:calc(var(--loading-size)*2);height:calc(var(--loading-size)*2);width:calc(var(--loading-size)*2);will-change:transform}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.cw-loading[data-icon-position=outside]{box-shadow:inset -.125em 0 0 .125em var(--cw-color-primary-container);font-size:var(--loading-size);position:relative;>.cwi-icons{color:var(--cw-color-primary-variant);font-size:var(--icon-scale);height:var(--icon-scale);left:2px;line-height:var(--icon-scale);position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg);width:var(--icon-scale)}}.cw-loading[data-icon-position=inside]{>.cwi-icons{color:var(--cw-color-primary-variant);font-size:calc(var(--loading-size)*2)}}.cw-loading-disabled-content{min-width:var(--loading-size);opacity:.3;pointer-events:none}@keyframes moveRight{0%{left:10%;transform:rotate(0)}to{left:calc(90% - var(--loading-size)*2);transform:rotate(3turn)}}.cw-loading-content[data-animation=moveRight]:not([data-size=small]){align-items:flex-start;left:0;width:100%;>.cw-loading{animation:moveRight 6s linear infinite alternate;position:relative}}.cw-generic-tooltip-module_cw-generic-tooltip-content__la-Si{--tooltip-width:24rem;background-color:var(--cw-color-inverse-surface);border-radius:var(--cw-border-radius);box-shadow:0 1.5rem 3rem -.75rem rgba(0,0,0,.25),0 .5rem 1.5rem -.5rem rgba(0,0,0,.15);color:var(--cw-color-inverse-on-surface);font-size:var(--cw-font-size-small);max-width:var(--tooltip-width);padding:var(--cw-spacing-dense);position:fixed;width:max-content;z-index:120;.cw-generic-tooltip-module_cwi-icons__0-vzj{font-size:var(--cw-font-size-regular)}&:before{background:var(--cw-color-inverse-surface);content:"";height:8px;position:absolute;transform:rotate(45deg);width:8px}&[data-position=left]:before{right:-4px;top:50%;transform:translateY(-50%) rotate(45deg)}&[data-position=right]:before{left:-4px;top:50%;transform:translateY(-50%) rotate(45deg)}&[data-position=top]:before{bottom:-4px;left:50%;transform:translateX(-50%) rotate(45deg)}&[data-position=bottom]:before{left:50%;top:-4px;transform:translateX(-50%) rotate(45deg)}}.cw-generic-tooltip-module_cw-generic-tooltip-content__la-Si:has(.cw-crewmember-dutygrid){--tooltip-width:32rem}.cw-generic-tooltip-module_cw-generic-tooltip__Ij76M[data-inline=true]{display:inline-block}.cw-generic-tooltip-module_cw-generic-tooltip-content__la-Si[data-inline=true]{font-size:var(--cw-font-size-regular);padding:var(--cw-spacing-small) var(--cw-spacing-dense)}.CwConfirmationPopup-module_overlayPositioned__11qYB{background-color:rgba(0,0,0,.5);inset:0;position:fixed;z-index:1000}.CwConfirmationPopup-module_popup__ahPjM{background-color:#fff;border-radius:6px;box-shadow:0 2px 6px rgba(0,0,0,.2);font-size:14px;max-width:280px;padding:12px 16px;width:100%}.CwConfirmationPopup-module_message__MnNL4{font-size:14px;margin-bottom:12px;text-align:center}.CwConfirmationPopup-module_buttons__fGYYE{display:flex;gap:8px;justify-content:center}.CwConfirmationPopup-module_button__ugYQE{border:none;border-radius:4px;cursor:pointer;font-size:13px;padding:6px 12px;transition:background-color .2s}.CwConfirmationPopup-module_confirmButton__rTP4S{background-color:#3498db;color:#fff}.CwConfirmationPopup-module_confirmButton__rTP4S:hover{background-color:#2980b9}.CwConfirmationPopup-module_cancelButton__Ry694{background-color:#e74c3c;color:#fff}.CwConfirmationPopup-module_cancelButton__Ry694:hover{background-color:#c0392b}.cw-dialog-module_cw-dialog-main__cHxHt{--handler-padding:10px;font-family:var(--cw-font-family);height:100vh;left:0;overflow:hidden;position:fixed;top:0;width:100vw;z-index:var(--cw-z-index-high);&[data-has-scrim=true]{background-color:var(--cw-color-scrim)}&>dialog{background-color:var(--cw-color-surface-container-lowest);border:none;border-radius:var(--cw-border-radius-large);box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1),0 .25rem 1rem rgba(0,0,0,.075);box-sizing:border-box;display:flex;flex-direction:column;margin:0;max-height:90vh;max-width:90vw;padding:0;position:absolute;resize:"both";right:50%;top:50%;&>header{align-items:center;border-bottom:1px solid var(--cw-color-surface-container);border-top-left-radius:var(--cw-border-radius-large);border-top-right-radius:var(--cw-border-radius-large);color:var(--cw-color-on-primary-container);cursor:move;display:flex;font-size:var(--cw-font-size-medium);font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:var(--cw-font-weight-semibold);justify-content:space-between;line-height:var(--cw-font-size-medium);padding:var(--cw-spacing-dense);transition:all .5s ease-in;user-select:none;width:100%;&>span{display:block;flex-grow:1;text-align:center}&:hover{background-color:var(--cw-color-surface-container-low)}}&>footer{align-items:center;border-top:1px solid var(--cw-color-surface-container);display:flex;gap:.5rem;justify-content:end;padding:var(--cw-spacing-small) var(--cw-spacing-dense);user-select:none}&>section{flex-grow:1;font-size:var(--cw-font-size-regular);min-width:100%;overflow:auto;padding:var(--cw-spacing-medium);user-select:none}&>div[data-handle-n]{cursor:n-resize;top:0}&>div[data-handle-n],&>div[data-handle-s]{height:var(--handler-padding);left:var(--handler-padding);position:absolute;width:calc(100% - var(--handler-padding)*2)}&>div[data-handle-s]{bottom:0;cursor:s-resize}&>div[data-handle-e]{cursor:e-resize;right:0}&>div[data-handle-e],&>div[data-handle-w]{height:calc(100% - var(--handler-padding)*2);position:absolute;top:var(--handler-padding);width:var(--handler-padding)}&>div[data-handle-w]{cursor:w-resize;left:0}&>div[data-handle-ne]{cursor:ne-resize;right:0}&>div[data-handle-ne],&>div[data-handle-nw]{height:var(--handler-padding);position:absolute;top:0;width:var(--handler-padding)}&>div[data-handle-nw]{cursor:nw-resize;left:0}&>div[data-handle-se]{cursor:se-resize;right:0}&>div[data-handle-se],&>div[data-handle-sw]{bottom:0;height:var(--handler-padding);position:absolute;width:var(--handler-padding)}&>div[data-handle-sw]{cursor:sw-resize;left:0}}}.cw-dialog-module_cw-dialog-button-close__9GRd8{background-color:var(--cw-color-surface-container-high);border-radius:100%;color:var(--cw-color-on-primary-container);cursor:pointer;font-size:var(--cw-font-size-medium);font-weight:var(--cw-font-weight-bold);height:1.5rem;margin:0;padding:0;position:relative;width:1.5rem;&:before{content:"\ea14";font-family:var(--cw-font-icons)}}[data-pressing=true] .cw-dialog-module_cw-dialog-button-close__9GRd8{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container)}[data-pressing=true] .cw-dialog-module_cw-dialog-button-close__9GRd8:after{--danger-light:#ffbfbf;animation:cw-dialog-module_spin__WQstq .5s linear;border:4px solid var(--danger-light);border-radius:50%;border-top-color:var(--cw-color-surface-container-lowest);content:"";height:2.25rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:2.25rem}@keyframes cw-dialog-module_spin__WQstq{to{transform:translate(-50%,-50%) rotate(1turn)}}.cw-dialog-module_cw-dialog-main__cHxHt dialog.padding-dense>section{padding:var(--cw-spacing-dense)}.cw-dialog-module_cw-dialog-main__cHxHt dialog.modal-report-content>section{padding:var(--cw-spacing-small)}.cw-dialog-module_cw-dialog-main__cHxHt dialog.no-overflow>section{overflow:visible}.cw-card-module_card__HJUT0{--card-outline:var(--cw-color-surface-container-high);--card-overlay:hsla(0,0%,100%,.5);--card-shadow:rgba(0,0,0,.1) 3px 3px 9px;border-radius:1rem;display:flex;flex-direction:column;gap:1rem;min-width:15rem;padding:1rem;&.cw-card-module_clickable__Y-V3X{cursor:pointer}&.cw-card-module_disabled__0wHh1{filter:saturate(.25);opacity:.5;pointer-events:none}&.cw-card-module_loading__-fzlx{position:relative}}.cw-card-module_card__HJUT0[data-variant=border]{border:1px solid var(--card-outline);transition:all .2s ease;&:hover{box-shadow:var(--card-shadow)}}.cw-card-module_card__HJUT0[data-variant=shadow]{background:var(--cw-color-surface-container-low);border:1px solid transparent;box-shadow:var(--card-shadow);transition:border .2s ease;&:hover{border:1px solid var(--card-outline)}}.cw-card-module_card__HJUT0[data-direction=column]{max-width:45rem;>header{border-bottom:1px solid var(--card-outline);padding-bottom:.5rem}>footer{border-top:1px solid var(--card-outline);padding-top:.5rem}}.cw-card-module_card__HJUT0[data-direction=row]{flex-direction:row;>header{border-right:1px solid var(--card-outline);flex-basis:12rem;padding-right:.5rem}>div.cw-card-module_content__ma9qy{flex-grow:1}>footer{border-left:1px solid var(--card-outline);flex-basis:9rem;flex-direction:column;padding-left:.5rem}}.cw-card-module_card__HJUT0>header{align-items:center;display:flex;justify-content:space-between;.cw-card-module_headerContent__x4Jfl{align-items:center;display:flex;flex:1;flex-direction:column;&[data-alignment=left]{align-items:flex-start}>h5{background-color:transparent;margin:0;padding:0}>strong{color:var(--cw-color-on-surface-variant);font-size:.75rem;font-weight:600;opacity:.75;text-transform:uppercase}}}.cw-card-module_headerContent__x4Jfl strong .cwi-icons{font-size:.875rem;vertical-align:middle}.cw-card-module_card__HJUT0>footer{color:var(--cw-color-on-surface-variant);display:flex;font-size:.75rem;justify-content:space-between;.cw-card-module_footerTags__80sSW{display:flex;flex-wrap:wrap;gap:.5rem}}.cw-card-module_loadingOverlay__8-zVV{align-items:center;backdrop-filter:blur(2px);background:var(--card-overlay);border-radius:inherit;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:10}.cw-card-list-module_cardContainer__l3YEh{display:flex;flex-direction:column;gap:var(--card-gap,1rem);&[data-layout=grid]{display:grid;grid-template-columns:repeat(auto-fit,minmax(var(--card-width,320px),1fr))}}.cw-card-list-module_pagination__5Ay78{align-items:center;display:flex;gap:1rem;justify-content:center;margin-top:1.5rem}.cw-card-list-module_pageInfo__uiMel{font-size:.875rem}.cw-card-list-module_emptyState__RlqiS,.cw-card-list-module_loading__cYpND{align-items:center;display:flex;justify-content:center;min-height:200px;width:100%}.cw-card-list-module_sortControls__mWgZA{align-items:center;display:flex;gap:.5rem;justify-content:flex-end;margin-bottom:.5rem;>select{margin:0}}.cw-accordion-module_cw-accordion__ErvlW>header{--cw-color-icons:var(--cw-color-on-surface-variant);align-items:center;background:var(--cw-color-surface-container-low);border-radius:.25rem;color:var(--cw-color-on-surface-variant);cursor:pointer;display:flex;padding:0 var(--cw-spacing-small)}.cw-accordion-module_cw-accordion__ErvlW>header>button:before{content:"\ea04"}.cw-accordion-module_cw-accordion__ErvlW[data-open=true]>header{background:var(--cw-color-surface-container-high)}.cw-accordion-module_cw-accordion__ErvlW[data-open=true]>header button:before{content:"\ea1e"}.cw-accordion-module_cw-accordion__ErvlW .cw-accordion-module_cw-accordion-body__xlI8b{background:var(--cw-color-surface-container-low);border-radius:.25rem;display:none;margin-top:.25rem;max-height:10rem;overflow-y:auto;padding:1rem}.cw-accordion-module_cw-accordion__ErvlW[data-open=true] .cw-accordion-module_cw-accordion-body__xlI8b{display:flex}.cw-tabs-module_cw-tabs__1pmji{background:var(--cw-color-surface-container-low);border-radius:.5rem;display:flex;flex-direction:column;gap:.5rem;margin-top:1rem;padding:.5rem;&:first-child{margin-top:0}}.cw-tabs-module_cw-tabs__1pmji>ul{background:var(--cw-color-surface-container-lowest);border-radius:.25rem;display:flex;flex-wrap:wrap;gap:.5rem 0;justify-content:flex-start;list-style-type:none;margin:0;padding:.25rem}.cw-tabs-module_cw-tabs__1pmji>ul>li{align-items:center;border-radius:var(--cw-border-radius-small);color:var(--cw-color-on-surface-variant);cursor:pointer;display:inline-flex;font-family:var(--cw-font-family);font-size:var(--cw-font-size-regular);font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:var(--cw-font-weight-regular);gap:.25rem;line-height:var(--cw-font-line-height-small);padding:.5rem .75rem;position:relative;transition:all .25s ease;>span[class^=cwi-]{font-size:1.25em}&:hover{background-color:var(--cw-color-primary-container);color:var(--cw-color-on-primary-container);.cw-tabs-module_badge__AmVxW{background:var(--cw-color-surface-container-lowest);color:var(--cw-color-on-surface)}}&:after{background-color:transparent;border-radius:.5rem;bottom:0;content:" ";height:3px;left:5%;position:absolute;transition:bottom .25s ease;width:90%}&[data-active=true]{color:var(--cw-color-on-surface);font-weight:var(--cw-font-weight-bold);&:after{background-color:var(--cw-color-primary);bottom:1px}>span[class^=cwi-]{color:var(--cw-color-primary)}}}.cw-tabs-module_badge__AmVxW{align-items:center;background-color:var(--cw-color-primary-container);border-radius:.75rem;color:var(--cw-color-on-primary-container);display:inline-flex;font-size:.75rem;font-weight:600;justify-content:center;line-height:1;margin-left:.25rem;padding:.25rem .375rem;transition:background-color .2s ease}[data-active=true] .cw-tabs-module_badge__AmVxW{background-color:var(--cw-color-primary);color:var(--cw-color-on-primary)}.cw-tabs-module_cw-tabs-content__HTp8d{background:var(--cw-color-surface-container-lowest);border-radius:.5rem;flex-grow:1;padding:.5rem;&:not(:has(>.cw-tabs-module_cw-tabs__1pmji)){max-height:var(--limit-tabs-height,75vh);overflow:auto;scrollbar-color:var(--cw-color-surface-container-highest) transparent;scrollbar-width:thin}&:has(>.cw-tabs-module_cw-tabs__1pmji){padding:0}}.cw-tabs-module_cw-tabs__1pmji[data-tabs-position=left]{flex-direction:row;>ul{flex-direction:column;flex-shrink:0;gap:0;min-width:10rem;>li{justify-content:flex-end;&:after{bottom:-3rem;height:100%;left:auto;right:0;width:4px}&[data-active=true]{color:var(--cw-color-on-surface);font-weight:var(--cw-font-weight-bold);&:after{background-color:var(--cw-color-primary);bottom:1px}}}}}.cw-tabs-module_cw-tabs__1pmji .cw-tabs-module_cw-tabs__1pmji{padding:0;&[data-tabs-position=top]{background:transparent;gap:0;>ul{border-bottom:1px solid var(--cw-color-surface-container-high);border-radius:.5rem .5rem 0 0}.cw-tabs-module_cw-tabs-content__HTp8d{border-radius:0 0 .5rem .5rem}}&[data-tabs-position=left]{>ul{background:var(--cw-color-surface-container-low)}}}.cw-tabs-module_cw-tabs-content__HTp8d:not(:has(.cw-tabs-module_no-overflow__1bToK)){max-height:75vh;overflow:auto;scrollbar-color:var(--cw-color-surface-container-highest) transparent;scrollbar-width:thin}.cw-tabs-module_cw-tabs-content__HTp8d:has(.no-overflow){overflow:visible}.cw-tabs-empty{background:var(--cw-color-surface-container);padding:1rem}dl.cw-keyvalue-list{display:flex;flex-direction:column;gap:.5rem;margin:0;>div.cw-flex-row{align-items:center}>div.cw-flex-column{gap:0}dt{font-stretch:semi-condensed;font-weight:600;width:var(--label-width,auto)}dd{margin:0}}.cw-sortable-list-module_sortableList__PyLO-{display:flex;flex-direction:column;gap:.5rem}.cw-sortable-list-module_sortableItem__FAnn2{border:1px solid var(--cw-color-surface-container-high);border-radius:.5rem;cursor:grab;font-size:.875rem;line-height:1rem;padding:.5rem;&:hover:not(.cw-sortable-list-module_readOnly__r7GcH){background:var(--cw-color-surface-container-low)}&.cw-sortable-list-module_dragging__MD715{opacity:.5;transform:scale(.95);transition:all .2s ease}>header{align-items:center;display:flex;gap:.5rem;justify-content:space-between}&&.cw-sortable-list-module_readOnly__r7GcH{cursor:default}}.cw-sortable-list-module_sortableItem__FAnn2.cw-sortable-list-module_moved__sE6-N{background-color:var(--cw-color-primary-container);border-left:3px solid var(--cw-color-primary);transition:all .3s ease;.cw-sortable-list-module_expandedContent__Kocna{border-color:var(--cw-color-surface-container-lowest)}}.cw-sortable-list-module_sortableHandle__HvYBK{color:var(--cw-color-on-surface-variant);opacity:.75}.cw-sortable-list-module_sortableItem__FAnn2.cw-sortable-list-module_readOnly__r7GcH .cw-sortable-list-module_sortableHandle__HvYBK{opacity:0}.cw-sortable-list-module_sortableContent__C6JhR{align-items:center;display:flex;flex-grow:1;gap:.5rem;justify-content:space-between;min-width:0}.cw-sortable-list-module_sortableTitle__EgWXr{font-weight:600;overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.cw-sortable-list-module_sortableExtraContent__s4LSv{flex-shrink:0}.cw-sortable-list-module_sortableActions__gwQOU{display:flex;flex-shrink:0}.cw-sortable-list-module_dropIndicator__MNSF-{background-color:var(--cw-color-primary);border-radius:1px;height:2px;margin:2px 0;position:relative}.cw-sortable-list-module_dropIndicator__MNSF-:before{background-color:var(--cw-color-primary);border-radius:50%;content:"";height:8px;left:-4px;position:absolute;top:-3px;width:8px}.cw-sortable-list-module_emptyMessage__gMpaL{background:var(--cw-color-surface-container);border-radius:.5rem;color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);padding:.5rem;text-align:center}.cw-sortable-list-module_expandedContent__Kocna{border-top:1px solid var(--cw-color-surface-container-high);margin:.5rem .5rem 0;padding:1rem .5rem .5rem}.cw-sortable-list-module_expandedContent__Kocna .winops-wysiwyg-wrapper.readonly .rdw-editor-main{background:transparent;padding:.5rem}.cw-file-upload-multiple-module_hiddenInput__TZBBI{display:none}.cw-file-upload-multiple-module_uploadArea__DdOhs{background-color:var(--cw-color-surface-container-low);background-color:#fafafa;border:2px dashed var(--cw-color-shadow);border-radius:.5rem;color:var(--cw-color-on-surface-variant);cursor:pointer;display:flex;flex-direction:column;font-size:1rem;gap:.5rem;padding:1rem;text-align:center;transition:border-color .3s ease}.cw-file-upload-multiple-module_uploadArea__DdOhs:hover{border-color:var(--cw-color-outline)}.cw-file-upload-multiple-module_uploadAreaDisabled__VWeFX{background-color:#f5f5f5;cursor:not-allowed;opacity:.5;pointer-events:none}.cw-file-upload-multiple-module_uploadArea__DdOhs .cwi-icons{font-size:2rem}.cw-file-upload-multiple-module_uploadTitle__gjRk8{font-weight:500;margin:0}.cw-file-upload-multiple-module_uploadTitleDisabled__tNwSZ{color:#ccc}.cw-file-upload-multiple-module_uploadSubtitle__Z0S5t{font-size:.875rem;margin:0;opacity:.75}.cw-file-upload-multiple-module_uploadSubtitleDisabled__ibxhc{color:#ccc}.cw-file-upload-multiple-module_filesContainer__g44PY{display:flex;flex-direction:column;gap:.5rem}.cw-file-upload-multiple-module_fileItem__w27Dg{align-items:center;background-color:var(--cw-color-surface-container);border-radius:.5rem;display:flex;font-size:1.25rem;gap:1rem;padding:.5rem}.cw-file-upload-multiple-module_fileIcon__iJJUX{align-items:center;background-color:var(--cw-color-primary);border-radius:.25rem;color:var(--cw-color-on-primary);display:flex;height:2rem;justify-content:center;position:relative;width:2rem}.cw-file-upload-multiple-module_fileExtension__vOuHv{background-color:var(--cw-color-primary-variant);border-radius:2px;bottom:-2px;color:var(--cw-color-on-primary-variant);font-size:8px;font-weight:600;padding:1px 3px;position:absolute;right:-2px}.cw-file-upload-multiple-module_fileInfo__R5ZTv{flex:1;min-width:0}.cw-file-upload-multiple-module_fileName__DjepK{color:var(--cw-color-on-surface);font-size:.875rem;font-weight:500;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cw-file-upload-multiple-module_fileSize__b8GSm{color:var(--cw-color-on-surface-variant);font-size:.75rem;margin:0}.cw-file-upload-multiple-module_smallButton__siUAh{font-size:.875rem}.cw-color-picker-module_colorPreview__ylJcD{align-items:center;border:1px solid var(--cw-color-surface-container);border-radius:.375rem;display:flex;flex-grow:1;height:2rem;justify-content:center;width:100%}.cw-color-picker-module_hueBar__bFhyC{background:linear-gradient(180deg,red,#f0f,#00f,#0ff,#0f0,#ff0,red);border-radius:3px;cursor:pointer;height:100%;position:relative;width:40px}.cw-color-picker-module_hueBarSlider__D53IV{background-color:hsla(0,0%,100%,.8);border:1px solid rgba(0,0,0,.3);box-sizing:border-box;height:5px;left:0;pointer-events:none;position:absolute;transform:translateY(-50%);width:100%}.cw-color-picker-module_colorPickerInteractiveArea__KZFR1{display:flex;gap:.5rem;height:7rem;width:100%}.cw-color-picker-module_colorArea__xgpSE{border-radius:.25rem;cursor:pointer;flex-grow:1;height:7rem;overflow:hidden;position:relative}.cw-color-picker-module_colorAreaOverlay__pmgOc,.cw-color-picker-module_hueBackground__Mks78{inset:0;position:absolute}.cw-color-picker-module_whiteGradient__Bt-fU{background:linear-gradient(90deg,#fff,hsla(0,0%,100%,0));inset:0;pointer-events:none;position:absolute}.cw-color-picker-module_blackGradient__VnEKJ{background:linear-gradient(180deg,transparent,#000);inset:0;pointer-events:none;position:absolute}.cw-color-picker-module_colorAreaCursor__lotg3{border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.6);height:10px;pointer-events:none;position:absolute;transform:translate(-50%,-50%);width:10px;z-index:1}.cw-input-color-module_selectColor__DTo3V{border:2px solid var(--cw-color-surface-container-low);border-radius:4px;cursor:pointer;transition:opacity .2s ease,border-color .2s ease}.cw-input-color-module_selectColor__DTo3V:hover:not(.cw-input-color-module_disabled__O1fK5){border-color:var(--cw-color-surface-container-high)}.cw-input-color-module_disabled__O1fK5{cursor:not-allowed;opacity:.5}.cw-input-color-module_colorDropdown__pX2bc{background-color:var(--cw-color-surface-container-lowest);border:1px solid var(--cw-color-outline-variant);border-radius:.5rem;box-shadow:0 4px 6px var(--cw-color-shadow);padding:1rem}.cw-input-date-picker-module_datePicker__jogOq{display:inline-block;font-family:var(--cw-font-family);font-size:10pt;position:relative}.cw-input-date-picker-module_input__uQshH{background-color:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height-min);padding:var(--cw-spacing-small) var(--cw-spacing-tiny);width:14ch}.cw-input-date-picker-module_input__uQshH[data-valid=false]{outline:1px solid var(--cw-color-error)}.cw-input-date-picker-module_input__uQshH:focus,.cw-input-date-picker-module_input__uQshH:hover{outline:1px solid var(--cw-color-outline-variant)}.cw-label-input-column .cw-input-date-picker-module_input__uQshH{width:auto}.cw-input-date-picker-module_calendar__q39ic{background-color:var(--cw-color-surface-container-low);border-radius:var(--cw-border-radius);box-shadow:0 2px 4px rgba(0,0,0,.1);display:inline-block;left:0;outline:1px solid #ccc;padding:var(--cw-spacing-dense);position:absolute;top:100%;transform:translateY(5px);z-index:50}.cw-input-date-picker-module_calendarHeader__1btPK{align-items:center;display:flex;justify-content:space-between;margin-bottom:1rem}.cw-input-date-picker-module_arrowButton__23tNc{background:none;border:none;color:var(--cw-color-on-surface-variant);cursor:pointer;display:inline-block;font-weight:700;text-align:center;vertical-align:middle}.cw-input-date-picker-module_calendarTitle__oOODw{bottom:1px;display:inline-block;font-weight:700;position:relative;text-align:center;vertical-align:top}.cw-input-date-picker-module_calendarBody__-711a{display:grid;gap:8px;grid-template-columns:repeat(7,1fr);margin-bottom:.5rem}.cw-input-date-picker-module_calendarDay__z-Mmv{align-items:center;border-radius:100px;cursor:pointer;display:flex;height:1.7rem;justify-content:center;text-align:center;vertical-align:top;width:1.7rem}.cw-input-date-picker-module_calendarDay__z-Mmv.cw-input-date-picker-module_selected__XQgR7{background-color:var(--cw-color-primary);color:var(--cw-color-on-primary)}.cw-input-date-picker-module_todayButton__oYamC{background-color:var(--cw-color-primary-container);border:none;border-radius:4px;color:var(--cw-color-on-primary-container);cursor:pointer;margin-top:8px;outline:1px solid var(--cw-color-primary);padding:4px}.cw-input-date-picker-module_emptyDay__lbI5B{color:transparent}.cw-weekday-selector-module_cw-weekday-selector__Iz4GZ{align-items:center;display:flex;flex-direction:row;justify-content:center;&>input{appearance:none;background-color:var(--cw-color-surface-container-low);border-radius:50%;cursor:pointer;height:var(--cw-size-small);margin:var(--cw-spacing-pixel);outline:none;outline-offset:-1px;vertical-align:middle;width:var(--cw-size-small);&[data-day]:before{display:flex;flex-direction:column;font-family:var(--cw-font-family);font-size:var(--cw-font-size-small);height:100%;justify-content:center;position:relative;text-align:center;top:1px;width:100%}&:checked{background-color:var(--cw-color-primary-container);font-weight:var(--cw-font-weight-bold);outline:1px solid var(--cw-color-outline);&[data-day]:before{color:var(--cw-color-on-primary-container)}}&[data-day=M]:before{content:"M"}&[data-day=T]:before{content:"T"}&[data-day=W]:before{content:"W"}&[data-day=R]:before{content:"T"}&[data-day=F]:before{content:"F"}&[data-day=S]:before,&[data-day=U]:before{content:"S"}}}.cw-multi-filter-tag-module_cw-multifilter-tag__Epda-{list-style-type:none;&[data-selected=false]:hover{cursor:copy}}.cw-multi-filter-tag-module_cw-multifilter-tag__Epda-:hover .cw-chip{outline:1px solid currentColor}.cw-multi-filter-tag-module_cw-multifilter-tag__Epda- .cw-chip>span{max-width:20ch;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cw-multi-filter-module_cw-multi-filter-catalog-container__S3nsq{background-color:var(--cw-color-surface-container-lowest);border-radius:var(--cw-border-radius);box-shadow:0 1.5rem 3rem -.75rem rgba(0,0,0,.25),0 .5rem 1.5rem -.5rem rgba(0,0,0,.15);box-sizing:border-box;left:1px;margin-top:4px;max-height:50vh;outline:1px solid var(--cw-color-outline-variant);overflow-y:auto;position:absolute;scrollbar-width:thin;width:calc(100% - 2px);&[data-display-none=true]{display:none}&[data-display-none=false]{display:block}& nav{border-bottom:1px solid var(--cw-color-surface-container-highest)}& nav,& ul{padding:8px}& ul{display:flex;flex-wrap:wrap;gap:var(--cw-gap-small);margin:0;text-overflow:ellipsis}}.cw-multi-filter-module_cw-multi-filter__zipBK{--main-size-unit:12px;--secondary-size-unit:4px;box-sizing:border-box;font-family:var(--cw-font-family);line-height:var(--cw-font-line-height-min);position:relative;z-index:10;& nav>button{background-color:var(--cw-color-primary-container);border-radius:24px;color:var(--cw-color-primary);cursor:pointer;display:inline-block;font-family:var(--cw-font-family);font-size:var(--cw-font-size-small);font-weight:600;line-height:var(--cw-font-line-height-min);margin:calc(var(--secondary-size-unit)/2) var(--secondary-size-unit);padding:calc(var(--main-size-unit)/2) var(--main-size-unit);user-select:none;&:hover{outline:1px solid currentcolor}}& input[type=reset]{background-color:transparent;border-radius:24px;color:var(--cw-color-secondary);cursor:pointer;font-size:1rem;font-weight:600;position:absolute;right:0;top:calc(50% - 1rem);user-select:none}}.cw-multi-filter-module_cw-multi-filter-search__eyHr0{background-color:var(--cw-color-surface-container-low);border-radius:var(--cw-border-radius);display:flex;flex-grow:0;max-height:3.75rem;overflow-y:auto;padding:.25rem .5rem;scrollbar-width:thin;vertical-align:middle;& ul{align-items:center;display:flex;flex-wrap:wrap;gap:.25rem;margin:0;padding:0 1rem 0 0;width:100%}& input[type=text]{appearance:none;background-color:transparent;display:block;flex-grow:1;min-width:8ch;outline:none;padding:.125rem .375rem;&::placeholder{opacity:.5}}&:hover{cursor:text;outline:1px solid var(--cw-color-primary);outline-offset:-2px}}.cw-multi-filter-module_cw-multi-filter-search__eyHr0 .cw-chip{padding-bottom:.125rem;padding-top:.125rem}.cw-tree-view-module_tree-container__NN-HJ{--neutral-070:#656872;--primary-opacity:rgba(var(--cw-color-primary-rgb-values),0.2);background:var(--cw-color-surface-container);border-radius:.5rem;font-size:var(--cw-font-size-regular);padding:.5rem;header{display:flex;margin-bottom:.5rem;position:relative;input{flex:1;line-height:1.5rem}button{font-size:1rem;position:absolute;right:0}}}.cw-tree-view-module_tree-wrapper__keBZI{display:flex;flex-direction:column;gap:.125rem;max-height:400px;overflow-y:auto;padding:0}.cw-tree-view-module_tree-item__prE9N{background:var(--cw-color-surface-container-low);border-radius:.25rem;position:relative}.cw-tree-view-module_tree-node__wfro9{align-items:center;border-left:3px solid transparent;color:var(--cw-color-on-surface);cursor:pointer;display:flex;padding:.5rem 1rem .5rem .5rem;position:relative;transition:all .25s ease;&:hover{background:var(--cw-color-surface-container-lowest)}&.cw-tree-view-module_selected__XJQ0w{background:var(--primary-opacity,var(--cw-color-primary-container));border-left-color:var(--cw-color-primary);color:var(--cw-color-on-primary-container);font-weight:600}&.cw-tree-view-module_non-selectable__YuPSx{color:var(--cw-color-on-surface-variant);font-weight:600}}.cw-tree-view-module_tree-node__wfro9 .cwi-icons{font-size:1.5rem}.cw-tree-view-module_tree-children__ji8CZ{position:relative}.cw-tree-view-module_tree-children__ji8CZ:before{background:linear-gradient(var(--cw-color-surface-container-high),var(--cw-color-surface-container-lowest));bottom:0;content:"";left:20px;mix-blend-mode:multiply;position:absolute;top:0;width:1px;z-index:10}.cw-tree-view-module_empty-state__yvRjo{align-items:center;background:var(--cw-color-surface-container);border-radius:.5rem;color:var(--neutral-070);display:flex;flex-direction:column;gap:.5rem;padding:3rem}.cw-tree-view-module_empty-state__yvRjo .cwi-icons{font-size:3rem}.cw-tree-view-module_tree-label__ss3Nf{flex:1;line-height:150%;&.cw-tree-view-module_tree-spacer__E9Ud2{margin-left:2rem}}.cw-context-menu-module_menu__tXmun{background-color:var(--cw-color-surface-container-low);border-radius:8px;box-shadow:2px 2px 12px 2px var(--cw-color-shadow);display:flex;flex-direction:column;gap:2px;padding:6px;position:fixed;z-index:1000}.cw-context-menu-module_item__-ko8L{background-color:transparent;border-radius:4px;color:var(--cw-color-on-surface-variant);cursor:pointer;font-size:var(--cw-font-size-regular);line-height:100%;padding:6px 8px;transition:all .375s;white-space:nowrap;&:hover{background-color:var(--cw-color-surface-container-high);color:var(--cw-color-on-surface)}}.cw-context-menu-module_arrow__LHZmQ{border-style:solid;height:0;position:absolute;width:0;&[data-placement=bottom]{border-color:transparent transparent var(--cw-color-surface-container-low) transparent;border-width:0 8px 8px;top:-8px}&[data-placement=bottom],&[data-placement=top]{left:var(--arrow-x,50%);transform:translateX(-8px)}&[data-placement=top]{border-color:var(--cw-color-surface-container-low) transparent transparent transparent;border-width:8px 8px 0;bottom:-8px}&[data-placement=right]{border-color:transparent var(--cw-color-surface-container-low) transparent transparent;border-width:8px 8px 8px 0;left:-8px}&[data-placement=left],&[data-placement=right]{top:var(--arrow-y,50%);transform:translateY(-8px)}&[data-placement=left]{border-color:transparent transparent transparent var(--cw-color-surface-container-low);border-width:8px 0 8px 8px;right:-8px}}.cw-pickers-base-module_pickerWrapper__Fb9Zo{align-items:center;display:flex;position:relative}.cw-pickers-base-module_pickerIcons__dyd2-{align-items:center;color:var(--neutral-060,#889);display:flex;gap:.5rem;pointer-events:none;position:absolute;right:.5rem}.cw-pickers-base-module_pickerIcons__dyd2- .cw-button-icon{border-radius:1rem;font-size:var(--cw-font-size-regular);height:1rem;padding:.25rem;pointer-events:auto;width:1rem}.cw-pickers-base-module_pickerIcons__dyd2- .cw-button-icon:hover{background:var(--cw-color-surface-container-highest)}.cw-pickers-base-module_pickerWrapper__Fb9Zo:has(.cw-pickers-base-module_pickerIcons__dyd2-) input{padding-right:1.5rem}.cw-pickers-base-module_pickerWrapper__Fb9Zo input{width:100%}.cw-pickers-base-module_pickerPopup__dkxJo{--shadow-y:3px;animation:cw-pickers-base-module_slideDown__sX6pw .2s ease-out;background:var(--cw-color-surface-container-low);border:1px solid var(--cw-color-outline-variant);border-radius:.5rem;box-shadow:0 calc(var(--shadow-y)*2) 16px rgba(0,0,0,.08),0 var(--shadow-y) 6px rgba(0,0,0,.04),0 calc(var(--shadow-y)*3) 28px rgba(0,0,0,.05);left:0;padding:.5rem 1rem .75rem;position:absolute;top:calc(100% + 4px);z-index:1000;&:is([data-position=left-top],[data-position=right-top]){--shadow-y:-3px;bottom:2rem;top:auto}&:is([data-position=right-bottom],[data-position=right-top]){left:auto;right:0}}@keyframes cw-pickers-base-module_slideDown__sX6pw{0%{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}.cw-pickers-base-module_pickerPopup__dkxJo header{align-items:center;display:flex;gap:.5rem;margin-bottom:.25rem}.cw-pickers-base-module_pickerPopup__dkxJo header .cw-pickers-base-module_title__cE7qI{flex-grow:1;font-size:var(--cw-font-size-regular);font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:500;line-height:150%;min-width:14ch;text-align:center}.cw-pickers-base-module_pickerPopup__dkxJo footer{margin-top:.25rem;button{font-size:var(--cw-font-size-regular);padding:.375rem 1rem}}.cw-pickers-base-module_pickerPopup__dkxJo .rdp{--rdp-cell-size:1.75rem;--rdp-accent-color:var(--cw-color-primary);--rdp-selected-color:var(--cw-color-on-primary);--rdp-accent-color-dark:var(--cw-color-primary-variant);margin:0}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-months{display:flex;gap:1rem}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-month{margin:0;width:100%}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-table{border-collapse:separate;border-spacing:0}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-head_cell{background-color:var(--cw-color-surface-container-highest);color:var(--cw-color-on-surface);font-size:var(--cw-font-size-small);font-weight:600;padding:.25rem;text-align:center;&:first-child{border-radius:.25rem 0 0 .25rem}&:last-child{border-radius:0 .25rem .25rem 0}}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-cell{padding:2px}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day{background:transparent;border:none;border-radius:4px;color:var(--cw-color-on-surface);cursor:pointer;font-size:var(--cw-font-size-small);height:var(--rdp-cell-size);transition:all .2s;width:100%}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day:not(.rdp-day_disabled):not(.rdp-day_selected):hover{background-color:var(--cw-color-surface-container-highest)}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day_today{color:var(--rdp-accent-color-dark);font-weight:700;position:relative}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day_today:after{background-color:var(--rdp-accent-color-dark);border-radius:50%;bottom:4px;content:"";height:4px;left:50%;position:absolute;transform:translateX(-50%);width:4px}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day_today.rdp-day_selected:after{background-color:var(--rdp-selected-color)}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day_selected{background-color:var(--rdp-accent-color);color:var(--rdp-selected-color);font-weight:700;&:hover{background-color:var(--rdp-accent-color-dark)}}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day_outside{color:var(--cw-color-on-surface-variant);opacity:.65}.cw-pickers-base-module_pickerPopup__dkxJo .cw-pickers-base-module_rdp-day_disabled__MsStt{background-color:transparent!important;color:var(--cw-color-on-surface-variant);cursor:not-allowed;opacity:.65}.cw-range-picker-module_rangeWrapper__1nIVs{align-items:center;display:flex;gap:.5rem;position:relative}.cw-range-picker-module_rangePopup__E5jd1{display:flex;gap:.5rem;&:has(.cw-range-picker-module_presetList__INiLo){padding-left:.5rem}}.cw-range-picker-module_presetList__INiLo{border-right:1px solid var(--cw-color-outline-variant);display:flex;flex-direction:column;margin-right:.25rem;padding-right:.5rem;width:8rem;button{background:transparent;color:var(--cw-color-on-surface);font-size:var(--cw-font-size-small);text-align:left;transition:all .2s;&:hover{background-color:var(--cw-color-surface-container-highest)}}}.cw-range-picker-module_rangePopup__E5jd1 .rdp-day_range_end,.cw-range-picker-module_rangePopup__E5jd1 .rdp-day_range_start{background-color:var(--rdp-accent-color);color:var(--rdp-selected-color);font-weight:700}.cw-range-picker-module_rangePopup__E5jd1 .rdp-day_range_middle{background-color:rgba(var(--cw-color-primary-rgb-values),.25);color:var(--cw-color-on-surface);&:hover{background-color:rgba(var(--cw-color-primary-rgb-values),.5)}}.cw-time-picker-module_timePickerPopup__BN63t{overflow:hidden;padding:0}.cw-time-picker-module_timePickerList__E88pr{max-height:15rem;overflow-y:auto;padding:.25rem;scrollbar-width:thin}.cw-time-picker-module_timePickerList__E88pr button{background:transparent;border:none;border-radius:.25rem;color:var(--cw-color-on-surface);cursor:pointer;font-size:var(--cw-font-size-regular);padding:.5rem .75rem;text-align:center;transition:all .2s;width:100%;&:hover{background-color:var(--cw-color-surface-container-highest)}&.cw-time-picker-module_selected__qVnfL{background-color:var(--cw-color-primary);color:var(--cw-color-on-primary);font-weight:600}}input.cw-time-picker-module_hasIcons__ZiGUf{max-width:6rem}input.cw-time-picker-module_notIcons__3icu1{max-width:4.5rem}.cw-datetime-compact-module_compactPopup__GiuNY{display:flex;gap:1rem}.cw-datetime-compact-module_calendarWrapper__P4Nlq{padding:.5rem 0;footer{justify-content:center}}.cw-datetime-compact-module_timeWrapper__uMe-A{display:flex;flex-direction:column;min-width:100px;header{align-items:center;border-bottom:1px solid var(--cw-color-outline-variant);display:flex;font-size:var(--cw-font-size-regular);font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:500;gap:.5rem;justify-content:center;line-height:150%;padding:.75rem .25rem}}.cw-datetime-compact-module_compactTimeList__MzSQT{flex:1;max-height:14rem}body{--scheduler-header-row-height:2rem}.scheduler-header-module_scheduler-header-divisions__1JrNe{display:flex;flex:1;position:relative;.scheduler-header-module_scheduler-timeline-now__naREv:before{background:inherit;border-radius:6px;content:"";height:6px;left:-2px;position:absolute;top:-2px;width:6px}.scheduler-header-module_scheduler-timeline-label__mLVAp{color:red;font-size:var(--cw-font-size-smallest);font-weight:700;left:-3ch;line-height:var(--cw-font-size-smallest);position:absolute;text-align:center;top:-.75rem;width:6ch}}.scheduler-header-module_scheduler-header-title__Jzy94{display:flex;flex-direction:column;flex-shrink:0;>div{align-items:center;background:var(--cw-color-surface-container-high);display:flex;font-size:var(--cw-font-size-small);height:var(--scheduler-header-row-height);justify-content:center;line-height:var(--cw-font-size-medium);&:has(h5){background:var(--cw-color-surface-container-lowest);padding-bottom:.5rem}h5{background-color:transparent;color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:700;line-height:var(--cw-font-size-medium);margin:0;padding:0}}}.scheduler-header-module_scheduler-dates__O7ePQ{align-items:center;border-left:1px solid var(--cw-color-surface-container);color:var(--cw-color-on-surface-variant);display:flex;font-size:var(--cw-font-size-small);font-weight:500;height:var(--scheduler-header-row-height);justify-content:flex-start;line-height:var(--cw-font-size-medium);overflow:hidden;padding:.25rem .25rem .75rem;&.scheduler-header-module_current-day__FpHiv{color:var(--cw-color-on-surface);font-weight:700}}.scheduler-header-module_scheduler-hours__ZDCVj{align-items:center;background:var(--cw-color-surface-container-high);border-left:1px solid #fff;display:flex;flex:1;font-size:clamp(.5rem,.125rem + .5vw,.75rem);height:var(--scheduler-header-row-height);justify-content:flex-start;line-height:var(--cw-font-size-medium);overflow:hidden;padding:0 .25rem}.new-scheduler-module_hide-scrollbar__33GG9::-webkit-scrollbar{display:none}.new-scheduler-module_hide-scrollbar__33GG9{-ms-overflow-style:none;scrollbar-width:none}.new-scheduler-module_scheduler-event__gphwn{border-radius:.25rem;display:flex;flex-direction:column;font-size:var(--cw-font-size-smallest);justify-content:space-between;line-height:var(--cw-font-size-small);overflow:hidden}.new-scheduler-module_scheduler-event-container__-h1xm{align-items:center;container-name:event;container-type:size;display:flex;flex:1;flex-direction:row;overflow:hidden;white-space:nowrap}.new-scheduler-module_scheduler-event__gphwn>.new-scheduler-module_time-marker__2BejU{height:3px;width:100%}.new-scheduler-module_scheduler-event-container__-h1xm .cwi-icons{font-size:1rem}@container event (width < 30px){span.new-scheduler-module_scheduler-event-text__zjvd7{display:none}}@container event (width < 12px){.cwi-icons{display:none}}.scheduler-row-module_scheduler-row-header__S-iv4{align-items:flex-start;border-right:1px solid #fff;cursor:pointer;display:flex;flex-direction:column;font-size:var(--cw-font-size-smallest);justify-content:center;line-height:var(--cw-font-size-smallest);padding:.25rem 1rem}.super-scheduler-module_super-scheduler-row-header__TTs4e{align-items:center;border-right:1px solid #fff;display:flex;font-size:var(--cw-font-size-smallest);gap:.25rem;justify-content:flex-start;line-height:var(--cw-font-size-regular);position:relative;>button:first-child{color:var(--cw-color-on-surface-variant);font-size:1rem;height:1.5rem;width:1.5rem;&[data-pinned=true]:before{transform:rotate(-45deg)}}>.super-scheduler-module_indicators__f4lIT{align-items:center;display:flex;flex-direction:column;flex-shrink:0;gap:.25rem;width:1rem}>.super-scheduler-module_indicators__f4lIT+div{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;justify-content:center}div:has(.super-scheduler-module_scheduler-crewmember-functions__BS2hs){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.super-scheduler-module_super-scheduler-row-header__TTs4e .cwi-spinner{font-size:.875rem}.super-scheduler-module_scheduler-crewmember-functions__BS2hs{color:var(--cw-color-primary-variant);opacity:.5;padding-left:.125rem}
|
|
1
|
+
/*! modern-normalize v3.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */*,:after,:before{box-sizing:border-box}html{-webkit-text-size-adjust:100%;font-family:system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;line-height:1.15;tab-size:4}body{margin:0}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:currentcolor}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}:root{--cw-color-primary:#3d74ff;--cw-color-on-primary:#fff;--cw-color-primary-container:#dfe4ff;--cw-color-on-primary-container:#0e065f;--cw-color-primary-variant:#170099;--cw-color-on-primary-variant:#fff;--cw-color-primary-rgb-values:61,116,255;--cw-color-secondary:#565f71;--cw-color-on-secondary:#fff;--cw-color-secondary-container:#dae2f9;--cw-color-on-secondary-container:#131c2b;--cw-color-error:#e52828;--cw-color-on-error:#fff;--cw-color-error-container:#f2ccd0;--cw-color-on-error-container:#93252f;--cw-color-info:#7695d2;--cw-color-on-info:#fff;--cw-color-info-container:#d3ebff;--cw-color-on-info-container:#202040;--cw-color-warn:#ff8c00;--cw-color-on-warn:#402a20;--cw-color-warn-container:#ffe0b2;--cw-color-on-warn-container:#402a20;--cw-color-success:#45a859;--cw-color-on-success:#fff;--cw-color-success-container:#b4e1ba;--cw-color-on-success-container:#0d2310;--cw-color-surface-bright:#fff;--cw-color-surface:#e8e8f1;--cw-color-surface-dim:#d9d9e0;--cw-color-on-surface-variant:#44474e;--cw-color-on-surface:#232733;--cw-color-surface-container-highest:#d6d6eb;--cw-color-surface-container-high:#e0e0f0;--cw-color-surface-container:#ebebf5;--cw-color-surface-container-low:#f5f5fa;--cw-color-surface-container-lowest:#fff;--cw-color-outline:#6576a3;--cw-color-outline-variant:#b0b7dd;--cw-color-scrim:#04040c40;--cw-color-shadow:#06050c20;--cw-color-inverse-surface:#2e3036;--cw-color-inverse-on-surface:#f0f0f7;--cw-color-inverse-primary:#aac7ff;--cw-color-icons:var(--cw-color-primary);--cw-color-icons-variant:var(--cw-color-primary-variant);--cw-color-button-background:var(--cw-color-primary);--cw-color-button-content:var(--cw-color-on-primary);--cw-color-button-hover-background:var(--cw-color-primary-variant);--cw-color-button-hover-content:var(--cw-color-on-primary-variant);--cw-color-layout-table-headers:var(--cw-color-primary);--cw-color-layout-on-table-headers:var(--cw-color-on-primary);--cw-color-layout-table-row-selected:var(--cw-color-primary-container);--cw-color-layout-on-table-row-selected:var(--cw-color-on-primary-container);--cw-spacing-pixel:1px;--cw-spacing-tiny:0.25rem;--cw-spacing-small:0.5rem;--cw-spacing-dense:0.75rem;--cw-spacing:1rem;--cw-spacing-medium:1.5rem;--cw-spacing-large:2rem;--cw-spacing-huge:3rem;--cw-gap-tiny:0.25rem;--cw-gap-small:0.5rem;--cw-gap:1rem;--cw-gap-large:1.5rem;--cw-size-tiny:1rem;--cw-size-small:1.5rem;--cw-size-medium:2rem;--cw-size-large:2.5rem;--cw-size-largest:3rem;--cw-z-index-base:0;--cw-z-index-medium:10;--cw-z-index-high:100;--cw-z-index-highest:1000;--cw-border-width:1px;--cw-border-width-thick:2px;--cw-border-radius-small:0.25rem;--cw-border-radius:0.375rem;--cw-border-radius-large:0.5rem;--cw-font-family:"Roboto Flex Variable","Roboto","Helvetica","Arial",sans-serif;--cw-font-icons:"NewCwIcons";--cw-font-size-smallest:0.625rem;--cw-font-size-small:0.75rem;--cw-font-size-regular:0.875rem;--cw-font-size-medium:1rem;--cw-font-size-large:1.0625rem;--cw-font-size-heading:1.125rem;--cw-font-size-display:1.25rem;--cw-font-weight-hairline:200;--cw-font-weight-light:300;--cw-font-weight-regular:400;--cw-font-weight-medium:500;--cw-font-weight-semibold:600;--cw-font-weight-bold:700;--cw-font-stretch-ultra-consensed:50%;--cw-font-stretch-condensed:60%;--cw-font-stretch-semi-condensed:75%;--cw-font-stretch-normal:100%;--cw-font-stretch-semi-expanded:115%;--cw-font-stretch-expanded:125%;--cw-font-line-height-min:100%;--cw-font-line-height-small:125%;--cw-font-line-height:150%;--cw-font-line-height-large:175%}*{box-sizing:border-box;margin:0;padding:0;scrollbar-color:var(--cw-color-surface-container-highest,#ccc) transparent}body{font-size:var(--cw-font-size-regular)}#index_root__BFXq6,body,h1,h2,h3,h4,h5,h6{font-family:var(--cw-font-family)}h1,h2,h3,h4,h5,h6{color:var(--cw-color-on-surface);margin:var(--cw-spacing) 0;&:first-child{margin-top:0}}h1,h2,main h1,main h2{font-size:var(--cw-font-size-display);font-weight:var(--cw-font-weight-bold);line-height:var(--cw-font-line-height)}h3,main h3{font-size:var(--cw-font-size-heading)}h3,h4,main h3,main h4{font-weight:var(--cw-font-weight-semibold);line-height:var(--cw-font-line-height)}h4,h5,main h4,main h5{font-size:var(--cw-font-size-medium)}h5,main h5{line-height:var(--cw-font-line-height)}h5,h6,main h5,main h6{font-weight:var(--cw-font-weight-medium)}h6,main h6{font-size:var(--cw-font-size-regular)}h6.index_cw-table-caption__fFhWk{background:transparent;font-weight:600;margin:0}button,input:where([type=button],[type=reset],[type=submit]){align-items:center;background:var(--cw-color-button-background);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-button-content);cursor:pointer;display:flex;font-size:var(--cw-font-size-regular);gap:.5rem;justify-content:center;line-height:var(--cw-font-size-medium);outline:none;padding:.5rem .75rem;transition:all .25s ease-in-out;&:focus{outline:none}&:disabled{cursor:default;filter:saturate(0);opacity:.5;pointer-events:none;user-select:none}}input[type=color]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;cursor:pointer;height:2.25rem;width:4rem;&:is(:hover,:focus,:active):not(:disabled){outline-color:var(--cw-color-outline-variant);outline-width:2px}&:disabled{cursor:default;filter:saturate(0);opacity:.5;pointer-events:none;user-select:none}}input[type=color]::-moz-color-swatch,input[type=color]::-webkit-color-swatch{border:1px solid var(--cw-color-surface-container-high);border-radius:var(--cw-border-radius)}input[type=color]::-webkit-color-swatch-wrapper{padding:0}input:not([type=button],[type=reset],[type=submit],[type=color],[type=checkbox]){background:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height);outline:1px solid transparent;padding:var(--cw-spacing-tiny) var(--cw-spacing-dense);transition:all .25s ease-in-out;&:is(:hover,:focus,:active):not(:disabled){outline-color:var(--cw-color-outline-variant)}&:required{~label:after{color:var(--cw-color-error);content:"*";padding-left:5px}&::placeholder{color:var(--cw-color-on-surface-variant)}}&:invalid:focus{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container);outline-color:var(--cw-color-error)}&:disabled{filter:saturate(0);opacity:.75;pointer-events:none;user-select:none}}textarea{background:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height);outline:1px solid transparent;padding:var(--cw-spacing-tiny) var(--cw-spacing-dense);transition:all .25s ease-in-out;&:disabled{filter:saturate(0);opacity:.75;pointer-events:none;user-select:none}&:focus{outline-color:var(--cw-color-outline-variant)}}input:where([type=checkbox],[type=radio]){accent-color:var(--cw-color-primary);border-radius:var(--cw-border-radius-small);cursor:pointer;height:var(--cw-font-size-medium);line-height:var(--cw-font-line-height);margin:0;outline:none;transition:all .25s ease-in-out;width:var(--cw-font-size-medium);&:disabled{filter:saturate(0);opacity:.75;pointer-events:none;user-select:none}+label{cursor:pointer;line-height:var(--cw-font-line-height);padding-left:var(--cw-spacing-tiny)}}select{background:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height);margin-bottom:0;outline:1px solid transparent;padding:var(--cw-spacing-tiny) var(--cw-spacing-dense);transition:all .25s ease-in-out;option{background:transparent;border-radius:var(--cw-border-radius-small);color:var(--cw-color-on-surface-variant);padding:var(--cw-spacing-tiny);&:hover{background-color:var(--cw-color-surface-container-high);color:var(--cw-color-on-surface)}}&:focus,&:focus-within{outline-color:var(--cw-color-outline-variant)}&:disabled{filter:saturate(0);opacity:.75;pointer-events:none;user-select:none}&[multiple]{padding:var(--cw-spacing-small) var(--cw-spacing-dense)}&:invalid:focus{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container);outline-color:var(--cw-color-error)}}::picker(select),select{appearance:base-select}::picker(select){background-color:var(--cw-color-surface-container-low);border:none;border-radius:.375rem;box-shadow:0 4px 8px -2px var(--cw-color-scrim);max-height:200px;padding:.25rem 0;scrollbar-width:thin;top:2px}select option:checked{background:var(--cw-color-primary-container);color:var(--cw-color-on-primary-container)}select option::checkmark{color:var(--cw-color-icons);content:"\ea21";font-family:var(--cw-font-icons);font-size:1.25rem}select::picker-icon{content:"\ea04";font-family:var(--cw-font-icons);font-size:1rem}label{font-family:var(--cw-font-family);font-size:var(--cw-font-size-regular);font-stretch:var(--cw-font-stretch-condensed);font-weight:var(--cw-font-weight-semibold);line-height:var(--cw-font-line-height-small);margin:0;width:var(--label-width,auto);&:empty{display:none}}strong.index_cw-label__gzPzz{font-stretch:var(--cw-font-stretch-condensed);font-weight:var(--cw-font-weight-semibold)}fieldset.index_cw-fieldset__eMzG3,form fieldset{border:none;border-radius:var(--cw-border-radius-large);margin-bottom:0;outline:solid 1px var(--cw-color-surface-dim);padding:var(--cw-spacing);>legend{background:var(--cw-color-surface-container-lowest);border:none;color:var(--cw-color-outline);font-size:var(--cw-font-size-regular);font-weight:var(--cw-font-weight-medium);line-height:var(--cw-font-line-height-small);margin:0 0 -.75rem;padding:var(--cw-spacing-tiny) var(--cw-spacing-small);position:relative;top:-.75rem;width:auto}}table{border-collapse:collapse;border-spacing:0;margin:0}table th{background-color:var(--cw-color-layout-table-headers);color:var(--cw-color-layout-on-table-headers)}table td{color:var(--cw-color-on-surface)}table td img{max-height:calc(var(--cw-spacing-huge)*2);max-width:calc(var(--cw-spacing-huge)*3);width:100%}p{font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height-small);margin-bottom:0}p.index_cw-title-h6__i3myK{font-size:1rem;font-weight:500;margin-bottom:.5rem}p.index_cw-input-info__yHm5X,p.index_cw-title-h6__i3myK{color:var(--cw-color-on-surface-variant);font-stretch:semi-condensed}p.index_cw-input-info__yHm5X{font-size:var(--cw-font-size-small);line-height:var(--cw-font-line-height-small);margin-top:.5rem}a[href^=tel]{align-items:center;color:var(--cw-color-primary-variant);display:inline-flex;&:hover{color:var(--cw-color-on-surface)}}a[href^=tel]:before{content:"\ea87";font-family:var(--cw-font-icons);font-size:1.25em;font-weight:400}details{background-color:var(--cw-color-surface-container);border-radius:var(--cw-border-radius);padding:var(--cw-spacing-tiny);>summary{cursor:pointer;font-size:var(--cw-font-size-heading);font-weight:var(--cw-font-weight-bold);padding:var(--cw-spacing-small)}>div{background-color:var(--cw-color-surface-container-low);border-radius:var(--cw-border-radius);padding:var(--cw-spacing) var(--cw-spacing-medium)}}hr{margin:var(--cw-spacing) 0}.index_cw-message-container__8JfiL{background:var(--cw-color-primary-container);border-radius:var(--cw-border-radius);color:var(--cw-color-on-primary-container);font-size:var(--cw-font-size-regular);padding:var(--cw-spacing-small) var(--cw-spacing-dense);&:is(code){border-radius:var(--cw-border-radius-small);padding:.125rem var(--cw-spacing-small)}&:is(.index_cw-font-size-small__G-Vdu){font-size:var(--cw-font-size-small);line-height:var(--cw-font-size-regular);p{font-size:var(--cw-font-size-small)}}&:where([data-message-type=error],[data-color=danger]){background:var(--cw-color-error-container);color:var(--cw-color-on-error-container)}&:where([data-message-type=warn],[data-color=warning]){background:var(--cw-color-warn-container);color:var(--cw-color-on-warn-container)}&:where([data-message-type=success],[data-color=success]){background:var(--cw-color-success-container);color:var(--cw-color-on-success-container)}&:where([data-message-type=neutral],[data-color=neutral]){background:var(--cw-color-surface-container);color:var(--cw-color-on-surface-variant)}h6{background:transparent;color:inherit;font-weight:600;padding:0}}span.index_input-like-span__iti3l{border:1px solid var(--cw-color-surface-container-high);border-radius:.375rem;opacity:.75;padding:.25rem .5rem}.index_cw-page-container-react__nYywS{padding:1rem}.index_cw-navbar-row__0r58v{align-items:center;display:flex;gap:var(--cw-gap);padding:var(--cw-spacing-small)}.index_cw-button-text-group__Zn0O8{align-items:center;display:flex;gap:var(--cw-gap-small)}.index_cw-button-small__92nk0 :is(.index_cw-button__aWbrc,.index_cw-button-outline__HkqgM){font-size:var(--cw-font-size-regular);padding:var(--cw-spacing-tiny) var(--cw-spacing-small)}.index_cw-button-icon-group__HXqtc{align-items:center;display:flex}footer.index_cw-button-icon-group__HXqtc{justify-self:flex-end}.index_cw-checkbox-row__5R6yf{display:grid;gap:var(--cw-gap-small);grid-template-columns:1rem 1fr}.index_cw-checkbox-column__4JWun{align-items:center;cursor:pointer;display:flex;flex-direction:column;gap:.5rem;width:auto}:is(td,th):where(.index_cw-table-col-tiny__SpkJY,.index_cw-table-col-small__gVcj-,.index_cw-table-col-medium__j28Pq,.index_cw-table-col-large__dPBvl,.index_cw-table-col-huge__OQQ1T){width:var(--column-width,auto)}.index_cw-table-col-action__Sk-xN{--column-width:3rem;max-width:var(--column-width,auto);min-width:var(--column-width,auto);padding:0!important;text-align:center;width:var(--column-width,auto)}.index_cw-table-col-object__souFU{--column-width:6rem;text-align:center;width:var(--column-width,auto)}:is(td,th).index_cw-table-col-number__WDPnJ{text-align:right}.index_cw-table-col-action__Sk-xN.index_cw-table-col-buttons__Us8-j,.index_cw-table-col-tiny__SpkJY{--column-width:6rem}.index_cw-table-col-small__gVcj-{--column-width:9rem}.index_cw-table-col-medium__j28Pq{--column-width:12rem}.index_cw-table-col-large__dPBvl{--column-width:18rem}.index_cw-table-col-huge__OQQ1T{--column-width:24rem}.index_col-no-grow__VPAj4{max-width:var(--column-width,auto)}.index_col-no-shrink__jlN6K{min-width:var(--column-width,auto)}.index_cw-table-cell-wrap__iB4D2{-webkit-line-clamp:2;-webkit-box-orient:vertical;line-clamp:2;display:-webkit-box;overflow:hidden;word-break:break-all}tr.index_cw-row-status-success__r4Gpr{background-color:var(--cw-color-success-container);color:var(--cw-color-on-success-container);button.index_cw-button-icon__4TIPF{--cw-color-icons:var(--cw-color-on-success-container);--cw-color-error:var(--cw-color-on-success-container)}}tr.index_cw-row-status-warn__8ppMM{background-color:var(--cw-color-warn-container);color:var(--cw-color-on-warn-container);button.index_cw-button-icon__4TIPF{--cw-color-icons:var(--cw-color-on-warn-container);--cw-color-error:var(--cw-color-on-warn-container)}}tr.index_cw-row-status-error__4AdHh{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container);button.index_cw-button-icon__4TIPF{--cw-color-icons:var(--cw-color-on-error-container);--cw-color-error:var(--cw-color-on-error-container)}}tr.index_cw-row-status-neutral__2c-zO{background-color:var(--cw-color-surface-container);>td{color:var(--cw-color-on-surface-variant);opacity:.75}button.index_cw-button-icon__4TIPF{--cw-color-icons:var(--cw-color-on-surface-variant);--cw-color-error:var(--cw-color-on-surface-variant)}}[data-label-width="6rem"]{--label-width:6rem}[data-label-width="7rem"]{--label-width:7rem}[data-label-width="8rem"]{--label-width:8rem}[data-label-width="9rem"]{--label-width:9rem}[data-label-width="10rem"]{--label-width:10rem}[data-label-width="12rem"]{--label-width:12rem}[data-label-width="15rem"]{--label-width:15rem}.index_cw-fieldset-columns-150-1fr__P64gy{--label-width:150px}[data-label-align=right] label{text-align:right}.index_cw-fieldset-row__feXw3{align-items:center;display:grid;gap:var(--cw-gap);grid-template-columns:var(--label-width,1fr) 1fr;justify-content:flex-start;&.index_cw-align-vertical-bottom__VPp5T{align-items:flex-end}>.index_cw-grid-column-all__Tk0D0{grid-column:1/3}+.index_cw-message-container__8JfiL{font-size:var(--cw-font-size-small);margin-left:calc(var(--label-width) + 1rem)}>.index_cw-message-container__8JfiL{font-size:var(--cw-font-size-small)}.index_ant-form-item__mHJhi{margin:0}}.index_cw-label-input-column__RuDXA{display:flex;flex-direction:column;gap:.25rem;.index_ant-form-item__mHJhi{margin:0}}[data-gap="0.5"]{--gap:0.5rem}[data-gap="0.25"]{--gap:0.25rem}.index_cw-flex-row__UW-kh{display:flex;flex-direction:row;gap:var(--gap,1rem);&:is(.index_cw-align-left-stretch__eRd6h,.index_cw-align-left-top__RmaPr,.index_cw-align-left-center__2Beg5,.index_cw-align-left-bottom__46cnz){justify-content:flex-start}&:is(.index_cw-align-center-stretch__5Qeyo,.index_cw-align-center-top__7JpyW,.index_cw-align-center-center__0wQN8,.index_cw-align-center-bottom__a5xSP){justify-content:center}&:is(.index_cw-align-right-stretch__YEOnw,.index_cw-align-right-top__umkNj,.index_cw-align-right-center__SkYwr,.index_cw-align-right-bottom__2PzjJ){justify-content:flex-end}&:is(.index_cw-align-stretch-stretch__Du0ix,.index_cw-align-stretch-top__ZhQA8,.index_cw-align-stretch-center__tKVCI,.index_cw-align-stretch-bottom__tQY8G){justify-content:stretch}&:is(.index_cw-align-between-stretch__PQjeF,.index_cw-align-between-top__T5F0b,.index_cw-align-between-center__fffTE,.index_cw-align-between-bottom__VNUOR){justify-content:space-between}&:is(.index_cw-align-stretch-top__ZhQA8,.index_cw-align-left-top__RmaPr,.index_cw-align-center-top__7JpyW,.index_cw-align-right-top__umkNj,.index_cw-align-between-top__T5F0b){align-items:flex-start}&:is(.index_cw-align-stretch-center__tKVCI,.index_cw-align-left-center__2Beg5,.index_cw-align-center-center__0wQN8,.index_cw-align-right-center__SkYwr,.index_cw-align-between-center__fffTE){align-items:center}&:is(.index_cw-align-stretch-bottom__tQY8G,.index_cw-align-left-bottom__46cnz,.index_cw-align-center-bottom__a5xSP,.index_cw-align-right-bottom__2PzjJ,.index_cw-align-between-bottom__VNUOR){align-items:flex-end}&:is(.index_cw-align-stretch-stretch__Du0ix,.index_cw-align-left-stretch__eRd6h,.index_cw-align-center-stretch__5Qeyo,.index_cw-align-right-stretch__YEOnw,.index_cw-align-between-stretch__PQjeF){align-items:stretch}}.index_cw-flex-column__kJh5K{display:flex;flex-direction:column;gap:var(--gap,1rem);&:is(.index_cw-align-left-stretch__eRd6h,.index_cw-align-left-top__RmaPr,.index_cw-align-left-center__2Beg5,.index_cw-align-left-bottom__46cnz,.index_cw-align-left-between__CCazj){align-items:flex-start}&:is(.index_cw-align-center-stretch__5Qeyo,.index_cw-align-center-top__7JpyW,.index_cw-align-center-center__0wQN8,.index_cw-align-center-bottom__a5xSP,.index_cw-align-center-between__1f-Kn){align-items:center}&:is(.index_cw-align-right-stretch__YEOnw,.index_cw-align-right-top__umkNj,.index_cw-align-right-center__SkYwr,.index_cw-align-right-bottom__2PzjJ,.index_cw-align-right-between__6xylo){align-items:flex-end}&:is(.index_cw-align-stretch-stretch__Du0ix,.index_cw-align-stretch-top__ZhQA8,.index_cw-align-stretch-center__tKVCI,.index_cw-align-stretch-bottom__tQY8G,.index_cw-align-stretch-between__0nWQY){align-items:stretch}&:is(.index_cw-align-stretch-top__ZhQA8,.index_cw-align-left-top__RmaPr,.index_cw-align-center-top__7JpyW,.index_cw-align-right-top__umkNj){justify-content:flex-start}&:is(.index_cw-align-stretch-center__tKVCI,.index_cw-align-left-center__2Beg5,.index_cw-align-center-center__0wQN8,.index_cw-align-right-center__SkYwr){justify-content:center}&:is(.index_cw-align-stretch-bottom__tQY8G,.index_cw-align-left-bottom__46cnz,.index_cw-align-center-bottom__a5xSP,.index_cw-align-right-bottom__2PzjJ){justify-content:flex-end}&:is(.index_cw-align-stretch-stretch__Du0ix,.index_cw-align-left-stretch__eRd6h,.index_cw-align-center-stretch__5Qeyo,.index_cw-align-right-stretch__YEOnw){justify-content:stretch}&:is(.index_cw-align-stretch-between__0nWQY,.index_cw-align-left-between__CCazj,.index_cw-align-center-between__1f-Kn,.index_cw-align-right-between__6xylo){justify-content:space-between}}.index_cw-flex-grow__IW0Sy{flex-grow:1}.index_cw-flex-wrap__ECUnq{flex-wrap:wrap}.index_cw-grid-base-2__gBgni{display:grid;gap:var(--gap,1rem);grid-template-columns:1fr 1fr;&.index_cw-columns-2080__FpxEA{grid-template-columns:2fr 8fr}&.index_cw-columns-4060__oDo2m{grid-template-columns:4fr 6fr}&.index_cw-columns-6040__uq2Pd{grid-template-columns:6fr 4fr}&.index_cw-columns-7030__DNjbF{grid-template-columns:7fr 3fr}&.index_cw-columns-8020__h8ijF{grid-template-columns:8fr 2fr}&.index_cw-align-stretch-bottom__tQY8G{align-items:flex-end;justify-content:stretch}&>.index_cw-grid-column-all__Tk0D0{grid-column:1/3}}.index_cw-grid-base-3__8h2c8{display:grid;gap:var(--gap,1rem);grid-template-columns:1fr 1fr 1fr;&>.index_cw-grid-column-all__Tk0D0{grid-column:1/4}}.index_cw-grid-base-4__VP2tc{display:grid;gap:var(--cw-gap);grid-template-columns:repeat(4,1fr);&>.index_cw-grid-column-all__Tk0D0{grid-column:1/5}}.index_cw-grid-base-5__IhzOI{display:grid;gap:var(--gap,1rem);grid-template-columns:repeat(5,1fr);&>.index_cw-grid-column-all__Tk0D0{grid-column:1/6}}.index_cw-grid-base-7__BWRFC{display:grid;gap:var(--gap,1rem);grid-template-columns:repeat(7,1fr);&>.index_cw-grid-column-all__Tk0D0{grid-column:1/8}}.index_cw-grid-base-auto__o72wE{display:grid;gap:var(--gap,1rem);grid-template-columns:repeat(auto-fit,minmax(var(--auto-columns,300px),1fr));&.index_cw-columns-100px__zd-Rr{--auto-columns:100px}&.index_cw-columns-200px__gXMCp{--auto-columns:200px}&.index_cw-columns-300px__oWGnk{--auto-columns:300px}&.index_cw-columns-450px__j86-U{--auto-columns:450px}&.index_cw-columns-600px__mxbCd{--auto-columns:600px}}.index_cw-grid-rows-2__95Rov{display:grid;gap:1rem;grid-auto-flow:column;grid-template-rows:repeat(2,auto)}@media (max-width:768px){.index_cw-grid-rows-2__95Rov{grid-auto-flow:row;grid-template-rows:none}}[class^=cw-grid-base]{&.index_cw-align-stretch-bottom__tQY8G{align-items:flex-end;justify-content:stretch}}.index_cw-grid-column__usW3p{.index_ant-select__AxpSu{display:block}}.index_cw-gap-none__AmpKF{gap:0}.index_cw-gap-tiny__vfLMr{gap:.25rem}.index_cw-gap-small__9pw-f{gap:.5rem}.index_cw-gap-dense__lhc-B{gap:.75rem}.index_cw-gap-medium__ocsKu{gap:1.5rem}.index_cw-gap-large__Ul26g{gap:2rem}.index_cw-gap-huge__TB3uC{gap:3rem}textarea.index_ant-input__tvHpN.index_cw-textarea__w-Yh-{background-color:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);&:focus,&:hover{box-shadow:none;outline:solid 1px var(--cw-color-outline-variant)}&:disabled{filter:saturate(0);opacity:.75}}.index_cw-select__A-m96.index_ant-select__AxpSu{margin-bottom:0;width:100%}.index_cw-select__A-m96.index_ant-select__AxpSu:not(.index_ant-select-customize-input__xsU8q) .index_ant-select-selector__4yqd-{background-color:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);&:focus,&:hover{box-shadow:none;outline:solid 1px var(--cw-color-outline-variant)}&:disabled{filter:saturate(0);opacity:.75}}input.index_ant-input__tvHpN.index_cw-input__DVP2n{background-color:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height-large);&:focus,&:hover{box-shadow:none;outline:solid 1px var(--cw-color-outline-variant)}&:disabled{filter:saturate(0);opacity:.75}}.index_cw-checkbox__RBPmS input[type=checkbox]{margin:0}.index_cw-checkbox__RBPmS.index_ant-checkbox-disabled__D8xYZ .index_ant-checkbox-inner__d1eCO{background-color:inherit;border-color:inherit;filter:saturate(0);opacity:.75}.index_cw-checkbox__RBPmS.index_ant-checkbox-checked__qfric .index_ant-checkbox-inner__d1eCO{background-color:var(--cw-color-primary);border-color:var(--cw-color-primary)}.index_cw-box-success__JHGap{background-color:var(--cw-color-success);color:var(--cw-color-on-success)}.index_cw-box-warn__9K96K{background-color:var(--cw-color-warn);color:var(--cw-color-on-warn)}.index_cw-box-error__M3vJq{background-color:var(--cw-color-error);color:var(--cw-color-on-error)}.index_cw-box-info__KmaRQ{background-color:var(--cw-color-info);color:var(--cw-color-on-info)}.index_cw-box-neutral__utTzn{background-color:#888;color:#fff}.index_cw-container-warn__Th8zl{background-color:var(--cw-color-warn-container);color:var(--cw-color-on-warn-container)}.index_cw-color-success__8O--Z{color:var(--cw-color-success)}.index_cw-color-warning__SbTuQ{color:var(--cw-color-warn)}.index_cw-color-danger__BRFMw,.index_cw-color-error__hEU-M{color:var(--cw-color-error)}.index_cw-color-inverse-error__AkvVb{color:hsl(from var(--cw-color-error) h s 70%)}.index_cw-text-ellipsis__ZfAGW{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.index_cw-icon-text__iMeBD{align-items:center;display:flex;flex-direction:row;gap:.25rem;>strong{font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:600}>.index_cwi-icons__RQGTY{font-size:1.25em}}.index_cw-font-size-small__G-Vdu{font-size:var(--cw-font-size-small);line-height:var(--cw-font-size-regular)}.index_cw-font-size-regular__TthkW{font-size:var(--cw-font-size-regular);line-height:var(--cw-font-size-medium)}.index_cw-font-size-medium__p29y6{font-size:var(--cw-font-size-medium);line-height:var(--cw-font-size-large)}.index_cw-font-size-large__vcRC7{font-size:var(--cw-font-size-display);line-height:var(--cw-font-size-display)}.index_cw-padding-none__sMkuh{--table-cell-padding:0;padding:0}.index_cw-padding-small__-V94j{padding:.5rem}.index_cw-margin-none__G8-NF{margin:0}.index_cw-margin-bottom-1rem__011Fl{margin-bottom:1rem}.index_cw-button-outline__HkqgM,.index_cw-button-solid__lSPz8,.index_cw-button__aWbrc{font-size:var(--cw-font-size-regular);line-height:1.125rem;padding:.5rem .75rem;>strong{font-weight:600;line-height:1.125rem}>span.index_cwi-icons__RQGTY{font-size:1.5em;line-height:1.125rem}&:disabled{cursor:default;filter:saturate(0);opacity:.5;pointer-events:none;user-select:none}}.index_cw-button-solid__lSPz8{&:hover:not(:disabled){background:var(--cw-color-button-hover-background);color:var(--cw-color-button-hover-content)}&[data-color=danger]{--cw-color-button-background:var(--cw-color-error);--cw-color-button-content:var(--cw-color-on-error);--cw-color-button-hover-background:var(--cw-color-inverse-surface);--cw-color-button-hover-content:var(--cw-color-inverse-on-surface)}&[data-color=neutral]{--cw-color-button-background:var(--cw-color-on-surface-variant);--cw-color-button-content:var(--cw-color-inverse-on-surface);--cw-color-button-hover-background:var(--cw-color-inverse-surface);--cw-color-button-hover-content:var(--cw-color-inverse-on-surface)}}.index_cw-button-outline__HkqgM{background:transparent;border:1px solid;color:var(--cw-color-primary-variant);&:hover:not(:disabled){background:transparent;color:var(--cw-color-primary)}&[data-color=danger]{color:var(--cw-color-error);&:hover:not(:disabled){background:transparent;color:var(--cw-color-on-surface-variant)}}&[data-color=neutral]{color:var(--cw-color-on-surface-variant);&:hover:not(:disabled){background:transparent;color:var(--cw-color-on-surface)}}}.index_cw-button-icon__4TIPF{align-items:center;background-color:transparent;color:var(--cw-color-icons);display:inline-flex;font-family:var(--cw-font-icons);font-size:1.5rem;height:2rem;justify-content:center;padding:.5rem;width:2rem;&:hover:not(:disabled){background-color:transparent;color:var(--cw-color-icons-variant)}&:active,&[data-active=true]{background-color:var(--cw-color-primary-container);color:var(--cw-color-on-primary-container)}&[data-color=danger]{color:var(--cw-color-error);&:hover:not(:disabled){color:var(--cw-color-on-surface-variant)}&:active{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container)}}&[data-color=neutral]{color:var(--cw-color-on-surface-variant);&:hover:not(:disabled){color:var(--cw-color-primary-variant)}&:active{background-color:var(--cw-color-surface-container-high);color:var(--cw-color-on-surface)}}}.index_cw-button-icon__4TIPF.index_cwi-cancel__Sbqap,.index_cw-button-icon__4TIPF.index_cwi-delete__V8Ddf{color:var(--cw-color-error);&:hover:not(:disabled){color:var(--cw-color-on-surface-variant)}&:active{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container)}}.index_cw-button-icon__4TIPF.index_cwi-delete__V8Ddf:before{color:inherit;content:"\ea26";font-family:var(--cw-font-icons)}.index_cw-button-icon__4TIPF.index_cwi-cancel__Sbqap:before{color:inherit;content:"\ea34";font-family:var(--cw-font-icons)}.index_cw-search-input__zmCnJ{position:relative}.index_cw-search-input-wrapper__PLCYe{align-items:center;display:flex;flex-grow:1;position:relative}.index_cw-search-input-wrapper__PLCYe:has(.index_cw-search-input-icons__QXUEI) input{padding-right:1.5rem}.index_cw-search-input__zmCnJ input{flex-grow:1;overflow:hidden}.index_cw-search-input__zmCnJ .index_cw-search-input-loading__fQAF6{color:var(--cw-color-on-surface-variant);font-size:1rem;position:absolute;right:2rem;top:.25rem}.index_cw-search-input-icons__QXUEI{align-items:center;color:var(--neutral-060,#889);display:flex;gap:.5rem;pointer-events:none;position:absolute;right:.5rem}.index_cw-search-input-icons__QXUEI .index_cw-button-icon__4TIPF{border-radius:1rem;font-size:var(--cw-font-size-regular);height:1rem;padding:.25rem;pointer-events:auto;width:1rem}.index_cw-search-input-icons__QXUEI .index_cw-button-icon__4TIPF:hover{background:var(--cw-color-surface-container-highest)}.index_cw-input-search-dropdown__WPRoO{background:var(--cw-color-surface-container-low);border:none;border-radius:.375rem;box-shadow:0 4px 8px -2px var(--cw-color-scrim);font-size:var(--cw-font-size-regular);left:0;max-height:12rem;min-width:6rem;outline:solid 1px var(--cw-color-surface-container);overflow-y:auto;padding:.25rem;position:absolute;right:0;scrollbar-width:thin;top:calc(100% + 2px);transition:all .2s ease-in-out;z-index:10}.index_cw-search-input__zmCnJ[data-direction=row]:has(label) .index_cw-input-search-dropdown__WPRoO{margin-left:calc(var(--label-width, 10rem))}.index_cw-input-search-dropdown__WPRoO>ul{height:fit-content;line-height:1.5em;list-style:none;margin:0;min-width:5rem;outline:none;width:100%}.index_cw-input-search-dropdown__WPRoO>ul>li{border-radius:.25rem;color:var(--cw-color-on-surface-variant);cursor:pointer;list-style:none;min-width:100%;outline:none;padding:.25rem;transition:all .2s ease-in-out}.index_cw-input-search-dropdown__WPRoO>ul>li:hover{background:var(--cw-color-surface-container-high);color:var(--cw-color-on-surface)}.index_cw_checkboxContent__N4y47,.index_cwellt_checkboxContent__7YsaZ{align-items:center;display:flex;gap:.5rem;.index_cwellt_label_text__DDdzH,>.index_cw_label_text__ATwvO{&.index_cw_label_disabled__-GFMT{pointer-events:none;user-select:none}&:empty{display:none}}}input.index_cwellt_checkbox__ZlzZA{accent-color:var(--cw-color-primary);height:var(--cw-font-size-medium);margin:0;width:var(--cw-font-size-medium);&:disabled{cursor:not-allowed;filter:saturate(0);opacity:.75}&:not(:last-of-type){margin-right:1.5rem}}nav.index_cw-dropdown-menu__HlMoe{background-color:var(--cw-color-surface-container-low);border-radius:.5rem;box-shadow:0 10px 30px rgba(0,0,0,.08),0 3px 8px rgba(0,0,0,.12);padding:.75rem;position:absolute;right:0;width:12rem;z-index:1000}nav.index_cw-dropdown-menu__HlMoe>ul{display:flex;flex-direction:column;list-style-type:none;margin:0;width:100%}nav.index_cw-dropdown-menu__HlMoe>ul>li{border-radius:.25rem;color:var(--cw-color-on-surface-variant);font-size:.875rem;padding:.25rem;position:relative;&:not(:has(hr)):hover{background-color:var(--cw-color-surface-container-high)}hr{border-bottom:none;border-top:1px solid var(--cw-color-outline-variant);margin:.5rem}&:has(>.index_dropdown-input__wHIvU){padding:.125rem .25rem}}.index_dropdown-nested__jDFdz{position:absolute;right:calc(100% + .95rem);top:-1rem}.index_cw-input-text__-TMFd.index_dropdown-input__wHIvU .index_cw-align__EhGC-{align-items:center;flex-direction:row;justify-content:space-between;.index_cw-label__gzPzz{flex-grow:1;label{font-weight:400}}input{background-color:var(--cw-color-surface-container);flex-grow:0;padding:.125rem;text-align:right;width:3rem}}.index_dropdown-input__wHIvU input{background-color:var(--cw-color-surface-container);max-width:9rem;padding:.125rem}.index_cw-toggle__JzEeL.index_dropdown-toggle__LVnhu{display:block;min-height:auto;width:100%;label{color:currentColor;font-weight:400;justify-content:space-between}label,span.index_cw-icon-text__iMeBD{flex-grow:1}input[type=checkbox]{--toggle-color:currentColor;transform:scale(.75);&:not(:checked){opacity:0;transition:.5s}}&:hover input[type=checkbox]:not(:checked){opacity:1}}div.index_cw-select__A-m96{margin-bottom:0}div.index_cw-select__A-m96[data-direction=row]{align-items:center;gap:1rem}div.index_cw-select__A-m96 select{height:var(--cw-size-medium);width:100%}div.index_cw-select__A-m96 select:focus,div.index_cw-select__A-m96 select:hover{outline-width:1px}.index_cw-toggle__JzEeL{--toggle-color:var(--cw-color-primary-variant);align-items:center;display:flex;width:max-content}.index_cw-toggle__JzEeL input[type=checkbox]{appearance:none;border-radius:1rem;display:flex;height:1.2rem;justify-content:flex-start;padding:.2rem;position:relative;transition:all .5s ease-in-out;width:2.4rem}.index_cw-toggle__JzEeL input[type=checkbox]:before{border-radius:1rem;content:"";display:inline-flex;height:.8rem;left:.2rem;position:absolute;transition:all .5s;width:.8rem}.index_cw-toggle__JzEeL input[type=checkbox]:checked:before{left:1.4rem}.index_cw-toggle__JzEeL input[type=checkbox]:disabled{opacity:.35;pointer-events:none}.index_cw-toggle__JzEeL input[type=checkbox]:focus{outline:2px solid var(--cw-color-outline-variant)}.index_cw-toggle__JzEeL label{align-items:center;cursor:pointer;display:flex;width:auto;.index_cw-icon-text__iMeBD{padding-right:1rem;width:var(--label-width,10rem)}&[data-direction=column]{flex-direction:column}}.index_cw-toggle__JzEeL input[type=checkbox]:not(:checked){background-color:transparent;border:1px solid var(--toggle-color);&:before{background-color:var(--toggle-color)}}.index_cw-toggle__JzEeL input[type=checkbox]:checked{background-color:var(--toggle-color);&:before{background-color:var(--cw-color-on-primary-variant)}}.index_cw-toggle__JzEeL input[type=checkbox]:disabled:checked{background-color:var(--cw-color-on-surface-variant);&:before{background-color:var(--cw-color-inverse-on-surface)}}input.index_cw_input__7X1Ai{background:var(--cw-color-surface-container-low);color:var(--cw-color-on-surface-variant);outline:1px solid transparent;&:is(:hover,:focus,:active):not(:disabled){outline-color:var(--cw-color-outline-variant)}&:disabled{filter:saturate(0);opacity:.75;pointer-events:none;user-select:none}&:required{~label:after{color:var(--cw-color-error);content:"*";padding-left:5px}}&:invalid:focus{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container);outline-color:var(--cw-color-error)}}.index_cw-input-container__P7F0L:is([class^=ant-input]){border:none;box-shadow:none}.index_cw-input-container__P7F0L .index_ant-input-number-handler-wrap__YH5vG{display:none}.index_cw-input-container__P7F0L input:is([class^=ant-input]){background:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);font-size:var(--cw-font-size-regular);height:auto;line-height:var(--cw-font-line-height-min);outline:1px solid transparent;padding:var(--cw-spacing-small)!important;&:focus{border:none}&:focus,&:hover{outline:solid 1px var(--cw-color-outline-variant)}}label.index_cw_label_text_disabled__Mt-As{user-select:none}.index_cw_inputContent__3sRzg{align-items:center;display:inline-flex;gap:.5rem;justify-content:flex-start;margin-left:1em}button.index_cw_button_clear__uVufs{cursor:pointer;height:2em;margin-left:-3em;right:0;width:2em}button.index_cw_button_clear__uVufs,button.index_cw_button_clear__uVufs:active,button.index_cw_button_clear__uVufs:focus{background:transparent;border:0 solid transparent;outline:none}button.index_cw_button_clear__uVufs:before{clear:both;color:var(--cw-color-on-surface);content:"\ea33";font-family:var(--cw-font-icons);font-size:1.5em;font-weight:400}div.index_cw-input-date-text__3FJEQ{--size:25px}div.index_cw-input-date-text__3FJEQ input[type=text]{background:var(--cw-color-surface-container-low);border:none;border-radius:5px;color:var(--cw-color-on-surface);font-family:var(--cw-font-family);font-size:11pt;justify-content:center;padding:5px 10px;width:100%}div.index_cw-input-date-text__3FJEQ>div>div{position:relative}div.index_cw-input-date-text__3FJEQ>div>div>span{align-items:center;color:var(--cw-color-icons-variant);display:inline-flex;font-size:1.05rem;height:100%;justify-content:center;position:absolute;right:0;width:2rem}div.index_cw-input-date-text__3FJEQ>div>div>span>span.index_cwi-icons__RQGTY{font-size:1em}div.index_cw-input-date-text__3FJEQ input[type=date]::-webkit-calendar-picker-indicator{cursor:pointer;height:100%;left:0;position:absolute;top:0;width:100%}div.index_cw-input-date-text__3FJEQ input[type=date]{height:var(--size);left:0;opacity:0;position:relative;position:absolute;top:0;width:var(--size)}div.index_cw-input-date-text__3FJEQ input[type=date]::selection{background:transparent;color:transparent}div.index_cw-input-date-text__3FJEQ input[type=text]:focus,div.index_cw-input-date-text__3FJEQ input[type=text]:hover{outline-width:1px}div.index_cw-input-date-text__3FJEQ input[type=text]:invalid{outline-color:var(--cw-color-error)}div.index_cw-input-date-text__3FJEQ input[type=text]:disabled{cursor:not-allowed;opacity:.5}div.index_cw-input-date__O9Vge input{background-color:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);color:var(--cw-color-on-surface);font-family:var(--cw-font-family);font-size:var(--cw-font-size-regular);justify-content:center;padding:5px 10px}div.index_cw-input-date__O9Vge input:focus,div.index_cw-input-date__O9Vge input:hover{outline:solid 1px var(--cw-color-outline-variant)}div.index_cw-input-date__O9Vge input:invalid{outline:var(--cw-color-error) solid 1px}div.index_cw-input-date__O9Vge input:disabled{cursor:not-allowed;opacity:.5}input[type=time]::-webkit-calendar-picker-indicator{opacity:.5}.index_row__rUaLb{margin-bottom:10px}.index_error__Szh5w{color:var(--cw-color-error)}div.index_cw-image-area__kRaT6{overflow:hidden}div.index_cw-image-area__kRaT6 section{background-color:#fff2;border-radius:2px;box-shadow:0 0 0 20rem #0002;outline:2px dashed var(--cw-color-outline-variant)}div.index_cw-image-area__kRaT6 img{border:1px solid var(--cw-color-outline-variant);border-radius:5px;cursor:crosshair;object-fit:contain}div.index_cw-image-area__kRaT6 img:focus,div.index_cw-image-area__kRaT6 img:hover{outline-width:2px}cw-input-image{display:block}label.index_cw_label_text_disabled__Mt-As{cursor:not-allowed;opacity:.5;pointer-events:none}.index_cw_input_numberContent__6TMnc{align-items:center;display:inline-flex;gap:.5rem;justify-content:flex-start;margin-left:1em}span.index_cw-label__gzPzz+.index_cw_input_numberContent__6TMnc{gap:0;margin:0}div.index_cw-input-phone__Oo-U5 input:focus,div.index_cw-input-phone__Oo-U5 input:hover{outline-width:1px}div.index_cw-input-phone__Oo-U5 div[itemprop=required]:after{color:var(--cw-color-error);content:"*";padding-left:5px}div.index_cw-input-phone__Oo-U5 input:invalid{outline:1px solid var(--cw-color-error)}div.index_cw-input-phone__Oo-U5 input:disabled{cursor:not-allowed;opacity:.5}div.index_cw-text-area__gMxN7 textarea{flex-grow:1;min-height:calc(var(--cw-size-large)*2)}div.index_cw-text-area__gMxN7 textarea:focus,div.index_cw-text-area__gMxN7 textarea:hover{outline-color:var(--cw-color-outline-variant)}div.index_cw-text-area__gMxN7 textarea:disabled{cursor:not-allowed;opacity:.75}div.index_cw-text-area__gMxN7 div[itemprop=required]:after{color:var(--cw-color-error);content:"*";padding-left:5px}div.index_cw-text-area__gMxN7 input:invalid:focus{outline-color:var(--cw-color-error)}div.index_cw-input-text__-TMFd{.index_cw-input-button__VFFtQ,input{flex:1}.index_cw-input-button__VFFtQ{display:flex;gap:.75rem}}.index_cw-table-container__BPz0F{--table-font-size:var(--cw-font-size-regular);--table-cell-padding:var(--cw-spacing-small);--table-outline:var(--cw-color-surface-container-high);--table-radius:1rem;border-radius:1rem;margin-bottom:1rem;width:100%;>div{overflow-x:auto}}table.index_cw-table__8l-Pk{background-color:var(--cw-color-surface-container-lowest);border-radius:1rem;font-size:var(--table-font-size);line-height:125%}table.index_cw-table__8l-Pk>thead th{background-color:var(--cw-color-surface-container);border:none;border-bottom:1px solid var(--cw-color-surface-container-lowest);color:var(--cw-color-on-surface-variant);font-stretch:var(--cw-font-stretch-condensed);font-weight:var(--cw-font-weight-semibold);padding:var(--table-cell-padding);position:relative;text-align:left;width:var(--column-width,fit-content);.index_th-column-resizer__CcLS2{background-color:var(--cw-color-surface-container-lowest);bottom:0;cursor:col-resize;height:80%;position:absolute;right:0;top:10%;width:1px;z-index:1}&:first-child{border-top-left-radius:var(--table-radius);padding-left:calc(var(--table-cell-padding)*1.5)}&:last-child{border-top-right-radius:var(--table-radius);padding-right:calc(var(--table-cell-padding)*1.5);.index_th-column-resizer__CcLS2{display:none}}}table.index_cw-table__8l-Pk>tbody>tr{&.index_cw-row-status-disabled__i3164{background-color:var(--cw-color-surface-container);pointer-events:none;>td{color:var(--cw-color-on-surface-variant);opacity:.75}button.index_cw-button-icon__4TIPF{--cw-color-icons:var(--cw-color-on-surface-variant);--cw-color-error:var(--cw-color-on-surface-variant)}}}table.index_cw-table__8l-Pk>tbody>tr>td{border-bottom:1px solid var(--table-outline);color:var(--cw-color-on-surface);padding:var(--table-cell-padding);transition:all .2s ease-in-out;vertical-align:middle;width:var(--column-width,fit-content);&.index_cw-table-cell-empty__JId5j{opacity:.5;padding:1rem}input,span.index_ant-select-selection-item__TSX65{font-size:var(--table-font-size)}}table.index_cw-table__8l-Pk tr:not(.index_cw-table-row-expanded__EoVJk):has(>td:hover){background-color:var(--cw-color-surface-container-low);div.index_ant-select-selector__4yqd-,input:not([type=checkbox]){outline:solid 1px var(--cw-color-surface-container-highest)}}table.index_cw-table__8l-Pk tr:has(+tr.index_cw-table-row-expanded__EoVJk){background-color:var(--cw-color-surface-container)}table.index_cw-table__8l-Pk tr.index_cw-table-row-expanded__EoVJk>td{padding:1rem;padding:calc(var(--table-cell-padding)*2)}.index_cw-table-pagination__rimkw{align-items:center;background:var(--cw-color-surface-container);border-radius:0 0 1rem 1rem;color:var(--cw-color-on-surface-variant);display:flex;font-size:calc(var(--table-font-size)*.875);gap:1rem;justify-content:center;margin:0;padding:.5rem;input{font-size:var(--table-font-size);margin-right:.25rem;max-width:5ch;padding:.25rem .5rem;text-align:center}input+span{line-height:1rem}select{font-size:var(--table-font-size);margin-bottom:0;margin-left:.5rem}}.index_cw-table-container__BPz0F:has(table.index_cw-table-bordered__zLWa4){border:1px solid var(--table-outline)}table.index_cw-table-bordered__zLWa4 td:not(:last-child){border-right:1px solid var(--table-outline)}table.index_cw-table-bordered__zLWa4 tbody tr:last-child td{border-bottom:none}.index_cw-table-container__BPz0F:has(>div>table.index_cw-font-size-small__G-Vdu){--table-font-size:var(--cw-font-size-small);--table-cell-padding:0.375rem;--table-radius:0.5rem}.index_cw-table-scroll__hhtBP{max-height:var(--table-height,20rem);overflow:auto;padding:0;scrollbar-width:thin;thead{position:sticky;top:0}}.index_cw-table-container__BPz0F:has(table.index_table-width-thin__CPSrY) footer.index_cw-table-pagination__rimkw{gap:.25rem}.index_cw-icon-svg__w0FQx{fill:currentColor;display:inline-block;height:1em;vertical-align:-.125em;width:1em}@container main (width < 1600px){table.index_cw-table__8l-Pk .index_hide-xl__rIekz{display:none}}@container main (width < 1200px){table.index_cw-table__8l-Pk .index_hide-lg__ZJojj{display:none}}@container main (width < 900px){table.index_cw-table__8l-Pk .index_hide-md__8eNH2{display:none}}@container main (width < 600px){table.index_cw-table__8l-Pk .index_hide-sm__YypJL{display:none}}.index_cw-heading__2CMgJ :is(h2,h3){color:var(--cw-color-on-surface-variant);font-weight:600}.index_cw-heading__2CMgJ h2{font-size:var(--cw-font-size-display)}.index_cw-heading__2CMgJ h3{font-size:var(--cw-font-size-heading)}label.index_cw-label__gzPzz{color:var(--cw-color-on-surface);flex-shrink:0}[data-required=true]>label:after,[itemprop=required]>label:after,label:has(+[itemprop=required]):after{color:var(--cw-color-error);content:"*";padding-left:.25rem}.index_cw-message-wrapper__WxhyF{--message-position:calc(var(--navbar-size, 4rem) + 1rem);align-items:center;display:flex;flex-direction:column;pointer-events:none;position:fixed;top:var(--message-position);width:100%;z-index:1010}.index_cw-message-wrapper__WxhyF .index_cw-message__hpNsp{box-shadow:0 12px 28px 0 rgba(0,0,0,.2),0 2px 4px 0 rgba(0,0,0,.1),inset 0 0 0 1px hsla(0,0%,100%,.05);margin-bottom:.5rem}@media screen and (width > 600px){.index_cw-message-wrapper__WxhyF{align-items:flex-end;right:1rem}}.index_cw-message__hpNsp{--message-background:var(--cw-color-primary-container);--message-accent:var(--cw-color-on-primary-container);align-items:center;background:var(--message-background);border-radius:.5rem;color:var(--message-accent);display:flex;font-size:.875rem;gap:.5rem;max-width:30rem;padding:.5rem 1rem .5rem .75rem;width:fit-content}.index_cw-message__hpNsp[data-message-type=ERROR]{--message-background:var(--cw-color-error-container);--message-accent:var(--cw-color-on-error-container)}.index_cw-message__hpNsp[data-message-type=WARN]{--message-background:var(--cw-color-warn-container);--message-accent:var(--cw-color-on-warn-container)}.index_cw-message__hpNsp[data-message-type=INFO]{--message-background:var(--cw-color-info-container);--message-accent:var(--cw-color-oninfo-container)}.index_cw-message__hpNsp[data-message-type=SUCCESS]{--message-background:var(--cw-color-success-container);--message-accent:var(--cw-color-on-success-container)}.index_cw-tooltip__RoWHp{position:relative}.index_cw-tooltip__RoWHp .index_cw-tooltip-title__CEgdQ{background-color:var(--cw-color-inverse-surface);border-radius:.25em;box-shadow:0 .25em .25em var(--cw-color-shadow);color:var(--cw-color-on-inverse-surface)!important;font-size:13px;font-weight:400;left:50%;line-height:1.5em;min-width:10em;opacity:0;padding:.5em;position:absolute;top:-50%;transition:all .2s ease;visibility:hidden;white-space:pre-line;width:auto;z-index:1200}.index_cw-tooltip__RoWHp:hover .index_cw-tooltip-title__CEgdQ{opacity:1;visibility:visible}.index_cw-expandable__aG4z7{--cw-expandable-padding:0.5rem;--cw-expandable-radius:0.4rem;margin-bottom:1px;&>details{background-color:var(--cw-color-surface-container-low);&>summary{border-radius:var(--cw-expandable-radius);cursor:pointer;list-style-type:none;padding:var(--cw-expandable-padding);&:before{content:"\f054";display:inline-block;font-family:FontAwesome;width:24px}}}&>details[open]{border-radius:var(--cw-expandable-radius);&>summary{border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:var(--cw-expandable-radius);border-top-right-radius:var(--cw-expandable-radius);&:before{content:"\f078";font-family:FontAwesome;width:24px}}&>section{background-color:var(--cw-color-surface-container-lowest);border-bottom-left-radius:var(--cw-expandable-radius);border-bottom-right-radius:var(--cw-expandable-radius);box-shadow:inset 0 5px 15px -10px var(--cw-color-shadow);padding:var(--cw-expandable-padding)}}}.index_cw-modal-hover__eZi4H>dialog{background-color:var(--cw-color-surface-container-lowest);border:none;border-radius:8px;box-shadow:0 1px 5px 0 var(--cw-color-shadow);min-width:600px;padding:.75rem;position:absolute;transform:translate(-90%)}.index_cw-modal-hover__eZi4H>dialog[open=false],.index_cw-modal-hover__eZi4H>dialog[open=true]{transition:opacity .2s ease-in-out}.index_cw-modal-hover__eZi4H>div[data-hovereable-icon]{display:inline-block}div.index_cw-modal-hover__eZi4H{display:inline-block;position:relative}.index_cw-modal__ftsrU .index_cw-modal-overlay__Aqoe8{align-items:center;display:flex;height:100vh;justify-content:center;left:0;position:fixed;top:0;width:100vw;z-index:1000}.index_cw-modal__ftsrU .index_cw-modal-overlay-bg__dRUKi{background:rgba(51,38,38,.5);height:100vh;left:0;position:fixed;top:0;width:100vw}.index_cw-modal__ftsrU .index_cw-container-modal__eXSm3{background:#fff;border-radius:1em;-moz-box-shadow:0 0 .5em rgba(0,0,0,.2);box-shadow:0 0 .5em rgba(0,0,0,.2);display:flex;flex-direction:column;justify-content:space-between;margin:auto;max-width:calc(100vw - 2em);position:relative}.index_cw-modal__ftsrU .index_cw-modal-header__NbpeH{align-items:center;border-bottom:1px solid #f0efef;cursor:move;display:flex;height:3em;justify-content:space-between;width:100%}.index_cw-modal__ftsrU .index_cw-modal-title__FfVyW{color:#000;cursor:move;font-family:var(--cw-font-family);font-size:1em;font-style:normal;font-weight:700;letter-spacing:-.45px;line-height:19px;margin-left:1.125em;min-height:1.1875em}.index_cw-modal__ftsrU .index_cw-btn-close-modal__g7d4l{background:transparent;border:0 solid transparent;cursor:pointer;height:2em;margin-right:1.125em;outline:none;padding:0;width:2em}.index_cw-modal__ftsrU .index_cw-close-icon__YHj7h:before{clear:both;color:var(--cw-color-on-surface);content:"\ea14";font-family:var(--cw-font-icons);font-size:1.75em;font-weight:700}.index_cw-modal__ftsrU .index_cw-modal-body__2FUYZ{align-items:center;display:flex;justify-content:center}.index_cw-modal__ftsrU .index_cw-container-modal-body__c-0Dt{height:100%;margin:1.125em;width:100%}.index_cw-modal__ftsrU .index_cw-modal-body-scroll__jpxiT{height:39.719375em;overflow:hidden auto;padding-right:.5em;width:100%}.index_cw-modal__ftsrU .index_cw-modal-body-scroll__jpxiT::-webkit-scrollbar{width:6px}.index_cw-modal__ftsrU .index_cw-modal-body-scroll__jpxiT::-webkit-scrollbar-track{background:#f0efef;-moz-border-radius:4px;border-radius:4px}.index_cw-modal__ftsrU .index_cw-modal-body-scroll__jpxiT::-webkit-scrollbar-thumb{background:rgba(0,0,0,.5);-moz-border-radius:4px;border-radius:4px}.index_cw-modal__ftsrU .index_cw-modal-confirm-desc__CqX62{color:#000;font-size:1em;font-weight:400!important}.index_cw-modal__ftsrU .index_cw-modal-footer__9PbeZ{align-items:center;border-top:1px solid #f0efef;cursor:move;display:flex;height:3em;justify-content:flex-end;width:100%}.index_cw-modal__ftsrU .index_cw-modal-footer-cont-button__dTQ9D{align-items:center;display:flex;justify-content:center;width:2em}.index_cw-modal__ftsrU .index_cw-modal-footer__9PbeZ div:last-child{margin-right:1.125em}.index_cw-modal__ftsrU .index_cw-btn-modal-footer__h2c0L{background:transparent;-moz-border-radius:6px;border-radius:6px;cursor:pointer;height:31px;margin-right:1.125em;outline:none;padding-left:1em;padding-right:1em}.index_cw-modal__ftsrU .index_cw-btn-modal-save__kiNU2{background:#368ee0;color:#fff}.index_cw-modal__ftsrU .index_cw-btn-modal-cancel__FxHs3{background:#d11;color:#fff}#index_resizableModal__RFhSs{background:#9c9c9c;border-radius:2em;box-shadow:0 0 .25em rgba(0,0,0,.2);cursor:pointer;height:1em;position:absolute;right:-46px;top:31px;width:4em}.index_videoWrapper__243AM{height:0;padding-bottom:56.25%;padding-top:25px;position:relative}.index_videoWrapper__243AM iframe{height:100%;left:0;position:absolute;top:0;width:100%}div.index_cw-table-grouped__79Fe5{border-radius:.25rem;color:var(--cw-color-on-surface);font-size:var(--cw-font-size-regular);max-height:80vh;overflow-y:auto;scrollbar-width:thin;width:100%;table{border-collapse:collapse}td,th{padding:.5rem}th{font-weight:500;text-align:left}tr[data-group]+tr[data-row]{box-shadow:inset 0 4px 8px -5px var(--cw-color-shadow)}tr[data-expanded]{background-color:var(--cw-color-surface-container);cursor:pointer}tr[data-expanded]>td:before{content:" ";display:inline-block;font-family:FontAwesome;text-align:center;width:24px}tr[data-expanded=true]>td:before{content:" "}tr[data-row]{background-color:var(--cw-color-surface-container-low)}}@font-face{font-family:NewCwIcons;src:url(content/icons/new-cw-icons/fonts/NewCwIcons.woff) format("woff")}.index_cwi-icons__RQGTY,[class^=cwi-]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:NewCwIcons;font-style:normal;font-weight:400;line-height:100%}:where(.index_cwi-icons__RQGTY,[class^=cwi-]){font-size:1em}:is(.index_cwi-icons__RQGTY,[class^=cwi-]):before{font-family:NewCwIcons}.index_cwi-alert__U5C4n:before{content:"\ea01"}.index_cwi-chevron-down-small__hRBlv:before{content:"\ea02"}.index_cwi-chevron-right__9pECE:before{content:"\ea03"}.index_cwi-chevron-down__JsBky:before{content:"\ea04"}.index_cwi-chevron-right-double__Xoqcy:before{content:"\ea05"}.index_cwi-add-users__Fw0ce:before{content:"\ea06"}.index_cwi-chevron-left__VUS-q:before{content:"\ea07"}.index_cwi-windows__Nt8xG:before{content:"\ea08"}.index_cwi-warning__7KLe7:before{content:"\ea09"}.index_cwi-search__zfP0b:before{content:"\ea0a"}.index_cwi-folder-square__DRHwY:before{content:"\ea0b"}.index_cwi-download__bRVbe:before{content:"\ea0c"}.index_cwi-inbox__dBOyO:before{content:"\ea0d"}.index_cwi-pin__vQFVC:before{content:"\ea0e"}.index_cwi-chevron-up-small__J27lb:before{content:"\ea0f"}.index_cwi-ticket-requested__l5Ces:before{content:"\ea10"}.index_cwi-check-small__XeiY6:before{content:"\ea11"}.index_cwi-refresh__axr0-:before{content:"\ea12"}.index_cwi-airplane-mode__Mb4Md:before{content:"\ea13"}.index_cwi-close__r14pE:before{content:"\ea14"}.index_cwi-users__VLpPl:before{content:"\ea15"}.index_cwi-info-bubble__tzuMz:before{content:"\ea16"}.index_cwi-flight-new__oaCx-:before,.index_cwi-new-flight__Ar45r:before{content:"\ea17"}.index_cwi-timezone-globe__0QW4D:before{content:"\ea18"}.index_cwi-menu__w44-h:before{content:"\ea19"}.index_cwi-save__AUJVg:before{content:"\ea1a"}.index_cwi-calendar__hYI7d:before{content:"\ea1b"}.index_cwi-alarm__zYnMz:before{content:"\ea1c"}.index_cwi-question__bgL5g:before{content:"\ea1d"}.index_cwi-chevron-up__z8VbS:before{content:"\ea1e"}.index_cwi-share__6VEK6:before{content:"\ea1f"}.index_cwi-star__Q7pTt:before{content:"\ea20"}.index_cwi-check-big__Vl3a4:before{content:"\ea21"}.index_cwi-eye-hide__0oi0X:before{content:"\ea22"}.index_cwi-comment__tqOUQ:before{content:"\ea23"}.index_cwi-around-the-globe__1CMfk:before{content:"\ea24"}.index_cwi-envelope__1dnCP:before{content:"\ea25"}.index_cwi-delete__V8Ddf:before{content:"\ea26"}.index_cwi-options__OK8yu:before{content:"\ea27"}.index_cwi-login__LZbxZ:before{content:"\ea28"}.index_cwi-plus__1Gnd7:before{content:"\ea29"}.index_cwi-ticket-delete__bJlHI:before{content:"\ea2a"}.index_cwi-logout__NWEP9:before{content:"\ea2b"}.index_cwi-page__u-Z3b:before{content:"\ea2c"}.index_cwi-document__FyYVR:before{content:"\ea2d"}.index_cwi-chevron-left-double__-3kBo:before{content:"\ea2e"}.index_cwi-list__Fw2sK:before{content:"\ea2f"}.index_cwi-eye-show__-aU6u:before{content:"\ea30"}.index_cwi-print__mrBzJ:before{content:"\ea31"}.index_cwi-edit__m61A3:before{content:"\ea32"}.index_cwi-close-circle__xMA5N:before{content:"\ea33"}.index_cwi-cancel__Sbqap:before{content:"\ea34"}.index_cwi-clock__-Lkb-:before{content:"\ea35"}.index_cwi-emergency__90gK4:before{content:"\ea36"}.index_cwi-folder-open__njzau:before{content:"\ea37"}.index_cwi-calculator__WMXWj:before{content:"\ea38"}.index_cwi-cloud__pTO93:before{content:"\ea39"}.index_cwi-crop__QSJqt:before{content:"\ea3a"}.index_cwi-file-view__Nx9Hj:before{content:"\ea3b"}.index_cwi-user__-f2ee:before{content:"\ea3c"}.index_cwi-bus__4SEN5:before{content:"\ea3d"}.index_cwi-ticket__77dvt:before{content:"\ea3e"}.index_cwi-plane-ladder__VdCoA:before{content:"\ea3f"}.index_cwi-traveler__XeV7I:before{content:"\ea40"}.index_cwi-journey__lceAy:before{content:"\ea41"}.index_cwi-airport__HezKv:before{content:"\ea42"}.index_cwi-flight-search__dHwGf:before,.index_cwi-search-flight__Blo3e:before{content:"\ea43"}.index_cwi-generate-report__YbQaR:before{content:"\ea44"}.index_cwi-journey-add__lZj-9:before{content:"\ea45"}.index_cwi-passport__XJd2D:before{content:"\ea46"}.index_cwi-departure__uvOvj:before{content:"\ea47"}.index_cwi-landing__DXtMd:before{content:"\ea48"}.index_cwi-flight__1RTqj:before{content:"\ea49"}.index_cwi-house-black__dyzAZ:before{content:"\ea4a"}.index_cwi-reset__rOI7L:before{content:"\ea4b"}.index_cwi-upload__aGQmx:before{content:"\ea4c"}.index_cwi-thumbs-up__GyYHb:before{content:"\ea4d"}.index_cwi-hand-ok__-MDqG:before{content:"\ea4e"}.index_cwi-remarks__KH-k9:before{content:"\ea4f"}.index_cwi-departure-delayed__Z5F79:before{content:"\ea50"}.index_cwi-flight-aog__x-MVu:before{content:"\ea51"}.index_cwi-flight-delayed__jYrOF:before{content:"\ea52"}.index_cwi-flight-cancelled__r-02P:before{content:"\ea53"}.index_cwi-wrench__ZsJx5:before{content:"\ea54"}.index_cwi-waiting__u0a5l:before{content:"\ea55"}.index_cwi-favorite-files__Z3YoM:before{content:"\ea56"}.index_cwi-archive__5eIDV:before{content:"\ea57"}.index_cwi-archive-restore__l0z9g:before{content:"\ea58"}.index_cwi-directory__Wa0O6:before{content:"\ea59"}.index_cwi-lock-solid__2Z9nR:before{content:"\ea5a"}.index_cwi-plane-movement__K8fhv:before{content:"\ea5b"}.index_cwi-folder-add__QJqQ0:before{content:"\ea5c"}.index_cwi-folder-edit__7H1R3:before{content:"\ea5d"}.index_cwi-folder-download__5-MtV:before{content:"\ea5e"}.index_cwi-plane-delay__ED5Oa:before{content:"\ea5f"}.index_cwi-folder-closed__YIVpZ:before{content:"\ea60"}.index_cwi-folder-user__Qz-fq:before{content:"\ea61"}.index_cwi-folder-selected__v9qg1:before{content:"\ea62"}.index_cwi-paper-plane__czM4W:before{content:"\ea63"}.index_cwi-file-accepted__0sv4-:before{content:"\ea64"}.index_cwi-arrow-left-circle__uLHcH:before{content:"\ea65"}.index_cwi-arrow-left__4ef-p:before{content:"\ea66"}.index_cwi-envelope-sent__DhYhA:before{content:"\ea67"}.index_cwi-undo__dqnAn:before{content:"\ea68"}.index_cwi-file-report__L-bEP:before{content:"\ea69"}.index_cwi-fuel__QpqR9:before{content:"\ea6a"}.index_cwi-location__lfqdf:before{content:"\ea6b"}.index_cwi-copy__Yo40i:before{content:"\ea6c"}.index_cwi-check-circle__ILYCl:before{content:"\ea6d"}.index_cwi-important__6nhAN:before{content:"\ea6e"}.index_cwi-plane-solid__ub2tg:before{content:"\ea6f"}.index_cwi-birthday__ylzip:before{content:"\ea70"}.index_cwi-link__YwbWs:before{content:"\ea71"}.index_cwi-user-delete__frUsA:before{content:"\ea72"}.index_cwi-crew__z5eU-:before{content:"\ea73"}.index_cwi-luggage__eYSar:before{content:"\ea74"}.index_cwi-user-luggage__fsALJ:before{content:"\ea75"}.index_cwi-calendar-view__tOoQW:before{content:"\ea76"}.index_cwi-calendar-plane__7zqXN:before{content:"\ea77"}.index_cwi-calendar-time__Esc8L:before{content:"\ea78"}.index_cwi-calendar-solid__UORmv:before{content:"\ea79"}.index_cwi-duty-free__MivvM:before{content:"\ea7a"}.index_cwi-undo-selected__QIqxF:before{content:"\ea7b"}.index_cwi-plane-pairing__slSLX:before{content:"\ea7c"}.index_cwi-typerating__zlNcF:before{content:"\ea7d"}.index_cwi-save-selected__cHpXR:before{content:"\ea7e"}.index_cwi-search-filter__aG-ds:before{content:"\ea7f"}.index_cwi-linetraining__u1qJI:before{content:"\ea80"}.index_cwi-arrow-down__ROSdc:before{content:"\ea81"}.index_cwi-arrow-up__e-8e2:before{content:"\ea82"}.index_cwi-arrow-right__12nSZ:before{content:"\ea83"}.index_cwi-accounting__HyH2R:before{content:"\ea84"}.index_cwi-employee-document__u0OcK:before{content:"\ea85"}.index_cwi-employees__IQWFt:before{content:"\ea86"}.index_cwi-phone__Rk2Xv:before{content:"\ea87"}.index_cwi-stats__U5lpy:before{content:"\ea88"}.index_cwi-customers__qi2mY:before{content:"\ea89"}.index_cwi-crew-planning__VUqM4:before{content:"\ea8a"}.index_cwi-aircraft-owner__G9WBN:before{content:"\ea8b"}.index_cwi-crew-control__zapV7:before{content:"\ea8c"}.index_cwi-control-tower__qBGKQ:before{content:"\ea8d"}.index_cwi-classroom__ZFMqc:before{content:"\ea8e"}.index_cwi-catering__dI6bw:before{content:"\ea8f"}.index_cwi-card__zLzHw:before{content:"\ea90"}.index_cwi-audit__SfoRZ:before{content:"\ea91"}.index_cwi-administrator__1lJIn:before{content:"\ea92"}.index_cwi-cabincrew__7yOB7:before{content:"\ea93"}.index_cwi-flight-operations__RXzmg:before{content:"\ea94"}.index_cwi-dispatch__OUqO-:before{content:"\ea95"}.index_cwi-fleet__xVKVL:before{content:"\ea96"}.index_cwi-fatigue-risk__G3WZ0:before{content:"\ea97"}.index_cwi-management__vip79:before{content:"\ea98"}.index_cwi-balance__wcTFE:before{content:"\ea99"}.index_cwi-master-crew__7EHf9:before{content:"\ea9a"}.index_cwi-passengers__GRudU:before{content:"\ea9b"}.index_cwi-tools__tSOlI:before{content:"\ea9c"}.index_cwi-risk-assessment__kd3OD:before{content:"\ea9d"}.index_cwi-sales__Rqr7f:before{content:"\ea9e"}.index_cwi-quiz__Px6r3:before{content:"\ea9f"}.index_cwi-learning__PnBJO:before{content:"\eaa0"}.index_cwi-support__k-p4i:before{content:"\eaa1"}.index_cwi-stock__sn3Fj:before{content:"\eaa2"}.index_cwi-security__RMAwM:before{content:"\eaa3"}.index_cwi-plane-approval__MKQ5G:before{content:"\eaa4"}.index_cwi-user-account__Zk1RJ:before{content:"\eaa5"}.index_cwi-money-transfer__YbKwS:before{content:"\eaa6"}.index_cwi-plane-spot__-XdoS:before{content:"\eaa7"}.index_cwi-hotel__Fto-C:before{content:"\eaa8"}.index_cwi-rental-car__Wehk3:before{content:"\eaa9"}.index_cwi-plane-seat-solid__v2U3V:before{content:"\eaaa"}.index_cwi-plane-seat__xHPy8:before{content:"\eaab"}.index_cwi-spinner__7RiZr:before{content:"\eaac"}.index_cwi-sortable__1NZuF:before{content:"\eaad"}.index_cwi-settings__qfnvF:before{content:"\eaae"}.index_cwi-steering-wheel__NXum-:before{content:"\eaaf"}.index_cwi-road__tnvqe:before{content:"\eab0"}.index_cwi-grip-dots__gEw-Z:before{content:"\eab1"}.index_cwi-medal__c5x6n:before{content:"\eab2"}.index_cwi-tire__-HAzV:before{content:"\eab3"}.index_cwi-zoom-in__0UGt-:before{content:"\eab4"}.index_cwi-zoom-out__nAhha:before{content:"\eab5"}.index_cwi-user-solid__YqQTd:before{content:"\eab6"}.index_cwi-lock-solid-open__G7MlZ:before{content:"\eab7"}.index_cwi-stopwatch__MXIbC:before{content:"\eab8"}.index_cwi-quote-right__7zom2:before{content:"\eab9"}.index_cwi-paste__e-CLr:before{content:"\eaba"}.index_cwi-clip__MUK1-:before{content:"\eabb"}.index_cwi-grid__Qs9Em:before{content:"\eabc"}.index_cwi-table__FlX23:before{content:"\eabd"}.index_cwi-star-solid__OVKg4:before{content:"\eabe"}.index_cwi-library__ey78p:before{content:"\eabf"}.index_cwi-inventory__orMOe:before{content:"\eac0"}.index_cwi-passport-add__eryZa:before{content:"\eac1"}.index_cwi-passport-settings__juWIh:before{content:"\eac2"}.index_cwi-passport-search__zqVVM:before{content:"\eac3"}.index_cwi-split__zysQJ:before{content:"\eac4"}.index_cwi-flight-repeat__KcmdR:before{content:"\eac5"}.index_cwi-coins__tG4Lk:before{content:"\eac6"}.index_cwi-signature__6wqiJ:before{content:"\eac7"}.index_cwi-undo__dqnAn:before{content:"\ea68"!important}.index_cwi-undo-selected__QIqxF:before{content:"\ea7b"!important}.index_cwi-save-selected__cHpXR:before{content:"\ea7e"!important}.index_cwi-spinner__7RiZr{animation:index_spin__3HZfS 2s linear infinite}@keyframes index_spin__3HZfS{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@font-face{font-display:swap;font-family:Roboto Flex Variable;font-stretch:25% 151%;font-style:oblique 0deg 10deg;font-weight:100 1000;src:url(content/fonts/roboto-flex/files/roboto-flex-latin-ext-full-normal.woff2) format("woff2-variations");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto Flex Variable;font-stretch:25% 151%;font-style:oblique 0deg 10deg;font-weight:100 1000;src:url(content/fonts/roboto-flex/files/roboto-flex-latin-full-normal.woff2) format("woff2-variations");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}.cw-chip_cw-chip__2qNuf{align-items:center;border-radius:.25rem;display:inline-flex;font-size:.75rem;font-weight:500;gap:.25rem;line-height:100%;padding:.25rem .75rem;transition:outline .25s ease;user-select:none;>.cw-chip_cwi-icons__Epvng{font-size:1rem;font-weight:400;line-height:100%}}.cw-chip_cw-chip-closable__24gMi{padding-right:.25rem}.cw-chip_cw-chip__2qNuf:has(.cw-chip_cwi-icons__Epvng:first-child){padding-left:.5rem}.cw-chip_cw-chip-close-button__WoEHh{align-items:center;background:none;border:none;border-radius:50%;color:inherit;cursor:pointer;display:inline-flex;font-size:1rem;height:1.25rem;justify-content:center;opacity:.75;padding:0;transition:opacity .2s,background-color .2s;width:1.25rem}.cw-chip_cw-chip-close-button__WoEHh:hover{background-color:rgba(0,0,0,.05);opacity:1}.cw-chip_cw-chip-close-button__WoEHh:focus{background-color:rgba(0,0,0,.1);opacity:1;outline:none}.cw-chip_cw-chip__2qNuf:is([data-variant=solid],[data-variant=soft]){--chip-text:#fff;--chip-accent:currentColor;background-color:var(--chip-accent);color:var(--chip-text)}.cw-chip_cw-chip__2qNuf[data-variant=outline]{--chip-accent:currentColor;border:1px solid var(--chip-accent);color:var(--chip-accent)}.cw-chip_cw-chip__2qNuf[data-variant=soft][data-color-scheme=danger]{--chip-text:var(--cw-color-on-error-container);--chip-accent:var(--cw-color-error-container)}.cw-chip_cw-chip__2qNuf[data-variant=soft][data-color-scheme=warning]{--chip-text:var(--cw-color-on-warn-container);--chip-accent:var(--cw-color-warn-container)}.cw-chip_cw-chip__2qNuf[data-variant=soft][data-color-scheme=success]{--chip-text:var(--cw-color-on-success-container);--chip-accent:var(--cw-color-success-container)}.cw-chip_cw-chip__2qNuf[data-variant=soft][data-color-scheme=info]{--chip-text:var(--cw-color-on-info-container);--chip-accent:var(--cw-color-info-container)}.cw-chip_cw-chip__2qNuf[data-variant=soft][data-color-scheme=neutral]{--chip-text:var(--cw-color-on-surface-variant);--chip-accent:var(--cw-color-surface-container)}.cw-chip_cw-chip__2qNuf:not([data-variant=soft])[data-color-scheme=danger]{--chip-text:var(--cw-color-on-error);--chip-accent:var(--cw-color-error)}.cw-chip_cw-chip__2qNuf:not([data-variant=soft])[data-color-scheme=warning]{--chip-text:var(--cw-color-on-warn);--chip-accent:var(--cw-color-warn)}.cw-chip_cw-chip__2qNuf:not([data-variant=soft])[data-color-scheme=success]{--chip-text:var(--cw-color-on-success);--chip-accent:var(--cw-color-success)}.cw-chip_cw-chip__2qNuf:not([data-variant=soft])[data-color-scheme=info]{--chip-text:var(--cw-color-on-info);--chip-accent:var(--cw-color-info)}.cw-chip_cw-chip__2qNuf:not([data-variant=soft])[data-color-scheme=neutral]{--chip-text:var(--cw-color-inverse-on-surface);--chip-accent:var(--cw-color-on-surface-variant)}.cw-note_cw-note__1hrU2{align-items:flex-start;border-radius:var(--cw-border-radius);display:flex;font-size:var(--cw-font-size-regular);font-weight:500;gap:.5rem;line-height:1.25;padding:var(--cw-spacing-small) var(--cw-spacing-dense);>.cw-note_cwi-icons__mkL-K{font-size:1.25em;font-weight:400;line-height:1}}.cw-note_cw-note__1hrU2.cw-note_cw-note-small__GKhM6,.cw-note_cw-note__1hrU2.cw-note_cw-note-small__GKhM6 p{font-size:var(--cw-font-size-small);line-height:1.25}.cw-note_cw-note__1hrU2.cw-note_cw-note-large__j7vJ-,.cw-note_cw-note__1hrU2.cw-note_cw-note-large__j7vJ- p{font-size:var(--cw-font-size-medium);line-height:1.25}.cw-note_cw-note-content__qpdfG{flex-grow:1}.cw-note_cw-note-dismiss-button__mMPTC{background:transparent;color:inherit;font-size:1.25em;height:auto;line-height:1;padding:0;width:auto;&:hover{color:inherit;opacity:.9}}.cw-note_cw-note__1hrU2[data-variant=soft][data-color=primary]{background:var(--cw-color-primary-container);color:var(--cw-color-on-primary-container)}.cw-note_cw-note__1hrU2[data-variant=soft][data-color=danger]{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container)}.cw-note_cw-note__1hrU2[data-variant=soft][data-color=warning]{background-color:var(--cw-color-warn-container);color:var(--cw-color-on-warn-container)}.cw-note_cw-note__1hrU2[data-variant=soft][data-color=success]{background-color:var(--cw-color-success-container);color:var(--cw-color-on-success-container)}.cw-note_cw-note__1hrU2[data-variant=soft][data-color=info]{background-color:var(--cw-color-info-container);color:var(--cw-color-on-info-container)}.cw-note_cw-note__1hrU2[data-variant=soft][data-color=neutral]{background-color:var(--cw-color-surface-container);color:var(--cw-color-on-surface-variant)}.cw-note_cw-note__1hrU2[data-variant=solid][data-color=primary]{background-color:var(--cw-color-primary);color:var(--cw-color-on-primary)}.cw-note_cw-note__1hrU2[data-variant=solid][data-color=danger]{background-color:var(--cw-color-error);color:var(--cw-color-on-error)}.cw-note_cw-note__1hrU2[data-variant=solid][data-color=warning]{background-color:var(--cw-color-warn);color:var(--cw-color-on-warn)}.cw-note_cw-note__1hrU2[data-variant=solid][data-color=success]{background-color:var(--cw-color-success);color:var(--cw-color-on-success)}.cw-note_cw-note__1hrU2[data-variant=solid][data-color=info]{background-color:var(--cw-color-info);color:var(--cw-color-on-info)}.cw-note_cw-note__1hrU2[data-variant=solid][data-color=neutral]{background-color:var(--cw-color-on-surface-variant);color:var(--cw-color-inverse-on-surface)}.cw-note_cw-note__1hrU2[data-variant=outline][data-color=primary]{border:1px solid;color:var(--cw-color-primary-variant)}.cw-note_cw-note__1hrU2[data-variant=outline][data-color=danger]{border:1px solid;color:var(--cw-color-error)}.cw-note_cw-note__1hrU2[data-variant=outline][data-color=warning]{border:1px solid;color:var(--cw-color-warn)}.cw-note_cw-note__1hrU2[data-variant=outline][data-color=success]{border:1px solid;color:var(--cw-color-success)}.cw-note_cw-note__1hrU2[data-variant=outline][data-color=info]{border:1px solid;color:var(--cw-color-info)}.cw-note_cw-note__1hrU2[data-variant=outline][data-color=neutral]{border:1px solid;color:var(--cw-color-on-surface-variant)}.cw-loading_cw-loading-container__MBUbE{--loading-size:2rem;height:100%;left:0;position:relative;top:0;width:100%;z-index:999}.cw-loading_cw-loading-content__u4Oo8{--icon-scale:calc(var(--loading-size)*0.875);align-items:center;display:flex;flex-direction:column;gap:1rem;justify-content:center;left:calc(50% - var(--loading-size));min-height:calc(var(--loading-size)*2);position:absolute;top:calc(50% - var(--loading-size));z-index:999;>p{color:var(--cw-color-primary-variant);font-size:calc(var(--loading-size)*.75);font-weight:500;margin:0}}.cw-loading_cw-loading-container__MBUbE[data-children=false]:has(.cw-loading_cw-loading-content__u4Oo8[data-size=small]){width:var(--loading-size)}.cw-loading_cw-loading-content__u4Oo8[data-size=small]{--loading-size:1rem;--icon-scale:calc(var(--loading-size)*1.125)}.cw-loading_cw-loading-content__u4Oo8[data-size=large]{--loading-size:3rem}.cw-loading_cw-loading__4JwIc{animation:cw-loading_spin__nRfPI 2s linear infinite;border-radius:calc(var(--loading-size)*2);height:calc(var(--loading-size)*2);width:calc(var(--loading-size)*2);will-change:transform}@keyframes cw-loading_spin__nRfPI{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.cw-loading_cw-loading__4JwIc[data-icon-position=outside]{box-shadow:inset -.125em 0 0 .125em var(--cw-color-primary-container);font-size:var(--loading-size);position:relative;>.cw-loading_cwi-icons__992RB{color:var(--cw-color-primary-variant);font-size:var(--icon-scale);height:var(--icon-scale);left:2px;line-height:var(--icon-scale);position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg);width:var(--icon-scale)}}.cw-loading_cw-loading__4JwIc[data-icon-position=inside]{>.cw-loading_cwi-icons__992RB{color:var(--cw-color-primary-variant);font-size:calc(var(--loading-size)*2)}}.cw-loading_cw-loading-disabled-content__qYqCw{min-width:var(--loading-size);opacity:.3;pointer-events:none}@keyframes cw-loading_moveRight__ctj8h{0%{left:10%;transform:rotate(0)}to{left:calc(90% - var(--loading-size)*2);transform:rotate(3turn)}}.cw-loading_cw-loading-content__u4Oo8[data-animation=moveRight]:not([data-size=small]){align-items:flex-start;left:0;width:100%;>.cw-loading_cw-loading__4JwIc{animation:cw-loading_moveRight__ctj8h 6s linear infinite alternate;position:relative}}.cw-generic-tooltip-module_cw-generic-tooltip-content__la-Si{--tooltip-width:24rem;background-color:var(--cw-color-inverse-surface);border-radius:var(--cw-border-radius);box-shadow:0 1.5rem 3rem -.75rem rgba(0,0,0,.25),0 .5rem 1.5rem -.5rem rgba(0,0,0,.15);color:var(--cw-color-inverse-on-surface);font-size:var(--cw-font-size-small);max-width:var(--tooltip-width);padding:var(--cw-spacing-dense);position:fixed;width:max-content;z-index:120;.cw-generic-tooltip-module_cwi-icons__0-vzj{font-size:var(--cw-font-size-regular)}&:before{background:var(--cw-color-inverse-surface);content:"";height:8px;position:absolute;transform:rotate(45deg);width:8px}&[data-position=left]:before{right:-4px;top:50%;transform:translateY(-50%) rotate(45deg)}&[data-position=right]:before{left:-4px;top:50%;transform:translateY(-50%) rotate(45deg)}&[data-position=top]:before{bottom:-4px;left:50%;transform:translateX(-50%) rotate(45deg)}&[data-position=bottom]:before{left:50%;top:-4px;transform:translateX(-50%) rotate(45deg)}}.cw-generic-tooltip-module_cw-generic-tooltip-content__la-Si:has(.cw-crewmember-dutygrid){--tooltip-width:32rem}.cw-generic-tooltip-module_cw-generic-tooltip__Ij76M[data-inline=true]{display:inline-block}.cw-generic-tooltip-module_cw-generic-tooltip-content__la-Si[data-inline=true]{font-size:var(--cw-font-size-regular);padding:var(--cw-spacing-small) var(--cw-spacing-dense)}.CwConfirmationPopup-module_overlayPositioned__11qYB{background-color:rgba(0,0,0,.5);inset:0;position:fixed;z-index:1000}.CwConfirmationPopup-module_popup__ahPjM{background-color:#fff;border-radius:6px;box-shadow:0 2px 6px rgba(0,0,0,.2);font-size:14px;max-width:280px;padding:12px 16px;width:100%}.CwConfirmationPopup-module_message__MnNL4{font-size:14px;margin-bottom:12px;text-align:center}.CwConfirmationPopup-module_buttons__fGYYE{display:flex;gap:8px;justify-content:center}.CwConfirmationPopup-module_button__ugYQE{border:none;border-radius:4px;cursor:pointer;font-size:13px;padding:6px 12px;transition:background-color .2s}.CwConfirmationPopup-module_confirmButton__rTP4S{background-color:#3498db;color:#fff}.CwConfirmationPopup-module_confirmButton__rTP4S:hover{background-color:#2980b9}.CwConfirmationPopup-module_cancelButton__Ry694{background-color:#e74c3c;color:#fff}.CwConfirmationPopup-module_cancelButton__Ry694:hover{background-color:#c0392b}.cw-dialog-module_cw-dialog-main__cHxHt{--handler-padding:10px;font-family:var(--cw-font-family);height:100vh;left:0;overflow:hidden;position:fixed;top:0;width:100vw;z-index:var(--cw-z-index-high);&[data-has-scrim=true]{background-color:var(--cw-color-scrim)}&>dialog{background-color:var(--cw-color-surface-container-lowest);border:none;border-radius:var(--cw-border-radius-large);box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1),0 .25rem 1rem rgba(0,0,0,.075);box-sizing:border-box;display:flex;flex-direction:column;margin:0;max-height:90vh;max-width:90vw;padding:0;position:absolute;resize:"both";right:50%;top:50%;&>header{align-items:center;border-bottom:1px solid var(--cw-color-surface-container);border-top-left-radius:var(--cw-border-radius-large);border-top-right-radius:var(--cw-border-radius-large);color:var(--cw-color-on-primary-container);cursor:move;display:flex;font-size:var(--cw-font-size-medium);font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:var(--cw-font-weight-semibold);justify-content:space-between;line-height:var(--cw-font-size-medium);padding:var(--cw-spacing-dense);transition:all .5s ease-in;user-select:none;width:100%;&>span{display:block;flex-grow:1;text-align:center}&:hover{background-color:var(--cw-color-surface-container-low)}}&>footer{align-items:center;border-top:1px solid var(--cw-color-surface-container);display:flex;gap:.5rem;justify-content:end;padding:var(--cw-spacing-small) var(--cw-spacing-dense);user-select:none}&>section{flex-grow:1;font-size:var(--cw-font-size-regular);min-width:100%;overflow:auto;padding:var(--cw-spacing-medium);user-select:none}&>div[data-handle-n]{cursor:n-resize;top:0}&>div[data-handle-n],&>div[data-handle-s]{height:var(--handler-padding);left:var(--handler-padding);position:absolute;width:calc(100% - var(--handler-padding)*2)}&>div[data-handle-s]{bottom:0;cursor:s-resize}&>div[data-handle-e]{cursor:e-resize;right:0}&>div[data-handle-e],&>div[data-handle-w]{height:calc(100% - var(--handler-padding)*2);position:absolute;top:var(--handler-padding);width:var(--handler-padding)}&>div[data-handle-w]{cursor:w-resize;left:0}&>div[data-handle-ne]{cursor:ne-resize;right:0}&>div[data-handle-ne],&>div[data-handle-nw]{height:var(--handler-padding);position:absolute;top:0;width:var(--handler-padding)}&>div[data-handle-nw]{cursor:nw-resize;left:0}&>div[data-handle-se]{cursor:se-resize;right:0}&>div[data-handle-se],&>div[data-handle-sw]{bottom:0;height:var(--handler-padding);position:absolute;width:var(--handler-padding)}&>div[data-handle-sw]{cursor:sw-resize;left:0}}}.cw-dialog-module_cw-dialog-button-close__9GRd8{background-color:var(--cw-color-surface-container-high);border-radius:100%;color:var(--cw-color-on-primary-container);cursor:pointer;font-size:var(--cw-font-size-medium);font-weight:var(--cw-font-weight-bold);height:1.5rem;margin:0;padding:0;position:relative;width:1.5rem;&:before{content:"\ea14";font-family:var(--cw-font-icons)}}[data-pressing=true] .cw-dialog-module_cw-dialog-button-close__9GRd8{background-color:var(--cw-color-error-container);color:var(--cw-color-on-error-container)}[data-pressing=true] .cw-dialog-module_cw-dialog-button-close__9GRd8:after{--danger-light:#ffbfbf;animation:cw-dialog-module_spin__WQstq .5s linear;border:4px solid var(--danger-light);border-radius:50%;border-top-color:var(--cw-color-surface-container-lowest);content:"";height:2.25rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:2.25rem}@keyframes cw-dialog-module_spin__WQstq{to{transform:translate(-50%,-50%) rotate(1turn)}}.cw-dialog-module_cw-dialog-main__cHxHt dialog.padding-dense>section{padding:var(--cw-spacing-dense)}.cw-dialog-module_cw-dialog-main__cHxHt dialog.modal-report-content>section{padding:var(--cw-spacing-small)}.cw-dialog-module_cw-dialog-main__cHxHt dialog.no-overflow>section{overflow:visible}.cw-card-module_card__HJUT0{--card-outline:var(--cw-color-surface-container-high);--card-overlay:hsla(0,0%,100%,.5);--card-shadow:rgba(0,0,0,.1) 3px 3px 9px;border-radius:1rem;display:flex;flex-direction:column;gap:1rem;min-width:15rem;padding:1rem;&.cw-card-module_clickable__Y-V3X{cursor:pointer}&.cw-card-module_disabled__0wHh1{filter:saturate(.25);opacity:.5;pointer-events:none}&.cw-card-module_loading__-fzlx{position:relative}}.cw-card-module_card__HJUT0[data-variant=border]{border:1px solid var(--card-outline);transition:all .2s ease;&:hover{box-shadow:var(--card-shadow)}}.cw-card-module_card__HJUT0[data-variant=shadow]{background:var(--cw-color-surface-container-low);border:1px solid transparent;box-shadow:var(--card-shadow);transition:border .2s ease;&:hover{border:1px solid var(--card-outline)}}.cw-card-module_card__HJUT0[data-direction=column]{max-width:45rem;>header{border-bottom:1px solid var(--card-outline);padding-bottom:.5rem}>footer{border-top:1px solid var(--card-outline);padding-top:.5rem}}.cw-card-module_card__HJUT0[data-direction=row]{flex-direction:row;>header{border-right:1px solid var(--card-outline);flex-basis:12rem;padding-right:.5rem}>div.cw-card-module_content__ma9qy{flex-grow:1}>footer{border-left:1px solid var(--card-outline);flex-basis:9rem;flex-direction:column;padding-left:.5rem}}.cw-card-module_card__HJUT0>header{align-items:center;display:flex;justify-content:space-between;.cw-card-module_headerContent__x4Jfl{align-items:center;display:flex;flex:1;flex-direction:column;&[data-alignment=left]{align-items:flex-start}>h5{background-color:transparent;margin:0;padding:0}>strong{color:var(--cw-color-on-surface-variant);font-size:.75rem;font-weight:600;opacity:.75;text-transform:uppercase}}}.cw-card-module_headerContent__x4Jfl strong .cwi-icons{font-size:.875rem;vertical-align:middle}.cw-card-module_card__HJUT0>footer{color:var(--cw-color-on-surface-variant);display:flex;font-size:.75rem;justify-content:space-between;.cw-card-module_footerTags__80sSW{display:flex;flex-wrap:wrap;gap:.5rem}}.cw-card-module_loadingOverlay__8-zVV{align-items:center;backdrop-filter:blur(2px);background:var(--card-overlay);border-radius:inherit;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:10}.cw-card-list-module_cardContainer__l3YEh{display:flex;flex-direction:column;gap:var(--card-gap,1rem);&[data-layout=grid]{display:grid;grid-template-columns:repeat(auto-fit,minmax(var(--card-width,320px),1fr))}}.cw-card-list-module_pagination__5Ay78{align-items:center;display:flex;gap:1rem;justify-content:center;margin-top:1.5rem}.cw-card-list-module_pageInfo__uiMel{font-size:.875rem}.cw-card-list-module_emptyState__RlqiS,.cw-card-list-module_loading__cYpND{align-items:center;display:flex;justify-content:center;min-height:200px;width:100%}.cw-card-list-module_sortControls__mWgZA{align-items:center;display:flex;gap:.5rem;justify-content:flex-end;margin-bottom:.5rem;>select{margin:0}}.cw-accordion-module_cw-accordion__ErvlW>header{--cw-color-icons:var(--cw-color-on-surface-variant);align-items:center;background:var(--cw-color-surface-container-low);border-radius:.25rem;color:var(--cw-color-on-surface-variant);cursor:pointer;display:flex;padding:0 var(--cw-spacing-small)}.cw-accordion-module_cw-accordion__ErvlW>header>button:before{content:"\ea04"}.cw-accordion-module_cw-accordion__ErvlW[data-open=true]>header{background:var(--cw-color-surface-container-high)}.cw-accordion-module_cw-accordion__ErvlW[data-open=true]>header button:before{content:"\ea1e"}.cw-accordion-module_cw-accordion__ErvlW .cw-accordion-module_cw-accordion-body__xlI8b{background:var(--cw-color-surface-container-low);border-radius:.25rem;display:none;margin-top:.25rem;max-height:10rem;overflow-y:auto;padding:1rem}.cw-accordion-module_cw-accordion__ErvlW[data-open=true] .cw-accordion-module_cw-accordion-body__xlI8b{display:flex}.cw-tabs-module_cw-tabs__1pmji{background:var(--cw-color-surface-container-low);border-radius:.5rem;display:flex;flex-direction:column;gap:.5rem;margin-top:1rem;padding:.5rem;&:first-child{margin-top:0}}.cw-tabs-module_cw-tabs__1pmji>ul{background:var(--cw-color-surface-container-lowest);border-radius:.25rem;display:flex;flex-wrap:wrap;gap:.5rem 0;justify-content:flex-start;list-style-type:none;margin:0;padding:.25rem}.cw-tabs-module_cw-tabs__1pmji>ul>li{align-items:center;border-radius:var(--cw-border-radius-small);color:var(--cw-color-on-surface-variant);cursor:pointer;display:inline-flex;font-family:var(--cw-font-family);font-size:var(--cw-font-size-regular);font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:var(--cw-font-weight-regular);gap:.25rem;line-height:var(--cw-font-line-height-small);padding:.5rem .75rem;position:relative;transition:all .25s ease;>span[class^=cwi-]{font-size:1.25em}&:hover{background-color:var(--cw-color-primary-container);color:var(--cw-color-on-primary-container);.cw-tabs-module_badge__AmVxW{background:var(--cw-color-surface-container-lowest);color:var(--cw-color-on-surface)}}&:after{background-color:transparent;border-radius:.5rem;bottom:0;content:" ";height:3px;left:5%;position:absolute;transition:bottom .25s ease;width:90%}&[data-active=true]{color:var(--cw-color-on-surface);font-weight:var(--cw-font-weight-bold);&:after{background-color:var(--cw-color-primary);bottom:1px}>span[class^=cwi-]{color:var(--cw-color-primary)}}}.cw-tabs-module_badge__AmVxW{align-items:center;background-color:var(--cw-color-primary-container);border-radius:.75rem;color:var(--cw-color-on-primary-container);display:inline-flex;font-size:.75rem;font-weight:600;justify-content:center;line-height:1;margin-left:.25rem;padding:.25rem .375rem;transition:background-color .2s ease}[data-active=true] .cw-tabs-module_badge__AmVxW{background-color:var(--cw-color-primary);color:var(--cw-color-on-primary)}.cw-tabs-module_cw-tabs-content__HTp8d{background:var(--cw-color-surface-container-lowest);border-radius:.5rem;flex-grow:1;padding:.5rem;&:not(:has(>.cw-tabs-module_cw-tabs__1pmji)){max-height:var(--limit-tabs-height,75vh);overflow:auto;scrollbar-color:var(--cw-color-surface-container-highest) transparent;scrollbar-width:thin}&:has(>.cw-tabs-module_cw-tabs__1pmji){padding:0}}.cw-tabs-module_cw-tabs__1pmji[data-tabs-position=left]{flex-direction:row;>ul{flex-direction:column;flex-shrink:0;gap:0;min-width:10rem;>li{justify-content:flex-end;&:after{bottom:-3rem;height:100%;left:auto;right:0;width:4px}&[data-active=true]{color:var(--cw-color-on-surface);font-weight:var(--cw-font-weight-bold);&:after{background-color:var(--cw-color-primary);bottom:1px}}}}}.cw-tabs-module_cw-tabs__1pmji .cw-tabs-module_cw-tabs__1pmji{padding:0;&[data-tabs-position=top]{background:transparent;gap:0;>ul{border-bottom:1px solid var(--cw-color-surface-container-high);border-radius:.5rem .5rem 0 0}.cw-tabs-module_cw-tabs-content__HTp8d{border-radius:0 0 .5rem .5rem}}&[data-tabs-position=left]{>ul{background:var(--cw-color-surface-container-low)}}}.cw-tabs-module_cw-tabs-content__HTp8d:not(:has(.cw-tabs-module_no-overflow__1bToK)){max-height:75vh;overflow:auto;scrollbar-color:var(--cw-color-surface-container-highest) transparent;scrollbar-width:thin}.cw-tabs-module_cw-tabs-content__HTp8d:has(.no-overflow){overflow:visible}.cw-tabs-empty{background:var(--cw-color-surface-container);padding:1rem}dl.cw-key-value-list_cw-keyvalue-list__P-J-A{display:flex;flex-direction:column;gap:.5rem;margin:0;>div.cw-key-value-list_cw-flex-row__QgbZS{align-items:center}>div.cw-key-value-list_cw-flex-column__qEleV{gap:0}dt{font-stretch:semi-condensed;font-weight:600;width:var(--label-width,auto)}dd{margin:0}}.cw-sortable-list-module_sortableList__PyLO-{display:flex;flex-direction:column;gap:.5rem}.cw-sortable-list-module_sortableItem__FAnn2{border:1px solid var(--cw-color-surface-container-high);border-radius:.5rem;cursor:grab;font-size:.875rem;line-height:1rem;padding:.5rem;&:hover:not(.cw-sortable-list-module_readOnly__r7GcH){background:var(--cw-color-surface-container-low)}&.cw-sortable-list-module_dragging__MD715{opacity:.5;transform:scale(.95);transition:all .2s ease}>header{align-items:center;display:flex;gap:.5rem;justify-content:space-between}&&.cw-sortable-list-module_readOnly__r7GcH{cursor:default}}.cw-sortable-list-module_sortableItem__FAnn2.cw-sortable-list-module_moved__sE6-N{background-color:var(--cw-color-primary-container);border-left:3px solid var(--cw-color-primary);transition:all .3s ease;.cw-sortable-list-module_expandedContent__Kocna{border-color:var(--cw-color-surface-container-lowest)}}.cw-sortable-list-module_sortableHandle__HvYBK{color:var(--cw-color-on-surface-variant);opacity:.75}.cw-sortable-list-module_sortableItem__FAnn2.cw-sortable-list-module_readOnly__r7GcH .cw-sortable-list-module_sortableHandle__HvYBK{opacity:0}.cw-sortable-list-module_sortableContent__C6JhR{align-items:center;display:flex;flex-grow:1;gap:.5rem;justify-content:space-between;min-width:0}.cw-sortable-list-module_sortableTitle__EgWXr{font-weight:600;overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.cw-sortable-list-module_sortableExtraContent__s4LSv{flex-shrink:0}.cw-sortable-list-module_sortableActions__gwQOU{display:flex;flex-shrink:0}.cw-sortable-list-module_dropIndicator__MNSF-{background-color:var(--cw-color-primary);border-radius:1px;height:2px;margin:2px 0;position:relative}.cw-sortable-list-module_dropIndicator__MNSF-:before{background-color:var(--cw-color-primary);border-radius:50%;content:"";height:8px;left:-4px;position:absolute;top:-3px;width:8px}.cw-sortable-list-module_emptyMessage__gMpaL{background:var(--cw-color-surface-container);border-radius:.5rem;color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);padding:.5rem;text-align:center}.cw-sortable-list-module_expandedContent__Kocna{border-top:1px solid var(--cw-color-surface-container-high);margin:.5rem .5rem 0;padding:1rem .5rem .5rem}.cw-sortable-list-module_expandedContent__Kocna .winops-wysiwyg-wrapper.readonly .rdw-editor-main{background:transparent;padding:.5rem}.cw-file-upload-multiple-module_hiddenInput__TZBBI{display:none}.cw-file-upload-multiple-module_uploadArea__DdOhs{background-color:var(--cw-color-surface-container-low);background-color:#fafafa;border:2px dashed var(--cw-color-shadow);border-radius:.5rem;color:var(--cw-color-on-surface-variant);cursor:pointer;display:flex;flex-direction:column;font-size:1rem;gap:.5rem;padding:1rem;text-align:center;transition:border-color .3s ease}.cw-file-upload-multiple-module_uploadArea__DdOhs:hover{border-color:var(--cw-color-outline)}.cw-file-upload-multiple-module_uploadAreaDisabled__VWeFX{background-color:#f5f5f5;cursor:not-allowed;opacity:.5;pointer-events:none}.cw-file-upload-multiple-module_uploadArea__DdOhs .cwi-icons{font-size:2rem}.cw-file-upload-multiple-module_uploadTitle__gjRk8{font-weight:500;margin:0}.cw-file-upload-multiple-module_uploadTitleDisabled__tNwSZ{color:#ccc}.cw-file-upload-multiple-module_uploadSubtitle__Z0S5t{font-size:.875rem;margin:0;opacity:.75}.cw-file-upload-multiple-module_uploadSubtitleDisabled__ibxhc{color:#ccc}.cw-file-upload-multiple-module_filesContainer__g44PY{display:flex;flex-direction:column;gap:.5rem}.cw-file-upload-multiple-module_fileItem__w27Dg{align-items:center;background-color:var(--cw-color-surface-container);border-radius:.5rem;display:flex;font-size:1.25rem;gap:1rem;padding:.5rem}.cw-file-upload-multiple-module_fileIcon__iJJUX{align-items:center;background-color:var(--cw-color-primary);border-radius:.25rem;color:var(--cw-color-on-primary);display:flex;height:2rem;justify-content:center;position:relative;width:2rem}.cw-file-upload-multiple-module_fileExtension__vOuHv{background-color:var(--cw-color-primary-variant);border-radius:2px;bottom:-2px;color:var(--cw-color-on-primary-variant);font-size:8px;font-weight:600;padding:1px 3px;position:absolute;right:-2px}.cw-file-upload-multiple-module_fileInfo__R5ZTv{flex:1;min-width:0}.cw-file-upload-multiple-module_fileName__DjepK{color:var(--cw-color-on-surface);font-size:.875rem;font-weight:500;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cw-file-upload-multiple-module_fileSize__b8GSm{color:var(--cw-color-on-surface-variant);font-size:.75rem;margin:0}.cw-file-upload-multiple-module_smallButton__siUAh{font-size:.875rem}.cw-color-picker-module_colorPreview__ylJcD{align-items:center;border:1px solid var(--cw-color-surface-container);border-radius:.375rem;display:flex;flex-grow:1;height:2rem;justify-content:center;width:100%}.cw-color-picker-module_hueBar__bFhyC{background:linear-gradient(180deg,red,#f0f,#00f,#0ff,#0f0,#ff0,red);border-radius:3px;cursor:pointer;height:100%;position:relative;width:40px}.cw-color-picker-module_hueBarSlider__D53IV{background-color:hsla(0,0%,100%,.8);border:1px solid rgba(0,0,0,.3);box-sizing:border-box;height:5px;left:0;pointer-events:none;position:absolute;transform:translateY(-50%);width:100%}.cw-color-picker-module_colorPickerInteractiveArea__KZFR1{display:flex;gap:.5rem;height:7rem;width:100%}.cw-color-picker-module_colorArea__xgpSE{border-radius:.25rem;cursor:pointer;flex-grow:1;height:7rem;overflow:hidden;position:relative}.cw-color-picker-module_colorAreaOverlay__pmgOc,.cw-color-picker-module_hueBackground__Mks78{inset:0;position:absolute}.cw-color-picker-module_whiteGradient__Bt-fU{background:linear-gradient(90deg,#fff,hsla(0,0%,100%,0));inset:0;pointer-events:none;position:absolute}.cw-color-picker-module_blackGradient__VnEKJ{background:linear-gradient(180deg,transparent,#000);inset:0;pointer-events:none;position:absolute}.cw-color-picker-module_colorAreaCursor__lotg3{border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.6);height:10px;pointer-events:none;position:absolute;transform:translate(-50%,-50%);width:10px;z-index:1}.cw-input-color-module_selectColor__DTo3V{border:2px solid var(--cw-color-surface-container-low);border-radius:4px;cursor:pointer;transition:opacity .2s ease,border-color .2s ease}.cw-input-color-module_selectColor__DTo3V:hover:not(.cw-input-color-module_disabled__O1fK5){border-color:var(--cw-color-surface-container-high)}.cw-input-color-module_disabled__O1fK5{cursor:not-allowed;opacity:.5}.cw-input-color-module_colorDropdown__pX2bc{background-color:var(--cw-color-surface-container-lowest);border:1px solid var(--cw-color-outline-variant);border-radius:.5rem;box-shadow:0 4px 6px var(--cw-color-shadow);padding:1rem}.cw-input-date-picker-module_datePicker__jogOq{display:inline-block;font-family:var(--cw-font-family);font-size:10pt;position:relative}.cw-input-date-picker-module_input__uQshH{background-color:var(--cw-color-surface-container-low);border:none;border-radius:var(--cw-border-radius);font-size:var(--cw-font-size-regular);line-height:var(--cw-font-line-height-min);padding:var(--cw-spacing-small) var(--cw-spacing-tiny);width:14ch}.cw-input-date-picker-module_input__uQshH[data-valid=false]{outline:1px solid var(--cw-color-error)}.cw-input-date-picker-module_input__uQshH:focus,.cw-input-date-picker-module_input__uQshH:hover{outline:1px solid var(--cw-color-outline-variant)}.cw-label-input-column .cw-input-date-picker-module_input__uQshH{width:auto}.cw-input-date-picker-module_calendar__q39ic{background-color:var(--cw-color-surface-container-low);border-radius:var(--cw-border-radius);box-shadow:0 2px 4px rgba(0,0,0,.1);display:inline-block;left:0;outline:1px solid #ccc;padding:var(--cw-spacing-dense);position:absolute;top:100%;transform:translateY(5px);z-index:50}.cw-input-date-picker-module_calendarHeader__1btPK{align-items:center;display:flex;justify-content:space-between;margin-bottom:1rem}.cw-input-date-picker-module_arrowButton__23tNc{background:none;border:none;color:var(--cw-color-on-surface-variant);cursor:pointer;display:inline-block;font-weight:700;text-align:center;vertical-align:middle}.cw-input-date-picker-module_calendarTitle__oOODw{bottom:1px;display:inline-block;font-weight:700;position:relative;text-align:center;vertical-align:top}.cw-input-date-picker-module_calendarBody__-711a{display:grid;gap:8px;grid-template-columns:repeat(7,1fr);margin-bottom:.5rem}.cw-input-date-picker-module_calendarDay__z-Mmv{align-items:center;border-radius:100px;cursor:pointer;display:flex;height:1.7rem;justify-content:center;text-align:center;vertical-align:top;width:1.7rem}.cw-input-date-picker-module_calendarDay__z-Mmv.cw-input-date-picker-module_selected__XQgR7{background-color:var(--cw-color-primary);color:var(--cw-color-on-primary)}.cw-input-date-picker-module_todayButton__oYamC{background-color:var(--cw-color-primary-container);border:none;border-radius:4px;color:var(--cw-color-on-primary-container);cursor:pointer;margin-top:8px;outline:1px solid var(--cw-color-primary);padding:4px}.cw-input-date-picker-module_emptyDay__lbI5B{color:transparent}.cw-weekday-selector-module_cw-weekday-selector__Iz4GZ{align-items:center;display:flex;flex-direction:row;justify-content:center;&>input{appearance:none;background-color:var(--cw-color-surface-container-low);border-radius:50%;cursor:pointer;height:var(--cw-size-small);margin:var(--cw-spacing-pixel);outline:none;outline-offset:-1px;vertical-align:middle;width:var(--cw-size-small);&[data-day]:before{display:flex;flex-direction:column;font-family:var(--cw-font-family);font-size:var(--cw-font-size-small);height:100%;justify-content:center;position:relative;text-align:center;top:1px;width:100%}&:checked{background-color:var(--cw-color-primary-container);font-weight:var(--cw-font-weight-bold);outline:1px solid var(--cw-color-outline);&[data-day]:before{color:var(--cw-color-on-primary-container)}}&[data-day=M]:before{content:"M"}&[data-day=T]:before{content:"T"}&[data-day=W]:before{content:"W"}&[data-day=R]:before{content:"T"}&[data-day=F]:before{content:"F"}&[data-day=S]:before,&[data-day=U]:before{content:"S"}}}.cw-multi-filter-tag-module_cw-multifilter-tag__Epda-{list-style-type:none;&[data-selected=false]:hover{cursor:copy}}.cw-multi-filter-tag-module_cw-multifilter-tag__Epda-:hover .cw-chip{outline:1px solid currentColor}.cw-multi-filter-tag-module_cw-multifilter-tag__Epda- .cw-chip>span{max-width:20ch;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cw-multi-filter-module_cw-multi-filter-catalog-container__S3nsq{background-color:var(--cw-color-surface-container-lowest);border-radius:var(--cw-border-radius);box-shadow:0 1.5rem 3rem -.75rem rgba(0,0,0,.25),0 .5rem 1.5rem -.5rem rgba(0,0,0,.15);box-sizing:border-box;left:1px;margin-top:4px;max-height:50vh;outline:1px solid var(--cw-color-outline-variant);overflow-y:auto;position:absolute;scrollbar-width:thin;width:calc(100% - 2px);&[data-display-none=true]{display:none}&[data-display-none=false]{display:block}& nav{border-bottom:1px solid var(--cw-color-surface-container-highest)}& nav,& ul{padding:8px}& ul{display:flex;flex-wrap:wrap;gap:var(--cw-gap-small);margin:0;text-overflow:ellipsis}}.cw-multi-filter-module_cw-multi-filter__zipBK{--main-size-unit:12px;--secondary-size-unit:4px;box-sizing:border-box;font-family:var(--cw-font-family);line-height:var(--cw-font-line-height-min);position:relative;z-index:10;& nav>button{background-color:var(--cw-color-primary-container);border-radius:24px;color:var(--cw-color-primary);cursor:pointer;display:inline-block;font-family:var(--cw-font-family);font-size:var(--cw-font-size-small);font-weight:600;line-height:var(--cw-font-line-height-min);margin:calc(var(--secondary-size-unit)/2) var(--secondary-size-unit);padding:calc(var(--main-size-unit)/2) var(--main-size-unit);user-select:none;&:hover{outline:1px solid currentcolor}}& input[type=reset]{background-color:transparent;border-radius:24px;color:var(--cw-color-secondary);cursor:pointer;font-size:1rem;font-weight:600;position:absolute;right:0;top:calc(50% - 1rem);user-select:none}}.cw-multi-filter-module_cw-multi-filter-search__eyHr0{background-color:var(--cw-color-surface-container-low);border-radius:var(--cw-border-radius);display:flex;flex-grow:0;max-height:3.75rem;overflow-y:auto;padding:.25rem .5rem;scrollbar-width:thin;vertical-align:middle;& ul{align-items:center;display:flex;flex-wrap:wrap;gap:.25rem;margin:0;padding:0 1rem 0 0;width:100%}& input[type=text]{appearance:none;background-color:transparent;display:block;flex-grow:1;min-width:8ch;outline:none;padding:.125rem .375rem;&::placeholder{opacity:.5}}&:hover{cursor:text;outline:1px solid var(--cw-color-primary);outline-offset:-2px}}.cw-multi-filter-module_cw-multi-filter-search__eyHr0 .cw-chip{padding-bottom:.125rem;padding-top:.125rem}.cw-tree-view-module_tree-container__NN-HJ{--neutral-070:#656872;--primary-opacity:rgba(var(--cw-color-primary-rgb-values),0.2);background:var(--cw-color-surface-container);border-radius:.5rem;font-size:var(--cw-font-size-regular);padding:.5rem;header{display:flex;margin-bottom:.5rem;position:relative;input{flex:1;line-height:1.5rem}button{font-size:1rem;position:absolute;right:0}}}.cw-tree-view-module_tree-wrapper__keBZI{display:flex;flex-direction:column;gap:.125rem;max-height:400px;overflow-y:auto;padding:0}.cw-tree-view-module_tree-item__prE9N{background:var(--cw-color-surface-container-low);border-radius:.25rem;position:relative}.cw-tree-view-module_tree-node__wfro9{align-items:center;border-left:3px solid transparent;color:var(--cw-color-on-surface);cursor:pointer;display:flex;padding:.5rem 1rem .5rem .5rem;position:relative;transition:all .25s ease;&:hover{background:var(--cw-color-surface-container-lowest)}&.cw-tree-view-module_selected__XJQ0w{background:var(--primary-opacity,var(--cw-color-primary-container));border-left-color:var(--cw-color-primary);color:var(--cw-color-on-primary-container);font-weight:600}&.cw-tree-view-module_non-selectable__YuPSx{color:var(--cw-color-on-surface-variant);font-weight:600}}.cw-tree-view-module_tree-node__wfro9 .cwi-icons{font-size:1.5rem}.cw-tree-view-module_tree-children__ji8CZ{position:relative}.cw-tree-view-module_tree-children__ji8CZ:before{background:linear-gradient(var(--cw-color-surface-container-high),var(--cw-color-surface-container-lowest));bottom:0;content:"";left:20px;mix-blend-mode:multiply;position:absolute;top:0;width:1px;z-index:10}.cw-tree-view-module_empty-state__yvRjo{align-items:center;background:var(--cw-color-surface-container);border-radius:.5rem;color:var(--neutral-070);display:flex;flex-direction:column;gap:.5rem;padding:3rem}.cw-tree-view-module_empty-state__yvRjo .cwi-icons{font-size:3rem}.cw-tree-view-module_tree-label__ss3Nf{flex:1;line-height:150%;&.cw-tree-view-module_tree-spacer__E9Ud2{margin-left:2rem}}.cw-context-menu-module_menu__tXmun{background-color:var(--cw-color-surface-container-low);border-radius:8px;box-shadow:2px 2px 12px 2px var(--cw-color-shadow);display:flex;flex-direction:column;gap:2px;padding:6px;position:fixed;z-index:1000}.cw-context-menu-module_item__-ko8L{background-color:transparent;border-radius:4px;color:var(--cw-color-on-surface-variant);cursor:pointer;font-size:var(--cw-font-size-regular);line-height:100%;padding:6px 8px;transition:all .375s;white-space:nowrap;&:hover{background-color:var(--cw-color-surface-container-high);color:var(--cw-color-on-surface)}}.cw-context-menu-module_arrow__LHZmQ{border-style:solid;height:0;position:absolute;width:0;&[data-placement=bottom]{border-color:transparent transparent var(--cw-color-surface-container-low) transparent;border-width:0 8px 8px;top:-8px}&[data-placement=bottom],&[data-placement=top]{left:var(--arrow-x,50%);transform:translateX(-8px)}&[data-placement=top]{border-color:var(--cw-color-surface-container-low) transparent transparent transparent;border-width:8px 8px 0;bottom:-8px}&[data-placement=right]{border-color:transparent var(--cw-color-surface-container-low) transparent transparent;border-width:8px 8px 8px 0;left:-8px}&[data-placement=left],&[data-placement=right]{top:var(--arrow-y,50%);transform:translateY(-8px)}&[data-placement=left]{border-color:transparent transparent transparent var(--cw-color-surface-container-low);border-width:8px 0 8px 8px;right:-8px}}.cw-pickers-base-module_pickerWrapper__Fb9Zo{align-items:center;display:flex;position:relative}.cw-pickers-base-module_pickerIcons__dyd2-{align-items:center;color:var(--neutral-060,#889);display:flex;gap:.5rem;pointer-events:none;position:absolute;right:.5rem}.cw-pickers-base-module_pickerIcons__dyd2- .cw-button-icon{border-radius:1rem;font-size:var(--cw-font-size-regular);height:1rem;padding:.25rem;pointer-events:auto;width:1rem}.cw-pickers-base-module_pickerIcons__dyd2- .cw-button-icon:hover{background:var(--cw-color-surface-container-highest)}.cw-pickers-base-module_pickerWrapper__Fb9Zo:has(.cw-pickers-base-module_pickerIcons__dyd2-) input{padding-right:1.5rem}.cw-pickers-base-module_pickerWrapper__Fb9Zo input{width:100%}.cw-pickers-base-module_pickerPopup__dkxJo{--shadow-y:3px;animation:cw-pickers-base-module_slideDown__sX6pw .2s ease-out;background:var(--cw-color-surface-container-low);border:1px solid var(--cw-color-outline-variant);border-radius:.5rem;box-shadow:0 calc(var(--shadow-y)*2) 16px rgba(0,0,0,.08),0 var(--shadow-y) 6px rgba(0,0,0,.04),0 calc(var(--shadow-y)*3) 28px rgba(0,0,0,.05);left:0;padding:.5rem 1rem .75rem;position:absolute;top:calc(100% + 4px);z-index:1000;&:is([data-position=left-top],[data-position=right-top]){--shadow-y:-3px;bottom:2rem;top:auto}&:is([data-position=right-bottom],[data-position=right-top]){left:auto;right:0}}@keyframes cw-pickers-base-module_slideDown__sX6pw{0%{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}.cw-pickers-base-module_pickerPopup__dkxJo footer{margin-top:.25rem;button{font-size:var(--cw-font-size-regular);padding:.375rem 1rem}}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-root{--rdp-nav-height:3rem;--rdp-cell-size:2rem;--rdp-day_button-height:var(--rdp-cell-size);--rdp-day_button-width:var(--rdp-cell-size);--rdp-accent-color:var(--cw-color-primary);--rdp-selected-color:var(--cw-color-on-primary);--rdp-accent-color-dark:var(--cw-color-primary-variant);--rdp-range_start-date-background-color:var(--rdp-accent-color);--rdp-range_end-date-background-color:var(--rdp-accent-color);--rdp-selected-border:none;--rdp-day_button-border-radius:4px;margin:0}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-months{flex-wrap:nowrap;gap:1rem}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-month_caption{flex-grow:1;font-size:var(--cw-font-size-medium);font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:500;line-height:150%;min-width:14ch;text-align:center}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-chevron:hover{--rdp-accent-color:var(--cw-color-icons-variant)}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-month{margin:0;width:100%}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-table{border-collapse:separate;border-spacing:0}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-weekdays th{background-color:var(--cw-color-surface-container-highest);color:var(--cw-color-on-surface);font-size:var(--cw-font-size-small);font-weight:600;padding:.25rem;text-align:center;&:first-child{border-radius:.25rem 0 0 .25rem}&:last-child{border-radius:0 .25rem .25rem 0}}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-cell{padding:2px}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day{background:transparent;border:none;border-radius:4px;color:var(--cw-color-on-surface);cursor:pointer;font-size:var(--cw-font-size-small);height:var(--rdp-cell-size);transition:all .2s;width:100%}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day:not(.rdp-disabled):not(.rdp-selected):hover{background-color:var(--cw-color-surface-container-highest)}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day-today{color:var(--rdp-accent-color-dark);font-weight:700;position:relative}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day-today:after{background-color:var(--rdp-accent-color-dark);border-radius:50%;bottom:4px;content:"";height:4px;left:50%;position:absolute;transform:translateX(-50%);width:4px}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-day-today.rdp-selected:after{background-color:var(--rdp-selected-color)}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-selected{background-color:var(--rdp-accent-color);color:var(--rdp-selected-color);font-weight:700;&:hover{--rdp-accent-color:var(--rdp-accent-color-dark)}}.cw-pickers-base-module_pickerPopup__dkxJo .rdp-disabled{background-color:transparent!important;color:var(--cw-color-on-surface-variant);cursor:not-allowed;opacity:.65}.cw-range-picker-module_rangeWrapper__1nIVs{align-items:center;display:flex;gap:.5rem;position:relative}.cw-range-picker-module_rangePopup__E5jd1{display:flex;gap:.5rem;&:has(.cw-range-picker-module_presetList__INiLo){padding-left:.5rem}}.cw-range-picker-module_presetList__INiLo{border-right:1px solid var(--cw-color-outline-variant);display:flex;flex-direction:column;margin-right:.25rem;padding-right:.5rem;width:9rem;button{background:transparent;color:var(--cw-color-on-surface);font-size:var(--cw-font-size-small);text-align:left;transition:all .2s;&:hover{background-color:var(--cw-color-surface-container-highest)}}}.cw-range-picker-module_rangePopup__E5jd1 .rdp-range_middle{background-color:rgba(var(--cw-color-primary-rgb-values),.25);color:var(--cw-color-on-surface);&:hover{background-color:rgba(var(--cw-color-primary-rgb-values),.5)}}.cw-time-picker-module_timePickerPopup__BN63t{overflow:hidden;padding:0}.cw-time-picker-module_timePickerList__E88pr{max-height:15rem;overflow-y:auto;padding:.25rem;scrollbar-width:thin}.cw-time-picker-module_timePickerList__E88pr button{background:transparent;border:none;border-radius:.25rem;color:var(--cw-color-on-surface);cursor:pointer;font-size:var(--cw-font-size-regular);padding:.5rem .75rem;text-align:center;transition:all .2s;width:100%;&:hover{background-color:var(--cw-color-surface-container-highest)}&.cw-time-picker-module_selected__qVnfL{background-color:var(--cw-color-primary);color:var(--cw-color-on-primary);font-weight:600}}input.cw-time-picker-module_hasIcons__ZiGUf{max-width:6rem}input.cw-time-picker-module_notIcons__3icu1{max-width:4.5rem}.cw-datetime-compact-module_compactPopup__GiuNY{display:flex;gap:1rem}.cw-datetime-compact-module_calendarWrapper__P4Nlq{padding:.5rem 0;footer{justify-content:center}}.cw-datetime-compact-module_timeWrapper__uMe-A{display:flex;flex-direction:column;min-width:100px;header{align-items:center;border-bottom:1px solid var(--cw-color-outline-variant);display:flex;font-size:var(--cw-font-size-regular);font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:500;gap:.5rem;justify-content:center;line-height:150%;padding:.75rem .25rem}}.cw-datetime-compact-module_compactTimeList__MzSQT{flex:1;max-height:14rem}body{--scheduler-header-row-height:2rem}.scheduler-header-module_scheduler-header-divisions__1JrNe{display:flex;flex:1;position:relative;.scheduler-header-module_scheduler-timeline-now__naREv:before{background:inherit;border-radius:6px;content:"";height:6px;left:-2px;position:absolute;top:-2px;width:6px}.scheduler-header-module_scheduler-timeline-label__mLVAp{color:red;font-size:var(--cw-font-size-smallest);font-weight:700;left:-3ch;line-height:var(--cw-font-size-smallest);position:absolute;text-align:center;top:-.75rem;width:6ch}}.scheduler-header-module_scheduler-header-title__Jzy94{display:flex;flex-direction:column;flex-shrink:0;>div{align-items:center;background:var(--cw-color-surface-container-high);display:flex;font-size:var(--cw-font-size-small);height:var(--scheduler-header-row-height);justify-content:center;line-height:var(--cw-font-size-medium);&:has(h5){background:var(--cw-color-surface-container-lowest);padding-bottom:.5rem}h5{background-color:transparent;color:var(--cw-color-on-surface-variant);font-size:var(--cw-font-size-regular);font-stretch:var(--cw-font-stretch-semi-condensed);font-weight:700;line-height:var(--cw-font-size-medium);margin:0;padding:0}}}.scheduler-header-module_scheduler-dates__O7ePQ{align-items:center;border-left:1px solid var(--cw-color-surface-container);color:var(--cw-color-on-surface-variant);display:flex;font-size:var(--cw-font-size-small);font-weight:500;height:var(--scheduler-header-row-height);justify-content:flex-start;line-height:var(--cw-font-size-medium);overflow:hidden;padding:.25rem .25rem .75rem;&.scheduler-header-module_current-day__FpHiv{color:var(--cw-color-on-surface);font-weight:700}}.scheduler-header-module_scheduler-hours__ZDCVj{align-items:center;background:var(--cw-color-surface-container-high);border-left:1px solid #fff;display:flex;flex:1;font-size:clamp(.5rem,.125rem + .5vw,.75rem);height:var(--scheduler-header-row-height);justify-content:flex-start;line-height:var(--cw-font-size-medium);overflow:hidden;padding:0 .25rem}.new-scheduler-module_hide-scrollbar__33GG9::-webkit-scrollbar{display:none}.new-scheduler-module_hide-scrollbar__33GG9{-ms-overflow-style:none;scrollbar-width:none}.new-scheduler-module_scheduler-event__gphwn{border-radius:.25rem;display:flex;flex-direction:column;font-size:var(--cw-font-size-smallest);justify-content:space-between;line-height:var(--cw-font-size-small);overflow:hidden}.new-scheduler-module_scheduler-event-container__-h1xm{align-items:center;container-name:event;container-type:size;display:flex;flex:1;flex-direction:row;overflow:hidden;white-space:nowrap}.new-scheduler-module_scheduler-event__gphwn>.new-scheduler-module_time-marker__2BejU{height:3px;width:100%}.new-scheduler-module_scheduler-event-container__-h1xm .cwi-icons{font-size:1rem}@container event (width < 30px){span.new-scheduler-module_scheduler-event-text__zjvd7{display:none}}@container event (width < 12px){.cwi-icons{display:none}}.scheduler-row-module_scheduler-row-header__S-iv4{align-items:flex-start;border-right:1px solid #fff;cursor:pointer;display:flex;flex-direction:column;font-size:var(--cw-font-size-smallest);justify-content:center;line-height:var(--cw-font-size-smallest);padding:.25rem 1rem}.super-scheduler-module_super-scheduler-row-header__TTs4e{align-items:center;border-right:1px solid #fff;display:flex;font-size:var(--cw-font-size-smallest);gap:.25rem;justify-content:flex-start;line-height:var(--cw-font-size-regular);position:relative;>button:first-child{color:var(--cw-color-on-surface-variant);font-size:1rem;height:1.5rem;width:1.5rem;&[data-pinned=true]:before{transform:rotate(-45deg)}}>.super-scheduler-module_indicators__f4lIT{align-items:center;display:flex;flex-direction:column;flex-shrink:0;gap:.25rem;width:1rem}>.super-scheduler-module_indicators__f4lIT+div{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;justify-content:center}div:has(.super-scheduler-module_scheduler-crewmember-functions__BS2hs){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.super-scheduler-module_super-scheduler-row-header__TTs4e .cwi-spinner{font-size:.875rem}.super-scheduler-module_scheduler-crewmember-functions__BS2hs{color:var(--cw-color-primary-variant);opacity:.5;padding-left:.125rem}
|
package/dist/index.d.ts
CHANGED
|
@@ -800,14 +800,14 @@ interface CwTableServerSideProps<T = any> {
|
|
|
800
800
|
* @param props - Component props to configure columns, data, styles, pagination, expanded rows, and more.
|
|
801
801
|
*
|
|
802
802
|
* @example
|
|
803
|
-
* // ---
|
|
803
|
+
* // --- Component ---
|
|
804
804
|
* const columns: Column<User>[] = [
|
|
805
805
|
* { title: "Name", dataIndex: "name", key: "name", sortable: true },
|
|
806
806
|
* { title: "Age", dataIndex: "age", key: "age", sortable: true },
|
|
807
807
|
* { title: "Address", dataIndex: "address", key: "address" }
|
|
808
808
|
* ];
|
|
809
809
|
*
|
|
810
|
-
*
|
|
810
|
+
*
|
|
811
811
|
* const [tableState, setTableState] = useState<ServerSideTableState<User>>({
|
|
812
812
|
* page: 1,
|
|
813
813
|
* pageSize: 5,
|
|
@@ -818,7 +818,7 @@ interface CwTableServerSideProps<T = any> {
|
|
|
818
818
|
* const [totalItems, setTotalItems] = useState(0);
|
|
819
819
|
* const [loading, setLoading] = useState(false);
|
|
820
820
|
*
|
|
821
|
-
* //
|
|
821
|
+
* // Fetch simulation on table state change
|
|
822
822
|
* useEffect(() => {
|
|
823
823
|
* setLoading(true);
|
|
824
824
|
* fetch(`/api/users?page=${tableState.page}&pageSize=${tableState.pageSize}` +
|
package/dist/index.es.js
CHANGED
|
@@ -8,7 +8,7 @@ import Draggable from 'react-draggable';
|
|
|
8
8
|
import moment from 'moment';
|
|
9
9
|
import { format } from 'date-fns';
|
|
10
10
|
import { enGB } from 'date-fns/locale';
|
|
11
|
-
import { DayPicker
|
|
11
|
+
import { DayPicker } from 'react-day-picker';
|
|
12
12
|
import 'react-day-picker/dist/style.css';
|
|
13
13
|
import { cloneDeep } from 'lodash-es';
|
|
14
14
|
import { VariableSizeList } from 'react-window';
|
|
@@ -1730,14 +1730,14 @@ function CwTable({ columns, data, pagination = false, pageSizeOptions = [5, 10,
|
|
|
1730
1730
|
* @param props - Component props to configure columns, data, styles, pagination, expanded rows, and more.
|
|
1731
1731
|
*
|
|
1732
1732
|
* @example
|
|
1733
|
-
* // ---
|
|
1733
|
+
* // --- Component ---
|
|
1734
1734
|
* const columns: Column<User>[] = [
|
|
1735
1735
|
* { title: "Name", dataIndex: "name", key: "name", sortable: true },
|
|
1736
1736
|
* { title: "Age", dataIndex: "age", key: "age", sortable: true },
|
|
1737
1737
|
* { title: "Address", dataIndex: "address", key: "address" }
|
|
1738
1738
|
* ];
|
|
1739
1739
|
*
|
|
1740
|
-
*
|
|
1740
|
+
*
|
|
1741
1741
|
* const [tableState, setTableState] = useState<ServerSideTableState<User>>({
|
|
1742
1742
|
* page: 1,
|
|
1743
1743
|
* pageSize: 5,
|
|
@@ -1748,7 +1748,7 @@ function CwTable({ columns, data, pagination = false, pageSizeOptions = [5, 10,
|
|
|
1748
1748
|
* const [totalItems, setTotalItems] = useState(0);
|
|
1749
1749
|
* const [loading, setLoading] = useState(false);
|
|
1750
1750
|
*
|
|
1751
|
-
* //
|
|
1751
|
+
* // Fetch simulation on table state change
|
|
1752
1752
|
* useEffect(() => {
|
|
1753
1753
|
* setLoading(true);
|
|
1754
1754
|
* fetch(`/api/users?page=${tableState.page}&pageSize=${tableState.pageSize}` +
|
|
@@ -1794,9 +1794,7 @@ function CwTableServerSide({ columns, data, totalItems, pagination = false, page
|
|
|
1794
1794
|
useEffect(() => {
|
|
1795
1795
|
setSelectedKeys(new Set(rowSelection?.selectedRowKeys || []));
|
|
1796
1796
|
}, [rowSelection?.selectedRowKeys]);
|
|
1797
|
-
// Usar estado controlado o interno
|
|
1798
1797
|
const state = serverState ?? internalState;
|
|
1799
|
-
// Notificar cambios al padre
|
|
1800
1798
|
const triggerChange = useCallback((next) => {
|
|
1801
1799
|
const newState = { ...state, ...next };
|
|
1802
1800
|
if (!serverState)
|
|
@@ -1919,7 +1917,7 @@ function CwTableServerSide({ columns, data, totalItems, pagination = false, page
|
|
|
1919
1917
|
? "sortable"
|
|
1920
1918
|
: state.sortDirection === "asc"
|
|
1921
1919
|
? "sortable-asc"
|
|
1922
|
-
: "sortable-desc" }))] }), jsx("span", { onMouseDown: (e) => startResize(e, col.key), className: "th-column-resizer" })] }, col.key)))] }) }), jsx("tbody", { children: renderTableBody() })] }) }), pagination &&
|
|
1920
|
+
: "sortable-desc" }))] }), jsx("span", { onMouseDown: (e) => startResize(e, col.key), className: "th-column-resizer" })] }, col.key)))] }) }), jsx("tbody", { children: renderTableBody() })] }) }), pagination && (jsxs("footer", { className: "cw-table-pagination", children: [jsx("button", { onClick: () => handlePageChange(1), disabled: state.page === 1 || totalPages === 1, className: "cw-button-icon cwi-chevron-left-double", title: "First" }), jsx("button", { onClick: () => handlePageChange(state.page - 1), disabled: state.page === 1 || totalPages === 1, className: "cw-button-icon cwi-chevron-left", title: "Previous" }), jsx("input", { type: "text", inputMode: "numeric", value: state.page, onChange: (e) => {
|
|
1923
1921
|
const value = parseInt(e.target.value, 10);
|
|
1924
1922
|
if (!isNaN(value))
|
|
1925
1923
|
handlePageChange(value);
|
|
@@ -4296,12 +4294,8 @@ function CwBtnDelete({ cw_btnOnclick, cw_btn_disabled, onClick, disabled, ...res
|
|
|
4296
4294
|
return (jsx(CwButton, { ...rest, variant: "icon", icon: "delete", color: "danger", onClick: onClick ?? cw_btnOnclick, disabled: disabled ?? cw_btn_disabled }));
|
|
4297
4295
|
}
|
|
4298
4296
|
|
|
4299
|
-
var styles$4 = {"pickerWrapper":"cw-pickers-base-module_pickerWrapper__Fb9Zo","pickerIcons":"cw-pickers-base-module_pickerIcons__dyd2-","pickerPopup":"cw-pickers-base-module_pickerPopup__dkxJo"
|
|
4297
|
+
var styles$4 = {"pickerWrapper":"cw-pickers-base-module_pickerWrapper__Fb9Zo","pickerIcons":"cw-pickers-base-module_pickerIcons__dyd2-","pickerPopup":"cw-pickers-base-module_pickerPopup__dkxJo"};
|
|
4300
4298
|
|
|
4301
|
-
function CustomCaption$2({ displayMonth }) {
|
|
4302
|
-
const { goToMonth, nextMonth, previousMonth } = useNavigation();
|
|
4303
|
-
return (jsxs("header", { children: [jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-left", onClick: () => previousMonth && goToMonth(previousMonth), disabled: !previousMonth, "aria-label": "Previous month" }), jsx("div", { className: styles$4.title, children: format(displayMonth, "MMMM yyyy", { locale: enGB }) }), jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-right", onClick: () => nextMonth && goToMonth(nextMonth), disabled: !nextMonth, "aria-label": "Next month" })] }));
|
|
4304
|
-
}
|
|
4305
4299
|
function CwDatePicker({ value, onChange, minDate, maxDate, disabledDates, disabledMatcher, defaultMonth, labelProps, alignProps, placeholder = "Select a date", displayFormat = "dd.MM.yyyy", disabled, required, className, showClear = true, popupPosition = "left-bottom", numberOfMonths = 1, showTodayButton = false, }) {
|
|
4306
4300
|
const [isOpen, setIsOpen] = useState(false);
|
|
4307
4301
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -4472,11 +4466,6 @@ function CwDatePicker({ value, onChange, minDate, maxDate, disabledDates, disabl
|
|
|
4472
4466
|
setIsOpen(false);
|
|
4473
4467
|
}
|
|
4474
4468
|
}, [minDate, maxDate, onChange]);
|
|
4475
|
-
// Memoize formatters
|
|
4476
|
-
const formatters = useMemo(() => ({
|
|
4477
|
-
formatCaption: (date) => format(date, "MMMM yyyy", { locale: enGB }),
|
|
4478
|
-
formatWeekdayName: (date) => format(date, "EEEEEE", { locale: enGB })
|
|
4479
|
-
}), []);
|
|
4480
4469
|
// Memoize disabled days
|
|
4481
4470
|
const disabledDays = useMemo(() => [
|
|
4482
4471
|
...(disabledDates || []),
|
|
@@ -4484,12 +4473,10 @@ function CwDatePicker({ value, onChange, minDate, maxDate, disabledDates, disabl
|
|
|
4484
4473
|
...(maxDate ? [{ after: maxDate }] : []),
|
|
4485
4474
|
...(disabledMatcher ? [disabledMatcher] : []),
|
|
4486
4475
|
], [disabledDates, minDate, maxDate, disabledMatcher]);
|
|
4487
|
-
return (jsx("div", { ref: containerRef, className: `cw-datepicker ${className || ""}`, children: jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxs("div", { className: styles$4.pickerWrapper, children: [jsx("input", { ref: inputRef, type: "text", value: inputValue, placeholder: placeholder, onChange: handleInputChange, onBlur: handleInputBlur, onClick: handleInputClick, onKeyDown: handleInputKeyDown, disabled: disabled, required: required }), jsx("div", { className: styles$4.pickerIcons, children: showClear && value && !disabled ? (jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClear, tabIndex: -1, "aria-label": "Clear date" })) : (jsx(CwIcon, { iconId: "calendar" })) }), isOpen && (jsxs("div", { className: styles$4.pickerPopup, "data-position": popupPosition, children: [jsx(DayPicker, { mode: "single", selected: value || undefined, defaultMonth: defaultMonth || value || undefined, onSelect: handleDaySelect, disabled: disabledDays,
|
|
4488
|
-
Caption: (props) => (jsx(CustomCaption$2, { ...props })),
|
|
4489
|
-
}, modifiers: {
|
|
4476
|
+
return (jsx("div", { ref: containerRef, className: `cw-datepicker ${className || ""}`, children: jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxs("div", { className: styles$4.pickerWrapper, children: [jsx("input", { ref: inputRef, type: "text", value: inputValue, placeholder: placeholder, onChange: handleInputChange, onBlur: handleInputBlur, onClick: handleInputClick, onKeyDown: handleInputKeyDown, disabled: disabled, required: required }), jsx("div", { className: styles$4.pickerIcons, children: showClear && value && !disabled ? (jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClear, tabIndex: -1, "aria-label": "Clear date" })) : (jsx(CwIcon, { iconId: "calendar" })) }), isOpen && (jsxs("div", { className: styles$4.pickerPopup, "data-position": popupPosition, children: [jsx(DayPicker, { mode: "single", selected: value || undefined, defaultMonth: defaultMonth || value || undefined, onSelect: handleDaySelect, disabled: disabledDays, numberOfMonths: numberOfMonths, modifiers: {
|
|
4490
4477
|
today: new Date(),
|
|
4491
4478
|
}, modifiersClassNames: {
|
|
4492
|
-
today: "rdp-
|
|
4479
|
+
today: "rdp-day-today",
|
|
4493
4480
|
} }), showTodayButton && (jsx("footer", { className: "cw-flex-row cw-align-right-center", children: jsx(CwButton, { type: "button", variant: "outline", onClick: handleTodayClick, text: "Today" }) }))] }))] })] }) }));
|
|
4494
4481
|
}
|
|
4495
4482
|
|
|
@@ -4764,10 +4751,6 @@ const getPresetsByKeys = (keys) => {
|
|
|
4764
4751
|
.filter(preset => preset !== undefined);
|
|
4765
4752
|
};
|
|
4766
4753
|
|
|
4767
|
-
function CustomCaption$1({ displayMonth }) {
|
|
4768
|
-
const { goToMonth, nextMonth, previousMonth } = useNavigation();
|
|
4769
|
-
return (jsxs("header", { children: [jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-left", onClick: () => previousMonth && goToMonth(previousMonth), disabled: !previousMonth, "aria-label": "Previous month" }), jsx("div", { className: styles$4.title, children: format(displayMonth, "MMMM yyyy", { locale: enGB }) }), jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-right", onClick: () => nextMonth && goToMonth(nextMonth), disabled: !nextMonth, "aria-label": "Next month" })] }));
|
|
4770
|
-
}
|
|
4771
4754
|
function CwDateRangePicker({ value, onChange, minDate, maxDate, disabledDates, disabledMatcher, maxRangeDays, defaultMonth, labelProps, alignProps, placeholderFrom = "From date", placeholderTo = "To date", displayFormat = "dd.MM.yyyy", disabled, required, className, showClear = true, popupPosition = "left-bottom", numberOfMonths = 2, showPresets = false, presetKeys, customPresets, }) {
|
|
4772
4755
|
const [isOpen, setIsOpen] = useState(false);
|
|
4773
4756
|
const [inputFromValue, setInputFromValue] = useState("");
|
|
@@ -5081,11 +5064,6 @@ function CwDateRangePicker({ value, onChange, minDate, maxDate, disabledDates, d
|
|
|
5081
5064
|
onChange(preset.getValue());
|
|
5082
5065
|
setIsOpen(false);
|
|
5083
5066
|
}, [onChange]);
|
|
5084
|
-
// Memoize formatters
|
|
5085
|
-
const formatters = useMemo(() => ({
|
|
5086
|
-
formatCaption: (date) => format(date, "MMMM yyyy", { locale: enGB }),
|
|
5087
|
-
formatWeekdayName: (date) => format(date, "EEEEEE", { locale: enGB })
|
|
5088
|
-
}), []);
|
|
5089
5067
|
// Memoize disabled days
|
|
5090
5068
|
const disabledDays = useMemo(() => {
|
|
5091
5069
|
const baseDisabled = [
|
|
@@ -5125,12 +5103,10 @@ function CwDateRangePicker({ value, onChange, minDate, maxDate, disabledDates, d
|
|
|
5125
5103
|
}
|
|
5126
5104
|
return undefined;
|
|
5127
5105
|
}, [value]);
|
|
5128
|
-
return (jsx("div", { ref: containerRef, className: `cw-rangepicker ${className || ""}`, children: jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxs("div", { className: rangeStyles.rangeWrapper, children: [jsxs("div", { className: styles$4.pickerWrapper, children: [jsx("input", { ref: inputFromRef, type: "text", value: inputFromValue, placeholder: placeholderFrom, onChange: handleInputFromChange, onBlur: () => handleInputBlur('from'), onClick: handleInputFromClick, onKeyDown: (e) => handleInputKeyDown(e, 'from'), disabled: disabled, required: required, "data-focused": focusedInput === 'from' }), jsx("div", { className: styles$4.pickerIcons, children: showClear && value?.from && !disabled ? (jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClearFrom, tabIndex: -1, "aria-label": "Clear from date" })) : (jsx(CwIcon, { iconId: "calendar" })) })] }), jsx(CwIcon, { iconId: "arrow-right", size: "medium" }), jsxs("div", { className: styles$4.pickerWrapper, children: [jsx("input", { ref: inputToRef, type: "text", value: inputToValue, placeholder: placeholderTo, onChange: handleInputToChange, onBlur: () => handleInputBlur('to'), onClick: handleInputToClick, onKeyDown: (e) => handleInputKeyDown(e, 'to'), disabled: disabled, required: required, "data-focused": focusedInput === 'to' }), jsx("div", { className: styles$4.pickerIcons, children: showClear && value?.to && !disabled ? (jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClearTo, tabIndex: -1, "aria-label": "Clear to date" })) : (jsx(CwIcon, { iconId: "calendar" })) })] }), isOpen && (jsxs("div", { className: `${styles$4.pickerPopup} ${rangeStyles.rangePopup}`, "data-position": popupPosition, children: [showPresets && presetsToRender.length > 0 && (jsx("div", { className: rangeStyles.presetList, children: presetsToRender.map((preset) => (jsx("button", { type: "button", onClick: (e) => handlePresetClick(preset, e), children: preset.label }, preset.key))) })), jsx(DayPicker, { mode: "range", selected: selectedRange, onSelect: handleRangeSelect, disabled: disabledDays,
|
|
5129
|
-
Caption: (props) => jsx(CustomCaption$1, { ...props }),
|
|
5130
|
-
}, modifiers: {
|
|
5106
|
+
return (jsx("div", { ref: containerRef, className: `cw-rangepicker ${className || ""}`, children: jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxs("div", { className: rangeStyles.rangeWrapper, children: [jsxs("div", { className: styles$4.pickerWrapper, children: [jsx("input", { ref: inputFromRef, type: "text", value: inputFromValue, placeholder: placeholderFrom, onChange: handleInputFromChange, onBlur: () => handleInputBlur('from'), onClick: handleInputFromClick, onKeyDown: (e) => handleInputKeyDown(e, 'from'), disabled: disabled, required: required, "data-focused": focusedInput === 'from' }), jsx("div", { className: styles$4.pickerIcons, children: showClear && value?.from && !disabled ? (jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClearFrom, tabIndex: -1, "aria-label": "Clear from date" })) : (jsx(CwIcon, { iconId: "calendar" })) })] }), jsx(CwIcon, { iconId: "arrow-right", size: "medium" }), jsxs("div", { className: styles$4.pickerWrapper, children: [jsx("input", { ref: inputToRef, type: "text", value: inputToValue, placeholder: placeholderTo, onChange: handleInputToChange, onBlur: () => handleInputBlur('to'), onClick: handleInputToClick, onKeyDown: (e) => handleInputKeyDown(e, 'to'), disabled: disabled, required: required, "data-focused": focusedInput === 'to' }), jsx("div", { className: styles$4.pickerIcons, children: showClear && value?.to && !disabled ? (jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClearTo, tabIndex: -1, "aria-label": "Clear to date" })) : (jsx(CwIcon, { iconId: "calendar" })) })] }), isOpen && (jsxs("div", { className: `${styles$4.pickerPopup} ${rangeStyles.rangePopup}`, "data-position": popupPosition, children: [showPresets && presetsToRender.length > 0 && (jsx("div", { className: rangeStyles.presetList, children: presetsToRender.map((preset) => (jsx("button", { type: "button", onClick: (e) => handlePresetClick(preset, e), children: preset.label }, preset.key))) })), jsx(DayPicker, { mode: "range", selected: selectedRange, onSelect: handleRangeSelect, disabled: disabledDays, numberOfMonths: numberOfMonths, defaultMonth: defaultMonth || value?.from || undefined, modifiers: {
|
|
5131
5107
|
today: new Date(),
|
|
5132
5108
|
}, modifiersClassNames: {
|
|
5133
|
-
today: "rdp-
|
|
5109
|
+
today: "rdp-day-today",
|
|
5134
5110
|
} })] }))] })] }) }));
|
|
5135
5111
|
}
|
|
5136
5112
|
|
|
@@ -5521,10 +5497,6 @@ function CwDateTimePicker({ value, onChange, minDateTime, maxDateTime, disabledD
|
|
|
5521
5497
|
|
|
5522
5498
|
var compactStyles = {"compactPopup":"cw-datetime-compact-module_compactPopup__GiuNY","calendarWrapper":"cw-datetime-compact-module_calendarWrapper__P4Nlq","timeWrapper":"cw-datetime-compact-module_timeWrapper__uMe-A","compactTimeList":"cw-datetime-compact-module_compactTimeList__MzSQT"};
|
|
5523
5499
|
|
|
5524
|
-
function CustomCaption({ displayMonth }) {
|
|
5525
|
-
const { goToMonth, nextMonth, previousMonth } = useNavigation();
|
|
5526
|
-
return (jsxs("header", { children: [jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-left", onClick: () => previousMonth && goToMonth(previousMonth), disabled: !previousMonth, "aria-label": "Previous month" }), jsx("div", { className: styles$4.title, children: format(displayMonth, "MMMM yyyy", { locale: enGB }) }), jsx(CwButton, { type: "button", variant: "icon", icon: "chevron-right", onClick: () => nextMonth && goToMonth(nextMonth), disabled: !nextMonth, "aria-label": "Next month" })] }));
|
|
5527
|
-
}
|
|
5528
5500
|
function CwDateTimePickerCompact({ value, onChange, minDateTime, maxDateTime, disabledDates, disabledMatcher, timeInterval = 15, minTime, maxTime, labelProps, alignProps, placeholder = "dd.mm.yyyy HH:mm", disabled, required, className, showClear = true, popupPosition = "left-bottom", numberOfMonths = 1, showTodayButton = false, }) {
|
|
5529
5501
|
const [isOpen, setIsOpen] = useState(false);
|
|
5530
5502
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -5755,11 +5727,6 @@ function CwDateTimePickerCompact({ value, onChange, minDateTime, maxDateTime, di
|
|
|
5755
5727
|
setIsOpen(false);
|
|
5756
5728
|
}
|
|
5757
5729
|
}, [minDateTime, maxDateTime, onChange]);
|
|
5758
|
-
// Memoize formatters
|
|
5759
|
-
const formatters = useMemo(() => ({
|
|
5760
|
-
formatCaption: (date) => format(date, "MMMM yyyy", { locale: enGB }),
|
|
5761
|
-
formatWeekdayName: (date) => format(date, "EEEEEE", { locale: enGB })
|
|
5762
|
-
}), []);
|
|
5763
5730
|
// Memoize disabled days
|
|
5764
5731
|
const disabledDays = useMemo(() => [
|
|
5765
5732
|
...(disabledDates || []),
|
|
@@ -5767,12 +5734,10 @@ function CwDateTimePickerCompact({ value, onChange, minDateTime, maxDateTime, di
|
|
|
5767
5734
|
...(maxDateTime ? [{ after: maxDateTime }] : []),
|
|
5768
5735
|
...(disabledMatcher ? [disabledMatcher] : []),
|
|
5769
5736
|
], [disabledDates, minDateTime, maxDateTime, disabledMatcher]);
|
|
5770
|
-
return (jsx("div", { ref: containerRef, className: `cw-datetimepicker ${className || ""}`, children: jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxs("div", { className: styles$4.pickerWrapper, children: [jsx("input", { ref: inputRef, type: "text", value: inputValue, placeholder: placeholder, onChange: handleInputChange, onBlur: handleInputBlur, onClick: handleInputClick, onKeyDown: handleInputKeyDown, disabled: disabled, required: required, maxLength: 16, style: { width: "24ch" } }), jsx("div", { className: styles$4.pickerIcons, children: showClear && value && !disabled ? (jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClear, tabIndex: -1, "aria-label": "Clear datetime" })) : (jsx(CwIcon, { iconId: "calendar-time" })) }), isOpen && (jsxs("div", { className: `${styles$4.pickerPopup} ${compactStyles.compactPopup}`, "data-position": popupPosition, children: [jsxs("div", { className: compactStyles.calendarWrapper, children: [jsx(DayPicker, { mode: "single", selected: selectedDate, onSelect: handleDaySelect, defaultMonth: selectedDate, disabled: disabledDays,
|
|
5771
|
-
Caption: (props) => jsx(CustomCaption, { ...props }),
|
|
5772
|
-
}, modifiers: {
|
|
5737
|
+
return (jsx("div", { ref: containerRef, className: `cw-datetimepicker ${className || ""}`, children: jsxs(CwAlign, { ...alignProps, itemProp: required ? "required" : "", children: [labelProps && (jsx(CwLabel, { ...labelProps, children: labelProps.text })), jsxs("div", { className: styles$4.pickerWrapper, children: [jsx("input", { ref: inputRef, type: "text", value: inputValue, placeholder: placeholder, onChange: handleInputChange, onBlur: handleInputBlur, onClick: handleInputClick, onKeyDown: handleInputKeyDown, disabled: disabled, required: required, maxLength: 16, style: { width: "24ch" } }), jsx("div", { className: styles$4.pickerIcons, children: showClear && value && !disabled ? (jsx(CwButton, { type: "button", variant: "icon", color: "neutral", icon: "close", onClick: handleClear, tabIndex: -1, "aria-label": "Clear datetime" })) : (jsx(CwIcon, { iconId: "calendar-time" })) }), isOpen && (jsxs("div", { className: `${styles$4.pickerPopup} ${compactStyles.compactPopup}`, "data-position": popupPosition, children: [jsxs("div", { className: compactStyles.calendarWrapper, children: [jsx(DayPicker, { mode: "single", selected: selectedDate, onSelect: handleDaySelect, defaultMonth: selectedDate, disabled: disabledDays, numberOfMonths: numberOfMonths, modifiers: {
|
|
5773
5738
|
today: new Date(),
|
|
5774
5739
|
}, modifiersClassNames: {
|
|
5775
|
-
today: "rdp-
|
|
5740
|
+
today: "rdp-day-today",
|
|
5776
5741
|
} }), showTodayButton && (jsx("footer", { className: "cw-flex-row cw-align-center-center", children: jsx(CwButton, { type: "button", variant: "outline", icon: "check-big", onClick: handleNowClick, text: "Now" }) }))] }), jsxs("div", { className: compactStyles.timeWrapper, children: [jsxs("header", { children: [jsx(CwIcon, { iconId: "clock", size: "medium" }), jsx("span", { children: "Time" })] }), jsx("div", { ref: timeListRef, className: `${timeStyles.timePickerList} ${compactStyles.compactTimeList}`, children: timeOptions.map((time) => {
|
|
5777
5742
|
const isSelected = time === selectedTime;
|
|
5778
5743
|
return (jsx("button", { type: "button", className: isSelected ? timeStyles.selected : "", onClick: () => handleTimeSelect(time), children: time }, time));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CwDatePicker.d.ts","sourceRoot":"","sources":["../../../../../../src/components/control/input/new-dates/CwDatePicker.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAa,OAAO,
|
|
1
|
+
{"version":3,"file":"CwDatePicker.d.ts","sourceRoot":"","sources":["../../../../../../src/components/control/input/new-dates/CwDatePicker.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAa,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,iCAAiC,CAAC;AAEzC,OAAO,EAAW,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAC5E,OAAO,EAAW,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAItE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC;AAElC,MAAM,WAAW,iBAAiB;IACjC,4BAA4B;IAC5B,KAAK,CAAC,EAAE,IAAI,CAAC;IACb,iCAAiC;IACjC,QAAQ,EAAE,CAAC,IAAI,EAAE,IAAI,GAAG,SAAS,KAAK,IAAI,CAAC;IAG3C,8BAA8B;IAC9B,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,8BAA8B;IAC9B,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,yCAAyC;IACzC,aAAa,CAAC,EAAE,IAAI,EAAE,CAAC;IACvB,yDAAyD;IACzD,eAAe,CAAC,EAAE,WAAW,CAAC;IAC9B,mDAAmD;IACnD,YAAY,CAAC,EAAE,IAAI,CAAC;IAGpB,gCAAgC;IAChC,UAAU,CAAC,EAAE,YAAY,CAAC;IAC1B,0BAA0B;IAC1B,UAAU,CAAC,EAAE,YAAY,CAAC;IAG1B,iCAAiC;IACjC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,yDAAyD;IACzD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,4BAA4B;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,4BAA4B;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,yCAAyC;IACzC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,wBAAwB;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,sBAAsB;IACtB,aAAa,CAAC,EAAE,aAAa,GAAG,UAAU,GAAG,WAAW,GAAG,cAAc,CAAC;IAG1E,+CAA+C;IAC/C,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC1B;AAGD,wBAAgB,YAAY,CAAC,EAC5B,KAAK,EACL,QAAQ,EACR,OAAO,EACP,OAAO,EACP,aAAa,EACb,eAAe,EACf,YAAY,EACZ,UAAU,EACV,UAAU,EACV,WAA6B,EAC7B,aAA4B,EAC5B,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,SAAgB,EAChB,aAA6B,EAC7B,cAAkB,EAClB,eAAuB,GACvB,EAAE,QAAQ,CAAC,iBAAiB,CAAC,2CAyR7B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CwDateRangePicker.d.ts","sourceRoot":"","sources":["../../../../../../src/components/control/input/new-dates/CwDateRangePicker.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAwB,OAAO,
|
|
1
|
+
{"version":3,"file":"CwDateRangePicker.d.ts","sourceRoot":"","sources":["../../../../../../src/components/control/input/new-dates/CwDateRangePicker.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAwB,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAEjE,OAAO,EAAW,YAAY,EAAE,MAAM,mDAAmD,CAAC;AAC1F,OAAO,EAAW,YAAY,EAAE,MAAM,6CAA6C,CAAC;AAIpF,OAAO,EAAE,KAAK,eAAe,EAAoB,MAAM,oBAAoB,CAAC;AAE5E,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC;AAElC,MAAM,WAAW,cAAc;IAC9B,IAAI,EAAE,IAAI,GAAG,SAAS,CAAC;IACvB,EAAE,EAAE,IAAI,GAAG,SAAS,CAAC;CACrB;AAED,MAAM,WAAW,sBAAsB;IACtC,kCAAkC;IAClC,KAAK,CAAC,EAAE,cAAc,CAAC;IACvB,uCAAuC;IACvC,QAAQ,EAAE,CAAC,KAAK,EAAE,cAAc,GAAG,SAAS,KAAK,IAAI,CAAC;IAGtD,8BAA8B;IAC9B,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,8BAA8B;IAC9B,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,yCAAyC;IACzC,aAAa,CAAC,EAAE,IAAI,EAAE,CAAC;IACvB,yDAAyD;IACzD,eAAe,CAAC,EAAE,WAAW,CAAC;IAC9B,yDAAyD;IACzD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,mDAAmD;IACnD,YAAY,CAAC,EAAE,IAAI,CAAC;IAGpB,gCAAgC;IAChC,UAAU,CAAC,EAAE,YAAY,CAAC;IAC1B,0BAA0B;IAC1B,UAAU,CAAC,EAAE,YAAY,CAAC;IAG1B,wCAAwC;IACxC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,sCAAsC;IACtC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,0DAA0D;IAC1D,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,4BAA4B;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,4BAA4B;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,yCAAyC;IACzC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yBAAyB;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,sBAAsB;IACtB,aAAa,CAAC,EAAE,aAAa,GAAG,UAAU,GAAG,WAAW,GAAG,cAAc,CAAC;IAG1E,0DAA0D;IAC1D,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB;;OAEG;IACH,aAAa,CAAC,EAAE,eAAe,EAAE,CAAC;CAClC;AAGD,wBAAgB,iBAAiB,CAAC,EACjC,KAAK,EACL,QAAQ,EACR,OAAO,EACP,OAAO,EACP,aAAa,EACb,eAAe,EACf,YAAY,EACZ,YAAY,EACZ,UAAU,EACV,UAAU,EACV,eAA6B,EAC7B,aAAyB,EACzB,aAA4B,EAC5B,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,SAAgB,EAChB,aAA6B,EAC7B,cAAkB,EAClB,WAAmB,EACnB,UAAU,EACV,aAAa,GACb,EAAE,QAAQ,CAAC,sBAAsB,CAAC,2CAwgBlC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CwDateTimePickerCompact.d.ts","sourceRoot":"","sources":["../../../../../../src/components/control/input/new-dates/CwDateTimePickerCompact.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAa,OAAO,
|
|
1
|
+
{"version":3,"file":"CwDateTimePickerCompact.d.ts","sourceRoot":"","sources":["../../../../../../src/components/control/input/new-dates/CwDateTimePickerCompact.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAa,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,iCAAiC,CAAC;AAEzC,OAAO,EAAW,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAC5E,OAAO,EAAW,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAMtE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC;AAElC,MAAM,WAAW,4BAA4B;IAC5C,gCAAgC;IAChC,KAAK,CAAC,EAAE,IAAI,CAAC;IACb,qCAAqC;IACrC,QAAQ,EAAE,CAAC,QAAQ,EAAE,IAAI,GAAG,SAAS,KAAK,IAAI,CAAC;IAG/C,kCAAkC;IAClC,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,kCAAkC;IAClC,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,yCAAyC;IACzC,aAAa,CAAC,EAAE,IAAI,EAAE,CAAC;IACvB,yDAAyD;IACzD,eAAe,CAAC,EAAE,WAAW,CAAC;IAG9B,2DAA2D;IAC3D,YAAY,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACrC,gDAAgD;IAChD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,gDAAgD;IAChD,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,gCAAgC;IAChC,UAAU,CAAC,EAAE,YAAY,CAAC;IAC1B,0BAA0B;IAC1B,UAAU,CAAC,EAAE,YAAY,CAAC;IAG1B,iCAAiC;IACjC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,4BAA4B;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,4BAA4B;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,yCAAyC;IACzC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,wBAAwB;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,sBAAsB;IACtB,aAAa,CAAC,EAAE,aAAa,GAAG,UAAU,GAAG,WAAW,GAAG,cAAc,CAAC;IAE1E,+CAA+C;IAC/C,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,wBAAgB,uBAAuB,CAAC,EACvC,KAAK,EACL,QAAQ,EACR,WAAW,EACX,WAAW,EACX,aAAa,EACb,eAAe,EACf,YAAiB,EACjB,OAAO,EACP,OAAO,EACP,UAAU,EACV,UAAU,EACV,WAAgC,EAChC,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,SAAgB,EAChB,aAA6B,EAC7B,cAAkB,EAClB,eAAuB,GACvB,EAAE,QAAQ,CAAC,4BAA4B,CAAC,2CAkYxC"}
|
|
@@ -49,14 +49,14 @@ export interface CwTableServerSideProps<T = any> {
|
|
|
49
49
|
* @param props - Component props to configure columns, data, styles, pagination, expanded rows, and more.
|
|
50
50
|
*
|
|
51
51
|
* @example
|
|
52
|
-
* // ---
|
|
52
|
+
* // --- Component ---
|
|
53
53
|
* const columns: Column<User>[] = [
|
|
54
54
|
* { title: "Name", dataIndex: "name", key: "name", sortable: true },
|
|
55
55
|
* { title: "Age", dataIndex: "age", key: "age", sortable: true },
|
|
56
56
|
* { title: "Address", dataIndex: "address", key: "address" }
|
|
57
57
|
* ];
|
|
58
58
|
*
|
|
59
|
-
*
|
|
59
|
+
*
|
|
60
60
|
* const [tableState, setTableState] = useState<ServerSideTableState<User>>({
|
|
61
61
|
* page: 1,
|
|
62
62
|
* pageSize: 5,
|
|
@@ -67,7 +67,7 @@ export interface CwTableServerSideProps<T = any> {
|
|
|
67
67
|
* const [totalItems, setTotalItems] = useState(0);
|
|
68
68
|
* const [loading, setLoading] = useState(false);
|
|
69
69
|
*
|
|
70
|
-
* //
|
|
70
|
+
* // Fetch simulation on table state change
|
|
71
71
|
* useEffect(() => {
|
|
72
72
|
* setLoading(true);
|
|
73
73
|
* fetch(`/api/users?page=${tableState.page}&pageSize=${tableState.pageSize}` +
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CwTableServerSide.d.ts","sourceRoot":"","sources":["../../../../../../src/components/display/data/table-serverside/CwTableServerSide.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoD,MAAM,OAAO,CAAC;AAEzE,MAAM,WAAW,oBAAoB,CAAC,CAAC,GAAG,GAAG;IAC5C,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC,GAAG,IAAI,CAAC;IACzB,aAAa,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,IAAI,CAAC;CACtC;AAED,MAAM,WAAW,MAAM,CAAC,CAAC,GAAG,GAAG;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;IACtC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,QAAQ;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACnB;AAED,MAAM,WAAW,sBAAsB,CAAC,CAAC,GAAG,GAAG;IAC9C,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC;IACrB,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,iBAAiB,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;IACnD,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,IAAI,CAAC;IAC/B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,MAAM,CAAC,CAAC;IAChD,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC/B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,YAAY,CAAC,EAAE;QACd,eAAe,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC;QAC/B,QAAQ,CAAC,EAAE,CAAC,YAAY,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,EAAE,YAAY,EAAE,CAAC,EAAE,KAAK,IAAI,CAAC;QACnE,IAAI,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;KAC7B,CAAC;
|
|
1
|
+
{"version":3,"file":"CwTableServerSide.d.ts","sourceRoot":"","sources":["../../../../../../src/components/display/data/table-serverside/CwTableServerSide.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoD,MAAM,OAAO,CAAC;AAEzE,MAAM,WAAW,oBAAoB,CAAC,CAAC,GAAG,GAAG;IAC5C,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC,GAAG,IAAI,CAAC;IACzB,aAAa,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,IAAI,CAAC;CACtC;AAED,MAAM,WAAW,MAAM,CAAC,CAAC,GAAG,GAAG;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;IACtC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,QAAQ;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACnB;AAED,MAAM,WAAW,sBAAsB,CAAC,CAAC,GAAG,GAAG;IAC9C,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC;IACrB,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,iBAAiB,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;IACnD,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,IAAI,CAAC;IAC/B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,MAAM,CAAC,CAAC;IAChD,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC/B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,YAAY,CAAC,EAAE;QACd,eAAe,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC;QAC/B,QAAQ,CAAC,EAAE,CAAC,YAAY,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,EAAE,YAAY,EAAE,CAAC,EAAE,KAAK,IAAI,CAAC;QACnE,IAAI,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;KAC7B,CAAC;IACF,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,oBAAoB,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;IACpD,WAAW,CAAC,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC;CACtC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoDG;AAEH,wBAAgB,iBAAiB,CAAC,CAAC,GAAG,GAAG,EAAE,EAC1C,OAAO,EACP,IAAI,EACJ,UAAU,EACV,UAAkB,EAClB,eAAiC,EACjC,iBAAiB,EACjB,QAAQ,EACR,SAAS,EACT,YAAY,EACZ,KAAK,EACL,kBAAkB,EAClB,EAAE,EACF,UAA8C,EAC9C,MAAyB,EACzB,OAAe,EACf,YAAY,EACZ,YAAoB,EACpB,YAAY,EACZ,QAAQ,EACR,WAAW,GACX,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,2CA+RrC"}
|