update 7 files and delete 20 files

master
mahdi 3 years ago
parent 508b2a4739
commit aa20b8e617
  1. 0
      public/images/ReactTable4arrow-icon.svg
  2. 0
      public/images/ReactTable4black-arrow-left.svg
  3. 0
      public/images/ReactTable4blue-arrow.svg
  4. 0
      public/images/ReactTable4double-left-arrow.svg
  5. 0
      public/images/ReactTable4edit.svg
  6. 0
      public/images/ReactTable4filter.svg
  7. 0
      public/images/ReactTable4gray-arrow-left.svg
  8. 0
      public/images/ReactTable4left-arrow.svg
  9. 0
      public/images/ReactTable4map.svg
  10. 0
      public/images/ReactTable4more2.svg
  11. 0
      public/images/ReactTable4plus.svg
  12. 0
      public/images/ReactTable4right-arrow.svg
  13. 0
      public/images/ReactTable4search-normal.svg
  14. 0
      public/images/ReactTable4settings.svg
  15. 0
      public/images/ReactTable4zarbedar-icon.svg
  16. 1
      src/components/Digikala/Offer.js
  17. 12
      src/components/ProductImage/index.css
  18. 9
      src/components/ProductImage/index.css.map
  19. 1
      src/components/ProductImage/index.js
  20. 0
      src/components/ProductImage/index.scss
  21. 1
      src/components/SemiDonut/index.js
  22. 0
      src/components/SemiDonut/index.scss
  23. 2
      src/components/Tabels/ReactTable4/BasicTable.js
  24. 5
      src/components/Tabels/ReactTable4/Buttons.js
  25. 0
      src/components/Tabels/ReactTable4/index.scss
  26. 2
      src/components/Tabels/ReactTable5/index.js
  27. 2
      src/components/Tabels/index.js

Before

Width:  |  Height:  |  Size: 489 B

After

Width:  |  Height:  |  Size: 489 B

Before

Width:  |  Height:  |  Size: 472 B

After

Width:  |  Height:  |  Size: 472 B

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 725 B

After

Width:  |  Height:  |  Size: 725 B

Before

Width:  |  Height:  |  Size: 570 B

After

Width:  |  Height:  |  Size: 570 B

Before

Width:  |  Height:  |  Size: 470 B

After

Width:  |  Height:  |  Size: 470 B

Before

Width:  |  Height:  |  Size: 622 B

After

Width:  |  Height:  |  Size: 622 B

Before

Width:  |  Height:  |  Size: 378 KiB

After

Width:  |  Height:  |  Size: 378 KiB

Before

Width:  |  Height:  |  Size: 749 B

After

Width:  |  Height:  |  Size: 749 B

Before

Width:  |  Height:  |  Size: 543 B

After

Width:  |  Height:  |  Size: 543 B

Before

Width:  |  Height:  |  Size: 552 B

After

Width:  |  Height:  |  Size: 552 B

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

Before

Width:  |  Height:  |  Size: 545 B

After

Width:  |  Height:  |  Size: 545 B

@ -5,7 +5,6 @@ import "swiper/css";
import "swiper/css/navigation";
import "swiper/css/pagination";
import "./index.scss";
import leftArrow from "./white-left-arrow.svg";
import General from "./General.png";

@ -1,12 +0,0 @@
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
}
/*# sourceMappingURL=index.css.map */

@ -1,9 +0,0 @@
{
"version": 3,
"mappings": "AAAA,AAAA,aAAa,AAAA,mBAAmB,CAAC;EAC/B,OAAO,EAAE,IAAI;CACd;;AAED,6CAA6C;AAC7C,AAAA,aAAa,CAAC;EACZ,kBAAkB,EAAE,IAAI;EAAE,iBAAiB;EAC3C,eAAe,EAAE,IAAI;EAAE,aAAa;CACrC",
"sources": [
"index.scss"
],
"names": [],
"file": "index.css"
}

@ -2,7 +2,6 @@
import React from "react";
import "./index.scss";
import productImg from "./productImg.svg";

@ -2,7 +2,6 @@
import React, { Component } from "react";
import "./index.scss";
// import ReactApexChart from "react-apexcharts";
// import ReactApexChart from "apexcharts";

@ -1,7 +1,5 @@
import React, { useMemo, useState } from "react";
import "./index.scss";
import TabBar from "../ReactTable3/TabBar";
import Tabbar from "./Tabbar";

@ -1,8 +1,7 @@
import { useState } from "react";
import arrowIcon from "./arrow-icon.svg";
import more from "./more2.svg";
import edit from "./edit.svg";
import arrowIcon from "images/ReactTable4arrow-icon.svg";
import edit from "images/ReactTable4edit.svg";
import DropDown from "../MiniComponents/DropDown";

@ -47,7 +47,7 @@ const ReactTable5 = ({ breadCrumbs, breadCrumb }) => {
breadCrumb.active ? "text-blue-900" : "text-blue-400"
}`}
>
<img src="images/ReactTable5gray-arrow-left.svg" />
<img src="images/ReactTable5gray-arrow-left.svg" alt="" />
</div>
)}
</div>

@ -3,12 +3,14 @@ import React, { useState } from "react";
import Table from "./Table";
import GridListTable from "./GridListTable";
import ReactTable5 from "./ReactTable5";
import ReactTable4 from "./ReactTable4";
function Tabels() {
const list = {
1: <Table />,
2: <GridListTable />,
3: <ReactTable5 />,
4: <ReactTable4 />,
};
const [type, setType] = useState(1);
return (

Loading…
Cancel
Save