l-min-components 1.0.143 → 1.0.147

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.143",
3
+ "version": "1.0.147",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import { Layout, LeftLayout, RightLayout } from "./index.styled";
2
3
 
3
4
  const MainLayout = (props) => {
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import styled from "styled-components";
2
3
 
3
4
  const SocialBtn = ({ customStyle, onClick = () => {}, children }) => {
@@ -11,5 +11,17 @@ export { default as RequestList } from "./friendRequest/friendRequestList";
11
11
  export { default as CourseList } from "./course/courseList";
12
12
  export { default as ApiProgressBar } from "./ApiProgress/ApiProgressBar";
13
13
  export { default as ApiConsumption } from "./ApiProgress/ApiConsumption";
14
- export { default as Calender } from "./calender/input";
15
14
  export { default as Loader } from "./loader";
15
+ export { default as SearchComponent } from "./searchBar";
16
+ export { default as ButtonComponent } from "./button";
17
+ export { default as ToggleButtonComponent } from "./toggle button";
18
+ export { default as InputComponent } from "./input";
19
+ export { default as MainLayout } from "./authentication/mainLayout";
20
+ export { default as SocialBtn } from "./button/socialBtn";
21
+ export { default as SuccessCard } from "./successCard/index";
22
+ export { default as DropDownComponent } from "./dropdown component";
23
+ export { default as SelectDropdown } from "./select";
24
+ export { default as SelectDropdownGraph } from "./graph";
25
+ export { default as NotificationThresholdComponent } from "./notificationThreshold";
26
+ export { default as DevAPIdocs } from "./developerAPIdocs";
27
+ export { default as Calender } from "./calender/input";
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import avatar from "./assets/PartyingFace.png";
2
3
  import { Card } from "./index.styled";
3
4
  import ButtonComponent from "../button";