@semantic-components/ui-lab 0.62.0 → 0.63.0
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/eslint.config.mjs +39 -0
- package/ng-package.json +7 -0
- package/package.json +3 -17
- package/project.json +28 -0
- package/src/index.ts +2 -0
- package/src/lib/components/accordion/README.md +269 -0
- package/src/lib/components/accordion/TODO.md +58 -0
- package/src/lib/components/accordion/accordion-content.ts +31 -0
- package/src/lib/components/accordion/accordion-header.ts +15 -0
- package/src/lib/components/accordion/accordion-item.ts +17 -0
- package/src/lib/components/accordion/accordion-panel.ts +42 -0
- package/src/lib/components/accordion/accordion-trigger-icon.ts +27 -0
- package/src/lib/components/accordion/accordion-trigger.ts +46 -0
- package/src/lib/components/accordion/accordion.ts +35 -0
- package/src/lib/components/accordion/index.ts +7 -0
- package/src/lib/components/alert/README.md +117 -0
- package/src/lib/components/alert/alert-action.ts +17 -0
- package/src/lib/components/alert/alert-description.ts +20 -0
- package/src/lib/components/alert/alert-title.ts +20 -0
- package/src/lib/components/alert/alert.ts +39 -0
- package/src/lib/components/alert/index.ts +4 -0
- package/src/lib/components/alert-dialog/ARCHITECTURE.md +808 -0
- package/src/lib/components/alert-dialog/README.md +215 -0
- package/src/lib/components/alert-dialog/alert-dialog-action.ts +32 -0
- package/src/lib/components/alert-dialog/alert-dialog-cancel.ts +32 -0
- package/src/lib/components/alert-dialog/alert-dialog-description.ts +24 -0
- package/src/lib/components/alert-dialog/alert-dialog-footer.ts +21 -0
- package/src/lib/components/alert-dialog/alert-dialog-header.ts +23 -0
- package/src/lib/components/alert-dialog/alert-dialog-media.ts +22 -0
- package/src/lib/components/alert-dialog/alert-dialog-portal.ts +8 -0
- package/src/lib/components/alert-dialog/alert-dialog-provider.ts +135 -0
- package/src/lib/components/alert-dialog/alert-dialog-title.ts +20 -0
- package/src/lib/components/alert-dialog/alert-dialog-trigger.ts +25 -0
- package/src/lib/components/alert-dialog/alert-dialog.ts +77 -0
- package/src/lib/components/alert-dialog/index.ts +11 -0
- package/src/lib/components/animated-counter/README.md +102 -0
- package/src/lib/components/animated-counter/animated-counter-types.ts +23 -0
- package/src/lib/components/animated-counter/animated-counter.ts +143 -0
- package/src/lib/components/animated-counter/index.ts +6 -0
- package/src/lib/components/aspect-ratio/README.md +97 -0
- package/src/lib/components/aspect-ratio/aspect-ratio.ts +19 -0
- package/src/lib/components/aspect-ratio/index.ts +1 -0
- package/src/lib/components/audio-player/README.md +252 -0
- package/src/lib/components/audio-player/audio-player-audio.ts +32 -0
- package/src/lib/components/audio-player/audio-player-cover.ts +39 -0
- package/src/lib/components/audio-player/audio-player-info.ts +40 -0
- package/src/lib/components/audio-player/audio-player-next.ts +40 -0
- package/src/lib/components/audio-player/audio-player-play-button.ts +39 -0
- package/src/lib/components/audio-player/audio-player-previous.ts +40 -0
- package/src/lib/components/audio-player/audio-player-progress.ts +77 -0
- package/src/lib/components/audio-player/audio-player-repeat.ts +38 -0
- package/src/lib/components/audio-player/audio-player-shuffle.ts +39 -0
- package/src/lib/components/audio-player/audio-player-volume.ts +91 -0
- package/src/lib/components/audio-player/audio-player.ts +246 -0
- package/src/lib/components/audio-player/index.ts +11 -0
- package/src/lib/components/avatar/README.md +117 -0
- package/src/lib/components/avatar/avatar-fallback.ts +25 -0
- package/src/lib/components/avatar/avatar-image.ts +39 -0
- package/src/lib/components/avatar/avatar.ts +25 -0
- package/src/lib/components/avatar/index.ts +3 -0
- package/src/lib/components/avatar-group/README.md +94 -0
- package/src/lib/components/avatar-group/avatar-group-types.ts +9 -0
- package/src/lib/components/avatar-group/avatar-group.ts +181 -0
- package/src/lib/components/avatar-group/index.ts +2 -0
- package/src/lib/components/backdrop/backdrop.ts +75 -0
- package/src/lib/components/backdrop/index.ts +1 -0
- package/src/lib/components/badge/README.md +66 -0
- package/src/lib/components/badge/badge.ts +43 -0
- package/src/lib/components/badge/index.ts +1 -0
- package/src/lib/components/barcode-scanner/README.md +144 -0
- package/src/lib/components/barcode-scanner/barcode-scanner-simple.ts +36 -0
- package/src/lib/components/barcode-scanner/barcode-scanner.ts +460 -0
- package/src/lib/components/barcode-scanner/index.ts +3 -0
- package/src/lib/components/breadcrumb/README.md +80 -0
- package/src/lib/components/breadcrumb/breadcrumb-ellipsis.ts +46 -0
- package/src/lib/components/breadcrumb/breadcrumb-item.ts +17 -0
- package/src/lib/components/breadcrumb/breadcrumb-link.ts +17 -0
- package/src/lib/components/breadcrumb/breadcrumb-list.ts +20 -0
- package/src/lib/components/breadcrumb/breadcrumb-page.ts +20 -0
- package/src/lib/components/breadcrumb/breadcrumb-separator.ts +45 -0
- package/src/lib/components/breadcrumb/breadcrumb.ts +10 -0
- package/src/lib/components/breadcrumb/index.ts +7 -0
- package/src/lib/components/button-group/button-group-separator.ts +26 -0
- package/src/lib/components/button-group/button-group-text.ts +20 -0
- package/src/lib/components/button-group/button-group.ts +43 -0
- package/src/lib/components/button-group/index.ts +10 -0
- package/src/lib/components/calendar/CALENDAR-VIEWS.md +443 -0
- package/src/lib/components/calendar/README.md +227 -0
- package/src/lib/components/calendar/calendar-day-view.ts +310 -0
- package/src/lib/components/calendar/calendar-header.ts +58 -0
- package/src/lib/components/calendar/calendar-month-view.ts +176 -0
- package/src/lib/components/calendar/calendar-year-view.ts +167 -0
- package/src/lib/components/calendar/calendar.ts +273 -0
- package/src/lib/components/calendar/index.ts +1 -0
- package/src/lib/components/card/README.md +86 -0
- package/src/lib/components/card/card-content.ts +15 -0
- package/src/lib/components/card/card-description.ts +17 -0
- package/src/lib/components/card/card-footer.ts +17 -0
- package/src/lib/components/card/card-header.ts +17 -0
- package/src/lib/components/card/card-title.ts +17 -0
- package/src/lib/components/card/card.ts +20 -0
- package/src/lib/components/card/index.ts +6 -0
- package/src/lib/components/chart/README.md +220 -0
- package/src/lib/components/chart/bar-chart.ts +186 -0
- package/src/lib/components/chart/chart-container.ts +33 -0
- package/src/lib/components/chart/chart-legend.ts +42 -0
- package/src/lib/components/chart/chart-tooltip.ts +42 -0
- package/src/lib/components/chart/chart-types.ts +21 -0
- package/src/lib/components/chart/donut-chart.ts +35 -0
- package/src/lib/components/chart/index.ts +9 -0
- package/src/lib/components/chart/line-chart.ts +223 -0
- package/src/lib/components/chart/pie-chart.ts +186 -0
- package/src/lib/components/checkbox/README.md +293 -0
- package/src/lib/components/checkbox/checkbox-field.ts +78 -0
- package/src/lib/components/checkbox/checkbox-indicator.ts +27 -0
- package/src/lib/components/checkbox/checkbox-types.ts +15 -0
- package/src/lib/components/checkbox/checkbox.ts +74 -0
- package/src/lib/components/checkbox/index.ts +5 -0
- package/src/lib/components/checkbox/visual-checkbox.ts +47 -0
- package/src/lib/components/collapsible/README.md +191 -0
- package/src/lib/components/collapsible/collapsible-content.ts +28 -0
- package/src/lib/components/collapsible/collapsible-panel.ts +42 -0
- package/src/lib/components/collapsible/collapsible-trigger.ts +48 -0
- package/src/lib/components/collapsible/collapsible.ts +33 -0
- package/src/lib/components/collapsible/index.ts +4 -0
- package/src/lib/components/color-picker/README.md +218 -0
- package/src/lib/components/color-picker/color-picker-area.ts +107 -0
- package/src/lib/components/color-picker/color-picker-eyedropper.ts +76 -0
- package/src/lib/components/color-picker/color-picker-hue.ts +92 -0
- package/src/lib/components/color-picker/color-picker-input.ts +70 -0
- package/src/lib/components/color-picker/color-picker-preview.ts +21 -0
- package/src/lib/components/color-picker/color-picker-swatches.ts +60 -0
- package/src/lib/components/color-picker/color-picker.ts +227 -0
- package/src/lib/components/color-picker/index.ts +8 -0
- package/src/lib/components/combobox/README.md +166 -0
- package/src/lib/components/combobox/combobox-empty.ts +17 -0
- package/src/lib/components/combobox/combobox-icon.ts +20 -0
- package/src/lib/components/combobox/combobox-input.ts +32 -0
- package/src/lib/components/combobox/combobox-item-indicator.ts +20 -0
- package/src/lib/components/combobox/combobox-item.ts +49 -0
- package/src/lib/components/combobox/combobox-list.ts +40 -0
- package/src/lib/components/combobox/combobox-portal.ts +111 -0
- package/src/lib/components/combobox/combobox-trigger.ts +20 -0
- package/src/lib/components/combobox/combobox.ts +42 -0
- package/src/lib/components/combobox/index.ts +9 -0
- package/src/lib/components/command/README.md +161 -0
- package/src/lib/components/command/command-empty.ts +17 -0
- package/src/lib/components/command/command-group-heading.ts +20 -0
- package/src/lib/components/command/command-group.ts +23 -0
- package/src/lib/components/command/command-input.ts +67 -0
- package/src/lib/components/command/command-item.ts +61 -0
- package/src/lib/components/command/command-list.ts +19 -0
- package/src/lib/components/command/command-separator.ts +18 -0
- package/src/lib/components/command/command-shortcut.ts +20 -0
- package/src/lib/components/command/command.ts +35 -0
- package/src/lib/components/command/index.ts +9 -0
- package/src/lib/components/confetti/README.md +103 -0
- package/src/lib/components/confetti/confetti-types.ts +47 -0
- package/src/lib/components/confetti/confetti.ts +220 -0
- package/src/lib/components/confetti/index.ts +7 -0
- package/src/lib/components/context-menu/README.md +149 -0
- package/src/lib/components/context-menu/context-menu-content.ts +46 -0
- package/src/lib/components/context-menu/context-menu-item.ts +44 -0
- package/src/lib/components/context-menu/context-menu-label.ts +22 -0
- package/src/lib/components/context-menu/context-menu-separator.ts +18 -0
- package/src/lib/components/context-menu/context-menu-shortcut.ts +20 -0
- package/src/lib/components/context-menu/context-menu-sub-content.ts +83 -0
- package/src/lib/components/context-menu/context-menu-sub-trigger.ts +91 -0
- package/src/lib/components/context-menu/context-menu-sub.ts +38 -0
- package/src/lib/components/context-menu/context-menu-trigger.ts +40 -0
- package/src/lib/components/context-menu/context-menu.ts +106 -0
- package/src/lib/components/context-menu/index.ts +10 -0
- package/src/lib/components/copy-button/README.md +211 -0
- package/src/lib/components/copy-button/copy-button-with-text.ts +53 -0
- package/src/lib/components/copy-button/copy-button.ts +137 -0
- package/src/lib/components/copy-button/copy-code.ts +42 -0
- package/src/lib/components/copy-button/copy-input.ts +54 -0
- package/src/lib/components/copy-button/index.ts +4 -0
- package/src/lib/components/countdown/README.md +168 -0
- package/src/lib/components/countdown/countdown-simple.ts +118 -0
- package/src/lib/components/countdown/countdown.ts +235 -0
- package/src/lib/components/countdown/index.ts +3 -0
- package/src/lib/components/data-table/README.md +330 -0
- package/src/lib/components/data-table/data-table-body.ts +28 -0
- package/src/lib/components/data-table/data-table-cell.ts +20 -0
- package/src/lib/components/data-table/data-table-column-toggle.ts +96 -0
- package/src/lib/components/data-table/data-table-filter.ts +45 -0
- package/src/lib/components/data-table/data-table-head.ts +96 -0
- package/src/lib/components/data-table/data-table-header.ts +28 -0
- package/src/lib/components/data-table/data-table-pagination.ts +152 -0
- package/src/lib/components/data-table/data-table-row.ts +23 -0
- package/src/lib/components/data-table/data-table.ts +181 -0
- package/src/lib/components/data-table/index.ts +15 -0
- package/src/lib/components/date-picker/README.md +101 -0
- package/src/lib/components/date-picker/date-picker.ts +175 -0
- package/src/lib/components/date-picker/index.ts +1 -0
- package/src/lib/components/date-range-picker/README.md +148 -0
- package/src/lib/components/date-range-picker/date-range-picker.ts +348 -0
- package/src/lib/components/date-range-picker/index.ts +3 -0
- package/src/lib/components/dialog/ARCHITECTURE.md +792 -0
- package/src/lib/components/dialog/README.md +208 -0
- package/src/lib/components/dialog/dialog-close.ts +33 -0
- package/src/lib/components/dialog/dialog-description.ts +23 -0
- package/src/lib/components/dialog/dialog-footer.ts +20 -0
- package/src/lib/components/dialog/dialog-header.ts +17 -0
- package/src/lib/components/dialog/dialog-portal.ts +8 -0
- package/src/lib/components/dialog/dialog-provider.ts +175 -0
- package/src/lib/components/dialog/dialog-title.ts +20 -0
- package/src/lib/components/dialog/dialog-trigger.ts +25 -0
- package/src/lib/components/dialog/dialog.ts +79 -0
- package/src/lib/components/dialog/index.ts +9 -0
- package/src/lib/components/diff-viewer/README.md +172 -0
- package/src/lib/components/diff-viewer/diff-algorithm.ts +337 -0
- package/src/lib/components/diff-viewer/diff-viewer.ts +369 -0
- package/src/lib/components/diff-viewer/index.ts +8 -0
- package/src/lib/components/dock/README.md +204 -0
- package/src/lib/components/dock/dock-badge.ts +36 -0
- package/src/lib/components/dock/dock-item.ts +76 -0
- package/src/lib/components/dock/dock-items.ts +31 -0
- package/src/lib/components/dock/dock-types.ts +25 -0
- package/src/lib/components/dock/dock.ts +101 -0
- package/src/lib/components/dock/index.ts +11 -0
- package/src/lib/components/drawer/ARCHITECTURE.md +972 -0
- package/src/lib/components/drawer/README.md +205 -0
- package/src/lib/components/drawer/drawer-close.ts +18 -0
- package/src/lib/components/drawer/drawer-description.ts +17 -0
- package/src/lib/components/drawer/drawer-footer.ts +17 -0
- package/src/lib/components/drawer/drawer-handle.ts +17 -0
- package/src/lib/components/drawer/drawer-header.ts +17 -0
- package/src/lib/components/drawer/drawer-portal.ts +8 -0
- package/src/lib/components/drawer/drawer-provider.ts +142 -0
- package/src/lib/components/drawer/drawer-title.ts +17 -0
- package/src/lib/components/drawer/drawer-trigger.ts +24 -0
- package/src/lib/components/drawer/drawer.ts +77 -0
- package/src/lib/components/drawer/index.ts +11 -0
- package/src/lib/components/emoji-picker/README.md +151 -0
- package/src/lib/components/emoji-picker/emoji-picker-trigger.ts +48 -0
- package/src/lib/components/emoji-picker/emoji-picker.ts +666 -0
- package/src/lib/components/emoji-picker/index.ts +3 -0
- package/src/lib/components/empty/README.md +72 -0
- package/src/lib/components/empty/empty-content.ts +20 -0
- package/src/lib/components/empty/empty-description.ts +20 -0
- package/src/lib/components/empty/empty-header.ts +17 -0
- package/src/lib/components/empty/empty-media.ts +29 -0
- package/src/lib/components/empty/empty-title.ts +17 -0
- package/src/lib/components/empty/empty.ts +20 -0
- package/src/lib/components/empty/index.ts +6 -0
- package/src/lib/components/field/README.md +326 -0
- package/src/lib/components/field/field-content.ts +20 -0
- package/src/lib/components/field/field-description.ts +22 -0
- package/src/lib/components/field/field-error.ts +18 -0
- package/src/lib/components/field/field-group.ts +20 -0
- package/src/lib/components/field/field-legend.ts +24 -0
- package/src/lib/components/field/field-separator.ts +20 -0
- package/src/lib/components/field/field-set.ts +20 -0
- package/src/lib/components/field/field-title.ts +20 -0
- package/src/lib/components/field/field.ts +89 -0
- package/src/lib/components/field/index.ts +9 -0
- package/src/lib/components/file-upload/README.md +256 -0
- package/src/lib/components/file-upload/file-upload-dropzone.ts +100 -0
- package/src/lib/components/file-upload/file-upload-item-delete.ts +59 -0
- package/src/lib/components/file-upload/file-upload-item-name.ts +17 -0
- package/src/lib/components/file-upload/file-upload-item-preview.ts +52 -0
- package/src/lib/components/file-upload/file-upload-item-progress.ts +33 -0
- package/src/lib/components/file-upload/file-upload-item-size.ts +39 -0
- package/src/lib/components/file-upload/file-upload-item.ts +35 -0
- package/src/lib/components/file-upload/file-upload-list.ts +17 -0
- package/src/lib/components/file-upload/file-upload-trigger.ts +70 -0
- package/src/lib/components/file-upload/file-upload.ts +156 -0
- package/src/lib/components/file-upload/index.ts +11 -0
- package/src/lib/components/hover-card/ARCHITECTURE.md +341 -0
- package/src/lib/components/hover-card/README.md +118 -0
- package/src/lib/components/hover-card/hover-card-portal.ts +142 -0
- package/src/lib/components/hover-card/hover-card-provider.ts +85 -0
- package/src/lib/components/hover-card/hover-card-trigger.ts +75 -0
- package/src/lib/components/hover-card/hover-card.ts +97 -0
- package/src/lib/components/hover-card/index.ts +5 -0
- package/src/lib/components/image-annotator/README.md +132 -0
- package/src/lib/components/image-annotator/image-annotator-types.ts +29 -0
- package/src/lib/components/image-annotator/image-annotator.ts +549 -0
- package/src/lib/components/image-annotator/index.ts +7 -0
- package/src/lib/components/image-compare/README.md +239 -0
- package/src/lib/components/image-compare/image-compare-after.ts +39 -0
- package/src/lib/components/image-compare/image-compare-before.ts +30 -0
- package/src/lib/components/image-compare/image-compare-container.ts +119 -0
- package/src/lib/components/image-compare/image-compare-label.ts +34 -0
- package/src/lib/components/image-compare/image-compare-slider.ts +103 -0
- package/src/lib/components/image-compare/image-compare.ts +79 -0
- package/src/lib/components/image-compare/index.ts +10 -0
- package/src/lib/components/image-cropper/README.md +322 -0
- package/src/lib/components/image-cropper/image-cropper-aspect-ratio.ts +65 -0
- package/src/lib/components/image-cropper/image-cropper-container.ts +294 -0
- package/src/lib/components/image-cropper/image-cropper-controls.ts +95 -0
- package/src/lib/components/image-cropper/image-cropper-preview.ts +66 -0
- package/src/lib/components/image-cropper/image-cropper.ts +459 -0
- package/src/lib/components/image-cropper/index.ts +10 -0
- package/src/lib/components/index.ts +106 -0
- package/src/lib/components/infinite-scroll/README.md +134 -0
- package/src/lib/components/infinite-scroll/index.ts +4 -0
- package/src/lib/components/infinite-scroll/infinite-scroll-end.ts +9 -0
- package/src/lib/components/infinite-scroll/infinite-scroll-loader.ts +9 -0
- package/src/lib/components/infinite-scroll/infinite-scroll.ts +199 -0
- package/src/lib/components/infinite-scroll/virtual-scroll.ts +83 -0
- package/src/lib/components/input/README.md +93 -0
- package/src/lib/components/input/index.ts +1 -0
- package/src/lib/components/input/input.ts +41 -0
- package/src/lib/components/input-group/README.md +60 -0
- package/src/lib/components/input-group/index.ts +6 -0
- package/src/lib/components/input-group/input-group-addon.ts +46 -0
- package/src/lib/components/input-group/input-group-button.ts +49 -0
- package/src/lib/components/input-group/input-group-input.ts +20 -0
- package/src/lib/components/input-group/input-group-text.ts +20 -0
- package/src/lib/components/input-group/input-group-textarea.ts +20 -0
- package/src/lib/components/input-group/input-group.ts +21 -0
- package/src/lib/components/kanban-board/README.md +238 -0
- package/src/lib/components/kanban-board/index.ts +12 -0
- package/src/lib/components/kanban-board/kanban-board.ts +281 -0
- package/src/lib/components/kanban-board/kanban-card.ts +241 -0
- package/src/lib/components/kanban-board/kanban-column.ts +371 -0
- package/src/lib/components/kanban-board/kanban-types.ts +52 -0
- package/src/lib/components/kbd/README.md +58 -0
- package/src/lib/components/kbd/index.ts +2 -0
- package/src/lib/components/kbd/kbd-group.ts +17 -0
- package/src/lib/components/kbd/kbd.ts +20 -0
- package/src/lib/components/label/README.md +90 -0
- package/src/lib/components/label/index.ts +1 -0
- package/src/lib/components/label/label.ts +32 -0
- package/src/lib/components/language-switcher/index.ts +4 -0
- package/src/lib/components/language-switcher/language-button.ts +98 -0
- package/src/lib/components/language-switcher/language-select.ts +65 -0
- package/src/lib/components/language-switcher/language-toggle.ts +98 -0
- package/src/lib/components/language-switcher/language.service.ts +239 -0
- package/src/lib/components/language-switcher/styles.ts +16 -0
- package/src/lib/components/lightbox/README.md +387 -0
- package/src/lib/components/lightbox/index.ts +9 -0
- package/src/lib/components/lightbox/lightbox-container.ts +338 -0
- package/src/lib/components/lightbox/lightbox-gallery.ts +81 -0
- package/src/lib/components/lightbox/lightbox-trigger.ts +19 -0
- package/src/lib/components/lightbox/lightbox.ts +210 -0
- package/src/lib/components/lightbox/lightbox.types.ts +7 -0
- package/src/lib/components/marquee/README.md +183 -0
- package/src/lib/components/marquee/auto-marquee.ts +73 -0
- package/src/lib/components/marquee/index.ts +6 -0
- package/src/lib/components/marquee/marquee-clone.ts +17 -0
- package/src/lib/components/marquee/marquee-fade.ts +53 -0
- package/src/lib/components/marquee/marquee-item.ts +17 -0
- package/src/lib/components/marquee/marquee-text.ts +80 -0
- package/src/lib/components/marquee/marquee.ts +96 -0
- package/src/lib/components/masonry-grid/README.md +204 -0
- package/src/lib/components/masonry-grid/index.ts +4 -0
- package/src/lib/components/masonry-grid/masonry-grid.ts +178 -0
- package/src/lib/components/masonry-grid/masonry-item.ts +66 -0
- package/src/lib/components/masonry-grid/masonry-types.ts +24 -0
- package/src/lib/components/mention-input/README.md +122 -0
- package/src/lib/components/mention-input/index.ts +2 -0
- package/src/lib/components/mention-input/mention-input.ts +279 -0
- package/src/lib/components/menu/README.md +176 -0
- package/src/lib/components/menu/index.ts +11 -0
- package/src/lib/components/menu/menu-item.ts +32 -0
- package/src/lib/components/menu/menu-portal.ts +53 -0
- package/src/lib/components/menu/menu-provider.ts +50 -0
- package/src/lib/components/menu/menu-separator.ts +19 -0
- package/src/lib/components/menu/menu-sub-icon.ts +18 -0
- package/src/lib/components/menu/menu-sub-portal.ts +53 -0
- package/src/lib/components/menu/menu-sub-provider.ts +52 -0
- package/src/lib/components/menu/menu-sub-trigger.ts +34 -0
- package/src/lib/components/menu/menu-sub.ts +41 -0
- package/src/lib/components/menu/menu-trigger.ts +27 -0
- package/src/lib/components/menu/menu.ts +41 -0
- package/src/lib/components/multi-select/README.md +155 -0
- package/src/lib/components/multi-select/index.ts +2 -0
- package/src/lib/components/multi-select/multi-select.ts +394 -0
- package/src/lib/components/native-checkbox/README.md +113 -0
- package/src/lib/components/native-checkbox/index.ts +1 -0
- package/src/lib/components/native-checkbox/native-checkbox.ts +116 -0
- package/src/lib/components/navbar/ARCHITECTURE.md +605 -0
- package/src/lib/components/navbar/README.md +246 -0
- package/src/lib/components/navbar/index.ts +9 -0
- package/src/lib/components/navbar/navbar-actions.ts +28 -0
- package/src/lib/components/navbar/navbar-brand.ts +24 -0
- package/src/lib/components/navbar/navbar-group.ts +28 -0
- package/src/lib/components/navbar/navbar-mobile-link.ts +28 -0
- package/src/lib/components/navbar/navbar-mobile-menu.ts +71 -0
- package/src/lib/components/navbar/navbar-mobile-portal.ts +118 -0
- package/src/lib/components/navbar/navbar-mobile-trigger.ts +51 -0
- package/src/lib/components/navbar/navbar-provider.ts +85 -0
- package/src/lib/components/navbar/navbar.ts +40 -0
- package/src/lib/components/navigation-menu/README.md +135 -0
- package/src/lib/components/navigation-menu/index.ts +8 -0
- package/src/lib/components/navigation-menu/navigation-menu-content.ts +80 -0
- package/src/lib/components/navigation-menu/navigation-menu-indicator.ts +35 -0
- package/src/lib/components/navigation-menu/navigation-menu-item.ts +88 -0
- package/src/lib/components/navigation-menu/navigation-menu-link.ts +29 -0
- package/src/lib/components/navigation-menu/navigation-menu-list.ts +20 -0
- package/src/lib/components/navigation-menu/navigation-menu-trigger.ts +52 -0
- package/src/lib/components/navigation-menu/navigation-menu-viewport.ts +35 -0
- package/src/lib/components/navigation-menu/navigation-menu.ts +39 -0
- package/src/lib/components/notification-center/README.md +365 -0
- package/src/lib/components/notification-center/index.ts +20 -0
- package/src/lib/components/notification-center/notification-center-container.ts +226 -0
- package/src/lib/components/notification-center/notification-center.ts +157 -0
- package/src/lib/components/notification-center/notification-group.ts +198 -0
- package/src/lib/components/notification-center/notification-item.ts +214 -0
- package/src/lib/components/notification-center/notification-types.ts +52 -0
- package/src/lib/components/number-field/README.md +369 -0
- package/src/lib/components/number-field/index.ts +6 -0
- package/src/lib/components/number-field/number-field-decrement.ts +57 -0
- package/src/lib/components/number-field/number-field-increment.ts +58 -0
- package/src/lib/components/number-field/number-field-input-group.ts +37 -0
- package/src/lib/components/number-field/number-field-input.ts +87 -0
- package/src/lib/components/number-field/number-field-scrub-area.ts +74 -0
- package/src/lib/components/number-field/number-field.ts +143 -0
- package/src/lib/components/opt-field/index.ts +7 -0
- package/src/lib/components/opt-field/opt-field-separator.ts +18 -0
- package/src/lib/components/opt-field/opt-field-slot-caret.ts +31 -0
- package/src/lib/components/opt-field/opt-field-slot-char.ts +19 -0
- package/src/lib/components/opt-field/opt-field-slot-group.ts +17 -0
- package/src/lib/components/opt-field/opt-field-slot-input.ts +60 -0
- package/src/lib/components/opt-field/opt-field-slot.ts +111 -0
- package/src/lib/components/opt-field/opt-field.ts +113 -0
- package/src/lib/components/org-chart/README.md +265 -0
- package/src/lib/components/org-chart/index.ts +8 -0
- package/src/lib/components/org-chart/org-chart-node.ts +253 -0
- package/src/lib/components/org-chart/org-chart-types.ts +22 -0
- package/src/lib/components/org-chart/org-chart.ts +67 -0
- package/src/lib/components/pagination/ACCESSIBILITY_REVIEW.md +530 -0
- package/src/lib/components/pagination/KEYBOARD-NAVIGATION.md +356 -0
- package/src/lib/components/pagination/README.md +359 -0
- package/src/lib/components/pagination/REVIEW_SUMMARY.md +55 -0
- package/src/lib/components/pagination/SMART-PAGINATION.md +345 -0
- package/src/lib/components/pagination/index.ts +11 -0
- package/src/lib/components/pagination/pagination-ellipsis.ts +32 -0
- package/src/lib/components/pagination/pagination-first.ts +75 -0
- package/src/lib/components/pagination/pagination-item.ts +15 -0
- package/src/lib/components/pagination/pagination-last.ts +77 -0
- package/src/lib/components/pagination/pagination-link.ts +70 -0
- package/src/lib/components/pagination/pagination-list.ts +17 -0
- package/src/lib/components/pagination/pagination-next.ts +78 -0
- package/src/lib/components/pagination/pagination-page-size-select.ts +44 -0
- package/src/lib/components/pagination/pagination-previous.ts +78 -0
- package/src/lib/components/pagination/pagination.ts +190 -0
- package/src/lib/components/password-field/README.md +247 -0
- package/src/lib/components/password-field/index.ts +7 -0
- package/src/lib/components/password-field/password-field-input-group.ts +32 -0
- package/src/lib/components/password-field/password-field-input.ts +55 -0
- package/src/lib/components/password-field/password-field-requirements.ts +90 -0
- package/src/lib/components/password-field/password-field-strength-bar.ts +64 -0
- package/src/lib/components/password-field/password-field-strength.ts +91 -0
- package/src/lib/components/password-field/password-field-toggle.ts +86 -0
- package/src/lib/components/password-field/password-field.ts +95 -0
- package/src/lib/components/pdf-viewer/README.md +221 -0
- package/src/lib/components/pdf-viewer/index.ts +47 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-container.ts +54 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-content.ts +60 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-download.ts +34 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-empty.ts +62 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-error.ts +73 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-fullscreen.ts +36 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-loading.ts +44 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-nav.ts +30 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-next-page.ts +38 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-page-info.ts +53 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-prev-page.ts +38 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-print.ts +34 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-retry.ts +36 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-root.ts +239 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-rotate-left.ts +34 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-rotate-right.ts +34 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-separator.ts +28 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-spacer.ts +24 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-toolbar-base.ts +34 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-toolbar.ts +391 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-types.ts +52 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-zoom-in.ts +37 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-zoom-out.ts +37 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-zoom-select.ts +61 -0
- package/src/lib/components/pdf-viewer/pdf-viewer-zoom.ts +30 -0
- package/src/lib/components/pdf-viewer/pdf-viewer.ts +417 -0
- package/src/lib/components/phone-input/README.md +173 -0
- package/src/lib/components/phone-input/countries.ts +69 -0
- package/src/lib/components/phone-input/index.ts +4 -0
- package/src/lib/components/phone-input/phone-input-simple.ts +141 -0
- package/src/lib/components/phone-input/phone-input.ts +304 -0
- package/src/lib/components/popover/ARCHITECTURE.md +569 -0
- package/src/lib/components/popover/README.md +247 -0
- package/src/lib/components/popover/index.ts +6 -0
- package/src/lib/components/popover/popover-close.ts +29 -0
- package/src/lib/components/popover/popover-portal.ts +161 -0
- package/src/lib/components/popover/popover-provider.ts +82 -0
- package/src/lib/components/popover/popover-trigger.ts +27 -0
- package/src/lib/components/popover/popover.ts +66 -0
- package/src/lib/components/progress/README.md +75 -0
- package/src/lib/components/progress/index.ts +1 -0
- package/src/lib/components/progress/progress.ts +62 -0
- package/src/lib/components/qr-code/README.md +124 -0
- package/src/lib/components/qr-code/index.ts +3 -0
- package/src/lib/components/qr-code/qr-code-download.ts +105 -0
- package/src/lib/components/qr-code/qr-code.ts +121 -0
- package/src/lib/components/qr-code/qr-generator.ts +479 -0
- package/src/lib/components/radio-group/README.md +273 -0
- package/src/lib/components/radio-group/index.ts +3 -0
- package/src/lib/components/radio-group/radio-field.ts +43 -0
- package/src/lib/components/radio-group/radio-group.ts +18 -0
- package/src/lib/components/radio-group/radio.ts +30 -0
- package/src/lib/components/range-slider/README.md +118 -0
- package/src/lib/components/range-slider/index.ts +1 -0
- package/src/lib/components/range-slider/range-slider.ts +304 -0
- package/src/lib/components/rating-field/README.md +150 -0
- package/src/lib/components/rating-field/index.ts +3 -0
- package/src/lib/components/rating-field/rating-field.ts +87 -0
- package/src/lib/components/rating-field/rating-item-group.ts +73 -0
- package/src/lib/components/rating-field/rating-item.ts +89 -0
- package/src/lib/components/resizable/README.md +133 -0
- package/src/lib/components/resizable/index.ts +4 -0
- package/src/lib/components/resizable/resizable-handle.ts +160 -0
- package/src/lib/components/resizable/resizable-panel-group.ts +38 -0
- package/src/lib/components/resizable/resizable-panel.ts +51 -0
- package/src/lib/components/resizable/resizable.types.ts +1 -0
- package/src/lib/components/scroll-area/README.md +76 -0
- package/src/lib/components/scroll-area/index.ts +2 -0
- package/src/lib/components/scroll-area/scroll-area.ts +87 -0
- package/src/lib/components/scroll-area/scroll-bar.ts +207 -0
- package/src/lib/components/search-input/README.md +99 -0
- package/src/lib/components/search-input/index.ts +6 -0
- package/src/lib/components/search-input/search-input-types.ts +21 -0
- package/src/lib/components/search-input/search-input.ts +302 -0
- package/src/lib/components/select/README.md +175 -0
- package/src/lib/components/select/index.ts +9 -0
- package/src/lib/components/select/select-icon.ts +20 -0
- package/src/lib/components/select/select-input.ts +32 -0
- package/src/lib/components/select/select-item-indicator.ts +20 -0
- package/src/lib/components/select/select-item.ts +48 -0
- package/src/lib/components/select/select-list.ts +42 -0
- package/src/lib/components/select/select-portal.ts +48 -0
- package/src/lib/components/select/select-trigger.ts +36 -0
- package/src/lib/components/select/select-value.ts +32 -0
- package/src/lib/components/select/select.ts +57 -0
- package/src/lib/components/separator/README.md +59 -0
- package/src/lib/components/separator/index.ts +1 -0
- package/src/lib/components/separator/separator.ts +29 -0
- package/src/lib/components/sheet/ARCHITECTURE.md +915 -0
- package/src/lib/components/sheet/README.md +248 -0
- package/src/lib/components/sheet/index.ts +10 -0
- package/src/lib/components/sheet/sheet-close.ts +32 -0
- package/src/lib/components/sheet/sheet-description.ts +20 -0
- package/src/lib/components/sheet/sheet-footer.ts +20 -0
- package/src/lib/components/sheet/sheet-header.ts +17 -0
- package/src/lib/components/sheet/sheet-portal.ts +8 -0
- package/src/lib/components/sheet/sheet-provider.ts +142 -0
- package/src/lib/components/sheet/sheet-title.ts +20 -0
- package/src/lib/components/sheet/sheet-trigger.ts +24 -0
- package/src/lib/components/sheet/sheet.ts +92 -0
- package/src/lib/components/sidebar/README.md +254 -0
- package/src/lib/components/sidebar/index.ts +24 -0
- package/src/lib/components/sidebar/sidebar-content.ts +20 -0
- package/src/lib/components/sidebar/sidebar-footer.ts +17 -0
- package/src/lib/components/sidebar/sidebar-group-action.ts +24 -0
- package/src/lib/components/sidebar/sidebar-group-content.ts +17 -0
- package/src/lib/components/sidebar/sidebar-group-label.ts +23 -0
- package/src/lib/components/sidebar/sidebar-group.ts +17 -0
- package/src/lib/components/sidebar/sidebar-header.ts +17 -0
- package/src/lib/components/sidebar/sidebar-input.ts +20 -0
- package/src/lib/components/sidebar/sidebar-inset.ts +21 -0
- package/src/lib/components/sidebar/sidebar-menu-action.ts +31 -0
- package/src/lib/components/sidebar/sidebar-menu-badge.ts +25 -0
- package/src/lib/components/sidebar/sidebar-menu-button.ts +55 -0
- package/src/lib/components/sidebar/sidebar-menu-item.ts +17 -0
- package/src/lib/components/sidebar/sidebar-menu-skeleton.ts +40 -0
- package/src/lib/components/sidebar/sidebar-menu-sub-button.ts +33 -0
- package/src/lib/components/sidebar/sidebar-menu-sub-item.ts +15 -0
- package/src/lib/components/sidebar/sidebar-menu-sub.ts +21 -0
- package/src/lib/components/sidebar/sidebar-menu.ts +17 -0
- package/src/lib/components/sidebar/sidebar-provider.ts +128 -0
- package/src/lib/components/sidebar/sidebar-rail.ts +39 -0
- package/src/lib/components/sidebar/sidebar-separator.ts +21 -0
- package/src/lib/components/sidebar/sidebar-state.service.ts +33 -0
- package/src/lib/components/sidebar/sidebar-trigger.ts +38 -0
- package/src/lib/components/sidebar/sidebar.ts +120 -0
- package/src/lib/components/signature-pad/README.md +236 -0
- package/src/lib/components/signature-pad/index.ts +8 -0
- package/src/lib/components/signature-pad/signature-pad-canvas.ts +228 -0
- package/src/lib/components/signature-pad/signature-pad-clear-button.ts +48 -0
- package/src/lib/components/signature-pad/signature-pad-color-button.ts +50 -0
- package/src/lib/components/signature-pad/signature-pad-controls.ts +26 -0
- package/src/lib/components/signature-pad/signature-pad-toolbar.ts +25 -0
- package/src/lib/components/signature-pad/signature-pad-undo-button.ts +48 -0
- package/src/lib/components/signature-pad/signature-pad-width-button.ts +50 -0
- package/src/lib/components/signature-pad/signature-pad.ts +97 -0
- package/src/lib/components/skeleton/README.md +80 -0
- package/src/lib/components/skeleton/index.ts +1 -0
- package/src/lib/components/skeleton/skeleton.ts +17 -0
- package/src/lib/components/slider/README.md +106 -0
- package/src/lib/components/slider/index.ts +4 -0
- package/src/lib/components/slider/slider-range.ts +28 -0
- package/src/lib/components/slider/slider-thumb.ts +73 -0
- package/src/lib/components/slider/slider-track.ts +31 -0
- package/src/lib/components/slider/slider.ts +185 -0
- package/src/lib/components/sortable-list/README.md +229 -0
- package/src/lib/components/sortable-list/index.ts +4 -0
- package/src/lib/components/sortable-list/sortable-handle.ts +72 -0
- package/src/lib/components/sortable-list/sortable-item.ts +162 -0
- package/src/lib/components/sortable-list/sortable-list.ts +127 -0
- package/src/lib/components/sortable-list/sortable-overlay.ts +31 -0
- package/src/lib/components/speed-dial/README.md +259 -0
- package/src/lib/components/speed-dial/index.ts +7 -0
- package/src/lib/components/speed-dial/speed-dial-action.ts +99 -0
- package/src/lib/components/speed-dial/speed-dial-types.ts +14 -0
- package/src/lib/components/speed-dial/speed-dial.ts +224 -0
- package/src/lib/components/spinner/README.md +41 -0
- package/src/lib/components/spinner/index.ts +1 -0
- package/src/lib/components/spinner/spinner.ts +20 -0
- package/src/lib/components/split-button/README.md +99 -0
- package/src/lib/components/split-button/index.ts +6 -0
- package/src/lib/components/split-button/split-button-types.ts +14 -0
- package/src/lib/components/split-button/split-button.ts +240 -0
- package/src/lib/components/spotlight/README.md +136 -0
- package/src/lib/components/spotlight/index.ts +5 -0
- package/src/lib/components/spotlight/spotlight-actions.ts +24 -0
- package/src/lib/components/spotlight/spotlight-description.ts +24 -0
- package/src/lib/components/spotlight/spotlight-title.ts +24 -0
- package/src/lib/components/spotlight/spotlight.ts +367 -0
- package/src/lib/components/stat-card/README.md +319 -0
- package/src/lib/components/stat-card/REFACTORING-COMPLETE.md +250 -0
- package/src/lib/components/stat-card/REFACTORING-PLAN.md +471 -0
- package/src/lib/components/stat-card/index.ts +11 -0
- package/src/lib/components/stat-card/stat-card-change.ts +27 -0
- package/src/lib/components/stat-card/stat-card-description.ts +17 -0
- package/src/lib/components/stat-card/stat-card-icon.ts +28 -0
- package/src/lib/components/stat-card/stat-card-label.ts +27 -0
- package/src/lib/components/stat-card/stat-card-types.ts +3 -0
- package/src/lib/components/stat-card/stat-card-value.ts +27 -0
- package/src/lib/components/stat-card/stat-card.ts +34 -0
- package/src/lib/components/stepper/README.md +250 -0
- package/src/lib/components/stepper/index.ts +12 -0
- package/src/lib/components/stepper/stepper-content.ts +25 -0
- package/src/lib/components/stepper/stepper-description.ts +17 -0
- package/src/lib/components/stepper/stepper-item.ts +35 -0
- package/src/lib/components/stepper/stepper-list.ts +26 -0
- package/src/lib/components/stepper/stepper-next.ts +41 -0
- package/src/lib/components/stepper/stepper-previous.ts +42 -0
- package/src/lib/components/stepper/stepper-separator.ts +35 -0
- package/src/lib/components/stepper/stepper-title.ts +17 -0
- package/src/lib/components/stepper/stepper-trigger.ts +67 -0
- package/src/lib/components/stepper/stepper-types.ts +10 -0
- package/src/lib/components/stepper/stepper.ts +46 -0
- package/src/lib/components/switch/README.md +99 -0
- package/src/lib/components/switch/index.ts +1 -0
- package/src/lib/components/switch/switch.ts +56 -0
- package/src/lib/components/table/README.md +105 -0
- package/src/lib/components/table/index.ts +8 -0
- package/src/lib/components/table/table-body.ts +17 -0
- package/src/lib/components/table/table-caption.ts +17 -0
- package/src/lib/components/table/table-cell.ts +17 -0
- package/src/lib/components/table/table-footer.ts +20 -0
- package/src/lib/components/table/table-header-cell.ts +20 -0
- package/src/lib/components/table/table-header.ts +17 -0
- package/src/lib/components/table/table-row.ts +20 -0
- package/src/lib/components/table/table.ts +17 -0
- package/src/lib/components/tabs/README.md +169 -0
- package/src/lib/components/tabs/index.ts +4 -0
- package/src/lib/components/tabs/tab-list.ts +38 -0
- package/src/lib/components/tabs/tab-panel.ts +45 -0
- package/src/lib/components/tabs/tab.ts +45 -0
- package/src/lib/components/tabs/tabs.ts +28 -0
- package/src/lib/components/tag-input/README.md +271 -0
- package/src/lib/components/tag-input/index.ts +5 -0
- package/src/lib/components/tag-input/tag-input-clear.ts +60 -0
- package/src/lib/components/tag-input/tag-input-count.ts +42 -0
- package/src/lib/components/tag-input/tag-input-field.ts +121 -0
- package/src/lib/components/tag-input/tag-input-tag.ts +70 -0
- package/src/lib/components/tag-input/tag-input.ts +118 -0
- package/src/lib/components/textarea/README.md +80 -0
- package/src/lib/components/textarea/index.ts +1 -0
- package/src/lib/components/textarea/textarea.ts +41 -0
- package/src/lib/components/theme-toggle/README.md +258 -0
- package/src/lib/components/theme-toggle/index.ts +4 -0
- package/src/lib/components/theme-toggle/theme-field.ts +40 -0
- package/src/lib/components/theme-toggle/theme-select.ts +56 -0
- package/src/lib/components/theme-toggle/theme-toggle.ts +76 -0
- package/src/lib/components/theme-toggle/theme.service.ts +81 -0
- package/src/lib/components/time-picker/README.md +188 -0
- package/src/lib/components/time-picker/index.ts +5 -0
- package/src/lib/components/time-picker/time-picker-clock.ts +195 -0
- package/src/lib/components/time-picker/time-picker-input.ts +174 -0
- package/src/lib/components/time-picker/time-picker-period.ts +89 -0
- package/src/lib/components/time-picker/time-picker-separator.ts +20 -0
- package/src/lib/components/time-picker/time-picker.ts +87 -0
- package/src/lib/components/timeline/README.md +177 -0
- package/src/lib/components/timeline/index.ts +8 -0
- package/src/lib/components/timeline/timeline-connector.ts +29 -0
- package/src/lib/components/timeline/timeline-content.ts +26 -0
- package/src/lib/components/timeline/timeline-description.ts +17 -0
- package/src/lib/components/timeline/timeline-dot.ts +45 -0
- package/src/lib/components/timeline/timeline-item.ts +28 -0
- package/src/lib/components/timeline/timeline-time.ts +17 -0
- package/src/lib/components/timeline/timeline-title.ts +17 -0
- package/src/lib/components/timeline/timeline.ts +17 -0
- package/src/lib/components/timezone/index.ts +5 -0
- package/src/lib/components/timezone/timezone-badge.ts +85 -0
- package/src/lib/components/timezone/timezone-button.ts +104 -0
- package/src/lib/components/timezone/timezone-display.ts +105 -0
- package/src/lib/components/timezone/timezone-select.ts +87 -0
- package/src/lib/components/timezone/timezone.service.ts +233 -0
- package/src/lib/components/toast/README.md +151 -0
- package/src/lib/components/toast/index.ts +8 -0
- package/src/lib/components/toast/toast-action.ts +27 -0
- package/src/lib/components/toast/toast-close.ts +29 -0
- package/src/lib/components/toast/toast-description.ts +17 -0
- package/src/lib/components/toast/toast-stack.ts +95 -0
- package/src/lib/components/toast/toast-title.ts +17 -0
- package/src/lib/components/toast/toast.ts +64 -0
- package/src/lib/components/toast/toast.types.ts +24 -0
- package/src/lib/components/toast/toaster.ts +67 -0
- package/src/lib/components/toggle/README.md +72 -0
- package/src/lib/components/toggle/index.ts +1 -0
- package/src/lib/components/toggle/toggle.ts +53 -0
- package/src/lib/components/toggle-group/README.md +101 -0
- package/src/lib/components/toggle-group/index.ts +2 -0
- package/src/lib/components/toggle-group/toggle-group-item.ts +62 -0
- package/src/lib/components/toggle-group/toggle-group.ts +53 -0
- package/src/lib/components/toolbar/README.md +76 -0
- package/src/lib/components/toolbar/index.ts +4 -0
- package/src/lib/components/toolbar/toolbar-separator.ts +32 -0
- package/src/lib/components/toolbar/toolbar-widget-group.ts +35 -0
- package/src/lib/components/toolbar/toolbar-widget.ts +48 -0
- package/src/lib/components/toolbar/toolbar.ts +44 -0
- package/src/lib/components/tooltip/ANIMATIONS.md +274 -0
- package/src/lib/components/tooltip/README.md +100 -0
- package/src/lib/components/tooltip/index.ts +3 -0
- package/src/lib/components/tooltip/tooltip-manager.ts +194 -0
- package/src/lib/components/tooltip/tooltip-trigger.ts +148 -0
- package/src/lib/components/tooltip/tooltip.ts +72 -0
- package/src/lib/components/tour-guide/README.md +158 -0
- package/src/lib/components/tour-guide/index.ts +2 -0
- package/src/lib/components/tour-guide/tour-guide.ts +492 -0
- package/src/lib/components/transfer-list/README.md +98 -0
- package/src/lib/components/transfer-list/index.ts +5 -0
- package/src/lib/components/transfer-list/transfer-list-types.ts +11 -0
- package/src/lib/components/transfer-list/transfer-list.ts +434 -0
- package/src/lib/components/tree/README.md +358 -0
- package/src/lib/components/tree/TODO.md +94 -0
- package/src/lib/components/tree/index.ts +6 -0
- package/src/lib/components/tree/tree-item-group.ts +40 -0
- package/src/lib/components/tree/tree-item-icon.ts +17 -0
- package/src/lib/components/tree/tree-item-trigger-icon.ts +26 -0
- package/src/lib/components/tree/tree-item-trigger.ts +51 -0
- package/src/lib/components/tree/tree-item.ts +64 -0
- package/src/lib/components/tree/tree.ts +21 -0
- package/src/lib/components/video-player/README.md +275 -0
- package/src/lib/components/video-player/index.ts +14 -0
- package/src/lib/components/video-player/video-player-big-play-button.ts +35 -0
- package/src/lib/components/video-player/video-player-buffering.ts +36 -0
- package/src/lib/components/video-player/video-player-controls.ts +28 -0
- package/src/lib/components/video-player/video-player-fullscreen-button.ts +38 -0
- package/src/lib/components/video-player/video-player-pip-button.ts +37 -0
- package/src/lib/components/video-player/video-player-play-button.ts +37 -0
- package/src/lib/components/video-player/video-player-progress.ts +56 -0
- package/src/lib/components/video-player/video-player-skip-button.ts +44 -0
- package/src/lib/components/video-player/video-player-speed-button.ts +74 -0
- package/src/lib/components/video-player/video-player-time.ts +31 -0
- package/src/lib/components/video-player/video-player-types.ts +13 -0
- package/src/lib/components/video-player/video-player-video.ts +127 -0
- package/src/lib/components/video-player/video-player-volume.ts +61 -0
- package/src/lib/components/video-player/video-player.ts +139 -0
- package/src/lib/components/virtual-list/README.md +120 -0
- package/src/lib/components/virtual-list/index.ts +2 -0
- package/src/lib/components/virtual-list/virtual-list-types.ts +9 -0
- package/src/lib/components/virtual-list/virtual-list.ts +174 -0
- package/src/lib/layouts/auth-layout.ts +30 -0
- package/src/lib/layouts/index.ts +3 -0
- package/src/lib/layouts/sidebar-layout.ts +37 -0
- package/src/lib/layouts/stacked-layout/README.md +84 -0
- package/src/lib/layouts/stacked-layout/index.ts +1 -0
- package/src/lib/layouts/stacked-layout/stacked-layout.ts +39 -0
- package/tsconfig.json +28 -0
- package/tsconfig.lib.json +12 -0
- package/tsconfig.lib.prod.json +9 -0
- package/fesm2022/semantic-components-ui-lab.mjs +0 -36277
- package/fesm2022/semantic-components-ui-lab.mjs.map +0 -1
- package/types/semantic-components-ui-lab.d.ts +0 -7454
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
# Sidebar Component (scx)
|
|
2
|
+
|
|
3
|
+
A comprehensive sidebar component system for Angular applications with collapsible states, mobile responsiveness, keyboard shortcuts, and state persistence.
|
|
4
|
+
|
|
5
|
+
## Components
|
|
6
|
+
|
|
7
|
+
### Core Components
|
|
8
|
+
|
|
9
|
+
- `ScSidebarProvider` - Root provider component with state management
|
|
10
|
+
- `ScSidebar` - Main sidebar container
|
|
11
|
+
- `ScSidebarTrigger` - Toggle button
|
|
12
|
+
- `ScSidebarRail` - Resize handle for collapsing/expanding
|
|
13
|
+
- `ScSidebarInset` - Main content wrapper
|
|
14
|
+
|
|
15
|
+
### Layout Components
|
|
16
|
+
|
|
17
|
+
- `ScSidebarHeader` - Header section
|
|
18
|
+
- `ScSidebarFooter` - Footer section
|
|
19
|
+
- `ScSidebarContent` - Scrollable content area
|
|
20
|
+
- `ScSidebarSeparator` - Visual separator
|
|
21
|
+
- `ScSidebarInput` - Styled input for search
|
|
22
|
+
|
|
23
|
+
### Menu Components
|
|
24
|
+
|
|
25
|
+
- `ScSidebarMenu` - Menu list container (ul)
|
|
26
|
+
- `ScSidebarMenuItem` - Menu list item (li)
|
|
27
|
+
- `ScSidebarMenuButton` - Menu button/link (works with both button and a elements)
|
|
28
|
+
- `ScSidebarMenuAction` - Action button on menu items
|
|
29
|
+
- `ScSidebarMenuBadge` - Badge/counter display
|
|
30
|
+
- `ScSidebarMenuSkeleton` - Loading skeleton
|
|
31
|
+
- `ScSidebarMenuSub` - Submenu container (ul)
|
|
32
|
+
- `ScSidebarMenuSubItem` - Submenu item (li)
|
|
33
|
+
- `ScSidebarMenuSubButton` - Submenu button/link
|
|
34
|
+
|
|
35
|
+
### Group Components
|
|
36
|
+
|
|
37
|
+
- `ScSidebarGroup` - Group container
|
|
38
|
+
- `ScSidebarGroupLabel` - Group header/label
|
|
39
|
+
- `ScSidebarGroupAction` - Action button for groups
|
|
40
|
+
- `ScSidebarGroupContent` - Group content wrapper
|
|
41
|
+
|
|
42
|
+
## Features
|
|
43
|
+
|
|
44
|
+
- **Reactive State Management** - Built with Angular signals
|
|
45
|
+
- **Keyboard Shortcuts** - Cmd/Ctrl + B to toggle sidebar
|
|
46
|
+
- **LocalStorage Persistence** - State persists across page refreshes
|
|
47
|
+
- **Mobile Responsive** - Sheet drawer on mobile devices
|
|
48
|
+
- **Multiple Variants** - sidebar, floating, inset
|
|
49
|
+
- **Collapsible Modes** - offcanvas, icon, none
|
|
50
|
+
- **Two-way Binding** - Model support for open state
|
|
51
|
+
- **CSS Variables** - Customizable widths
|
|
52
|
+
|
|
53
|
+
## How It Works
|
|
54
|
+
|
|
55
|
+
The sidebar uses a clever layout technique to push content to the side instead of overlaying it:
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
┌─────────────────────────────────────────────────────────┐
|
|
59
|
+
│ ScSidebarProvider (flex container) │
|
|
60
|
+
│ ┌─────────────────────┬─────────────────────────────┐ │
|
|
61
|
+
│ │ ScSidebar │ ScSidebarInset │ │
|
|
62
|
+
│ │ ┌─────────────────┐ │ (main content) │ │
|
|
63
|
+
│ │ │ Gap Div │ │ │ │
|
|
64
|
+
│ │ │ • Width: 16rem │ │ <header> │ │
|
|
65
|
+
│ │ │ • No height │ │ <button>Toggle</button> │ │
|
|
66
|
+
│ │ │ • Pushes content│ │ </header> │ │
|
|
67
|
+
│ │ └─────────────────┘ │ │ │
|
|
68
|
+
│ │ │ <main> │ │
|
|
69
|
+
│ │ ┌─────────────────┐ │ Your content here │ │
|
|
70
|
+
│ │ │ Fixed Container │ │ │ │
|
|
71
|
+
│ │ │ (actual sidebar)│ │ │ │
|
|
72
|
+
│ │ │ • Position fixed│ │ │ │
|
|
73
|
+
│ │ │ • Overlays gap │ │ │ │
|
|
74
|
+
│ │ └─────────────────┘ │ │ │
|
|
75
|
+
│ └─────────────────────┴─────────────────────────────┘ │
|
|
76
|
+
└─────────────────────────────────────────────────────────┘
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Key Concepts
|
|
80
|
+
|
|
81
|
+
1. **Gap Div** - An invisible spacer with width but no height that participates in the flex layout, creating space for the sidebar
|
|
82
|
+
2. **Fixed Container** - The actual sidebar content, positioned fixed to overlay the gap
|
|
83
|
+
3. **Flex Layout** - The provider uses flexbox, making the gap and content area sit side-by-side
|
|
84
|
+
4. **Responsive Collapse** - When collapsed, the gap width transitions to 0, allowing content to use full width
|
|
85
|
+
|
|
86
|
+
This architecture ensures smooth transitions and proper content flow without JavaScript layout calculations.
|
|
87
|
+
|
|
88
|
+
## Basic Usage
|
|
89
|
+
|
|
90
|
+
```typescript
|
|
91
|
+
import { ScSidebarProvider, ScSidebar, ScSidebarTrigger, ScSidebarHeader, ScSidebarContent, ScSidebarFooter, ScSidebarMenu, ScSidebarMenuItem, ScSidebarMenuButton, ScSidebarInset } from '@semantic-components/ui-lab';
|
|
92
|
+
|
|
93
|
+
@Component({
|
|
94
|
+
selector: 'app-layout',
|
|
95
|
+
imports: [
|
|
96
|
+
ScSidebarProvider,
|
|
97
|
+
ScSidebar,
|
|
98
|
+
// ... other imports
|
|
99
|
+
],
|
|
100
|
+
template: `
|
|
101
|
+
<div sc-sidebar-provider>
|
|
102
|
+
<div sc-sidebar>
|
|
103
|
+
<div sc-sidebar-header>
|
|
104
|
+
<h2>My App</h2>
|
|
105
|
+
</div>
|
|
106
|
+
|
|
107
|
+
<div sc-sidebar-content>
|
|
108
|
+
<ul sc-sidebar-menu>
|
|
109
|
+
<li sc-sidebar-menu-item>
|
|
110
|
+
<a sc-sidebar-menu-button routerLink="/dashboard">Dashboard</a>
|
|
111
|
+
</li>
|
|
112
|
+
</ul>
|
|
113
|
+
</div>
|
|
114
|
+
|
|
115
|
+
<div sc-sidebar-footer>User Info</div>
|
|
116
|
+
</div>
|
|
117
|
+
|
|
118
|
+
<main sc-sidebar-inset>
|
|
119
|
+
<header>
|
|
120
|
+
<button sc-sidebar-trigger>Toggle</button>
|
|
121
|
+
</header>
|
|
122
|
+
<router-outlet />
|
|
123
|
+
</main>
|
|
124
|
+
</div>
|
|
125
|
+
`,
|
|
126
|
+
})
|
|
127
|
+
export class AppLayout {}
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
## Advanced Usage
|
|
131
|
+
|
|
132
|
+
### With Submenu
|
|
133
|
+
|
|
134
|
+
```html
|
|
135
|
+
<ul sc-sidebar-menu>
|
|
136
|
+
<li sc-sidebar-menu-item>
|
|
137
|
+
<a sc-sidebar-menu-button>Projects</a>
|
|
138
|
+
<ul sc-sidebar-menu-sub>
|
|
139
|
+
<li sc-sidebar-menu-sub-item>
|
|
140
|
+
<a sc-sidebar-menu-sub-button routerLink="/projects/1">Project 1</a>
|
|
141
|
+
</li>
|
|
142
|
+
</ul>
|
|
143
|
+
</li>
|
|
144
|
+
</ul>
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
### With Groups
|
|
148
|
+
|
|
149
|
+
```html
|
|
150
|
+
<div sc-sidebar-group>
|
|
151
|
+
<div sc-sidebar-group-label>Navigation</div>
|
|
152
|
+
<div sc-sidebar-group-content>
|
|
153
|
+
<ul sc-sidebar-menu>
|
|
154
|
+
<!-- menu items -->
|
|
155
|
+
</ul>
|
|
156
|
+
</div>
|
|
157
|
+
</div>
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
### Variants
|
|
161
|
+
|
|
162
|
+
```html
|
|
163
|
+
<!-- Default sidebar -->
|
|
164
|
+
<div sc-sidebar variant="sidebar" collapsible="icon">
|
|
165
|
+
<!-- Floating sidebar -->
|
|
166
|
+
<div sc-sidebar variant="floating" collapsible="icon">
|
|
167
|
+
<!-- Inset sidebar -->
|
|
168
|
+
<div sc-sidebar variant="inset" collapsible="icon"></div>
|
|
169
|
+
</div>
|
|
170
|
+
</div>
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
### Two-way Binding
|
|
174
|
+
|
|
175
|
+
```typescript
|
|
176
|
+
@Component({
|
|
177
|
+
template: `
|
|
178
|
+
<div sc-sidebar-provider [(open)]="sidebarOpen">
|
|
179
|
+
<!-- sidebar content -->
|
|
180
|
+
</div>
|
|
181
|
+
`,
|
|
182
|
+
})
|
|
183
|
+
export class MyComponent {
|
|
184
|
+
sidebarOpen = signal(true);
|
|
185
|
+
}
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
## Configuration
|
|
189
|
+
|
|
190
|
+
### CSS Variables
|
|
191
|
+
|
|
192
|
+
The sidebar uses CSS variables that can be customized:
|
|
193
|
+
|
|
194
|
+
```css
|
|
195
|
+
:root {
|
|
196
|
+
--sidebar-width: 16rem;
|
|
197
|
+
--sidebar-width-mobile: 18rem; /* Available but not currently used */
|
|
198
|
+
--sidebar-width-icon: 3rem;
|
|
199
|
+
}
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
**Note:** The mobile sidebar currently uses the default width from the Sheet component. The `--sidebar-width-mobile` variable is available for future customization if needed.
|
|
203
|
+
|
|
204
|
+
### Props
|
|
205
|
+
|
|
206
|
+
#### ScSidebar
|
|
207
|
+
|
|
208
|
+
- `side` - 'left' | 'right' (default: 'left')
|
|
209
|
+
- `variant` - 'sidebar' | 'floating' | 'inset' (default: 'sidebar')
|
|
210
|
+
- `collapsible` - 'offcanvas' | 'icon' | 'none' (default: 'offcanvas')
|
|
211
|
+
|
|
212
|
+
#### ScSidebarMenuButton
|
|
213
|
+
|
|
214
|
+
- `size` - 'default' | 'sm' | 'lg' (default: 'default')
|
|
215
|
+
- `isActive` - boolean (default: false)
|
|
216
|
+
- `tooltip` - string (optional)
|
|
217
|
+
|
|
218
|
+
#### ScSidebarMenuSubButton
|
|
219
|
+
|
|
220
|
+
- `size` - 'sm' | 'md' (default: 'md')
|
|
221
|
+
- `isActive` - boolean (default: false)
|
|
222
|
+
|
|
223
|
+
## Keyboard Shortcuts
|
|
224
|
+
|
|
225
|
+
- `Cmd + B` (Mac) / `Ctrl + B` (Windows) - Toggle sidebar
|
|
226
|
+
|
|
227
|
+
## State Persistence
|
|
228
|
+
|
|
229
|
+
The sidebar state is automatically saved to `localStorage` (key: `sc-sidebar-state`). The state will be restored when the page is refreshed.
|
|
230
|
+
|
|
231
|
+
## Mobile Behavior
|
|
232
|
+
|
|
233
|
+
On screens smaller than 768px (md breakpoint), the sidebar automatically switches to a sheet drawer that slides in from the side using the `ScSheetProvider`, `ScSheetPortal`, and `ScSheet` components. The `ScSidebarTrigger` automatically handles mobile vs desktop toggle logic.
|
|
234
|
+
|
|
235
|
+
### Mobile Implementation Details
|
|
236
|
+
|
|
237
|
+
The mobile view uses the new ScSheet architecture with a provider pattern:
|
|
238
|
+
|
|
239
|
+
- `ScSheetProvider` manages the open state and side
|
|
240
|
+
- `ScSheetPortal` creates the overlay with backdrop
|
|
241
|
+
- `ScSheet` is the dialog panel with slide animations
|
|
242
|
+
|
|
243
|
+
**Mobile Width:** The mobile sidebar uses the default width provided by the Sheet component rather than a custom width. This ensures consistency with other sheet-based UI elements and provides a responsive width that adapts to different device sizes.
|
|
244
|
+
|
|
245
|
+
## Accessibility
|
|
246
|
+
|
|
247
|
+
- All interactive elements are keyboard accessible
|
|
248
|
+
- Proper ARIA attributes are applied
|
|
249
|
+
- Focus management is handled automatically
|
|
250
|
+
- Screen reader support included
|
|
251
|
+
|
|
252
|
+
## Demo
|
|
253
|
+
|
|
254
|
+
See a comprehensive demo at `/dashboard` in the blocks application.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export { ScSidebarProvider } from './sidebar-provider';
|
|
2
|
+
export { ScSidebar } from './sidebar';
|
|
3
|
+
export { ScSidebarTrigger } from './sidebar-trigger';
|
|
4
|
+
export { ScSidebarRail } from './sidebar-rail';
|
|
5
|
+
export { ScSidebarInset } from './sidebar-inset';
|
|
6
|
+
export { ScSidebarHeader } from './sidebar-header';
|
|
7
|
+
export { ScSidebarFooter } from './sidebar-footer';
|
|
8
|
+
export { ScSidebarContent } from './sidebar-content';
|
|
9
|
+
export { ScSidebarSeparator } from './sidebar-separator';
|
|
10
|
+
export { ScSidebarInput } from './sidebar-input';
|
|
11
|
+
export { ScSidebarGroup } from './sidebar-group';
|
|
12
|
+
export { ScSidebarGroupLabel } from './sidebar-group-label';
|
|
13
|
+
export { ScSidebarGroupAction } from './sidebar-group-action';
|
|
14
|
+
export { ScSidebarGroupContent } from './sidebar-group-content';
|
|
15
|
+
export { ScSidebarMenu } from './sidebar-menu';
|
|
16
|
+
export { ScSidebarMenuItem } from './sidebar-menu-item';
|
|
17
|
+
export { ScSidebarMenuButton } from './sidebar-menu-button';
|
|
18
|
+
export { ScSidebarMenuAction } from './sidebar-menu-action';
|
|
19
|
+
export { ScSidebarMenuBadge } from './sidebar-menu-badge';
|
|
20
|
+
export { ScSidebarMenuSkeleton } from './sidebar-menu-skeleton';
|
|
21
|
+
export { ScSidebarMenuSub } from './sidebar-menu-sub';
|
|
22
|
+
export { ScSidebarMenuSubItem } from './sidebar-menu-sub-item';
|
|
23
|
+
export { ScSidebarMenuSubButton } from './sidebar-menu-sub-button';
|
|
24
|
+
export { ScSidebarState } from './sidebar-state.service';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'div[sc-sidebar-content]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-content',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarContent {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
protected readonly class = computed(() =>
|
|
15
|
+
cn(
|
|
16
|
+
'flex min-h-0 flex-1 flex-col gap-0 overflow-auto group-data-[collapsible=icon]:overflow-hidden',
|
|
17
|
+
this.classInput(),
|
|
18
|
+
),
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'div[sc-sidebar-footer]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-footer',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarFooter {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
protected readonly class = computed(() =>
|
|
15
|
+
cn('flex flex-col gap-2 p-2', this.classInput()),
|
|
16
|
+
);
|
|
17
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'button[sc-sidebar-group-action]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-group-action',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarGroupAction {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
readonly asChild = input<boolean>(false);
|
|
15
|
+
|
|
16
|
+
protected readonly class = computed(() =>
|
|
17
|
+
cn(
|
|
18
|
+
'absolute right-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0',
|
|
19
|
+
'after:absolute after:-inset-2 after:md:hidden',
|
|
20
|
+
'group-data-[collapsible=icon]:hidden',
|
|
21
|
+
this.classInput(),
|
|
22
|
+
),
|
|
23
|
+
);
|
|
24
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'div[sc-sidebar-group-content]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-group-content',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarGroupContent {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
protected readonly class = computed(() =>
|
|
15
|
+
cn('w-full text-sm', this.classInput()),
|
|
16
|
+
);
|
|
17
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'div[sc-sidebar-group-label]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-group-label',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarGroupLabel {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
readonly asChild = input<boolean>(false);
|
|
15
|
+
|
|
16
|
+
protected readonly class = computed(() =>
|
|
17
|
+
cn(
|
|
18
|
+
'flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium text-sidebar-foreground/70 outline-none ring-sidebar-ring transition-[margin,opa] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0',
|
|
19
|
+
'group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0',
|
|
20
|
+
this.classInput(),
|
|
21
|
+
),
|
|
22
|
+
);
|
|
23
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'div[sc-sidebar-group]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-group',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarGroup {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
protected readonly class = computed(() =>
|
|
15
|
+
cn('relative flex w-full min-w-0 flex-col p-2', this.classInput()),
|
|
16
|
+
);
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'div[sc-sidebar-header]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-header',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarHeader {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
protected readonly class = computed(() =>
|
|
15
|
+
cn('flex flex-col gap-2 p-2', this.classInput()),
|
|
16
|
+
);
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'input[sc-sidebar-input]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-input',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarInput {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
protected readonly class = computed(() =>
|
|
15
|
+
cn(
|
|
16
|
+
'h-8 w-full bg-background shadow-none focus-visible:ring-2 focus-visible:ring-sidebar-ring',
|
|
17
|
+
this.classInput(),
|
|
18
|
+
),
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'main[sc-sidebar-inset]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-inset',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarInset {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
protected readonly class = computed(() =>
|
|
15
|
+
cn(
|
|
16
|
+
'relative flex min-h-svh flex-1 flex-col bg-background',
|
|
17
|
+
'peer-data-[variant=inset]:min-h-[calc(100svh-theme(spacing.4))] md:peer-data-[variant=inset]:m-2 md:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow',
|
|
18
|
+
this.classInput(),
|
|
19
|
+
),
|
|
20
|
+
);
|
|
21
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'button[sc-sidebar-menu-action]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-menu-action',
|
|
8
|
+
'data-sidebar': 'menu-action',
|
|
9
|
+
'[class]': 'class()',
|
|
10
|
+
},
|
|
11
|
+
})
|
|
12
|
+
export class ScSidebarMenuAction {
|
|
13
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
14
|
+
|
|
15
|
+
readonly asChild = input<boolean>(false);
|
|
16
|
+
readonly showOnHover = input<boolean>(false);
|
|
17
|
+
|
|
18
|
+
protected readonly class = computed(() =>
|
|
19
|
+
cn(
|
|
20
|
+
'absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 peer-hover/menu-button:text-sidebar-accent-foreground [&>svg]:size-4 [&>svg]:shrink-0',
|
|
21
|
+
'after:absolute after:-inset-2 after:md:hidden',
|
|
22
|
+
'peer-data-[size=sm]/menu-button:top-1',
|
|
23
|
+
'peer-data-[size=default]/menu-button:top-1.5',
|
|
24
|
+
'peer-data-[size=lg]/menu-button:top-2.5',
|
|
25
|
+
'group-data-[collapsible=icon]:hidden',
|
|
26
|
+
this.showOnHover() &&
|
|
27
|
+
'group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 peer-data-[active=true]/menu-button:text-sidebar-accent-foreground md:opacity-0',
|
|
28
|
+
this.classInput(),
|
|
29
|
+
),
|
|
30
|
+
);
|
|
31
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'div[sc-sidebar-menu-badge]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-menu-badge',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarMenuBadge {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
protected readonly class = computed(() =>
|
|
15
|
+
cn(
|
|
16
|
+
'absolute right-1 flex h-5 min-w-5 items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-sidebar-foreground select-none pointer-events-none',
|
|
17
|
+
'peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground',
|
|
18
|
+
'peer-data-[size=sm]/menu-button:top-1',
|
|
19
|
+
'peer-data-[size=default]/menu-button:top-1.5',
|
|
20
|
+
'peer-data-[size=lg]/menu-button:top-2.5',
|
|
21
|
+
'group-data-[collapsible=icon]:hidden',
|
|
22
|
+
this.classInput(),
|
|
23
|
+
),
|
|
24
|
+
);
|
|
25
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { computed, Directive, input } from '@angular/core';
|
|
2
|
+
import { cva, VariantProps } from 'class-variance-authority';
|
|
3
|
+
import { cn } from '@semantic-components/ui';
|
|
4
|
+
|
|
5
|
+
const sidebarMenuButtonVariants = cva(
|
|
6
|
+
'ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground active:bg-sidebar-accent active:text-sidebar-accent-foreground data-active:bg-sidebar-accent data-active:text-sidebar-accent-foreground data-open:hover:bg-sidebar-accent data-open:hover:text-sidebar-accent-foreground gap-2 rounded-md p-2 text-left text-sm transition-[width,height,padding] group-has-data-[sidebar=menu-action]/menu-item:pr-8 group-data-[collapsible=icon]:size-8! group-data-[collapsible=icon]:p-2! focus-visible:ring-2 data-active:font-medium peer/menu-button flex w-full items-center overflow-hidden outline-hidden group/menu-button disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&_svg]:size-4 [&_svg]:shrink-0',
|
|
7
|
+
{
|
|
8
|
+
variants: {
|
|
9
|
+
variant: {
|
|
10
|
+
default: 'hover:bg-sidebar-accent hover:text-sidebar-accent-foreground',
|
|
11
|
+
outline:
|
|
12
|
+
'bg-background hover:bg-sidebar-accent hover:text-sidebar-accent-foreground shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]',
|
|
13
|
+
},
|
|
14
|
+
size: {
|
|
15
|
+
default: 'h-8 text-sm',
|
|
16
|
+
sm: 'h-7 text-xs',
|
|
17
|
+
lg: 'h-12 text-sm group-data-[collapsible=icon]:p-0!',
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
defaultVariants: {
|
|
21
|
+
variant: 'default',
|
|
22
|
+
size: 'default',
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
export type ScSidebarMenuButtonVariants = VariantProps<
|
|
28
|
+
typeof sidebarMenuButtonVariants
|
|
29
|
+
>;
|
|
30
|
+
|
|
31
|
+
@Directive({
|
|
32
|
+
selector: 'button[sc-sidebar-menu-button], a[sc-sidebar-menu-button]',
|
|
33
|
+
host: {
|
|
34
|
+
'data-slot': 'sidebar-menu-button',
|
|
35
|
+
'[class]': 'class()',
|
|
36
|
+
'[attr.data-active]': 'isActive() || null',
|
|
37
|
+
'[attr.data-size]': 'size()',
|
|
38
|
+
},
|
|
39
|
+
})
|
|
40
|
+
export class ScSidebarMenuButton {
|
|
41
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
42
|
+
|
|
43
|
+
readonly variant = input<ScSidebarMenuButtonVariants['variant']>('default');
|
|
44
|
+
readonly size = input<ScSidebarMenuButtonVariants['size']>('default');
|
|
45
|
+
readonly isActive = input<boolean>(false);
|
|
46
|
+
readonly tooltip = input<string>();
|
|
47
|
+
|
|
48
|
+
protected readonly class = computed(() => {
|
|
49
|
+
const size = this.size();
|
|
50
|
+
return cn(
|
|
51
|
+
sidebarMenuButtonVariants({ variant: this.variant(), size }),
|
|
52
|
+
this.classInput(),
|
|
53
|
+
);
|
|
54
|
+
});
|
|
55
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: 'li[sc-sidebar-menu-item]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'sidebar-menu-item',
|
|
8
|
+
'[class]': 'class()',
|
|
9
|
+
},
|
|
10
|
+
})
|
|
11
|
+
export class ScSidebarMenuItem {
|
|
12
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
13
|
+
|
|
14
|
+
protected readonly class = computed(() =>
|
|
15
|
+
cn('group/menu-item relative', this.classInput()),
|
|
16
|
+
);
|
|
17
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ChangeDetectionStrategy,
|
|
3
|
+
Component,
|
|
4
|
+
computed,
|
|
5
|
+
input,
|
|
6
|
+
ViewEncapsulation,
|
|
7
|
+
} from '@angular/core';
|
|
8
|
+
import { cn } from '@semantic-components/ui';
|
|
9
|
+
import { ScSkeleton } from '../skeleton';
|
|
10
|
+
|
|
11
|
+
@Component({
|
|
12
|
+
selector: 'div[sc-sidebar-menu-skeleton]',
|
|
13
|
+
imports: [ScSkeleton],
|
|
14
|
+
host: {
|
|
15
|
+
'data-slot': 'sidebar-menu-skeleton',
|
|
16
|
+
'[class]': 'class()',
|
|
17
|
+
},
|
|
18
|
+
template: `
|
|
19
|
+
@if (showIcon()) {
|
|
20
|
+
<div sc-skeleton class="size-4 rounded-md"></div>
|
|
21
|
+
}
|
|
22
|
+
<div
|
|
23
|
+
sc-skeleton
|
|
24
|
+
class="h-4 max-w-[var(--skeleton-width)] flex-1"
|
|
25
|
+
[style.--skeleton-width]="width"
|
|
26
|
+
></div>
|
|
27
|
+
`,
|
|
28
|
+
encapsulation: ViewEncapsulation.None,
|
|
29
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
30
|
+
})
|
|
31
|
+
export class ScSidebarMenuSkeleton {
|
|
32
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
33
|
+
readonly showIcon = input<boolean>(false);
|
|
34
|
+
|
|
35
|
+
protected readonly width = `${Math.floor(Math.random() * 40) + 50}%`;
|
|
36
|
+
|
|
37
|
+
protected readonly class = computed(() =>
|
|
38
|
+
cn('h-8 gap-2 rounded-md px-2 flex items-center', this.classInput()),
|
|
39
|
+
);
|
|
40
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Directive, computed, input } from '@angular/core';
|
|
2
|
+
import { cn } from '@semantic-components/ui';
|
|
3
|
+
|
|
4
|
+
const sizeStyles: Record<'sm' | 'md', string> = {
|
|
5
|
+
sm: 'text-xs',
|
|
6
|
+
md: 'text-sm',
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
@Directive({
|
|
10
|
+
selector: 'a[sc-sidebar-menu-sub-button], button[sc-sidebar-menu-sub-button]',
|
|
11
|
+
host: {
|
|
12
|
+
'data-slot': 'sidebar-menu-sub-button',
|
|
13
|
+
'[class]': 'class()',
|
|
14
|
+
'[attr.data-active]': 'isActive() || null',
|
|
15
|
+
'[attr.data-size]': 'size()',
|
|
16
|
+
},
|
|
17
|
+
})
|
|
18
|
+
export class ScSidebarMenuSubButton {
|
|
19
|
+
readonly classInput = input<string>('', { alias: 'class' });
|
|
20
|
+
|
|
21
|
+
readonly size = input<'sm' | 'md'>('md');
|
|
22
|
+
readonly isActive = input<boolean>(false);
|
|
23
|
+
|
|
24
|
+
protected readonly class = computed(() => {
|
|
25
|
+
const size = this.size();
|
|
26
|
+
return cn(
|
|
27
|
+
'flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 text-sidebar-foreground outline-none ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0 [&>svg]:text-sidebar-accent-foreground',
|
|
28
|
+
'data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground',
|
|
29
|
+
sizeStyles[size],
|
|
30
|
+
this.classInput(),
|
|
31
|
+
);
|
|
32
|
+
});
|
|
33
|
+
}
|