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>
|
|
@@ -158,6 +158,9 @@
|
|
|
158
158
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
159
|
<k-filter-item filter-keywords="resize components"><a
|
|
160
160
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
161
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
162
|
+
href="../components/segmented-control.html"
|
|
163
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
161
164
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
162
165
|
href="../components/show-more.html"
|
|
163
166
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -158,6 +158,9 @@
|
|
|
158
158
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
159
|
<k-filter-item filter-keywords="resize components"><a
|
|
160
160
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
161
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
162
|
+
href="../components/segmented-control.html"
|
|
163
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
161
164
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
162
165
|
href="../components/show-more.html"
|
|
163
166
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -159,6 +159,9 @@
|
|
|
159
159
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
160
160
|
<k-filter-item filter-keywords="resize components"><a
|
|
161
161
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
162
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
163
|
+
href="../components/segmented-control.html"
|
|
164
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
162
165
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
163
166
|
href="../components/show-more.html"
|
|
164
167
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -159,6 +159,9 @@
|
|
|
159
159
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
160
160
|
<k-filter-item filter-keywords="resize components"><a
|
|
161
161
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
162
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
163
|
+
href="../components/segmented-control.html"
|
|
164
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
162
165
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
163
166
|
href="../components/show-more.html"
|
|
164
167
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -158,6 +158,9 @@
|
|
|
158
158
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
159
|
<k-filter-item filter-keywords="resize components"><a
|
|
160
160
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
161
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
162
|
+
href="../components/segmented-control.html"
|
|
163
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
161
164
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
162
165
|
href="../components/show-more.html"
|
|
163
166
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -122,6 +122,9 @@
|
|
|
122
122
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
123
123
|
<k-filter-item filter-keywords="resize components"><a
|
|
124
124
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
125
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
126
|
+
href="../components/segmented-control.html"
|
|
127
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
125
128
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
126
129
|
href="../components/show-more.html"
|
|
127
130
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -158,6 +158,9 @@
|
|
|
158
158
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
159
|
<k-filter-item filter-keywords="resize components"><a
|
|
160
160
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
161
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
162
|
+
href="../components/segmented-control.html"
|
|
163
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
161
164
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
162
165
|
href="../components/show-more.html"
|
|
163
166
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -159,6 +159,9 @@
|
|
|
159
159
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
160
160
|
<k-filter-item filter-keywords="resize components"><a
|
|
161
161
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
162
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
163
|
+
href="../components/segmented-control.html"
|
|
164
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
162
165
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
163
166
|
href="../components/show-more.html"
|
|
164
167
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -158,6 +158,9 @@
|
|
|
158
158
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
159
|
<k-filter-item filter-keywords="resize components"><a
|
|
160
160
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
161
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
162
|
+
href="../components/segmented-control.html"
|
|
163
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
161
164
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
162
165
|
href="../components/show-more.html"
|
|
163
166
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -159,6 +159,9 @@
|
|
|
159
159
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
160
160
|
<k-filter-item filter-keywords="resize components"><a
|
|
161
161
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
162
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
163
|
+
href="../components/segmented-control.html"
|
|
164
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
162
165
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
163
166
|
href="../components/show-more.html"
|
|
164
167
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -158,6 +158,9 @@
|
|
|
158
158
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
159
|
<k-filter-item filter-keywords="resize components"><a
|
|
160
160
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
161
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
162
|
+
href="../components/segmented-control.html"
|
|
163
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
161
164
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
162
165
|
href="../components/show-more.html"
|
|
163
166
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -158,6 +158,9 @@
|
|
|
158
158
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
159
|
<k-filter-item filter-keywords="resize components"><a
|
|
160
160
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
161
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
162
|
+
href="../components/segmented-control.html"
|
|
163
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
161
164
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
162
165
|
href="../components/show-more.html"
|
|
163
166
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -158,6 +158,9 @@
|
|
|
158
158
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
159
159
|
<k-filter-item filter-keywords="resize components"><a
|
|
160
160
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
161
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
162
|
+
href="../components/segmented-control.html"
|
|
163
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
161
164
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
162
165
|
href="../components/show-more.html"
|
|
163
166
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
@@ -159,6 +159,9 @@
|
|
|
159
159
|
href="../components/progress.html">Progress<br><small>Component</small></a></k-filter-item>
|
|
160
160
|
<k-filter-item filter-keywords="resize components"><a
|
|
161
161
|
href="../components/resize.html">Resize<br><small>Component</small></a></k-filter-item>
|
|
162
|
+
<k-filter-item filter-keywords="segmented control segment option button group components"><a
|
|
163
|
+
href="../components/segmented-control.html"
|
|
164
|
+
>Segmented Control<br><small>Component</small></a></k-filter-item>
|
|
162
165
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
163
166
|
href="../components/show-more.html"
|
|
164
167
|
>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>
|
|
@@ -494,6 +497,7 @@
|
|
|
494
497
|
<a href="#tabSpacers">Tab Spacers</a><br />
|
|
495
498
|
<a href="#scrollingTabs">Scrolling Tabs</a><br />
|
|
496
499
|
<a href="#fixedHeight">Fixed Height</a><br />
|
|
500
|
+
<a href="#persistentState">Persistent State</a><br />
|
|
497
501
|
<h6 class="mt"><a href="#jsRef" class="no-link">JavaScript Reference</a></h6>
|
|
498
502
|
<a href="#constructor">Constructor</a><br />
|
|
499
503
|
<a href="#requirements">Requirements</a><br />
|
|
@@ -640,6 +644,30 @@
|
|
|
640
644
|
</div>
|
|
641
645
|
</div>
|
|
642
646
|
|
|
647
|
+
<h3 id="persistentState"><a href="#persistentState" class="no-link">Persistent State</a></h3>
|
|
648
|
+
<p>Use the <code>persistent-id</code> attribute to automatically save and restore the active tab to browser localStorage. When the component is reloaded, it will restore the previously active tab.</p>
|
|
649
|
+
<div class="row -mx mb">
|
|
650
|
+
<div class="col d-span-6 m-span-12 px">
|
|
651
|
+
<k-card label="HTML">
|
|
652
|
+
<pre><code class="hljs xml"><span class="hljs-tag"><<span class="hljs-name">k-tabs</span> <span class="hljs-attr">persistent-id</span>=<span class="hljs-string">"userPreferences"</span>></span><br /> <span class="hljs-tag"><<span class="hljs-name">k-tab</span> <span class="hljs-attr">for</span>=<span class="hljs-string">"account"</span>></span>Account<span class="hljs-tag"></<span class="hljs-name">k-tab</span>></span><br /> <span class="hljs-tag"><<span class="hljs-name">k-tab</span> <span class="hljs-attr">for</span>=<span class="hljs-string">"settings"</span>></span>Settings<span class="hljs-tag"></<span class="hljs-name">k-tab</span>></span><br /> <span class="hljs-tag"><<span class="hljs-name">k-tab-content</span> <span class="hljs-attr">name</span>=<span class="hljs-string">"account"</span>></span><br /> <span class="hljs-tag"><<span class="hljs-name">p</span>></span>Account settings content<span class="hljs-tag"></<span class="hljs-name">p</span>></span><br /> <span class="hljs-tag"></<span class="hljs-name">k-tab-content</span>></span><br /> <span class="hljs-tag"><<span class="hljs-name">k-tab-content</span> <span class="hljs-attr">name</span>=<span class="hljs-string">"settings"</span>></span><br /> <span class="hljs-tag"><<span class="hljs-name">p</span>></span>General settings content<span class="hljs-tag"></<span class="hljs-name">p</span>></span><br /> <span class="hljs-tag"></<span class="hljs-name">k-tab-content</span>></span><br /><span class="hljs-tag"></<span class="hljs-name">k-tabs</span>></span></code></pre>
|
|
653
|
+
</k-card>
|
|
654
|
+
</div>
|
|
655
|
+
<div class="col d-span-6 m-span-12 px">
|
|
656
|
+
<k-card label="Results">
|
|
657
|
+
<k-tabs persistent-id="tabsPersistentExample">
|
|
658
|
+
<k-tab for="account">Account</k-tab>
|
|
659
|
+
<k-tab for="settings">Settings</k-tab>
|
|
660
|
+
<k-tab-content name="account">
|
|
661
|
+
<p>Account settings content</p>
|
|
662
|
+
</k-tab-content>
|
|
663
|
+
<k-tab-content name="settings">
|
|
664
|
+
<p>General settings content</p>
|
|
665
|
+
</k-tab-content>
|
|
666
|
+
</k-tabs>
|
|
667
|
+
</k-card>
|
|
668
|
+
</div>
|
|
669
|
+
</div>
|
|
670
|
+
|
|
643
671
|
<h2 id="jsRef"><a href="#jsRef" class="no-link">JavaScript Reference</a></h2>
|
|
644
672
|
<h3 id="constructor"><a href="#constructor" class="no-link">Constructor</a></h3>
|
|
645
673
|
<h6>Extends <a href="./shadow-component.html">ShadowComponent</a></h6>
|
|
@@ -655,6 +683,8 @@
|
|
|
655
683
|
<p>The name of the active tab. Syncs to <code>active</code> attribute.</p>
|
|
656
684
|
<h5><code>fixedHeight<i>: boolean</i></code></h5>
|
|
657
685
|
<p>Whether the tabs component uses fixed height mode. Syncs to <code>fixed-height</code> attribute.</p>
|
|
686
|
+
<h5><code>persistentId<i>: string</i></code></h5>
|
|
687
|
+
<p>A unique identifier for persisting the active tab state to localStorage. When set, the component will save the active tab name and restore it on reload. Syncs to <code>persistent-id</code> attribute.</p>
|
|
658
688
|
<h5><code>contents<i>: TabContent[]</i></code></h5>
|
|
659
689
|
<p>Returns an array of all tab content elements.</p>
|
|
660
690
|
<h5><code>tabs<i>: Tab[]</i></code></h5>
|
|
@@ -677,6 +707,8 @@
|
|
|
677
707
|
<h3 id="events"><a href="#events" class="no-link">Events</a></h3>
|
|
678
708
|
<h5><code>tab</code></h5>
|
|
679
709
|
<p>Fired when the active tab changes. Detail contains <code>{ tab }</code> with the name of the new active tab.</p>
|
|
710
|
+
<h5><code>restored</code></h5>
|
|
711
|
+
<p>Fired when the active tab is restored from persistent localStorage. Detail contains <code>{ tab }</code> with the name of the restored active tab. Only fires when <code>persistent-id</code> is set and a stored value is found.</p>
|
|
680
712
|
|
|
681
713
|
</k-main>
|
|
682
714
|
<div style="height:33vh"></div>
|
|
@@ -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>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path fill="currentColor" d="M234-276q51-39 114-61.5T480-360q69 0 132 22.5T726-276q35-41 54.5-93T800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 59 19.5 111t54.5 93Zm246-164q-59 0-99.5-40.5T340-580q0-59 40.5-99.5T480-720q59 0 99.5 40.5T620-580q0 59-40.5 99.5T480-440Zm0 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q53 0 100-15.5t86-44.5q-39-29-86-44.5T480-280q-53 0-100 15.5T294-220q39 29 86 44.5T480-160Zm0-360q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm0-60Zm0 360Z"/></svg>
|
package/docs/index.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>
|
|
@@ -661,6 +664,12 @@
|
|
|
661
664
|
<p class="tc-muted">Draggable handle to resize adjacent elements dynamically.</p>
|
|
662
665
|
</a>
|
|
663
666
|
</div>
|
|
667
|
+
<div class="span-12 t-span-6 d-span-4 px">
|
|
668
|
+
<a href="./components/segmented-control.html" class="card mb no-link d-b">
|
|
669
|
+
<h3 class="tc-primary">Segmented Control</h3>
|
|
670
|
+
<p class="tc-muted">Button group where one option can be selected at a time with support for custom sub-components.</p>
|
|
671
|
+
</a>
|
|
672
|
+
</div>
|
|
664
673
|
<div class="span-12 t-span-6 d-span-4 px">
|
|
665
674
|
<a href="./components/show-more.html" class="card mb no-link d-b">
|
|
666
675
|
<h3 class="tc-primary">Show More</h3>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import{html as t,css as e,unsafeHTML as s}from"../lit-all.min.js";import n from"./ShadowComponent.js";class i extends n{static formAssociated=!0;static properties={value:{type:String,reflect:!0},name:{type:String}};constructor(){if(super(),this.value="",this.name="",this.initialValue="","function"==typeof this.attachInternals)try{this.internals=this.attachInternals()}catch(t){}}connectedCallback(){super.connectedCallback(),this.initialValue=this.getAttribute("value")||"",this.addEventListener("slotchange",this.handleSlotChange,!0);const t=this.closest("form");t&&t.addEventListener("reset",this.handleReset,!0)}disconnectedCallback(){super.disconnectedCallback(),this.removeEventListener("slotchange",this.handleSlotChange,!0);const t=this.closest("form");t&&t.removeEventListener("reset",this.handleReset,!0)}updated(t){if(super.updated(t),t.has("value")){if(this.internals&&"function"==typeof this.internals.setFormValue)try{this.internals.setFormValue(this.value||null)}catch(t){}this.dispatchEvent(new CustomEvent("change",{detail:{value:this.value},bubbles:!0}))}}handleSlotChange=()=>{this.requestUpdate()};handleReset=()=>{this.value=this.initialValue};handleButtonClick=t=>{this.value=t};getOptions=()=>Array.from(this.children).filter(t=>"K-SC-OPTION"===t.tagName);render(){const e=this.getOptions();return t`
|
|
2
|
+
<div class="btn-grp">
|
|
3
|
+
${e.map(e=>{const n=e.getAttribute("value")||"",i=n===this.value;return t`
|
|
4
|
+
<button
|
|
5
|
+
class="${i?"primary":""}"
|
|
6
|
+
@click=${()=>this.handleButtonClick(n)}
|
|
7
|
+
?aria-pressed=${i}
|
|
8
|
+
>${s(e.innerHTML)}</button>
|
|
9
|
+
`})}
|
|
10
|
+
</div>
|
|
11
|
+
<slot style="display:none;"></slot>
|
|
12
|
+
`}static styles=e`
|
|
13
|
+
:host {
|
|
14
|
+
display: block;
|
|
15
|
+
}
|
|
16
|
+
`}class a extends HTMLElement{connectedCallback(){this.hasAttribute("value")||this.setAttribute("value","")}}export default i;customElements.define("k-segmented-control",i),customElements.define("k-sc-option",a);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{html as t,css as e}from"../lit-all.min.js";import
|
|
1
|
+
import{html as t,css as e}from"../lit-all.min.js";import s from"./ShadowComponent.js";import{boolExists as o}from"../utils/propConverters.js";export class Tabs extends s{static properties={active:{type:String,reflect:!0},fixedHeight:{type:Boolean,reflect:!0,attribute:"fixed-height",converter:o},persistentId:{type:String,reflect:!0,attribute:"persistent-id"}};constructor(){super(),this.active="",this.fixedHeight=!1,this.persistentId=null}firstUpdated(){if(super.firstUpdated(),!this.active){const t=this.querySelector("k-tab-content");t&&(this.active=t.name)}this.setupScrollListeners(),this.updateScrollIndicators(),new ResizeObserver(()=>this.updateScrollIndicators()).observe(this.shadowRoot.getElementById("tabs"))}updated(t){if(super.updated(t),t.has("persistentId")&&this.persistentId&&window?.localStorage){const t=`tabs-persistent-id-${this.persistentId}`,e=window.localStorage.getItem(t);null!==e&&(this.active=e,this.dispatchEvent(new CustomEvent("restored",{detail:{tab:e},bubbles:!0})))}t.has("active")&&this.updateActiveElements()}setupScrollListeners(){const t=this.shadowRoot.getElementById("tabs"),e=this.shadowRoot.getElementById("scroll-left"),s=this.shadowRoot.getElementById("scroll-right");t.addEventListener("scroll",()=>this.updateScrollIndicators()),e.addEventListener("click",()=>{t.scrollBy({left:-200,behavior:"smooth"})}),s.addEventListener("click",()=>{t.scrollBy({left:200,behavior:"smooth"})})}updateScrollIndicators(){const t=this.shadowRoot.getElementById("tabs"),e=this.shadowRoot.getElementById("scroll-left"),s=this.shadowRoot.getElementById("scroll-right"),o=t.scrollLeft>0,i=t.scrollLeft<t.scrollWidth-t.clientWidth;e.classList.toggle("visible",o),s.classList.toggle("visible",i)}updateActiveElements(){const t=this.getActiveTab();t&&(t.active=!1);const e=this.getActiveContent();e&&(e.active=!1);const s=this.getTab(this.active);s&&(s.active=!0);const o=this.getContent(this.active);if(o&&(o.active=!0),this.dispatchEvent(new CustomEvent("tab",{detail:{tab:this.active},bubbles:!0})),this.persistentId&&window?.localStorage){const t=`tabs-persistent-id-${this.persistentId}`;window.localStorage.setItem(t,this.active)}}get contents(){return[...this.querySelectorAll(":scope > k-tab-content")]}get tabs(){return[...this.querySelectorAll(":scope > k-tab")]}getTab(t){let e;if("string"==typeof t&&(e=this.querySelector(`k-tab[for="${t}"]`)),!e){let s=parseInt(t);s||(s=0),e=this.querySelectorAll("k-tab")[s]}return e}getActiveTab(){return this.querySelector(":scope > k-tab[active]")}getContent(t){let e;if("string"==typeof t&&(e=this.querySelector(`k-tab-content[name="${t}"]`)),!e){let s=parseInt(t);s||(s=0),e=this.querySelectorAll("k-tab-content")[s]}return e}getActiveContent(){return this.querySelector(":scope > k-tab-content[active]")}static styles=e`
|
|
2
2
|
:host {
|
|
3
3
|
display: block;
|
|
4
4
|
width: 100%;
|
|
@@ -99,7 +99,7 @@ import{html as t,css as e}from"../lit-all.min.js";import o from"./ShadowComponen
|
|
|
99
99
|
<slot></slot>
|
|
100
100
|
</div>
|
|
101
101
|
</div>
|
|
102
|
-
`}}export class Tab extends
|
|
102
|
+
`}}export class Tab extends s{static properties={active:{type:Boolean,reflect:!0,converter:o},for:{type:String,reflect:!0}};constructor(){super(),this.active=!1,this.for="",this.slot="tabs"}handleClick=()=>{if(!this.active){const t=this.parentElement;t&&"K-TABS"===t.tagName&&(t.active=this.for||t.tabs.indexOf(this).toString())}};get tabs(){return"K-TABS"===this.parentElement?.tagName?this.parentElement:null}render(){return t`
|
|
103
103
|
<button id="button" @click=${this.handleClick}>
|
|
104
104
|
<slot></slot>
|
|
105
105
|
</button>
|
|
@@ -131,7 +131,7 @@ import{html as t,css as e}from"../lit-all.min.js";import o from"./ShadowComponen
|
|
|
131
131
|
:host([active]) #button {
|
|
132
132
|
color: var(--tc_primary);
|
|
133
133
|
}
|
|
134
|
-
`}export class TabContent extends
|
|
134
|
+
`}export class TabContent extends s{static properties={active:{type:Boolean,reflect:!0,converter:o},name:{type:String,reflect:!0}};constructor(){super(),this.active=!1,this.name=""}get tabs(){return"K-TABS"===this.parentElement?.tagName?this.parentElement:null}render(){return t`<slot></slot>`}static styles=e`
|
|
135
135
|
:host {
|
|
136
136
|
display: block;
|
|
137
137
|
height: 100%;
|
|
@@ -148,7 +148,7 @@ import{html as t,css as e}from"../lit-all.min.js";import o from"./ShadowComponen
|
|
|
148
148
|
:host(:not([active])) {
|
|
149
149
|
display: none;
|
|
150
150
|
}
|
|
151
|
-
`}export class TabSpacer extends
|
|
151
|
+
`}export class TabSpacer extends s{constructor(){super(),this.slot="tabs"}static styles=e`
|
|
152
152
|
:host {
|
|
153
153
|
flex: 1 1 auto !important;
|
|
154
154
|
height: 1px;
|
package/docs/utils/context.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>
|
package/docs/utils/cookie.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>
|
package/docs/utils/debounce.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>
|
package/docs/utils/drag.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>
|