@bikdotai/bik-component-library 0.0.181 → 0.0.183
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,39 +1,26 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("styled-components"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("styled-components"),t=require("../../../../constants/Theme.js");function o(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var r=o(e);const i=r.default.div`
|
|
2
2
|
border-radius: 4px;
|
|
3
|
-
border: 1px solid ${
|
|
3
|
+
border: 1px solid ${t.COLORS.stroke.primary};
|
|
4
4
|
max-height: 640px;
|
|
5
5
|
overflow: hidden;
|
|
6
6
|
display: flex;
|
|
7
7
|
flex-direction: row;
|
|
8
8
|
position: relative;
|
|
9
|
-
`;
|
|
9
|
+
`;r.default.div`
|
|
10
10
|
padding: 14px 16px 14px 18px;
|
|
11
11
|
flex-direction: row;
|
|
12
12
|
align-items: center;
|
|
13
13
|
border-bottom-width: 1px;
|
|
14
14
|
border-bottom-style: solid;
|
|
15
|
-
border-bottom-color: ${
|
|
15
|
+
border-bottom-color: ${t.COLORS.stroke.primary};
|
|
16
16
|
width: 100%;
|
|
17
17
|
height: 100%;
|
|
18
|
-
`;const d=
|
|
18
|
+
`;const d=r.default.div`
|
|
19
19
|
max-height: ${e=>"number"==typeof e.maxHeight?`${e.maxHeight}px`:e.maxHeight};
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
border-radius: 4px;
|
|
27
|
-
width: 6px;
|
|
28
|
-
}
|
|
29
|
-
&::-webkit-scrollbar {
|
|
30
|
-
width: 6px;
|
|
31
|
-
}
|
|
32
|
-
&::-webkit-scrollbar-track {
|
|
33
|
-
width: 6px;
|
|
34
|
-
}
|
|
35
|
-
&:hover::-webkit-scrollbar-thumb {
|
|
36
|
-
background-color: #777;
|
|
37
|
-
width: 6px;
|
|
38
|
-
}
|
|
20
|
+
|
|
21
|
+
overflow-y: auto;
|
|
22
|
+
flex: 1;
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: column;
|
|
25
|
+
background-color: ${t.COLORS.surface.standard};
|
|
39
26
|
`;exports.MenuListContainer=d,exports.OpennedDropdownContainer=i;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import o from"styled-components";import{COLORS as
|
|
1
|
+
import o from"styled-components";import{COLORS as e}from"../../../../constants/Theme.js";const r=o.div`
|
|
2
2
|
border-radius: 4px;
|
|
3
|
-
border: 1px solid ${
|
|
3
|
+
border: 1px solid ${e.stroke.primary};
|
|
4
4
|
max-height: 640px;
|
|
5
5
|
overflow: hidden;
|
|
6
6
|
display: flex;
|
|
@@ -12,28 +12,15 @@ import o from"styled-components";import{COLORS as r}from"../../../../constants/T
|
|
|
12
12
|
align-items: center;
|
|
13
13
|
border-bottom-width: 1px;
|
|
14
14
|
border-bottom-style: solid;
|
|
15
|
-
border-bottom-color: ${
|
|
15
|
+
border-bottom-color: ${e.stroke.primary};
|
|
16
16
|
width: 100%;
|
|
17
17
|
height: 100%;
|
|
18
|
-
`;const
|
|
18
|
+
`;const t=o.div`
|
|
19
19
|
max-height: ${o=>"number"==typeof o.maxHeight?`${o.maxHeight}px`:o.maxHeight};
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
width: 6px;
|
|
28
|
-
}
|
|
29
|
-
&::-webkit-scrollbar {
|
|
30
|
-
width: 6px;
|
|
31
|
-
}
|
|
32
|
-
&::-webkit-scrollbar-track {
|
|
33
|
-
width: 6px;
|
|
34
|
-
}
|
|
35
|
-
&:hover::-webkit-scrollbar-thumb {
|
|
36
|
-
background-color: #777;
|
|
37
|
-
width: 6px;
|
|
38
|
-
}
|
|
39
|
-
`;export{e as MenuListContainer,t as OpennedDropdownContainer};
|
|
20
|
+
|
|
21
|
+
overflow-y: auto;
|
|
22
|
+
flex: 1;
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: column;
|
|
25
|
+
background-color: ${e.surface.standard};
|
|
26
|
+
`;export{t as MenuListContainer,r as OpennedDropdownContainer};
|