Skip to content

Commit 195490c

Browse files
committed
Updated docs
1 parent 3fb9bfb commit 195490c

File tree

3 files changed

+37
-3
lines changed

3 files changed

+37
-3
lines changed

Diff for: index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
</head>
1717
<body>
1818
<div id="app"></div>
19-
<script src="/dist/build.js"></script>
19+
<script src="public/dist/build.js"></script>
2020
</body>
2121
</html>

Diff for: src/App.vue

+35-1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@
149149
<td>[10, 15, 20, 50, 100]</td>
150150
<td>Prop to set a default limits to page sizes.</td>
151151
</tr>
152+
<tr>
153+
<td>showLimit</td>
154+
<td>Boolean</td>
155+
<td>true</td>
156+
<td>Prop to disable the limit selector.</td>
157+
</tr>
152158
</tbody>
153159
</table>
154160
</div>
@@ -193,7 +199,35 @@
193199
<p class="tile-title"><span class="text-primary">[v0.1.0]</span> Initial commit and first release.</p>
194200
<p class="tile-title"><span class="text-primary">[v0.1.1]</span> Updated typo on README.md.</p>
195201
<p class="tile-title"><span class="text-primary">[v0.1.2]</span> Changed default pageSize from <code>15 to 10</code>. Added cursor <code>not-allowed</code> for disabled page-items.</p>
196-
<p class="tile-title"><span class="text-primary">[v0.2.1]</span> Added prop for items per page and event for <code>$emit</code> the current limit (<code>payload: {limit: 10}</code>). Added testing for minor functionality.</p>
202+
<p class="tile-title"><span class="text-primary">[v0.2.0]</span> Added prop for items per page and event for <code>$emit</code> the current limit (<code>payload: {limit: 10}</code>). Added testing for minor functionality.</p>
203+
<p class="tile-title"><span class="text-primary">[v0.2.1]</span> Added builds for use in browser and refactoring project structure.</p>
204+
<p class="tile-title"><span class="text-primary">[v0.2.2]</span> Now you can disable a limit selector using a <code>showLimit</code> prop.</p>
205+
</div>
206+
</div>
207+
</div>
208+
</div>
209+
<div class="timeline-item">
210+
<div class="timeline-left">
211+
<a href="#timeline-example-1" class="timeline-icon tooltip" data-tooltip="February 2017"></a>
212+
</div>
213+
<div class="timeline-content">
214+
<div class="tile">
215+
<div class="tile-content">
216+
<p class="tile-subtitle">March, 2017</p>
217+
<p class="tile-title"><span class="text-primary">[v0.2.1]</span> Added builds for use in browser and refactoring project structure.</p>
218+
</div>
219+
</div>
220+
</div>
221+
</div>
222+
<div class="timeline-item">
223+
<div class="timeline-left">
224+
<a href="#timeline-example-1" class="timeline-icon tooltip" data-tooltip="February 2017"></a>
225+
</div>
226+
<div class="timeline-content">
227+
<div class="tile">
228+
<div class="tile-content">
229+
<p class="tile-subtitle">April, 2017</p>
230+
<p class="tile-title"><span class="text-primary">[v0.2.2]</span> Now you can disable a limit selector using a <code>showLimit</code> prop.</p>
197231
</div>
198232
</div>
199233
</div>

Diff for: src/_scss/_docs.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ kbd {
99

1010
.version {
1111
&::after {
12-
content: '0.2.0'
12+
content: '0.2.2'
1313
}
1414
}
1515

0 commit comments

Comments
 (0)