@semantic-components/ui-lab 0.79.0 → 0.80.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semantic-components/ui-lab",
3
- "version": "0.79.0",
3
+ "version": "0.80.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -21,9 +21,9 @@
21
21
  "rxjs": ">=7.8.2",
22
22
  "@angular/platform-browser": ">=21.1.1",
23
23
  "@semantic-icons/lucide-icons": ">=0.56.0",
24
- "@semantic-components/ui": "0.79.0",
24
+ "@semantic-components/ui": "0.80.0",
25
25
  "@js-temporal/polyfill": "^0.5.1",
26
- "@semantic-components/carousel": "0.79.0"
26
+ "@semantic-components/carousel": "0.80.0"
27
27
  },
28
28
  "sideEffects": false,
29
29
  "module": "fesm2022/semantic-components-ui-lab.mjs",
@@ -2600,69 +2600,68 @@ declare class ScSignaturePadWidthButton {
2600
2600
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScSignaturePadWidthButton, "button[scSignaturePadPenWidth]", never, { "width": { "alias": "width"; "required": true; "isSignal": true; }; "ariaLabelInput": { "alias": "aria-label"; "required": false; "isSignal": true; }; "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2601
2601
  }
2602
2602
 
2603
- type SpeedDialDirection = 'up' | 'down' | 'left' | 'right';
2604
- interface SpeedDialAction {
2605
- id: string;
2606
- icon: Type<unknown>;
2607
- label: string;
2608
- disabled?: boolean;
2609
- ariaLabel?: string;
2610
- }
2611
- interface SpeedDialActionClickEvent {
2612
- action: SpeedDialAction;
2613
- index: number;
2603
+ declare class ScSpeedDialAction {
2604
+ readonly speedDial: _semantic_components_ui_lab.ScSpeedDial;
2605
+ readonly classInput: _angular_core.InputSignal<string>;
2606
+ protected readonly index: _angular_core.Signal<number>;
2607
+ protected readonly transitionDelay: _angular_core.Signal<string>;
2608
+ protected readonly class: _angular_core.Signal<string>;
2609
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScSpeedDialAction, never>;
2610
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScSpeedDialAction, "[scSpeedDialAction]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2614
2611
  }
2615
2612
 
2613
+ type SpeedDialDirection = 'up' | 'down' | 'left' | 'right';
2614
+ type SpeedDialSize = 'sm' | 'md' | 'lg';
2615
+
2616
2616
  declare class ScSpeedDial {
2617
2617
  private readonly elementRef;
2618
2618
  private readonly destroyRef;
2619
- readonly actions: _angular_core.InputSignal<SpeedDialAction[]>;
2619
+ readonly classInput: _angular_core.InputSignal<string>;
2620
2620
  readonly direction: _angular_core.InputSignal<SpeedDialDirection>;
2621
- readonly icon: _angular_core.InputSignal<Type<unknown> | null>;
2622
- readonly closeIcon: _angular_core.InputSignal<Type<unknown> | null>;
2623
- readonly label: _angular_core.InputSignal<string>;
2624
- readonly ariaLabel: _angular_core.InputSignal<string>;
2625
- readonly showLabels: _angular_core.InputSignal<boolean>;
2626
- readonly closeOnActionClick: _angular_core.InputSignal<boolean>;
2627
- readonly closeOnOutsideClick: _angular_core.InputSignal<boolean>;
2628
- readonly size: _angular_core.InputSignal<"sm" | "lg" | "md">;
2629
- readonly actionSize: _angular_core.InputSignal<"sm" | "lg" | "md">;
2630
- readonly class: _angular_core.InputSignal<string>;
2621
+ readonly size: _angular_core.InputSignal<SpeedDialSize>;
2631
2622
  readonly open: _angular_core.ModelSignal<boolean>;
2632
- readonly actionClick: _angular_core.OutputEmitterRef<SpeedDialActionClickEvent>;
2633
- readonly openChange: _angular_core.OutputEmitterRef<boolean>;
2634
- protected readonly containerClass: _angular_core.Signal<string>;
2635
- protected readonly actionsContainerClass: _angular_core.Signal<string>;
2636
- protected readonly fabClass: _angular_core.Signal<string>;
2637
- protected readonly fabIconClass: _angular_core.Signal<string>;
2638
- protected actionWrapperClass(index: number): string;
2639
- private fabSizeClasses;
2623
+ readonly actions: _angular_core.Signal<readonly ScSpeedDialAction[]>;
2624
+ protected readonly class: _angular_core.Signal<string>;
2640
2625
  constructor();
2641
2626
  toggle(): void;
2642
2627
  close(): void;
2643
- onActionClick(action: SpeedDialAction, index: number): void;
2644
2628
  onEscape(): void;
2645
2629
  private setupOutsideClickHandler;
2646
2630
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScSpeedDial, never>;
2647
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScSpeedDial, "sc-speed-dial", never, { "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "closeIcon": { "alias": "closeIcon"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "showLabels": { "alias": "showLabels"; "required": false; "isSignal": true; }; "closeOnActionClick": { "alias": "closeOnActionClick"; "required": false; "isSignal": true; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "actionSize": { "alias": "actionSize"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "actionClick": "actionClick"; "openChange": "openChange"; }, never, never, true, never>;
2631
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScSpeedDial, "[scSpeedDial]", ["scSpeedDial"], { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; }, ["actions"], never, true, never>;
2648
2632
  }
2649
2633
 
2650
- declare class ScSpeedDialAction {
2651
- readonly icon: _angular_core.InputSignal<Type<unknown>>;
2652
- readonly label: _angular_core.InputSignal<string>;
2653
- readonly disabled: _angular_core.InputSignal<boolean>;
2654
- readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
2655
- readonly showLabel: _angular_core.InputSignal<boolean>;
2656
- readonly labelVisible: _angular_core.InputSignal<boolean>;
2657
- readonly size: _angular_core.InputSignal<"sm" | "lg" | "md">;
2658
- readonly class: _angular_core.InputSignal<string>;
2659
- readonly actionClick: _angular_core.OutputEmitterRef<void>;
2660
- protected readonly buttonClass: _angular_core.Signal<string>;
2661
- protected readonly iconClass: _angular_core.Signal<string>;
2662
- protected readonly labelClass: _angular_core.Signal<string>;
2634
+ declare class ScSpeedDialActionButton {
2635
+ private readonly speedDial;
2636
+ readonly classInput: _angular_core.InputSignal<string>;
2637
+ protected readonly class: _angular_core.Signal<string>;
2663
2638
  private sizeClasses;
2664
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScSpeedDialAction, never>;
2665
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScSpeedDialAction, "sc-speed-dial-action", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "labelVisible": { "alias": "labelVisible"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "actionClick": "actionClick"; }, never, never, true, never>;
2639
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScSpeedDialActionButton, never>;
2640
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScSpeedDialActionButton, "button[scSpeedDialActionButton]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2641
+ }
2642
+
2643
+ declare class ScSpeedDialActionLabel {
2644
+ readonly classInput: _angular_core.InputSignal<string>;
2645
+ protected readonly class: _angular_core.Signal<string>;
2646
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScSpeedDialActionLabel, never>;
2647
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScSpeedDialActionLabel, "[scSpeedDialActionLabel]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2648
+ }
2649
+
2650
+ declare class ScSpeedDialActionList {
2651
+ readonly speedDial: _semantic_components_ui_lab.ScSpeedDial;
2652
+ readonly classInput: _angular_core.InputSignal<string>;
2653
+ protected readonly class: _angular_core.Signal<string>;
2654
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScSpeedDialActionList, never>;
2655
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScSpeedDialActionList, "[scSpeedDialActionList]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2656
+ }
2657
+
2658
+ declare class ScSpeedDialTrigger {
2659
+ readonly speedDial: _semantic_components_ui_lab.ScSpeedDial;
2660
+ readonly classInput: _angular_core.InputSignal<string>;
2661
+ protected readonly class: _angular_core.Signal<string>;
2662
+ private sizeClasses;
2663
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScSpeedDialTrigger, never>;
2664
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScSpeedDialTrigger, "button[scSpeedDialTrigger]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2666
2665
  }
2667
2666
 
2668
2667
  interface SpotlightOptions {
@@ -3575,5 +3574,5 @@ declare class ScButtonPattern {
3575
3574
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScButtonPattern, "[scButtonPattern]", never, { "enabled": { "alias": "scButtonPattern"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3576
3575
  }
3577
3576
 
3578
- export { AuthLayout, DEFAULT_BREAKPOINTS, DEFAULT_CATEGORIES, DEFAULT_CONFIG, DEFAULT_COUNTER_OPTIONS, DEFAULT_DOCK_OPTIONS, DEFAULT_TOOLBAR_CONFIG, SC_AUDIO_PLAYER, SC_BARCODE_SCANNER, SC_COLOR_PICKER, SC_COUNTDOWN, SC_DATA_TABLE, SC_IMAGE_COMPARE, SC_IMAGE_CROPPER, SC_INFINITE_SCROLL, SC_KANBAN_BOARD, SC_LANGUAGE_CONFIG, SC_LIGHTBOX_PROVIDER, SC_NOTIFICATION_CENTER, SC_PDF_VIEWER, SC_SIGNATURE_PAD, SC_STEPPER, SC_STEPPER_ITEM, SC_TAG_INPUT, SC_TREE_ITEM, ScAnimatedCounter, ScAudioPlayer, ScAudioPlayerControls, ScAudioPlayerCover, ScAudioPlayerNext, ScAudioPlayerPlay, ScAudioPlayerPrevious, ScAudioPlayerProgress, ScAudioPlayerRepeat, ScAudioPlayerShuffle, ScAudioPlayerTrackInfo, ScAudioPlayerVolume, ScBarcodeScanner, ScBarcodeVideo, ScButtonPattern, ScColorPicker, ScColorPickerArea, ScColorPickerEyeDropper, ScColorPickerHue, ScColorPickerInput, ScColorPickerPreview, ScColorPickerSwatches, ScCountdown, ScDataTable, ScDataTableBody, ScDataTableCell, ScDataTableColumnToggle, ScDataTableFilter, ScDataTableHead, ScDataTableHeader, ScDataTablePagination, ScDataTableRow, ScDateRangePicker, ScDiffViewer, ScDock, ScDockBadge, ScDockItem, ScDockItems, ScEmojiPicker, ScEmojiPickerCategoryTabs, ScEmojiPickerEmpty, ScEmojiPickerGrid, ScEmojiPickerItem, ScEmojiPickerRecent, ScEmojiPickerSearch, ScEmojiPickerState, ScEmojiPickerTrigger, ScImageAnnotator, ScImageCompare, ScImageCompareAfter, ScImageCompareArea, ScImageCompareBefore, ScImageCompareLabel, ScImageCompareSlider, ScImageCropper, ScImageCropperAspectRatio, ScImageCropperCanvas, ScImageCropperDragRegion, ScImageCropperFileInput, ScImageCropperFlipH, ScImageCropperFlipV, ScImageCropperGrid, ScImageCropperHandle, ScImageCropperImage, ScImageCropperOverlay, ScImageCropperPreview, ScImageCropperReset, ScImageCropperRotateLeft, ScImageCropperRotateRight, ScImageCropperSelection, ScImageCropperZoomIn, ScImageCropperZoomOut, ScImageCropperZoomSlider, ScInfiniteScroll, ScInfiniteScrollEnd, ScInfiniteScrollLoader, ScKanbanBoard, ScKanbanCard, ScKanbanColumn, ScLanguageButton, ScLanguageSelect, ScLanguageService, ScLanguageToggle, ScLightbox, ScLightboxClose, ScLightboxCounter, ScLightboxGallery, ScLightboxGalleryItem, ScLightboxImage, ScLightboxNext, ScLightboxPortal, ScLightboxPrev, ScLightboxProvider, ScLightboxThumbnail, ScLightboxThumbnailBar, ScLightboxToolbar, ScLightboxTrigger, ScLightboxZoomControls, ScLightboxZoomIn, ScLightboxZoomOut, ScLightboxZoomReset, ScMarquee, ScMarqueeContent, ScMarqueeFade, ScMarqueeItem, ScMarqueeText, ScMasonryGrid, ScMasonryItem, ScMentionInput, ScNativeDialog, ScNativeDialogBody, ScNativeDialogClose, ScNativeDialogContent, ScNativeDialogDescription, ScNativeDialogFooter, ScNativeDialogHeader, ScNativeDialogProvider, ScNativeDialogTitle, ScNativeDialogTrigger, ScNavbar, ScNavbarActions, ScNavbarBrand, ScNavbarGroup, ScNavbarMobileLink, ScNavbarMobileMenu, ScNavbarMobilePortal, ScNavbarMobileTrigger, ScNavbarProvider, ScNotificationCenter, ScNotificationCenterContainer, ScNotificationGroup, ScNotificationItem, ScOrgChart, ScOrgChartNode, ScPdfViewer, ScPdfViewerContainer, ScPdfViewerContent, ScPdfViewerDownload, ScPdfViewerEmpty, ScPdfViewerError, ScPdfViewerFullscreen, ScPdfViewerLoading, ScPdfViewerNav, ScPdfViewerNextPage, ScPdfViewerPageInfo, ScPdfViewerPrevPage, ScPdfViewerPrint, ScPdfViewerRetry, ScPdfViewerRoot, ScPdfViewerRotateLeft, ScPdfViewerRotateRight, ScPdfViewerSeparator, ScPdfViewerSpacer, ScPdfViewerToolbar$1 as ScPdfViewerToolbar, ScPdfViewerToolbar as ScPdfViewerToolbarLegacy, ScPdfViewerZoom, ScPdfViewerZoomIn, ScPdfViewerZoomOut, ScPdfViewerZoomSelect, ScQrCode, ScQrCodeDownload, ScSidebarLayout, ScSignaturePad, ScSignaturePadCanvas, ScSignaturePadClearButton, ScSignaturePadColorButton, ScSignaturePadControls, ScSignaturePadToolbar, ScSignaturePadUndoButton, ScSignaturePadWidthButton, ScSpeedDial, ScSpeedDialAction, ScSpotlight, ScSpotlightActions, ScSpotlightDescription, ScSpotlightTitle, ScStackedLayout, ScStatCard, ScStatCardChange, ScStatCardDescription, ScStatCardIcon, ScStatCardLabel, ScStatCardValue, ScStepper, ScStepperContent, ScStepperDescription, ScStepperItem, ScStepperList, ScStepperNext, ScStepperPrevious, ScStepperSeparator, ScStepperTitle, ScStepperTrigger, ScTagInput, ScTagInputClear, ScTagInputCount, ScTagInputField, ScTagInputTag, ScTimePickerClock, ScTimeline, ScTimelineConnector, ScTimelineContent, ScTimelineDescription, ScTimelineDot, ScTimelineItem, ScTimelineTime, ScTimelineTitle, ScTourGuide, ScTransferList, ScTree, ScTreeItem, ScTreeItemGroup, ScTreeItemIcon, ScTreeItemTrigger, ScTreeItemTriggerIcon, ScVideoPlayer, ScVideoPlayerBigPlay, ScVideoPlayerBufferingIndicator, ScVideoPlayerControls, ScVideoPlayerFullscreen, ScVideoPlayerPip, ScVideoPlayerPlayPause, ScVideoPlayerProgress, ScVideoPlayerSkip, ScVideoPlayerSpacer, ScVideoPlayerSpeed, ScVideoPlayerTime, ScVideoPlayerToolbar, ScVideoPlayerVideo, ScVideoPlayerVolume, TourService, ZOOM_LEVELS, computeDiff, computeWordDiff, createScDateRangePresets, createUnifiedDiff };
3579
- export type { AnimatedCounterEasing, AnimatedCounterOptions, Annotation, AnnotationPoint, AnnotationTool, BarcodeFormat, BarcodeResult, ColumnDef, ColumnVisibilityState, CountdownTime, DiffLine, DiffOptions, DiffResult, DiffViewMode, DockItem, DockOptions, DockPosition, DockSize, Emoji, EmojiCategory, HSL, HSV, ImageAnnotatorState, KanbanAssignee, KanbanCard, KanbanCardAddEvent, KanbanCardDeleteEvent, KanbanColumn, KanbanDragEvent, KanbanLabel, Language, LanguageConfig, MasonryBreakpoint, MasonryConfig, MasonryLayoutMode, MentionUser, Notification, NotificationAction, NotificationActionEvent, NotificationDismissEvent, NotificationFilter, NotificationGroup, NotificationGroupCollapseEvent, NotificationMarkReadEvent, NotificationType, OrgChartDirection, OrgChartNode, OrgChartNodeClickEvent, OrgChartNodeExpandEvent, PdfErrorEvent, PdfLoadEvent, PdfPageChangeEvent, PdfToolbarConfig, PdfZoomChangeEvent, PdfZoomLevel, QRErrorCorrectionLevel, RGB, ScAudioTrack, ScDateRangePreset, ScImageCropperArea, ScImageCropperHandlePosition, ScImageCropperResult, ScLightboxImageData, ScNotificationCenterApi, ScSignatureLine, ScSignaturePoint, ScVideoSource, ScVideoTrack, SortDirection, SortingState, SpeedDialAction, SpeedDialActionClickEvent, SpeedDialDirection, SpotlightOptions, StatCardSize, StatCardTrend, StatCardVariant, StepperOrientation, TourOptions, TourStep, TransferListItem, TransferListState };
3577
+ export { AuthLayout, DEFAULT_BREAKPOINTS, DEFAULT_CATEGORIES, DEFAULT_CONFIG, DEFAULT_COUNTER_OPTIONS, DEFAULT_DOCK_OPTIONS, DEFAULT_TOOLBAR_CONFIG, SC_AUDIO_PLAYER, SC_BARCODE_SCANNER, SC_COLOR_PICKER, SC_COUNTDOWN, SC_DATA_TABLE, SC_IMAGE_COMPARE, SC_IMAGE_CROPPER, SC_INFINITE_SCROLL, SC_KANBAN_BOARD, SC_LANGUAGE_CONFIG, SC_LIGHTBOX_PROVIDER, SC_NOTIFICATION_CENTER, SC_PDF_VIEWER, SC_SIGNATURE_PAD, SC_STEPPER, SC_STEPPER_ITEM, SC_TAG_INPUT, SC_TREE_ITEM, ScAnimatedCounter, ScAudioPlayer, ScAudioPlayerControls, ScAudioPlayerCover, ScAudioPlayerNext, ScAudioPlayerPlay, ScAudioPlayerPrevious, ScAudioPlayerProgress, ScAudioPlayerRepeat, ScAudioPlayerShuffle, ScAudioPlayerTrackInfo, ScAudioPlayerVolume, ScBarcodeScanner, ScBarcodeVideo, ScButtonPattern, ScColorPicker, ScColorPickerArea, ScColorPickerEyeDropper, ScColorPickerHue, ScColorPickerInput, ScColorPickerPreview, ScColorPickerSwatches, ScCountdown, ScDataTable, ScDataTableBody, ScDataTableCell, ScDataTableColumnToggle, ScDataTableFilter, ScDataTableHead, ScDataTableHeader, ScDataTablePagination, ScDataTableRow, ScDateRangePicker, ScDiffViewer, ScDock, ScDockBadge, ScDockItem, ScDockItems, ScEmojiPicker, ScEmojiPickerCategoryTabs, ScEmojiPickerEmpty, ScEmojiPickerGrid, ScEmojiPickerItem, ScEmojiPickerRecent, ScEmojiPickerSearch, ScEmojiPickerState, ScEmojiPickerTrigger, ScImageAnnotator, ScImageCompare, ScImageCompareAfter, ScImageCompareArea, ScImageCompareBefore, ScImageCompareLabel, ScImageCompareSlider, ScImageCropper, ScImageCropperAspectRatio, ScImageCropperCanvas, ScImageCropperDragRegion, ScImageCropperFileInput, ScImageCropperFlipH, ScImageCropperFlipV, ScImageCropperGrid, ScImageCropperHandle, ScImageCropperImage, ScImageCropperOverlay, ScImageCropperPreview, ScImageCropperReset, ScImageCropperRotateLeft, ScImageCropperRotateRight, ScImageCropperSelection, ScImageCropperZoomIn, ScImageCropperZoomOut, ScImageCropperZoomSlider, ScInfiniteScroll, ScInfiniteScrollEnd, ScInfiniteScrollLoader, ScKanbanBoard, ScKanbanCard, ScKanbanColumn, ScLanguageButton, ScLanguageSelect, ScLanguageService, ScLanguageToggle, ScLightbox, ScLightboxClose, ScLightboxCounter, ScLightboxGallery, ScLightboxGalleryItem, ScLightboxImage, ScLightboxNext, ScLightboxPortal, ScLightboxPrev, ScLightboxProvider, ScLightboxThumbnail, ScLightboxThumbnailBar, ScLightboxToolbar, ScLightboxTrigger, ScLightboxZoomControls, ScLightboxZoomIn, ScLightboxZoomOut, ScLightboxZoomReset, ScMarquee, ScMarqueeContent, ScMarqueeFade, ScMarqueeItem, ScMarqueeText, ScMasonryGrid, ScMasonryItem, ScMentionInput, ScNativeDialog, ScNativeDialogBody, ScNativeDialogClose, ScNativeDialogContent, ScNativeDialogDescription, ScNativeDialogFooter, ScNativeDialogHeader, ScNativeDialogProvider, ScNativeDialogTitle, ScNativeDialogTrigger, ScNavbar, ScNavbarActions, ScNavbarBrand, ScNavbarGroup, ScNavbarMobileLink, ScNavbarMobileMenu, ScNavbarMobilePortal, ScNavbarMobileTrigger, ScNavbarProvider, ScNotificationCenter, ScNotificationCenterContainer, ScNotificationGroup, ScNotificationItem, ScOrgChart, ScOrgChartNode, ScPdfViewer, ScPdfViewerContainer, ScPdfViewerContent, ScPdfViewerDownload, ScPdfViewerEmpty, ScPdfViewerError, ScPdfViewerFullscreen, ScPdfViewerLoading, ScPdfViewerNav, ScPdfViewerNextPage, ScPdfViewerPageInfo, ScPdfViewerPrevPage, ScPdfViewerPrint, ScPdfViewerRetry, ScPdfViewerRoot, ScPdfViewerRotateLeft, ScPdfViewerRotateRight, ScPdfViewerSeparator, ScPdfViewerSpacer, ScPdfViewerToolbar$1 as ScPdfViewerToolbar, ScPdfViewerToolbar as ScPdfViewerToolbarLegacy, ScPdfViewerZoom, ScPdfViewerZoomIn, ScPdfViewerZoomOut, ScPdfViewerZoomSelect, ScQrCode, ScQrCodeDownload, ScSidebarLayout, ScSignaturePad, ScSignaturePadCanvas, ScSignaturePadClearButton, ScSignaturePadColorButton, ScSignaturePadControls, ScSignaturePadToolbar, ScSignaturePadUndoButton, ScSignaturePadWidthButton, ScSpeedDial, ScSpeedDialAction, ScSpeedDialActionButton, ScSpeedDialActionLabel, ScSpeedDialActionList, ScSpeedDialTrigger, ScSpotlight, ScSpotlightActions, ScSpotlightDescription, ScSpotlightTitle, ScStackedLayout, ScStatCard, ScStatCardChange, ScStatCardDescription, ScStatCardIcon, ScStatCardLabel, ScStatCardValue, ScStepper, ScStepperContent, ScStepperDescription, ScStepperItem, ScStepperList, ScStepperNext, ScStepperPrevious, ScStepperSeparator, ScStepperTitle, ScStepperTrigger, ScTagInput, ScTagInputClear, ScTagInputCount, ScTagInputField, ScTagInputTag, ScTimePickerClock, ScTimeline, ScTimelineConnector, ScTimelineContent, ScTimelineDescription, ScTimelineDot, ScTimelineItem, ScTimelineTime, ScTimelineTitle, ScTourGuide, ScTransferList, ScTree, ScTreeItem, ScTreeItemGroup, ScTreeItemIcon, ScTreeItemTrigger, ScTreeItemTriggerIcon, ScVideoPlayer, ScVideoPlayerBigPlay, ScVideoPlayerBufferingIndicator, ScVideoPlayerControls, ScVideoPlayerFullscreen, ScVideoPlayerPip, ScVideoPlayerPlayPause, ScVideoPlayerProgress, ScVideoPlayerSkip, ScVideoPlayerSpacer, ScVideoPlayerSpeed, ScVideoPlayerTime, ScVideoPlayerToolbar, ScVideoPlayerVideo, ScVideoPlayerVolume, TourService, ZOOM_LEVELS, computeDiff, computeWordDiff, createScDateRangePresets, createUnifiedDiff };
3578
+ export type { AnimatedCounterEasing, AnimatedCounterOptions, Annotation, AnnotationPoint, AnnotationTool, BarcodeFormat, BarcodeResult, ColumnDef, ColumnVisibilityState, CountdownTime, DiffLine, DiffOptions, DiffResult, DiffViewMode, DockItem, DockOptions, DockPosition, DockSize, Emoji, EmojiCategory, HSL, HSV, ImageAnnotatorState, KanbanAssignee, KanbanCard, KanbanCardAddEvent, KanbanCardDeleteEvent, KanbanColumn, KanbanDragEvent, KanbanLabel, Language, LanguageConfig, MasonryBreakpoint, MasonryConfig, MasonryLayoutMode, MentionUser, Notification, NotificationAction, NotificationActionEvent, NotificationDismissEvent, NotificationFilter, NotificationGroup, NotificationGroupCollapseEvent, NotificationMarkReadEvent, NotificationType, OrgChartDirection, OrgChartNode, OrgChartNodeClickEvent, OrgChartNodeExpandEvent, PdfErrorEvent, PdfLoadEvent, PdfPageChangeEvent, PdfToolbarConfig, PdfZoomChangeEvent, PdfZoomLevel, QRErrorCorrectionLevel, RGB, ScAudioTrack, ScDateRangePreset, ScImageCropperArea, ScImageCropperHandlePosition, ScImageCropperResult, ScLightboxImageData, ScNotificationCenterApi, ScSignatureLine, ScSignaturePoint, ScVideoSource, ScVideoTrack, SortDirection, SortingState, SpeedDialDirection, SpeedDialSize, SpotlightOptions, StatCardSize, StatCardTrend, StatCardVariant, StepperOrientation, TourOptions, TourStep, TransferListItem, TransferListState };