oziko-ui-kit 0.0.103 → 0.0.104
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,10 +1,18 @@
|
|
|
1
1
|
import { ReactNode } from "react";
|
|
2
2
|
import { TypeFlexElement } from "../../../flex-element/FlexElement";
|
|
3
|
+
import { TypeFluidContainer } from "../../../fluid-container/FluidContainer";
|
|
3
4
|
import { TypeMapProps } from "../../../map/Map";
|
|
4
|
-
|
|
5
|
+
type ChildrenProps = Omit<TypeFluidContainer, "prefix" | "root" | "suffix"> & {
|
|
6
|
+
prefix?: TypeFlexElement;
|
|
7
|
+
root?: Omit<TypeFlexElement, "children">;
|
|
8
|
+
suffix?: TypeFlexElement;
|
|
9
|
+
};
|
|
10
|
+
export type TypeMinimizedLocationInput = {
|
|
5
11
|
contentProps?: TypeFlexElement;
|
|
12
|
+
childrenProps?: ChildrenProps;
|
|
13
|
+
containerProps?: TypeFlexElement;
|
|
6
14
|
mapProps?: TypeMapProps;
|
|
7
15
|
icon?: ReactNode;
|
|
8
16
|
};
|
|
9
|
-
declare const MinimizedLocationInput: ({ contentProps, mapProps, icon, ...props }: TypeMinimizedLocationInput) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
declare const MinimizedLocationInput: ({ contentProps, mapProps, icon, childrenProps, containerProps, ...props }: TypeMinimizedLocationInput) => import("react/jsx-runtime").JSX.Element;
|
|
10
18
|
export default MinimizedLocationInput;
|
package/dist/index.css
CHANGED
|
@@ -3809,10 +3809,21 @@ button.font-increment {
|
|
|
3809
3809
|
border-radius: var(--oziko-border-radius-md);
|
|
3810
3810
|
color: var(--oziko-color-input-placeholder);
|
|
3811
3811
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
3812
|
+
padding-top: 0;
|
|
3813
|
+
padding-bottom: 0;
|
|
3814
|
+
display: flex;
|
|
3815
|
+
flex-direction: row;
|
|
3816
|
+
align-items: start;
|
|
3812
3817
|
}
|
|
3813
3818
|
.Location-module_container__SbKlF input {
|
|
3814
3819
|
padding: 0;
|
|
3815
3820
|
}
|
|
3821
|
+
.Location-module_container__SbKlF .Location-module_iconContainer__ie0Rb {
|
|
3822
|
+
padding: var(--oziko-padding-md) 0;
|
|
3823
|
+
}
|
|
3824
|
+
.Location-module_container__SbKlF .Location-module_input__aoNPw {
|
|
3825
|
+
padding: var(--oziko-padding-sm) !important;
|
|
3826
|
+
}
|
|
3816
3827
|
|
|
3817
3828
|
.Location-module_map__7pBAg {
|
|
3818
3829
|
width: 300px;
|