l-min-components 0.10.0 → 0.12.0

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": "0.10.0",
3
+ "version": "0.12.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -1,5 +1,4 @@
1
1
  import React, { useState } from "react";
2
-
3
2
  import { Container } from "./styles";
4
3
  import Switch from "../toggle";
5
4
  import ProgressBar from "../ApiProgressBar";
@@ -3,3 +3,13 @@ export { default as LoginHeader } from "./header/login-header";
3
3
  export { default as Banner } from "./banner/";
4
4
  export { default as SideNav } from "./sideNav";
5
5
  export { default as SideMenu } from "./sideBar/sideMenu";
6
+ export { default as ProgressBar } from "./progressBar";
7
+ export { default as Radio } from "./radio";
8
+ export { default as Checkbox } from "./checkBoxes/checkbox";
9
+ export { default as CheckboxGroup } from "./checkBoxes/checkboxGroup";
10
+ export { default as RequestList } from "./friendRequest/friendRequestList";
11
+ export { default as CourseList } from "./course/courseList";
12
+ export { default as ApiProgressBar } from "./ApiProgress/ApiProgressBar";
13
+ export { default as ApiConsumption } from "./ApiProgress/ApiConsumption";
14
+ export { default as Calender } from "./calender/input";
15
+ export { default as Loader } from "./loader";
@@ -1,4 +1,4 @@
1
- import { useState, useEffect } from "react";
1
+ import React, { useState, useEffect } from "react";
2
2
  import { Input, Label, ErrorMsg } from "./index.styled";
3
3
 
4
4
  /**
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import styled from "styled-components";
2
3
 
3
4
  /**
@@ -1,5 +1,5 @@
1
- import PropTypes from "prop-types";
2
1
  import React, { useState } from "react";
2
+ import PropTypes from "prop-types";
3
3
  import {
4
4
  Container,
5
5
  RadioControl,