teachable-design-system 0.1.0 → 0.1.2

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": "teachable-design-system",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import {DropdownProps} from "../../type/Dropdown.types";
2
+ import {DropdownProps} from "../../types/Dropdown.types";
3
3
  import {StyledBox, StyledDropDown, StyledText, StyledLabel, StyledIcon, StyledOptions, StyledOption} from "./style";
4
4
  import arrowDownIcon from '../../assets/icons/arrow-down.png';
5
5
 
@@ -9,7 +9,7 @@ import {
9
9
  StyledIcon
10
10
  } from './style'
11
11
  import Button from "../Button/Button";
12
- import {SidebarProps} from "../../type/Sidebar.types";
12
+ import {SidebarProps} from "../../types/Sidebar.types";
13
13
  import icon from "../../assets/icons/icon_size.png"
14
14
 
15
15
  export default function Sidebar({buttonStyle, description, title}: SidebarProps) {
package/src/index.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from "./components";
2
- export * from "./foundation";
2
+ // export * from "./foundation";
3
+ export * from './style';
File without changes
File without changes
File without changes