@kwantis-id3/frontend-library 1.0.0-rc.29 → 1.0.0-rc.30
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.
|
@@ -32,6 +32,10 @@ export type TDropdownProps = {
|
|
|
32
32
|
bgColor?: string;
|
|
33
33
|
/** The hover color of the dropdown */
|
|
34
34
|
hoverColor?: string;
|
|
35
|
+
/** The border color */
|
|
36
|
+
borderColor?: string;
|
|
37
|
+
/** The border width */
|
|
38
|
+
borderWidth?: string;
|
|
35
39
|
/** Controls wether the dropdown should extend towards the left or the right */
|
|
36
40
|
direction?: "left" | "right";
|
|
37
41
|
/** Controls whether the dropdown body should have absolute or fixed position
|
package/dist/index.d.ts
CHANGED
|
@@ -349,6 +349,10 @@ type TDropdownProps = {
|
|
|
349
349
|
bgColor?: string;
|
|
350
350
|
/** The hover color of the dropdown */
|
|
351
351
|
hoverColor?: string;
|
|
352
|
+
/** The border color */
|
|
353
|
+
borderColor?: string;
|
|
354
|
+
/** The border width */
|
|
355
|
+
borderWidth?: string;
|
|
352
356
|
/** Controls wether the dropdown should extend towards the left or the right */
|
|
353
357
|
direction?: "left" | "right";
|
|
354
358
|
/** Controls whether the dropdown body should have absolute or fixed position
|