es-grid-template 1.9.28 → 1.9.29
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.
|
@@ -194,10 +194,10 @@ export declare const fixColumnsLeft: <RecordType>(columns: ColumnTable<RecordTyp
|
|
|
194
194
|
value: any;
|
|
195
195
|
rowData: RecordType;
|
|
196
196
|
}) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNode);
|
|
197
|
-
onCellStyles?: Omit<CSSProperties, "
|
|
198
|
-
onCellHeaderStyles?: Omit<CSSProperties, "
|
|
197
|
+
onCellStyles?: Omit<CSSProperties, "left" | "right" | "display" | "minWidth" | "position" | "width"> | ((cellValue: any, cell: import("@tanstack/react-table").Cell<RecordType, unknown>) => Omit<CSSProperties, "left" | "right" | "display" | "minWidth" | "position" | "width">);
|
|
198
|
+
onCellHeaderStyles?: Omit<CSSProperties, "left" | "right" | "display" | "minWidth" | "position" | "width"> | ((cell: import("@tanstack/react-table").Header<RecordType, unknown>) => Omit<CSSProperties, "left" | "right" | "display" | "minWidth" | "position" | "width">);
|
|
199
199
|
onCell?: (rowData: RecordType, index: number) => import("react").TdHTMLAttributes<HTMLTableCellElement>;
|
|
200
|
-
onCellFooterStyles?: Omit<CSSProperties, "
|
|
200
|
+
onCellFooterStyles?: Omit<CSSProperties, "left" | "right" | "display" | "minWidth" | "position" | "width"> | ((cellValue: any, cell: import("@tanstack/react-table").Header<RecordType, unknown>) => Omit<CSSProperties, "left" | "right" | "display" | "minWidth" | "position" | "width">);
|
|
201
201
|
getValue?: (row: any, rowIndex: number) => any;
|
|
202
202
|
getCellProps?: (value: any, row: any, rowIndex: number) => import("./../../grid-component/type").CellProps;
|
|
203
203
|
headerCellProps?: import("./../../grid-component/type").CellProps;
|
|
@@ -633,6 +633,7 @@ $cell-index-focus-bg-Dark: #E6EFFD !default;
|
|
|
633
633
|
|
|
634
634
|
.toolbar-dropdown-button {
|
|
635
635
|
font-size: 12px;
|
|
636
|
+
|
|
636
637
|
.ui-rc-btn.ui-rc-btn-default.ui-rc-btn-variant-outlined.ui-rc-btn-compact-item.ui-rc-btn-compact-first-item {
|
|
637
638
|
border-color: #28c76f;
|
|
638
639
|
}
|
|
@@ -655,7 +656,7 @@ $cell-index-focus-bg-Dark: #E6EFFD !default;
|
|
|
655
656
|
|
|
656
657
|
.ui-rc-toolbar-bottom {
|
|
657
658
|
position: relative;
|
|
658
|
-
padding: .
|
|
659
|
+
padding: .15rem 0.5rem;
|
|
659
660
|
background-color: #ffffff;
|
|
660
661
|
|
|
661
662
|
// &::before {
|
|
@@ -680,12 +681,26 @@ $cell-index-focus-bg-Dark: #E6EFFD !default;
|
|
|
680
681
|
// }
|
|
681
682
|
|
|
682
683
|
.toolbar-button {
|
|
683
|
-
border-radius:
|
|
684
|
+
border-radius: 3px;
|
|
684
685
|
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.ui-rc-btn {
|
|
691
|
+
border-radius: 3px;
|
|
692
|
+
height: 28px;
|
|
693
|
+
|
|
694
|
+
&.ui-rc-btn-compact-item.ui-rc-btn-compact-last-item {
|
|
695
|
+
border-start-start-radius: 0;
|
|
696
|
+
border-end-start-radius: 0;
|
|
688
697
|
}
|
|
698
|
+
|
|
699
|
+
&.ui-rc-btn-compact-item.ui-rc-btn-compact-first-item {
|
|
700
|
+
border-start-end-radius: 0;
|
|
701
|
+
border-end-end-radius: 0;
|
|
702
|
+
}
|
|
703
|
+
|
|
689
704
|
}
|
|
690
705
|
}
|
|
691
706
|
|
|
@@ -633,6 +633,7 @@ $cell-index-focus-bg-Dark: #E6EFFD !default;
|
|
|
633
633
|
|
|
634
634
|
.toolbar-dropdown-button {
|
|
635
635
|
font-size: 12px;
|
|
636
|
+
|
|
636
637
|
.ui-rc-btn.ui-rc-btn-default.ui-rc-btn-variant-outlined.ui-rc-btn-compact-item.ui-rc-btn-compact-first-item {
|
|
637
638
|
border-color: #28c76f;
|
|
638
639
|
}
|
|
@@ -655,7 +656,7 @@ $cell-index-focus-bg-Dark: #E6EFFD !default;
|
|
|
655
656
|
|
|
656
657
|
.ui-rc-toolbar-bottom {
|
|
657
658
|
position: relative;
|
|
658
|
-
padding: .
|
|
659
|
+
padding: .15rem 0.5rem;
|
|
659
660
|
background-color: #ffffff;
|
|
660
661
|
|
|
661
662
|
// &::before {
|
|
@@ -680,12 +681,26 @@ $cell-index-focus-bg-Dark: #E6EFFD !default;
|
|
|
680
681
|
// }
|
|
681
682
|
|
|
682
683
|
.toolbar-button {
|
|
683
|
-
border-radius:
|
|
684
|
+
border-radius: 3px;
|
|
684
685
|
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.ui-rc-btn {
|
|
691
|
+
border-radius: 3px;
|
|
692
|
+
height: 28px;
|
|
693
|
+
|
|
694
|
+
&.ui-rc-btn-compact-item.ui-rc-btn-compact-last-item {
|
|
695
|
+
border-start-start-radius: 0;
|
|
696
|
+
border-end-start-radius: 0;
|
|
688
697
|
}
|
|
698
|
+
|
|
699
|
+
&.ui-rc-btn-compact-item.ui-rc-btn-compact-first-item {
|
|
700
|
+
border-start-end-radius: 0;
|
|
701
|
+
border-end-end-radius: 0;
|
|
702
|
+
}
|
|
703
|
+
|
|
689
704
|
}
|
|
690
705
|
}
|
|
691
706
|
|