@semantic-components/ui-lab 0.67.0 → 0.68.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.67.0",
3
+ "version": "0.68.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -22,7 +22,7 @@
22
22
  "rxjs": ">=7.8.2",
23
23
  "@angular/platform-browser": ">=21.1.1",
24
24
  "@semantic-icons/lucide-icons": ">=0.56.0",
25
- "@semantic-components/ui": "0.67.0",
25
+ "@semantic-components/ui": "0.68.0",
26
26
  "class-variance-authority": ">=0.7.1"
27
27
  },
28
28
  "sideEffects": false,
@@ -1756,6 +1756,7 @@ declare class ScOptField {
1756
1756
  readonly maxLength: _angular_core.Signal<number>;
1757
1757
  protected readonly class: _angular_core.Signal<string>;
1758
1758
  readonly chars: _angular_core.Signal<string[]>;
1759
+ readonly firstEmptyIndex: _angular_core.Signal<number>;
1759
1760
  constructor();
1760
1761
  getChar(index: number): string;
1761
1762
  setChar(index: number, char: string): void;
@@ -1779,6 +1780,7 @@ declare class ScOptFieldSlot {
1779
1780
  private readonly index;
1780
1781
  private readonly focused;
1781
1782
  readonly char: _angular_core.Signal<string>;
1783
+ readonly ariaLabel: _angular_core.Signal<string>;
1782
1784
  readonly isActive: _angular_core.Signal<boolean>;
1783
1785
  readonly isFilled: _angular_core.Signal<boolean>;
1784
1786
  protected readonly class: _angular_core.Signal<string>;
@@ -1796,6 +1798,7 @@ declare class ScOptFieldSlotInput {
1796
1798
  readonly classInput: _angular_core.InputSignal<string>;
1797
1799
  readonly value: _angular_core.InputSignal<string>;
1798
1800
  readonly disabled: _angular_core.InputSignal<boolean>;
1801
+ readonly ariaLabel: _angular_core.InputSignal<string>;
1799
1802
  readonly inputChange: _angular_core.OutputEmitterRef<string>;
1800
1803
  readonly keydownEvent: _angular_core.OutputEmitterRef<KeyboardEvent>;
1801
1804
  readonly focused: _angular_core.OutputEmitterRef<boolean>;
@@ -1803,7 +1806,7 @@ declare class ScOptFieldSlotInput {
1803
1806
  focus(): void;
1804
1807
  protected onInput(event: Event): void;
1805
1808
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScOptFieldSlotInput, never>;
1806
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScOptFieldSlotInput, "input[scOptFieldSlotInput]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "inputChange": "inputChange"; "keydownEvent": "keydownEvent"; "focused": "focused"; }, never, never, true, never>;
1809
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScOptFieldSlotInput, "input[scOptFieldSlotInput]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "inputChange": "inputChange"; "keydownEvent": "keydownEvent"; "focused": "focused"; }, never, never, true, never>;
1807
1810
  }
1808
1811
 
1809
1812
  declare class ScOptFieldSlotCaret {
@@ -2155,7 +2158,8 @@ declare class ScMasonryItem {
2155
2158
  private readonly elementRef;
2156
2159
  private readonly destroyRef;
2157
2160
  private resizeObserver;
2158
- readonly class: _angular_core.InputSignal<string>;
2161
+ readonly classInput: _angular_core.InputSignal<string>;
2162
+ protected readonly class: _angular_core.Signal<string>;
2159
2163
  readonly sizeChange: _angular_core.OutputEmitterRef<{
2160
2164
  width: number;
2161
2165
  height: number;
@@ -2165,7 +2169,7 @@ declare class ScMasonryItem {
2165
2169
  getElement(): HTMLElement;
2166
2170
  getHeight(): number;
2167
2171
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScMasonryItem, never>;
2168
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScMasonryItem, "sc-masonry-item", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "sizeChange": "sizeChange"; }, never, ["*"], true, never>;
2172
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScMasonryItem, "[scMasonryItem]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, { "sizeChange": "sizeChange"; }, never, ["*"], true, never>;
2169
2173
  }
2170
2174
 
2171
2175
  interface MasonryBreakpoint {
@@ -2182,7 +2186,6 @@ declare const DEFAULT_CONFIG: MasonryConfig;
2182
2186
 
2183
2187
  type MasonryLayoutMode = 'columns' | 'absolute';
2184
2188
  declare class ScMasonryGrid {
2185
- private readonly elementRef;
2186
2189
  private readonly destroyRef;
2187
2190
  private resizeObserver;
2188
2191
  readonly containerRef: _angular_core.Signal<ElementRef<HTMLDivElement> | undefined>;
@@ -2191,7 +2194,8 @@ declare class ScMasonryGrid {
2191
2194
  readonly gap: _angular_core.InputSignal<number>;
2192
2195
  readonly breakpoints: _angular_core.InputSignal<MasonryBreakpoint[]>;
2193
2196
  readonly layoutMode: _angular_core.InputSignal<MasonryLayoutMode>;
2194
- readonly class: _angular_core.InputSignal<string>;
2197
+ readonly classInput: _angular_core.InputSignal<string>;
2198
+ protected readonly class: _angular_core.Signal<string>;
2195
2199
  protected readonly containerWidth: _angular_core.WritableSignal<number>;
2196
2200
  protected readonly containerHeight: _angular_core.WritableSignal<number>;
2197
2201
  protected readonly currentColumns: _angular_core.Signal<number>;
@@ -2199,11 +2203,12 @@ declare class ScMasonryGrid {
2199
2203
  constructor();
2200
2204
  private observeResize;
2201
2205
  private updateContainerWidth;
2206
+ private applyItemGap;
2202
2207
  private calculateLayout;
2203
2208
  /** Recalculate the layout manually */
2204
2209
  relayout(): void;
2205
2210
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScMasonryGrid, never>;
2206
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScMasonryGrid, "sc-masonry-grid", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "breakpoints": { "alias": "breakpoints"; "required": false; "isSignal": true; }; "layoutMode": { "alias": "layoutMode"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, ["items"], ["*"], true, never>;
2211
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScMasonryGrid, "[scMasonryGrid]", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "breakpoints": { "alias": "breakpoints"; "required": false; "isSignal": true; }; "layoutMode": { "alias": "layoutMode"; "required": false; "isSignal": true; }; "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, ["items"], ["*"], true, never>;
2207
2212
  }
2208
2213
 
2209
2214
  interface MentionUser {
@@ -2567,7 +2572,6 @@ declare class ScNotificationItem {
2567
2572
  readonly itemClick: _angular_core.OutputEmitterRef<void>;
2568
2573
  protected readonly itemClass: _angular_core.Signal<string>;
2569
2574
  protected readonly iconContainerClass: _angular_core.Signal<string>;
2570
- protected typeIcon(): string;
2571
2575
  protected formatTime(date: Date): string;
2572
2576
  protected onItemClick(): void;
2573
2577
  protected onActionClick(event: MouseEvent, action: NotificationAction): void;
@@ -2694,7 +2698,6 @@ declare class ScOrgChartNode {
2694
2698
  readonly nodeClick: _angular_core.OutputEmitterRef<OrgChartNodeClickEvent>;
2695
2699
  readonly nodeExpand: _angular_core.OutputEmitterRef<OrgChartNodeExpandEvent>;
2696
2700
  protected readonly expanded: _angular_core.WritableSignal<boolean | null>;
2697
- readonly expandIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m6 9 6 6 6-6\"/></svg>";
2698
2701
  protected readonly hasChildren: _angular_core.Signal<boolean | undefined>;
2699
2702
  protected readonly isExpanded: _angular_core.Signal<boolean>;
2700
2703
  protected readonly containerClass: _angular_core.Signal<string>;
@@ -3364,51 +3367,6 @@ declare class ScResizablePanelGroup {
3364
3367
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScResizablePanelGroup, "[scResizablePanelGroup]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; }, {}, ["panels", "handles"], never, true, never>;
3365
3368
  }
3366
3369
 
3367
- type ScrollBarOrientation = 'vertical' | 'horizontal';
3368
- declare class ScScrollBar implements OnInit {
3369
- private readonly scrollArea;
3370
- private readonly destroyRef;
3371
- private readonly elementRef;
3372
- readonly classInput: _angular_core.InputSignal<string>;
3373
- readonly orientation: _angular_core.InputSignal<ScrollBarOrientation>;
3374
- readonly thumb: _angular_core.Signal<ElementRef<HTMLDivElement>>;
3375
- private readonly isDragging;
3376
- private dragStartPosition;
3377
- private dragStartScroll;
3378
- protected readonly isVisible: _angular_core.Signal<boolean>;
3379
- protected readonly thumbSize: _angular_core.Signal<number>;
3380
- protected readonly thumbPosition: _angular_core.Signal<number>;
3381
- protected readonly thumbTransform: _angular_core.Signal<string>;
3382
- protected readonly class: _angular_core.Signal<string>;
3383
- protected readonly thumbClass: _angular_core.Signal<string>;
3384
- ngOnInit(): void;
3385
- protected onThumbMouseDown(event: MouseEvent): void;
3386
- protected onTrackClick(event: MouseEvent): void;
3387
- private onMouseMove;
3388
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScScrollBar, never>;
3389
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScScrollBar, "div[scScrollBar]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3390
- }
3391
-
3392
- declare class ScScrollArea {
3393
- readonly classInput: _angular_core.InputSignal<string>;
3394
- readonly viewportClassInput: _angular_core.InputSignal<string>;
3395
- readonly viewport: _angular_core.Signal<ElementRef<HTMLDivElement>>;
3396
- readonly content: _angular_core.Signal<ElementRef<HTMLDivElement>>;
3397
- readonly verticalScrollbar: _angular_core.Signal<ScScrollBar | undefined>;
3398
- readonly scrollTop: _angular_core.WritableSignal<number>;
3399
- readonly scrollLeft: _angular_core.WritableSignal<number>;
3400
- readonly scrollHeight: _angular_core.WritableSignal<number>;
3401
- readonly scrollWidth: _angular_core.WritableSignal<number>;
3402
- readonly clientHeight: _angular_core.WritableSignal<number>;
3403
- readonly clientWidth: _angular_core.WritableSignal<number>;
3404
- protected readonly class: _angular_core.Signal<string>;
3405
- protected readonly viewportClass: _angular_core.Signal<string>;
3406
- updateScrollState(): void;
3407
- scrollTo(top: number, left?: number): void;
3408
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScScrollArea, never>;
3409
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScScrollArea, "div[scScrollArea]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "viewportClassInput": { "alias": "viewportClass"; "required": false; "isSignal": true; }; }, {}, ["verticalScrollbar"], ["*", "[scScrollBar]"], true, never>;
3410
- }
3411
-
3412
3370
  interface SearchSuggestion {
3413
3371
  id: string;
3414
3372
  label: string;
@@ -3442,8 +3400,6 @@ declare class ScSearchInput {
3442
3400
  protected readonly isOpen: _angular_core.WritableSignal<boolean>;
3443
3401
  protected readonly highlightedIndex: _angular_core.WritableSignal<number>;
3444
3402
  private debounceTimer;
3445
- readonly searchIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"11\" cy=\"11\" r=\"8\"/><path d=\"m21 21-4.3-4.3\"/></svg>";
3446
- readonly clearIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M18 6 6 18\"/><path d=\"m6 6 12 12\"/></svg>";
3447
3403
  protected readonly filteredSuggestions: _angular_core.Signal<SearchSuggestion[]>;
3448
3404
  protected readonly containerClass: _angular_core.Signal<string>;
3449
3405
  protected readonly inputWrapperClass: _angular_core.Signal<string>;
@@ -4956,7 +4912,6 @@ declare class ScSplitButton {
4956
4912
  readonly mainClick: _angular_core.OutputEmitterRef<void>;
4957
4913
  readonly actionClick: _angular_core.OutputEmitterRef<SplitButtonAction>;
4958
4914
  protected readonly isOpen: _angular_core.WritableSignal<boolean>;
4959
- readonly chevronIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m6 9 6 6 6-6\"/></svg>";
4960
4915
  protected readonly containerClass: _angular_core.Signal<string>;
4961
4916
  protected readonly mainButtonClass: _angular_core.Signal<string>;
4962
4917
  protected readonly dropdownButtonClass: _angular_core.Signal<string>;
@@ -5105,5 +5060,5 @@ declare class ScLanguageButton {
5105
5060
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScLanguageButton, "button[scLanguageButton], a[scLanguageButton]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showNativeLabels": { "alias": "showNativeLabels"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5106
5061
  }
5107
5062
 
5108
- export { AuthLayout, CHART_COLORS, COUNTRIES, DEFAULT_BREAKPOINTS, DEFAULT_CONFETTI_OPTIONS, DEFAULT_CONFIG, DEFAULT_COUNTER_OPTIONS, DEFAULT_DOCK_OPTIONS, DEFAULT_SEARCH_OPTIONS, DEFAULT_TOOLBAR_CONFIG, SC_AUDIO_PLAYER, SC_CHART, SC_COLOR_PICKER, SC_DATA_TABLE, SC_IMAGE_COMPARE, SC_IMAGE_CROPPER, SC_LANGUAGE_CONFIG, SC_LIGHTBOX, SC_NOTIFICATION_CENTER, SC_NUMBER_FIELD, SC_PASSWORD_FIELD, SC_PDF_VIEWER, SC_RATING_FIELD, SC_RATING_ITEM_GROUP, SC_SIGNATURE_PAD, SC_SORTABLE_ITEM, SC_SORTABLE_LIST, SC_STEPPER, SC_STEPPER_ITEM, SC_TAG_INPUT, SC_TIMEZONE_CONFIG, SC_TREE_ITEM, ScAnimatedCounter, ScAudioPlayer, ScAudioPlayerCover, ScAudioPlayerInfo, ScAudioPlayerNext, ScAudioPlayerPlayButton, ScAudioPlayerPrevious, ScAudioPlayerProgress, ScAudioPlayerRepeat, ScAudioPlayerShuffle, ScAudioPlayerVolume, ScAutoMarquee, ScBarChart, ScBarcodeScanner, ScBarcodeScannerSimple, ScChartContainer, ScChartLegend, ScChartTooltip, ScColorPicker, ScColorPickerArea, ScColorPickerEyeDropper, ScColorPickerHue, ScColorPickerInput, ScColorPickerPreview, ScColorPickerSwatches, ScCombobox, ScComboboxEmpty, ScComboboxIcon, ScComboboxInput, ScComboboxItem, ScComboboxItemIndicator, ScComboboxList, ScComboboxPortal, ScComboboxTrigger, ScCommand, ScCommandEmpty, ScCommandGroup, ScCommandGroupHeading, ScCommandInput, ScCommandItem, ScCommandList, ScCommandSeparator, ScCommandShortcut, ScConfetti, ScContextMenu, ScContextMenuContent, ScContextMenuItem, ScContextMenuLabel, ScContextMenuSeparator, ScContextMenuShortcut, ScContextMenuSub, ScContextMenuSubContent, ScContextMenuSubTrigger, ScContextMenuTrigger, ScCopyButton, ScCopyButtonWithText, ScCopyCode, ScCopyInput, ScCountdown, ScCountdownSimple, ScDataTable, ScDataTableBody, ScDataTableCell, ScDataTableColumnToggle, ScDataTableFilter, ScDataTableHead, ScDataTableHeader, ScDataTablePagination, ScDataTableRow, ScDateRangePicker, ScDiffViewer, ScDock, ScDockBadge, ScDockItem, ScDockItems, ScDonutChart, ScEmojiPicker, ScEmojiPickerTrigger, ScImageAnnotator, ScImageCompareDirective as ScImageCompare, ScImageCompareAfter, ScImageCompareBefore, ScImageCompareContainer, ScImageCompareDirective, ScImageCompareLabel, ScImageCompareSlider, ScImageCropperDirective as ScImageCropper, ScImageCropperAspectRatio, ScImageCropperContainer, ScImageCropperControls, ScImageCropperDirective, ScImageCropperPreview, ScInfiniteScroll, ScInfiniteScrollEnd, ScInfiniteScrollLoader, ScKanbanBoard, ScKanbanCard, ScKanbanColumn, ScLanguageButton, ScLanguageSelect, ScLanguageService, ScLanguageToggle, ScLightboxDirective as ScLightbox, ScLightboxContainer, ScLightboxDirective, ScLightboxGallery, ScLightboxTrigger, ScLineChart, ScMarquee, ScMarqueeClone, ScMarqueeFade, ScMarqueeItem, ScMarqueeText, ScMasonryGrid, ScMasonryItem, ScMentionInput, ScMultiSelect, ScNativeCheckbox, ScNavbar, ScNavbarActions, ScNavbarBrand, ScNavbarGroup, ScNavbarMobileLink, ScNavbarMobileMenu, ScNavbarMobilePortal, ScNavbarMobileTrigger, ScNavbarProvider, ScNotificationCenterDirective as ScNotificationCenter, ScNotificationCenterContainer, ScNotificationCenterDirective, ScNotificationGroup, ScNotificationItem, ScNumberField, ScNumberFieldDecrement, ScNumberFieldIncrement, ScNumberFieldInput, ScNumberFieldInputGroup, ScNumberFieldScrubArea, ScOptField, ScOptFieldSeparator, ScOptFieldSlot, ScOptFieldSlotCaret, ScOptFieldSlotChar, ScOptFieldSlotGroup, ScOptFieldSlotInput, ScOrgChart, ScOrgChartNode, ScPasswordField, ScPasswordFieldInput, ScPasswordFieldInputGroup, ScPasswordFieldRequirements, ScPasswordFieldStrength, ScPasswordFieldStrengthBar, ScPasswordFieldToggle, 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, ScPhoneInput, ScPhoneInputSimple, ScPieChart, ScQrCode, ScQrCodeDownload, ScRatingField, ScRatingFieldItem, ScRatingItemGroup, ScResizableHandle, ScResizablePanel, ScResizablePanelGroup, ScScrollArea, ScScrollBar, ScSearchInput, ScSidebar, ScSidebarBody, ScSidebarFooter, ScSidebarGroup, ScSidebarGroupAction, ScSidebarGroupContent, ScSidebarGroupLabel, ScSidebarHeader, ScSidebarInput, ScSidebarInset, ScSidebarLayout, ScSidebarMenu, ScSidebarMenuAction, ScSidebarMenuBadge, ScSidebarMenuButton, ScSidebarMenuItem, ScSidebarMenuSkeleton, ScSidebarMenuSub, ScSidebarMenuSubButton, ScSidebarMenuSubItem, ScSidebarProvider, ScSidebarRail, ScSidebarSeparator, ScSidebarState, ScSidebarTrigger, ScSignaturePad, ScSignaturePadCanvas, ScSignaturePadClearButton, ScSignaturePadColorButton, ScSignaturePadControls, ScSignaturePadToolbar, ScSignaturePadUndoButton, ScSignaturePadWidthButton, ScSortableHandle, ScSortableItem, ScSortableList, ScSortableOverlay, ScSpeedDial, ScSpeedDialAction, ScSplitButton, 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, ScTheme, ScThemeField, ScThemeSelect, ScThemeToggle, ScTimePickerClock, ScTimeline, ScTimelineConnector, ScTimelineContent, ScTimelineDescription, ScTimelineDot, ScTimelineItem, ScTimelineTime, ScTimelineTitle, ScTimezoneBadge, ScTimezoneButton, ScTimezoneDisplay, ScTimezoneSelect, ScTimezoneService, ScTourGuide, ScTransferList, ScTree, ScTreeItem, ScTreeItemGroup, ScTreeItemIcon, ScTreeItemTrigger, ScTreeItemTriggerIcon, ScVideoPlayer, ScVideoPlayerBigPlayButton, ScVideoPlayerBuffering, ScVideoPlayerControls, ScVideoPlayerFullscreenButton, ScVideoPlayerPipButton, ScVideoPlayerPlayButton, ScVideoPlayerProgress, ScVideoPlayerSkipButton, ScVideoPlayerSpeedButton, ScVideoPlayerTime, ScVideoPlayerVideo, ScVideoPlayerVolume, ScVirtualList, ScVirtualScroll, TourService, ZOOM_LEVELS, computeDiff, computeWordDiff, createScDateRangePresets, createUnifiedDiff, getCountryByCode, getCountryByDialCode, sizeStyles, variantStyles };
5109
- export type { AnimatedCounterEasing, AnimatedCounterOptions, Annotation, AnnotationPoint, AnnotationTool, BarcodeFormat, BarcodeResult, ChartConfig, ChartDataPoint, ColumnDef, ColumnVisibilityState, ConfettiOptions, ConfettiParticle, ConfettiShape, CountdownTime, Country, CropArea, CropResult, DiffLine, DiffOptions, DiffResult, DiffViewMode, DockItem, DockOptions, DockPosition, DockSize, Emoji, EmojiCategory, HSL, HSV, ImageAnnotatorState, KanbanAssignee, KanbanCard, KanbanCardAddEvent, KanbanCardDeleteEvent, KanbanColumn, KanbanDragEvent, KanbanLabel, Language, LanguageConfig, LightboxImage, MasonryBreakpoint, MasonryConfig, MasonryLayoutMode, MentionUser, MultiSelectOption, Notification, NotificationAction, NotificationActionEvent, NotificationDismissEvent, NotificationFilter, NotificationGroup, NotificationGroupCollapseEvent, NotificationMarkReadEvent, NotificationType, OrgChartDirection, OrgChartNode, OrgChartNodeClickEvent, OrgChartNodeExpandEvent, PdfErrorEvent, PdfLoadEvent, PdfPageChangeEvent, PdfToolbarConfig, PdfZoomChangeEvent, PdfZoomLevel, QRErrorCorrectionLevel, RGB, ResizableDirection, ScAudioTrack, ScDateRangePreset, ScNotificationCenter as ScNotificationCenterType, ScPasswordFieldContext, ScPasswordRequirement, ScSignatureLine, ScSignaturePoint, ScVideoSource, ScVideoTrack, ScrollBarOrientation, SearchInputOptions, SearchSuggestion, SortDirection, SortableEvent, SortingState, SpeedDialAction, SpeedDialActionClickEvent, SpeedDialDirection, SplitButtonAction, SplitButtonSize, SplitButtonVariant, SpotlightOptions, StatCardSize, StatCardTrend, StatCardVariant, StepperOrientation, Theme, ThemeToggleSize, ThemeToggleVariant, Timezone, TimezoneConfig, TimezoneSize, TimezoneVariant, TourOptions, TourStep, TransferListItem, TransferListState, VirtualListItem, VirtualListRange };
5063
+ export { AuthLayout, CHART_COLORS, COUNTRIES, DEFAULT_BREAKPOINTS, DEFAULT_CONFETTI_OPTIONS, DEFAULT_CONFIG, DEFAULT_COUNTER_OPTIONS, DEFAULT_DOCK_OPTIONS, DEFAULT_SEARCH_OPTIONS, DEFAULT_TOOLBAR_CONFIG, SC_AUDIO_PLAYER, SC_CHART, SC_COLOR_PICKER, SC_DATA_TABLE, SC_IMAGE_COMPARE, SC_IMAGE_CROPPER, SC_LANGUAGE_CONFIG, SC_LIGHTBOX, SC_NOTIFICATION_CENTER, SC_NUMBER_FIELD, SC_PASSWORD_FIELD, SC_PDF_VIEWER, SC_RATING_FIELD, SC_RATING_ITEM_GROUP, SC_SIGNATURE_PAD, SC_SORTABLE_ITEM, SC_SORTABLE_LIST, SC_STEPPER, SC_STEPPER_ITEM, SC_TAG_INPUT, SC_TIMEZONE_CONFIG, SC_TREE_ITEM, ScAnimatedCounter, ScAudioPlayer, ScAudioPlayerCover, ScAudioPlayerInfo, ScAudioPlayerNext, ScAudioPlayerPlayButton, ScAudioPlayerPrevious, ScAudioPlayerProgress, ScAudioPlayerRepeat, ScAudioPlayerShuffle, ScAudioPlayerVolume, ScAutoMarquee, ScBarChart, ScBarcodeScanner, ScBarcodeScannerSimple, ScChartContainer, ScChartLegend, ScChartTooltip, ScColorPicker, ScColorPickerArea, ScColorPickerEyeDropper, ScColorPickerHue, ScColorPickerInput, ScColorPickerPreview, ScColorPickerSwatches, ScCombobox, ScComboboxEmpty, ScComboboxIcon, ScComboboxInput, ScComboboxItem, ScComboboxItemIndicator, ScComboboxList, ScComboboxPortal, ScComboboxTrigger, ScCommand, ScCommandEmpty, ScCommandGroup, ScCommandGroupHeading, ScCommandInput, ScCommandItem, ScCommandList, ScCommandSeparator, ScCommandShortcut, ScConfetti, ScContextMenu, ScContextMenuContent, ScContextMenuItem, ScContextMenuLabel, ScContextMenuSeparator, ScContextMenuShortcut, ScContextMenuSub, ScContextMenuSubContent, ScContextMenuSubTrigger, ScContextMenuTrigger, ScCopyButton, ScCopyButtonWithText, ScCopyCode, ScCopyInput, ScCountdown, ScCountdownSimple, ScDataTable, ScDataTableBody, ScDataTableCell, ScDataTableColumnToggle, ScDataTableFilter, ScDataTableHead, ScDataTableHeader, ScDataTablePagination, ScDataTableRow, ScDateRangePicker, ScDiffViewer, ScDock, ScDockBadge, ScDockItem, ScDockItems, ScDonutChart, ScEmojiPicker, ScEmojiPickerTrigger, ScImageAnnotator, ScImageCompareDirective as ScImageCompare, ScImageCompareAfter, ScImageCompareBefore, ScImageCompareContainer, ScImageCompareDirective, ScImageCompareLabel, ScImageCompareSlider, ScImageCropperDirective as ScImageCropper, ScImageCropperAspectRatio, ScImageCropperContainer, ScImageCropperControls, ScImageCropperDirective, ScImageCropperPreview, ScInfiniteScroll, ScInfiniteScrollEnd, ScInfiniteScrollLoader, ScKanbanBoard, ScKanbanCard, ScKanbanColumn, ScLanguageButton, ScLanguageSelect, ScLanguageService, ScLanguageToggle, ScLightboxDirective as ScLightbox, ScLightboxContainer, ScLightboxDirective, ScLightboxGallery, ScLightboxTrigger, ScLineChart, ScMarquee, ScMarqueeClone, ScMarqueeFade, ScMarqueeItem, ScMarqueeText, ScMasonryGrid, ScMasonryItem, ScMentionInput, ScMultiSelect, ScNativeCheckbox, ScNavbar, ScNavbarActions, ScNavbarBrand, ScNavbarGroup, ScNavbarMobileLink, ScNavbarMobileMenu, ScNavbarMobilePortal, ScNavbarMobileTrigger, ScNavbarProvider, ScNotificationCenterDirective as ScNotificationCenter, ScNotificationCenterContainer, ScNotificationCenterDirective, ScNotificationGroup, ScNotificationItem, ScNumberField, ScNumberFieldDecrement, ScNumberFieldIncrement, ScNumberFieldInput, ScNumberFieldInputGroup, ScNumberFieldScrubArea, ScOptField, ScOptFieldSeparator, ScOptFieldSlot, ScOptFieldSlotCaret, ScOptFieldSlotChar, ScOptFieldSlotGroup, ScOptFieldSlotInput, ScOrgChart, ScOrgChartNode, ScPasswordField, ScPasswordFieldInput, ScPasswordFieldInputGroup, ScPasswordFieldRequirements, ScPasswordFieldStrength, ScPasswordFieldStrengthBar, ScPasswordFieldToggle, 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, ScPhoneInput, ScPhoneInputSimple, ScPieChart, ScQrCode, ScQrCodeDownload, ScRatingField, ScRatingFieldItem, ScRatingItemGroup, ScResizableHandle, ScResizablePanel, ScResizablePanelGroup, ScSearchInput, ScSidebar, ScSidebarBody, ScSidebarFooter, ScSidebarGroup, ScSidebarGroupAction, ScSidebarGroupContent, ScSidebarGroupLabel, ScSidebarHeader, ScSidebarInput, ScSidebarInset, ScSidebarLayout, ScSidebarMenu, ScSidebarMenuAction, ScSidebarMenuBadge, ScSidebarMenuButton, ScSidebarMenuItem, ScSidebarMenuSkeleton, ScSidebarMenuSub, ScSidebarMenuSubButton, ScSidebarMenuSubItem, ScSidebarProvider, ScSidebarRail, ScSidebarSeparator, ScSidebarState, ScSidebarTrigger, ScSignaturePad, ScSignaturePadCanvas, ScSignaturePadClearButton, ScSignaturePadColorButton, ScSignaturePadControls, ScSignaturePadToolbar, ScSignaturePadUndoButton, ScSignaturePadWidthButton, ScSortableHandle, ScSortableItem, ScSortableList, ScSortableOverlay, ScSpeedDial, ScSpeedDialAction, ScSplitButton, 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, ScTheme, ScThemeField, ScThemeSelect, ScThemeToggle, ScTimePickerClock, ScTimeline, ScTimelineConnector, ScTimelineContent, ScTimelineDescription, ScTimelineDot, ScTimelineItem, ScTimelineTime, ScTimelineTitle, ScTimezoneBadge, ScTimezoneButton, ScTimezoneDisplay, ScTimezoneSelect, ScTimezoneService, ScTourGuide, ScTransferList, ScTree, ScTreeItem, ScTreeItemGroup, ScTreeItemIcon, ScTreeItemTrigger, ScTreeItemTriggerIcon, ScVideoPlayer, ScVideoPlayerBigPlayButton, ScVideoPlayerBuffering, ScVideoPlayerControls, ScVideoPlayerFullscreenButton, ScVideoPlayerPipButton, ScVideoPlayerPlayButton, ScVideoPlayerProgress, ScVideoPlayerSkipButton, ScVideoPlayerSpeedButton, ScVideoPlayerTime, ScVideoPlayerVideo, ScVideoPlayerVolume, ScVirtualList, ScVirtualScroll, TourService, ZOOM_LEVELS, computeDiff, computeWordDiff, createScDateRangePresets, createUnifiedDiff, getCountryByCode, getCountryByDialCode, sizeStyles, variantStyles };
5064
+ export type { AnimatedCounterEasing, AnimatedCounterOptions, Annotation, AnnotationPoint, AnnotationTool, BarcodeFormat, BarcodeResult, ChartConfig, ChartDataPoint, ColumnDef, ColumnVisibilityState, ConfettiOptions, ConfettiParticle, ConfettiShape, CountdownTime, Country, CropArea, CropResult, DiffLine, DiffOptions, DiffResult, DiffViewMode, DockItem, DockOptions, DockPosition, DockSize, Emoji, EmojiCategory, HSL, HSV, ImageAnnotatorState, KanbanAssignee, KanbanCard, KanbanCardAddEvent, KanbanCardDeleteEvent, KanbanColumn, KanbanDragEvent, KanbanLabel, Language, LanguageConfig, LightboxImage, MasonryBreakpoint, MasonryConfig, MasonryLayoutMode, MentionUser, MultiSelectOption, Notification, NotificationAction, NotificationActionEvent, NotificationDismissEvent, NotificationFilter, NotificationGroup, NotificationGroupCollapseEvent, NotificationMarkReadEvent, NotificationType, OrgChartDirection, OrgChartNode, OrgChartNodeClickEvent, OrgChartNodeExpandEvent, PdfErrorEvent, PdfLoadEvent, PdfPageChangeEvent, PdfToolbarConfig, PdfZoomChangeEvent, PdfZoomLevel, QRErrorCorrectionLevel, RGB, ResizableDirection, ScAudioTrack, ScDateRangePreset, ScNotificationCenter as ScNotificationCenterType, ScPasswordFieldContext, ScPasswordRequirement, ScSignatureLine, ScSignaturePoint, ScVideoSource, ScVideoTrack, SearchInputOptions, SearchSuggestion, SortDirection, SortableEvent, SortingState, SpeedDialAction, SpeedDialActionClickEvent, SpeedDialDirection, SplitButtonAction, SplitButtonSize, SplitButtonVariant, SpotlightOptions, StatCardSize, StatCardTrend, StatCardVariant, StepperOrientation, Theme, ThemeToggleSize, ThemeToggleVariant, Timezone, TimezoneConfig, TimezoneSize, TimezoneVariant, TourOptions, TourStep, TransferListItem, TransferListState, VirtualListItem, VirtualListRange };