Comparing version 0.1.14 to 0.1.15
# Smelte changelog | ||
# 0.1.15 | ||
* Refactor navigation drawer | ||
* Export breakpoints store, add breakpoints page | ||
@@ -4,0 +7,0 @@ # 0.1.13 |
{ | ||
"name": "smelte", | ||
"description": "UI framework for Svelte using Tailwind CSS", | ||
"version": "0.1.14", | ||
"version": "0.1.15", | ||
"scripts": { | ||
@@ -28,3 +28,3 @@ "dev": "sapper dev -p 7777", | ||
"src/index.js", | ||
"src/stores.js", | ||
"src/breakpoints.js", | ||
"src/components", | ||
@@ -31,0 +31,0 @@ "tailwind.config.js", |
@@ -26,2 +26,3 @@ import Button from "./components/Button"; | ||
import Ripple from "./components/Ripple"; | ||
import breakpoints from "./breakpoints"; | ||
@@ -57,3 +58,4 @@ export { Scrim, Spacer } from "./components/Util"; | ||
Tooltip, | ||
Ripple | ||
Ripple, | ||
breakpoints | ||
}; |
@@ -22,3 +22,4 @@ export const navMenu = [ | ||
{ to: "/typography", text: "Typography" }, | ||
{ to: "/color", text: "Color" } | ||
{ to: "/color", text: "Color" }, | ||
{ to: "/breakpoints", text: "Breakpoints" } | ||
]; | ||
@@ -25,0 +26,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
680961
2312