@cakemail-org/ui-components-v2 2.0.65 → 2.0.67

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.
@@ -896,6 +896,18 @@ export default function getMuiTableCell(theme: Theme): {
896
896
  left: string;
897
897
  };
898
898
  };
899
+ "&.MuiTableCell-head&.stickyFirstCol": {
900
+ "&::after": {
901
+ background: string;
902
+ right: string;
903
+ };
904
+ };
905
+ "&.MuiTableCell-head&.stickyLastCol": {
906
+ "&::before": {
907
+ background: string;
908
+ left: string;
909
+ };
910
+ };
899
911
  "&.MuiTableCell-stickyHeader": {};
900
912
  };
901
913
  };
package/dist/cjs/index.js CHANGED
@@ -6572,14 +6572,26 @@ function getMuiTableCell(theme) {
6572
6572
  "&.stickyFirstCol": {
6573
6573
  left: 0,
6574
6574
  "&::after": {
6575
- background: "linear-gradient(270deg, rgba(217, 217, 217, 0) 0%, #D9D9D9 100%)",
6575
+ background: "linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%)",
6576
6576
  right: "-19px",
6577
6577
  }
6578
6578
  },
6579
6579
  "&.stickyLastCol": {
6580
6580
  right: 0,
6581
6581
  "&::before": {
6582
- background: "linear-gradient(270deg, #D9D9D9 0%, rgba(217, 217, 217, 0) 100%)",
6582
+ background: "linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%)",
6583
+ left: "-19px",
6584
+ }
6585
+ },
6586
+ "&.MuiTableCell-head&.stickyFirstCol": {
6587
+ "&::after": {
6588
+ background: "linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, ".concat(theme.palette.cloud.main, " 100%) !important"),
6589
+ right: "-19px",
6590
+ }
6591
+ },
6592
+ "&.MuiTableCell-head&.stickyLastCol": {
6593
+ "&::before": {
6594
+ background: "linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, ".concat(theme.palette.cloud.main, " 100%) !important"),
6583
6595
  left: "-19px",
6584
6596
  }
6585
6597
  },
@@ -1,5 +1,5 @@
1
1
  import { Stoppable, UsesConcurrency } from "@supercharge/promise-pool";
2
- import { Dispatch, MutableRefObject, SetStateAction } from "react";
2
+ import { Dispatch, RefObject, SetStateAction } from "react";
3
3
  import { TListModel, TUserModel } from "../models";
4
4
  import { TSenderModel } from "../models/sender";
5
5
  import { TListTemplateModel, TTemplateModel } from "../models/templates";
@@ -21,7 +21,7 @@ export type TPromisePool<D, R> = {
21
21
  setter?: Dispatch<SetStateAction<TPromisePoolReturnData<R>>> | ((results: R[]) => void);
22
22
  concurrency?: number;
23
23
  setterBatched?: number;
24
- poolRef?: MutableRefObject<TPromisePoolRef>;
24
+ poolRef?: RefObject<TPromisePoolRef>;
25
25
  processor?: ({ processSetter, item }: TPromisePoolProcessor<D, R>) => Promise<R>;
26
26
  };
27
27
  export declare enum EPartialInfoPool {
@@ -896,6 +896,18 @@ export default function getMuiTableCell(theme: Theme): {
896
896
  left: string;
897
897
  };
898
898
  };
899
+ "&.MuiTableCell-head&.stickyFirstCol": {
900
+ "&::after": {
901
+ background: string;
902
+ right: string;
903
+ };
904
+ };
905
+ "&.MuiTableCell-head&.stickyLastCol": {
906
+ "&::before": {
907
+ background: string;
908
+ left: string;
909
+ };
910
+ };
899
911
  "&.MuiTableCell-stickyHeader": {};
900
912
  };
901
913
  };
package/dist/esm/index.js CHANGED
@@ -6552,14 +6552,26 @@ function getMuiTableCell(theme) {
6552
6552
  "&.stickyFirstCol": {
6553
6553
  left: 0,
6554
6554
  "&::after": {
6555
- background: "linear-gradient(270deg, rgba(217, 217, 217, 0) 0%, #D9D9D9 100%)",
6555
+ background: "linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%)",
6556
6556
  right: "-19px",
6557
6557
  }
6558
6558
  },
6559
6559
  "&.stickyLastCol": {
6560
6560
  right: 0,
6561
6561
  "&::before": {
6562
- background: "linear-gradient(270deg, #D9D9D9 0%, rgba(217, 217, 217, 0) 100%)",
6562
+ background: "linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%)",
6563
+ left: "-19px",
6564
+ }
6565
+ },
6566
+ "&.MuiTableCell-head&.stickyFirstCol": {
6567
+ "&::after": {
6568
+ background: "linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, ".concat(theme.palette.cloud.main, " 100%) !important"),
6569
+ right: "-19px",
6570
+ }
6571
+ },
6572
+ "&.MuiTableCell-head&.stickyLastCol": {
6573
+ "&::before": {
6574
+ background: "linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, ".concat(theme.palette.cloud.main, " 100%) !important"),
6563
6575
  left: "-19px",
6564
6576
  }
6565
6577
  },
@@ -1,5 +1,5 @@
1
1
  import { Stoppable, UsesConcurrency } from "@supercharge/promise-pool";
2
- import { Dispatch, MutableRefObject, SetStateAction } from "react";
2
+ import { Dispatch, RefObject, SetStateAction } from "react";
3
3
  import { TListModel, TUserModel } from "../models";
4
4
  import { TSenderModel } from "../models/sender";
5
5
  import { TListTemplateModel, TTemplateModel } from "../models/templates";
@@ -21,7 +21,7 @@ export type TPromisePool<D, R> = {
21
21
  setter?: Dispatch<SetStateAction<TPromisePoolReturnData<R>>> | ((results: R[]) => void);
22
22
  concurrency?: number;
23
23
  setterBatched?: number;
24
- poolRef?: MutableRefObject<TPromisePoolRef>;
24
+ poolRef?: RefObject<TPromisePoolRef>;
25
25
  processor?: ({ processSetter, item }: TPromisePoolProcessor<D, R>) => Promise<R>;
26
26
  };
27
27
  export declare enum EPartialInfoPool {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cakemail-org/ui-components-v2",
3
- "version": "2.0.65",
3
+ "version": "2.0.67",
4
4
  "description": "ui library kit made with material UI",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",