oziko-ui-kit 0.0.91 → 0.0.92
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.
|
@@ -9,6 +9,8 @@ export type TypeTable = {
|
|
|
9
9
|
};
|
|
10
10
|
fixedColumns?: string[];
|
|
11
11
|
noResizeableColumns?: string[];
|
|
12
|
+
onCellEnter?: (columnKey: string, rowIndex: number, event: KeyboardEvent) => void;
|
|
13
|
+
onCellEscape?: (columnKey: string, rowIndex: number, event: KeyboardEvent) => void;
|
|
12
14
|
};
|
|
13
15
|
declare const _default: React.NamedExoticComponent<TypeTable>;
|
|
14
16
|
export default _default;
|
package/dist/index.css
CHANGED
|
@@ -2728,11 +2728,19 @@ input:checked + .Switch-module_slider__sHGGR::before {
|
|
|
2728
2728
|
}
|
|
2729
2729
|
|
|
2730
2730
|
.Table-module_cell__K--55 {
|
|
2731
|
-
padding: var(--oziko-padding-md);
|
|
2731
|
+
padding: 0 var(--oziko-padding-md);
|
|
2732
|
+
min-height: 48px;
|
|
2733
|
+
display: flex;
|
|
2734
|
+
align-items: center;
|
|
2735
|
+
width: 100%;
|
|
2736
|
+
box-sizing: border-box;
|
|
2732
2737
|
}
|
|
2733
2738
|
.Table-module_cell__K--55:not(:last-child) {
|
|
2734
2739
|
border-bottom: 1px solid var(--oziko-color-border);
|
|
2735
2740
|
}
|
|
2741
|
+
.Table-module_cell__K--55 > * {
|
|
2742
|
+
width: 100%;
|
|
2743
|
+
}
|
|
2736
2744
|
|
|
2737
2745
|
.Table-module_resizer__PTgL3 {
|
|
2738
2746
|
width: 3px;
|