l-min-components 1.0.1198 → 1.0.1203

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "l-min-components",
3
- "version": "1.0.1198",
3
+ "version": "1.0.1203",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -32,12 +32,6 @@ const EnterpriseRightBar = ({ planState }) => {
32
32
  ></CustomDotsContainer>
33
33
  );
34
34
  };
35
- const responsive = {
36
- mobile: {
37
- breakpoint: { max: 5000, min: 0 },
38
- items: 1,
39
- },
40
- };
41
35
 
42
36
  const host = window?.location?.hostname;
43
37
  const port = window?.location?.port ? `:${window.location.port}` : "";
@@ -64,7 +58,7 @@ const EnterpriseRightBar = ({ planState }) => {
64
58
  // defaultActiveIndex={0}
65
59
  // customDot={<CustomDots />}
66
60
  autoPlay
67
- infiniteLoop
61
+ infiniteLoop={courses?.length > 1}
68
62
  showArrows={false}
69
63
  showStatus={false}
70
64
  showThumbs={false}
@@ -223,6 +217,9 @@ const EnterpriseContainer = styled.div`
223
217
  bottom: 30;
224
218
  }
225
219
  }
220
+ .more-slot {
221
+ padding: 0px !important;
222
+ }
226
223
  `;
227
224
 
228
225
  const Course = styled.div`
@@ -183,7 +183,7 @@ export const LoadingScreen = styled.div`
183
183
  export const ErrorMessage = styled.div`
184
184
  width: ${({ width }) => (width ? width : "auto")};
185
185
  height: ${({ height }) => (height ? height : "auto")};
186
- background-color: #0000001a;
186
+
187
187
  display: grid;
188
188
  place-items: center;
189
189
  div {