kempo-ui 0.4.11 → 0.4.13
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 +24 -0
- package/dist/components/SegmentedControl.js +16 -0
- package/dist/components/Tabs.js +4 -4
- package/docs/components/SegmentedControl.html +649 -0
- package/docs/components/accordion.html +3 -0
- package/docs/components/aside.html +3 -0
- package/docs/components/calendar.html +3 -0
- package/docs/components/card.html +3 -0
- package/docs/components/chat.html +3 -0
- package/docs/components/code-editor.html +3 -0
- package/docs/components/color-picker.html +3 -0
- package/docs/components/combobox.html +3 -0
- package/docs/components/content-slider.html +3 -0
- package/docs/components/context.html +3 -0
- package/docs/components/dialog.html +3 -0
- package/docs/components/dropdown.html +3 -0
- package/docs/components/filter-list.html +3 -0
- package/docs/components/focus-capture.html +3 -0
- package/docs/components/html-editor.html +3 -0
- package/docs/components/hybrid-component.html +3 -0
- package/docs/components/icon.html +3 -0
- package/docs/components/import.html +3 -0
- package/docs/components/light-component.html +3 -0
- package/docs/components/markdown-editor.html +3 -0
- package/docs/components/markdown.html +3 -0
- package/docs/components/nav-spacer.html +3 -0
- package/docs/components/nav.html +3 -0
- package/docs/components/photo-viewer.html +3 -0
- package/docs/components/progress.html +3 -0
- package/docs/components/resize.html +3 -0
- package/docs/components/segmented-control.html +728 -0
- package/docs/components/shadow-component.html +3 -0
- package/docs/components/show-more.html +3 -0
- package/docs/components/slider.html +3 -0
- package/docs/components/sortable.html +3 -0
- package/docs/components/speech-to-text.html +3 -0
- package/docs/components/spinner.html +3 -0
- package/docs/components/split.html +3 -0
- package/docs/components/table.html +3 -0
- package/docs/components/tableControls.html +3 -0
- package/docs/components/tableCustomFields.html +3 -0
- package/docs/components/tableFetchRecords.html +3 -0
- package/docs/components/tableFieldSortHide.html +3 -0
- package/docs/components/tablePagination.html +3 -0
- package/docs/components/tablePlaceholder.html +3 -0
- package/docs/components/tableRecordEditing.html +3 -0
- package/docs/components/tableRecordFiltering.html +3 -0
- package/docs/components/tableRecordHiding.html +3 -0
- package/docs/components/tableRecordSearching.html +3 -0
- package/docs/components/tableRecordSelection.html +3 -0
- package/docs/components/tableRowControls.html +3 -0
- package/docs/components/tableServerSync.html +3 -0
- package/docs/components/tableSorting.html +3 -0
- package/docs/components/tabs.html +32 -0
- package/docs/components/tags.html +3 -0
- package/docs/components/text-to-speech.html +3 -0
- package/docs/components/theme-select.html +3 -0
- package/docs/components/theme-switcher.html +3 -0
- package/docs/components/time.html +3 -0
- package/docs/components/timestamp.html +3 -0
- package/docs/components/toast.html +3 -0
- package/docs/components/toggle.html +3 -0
- package/docs/components/tree.html +3 -0
- package/docs/components/voice-selector.html +3 -0
- package/docs/icons/account-circle.svg +1 -1
- package/docs/index.html +9 -0
- package/docs/src/components/SegmentedControl.js +16 -0
- package/docs/src/components/Tabs.js +4 -4
- package/docs/utils/context.html +3 -0
- package/docs/utils/cookie.html +3 -0
- package/docs/utils/debounce.html +3 -0
- package/docs/utils/drag.html +3 -0
- package/docs/utils/elevation.html +3 -0
- package/docs/utils/formatTimestamp.html +3 -0
- package/docs/utils/object.html +3 -0
- package/docs/utils/propConverters.html +3 -0
- package/docs/utils/sanitizeHtml.html +3 -0
- package/docs/utils/string.html +3 -0
- package/docs/utils/theme.html +3 -0
- package/docs/utils/toTitleCase.html +3 -0
- package/docs/utils/type.html +3 -0
- package/docs/utils/voice.html +3 -0
- package/docs/utils/wait.html +3 -0
- package/docs-src/components/segmented-control.page.html +236 -0
- package/docs-src/components/tabs.page.html +29 -0
- package/docs-src/index.page.html +6 -0
- package/docs-src/nav.fragment.html +3 -0
- package/icons/account-circle.svg +1 -1
- package/llms.txt +2 -1
- package/package.json +1 -1
- package/src/components/SegmentedControl.js +118 -0
- package/src/components/Tabs.js +21 -1
- package/tasks/released/0004-create-segmented-control-component/component-rendering.png +0 -0
- package/tasks/released/0004-create-segmented-control-component/final-component-page.png +0 -0
- package/tasks/released/0004-create-segmented-control-component/form-integration-section.png +0 -0
- package/tasks/released/0004-create-segmented-control-component/option-element-section.png +0 -0
- package/tasks/released/0004-create-segmented-control-component/page-screenshot.png +0 -0
- package/tasks/released/0004-create-segmented-control-component/validation-form-integration.png +0 -0
- package/tasks/released/0004-create-segmented-control-component/validation-screenshot-1-full-page.png +0 -0
- package/tasks/released/0004-create-segmented-control-component/validation-screenshot-2-icon-options.png +0 -0
- package/tasks/released/0004-create-segmented-control-component.md +106 -0
- package/tasks/released/0005-add-persistent-id-to-tabs.md +98 -0
- package/tests/components/SegmentedControl.browser-test.js +223 -0
- package/tests/components/Tabs.browser-test.js +262 -0
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
package/docs/components/nav.html
CHANGED
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -120,6 +120,9 @@
|
|
|
120
120
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
121
121
|
<k-filter-item filter-keywords="resize components"><a
|
|
122
122
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
123
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
124
|
+
href="../components/segmented-control.html"
|
|
125
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
123
126
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
124
127
|
href="../components/show-more.html"
|
|
125
128
|
>Show More<br><small>Component</small></a></k-filter-item>
|