@povio/ui 3.3.0 → 3.4.0-rc.10
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/assets/locales/en/translation.json.d.ts +158 -0
- package/dist/assets/locales/sl/translation.json.d.ts +154 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.js +7 -7
- package/dist/components/Menu/MenuDesktop.js +1 -1
- package/dist/components/Menu/MenuItem.js +4 -4
- package/dist/components/Menu/MenuMobile.js +5 -5
- package/dist/components/Menu/MenuPopover.js +2 -2
- package/dist/components/buttons/Button/Button.js +1 -1
- package/dist/components/buttons/PillButton/PillButton.js +4 -4
- package/dist/components/buttons/PillButton/pillButton.cva.d.ts +1 -1
- package/dist/components/buttons/SplitButton/SplitButton.js +3 -3
- package/dist/components/buttons/shared/ButtonContent.js +2 -2
- package/dist/components/buttons/shared/buttonContent.cva.d.ts +1 -1
- package/dist/components/inputs/Checkbox/Checkbox.d.ts +1 -2
- package/dist/components/inputs/Checkbox/Checkbox.js +95 -102
- package/dist/components/inputs/Checkbox/CheckboxCheckmark.js +2 -3
- package/dist/components/inputs/Checkbox/CheckboxGroup.d.ts +1 -2
- package/dist/components/inputs/Checkbox/CheckboxGroup.js +111 -115
- package/dist/components/inputs/DateTime/DatePicker/DatePicker.d.ts +2 -2
- package/dist/components/inputs/DateTime/DatePicker/DatePicker.js +17 -22
- package/dist/components/inputs/DateTime/DateRangePicker/DateRangePicker.d.ts +2 -2
- package/dist/components/inputs/DateTime/DateRangePicker/DateRangePicker.js +17 -23
- package/dist/components/inputs/DateTime/DateTimePicker/DateTimePicker.d.ts +2 -2
- package/dist/components/inputs/DateTime/DateTimePicker/DateTimePicker.js +21 -25
- package/dist/components/inputs/DateTime/TimePicker/TimePicker.d.ts +2 -2
- package/dist/components/inputs/DateTime/TimePicker/TimePicker.js +225 -238
- package/dist/components/inputs/DateTime/shared/Calendar.js +1 -1
- package/dist/components/inputs/DateTime/shared/CalendarCell.js +1 -1
- package/dist/components/inputs/DateTime/shared/CalendarGrid.js +1 -1
- package/dist/components/inputs/DateTime/shared/CalendarHeader.js +7 -10
- package/dist/components/inputs/DateTime/shared/CalendarSelectHeader.js +8 -12
- package/dist/components/inputs/DateTime/shared/DateField.d.ts +2 -1
- package/dist/components/inputs/DateTime/shared/DateField.js +4 -4
- package/dist/components/inputs/DateTime/shared/DatePickerInput.d.ts +2 -2
- package/dist/components/inputs/DateTime/shared/DatePickerInput.js +8 -16
- package/dist/components/inputs/DateTime/shared/DateSegmentItem.js +3 -3
- package/dist/components/inputs/DateTime/shared/DateTimeDialog.js +2 -2
- package/dist/components/inputs/DateTime/shared/DateTimeDialogFooter.js +1 -1
- package/dist/components/inputs/DateTime/shared/MonthPicker.js +2 -2
- package/dist/components/inputs/DateTime/shared/RangeCalendar.js +2 -2
- package/dist/components/inputs/DateTime/shared/TimePickerForm.js +4 -5
- package/dist/components/inputs/DateTime/shared/TimePickerInput.d.ts +2 -2
- package/dist/components/inputs/DateTime/shared/TimePickerInput.js +10 -11
- package/dist/components/inputs/DateTime/shared/YearPicker.js +2 -2
- package/dist/components/inputs/DateTime/shared/datePickerTodayIcon.js +46 -1
- package/dist/components/inputs/DateTime/shared/useFirefoxDateSegmentSelectionGuard.js +1 -1
- package/dist/components/inputs/File/FileUpload.d.ts +1 -1
- package/dist/components/inputs/File/FileUpload.js +20 -20
- package/dist/components/inputs/File/InputUpload.d.ts +1 -1
- package/dist/components/inputs/File/InputUpload.js +19 -19
- package/dist/components/inputs/File/fileUpload.types.d.ts +1 -1
- package/dist/components/inputs/File/inputUpload.types.d.ts +1 -1
- package/dist/components/inputs/File/shared/FileCard.js +1 -1
- package/dist/components/inputs/File/shared/FileCardList.js +1 -1
- package/dist/components/inputs/File/shared/FileUploadContent.js +1 -1
- package/dist/components/inputs/File/shared/FileUploadContentEmpty.js +3 -3
- package/dist/components/inputs/File/shared/FileUploadContentError.js +5 -6
- package/dist/components/inputs/File/shared/FileUploadContentFilled.js +5 -6
- package/dist/components/inputs/File/shared/FileUploadContentLoading.js +4 -5
- package/dist/components/inputs/File/shared/InputUploadContent.js +4 -4
- package/dist/components/inputs/File/shared/InputUploadFilled.js +3 -3
- package/dist/components/inputs/FormField/FormFieldError.js +1 -1
- package/dist/components/inputs/FormField/FormFieldHeader.js +4 -4
- package/dist/components/inputs/FormField/FormFieldHeaderClose.js +3 -3
- package/dist/components/inputs/FormField/FormFieldHelper.js +1 -1
- package/dist/components/inputs/FormField/FormFieldLabel.js +2 -2
- package/dist/components/inputs/Input/NumberInput/NumberInput.d.ts +1 -1
- package/dist/components/inputs/Input/NumberInput/NumberInput.js +109 -107
- package/dist/components/inputs/Input/NumberRangeInput/NumberRangeField.d.ts +2 -1
- package/dist/components/inputs/Input/NumberRangeInput/NumberRangeField.js +265 -254
- package/dist/components/inputs/Input/NumberRangeInput/NumberRangeInput.d.ts +2 -1
- package/dist/components/inputs/Input/NumberRangeInput/NumberRangeInput.js +25 -24
- package/dist/components/inputs/Input/PasswordInput/PasswordInput.d.ts +1 -1
- package/dist/components/inputs/Input/PasswordInput/PasswordInput.js +3 -4
- package/dist/components/inputs/Input/TextArea/TextArea.d.ts +2 -1
- package/dist/components/inputs/Input/TextArea/TextArea.js +118 -117
- package/dist/components/inputs/Input/TextInput/TextInput.d.ts +2 -2
- package/dist/components/inputs/Input/TextInput/TextInput.js +129 -129
- package/dist/components/inputs/Input/shared/InputContent.d.ts +2 -1
- package/dist/components/inputs/Input/shared/InputContent.js +50 -48
- package/dist/components/inputs/Inputs/Form.d.ts +4 -4
- package/dist/components/inputs/Inputs/Form.js +1 -1
- package/dist/components/inputs/Inputs/InputItem.d.ts +22 -22
- package/dist/components/inputs/Inputs/InputItem.js +36 -37
- package/dist/components/inputs/Inputs/Inputs.d.ts +2 -2
- package/dist/components/inputs/RadioGroup/RadioGroup.d.ts +1 -2
- package/dist/components/inputs/RadioGroup/RadioGroup.js +109 -113
- package/dist/components/inputs/Selection/Autocomplete/Autocomplete.d.ts +1 -1
- package/dist/components/inputs/Selection/Autocomplete/Autocomplete.js +16 -16
- package/dist/components/inputs/Selection/Autocomplete/QueryAutocomplete.d.ts +1 -1
- package/dist/components/inputs/Selection/Autocomplete/QueryAutocomplete.js +20 -20
- package/dist/components/inputs/Selection/Autocomplete/queryAutocomplete.types.d.ts +1 -1
- package/dist/components/inputs/Selection/Select/QuerySelect.d.ts +1 -1
- package/dist/components/inputs/Selection/Select/QuerySelect.js +20 -20
- package/dist/components/inputs/Selection/Select/Select.d.ts +1 -1
- package/dist/components/inputs/Selection/Select/Select.js +23 -23
- package/dist/components/inputs/Selection/shared/SelectBase.d.ts +1 -1
- package/dist/components/inputs/Selection/shared/SelectBase.js +34 -37
- package/dist/components/inputs/Selection/shared/SelectDesktop.js +58 -56
- package/dist/components/inputs/Selection/shared/SelectInput.d.ts +2 -2
- package/dist/components/inputs/Selection/shared/SelectInput.js +57 -56
- package/dist/components/inputs/Selection/shared/SelectListBox.js +1 -1
- package/dist/components/inputs/Selection/shared/SelectListBoxItem.js +2 -2
- package/dist/components/inputs/Selection/shared/SelectListBoxItemSelectAll.js +2 -2
- package/dist/components/inputs/Selection/shared/SelectListBoxLoadingItem.js +1 -1
- package/dist/components/inputs/Selection/shared/SelectListBoxSelectionBar.js +1 -1
- package/dist/components/inputs/Selection/shared/SelectMobile.js +5 -4
- package/dist/components/inputs/Selection/shared/StaticSelectTrailingContent.js +3 -3
- package/dist/components/inputs/Selection/shared/select.context.d.ts +2 -2
- package/dist/components/inputs/Selection/shared/select.context.js +5 -9
- package/dist/components/inputs/Selection/shared/select.types.d.ts +1 -1
- package/dist/components/inputs/Skeleton/InputFrame.d.ts +1 -0
- package/dist/components/inputs/Skeleton/InputFrame.js +10 -7
- package/dist/components/inputs/Slider/Slider.d.ts +1 -1
- package/dist/components/inputs/Slider/Slider.js +20 -20
- package/dist/components/inputs/TextEditor/TextEditor.d.ts +1 -1
- package/dist/components/inputs/TextEditor/TextEditor.js +20 -20
- package/dist/components/inputs/TextEditor/Toolbar/ColorPicker.js +2 -2
- package/dist/components/inputs/TextEditor/Toolbar/ColorPickerDropdown.js +4 -4
- package/dist/components/inputs/TextEditor/Toolbar/HyperlinkAction.js +4 -4
- package/dist/components/inputs/TextEditor/Toolbar/TextAlignSelect.js +5 -8
- package/dist/components/inputs/TextEditor/Toolbar/TextColorSelect.js +3 -3
- package/dist/components/inputs/TextEditor/Toolbar/TextHighlightSelect.js +4 -5
- package/dist/components/inputs/TextEditor/Toolbar/TextListActions.js +4 -5
- package/dist/components/inputs/TextEditor/Toolbar/TextMarksActions.js +6 -9
- package/dist/components/inputs/Toggle/Toggle.d.ts +1 -2
- package/dist/components/inputs/Toggle/Toggle.js +61 -65
- package/dist/components/inputs/shared/CheckContent.js +1 -1
- package/dist/components/inputs/shared/InputClear.js +45 -28
- package/dist/components/inputs/shared/TooltipWrapper.d.ts +1 -1
- package/dist/components/inputs/shared/form.binding.d.ts +27 -0
- package/dist/components/inputs/shared/form.binding.js +57 -0
- package/dist/components/inputs/shared/form.types.d.ts +9 -8
- package/dist/components/inputs/shared/form.types.js +8 -0
- package/dist/components/inputs/shared/input.cva.js +1 -1
- package/dist/components/inputs/shared/useStaticInputHandoff.js +64 -38
- package/dist/components/navigation/Accordion/Accordion.js +1 -1
- package/dist/components/navigation/Accordion/AccordionItem.js +3 -3
- package/dist/components/navigation/Stepper/Stepper.js +2 -2
- package/dist/components/navigation/Stepper/StepperItem.js +4 -4
- package/dist/components/overlays/ActionModal/ActionModal.js +1 -1
- package/dist/components/overlays/BottomSheet/BottomSheet.js +3 -3
- package/dist/components/overlays/BottomSheet/BottomSheetHeader.js +4 -4
- package/dist/components/overlays/Drawer/Drawer.js +2 -2
- package/dist/components/overlays/Modal/Modal.js +3 -3
- package/dist/components/overlays/ResponsivePopover/ResponsivePopover.js +1 -1
- package/dist/components/overlays/Tooltip/Tooltip.js +15 -8
- package/dist/components/overlays/Tooltip/TooltipEllipsis.js +1 -1
- package/dist/components/segment/Segment.d.ts +1 -1
- package/dist/components/segment/Segment.js +21 -21
- package/dist/components/segment/SegmentItem.js +1 -1
- package/dist/components/segment/segment.types.d.ts +1 -1
- package/dist/components/shared/pagination/Pagination.js +1 -1
- package/dist/components/shared/pagination/PaginationList.js +6 -9
- package/dist/components/table/ColumnConfig.js +1 -1
- package/dist/components/table/InfiniteTable.js +1 -1
- package/dist/components/table/Table.js +6 -8
- package/dist/components/text/Link/Link.js +1 -1
- package/dist/components/text/Pill/Pill.js +3 -3
- package/dist/components/text/Tag/Tag.js +3 -3
- package/dist/config/confirmation.context.js +1 -1
- package/dist/config/link.context.js +1 -1
- package/dist/config/router.context.js +1 -1
- package/dist/config/theme.context.js +1 -1
- package/dist/config/uiConfig.context.d.ts +14 -5
- package/dist/config/uiConfig.context.js +9 -11
- package/dist/config/uiOverrides.context.js +2 -2
- package/dist/helpers/dynamicColumns.d.ts +1 -1
- package/dist/helpers/dynamicInputs.d.ts +7 -7
- package/dist/hooks/useAutosave.d.ts +4 -4
- package/dist/hooks/useAutosave.js +64 -49
- package/dist/hooks/useFilters.js +1 -1
- package/dist/hooks/useForm.d.ts +39 -15
- package/dist/hooks/useForm.js +96 -43
- package/dist/hooks/useFormAutosave.d.ts +8 -9
- package/dist/hooks/useFormAutosave.js +23 -9
- package/dist/hooks/useIntersectionObserver.js +1 -1
- package/dist/hooks/useLocalStorage.js +1 -1
- package/dist/hooks/usePagination.js +1 -1
- package/dist/hooks/useScrollableListBox.js +1 -1
- package/dist/hooks/useSorting.js +1 -1
- package/dist/hooks/useStateAndRef.js +1 -1
- package/dist/hooks/useTableColumnConfig.js +1 -1
- package/dist/index.d.ts +1 -263
- package/dist/index.js +11 -71
- package/dist/rhf/Inputs.d.ts +60 -0
- package/dist/rhf/Inputs.js +148 -0
- package/dist/rhf/components.d.ts +80 -0
- package/dist/rhf/components.js +101 -0
- package/dist/rhf/dynamicInputs.d.ts +18 -0
- package/dist/rhf/dynamicInputs.js +5 -0
- package/dist/rhf/fieldAdapter.d.ts +7 -0
- package/dist/rhf/fieldAdapter.js +40 -0
- package/dist/rhf/form.types.d.ts +12 -0
- package/dist/rhf/useAutosave.d.ts +10 -0
- package/dist/rhf/useAutosave.js +71 -0
- package/dist/rhf/useForm.d.ts +18 -0
- package/dist/rhf/useForm.js +48 -0
- package/dist/rhf/useFormAutosave.d.ts +15 -0
- package/dist/rhf/useFormAutosave.js +59 -0
- package/dist/rhf.d.ts +225 -0
- package/dist/tanstack.d.ts +224 -0
- package/dist/tanstack.js +141 -0
- package/package.json +15 -3
- package/dist/assets/icons/Account.d.ts +0 -2
- package/dist/assets/icons/AlignCenter.d.ts +0 -2
- package/dist/assets/icons/AlignCenter.js +0 -30
- package/dist/assets/icons/AlignLeft.d.ts +0 -2
- package/dist/assets/icons/AlignLeft.js +0 -30
- package/dist/assets/icons/AlignLeftRight.d.ts +0 -2
- package/dist/assets/icons/AlignLeftRight.js +0 -30
- package/dist/assets/icons/AlignRight.d.ts +0 -2
- package/dist/assets/icons/AlignRight.js +0 -30
- package/dist/assets/icons/ArrowDropDown.d.ts +0 -2
- package/dist/assets/icons/ArrowDropDown.js +0 -30
- package/dist/assets/icons/ArrowDropUp.d.ts +0 -2
- package/dist/assets/icons/ArrowDropUp.js +0 -30
- package/dist/assets/icons/ArrowLeft.d.ts +0 -2
- package/dist/assets/icons/ArrowLeft.js +0 -30
- package/dist/assets/icons/ArrowRight.d.ts +0 -2
- package/dist/assets/icons/ArrowRight.js +0 -30
- package/dist/assets/icons/Board.d.ts +0 -2
- package/dist/assets/icons/Bold.d.ts +0 -2
- package/dist/assets/icons/Bold.js +0 -30
- package/dist/assets/icons/BulletedList.d.ts +0 -2
- package/dist/assets/icons/BulletedList.js +0 -30
- package/dist/assets/icons/Calendar.d.ts +0 -2
- package/dist/assets/icons/Calendar.js +0 -32
- package/dist/assets/icons/Check.d.ts +0 -2
- package/dist/assets/icons/Check.js +0 -32
- package/dist/assets/icons/CheckCircle.d.ts +0 -2
- package/dist/assets/icons/CheckCircle.js +0 -30
- package/dist/assets/icons/CheckboxCheckmark.d.ts +0 -2
- package/dist/assets/icons/CheckboxCheckmark.js +0 -33
- package/dist/assets/icons/CheckboxIndeterminate.d.ts +0 -2
- package/dist/assets/icons/CheckboxIndeterminate.js +0 -33
- package/dist/assets/icons/ChevronDown.d.ts +0 -2
- package/dist/assets/icons/ChevronDown.js +0 -32
- package/dist/assets/icons/ChevronLeft.d.ts +0 -2
- package/dist/assets/icons/ChevronLeft.js +0 -32
- package/dist/assets/icons/ChevronRight.d.ts +0 -2
- package/dist/assets/icons/ChevronRight.js +0 -32
- package/dist/assets/icons/ChevronUp.d.ts +0 -2
- package/dist/assets/icons/ChevronUp.js +0 -32
- package/dist/assets/icons/ChevronsLeft.d.ts +0 -2
- package/dist/assets/icons/ChevronsLeft.js +0 -32
- package/dist/assets/icons/ChevronsRight.d.ts +0 -2
- package/dist/assets/icons/ChevronsRight.js +0 -32
- package/dist/assets/icons/Clock.d.ts +0 -2
- package/dist/assets/icons/Clock.js +0 -30
- package/dist/assets/icons/Close.d.ts +0 -2
- package/dist/assets/icons/Close.js +0 -30
- package/dist/assets/icons/DateTime.d.ts +0 -2
- package/dist/assets/icons/DateTime.js +0 -39
- package/dist/assets/icons/DragIndicator.d.ts +0 -2
- package/dist/assets/icons/DragIndicator.js +0 -30
- package/dist/assets/icons/Edit.d.ts +0 -2
- package/dist/assets/icons/Emoji.d.ts +0 -2
- package/dist/assets/icons/File.d.ts +0 -2
- package/dist/assets/icons/File.js +0 -32
- package/dist/assets/icons/Grid.d.ts +0 -2
- package/dist/assets/icons/Highlight.d.ts +0 -2
- package/dist/assets/icons/Highlight.js +0 -30
- package/dist/assets/icons/HighlightOn.d.ts +0 -6
- package/dist/assets/icons/HighlightOn.js +0 -55
- package/dist/assets/icons/Home.d.ts +0 -2
- package/dist/assets/icons/Home.js +0 -30
- package/dist/assets/icons/Image.d.ts +0 -2
- package/dist/assets/icons/ImageError.d.ts +0 -2
- package/dist/assets/icons/Info.d.ts +0 -2
- package/dist/assets/icons/Info.js +0 -41
- package/dist/assets/icons/Italic.d.ts +0 -2
- package/dist/assets/icons/Italic.js +0 -30
- package/dist/assets/icons/Link.d.ts +0 -2
- package/dist/assets/icons/Link.js +0 -30
- package/dist/assets/icons/Loader.d.ts +0 -2
- package/dist/assets/icons/MapPin.d.ts +0 -2
- package/dist/assets/icons/Menu.d.ts +0 -2
- package/dist/assets/icons/Menu.js +0 -30
- package/dist/assets/icons/Minus.d.ts +0 -2
- package/dist/assets/icons/MoreHoriz.d.ts +0 -2
- package/dist/assets/icons/NumberedList.d.ts +0 -2
- package/dist/assets/icons/NumberedList.js +0 -30
- package/dist/assets/icons/Pause.d.ts +0 -2
- package/dist/assets/icons/Plus.d.ts +0 -2
- package/dist/assets/icons/PointerHorizontal.d.ts +0 -2
- package/dist/assets/icons/PointerHorizontal.js +0 -30
- package/dist/assets/icons/PointerVertical.d.ts +0 -2
- package/dist/assets/icons/PointerVertical.js +0 -30
- package/dist/assets/icons/Retry.d.ts +0 -2
- package/dist/assets/icons/Search.d.ts +0 -2
- package/dist/assets/icons/Search.js +0 -30
- package/dist/assets/icons/Send.d.ts +0 -2
- package/dist/assets/icons/Send.js +0 -32
- package/dist/assets/icons/Share.d.ts +0 -2
- package/dist/assets/icons/Slash.d.ts +0 -2
- package/dist/assets/icons/Strikethrough.d.ts +0 -2
- package/dist/assets/icons/Strikethrough.js +0 -30
- package/dist/assets/icons/TextColor.d.ts +0 -6
- package/dist/assets/icons/TextColor.js +0 -52
- package/dist/assets/icons/Today.d.ts +0 -2
- package/dist/assets/icons/Today.js +0 -30
- package/dist/assets/icons/Trash.d.ts +0 -2
- package/dist/assets/icons/Underlined.d.ts +0 -2
- package/dist/assets/icons/Underlined.js +0 -32
- package/dist/assets/icons/Upload.d.ts +0 -2
- package/dist/assets/icons/Upload.js +0 -39
- package/dist/assets/icons/User.d.ts +0 -2
- package/dist/assets/icons/Visibility.d.ts +0 -2
- package/dist/assets/icons/Visibility.js +0 -30
- package/dist/assets/icons/VisibilityOff.d.ts +0 -2
- package/dist/assets/icons/VisibilityOff.js +0 -30
- package/dist/assets/icons/WarningFilled.d.ts +0 -2
- package/dist/assets/icons/WarningFilled.js +0 -32
- package/dist/assets/icons/WarningOutlined.d.ts +0 -2
- /package/dist/{hooks/useAutosave.spec.d.ts → rhf/entrypoints.type-test.d.ts} +0 -0
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/Check.tsx
|
|
4
|
-
var CheckIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M20.223 6.27a.91.91 0 0 1 0 1.306L9.834 17.73a.96.96 0 0 1-1.335 0l-4.722-4.616a.91.91 0 0 1 0-1.305.96.96 0 0 1 1.335 0l4.055 3.963 9.72-9.502a.96.96 0 0 1 1.336 0",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
});
|
|
14
|
-
$[0] = t0;
|
|
15
|
-
} else t0 = $[0];
|
|
16
|
-
let t1;
|
|
17
|
-
if ($[1] !== props) {
|
|
18
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
-
fill: "none",
|
|
21
|
-
viewBox: "0 0 24 24",
|
|
22
|
-
className: "fill-current",
|
|
23
|
-
...props,
|
|
24
|
-
children: t0
|
|
25
|
-
});
|
|
26
|
-
$[1] = props;
|
|
27
|
-
$[2] = t1;
|
|
28
|
-
} else t1 = $[2];
|
|
29
|
-
return t1;
|
|
30
|
-
};
|
|
31
|
-
//#endregion
|
|
32
|
-
export { CheckIcon };
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/CheckCircle.tsx
|
|
4
|
-
var CheckCircleIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
d: "m10.74 13.62-1.935-1.935a.85.85 0 0 0-.63-.248.85.85 0 0 0-.63.248.85.85 0 0 0-.247.63q0 .383.247.63l2.565 2.565q.27.27.63.27t.63-.27l5.085-5.085a.85.85 0 0 0 .248-.63.85.85 0 0 0-.248-.63.85.85 0 0 0-.63-.247.85.85 0 0 0-.63.247zM12 21a8.8 8.8 0 0 1-3.51-.709 9.1 9.1 0 0 1-2.857-1.924 9.1 9.1 0 0 1-1.924-2.857A8.8 8.8 0 0 1 3 12q0-1.867.709-3.51a9.1 9.1 0 0 1 1.924-2.857A9.1 9.1 0 0 1 8.49 3.709 8.8 8.8 0 0 1 12 3q1.867 0 3.51.709a9.1 9.1 0 0 1 2.858 1.924A9.1 9.1 0 0 1 20.29 8.49 8.8 8.8 0 0 1 21 12a8.8 8.8 0 0 1-.709 3.51 9.1 9.1 0 0 1-1.924 2.858 9.1 9.1 0 0 1-2.857 1.923A8.8 8.8 0 0 1 12 21"
|
|
11
|
-
});
|
|
12
|
-
$[0] = t0;
|
|
13
|
-
} else t0 = $[0];
|
|
14
|
-
let t1;
|
|
15
|
-
if ($[1] !== props) {
|
|
16
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
17
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
-
fill: "none",
|
|
19
|
-
viewBox: "0 0 24 24",
|
|
20
|
-
className: "fill-current",
|
|
21
|
-
...props,
|
|
22
|
-
children: t0
|
|
23
|
-
});
|
|
24
|
-
$[1] = props;
|
|
25
|
-
$[2] = t1;
|
|
26
|
-
} else t1 = $[2];
|
|
27
|
-
return t1;
|
|
28
|
-
};
|
|
29
|
-
//#endregion
|
|
30
|
-
export { CheckCircleIcon };
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/CheckboxCheckmark.tsx
|
|
4
|
-
var CheckboxCheckmarkIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
stroke: "currentColor",
|
|
10
|
-
strokeLinecap: "round",
|
|
11
|
-
strokeLinejoin: "round",
|
|
12
|
-
strokeWidth: 2,
|
|
13
|
-
d: "M11 1 4.125 8 1 4.818"
|
|
14
|
-
});
|
|
15
|
-
$[0] = t0;
|
|
16
|
-
} else t0 = $[0];
|
|
17
|
-
let t1;
|
|
18
|
-
if ($[1] !== props) {
|
|
19
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
20
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21
|
-
fill: "none",
|
|
22
|
-
viewBox: "0 0 12 9",
|
|
23
|
-
className: "fill-current",
|
|
24
|
-
...props,
|
|
25
|
-
children: t0
|
|
26
|
-
});
|
|
27
|
-
$[1] = props;
|
|
28
|
-
$[2] = t1;
|
|
29
|
-
} else t1 = $[2];
|
|
30
|
-
return t1;
|
|
31
|
-
};
|
|
32
|
-
//#endregion
|
|
33
|
-
export { CheckboxCheckmarkIcon };
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/CheckboxIndeterminate.tsx
|
|
4
|
-
var CheckboxIndeterminateIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
stroke: "currentColor",
|
|
10
|
-
strokeLinecap: "round",
|
|
11
|
-
strokeLinejoin: "round",
|
|
12
|
-
strokeWidth: 2,
|
|
13
|
-
d: "M9 1H1"
|
|
14
|
-
});
|
|
15
|
-
$[0] = t0;
|
|
16
|
-
} else t0 = $[0];
|
|
17
|
-
let t1;
|
|
18
|
-
if ($[1] !== props) {
|
|
19
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
20
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21
|
-
fill: "none",
|
|
22
|
-
viewBox: "0 0 10 2",
|
|
23
|
-
className: "fill-current",
|
|
24
|
-
...props,
|
|
25
|
-
children: t0
|
|
26
|
-
});
|
|
27
|
-
$[1] = props;
|
|
28
|
-
$[2] = t1;
|
|
29
|
-
} else t1 = $[2];
|
|
30
|
-
return t1;
|
|
31
|
-
};
|
|
32
|
-
//#endregion
|
|
33
|
-
export { CheckboxIndeterminateIcon };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/ChevronDown.tsx
|
|
4
|
-
var ChevronDownIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M5.251 8.256a.845.845 0 0 1 1.212 0L11 12.888l4.537-4.632a.845.845 0 0 1 1.212 0 .89.89 0 0 1 0 1.238l-5.143 5.25a.845.845 0 0 1-1.212 0L5.25 9.494a.89.89 0 0 1 0-1.238",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
});
|
|
14
|
-
$[0] = t0;
|
|
15
|
-
} else t0 = $[0];
|
|
16
|
-
let t1;
|
|
17
|
-
if ($[1] !== props) {
|
|
18
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
-
fill: "none",
|
|
21
|
-
viewBox: "0 0 24 24",
|
|
22
|
-
className: "fill-current",
|
|
23
|
-
...props,
|
|
24
|
-
children: t0
|
|
25
|
-
});
|
|
26
|
-
$[1] = props;
|
|
27
|
-
$[2] = t1;
|
|
28
|
-
} else t1 = $[2];
|
|
29
|
-
return t1;
|
|
30
|
-
};
|
|
31
|
-
//#endregion
|
|
32
|
-
export { ChevronDownIcon };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/ChevronLeft.tsx
|
|
4
|
-
var ChevronLeftIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M14.744 6.251a.845.845 0 0 1 0 1.212L10.112 12l4.632 4.537a.845.845 0 0 1 0 1.212.89.89 0 0 1-1.238 0l-5.25-5.143a.845.845 0 0 1 0-1.212l5.25-5.143a.89.89 0 0 1 1.238 0",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
});
|
|
14
|
-
$[0] = t0;
|
|
15
|
-
} else t0 = $[0];
|
|
16
|
-
let t1;
|
|
17
|
-
if ($[1] !== props) {
|
|
18
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
-
fill: "none",
|
|
21
|
-
viewBox: "0 0 24 24",
|
|
22
|
-
className: "fill-current",
|
|
23
|
-
...props,
|
|
24
|
-
children: t0
|
|
25
|
-
});
|
|
26
|
-
$[1] = props;
|
|
27
|
-
$[2] = t1;
|
|
28
|
-
} else t1 = $[2];
|
|
29
|
-
return t1;
|
|
30
|
-
};
|
|
31
|
-
//#endregion
|
|
32
|
-
export { ChevronLeftIcon };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/ChevronRight.tsx
|
|
4
|
-
var ChevronRightIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M9.256 6.251a.89.89 0 0 1 1.238 0l5.25 5.143a.845.845 0 0 1 0 1.212l-5.25 5.143a.89.89 0 0 1-1.238 0 .845.845 0 0 1 0-1.212L13.888 12 9.256 7.463a.845.845 0 0 1 0-1.212",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
});
|
|
14
|
-
$[0] = t0;
|
|
15
|
-
} else t0 = $[0];
|
|
16
|
-
let t1;
|
|
17
|
-
if ($[1] !== props) {
|
|
18
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
-
fill: "none",
|
|
21
|
-
viewBox: "0 0 24 24",
|
|
22
|
-
className: "fill-current",
|
|
23
|
-
...props,
|
|
24
|
-
children: t0
|
|
25
|
-
});
|
|
26
|
-
$[1] = props;
|
|
27
|
-
$[2] = t1;
|
|
28
|
-
} else t1 = $[2];
|
|
29
|
-
return t1;
|
|
30
|
-
};
|
|
31
|
-
//#endregion
|
|
32
|
-
export { ChevronRightIcon };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/ChevronUp.tsx
|
|
4
|
-
var ChevronUpIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M10.394 8.256a.845.845 0 0 1 1.212 0l5.143 5.25a.89.89 0 0 1 0 1.238.845.845 0 0 1-1.212 0L11 10.112l-4.537 4.632a.845.845 0 0 1-1.212 0 .89.89 0 0 1 0-1.238z",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
});
|
|
14
|
-
$[0] = t0;
|
|
15
|
-
} else t0 = $[0];
|
|
16
|
-
let t1;
|
|
17
|
-
if ($[1] !== props) {
|
|
18
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
-
fill: "none",
|
|
21
|
-
viewBox: "0 0 24 24",
|
|
22
|
-
className: "fill-current",
|
|
23
|
-
...props,
|
|
24
|
-
children: t0
|
|
25
|
-
});
|
|
26
|
-
$[1] = props;
|
|
27
|
-
$[2] = t1;
|
|
28
|
-
} else t1 = $[2];
|
|
29
|
-
return t1;
|
|
30
|
-
};
|
|
31
|
-
//#endregion
|
|
32
|
-
export { ChevronUpIcon };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/ChevronsLeft.tsx
|
|
4
|
-
var ChevronsLeftIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M11.749 17.749a.857.857 0 0 1-1.212 0l-5.143-5.143a.857.857 0 0 1 0-1.212l5.143-5.143a.857.857 0 0 1 1.212 1.212L7.212 12l4.537 4.537a.857.857 0 0 1 0 1.212M18.749 17.749a.857.857 0 0 1-1.212 0l-5.143-5.143a.857.857 0 0 1 0-1.212l5.143-5.143a.857.857 0 0 1 1.212 1.212L14.212 12l4.537 4.537a.857.857 0 0 1 0 1.212",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
});
|
|
14
|
-
$[0] = t0;
|
|
15
|
-
} else t0 = $[0];
|
|
16
|
-
let t1;
|
|
17
|
-
if ($[1] !== props) {
|
|
18
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
-
fill: "none",
|
|
21
|
-
viewBox: "0 0 24 24",
|
|
22
|
-
className: "fill-current",
|
|
23
|
-
...props,
|
|
24
|
-
children: t0
|
|
25
|
-
});
|
|
26
|
-
$[1] = props;
|
|
27
|
-
$[2] = t1;
|
|
28
|
-
} else t1 = $[2];
|
|
29
|
-
return t1;
|
|
30
|
-
};
|
|
31
|
-
//#endregion
|
|
32
|
-
export { ChevronsLeftIcon };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/ChevronsRight.tsx
|
|
4
|
-
var ChevronsRightIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M12.251 6.251a.857.857 0 0 1 1.212 0l5.143 5.143a.857.857 0 0 1 0 1.212l-5.143 5.143a.857.857 0 1 1-1.212-1.212L16.788 12 12.25 7.463a.857.857 0 0 1 0-1.212M5.251 6.251a.857.857 0 0 1 1.212 0l5.143 5.143a.857.857 0 0 1 0 1.212L6.463 17.75a.857.857 0 1 1-1.212-1.212L9.788 12 5.25 7.463a.857.857 0 0 1 0-1.212",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
});
|
|
14
|
-
$[0] = t0;
|
|
15
|
-
} else t0 = $[0];
|
|
16
|
-
let t1;
|
|
17
|
-
if ($[1] !== props) {
|
|
18
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
-
fill: "none",
|
|
21
|
-
viewBox: "0 0 24 24",
|
|
22
|
-
className: "fill-current",
|
|
23
|
-
...props,
|
|
24
|
-
children: t0
|
|
25
|
-
});
|
|
26
|
-
$[1] = props;
|
|
27
|
-
$[2] = t1;
|
|
28
|
-
} else t1 = $[2];
|
|
29
|
-
return t1;
|
|
30
|
-
};
|
|
31
|
-
//#endregion
|
|
32
|
-
export { ChevronsRightIcon };
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/Clock.tsx
|
|
4
|
-
var ClockIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
d: "M12.85 11.66V8.6a.82.82 0 0 0-.244-.606A.82.82 0 0 0 12 7.75a.82.82 0 0 0-.606.244.82.82 0 0 0-.244.606v3.379q0 .17.064.33a.85.85 0 0 0 .191.286L14.21 15.4a.8.8 0 0 0 .595.234q.361 0 .595-.234a.8.8 0 0 0 .234-.595q0-.361-.234-.595zM12 20.5a8.3 8.3 0 0 1-3.315-.67 8.6 8.6 0 0 1-2.699-1.816 8.6 8.6 0 0 1-1.817-2.699A8.3 8.3 0 0 1 3.5 12q0-1.763.67-3.315a8.6 8.6 0 0 1 1.816-2.699A8.6 8.6 0 0 1 8.685 4.17 8.3 8.3 0 0 1 12 3.5q1.763 0 3.315.67a8.6 8.6 0 0 1 2.699 1.816 8.6 8.6 0 0 1 1.817 2.699Q20.5 10.237 20.5 12t-.67 3.315a8.6 8.6 0 0 1-1.816 2.699 8.6 8.6 0 0 1-2.699 1.817A8.3 8.3 0 0 1 12 20.5m0-1.7q2.826 0 4.813-1.987Q18.8 14.827 18.8 12t-1.987-4.813T12 5.2 7.187 7.187Q5.2 9.173 5.2 12t1.987 4.813Q9.173 18.8 12 18.8"
|
|
11
|
-
});
|
|
12
|
-
$[0] = t0;
|
|
13
|
-
} else t0 = $[0];
|
|
14
|
-
let t1;
|
|
15
|
-
if ($[1] !== props) {
|
|
16
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
17
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
-
fill: "none",
|
|
19
|
-
viewBox: "0 0 24 24",
|
|
20
|
-
className: "fill-current",
|
|
21
|
-
...props,
|
|
22
|
-
children: t0
|
|
23
|
-
});
|
|
24
|
-
$[1] = props;
|
|
25
|
-
$[2] = t1;
|
|
26
|
-
} else t1 = $[2];
|
|
27
|
-
return t1;
|
|
28
|
-
};
|
|
29
|
-
//#endregion
|
|
30
|
-
export { ClockIcon };
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/Close.tsx
|
|
4
|
-
var CloseIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
d: "M17.749 7.463a.857.857 0 1 0-1.212-1.212L12 10.788 7.463 6.25a.857.857 0 0 0-1.212 1.212L10.788 12 6.25 16.537a.857.857 0 1 0 1.212 1.212L12 13.212l4.537 4.537a.857.857 0 1 0 1.212-1.212L13.212 12z"
|
|
11
|
-
});
|
|
12
|
-
$[0] = t0;
|
|
13
|
-
} else t0 = $[0];
|
|
14
|
-
let t1;
|
|
15
|
-
if ($[1] !== props) {
|
|
16
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
17
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
-
fill: "none",
|
|
19
|
-
viewBox: "0 0 24 24",
|
|
20
|
-
className: "fill-current",
|
|
21
|
-
...props,
|
|
22
|
-
children: t0
|
|
23
|
-
});
|
|
24
|
-
$[1] = props;
|
|
25
|
-
$[2] = t1;
|
|
26
|
-
} else t1 = $[2];
|
|
27
|
-
return t1;
|
|
28
|
-
};
|
|
29
|
-
//#endregion
|
|
30
|
-
export { CloseIcon };
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/DateTime.tsx
|
|
4
|
-
var DateTimeIcon = (props) => {
|
|
5
|
-
const $ = c(4);
|
|
6
|
-
let t0;
|
|
7
|
-
let t1;
|
|
8
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
9
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
10
|
-
fill: "currentColor",
|
|
11
|
-
d: "M14.506 2.948a.806.806 0 0 1 .714.804v.769h1.54c1.303 0 2.36 1.067 2.36 2.383l-.002 4.287c0 .285-.1.502-.25.647a.8.8 0 0 1-.549.221c-.199.001-.4-.07-.55-.215a.8.8 0 0 1-.216-.38l-.029-.167-.005-.106.002-1.13H5.078v7.873l.001.009.014.138.002.007c.07.35.377.615.744.615h4.457l.114.003c.25.02.443.111.578.244.154.15.23.354.23.556a.78.78 0 0 1-.23.558.9.9 0 0 1-.579.248l-.11.005H5.84a2.37 2.37 0 0 1-2.348-2.139l-.012-.244V6.904c0-1.316 1.056-2.383 2.36-2.383h1.54v-.769c0-.445.357-.806.798-.807l.088.003a.806.806 0 0 1 .713.804v.769h4.641v-.769c0-.445.357-.806.798-.807zM5.84 6.135c-.42 0-.76.345-.76.769v1.54h12.44v-1.54a.765.765 0 0 0-.76-.769h-1.54v.769l-.015.153a.8.8 0 0 1-.7.65l-.087.003a.8.8 0 0 1-.794-.723l-.004-.083v-.769H8.98v.769l-.015.153a.8.8 0 0 1-.7.65l-.087.003a.8.8 0 0 1-.793-.723l-.004-.083v-.769z"
|
|
12
|
-
});
|
|
13
|
-
t1 = /* @__PURE__ */ jsx("path", {
|
|
14
|
-
fill: "currentColor",
|
|
15
|
-
d: "M16.25 12.484q1.755 0 2.992 1.248t1.238 3.018q0 1.77-1.238 3.018t-2.992 1.248q-1.755 0-2.992-1.248T12.02 16.75q0-1.77 1.238-3.018t2.992-1.248m0 1.675a.43.43 0 0 0-.312.134.43.43 0 0 0-.133.314v1.95q0 .175.065.34.066.165.195.296l1.297 1.306q.133.135.312.135l.086-.009a.44.44 0 0 0 .225-.125.44.44 0 0 0 .125-.227l.01-.087a.44.44 0 0 0-.135-.314l-1.266-1.278-.024-.023v-1.964a.43.43 0 0 0-.134-.313.43.43 0 0 0-.311-.135"
|
|
16
|
-
});
|
|
17
|
-
$[0] = t0;
|
|
18
|
-
$[1] = t1;
|
|
19
|
-
} else {
|
|
20
|
-
t0 = $[0];
|
|
21
|
-
t1 = $[1];
|
|
22
|
-
}
|
|
23
|
-
let t2;
|
|
24
|
-
if ($[2] !== props) {
|
|
25
|
-
t2 = /* @__PURE__ */ jsxs("svg", {
|
|
26
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
-
fill: "none",
|
|
28
|
-
viewBox: "0 0 24 24",
|
|
29
|
-
className: "fill-current",
|
|
30
|
-
...props,
|
|
31
|
-
children: [t0, t1]
|
|
32
|
-
});
|
|
33
|
-
$[2] = props;
|
|
34
|
-
$[3] = t2;
|
|
35
|
-
} else t2 = $[3];
|
|
36
|
-
return t2;
|
|
37
|
-
};
|
|
38
|
-
//#endregion
|
|
39
|
-
export { DateTimeIcon };
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/DragIndicator.tsx
|
|
4
|
-
var DragIndicatorIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
d: "M9 19.615q-.666 0-1.14-.474A1.56 1.56 0 0 1 7.384 18q0-.666.474-1.14A1.56 1.56 0 0 1 9 16.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14A1.56 1.56 0 0 1 9 19.616m6 0q-.666 0-1.14-.474A1.56 1.56 0 0 1 13.384 18q0-.666.474-1.14A1.56 1.56 0 0 1 15 16.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14a1.56 1.56 0 0 1-1.141.475m-6-6q-.666 0-1.14-.474A1.56 1.56 0 0 1 7.384 12q0-.666.474-1.14A1.56 1.56 0 0 1 9 10.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14A1.56 1.56 0 0 1 9 13.616m6 0q-.666 0-1.14-.474A1.56 1.56 0 0 1 13.384 12q0-.666.474-1.14A1.56 1.56 0 0 1 15 10.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14a1.56 1.56 0 0 1-1.141.475m-6-6q-.666 0-1.14-.474A1.56 1.56 0 0 1 7.384 6q0-.666.474-1.14A1.56 1.56 0 0 1 9 4.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14A1.56 1.56 0 0 1 9 7.616m6 0q-.666 0-1.14-.474A1.56 1.56 0 0 1 13.384 6q0-.666.474-1.14A1.56 1.56 0 0 1 15 4.384q.666 0 1.14.474.475.475.475 1.141t-.474 1.14A1.56 1.56 0 0 1 15 7.616"
|
|
11
|
-
});
|
|
12
|
-
$[0] = t0;
|
|
13
|
-
} else t0 = $[0];
|
|
14
|
-
let t1;
|
|
15
|
-
if ($[1] !== props) {
|
|
16
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
17
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
-
fill: "none",
|
|
19
|
-
viewBox: "0 0 24 24",
|
|
20
|
-
className: "fill-current",
|
|
21
|
-
...props,
|
|
22
|
-
children: t0
|
|
23
|
-
});
|
|
24
|
-
$[1] = props;
|
|
25
|
-
$[2] = t1;
|
|
26
|
-
} else t1 = $[2];
|
|
27
|
-
return t1;
|
|
28
|
-
};
|
|
29
|
-
//#endregion
|
|
30
|
-
export { DragIndicatorIcon };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/File.tsx
|
|
4
|
-
var FileIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M12.682 3q.111 0 .213.028l.008.002q.056.017.11.042.024.011.049.025a1 1 0 0 1 .13.084l.051.044.017.015 5.727 5.727.013.014.026.03.015.016q.016.022.03.043.021.028.039.056.018.033.033.067a.8.8 0 0 1 .085.352l-.001.015v8.985A2.455 2.455 0 0 1 16.772 21H6.955A2.456 2.456 0 0 1 4.5 18.545V5.455A2.455 2.455 0 0 1 6.955 3zM6.955 4.637a.82.82 0 0 0-.818.818v13.09a.817.817 0 0 0 .818.818h9.817a.82.82 0 0 0 .819-.818v-8.181h-4.909a.82.82 0 0 1-.818-.819V4.637zm6.546 4.09h2.933l-2.933-2.932z",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
});
|
|
14
|
-
$[0] = t0;
|
|
15
|
-
} else t0 = $[0];
|
|
16
|
-
let t1;
|
|
17
|
-
if ($[1] !== props) {
|
|
18
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
-
fill: "none",
|
|
21
|
-
viewBox: "0 0 24 24",
|
|
22
|
-
className: "fill-current",
|
|
23
|
-
...props,
|
|
24
|
-
children: t0
|
|
25
|
-
});
|
|
26
|
-
$[1] = props;
|
|
27
|
-
$[2] = t1;
|
|
28
|
-
} else t1 = $[2];
|
|
29
|
-
return t1;
|
|
30
|
-
};
|
|
31
|
-
//#endregion
|
|
32
|
-
export { FileIcon };
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
//#region src/assets/icons/Highlight.tsx
|
|
4
|
-
var HighlightIcon = (props) => {
|
|
5
|
-
const $ = c(3);
|
|
6
|
-
let t0;
|
|
7
|
-
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
-
t0 = /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "currentColor",
|
|
10
|
-
d: "m14.302 12.145-2.6-2.6-3.942 3.942a.29.29 0 0 0-.087.211q0 .125.087.212l2.161 2.177a.29.29 0 0 0 .212.086.29.29 0 0 0 .211-.086zm-1.53-3.654 2.584 2.584 4.27-4.254a.3.3 0 0 0 .086-.22.3.3 0 0 0-.087-.222l-2.158-2.158a.3.3 0 0 0-.22-.086.3.3 0 0 0-.222.086zm-1.582-.543 4.708 4.708-4.484 4.5q-.543.542-1.274.542-.73 0-1.273-.542l-.096-.096-.404.388q-.246.216-.556.34a1.7 1.7 0 0 1-.642.126H5.071q-.31 0-.43-.276-.117-.276.103-.497l2.07-2.054-.077-.077a1.82 1.82 0 0 1-.558-1.288q-.016-.747.527-1.289zm0 0 4.79-4.79q.543-.542 1.274-.542.73 0 1.273.542l2.177 2.161q.542.543.542 1.273 0 .732-.542 1.273l-4.806 4.791z"
|
|
11
|
-
});
|
|
12
|
-
$[0] = t0;
|
|
13
|
-
} else t0 = $[0];
|
|
14
|
-
let t1;
|
|
15
|
-
if ($[1] !== props) {
|
|
16
|
-
t1 = /* @__PURE__ */ jsx("svg", {
|
|
17
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
-
fill: "none",
|
|
19
|
-
viewBox: "0 0 24 24",
|
|
20
|
-
className: "fill-current",
|
|
21
|
-
...props,
|
|
22
|
-
children: t0
|
|
23
|
-
});
|
|
24
|
-
$[1] = props;
|
|
25
|
-
$[2] = t1;
|
|
26
|
-
} else t1 = $[2];
|
|
27
|
-
return t1;
|
|
28
|
-
};
|
|
29
|
-
//#endregion
|
|
30
|
-
export { HighlightIcon };
|