fluxo-ui 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +237 -0
- package/chunk-Do9eywBl.cjs +35 -0
- package/classnames-B4qHndiD.cjs +48 -0
- package/classnames-CEAOwX3h.js +66 -0
- package/components-C_HbdZhO.js +22556 -0
- package/components-DdojqcZ7.cjs +23236 -0
- package/dnd.cjs +6 -0
- package/dnd.d.ts +1 -0
- package/dnd.js +2 -0
- package/drag-drop-BF3uukc4.cjs +258 -0
- package/drag-drop-UWg0agsw.js +233 -0
- package/draw.cjs +3156 -0
- package/draw.d.ts +1 -0
- package/draw.js +3147 -0
- package/favicon.svg +14 -0
- package/hooks-BLbZ4aKB.cjs +137 -0
- package/hooks-D0CAM9v9.js +107 -0
- package/hooks.cjs +7 -0
- package/hooks.d.ts +1 -0
- package/hooks.js +2 -0
- package/icons-BRgMxTPy.js +1641 -0
- package/icons-CNooH6LA.cjs +2038 -0
- package/icons.cjs +85 -0
- package/icons.d.ts +1 -0
- package/icons.js +2 -0
- package/index.cjs +115 -0
- package/index.d.ts +1 -0
- package/index.js +2 -0
- package/kanban.cjs +969 -0
- package/kanban.d.ts +1 -0
- package/kanban.js +967 -0
- package/logo.svg +26 -0
- package/package.json +110 -0
- package/services.cjs +331 -0
- package/services.d.ts +1 -0
- package/services.js +321 -0
- package/src/assets/icons.d.ts +86 -0
- package/src/components/Autocomplete.d.ts +22 -0
- package/src/components/AutocompleteMulti.d.ts +24 -0
- package/src/components/Breadcrumb.d.ts +17 -0
- package/src/components/Button.d.ts +26 -0
- package/src/components/Checkbox.d.ts +12 -0
- package/src/components/Chips.d.ts +16 -0
- package/src/components/DeferredView.d.ts +13 -0
- package/src/components/Dropdown.d.ts +22 -0
- package/src/components/Fab.d.ts +23 -0
- package/src/components/FieldLabel.d.ts +15 -0
- package/src/components/Icon.d.ts +6 -0
- package/src/components/InfiniteScroll.d.ts +19 -0
- package/src/components/InputGroup.d.ts +7 -0
- package/src/components/InputSwitch.d.ts +12 -0
- package/src/components/Link.d.ts +5 -0
- package/src/components/ListBox.d.ts +38 -0
- package/src/components/MaskedInput.d.ts +28 -0
- package/src/components/Modal.d.ts +12 -0
- package/src/components/MultiStateCheckbox.d.ts +11 -0
- package/src/components/Multiselect.d.ts +25 -0
- package/src/components/NumericInput.d.ts +16 -0
- package/src/components/Password.d.ts +18 -0
- package/src/components/Popover.d.ts +20 -0
- package/src/components/ProgressBar.d.ts +31 -0
- package/src/components/RadioButton.d.ts +20 -0
- package/src/components/SelectButton.d.ts +20 -0
- package/src/components/SpeedDial.d.ts +40 -0
- package/src/components/Stepper.d.ts +41 -0
- package/src/components/TextArea.d.ts +19 -0
- package/src/components/TextInput.d.ts +19 -0
- package/src/components/ToggleButton.d.ts +12 -0
- package/src/components/animate-on-view/AnimateOnView.d.ts +23 -0
- package/src/components/animate-on-view/index.d.ts +2 -0
- package/src/components/calendar/Calendar.d.ts +4 -0
- package/src/components/calendar/CalendarContext.d.ts +4 -0
- package/src/components/calendar/calendar-constants.d.ts +8 -0
- package/src/components/calendar/calendar-types.d.ts +413 -0
- package/src/components/calendar/calendar-utils.d.ts +61 -0
- package/src/components/calendar/entries/CalendarEntry.d.ts +20 -0
- package/src/components/calendar/entries/DefaultEntry.d.ts +8 -0
- package/src/components/calendar/entries/EntryContainer.d.ts +19 -0
- package/src/components/calendar/entries/OverflowPopover.d.ts +12 -0
- package/src/components/calendar/entries/index.d.ts +4 -0
- package/src/components/calendar/hooks/index.d.ts +4 -0
- package/src/components/calendar/hooks/useCalendarEntries.d.ts +8 -0
- package/src/components/calendar/hooks/useCalendarNavigation.d.ts +24 -0
- package/src/components/calendar/hooks/useNowIndicator.d.ts +10 -0
- package/src/components/calendar/hooks/useViewTitle.d.ts +2 -0
- package/src/components/calendar/index.d.ts +9 -0
- package/src/components/calendar/interactions/index.d.ts +3 -0
- package/src/components/calendar/interactions/useDragMove.d.ts +11 -0
- package/src/components/calendar/interactions/useDragResize.d.ts +11 -0
- package/src/components/calendar/interactions/useSelection.d.ts +11 -0
- package/src/components/calendar/plugin-registry.d.ts +17 -0
- package/src/components/calendar/plugins/agenda-plugin.d.ts +6 -0
- package/src/components/calendar/plugins/create-plugin.d.ts +20 -0
- package/src/components/calendar/plugins/day-grid-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/default-plugins.d.ts +2 -0
- package/src/components/calendar/plugins/index.d.ts +14 -0
- package/src/components/calendar/plugins/list-view-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/month-grid-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/multi-month-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/scroll-month-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/time-grid-custom-plugin.d.ts +6 -0
- package/src/components/calendar/plugins/time-grid-plugin.d.ts +2 -0
- package/src/components/calendar/plugins/year-grid-plugin.d.ts +2 -0
- package/src/components/calendar/toolbar/CalendarToolbar.d.ts +27 -0
- package/src/components/calendar/toolbar/ToolbarNavigation.d.ts +8 -0
- package/src/components/calendar/toolbar/ToolbarTitle.d.ts +6 -0
- package/src/components/calendar/toolbar/ToolbarViewSwitcher.d.ts +9 -0
- package/src/components/calendar/toolbar/index.d.ts +4 -0
- package/src/components/calendar/views/ViewRenderer.d.ts +7 -0
- package/src/components/calendar/views/agenda/AgendaView.d.ts +6 -0
- package/src/components/calendar/views/agenda/index.d.ts +1 -0
- package/src/components/calendar/views/day-grid/DayGrid.d.ts +9 -0
- package/src/components/calendar/views/day-grid/DayGridCell.d.ts +15 -0
- package/src/components/calendar/views/day-grid/index.d.ts +2 -0
- package/src/components/calendar/views/index.d.ts +10 -0
- package/src/components/calendar/views/list-view/ListView.d.ts +7 -0
- package/src/components/calendar/views/list-view/ListViewGroup.d.ts +11 -0
- package/src/components/calendar/views/list-view/ListViewItem.d.ts +10 -0
- package/src/components/calendar/views/list-view/index.d.ts +3 -0
- package/src/components/calendar/views/month-grid/MonthGrid.d.ts +5 -0
- package/src/components/calendar/views/month-grid/MonthGridCell.d.ts +22 -0
- package/src/components/calendar/views/month-grid/MonthGridHeader.d.ts +8 -0
- package/src/components/calendar/views/month-grid/index.d.ts +3 -0
- package/src/components/calendar/views/multi-month/MultiMonthGrid.d.ts +5 -0
- package/src/components/calendar/views/multi-month/index.d.ts +1 -0
- package/src/components/calendar/views/scroll-month/ScrollMonthView.d.ts +5 -0
- package/src/components/calendar/views/scroll-month/index.d.ts +1 -0
- package/src/components/calendar/views/time-grid/NowIndicator.d.ts +9 -0
- package/src/components/calendar/views/time-grid/TimeGrid.d.ts +9 -0
- package/src/components/calendar/views/time-grid/TimeGridAllDay.d.ts +14 -0
- package/src/components/calendar/views/time-grid/TimeGridBody.d.ts +21 -0
- package/src/components/calendar/views/time-grid/TimeGridColumn.d.ts +22 -0
- package/src/components/calendar/views/time-grid/TimeGridHeader.d.ts +9 -0
- package/src/components/calendar/views/time-grid/TimeGridSlot.d.ts +12 -0
- package/src/components/calendar/views/time-grid/index.d.ts +7 -0
- package/src/components/calendar/views/time-grid-custom/TimeGridCustomDays.d.ts +7 -0
- package/src/components/calendar/views/time-grid-custom/index.d.ts +1 -0
- package/src/components/calendar/views/year-grid/YearGrid.d.ts +5 -0
- package/src/components/calendar/views/year-grid/index.d.ts +1 -0
- package/src/components/canvas-draw/CanvasDraw.d.ts +18 -0
- package/src/components/canvas-draw/CanvasDrawOverlay.d.ts +27 -0
- package/src/components/canvas-draw/CanvasDrawToolbar.d.ts +32 -0
- package/src/components/canvas-draw/MediaTimeline.d.ts +36 -0
- package/src/components/canvas-draw/canvas-draw-types.d.ts +200 -0
- package/src/components/canvas-draw/index.d.ts +10 -0
- package/src/components/carousel/Carousel.d.ts +35 -0
- package/src/components/carousel/CarouselSlide.d.ts +22 -0
- package/src/components/carousel/CarouselThumbnails.d.ts +10 -0
- package/src/components/carousel/index.d.ts +2 -0
- package/src/components/collapsible-panel/CollapsiblePanel.d.ts +45 -0
- package/src/components/collapsible-panel/CollapsibleTabs.d.ts +24 -0
- package/src/components/collapsible-panel/index.d.ts +4 -0
- package/src/components/confirm-popover/ConfirmPopoverManager.d.ts +18 -0
- package/src/components/confirm-popover/ConfirmPopoverPanel.d.ts +7 -0
- package/src/components/confirm-popover/index.d.ts +3 -0
- package/src/components/confirm-popover/types.d.ts +20 -0
- package/src/components/confirm-popover/useConfirmPopoverPosition.d.ts +10 -0
- package/src/components/context/ThemeContext.d.ts +24 -0
- package/src/components/context-menu/ContextMenuManager.d.ts +3 -0
- package/src/components/context-menu/index.d.ts +2 -0
- package/src/components/context-menu/types.d.ts +28 -0
- package/src/components/context-menu/utils.d.ts +3 -0
- package/src/components/date-range/Calendar.d.ts +15 -0
- package/src/components/date-range/CustomDatePicker.d.ts +2 -0
- package/src/components/date-range/DatePopover.d.ts +5 -0
- package/src/components/date-range/DateRangePicker.d.ts +3 -0
- package/src/components/date-range/Footer.d.ts +2 -0
- package/src/components/date-range/MonthPicker.d.ts +10 -0
- package/src/components/date-range/QuickRangeDropdown.d.ts +2 -0
- package/src/components/date-range/QuickRangeList.d.ts +2 -0
- package/src/components/date-range/YearPicker.d.ts +11 -0
- package/src/components/date-range/index.d.ts +2 -0
- package/src/components/date-range/types.d.ts +65 -0
- package/src/components/date-range/utils.d.ts +6 -0
- package/src/components/drag-drop/DragDropProvider.d.ts +33 -0
- package/src/components/drag-drop/Draggable.d.ts +86 -0
- package/src/components/drag-drop/Droppable.d.ts +60 -0
- package/src/components/drag-drop/Sortable.d.ts +98 -0
- package/src/components/drag-drop/index.d.ts +9 -0
- package/src/components/drawer/Drawer.d.ts +19 -0
- package/src/components/drawer/index.d.ts +2 -0
- package/src/components/file-upload/FilePreview.d.ts +9 -0
- package/src/components/file-upload/FileUpload.d.ts +4 -0
- package/src/components/file-upload/file-upload-types.d.ts +23 -0
- package/src/components/file-upload/index.d.ts +2 -0
- package/src/components/gantt-chart/DependencyLines.d.ts +4 -0
- package/src/components/gantt-chart/FieldsPanel.d.ts +11 -0
- package/src/components/gantt-chart/GanttChart.d.ts +3 -0
- package/src/components/gantt-chart/GanttContext.d.ts +4 -0
- package/src/components/gantt-chart/Markers.d.ts +4 -0
- package/src/components/gantt-chart/TaskBar.d.ts +9 -0
- package/src/components/gantt-chart/TimelineGrid.d.ts +4 -0
- package/src/components/gantt-chart/TimelineHeader.d.ts +8 -0
- package/src/components/gantt-chart/TimelinePanel.d.ts +10 -0
- package/src/components/gantt-chart/gantt-types.d.ts +191 -0
- package/src/components/gantt-chart/gantt-utils.d.ts +27 -0
- package/src/components/gantt-chart/index.d.ts +2 -0
- package/src/components/image-editor/ImageEditor.d.ts +5 -0
- package/src/components/image-editor/image-editor-types.d.ts +51 -0
- package/src/components/image-editor/index.d.ts +2 -0
- package/src/components/index.d.ts +75 -0
- package/src/components/json-editor/AddEntry.d.ts +10 -0
- package/src/components/json-editor/ArrayEditor.d.ts +4 -0
- package/src/components/json-editor/ItemNameDisplay.d.ts +4 -0
- package/src/components/json-editor/ItemValueDisplay.d.ts +4 -0
- package/src/components/json-editor/JsonEditor.d.ts +5 -0
- package/src/components/json-editor/NodeSelector.d.ts +6 -0
- package/src/components/json-editor/ObjectEditor.d.ts +4 -0
- package/src/components/json-editor/SimpleEditor.d.ts +4 -0
- package/src/components/json-editor/Toolbar.d.ts +14 -0
- package/src/components/json-editor/index.d.ts +2 -0
- package/src/components/json-editor/json-editor-types.d.ts +83 -0
- package/src/components/json-editor/json-editor-utils.d.ts +11 -0
- package/src/components/kanban-board/KanbanBoard.d.ts +3 -0
- package/src/components/kanban-board/KanbanCard.d.ts +3 -0
- package/src/components/kanban-board/KanbanColumn.d.ts +3 -0
- package/src/components/kanban-board/KanbanColumnHeader.d.ts +8 -0
- package/src/components/kanban-board/KanbanContext.d.ts +5 -0
- package/src/components/kanban-board/index.d.ts +2 -0
- package/src/components/kanban-board/kanban-types.d.ts +152 -0
- package/src/components/kanban-board/kanban-utils.d.ts +14 -0
- package/src/components/lightbox/Lightbox.d.ts +32 -0
- package/src/components/lightbox/index.d.ts +2 -0
- package/src/components/menu-nav/MenuNav.d.ts +5 -0
- package/src/components/menu-nav/MenuNavItem.d.ts +18 -0
- package/src/components/menu-nav/index.d.ts +2 -0
- package/src/components/menu-nav/menu-nav-types.d.ts +49 -0
- package/src/components/notification-center/NotificationCenter.d.ts +3 -0
- package/src/components/notification-center/NotificationItemRow.d.ts +10 -0
- package/src/components/notification-center/index.d.ts +2 -0
- package/src/components/notification-center/notification-center-types.d.ts +32 -0
- package/src/components/page-banner/PageBanner.d.ts +23 -0
- package/src/components/page-banner/index.d.ts +2 -0
- package/src/components/pivot-table/PivotCellEditor.d.ts +14 -0
- package/src/components/pivot-table/PivotConfigPanel.d.ts +23 -0
- package/src/components/pivot-table/PivotFilterEditor.d.ts +12 -0
- package/src/components/pivot-table/PivotTable.d.ts +4 -0
- package/src/components/pivot-table/index.d.ts +2 -0
- package/src/components/pivot-table/pivot-engine.d.ts +23 -0
- package/src/components/pivot-table/pivot-table-types.d.ts +166 -0
- package/src/components/shimmer/ShimmerBarChart.d.ts +12 -0
- package/src/components/shimmer/ShimmerDiv.d.ts +5 -0
- package/src/components/shimmer/ShimmerFeed.d.ts +14 -0
- package/src/components/shimmer/ShimmerLegends.d.ts +8 -0
- package/src/components/shimmer/ShimmerPieChart.d.ts +10 -0
- package/src/components/shimmer/ShimmerTable.d.ts +12 -0
- package/src/components/shimmer/SkeletonAvatar.d.ts +8 -0
- package/src/components/shimmer/SkeletonButton.d.ts +9 -0
- package/src/components/shimmer/SkeletonCard.d.ts +15 -0
- package/src/components/shimmer/SkeletonImage.d.ts +10 -0
- package/src/components/shimmer/SkeletonText.d.ts +11 -0
- package/src/components/shimmer/index.d.ts +10 -0
- package/src/components/slider/Slider.d.ts +45 -0
- package/src/components/slider/index.d.ts +2 -0
- package/src/components/snackbar/Snackbar.d.ts +3 -0
- package/src/components/snackbar/SnackbarManager.d.ts +6 -0
- package/src/components/snackbar/constants.d.ts +4 -0
- package/src/components/snackbar/index.d.ts +1 -0
- package/src/components/snackbar/types.d.ts +30 -0
- package/src/components/splitter/Splitter.d.ts +20 -0
- package/src/components/splitter/index.d.ts +4 -0
- package/src/components/tab-view/TabHeader.d.ts +19 -0
- package/src/components/tab-view/TabNav.d.ts +15 -0
- package/src/components/tab-view/TabPage.d.ts +13 -0
- package/src/components/tab-view/TabView.d.ts +28 -0
- package/src/components/tab-view/index.d.ts +4 -0
- package/src/components/tab-view/tabview-utils.d.ts +5 -0
- package/src/components/table/Table.d.ts +35 -0
- package/src/components/table/TableBody.d.ts +13 -0
- package/src/components/table/TableFooter.d.ts +12 -0
- package/src/components/table/TableHeader.d.ts +9 -0
- package/src/components/table/table-types.d.ts +16 -0
- package/src/components/table/useSortedData.d.ts +2 -0
- package/src/components/timeline/Timeline.d.ts +27 -0
- package/src/components/timeline/TimelineItem.d.ts +11 -0
- package/src/components/timeline/index.d.ts +2 -0
- package/src/components/tooltip/Tooltip.d.ts +17 -0
- package/src/components/tooltip/TooltipManager.d.ts +3 -0
- package/src/components/tooltip/utils.d.ts +6 -0
- package/src/components/tour/StepTour.d.ts +18 -0
- package/src/components/tour/TourTooltip.d.ts +18 -0
- package/src/components/tour/types.d.ts +12 -0
- package/src/components/tour/useWindowResize.d.ts +4 -0
- package/src/components/tour/utils.d.ts +10 -0
- package/src/components/tree-view/TreeNodeComponent.d.ts +4 -0
- package/src/components/tree-view/TreeView.d.ts +4 -0
- package/src/components/tree-view/index.d.ts +2 -0
- package/src/components/tree-view/tree-view-types.d.ts +55 -0
- package/src/hooks/index.d.ts +5 -0
- package/src/hooks/useClickOutside.d.ts +1 -0
- package/src/hooks/useDebounce.d.ts +1 -0
- package/src/hooks/useKeyboard.d.ts +1 -0
- package/src/hooks/useMobile.d.ts +1 -0
- package/src/hooks/usePosition.d.ts +8 -0
- package/src/plugins/vite/index.d.ts +8 -0
- package/src/services/container.d.ts +29 -0
- package/src/services/index.d.ts +3 -0
- package/src/services/react.d.ts +23 -0
- package/src/services/types.d.ts +36 -0
- package/src/store/core/model.d.ts +2 -0
- package/src/store/core/state.d.ts +2 -0
- package/src/store/factory/react-hooks.d.ts +19 -0
- package/src/store/index.d.ts +4 -0
- package/src/store/middlewares/broadcast.d.ts +6 -0
- package/src/store/middlewares/debounce.d.ts +2 -0
- package/src/store/middlewares/devtools.d.ts +4 -0
- package/src/store/middlewares/immer.d.ts +2 -0
- package/src/store/middlewares/index.d.ts +11 -0
- package/src/store/middlewares/logging.d.ts +2 -0
- package/src/store/middlewares/persist.d.ts +2 -0
- package/src/store/middlewares/throttle.d.ts +2 -0
- package/src/store/middlewares/undo-redo.d.ts +13 -0
- package/src/store/middlewares/validation.d.ts +2 -0
- package/src/store/types.d.ts +99 -0
- package/src/story/CodeBlock.d.ts +9 -0
- package/src/story/ComponentDemo.d.ts +10 -0
- package/src/story/FeatureCard.d.ts +16 -0
- package/src/story/IconShowcase.d.ts +6 -0
- package/src/story/Layout.d.ts +6 -0
- package/src/story/Navigation.d.ts +6 -0
- package/src/story/PageLayout.d.ts +8 -0
- package/src/story/PropsTable.d.ts +13 -0
- package/src/story/SectionNav.d.ts +11 -0
- package/src/story/StoryThemeContext.d.ts +16 -0
- package/src/story/pages/HomePage.d.ts +3 -0
- package/src/story/pages/IconsPage.d.ts +2 -0
- package/src/story/pages/InstallationPage.d.ts +3 -0
- package/src/story/pages/animate-on-view/AllAnimations.d.ts +3 -0
- package/src/story/pages/animate-on-view/AnimateOnViewPage.d.ts +3 -0
- package/src/story/pages/animate-on-view/BasicUsage.d.ts +3 -0
- package/src/story/pages/animate-on-view/ConfigOptions.d.ts +3 -0
- package/src/story/pages/animate-on-view/ScrollDemo.d.ts +3 -0
- package/src/story/pages/animate-on-view/StaggeredAnimations.d.ts +3 -0
- package/src/story/pages/autocomplete/AutocompletePage.d.ts +3 -0
- package/src/story/pages/autocomplete/BasicUsage.d.ts +3 -0
- package/src/story/pages/autocomplete/CustomConfiguration.d.ts +3 -0
- package/src/story/pages/autocomplete/DisabledState.d.ts +3 -0
- package/src/story/pages/autocomplete/UsageExamples.d.ts +3 -0
- package/src/story/pages/autocomplete/autocomplete-story-data.d.ts +6 -0
- package/src/story/pages/autocomplete-multi/AutocompleteMultiPage.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/BasicUsage.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/DisabledState.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/LimitedSelections.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/PresetValues.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/UsageExamples.d.ts +3 -0
- package/src/story/pages/autocomplete-multi/autocomplete-multi-story-data.d.ts +6 -0
- package/src/story/pages/breadcrumb/BasicUsage.d.ts +3 -0
- package/src/story/pages/breadcrumb/BreadcrumbPage.d.ts +3 -0
- package/src/story/pages/breadcrumb/CollapsedItems.d.ts +3 -0
- package/src/story/pages/breadcrumb/CustomSeparator.d.ts +3 -0
- package/src/story/pages/button/AsLink.d.ts +3 -0
- package/src/story/pages/button/AsyncAction.d.ts +3 -0
- package/src/story/pages/button/BasicUsage.d.ts +3 -0
- package/src/story/pages/button/ButtonPage.d.ts +3 -0
- package/src/story/pages/button/Combinations.d.ts +3 -0
- package/src/story/pages/button/CountdownTimer.d.ts +3 -0
- package/src/story/pages/button/FullWidth.d.ts +3 -0
- package/src/story/pages/button/Layouts.d.ts +3 -0
- package/src/story/pages/button/Sizes.d.ts +3 -0
- package/src/story/pages/button/States.d.ts +3 -0
- package/src/story/pages/button/Variants.d.ts +3 -0
- package/src/story/pages/button/WithIcons.d.ts +3 -0
- package/src/story/pages/calendar/BasicUsage.d.ts +3 -0
- package/src/story/pages/calendar/CalendarPage.d.ts +3 -0
- package/src/story/pages/calendar/CompactMode.d.ts +3 -0
- package/src/story/pages/calendar/CustomRendering.d.ts +3 -0
- package/src/story/pages/calendar/CustomToolbarEnd.d.ts +3 -0
- package/src/story/pages/calendar/DateBackgrounds.d.ts +3 -0
- package/src/story/pages/calendar/DragDropResize.d.ts +3 -0
- package/src/story/pages/calendar/ExternalDragDrop.d.ts +3 -0
- package/src/story/pages/calendar/ImperativeApi.d.ts +3 -0
- package/src/story/pages/calendar/NavigationPickerDemo.d.ts +3 -0
- package/src/story/pages/calendar/PluginSystem.d.ts +3 -0
- package/src/story/pages/calendar/PluginViews.d.ts +3 -0
- package/src/story/pages/calendar/TimeGridConfig.d.ts +3 -0
- package/src/story/pages/calendar/ViewModes.d.ts +3 -0
- package/src/story/pages/calendar/calendar-story-data.d.ts +18 -0
- package/src/story/pages/calendar-playground/CalendarPlaygroundPage.d.ts +3 -0
- package/src/story/pages/calendar-playground/PlaygroundSettings.d.ts +65 -0
- package/src/story/pages/canvas-draw/CanvasDrawPage.d.ts +3 -0
- package/src/story/pages/canvas-draw/ControlledMode.d.ts +3 -0
- package/src/story/pages/canvas-draw/DrawingCanvas.d.ts +3 -0
- package/src/story/pages/canvas-draw/ExportDemo.d.ts +3 -0
- package/src/story/pages/canvas-draw/FeatureFlags.d.ts +3 -0
- package/src/story/pages/canvas-draw/ImageAnnotation.d.ts +3 -0
- package/src/story/pages/canvas-draw/MediaTimelineDemo.d.ts +3 -0
- package/src/story/pages/canvas-draw/ReadOnlyMode.d.ts +3 -0
- package/src/story/pages/canvas-draw/TimedAnnotations.d.ts +3 -0
- package/src/story/pages/canvas-draw/ToolSubset.d.ts +3 -0
- package/src/story/pages/canvas-draw/ToolbarPlacement.d.ts +3 -0
- package/src/story/pages/canvas-draw/canvas-draw-story-data.d.ts +7 -0
- package/src/story/pages/carousel/Autoplay.d.ts +3 -0
- package/src/story/pages/carousel/BasicUsage.d.ts +3 -0
- package/src/story/pages/carousel/CarouselPage.d.ts +3 -0
- package/src/story/pages/carousel/ThumbnailNav.d.ts +3 -0
- package/src/story/pages/checkbox/BasicUsage.d.ts +3 -0
- package/src/story/pages/checkbox/CheckboxGroup.d.ts +3 -0
- package/src/story/pages/checkbox/CheckboxPage.d.ts +3 -0
- package/src/story/pages/checkbox/IndeterminateState.d.ts +3 -0
- package/src/story/pages/checkbox/States.d.ts +3 -0
- package/src/story/pages/chips/BasicUsage.d.ts +3 -0
- package/src/story/pages/chips/ChipsPage.d.ts +3 -0
- package/src/story/pages/chips/LimitedChips.d.ts +3 -0
- package/src/story/pages/chips/States.d.ts +3 -0
- package/src/story/pages/chips/chips-story-data.d.ts +2 -0
- package/src/story/pages/collapsible-panel/AccordionGroup.d.ts +3 -0
- package/src/story/pages/collapsible-panel/BasicUsage.d.ts +3 -0
- package/src/story/pages/collapsible-panel/CollapsiblePanelPage.d.ts +3 -0
- package/src/story/pages/collapsible-panel/Controlled.d.ts +3 -0
- package/src/story/pages/collapsible-panel/CustomHeaderTemplate.d.ts +3 -0
- package/src/story/pages/collapsible-panel/DisabledState.d.ts +3 -0
- package/src/story/pages/collapsible-panel/HeaderActions.d.ts +3 -0
- package/src/story/pages/collapsible-panel/HorizontalTabs.d.ts +3 -0
- package/src/story/pages/collapsible-panel/HorizontalTabsVariants.d.ts +3 -0
- package/src/story/pages/collapsible-panel/IconPositions.d.ts +3 -0
- package/src/story/pages/collapsible-panel/MultiOpenGroup.d.ts +3 -0
- package/src/story/pages/collapsible-panel/Sizes.d.ts +3 -0
- package/src/story/pages/collapsible-panel/Variants.d.ts +3 -0
- package/src/story/pages/collapsible-panel/WithIcons.d.ts +3 -0
- package/src/story/pages/confirm-popover/ConfirmCustomDemo.d.ts +3 -0
- package/src/story/pages/confirm-popover/ConfirmPopoverPage.d.ts +3 -0
- package/src/story/pages/confirm-popover/CustomActionsDemo.d.ts +3 -0
- package/src/story/pages/confirm-popover/InfoOkDemo.d.ts +3 -0
- package/src/story/pages/confirm-popover/RichJsxDemo.d.ts +3 -0
- package/src/story/pages/confirm-popover/SetupSection.d.ts +3 -0
- package/src/story/pages/confirm-popover/YesNoDemo.d.ts +3 -0
- package/src/story/pages/context-menu/ButtonTriggered.d.ts +3 -0
- package/src/story/pages/context-menu/ContextMenuPage.d.ts +3 -0
- package/src/story/pages/context-menu/NestedSubmenus.d.ts +3 -0
- package/src/story/pages/context-menu/RightClickMenu.d.ts +3 -0
- package/src/story/pages/context-menu/ScrollableMenu.d.ts +3 -0
- package/src/story/pages/context-menu/SetupSection.d.ts +3 -0
- package/src/story/pages/context-menu/TableRowMenu.d.ts +3 -0
- package/src/story/pages/context-menu/context-menu-story-data.d.ts +52 -0
- package/src/story/pages/date-range-picker/BasicUsage.d.ts +3 -0
- package/src/story/pages/date-range-picker/Constraints.d.ts +3 -0
- package/src/story/pages/date-range-picker/CustomFormat.d.ts +3 -0
- package/src/story/pages/date-range-picker/DateRangePickerPage.d.ts +3 -0
- package/src/story/pages/date-range-picker/DisabledState.d.ts +3 -0
- package/src/story/pages/date-range-picker/FirstDayOfWeek.d.ts +3 -0
- package/src/story/pages/date-range-picker/PositionDemo.d.ts +3 -0
- package/src/story/pages/date-range-picker/PresetDates.d.ts +3 -0
- package/src/story/pages/date-range-picker/QuickSelect.d.ts +3 -0
- package/src/story/pages/date-range-picker/SelectionModes.d.ts +3 -0
- package/src/story/pages/date-range-picker/SingleDatePicker.d.ts +3 -0
- package/src/story/pages/date-range-picker/TodayButton.d.ts +3 -0
- package/src/story/pages/date-range-picker/date-range-picker-story-data.d.ts +8 -0
- package/src/story/pages/deferred-view/BasicUsageDemo.d.ts +3 -0
- package/src/story/pages/deferred-view/DeferredViewPage.d.ts +3 -0
- package/src/story/pages/deferred-view/KeepMountedDemo.d.ts +3 -0
- package/src/story/pages/deferred-view/LazyImageDemo.d.ts +3 -0
- package/src/story/pages/deferred-view/PlaceholderDemo.d.ts +3 -0
- package/src/story/pages/deferred-view/RootMarginDemo.d.ts +3 -0
- package/src/story/pages/demo-showcase/DemoShowcasePage.d.ts +3 -0
- package/src/story/pages/demo-showcase/FormSection.d.ts +8 -0
- package/src/story/pages/demo-showcase/TableSection.d.ts +6 -0
- package/src/story/pages/demo-showcase/TabsAndProgressSection.d.ts +6 -0
- package/src/story/pages/drag-drop/BasicDragDrop.d.ts +3 -0
- package/src/story/pages/drag-drop/DragDropPage.d.ts +3 -0
- package/src/story/pages/drag-drop/MultiContainer.d.ts +3 -0
- package/src/story/pages/drag-drop/RenderProps.d.ts +3 -0
- package/src/story/pages/drag-drop/SetupSection.d.ts +3 -0
- package/src/story/pages/drag-drop/TypeBasedDragDrop.d.ts +3 -0
- package/src/story/pages/drag-drop/drag-drop-story-data.d.ts +6 -0
- package/src/story/pages/drawer/BasicUsage.d.ts +3 -0
- package/src/story/pages/drawer/CustomContent.d.ts +3 -0
- package/src/story/pages/drawer/DrawerPage.d.ts +3 -0
- package/src/story/pages/drawer/Positions.d.ts +3 -0
- package/src/story/pages/dropdown/BasicUsage.d.ts +3 -0
- package/src/story/pages/dropdown/ClearableDropdown.d.ts +3 -0
- package/src/story/pages/dropdown/CustomFieldMapping.d.ts +3 -0
- package/src/story/pages/dropdown/DropdownPage.d.ts +3 -0
- package/src/story/pages/dropdown/DropdownStates.d.ts +3 -0
- package/src/story/pages/dropdown/GroupedOptions.d.ts +3 -0
- package/src/story/pages/dropdown/SearchableDropdown.d.ts +3 -0
- package/src/story/pages/dropdown/dropdown-story-data.d.ts +33 -0
- package/src/story/pages/fab-speed-dial/FabBasic.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/FabExtended.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/FabSizes.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/FabSpeedDialPage.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/SpeedDialBasic.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/SpeedDialClick.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/SpeedDialDirections.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/SpeedDialSizes.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/SpeedDialVariants.d.ts +3 -0
- package/src/story/pages/fab-speed-dial/fab-story-icons.d.ts +11 -0
- package/src/story/pages/field-label/BasicLabel.d.ts +3 -0
- package/src/story/pages/field-label/CombinedStates.d.ts +3 -0
- package/src/story/pages/field-label/DisabledState.d.ts +3 -0
- package/src/story/pages/field-label/ErrorState.d.ts +3 -0
- package/src/story/pages/field-label/FieldLabelPage.d.ts +3 -0
- package/src/story/pages/field-label/OptionalField.d.ts +3 -0
- package/src/story/pages/field-label/RequiredField.d.ts +3 -0
- package/src/story/pages/file-upload/BasicUsage.d.ts +3 -0
- package/src/story/pages/file-upload/FileUploadPage.d.ts +3 -0
- package/src/story/pages/file-upload/ImagePreview.d.ts +3 -0
- package/src/story/pages/file-upload/Validation.d.ts +3 -0
- package/src/story/pages/gantt-chart/BasicUsage.d.ts +3 -0
- package/src/story/pages/gantt-chart/CustomColumns.d.ts +3 -0
- package/src/story/pages/gantt-chart/DateMarkers.d.ts +3 -0
- package/src/story/pages/gantt-chart/Dependencies.d.ts +3 -0
- package/src/story/pages/gantt-chart/DragAndDrop.d.ts +3 -0
- package/src/story/pages/gantt-chart/GanttChartPage.d.ts +3 -0
- package/src/story/pages/gantt-chart/HierarchicalTasks.d.ts +3 -0
- package/src/story/pages/gantt-chart/QuarterlyView.d.ts +3 -0
- package/src/story/pages/gantt-chart/ReadOnly.d.ts +3 -0
- package/src/story/pages/gantt-chart/SprintPlanning.d.ts +3 -0
- package/src/story/pages/gantt-chart/TaskCreation.d.ts +3 -0
- package/src/story/pages/gantt-chart/TimelineOnly.d.ts +3 -0
- package/src/story/pages/gantt-chart/ViewModes.d.ts +3 -0
- package/src/story/pages/gantt-chart/gantt-chart-story-data.d.ts +10 -0
- package/src/story/pages/hooks-utils/HooksUtilsPage.d.ts +3 -0
- package/src/story/pages/hooks-utils/UseClickOutsideDemo.d.ts +3 -0
- package/src/story/pages/hooks-utils/UseDebounceDemo.d.ts +3 -0
- package/src/story/pages/hooks-utils/UseKeyboardDemo.d.ts +3 -0
- package/src/story/pages/hooks-utils/UseMobileDemo.d.ts +3 -0
- package/src/story/pages/hooks-utils/UtilFunctionsDemo.d.ts +3 -0
- package/src/story/pages/hooks-utils/WithFieldLabelDemo.d.ts +3 -0
- package/src/story/pages/image-editor/BasicUsage.d.ts +3 -0
- package/src/story/pages/image-editor/CropOnly.d.ts +3 -0
- package/src/story/pages/image-editor/CustomTools.d.ts +3 -0
- package/src/story/pages/image-editor/ExportOptions.d.ts +3 -0
- package/src/story/pages/image-editor/ImageEditorPage.d.ts +3 -0
- package/src/story/pages/infinite-scroll/BasicUsage.d.ts +3 -0
- package/src/story/pages/infinite-scroll/ErrorHandling.d.ts +3 -0
- package/src/story/pages/infinite-scroll/InfiniteScrollPage.d.ts +3 -0
- package/src/story/pages/input-group/EmailInput.d.ts +3 -0
- package/src/story/pages/input-group/FileUpload.d.ts +3 -0
- package/src/story/pages/input-group/InputGroupPage.d.ts +3 -0
- package/src/story/pages/input-group/PhoneNumber.d.ts +3 -0
- package/src/story/pages/input-group/PriceInput.d.ts +3 -0
- package/src/story/pages/input-group/SearchInput.d.ts +3 -0
- package/src/story/pages/input-group/UrlInput.d.ts +3 -0
- package/src/story/pages/input-switch/BasicUsage.d.ts +3 -0
- package/src/story/pages/input-switch/CustomLabels.d.ts +3 -0
- package/src/story/pages/input-switch/DisabledStates.d.ts +3 -0
- package/src/story/pages/input-switch/FormIntegration.d.ts +3 -0
- package/src/story/pages/input-switch/InputSwitchPage.d.ts +3 -0
- package/src/story/pages/input-switch/SettingsPanel.d.ts +3 -0
- package/src/story/pages/json-editor/ArrayEditing.d.ts +3 -0
- package/src/story/pages/json-editor/BasicUsage.d.ts +3 -0
- package/src/story/pages/json-editor/ComplexData.d.ts +3 -0
- package/src/story/pages/json-editor/JsonEditorPage.d.ts +3 -0
- package/src/story/pages/json-editor/NestedObjects.d.ts +3 -0
- package/src/story/pages/json-editor/PermissionControls.d.ts +3 -0
- package/src/story/pages/json-editor/ReadOnlyMode.d.ts +3 -0
- package/src/story/pages/json-editor/SizeVariants.d.ts +3 -0
- package/src/story/pages/json-editor/SortedKeys.d.ts +3 -0
- package/src/story/pages/json-editor/TypeShowcase.d.ts +3 -0
- package/src/story/pages/json-editor/json-editor-story-data.d.ts +8 -0
- package/src/story/pages/kanban-board/BasicUsage.d.ts +3 -0
- package/src/story/pages/kanban-board/BlockedCards.d.ts +3 -0
- package/src/story/pages/kanban-board/CardActions.d.ts +3 -0
- package/src/story/pages/kanban-board/CollapsibleColumns.d.ts +3 -0
- package/src/story/pages/kanban-board/ColumnLimits.d.ts +3 -0
- package/src/story/pages/kanban-board/CompactMode.d.ts +3 -0
- package/src/story/pages/kanban-board/CustomColumnHeader.d.ts +3 -0
- package/src/story/pages/kanban-board/CustomTemplates.d.ts +3 -0
- package/src/story/pages/kanban-board/DetailedCards.d.ts +3 -0
- package/src/story/pages/kanban-board/InteractiveBoard.d.ts +3 -0
- package/src/story/pages/kanban-board/KanbanBoardPage.d.ts +3 -0
- package/src/story/pages/kanban-board/LockedColumns.d.ts +3 -0
- package/src/story/pages/kanban-board/StickyHeaders.d.ts +3 -0
- package/src/story/pages/kanban-board/VerticalLayout.d.ts +3 -0
- package/src/story/pages/kanban-board/kanban-story-data.d.ts +19 -0
- package/src/story/pages/lightbox/BasicUsage.d.ts +3 -0
- package/src/story/pages/lightbox/LightboxPage.d.ts +3 -0
- package/src/story/pages/list-box/DisabledState.d.ts +3 -0
- package/src/story/pages/list-box/GroupedList.d.ts +3 -0
- package/src/story/pages/list-box/ListBoxPage.d.ts +3 -0
- package/src/story/pages/list-box/MultipleSelection.d.ts +3 -0
- package/src/story/pages/list-box/SearchableList.d.ts +3 -0
- package/src/story/pages/list-box/SingleSelection.d.ts +3 -0
- package/src/story/pages/list-box/list-box-story-data.d.ts +4 -0
- package/src/story/pages/masked-input/CustomSlotChar.d.ts +3 -0
- package/src/story/pages/masked-input/IncludeLiterals.d.ts +3 -0
- package/src/story/pages/masked-input/InputStates.d.ts +3 -0
- package/src/story/pages/masked-input/KeyboardNavigation.d.ts +3 -0
- package/src/story/pages/masked-input/MaskExamples.d.ts +8 -0
- package/src/story/pages/masked-input/MaskSyntax.d.ts +3 -0
- package/src/story/pages/masked-input/MaskedInputPage.d.ts +3 -0
- package/src/story/pages/masked-input/PrefilledValue.d.ts +3 -0
- package/src/story/pages/menu-nav/BasicUsage.d.ts +3 -0
- package/src/story/pages/menu-nav/Collapsible.d.ts +3 -0
- package/src/story/pages/menu-nav/CustomSlots.d.ts +3 -0
- package/src/story/pages/menu-nav/GroupedMenus.d.ts +3 -0
- package/src/story/pages/menu-nav/Horizontal.d.ts +3 -0
- package/src/story/pages/menu-nav/MenuNavPage.d.ts +3 -0
- package/src/story/pages/menu-nav/NestedMenus.d.ts +3 -0
- package/src/story/pages/menu-nav/SelectionStyles.d.ts +3 -0
- package/src/story/pages/menu-nav/Sizes.d.ts +3 -0
- package/src/story/pages/menu-nav/ToolbarMode.d.ts +3 -0
- package/src/story/pages/menu-nav/menu-nav-story-data.d.ts +7 -0
- package/src/story/pages/modal/BasicUsage.d.ts +3 -0
- package/src/story/pages/modal/CustomLayout.d.ts +3 -0
- package/src/story/pages/modal/FormExample.d.ts +3 -0
- package/src/story/pages/modal/ModalPage.d.ts +3 -0
- package/src/story/pages/modal/NestedModals.d.ts +3 -0
- package/src/story/pages/modal/NonClosable.d.ts +3 -0
- package/src/story/pages/modal/ScrollableContent.d.ts +3 -0
- package/src/story/pages/modal/Sizes.d.ts +3 -0
- package/src/story/pages/modal/WithoutTitle.d.ts +3 -0
- package/src/story/pages/multi-state-checkbox/BasicUsage.d.ts +3 -0
- package/src/story/pages/multi-state-checkbox/ControlledState.d.ts +3 -0
- package/src/story/pages/multi-state-checkbox/CustomStates.d.ts +3 -0
- package/src/story/pages/multi-state-checkbox/MultiStateCheckboxPage.d.ts +3 -0
- package/src/story/pages/multi-state-checkbox/multi-state-checkbox-story-data.d.ts +4 -0
- package/src/story/pages/multiselect/BasicUsage.d.ts +3 -0
- package/src/story/pages/multiselect/CustomFieldMapping.d.ts +3 -0
- package/src/story/pages/multiselect/GroupedOptions.d.ts +3 -0
- package/src/story/pages/multiselect/MultiselectPage.d.ts +3 -0
- package/src/story/pages/multiselect/MultiselectStates.d.ts +3 -0
- package/src/story/pages/multiselect/SelectAll.d.ts +3 -0
- package/src/story/pages/multiselect/SelectionLimit.d.ts +3 -0
- package/src/story/pages/multiselect/WithoutSearch.d.ts +3 -0
- package/src/story/pages/multiselect/multiselect-story-data.d.ts +28 -0
- package/src/story/pages/notification-center/BasicUsage.d.ts +3 -0
- package/src/story/pages/notification-center/Categories.d.ts +3 -0
- package/src/story/pages/notification-center/CustomTrigger.d.ts +3 -0
- package/src/story/pages/notification-center/NotificationCenterPage.d.ts +3 -0
- package/src/story/pages/numeric-input/BasicUsage.d.ts +3 -0
- package/src/story/pages/numeric-input/DecimalPrecision.d.ts +3 -0
- package/src/story/pages/numeric-input/MinMaxRange.d.ts +3 -0
- package/src/story/pages/numeric-input/NumericInputPage.d.ts +3 -0
- package/src/story/pages/numeric-input/NumericInputStates.d.ts +3 -0
- package/src/story/pages/page-banner/BasicUsage.d.ts +3 -0
- package/src/story/pages/page-banner/CustomContent.d.ts +3 -0
- package/src/story/pages/page-banner/Dismissible.d.ts +3 -0
- package/src/story/pages/page-banner/PageBannerPage.d.ts +3 -0
- package/src/story/pages/page-banner/PageLevel.d.ts +3 -0
- package/src/story/pages/page-banner/WithActions.d.ts +3 -0
- package/src/story/pages/password/BasicUsage.d.ts +3 -0
- package/src/story/pages/password/PasswordPage.d.ts +3 -0
- package/src/story/pages/password/PasswordStates.d.ts +3 -0
- package/src/story/pages/pivot-table/BasicUsage.d.ts +3 -0
- package/src/story/pages/pivot-table/ColumnPivot.d.ts +3 -0
- package/src/story/pages/pivot-table/Filtering.d.ts +3 -0
- package/src/story/pages/pivot-table/InteractiveDemo.d.ts +3 -0
- package/src/story/pages/pivot-table/MultiLevelPivot.d.ts +3 -0
- package/src/story/pages/pivot-table/MultipleFunctions.d.ts +3 -0
- package/src/story/pages/pivot-table/PivotTablePage.d.ts +3 -0
- package/src/story/pages/pivot-table/pivot-table-story-data.d.ts +17 -0
- package/src/story/pages/pivot-table-playground/PivotTablePlaygroundPage.d.ts +3 -0
- package/src/story/pages/popover/BasicUsage.d.ts +3 -0
- package/src/story/pages/popover/ControlledPopover.d.ts +3 -0
- package/src/story/pages/popover/CustomContent.d.ts +3 -0
- package/src/story/pages/popover/FilterablePopover.d.ts +3 -0
- package/src/story/pages/popover/GroupedItems.d.ts +3 -0
- package/src/story/pages/popover/PopoverPage.d.ts +3 -0
- package/src/story/pages/popover/popover-story-data.d.ts +5 -0
- package/src/story/pages/progress-bar/BasicUsage.d.ts +3 -0
- package/src/story/pages/progress-bar/BufferProgress.d.ts +3 -0
- package/src/story/pages/progress-bar/DynamicProgress.d.ts +3 -0
- package/src/story/pages/progress-bar/Indeterminate.d.ts +3 -0
- package/src/story/pages/progress-bar/LabelsAndValues.d.ts +3 -0
- package/src/story/pages/progress-bar/Layouts.d.ts +3 -0
- package/src/story/pages/progress-bar/MultiSegment.d.ts +3 -0
- package/src/story/pages/progress-bar/ProgressBarPage.d.ts +3 -0
- package/src/story/pages/progress-bar/Sizes.d.ts +3 -0
- package/src/story/pages/progress-bar/Variants.d.ts +3 -0
- package/src/story/pages/radio-button/BasicUsage.d.ts +3 -0
- package/src/story/pages/radio-button/ControlledUncontrolled.d.ts +3 -0
- package/src/story/pages/radio-button/HorizontalLayout.d.ts +3 -0
- package/src/story/pages/radio-button/RadioButtonPage.d.ts +3 -0
- package/src/story/pages/radio-button/States.d.ts +3 -0
- package/src/story/pages/radio-button/radio-button-story-data.d.ts +13 -0
- package/src/story/pages/select-button/BasicUsage.d.ts +3 -0
- package/src/story/pages/select-button/DisabledItems.d.ts +3 -0
- package/src/story/pages/select-button/DisabledState.d.ts +3 -0
- package/src/story/pages/select-button/MultipleSelection.d.ts +3 -0
- package/src/story/pages/select-button/RealWorldExamples.d.ts +3 -0
- package/src/story/pages/select-button/SelectButtonPage.d.ts +3 -0
- package/src/story/pages/select-button/SizeVariants.d.ts +3 -0
- package/src/story/pages/select-button/ThemeVariants.d.ts +3 -0
- package/src/story/pages/select-button/UsageNotes.d.ts +3 -0
- package/src/story/pages/select-button/VerticalDirection.d.ts +3 -0
- package/src/story/pages/select-button/WithIcons.d.ts +3 -0
- package/src/story/pages/select-button/select-button-story-data.d.ts +30 -0
- package/src/story/pages/services/BasicUsage.d.ts +3 -0
- package/src/story/pages/services/Lifetimes.d.ts +3 -0
- package/src/story/pages/services/Parameterized.d.ts +3 -0
- package/src/story/pages/services/ReactIntegration.d.ts +3 -0
- package/src/story/pages/services/ServicesPage.d.ts +3 -0
- package/src/story/pages/services/SwappingImplementations.d.ts +3 -0
- package/src/story/pages/services/services-story-data.d.ts +92 -0
- package/src/story/pages/shimmer/ProfileCard.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerBarChartDemo.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerDivDemo.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerFeedDemo.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerPage.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerPieChartDemo.d.ts +3 -0
- package/src/story/pages/shimmer/ShimmerTableDemo.d.ts +3 -0
- package/src/story/pages/slider/BasicUsage.d.ts +3 -0
- package/src/story/pages/slider/Formatting.d.ts +3 -0
- package/src/story/pages/slider/GridSnap.d.ts +3 -0
- package/src/story/pages/slider/RangeSlider.d.ts +3 -0
- package/src/story/pages/slider/Sizes.d.ts +3 -0
- package/src/story/pages/slider/SliderPage.d.ts +3 -0
- package/src/story/pages/slider/StringValues.d.ts +3 -0
- package/src/story/pages/slider/Variants.d.ts +3 -0
- package/src/story/pages/slider/VerticalSlider.d.ts +3 -0
- package/src/story/pages/slider/WithMarks.d.ts +3 -0
- package/src/story/pages/snackbar/AnimationsDemo.d.ts +3 -0
- package/src/story/pages/snackbar/ClickCallback.d.ts +3 -0
- package/src/story/pages/snackbar/LightBackground.d.ts +3 -0
- package/src/story/pages/snackbar/PersistentTimeout.d.ts +3 -0
- package/src/story/pages/snackbar/PositionsDemo.d.ts +3 -0
- package/src/story/pages/snackbar/SetupSection.d.ts +3 -0
- package/src/story/pages/snackbar/SnackbarPage.d.ts +3 -0
- package/src/story/pages/snackbar/TypesDemo.d.ts +3 -0
- package/src/story/pages/sortable/BasicSortable.d.ts +3 -0
- package/src/story/pages/sortable/ComplexItems.d.ts +3 -0
- package/src/story/pages/sortable/DragHandles.d.ts +3 -0
- package/src/story/pages/sortable/MultipleLists.d.ts +3 -0
- package/src/story/pages/sortable/SetupSection.d.ts +3 -0
- package/src/story/pages/sortable/SortablePage.d.ts +3 -0
- package/src/story/pages/sortable/TypeBasedSortable.d.ts +3 -0
- package/src/story/pages/sortable/sortable-story-data.d.ts +15 -0
- package/src/story/pages/splitter/DefaultSizePct.d.ts +3 -0
- package/src/story/pages/splitter/DefaultSizePx.d.ts +3 -0
- package/src/story/pages/splitter/FixedPanel.d.ts +3 -0
- package/src/story/pages/splitter/GutterSize.d.ts +3 -0
- package/src/story/pages/splitter/HorizontalSplit.d.ts +3 -0
- package/src/story/pages/splitter/KeyboardNavigation.d.ts +3 -0
- package/src/story/pages/splitter/MinSize.d.ts +3 -0
- package/src/story/pages/splitter/NestedSplitters.d.ts +3 -0
- package/src/story/pages/splitter/OnResizeEnd.d.ts +3 -0
- package/src/story/pages/splitter/PersistingLayout.d.ts +3 -0
- package/src/story/pages/splitter/SplitterPage.d.ts +3 -0
- package/src/story/pages/splitter/VerticalSplit.d.ts +3 -0
- package/src/story/pages/stepper/BasicUsage.d.ts +3 -0
- package/src/story/pages/stepper/ColorVariants.d.ts +3 -0
- package/src/story/pages/stepper/InteractiveSteps.d.ts +3 -0
- package/src/story/pages/stepper/LabelPlacement.d.ts +3 -0
- package/src/story/pages/stepper/LayoutShapes.d.ts +3 -0
- package/src/story/pages/stepper/SizeOptions.d.ts +3 -0
- package/src/story/pages/stepper/StepStatus.d.ts +3 -0
- package/src/story/pages/stepper/StepperPage.d.ts +3 -0
- package/src/story/pages/stepper/TextOnly.d.ts +3 -0
- package/src/story/pages/stepper/VerticalOrientation.d.ts +3 -0
- package/src/story/pages/stepper/WithIcons.d.ts +3 -0
- package/src/story/pages/stepper/stepper-story-data.d.ts +7 -0
- package/src/story/pages/store-basic/BasicUsage.d.ts +3 -0
- package/src/story/pages/store-basic/BatchedUpdates.d.ts +3 -0
- package/src/story/pages/store-basic/ComputedProperties.d.ts +3 -0
- package/src/story/pages/store-basic/MiddlewareDemo.d.ts +3 -0
- package/src/story/pages/store-basic/MultipleStores.d.ts +3 -0
- package/src/story/pages/store-basic/PathSubscriptions.d.ts +3 -0
- package/src/story/pages/store-basic/StoreBasicPage.d.ts +3 -0
- package/src/story/pages/store-middleware/BroadcastDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/DebounceDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/LoggingDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/PersistDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/StoreMiddlewarePage.d.ts +3 -0
- package/src/story/pages/store-middleware/ThrottleDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/UndoRedoDemo.d.ts +3 -0
- package/src/story/pages/store-middleware/ValidationDemo.d.ts +3 -0
- package/src/story/pages/store-model/BasicCRUD.d.ts +3 -0
- package/src/story/pages/store-model/CombinedDemo.d.ts +3 -0
- package/src/story/pages/store-model/ListManagement.d.ts +3 -0
- package/src/story/pages/store-model/PersistenceDemo.d.ts +3 -0
- package/src/story/pages/store-model/StoreModelPage.d.ts +3 -0
- package/src/story/pages/store-model/ValidationDemo.d.ts +3 -0
- package/src/story/pages/tab-view/BasicUsage.d.ts +3 -0
- package/src/story/pages/tab-view/ClosableTabs.d.ts +3 -0
- package/src/story/pages/tab-view/EventHandling.d.ts +3 -0
- package/src/story/pages/tab-view/HeaderEnd.d.ts +3 -0
- package/src/story/pages/tab-view/Positions.d.ts +3 -0
- package/src/story/pages/tab-view/ScrollableTabs.d.ts +3 -0
- package/src/story/pages/tab-view/StyleVariants.d.ts +3 -0
- package/src/story/pages/tab-view/TabViewPage.d.ts +3 -0
- package/src/story/pages/tab-view/WithIcons.d.ts +3 -0
- package/src/story/pages/table/BasicUsage.d.ts +3 -0
- package/src/story/pages/table/CustomRendering.d.ts +3 -0
- package/src/story/pages/table/LoadingAndEmpty.d.ts +3 -0
- package/src/story/pages/table/ResponsiveColumns.d.ts +3 -0
- package/src/story/pages/table/RowSelection.d.ts +3 -0
- package/src/story/pages/table/SortableColumns.d.ts +3 -0
- package/src/story/pages/table/StyleVariants.d.ts +3 -0
- package/src/story/pages/table/TablePage.d.ts +3 -0
- package/src/story/pages/table/WithActions.d.ts +3 -0
- package/src/story/pages/table/WithPagination.d.ts +3 -0
- package/src/story/pages/table/table-story-data.d.ts +13 -0
- package/src/story/pages/text-input/BasicUsage.d.ts +3 -0
- package/src/story/pages/text-input/TextInputPage.d.ts +3 -0
- package/src/story/pages/text-input/TextInputStates.d.ts +3 -0
- package/src/story/pages/text-input/Validation.d.ts +3 -0
- package/src/story/pages/text-input/WithIcons.d.ts +3 -0
- package/src/story/pages/text-input/WithLabel.d.ts +3 -0
- package/src/story/pages/textarea/AutoResize.d.ts +3 -0
- package/src/story/pages/textarea/BasicUsage.d.ts +3 -0
- package/src/story/pages/textarea/CharacterLimit.d.ts +3 -0
- package/src/story/pages/textarea/RowHeights.d.ts +3 -0
- package/src/story/pages/textarea/TextAreaPage.d.ts +3 -0
- package/src/story/pages/textarea/TextAreaStates.d.ts +3 -0
- package/src/story/pages/timeline/AlternateAlignment.d.ts +3 -0
- package/src/story/pages/timeline/BasicUsage.d.ts +3 -0
- package/src/story/pages/timeline/CustomMarkers.d.ts +3 -0
- package/src/story/pages/timeline/HorizontalLayout.d.ts +3 -0
- package/src/story/pages/timeline/TimelinePage.d.ts +3 -0
- package/src/story/pages/toggle-button/BasicUsage.d.ts +3 -0
- package/src/story/pages/toggle-button/CustomLabels.d.ts +3 -0
- package/src/story/pages/toggle-button/CustomStyling.d.ts +3 -0
- package/src/story/pages/toggle-button/EventHandling.d.ts +3 -0
- package/src/story/pages/toggle-button/FormIntegration.d.ts +3 -0
- package/src/story/pages/toggle-button/MultipleToggles.d.ts +3 -0
- package/src/story/pages/toggle-button/Sizes.d.ts +3 -0
- package/src/story/pages/toggle-button/States.d.ts +3 -0
- package/src/story/pages/toggle-button/ToggleButtonPage.d.ts +3 -0
- package/src/story/pages/toggle-button/Variants.d.ts +3 -0
- package/src/story/pages/tooltip/BasicUsage.d.ts +3 -0
- package/src/story/pages/tooltip/CustomTimeout.d.ts +3 -0
- package/src/story/pages/tooltip/OnAnyElement.d.ts +3 -0
- package/src/story/pages/tooltip/Placements.d.ts +3 -0
- package/src/story/pages/tooltip/RichContent.d.ts +3 -0
- package/src/story/pages/tooltip/SetupSection.d.ts +3 -0
- package/src/story/pages/tooltip/TooltipPage.d.ts +3 -0
- package/src/story/pages/tour/BasicTour.d.ts +3 -0
- package/src/story/pages/tour/DarkModeSection.d.ts +3 -0
- package/src/story/pages/tour/PlacementOptions.d.ts +3 -0
- package/src/story/pages/tour/RichContent.d.ts +3 -0
- package/src/story/pages/tour/StartAtStep.d.ts +3 -0
- package/src/story/pages/tour/StepCallbacks.d.ts +3 -0
- package/src/story/pages/tour/TourPage.d.ts +3 -0
- package/src/story/pages/tour/tour-story-data.d.ts +13 -0
- package/src/story/pages/tree-view/AsyncLoading.d.ts +3 -0
- package/src/story/pages/tree-view/BasicUsage.d.ts +3 -0
- package/src/story/pages/tree-view/CheckboxMode.d.ts +3 -0
- package/src/story/pages/tree-view/DragDrop.d.ts +3 -0
- package/src/story/pages/tree-view/TreeViewPage.d.ts +3 -0
- package/src/themes/index.d.ts +2 -0
- package/src/types/index.d.ts +97 -0
- package/src/utils/common-fns.d.ts +8 -0
- package/src/utils/field-label.d.ts +12 -0
- package/src/utils/index.d.ts +10 -0
- package/src/utils/layout.d.ts +1 -0
- package/src/utils/lib.d.ts +2 -0
- package/store-middlewares.cjs +299 -0
- package/store-middlewares.d.ts +1 -0
- package/store-middlewares.js +290 -0
- package/store.cjs +683 -0
- package/store.d.ts +1 -0
- package/store.js +675 -0
- package/styles/components.css +16368 -0
- package/styles/drag-drop.css +88 -0
- package/styles/draw.css +994 -0
- package/styles/kanban.css +814 -0
- package/utils.cjs +25 -0
- package/utils.d.ts +1 -0
- package/utils.js +23 -0
- package/vite-plugin.cjs +42 -0
- package/vite-plugin.d.ts +1 -0
- package/vite-plugin.js +38 -0
|
@@ -0,0 +1,2038 @@
|
|
|
1
|
+
const require_chunk = require("./chunk-Do9eywBl.cjs");
|
|
2
|
+
let react = require("react");
|
|
3
|
+
react = require_chunk.__toESM(react);
|
|
4
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
5
|
+
//#region src/assets/icons/angle-left.svg?react
|
|
6
|
+
var SvgAngleLeft = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
height: "24px",
|
|
9
|
+
width: "24px",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
viewBox: "0 0 55.753 55.753",
|
|
12
|
+
...props,
|
|
13
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", { children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12.745,23.915c0.283-0.282,0.59-0.52,0.913-0.727L35.266,1.581c2.108-2.107,5.528-2.108,7.637,0.001 c2.109,2.108,2.109,5.527,0,7.637L24.294,27.828l18.705,18.706c2.109,2.108,2.109,5.526,0,7.637 c-1.055,1.056-2.438,1.582-3.818,1.582s-2.764-0.526-3.818-1.582L13.658,32.464c-0.323-0.207-0.632-0.445-0.913-0.727 c-1.078-1.078-1.598-2.498-1.572-3.911C11.147,26.413,11.667,24.994,12.745,23.915z" }) })
|
|
14
|
+
});
|
|
15
|
+
//#endregion
|
|
16
|
+
//#region src/assets/icons/angle-right.svg?react
|
|
17
|
+
var SvgAngleRight = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
height: "24px",
|
|
20
|
+
width: "24px",
|
|
21
|
+
id: "Capa_1",
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
24
|
+
viewBox: "0 0 55.752 55.752",
|
|
25
|
+
xmlSpace: "preserve",
|
|
26
|
+
...props,
|
|
27
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", { children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M43.006,23.916c-0.28-0.282-0.59-0.52-0.912-0.727L20.485,1.581c-2.109-2.107-5.527-2.108-7.637,0.001 c-2.109,2.108-2.109,5.527,0,7.637l18.611,18.609L12.754,46.535c-2.11,2.107-2.11,5.527,0,7.637c1.055,1.053,2.436,1.58,3.817,1.58 s2.765-0.527,3.817-1.582l21.706-21.703c0.322-0.207,0.631-0.444,0.912-0.727c1.08-1.08,1.598-2.498,1.574-3.912 C44.605,26.413,44.086,24.993,43.006,23.916z" }) })
|
|
28
|
+
});
|
|
29
|
+
//#endregion
|
|
30
|
+
//#region src/assets/icons/announcement.svg?react
|
|
31
|
+
var SvgAnnouncement = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
32
|
+
className: "size-4",
|
|
33
|
+
fill: "currentColor",
|
|
34
|
+
viewBox: "0 0 20 20",
|
|
35
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
36
|
+
...props,
|
|
37
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
38
|
+
clipRule: "evenodd",
|
|
39
|
+
d: "M18 3a1 1 0 00-1.447-.894L8.763 6H5a3 3 0 000 6h.28l1.771 5.316A1 1 0 008 18h1a1 1 0 001-1v-4.382l6.553 3.276A1 1 0 0018 15V3z",
|
|
40
|
+
fillRule: "evenodd"
|
|
41
|
+
})
|
|
42
|
+
});
|
|
43
|
+
//#endregion
|
|
44
|
+
//#region src/assets/icons/archived.svg?react
|
|
45
|
+
var SvgArchived = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
46
|
+
width: "28px",
|
|
47
|
+
height: "28px",
|
|
48
|
+
viewBox: "0 0 24 24",
|
|
49
|
+
fill: "#c10007",
|
|
50
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
51
|
+
...props,
|
|
52
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
53
|
+
d: "M2 5C2 4.05719 2 3.58579 2.29289 3.29289C2.58579 3 3.05719 3 4 3H20C20.9428 3 21.4142 3 21.7071 3.29289C22 3.58579 22 4.05719 22 5C22 5.94281 22 6.41421 21.7071 6.70711C21.4142 7 20.9428 7 20 7H4C3.05719 7 2.58579 7 2.29289 6.70711C2 6.41421 2 5.94281 2 5Z",
|
|
54
|
+
fill: "inherit"
|
|
55
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
56
|
+
d: "M20.0689 8.49993C20.2101 8.49999 20.3551 8.50005 20.5 8.49805V12.9999C20.5 16.7711 20.5 18.6568 19.3284 19.8283C18.1569 20.9999 16.2712 20.9999 12.5 20.9999H11.5C7.72876 20.9999 5.84315 20.9999 4.67157 19.8283C3.5 18.6568 3.5 16.7711 3.5 12.9999V8.49805C3.64488 8.50005 3.78999 8.49999 3.93114 8.49993L11.25 8.49992L11.25 15.0454L9.55748 13.1648C9.28038 12.8569 8.80617 12.832 8.49828 13.1091C8.1904 13.3862 8.16544 13.8604 8.44254 14.1683L11.4425 17.5016C11.5848 17.6596 11.7874 17.7499 12 17.7499C12.2126 17.7499 12.4152 17.6596 12.5575 17.5016L15.5575 14.1683C15.8346 13.8604 15.8096 13.3862 15.5017 13.1091C15.1938 12.832 14.7196 12.8569 14.4425 13.1648L12.75 15.0454L12.75 8.49992L20.0689 8.49993Z",
|
|
57
|
+
fill: "inherit"
|
|
58
|
+
})]
|
|
59
|
+
});
|
|
60
|
+
//#endregion
|
|
61
|
+
//#region src/assets/icons/arrow-down.svg?react
|
|
62
|
+
var SvgArrowDown = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
64
|
+
fill: "none",
|
|
65
|
+
viewBox: "0 0 24 24",
|
|
66
|
+
strokeWidth: 1.5,
|
|
67
|
+
stroke: "red",
|
|
68
|
+
"aria-hidden": "true",
|
|
69
|
+
"data-slot": "icon",
|
|
70
|
+
className: "size-4",
|
|
71
|
+
...props,
|
|
72
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
73
|
+
strokeLinecap: "round",
|
|
74
|
+
strokeLinejoin: "round",
|
|
75
|
+
d: "M4.5 13.5L12 21m0 0l7.5-7.5M12 21V3"
|
|
76
|
+
})
|
|
77
|
+
});
|
|
78
|
+
//#endregion
|
|
79
|
+
//#region src/assets/icons/arrow-up.svg?react
|
|
80
|
+
var SvgArrowUp = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
81
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
82
|
+
fill: "none",
|
|
83
|
+
viewBox: "0 0 24 24",
|
|
84
|
+
strokeWidth: 1.5,
|
|
85
|
+
stroke: "#2ecc81",
|
|
86
|
+
"aria-hidden": "true",
|
|
87
|
+
"data-slot": "icon",
|
|
88
|
+
className: "size-4",
|
|
89
|
+
...props,
|
|
90
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
91
|
+
strokeLinecap: "round",
|
|
92
|
+
strokeLinejoin: "round",
|
|
93
|
+
d: "M4.5 10.5 12 3m0 0 7.5 7.5M12 3v18"
|
|
94
|
+
})
|
|
95
|
+
});
|
|
96
|
+
//#endregion
|
|
97
|
+
//#region src/assets/icons/back-arrow.svg?react
|
|
98
|
+
var SvgBackArrow = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
99
|
+
width: "24px",
|
|
100
|
+
fill: "currentColor",
|
|
101
|
+
height: "24px",
|
|
102
|
+
viewBox: "0 0 1024 1024",
|
|
103
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
104
|
+
...props,
|
|
105
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
106
|
+
fill: "currentColor",
|
|
107
|
+
d: "M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64z"
|
|
108
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
109
|
+
fill: "curentColor",
|
|
110
|
+
d: "m237.248 512 265.408 265.344a32 32 0 0 1-45.312 45.312l-288-288a32 32 0 0 1 0-45.312l288-288a32 32 0 1 1 45.312 45.312L237.248 512z"
|
|
111
|
+
})]
|
|
112
|
+
});
|
|
113
|
+
//#endregion
|
|
114
|
+
//#region src/assets/icons/bar-chart.svg?react
|
|
115
|
+
var SvgBarChart = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
116
|
+
width: "28px",
|
|
117
|
+
height: "28px",
|
|
118
|
+
viewBox: "0 0 32 32",
|
|
119
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
120
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
121
|
+
...props,
|
|
122
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("clipPath", {
|
|
123
|
+
id: "clip-barchart",
|
|
124
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
125
|
+
width: 32,
|
|
126
|
+
height: 32
|
|
127
|
+
})
|
|
128
|
+
}) }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
129
|
+
id: "barchart",
|
|
130
|
+
clipPath: "url(#clip-barchart)",
|
|
131
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("g", {
|
|
132
|
+
id: "Group_1837",
|
|
133
|
+
"data-name": "Group 1837",
|
|
134
|
+
transform: "translate(0 -468)",
|
|
135
|
+
children: [
|
|
136
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsxs)("g", {
|
|
137
|
+
id: "Group_1827",
|
|
138
|
+
"data-name": "Group 1827",
|
|
139
|
+
children: [
|
|
140
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
141
|
+
id: "Group_1820",
|
|
142
|
+
"data-name": "Group 1820",
|
|
143
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
144
|
+
id: "Group_1819",
|
|
145
|
+
"data-name": "Group 1819",
|
|
146
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
147
|
+
id: "Group_1818",
|
|
148
|
+
"data-name": "Group 1818",
|
|
149
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
150
|
+
id: "Path_3746",
|
|
151
|
+
"data-name": "Path 3746",
|
|
152
|
+
d: "M30.667,497.106H3.894a1,1,0,0,1-1-1V469.333a1,1,0,0,1,2,0v25.773H30.667a1,1,0,0,1,0,2Z",
|
|
153
|
+
fill: "#344952"
|
|
154
|
+
})
|
|
155
|
+
})
|
|
156
|
+
})
|
|
157
|
+
}),
|
|
158
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
159
|
+
id: "Group_1823",
|
|
160
|
+
"data-name": "Group 1823",
|
|
161
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
162
|
+
id: "Group_1822",
|
|
163
|
+
"data-name": "Group 1822",
|
|
164
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
165
|
+
id: "Group_1821",
|
|
166
|
+
"data-name": "Group 1821",
|
|
167
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
168
|
+
id: "Path_3747",
|
|
169
|
+
"data-name": "Path 3747",
|
|
170
|
+
d: "M6.454,473.6a1,1,0,0,1-.787-.383l-1.773-2.262-1.773,2.262a1,1,0,0,1-1.575-1.235l2.56-3.265a1.037,1.037,0,0,1,1.575,0l2.56,3.265a1,1,0,0,1-.787,1.618Z",
|
|
171
|
+
fill: "#344952"
|
|
172
|
+
})
|
|
173
|
+
})
|
|
174
|
+
})
|
|
175
|
+
}),
|
|
176
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
177
|
+
id: "Group_1826",
|
|
178
|
+
"data-name": "Group 1826",
|
|
179
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
180
|
+
id: "Group_1825",
|
|
181
|
+
"data-name": "Group 1825",
|
|
182
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
183
|
+
id: "Group_1824",
|
|
184
|
+
"data-name": "Group 1824",
|
|
185
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
186
|
+
id: "Path_3748",
|
|
187
|
+
"data-name": "Path 3748",
|
|
188
|
+
d: "M27.4,499.667a1,1,0,0,1-.617-1.787l2.262-1.774-2.262-1.773a1,1,0,1,1,1.234-1.574l3.266,2.56a1,1,0,0,1,0,1.575l-3.266,2.56A.994.994,0,0,1,27.4,499.667Z",
|
|
189
|
+
fill: "#344952"
|
|
190
|
+
})
|
|
191
|
+
})
|
|
192
|
+
})
|
|
193
|
+
})
|
|
194
|
+
]
|
|
195
|
+
}),
|
|
196
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
197
|
+
id: "Group_1830",
|
|
198
|
+
"data-name": "Group 1830",
|
|
199
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
200
|
+
id: "Group_1829",
|
|
201
|
+
"data-name": "Group 1829",
|
|
202
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
203
|
+
id: "Group_1828",
|
|
204
|
+
"data-name": "Group 1828",
|
|
205
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
206
|
+
id: "Path_3749",
|
|
207
|
+
"data-name": "Path 3749",
|
|
208
|
+
d: "M10.563,493.962H7.2a1,1,0,0,1-1-1V480.5a1,1,0,0,1,1-1h3.359a1,1,0,0,1,1,1v12.462A1,1,0,0,1,10.563,493.962Zm-2.359-2H9.563V481.5H8.2Z",
|
|
209
|
+
fill: "#344952"
|
|
210
|
+
})
|
|
211
|
+
})
|
|
212
|
+
})
|
|
213
|
+
}),
|
|
214
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
215
|
+
id: "Group_1833",
|
|
216
|
+
"data-name": "Group 1833",
|
|
217
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
218
|
+
id: "Group_1832",
|
|
219
|
+
"data-name": "Group 1832",
|
|
220
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
221
|
+
id: "Group_1831",
|
|
222
|
+
"data-name": "Group 1831",
|
|
223
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
224
|
+
id: "Path_3750",
|
|
225
|
+
"data-name": "Path 3750",
|
|
226
|
+
d: "M17.406,493.962H14.047a1,1,0,0,1-1-1v-15.8a1,1,0,0,1,1-1h3.359a1,1,0,0,1,1,1v15.8A1,1,0,0,1,17.406,493.962Zm-2.359-2h1.359v-13.8H15.047Z",
|
|
227
|
+
fill: "#344952"
|
|
228
|
+
})
|
|
229
|
+
})
|
|
230
|
+
})
|
|
231
|
+
}),
|
|
232
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
233
|
+
id: "Group_1836",
|
|
234
|
+
"data-name": "Group 1836",
|
|
235
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
236
|
+
id: "Group_1835",
|
|
237
|
+
"data-name": "Group 1835",
|
|
238
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
239
|
+
id: "Group_1834",
|
|
240
|
+
"data-name": "Group 1834",
|
|
241
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
242
|
+
id: "Path_3751",
|
|
243
|
+
"data-name": "Path 3751",
|
|
244
|
+
d: "M24.25,493.962H20.891a1,1,0,0,1-1-1v-10a1,1,0,0,1,1-1H24.25a1,1,0,0,1,1,1v10A1,1,0,0,1,24.25,493.962Zm-2.359-2H23.25v-8H21.891Z",
|
|
245
|
+
fill: "#344952"
|
|
246
|
+
})
|
|
247
|
+
})
|
|
248
|
+
})
|
|
249
|
+
})
|
|
250
|
+
]
|
|
251
|
+
})
|
|
252
|
+
})]
|
|
253
|
+
});
|
|
254
|
+
//#endregion
|
|
255
|
+
//#region src/assets/icons/branch.svg?react
|
|
256
|
+
var SvgBranch = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
257
|
+
fill: "currentColor",
|
|
258
|
+
width: "24px",
|
|
259
|
+
height: "24px",
|
|
260
|
+
viewBox: "0 0 32 32",
|
|
261
|
+
id: "icon",
|
|
262
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
263
|
+
...props,
|
|
264
|
+
children: [
|
|
265
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("style", { children: ".cls-1{fill:none;}" }) }),
|
|
266
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", { children: "fork" }),
|
|
267
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18a3.9955,3.9955,0,0,0-3.858,3H18a3.0033,3.0033,0,0,1-3-3V14a4.9514,4.9514,0,0,0-1.0256-3H22.142a4,4,0,1,0,0-2H9.858a4,4,0,1,0,0,2H10a3.0033,3.0033,0,0,1,3,3v4a5.0059,5.0059,0,0,0,5,5h4.142A3.9935,3.9935,0,1,0,26,18ZM26,8a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,8ZM6,12a2,2,0,1,1,2-2A2.002,2.002,0,0,1,6,12ZM26,24a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,26,24Z" }),
|
|
268
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
269
|
+
id: "_Transparent_Rectangle_",
|
|
270
|
+
"data-name": "<Transparent Rectangle>",
|
|
271
|
+
className: "cls-1",
|
|
272
|
+
width: 32,
|
|
273
|
+
height: 32
|
|
274
|
+
})
|
|
275
|
+
]
|
|
276
|
+
});
|
|
277
|
+
//#endregion
|
|
278
|
+
//#region src/assets/icons/bright-sun.svg?react
|
|
279
|
+
var SvgBrightSun = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
280
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
281
|
+
width: 24,
|
|
282
|
+
height: 24,
|
|
283
|
+
viewBox: "0 0 24 24",
|
|
284
|
+
fill: "#e2a03f",
|
|
285
|
+
stroke: "#e2a03f",
|
|
286
|
+
strokeWidth: 2,
|
|
287
|
+
strokeLinecap: "round",
|
|
288
|
+
strokeLinejoin: "round",
|
|
289
|
+
className: "feather feather-sun light-mode",
|
|
290
|
+
...props,
|
|
291
|
+
children: [
|
|
292
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
293
|
+
cx: 12,
|
|
294
|
+
cy: 12,
|
|
295
|
+
r: 5
|
|
296
|
+
}),
|
|
297
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
298
|
+
x1: 12,
|
|
299
|
+
y1: 1,
|
|
300
|
+
x2: 12,
|
|
301
|
+
y2: 3
|
|
302
|
+
}),
|
|
303
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
304
|
+
x1: 12,
|
|
305
|
+
y1: 21,
|
|
306
|
+
x2: 12,
|
|
307
|
+
y2: 23
|
|
308
|
+
}),
|
|
309
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
310
|
+
x1: 4.22,
|
|
311
|
+
y1: 4.22,
|
|
312
|
+
x2: 5.64,
|
|
313
|
+
y2: 5.64
|
|
314
|
+
}),
|
|
315
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
316
|
+
x1: 18.36,
|
|
317
|
+
y1: 18.36,
|
|
318
|
+
x2: 19.78,
|
|
319
|
+
y2: 19.78
|
|
320
|
+
}),
|
|
321
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
322
|
+
x1: 1,
|
|
323
|
+
y1: 12,
|
|
324
|
+
x2: 3,
|
|
325
|
+
y2: 12
|
|
326
|
+
}),
|
|
327
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
328
|
+
x1: 21,
|
|
329
|
+
y1: 12,
|
|
330
|
+
x2: 23,
|
|
331
|
+
y2: 12
|
|
332
|
+
}),
|
|
333
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
334
|
+
x1: 4.22,
|
|
335
|
+
y1: 19.78,
|
|
336
|
+
x2: 5.64,
|
|
337
|
+
y2: 18.36
|
|
338
|
+
}),
|
|
339
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
340
|
+
x1: 18.36,
|
|
341
|
+
y1: 5.64,
|
|
342
|
+
x2: 19.78,
|
|
343
|
+
y2: 4.22
|
|
344
|
+
})
|
|
345
|
+
]
|
|
346
|
+
});
|
|
347
|
+
//#endregion
|
|
348
|
+
//#region src/assets/icons/browser-cookie.svg?react
|
|
349
|
+
var SvgBrowserCookie = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
350
|
+
width: "24px",
|
|
351
|
+
height: "24px",
|
|
352
|
+
viewBox: "0 0 24 24",
|
|
353
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
354
|
+
fill: "none",
|
|
355
|
+
...props,
|
|
356
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
357
|
+
stroke: "currentColor",
|
|
358
|
+
strokeLinecap: "round",
|
|
359
|
+
strokeLinejoin: "round",
|
|
360
|
+
strokeWidth: 2,
|
|
361
|
+
d: "M3 8V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2M3 8v10a2 2 0 0 0 2 2h4M3 8h18m0 0v2m-6 7h.001M18 19h.001M22 17a5 5 0 1 1-5-5v2h3v3h2z"
|
|
362
|
+
})
|
|
363
|
+
});
|
|
364
|
+
//#endregion
|
|
365
|
+
//#region src/assets/icons/building.svg?react
|
|
366
|
+
var SvgBuilding = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
367
|
+
width: 24,
|
|
368
|
+
height: 24,
|
|
369
|
+
viewBox: "0 0 24 24",
|
|
370
|
+
fill: "none",
|
|
371
|
+
stroke: "currentColor",
|
|
372
|
+
strokeWidth: 2,
|
|
373
|
+
strokeLinecap: "round",
|
|
374
|
+
strokeLinejoin: "round",
|
|
375
|
+
...props,
|
|
376
|
+
children: [
|
|
377
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 21h18" }),
|
|
378
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 21V7l8-4v18" }),
|
|
379
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 21V11l-6-4" }),
|
|
380
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 9v.01" }),
|
|
381
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 12v.01" }),
|
|
382
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 15v.01" }),
|
|
383
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 18v.01" })
|
|
384
|
+
]
|
|
385
|
+
});
|
|
386
|
+
//#endregion
|
|
387
|
+
//#region src/assets/icons/calendar-line.svg?react
|
|
388
|
+
var SvgCalendarLine = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
389
|
+
width: 24,
|
|
390
|
+
height: 24,
|
|
391
|
+
viewBox: "0 0 24 24",
|
|
392
|
+
fill: "none",
|
|
393
|
+
stroke: "currentColor",
|
|
394
|
+
strokeWidth: 2,
|
|
395
|
+
strokeLinecap: "round",
|
|
396
|
+
strokeLinejoin: "round",
|
|
397
|
+
...props,
|
|
398
|
+
children: [
|
|
399
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
400
|
+
x: 3,
|
|
401
|
+
y: 4,
|
|
402
|
+
width: 18,
|
|
403
|
+
height: 18,
|
|
404
|
+
rx: 2,
|
|
405
|
+
ry: 2
|
|
406
|
+
}),
|
|
407
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
408
|
+
x1: 16,
|
|
409
|
+
y1: 2,
|
|
410
|
+
x2: 16,
|
|
411
|
+
y2: 6
|
|
412
|
+
}),
|
|
413
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
414
|
+
x1: 8,
|
|
415
|
+
y1: 2,
|
|
416
|
+
x2: 8,
|
|
417
|
+
y2: 6
|
|
418
|
+
}),
|
|
419
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
420
|
+
x1: 3,
|
|
421
|
+
y1: 10,
|
|
422
|
+
x2: 21,
|
|
423
|
+
y2: 10
|
|
424
|
+
})
|
|
425
|
+
]
|
|
426
|
+
});
|
|
427
|
+
//#endregion
|
|
428
|
+
//#region src/assets/icons/calendar.svg?react
|
|
429
|
+
var SvgCalendar = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
430
|
+
width: "28px",
|
|
431
|
+
height: "28px",
|
|
432
|
+
viewBox: "0 0 24 24",
|
|
433
|
+
fill: "none",
|
|
434
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
435
|
+
...props,
|
|
436
|
+
children: [
|
|
437
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
438
|
+
d: "M6.94028 2C7.35614 2 7.69326 2.32421 7.69326 2.72414V4.18487C8.36117 4.17241 9.10983 4.17241 9.95219 4.17241H13.9681C14.8104 4.17241 15.5591 4.17241 16.227 4.18487V2.72414C16.227 2.32421 16.5641 2 16.98 2C17.3958 2 17.733 2.32421 17.733 2.72414V4.24894C19.178 4.36022 20.1267 4.63333 20.8236 5.30359C21.5206 5.97385 21.8046 6.88616 21.9203 8.27586L22 9H2.92456H2V8.27586C2.11571 6.88616 2.3997 5.97385 3.09665 5.30359C3.79361 4.63333 4.74226 4.36022 6.1873 4.24894V2.72414C6.1873 2.32421 6.52442 2 6.94028 2Z",
|
|
439
|
+
fill: "currentColor"
|
|
440
|
+
}),
|
|
441
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
442
|
+
opacity: .5,
|
|
443
|
+
d: "M21.9995 14.0001V12.0001C21.9995 11.161 21.9963 9.66527 21.9834 9H2.00917C1.99626 9.66527 1.99953 11.161 1.99953 12.0001V14.0001C1.99953 17.7713 1.99953 19.6569 3.1711 20.8285C4.34267 22.0001 6.22829 22.0001 9.99953 22.0001H13.9995C17.7708 22.0001 19.6564 22.0001 20.828 20.8285C21.9995 19.6569 21.9995 17.7713 21.9995 14.0001Z",
|
|
444
|
+
fill: "currentColor"
|
|
445
|
+
}),
|
|
446
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
447
|
+
d: "M18 17C18 17.5523 17.5523 18 17 18C16.4477 18 16 17.5523 16 17C16 16.4477 16.4477 16 17 16C17.5523 16 18 16.4477 18 17Z",
|
|
448
|
+
fill: "currentColor"
|
|
449
|
+
}),
|
|
450
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
451
|
+
d: "M18 13C18 13.5523 17.5523 14 17 14C16.4477 14 16 13.5523 16 13C16 12.4477 16.4477 12 17 12C17.5523 12 18 12.4477 18 13Z",
|
|
452
|
+
fill: "currentColor"
|
|
453
|
+
}),
|
|
454
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
455
|
+
d: "M13 17C13 17.5523 12.5523 18 12 18C11.4477 18 11 17.5523 11 17C11 16.4477 11.4477 16 12 16C12.5523 16 13 16.4477 13 17Z",
|
|
456
|
+
fill: "currentColor"
|
|
457
|
+
}),
|
|
458
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
459
|
+
d: "M13 13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13C11 12.4477 11.4477 12 12 12C12.5523 12 13 12.4477 13 13Z",
|
|
460
|
+
fill: "currentColor"
|
|
461
|
+
}),
|
|
462
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
463
|
+
d: "M8 17C8 17.5523 7.55228 18 7 18C6.44772 18 6 17.5523 6 17C6 16.4477 6.44772 16 7 16C7.55228 16 8 16.4477 8 17Z",
|
|
464
|
+
fill: "currentColor"
|
|
465
|
+
}),
|
|
466
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
467
|
+
d: "M8 13C8 13.5523 7.55228 14 7 14C6.44772 14 6 13.5523 6 13C6 12.4477 6.44772 12 7 12C7.55228 12 8 12.4477 8 13Z",
|
|
468
|
+
fill: "currentColor"
|
|
469
|
+
})
|
|
470
|
+
]
|
|
471
|
+
});
|
|
472
|
+
//#endregion
|
|
473
|
+
//#region src/assets/icons/check-circle.svg?react
|
|
474
|
+
var SvgCheckCircle = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
475
|
+
width: "24px",
|
|
476
|
+
height: "24px",
|
|
477
|
+
viewBox: "0 0 1024 1024",
|
|
478
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
479
|
+
...props,
|
|
480
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
481
|
+
fill: "#000000",
|
|
482
|
+
d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336L456.192 600.384z"
|
|
483
|
+
})
|
|
484
|
+
});
|
|
485
|
+
//#endregion
|
|
486
|
+
//#region src/assets/icons/check.svg?react
|
|
487
|
+
var SvgCheck = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
488
|
+
width: "24px",
|
|
489
|
+
height: "24px",
|
|
490
|
+
viewBox: "0 0 24 24",
|
|
491
|
+
fill: "none",
|
|
492
|
+
stroke: "currentColor",
|
|
493
|
+
strokeWidth: 2,
|
|
494
|
+
strokeLinecap: "round",
|
|
495
|
+
strokeLinejoin: "round",
|
|
496
|
+
...props,
|
|
497
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("polyline", { points: "20,6 9,17 4,12" })
|
|
498
|
+
});
|
|
499
|
+
//#endregion
|
|
500
|
+
//#region src/assets/icons/chevron-down.svg?react
|
|
501
|
+
var SvgChevronDown = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
502
|
+
width: "24px",
|
|
503
|
+
height: "24px",
|
|
504
|
+
viewBox: "0 0 24 24",
|
|
505
|
+
fill: "none",
|
|
506
|
+
stroke: "currentColor",
|
|
507
|
+
strokeWidth: 2,
|
|
508
|
+
strokeLinecap: "round",
|
|
509
|
+
strokeLinejoin: "round",
|
|
510
|
+
...props,
|
|
511
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("polyline", { points: "6,9 12,15 18,9" })
|
|
512
|
+
});
|
|
513
|
+
//#endregion
|
|
514
|
+
//#region src/assets/icons/chevron-left.svg?react
|
|
515
|
+
var SvgChevronLeft = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
516
|
+
width: "24px",
|
|
517
|
+
height: "24px",
|
|
518
|
+
viewBox: "0 0 24 24",
|
|
519
|
+
fill: "none",
|
|
520
|
+
stroke: "currentColor",
|
|
521
|
+
strokeWidth: 2,
|
|
522
|
+
strokeLinecap: "round",
|
|
523
|
+
strokeLinejoin: "round",
|
|
524
|
+
...props,
|
|
525
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("polyline", { points: "15,18 9,12 15,6" })
|
|
526
|
+
});
|
|
527
|
+
//#endregion
|
|
528
|
+
//#region src/assets/icons/chevron-right.svg?react
|
|
529
|
+
var SvgChevronRight = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
530
|
+
width: "24px",
|
|
531
|
+
height: "24px",
|
|
532
|
+
viewBox: "0 0 24 24",
|
|
533
|
+
fill: "none",
|
|
534
|
+
stroke: "currentColor",
|
|
535
|
+
strokeWidth: 2,
|
|
536
|
+
strokeLinecap: "round",
|
|
537
|
+
strokeLinejoin: "round",
|
|
538
|
+
...props,
|
|
539
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("polyline", { points: "9,18 15,12 9,6" })
|
|
540
|
+
});
|
|
541
|
+
//#endregion
|
|
542
|
+
//#region src/assets/icons/chevron-up.svg?react
|
|
543
|
+
var SvgChevronUp = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
544
|
+
width: "24px",
|
|
545
|
+
height: "24px",
|
|
546
|
+
viewBox: "0 0 24 24",
|
|
547
|
+
fill: "none",
|
|
548
|
+
stroke: "currentColor",
|
|
549
|
+
strokeWidth: 2,
|
|
550
|
+
strokeLinecap: "round",
|
|
551
|
+
strokeLinejoin: "round",
|
|
552
|
+
...props,
|
|
553
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("polyline", { points: "18,15 12,9 6,15" })
|
|
554
|
+
});
|
|
555
|
+
//#endregion
|
|
556
|
+
//#region src/assets/icons/clock.svg?react
|
|
557
|
+
var SvgClock = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
558
|
+
fill: "#000000",
|
|
559
|
+
width: "24px",
|
|
560
|
+
height: "24px",
|
|
561
|
+
viewBox: "0 0 24 24",
|
|
562
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
563
|
+
...props,
|
|
564
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,2A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Zm1-8.251V7a1,1,0,0,0-2,0v5a1.00586,1.00586,0,0,0,.11816.47217l1.5,2.79883a1.00029,1.00029,0,0,0,1.76368-.94434Z" })
|
|
565
|
+
});
|
|
566
|
+
//#endregion
|
|
567
|
+
//#region src/assets/icons/copy.svg?react
|
|
568
|
+
var SvgCopy = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
569
|
+
width: "24px",
|
|
570
|
+
height: "24px",
|
|
571
|
+
viewBox: "0 0 256 256",
|
|
572
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
573
|
+
...props,
|
|
574
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
575
|
+
d: "M48.186 92.137c0-8.392 6.49-14.89 16.264-14.89s29.827-.225 29.827-.225-.306-6.99-.306-15.88c0-8.888 7.954-14.96 17.49-14.96 9.538 0 56.786.401 61.422.401 4.636 0 8.397 1.719 13.594 5.67 5.196 3.953 13.052 10.56 16.942 14.962 3.89 4.402 5.532 6.972 5.532 10.604 0 3.633 0 76.856-.06 85.34-.059 8.485-7.877 14.757-17.134 14.881-9.257.124-29.135.124-29.135.124s.466 6.275.466 15.15-8.106 15.811-17.317 16.056c-9.21.245-71.944-.49-80.884-.245-8.94.245-16.975-6.794-16.975-15.422s.274-93.175.274-101.566zm16.734 3.946l-1.152 92.853a3.96 3.96 0 0 0 3.958 4.012l73.913.22a3.865 3.865 0 0 0 3.91-3.978l-.218-8.892a1.988 1.988 0 0 0-2.046-1.953s-21.866.64-31.767.293c-9.902-.348-16.672-6.807-16.675-15.516-.003-8.709.003-69.142.003-69.142a1.989 1.989 0 0 0-2.007-1.993l-23.871.082a4.077 4.077 0 0 0-4.048 4.014zm106.508-35.258c-1.666-1.45-3.016-.84-3.016 1.372v17.255c0 1.106.894 2.007 1.997 2.013l20.868.101c2.204.011 2.641-1.156.976-2.606l-20.825-18.135zm-57.606.847a2.002 2.002 0 0 0-2.02 1.988l-.626 96.291a2.968 2.968 0 0 0 2.978 2.997l75.2-.186a2.054 2.054 0 0 0 2.044-2.012l1.268-62.421a1.951 1.951 0 0 0-1.96-2.004s-26.172.042-30.783.042c-4.611 0-7.535-2.222-7.535-6.482S152.3 63.92 152.3 63.92a2.033 2.033 0 0 0-2.015-2.018l-36.464-.23z",
|
|
576
|
+
stroke: "#979797",
|
|
577
|
+
fillRule: "evenodd"
|
|
578
|
+
})
|
|
579
|
+
});
|
|
580
|
+
//#endregion
|
|
581
|
+
//#region src/assets/icons/dashboard.svg?react
|
|
582
|
+
var SvgDashboard = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
583
|
+
width: 24,
|
|
584
|
+
height: 24,
|
|
585
|
+
viewBox: "0 0 24 24",
|
|
586
|
+
fill: "none",
|
|
587
|
+
stroke: "currentColor",
|
|
588
|
+
strokeWidth: 2,
|
|
589
|
+
strokeLinecap: "round",
|
|
590
|
+
strokeLinejoin: "round",
|
|
591
|
+
...props,
|
|
592
|
+
children: [
|
|
593
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
594
|
+
x: 3,
|
|
595
|
+
y: 3,
|
|
596
|
+
width: 7,
|
|
597
|
+
height: 9
|
|
598
|
+
}),
|
|
599
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
600
|
+
x: 14,
|
|
601
|
+
y: 3,
|
|
602
|
+
width: 7,
|
|
603
|
+
height: 5
|
|
604
|
+
}),
|
|
605
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
606
|
+
x: 14,
|
|
607
|
+
y: 12,
|
|
608
|
+
width: 7,
|
|
609
|
+
height: 9
|
|
610
|
+
}),
|
|
611
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
612
|
+
x: 3,
|
|
613
|
+
y: 16,
|
|
614
|
+
width: 7,
|
|
615
|
+
height: 5
|
|
616
|
+
})
|
|
617
|
+
]
|
|
618
|
+
});
|
|
619
|
+
//#endregion
|
|
620
|
+
//#region src/assets/icons/download.svg?react
|
|
621
|
+
var SvgDownload = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
622
|
+
width: "24px",
|
|
623
|
+
height: "24px",
|
|
624
|
+
viewBox: "0 0 24 24",
|
|
625
|
+
fill: "none",
|
|
626
|
+
stroke: "currentColor",
|
|
627
|
+
strokeWidth: 2,
|
|
628
|
+
strokeLinecap: "round",
|
|
629
|
+
strokeLinejoin: "round",
|
|
630
|
+
...props,
|
|
631
|
+
children: [
|
|
632
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
633
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("polyline", { points: "7,10 12,15 17,10" }),
|
|
634
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
635
|
+
x1: 12,
|
|
636
|
+
y1: 15,
|
|
637
|
+
x2: 12,
|
|
638
|
+
y2: 3
|
|
639
|
+
})
|
|
640
|
+
]
|
|
641
|
+
});
|
|
642
|
+
//#endregion
|
|
643
|
+
//#region src/assets/icons/edit.svg?react
|
|
644
|
+
var SvgEdit = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
645
|
+
width: 24,
|
|
646
|
+
height: 24,
|
|
647
|
+
viewBox: "0 0 24 24",
|
|
648
|
+
fill: "none",
|
|
649
|
+
stroke: "currentColor",
|
|
650
|
+
strokeWidth: 2,
|
|
651
|
+
strokeLinecap: "round",
|
|
652
|
+
strokeLinejoin: "round",
|
|
653
|
+
...props,
|
|
654
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m18.5 2.5 2 2L13 12l-4 1 1-4 8.5-8.5z" })]
|
|
655
|
+
});
|
|
656
|
+
//#endregion
|
|
657
|
+
//#region src/assets/icons/error.svg?react
|
|
658
|
+
var SvgError = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
659
|
+
width: "24px",
|
|
660
|
+
height: "24px",
|
|
661
|
+
viewBox: "0 0 512 512",
|
|
662
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
663
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
664
|
+
...props,
|
|
665
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
666
|
+
id: "Page-1",
|
|
667
|
+
stroke: "none",
|
|
668
|
+
strokeWidth: 1,
|
|
669
|
+
fill: "none",
|
|
670
|
+
fillRule: "evenodd",
|
|
671
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
672
|
+
id: "add",
|
|
673
|
+
fill: "#000000",
|
|
674
|
+
transform: "translate(42.666667, 42.666667)",
|
|
675
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
676
|
+
d: "M213.333333,3.55271368e-14 C331.136,3.55271368e-14 426.666667,95.5306667 426.666667,213.333333 C426.666667,331.136 331.136,426.666667 213.333333,426.666667 C95.5306667,426.666667 3.55271368e-14,331.136 3.55271368e-14,213.333333 C3.55271368e-14,95.5306667 95.5306667,3.55271368e-14 213.333333,3.55271368e-14 Z M213.333333,42.6666667 C119.232,42.6666667 42.6666667,119.232 42.6666667,213.333333 C42.6666667,307.434667 119.232,384 213.333333,384 C307.434667,384 384,307.434667 384,213.333333 C384,119.232 307.434667,42.6666667 213.333333,42.6666667 Z M262.250667,134.250667 L292.416,164.416 L243.498667,213.333333 L292.416,262.250667 L262.250667,292.416 L213.333333,243.498667 L164.416,292.416 L134.250667,262.250667 L183.168,213.333333 L134.250667,164.416 L164.416,134.250667 L213.333333,183.168 L262.250667,134.250667 Z",
|
|
677
|
+
id: "error"
|
|
678
|
+
})
|
|
679
|
+
})
|
|
680
|
+
})
|
|
681
|
+
});
|
|
682
|
+
//#endregion
|
|
683
|
+
//#region src/assets/icons/external-link.svg?react
|
|
684
|
+
var SvgExternalLink = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
685
|
+
width: "24px",
|
|
686
|
+
height: "24px",
|
|
687
|
+
viewBox: "0 0 24 24",
|
|
688
|
+
fill: "none",
|
|
689
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
690
|
+
...props,
|
|
691
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
692
|
+
id: "Interface / External_Link",
|
|
693
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
694
|
+
id: "Vector",
|
|
695
|
+
d: "M10.0002 5H8.2002C7.08009 5 6.51962 5 6.0918 5.21799C5.71547 5.40973 5.40973 5.71547 5.21799 6.0918C5 6.51962 5 7.08009 5 8.2002V15.8002C5 16.9203 5 17.4801 5.21799 17.9079C5.40973 18.2842 5.71547 18.5905 6.0918 18.7822C6.5192 19 7.07899 19 8.19691 19H15.8031C16.921 19 17.48 19 17.9074 18.7822C18.2837 18.5905 18.5905 18.2839 18.7822 17.9076C19 17.4802 19 16.921 19 15.8031V14M20 9V4M20 4H15M20 4L13 11",
|
|
696
|
+
stroke: "currentColor",
|
|
697
|
+
strokeWidth: 2,
|
|
698
|
+
strokeLinecap: "round",
|
|
699
|
+
strokeLinejoin: "round"
|
|
700
|
+
})
|
|
701
|
+
})
|
|
702
|
+
});
|
|
703
|
+
//#endregion
|
|
704
|
+
//#region src/assets/icons/eye-slash.svg?react
|
|
705
|
+
var SvgEyeSlash = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
706
|
+
width: "24px",
|
|
707
|
+
height: "24px",
|
|
708
|
+
viewBox: "0 0 24 24",
|
|
709
|
+
fill: "none",
|
|
710
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
711
|
+
...props,
|
|
712
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
713
|
+
d: "M9.60997 9.60714C8.05503 10.4549 7 12.1043 7 14C7 16.7614 9.23858 19 12 19C13.8966 19 15.5466 17.944 16.3941 16.3878M21 14C21 9.02944 16.9706 5 12 5C11.5582 5 11.1238 5.03184 10.699 5.09334M3 14C3 11.0069 4.46104 8.35513 6.70883 6.71886M3 3L21 21",
|
|
714
|
+
stroke: "currentColor",
|
|
715
|
+
strokeWidth: 2,
|
|
716
|
+
strokeLinecap: "round",
|
|
717
|
+
strokeLinejoin: "round"
|
|
718
|
+
})
|
|
719
|
+
});
|
|
720
|
+
//#endregion
|
|
721
|
+
//#region src/assets/icons/eye.svg?react
|
|
722
|
+
var SvgEye = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
723
|
+
width: "24px",
|
|
724
|
+
height: "24px",
|
|
725
|
+
viewBox: "0 0 24 24",
|
|
726
|
+
fill: "none",
|
|
727
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
728
|
+
...props,
|
|
729
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
730
|
+
d: "M3 14C3 9.02944 7.02944 5 12 5C16.9706 5 21 9.02944 21 14M17 14C17 16.7614 14.7614 19 12 19C9.23858 19 7 16.7614 7 14C7 11.2386 9.23858 9 12 9C14.7614 9 17 11.2386 17 14Z",
|
|
731
|
+
stroke: "currentColor",
|
|
732
|
+
strokeWidth: 2,
|
|
733
|
+
strokeLinecap: "round",
|
|
734
|
+
strokeLinejoin: "round"
|
|
735
|
+
})
|
|
736
|
+
});
|
|
737
|
+
//#endregion
|
|
738
|
+
//#region src/assets/icons/filter.svg?react
|
|
739
|
+
var SvgFilter = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
740
|
+
width: 24,
|
|
741
|
+
height: 24,
|
|
742
|
+
viewBox: "0 0 24 24",
|
|
743
|
+
fill: "none",
|
|
744
|
+
stroke: "currentColor",
|
|
745
|
+
strokeWidth: 2,
|
|
746
|
+
strokeLinecap: "round",
|
|
747
|
+
strokeLinejoin: "round",
|
|
748
|
+
...props,
|
|
749
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("polygon", { points: "22,3 2,3 10,12.46 10,19 14,21 14,12.46 22,3" })
|
|
750
|
+
});
|
|
751
|
+
//#endregion
|
|
752
|
+
//#region src/assets/icons/help.svg?react
|
|
753
|
+
var SvgHelp = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
754
|
+
width: "24px",
|
|
755
|
+
height: "24px",
|
|
756
|
+
viewBox: "0 0 512 512",
|
|
757
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
758
|
+
...props,
|
|
759
|
+
children: [
|
|
760
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", { children: "Help" }),
|
|
761
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
762
|
+
cx: 256,
|
|
763
|
+
cy: 256,
|
|
764
|
+
r: 208,
|
|
765
|
+
style: {
|
|
766
|
+
fill: "none",
|
|
767
|
+
stroke: "#000000",
|
|
768
|
+
strokeLinecap: "round",
|
|
769
|
+
strokeLinejoin: "round",
|
|
770
|
+
strokeWidth: 32
|
|
771
|
+
}
|
|
772
|
+
}),
|
|
773
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
774
|
+
cx: 256,
|
|
775
|
+
cy: 256,
|
|
776
|
+
r: 80,
|
|
777
|
+
style: {
|
|
778
|
+
fill: "none",
|
|
779
|
+
stroke: "#000000",
|
|
780
|
+
strokeLinecap: "round",
|
|
781
|
+
strokeLinejoin: "round",
|
|
782
|
+
strokeWidth: 32
|
|
783
|
+
}
|
|
784
|
+
}),
|
|
785
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
786
|
+
x1: 208,
|
|
787
|
+
y1: 54,
|
|
788
|
+
x2: 216,
|
|
789
|
+
y2: 186,
|
|
790
|
+
style: {
|
|
791
|
+
fill: "none",
|
|
792
|
+
stroke: "#000000",
|
|
793
|
+
strokeLinecap: "round",
|
|
794
|
+
strokeLinejoin: "round",
|
|
795
|
+
strokeWidth: 32
|
|
796
|
+
}
|
|
797
|
+
}),
|
|
798
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
799
|
+
x1: 296,
|
|
800
|
+
y1: 186,
|
|
801
|
+
x2: 304,
|
|
802
|
+
y2: 54,
|
|
803
|
+
style: {
|
|
804
|
+
fill: "none",
|
|
805
|
+
stroke: "#000000",
|
|
806
|
+
strokeLinecap: "round",
|
|
807
|
+
strokeLinejoin: "round",
|
|
808
|
+
strokeWidth: 32
|
|
809
|
+
}
|
|
810
|
+
}),
|
|
811
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
812
|
+
x1: 208,
|
|
813
|
+
y1: 458,
|
|
814
|
+
x2: 216,
|
|
815
|
+
y2: 326,
|
|
816
|
+
style: {
|
|
817
|
+
fill: "none",
|
|
818
|
+
stroke: "#000000",
|
|
819
|
+
strokeLinecap: "round",
|
|
820
|
+
strokeLinejoin: "round",
|
|
821
|
+
strokeWidth: 32
|
|
822
|
+
}
|
|
823
|
+
}),
|
|
824
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
825
|
+
x1: 296,
|
|
826
|
+
y1: 326,
|
|
827
|
+
x2: 304,
|
|
828
|
+
y2: 458,
|
|
829
|
+
style: {
|
|
830
|
+
fill: "none",
|
|
831
|
+
stroke: "#000000",
|
|
832
|
+
strokeLinecap: "round",
|
|
833
|
+
strokeLinejoin: "round",
|
|
834
|
+
strokeWidth: 32
|
|
835
|
+
}
|
|
836
|
+
}),
|
|
837
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
838
|
+
x1: 458,
|
|
839
|
+
y1: 208,
|
|
840
|
+
x2: 326,
|
|
841
|
+
y2: 216,
|
|
842
|
+
style: {
|
|
843
|
+
fill: "none",
|
|
844
|
+
stroke: "#000000",
|
|
845
|
+
strokeLinecap: "round",
|
|
846
|
+
strokeLinejoin: "round",
|
|
847
|
+
strokeWidth: 32
|
|
848
|
+
}
|
|
849
|
+
}),
|
|
850
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
851
|
+
x1: 326,
|
|
852
|
+
y1: 296,
|
|
853
|
+
x2: 458,
|
|
854
|
+
y2: 304,
|
|
855
|
+
style: {
|
|
856
|
+
fill: "none",
|
|
857
|
+
stroke: "#000000",
|
|
858
|
+
strokeLinecap: "round",
|
|
859
|
+
strokeLinejoin: "round",
|
|
860
|
+
strokeWidth: 32
|
|
861
|
+
}
|
|
862
|
+
}),
|
|
863
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
864
|
+
x1: 54,
|
|
865
|
+
y1: 208,
|
|
866
|
+
x2: 186,
|
|
867
|
+
y2: 216,
|
|
868
|
+
style: {
|
|
869
|
+
fill: "none",
|
|
870
|
+
stroke: "#000000",
|
|
871
|
+
strokeLinecap: "round",
|
|
872
|
+
strokeLinejoin: "round",
|
|
873
|
+
strokeWidth: 32
|
|
874
|
+
}
|
|
875
|
+
}),
|
|
876
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
877
|
+
x1: 186,
|
|
878
|
+
y1: 296,
|
|
879
|
+
x2: 54,
|
|
880
|
+
y2: 304,
|
|
881
|
+
style: {
|
|
882
|
+
fill: "none",
|
|
883
|
+
stroke: "#000000",
|
|
884
|
+
strokeLinecap: "round",
|
|
885
|
+
strokeLinejoin: "round",
|
|
886
|
+
strokeWidth: 32
|
|
887
|
+
}
|
|
888
|
+
})
|
|
889
|
+
]
|
|
890
|
+
});
|
|
891
|
+
//#endregion
|
|
892
|
+
//#region src/assets/icons/info.svg?react
|
|
893
|
+
var SvgInfo = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
894
|
+
fill: "#000000",
|
|
895
|
+
width: "24px",
|
|
896
|
+
height: "24px",
|
|
897
|
+
viewBox: "0 0 1920 1920",
|
|
898
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
899
|
+
...props,
|
|
900
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
901
|
+
d: "M960 0c530.193 0 960 429.807 960 960s-429.807 960-960 960S0 1490.193 0 960 429.807 0 960 0Zm0 101.053c-474.384 0-858.947 384.563-858.947 858.947S485.616 1818.947 960 1818.947 1818.947 1434.384 1818.947 960 1434.384 101.053 960 101.053Zm-42.074 626.795c-85.075 39.632-157.432 107.975-229.844 207.898-10.327 14.249-10.744 22.907-.135 30.565 7.458 5.384 11.792 3.662 22.656-7.928 1.453-1.562 1.453-1.562 2.94-3.174 9.391-10.17 16.956-18.8 33.115-37.565 53.392-62.005 79.472-87.526 120.003-110.867 35.075-20.198 65.9 9.485 60.03 47.471-1.647 10.664-4.483 18.534-11.791 35.432-2.907 6.722-4.133 9.646-5.496 13.23-13.173 34.63-24.269 63.518-47.519 123.85l-1.112 2.886c-7.03 18.242-7.03 18.242-14.053 36.48-30.45 79.138-48.927 127.666-67.991 178.988l-1.118 3.008a10180.575 10180.575 0 0 0-10.189 27.469c-21.844 59.238-34.337 97.729-43.838 138.668-1.484 6.37-1.484 6.37-2.988 12.845-5.353 23.158-8.218 38.081-9.82 53.42-2.77 26.522-.543 48.24 7.792 66.493 9.432 20.655 29.697 35.43 52.819 38.786 38.518 5.592 75.683 5.194 107.515-2.048 17.914-4.073 35.638-9.405 53.03-15.942 50.352-18.932 98.861-48.472 145.846-87.52 41.11-34.26 80.008-76 120.788-127.872 3.555-4.492 3.555-4.492 7.098-8.976 12.318-15.707 18.352-25.908 20.605-36.683 2.45-11.698-7.439-23.554-15.343-19.587-3.907 1.96-7.993 6.018-14.22 13.872-4.454 5.715-6.875 8.77-9.298 11.514-9.671 10.95-19.883 22.157-30.947 33.998-18.241 19.513-36.775 38.608-63.656 65.789-13.69 13.844-30.908 25.947-49.42 35.046-29.63 14.559-56.358-3.792-53.148-36.635 2.118-21.681 7.37-44.096 15.224-65.767 17.156-47.367 31.183-85.659 62.216-170.048 13.459-36.6 19.27-52.41 26.528-72.201 21.518-58.652 38.696-105.868 55.04-151.425 20.19-56.275 31.596-98.224 36.877-141.543 3.987-32.673-5.103-63.922-25.834-85.405-22.986-23.816-55.68-34.787-96.399-34.305-45.053.535-97.607 15.256-145.963 37.783Zm308.381-388.422c-80.963-31.5-178.114 22.616-194.382 108.33-11.795 62.124 11.412 115.76 58.78 138.225 93.898 44.531 206.587-26.823 206.592-130.826.005-57.855-24.705-97.718-70.99-115.729Z",
|
|
902
|
+
fillRule: "evenodd"
|
|
903
|
+
})
|
|
904
|
+
});
|
|
905
|
+
//#endregion
|
|
906
|
+
//#region src/assets/icons/line-chart-up.svg?react
|
|
907
|
+
var SvgLineChartUp = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
908
|
+
width: "28px",
|
|
909
|
+
height: "28px",
|
|
910
|
+
viewBox: "0 0 24 24",
|
|
911
|
+
fill: "none",
|
|
912
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
913
|
+
...props,
|
|
914
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
915
|
+
d: "M21 21H4.6C4.03995 21 3.75992 21 3.54601 20.891C3.35785 20.7951 3.20487 20.6422 3.10899 20.454C3 20.2401 3 19.9601 3 19.4V3M21 7L15.5657 12.4343C15.3677 12.6323 15.2687 12.7313 15.1545 12.7684C15.0541 12.8011 14.9459 12.8011 14.8455 12.7684C14.7313 12.7313 14.6323 12.6323 14.4343 12.4343L12.5657 10.5657C12.3677 10.3677 12.2687 10.2687 12.1545 10.2316C12.0541 10.1989 11.9459 10.1989 11.8455 10.2316C11.7313 10.2687 11.6323 10.3677 11.4343 10.5657L7 15M21 7H17M21 7V11",
|
|
916
|
+
stroke: "#000000",
|
|
917
|
+
strokeWidth: 2,
|
|
918
|
+
strokeLinecap: "round",
|
|
919
|
+
strokeLinejoin: "round"
|
|
920
|
+
})
|
|
921
|
+
});
|
|
922
|
+
//#endregion
|
|
923
|
+
//#region src/assets/icons/loading.svg?react
|
|
924
|
+
var SvgLoading = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
925
|
+
width: "24px",
|
|
926
|
+
height: "24px",
|
|
927
|
+
viewBox: "0 0 24 24",
|
|
928
|
+
fill: "none",
|
|
929
|
+
stroke: "currentColor",
|
|
930
|
+
strokeWidth: 2,
|
|
931
|
+
strokeLinecap: "round",
|
|
932
|
+
strokeLinejoin: "round",
|
|
933
|
+
...props,
|
|
934
|
+
children: [
|
|
935
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
936
|
+
x1: 12,
|
|
937
|
+
y1: 2,
|
|
938
|
+
x2: 12,
|
|
939
|
+
y2: 6
|
|
940
|
+
}),
|
|
941
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
942
|
+
x1: 12,
|
|
943
|
+
y1: 18,
|
|
944
|
+
x2: 12,
|
|
945
|
+
y2: 22
|
|
946
|
+
}),
|
|
947
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
948
|
+
x1: 4.93,
|
|
949
|
+
y1: 4.93,
|
|
950
|
+
x2: 7.76,
|
|
951
|
+
y2: 7.76
|
|
952
|
+
}),
|
|
953
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
954
|
+
x1: 16.24,
|
|
955
|
+
y1: 16.24,
|
|
956
|
+
x2: 19.07,
|
|
957
|
+
y2: 19.07
|
|
958
|
+
}),
|
|
959
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
960
|
+
x1: 2,
|
|
961
|
+
y1: 12,
|
|
962
|
+
x2: 6,
|
|
963
|
+
y2: 12
|
|
964
|
+
}),
|
|
965
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
966
|
+
x1: 18,
|
|
967
|
+
y1: 12,
|
|
968
|
+
x2: 22,
|
|
969
|
+
y2: 12
|
|
970
|
+
}),
|
|
971
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
972
|
+
x1: 4.93,
|
|
973
|
+
y1: 19.07,
|
|
974
|
+
x2: 7.76,
|
|
975
|
+
y2: 16.24
|
|
976
|
+
}),
|
|
977
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
978
|
+
x1: 16.24,
|
|
979
|
+
y1: 7.76,
|
|
980
|
+
x2: 19.07,
|
|
981
|
+
y2: 4.93
|
|
982
|
+
})
|
|
983
|
+
]
|
|
984
|
+
});
|
|
985
|
+
//#endregion
|
|
986
|
+
//#region src/assets/icons/location.svg?react
|
|
987
|
+
var SvgLocation = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
988
|
+
width: "24px",
|
|
989
|
+
height: "24px",
|
|
990
|
+
viewBox: "0 0 24 24",
|
|
991
|
+
fill: "none",
|
|
992
|
+
stroke: "currentColor",
|
|
993
|
+
strokeWidth: 2,
|
|
994
|
+
strokeLinecap: "round",
|
|
995
|
+
strokeLinejoin: "round",
|
|
996
|
+
...props,
|
|
997
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
998
|
+
cx: 12,
|
|
999
|
+
cy: 10,
|
|
1000
|
+
r: 3
|
|
1001
|
+
})]
|
|
1002
|
+
});
|
|
1003
|
+
//#endregion
|
|
1004
|
+
//#region src/assets/icons/logout.svg?react
|
|
1005
|
+
var SvgLogout = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1006
|
+
width: "24px",
|
|
1007
|
+
height: "24px",
|
|
1008
|
+
viewBox: "0 0 24 24",
|
|
1009
|
+
fill: "none",
|
|
1010
|
+
stroke: "currentColor",
|
|
1011
|
+
strokeWidth: 2,
|
|
1012
|
+
strokeLinecap: "round",
|
|
1013
|
+
strokeLinejoin: "round",
|
|
1014
|
+
...props,
|
|
1015
|
+
children: [
|
|
1016
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
1017
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("polyline", { points: "16,17 21,12 16,7" }),
|
|
1018
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
1019
|
+
x1: 21,
|
|
1020
|
+
y1: 12,
|
|
1021
|
+
x2: 9,
|
|
1022
|
+
y2: 12
|
|
1023
|
+
})
|
|
1024
|
+
]
|
|
1025
|
+
});
|
|
1026
|
+
//#endregion
|
|
1027
|
+
//#region src/assets/icons/menu.svg?react
|
|
1028
|
+
var SvgMenu = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1029
|
+
width: 24,
|
|
1030
|
+
height: 24,
|
|
1031
|
+
viewBox: "0 0 24 24",
|
|
1032
|
+
fill: "none",
|
|
1033
|
+
stroke: "currentColor",
|
|
1034
|
+
strokeWidth: 2,
|
|
1035
|
+
strokeLinecap: "round",
|
|
1036
|
+
strokeLinejoin: "round",
|
|
1037
|
+
...props,
|
|
1038
|
+
children: [
|
|
1039
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
1040
|
+
x1: 3,
|
|
1041
|
+
y1: 6,
|
|
1042
|
+
x2: 21,
|
|
1043
|
+
y2: 6
|
|
1044
|
+
}),
|
|
1045
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
1046
|
+
x1: 3,
|
|
1047
|
+
y1: 12,
|
|
1048
|
+
x2: 21,
|
|
1049
|
+
y2: 12
|
|
1050
|
+
}),
|
|
1051
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
1052
|
+
x1: 3,
|
|
1053
|
+
y1: 18,
|
|
1054
|
+
x2: 21,
|
|
1055
|
+
y2: 18
|
|
1056
|
+
})
|
|
1057
|
+
]
|
|
1058
|
+
});
|
|
1059
|
+
//#endregion
|
|
1060
|
+
//#region src/assets/icons/minus.svg?react
|
|
1061
|
+
var SvgMinus = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1062
|
+
fill: "none",
|
|
1063
|
+
stroke: "currentColor",
|
|
1064
|
+
viewBox: "0 0 24 24",
|
|
1065
|
+
...props,
|
|
1066
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1067
|
+
strokeLinecap: "round",
|
|
1068
|
+
strokeLinejoin: "round",
|
|
1069
|
+
strokeWidth: 2,
|
|
1070
|
+
d: "M20 12H4"
|
|
1071
|
+
})
|
|
1072
|
+
});
|
|
1073
|
+
//#endregion
|
|
1074
|
+
//#region src/assets/icons/night-light.svg?react
|
|
1075
|
+
var SvgNightLight = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1076
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1077
|
+
width: 24,
|
|
1078
|
+
height: 24,
|
|
1079
|
+
viewBox: "0 0 24 24",
|
|
1080
|
+
fill: "#bfc9d4",
|
|
1081
|
+
stroke: "#bfc9d4",
|
|
1082
|
+
strokeWidth: 2,
|
|
1083
|
+
strokeLinecap: "round",
|
|
1084
|
+
strokeLinejoin: "round",
|
|
1085
|
+
...props,
|
|
1086
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" })
|
|
1087
|
+
});
|
|
1088
|
+
//#endregion
|
|
1089
|
+
//#region src/assets/icons/oAuth.svg?react
|
|
1090
|
+
var SvgOAuth = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1091
|
+
width: "24px",
|
|
1092
|
+
height: "24px",
|
|
1093
|
+
viewBox: "0 0 24 24",
|
|
1094
|
+
fill: "none",
|
|
1095
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1096
|
+
...props,
|
|
1097
|
+
children: [
|
|
1098
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1099
|
+
d: "M9 17.5C9 18.8807 7.88071 20 6.5 20C5.11929 20 4 18.8807 4 17.5C4 16.1193 5.11929 15 6.5 15C7.88071 15 9 16.1193 9 17.5ZM9 17.5H15.125M19 20V17.75C19 17.6119 18.8881 17.5 18.75 17.5M15.125 17.5H18.75M15.125 17.5V20M18.75 17.5C19.4404 17.5 20 16.9404 20 16.25C20 15.5596 19.4404 15 18.75 15C18.0596 15 17.5 15.5596 17.5 16.25C17.5 16.9404 18.0596 17.5 18.75 17.5ZM5 11H19C20.1046 11 21 10.1046 21 9V6C21 4.89543 20.1046 4 19 4H5C3.89543 4 3 4.89543 3 6V9C3 10.1046 3.89543 11 5 11Z",
|
|
1100
|
+
stroke: "currentColor",
|
|
1101
|
+
strokeWidth: 2,
|
|
1102
|
+
strokeLinecap: "round",
|
|
1103
|
+
strokeLinejoin: "round"
|
|
1104
|
+
}),
|
|
1105
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1106
|
+
cx: 7.5,
|
|
1107
|
+
cy: 7.5,
|
|
1108
|
+
r: 1.5,
|
|
1109
|
+
fill: "currentColor"
|
|
1110
|
+
}),
|
|
1111
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1112
|
+
cx: 12,
|
|
1113
|
+
cy: 7.5,
|
|
1114
|
+
r: 1.5,
|
|
1115
|
+
fill: "currentColor"
|
|
1116
|
+
}),
|
|
1117
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1118
|
+
cx: 16.5,
|
|
1119
|
+
cy: 7.5,
|
|
1120
|
+
r: 1.5,
|
|
1121
|
+
fill: "currentColor"
|
|
1122
|
+
})
|
|
1123
|
+
]
|
|
1124
|
+
});
|
|
1125
|
+
//#endregion
|
|
1126
|
+
//#region src/assets/icons/password.svg?react
|
|
1127
|
+
var SvgPassword = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1128
|
+
width: "24px",
|
|
1129
|
+
height: "24px",
|
|
1130
|
+
viewBox: "0 0 24 24",
|
|
1131
|
+
fill: "none",
|
|
1132
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1133
|
+
...props,
|
|
1134
|
+
children: [
|
|
1135
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1136
|
+
d: "M2 12C2 8.22876 2 6.34315 3.17157 5.17157C4.34315 4 6.22876 4 10 4H14C17.7712 4 19.6569 4 20.8284 5.17157C22 6.34315 22 8.22876 22 12C22 15.7712 22 17.6569 20.8284 18.8284C19.6569 20 17.7712 20 14 20H10C6.22876 20 4.34315 20 3.17157 18.8284C2 17.6569 2 15.7712 2 12Z",
|
|
1137
|
+
stroke: "currentColor",
|
|
1138
|
+
strokeWidth: 1.5
|
|
1139
|
+
}),
|
|
1140
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1141
|
+
d: "M12.0002 10V14M10.2678 11L13.7319 13M13.7317 11L10.2676 13",
|
|
1142
|
+
stroke: "currentColor",
|
|
1143
|
+
strokeWidth: 1.5,
|
|
1144
|
+
strokeLinecap: "round"
|
|
1145
|
+
}),
|
|
1146
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1147
|
+
d: "M6.73266 10V14M5.00023 11L8.46434 13M8.4641 11L5 13",
|
|
1148
|
+
stroke: "currentColor",
|
|
1149
|
+
strokeWidth: 1.5,
|
|
1150
|
+
strokeLinecap: "round"
|
|
1151
|
+
}),
|
|
1152
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1153
|
+
d: "M17.2681 10V14M15.5356 11L18.9997 13M18.9995 11L15.5354 13",
|
|
1154
|
+
stroke: "currentColor",
|
|
1155
|
+
strokeWidth: 1.5,
|
|
1156
|
+
strokeLinecap: "round"
|
|
1157
|
+
})
|
|
1158
|
+
]
|
|
1159
|
+
});
|
|
1160
|
+
//#endregion
|
|
1161
|
+
//#region src/assets/icons/pause.svg?react
|
|
1162
|
+
var SvgPause = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1163
|
+
width: "24px",
|
|
1164
|
+
height: "24px",
|
|
1165
|
+
viewBox: "0 0 24 24",
|
|
1166
|
+
fill: "none",
|
|
1167
|
+
stroke: "currentColor",
|
|
1168
|
+
strokeWidth: 2,
|
|
1169
|
+
strokeLinecap: "round",
|
|
1170
|
+
strokeLinejoin: "round",
|
|
1171
|
+
...props,
|
|
1172
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
1173
|
+
x: 6,
|
|
1174
|
+
y: 4,
|
|
1175
|
+
width: 4,
|
|
1176
|
+
height: 16
|
|
1177
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
1178
|
+
x: 14,
|
|
1179
|
+
y: 4,
|
|
1180
|
+
width: 4,
|
|
1181
|
+
height: 16
|
|
1182
|
+
})]
|
|
1183
|
+
});
|
|
1184
|
+
//#endregion
|
|
1185
|
+
//#region src/assets/icons/play.svg?react
|
|
1186
|
+
var SvgPlay = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1187
|
+
width: "24px",
|
|
1188
|
+
height: "24px",
|
|
1189
|
+
viewBox: "0 0 24 24",
|
|
1190
|
+
fill: "none",
|
|
1191
|
+
stroke: "currentColor",
|
|
1192
|
+
strokeWidth: 2,
|
|
1193
|
+
strokeLinecap: "round",
|
|
1194
|
+
strokeLinejoin: "round",
|
|
1195
|
+
...props,
|
|
1196
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("polygon", { points: "5,3 19,12 5,21 5,3" })
|
|
1197
|
+
});
|
|
1198
|
+
//#endregion
|
|
1199
|
+
//#region src/assets/icons/plus-2.svg?react
|
|
1200
|
+
var SvgPlus2 = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1201
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1202
|
+
fill: "none",
|
|
1203
|
+
viewBox: "0 0 24 24",
|
|
1204
|
+
strokeWidth: "{2} ",
|
|
1205
|
+
stroke: "currentColor",
|
|
1206
|
+
...props,
|
|
1207
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1208
|
+
strokeLinecap: "round",
|
|
1209
|
+
strokeLinejoin: "round",
|
|
1210
|
+
d: "M12 4.5v15m7.5-7.5h-15"
|
|
1211
|
+
})
|
|
1212
|
+
});
|
|
1213
|
+
//#endregion
|
|
1214
|
+
//#region src/assets/icons/plus-box.svg?react
|
|
1215
|
+
var SvgPlusBox = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1216
|
+
fill: "#000000",
|
|
1217
|
+
height: "26px",
|
|
1218
|
+
width: "26px",
|
|
1219
|
+
id: "XMLID_292_",
|
|
1220
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1221
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
1222
|
+
viewBox: "0 0 24 24",
|
|
1223
|
+
xmlSpace: "preserve",
|
|
1224
|
+
...props,
|
|
1225
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
1226
|
+
id: "new-window",
|
|
1227
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", { children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,24H0V6h6v2H2v14h14v-4H6V0h18v18h-6V24z M8,16h14V2H8V16z M16,13h-2v-3h-3V8h3V5h2v3h3v2h-3V13z" }) })
|
|
1228
|
+
})
|
|
1229
|
+
});
|
|
1230
|
+
//#endregion
|
|
1231
|
+
//#region src/assets/icons/plus-solid.svg?react
|
|
1232
|
+
var SvgPlusSolid = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1233
|
+
viewBox: "0 0 20 20",
|
|
1234
|
+
fill: "currentColor",
|
|
1235
|
+
...props,
|
|
1236
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1237
|
+
fillRule: "evenodd",
|
|
1238
|
+
d: "M10 5a1 1 0 011 1v3h3a1 1 0 110 2h-3v3a1 1 0 11-2 0v-3H6a1 1 0 110-2h3V6a1 1 0 011-1z",
|
|
1239
|
+
clipRule: "evenodd"
|
|
1240
|
+
})
|
|
1241
|
+
});
|
|
1242
|
+
//#endregion
|
|
1243
|
+
//#region src/assets/icons/plus.svg?react
|
|
1244
|
+
var SvgPlus = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1245
|
+
fill: "none",
|
|
1246
|
+
stroke: "currentColor",
|
|
1247
|
+
viewBox: "0 0 24 24",
|
|
1248
|
+
...props,
|
|
1249
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1250
|
+
strokeLinecap: "round",
|
|
1251
|
+
strokeLinejoin: "round",
|
|
1252
|
+
strokeWidth: 2,
|
|
1253
|
+
d: "M12 4v16m8-8H4"
|
|
1254
|
+
})
|
|
1255
|
+
});
|
|
1256
|
+
//#endregion
|
|
1257
|
+
//#region src/assets/icons/print.svg?react
|
|
1258
|
+
var SvgPrint = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1259
|
+
fill: "currentColor",
|
|
1260
|
+
height: "800px",
|
|
1261
|
+
width: "800px",
|
|
1262
|
+
id: "Layer_1",
|
|
1263
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1264
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
1265
|
+
viewBox: "0 0 64 64",
|
|
1266
|
+
enableBackground: "new 0 0 64 64",
|
|
1267
|
+
xmlSpace: "preserve",
|
|
1268
|
+
...props,
|
|
1269
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("g", {
|
|
1270
|
+
id: "Printer",
|
|
1271
|
+
children: [
|
|
1272
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M57.7881012,14.03125H52.5v-8.0625c0-2.2091999-1.7909012-4-4-4h-33c-2.2091999,0-4,1.7908001-4,4v8.0625H6.2119002 C2.7871001,14.03125,0,16.8183498,0,20.2431507V46.513649c0,3.4248009,2.7871001,6.2119026,6.2119002,6.2119026h2.3798995 c0.5527,0,1-0.4472008,1-1c0-0.5527-0.4473-1-1-1H6.2119002C3.8896,50.7255516,2,48.8359489,2,46.513649V20.2431507 c0-2.3223,1.8896-4.2119007,4.2119002-4.2119007h51.5762024C60.1102982,16.03125,62,17.9208508,62,20.2431507V46.513649 c0,2.3223-1.8897018,4.2119026-4.2118988,4.2119026H56c-0.5527992,0-1,0.4473-1,1c0,0.5527992,0.4472008,1,1,1h1.7881012 C61.2128983,52.7255516,64,49.9384499,64,46.513649V20.2431507C64,16.8183498,61.2128983,14.03125,57.7881012,14.03125z M13.5,5.96875c0-1.1027999,0.8971996-2,2-2h33c1.1027985,0,2,0.8972001,2,2v8h-37V5.96875z" }),
|
|
1273
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M44,45.0322495H20c-0.5517998,0-0.9990005,0.4472008-0.9990005,0.9990005S19.4482002,47.0302505,20,47.0302505h24 c0.5517006,0,0.9990005-0.4472008,0.9990005-0.9990005S44.5517006,45.0322495,44,45.0322495z" }),
|
|
1274
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M44,52.0322495H20c-0.5517998,0-0.9990005,0.4472008-0.9990005,0.9990005S19.4482002,54.0302505,20,54.0302505h24 c0.5517006,0,0.9990005-0.4472008,0.9990005-0.9990005S44.5517006,52.0322495,44,52.0322495z" }),
|
|
1275
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1276
|
+
cx: 7.9590998,
|
|
1277
|
+
cy: 21.8405495,
|
|
1278
|
+
r: 2
|
|
1279
|
+
}),
|
|
1280
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1281
|
+
cx: 14.2856998,
|
|
1282
|
+
cy: 21.8405495,
|
|
1283
|
+
r: 2
|
|
1284
|
+
}),
|
|
1285
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1286
|
+
cx: 20.6121998,
|
|
1287
|
+
cy: 21.8405495,
|
|
1288
|
+
r: 2
|
|
1289
|
+
}),
|
|
1290
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,62.03125h42v-26H11V62.03125z M13.4036999,38.4349518h37.1925964v21.1925964H13.4036999V38.4349518z" })
|
|
1291
|
+
]
|
|
1292
|
+
})
|
|
1293
|
+
});
|
|
1294
|
+
//#endregion
|
|
1295
|
+
//#region src/assets/icons/question-circle.svg?react
|
|
1296
|
+
var SvgQuestionCircle = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1297
|
+
width: "24px",
|
|
1298
|
+
height: "24px",
|
|
1299
|
+
viewBox: "0 0 24 24",
|
|
1300
|
+
fill: "none",
|
|
1301
|
+
stroke: "currentColor",
|
|
1302
|
+
strokeWidth: 2,
|
|
1303
|
+
strokeLinecap: "round",
|
|
1304
|
+
strokeLinejoin: "round",
|
|
1305
|
+
...props,
|
|
1306
|
+
children: [
|
|
1307
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1308
|
+
cx: 12,
|
|
1309
|
+
cy: 12,
|
|
1310
|
+
r: 10
|
|
1311
|
+
}),
|
|
1312
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m9,9a3,3 0 0,1 6,0c0,2 -3,3 -3,3" }),
|
|
1313
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m12,17h.01" })
|
|
1314
|
+
]
|
|
1315
|
+
});
|
|
1316
|
+
//#endregion
|
|
1317
|
+
//#region src/assets/icons/queue.svg?react
|
|
1318
|
+
var SvgQueue = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1319
|
+
width: "24px",
|
|
1320
|
+
height: "24px",
|
|
1321
|
+
viewBox: "-8.86 0 89.724 89.724",
|
|
1322
|
+
"xmlns:rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
1323
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1324
|
+
...props,
|
|
1325
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1326
|
+
d: "m 669.21497,716.16952 c -18.32306,-0.0396 -35.04274,16.45493 -37.8937,35.46662 -3.09197,20.61868 10.43085,40.68377 30.06442,45.48809 5.87434,1.43751 8.76879,1.33098 8.76879,1.33098 0,0 0.0783,5.81591 0.0783,7.43781 0.86072,-0.81612 11.58733,-11.35245 11.58733,-11.35245 0,0 -6.46042,-6.24307 -11.58733,-11.19586 0.0962,2.79591 0,7.43781 0,7.43781 0,0 -6.71639,-10e-5 -13.07489,-3.36659 -31.30179,-16.57263 -23.88032,-62.2109 12.37026,-68.27129 4.51798,-0.75531 16.68773,1.19321 20.591,2.50537 -2.36387,-1.62536 -9.1934,-5.45519 -20.90417,-5.48049 z m 4.93244,8.45562 c -15.87521,0 -28.73344,12.93652 -28.73344,28.81173 0,15.87522 12.85823,28.73345 28.73344,28.73345 15.87522,0 28.73345,-12.85823 28.73345,-28.73345 0,-15.87521 -12.85823,-28.81173 -28.73345,-28.81173 z m -0.15658,1.95732 c 1.57244,0 2.81854,1.24609 2.81854,2.81854 0,1.57244 -1.2461,2.89683 -2.81854,2.89683 -1.57245,0 -2.89684,-1.32439 -2.89684,-2.89683 0,-1.57245 1.32439,-2.81854 2.89684,-2.81854 z m 0.0783,9.47342 c 2.84597,0 5.08903,2.12328 5.08903,4.77586 l 0,10.41294 9.08196,8.29903 c 1.97794,1.81151 1.89824,4.93868 -0.15659,7.04635 -2.0549,2.10774 -5.30328,2.35953 -7.28122,0.54805 l -9.94318,-9.08196 c -0.0814,-0.0747 -0.16047,-0.15596 -0.23488,-0.23488 -1.06676,-0.87613 -1.72244,-2.16599 -1.72244,-3.60147 l 0,-13.38806 c 0,-2.65258 2.32137,-4.77586 5.16732,-4.77586 z m -24.66222,15.58026 c 1.57244,0 2.81854,1.32439 2.81854,2.89683 0,1.57245 -1.2461,2.81854 -2.81854,2.81854 -1.57244,0 -2.81854,-1.24609 -2.81854,-2.81854 0,-1.57244 1.2461,-2.89683 2.81854,-2.89683 z m 49.55932,0.0783 c 1.57244,0 2.81854,1.2461 2.81854,2.81854 0,1.57245 -1.2461,2.81854 -2.81854,2.81854 -1.57245,0 -2.81854,-1.24609 -2.81854,-2.81854 0,-1.57244 1.24609,-2.81854 2.81854,-2.81854 z m -24.50564,23.48783 c 1.57245,0 2.89684,1.32439 2.89684,2.89683 0,1.57245 -1.32439,2.81854 -2.89684,2.81854 -1.57244,0 -2.81854,-1.24609 -2.81854,-2.81854 0,-1.57244 1.2461,-2.89683 2.81854,-2.89683 z",
|
|
1327
|
+
fill: "#00bcf2",
|
|
1328
|
+
transform: "translate(-630.881 -716.169)"
|
|
1329
|
+
})
|
|
1330
|
+
});
|
|
1331
|
+
//#endregion
|
|
1332
|
+
//#region src/assets/icons/red-flag.svg?react
|
|
1333
|
+
var SvgRedFlag = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1334
|
+
id: "Layer_1",
|
|
1335
|
+
style: { color: "#E21B1B" },
|
|
1336
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1337
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
1338
|
+
viewBox: "0 0 511.999 511.999",
|
|
1339
|
+
xmlSpace: "preserve",
|
|
1340
|
+
...props,
|
|
1341
|
+
children: [
|
|
1342
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1343
|
+
style: { fill: "currentColor" },
|
|
1344
|
+
d: "M103.919,51.744c0,0,41.296,33.496,109.008,18.4c64.2-14.264,124.056-30.464,224.616,5.856v215.032 c0,0-92.488-44.104-176.736-24.432s-131.88,12.12-156.888-12.888"
|
|
1345
|
+
}),
|
|
1346
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
1347
|
+
x: 90.74,
|
|
1348
|
+
y: 37.524,
|
|
1349
|
+
style: { fill: "#999999" },
|
|
1350
|
+
width: 16,
|
|
1351
|
+
height: 474.475
|
|
1352
|
+
}),
|
|
1353
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1354
|
+
style: { fill: "#666666" },
|
|
1355
|
+
cx: 98.741,
|
|
1356
|
+
cy: 24.284,
|
|
1357
|
+
r: 24.284
|
|
1358
|
+
})
|
|
1359
|
+
]
|
|
1360
|
+
});
|
|
1361
|
+
//#endregion
|
|
1362
|
+
//#region src/assets/icons/refresh.svg?react
|
|
1363
|
+
var SvgRefresh = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1364
|
+
width: "24px",
|
|
1365
|
+
height: "24px",
|
|
1366
|
+
viewBox: "0 0 24 24",
|
|
1367
|
+
fill: "none",
|
|
1368
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1369
|
+
...props,
|
|
1370
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1371
|
+
d: "M13 2L11 3.99545L11.0592 4.05474M11 18.0001L13 19.9108L12.9703 19.9417M11.0592 4.05474L13 6M11.0592 4.05474C11.3677 4.01859 11.6817 4 12 4C16.4183 4 20 7.58172 20 12C20 14.5264 18.8289 16.7793 17 18.2454M7 5.75463C5.17107 7.22075 4 9.47362 4 12C4 16.4183 7.58172 20 12 20C12.3284 20 12.6523 19.9802 12.9703 19.9417M11 22.0001L12.9703 19.9417",
|
|
1372
|
+
stroke: "#000000",
|
|
1373
|
+
strokeWidth: 2,
|
|
1374
|
+
strokeLinecap: "round",
|
|
1375
|
+
strokeLinejoin: "round"
|
|
1376
|
+
})
|
|
1377
|
+
});
|
|
1378
|
+
//#endregion
|
|
1379
|
+
//#region src/assets/icons/search.svg?react
|
|
1380
|
+
var SvgSearch = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1381
|
+
fill: "none",
|
|
1382
|
+
stroke: "currentColor",
|
|
1383
|
+
viewBox: "0 0 24 24",
|
|
1384
|
+
...props,
|
|
1385
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1386
|
+
strokeLinecap: "round",
|
|
1387
|
+
strokeLinejoin: "round",
|
|
1388
|
+
strokeWidth: 2,
|
|
1389
|
+
d: "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"
|
|
1390
|
+
})
|
|
1391
|
+
});
|
|
1392
|
+
//#endregion
|
|
1393
|
+
//#region src/assets/icons/settings.svg?react
|
|
1394
|
+
var SvgSettings = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1395
|
+
fill: "currentColor",
|
|
1396
|
+
height: "24px",
|
|
1397
|
+
width: "24px",
|
|
1398
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1399
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
1400
|
+
viewBox: "0 0 54 54",
|
|
1401
|
+
xmlSpace: "preserve",
|
|
1402
|
+
...props,
|
|
1403
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("g", { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M51.22,21h-5.052c-0.812,0-1.481-0.447-1.792-1.197s-0.153-1.54,0.42-2.114l3.572-3.571 c0.525-0.525,0.814-1.224,0.814-1.966c0-0.743-0.289-1.441-0.814-1.967l-4.553-4.553c-1.05-1.05-2.881-1.052-3.933,0l-3.571,3.571 c-0.574,0.573-1.366,0.733-2.114,0.421C33.447,9.313,33,8.644,33,7.832V2.78C33,1.247,31.753,0,30.22,0H23.78 C22.247,0,21,1.247,21,2.78v5.052c0,0.812-0.447,1.481-1.197,1.792c-0.748,0.313-1.54,0.152-2.114-0.421l-3.571-3.571 c-1.052-1.052-2.883-1.05-3.933,0l-4.553,4.553c-0.525,0.525-0.814,1.224-0.814,1.967c0,0.742,0.289,1.44,0.814,1.966l3.572,3.571 c0.573,0.574,0.73,1.364,0.42,2.114S8.644,21,7.832,21H2.78C1.247,21,0,22.247,0,23.78v6.439C0,31.753,1.247,33,2.78,33h5.052 c0.812,0,1.481,0.447,1.792,1.197s0.153,1.54-0.42,2.114l-3.572,3.571c-0.525,0.525-0.814,1.224-0.814,1.966 c0,0.743,0.289,1.441,0.814,1.967l4.553,4.553c1.051,1.051,2.881,1.053,3.933,0l3.571-3.572c0.574-0.573,1.363-0.731,2.114-0.42 c0.75,0.311,1.197,0.98,1.197,1.792v5.052c0,1.533,1.247,2.78,2.78,2.78h6.439c1.533,0,2.78-1.247,2.78-2.78v-5.052 c0-0.812,0.447-1.481,1.197-1.792c0.751-0.312,1.54-0.153,2.114,0.42l3.571,3.572c1.052,1.052,2.883,1.05,3.933,0l4.553-4.553 c0.525-0.525,0.814-1.224,0.814-1.967c0-0.742-0.289-1.44-0.814-1.966l-3.572-3.571c-0.573-0.574-0.73-1.364-0.42-2.114 S45.356,33,46.168,33h5.052c1.533,0,2.78-1.247,2.78-2.78V23.78C54,22.247,52.753,21,51.22,21z M52,30.22 C52,30.65,51.65,31,51.22,31h-5.052c-1.624,0-3.019,0.932-3.64,2.432c-0.622,1.5-0.295,3.146,0.854,4.294l3.572,3.571 c0.305,0.305,0.305,0.8,0,1.104l-4.553,4.553c-0.304,0.304-0.799,0.306-1.104,0l-3.571-3.572c-1.149-1.149-2.794-1.474-4.294-0.854 c-1.5,0.621-2.432,2.016-2.432,3.64v5.052C31,51.65,30.65,52,30.22,52H23.78C23.35,52,23,51.65,23,51.22v-5.052 c0-1.624-0.932-3.019-2.432-3.64c-0.503-0.209-1.021-0.311-1.533-0.311c-1.014,0-1.997,0.4-2.761,1.164l-3.571,3.572 c-0.306,0.306-0.801,0.304-1.104,0l-4.553-4.553c-0.305-0.305-0.305-0.8,0-1.104l3.572-3.571c1.148-1.148,1.476-2.794,0.854-4.294 C10.851,31.932,9.456,31,7.832,31H2.78C2.35,31,2,30.65,2,30.22V23.78C2,23.35,2.35,23,2.78,23h5.052 c1.624,0,3.019-0.932,3.64-2.432c0.622-1.5,0.295-3.146-0.854-4.294l-3.572-3.571c-0.305-0.305-0.305-0.8,0-1.104l4.553-4.553 c0.304-0.305,0.799-0.305,1.104,0l3.571,3.571c1.147,1.147,2.792,1.476,4.294,0.854C22.068,10.851,23,9.456,23,7.832V2.78 C23,2.35,23.35,2,23.78,2h6.439C30.65,2,31,2.35,31,2.78v5.052c0,1.624,0.932,3.019,2.432,3.64 c1.502,0.622,3.146,0.294,4.294-0.854l3.571-3.571c0.306-0.305,0.801-0.305,1.104,0l4.553,4.553c0.305,0.305,0.305,0.8,0,1.104 l-3.572,3.571c-1.148,1.148-1.476,2.794-0.854,4.294c0.621,1.5,2.016,2.432,3.64,2.432h5.052C51.65,23,52,23.35,52,23.78V30.22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,18c-4.963,0-9,4.037-9,9s4.037,9,9,9s9-4.037,9-9S31.963,18,27,18z M27,34c-3.859,0-7-3.141-7-7s3.141-7,7-7 s7,3.141,7,7S30.859,34,27,34z" })] })
|
|
1404
|
+
});
|
|
1405
|
+
//#endregion
|
|
1406
|
+
//#region src/assets/icons/share.svg?react
|
|
1407
|
+
var SvgShare = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1408
|
+
width: "24px",
|
|
1409
|
+
height: "24px",
|
|
1410
|
+
viewBox: "0 0 16 16",
|
|
1411
|
+
fill: "none",
|
|
1412
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1413
|
+
...props,
|
|
1414
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1415
|
+
d: "M11 6C12.6569 6 14 4.65685 14 3C14 1.34315 12.6569 0 11 0C9.34315 0 8 1.34315 8 3C8 3.22371 8.02449 3.44169 8.07092 3.65143L4.86861 5.65287C4.35599 5.24423 3.70652 5 3 5C1.34315 5 0 6.34315 0 8C0 9.65685 1.34315 11 3 11C3.70652 11 4.35599 10.7558 4.86861 10.3471L8.07092 12.3486C8.02449 12.5583 8 12.7763 8 13C8 14.6569 9.34315 16 11 16C12.6569 16 14 14.6569 14 13C14 11.3431 12.6569 10 11 10C10.2935 10 9.644 10.2442 9.13139 10.6529L5.92908 8.65143C5.97551 8.44169 6 8.22371 6 8C6 7.77629 5.97551 7.55831 5.92908 7.34857L9.13139 5.34713C9.644 5.75577 10.2935 6 11 6Z",
|
|
1416
|
+
fill: "#000000"
|
|
1417
|
+
})
|
|
1418
|
+
});
|
|
1419
|
+
//#endregion
|
|
1420
|
+
//#region src/assets/icons/sort.svg?react
|
|
1421
|
+
var SvgSort = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1422
|
+
width: 24,
|
|
1423
|
+
height: 24,
|
|
1424
|
+
viewBox: "0 0 24 24",
|
|
1425
|
+
fill: "none",
|
|
1426
|
+
stroke: "currentColor",
|
|
1427
|
+
strokeWidth: 2,
|
|
1428
|
+
strokeLinecap: "round",
|
|
1429
|
+
strokeLinejoin: "round",
|
|
1430
|
+
...props,
|
|
1431
|
+
children: [
|
|
1432
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m3,6 18,0" }),
|
|
1433
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m6,12 12,0" }),
|
|
1434
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m10,18 8,0" })
|
|
1435
|
+
]
|
|
1436
|
+
});
|
|
1437
|
+
//#endregion
|
|
1438
|
+
//#region src/assets/icons/stop.svg?react
|
|
1439
|
+
var SvgStop = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1440
|
+
width: "24px",
|
|
1441
|
+
height: "24px",
|
|
1442
|
+
viewBox: "0 0 24 24",
|
|
1443
|
+
fill: "none",
|
|
1444
|
+
stroke: "currentColor",
|
|
1445
|
+
strokeWidth: 2,
|
|
1446
|
+
strokeLinecap: "round",
|
|
1447
|
+
strokeLinejoin: "round",
|
|
1448
|
+
...props,
|
|
1449
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
1450
|
+
x: 3,
|
|
1451
|
+
y: 3,
|
|
1452
|
+
width: 18,
|
|
1453
|
+
height: 18,
|
|
1454
|
+
rx: 2,
|
|
1455
|
+
ry: 2
|
|
1456
|
+
})
|
|
1457
|
+
});
|
|
1458
|
+
//#endregion
|
|
1459
|
+
//#region src/assets/icons/times-circle.svg?react
|
|
1460
|
+
var SvgTimesCircle = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1461
|
+
width: "24px",
|
|
1462
|
+
height: "24px",
|
|
1463
|
+
viewBox: "0 0 24 24",
|
|
1464
|
+
fill: "none",
|
|
1465
|
+
stroke: "currentColor",
|
|
1466
|
+
strokeWidth: 2,
|
|
1467
|
+
strokeLinecap: "round",
|
|
1468
|
+
strokeLinejoin: "round",
|
|
1469
|
+
...props,
|
|
1470
|
+
children: [
|
|
1471
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1472
|
+
cx: 12,
|
|
1473
|
+
cy: 12,
|
|
1474
|
+
r: 10
|
|
1475
|
+
}),
|
|
1476
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m15,9 -6,6" }),
|
|
1477
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m9,9 6,6" })
|
|
1478
|
+
]
|
|
1479
|
+
});
|
|
1480
|
+
//#endregion
|
|
1481
|
+
//#region src/assets/icons/times.svg?react
|
|
1482
|
+
var SvgTimes = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1483
|
+
viewBox: "0 0 20 20",
|
|
1484
|
+
fill: "currentColor",
|
|
1485
|
+
...props,
|
|
1486
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1487
|
+
fillRule: "evenodd",
|
|
1488
|
+
d: "M10 8.586l4.95-4.95a1 1 0 111.414 1.414L11.414 10l4.95 4.95a1 1 0 11-1.414 1.414L10 11.414l-4.95 4.95a1 1 0 11-1.414-1.414L8.586 10 3.636 5.05a1 1 0 011.414-1.414L10 8.586z",
|
|
1489
|
+
clipRule: "evenodd"
|
|
1490
|
+
})
|
|
1491
|
+
});
|
|
1492
|
+
//#endregion
|
|
1493
|
+
//#region src/assets/icons/todo-list.svg?react
|
|
1494
|
+
var SvgTodoList = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1495
|
+
width: "24px",
|
|
1496
|
+
height: "24px",
|
|
1497
|
+
viewBox: "0 0 1024 1024",
|
|
1498
|
+
className: "icon",
|
|
1499
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1500
|
+
...props,
|
|
1501
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1502
|
+
d: "M379.733333 386.133333l-157.866666 155.733334-89.6-87.466667L85.333333 501.333333l136.533334 136.533334 204.8-204.8zM379.733333 108.8l-157.866666 155.733333-89.6-87.466666L85.333333 224l136.533334 136.533333L426.666667 155.733333zM379.733333 663.466667l-157.866666 155.733333-89.6-87.466667L85.333333 778.666667l136.533334 136.533333 204.8-204.8z",
|
|
1503
|
+
fill: "#3F51B5"
|
|
1504
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1505
|
+
d: "M512 469.333333h426.666667v85.333334H512zM512 192h426.666667v85.333333H512zM512 746.666667h426.666667v85.333333H512z",
|
|
1506
|
+
fill: "#90CAF9"
|
|
1507
|
+
})]
|
|
1508
|
+
});
|
|
1509
|
+
//#endregion
|
|
1510
|
+
//#region src/assets/icons/trash.svg?react
|
|
1511
|
+
var SvgTrash = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1512
|
+
width: 24,
|
|
1513
|
+
height: 24,
|
|
1514
|
+
viewBox: "0 0 24 24",
|
|
1515
|
+
fill: "none",
|
|
1516
|
+
stroke: "currentColor",
|
|
1517
|
+
strokeWidth: 2,
|
|
1518
|
+
strokeLinecap: "round",
|
|
1519
|
+
strokeLinejoin: "round",
|
|
1520
|
+
...props,
|
|
1521
|
+
children: [
|
|
1522
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("polyline", { points: "3,6 5,6 21,6" }),
|
|
1523
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m19,6v14a2,2 0 0,1 -2,2H7a2,2 0 0,1 -2,-2V6m3,0V4a2,2 0 0,1 2,-2h4a2,2 0 0,1 2,2v2" }),
|
|
1524
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
1525
|
+
x1: 10,
|
|
1526
|
+
y1: 11,
|
|
1527
|
+
x2: 10,
|
|
1528
|
+
y2: 17
|
|
1529
|
+
}),
|
|
1530
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
1531
|
+
x1: 14,
|
|
1532
|
+
y1: 11,
|
|
1533
|
+
x2: 14,
|
|
1534
|
+
y2: 17
|
|
1535
|
+
})
|
|
1536
|
+
]
|
|
1537
|
+
});
|
|
1538
|
+
//#endregion
|
|
1539
|
+
//#region src/assets/icons/upload.svg?react
|
|
1540
|
+
var SvgUpload = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1541
|
+
width: "24px",
|
|
1542
|
+
height: "24px",
|
|
1543
|
+
viewBox: "0 0 24 24",
|
|
1544
|
+
fill: "none",
|
|
1545
|
+
stroke: "currentColor",
|
|
1546
|
+
strokeWidth: 2,
|
|
1547
|
+
strokeLinecap: "round",
|
|
1548
|
+
strokeLinejoin: "round",
|
|
1549
|
+
...props,
|
|
1550
|
+
children: [
|
|
1551
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
1552
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("polyline", { points: "17,8 12,3 7,8" }),
|
|
1553
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
1554
|
+
x1: 12,
|
|
1555
|
+
y1: 3,
|
|
1556
|
+
x2: 12,
|
|
1557
|
+
y2: 15
|
|
1558
|
+
})
|
|
1559
|
+
]
|
|
1560
|
+
});
|
|
1561
|
+
//#endregion
|
|
1562
|
+
//#region src/assets/icons/user-group.svg?react
|
|
1563
|
+
var SvgUserGroup = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1564
|
+
width: "28px",
|
|
1565
|
+
height: "28px",
|
|
1566
|
+
viewBox: "0 0 28 28",
|
|
1567
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1568
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
1569
|
+
"xmlns:sketch": "http://www.bohemiancoding.com/sketch/ns",
|
|
1570
|
+
...props,
|
|
1571
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
1572
|
+
id: "out",
|
|
1573
|
+
stroke: "none",
|
|
1574
|
+
strokeWidth: 1,
|
|
1575
|
+
fill: "none",
|
|
1576
|
+
fillRule: "evenodd",
|
|
1577
|
+
"sketch:type": "MSPage",
|
|
1578
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
1579
|
+
d: "M18.6666667,12.8333333 C20.6033333,12.8333333 22.155,11.27 22.155,9.33333333 C22.155,7.39666667 20.6033333,5.83333333 18.6666667,5.83333333 C16.73,5.83333333 15.1666667,7.39666667 15.1666667,9.33333333 C15.1666667,11.27 16.73,12.8333333 18.6666667,12.8333333 L18.6666667,12.8333333 L18.6666667,12.8333333 Z M9.33333333,12.8333333 C11.27,12.8333333 12.8216667,11.27 12.8216667,9.33333333 C12.8216667,7.39666667 11.27,5.83333333 9.33333333,5.83333333 C7.39666667,5.83333333 5.83333333,7.39666667 5.83333333,9.33333333 C5.83333333,11.27 7.39666667,12.8333333 9.33333333,12.8333333 L9.33333333,12.8333333 L9.33333333,12.8333333 Z M9.33333333,15.1666667 C6.615,15.1666667 1.16666667,16.5316667 1.16666667,19.25 L1.16666667,22.1666667 L17.5,22.1666667 L17.5,19.25 C17.5,16.5316667 12.0516667,15.1666667 9.33333333,15.1666667 L9.33333333,15.1666667 L9.33333333,15.1666667 Z M18.6666667,15.1666667 C18.3283333,15.1666667 17.9433333,15.19 17.535,15.225 C18.8883333,16.205 19.8333333,17.5233333 19.8333333,19.25 L19.8333333,22.1666667 L26.8333333,22.1666667 L26.8333333,19.25 C26.8333333,16.5316667 21.385,15.1666667 18.6666667,15.1666667 L18.6666667,15.1666667 L18.6666667,15.1666667 Z",
|
|
1580
|
+
id: "path",
|
|
1581
|
+
fill: "currentColor",
|
|
1582
|
+
"sketch:type": "MSShapeGroup"
|
|
1583
|
+
})
|
|
1584
|
+
})
|
|
1585
|
+
});
|
|
1586
|
+
//#endregion
|
|
1587
|
+
//#region src/assets/icons/user.svg?react
|
|
1588
|
+
var SvgUser = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1589
|
+
width: 24,
|
|
1590
|
+
height: 24,
|
|
1591
|
+
viewBox: "0 0 24 24",
|
|
1592
|
+
fill: "none",
|
|
1593
|
+
stroke: "currentColor",
|
|
1594
|
+
strokeWidth: 2,
|
|
1595
|
+
strokeLinecap: "round",
|
|
1596
|
+
strokeLinejoin: "round",
|
|
1597
|
+
...props,
|
|
1598
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1599
|
+
cx: 12,
|
|
1600
|
+
cy: 7,
|
|
1601
|
+
r: 4
|
|
1602
|
+
})]
|
|
1603
|
+
});
|
|
1604
|
+
//#endregion
|
|
1605
|
+
//#region src/assets/icons/warning.svg?react
|
|
1606
|
+
var SvgWarning = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
1607
|
+
fill: "#000000",
|
|
1608
|
+
width: "24px",
|
|
1609
|
+
height: "24px",
|
|
1610
|
+
viewBox: "0 0 32 32",
|
|
1611
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1612
|
+
...props,
|
|
1613
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.555 25.219l-12.519-21.436c-1.044-1.044-2.738-1.044-3.782 0l-12.52 21.436c-1.044 1.043-1.044 2.736 0 3.781h28.82c1.046-1.045 1.046-2.738 0.001-3.781zM14.992 11.478c0-0.829 0.672-1.5 1.5-1.5s1.5 0.671 1.5 1.5v7c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5v-7zM16.501 24.986c-0.828 0-1.5-0.67-1.5-1.5 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.83-0.672 1.5-1.5 1.5z" })
|
|
1614
|
+
});
|
|
1615
|
+
//#endregion
|
|
1616
|
+
//#region src/assets/icons/web.svg?react
|
|
1617
|
+
var SvgWeb = (props) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
1618
|
+
width: 24,
|
|
1619
|
+
height: 24,
|
|
1620
|
+
viewBox: "0 0 24 24",
|
|
1621
|
+
fill: "none",
|
|
1622
|
+
stroke: "currentColor",
|
|
1623
|
+
strokeWidth: 2,
|
|
1624
|
+
strokeLinecap: "round",
|
|
1625
|
+
strokeLinejoin: "round",
|
|
1626
|
+
...props,
|
|
1627
|
+
children: [
|
|
1628
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
|
|
1629
|
+
cx: 12,
|
|
1630
|
+
cy: 12,
|
|
1631
|
+
r: 10
|
|
1632
|
+
}),
|
|
1633
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("line", {
|
|
1634
|
+
x1: 2,
|
|
1635
|
+
y1: 12,
|
|
1636
|
+
x2: 22,
|
|
1637
|
+
y2: 12
|
|
1638
|
+
}),
|
|
1639
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m12,2a15.3,15.3 0 0,1 4,10 15.3,15.3 0 0,1 -4,10 15.3,15.3 0 0,1 -4,-10 15.3,15.3 0 0,1 4,-10z" })
|
|
1640
|
+
]
|
|
1641
|
+
});
|
|
1642
|
+
//#endregion
|
|
1643
|
+
Object.defineProperty(exports, "SvgAngleLeft", {
|
|
1644
|
+
enumerable: true,
|
|
1645
|
+
get: function() {
|
|
1646
|
+
return SvgAngleLeft;
|
|
1647
|
+
}
|
|
1648
|
+
});
|
|
1649
|
+
Object.defineProperty(exports, "SvgAngleRight", {
|
|
1650
|
+
enumerable: true,
|
|
1651
|
+
get: function() {
|
|
1652
|
+
return SvgAngleRight;
|
|
1653
|
+
}
|
|
1654
|
+
});
|
|
1655
|
+
Object.defineProperty(exports, "SvgAnnouncement", {
|
|
1656
|
+
enumerable: true,
|
|
1657
|
+
get: function() {
|
|
1658
|
+
return SvgAnnouncement;
|
|
1659
|
+
}
|
|
1660
|
+
});
|
|
1661
|
+
Object.defineProperty(exports, "SvgArchived", {
|
|
1662
|
+
enumerable: true,
|
|
1663
|
+
get: function() {
|
|
1664
|
+
return SvgArchived;
|
|
1665
|
+
}
|
|
1666
|
+
});
|
|
1667
|
+
Object.defineProperty(exports, "SvgArrowDown", {
|
|
1668
|
+
enumerable: true,
|
|
1669
|
+
get: function() {
|
|
1670
|
+
return SvgArrowDown;
|
|
1671
|
+
}
|
|
1672
|
+
});
|
|
1673
|
+
Object.defineProperty(exports, "SvgArrowUp", {
|
|
1674
|
+
enumerable: true,
|
|
1675
|
+
get: function() {
|
|
1676
|
+
return SvgArrowUp;
|
|
1677
|
+
}
|
|
1678
|
+
});
|
|
1679
|
+
Object.defineProperty(exports, "SvgBackArrow", {
|
|
1680
|
+
enumerable: true,
|
|
1681
|
+
get: function() {
|
|
1682
|
+
return SvgBackArrow;
|
|
1683
|
+
}
|
|
1684
|
+
});
|
|
1685
|
+
Object.defineProperty(exports, "SvgBarChart", {
|
|
1686
|
+
enumerable: true,
|
|
1687
|
+
get: function() {
|
|
1688
|
+
return SvgBarChart;
|
|
1689
|
+
}
|
|
1690
|
+
});
|
|
1691
|
+
Object.defineProperty(exports, "SvgBranch", {
|
|
1692
|
+
enumerable: true,
|
|
1693
|
+
get: function() {
|
|
1694
|
+
return SvgBranch;
|
|
1695
|
+
}
|
|
1696
|
+
});
|
|
1697
|
+
Object.defineProperty(exports, "SvgBrightSun", {
|
|
1698
|
+
enumerable: true,
|
|
1699
|
+
get: function() {
|
|
1700
|
+
return SvgBrightSun;
|
|
1701
|
+
}
|
|
1702
|
+
});
|
|
1703
|
+
Object.defineProperty(exports, "SvgBrowserCookie", {
|
|
1704
|
+
enumerable: true,
|
|
1705
|
+
get: function() {
|
|
1706
|
+
return SvgBrowserCookie;
|
|
1707
|
+
}
|
|
1708
|
+
});
|
|
1709
|
+
Object.defineProperty(exports, "SvgBuilding", {
|
|
1710
|
+
enumerable: true,
|
|
1711
|
+
get: function() {
|
|
1712
|
+
return SvgBuilding;
|
|
1713
|
+
}
|
|
1714
|
+
});
|
|
1715
|
+
Object.defineProperty(exports, "SvgCalendar", {
|
|
1716
|
+
enumerable: true,
|
|
1717
|
+
get: function() {
|
|
1718
|
+
return SvgCalendar;
|
|
1719
|
+
}
|
|
1720
|
+
});
|
|
1721
|
+
Object.defineProperty(exports, "SvgCalendarLine", {
|
|
1722
|
+
enumerable: true,
|
|
1723
|
+
get: function() {
|
|
1724
|
+
return SvgCalendarLine;
|
|
1725
|
+
}
|
|
1726
|
+
});
|
|
1727
|
+
Object.defineProperty(exports, "SvgCheck", {
|
|
1728
|
+
enumerable: true,
|
|
1729
|
+
get: function() {
|
|
1730
|
+
return SvgCheck;
|
|
1731
|
+
}
|
|
1732
|
+
});
|
|
1733
|
+
Object.defineProperty(exports, "SvgCheckCircle", {
|
|
1734
|
+
enumerable: true,
|
|
1735
|
+
get: function() {
|
|
1736
|
+
return SvgCheckCircle;
|
|
1737
|
+
}
|
|
1738
|
+
});
|
|
1739
|
+
Object.defineProperty(exports, "SvgChevronDown", {
|
|
1740
|
+
enumerable: true,
|
|
1741
|
+
get: function() {
|
|
1742
|
+
return SvgChevronDown;
|
|
1743
|
+
}
|
|
1744
|
+
});
|
|
1745
|
+
Object.defineProperty(exports, "SvgChevronLeft", {
|
|
1746
|
+
enumerable: true,
|
|
1747
|
+
get: function() {
|
|
1748
|
+
return SvgChevronLeft;
|
|
1749
|
+
}
|
|
1750
|
+
});
|
|
1751
|
+
Object.defineProperty(exports, "SvgChevronRight", {
|
|
1752
|
+
enumerable: true,
|
|
1753
|
+
get: function() {
|
|
1754
|
+
return SvgChevronRight;
|
|
1755
|
+
}
|
|
1756
|
+
});
|
|
1757
|
+
Object.defineProperty(exports, "SvgChevronUp", {
|
|
1758
|
+
enumerable: true,
|
|
1759
|
+
get: function() {
|
|
1760
|
+
return SvgChevronUp;
|
|
1761
|
+
}
|
|
1762
|
+
});
|
|
1763
|
+
Object.defineProperty(exports, "SvgClock", {
|
|
1764
|
+
enumerable: true,
|
|
1765
|
+
get: function() {
|
|
1766
|
+
return SvgClock;
|
|
1767
|
+
}
|
|
1768
|
+
});
|
|
1769
|
+
Object.defineProperty(exports, "SvgCopy", {
|
|
1770
|
+
enumerable: true,
|
|
1771
|
+
get: function() {
|
|
1772
|
+
return SvgCopy;
|
|
1773
|
+
}
|
|
1774
|
+
});
|
|
1775
|
+
Object.defineProperty(exports, "SvgDashboard", {
|
|
1776
|
+
enumerable: true,
|
|
1777
|
+
get: function() {
|
|
1778
|
+
return SvgDashboard;
|
|
1779
|
+
}
|
|
1780
|
+
});
|
|
1781
|
+
Object.defineProperty(exports, "SvgDownload", {
|
|
1782
|
+
enumerable: true,
|
|
1783
|
+
get: function() {
|
|
1784
|
+
return SvgDownload;
|
|
1785
|
+
}
|
|
1786
|
+
});
|
|
1787
|
+
Object.defineProperty(exports, "SvgEdit", {
|
|
1788
|
+
enumerable: true,
|
|
1789
|
+
get: function() {
|
|
1790
|
+
return SvgEdit;
|
|
1791
|
+
}
|
|
1792
|
+
});
|
|
1793
|
+
Object.defineProperty(exports, "SvgError", {
|
|
1794
|
+
enumerable: true,
|
|
1795
|
+
get: function() {
|
|
1796
|
+
return SvgError;
|
|
1797
|
+
}
|
|
1798
|
+
});
|
|
1799
|
+
Object.defineProperty(exports, "SvgExternalLink", {
|
|
1800
|
+
enumerable: true,
|
|
1801
|
+
get: function() {
|
|
1802
|
+
return SvgExternalLink;
|
|
1803
|
+
}
|
|
1804
|
+
});
|
|
1805
|
+
Object.defineProperty(exports, "SvgEye", {
|
|
1806
|
+
enumerable: true,
|
|
1807
|
+
get: function() {
|
|
1808
|
+
return SvgEye;
|
|
1809
|
+
}
|
|
1810
|
+
});
|
|
1811
|
+
Object.defineProperty(exports, "SvgEyeSlash", {
|
|
1812
|
+
enumerable: true,
|
|
1813
|
+
get: function() {
|
|
1814
|
+
return SvgEyeSlash;
|
|
1815
|
+
}
|
|
1816
|
+
});
|
|
1817
|
+
Object.defineProperty(exports, "SvgFilter", {
|
|
1818
|
+
enumerable: true,
|
|
1819
|
+
get: function() {
|
|
1820
|
+
return SvgFilter;
|
|
1821
|
+
}
|
|
1822
|
+
});
|
|
1823
|
+
Object.defineProperty(exports, "SvgHelp", {
|
|
1824
|
+
enumerable: true,
|
|
1825
|
+
get: function() {
|
|
1826
|
+
return SvgHelp;
|
|
1827
|
+
}
|
|
1828
|
+
});
|
|
1829
|
+
Object.defineProperty(exports, "SvgInfo", {
|
|
1830
|
+
enumerable: true,
|
|
1831
|
+
get: function() {
|
|
1832
|
+
return SvgInfo;
|
|
1833
|
+
}
|
|
1834
|
+
});
|
|
1835
|
+
Object.defineProperty(exports, "SvgLineChartUp", {
|
|
1836
|
+
enumerable: true,
|
|
1837
|
+
get: function() {
|
|
1838
|
+
return SvgLineChartUp;
|
|
1839
|
+
}
|
|
1840
|
+
});
|
|
1841
|
+
Object.defineProperty(exports, "SvgLoading", {
|
|
1842
|
+
enumerable: true,
|
|
1843
|
+
get: function() {
|
|
1844
|
+
return SvgLoading;
|
|
1845
|
+
}
|
|
1846
|
+
});
|
|
1847
|
+
Object.defineProperty(exports, "SvgLocation", {
|
|
1848
|
+
enumerable: true,
|
|
1849
|
+
get: function() {
|
|
1850
|
+
return SvgLocation;
|
|
1851
|
+
}
|
|
1852
|
+
});
|
|
1853
|
+
Object.defineProperty(exports, "SvgLogout", {
|
|
1854
|
+
enumerable: true,
|
|
1855
|
+
get: function() {
|
|
1856
|
+
return SvgLogout;
|
|
1857
|
+
}
|
|
1858
|
+
});
|
|
1859
|
+
Object.defineProperty(exports, "SvgMenu", {
|
|
1860
|
+
enumerable: true,
|
|
1861
|
+
get: function() {
|
|
1862
|
+
return SvgMenu;
|
|
1863
|
+
}
|
|
1864
|
+
});
|
|
1865
|
+
Object.defineProperty(exports, "SvgMinus", {
|
|
1866
|
+
enumerable: true,
|
|
1867
|
+
get: function() {
|
|
1868
|
+
return SvgMinus;
|
|
1869
|
+
}
|
|
1870
|
+
});
|
|
1871
|
+
Object.defineProperty(exports, "SvgNightLight", {
|
|
1872
|
+
enumerable: true,
|
|
1873
|
+
get: function() {
|
|
1874
|
+
return SvgNightLight;
|
|
1875
|
+
}
|
|
1876
|
+
});
|
|
1877
|
+
Object.defineProperty(exports, "SvgOAuth", {
|
|
1878
|
+
enumerable: true,
|
|
1879
|
+
get: function() {
|
|
1880
|
+
return SvgOAuth;
|
|
1881
|
+
}
|
|
1882
|
+
});
|
|
1883
|
+
Object.defineProperty(exports, "SvgPassword", {
|
|
1884
|
+
enumerable: true,
|
|
1885
|
+
get: function() {
|
|
1886
|
+
return SvgPassword;
|
|
1887
|
+
}
|
|
1888
|
+
});
|
|
1889
|
+
Object.defineProperty(exports, "SvgPause", {
|
|
1890
|
+
enumerable: true,
|
|
1891
|
+
get: function() {
|
|
1892
|
+
return SvgPause;
|
|
1893
|
+
}
|
|
1894
|
+
});
|
|
1895
|
+
Object.defineProperty(exports, "SvgPlay", {
|
|
1896
|
+
enumerable: true,
|
|
1897
|
+
get: function() {
|
|
1898
|
+
return SvgPlay;
|
|
1899
|
+
}
|
|
1900
|
+
});
|
|
1901
|
+
Object.defineProperty(exports, "SvgPlus", {
|
|
1902
|
+
enumerable: true,
|
|
1903
|
+
get: function() {
|
|
1904
|
+
return SvgPlus;
|
|
1905
|
+
}
|
|
1906
|
+
});
|
|
1907
|
+
Object.defineProperty(exports, "SvgPlus2", {
|
|
1908
|
+
enumerable: true,
|
|
1909
|
+
get: function() {
|
|
1910
|
+
return SvgPlus2;
|
|
1911
|
+
}
|
|
1912
|
+
});
|
|
1913
|
+
Object.defineProperty(exports, "SvgPlusBox", {
|
|
1914
|
+
enumerable: true,
|
|
1915
|
+
get: function() {
|
|
1916
|
+
return SvgPlusBox;
|
|
1917
|
+
}
|
|
1918
|
+
});
|
|
1919
|
+
Object.defineProperty(exports, "SvgPlusSolid", {
|
|
1920
|
+
enumerable: true,
|
|
1921
|
+
get: function() {
|
|
1922
|
+
return SvgPlusSolid;
|
|
1923
|
+
}
|
|
1924
|
+
});
|
|
1925
|
+
Object.defineProperty(exports, "SvgPrint", {
|
|
1926
|
+
enumerable: true,
|
|
1927
|
+
get: function() {
|
|
1928
|
+
return SvgPrint;
|
|
1929
|
+
}
|
|
1930
|
+
});
|
|
1931
|
+
Object.defineProperty(exports, "SvgQuestionCircle", {
|
|
1932
|
+
enumerable: true,
|
|
1933
|
+
get: function() {
|
|
1934
|
+
return SvgQuestionCircle;
|
|
1935
|
+
}
|
|
1936
|
+
});
|
|
1937
|
+
Object.defineProperty(exports, "SvgQueue", {
|
|
1938
|
+
enumerable: true,
|
|
1939
|
+
get: function() {
|
|
1940
|
+
return SvgQueue;
|
|
1941
|
+
}
|
|
1942
|
+
});
|
|
1943
|
+
Object.defineProperty(exports, "SvgRedFlag", {
|
|
1944
|
+
enumerable: true,
|
|
1945
|
+
get: function() {
|
|
1946
|
+
return SvgRedFlag;
|
|
1947
|
+
}
|
|
1948
|
+
});
|
|
1949
|
+
Object.defineProperty(exports, "SvgRefresh", {
|
|
1950
|
+
enumerable: true,
|
|
1951
|
+
get: function() {
|
|
1952
|
+
return SvgRefresh;
|
|
1953
|
+
}
|
|
1954
|
+
});
|
|
1955
|
+
Object.defineProperty(exports, "SvgSearch", {
|
|
1956
|
+
enumerable: true,
|
|
1957
|
+
get: function() {
|
|
1958
|
+
return SvgSearch;
|
|
1959
|
+
}
|
|
1960
|
+
});
|
|
1961
|
+
Object.defineProperty(exports, "SvgSettings", {
|
|
1962
|
+
enumerable: true,
|
|
1963
|
+
get: function() {
|
|
1964
|
+
return SvgSettings;
|
|
1965
|
+
}
|
|
1966
|
+
});
|
|
1967
|
+
Object.defineProperty(exports, "SvgShare", {
|
|
1968
|
+
enumerable: true,
|
|
1969
|
+
get: function() {
|
|
1970
|
+
return SvgShare;
|
|
1971
|
+
}
|
|
1972
|
+
});
|
|
1973
|
+
Object.defineProperty(exports, "SvgSort", {
|
|
1974
|
+
enumerable: true,
|
|
1975
|
+
get: function() {
|
|
1976
|
+
return SvgSort;
|
|
1977
|
+
}
|
|
1978
|
+
});
|
|
1979
|
+
Object.defineProperty(exports, "SvgStop", {
|
|
1980
|
+
enumerable: true,
|
|
1981
|
+
get: function() {
|
|
1982
|
+
return SvgStop;
|
|
1983
|
+
}
|
|
1984
|
+
});
|
|
1985
|
+
Object.defineProperty(exports, "SvgTimes", {
|
|
1986
|
+
enumerable: true,
|
|
1987
|
+
get: function() {
|
|
1988
|
+
return SvgTimes;
|
|
1989
|
+
}
|
|
1990
|
+
});
|
|
1991
|
+
Object.defineProperty(exports, "SvgTimesCircle", {
|
|
1992
|
+
enumerable: true,
|
|
1993
|
+
get: function() {
|
|
1994
|
+
return SvgTimesCircle;
|
|
1995
|
+
}
|
|
1996
|
+
});
|
|
1997
|
+
Object.defineProperty(exports, "SvgTodoList", {
|
|
1998
|
+
enumerable: true,
|
|
1999
|
+
get: function() {
|
|
2000
|
+
return SvgTodoList;
|
|
2001
|
+
}
|
|
2002
|
+
});
|
|
2003
|
+
Object.defineProperty(exports, "SvgTrash", {
|
|
2004
|
+
enumerable: true,
|
|
2005
|
+
get: function() {
|
|
2006
|
+
return SvgTrash;
|
|
2007
|
+
}
|
|
2008
|
+
});
|
|
2009
|
+
Object.defineProperty(exports, "SvgUpload", {
|
|
2010
|
+
enumerable: true,
|
|
2011
|
+
get: function() {
|
|
2012
|
+
return SvgUpload;
|
|
2013
|
+
}
|
|
2014
|
+
});
|
|
2015
|
+
Object.defineProperty(exports, "SvgUser", {
|
|
2016
|
+
enumerable: true,
|
|
2017
|
+
get: function() {
|
|
2018
|
+
return SvgUser;
|
|
2019
|
+
}
|
|
2020
|
+
});
|
|
2021
|
+
Object.defineProperty(exports, "SvgUserGroup", {
|
|
2022
|
+
enumerable: true,
|
|
2023
|
+
get: function() {
|
|
2024
|
+
return SvgUserGroup;
|
|
2025
|
+
}
|
|
2026
|
+
});
|
|
2027
|
+
Object.defineProperty(exports, "SvgWarning", {
|
|
2028
|
+
enumerable: true,
|
|
2029
|
+
get: function() {
|
|
2030
|
+
return SvgWarning;
|
|
2031
|
+
}
|
|
2032
|
+
});
|
|
2033
|
+
Object.defineProperty(exports, "SvgWeb", {
|
|
2034
|
+
enumerable: true,
|
|
2035
|
+
get: function() {
|
|
2036
|
+
return SvgWeb;
|
|
2037
|
+
}
|
|
2038
|
+
});
|