oziko-ui-kit 0.0.112 → 0.0.114
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.
|
@@ -5,6 +5,8 @@ export type TypeRichTextMinimized = {
|
|
|
5
5
|
richTextProps?: TypeFlexElement;
|
|
6
6
|
placeHolder?: string | JSX.Element;
|
|
7
7
|
onChange?: (value: string) => void;
|
|
8
|
+
onCancel?: () => void;
|
|
9
|
+
onSave?: (value: string) => void;
|
|
8
10
|
} & TypeFlexElement;
|
|
9
11
|
declare const _default: React.NamedExoticComponent<TypeRichTextMinimized>;
|
|
10
12
|
export default _default;
|
|
@@ -10,6 +10,7 @@ export type TableColumn<TRow = any> = {
|
|
|
10
10
|
key: string;
|
|
11
11
|
header: React.ReactNode;
|
|
12
12
|
width?: string;
|
|
13
|
+
minWidth?: string;
|
|
13
14
|
renderCell: (params: TableColumnRenderCellParams<TRow>) => React.ReactNode;
|
|
14
15
|
};
|
|
15
16
|
export type TableSaveToLocalStorage = {
|
|
@@ -38,9 +39,9 @@ export default MemoizedTable;
|
|
|
38
39
|
export type TypeColumn = {
|
|
39
40
|
columnKey?: string;
|
|
40
41
|
children?: React.ReactNode;
|
|
41
|
-
ref?: React.Ref<HTMLDivElement>;
|
|
42
42
|
className?: string;
|
|
43
43
|
width?: string;
|
|
44
|
+
minWidth?: string;
|
|
44
45
|
updateColumnWidth?: (key: string, newWidth: string) => void;
|
|
45
46
|
noResizeable?: boolean;
|
|
46
47
|
style?: React.CSSProperties;
|
package/dist/index.css
CHANGED
|
@@ -523,9 +523,6 @@ code {
|
|
|
523
523
|
.Button-module_button__tvuyP.Button-module_sRound__y0uWn {
|
|
524
524
|
border-radius: var(--oziko-border-radius-round);
|
|
525
525
|
}
|
|
526
|
-
.Button-module_button__tvuyP.Button-module_vSolid__G4luo {
|
|
527
|
-
border: 1px solid;
|
|
528
|
-
}
|
|
529
526
|
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cPrimary__67oy- {
|
|
530
527
|
background-color: var(--oziko-color-primary);
|
|
531
528
|
border-color: var(--oziko-color-primary) !important;
|
|
@@ -694,9 +691,6 @@ code {
|
|
|
694
691
|
border-color: rgba(var(--oziko-color-primary-rgb), 0.3) !important;
|
|
695
692
|
color: var(--oziko-color-font-primary);
|
|
696
693
|
}
|
|
697
|
-
.Button-module_button__tvuyP.Button-module_vFilled__1oRT- {
|
|
698
|
-
border: none;
|
|
699
|
-
}
|
|
700
694
|
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cPrimary__67oy- {
|
|
701
695
|
background-color: rgba(var(--oziko-color-primary-rgb), 0.1);
|
|
702
696
|
border-color: var(--oziko-color-primary) !important;
|