@bikdotai/bik-component-library 0.0.721-beta.37 → 0.0.721-beta.38
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,4 +1,4 @@
|
|
|
1
|
-
import t,{keyframes as e}from"styled-components";import{COLORS as n}from"../../constants/Theme.js";const
|
|
1
|
+
import t,{keyframes as e,css as i}from"styled-components";import{COLORS as n}from"../../constants/Theme.js";const r=e`
|
|
2
2
|
0%, 100% {
|
|
3
3
|
transform: translateY(0);
|
|
4
4
|
}
|
|
@@ -11,10 +11,12 @@ import t,{keyframes as e}from"styled-components";import{COLORS as n}from"../../c
|
|
|
11
11
|
75% {
|
|
12
12
|
transform: translateY(-2px);
|
|
13
13
|
}
|
|
14
|
-
`,
|
|
14
|
+
`,a=t.div`
|
|
15
15
|
cursor: pointer;
|
|
16
16
|
position: relative;
|
|
17
|
-
|
|
17
|
+
${t=>t.shouldBounce&&i`
|
|
18
|
+
animation: ${r} 600ms ease-in-out;
|
|
19
|
+
`}
|
|
18
20
|
|
|
19
21
|
.main-icon-class {
|
|
20
22
|
padding: 6px;
|
|
@@ -171,11 +173,11 @@ import t,{keyframes as e}from"styled-components";import{COLORS as n}from"../../c
|
|
|
171
173
|
align-items: center;
|
|
172
174
|
margin-right: 8px;
|
|
173
175
|
}
|
|
174
|
-
`,
|
|
176
|
+
`,d=t.div`
|
|
175
177
|
display: flex;
|
|
176
178
|
flex-direction: column;
|
|
177
179
|
height: 100%;
|
|
178
|
-
`,
|
|
180
|
+
`,p=t.div`
|
|
179
181
|
background: ${n.surface.standard};
|
|
180
182
|
border-radius: 8px;
|
|
181
183
|
border: 1px solid ${n.stroke.primary};
|
|
@@ -188,7 +190,7 @@ import t,{keyframes as e}from"styled-components";import{COLORS as n}from"../../c
|
|
|
188
190
|
&:hover {
|
|
189
191
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
190
192
|
}
|
|
191
|
-
`,
|
|
193
|
+
`,c=t.div`
|
|
192
194
|
background-image: url(${t=>t.imageUrl});
|
|
193
195
|
background-size: cover;
|
|
194
196
|
background-position: center;
|
|
@@ -196,4 +198,4 @@ import t,{keyframes as e}from"styled-components";import{COLORS as n}from"../../c
|
|
|
196
198
|
height: ${t=>t.height||"200px"};
|
|
197
199
|
width: ${t=>t.width||"100%"};
|
|
198
200
|
border-radius: 4px;
|
|
199
|
-
`;export{
|
|
201
|
+
`;export{c as BackgroundImageContainer,p as MainCardContainer,d as MainContainer,a as WhatsNewIconContainer,o as WhatsNewWrapper};
|