Skip to content

Commit 1cce8b1

Browse files
author
jfusco
committed
Patching to get new docs assets and files in. Forgot to run the build :/
1 parent 1d25447 commit 1cce8b1

File tree

8 files changed

+64
-51
lines changed

8 files changed

+64
-51
lines changed

docs/bundle.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,21 @@ return /******/ (function(modules) { // webpackBootstrap
130130
),
131131
' file documentation'
132132
),
133+
_react2.default.createElement(
134+
'h2',
135+
null,
136+
'Tests'
137+
),
138+
_react2.default.createElement(
139+
'p',
140+
null,
141+
'View coverage report ',
142+
_react2.default.createElement(
143+
'a',
144+
{ href: 'https://jfusco.github.io/react-tagging-input/coverage/lcov-report/index.html' },
145+
'here'
146+
)
147+
),
133148
_react2.default.createElement(
134149
'div',
135150
{ className: 'example' },

docs/coverage/clover.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<coverage generated="1478448461685" clover="3.2.0">
3-
<project timestamp="1478448461685" name="All files">
2+
<coverage generated="1478449184077" clover="3.2.0">
3+
<project timestamp="1478449184077" name="All files">
44
<metrics statements="52" coveredstatements="52" conditionals="71" coveredconditionals="52" methods="22" coveredmethods="22" elements="145" coveredelements="126" complexity="0" loc="52" ncloc="52" packages="1" files="2" classes="2">
55
<file name="Tag.js" path="/Users/Rinzler/Projects/Personal/react-tagging-input/src/component/js/Tag.js">
66
<metrics statements="8" coveredstatements="8" conditionals="7" coveredconditionals="6" methods="3" coveredmethods="3"/>

docs/coverage/lcov-report/Tag.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ <h1>
160160
</div><!-- /wrapper -->
161161
<div class='footer quiet pad2 space-top1 center small'>
162162
Code coverage
163-
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Nov 06 2016 11:07:41 GMT-0500 (EST)
163+
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Nov 06 2016 11:19:43 GMT-0500 (EST)
164164
</div>
165165
</div>
166166
<script src="prettify.js"></script>

docs/coverage/lcov-report/Tags.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ <h1>
574574
</div><!-- /wrapper -->
575575
<div class='footer quiet pad2 space-top1 center small'>
576576
Code coverage
577-
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Nov 06 2016 11:07:41 GMT-0500 (EST)
577+
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Nov 06 2016 11:19:43 GMT-0500 (EST)
578578
</div>
579579
</div>
580580
<script src="prettify.js"></script>

docs/coverage/lcov-report/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ <h1>
9090
</div><!-- /wrapper -->
9191
<div class='footer quiet pad2 space-top1 center small'>
9292
Code coverage
93-
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Nov 06 2016 11:07:41 GMT-0500 (EST)
93+
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sun Nov 06 2016 11:19:43 GMT-0500 (EST)
9494
</div>
9595
</div>
9696
<script src="prettify.js"></script>

docs/index.css

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
html, body {
2+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
3+
}
4+
5+
.container {
6+
width: 1170px;
7+
padding-right: 15px;
8+
padding-left: 15px;
9+
margin-right: auto;
10+
margin-left: auto;
11+
}
12+
13+
.example {
14+
margin-top: 36px;
15+
margin-bottom: 36px;
16+
}
17+
18+
.example__component-wrapper {
19+
margin-bottom: 15px;
20+
}
21+
22+
pre {
23+
display: block;
24+
padding: 10px;
25+
margin: 0 0 10px;
26+
font-size: 13px;
27+
line-height: 1.42857143;
28+
color: #333;
29+
word-break: break-all;
30+
word-wrap: break-word;
31+
background-color: #f5f5f5;
32+
border: 1px solid #ccc;
33+
border-radius: 4px;
34+
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
35+
margin-top: 8px;
36+
}
37+
38+
h1 {
39+
margin-top: 20px;
40+
margin-bottom: 10px;
41+
font-size: 36px;
42+
}

docs/index.html

Lines changed: 1 addition & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -7,52 +7,8 @@
77

88
<title>React Tags Component</title>
99

10+
<link rel=stylesheet href="index.css">
1011
<link rel=stylesheet href="react-tags.css">
11-
12-
<style>
13-
html, body {
14-
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
15-
}
16-
17-
.container {
18-
width: 1170px;
19-
padding-right: 15px;
20-
padding-left: 15px;
21-
margin-right: auto;
22-
margin-left: auto;
23-
}
24-
25-
.example {
26-
margin-top: 36px;
27-
margin-bottom: 36px;
28-
}
29-
30-
.example__component-wrapper {
31-
margin-bottom: 15px;
32-
}
33-
34-
pre {
35-
display: block;
36-
padding: 10px;
37-
margin: 0 0 10px;
38-
font-size: 13px;
39-
line-height: 1.42857143;
40-
color: #333;
41-
word-break: break-all;
42-
word-wrap: break-word;
43-
background-color: #f5f5f5;
44-
border: 1px solid #ccc;
45-
border-radius: 4px;
46-
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
47-
margin-top: 8px;
48-
}
49-
50-
h1 {
51-
margin-top: 20px;
52-
margin-bottom: 10px;
53-
font-size: 36px;
54-
}
55-
</style>
5612
</head>
5713
<body>
5814
<div id="application"></div>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-tagging-input",
3-
"version": "1.6.2",
3+
"version": "1.6.3",
44
"description": "Simple tagging component",
55
"main": "dist/react-tags.js",
66
"license": "MIT",

0 commit comments

Comments
 (0)