kempo-ui 0.4.18 → 0.4.19
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/CHANGELOG.md +18 -0
- package/dist/components/Button.js +30 -0
- package/dist/components/CodeEditor.js +1 -1
- package/dist/components/Combobox.js +2 -1
- package/dist/components/ContentSlider.js +1 -1
- package/dist/components/HtmlEditor.js +2 -2
- package/dist/components/MarkdownEditor.js +3 -3
- package/dist/components/Pagination.js +43 -0
- package/dist/components/Slider.js +2 -2
- package/dist/components/markdownEditorControls/Heading.js +5 -5
- package/dist/components/markdownEditorControls/Table.js +2 -2
- package/dist/components/paginationControls/FirstPage.js +1 -0
- package/dist/components/paginationControls/GotoPage.js +17 -0
- package/dist/components/paginationControls/ItemsPerPage.js +15 -0
- package/dist/components/paginationControls/LastPage.js +1 -0
- package/dist/components/paginationControls/NextPage.js +1 -0
- package/dist/components/paginationControls/PageCount.js +1 -0
- package/dist/components/paginationControls/PageInfo.js +6 -0
- package/dist/components/paginationControls/PaginationButtonControl.js +20 -0
- package/dist/components/paginationControls/PaginationControl.js +5 -0
- package/dist/components/paginationControls/PrevPage.js +1 -0
- package/dist/utils/number.js +1 -0
- package/dist/utils/propConverters.js +1 -1
- package/docs/components/accordion.html +8 -0
- package/docs/components/aside.html +8 -0
- package/docs/components/button.html +595 -0
- package/docs/components/calendar.html +8 -0
- package/docs/components/card.html +8 -0
- package/docs/components/chat.html +8 -0
- package/docs/components/code-editor.html +8 -0
- package/docs/components/color-picker.html +8 -0
- package/docs/components/combobox.html +8 -0
- package/docs/components/content-slider.html +8 -0
- package/docs/components/context.html +8 -0
- package/docs/components/dialog.html +8 -0
- package/docs/components/dropdown.html +8 -0
- package/docs/components/filter-list.html +8 -0
- package/docs/components/focus-capture.html +8 -0
- package/docs/components/html-editor.html +8 -0
- package/docs/components/hybrid-component.html +8 -0
- package/docs/components/icon.html +8 -0
- package/docs/components/import.html +8 -0
- package/docs/components/light-component.html +8 -0
- package/docs/components/markdown-editor.html +8 -0
- package/docs/components/markdown.html +8 -0
- package/docs/components/nav-spacer.html +8 -0
- package/docs/components/nav.html +8 -0
- package/docs/components/pagination.html +876 -0
- package/docs/components/photo-viewer.html +8 -0
- package/docs/components/progress.html +8 -0
- package/docs/components/resize.html +8 -0
- package/docs/components/segmented-control.html +8 -0
- package/docs/components/shadow-component.html +8 -0
- package/docs/components/show-more.html +8 -0
- package/docs/components/slider.html +8 -0
- package/docs/components/sortable.html +8 -0
- package/docs/components/speech-to-text.html +8 -0
- package/docs/components/spinner.html +8 -0
- package/docs/components/split.html +8 -0
- package/docs/components/table.html +8 -0
- package/docs/components/tableControls.html +8 -0
- package/docs/components/tableCustomFields.html +8 -0
- package/docs/components/tableFetchRecords.html +8 -0
- package/docs/components/tableFieldSortHide.html +8 -0
- package/docs/components/tablePagination.html +8 -0
- package/docs/components/tablePlaceholder.html +8 -0
- package/docs/components/tableRecordEditing.html +8 -0
- package/docs/components/tableRecordFiltering.html +8 -0
- package/docs/components/tableRecordHiding.html +8 -0
- package/docs/components/tableRecordSearching.html +8 -0
- package/docs/components/tableRecordSelection.html +8 -0
- package/docs/components/tableRowControls.html +8 -0
- package/docs/components/tableServerSync.html +8 -0
- package/docs/components/tableSorting.html +8 -0
- package/docs/components/tabs.html +8 -0
- package/docs/components/tags.html +8 -0
- package/docs/components/text-to-speech.html +8 -0
- package/docs/components/theme-select.html +8 -0
- package/docs/components/theme-switcher.html +8 -0
- package/docs/components/time.html +8 -0
- package/docs/components/timestamp.html +8 -0
- package/docs/components/toast.html +8 -0
- package/docs/components/toggle.html +8 -0
- package/docs/components/tree.html +8 -0
- package/docs/components/voice-selector.html +8 -0
- package/docs/index.html +8 -0
- package/docs/src/components/Button.js +30 -0
- package/docs/src/components/CodeEditor.js +1 -1
- package/docs/src/components/Combobox.js +2 -1
- package/docs/src/components/ContentSlider.js +1 -1
- package/docs/src/components/HtmlEditor.js +2 -2
- package/docs/src/components/MarkdownEditor.js +3 -3
- package/docs/src/components/Pagination.js +43 -0
- package/docs/src/components/Slider.js +2 -2
- package/docs/src/components/markdownEditorControls/Heading.js +5 -5
- package/docs/src/components/markdownEditorControls/Table.js +2 -2
- package/docs/src/components/paginationControls/FirstPage.js +1 -0
- package/docs/src/components/paginationControls/GotoPage.js +17 -0
- package/docs/src/components/paginationControls/ItemsPerPage.js +15 -0
- package/docs/src/components/paginationControls/LastPage.js +1 -0
- package/docs/src/components/paginationControls/NextPage.js +1 -0
- package/docs/src/components/paginationControls/PageCount.js +1 -0
- package/docs/src/components/paginationControls/PageInfo.js +6 -0
- package/docs/src/components/paginationControls/PaginationButtonControl.js +20 -0
- package/docs/src/components/paginationControls/PaginationControl.js +5 -0
- package/docs/src/components/paginationControls/PrevPage.js +1 -0
- package/docs/src/utils/number.js +1 -0
- package/docs/src/utils/propConverters.js +1 -1
- package/docs/utils/context.html +8 -0
- package/docs/utils/cookie.html +8 -0
- package/docs/utils/debounce.html +8 -0
- package/docs/utils/drag.html +8 -0
- package/docs/utils/elevation.html +8 -0
- package/docs/utils/formatTimestamp.html +8 -0
- package/docs/utils/object.html +8 -0
- package/docs/utils/propConverters.html +8 -0
- package/docs/utils/sanitizeHtml.html +8 -0
- package/docs/utils/string.html +8 -0
- package/docs/utils/theme.html +8 -0
- package/docs/utils/toTitleCase.html +8 -0
- package/docs/utils/type.html +8 -0
- package/docs/utils/voice.html +8 -0
- package/docs/utils/wait.html +8 -0
- package/docs-src/components/button.page.html +95 -0
- package/docs-src/components/pagination.page.html +375 -0
- package/docs-src/nav.fragment.html +8 -0
- package/llms.txt +12 -0
- package/package.json +1 -1
- package/src/components/Button.js +91 -0
- package/src/components/CodeEditor.js +10 -21
- package/src/components/Combobox.js +2 -1
- package/src/components/ContentSlider.js +2 -1
- package/src/components/HtmlEditor.js +43 -57
- package/src/components/MarkdownEditor.js +12 -22
- package/src/components/Pagination.js +207 -0
- package/src/components/Slider.js +6 -5
- package/src/components/markdownEditorControls/Heading.js +3 -2
- package/src/components/markdownEditorControls/Table.js +2 -1
- package/src/components/paginationControls/FirstPage.js +26 -0
- package/src/components/paginationControls/GotoPage.js +56 -0
- package/src/components/paginationControls/ItemsPerPage.js +44 -0
- package/src/components/paginationControls/LastPage.js +26 -0
- package/src/components/paginationControls/NextPage.js +26 -0
- package/src/components/paginationControls/PageCount.js +10 -0
- package/src/components/paginationControls/PageInfo.js +23 -0
- package/src/components/paginationControls/PaginationButtonControl.js +76 -0
- package/src/components/paginationControls/PaginationControl.js +43 -0
- package/src/components/paginationControls/PrevPage.js +26 -0
- package/src/utils/number.js +10 -0
- package/src/utils/propConverters.js +7 -1
- package/tasks/0006-create-pagination-component/screenshot-01-top.png +0 -0
- package/tasks/0006-create-pagination-component/screenshot-02-controls.png +0 -0
- package/tasks/0006-create-pagination-component/screenshot-03-preconfigured.png +0 -0
- package/tasks/0006-create-pagination-component/screenshot-04-live-demo-page1.png +0 -0
- package/tasks/0006-create-pagination-component/screenshot-05-live-demo-page2.png +0 -0
- package/tasks/0006-create-pagination-component/screenshot-06-live-demo-last-page.png +0 -0
- package/tasks/0006-create-pagination-component/screenshot-07-js-reference.png +0 -0
- package/tasks/0006-create-pagination-component.md +136 -0
- package/tasks/released/0006-create-pagination-component/screenshot-01-top.png +0 -0
- package/tasks/released/0006-create-pagination-component/screenshot-02-controls.png +0 -0
- package/tasks/released/0006-create-pagination-component/screenshot-03-preconfigured.png +0 -0
- package/tasks/released/0006-create-pagination-component/screenshot-04-live-demo-page1.png +0 -0
- package/tasks/released/0006-create-pagination-component/screenshot-05-live-demo-page2.png +0 -0
- package/tasks/released/0006-create-pagination-component/screenshot-06-live-demo-last-page.png +0 -0
- package/tasks/released/0006-create-pagination-component/screenshot-07-js-reference.png +0 -0
- package/tasks/released/0006-create-pagination-component.md +136 -0
- package/tests/components/Button.browser-test.js +207 -0
- package/tests/components/CodeEditor.browser-test.js +43 -1
- package/tests/components/HtmlEditor.browser-test.js +88 -0
- package/tests/components/MarkdownEditor.browser-test.js +72 -0
- package/tests/components/Pagination.browser-test.js +478 -0
- package/tests/utils/number.test.js +110 -0
|
@@ -118,6 +118,9 @@
|
|
|
118
118
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
119
119
|
href="../components/photo-viewer.html"
|
|
120
120
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
121
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
122
|
+
href="../components/pagination.html"
|
|
123
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
121
124
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
122
125
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -224,6 +227,9 @@
|
|
|
224
227
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
225
228
|
href="../components/hybrid-component.html"
|
|
226
229
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
230
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
231
|
+
href="../components/button.html"
|
|
232
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
227
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
228
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
229
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -323,6 +329,7 @@
|
|
|
323
329
|
<a href="../components/nav.html">Nav</a>
|
|
324
330
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
325
331
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
332
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
326
333
|
<a href="../components/progress.html">Progress</a>
|
|
327
334
|
<a href="../components/resize.html">Resize</a>
|
|
328
335
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -350,6 +357,7 @@
|
|
|
350
357
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
351
358
|
<a href="../components/light-component.html">Light Component</a>
|
|
352
359
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
360
|
+
<a href="../components/button.html">Button</a>
|
|
353
361
|
</div>
|
|
354
362
|
|
|
355
363
|
<h5 class="mb0">Utils</h5>
|
|
@@ -154,6 +154,9 @@
|
|
|
154
154
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
155
155
|
href="../components/photo-viewer.html"
|
|
156
156
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
157
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
158
|
+
href="../components/pagination.html"
|
|
159
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
157
160
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
158
161
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
162
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -260,6 +263,9 @@
|
|
|
260
263
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
261
264
|
href="../components/hybrid-component.html"
|
|
262
265
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
266
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
267
|
+
href="../components/button.html"
|
|
268
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
263
269
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
264
270
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
265
271
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -359,6 +365,7 @@
|
|
|
359
365
|
<a href="../components/nav.html">Nav</a>
|
|
360
366
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
361
367
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
368
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
362
369
|
<a href="../components/progress.html">Progress</a>
|
|
363
370
|
<a href="../components/resize.html">Resize</a>
|
|
364
371
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -386,6 +393,7 @@
|
|
|
386
393
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
387
394
|
<a href="../components/light-component.html">Light Component</a>
|
|
388
395
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
396
|
+
<a href="../components/button.html">Button</a>
|
|
389
397
|
</div>
|
|
390
398
|
|
|
391
399
|
<h5 class="mb0">Utils</h5>
|
|
@@ -155,6 +155,9 @@
|
|
|
155
155
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
156
156
|
href="../components/photo-viewer.html"
|
|
157
157
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
158
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
159
|
+
href="../components/pagination.html"
|
|
160
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
158
161
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
159
162
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
160
163
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -261,6 +264,9 @@
|
|
|
261
264
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
262
265
|
href="../components/hybrid-component.html"
|
|
263
266
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
267
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
268
|
+
href="../components/button.html"
|
|
269
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
264
270
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
265
271
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
266
272
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +366,7 @@
|
|
|
360
366
|
<a href="../components/nav.html">Nav</a>
|
|
361
367
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
362
368
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
369
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
363
370
|
<a href="../components/progress.html">Progress</a>
|
|
364
371
|
<a href="../components/resize.html">Resize</a>
|
|
365
372
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -387,6 +394,7 @@
|
|
|
387
394
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
388
395
|
<a href="../components/light-component.html">Light Component</a>
|
|
389
396
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
397
|
+
<a href="../components/button.html">Button</a>
|
|
390
398
|
</div>
|
|
391
399
|
|
|
392
400
|
<h5 class="mb0">Utils</h5>
|
|
@@ -154,6 +154,9 @@
|
|
|
154
154
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
155
155
|
href="../components/photo-viewer.html"
|
|
156
156
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
157
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
158
|
+
href="../components/pagination.html"
|
|
159
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
157
160
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
158
161
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
162
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -260,6 +263,9 @@
|
|
|
260
263
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
261
264
|
href="../components/hybrid-component.html"
|
|
262
265
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
266
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
267
|
+
href="../components/button.html"
|
|
268
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
263
269
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
264
270
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
265
271
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -359,6 +365,7 @@
|
|
|
359
365
|
<a href="../components/nav.html">Nav</a>
|
|
360
366
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
361
367
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
368
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
362
369
|
<a href="../components/progress.html">Progress</a>
|
|
363
370
|
<a href="../components/resize.html">Resize</a>
|
|
364
371
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -386,6 +393,7 @@
|
|
|
386
393
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
387
394
|
<a href="../components/light-component.html">Light Component</a>
|
|
388
395
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
396
|
+
<a href="../components/button.html">Button</a>
|
|
389
397
|
</div>
|
|
390
398
|
|
|
391
399
|
<h5 class="mb0">Utils</h5>
|
|
@@ -155,6 +155,9 @@
|
|
|
155
155
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
156
156
|
href="../components/photo-viewer.html"
|
|
157
157
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
158
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
159
|
+
href="../components/pagination.html"
|
|
160
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
158
161
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
159
162
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
160
163
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -261,6 +264,9 @@
|
|
|
261
264
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
262
265
|
href="../components/hybrid-component.html"
|
|
263
266
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
267
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
268
|
+
href="../components/button.html"
|
|
269
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
264
270
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
265
271
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
266
272
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +366,7 @@
|
|
|
360
366
|
<a href="../components/nav.html">Nav</a>
|
|
361
367
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
362
368
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
369
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
363
370
|
<a href="../components/progress.html">Progress</a>
|
|
364
371
|
<a href="../components/resize.html">Resize</a>
|
|
365
372
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -387,6 +394,7 @@
|
|
|
387
394
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
388
395
|
<a href="../components/light-component.html">Light Component</a>
|
|
389
396
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
397
|
+
<a href="../components/button.html">Button</a>
|
|
390
398
|
</div>
|
|
391
399
|
|
|
392
400
|
<h5 class="mb0">Utils</h5>
|
|
@@ -154,6 +154,9 @@
|
|
|
154
154
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
155
155
|
href="../components/photo-viewer.html"
|
|
156
156
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
157
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
158
|
+
href="../components/pagination.html"
|
|
159
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
157
160
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
158
161
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
162
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -260,6 +263,9 @@
|
|
|
260
263
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
261
264
|
href="../components/hybrid-component.html"
|
|
262
265
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
266
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
267
|
+
href="../components/button.html"
|
|
268
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
263
269
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
264
270
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
265
271
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -359,6 +365,7 @@
|
|
|
359
365
|
<a href="../components/nav.html">Nav</a>
|
|
360
366
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
361
367
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
368
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
362
369
|
<a href="../components/progress.html">Progress</a>
|
|
363
370
|
<a href="../components/resize.html">Resize</a>
|
|
364
371
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -386,6 +393,7 @@
|
|
|
386
393
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
387
394
|
<a href="../components/light-component.html">Light Component</a>
|
|
388
395
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
396
|
+
<a href="../components/button.html">Button</a>
|
|
389
397
|
</div>
|
|
390
398
|
|
|
391
399
|
<h5 class="mb0">Utils</h5>
|
|
@@ -154,6 +154,9 @@
|
|
|
154
154
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
155
155
|
href="../components/photo-viewer.html"
|
|
156
156
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
157
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
158
|
+
href="../components/pagination.html"
|
|
159
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
157
160
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
158
161
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
162
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -260,6 +263,9 @@
|
|
|
260
263
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
261
264
|
href="../components/hybrid-component.html"
|
|
262
265
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
266
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
267
|
+
href="../components/button.html"
|
|
268
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
263
269
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
264
270
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
265
271
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -359,6 +365,7 @@
|
|
|
359
365
|
<a href="../components/nav.html">Nav</a>
|
|
360
366
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
361
367
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
368
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
362
369
|
<a href="../components/progress.html">Progress</a>
|
|
363
370
|
<a href="../components/resize.html">Resize</a>
|
|
364
371
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -386,6 +393,7 @@
|
|
|
386
393
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
387
394
|
<a href="../components/light-component.html">Light Component</a>
|
|
388
395
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
396
|
+
<a href="../components/button.html">Button</a>
|
|
389
397
|
</div>
|
|
390
398
|
|
|
391
399
|
<h5 class="mb0">Utils</h5>
|
|
@@ -154,6 +154,9 @@
|
|
|
154
154
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
155
155
|
href="../components/photo-viewer.html"
|
|
156
156
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
157
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
158
|
+
href="../components/pagination.html"
|
|
159
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
157
160
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
158
161
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
162
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -260,6 +263,9 @@
|
|
|
260
263
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
261
264
|
href="../components/hybrid-component.html"
|
|
262
265
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
266
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
267
|
+
href="../components/button.html"
|
|
268
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
263
269
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
264
270
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
265
271
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -359,6 +365,7 @@
|
|
|
359
365
|
<a href="../components/nav.html">Nav</a>
|
|
360
366
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
361
367
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
368
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
362
369
|
<a href="../components/progress.html">Progress</a>
|
|
363
370
|
<a href="../components/resize.html">Resize</a>
|
|
364
371
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -386,6 +393,7 @@
|
|
|
386
393
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
387
394
|
<a href="../components/light-component.html">Light Component</a>
|
|
388
395
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
396
|
+
<a href="../components/button.html">Button</a>
|
|
389
397
|
</div>
|
|
390
398
|
|
|
391
399
|
<h5 class="mb0">Utils</h5>
|
|
@@ -155,6 +155,9 @@
|
|
|
155
155
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
156
156
|
href="../components/photo-viewer.html"
|
|
157
157
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
158
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
159
|
+
href="../components/pagination.html"
|
|
160
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
158
161
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
159
162
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
160
163
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -261,6 +264,9 @@
|
|
|
261
264
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
262
265
|
href="../components/hybrid-component.html"
|
|
263
266
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
267
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
268
|
+
href="../components/button.html"
|
|
269
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
264
270
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
265
271
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
266
272
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +366,7 @@
|
|
|
360
366
|
<a href="../components/nav.html">Nav</a>
|
|
361
367
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
362
368
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
369
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
363
370
|
<a href="../components/progress.html">Progress</a>
|
|
364
371
|
<a href="../components/resize.html">Resize</a>
|
|
365
372
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -387,6 +394,7 @@
|
|
|
387
394
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
388
395
|
<a href="../components/light-component.html">Light Component</a>
|
|
389
396
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
397
|
+
<a href="../components/button.html">Button</a>
|
|
390
398
|
</div>
|
|
391
399
|
|
|
392
400
|
<h5 class="mb0">Utils</h5>
|
|
@@ -116,6 +116,9 @@
|
|
|
116
116
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
117
117
|
href="../components/photo-viewer.html"
|
|
118
118
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
119
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
120
|
+
href="../components/pagination.html"
|
|
121
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
119
122
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
120
123
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
124
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -222,6 +225,9 @@
|
|
|
222
225
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
223
226
|
href="../components/hybrid-component.html"
|
|
224
227
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
228
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
|
+
href="../components/button.html"
|
|
230
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
225
231
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
226
232
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
227
233
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -321,6 +327,7 @@
|
|
|
321
327
|
<a href="../components/nav.html">Nav</a>
|
|
322
328
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
323
329
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
330
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
324
331
|
<a href="../components/progress.html">Progress</a>
|
|
325
332
|
<a href="../components/resize.html">Resize</a>
|
|
326
333
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -348,6 +355,7 @@
|
|
|
348
355
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
349
356
|
<a href="../components/light-component.html">Light Component</a>
|
|
350
357
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
358
|
+
<a href="../components/button.html">Button</a>
|
|
351
359
|
</div>
|
|
352
360
|
|
|
353
361
|
<h5 class="mb0">Utils</h5>
|
|
@@ -116,6 +116,9 @@
|
|
|
116
116
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
117
117
|
href="../components/photo-viewer.html"
|
|
118
118
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
119
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
120
|
+
href="../components/pagination.html"
|
|
121
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
119
122
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
120
123
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
124
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -222,6 +225,9 @@
|
|
|
222
225
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
223
226
|
href="../components/hybrid-component.html"
|
|
224
227
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
228
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
|
+
href="../components/button.html"
|
|
230
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
225
231
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
226
232
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
227
233
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -321,6 +327,7 @@
|
|
|
321
327
|
<a href="../components/nav.html">Nav</a>
|
|
322
328
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
323
329
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
330
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
324
331
|
<a href="../components/progress.html">Progress</a>
|
|
325
332
|
<a href="../components/resize.html">Resize</a>
|
|
326
333
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -348,6 +355,7 @@
|
|
|
348
355
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
349
356
|
<a href="../components/light-component.html">Light Component</a>
|
|
350
357
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
358
|
+
<a href="../components/button.html">Button</a>
|
|
351
359
|
</div>
|
|
352
360
|
|
|
353
361
|
<h5 class="mb0">Utils</h5>
|
|
@@ -116,6 +116,9 @@
|
|
|
116
116
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
117
117
|
href="../components/photo-viewer.html"
|
|
118
118
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
119
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
120
|
+
href="../components/pagination.html"
|
|
121
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
119
122
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
120
123
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
124
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -222,6 +225,9 @@
|
|
|
222
225
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
223
226
|
href="../components/hybrid-component.html"
|
|
224
227
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
228
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
|
+
href="../components/button.html"
|
|
230
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
225
231
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
226
232
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
227
233
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -321,6 +327,7 @@
|
|
|
321
327
|
<a href="../components/nav.html">Nav</a>
|
|
322
328
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
323
329
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
330
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
324
331
|
<a href="../components/progress.html">Progress</a>
|
|
325
332
|
<a href="../components/resize.html">Resize</a>
|
|
326
333
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -348,6 +355,7 @@
|
|
|
348
355
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
349
356
|
<a href="../components/light-component.html">Light Component</a>
|
|
350
357
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
358
|
+
<a href="../components/button.html">Button</a>
|
|
351
359
|
</div>
|
|
352
360
|
|
|
353
361
|
<h5 class="mb0">Utils</h5>
|
|
@@ -116,6 +116,9 @@
|
|
|
116
116
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
117
117
|
href="../components/photo-viewer.html"
|
|
118
118
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
119
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
120
|
+
href="../components/pagination.html"
|
|
121
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
119
122
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
120
123
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
124
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -222,6 +225,9 @@
|
|
|
222
225
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
223
226
|
href="../components/hybrid-component.html"
|
|
224
227
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
228
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
|
+
href="../components/button.html"
|
|
230
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
225
231
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
226
232
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
227
233
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -321,6 +327,7 @@
|
|
|
321
327
|
<a href="../components/nav.html">Nav</a>
|
|
322
328
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
323
329
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
330
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
324
331
|
<a href="../components/progress.html">Progress</a>
|
|
325
332
|
<a href="../components/resize.html">Resize</a>
|
|
326
333
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -348,6 +355,7 @@
|
|
|
348
355
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
349
356
|
<a href="../components/light-component.html">Light Component</a>
|
|
350
357
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
358
|
+
<a href="../components/button.html">Button</a>
|
|
351
359
|
</div>
|
|
352
360
|
|
|
353
361
|
<h5 class="mb0">Utils</h5>
|
|
@@ -116,6 +116,9 @@
|
|
|
116
116
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
117
117
|
href="../components/photo-viewer.html"
|
|
118
118
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
119
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
120
|
+
href="../components/pagination.html"
|
|
121
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
119
122
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
120
123
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
124
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -222,6 +225,9 @@
|
|
|
222
225
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
223
226
|
href="../components/hybrid-component.html"
|
|
224
227
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
228
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
|
+
href="../components/button.html"
|
|
230
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
225
231
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
226
232
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
227
233
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -321,6 +327,7 @@
|
|
|
321
327
|
<a href="../components/nav.html">Nav</a>
|
|
322
328
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
323
329
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
330
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
324
331
|
<a href="../components/progress.html">Progress</a>
|
|
325
332
|
<a href="../components/resize.html">Resize</a>
|
|
326
333
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -348,6 +355,7 @@
|
|
|
348
355
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
349
356
|
<a href="../components/light-component.html">Light Component</a>
|
|
350
357
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
358
|
+
<a href="../components/button.html">Button</a>
|
|
351
359
|
</div>
|
|
352
360
|
|
|
353
361
|
<h5 class="mb0">Utils</h5>
|
|
@@ -116,6 +116,9 @@
|
|
|
116
116
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
117
117
|
href="../components/photo-viewer.html"
|
|
118
118
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
119
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
120
|
+
href="../components/pagination.html"
|
|
121
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
119
122
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
120
123
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
124
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -222,6 +225,9 @@
|
|
|
222
225
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
223
226
|
href="../components/hybrid-component.html"
|
|
224
227
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
228
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
|
+
href="../components/button.html"
|
|
230
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
225
231
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
226
232
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
227
233
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -321,6 +327,7 @@
|
|
|
321
327
|
<a href="../components/nav.html">Nav</a>
|
|
322
328
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
323
329
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
330
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
324
331
|
<a href="../components/progress.html">Progress</a>
|
|
325
332
|
<a href="../components/resize.html">Resize</a>
|
|
326
333
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -348,6 +355,7 @@
|
|
|
348
355
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
349
356
|
<a href="../components/light-component.html">Light Component</a>
|
|
350
357
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
358
|
+
<a href="../components/button.html">Button</a>
|
|
351
359
|
</div>
|
|
352
360
|
|
|
353
361
|
<h5 class="mb0">Utils</h5>
|
|
@@ -116,6 +116,9 @@
|
|
|
116
116
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
117
117
|
href="../components/photo-viewer.html"
|
|
118
118
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
119
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
120
|
+
href="../components/pagination.html"
|
|
121
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
119
122
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
120
123
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
124
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -222,6 +225,9 @@
|
|
|
222
225
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
223
226
|
href="../components/hybrid-component.html"
|
|
224
227
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
228
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
|
+
href="../components/button.html"
|
|
230
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
225
231
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
226
232
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
227
233
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -321,6 +327,7 @@
|
|
|
321
327
|
<a href="../components/nav.html">Nav</a>
|
|
322
328
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
323
329
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
330
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
324
331
|
<a href="../components/progress.html">Progress</a>
|
|
325
332
|
<a href="../components/resize.html">Resize</a>
|
|
326
333
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -348,6 +355,7 @@
|
|
|
348
355
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
349
356
|
<a href="../components/light-component.html">Light Component</a>
|
|
350
357
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
358
|
+
<a href="../components/button.html">Button</a>
|
|
351
359
|
</div>
|
|
352
360
|
|
|
353
361
|
<h5 class="mb0">Utils</h5>
|
|
@@ -116,6 +116,9 @@
|
|
|
116
116
|
<k-filter-item filter-keywords="photo viewer photoviewer components"><a
|
|
117
117
|
href="../components/photo-viewer.html"
|
|
118
118
|
>Photo Viewer<br><small>Component</small></a></k-filter-item>
|
|
119
|
+
<k-filter-item filter-keywords="pagination pager page components"><a
|
|
120
|
+
href="../components/pagination.html"
|
|
121
|
+
>Pagination<br><small>Component</small></a></k-filter-item>
|
|
119
122
|
<k-filter-item filter-keywords="progress loading components"><a
|
|
120
123
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
124
|
<k-filter-item filter-keywords="resize components"><a
|
|
@@ -222,6 +225,9 @@
|
|
|
222
225
|
<k-filter-item filter-keywords="hybrid component base"><a
|
|
223
226
|
href="../components/hybrid-component.html"
|
|
224
227
|
>Hybrid Component<br><small>Base Component</small></a></k-filter-item>
|
|
228
|
+
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
|
+
href="../components/button.html"
|
|
230
|
+
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
225
231
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
226
232
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
227
233
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -321,6 +327,7 @@
|
|
|
321
327
|
<a href="../components/nav.html">Nav</a>
|
|
322
328
|
<a href="../components/nav-spacer.html">Nav Spacer</a>
|
|
323
329
|
<a href="../components/photo-viewer.html">Photo Viewer</a>
|
|
330
|
+
<a href="../components/pagination.html">Pagination</a>
|
|
324
331
|
<a href="../components/progress.html">Progress</a>
|
|
325
332
|
<a href="../components/resize.html">Resize</a>
|
|
326
333
|
<a href="../components/show-more.html">Show More</a>
|
|
@@ -348,6 +355,7 @@
|
|
|
348
355
|
<a href="../components/shadow-component.html">Shadow Component</a>
|
|
349
356
|
<a href="../components/light-component.html">Light Component</a>
|
|
350
357
|
<a href="../components/hybrid-component.html">Hybrid Component</a>
|
|
358
|
+
<a href="../components/button.html">Button</a>
|
|
351
359
|
</div>
|
|
352
360
|
|
|
353
361
|
<h5 class="mb0">Utils</h5>
|