oziko-ui-kit 0.0.66 → 0.0.68
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.
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { Ref, RefObject } from "react";
|
|
2
2
|
import { TypeFluidContainer } from "../../fluid-container/FluidContainer";
|
|
3
3
|
import { TypeLabeledValue } from "../../select-option/SelectOption";
|
|
4
|
+
import { TypeFlexElement } from "../../flex-element/FlexElement";
|
|
4
5
|
export type TypeRelationSelectRef = {
|
|
5
6
|
toggleDropdown: (toggleValue?: boolean) => void;
|
|
6
7
|
clear: () => void;
|
|
7
8
|
};
|
|
8
9
|
export type TypeRelationSelect = {
|
|
9
|
-
options: TypeLabeledValue[];
|
|
10
|
+
options: TypeLabeledValue[] | null;
|
|
10
11
|
placeholder?: string;
|
|
11
12
|
placement?: "bottom" | "top";
|
|
12
13
|
multiple?: boolean;
|
|
@@ -25,9 +26,9 @@ export type TypeRelationSelect = {
|
|
|
25
26
|
dropDownRef?: Ref<HTMLDivElement>;
|
|
26
27
|
};
|
|
27
28
|
declare const _default: import("react").NamedExoticComponent<TypeRelationSelect & {
|
|
28
|
-
prefix?:
|
|
29
|
-
root?:
|
|
30
|
-
suffix?:
|
|
29
|
+
prefix?: TypeFlexElement;
|
|
30
|
+
root?: TypeFlexElement;
|
|
31
|
+
suffix?: TypeFlexElement;
|
|
31
32
|
mode?: "hug" | "fill" | "middle";
|
|
32
33
|
} & {
|
|
33
34
|
ref?: RefObject<HTMLDivElement | null>;
|
package/dist/index.css
CHANGED
|
@@ -3144,6 +3144,10 @@ button.font-increment {
|
|
|
3144
3144
|
.RelationSelect-module_deleteIcon__l6plf {
|
|
3145
3145
|
color: var(--oziko-color-danger);
|
|
3146
3146
|
}
|
|
3147
|
+
|
|
3148
|
+
.RelationSelect-module_infiniteScroll__UQClb {
|
|
3149
|
+
overflow: hidden !important;
|
|
3150
|
+
}
|
|
3147
3151
|
.ColorMinimized-module_colorMinimized__CnRpu {
|
|
3148
3152
|
background-color: var(--oziko-color-input-background);
|
|
3149
3153
|
border-radius: var(--oziko-border-radius-md);
|