-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add custom colon property (closes #1)
- Loading branch information
1 parent
6297483
commit 554c144
Showing
8 changed files
with
74 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="description" content="react,timefield,timeinput,input"><meta name="mobile-web-app-capable" content="yes"><meta name="author" content="Anton Fisher"><title>react-simple-timefield - Demos</title><link href="/favicon.ico" rel="icon"><style>body,html{margin:0;width:100%;font-size:.95rem;font-family:Comfortaa,monospace}body{display:flex;flex-direction:column;align-items:center}#app,footer,header{width:92%;text-align:center}header{margin-top:33px;display:flex;flex-direction:column;align-items:center;margin-bottom:60px}.container>section{margin-bottom:40px}h1{font-size:1.7rem;display:inline-block;padding:20px 40px;border:13px solid rgba(255,255,0,.33);margin-top:20px}h2{line-height:1px;font-size:1.1rem;display:inline-block;border-bottom:13px solid rgba(255,255,0,.33)}a,a:visited{color:#00f}a:hover{color:#00bfff}footer{font-size:.75rem;margin:30px 0 15px}@media all and (min-width:900px){body>section,header{width:75%}}@media all and (min-width:1600px){body>section,header{width:50%}}</style></head><body><noscript>If you're seeing this message, that means <strong>JavaScript has been disabled on your browser</strong>, please <strong>enable JS</strong> to make this app work.</noscript><header><h1>react-simple-timefield demos</h1><a href="https://github.com/antonfisher/react-simple-timefield/blob/master/demo/index.js">Demo source code</a></header><section id="app"></section><footer>MIT License | 2017 | <a href="https://antonfisher.com">Anton Fisher</a></footer><link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet"><script type="text/javascript" src="bundle.js?4c64c353effd05143e74"></script></body></html> | ||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="description" content="react,timefield,timeinput,input"><meta name="mobile-web-app-capable" content="yes"><meta name="author" content="Anton Fisher"><title>react-simple-timefield - Demos</title><link href="/favicon.ico" rel="icon"><style>body,html{margin:0;width:100%;font-size:.95rem;font-family:Comfortaa,monospace}body{display:flex;flex-direction:column;align-items:center}#app,footer,header{width:92%;text-align:center}header{margin-top:33px;display:flex;flex-direction:column;align-items:center;margin-bottom:60px}.container>section{margin-bottom:40px}h1{font-size:1.7rem;display:inline-block;padding:20px 40px;border:13px solid rgba(255,255,0,.33);margin-top:20px}h2{line-height:1px;font-size:1.1rem;display:inline-block;border-bottom:13px solid rgba(255,255,0,.33)}a,a:visited{color:#00f}a:hover{color:#00bfff}footer{font-size:.75rem;margin:30px 0 15px}@media all and (min-width:900px){body>section,header{width:75%}}@media all and (min-width:1600px){body>section,header{width:50%}}</style></head><body><noscript>If you're seeing this message, that means <strong>JavaScript has been disabled on your browser</strong>, please <strong>enable JS</strong> to make this app work.</noscript><header><h1>react-simple-timefield demos</h1><a href="https://github.com/antonfisher/react-simple-timefield/blob/master/demo/index.js">Demo source code</a></header><section id="app"></section><footer>MIT License | 2017 | <a href="https://antonfisher.com">Anton Fisher</a></footer><link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet"><script type="text/javascript" src="bundle.js?cfbcae1ddca0c9acb8cf"></script></body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"name": "react-simple-timefield", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "Simple React time input field", | ||
"author": "Anton Fisher <[email protected]> (http://antonfisher.com)", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "babel -d dist src", | ||
"build": "babel -d dist src && cd ./demo && npm run build", | ||
"test": "jest", | ||
"lint": "eslint --ignore-path .gitignore --ignore-pattern node_modules --ignore-pattern docs -- .", | ||
"cover": "jest --coverage", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters