build ok,
This commit is contained in:
@@ -1,17 +1,13 @@
|
||||
import Box from '@mui/material/Box';
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import type { ChartOptions } from 'src/components/chart';
|
||||
|
||||
import Card from '@mui/material/Card';
|
||||
import CardHeader from '@mui/material/CardHeader';
|
||||
import { useTheme } from '@mui/material/styles';
|
||||
import { sumBy } from 'es-toolkit';
|
||||
import { varAlpha } from 'minimal-shared/utils';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import Card from '@mui/material/Card';
|
||||
import { useTheme } from '@mui/material/styles';
|
||||
import CardHeader from '@mui/material/CardHeader';
|
||||
|
||||
import { fNumber } from 'src/utils/format-number';
|
||||
|
||||
import type { ChartOptions } from 'src/components/chart';
|
||||
import { Chart, useChart } from 'src/components/chart';
|
||||
import { fNumber } from 'src/utils/format-number';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
|
@@ -1,12 +1,9 @@
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
|
||||
import { varAlpha } from 'minimal-shared/utils';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import Card from '@mui/material/Card';
|
||||
import CardHeader from '@mui/material/CardHeader';
|
||||
import LinearProgress, { linearProgressClasses } from '@mui/material/LinearProgress';
|
||||
|
||||
import { varAlpha } from 'minimal-shared/utils';
|
||||
import { fShortenNumber } from 'src/utils/format-number';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
@@ -1,16 +1,13 @@
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import type { ChartOptions } from 'src/components/chart';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import Card from '@mui/material/Card';
|
||||
import Stack from '@mui/material/Stack';
|
||||
import Divider from '@mui/material/Divider';
|
||||
import Stack from '@mui/material/Stack';
|
||||
import { useTheme } from '@mui/material/styles';
|
||||
import useMediaQuery from '@mui/material/useMediaQuery';
|
||||
|
||||
import { fNumber } from 'src/utils/format-number';
|
||||
|
||||
import type { ChartOptions } from 'src/components/chart';
|
||||
import { Chart, useChart } from 'src/components/chart';
|
||||
import { fNumber } from 'src/utils/format-number';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
|
@@ -1,24 +1,20 @@
|
||||
import type { BoxProps } from '@mui/material/Box';
|
||||
import type { IDateValue } from 'src/types/common';
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
|
||||
import AutoHeight from 'embla-carousel-auto-height';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import Chip from '@mui/material/Chip';
|
||||
import Card from '@mui/material/Card';
|
||||
import Rating from '@mui/material/Rating';
|
||||
import Button from '@mui/material/Button';
|
||||
import Avatar from '@mui/material/Avatar';
|
||||
import Divider from '@mui/material/Divider';
|
||||
import type { BoxProps } from '@mui/material/Box';
|
||||
import Box from '@mui/material/Box';
|
||||
import Button from '@mui/material/Button';
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import Card from '@mui/material/Card';
|
||||
import CardHeader from '@mui/material/CardHeader';
|
||||
import Typography from '@mui/material/Typography';
|
||||
import Chip from '@mui/material/Chip';
|
||||
import Divider from '@mui/material/Divider';
|
||||
import ListItemText from '@mui/material/ListItemText';
|
||||
|
||||
import Rating from '@mui/material/Rating';
|
||||
import Typography from '@mui/material/Typography';
|
||||
import AutoHeight from 'embla-carousel-auto-height';
|
||||
import { Carousel, CarouselArrowBasicButtons, useCarousel } from 'src/components/carousel';
|
||||
import type { IDateValue } from 'src/types/common';
|
||||
import { fDateTime } from 'src/utils/format-time';
|
||||
|
||||
import { Carousel, useCarousel, CarouselArrowBasicButtons } from 'src/components/carousel';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
type Props = CardProps & {
|
||||
|
@@ -1,32 +1,28 @@
|
||||
import type { IDateValue } from 'src/types/common';
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import type { TableHeadCellProps } from 'src/components/table';
|
||||
|
||||
import { usePopover } from 'minimal-shared/hooks';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import Card from '@mui/material/Card';
|
||||
import Table from '@mui/material/Table';
|
||||
import Button from '@mui/material/Button';
|
||||
import Avatar from '@mui/material/Avatar';
|
||||
import Divider from '@mui/material/Divider';
|
||||
import MenuList from '@mui/material/MenuList';
|
||||
import MenuItem from '@mui/material/MenuItem';
|
||||
import TableRow from '@mui/material/TableRow';
|
||||
import TableCell from '@mui/material/TableCell';
|
||||
import TableBody from '@mui/material/TableBody';
|
||||
import IconButton from '@mui/material/IconButton';
|
||||
import Box from '@mui/material/Box';
|
||||
import Button from '@mui/material/Button';
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import Card from '@mui/material/Card';
|
||||
import CardHeader from '@mui/material/CardHeader';
|
||||
import { useColorScheme } from '@mui/material/styles';
|
||||
import Divider from '@mui/material/Divider';
|
||||
import IconButton from '@mui/material/IconButton';
|
||||
import ListItemText from '@mui/material/ListItemText';
|
||||
|
||||
import { fDate, fTime } from 'src/utils/format-time';
|
||||
|
||||
import { Label } from 'src/components/label';
|
||||
import { Iconify } from 'src/components/iconify';
|
||||
import { Scrollbar } from 'src/components/scrollbar';
|
||||
import { TableHeadCustom } from 'src/components/table';
|
||||
import MenuItem from '@mui/material/MenuItem';
|
||||
import MenuList from '@mui/material/MenuList';
|
||||
import { useColorScheme } from '@mui/material/styles';
|
||||
import Table from '@mui/material/Table';
|
||||
import TableBody from '@mui/material/TableBody';
|
||||
import TableCell from '@mui/material/TableCell';
|
||||
import TableRow from '@mui/material/TableRow';
|
||||
import { usePopover } from 'minimal-shared/hooks';
|
||||
import { CustomPopover } from 'src/components/custom-popover';
|
||||
import { Iconify } from 'src/components/iconify';
|
||||
import { Label } from 'src/components/label';
|
||||
import { Scrollbar } from 'src/components/scrollbar';
|
||||
import type { TableHeadCellProps } from 'src/components/table';
|
||||
import { TableHeadCustom } from 'src/components/table';
|
||||
import type { IDateValue } from 'src/types/common';
|
||||
import { fDate, fTime } from 'src/utils/format-time';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
|
@@ -1,17 +1,14 @@
|
||||
import type { BoxProps } from '@mui/material/Box';
|
||||
import type { IDateValue } from 'src/types/common';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import Avatar from '@mui/material/Avatar';
|
||||
import type { BoxProps } from '@mui/material/Box';
|
||||
import Box from '@mui/material/Box';
|
||||
import CardHeader from '@mui/material/CardHeader';
|
||||
import ListItemText from '@mui/material/ListItemText';
|
||||
|
||||
import { fDateTime } from 'src/utils/format-time';
|
||||
|
||||
import { Label } from 'src/components/label';
|
||||
import { Image } from 'src/components/image';
|
||||
import { Carousel, CarouselArrowBasicButtons, useCarousel } from 'src/components/carousel';
|
||||
import { Iconify } from 'src/components/iconify';
|
||||
import { Carousel, useCarousel, CarouselArrowBasicButtons } from 'src/components/carousel';
|
||||
import { Image } from 'src/components/image';
|
||||
import { Label } from 'src/components/label';
|
||||
import type { IDateValue } from 'src/types/common';
|
||||
import { fDateTime } from 'src/utils/format-time';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
|
@@ -1,16 +1,12 @@
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import type { ChartOptions } from 'src/components/chart';
|
||||
|
||||
import { useState, useCallback } from 'react';
|
||||
|
||||
import Card from '@mui/material/Card';
|
||||
import CardHeader from '@mui/material/CardHeader';
|
||||
import { useTheme, alpha as hexAlpha } from '@mui/material/styles';
|
||||
|
||||
import { alpha as hexAlpha, useTheme } from '@mui/material/styles';
|
||||
import { useCallback, useState } from 'react';
|
||||
import type { ChartOptions } from 'src/components/chart';
|
||||
import { Chart, ChartLegends, ChartSelect, useChart } from 'src/components/chart';
|
||||
import { fShortenNumber } from 'src/utils/format-number';
|
||||
|
||||
import { Chart, useChart, ChartSelect, ChartLegends } from 'src/components/chart';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
type Props = CardProps & {
|
||||
|
@@ -1,17 +1,13 @@
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import type { ChartOptions } from 'src/components/chart';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import Card from '@mui/material/Card';
|
||||
import { useTheme, alpha as hexAlpha } from '@mui/material/styles';
|
||||
|
||||
import { fPercent, fCurrency } from 'src/utils/format-number';
|
||||
|
||||
import { CONFIG } from 'src/global-config';
|
||||
|
||||
import { alpha as hexAlpha, useTheme } from '@mui/material/styles';
|
||||
import type { ChartOptions } from 'src/components/chart';
|
||||
import { Chart, useChart } from 'src/components/chart';
|
||||
import { Iconify } from 'src/components/iconify';
|
||||
import { SvgColor } from 'src/components/svg-color';
|
||||
import { Chart, useChart } from 'src/components/chart';
|
||||
import { CONFIG } from 'src/global-config';
|
||||
import { fCurrency, fPercent } from 'src/utils/format-number';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
|
@@ -1,11 +1,8 @@
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import type { CardProps } from '@mui/material/Card';
|
||||
import Card from '@mui/material/Card';
|
||||
|
||||
import { fPercent, fShortenNumber } from 'src/utils/format-number';
|
||||
|
||||
import { Iconify } from 'src/components/iconify';
|
||||
import { fPercent, fShortenNumber } from 'src/utils/format-number';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
|
@@ -1,23 +1,21 @@
|
||||
import Box from '@mui/material/Box';
|
||||
import Grid from '@mui/material/Grid';
|
||||
|
||||
import { DashboardContent } from 'src/layouts/dashboard';
|
||||
import { _bookings, _bookingNew, _bookingReview, _bookingsOverview } from 'src/_mock';
|
||||
import { _bookingNew, _bookingReview, _bookings, _bookingsOverview } from 'src/_mock';
|
||||
import {
|
||||
BookingIllustration,
|
||||
CheckInIllustration,
|
||||
CheckoutIllustration,
|
||||
} from 'src/assets/illustrations';
|
||||
|
||||
import { BookingBooked } from '../booking-booked';
|
||||
import { BookingNewest } from '../booking-newest';
|
||||
import { BookingDetails } from '../booking-details';
|
||||
import { DashboardContent } from 'src/layouts/dashboard';
|
||||
import { BookingAvailable } from '../booking-available';
|
||||
import { BookingBooked } from '../booking-booked';
|
||||
import { BookingCheckInWidgets } from '../booking-check-in-widgets';
|
||||
import { BookingCustomerReviews } from '../booking-customer-reviews';
|
||||
import { BookingDetails } from '../booking-details';
|
||||
import { BookingNewest } from '../booking-newest';
|
||||
import { BookingStatistics } from '../booking-statistics';
|
||||
import { BookingTotalIncomes } from '../booking-total-incomes';
|
||||
import { BookingWidgetSummary } from '../booking-widget-summary';
|
||||
import { BookingCheckInWidgets } from '../booking-check-in-widgets';
|
||||
import { BookingCustomerReviews } from '../booking-customer-reviews';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
|
Reference in New Issue
Block a user