@movmo_app/react-common 0.6.1 → 0.6.3
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.
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +16 -1
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -137,7 +137,7 @@ declare interface SelectDropdownProps {
|
|
|
137
137
|
onChange: (selectedOption: SingleValue<SelectDropdownOption>) => void;
|
|
138
138
|
className?: string;
|
|
139
139
|
styles?: StylesConfig<SelectDropdownOption, false>;
|
|
140
|
-
|
|
140
|
+
'data-testid'?: string;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
export declare const Separator: React_2.ForwardRefExoticComponent<SeparatorProps & React_2.RefAttributes<HTMLDivElement>>;
|
package/dist/index.es.js
CHANGED
|
@@ -7196,9 +7196,24 @@ const On = ({
|
|
|
7196
7196
|
"&:hover": {
|
|
7197
7197
|
borderColor: "#171412"
|
|
7198
7198
|
},
|
|
7199
|
-
|
|
7199
|
+
minHeight: "2.5rem",
|
|
7200
|
+
height: "2.5rem",
|
|
7200
7201
|
cursor: "pointer"
|
|
7201
7202
|
}),
|
|
7203
|
+
valueContainer: (c) => ({
|
|
7204
|
+
...c,
|
|
7205
|
+
height: "2.5rem",
|
|
7206
|
+
padding: "0 0.875rem"
|
|
7207
|
+
}),
|
|
7208
|
+
input: (c) => ({
|
|
7209
|
+
...c,
|
|
7210
|
+
margin: 0,
|
|
7211
|
+
padding: 0
|
|
7212
|
+
}),
|
|
7213
|
+
indicatorsContainer: (c) => ({
|
|
7214
|
+
...c,
|
|
7215
|
+
height: "2.5rem"
|
|
7216
|
+
}),
|
|
7202
7217
|
dropdownIndicator: (c) => ({
|
|
7203
7218
|
...c,
|
|
7204
7219
|
color: "#79716B",
|