@pegasusheavy/ngx-tailwindcss 0.2.0 → 0.3.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.
@@ -1,7 +1,8 @@
1
1
  import * as _pegasusheavy_ngx_tailwindcss from '@pegasusheavy/ngx-tailwindcss';
2
2
  import * as _angular_core from '@angular/core';
3
- import { InjectionToken, EnvironmentProviders, Provider, OnDestroy, AfterViewInit, OnChanges, SimpleChanges, OnInit, EventEmitter, ElementRef, AfterContentInit, QueryList, TemplateRef } from '@angular/core';
3
+ import { InjectionToken, EnvironmentProviders, Provider, OnDestroy, AfterViewInit, OnChanges, SimpleChanges, OnInit, EventEmitter, ElementRef, AfterContentInit, QueryList, TemplateRef, AfterViewChecked } from '@angular/core';
4
4
  import { ControlValueAccessor } from '@angular/forms';
5
+ import { Observable } from 'rxjs';
5
6
 
6
7
  /**
7
8
  * Configuration interface for ngx-tailwindcss components
@@ -6914,7 +6915,7 @@ declare class TwNoteComponent {
6914
6915
  protected readonly stemX: _angular_core.Signal<number>;
6915
6916
  protected readonly stemY1: _angular_core.Signal<number>;
6916
6917
  protected readonly stemY2: _angular_core.Signal<number>;
6917
- protected readonly flagCount: _angular_core.Signal<2 | 0 | 1 | 3>;
6918
+ protected readonly flagCount: _angular_core.Signal<1 | 0 | 2 | 3>;
6918
6919
  protected readonly noteColor: _angular_core.Signal<string>;
6919
6920
  protected readonly noteHeadFill: _angular_core.Signal<string>;
6920
6921
  protected readonly containerClasses: _angular_core.Signal<string>;
@@ -6976,11 +6977,11 @@ declare class TwNoteInputComponent implements AfterViewInit, OnDestroy {
6976
6977
  readonly lineSpacing: _angular_core.InputSignalWithTransform<number, unknown>;
6977
6978
  readonly editable: _angular_core.InputSignal<boolean>;
6978
6979
  readonly showVoiceColors: _angular_core.InputSignal<boolean>;
6979
- readonly maxVoices: _angular_core.InputSignal<1 | 2 | 3 | 4>;
6980
+ readonly maxVoices: _angular_core.InputSignal<2 | 1 | 3 | 4>;
6980
6981
  readonly enableMidiInput: _angular_core.InputSignal<boolean>;
6981
6982
  readonly enableKeyboardShortcuts: _angular_core.InputSignal<boolean>;
6982
6983
  readonly snapToGrid: _angular_core.InputSignal<boolean>;
6983
- readonly gridDivision: _angular_core.InputSignal<8 | 4 | 16>;
6984
+ readonly gridDivision: _angular_core.InputSignal<4 | 8 | 16>;
6984
6985
  readonly initialNotes: _angular_core.InputSignal<PlacedNote[]>;
6985
6986
  readonly noteAdded: _angular_core.OutputEmitterRef<NoteInputEvent>;
6986
6987
  readonly noteRemoved: _angular_core.OutputEmitterRef<NoteInputEvent>;
@@ -7705,7 +7706,7 @@ declare class TwScoreEditorComponent implements OnDestroy {
7705
7706
  protected readonly currentAccidental: _angular_core.WritableSignal<NoteAccidental>;
7706
7707
  protected readonly isDotted: _angular_core.WritableSignal<boolean>;
7707
7708
  protected readonly isRest: _angular_core.WritableSignal<boolean>;
7708
- protected readonly currentVoice: _angular_core.WritableSignal<1 | 2 | 3 | 4>;
7709
+ protected readonly currentVoice: _angular_core.WritableSignal<2 | 1 | 3 | 4>;
7709
7710
  protected readonly undoStack: _angular_core.WritableSignal<HistoryEntry[]>;
7710
7711
  protected readonly redoStack: _angular_core.WritableSignal<HistoryEntry[]>;
7711
7712
  protected readonly showPartDialog: _angular_core.WritableSignal<boolean>;
@@ -10222,6 +10223,1699 @@ declare class AudioWorkerService implements OnDestroy {
10222
10223
  declare const TW_MUSIC_COMPONENTS: readonly [typeof TwVolumeDialComponent, typeof TwVuMeterComponent, typeof TwWaveformComponent, typeof TwTransportComponent, typeof TwScrubberComponent, typeof TwFaderComponent, typeof TwPanControlComponent, typeof TwTimeDisplayComponent, typeof TwSpectrumComponent, typeof TwPianoComponent, typeof TwParametricEQComponent, typeof TwGraphicEQComponent, typeof TwOscilloscopeComponent, typeof TwChannelStripComponent, typeof TwMixerComponent, typeof TwMetronomeComponent, typeof TwVisualizerComponent, typeof TwAudioPlayerComponent, typeof TwLooperComponent, typeof TwStaffComponent, typeof TwNoteComponent, typeof TwNoteInputComponent, typeof TwMusicalSymbolComponent, typeof TwChordDiagramComponent, typeof TwPianoChordComponent, typeof TwTablatureComponent, typeof TwSheetMusicComponent, typeof TwLeadSheetComponent, typeof TwScoreEditorComponent, typeof TwTunerComponent, typeof TwNoteDisplayComponent, typeof TwPitchDisplayComponent, typeof TwAudioStatsComponent, typeof TwBpmDisplayComponent, typeof TwCompressorMeterComponent, typeof TwTouchGuardDirective, typeof TwMidiLearnDirective];
10223
10224
  declare const TW_MUSIC_DIRECTIVES: readonly [typeof TwTouchGuardDirective, typeof TwMidiLearnDirective];
10224
10225
 
10226
+ /**
10227
+ * Native App UI Component Types
10228
+ */
10229
+ type Platform = 'macos' | 'windows' | 'linux' | 'web' | 'tauri' | 'electron';
10230
+ type PlatformTheme = 'light' | 'dark' | 'system';
10231
+ interface WindowState {
10232
+ isMaximized: boolean;
10233
+ isMinimized: boolean;
10234
+ isFullscreen: boolean;
10235
+ isFocused: boolean;
10236
+ }
10237
+ type TitleBarVariant = 'default' | 'transparent' | 'unified';
10238
+ type TitleBarPlatform = 'macos' | 'windows' | 'linux' | 'web' | 'auto' | 'tauri' | 'electron';
10239
+ type WindowControlsPosition = 'left' | 'right';
10240
+ type WindowControlButton = 'close' | 'minimize' | 'maximize' | 'fullscreen';
10241
+ interface NativeMenuItem {
10242
+ id: string;
10243
+ label: string;
10244
+ icon?: string;
10245
+ shortcut?: string;
10246
+ disabled?: boolean;
10247
+ checked?: boolean;
10248
+ type?: 'normal' | 'separator' | 'checkbox' | 'radio' | 'submenu';
10249
+ submenu?: NativeMenuItem[];
10250
+ action?: () => void;
10251
+ }
10252
+ interface NativeMenuBarItem {
10253
+ id: string;
10254
+ label: string;
10255
+ items: NativeMenuItem[];
10256
+ }
10257
+ interface NativeContextMenuPosition {
10258
+ x: number;
10259
+ y: number;
10260
+ }
10261
+ interface NativeContextMenuEvent {
10262
+ item: NativeMenuItem;
10263
+ originalEvent: MouseEvent;
10264
+ }
10265
+ interface SidebarItem {
10266
+ id: string;
10267
+ label: string;
10268
+ icon?: string;
10269
+ badge?: string | number;
10270
+ children?: SidebarItem[];
10271
+ expanded?: boolean;
10272
+ active?: boolean;
10273
+ disabled?: boolean;
10274
+ data?: unknown;
10275
+ }
10276
+ type NativeSidebarVariant = 'default' | 'compact' | 'floating';
10277
+ type NativeSidebarPosition = 'left' | 'right';
10278
+ interface FileTreeNode {
10279
+ id: string;
10280
+ name: string;
10281
+ type: 'file' | 'folder';
10282
+ icon?: string;
10283
+ children?: FileTreeNode[];
10284
+ expanded?: boolean;
10285
+ selected?: boolean;
10286
+ path?: string;
10287
+ size?: number;
10288
+ modified?: Date;
10289
+ data?: unknown;
10290
+ }
10291
+ interface FileTreeEvent {
10292
+ node: FileTreeNode;
10293
+ action: 'select' | 'expand' | 'collapse' | 'rename' | 'delete' | 'create';
10294
+ }
10295
+ interface TabItem {
10296
+ id: string;
10297
+ label: string;
10298
+ icon?: string;
10299
+ closable?: boolean;
10300
+ dirty?: boolean;
10301
+ pinned?: boolean;
10302
+ tooltip?: string;
10303
+ data?: unknown;
10304
+ }
10305
+ type TabBarVariant = 'default' | 'pills' | 'underline' | 'boxed';
10306
+ type TabBarPosition = 'top' | 'bottom';
10307
+ interface TabEvent {
10308
+ tab: TabItem;
10309
+ index: number;
10310
+ action: 'select' | 'close' | 'pin' | 'unpin' | 'reorder';
10311
+ }
10312
+ interface CommandItem {
10313
+ id: string;
10314
+ label: string;
10315
+ description?: string;
10316
+ icon?: string;
10317
+ shortcut?: string;
10318
+ category?: string;
10319
+ keywords?: string[];
10320
+ action: () => void | Promise<void>;
10321
+ }
10322
+ interface CommandPaletteMode {
10323
+ id: string;
10324
+ label: string;
10325
+ placeholder: string;
10326
+ prefix?: string;
10327
+ items: CommandItem[] | (() => CommandItem[] | Promise<CommandItem[]>);
10328
+ }
10329
+ interface SearchSuggestion {
10330
+ id: string;
10331
+ label: string;
10332
+ description?: string;
10333
+ icon?: string;
10334
+ type?: string;
10335
+ data?: unknown;
10336
+ }
10337
+ interface SearchFilter {
10338
+ id: string;
10339
+ label: string;
10340
+ value: string;
10341
+ icon?: string;
10342
+ }
10343
+ type AlertDialogType = 'info' | 'success' | 'warning' | 'error';
10344
+ interface AlertDialogConfig {
10345
+ title: string;
10346
+ message: string;
10347
+ type?: AlertDialogType;
10348
+ confirmLabel?: string;
10349
+ showDontAskAgain?: boolean;
10350
+ }
10351
+ interface ConfirmDialogConfig {
10352
+ title: string;
10353
+ message: string;
10354
+ type?: AlertDialogType;
10355
+ confirmLabel?: string;
10356
+ cancelLabel?: string;
10357
+ destructive?: boolean;
10358
+ }
10359
+ interface AboutDialogConfig {
10360
+ appName: string;
10361
+ appIcon?: string;
10362
+ version: string;
10363
+ copyright?: string;
10364
+ description?: string;
10365
+ credits?: string[];
10366
+ links?: {
10367
+ label: string;
10368
+ url: string;
10369
+ }[];
10370
+ }
10371
+ interface TerminalLine {
10372
+ id: string;
10373
+ content: string;
10374
+ type: 'input' | 'output' | 'error' | 'info' | 'success' | 'warning';
10375
+ timestamp?: Date;
10376
+ }
10377
+ type TerminalVariant = 'default' | 'dark' | 'light' | 'retro';
10378
+ interface LogEntry {
10379
+ id: string;
10380
+ timestamp: Date;
10381
+ level: 'debug' | 'info' | 'warn' | 'error' | 'fatal';
10382
+ message: string;
10383
+ source?: string;
10384
+ details?: unknown;
10385
+ }
10386
+ interface LogFilter {
10387
+ levels?: LogEntry['level'][];
10388
+ source?: string;
10389
+ search?: string;
10390
+ startTime?: Date;
10391
+ endTime?: Date;
10392
+ }
10393
+ interface StatusBarItem {
10394
+ id: string;
10395
+ content: string;
10396
+ icon?: string;
10397
+ tooltip?: string;
10398
+ position: 'left' | 'center' | 'right';
10399
+ priority?: number;
10400
+ clickable?: boolean;
10401
+ action?: () => void;
10402
+ }
10403
+ interface ToolbarItem {
10404
+ id: string;
10405
+ type: 'button' | 'toggle' | 'dropdown' | 'separator' | 'spacer' | 'custom';
10406
+ label?: string;
10407
+ icon?: string;
10408
+ tooltip?: string;
10409
+ disabled?: boolean;
10410
+ active?: boolean;
10411
+ items?: ToolbarItem[];
10412
+ action?: () => void;
10413
+ }
10414
+ type ToolbarVariant = 'default' | 'compact' | 'large';
10415
+ type ToolbarPosition = 'top' | 'bottom' | 'left' | 'right';
10416
+ interface DragData {
10417
+ type: string;
10418
+ data: unknown;
10419
+ source?: string;
10420
+ }
10421
+ interface DropEvent {
10422
+ data: DragData;
10423
+ position: {
10424
+ x: number;
10425
+ y: number;
10426
+ };
10427
+ target: HTMLElement;
10428
+ }
10429
+ interface KeyboardShortcut {
10430
+ key: string;
10431
+ ctrl?: boolean;
10432
+ alt?: boolean;
10433
+ shift?: boolean;
10434
+ meta?: boolean;
10435
+ action: () => void;
10436
+ description?: string;
10437
+ }
10438
+ interface StorageOptions {
10439
+ encrypt?: boolean;
10440
+ expires?: Date | number;
10441
+ }
10442
+ interface IpcMessage<T = unknown> {
10443
+ channel: string;
10444
+ payload: T;
10445
+ id?: string;
10446
+ }
10447
+ interface IpcResponse<T = unknown> {
10448
+ success: boolean;
10449
+ data?: T;
10450
+ error?: string;
10451
+ }
10452
+
10453
+ /**
10454
+ * Service for detecting and interacting with the native platform
10455
+ * Supports Tauri, Electron, and web browsers
10456
+ */
10457
+ declare class NativeAppPlatformService {
10458
+ private readonly _platform;
10459
+ private readonly _isTauri;
10460
+ private readonly _isElectron;
10461
+ private readonly _theme;
10462
+ private readonly _windowState;
10463
+ readonly platform: _angular_core.Signal<Platform>;
10464
+ readonly isTauri: _angular_core.Signal<boolean>;
10465
+ readonly isElectron: _angular_core.Signal<boolean>;
10466
+ readonly isNative: _angular_core.Signal<boolean>;
10467
+ readonly isWeb: _angular_core.Signal<boolean>;
10468
+ readonly theme: _angular_core.Signal<PlatformTheme>;
10469
+ readonly windowState: _angular_core.Signal<WindowState>;
10470
+ readonly isDarkMode: _angular_core.Signal<boolean>;
10471
+ constructor();
10472
+ private detectPlatform;
10473
+ private checkTauri;
10474
+ private checkElectron;
10475
+ private initThemeListener;
10476
+ private initWindowStateListener;
10477
+ setTheme(theme: PlatformTheme): void;
10478
+ minimize(): Promise<void>;
10479
+ maximize(): Promise<void>;
10480
+ close(): Promise<void>;
10481
+ toggleFullscreen(): Promise<void>;
10482
+ setTitle(title: string): Promise<void>;
10483
+ getModifierKey(): string;
10484
+ getAltKey(): string;
10485
+ formatShortcut(shortcut: string): string;
10486
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NativeAppPlatformService, never>;
10487
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<NativeAppPlatformService>;
10488
+ }
10489
+
10490
+ /**
10491
+ * Custom window title bar component
10492
+ * Replaces the native title bar with a draggable custom one
10493
+ *
10494
+ * @example
10495
+ * ```html
10496
+ * <tw-title-bar title="My App"></tw-title-bar>
10497
+ * <tw-title-bar title="My App" [showIcon]="true" icon="assets/icon.png"></tw-title-bar>
10498
+ * <tw-title-bar variant="transparent" platform="macos"></tw-title-bar>
10499
+ * ```
10500
+ */
10501
+ declare class TwTitleBarComponent {
10502
+ protected readonly platformService: NativeAppPlatformService;
10503
+ readonly title: _angular_core.InputSignal<string>;
10504
+ readonly icon: _angular_core.InputSignal<string | undefined>;
10505
+ readonly showIcon: _angular_core.InputSignal<boolean>;
10506
+ readonly variant: _angular_core.InputSignal<TitleBarVariant>;
10507
+ readonly platform: _angular_core.InputSignal<TitleBarPlatform>;
10508
+ readonly height: _angular_core.InputSignal<number>;
10509
+ readonly showClose: _angular_core.InputSignal<boolean>;
10510
+ readonly showMinimize: _angular_core.InputSignal<boolean>;
10511
+ readonly showMaximize: _angular_core.InputSignal<boolean>;
10512
+ readonly showFullscreen: _angular_core.InputSignal<boolean>;
10513
+ readonly doubleClick: _angular_core.OutputEmitterRef<void>;
10514
+ protected readonly effectivePlatform: _angular_core.Signal<_pegasusheavy_ngx_tailwindcss.Platform>;
10515
+ protected readonly containerClasses: _angular_core.Signal<string>;
10516
+ protected onDoubleClick(): void;
10517
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwTitleBarComponent, never>;
10518
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwTitleBarComponent, "tw-title-bar", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "platform": { "alias": "platform"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "showMinimize": { "alias": "showMinimize"; "required": false; "isSignal": true; }; "showMaximize": { "alias": "showMaximize"; "required": false; "isSignal": true; }; "showFullscreen": { "alias": "showFullscreen"; "required": false; "isSignal": true; }; }, { "doubleClick": "doubleClick"; }, never, ["*"], true, never>;
10519
+ }
10520
+
10521
+ /**
10522
+ * Window control buttons (minimize, maximize, close)
10523
+ * Automatically adapts to platform style (macOS traffic lights, Windows, Linux)
10524
+ *
10525
+ * @example
10526
+ * ```html
10527
+ * <tw-window-controls></tw-window-controls>
10528
+ * <tw-window-controls platform="macos"></tw-window-controls>
10529
+ * <tw-window-controls [showFullscreen]="true"></tw-window-controls>
10530
+ * ```
10531
+ */
10532
+ declare class TwWindowControlsComponent {
10533
+ protected readonly platformService: NativeAppPlatformService;
10534
+ readonly platform: _angular_core.InputSignal<TitleBarPlatform>;
10535
+ readonly showClose: _angular_core.InputSignal<boolean>;
10536
+ readonly showMinimize: _angular_core.InputSignal<boolean>;
10537
+ readonly showMaximize: _angular_core.InputSignal<boolean>;
10538
+ readonly showFullscreen: _angular_core.InputSignal<boolean>;
10539
+ readonly disabled: _angular_core.InputSignal<boolean>;
10540
+ readonly closeClick: _angular_core.OutputEmitterRef<void>;
10541
+ readonly minimizeClick: _angular_core.OutputEmitterRef<void>;
10542
+ readonly maximizeClick: _angular_core.OutputEmitterRef<void>;
10543
+ readonly fullscreenClick: _angular_core.OutputEmitterRef<void>;
10544
+ protected hovered: boolean;
10545
+ protected readonly effectivePlatform: _angular_core.Signal<_pegasusheavy_ngx_tailwindcss.Platform>;
10546
+ protected readonly containerClasses: _angular_core.Signal<"flex items-center" | "flex items-center -mr-1">;
10547
+ protected onClose(): void;
10548
+ protected onMinimize(): void;
10549
+ protected onMaximize(): void;
10550
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwWindowControlsComponent, never>;
10551
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwWindowControlsComponent, "tw-window-controls", never, { "platform": { "alias": "platform"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "showMinimize": { "alias": "showMinimize"; "required": false; "isSignal": true; }; "showMaximize": { "alias": "showMaximize"; "required": false; "isSignal": true; }; "showFullscreen": { "alias": "showFullscreen"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "closeClick": "closeClick"; "minimizeClick": "minimizeClick"; "maximizeClick": "maximizeClick"; "fullscreenClick": "fullscreenClick"; }, never, never, true, never>;
10552
+ }
10553
+
10554
+ /**
10555
+ * Application menu bar component
10556
+ * Provides a native-style menu bar with dropdown menus
10557
+ *
10558
+ * @example
10559
+ * ```html
10560
+ * <tw-menu-bar [items]="menuItems" (itemSelect)="onMenuSelect($event)"></tw-menu-bar>
10561
+ * ```
10562
+ */
10563
+ declare class TwMenuBarComponent {
10564
+ private readonly platformService;
10565
+ private readonly elementRef;
10566
+ readonly items: _angular_core.InputSignal<NativeMenuBarItem[]>;
10567
+ readonly itemSelect: _angular_core.OutputEmitterRef<NativeMenuItem>;
10568
+ readonly menuOpen: _angular_core.OutputEmitterRef<string>;
10569
+ readonly menuClose: _angular_core.OutputEmitterRef<void>;
10570
+ protected readonly openMenuId: _angular_core.WritableSignal<string | null>;
10571
+ protected readonly hoveredItemId: _angular_core.WritableSignal<string | null>;
10572
+ protected onDocumentClick(event: MouseEvent): void;
10573
+ protected onEscape(): void;
10574
+ protected toggleMenu(menuId: string): void;
10575
+ protected onMenuHover(menuId: string): void;
10576
+ protected closeMenu(): void;
10577
+ protected selectItem(item: NativeMenuItem): void;
10578
+ protected formatShortcut(shortcut: string): string;
10579
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwMenuBarComponent, never>;
10580
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwMenuBarComponent, "tw-menu-bar", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "menuOpen": "menuOpen"; "menuClose": "menuClose"; }, never, never, true, never>;
10581
+ }
10582
+
10583
+ /**
10584
+ * Context menu component (right-click menu)
10585
+ *
10586
+ * @example
10587
+ * ```html
10588
+ * <tw-context-menu [items]="menuItems" [trigger]="targetElement" (itemSelect)="onSelect($event)"></tw-context-menu>
10589
+ * ```
10590
+ */
10591
+ declare class TwNativeContextMenuComponent implements OnInit, OnDestroy {
10592
+ private readonly platformService;
10593
+ readonly items: _angular_core.InputSignal<NativeMenuItem[]>;
10594
+ readonly trigger: _angular_core.InputSignal<HTMLElement | null>;
10595
+ readonly itemSelect: _angular_core.OutputEmitterRef<NativeContextMenuEvent>;
10596
+ readonly opened: _angular_core.OutputEmitterRef<NativeContextMenuPosition>;
10597
+ readonly closed: _angular_core.OutputEmitterRef<void>;
10598
+ protected readonly isOpen: _angular_core.WritableSignal<boolean>;
10599
+ protected readonly position: _angular_core.WritableSignal<NativeContextMenuPosition>;
10600
+ protected readonly hoveredItemId: _angular_core.WritableSignal<string | null>;
10601
+ private contextMenuHandler;
10602
+ ngOnInit(): void;
10603
+ ngOnDestroy(): void;
10604
+ protected onDocumentClick(): void;
10605
+ protected onEscape(): void;
10606
+ protected onScroll(): void;
10607
+ private onContextMenu;
10608
+ protected selectItem(item: NativeMenuItem, event: MouseEvent): void;
10609
+ protected formatShortcut(shortcut: string): string;
10610
+ open(x: number, y: number): void;
10611
+ close(): void;
10612
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwNativeContextMenuComponent, never>;
10613
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwNativeContextMenuComponent, "tw-native-context-menu", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "trigger": { "alias": "trigger"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "opened": "opened"; "closed": "closed"; }, never, never, true, never>;
10614
+ }
10615
+
10616
+ /**
10617
+ * Collapsible sidebar navigation component
10618
+ * Supports nested items, badges, icons, and multiple variants
10619
+ *
10620
+ * @example
10621
+ * ```html
10622
+ * <tw-sidebar-nav [items]="navItems" (itemSelect)="onNavigate($event)"></tw-sidebar-nav>
10623
+ * <tw-sidebar-nav [items]="navItems" [collapsed]="isCollapsed" variant="compact"></tw-sidebar-nav>
10624
+ * ```
10625
+ */
10626
+ declare class TwSidebarNavComponent {
10627
+ private readonly twClass;
10628
+ readonly items: _angular_core.InputSignal<SidebarItem[]>;
10629
+ readonly variant: _angular_core.InputSignal<NativeSidebarVariant>;
10630
+ readonly position: _angular_core.InputSignal<NativeSidebarPosition>;
10631
+ readonly width: _angular_core.InputSignal<number>;
10632
+ readonly collapsedWidth: _angular_core.InputSignal<number>;
10633
+ readonly collapsed: _angular_core.InputSignal<boolean>;
10634
+ readonly collapsible: _angular_core.InputSignal<boolean>;
10635
+ readonly showHeader: _angular_core.InputSignal<boolean>;
10636
+ readonly headerTitle: _angular_core.InputSignal<string>;
10637
+ readonly itemSelect: _angular_core.OutputEmitterRef<SidebarItem>;
10638
+ readonly itemExpand: _angular_core.OutputEmitterRef<SidebarItem>;
10639
+ readonly collapsedChange: _angular_core.OutputEmitterRef<boolean>;
10640
+ private readonly _collapsed;
10641
+ protected readonly containerClasses: _angular_core.Signal<string>;
10642
+ protected getItemClasses(item: SidebarItem, depth: number): string;
10643
+ protected toggleCollapse(): void;
10644
+ protected onItemClick(item: SidebarItem): void;
10645
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwSidebarNavComponent, never>;
10646
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwSidebarNavComponent, "tw-sidebar-nav", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "collapsedWidth": { "alias": "collapsedWidth"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "showHeader": { "alias": "showHeader"; "required": false; "isSignal": true; }; "headerTitle": { "alias": "headerTitle"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "itemExpand": "itemExpand"; "collapsedChange": "collapsedChange"; }, never, ["[sidebarFooter]"], true, never>;
10647
+ }
10648
+
10649
+ /**
10650
+ * File tree / explorer component
10651
+ * Displays hierarchical file/folder structure with expand/collapse
10652
+ *
10653
+ * @example
10654
+ * ```html
10655
+ * <tw-file-tree [nodes]="files" (nodeSelect)="onFileSelect($event)"></tw-file-tree>
10656
+ * ```
10657
+ */
10658
+ declare class TwFileTreeComponent {
10659
+ readonly nodes: _angular_core.InputSignal<FileTreeNode[]>;
10660
+ readonly showSize: _angular_core.InputSignal<boolean>;
10661
+ readonly showDate: _angular_core.InputSignal<boolean>;
10662
+ readonly multiSelect: _angular_core.InputSignal<boolean>;
10663
+ readonly nodeSelect: _angular_core.OutputEmitterRef<FileTreeEvent>;
10664
+ readonly nodeExpand: _angular_core.OutputEmitterRef<FileTreeEvent>;
10665
+ readonly nodeCollapse: _angular_core.OutputEmitterRef<FileTreeEvent>;
10666
+ readonly nodeDoubleClick: _angular_core.OutputEmitterRef<FileTreeEvent>;
10667
+ protected readonly selectedNodes: _angular_core.WritableSignal<Set<string>>;
10668
+ protected onNodeClick(node: FileTreeNode): void;
10669
+ protected onNodeDoubleClick(node: FileTreeNode): void;
10670
+ protected toggleExpand(node: FileTreeNode, event?: MouseEvent): void;
10671
+ private clearSelection;
10672
+ protected formatSize(bytes: number): string;
10673
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwFileTreeComponent, never>;
10674
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwFileTreeComponent, "tw-file-tree", never, { "nodes": { "alias": "nodes"; "required": false; "isSignal": true; }; "showSize": { "alias": "showSize"; "required": false; "isSignal": true; }; "showDate": { "alias": "showDate"; "required": false; "isSignal": true; }; "multiSelect": { "alias": "multiSelect"; "required": false; "isSignal": true; }; }, { "nodeSelect": "nodeSelect"; "nodeExpand": "nodeExpand"; "nodeCollapse": "nodeCollapse"; "nodeDoubleClick": "nodeDoubleClick"; }, never, never, true, never>;
10675
+ }
10676
+
10677
+ interface NativeBreadcrumbItem {
10678
+ id: string;
10679
+ label: string;
10680
+ icon?: string;
10681
+ path?: string;
10682
+ data?: unknown;
10683
+ }
10684
+ /**
10685
+ * Breadcrumb navigation component
10686
+ * Shows path-based navigation with click-to-navigate
10687
+ *
10688
+ * @example
10689
+ * ```html
10690
+ * <tw-breadcrumbs-nav [items]="breadcrumbs" (itemSelect)="onNavigate($event)"></tw-breadcrumbs-nav>
10691
+ * ```
10692
+ */
10693
+ declare class TwBreadcrumbsNavComponent {
10694
+ readonly items: _angular_core.InputSignal<NativeBreadcrumbItem[]>;
10695
+ readonly showHome: _angular_core.InputSignal<boolean>;
10696
+ readonly editable: _angular_core.InputSignal<boolean>;
10697
+ readonly showCopyButton: _angular_core.InputSignal<boolean>;
10698
+ readonly separator: _angular_core.InputSignal<string>;
10699
+ readonly itemSelect: _angular_core.OutputEmitterRef<NativeBreadcrumbItem>;
10700
+ readonly homeSelect: _angular_core.OutputEmitterRef<void>;
10701
+ readonly pathChange: _angular_core.OutputEmitterRef<string>;
10702
+ readonly pathCopy: _angular_core.OutputEmitterRef<string>;
10703
+ protected readonly isEditing: _angular_core.WritableSignal<boolean>;
10704
+ protected readonly editPath: _angular_core.WritableSignal<string>;
10705
+ protected onHomeClick(): void;
10706
+ protected onItemClick(item: NativeBreadcrumbItem): void;
10707
+ protected startEdit(): void;
10708
+ protected cancelEdit(): void;
10709
+ protected onPathInput(event: Event): void;
10710
+ protected submitPath(): void;
10711
+ protected copyPath(): Promise<void>;
10712
+ getPath(): string;
10713
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwBreadcrumbsNavComponent, never>;
10714
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwBreadcrumbsNavComponent, "tw-breadcrumbs-nav", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "showHome": { "alias": "showHome"; "required": false; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "showCopyButton": { "alias": "showCopyButton"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "homeSelect": "homeSelect"; "pathChange": "pathChange"; "pathCopy": "pathCopy"; }, never, never, true, never>;
10715
+ }
10716
+
10717
+ /**
10718
+ * Document/file tab bar component
10719
+ * Supports closable tabs, drag to reorder, pinning, and dirty indicators
10720
+ *
10721
+ * @example
10722
+ * ```html
10723
+ * <tw-tab-bar [tabs]="openTabs" [activeTabId]="currentTabId" (tabSelect)="onTabSelect($event)"></tw-tab-bar>
10724
+ * ```
10725
+ */
10726
+ declare class TwTabBarComponent {
10727
+ readonly tabs: _angular_core.InputSignal<TabItem[]>;
10728
+ readonly activeTabId: _angular_core.InputSignal<string | null>;
10729
+ readonly variant: _angular_core.InputSignal<TabBarVariant>;
10730
+ readonly position: _angular_core.InputSignal<TabBarPosition>;
10731
+ readonly showAddButton: _angular_core.InputSignal<boolean>;
10732
+ readonly showOverflowMenu: _angular_core.InputSignal<boolean>;
10733
+ readonly tabSelect: _angular_core.OutputEmitterRef<TabEvent>;
10734
+ readonly tabClose: _angular_core.OutputEmitterRef<TabEvent>;
10735
+ readonly tabPin: _angular_core.OutputEmitterRef<TabEvent>;
10736
+ readonly tabReorder: _angular_core.OutputEmitterRef<{
10737
+ from: number;
10738
+ to: number;
10739
+ }>;
10740
+ readonly addTab: _angular_core.OutputEmitterRef<void>;
10741
+ readonly closeAll: _angular_core.OutputEmitterRef<void>;
10742
+ readonly closeOthers: _angular_core.OutputEmitterRef<string>;
10743
+ protected readonly overflowMenuOpen: _angular_core.WritableSignal<boolean>;
10744
+ private draggedTabIndex;
10745
+ protected readonly containerClasses: _angular_core.Signal<string>;
10746
+ protected getTabClasses(tab: TabItem): string;
10747
+ protected selectTab(tab: TabItem, index: number): void;
10748
+ protected closeTab(tab: TabItem, index: number, event: MouseEvent): void;
10749
+ protected onMiddleClick(tab: TabItem, index: number, event: MouseEvent): void;
10750
+ protected onDragStart(tab: TabItem, index: number, event: DragEvent): void;
10751
+ protected onDragOver(event: DragEvent): void;
10752
+ protected onDrop(toIndex: number, event: DragEvent): void;
10753
+ protected closeAllTabs(): void;
10754
+ protected closeOtherTabs(): void;
10755
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwTabBarComponent, never>;
10756
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwTabBarComponent, "tw-tab-bar", never, { "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "activeTabId": { "alias": "activeTabId"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "showAddButton": { "alias": "showAddButton"; "required": false; "isSignal": true; }; "showOverflowMenu": { "alias": "showOverflowMenu"; "required": false; "isSignal": true; }; }, { "tabSelect": "tabSelect"; "tabClose": "tabClose"; "tabPin": "tabPin"; "tabReorder": "tabReorder"; "addTab": "addTab"; "closeAll": "closeAll"; "closeOthers": "closeOthers"; }, never, never, true, never>;
10757
+ }
10758
+
10759
+ /**
10760
+ * Command palette component (Cmd+K / Ctrl+K style)
10761
+ * Provides fuzzy search for commands, files, and more
10762
+ *
10763
+ * @example
10764
+ * ```html
10765
+ * <tw-command-palette [commands]="commands" (commandSelect)="onCommand($event)"></tw-command-palette>
10766
+ * ```
10767
+ */
10768
+ declare class TwCommandPaletteComponent implements OnInit, OnDestroy {
10769
+ private readonly platformService;
10770
+ readonly commands: _angular_core.InputSignal<CommandItem[]>;
10771
+ readonly placeholder: _angular_core.InputSignal<string>;
10772
+ readonly shortcut: _angular_core.InputSignal<string>;
10773
+ readonly commandSelect: _angular_core.OutputEmitterRef<CommandItem>;
10774
+ readonly opened: _angular_core.OutputEmitterRef<void>;
10775
+ readonly closed: _angular_core.OutputEmitterRef<void>;
10776
+ protected readonly isOpen: _angular_core.WritableSignal<boolean>;
10777
+ protected readonly searchQuery: _angular_core.WritableSignal<string>;
10778
+ protected readonly selectedIndex: _angular_core.WritableSignal<number>;
10779
+ protected readonly filteredCommands: _angular_core.Signal<CommandItem[]>;
10780
+ protected readonly groupedCommands: _angular_core.Signal<{
10781
+ category: string;
10782
+ commands: CommandItem[];
10783
+ }[]>;
10784
+ private keydownHandler;
10785
+ ngOnInit(): void;
10786
+ ngOnDestroy(): void;
10787
+ private handleGlobalKeydown;
10788
+ protected onEscape(): void;
10789
+ protected onKeyDown(event: KeyboardEvent): void;
10790
+ protected onSearchChange(query: string): void;
10791
+ protected clearSearch(): void;
10792
+ protected selectCommand(command: CommandItem): void;
10793
+ protected formatShortcut(shortcut: string): string;
10794
+ protected getGlobalIndex(category: string, localIndex: number): number;
10795
+ private fuzzyMatch;
10796
+ open(): void;
10797
+ close(): void;
10798
+ toggle(): void;
10799
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwCommandPaletteComponent, never>;
10800
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwCommandPaletteComponent, "tw-command-palette", never, { "commands": { "alias": "commands"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "shortcut": { "alias": "shortcut"; "required": false; "isSignal": true; }; }, { "commandSelect": "commandSelect"; "opened": "opened"; "closed": "closed"; }, never, never, true, never>;
10801
+ }
10802
+
10803
+ /**
10804
+ * Search bar component with suggestions and filters
10805
+ *
10806
+ * @example
10807
+ * ```html
10808
+ * <tw-search-bar (search)="onSearch($event)" [suggestions]="suggestions"></tw-search-bar>
10809
+ * ```
10810
+ */
10811
+ declare class TwSearchBarComponent {
10812
+ private readonly elementRef;
10813
+ readonly placeholder: _angular_core.InputSignal<string>;
10814
+ readonly suggestions: _angular_core.InputSignal<SearchSuggestion[]>;
10815
+ readonly filters: _angular_core.InputSignal<SearchFilter[]>;
10816
+ readonly loading: _angular_core.InputSignal<boolean>;
10817
+ readonly fullWidth: _angular_core.InputSignal<boolean>;
10818
+ readonly showShortcut: _angular_core.InputSignal<boolean>;
10819
+ readonly shortcutHint: _angular_core.InputSignal<string>;
10820
+ readonly search: _angular_core.OutputEmitterRef<string>;
10821
+ readonly queryChange: _angular_core.OutputEmitterRef<string>;
10822
+ readonly suggestionSelect: _angular_core.OutputEmitterRef<SearchSuggestion>;
10823
+ readonly filterChange: _angular_core.OutputEmitterRef<SearchFilter[]>;
10824
+ protected readonly query: _angular_core.WritableSignal<string>;
10825
+ protected readonly isFocused: _angular_core.WritableSignal<boolean>;
10826
+ protected readonly showSuggestions: _angular_core.WritableSignal<boolean>;
10827
+ protected readonly activeFilters: _angular_core.WritableSignal<SearchFilter[]>;
10828
+ protected readonly recentSearches: _angular_core.WritableSignal<string[]>;
10829
+ protected onDocumentClick(event: MouseEvent): void;
10830
+ protected onFocus(): void;
10831
+ protected onBlur(): void;
10832
+ protected onQueryChange(query: string): void;
10833
+ protected submitSearch(): void;
10834
+ protected clearSearch(): void;
10835
+ protected selectSuggestion(suggestion: SearchSuggestion): void;
10836
+ protected selectRecent(recent: string): void;
10837
+ protected removeFilter(filter: SearchFilter): void;
10838
+ addFilter(filter: SearchFilter): void;
10839
+ focus(): void;
10840
+ clear(): void;
10841
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwSearchBarComponent, never>;
10842
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwSearchBarComponent, "tw-search-bar", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "suggestions": { "alias": "suggestions"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "showShortcut": { "alias": "showShortcut"; "required": false; "isSignal": true; }; "shortcutHint": { "alias": "shortcutHint"; "required": false; "isSignal": true; }; }, { "search": "search"; "queryChange": "queryChange"; "suggestionSelect": "suggestionSelect"; "filterChange": "filterChange"; }, never, never, true, never>;
10843
+ }
10844
+
10845
+ interface QuickSwitcherItem {
10846
+ id: string;
10847
+ label: string;
10848
+ description?: string;
10849
+ icon?: string;
10850
+ path?: string;
10851
+ type: 'file' | 'tab' | 'command' | 'symbol' | 'recent';
10852
+ metadata?: Record<string, unknown>;
10853
+ }
10854
+ declare class TwQuickSwitcherComponent {
10855
+ readonly items: _angular_core.InputSignal<QuickSwitcherItem[]>;
10856
+ readonly recentItemIds: _angular_core.InputSignal<string[]>;
10857
+ readonly placeholder: _angular_core.InputSignal<string>;
10858
+ readonly maxResults: _angular_core.InputSignal<number>;
10859
+ readonly itemSelected: _angular_core.OutputEmitterRef<QuickSwitcherItem>;
10860
+ readonly closed: _angular_core.OutputEmitterRef<void>;
10861
+ readonly searchInput: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
10862
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
10863
+ readonly searchQuery: _angular_core.WritableSignal<string>;
10864
+ readonly selectedIndex: _angular_core.WritableSignal<number>;
10865
+ readonly recentItems: _angular_core.Signal<QuickSwitcherItem[]>;
10866
+ readonly filteredItems: _angular_core.Signal<QuickSwitcherItem[]>;
10867
+ constructor();
10868
+ handleKeydown(event: KeyboardEvent): void;
10869
+ open(): void;
10870
+ close(): void;
10871
+ selectItem(item: QuickSwitcherItem): void;
10872
+ onBackdropClick(event: MouseEvent): void;
10873
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwQuickSwitcherComponent, never>;
10874
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwQuickSwitcherComponent, "tw-quick-switcher", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "recentItemIds": { "alias": "recentItemIds"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "maxResults": { "alias": "maxResults"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; "closed": "closed"; }, never, never, true, never>;
10875
+ }
10876
+
10877
+ interface SettingsCategory {
10878
+ id: string;
10879
+ label: string;
10880
+ icon?: string;
10881
+ description?: string;
10882
+ }
10883
+ interface SettingItem {
10884
+ id: string;
10885
+ categoryId: string;
10886
+ label: string;
10887
+ description?: string;
10888
+ type: 'toggle' | 'select' | 'text' | 'number' | 'color' | 'path' | 'shortcut';
10889
+ value: unknown;
10890
+ options?: {
10891
+ label: string;
10892
+ value: unknown;
10893
+ }[];
10894
+ min?: number;
10895
+ max?: number;
10896
+ step?: number;
10897
+ placeholder?: string;
10898
+ disabled?: boolean;
10899
+ }
10900
+ declare class TwSettingTemplateDirective {
10901
+ readonly template: TemplateRef<unknown>;
10902
+ readonly settingId: _angular_core.InputSignal<string>;
10903
+ constructor(template: TemplateRef<unknown>);
10904
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwSettingTemplateDirective, never>;
10905
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TwSettingTemplateDirective, "[twSettingTemplate]", never, { "settingId": { "alias": "twSettingTemplate"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
10906
+ }
10907
+ declare class TwSettingsPanelComponent {
10908
+ readonly categories: _angular_core.InputSignal<SettingsCategory[]>;
10909
+ readonly settings: _angular_core.InputSignal<SettingItem[]>;
10910
+ readonly settingChanged: _angular_core.OutputEmitterRef<{
10911
+ setting: SettingItem;
10912
+ value: unknown;
10913
+ }>;
10914
+ readonly resetToDefaults: _angular_core.OutputEmitterRef<void>;
10915
+ readonly exportSettings: _angular_core.OutputEmitterRef<void>;
10916
+ readonly importSettings: _angular_core.OutputEmitterRef<void>;
10917
+ readonly browsePath: _angular_core.OutputEmitterRef<SettingItem>;
10918
+ readonly editShortcut: _angular_core.OutputEmitterRef<SettingItem>;
10919
+ readonly templates: _angular_core.Signal<readonly TwSettingTemplateDirective[]>;
10920
+ readonly searchQuery: _angular_core.WritableSignal<string>;
10921
+ readonly selectedCategoryId: _angular_core.WritableSignal<string | null>;
10922
+ readonly selectedCategory: _angular_core.Signal<SettingsCategory | undefined>;
10923
+ readonly filteredSettings: _angular_core.Signal<SettingItem[]>;
10924
+ toggleSetting(setting: SettingItem): void;
10925
+ updateSetting(setting: SettingItem, value: unknown): void;
10926
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwSettingsPanelComponent, never>;
10927
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwSettingsPanelComponent, "tw-settings-panel", never, { "categories": { "alias": "categories"; "required": false; "isSignal": true; }; "settings": { "alias": "settings"; "required": false; "isSignal": true; }; }, { "settingChanged": "settingChanged"; "resetToDefaults": "resetToDefaults"; "exportSettings": "exportSettings"; "importSettings": "importSettings"; "browsePath": "browsePath"; "editShortcut": "editShortcut"; }, ["templates"], never, true, never>;
10928
+ }
10929
+
10930
+ interface PreferencesTab {
10931
+ id: string;
10932
+ label: string;
10933
+ icon?: string;
10934
+ }
10935
+ declare class TwPreferencesDialogComponent {
10936
+ readonly title: _angular_core.InputSignal<string>;
10937
+ readonly tabs: _angular_core.InputSignal<PreferencesTab[]>;
10938
+ readonly defaultTabId: _angular_core.InputSignal<string | null>;
10939
+ readonly tabChanged: _angular_core.OutputEmitterRef<string>;
10940
+ readonly closed: _angular_core.OutputEmitterRef<void>;
10941
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
10942
+ readonly selectedTabId: _angular_core.WritableSignal<string | null>;
10943
+ readonly selectedTab: _angular_core.Signal<PreferencesTab | undefined>;
10944
+ open(tabId?: string): void;
10945
+ close(): void;
10946
+ selectTab(tabId: string): void;
10947
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwPreferencesDialogComponent, never>;
10948
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwPreferencesDialogComponent, "tw-preferences-dialog", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "defaultTabId": { "alias": "defaultTabId"; "required": false; "isSignal": true; }; }, { "tabChanged": "tabChanged"; "closed": "closed"; }, never, ["*"], true, never>;
10949
+ }
10950
+
10951
+ interface ShortcutBinding {
10952
+ id: string;
10953
+ command: string;
10954
+ description?: string;
10955
+ category?: string;
10956
+ keys: string[];
10957
+ defaultKeys: string[];
10958
+ isCustom?: boolean;
10959
+ }
10960
+ declare class TwShortcutsEditorComponent {
10961
+ readonly shortcuts: _angular_core.InputSignal<ShortcutBinding[]>;
10962
+ readonly platform: _angular_core.InputSignal<"windows" | "linux" | "mac">;
10963
+ readonly shortcutChanged: _angular_core.OutputEmitterRef<{
10964
+ shortcut: ShortcutBinding;
10965
+ keys: string[];
10966
+ }>;
10967
+ readonly shortcutReset: _angular_core.OutputEmitterRef<ShortcutBinding>;
10968
+ readonly resetAllShortcuts: _angular_core.OutputEmitterRef<void>;
10969
+ readonly exportShortcuts: _angular_core.OutputEmitterRef<void>;
10970
+ readonly importShortcuts: _angular_core.OutputEmitterRef<void>;
10971
+ readonly searchQuery: _angular_core.WritableSignal<string>;
10972
+ readonly selectedCategory: _angular_core.WritableSignal<string>;
10973
+ readonly editingId: _angular_core.WritableSignal<string | null>;
10974
+ readonly recordedKeys: _angular_core.WritableSignal<string[]>;
10975
+ readonly conflictWarning: _angular_core.WritableSignal<string | null>;
10976
+ readonly categories: _angular_core.Signal<string[]>;
10977
+ readonly filteredShortcuts: _angular_core.Signal<ShortcutBinding[]>;
10978
+ handleKeydown(event: KeyboardEvent): void;
10979
+ startEdit(shortcut: ShortcutBinding): void;
10980
+ cancelEdit(): void;
10981
+ saveEdit(): void;
10982
+ resetShortcut(shortcut: ShortcutBinding): void;
10983
+ formatKey(key: string): string;
10984
+ private findConflict;
10985
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwShortcutsEditorComponent, never>;
10986
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwShortcutsEditorComponent, "tw-shortcuts-editor", never, { "shortcuts": { "alias": "shortcuts"; "required": false; "isSignal": true; }; "platform": { "alias": "platform"; "required": false; "isSignal": true; }; }, { "shortcutChanged": "shortcutChanged"; "shortcutReset": "shortcutReset"; "resetAllShortcuts": "resetAllShortcuts"; "exportShortcuts": "exportShortcuts"; "importShortcuts": "importShortcuts"; }, never, never, true, never>;
10987
+ }
10988
+
10989
+ type ThemeMode = 'light' | 'dark' | 'system';
10990
+ interface ThemePreset {
10991
+ id: string;
10992
+ name: string;
10993
+ colors: {
10994
+ primary: string;
10995
+ secondary: string;
10996
+ accent: string;
10997
+ background: string;
10998
+ surface: string;
10999
+ text: string;
11000
+ };
11001
+ preview?: string;
11002
+ }
11003
+ declare class TwThemeSelectorComponent {
11004
+ private readonly document;
11005
+ readonly presets: _angular_core.InputSignal<ThemePreset[]>;
11006
+ readonly defaultMode: _angular_core.InputSignal<ThemeMode>;
11007
+ readonly defaultAccentColor: _angular_core.InputSignal<string>;
11008
+ readonly modeChanged: _angular_core.OutputEmitterRef<ThemeMode>;
11009
+ readonly accentColorChanged: _angular_core.OutputEmitterRef<string>;
11010
+ readonly fontSizeChanged: _angular_core.OutputEmitterRef<number>;
11011
+ readonly presetSelected: _angular_core.OutputEmitterRef<ThemePreset>;
11012
+ readonly highContrastChanged: _angular_core.OutputEmitterRef<boolean>;
11013
+ readonly reducedMotionChanged: _angular_core.OutputEmitterRef<boolean>;
11014
+ readonly currentMode: _angular_core.WritableSignal<ThemeMode>;
11015
+ readonly currentAccentColor: _angular_core.WritableSignal<string>;
11016
+ readonly fontSize: _angular_core.WritableSignal<number>;
11017
+ readonly selectedPresetId: _angular_core.WritableSignal<string | null>;
11018
+ readonly highContrast: _angular_core.WritableSignal<boolean>;
11019
+ readonly reducedMotion: _angular_core.WritableSignal<boolean>;
11020
+ readonly modes: {
11021
+ value: ThemeMode;
11022
+ label: string;
11023
+ }[];
11024
+ readonly accentColors: {
11025
+ name: string;
11026
+ value: string;
11027
+ }[];
11028
+ constructor();
11029
+ selectMode(mode: ThemeMode): void;
11030
+ selectAccentColor(color: string): void;
11031
+ setFontSize(size: number): void;
11032
+ selectPreset(preset: ThemePreset): void;
11033
+ toggleHighContrast(): void;
11034
+ toggleReducedMotion(): void;
11035
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwThemeSelectorComponent, never>;
11036
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwThemeSelectorComponent, "tw-theme-selector", never, { "presets": { "alias": "presets"; "required": false; "isSignal": true; }; "defaultMode": { "alias": "defaultMode"; "required": false; "isSignal": true; }; "defaultAccentColor": { "alias": "defaultAccentColor"; "required": false; "isSignal": true; }; }, { "modeChanged": "modeChanged"; "accentColorChanged": "accentColorChanged"; "fontSizeChanged": "fontSizeChanged"; "presetSelected": "presetSelected"; "highContrastChanged": "highContrastChanged"; "reducedMotionChanged": "reducedMotionChanged"; }, never, never, true, never>;
11037
+ }
11038
+
11039
+ /**
11040
+ * Alert dialog component
11041
+ * Shows informational, warning, or error messages
11042
+ *
11043
+ * @example
11044
+ * ```html
11045
+ * <tw-alert-dialog
11046
+ * [open]="showAlert"
11047
+ * title="Success"
11048
+ * message="Your changes have been saved."
11049
+ * type="success"
11050
+ * (confirm)="onDismiss()"
11051
+ * ></tw-alert-dialog>
11052
+ * ```
11053
+ */
11054
+ declare class TwAlertDialogComponent {
11055
+ readonly open: _angular_core.InputSignal<boolean>;
11056
+ readonly title: _angular_core.InputSignal<string>;
11057
+ readonly message: _angular_core.InputSignal<string>;
11058
+ readonly type: _angular_core.InputSignal<AlertDialogType>;
11059
+ readonly confirmLabel: _angular_core.InputSignal<string>;
11060
+ readonly showDontAskAgain: _angular_core.InputSignal<boolean>;
11061
+ readonly confirm: _angular_core.OutputEmitterRef<{
11062
+ dontAskAgain: boolean;
11063
+ }>;
11064
+ readonly openChange: _angular_core.OutputEmitterRef<boolean>;
11065
+ protected readonly dontAskAgain: _angular_core.WritableSignal<boolean>;
11066
+ protected readonly iconContainerClasses: _angular_core.Signal<string>;
11067
+ protected readonly buttonClasses: _angular_core.Signal<"px-4 py-2 text-sm font-medium rounded-lg transition-colors bg-red-600 text-white hover:bg-red-700" | "px-4 py-2 text-sm font-medium rounded-lg transition-colors bg-blue-600 text-white hover:bg-blue-700">;
11068
+ protected onConfirm(): void;
11069
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwAlertDialogComponent, never>;
11070
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwAlertDialogComponent, "tw-alert-dialog", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "confirmLabel": { "alias": "confirmLabel"; "required": false; "isSignal": true; }; "showDontAskAgain": { "alias": "showDontAskAgain"; "required": false; "isSignal": true; }; }, { "confirm": "confirm"; "openChange": "openChange"; }, never, never, true, never>;
11071
+ }
11072
+
11073
+ /**
11074
+ * Confirmation dialog component
11075
+ * Asks user to confirm or cancel an action
11076
+ *
11077
+ * @example
11078
+ * ```html
11079
+ * <tw-confirm-dialog
11080
+ * [open]="showConfirm"
11081
+ * title="Delete file?"
11082
+ * message="This action cannot be undone."
11083
+ * [destructive]="true"
11084
+ * (confirm)="onDelete()"
11085
+ * (cancel)="showConfirm = false"
11086
+ * ></tw-confirm-dialog>
11087
+ * ```
11088
+ */
11089
+ declare class TwNativeConfirmDialogComponent {
11090
+ readonly open: _angular_core.InputSignal<boolean>;
11091
+ readonly title: _angular_core.InputSignal<string>;
11092
+ readonly message: _angular_core.InputSignal<string>;
11093
+ readonly type: _angular_core.InputSignal<AlertDialogType>;
11094
+ readonly confirmLabel: _angular_core.InputSignal<string>;
11095
+ readonly cancelLabel: _angular_core.InputSignal<string>;
11096
+ readonly destructive: _angular_core.InputSignal<boolean>;
11097
+ readonly confirm: _angular_core.OutputEmitterRef<void>;
11098
+ readonly cancel: _angular_core.OutputEmitterRef<void>;
11099
+ readonly openChange: _angular_core.OutputEmitterRef<boolean>;
11100
+ protected onEscape(): void;
11101
+ protected onEnter(): void;
11102
+ protected readonly iconContainerClasses: _angular_core.Signal<"flex-shrink-0 w-10 h-10 rounded-full flex items-center justify-center bg-red-100 text-red-600 dark:bg-red-900/50 dark:text-red-400" | "flex-shrink-0 w-10 h-10 rounded-full flex items-center justify-center bg-blue-100 text-blue-600 dark:bg-blue-900/50 dark:text-blue-400">;
11103
+ protected readonly confirmButtonClasses: _angular_core.Signal<"px-4 py-2 text-sm font-medium rounded-lg transition-colors bg-red-600 text-white hover:bg-red-700" | "px-4 py-2 text-sm font-medium rounded-lg transition-colors bg-blue-600 text-white hover:bg-blue-700">;
11104
+ protected onConfirm(): void;
11105
+ protected onCancel(): void;
11106
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwNativeConfirmDialogComponent, never>;
11107
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwNativeConfirmDialogComponent, "tw-native-confirm-dialog", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "confirmLabel": { "alias": "confirmLabel"; "required": false; "isSignal": true; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; "isSignal": true; }; "destructive": { "alias": "destructive"; "required": false; "isSignal": true; }; }, { "confirm": "confirm"; "cancel": "cancel"; "openChange": "openChange"; }, never, never, true, never>;
11108
+ }
11109
+
11110
+ type PromptInputType = 'text' | 'password' | 'number' | 'email' | 'url';
11111
+ declare class TwPromptDialogComponent {
11112
+ readonly title: _angular_core.InputSignal<string>;
11113
+ readonly message: _angular_core.InputSignal<string>;
11114
+ readonly defaultValue: _angular_core.InputSignal<string>;
11115
+ readonly placeholder: _angular_core.InputSignal<string>;
11116
+ readonly inputType: _angular_core.InputSignal<PromptInputType>;
11117
+ readonly confirmText: _angular_core.InputSignal<string>;
11118
+ readonly cancelText: _angular_core.InputSignal<string>;
11119
+ readonly required: _angular_core.InputSignal<boolean>;
11120
+ readonly minLength: _angular_core.InputSignal<number | null>;
11121
+ readonly maxLength: _angular_core.InputSignal<number | null>;
11122
+ readonly pattern: _angular_core.InputSignal<string | null>;
11123
+ readonly customValidator: _angular_core.InputSignal<((value: string) => string | null) | null>;
11124
+ readonly confirmed: _angular_core.OutputEmitterRef<string>;
11125
+ readonly cancelled: _angular_core.OutputEmitterRef<void>;
11126
+ readonly inputElement: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
11127
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
11128
+ readonly inputValue: _angular_core.WritableSignal<string>;
11129
+ readonly validationError: _angular_core.WritableSignal<string | null>;
11130
+ constructor();
11131
+ open(defaultValue?: string): void;
11132
+ close(): void;
11133
+ confirm(): void;
11134
+ cancel(): void;
11135
+ isValid(): boolean;
11136
+ private validate;
11137
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwPromptDialogComponent, never>;
11138
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwPromptDialogComponent, "tw-prompt-dialog", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "inputType": { "alias": "inputType"; "required": false; "isSignal": true; }; "confirmText": { "alias": "confirmText"; "required": false; "isSignal": true; }; "cancelText": { "alias": "cancelText"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "pattern": { "alias": "pattern"; "required": false; "isSignal": true; }; "customValidator": { "alias": "customValidator"; "required": false; "isSignal": true; }; }, { "confirmed": "confirmed"; "cancelled": "cancelled"; }, never, never, true, never>;
11139
+ }
11140
+
11141
+ /**
11142
+ * About dialog component
11143
+ * Shows application information, version, credits
11144
+ *
11145
+ * @example
11146
+ * ```html
11147
+ * <tw-about-dialog
11148
+ * [open]="showAbout"
11149
+ * appName="My App"
11150
+ * version="1.0.0"
11151
+ * [links]="[{ label: 'Website', url: 'https://example.com' }]"
11152
+ * (close)="showAbout = false"
11153
+ * ></tw-about-dialog>
11154
+ * ```
11155
+ */
11156
+ declare class TwAboutDialogComponent {
11157
+ readonly open: _angular_core.InputSignal<boolean>;
11158
+ readonly appName: _angular_core.InputSignal<string>;
11159
+ readonly appIcon: _angular_core.InputSignal<string | undefined>;
11160
+ readonly version: _angular_core.InputSignal<string>;
11161
+ readonly description: _angular_core.InputSignal<string | undefined>;
11162
+ readonly copyright: _angular_core.InputSignal<string | undefined>;
11163
+ readonly credits: _angular_core.InputSignal<string[]>;
11164
+ readonly links: _angular_core.InputSignal<{
11165
+ label: string;
11166
+ url: string;
11167
+ }[]>;
11168
+ readonly showUpdateButton: _angular_core.InputSignal<boolean>;
11169
+ readonly showLicenseButton: _angular_core.InputSignal<boolean>;
11170
+ readonly close: _angular_core.OutputEmitterRef<void>;
11171
+ readonly openChange: _angular_core.OutputEmitterRef<boolean>;
11172
+ readonly checkForUpdates: _angular_core.OutputEmitterRef<void>;
11173
+ readonly viewLicense: _angular_core.OutputEmitterRef<void>;
11174
+ protected onEscape(): void;
11175
+ protected onClose(): void;
11176
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwAboutDialogComponent, never>;
11177
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwAboutDialogComponent, "tw-about-dialog", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "appName": { "alias": "appName"; "required": false; "isSignal": true; }; "appIcon": { "alias": "appIcon"; "required": false; "isSignal": true; }; "version": { "alias": "version"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "copyright": { "alias": "copyright"; "required": false; "isSignal": true; }; "credits": { "alias": "credits"; "required": false; "isSignal": true; }; "links": { "alias": "links"; "required": false; "isSignal": true; }; "showUpdateButton": { "alias": "showUpdateButton"; "required": false; "isSignal": true; }; "showLicenseButton": { "alias": "showLicenseButton"; "required": false; "isSignal": true; }; }, { "close": "close"; "openChange": "openChange"; "checkForUpdates": "checkForUpdates"; "viewLicense": "viewLicense"; }, never, never, true, never>;
11178
+ }
11179
+
11180
+ interface UpdateDialogInfo {
11181
+ currentVersion: string;
11182
+ newVersion: string;
11183
+ releaseDate?: string;
11184
+ changelog?: string;
11185
+ downloadSize?: string;
11186
+ mandatory?: boolean;
11187
+ }
11188
+ declare class TwUpdateDialogComponent {
11189
+ readonly appName: _angular_core.InputSignal<string>;
11190
+ readonly updateInfo: _angular_core.InputSignal<UpdateDialogInfo | null>;
11191
+ readonly showAutoUpdate: _angular_core.InputSignal<boolean>;
11192
+ readonly downloadStarted: _angular_core.OutputEmitterRef<void>;
11193
+ readonly downloadCancelled: _angular_core.OutputEmitterRef<void>;
11194
+ readonly installClicked: _angular_core.OutputEmitterRef<void>;
11195
+ readonly remindLaterClicked: _angular_core.OutputEmitterRef<void>;
11196
+ readonly autoUpdateChanged: _angular_core.OutputEmitterRef<boolean>;
11197
+ readonly closed: _angular_core.OutputEmitterRef<void>;
11198
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
11199
+ readonly isDownloading: _angular_core.WritableSignal<boolean>;
11200
+ readonly downloadProgress: _angular_core.WritableSignal<number>;
11201
+ readonly autoUpdate: _angular_core.WritableSignal<boolean>;
11202
+ open(info: UpdateDialogInfo): void;
11203
+ close(): void;
11204
+ startDownload(): void;
11205
+ cancelDownload(): void;
11206
+ installUpdate(): void;
11207
+ remindLater(): void;
11208
+ toggleAutoUpdate(): void;
11209
+ setDownloadProgress(progress: number): void;
11210
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwUpdateDialogComponent, never>;
11211
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwUpdateDialogComponent, "tw-update-dialog", never, { "appName": { "alias": "appName"; "required": false; "isSignal": true; }; "updateInfo": { "alias": "updateInfo"; "required": false; "isSignal": true; }; "showAutoUpdate": { "alias": "showAutoUpdate"; "required": false; "isSignal": true; }; }, { "downloadStarted": "downloadStarted"; "downloadCancelled": "downloadCancelled"; "installClicked": "installClicked"; "remindLaterClicked": "remindLaterClicked"; "autoUpdateChanged": "autoUpdateChanged"; "closed": "closed"; }, never, never, true, never>;
11212
+ }
11213
+
11214
+ interface OnboardingStep {
11215
+ id: string;
11216
+ title: string;
11217
+ description?: string;
11218
+ image?: string;
11219
+ icon?: string;
11220
+ }
11221
+ declare class TwOnboardingWizardComponent {
11222
+ readonly steps: _angular_core.InputSignal<OnboardingStep[]>;
11223
+ readonly allowSkip: _angular_core.InputSignal<boolean>;
11224
+ readonly showDontShowAgain: _angular_core.InputSignal<boolean>;
11225
+ readonly completeText: _angular_core.InputSignal<string>;
11226
+ readonly stepChanged: _angular_core.OutputEmitterRef<{
11227
+ step: OnboardingStep;
11228
+ index: number;
11229
+ }>;
11230
+ readonly completed: _angular_core.OutputEmitterRef<{
11231
+ dontShowAgain: boolean;
11232
+ }>;
11233
+ readonly skipped: _angular_core.OutputEmitterRef<void>;
11234
+ readonly closed: _angular_core.OutputEmitterRef<void>;
11235
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
11236
+ readonly currentIndex: _angular_core.WritableSignal<number>;
11237
+ readonly dontShowAgain: _angular_core.WritableSignal<boolean>;
11238
+ readonly currentStep: _angular_core.Signal<OnboardingStep>;
11239
+ readonly isLastStep: _angular_core.Signal<boolean>;
11240
+ readonly progressPercent: _angular_core.Signal<number>;
11241
+ open(startIndex?: number): void;
11242
+ close(): void;
11243
+ next(): void;
11244
+ previous(): void;
11245
+ goToStep(index: number): void;
11246
+ skip(): void;
11247
+ complete(): void;
11248
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwOnboardingWizardComponent, never>;
11249
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwOnboardingWizardComponent, "tw-onboarding-wizard", never, { "steps": { "alias": "steps"; "required": false; "isSignal": true; }; "allowSkip": { "alias": "allowSkip"; "required": false; "isSignal": true; }; "showDontShowAgain": { "alias": "showDontShowAgain"; "required": false; "isSignal": true; }; "completeText": { "alias": "completeText"; "required": false; "isSignal": true; }; }, { "stepChanged": "stepChanged"; "completed": "completed"; "skipped": "skipped"; "closed": "closed"; }, never, ["*"], true, never>;
11250
+ }
11251
+
11252
+ /**
11253
+ * Terminal / Console output component
11254
+ * Displays command output with ANSI color support
11255
+ *
11256
+ * @example
11257
+ * ```html
11258
+ * <tw-terminal [lines]="output" (command)="onCommand($event)"></tw-terminal>
11259
+ * ```
11260
+ */
11261
+ declare class TwTerminalComponent implements AfterViewChecked {
11262
+ private outputArea;
11263
+ readonly lines: _angular_core.InputSignal<TerminalLine[]>;
11264
+ readonly variant: _angular_core.InputSignal<TerminalVariant>;
11265
+ readonly title: _angular_core.InputSignal<string>;
11266
+ readonly prompt: _angular_core.InputSignal<string>;
11267
+ readonly inputPlaceholder: _angular_core.InputSignal<string>;
11268
+ readonly showHeader: _angular_core.InputSignal<boolean>;
11269
+ readonly showInput: _angular_core.InputSignal<boolean>;
11270
+ readonly showCursor: _angular_core.InputSignal<boolean>;
11271
+ readonly showTimestamps: _angular_core.InputSignal<boolean>;
11272
+ readonly showClearButton: _angular_core.InputSignal<boolean>;
11273
+ readonly showCopyButton: _angular_core.InputSignal<boolean>;
11274
+ readonly autoScroll: _angular_core.InputSignal<boolean>;
11275
+ readonly maxLines: _angular_core.InputSignal<number>;
11276
+ readonly command: _angular_core.OutputEmitterRef<string>;
11277
+ readonly clear: _angular_core.OutputEmitterRef<void>;
11278
+ readonly copy: _angular_core.OutputEmitterRef<string>;
11279
+ protected readonly currentInput: _angular_core.WritableSignal<string>;
11280
+ protected readonly isProcessing: _angular_core.WritableSignal<boolean>;
11281
+ protected readonly commandHistory: _angular_core.WritableSignal<string[]>;
11282
+ protected readonly historyIndex: _angular_core.WritableSignal<number>;
11283
+ private shouldScroll;
11284
+ ngAfterViewChecked(): void;
11285
+ protected readonly containerClasses: _angular_core.Signal<string>;
11286
+ protected getLineClasses(line: TerminalLine): string;
11287
+ protected formatTimestamp(date: Date): string;
11288
+ protected stripAnsi(text: string): string;
11289
+ protected submitCommand(): void;
11290
+ protected navigateHistory(direction: number): void;
11291
+ protected copyOutput(): Promise<void>;
11292
+ setProcessing(processing: boolean): void;
11293
+ scrollToBottom(): void;
11294
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwTerminalComponent, never>;
11295
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwTerminalComponent, "tw-terminal", never, { "lines": { "alias": "lines"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "prompt": { "alias": "prompt"; "required": false; "isSignal": true; }; "inputPlaceholder": { "alias": "inputPlaceholder"; "required": false; "isSignal": true; }; "showHeader": { "alias": "showHeader"; "required": false; "isSignal": true; }; "showInput": { "alias": "showInput"; "required": false; "isSignal": true; }; "showCursor": { "alias": "showCursor"; "required": false; "isSignal": true; }; "showTimestamps": { "alias": "showTimestamps"; "required": false; "isSignal": true; }; "showClearButton": { "alias": "showClearButton"; "required": false; "isSignal": true; }; "showCopyButton": { "alias": "showCopyButton"; "required": false; "isSignal": true; }; "autoScroll": { "alias": "autoScroll"; "required": false; "isSignal": true; }; "maxLines": { "alias": "maxLines"; "required": false; "isSignal": true; }; }, { "command": "command"; "clear": "clear"; "copy": "copy"; }, never, never, true, never>;
11296
+ }
11297
+
11298
+ /**
11299
+ * Log viewer component
11300
+ * Displays log entries with filtering and search
11301
+ *
11302
+ * @example
11303
+ * ```html
11304
+ * <tw-log-viewer [entries]="logs" (entrySelect)="onLogSelect($event)"></tw-log-viewer>
11305
+ * ```
11306
+ */
11307
+ declare class TwLogViewerComponent {
11308
+ readonly entries: _angular_core.InputSignal<LogEntry[]>;
11309
+ readonly showSource: _angular_core.InputSignal<boolean>;
11310
+ readonly entrySelect: _angular_core.OutputEmitterRef<LogEntry>;
11311
+ readonly clearLogs: _angular_core.OutputEmitterRef<void>;
11312
+ readonly exportClick: _angular_core.OutputEmitterRef<LogEntry[]>;
11313
+ protected readonly searchQuery: _angular_core.WritableSignal<string>;
11314
+ protected readonly activeLevels: _angular_core.WritableSignal<Set<"info" | "error" | "debug" | "warn" | "fatal">>;
11315
+ protected readonly autoScroll: _angular_core.WritableSignal<boolean>;
11316
+ protected readonly selectedEntry: _angular_core.WritableSignal<LogEntry | null>;
11317
+ protected readonly logLevels: ({
11318
+ value: "debug";
11319
+ label: string;
11320
+ } | {
11321
+ value: "info";
11322
+ label: string;
11323
+ } | {
11324
+ value: "warn";
11325
+ label: string;
11326
+ } | {
11327
+ value: "error";
11328
+ label: string;
11329
+ } | {
11330
+ value: "fatal";
11331
+ label: string;
11332
+ })[];
11333
+ protected readonly filteredEntries: _angular_core.Signal<LogEntry[]>;
11334
+ protected toggleLevelFilter(level: LogEntry['level']): void;
11335
+ protected onFilterChange(): void;
11336
+ protected selectEntry(entry: LogEntry): void;
11337
+ protected formatTimestamp(date: Date): string;
11338
+ protected getLevelFilterClasses(level: LogEntry['level']): string;
11339
+ protected getLevelBadgeClasses(level: LogEntry['level']): string;
11340
+ protected exportLogs(): void;
11341
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwLogViewerComponent, never>;
11342
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwLogViewerComponent, "tw-log-viewer", never, { "entries": { "alias": "entries"; "required": false; "isSignal": true; }; "showSource": { "alias": "showSource"; "required": false; "isSignal": true; }; }, { "entrySelect": "entrySelect"; "clearLogs": "clearLogs"; "exportClick": "exportClick"; }, never, never, true, never>;
11343
+ }
11344
+
11345
+ interface PropertyItem {
11346
+ key: string;
11347
+ value: unknown;
11348
+ type: 'string' | 'number' | 'boolean' | 'color' | 'date' | 'object' | 'array' | 'null';
11349
+ editable?: boolean;
11350
+ category?: string;
11351
+ }
11352
+ declare class TwPropertyInspectorComponent {
11353
+ readonly title: _angular_core.InputSignal<string>;
11354
+ readonly properties: _angular_core.InputSignal<PropertyItem[]>;
11355
+ readonly propertyChanged: _angular_core.OutputEmitterRef<{
11356
+ property: PropertyItem;
11357
+ value: unknown;
11358
+ }>;
11359
+ readonly refresh: _angular_core.OutputEmitterRef<void>;
11360
+ readonly objectExpanded: _angular_core.OutputEmitterRef<PropertyItem>;
11361
+ readonly valueCopied: _angular_core.OutputEmitterRef<PropertyItem>;
11362
+ readonly collapsedCategories: _angular_core.WritableSignal<Set<string>>;
11363
+ readonly categories: _angular_core.Signal<string[]>;
11364
+ getPropertiesByCategory(category: string): PropertyItem[];
11365
+ toggleCategory(category: string): void;
11366
+ updateProperty(property: PropertyItem, value: unknown): void;
11367
+ copyValue(property: PropertyItem): void;
11368
+ expandObject(property: PropertyItem): void;
11369
+ formatValue(value: unknown): string;
11370
+ getArrayLength(value: unknown): number;
11371
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwPropertyInspectorComponent, never>;
11372
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwPropertyInspectorComponent, "tw-property-inspector", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "properties": { "alias": "properties"; "required": false; "isSignal": true; }; }, { "propertyChanged": "propertyChanged"; "refresh": "refresh"; "objectExpanded": "objectExpanded"; "valueCopied": "valueCopied"; }, never, never, true, never>;
11373
+ }
11374
+
11375
+ type CodeLanguage = 'json' | 'javascript' | 'typescript' | 'html' | 'css' | 'xml' | 'markdown' | 'text';
11376
+ declare class TwCodeViewerComponent {
11377
+ readonly code: _angular_core.InputSignal<string>;
11378
+ readonly language: _angular_core.InputSignal<CodeLanguage>;
11379
+ readonly filename: _angular_core.InputSignal<string>;
11380
+ readonly showLineNumbers: _angular_core.InputSignal<boolean>;
11381
+ readonly showSearch: _angular_core.InputSignal<boolean>;
11382
+ readonly showFooter: _angular_core.InputSignal<boolean>;
11383
+ readonly highlightLines: _angular_core.InputSignal<number[]>;
11384
+ readonly copied: _angular_core.OutputEmitterRef<void>;
11385
+ readonly wordWrap: _angular_core.WritableSignal<boolean>;
11386
+ readonly searchQuery: _angular_core.WritableSignal<string>;
11387
+ readonly currentMatchIndex: _angular_core.WritableSignal<number>;
11388
+ readonly lines: _angular_core.Signal<string[]>;
11389
+ readonly highlightedLines: _angular_core.Signal<Set<number>>;
11390
+ readonly byteSize: _angular_core.Signal<string>;
11391
+ readonly searchMatches: _angular_core.Signal<number[]>;
11392
+ constructor();
11393
+ isMatchLine(lineIndex: number): boolean;
11394
+ nextMatch(): void;
11395
+ previousMatch(): void;
11396
+ toggleWordWrap(): void;
11397
+ copyCode(): void;
11398
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwCodeViewerComponent, never>;
11399
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwCodeViewerComponent, "tw-code-viewer", never, { "code": { "alias": "code"; "required": false; "isSignal": true; }; "language": { "alias": "language"; "required": false; "isSignal": true; }; "filename": { "alias": "filename"; "required": false; "isSignal": true; }; "showLineNumbers": { "alias": "showLineNumbers"; "required": false; "isSignal": true; }; "showSearch": { "alias": "showSearch"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; "highlightLines": { "alias": "highlightLines"; "required": false; "isSignal": true; }; }, { "copied": "copied"; }, never, never, true, never>;
11400
+ }
11401
+
11402
+ /**
11403
+ * Application status bar component
11404
+ * Displays status information at the bottom of the window
11405
+ *
11406
+ * @example
11407
+ * ```html
11408
+ * <tw-status-bar [items]="statusItems" (itemClick)="onStatusClick($event)"></tw-status-bar>
11409
+ * ```
11410
+ */
11411
+ declare class TwStatusBarComponent {
11412
+ readonly items: _angular_core.InputSignal<StatusBarItem[]>;
11413
+ readonly variant: _angular_core.InputSignal<"default" | "minimal">;
11414
+ readonly itemClick: _angular_core.OutputEmitterRef<StatusBarItem>;
11415
+ protected readonly leftItems: _angular_core.Signal<StatusBarItem[]>;
11416
+ protected readonly centerItems: _angular_core.Signal<StatusBarItem[]>;
11417
+ protected readonly rightItems: _angular_core.Signal<StatusBarItem[]>;
11418
+ protected onItemClick(item: StatusBarItem): void;
11419
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwStatusBarComponent, never>;
11420
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwStatusBarComponent, "tw-status-bar", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
11421
+ }
11422
+
11423
+ /**
11424
+ * Toolbar / Action bar component
11425
+ * Displays action buttons with icons and tooltips
11426
+ *
11427
+ * @example
11428
+ * ```html
11429
+ * <tw-toolbar [items]="toolbarItems" (itemClick)="onToolbarAction($event)"></tw-toolbar>
11430
+ * ```
11431
+ */
11432
+ declare class TwToolbarComponent {
11433
+ readonly items: _angular_core.InputSignal<ToolbarItem[]>;
11434
+ readonly variant: _angular_core.InputSignal<ToolbarVariant>;
11435
+ readonly position: _angular_core.InputSignal<ToolbarPosition>;
11436
+ readonly showLabels: _angular_core.InputSignal<boolean>;
11437
+ readonly itemClick: _angular_core.OutputEmitterRef<ToolbarItem>;
11438
+ protected openDropdownId: string | null;
11439
+ protected readonly containerClasses: _angular_core.Signal<string>;
11440
+ protected readonly separatorClasses: _angular_core.Signal<"w-full h-px my-1 bg-gray-300 dark:bg-gray-600" | "w-px h-6 mx-1 bg-gray-300 dark:bg-gray-600">;
11441
+ protected getButtonClasses(item: ToolbarItem): string;
11442
+ protected toggleDropdown(item: ToolbarItem): void;
11443
+ protected onItemClick(item: ToolbarItem): void;
11444
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwToolbarComponent, never>;
11445
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwToolbarComponent, "tw-toolbar", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "showLabels": { "alias": "showLabels"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, ["[toolbarOverflow]"], true, never>;
11446
+ }
11447
+
11448
+ type ActivityIndicatorVariant = 'spinner' | 'dots' | 'pulse' | 'bars' | 'ring';
11449
+ type ActivityIndicatorSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
11450
+ declare class TwActivityIndicatorComponent {
11451
+ readonly variant: _angular_core.InputSignal<ActivityIndicatorVariant>;
11452
+ readonly size: _angular_core.InputSignal<ActivityIndicatorSize>;
11453
+ readonly color: _angular_core.InputSignal<string>;
11454
+ readonly label: _angular_core.InputSignal<string>;
11455
+ readonly inline: _angular_core.InputSignal<boolean>;
11456
+ readonly containerClasses: _angular_core.Signal<string>;
11457
+ readonly sizeClasses: _angular_core.Signal<string>;
11458
+ readonly dotSizeClasses: _angular_core.Signal<string>;
11459
+ barClasses(index: number): string;
11460
+ readonly labelClasses: _angular_core.Signal<string>;
11461
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwActivityIndicatorComponent, never>;
11462
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwActivityIndicatorComponent, "tw-activity-indicator", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "inline": { "alias": "inline"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11463
+ }
11464
+
11465
+ type ConnectionState = 'connected' | 'connecting' | 'disconnected' | 'error' | 'syncing' | 'synced';
11466
+ declare class TwConnectionStatusComponent {
11467
+ readonly state: _angular_core.InputSignal<ConnectionState>;
11468
+ readonly showLabel: _angular_core.InputSignal<boolean>;
11469
+ readonly showLastSynced: _angular_core.InputSignal<boolean>;
11470
+ readonly showRetry: _angular_core.InputSignal<boolean>;
11471
+ readonly lastSynced: _angular_core.InputSignal<Date | null>;
11472
+ readonly compact: _angular_core.InputSignal<boolean>;
11473
+ readonly customLabels: _angular_core.InputSignal<Partial<Record<ConnectionState, string>>>;
11474
+ readonly statusClicked: _angular_core.OutputEmitterRef<void>;
11475
+ readonly retryClicked: _angular_core.OutputEmitterRef<void>;
11476
+ private readonly defaultLabels;
11477
+ readonly statusLabel: _angular_core.Signal<string>;
11478
+ readonly ariaLabel: _angular_core.Signal<string>;
11479
+ readonly containerClasses: _angular_core.Signal<string>;
11480
+ readonly dotClasses: _angular_core.Signal<string>;
11481
+ readonly pulseClasses: _angular_core.Signal<string>;
11482
+ readonly isPulsing: _angular_core.Signal<boolean>;
11483
+ readonly labelClasses: _angular_core.Signal<string>;
11484
+ formatLastSynced(): string;
11485
+ retry(event: MouseEvent): void;
11486
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwConnectionStatusComponent, never>;
11487
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwConnectionStatusComponent, "tw-connection-status", never, { "state": { "alias": "state"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "showLastSynced": { "alias": "showLastSynced"; "required": false; "isSignal": true; }; "showRetry": { "alias": "showRetry"; "required": false; "isSignal": true; }; "lastSynced": { "alias": "lastSynced"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "customLabels": { "alias": "customLabels"; "required": false; "isSignal": true; }; }, { "statusClicked": "statusClicked"; "retryClicked": "retryClicked"; }, never, never, true, never>;
11488
+ }
11489
+
11490
+ type SplitDirection = 'horizontal' | 'vertical';
11491
+ interface PanelConfig {
11492
+ id: string;
11493
+ minSize?: number;
11494
+ maxSize?: number;
11495
+ defaultSize?: number;
11496
+ collapsible?: boolean;
11497
+ collapsed?: boolean;
11498
+ }
11499
+ declare class TwResizablePanelsComponent {
11500
+ private readonly document;
11501
+ private readonly ngZone;
11502
+ private readonly destroyRef;
11503
+ readonly direction: _angular_core.InputSignal<SplitDirection>;
11504
+ readonly defaultSplit: _angular_core.InputSignal<number>;
11505
+ readonly minSize: _angular_core.InputSignal<number>;
11506
+ readonly maxSize: _angular_core.InputSignal<number>;
11507
+ readonly panel1Config: _angular_core.InputSignal<PanelConfig | null>;
11508
+ readonly panel2Config: _angular_core.InputSignal<PanelConfig | null>;
11509
+ readonly showCollapseButtons: _angular_core.InputSignal<boolean>;
11510
+ readonly handleSize: _angular_core.InputSignal<number>;
11511
+ readonly sizeChanged: _angular_core.OutputEmitterRef<{
11512
+ panel1: number;
11513
+ panel2: number;
11514
+ }>;
11515
+ readonly panel1CollapseChanged: _angular_core.OutputEmitterRef<boolean>;
11516
+ readonly panel2CollapseChanged: _angular_core.OutputEmitterRef<boolean>;
11517
+ readonly container: _angular_core.Signal<ElementRef<HTMLDivElement> | undefined>;
11518
+ readonly panel1Size: _angular_core.WritableSignal<number>;
11519
+ readonly panel2Size: _angular_core.Signal<number>;
11520
+ readonly panel1Collapsed: _angular_core.WritableSignal<boolean>;
11521
+ readonly panel2Collapsed: _angular_core.WritableSignal<boolean>;
11522
+ readonly isResizing: _angular_core.WritableSignal<boolean>;
11523
+ constructor();
11524
+ readonly containerClasses: _angular_core.Signal<string>;
11525
+ panelClasses(index: number): string;
11526
+ readonly handleClasses: _angular_core.Signal<string>;
11527
+ readonly handleIndicatorClasses: _angular_core.Signal<"absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-0.5 h-8 bg-slate-400 dark:bg-slate-500 rounded-full group-hover:bg-white" | "absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-8 h-0.5 bg-slate-400 dark:bg-slate-500 rounded-full group-hover:bg-white">;
11528
+ readonly collapseButtonsClasses: _angular_core.Signal<string>;
11529
+ startResize(event: MouseEvent | TouchEvent): void;
11530
+ resetSize(): void;
11531
+ togglePanel1Collapse(): void;
11532
+ togglePanel2Collapse(): void;
11533
+ private getEventPosition;
11534
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwResizablePanelsComponent, never>;
11535
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwResizablePanelsComponent, "tw-resizable-panels", never, { "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "defaultSplit": { "alias": "defaultSplit"; "required": false; "isSignal": true; }; "minSize": { "alias": "minSize"; "required": false; "isSignal": true; }; "maxSize": { "alias": "maxSize"; "required": false; "isSignal": true; }; "panel1Config": { "alias": "panel1Config"; "required": false; "isSignal": true; }; "panel2Config": { "alias": "panel2Config"; "required": false; "isSignal": true; }; "showCollapseButtons": { "alias": "showCollapseButtons"; "required": false; "isSignal": true; }; "handleSize": { "alias": "handleSize"; "required": false; "isSignal": true; }; }, { "sizeChanged": "sizeChanged"; "panel1CollapseChanged": "panel1CollapseChanged"; "panel2CollapseChanged": "panel2CollapseChanged"; }, never, ["[panel1]", "[panel2]"], true, never>;
11536
+ }
11537
+
11538
+ type ShortcutDisplayVariant = 'default' | 'compact' | 'inline';
11539
+ type ShortcutDisplayPlatform = 'mac' | 'windows' | 'linux' | 'auto';
11540
+ declare class TwShortcutDisplayComponent {
11541
+ readonly keys: _angular_core.InputSignal<string[]>;
11542
+ readonly shortcut: _angular_core.InputSignal<string>;
11543
+ readonly variant: _angular_core.InputSignal<ShortcutDisplayVariant>;
11544
+ readonly platform: _angular_core.InputSignal<ShortcutDisplayPlatform>;
11545
+ readonly separator: _angular_core.InputSignal<string>;
11546
+ readonly showSeparator: _angular_core.InputSignal<boolean>;
11547
+ private readonly keySymbols;
11548
+ private readonly detectedPlatform;
11549
+ readonly formattedKeys: _angular_core.Signal<string[]>;
11550
+ readonly containerClasses: _angular_core.Signal<"inline-flex items-center gap-1" | "inline-flex items-center gap-0.5" | "inline-flex items-center gap-0">;
11551
+ readonly keyClasses: _angular_core.Signal<"inline-flex items-center justify-center font-mono px-1 py-0.5 text-xs bg-slate-100 dark:bg-slate-800 rounded" | "inline-flex items-center justify-center font-mono px-1 text-xs text-slate-500" | "inline-flex items-center justify-center font-mono px-2 py-1 text-xs bg-white dark:bg-slate-800 border border-slate-300 dark:border-slate-600 rounded shadow-sm">;
11552
+ readonly separatorClasses: _angular_core.Signal<"text-slate-400 text-xs" | "text-slate-400 text-xs mx-0.5">;
11553
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwShortcutDisplayComponent, never>;
11554
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwShortcutDisplayComponent, "tw-shortcut-display", never, { "keys": { "alias": "keys"; "required": false; "isSignal": true; }; "shortcut": { "alias": "shortcut"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "platform": { "alias": "platform"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "showSeparator": { "alias": "showSeparator"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11555
+ }
11556
+
11557
+ /**
11558
+ * Storage service for persistent data
11559
+ * Supports local storage, secure storage, and file-based storage
11560
+ */
11561
+ declare class NativeStorageService {
11562
+ private readonly platformService;
11563
+ private readonly _isInitialized;
11564
+ readonly isInitialized: _angular_core.Signal<boolean>;
11565
+ get<T>(key: string, defaultValue?: T): T | null;
11566
+ set<T>(key: string, value: T, options?: StorageOptions): void;
11567
+ remove(key: string): void;
11568
+ clear(): void;
11569
+ keys(): string[];
11570
+ has(key: string): boolean;
11571
+ getSecure<T>(key: string): Promise<T | null>;
11572
+ setSecure<T>(key: string, value: T): Promise<void>;
11573
+ removeSecure(key: string): Promise<void>;
11574
+ getSession<T>(key: string, defaultValue?: T): T | null;
11575
+ setSession<T>(key: string, value: T): void;
11576
+ removeSession(key: string): void;
11577
+ clearSession(): void;
11578
+ private dbPromise;
11579
+ private getDB;
11580
+ getIndexedDB<T>(key: string): Promise<T | null>;
11581
+ setIndexedDB<T>(key: string, value: T): Promise<void>;
11582
+ removeIndexedDB(key: string): Promise<void>;
11583
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NativeStorageService, never>;
11584
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<NativeStorageService>;
11585
+ }
11586
+
11587
+ type IpcCallback<T> = (data: T) => void;
11588
+ /**
11589
+ * IPC (Inter-Process Communication) service
11590
+ * Handles communication between renderer and main process in Tauri/Electron
11591
+ */
11592
+ declare class NativeIpcService {
11593
+ private readonly platformService;
11594
+ private readonly ngZone;
11595
+ private listeners;
11596
+ private unlistenFns;
11597
+ private readonly _isConnected;
11598
+ readonly isConnected: _angular_core.Signal<boolean>;
11599
+ constructor();
11600
+ private init;
11601
+ /**
11602
+ * Invoke a command in the main process and get a response
11603
+ */
11604
+ invoke<T, R = unknown>(command: string, payload?: T): Promise<IpcResponse<R>>;
11605
+ /**
11606
+ * Send a message to the main process (fire and forget)
11607
+ */
11608
+ send<T>(channel: string, payload?: T): Promise<void>;
11609
+ /**
11610
+ * Listen for messages from the main process
11611
+ */
11612
+ on<T>(channel: string, callback: IpcCallback<T>): Promise<() => void>;
11613
+ /**
11614
+ * Listen for a message once
11615
+ */
11616
+ once<T>(channel: string, callback: IpcCallback<T>): Promise<void>;
11617
+ /**
11618
+ * Remove listener for a channel
11619
+ */
11620
+ off(channel: string, callback?: IpcCallback<unknown>): void;
11621
+ /**
11622
+ * Emit a custom event (works in all environments)
11623
+ */
11624
+ emit<T>(channel: string, payload?: T): void;
11625
+ /**
11626
+ * Clean up all listeners
11627
+ */
11628
+ destroy(): void;
11629
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NativeIpcService, never>;
11630
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<NativeIpcService>;
11631
+ }
11632
+
11633
+ interface NativeFileFilter {
11634
+ name: string;
11635
+ extensions: string[];
11636
+ }
11637
+ interface NativeOpenFileOptions {
11638
+ title?: string;
11639
+ defaultPath?: string;
11640
+ filters?: NativeFileFilter[];
11641
+ multiple?: boolean;
11642
+ directory?: boolean;
11643
+ }
11644
+ interface NativeSaveFileOptions {
11645
+ title?: string;
11646
+ defaultPath?: string;
11647
+ filters?: NativeFileFilter[];
11648
+ }
11649
+ interface FilePickerResult {
11650
+ path: string;
11651
+ name: string;
11652
+ size?: number;
11653
+ type?: string;
11654
+ }
11655
+ declare class FilePickerService {
11656
+ private readonly platformService;
11657
+ openFile(options?: NativeOpenFileOptions): Promise<FilePickerResult[] | null>;
11658
+ saveFile(options?: NativeSaveFileOptions): Promise<string | null>;
11659
+ selectDirectory(options?: NativeOpenFileOptions): Promise<string | null>;
11660
+ private openFileTauri;
11661
+ private openFileElectron;
11662
+ private openFileWeb;
11663
+ private saveFileTauri;
11664
+ private saveFileElectron;
11665
+ private saveFileWeb;
11666
+ private selectDirectoryTauri;
11667
+ private selectDirectoryElectron;
11668
+ private selectDirectoryWeb;
11669
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilePickerService, never>;
11670
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<FilePickerService>;
11671
+ }
11672
+
11673
+ interface TrayConfig {
11674
+ icon: string;
11675
+ tooltip?: string;
11676
+ title?: string;
11677
+ menu?: NativeMenuItem[];
11678
+ }
11679
+ declare class SystemTrayService {
11680
+ private readonly platformService;
11681
+ readonly isSupported: _angular_core.WritableSignal<boolean>;
11682
+ readonly isVisible: _angular_core.WritableSignal<boolean>;
11683
+ private trayInstance;
11684
+ constructor();
11685
+ private checkSupport;
11686
+ create(config: TrayConfig): Promise<boolean>;
11687
+ setIcon(icon: string): Promise<void>;
11688
+ setTooltip(tooltip: string): Promise<void>;
11689
+ setMenu(menu: NativeMenuItem[]): Promise<void>;
11690
+ destroy(): Promise<void>;
11691
+ private createTauriTray;
11692
+ private createElectronTray;
11693
+ private buildTauriMenu;
11694
+ private setTauriMenu;
11695
+ private convertMenuForElectron;
11696
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SystemTrayService, never>;
11697
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<SystemTrayService>;
11698
+ }
11699
+
11700
+ interface NativeNotificationOptions {
11701
+ title: string;
11702
+ body?: string;
11703
+ icon?: string;
11704
+ sound?: boolean;
11705
+ silent?: boolean;
11706
+ timeout?: number;
11707
+ urgency?: 'low' | 'normal' | 'critical';
11708
+ }
11709
+ interface NativeNotificationAction {
11710
+ id: string;
11711
+ title: string;
11712
+ }
11713
+ declare class NativeNotificationsService {
11714
+ private readonly platformService;
11715
+ readonly isSupported: _angular_core.WritableSignal<boolean>;
11716
+ readonly permissionGranted: _angular_core.WritableSignal<boolean>;
11717
+ constructor();
11718
+ private checkSupport;
11719
+ requestPermission(): Promise<boolean>;
11720
+ show(options: NativeNotificationOptions): Promise<string | null>;
11721
+ setBadgeCount(count: number): Promise<void>;
11722
+ clearBadge(): Promise<void>;
11723
+ private showTauriNotification;
11724
+ private showElectronNotification;
11725
+ private showWebNotification;
11726
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NativeNotificationsService, never>;
11727
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<NativeNotificationsService>;
11728
+ }
11729
+
11730
+ declare class DockService {
11731
+ private readonly platformService;
11732
+ readonly isSupported: _angular_core.WritableSignal<boolean>;
11733
+ constructor();
11734
+ private checkSupport;
11735
+ /**
11736
+ * Set the dock badge (macOS) or taskbar overlay (Windows)
11737
+ */
11738
+ setBadge(text: string): Promise<void>;
11739
+ /**
11740
+ * Clear the dock badge
11741
+ */
11742
+ clearBadge(): Promise<void>;
11743
+ /**
11744
+ * Set progress on the dock icon (macOS) or taskbar (Windows)
11745
+ */
11746
+ setProgress(progress: number): Promise<void>;
11747
+ /**
11748
+ * Clear progress indicator
11749
+ */
11750
+ clearProgress(): Promise<void>;
11751
+ /**
11752
+ * Bounce the dock icon (macOS only)
11753
+ */
11754
+ bounce(type?: 'informational' | 'critical'): Promise<number>;
11755
+ /**
11756
+ * Cancel a dock bounce (macOS only)
11757
+ */
11758
+ cancelBounce(id: number): Promise<void>;
11759
+ /**
11760
+ * Set the dock menu (macOS only)
11761
+ */
11762
+ setMenu(items: NativeMenuItem[]): Promise<void>;
11763
+ /**
11764
+ * Show the dock icon (macOS only - if hidden)
11765
+ */
11766
+ show(): Promise<void>;
11767
+ /**
11768
+ * Hide the dock icon (macOS only)
11769
+ */
11770
+ hide(): Promise<void>;
11771
+ /**
11772
+ * Flash the window in the taskbar (Windows only)
11773
+ */
11774
+ flashFrame(flash: boolean): Promise<void>;
11775
+ private convertMenuForElectron;
11776
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DockService, never>;
11777
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<DockService>;
11778
+ }
11779
+
11780
+ interface UpdateInfo {
11781
+ currentVersion: string;
11782
+ version: string;
11783
+ releaseDate?: string;
11784
+ releaseNotes?: string;
11785
+ downloadUrl?: string;
11786
+ }
11787
+ interface UpdateProgress {
11788
+ percent: number;
11789
+ bytesDownloaded: number;
11790
+ bytesTotal: number;
11791
+ }
11792
+ type UpdateStatus = 'idle' | 'checking' | 'available' | 'not-available' | 'downloading' | 'downloaded' | 'error';
11793
+ declare class UpdateService {
11794
+ private readonly platformService;
11795
+ readonly status: _angular_core.WritableSignal<UpdateStatus>;
11796
+ readonly updateInfo: _angular_core.WritableSignal<UpdateInfo | null>;
11797
+ readonly progress: _angular_core.WritableSignal<UpdateProgress | null>;
11798
+ readonly error: _angular_core.WritableSignal<string | null>;
11799
+ readonly isSupported: _angular_core.WritableSignal<boolean>;
11800
+ private readonly updateAvailable$;
11801
+ private readonly downloadProgress$;
11802
+ private readonly updateDownloaded$;
11803
+ private readonly updateError$;
11804
+ constructor();
11805
+ private checkSupport;
11806
+ private setupListeners;
11807
+ get onUpdateAvailable(): Observable<UpdateInfo>;
11808
+ get onDownloadProgress(): Observable<UpdateProgress>;
11809
+ get onUpdateDownloaded(): Observable<void>;
11810
+ get onError(): Observable<string>;
11811
+ checkForUpdates(): Promise<UpdateInfo | null>;
11812
+ downloadUpdate(): Promise<void>;
11813
+ installUpdate(): Promise<void>;
11814
+ private setupElectronListeners;
11815
+ private checkTauriUpdates;
11816
+ private checkElectronUpdates;
11817
+ private downloadTauriUpdate;
11818
+ private downloadElectronUpdate;
11819
+ private installTauriUpdate;
11820
+ private installElectronUpdate;
11821
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<UpdateService, never>;
11822
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<UpdateService>;
11823
+ }
11824
+
11825
+ /**
11826
+ * Directive to make elements draggable
11827
+ *
11828
+ * @example
11829
+ * ```html
11830
+ * <div twDraggable [dragData]="{ type: 'file', data: file }">Drag me</div>
11831
+ * ```
11832
+ */
11833
+ declare class TwDraggableDirective implements OnInit, OnDestroy {
11834
+ private readonly elementRef;
11835
+ readonly twDraggable: _angular_core.InputSignal<boolean | "">;
11836
+ readonly dragData: _angular_core.InputSignal<DragData>;
11837
+ readonly dragImage: _angular_core.InputSignal<HTMLElement | null>;
11838
+ readonly dragImageOffsetX: _angular_core.InputSignal<number>;
11839
+ readonly dragImageOffsetY: _angular_core.InputSignal<number>;
11840
+ readonly dragEffectAllowed: _angular_core.InputSignal<"link" | "copy" | "none" | "all" | "move" | "copyLink" | "copyMove" | "linkMove" | "uninitialized">;
11841
+ readonly dragStarted: _angular_core.OutputEmitterRef<DragEvent>;
11842
+ readonly dragEnded: _angular_core.OutputEmitterRef<DragEvent>;
11843
+ protected get isDraggable(): boolean;
11844
+ protected readonly baseClass = true;
11845
+ protected get cursorClass(): boolean;
11846
+ ngOnInit(): void;
11847
+ ngOnDestroy(): void;
11848
+ protected onDragStart(event: DragEvent): void;
11849
+ protected onDragEnd(event: DragEvent): void;
11850
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwDraggableDirective, never>;
11851
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TwDraggableDirective, "[twDraggable]", never, { "twDraggable": { "alias": "twDraggable"; "required": false; "isSignal": true; }; "dragData": { "alias": "dragData"; "required": false; "isSignal": true; }; "dragImage": { "alias": "dragImage"; "required": false; "isSignal": true; }; "dragImageOffsetX": { "alias": "dragImageOffsetX"; "required": false; "isSignal": true; }; "dragImageOffsetY": { "alias": "dragImageOffsetY"; "required": false; "isSignal": true; }; "dragEffectAllowed": { "alias": "dragEffectAllowed"; "required": false; "isSignal": true; }; }, { "dragStarted": "dragStarted"; "dragEnded": "dragEnded"; }, never, never, true, never>;
11852
+ }
11853
+
11854
+ /**
11855
+ * Directive to define drop target areas
11856
+ *
11857
+ * @example
11858
+ * ```html
11859
+ * <div twDropZone [acceptTypes]="['file', 'folder']" (dropped)="onDrop($event)">
11860
+ * Drop files here
11861
+ * </div>
11862
+ * ```
11863
+ */
11864
+ declare class TwDropZoneDirective {
11865
+ private readonly elementRef;
11866
+ readonly twDropZone: _angular_core.InputSignal<boolean | "">;
11867
+ readonly acceptTypes: _angular_core.InputSignal<string[]>;
11868
+ readonly dropEffect: _angular_core.InputSignal<"link" | "copy" | "none" | "move">;
11869
+ readonly dragEntered: _angular_core.OutputEmitterRef<DragEvent>;
11870
+ readonly dragLeft: _angular_core.OutputEmitterRef<DragEvent>;
11871
+ readonly dragOver: _angular_core.OutputEmitterRef<DragEvent>;
11872
+ readonly dropped: _angular_core.OutputEmitterRef<DropEvent>;
11873
+ protected readonly isDragOver: _angular_core.WritableSignal<boolean>;
11874
+ private dragEnterCount;
11875
+ protected readonly baseClass = true;
11876
+ protected get activeClass(): boolean;
11877
+ protected get isEnabled(): boolean;
11878
+ protected onDragEnter(event: DragEvent): void;
11879
+ protected onDragLeave(event: DragEvent): void;
11880
+ protected onDragOver(event: DragEvent): void;
11881
+ protected onDrop(event: DragEvent): void;
11882
+ private validateDrag;
11883
+ private validateType;
11884
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwDropZoneDirective, never>;
11885
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TwDropZoneDirective, "[twDropZone]", never, { "twDropZone": { "alias": "twDropZone"; "required": false; "isSignal": true; }; "acceptTypes": { "alias": "acceptTypes"; "required": false; "isSignal": true; }; "dropEffect": { "alias": "dropEffect"; "required": false; "isSignal": true; }; }, { "dragEntered": "dragEntered"; "dragLeft": "dragLeft"; "dragOver": "dragOver"; "dropped": "dropped"; }, never, never, true, never>;
11886
+ }
11887
+
11888
+ /**
11889
+ * Directive for binding keyboard shortcuts to actions
11890
+ *
11891
+ * @example
11892
+ * ```html
11893
+ * <button twShortcut="ctrl+s" (shortcutTriggered)="onSave()">Save</button>
11894
+ * <div twShortcut="ctrl+shift+p" [shortcutGlobal]="true" (shortcutTriggered)="openPalette()"></div>
11895
+ * ```
11896
+ */
11897
+ declare class TwShortcutDirective implements OnInit, OnDestroy {
11898
+ private readonly platformService;
11899
+ private readonly ngZone;
11900
+ readonly twShortcut: _angular_core.InputSignal<string>;
11901
+ readonly shortcutGlobal: _angular_core.InputSignal<boolean>;
11902
+ readonly shortcutPreventDefault: _angular_core.InputSignal<boolean>;
11903
+ readonly shortcutEnabled: _angular_core.InputSignal<boolean>;
11904
+ readonly shortcutTriggered: _angular_core.OutputEmitterRef<KeyboardEvent>;
11905
+ private keydownHandler;
11906
+ ngOnInit(): void;
11907
+ ngOnDestroy(): void;
11908
+ private handleKeydown;
11909
+ private parseShortcut;
11910
+ private normalizeKey;
11911
+ private matchesShortcut;
11912
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwShortcutDirective, never>;
11913
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TwShortcutDirective, "[twShortcut]", never, { "twShortcut": { "alias": "twShortcut"; "required": true; "isSignal": true; }; "shortcutGlobal": { "alias": "shortcutGlobal"; "required": false; "isSignal": true; }; "shortcutPreventDefault": { "alias": "shortcutPreventDefault"; "required": false; "isSignal": true; }; "shortcutEnabled": { "alias": "shortcutEnabled"; "required": false; "isSignal": true; }; }, { "shortcutTriggered": "shortcutTriggered"; }, never, never, true, never>;
11914
+ }
11915
+
11916
+ declare const TW_NATIVE_COMPONENTS: readonly [typeof TwTitleBarComponent, typeof TwWindowControlsComponent, typeof TwMenuBarComponent, typeof TwNativeContextMenuComponent, typeof TwSidebarNavComponent, typeof TwFileTreeComponent, typeof TwBreadcrumbsNavComponent, typeof TwTabBarComponent, typeof TwCommandPaletteComponent, typeof TwSearchBarComponent, typeof TwQuickSwitcherComponent, typeof TwSettingsPanelComponent, typeof TwPreferencesDialogComponent, typeof TwShortcutsEditorComponent, typeof TwThemeSelectorComponent, typeof TwAlertDialogComponent, typeof TwNativeConfirmDialogComponent, typeof TwPromptDialogComponent, typeof TwAboutDialogComponent, typeof TwUpdateDialogComponent, typeof TwOnboardingWizardComponent, typeof TwTerminalComponent, typeof TwLogViewerComponent, typeof TwPropertyInspectorComponent, typeof TwCodeViewerComponent, typeof TwStatusBarComponent, typeof TwToolbarComponent, typeof TwActivityIndicatorComponent, typeof TwConnectionStatusComponent, typeof TwResizablePanelsComponent, typeof TwShortcutDisplayComponent];
11917
+ declare const TW_NATIVE_DIRECTIVES: readonly [typeof TwDraggableDirective, typeof TwDropZoneDirective, typeof TwShortcutDirective];
11918
+
10225
11919
  declare const TW_AVATAR_COMPONENTS: readonly [typeof TwAvatarComponent, typeof TwAvatarGroupComponent];
10226
11920
  declare const TW_SPINNER_COMPONENTS: readonly [typeof TwSpinnerComponent, typeof TwLoadingOverlayComponent];
10227
11921
  declare const TW_PROGRESS_COMPONENTS: readonly [typeof TwProgressComponent, typeof TwProgressCircularComponent];
@@ -10275,7 +11969,7 @@ declare const TW_OVERLAY_COMPONENTS: readonly [typeof TwOverlayComponent];
10275
11969
  * export class MyComponent {}
10276
11970
  * ```
10277
11971
  */
10278
- declare const TW_ALL: readonly [typeof _pegasusheavy_ngx_tailwindcss.TwRippleDirective, typeof _pegasusheavy_ngx_tailwindcss.TwTooltipDirective, typeof _pegasusheavy_ngx_tailwindcss.TwClickOutsideDirective, typeof _pegasusheavy_ngx_tailwindcss.TwFocusTrapDirective, typeof _pegasusheavy_ngx_tailwindcss.TwClassDirective, typeof _pegasusheavy_ngx_tailwindcss.TwVariantDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAutoFocusDirective, typeof _pegasusheavy_ngx_tailwindcss.TwInViewDirective, typeof _pegasusheavy_ngx_tailwindcss.TwLongPressDirective, typeof _pegasusheavy_ngx_tailwindcss.TwDebounceClickDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCopyClipboardDirective, typeof _pegasusheavy_ngx_tailwindcss.TwKeyboardShortcutDirective, typeof _pegasusheavy_ngx_tailwindcss.TwSwipeDirective, typeof _pegasusheavy_ngx_tailwindcss.TwResizeObserverDirective, typeof _pegasusheavy_ngx_tailwindcss.TwLazyImageDirective, typeof _pegasusheavy_ngx_tailwindcss.TwScrollToDirective, typeof _pegasusheavy_ngx_tailwindcss.TwScrollSectionDirective, typeof _pegasusheavy_ngx_tailwindcss.TwHoverClassDirective, typeof _pegasusheavy_ngx_tailwindcss.TwTrapScrollDirective, typeof _pegasusheavy_ngx_tailwindcss.TwSrOnlyDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAnnounceDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaExpandedDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaSelectedDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaCheckedDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaPressedDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaDisabledDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaHiddenDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaLiveDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaCurrentDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaBusyDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaDescribedbyDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaLabelledbyDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaLabelDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaValueDirective, typeof _pegasusheavy_ngx_tailwindcss.TwRoleDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaModalDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaHaspopupDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaOwnsDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaActivedescendantDirective, typeof _pegasusheavy_ngx_tailwindcss.TwButtonComponent, typeof _pegasusheavy_ngx_tailwindcss.TwButtonLinkComponent, typeof _pegasusheavy_ngx_tailwindcss.TwInputComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTextareaComponent, typeof _pegasusheavy_ngx_tailwindcss.TwLabelDirective, typeof _pegasusheavy_ngx_tailwindcss.TwHintDirective, typeof _pegasusheavy_ngx_tailwindcss.TwErrorDirective, typeof _pegasusheavy_ngx_tailwindcss.TwInputAffixDirective, typeof TwCheckboxComponent, typeof TwRadioButtonComponent, typeof TwRadioGroupComponent, typeof TwSwitchComponent, typeof TwSelectComponent, typeof TwMultiSelectComponent, typeof TwSliderComponent, typeof TwRatingComponent, typeof TwChipComponent, typeof TwChipsComponent, typeof _pegasusheavy_ngx_tailwindcss.TwCardComponent, typeof _pegasusheavy_ngx_tailwindcss.TwCardHorizontalComponent, typeof _pegasusheavy_ngx_tailwindcss.TwCardHeaderDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCardTitleDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCardSubtitleDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCardBodyDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCardFooterDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCardMediaDirective, typeof TwAccordionComponent, typeof TwAccordionItemComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTabsComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTabPanelComponent, typeof TwDividerComponent, typeof TwContainerComponent, typeof TwStackComponent, typeof TwVStackComponent, typeof TwHStackComponent, typeof TwGridComponent, typeof TwSimpleGridComponent, typeof TwAspectRatioComponent, typeof TwCenterComponent, typeof TwSquareComponent, typeof TwCircleComponent, typeof TwSpacerComponent, typeof TwWrapComponent, typeof TwSplitterComponent, typeof TwSplitterPaneComponent, typeof TwStickyComponent, typeof TwScrollAreaComponent, typeof TwColumnsComponent, typeof TwBleedComponent, typeof TwOverlayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwBadgeComponent, typeof _pegasusheavy_ngx_tailwindcss.TwBadgeGroupComponent, typeof TwAvatarComponent, typeof TwAvatarGroupComponent, typeof TwTableComponent, typeof TwDatatablesComponent, typeof TwTreeComponent, typeof TwTimelineComponent, typeof TwBreadcrumbComponent, typeof TwPaginationComponent, typeof TwStepsComponent, typeof TwMenuComponent, typeof TwContextMenuComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAlertComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAlertTitleComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAlertDescriptionComponent, typeof TwToastComponent, typeof TwToastContainerComponent, typeof TwSpinnerComponent, typeof TwLoadingOverlayComponent, typeof TwProgressComponent, typeof TwProgressCircularComponent, typeof TwSkeletonComponent, typeof TwSkeletonTextComponent, typeof TwSkeletonCardComponent, typeof TwSkeletonTableComponent, typeof _pegasusheavy_ngx_tailwindcss.TwModalComponent, typeof _pegasusheavy_ngx_tailwindcss.TwModalHeaderComponent, typeof _pegasusheavy_ngx_tailwindcss.TwModalTitleComponent, typeof _pegasusheavy_ngx_tailwindcss.TwModalBodyComponent, typeof _pegasusheavy_ngx_tailwindcss.TwModalFooterComponent, typeof _pegasusheavy_ngx_tailwindcss.TwConfirmDialogComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownMenuComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownItemDirective, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownDividerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownHeaderComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownTriggerDirective, typeof TwSidebarComponent, typeof TwPopoverComponent, typeof TwImageComponent, typeof TwScrollTopComponent, typeof _pegasusheavy_ngx_tailwindcss.TwVolumeDialComponent, typeof _pegasusheavy_ngx_tailwindcss.TwVuMeterComponent, typeof _pegasusheavy_ngx_tailwindcss.TwWaveformComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTransportComponent, typeof _pegasusheavy_ngx_tailwindcss.TwScrubberComponent, typeof _pegasusheavy_ngx_tailwindcss.TwFaderComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPanControlComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTimeDisplayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwSpectrumComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPianoComponent, typeof _pegasusheavy_ngx_tailwindcss.TwParametricEQComponent, typeof _pegasusheavy_ngx_tailwindcss.TwGraphicEQComponent, typeof _pegasusheavy_ngx_tailwindcss.TwOscilloscopeComponent, typeof _pegasusheavy_ngx_tailwindcss.TwChannelStripComponent, typeof _pegasusheavy_ngx_tailwindcss.TwMixerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwMetronomeComponent, typeof _pegasusheavy_ngx_tailwindcss.TwVisualizerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAudioPlayerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwLooperComponent, typeof _pegasusheavy_ngx_tailwindcss.TwStaffComponent, typeof _pegasusheavy_ngx_tailwindcss.TwNoteComponent, typeof _pegasusheavy_ngx_tailwindcss.TwNoteInputComponent, typeof _pegasusheavy_ngx_tailwindcss.TwMusicalSymbolComponent, typeof _pegasusheavy_ngx_tailwindcss.TwChordDiagramComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPianoChordComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTablatureComponent, typeof _pegasusheavy_ngx_tailwindcss.TwSheetMusicComponent, typeof _pegasusheavy_ngx_tailwindcss.TwLeadSheetComponent, typeof _pegasusheavy_ngx_tailwindcss.TwScoreEditorComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTunerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwNoteDisplayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPitchDisplayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAudioStatsComponent, typeof _pegasusheavy_ngx_tailwindcss.TwBpmDisplayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwCompressorMeterComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTouchGuardDirective, typeof _pegasusheavy_ngx_tailwindcss.TwMidiLearnDirective];
11972
+ declare const TW_ALL: readonly [typeof _pegasusheavy_ngx_tailwindcss.TwRippleDirective, typeof _pegasusheavy_ngx_tailwindcss.TwTooltipDirective, typeof _pegasusheavy_ngx_tailwindcss.TwClickOutsideDirective, typeof _pegasusheavy_ngx_tailwindcss.TwFocusTrapDirective, typeof _pegasusheavy_ngx_tailwindcss.TwClassDirective, typeof _pegasusheavy_ngx_tailwindcss.TwVariantDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAutoFocusDirective, typeof _pegasusheavy_ngx_tailwindcss.TwInViewDirective, typeof _pegasusheavy_ngx_tailwindcss.TwLongPressDirective, typeof _pegasusheavy_ngx_tailwindcss.TwDebounceClickDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCopyClipboardDirective, typeof _pegasusheavy_ngx_tailwindcss.TwKeyboardShortcutDirective, typeof _pegasusheavy_ngx_tailwindcss.TwSwipeDirective, typeof _pegasusheavy_ngx_tailwindcss.TwResizeObserverDirective, typeof _pegasusheavy_ngx_tailwindcss.TwLazyImageDirective, typeof _pegasusheavy_ngx_tailwindcss.TwScrollToDirective, typeof _pegasusheavy_ngx_tailwindcss.TwScrollSectionDirective, typeof _pegasusheavy_ngx_tailwindcss.TwHoverClassDirective, typeof _pegasusheavy_ngx_tailwindcss.TwTrapScrollDirective, typeof _pegasusheavy_ngx_tailwindcss.TwSrOnlyDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAnnounceDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaExpandedDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaSelectedDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaCheckedDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaPressedDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaDisabledDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaHiddenDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaLiveDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaCurrentDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaBusyDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaDescribedbyDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaLabelledbyDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaLabelDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaValueDirective, typeof _pegasusheavy_ngx_tailwindcss.TwRoleDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaModalDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaHaspopupDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaOwnsDirective, typeof _pegasusheavy_ngx_tailwindcss.TwAriaActivedescendantDirective, typeof _pegasusheavy_ngx_tailwindcss.TwButtonComponent, typeof _pegasusheavy_ngx_tailwindcss.TwButtonLinkComponent, typeof _pegasusheavy_ngx_tailwindcss.TwInputComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTextareaComponent, typeof _pegasusheavy_ngx_tailwindcss.TwLabelDirective, typeof _pegasusheavy_ngx_tailwindcss.TwHintDirective, typeof _pegasusheavy_ngx_tailwindcss.TwErrorDirective, typeof _pegasusheavy_ngx_tailwindcss.TwInputAffixDirective, typeof TwCheckboxComponent, typeof TwRadioButtonComponent, typeof TwRadioGroupComponent, typeof TwSwitchComponent, typeof TwSelectComponent, typeof TwMultiSelectComponent, typeof TwSliderComponent, typeof TwRatingComponent, typeof TwChipComponent, typeof TwChipsComponent, typeof _pegasusheavy_ngx_tailwindcss.TwCardComponent, typeof _pegasusheavy_ngx_tailwindcss.TwCardHorizontalComponent, typeof _pegasusheavy_ngx_tailwindcss.TwCardHeaderDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCardTitleDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCardSubtitleDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCardBodyDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCardFooterDirective, typeof _pegasusheavy_ngx_tailwindcss.TwCardMediaDirective, typeof TwAccordionComponent, typeof TwAccordionItemComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTabsComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTabPanelComponent, typeof TwDividerComponent, typeof TwContainerComponent, typeof TwStackComponent, typeof TwVStackComponent, typeof TwHStackComponent, typeof TwGridComponent, typeof TwSimpleGridComponent, typeof TwAspectRatioComponent, typeof TwCenterComponent, typeof TwSquareComponent, typeof TwCircleComponent, typeof TwSpacerComponent, typeof TwWrapComponent, typeof TwSplitterComponent, typeof TwSplitterPaneComponent, typeof TwStickyComponent, typeof TwScrollAreaComponent, typeof TwColumnsComponent, typeof TwBleedComponent, typeof TwOverlayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwBadgeComponent, typeof _pegasusheavy_ngx_tailwindcss.TwBadgeGroupComponent, typeof TwAvatarComponent, typeof TwAvatarGroupComponent, typeof TwTableComponent, typeof TwDatatablesComponent, typeof TwTreeComponent, typeof TwTimelineComponent, typeof TwBreadcrumbComponent, typeof TwPaginationComponent, typeof TwStepsComponent, typeof TwMenuComponent, typeof TwContextMenuComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAlertComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAlertTitleComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAlertDescriptionComponent, typeof TwToastComponent, typeof TwToastContainerComponent, typeof TwSpinnerComponent, typeof TwLoadingOverlayComponent, typeof TwProgressComponent, typeof TwProgressCircularComponent, typeof TwSkeletonComponent, typeof TwSkeletonTextComponent, typeof TwSkeletonCardComponent, typeof TwSkeletonTableComponent, typeof _pegasusheavy_ngx_tailwindcss.TwModalComponent, typeof _pegasusheavy_ngx_tailwindcss.TwModalHeaderComponent, typeof _pegasusheavy_ngx_tailwindcss.TwModalTitleComponent, typeof _pegasusheavy_ngx_tailwindcss.TwModalBodyComponent, typeof _pegasusheavy_ngx_tailwindcss.TwModalFooterComponent, typeof _pegasusheavy_ngx_tailwindcss.TwConfirmDialogComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownMenuComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownItemDirective, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownDividerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownHeaderComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDropdownTriggerDirective, typeof TwSidebarComponent, typeof TwPopoverComponent, typeof TwImageComponent, typeof TwScrollTopComponent, typeof _pegasusheavy_ngx_tailwindcss.TwVolumeDialComponent, typeof _pegasusheavy_ngx_tailwindcss.TwVuMeterComponent, typeof _pegasusheavy_ngx_tailwindcss.TwWaveformComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTransportComponent, typeof _pegasusheavy_ngx_tailwindcss.TwScrubberComponent, typeof _pegasusheavy_ngx_tailwindcss.TwFaderComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPanControlComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTimeDisplayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwSpectrumComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPianoComponent, typeof _pegasusheavy_ngx_tailwindcss.TwParametricEQComponent, typeof _pegasusheavy_ngx_tailwindcss.TwGraphicEQComponent, typeof _pegasusheavy_ngx_tailwindcss.TwOscilloscopeComponent, typeof _pegasusheavy_ngx_tailwindcss.TwChannelStripComponent, typeof _pegasusheavy_ngx_tailwindcss.TwMixerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwMetronomeComponent, typeof _pegasusheavy_ngx_tailwindcss.TwVisualizerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAudioPlayerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwLooperComponent, typeof _pegasusheavy_ngx_tailwindcss.TwStaffComponent, typeof _pegasusheavy_ngx_tailwindcss.TwNoteComponent, typeof _pegasusheavy_ngx_tailwindcss.TwNoteInputComponent, typeof _pegasusheavy_ngx_tailwindcss.TwMusicalSymbolComponent, typeof _pegasusheavy_ngx_tailwindcss.TwChordDiagramComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPianoChordComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTablatureComponent, typeof _pegasusheavy_ngx_tailwindcss.TwSheetMusicComponent, typeof _pegasusheavy_ngx_tailwindcss.TwLeadSheetComponent, typeof _pegasusheavy_ngx_tailwindcss.TwScoreEditorComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTunerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwNoteDisplayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPitchDisplayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAudioStatsComponent, typeof _pegasusheavy_ngx_tailwindcss.TwBpmDisplayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwCompressorMeterComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTouchGuardDirective, typeof _pegasusheavy_ngx_tailwindcss.TwMidiLearnDirective, typeof _pegasusheavy_ngx_tailwindcss.TwTitleBarComponent, typeof _pegasusheavy_ngx_tailwindcss.TwWindowControlsComponent, typeof _pegasusheavy_ngx_tailwindcss.TwMenuBarComponent, typeof _pegasusheavy_ngx_tailwindcss.TwNativeContextMenuComponent, typeof _pegasusheavy_ngx_tailwindcss.TwSidebarNavComponent, typeof _pegasusheavy_ngx_tailwindcss.TwFileTreeComponent, typeof _pegasusheavy_ngx_tailwindcss.TwBreadcrumbsNavComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTabBarComponent, typeof _pegasusheavy_ngx_tailwindcss.TwCommandPaletteComponent, typeof _pegasusheavy_ngx_tailwindcss.TwSearchBarComponent, typeof _pegasusheavy_ngx_tailwindcss.TwQuickSwitcherComponent, typeof _pegasusheavy_ngx_tailwindcss.TwSettingsPanelComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPreferencesDialogComponent, typeof _pegasusheavy_ngx_tailwindcss.TwShortcutsEditorComponent, typeof _pegasusheavy_ngx_tailwindcss.TwThemeSelectorComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAlertDialogComponent, typeof _pegasusheavy_ngx_tailwindcss.TwNativeConfirmDialogComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPromptDialogComponent, typeof _pegasusheavy_ngx_tailwindcss.TwAboutDialogComponent, typeof _pegasusheavy_ngx_tailwindcss.TwUpdateDialogComponent, typeof _pegasusheavy_ngx_tailwindcss.TwOnboardingWizardComponent, typeof _pegasusheavy_ngx_tailwindcss.TwTerminalComponent, typeof _pegasusheavy_ngx_tailwindcss.TwLogViewerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwPropertyInspectorComponent, typeof _pegasusheavy_ngx_tailwindcss.TwCodeViewerComponent, typeof _pegasusheavy_ngx_tailwindcss.TwStatusBarComponent, typeof _pegasusheavy_ngx_tailwindcss.TwToolbarComponent, typeof _pegasusheavy_ngx_tailwindcss.TwActivityIndicatorComponent, typeof _pegasusheavy_ngx_tailwindcss.TwConnectionStatusComponent, typeof _pegasusheavy_ngx_tailwindcss.TwResizablePanelsComponent, typeof _pegasusheavy_ngx_tailwindcss.TwShortcutDisplayComponent, typeof _pegasusheavy_ngx_tailwindcss.TwDraggableDirective, typeof _pegasusheavy_ngx_tailwindcss.TwDropZoneDirective, typeof _pegasusheavy_ngx_tailwindcss.TwShortcutDirective];
10279
11973
 
10280
- export { ACCENT_PRESETS, AR_TIME_PRESETS, AriaUtils, AudioContextService, AudioWorkerService, BPM_RANGES, CODEC_INFO, COMMON_CHORDS, DEFAULT_THEME, DEFAULT_THEME_COLORS, DEFAULT_TW_CONFIG, EQ_PRESETS, INSTRUMENT_PRESETS, MIDI_CC, MUSIC_FILE_FILTERS, MidiService, MobileSupportService, MusicAccessibilityService, NativePlatformService, PIANO_CHORDS, PITCH_PRESETS, SAMPLE_MUSIC, THEME_CSS_CLASSES, TW_ACCORDION_COMPONENTS, TW_ALERT_COMPONENTS, TW_ALL, TW_ARIA_DIRECTIVES, TW_ASPECT_RATIO_COMPONENTS, TW_AVATAR_COMPONENTS, TW_BADGE_COMPONENTS, TW_BLEED_COMPONENTS, TW_BREADCRUMB_COMPONENTS, TW_BUTTON_COMPONENTS, TW_CARD_COMPONENTS, TW_CENTER_COMPONENTS, TW_CHECKBOX_COMPONENTS, TW_CHIP_COMPONENTS, TW_COLUMNS_COMPONENTS, TW_CONFIG, TW_CONTAINER_COMPONENTS, TW_CORE_DIRECTIVES, TW_DATATABLES_COMPONENTS, TW_DEFAULT_TRANSLATIONS, TW_DIRECTIVES, TW_DIVIDER_COMPONENTS, TW_DROPDOWN_COMPONENTS, TW_DX_DIRECTIVES, TW_GRID_COMPONENTS, TW_IMAGE_COMPONENTS, TW_INPUT_COMPONENTS, TW_LOCALE, TW_MENU_COMPONENTS, TW_MODAL_COMPONENTS, TW_MULTISELECT_COMPONENTS, TW_MUSIC_COMPONENTS, TW_MUSIC_DIRECTIVES, TW_OVERLAY_COMPONENTS, TW_PAGINATION_COMPONENTS, TW_POPOVER_COMPONENTS, TW_PROGRESS_COMPONENTS, TW_RADIO_COMPONENTS, TW_RATING_COMPONENTS, TW_SCROLL_AREA_COMPONENTS, TW_SCROLL_TOP_COMPONENTS, TW_SELECT_COMPONENTS, TW_SIDEBAR_COMPONENTS, TW_SKELETON_COMPONENTS, TW_SLIDER_COMPONENTS, TW_SPACER_COMPONENTS, TW_SPINNER_COMPONENTS, TW_SPLITTER_COMPONENTS, TW_STACK_COMPONENTS, TW_STEPS_COMPONENTS, TW_STICKY_COMPONENTS, TW_SWITCH_COMPONENTS, TW_TABLE_COMPONENTS, TW_TABS_COMPONENTS, TW_THEME, TW_TIMELINE_COMPONENTS, TW_TOAST_COMPONENTS, TW_TRANSLATIONS, TW_TREE_COMPONENTS, TwAccordionComponent, TwAccordionItemComponent, TwAlertComponent, TwAlertDescriptionComponent, TwAlertTitleComponent, TwAnnounceDirective, TwAriaActivedescendantDirective, TwAriaBusyDirective, TwAriaCheckedDirective, TwAriaCurrentDirective, TwAriaDescribedbyDirective, TwAriaDisabledDirective, TwAriaExpandedDirective, TwAriaHaspopupDirective, TwAriaHiddenDirective, TwAriaLabelDirective, TwAriaLabelledbyDirective, TwAriaLiveDirective, TwAriaModalDirective, TwAriaOwnsDirective, TwAriaPressedDirective, TwAriaSelectedDirective, TwAriaService, TwAriaValueDirective, TwAspectRatioComponent, TwAudioPlayerComponent, TwAudioStatsComponent, TwAutoFocusDirective, TwAvatarComponent, TwAvatarGroupComponent, TwBadgeComponent, TwBadgeGroupComponent, TwBleedComponent, TwBpmDisplayComponent, TwBreadcrumbComponent, TwButtonComponent, TwButtonLinkComponent, TwCardBodyDirective, TwCardComponent, TwCardFooterDirective, TwCardHeaderDirective, TwCardHorizontalComponent, TwCardMediaDirective, TwCardSubtitleDirective, TwCardTitleDirective, TwCenterComponent, TwChannelStripComponent, TwCheckboxComponent, TwChipComponent, TwChipsComponent, TwChordDiagramComponent, TwCircleComponent, TwClassDirective, TwClassService, TwClickOutsideDirective, TwColumnsComponent, TwCompressorMeterComponent, TwConfirmDialogComponent, TwContainerComponent, TwContextMenuComponent, TwCopyClipboardDirective, TwDatatablesComponent, TwDebounceClickDirective, TwDividerComponent, TwDropdownComponent, TwDropdownDividerComponent, TwDropdownHeaderComponent, TwDropdownItemDirective, TwDropdownMenuComponent, TwDropdownTriggerDirective, TwErrorDirective, TwFaderComponent, TwFocusTrapDirective, TwGraphicEQComponent, TwGridComponent, TwHStackComponent, TwHintDirective, TwHoverClassDirective, TwI18nService, TwImageComponent, TwInViewDirective, TwInputAffixDirective, TwInputComponent, TwKeyboardShortcutDirective, TwLabelDirective, TwLazyImageDirective, TwLeadSheetComponent, TwLoadingOverlayComponent, TwLongPressDirective, TwLooperComponent, TwMenuComponent, TwMetronomeComponent, TwMidiLearnDirective, TwMixerComponent, TwModalBodyComponent, TwModalComponent, TwModalFooterComponent, TwModalHeaderComponent, TwModalTitleComponent, TwMultiSelectComponent, TwMusicalSymbolComponent, TwNoteComponent, TwNoteDisplayComponent, TwNoteInputComponent, TwOscilloscopeComponent, TwOverlayComponent, TwPaginationComponent, TwPanControlComponent, TwParametricEQComponent, TwPianoChordComponent, TwPianoComponent, TwPitchDisplayComponent, TwPopoverComponent, TwProgressCircularComponent, TwProgressComponent, TwRadioButtonComponent, TwRadioGroupComponent, TwRatingComponent, TwResizeObserverDirective, TwRippleDirective, TwRoleDirective, TwScoreEditorComponent, TwScrollAreaComponent, TwScrollSectionDirective, TwScrollToDirective, TwScrollTopComponent, TwScrubberComponent, TwSelectComponent, TwSheetMusicComponent, TwSidebarComponent, TwSimpleGridComponent, TwSkeletonCardComponent, TwSkeletonComponent, TwSkeletonTableComponent, TwSkeletonTextComponent, TwSliderComponent, TwSpacerComponent, TwSpectrumComponent, TwSpinnerComponent, TwSplitterComponent, TwSplitterPaneComponent, TwSquareComponent, TwSrOnlyDirective, TwStackComponent, TwStaffComponent, TwStepsComponent, TwStickyComponent, TwSwipeDirective, TwSwitchComponent, TwTabPanelComponent, TwTablatureComponent, TwTableComponent, TwTabsComponent, TwTextareaComponent, TwThemeService, TwTimeDisplayComponent, TwTimelineComponent, TwToastComponent, TwToastContainerComponent, TwToastService, TwTooltipDirective, TwTouchGuardDirective, TwTransportComponent, TwTrapScrollDirective, TwTreeComponent, TwTunerComponent, TwVStackComponent, TwVariantDirective, TwVisualizerComponent, TwVolumeDialComponent, TwVuMeterComponent, TwWaveformComponent, TwWrapComponent, createTheme, generateThemeCssProperties, getWorkerScript, handleMessage, parseABCNotation, parseMusicXML, provideTwConfig, provideTwLocale, provideTwTheme, provideTwTranslations, withTwConfig, withTwTheme };
10281
- export type { AccentLevel, AccentPattern, AccessibilityPreferences, ActiveNote, AlertStyle, AlertVariant, AnnouncementPriority, ArticulationType, AspectRatioPreset, AttackReleaseDisplay, AudioChain, AudioContextState, AudioFileInfo, AudioNodeConfig, AudioPlayerTheme, AudioPlayerVariant, AudioSourceType, AudioStatsSize, AudioStatsVariant, AudioTrack, AudioWorkerConfig, AudioWorkletModuleInfo, AuxSend, AvatarSize, AvatarStatus, AvatarVariant, BadgeSize, BadgeStyle, BadgeVariant, BeamConfig, BeamPosition, BeatDetectionOptions, BeatDetectionResult, BeatEvent, BeatHighlightMode, BleedAmount, BleedDirection, BpmDisplaySize, BpmDisplayVariant, BpmSyncStatus, BreadcrumbItem, BreadcrumbSeparator, ButtonSize, ButtonVariant, CCValueChangeEvent, CardVariant, ChannelGroup, ChannelStripSize, ChannelStripState, ChannelStripVariant, CheckboxSize, CheckboxVariant, ChipSize, ChipStyle, ChipVariant, ChordDefinition, ChordDiagramSize, ChordDiagramVariant, ChordFingering, ClefType, ClipboardData, ColorMode, ColumnsCount, ColumnsGap, ColumnsRule, CompressorMeterSize, CompressorMeterVariant, CompressorSettings, ConnectedSource, ContainerSize, CopyClipboardEvent, DetectedNote, DialSize, DialVariant, DividerLabelPosition, DividerOrientation, DividerVariant, DropdownPosition, DynamicType, EQBand, EQBandChange, EQBandValue, EQFilterType, EQPreset, EQPresetCategory, EQVariant, ExportFormat, FFTProcessOptions, FFTProcessResult, FaderOrientation, FaderSize, FaderVariant, FileFilter, FileInfo, FindPeaksOptions, FindPeaksResult, FrequencyConversionOptions, FrequencyConversionResult, FrequencyScale, GainReductionHistoryPoint, GraphicEQBandCount, GraphicEQVariant, GridCols, GridGap, HairpinType, HapticFeedbackType, HistoryEntry, ImageBorderRadius, ImageFit, InViewEvent, InputSize, InputVariant, InstrumentPart, KeySignature, KeyboardShortcutEvent, LazyImageEvent, LeadSheetChord, LeadSheetData, LeadSheetDisplayMode, LeadSheetMeasure, LeadSheetSection, LeadSheetStyle, LeadSheetVariant, LevelOptions, LevelResult, LongPressEvent, LoopLayer, LooperEvent, LooperSize, LooperState, LooperVariant, LyricEntry, MeasureData, MelodyNote, MenuItem, MenuVariant, MetronomeBeat, MetronomeSize, MetronomeVariant, MidiCCMapping, MidiDevice, MidiDeviceInfo, MidiLearnState, MidiMessage, MidiMessageType, MidiNoteInfo, MixerBreakpoint, MixerChannel, MixerSection, MixerSize, MixerState, MixerVariant, ModalSize, MultiSelectAppendTo, MultiSelectGroup, MultiSelectOption, MultiSelectSize, MultiSelectVariant, MusicSwipeDirection, NativeClipboardData, NoteAccidental, NoteData, NoteDisplaySize, NoteDisplayVariant, NoteDuration, NoteEvent, NoteHistoryEntry, NoteInputEvent, NoteInputMeasureData, NoteName, OpenFileOptions, OrnamentType, OscilloscopeTriggerMode, OscilloscopeVariant, OverlayBlur, OverlayOpacity, PaginationSize, PaginationVariant, PanControlSize, PanControlVariant, PedalType, PianoChordDefinition, PianoChordNote, PianoChordSize, PianoChordVariant, PianoKey, PianoSize, PianoVariant, PinchGestureState, PitchBendStyle, PitchDisplaySize, PitchDisplayVariant, PitchInfo, PlacedNote, PlatformType, PopoverPosition, PopoverTrigger, PrintOptions, ProgressSize, ProgressVariant, RadioSize, RadioVariant, RatingSize, RatingVariant, RepeatType, ResizeEvent, SaveFileOptions, ScoreData, ScoreEditorVariant, ScrollAreaDirection, ScrollAreaScrollbar, ScrollTopPosition, ScrollTopVariant, ScrubberMarker, ScrubberThumbnail, ScrubberVariant, SelectAppendTo, SelectGroup, SelectOption, SelectSize, SelectVariant, SheetMusicData, SheetMusicLayout, SheetMusicVariant, SidebarPosition, SidebarSize, SkeletonGap, SkeletonVariant, SlashPattern, SlashStyle, SliderSize, SliderVariant, SlurPoints, SmoothDataOptions, SmoothDataResult, SpacerSize, SpectrumColorScheme, SpectrumVariant, SpinnerColor, SpinnerSize, SpinnerVariant, SplitterDirection, SplitterGutterSize, StackAlign, StackDirection, StackJustify, StackSpacing, StaffTimeSignature, StaffVariant, StemDirection, StepItem, StepsOrientation, StepsSize, StickyOffset, StickyPosition, SwipeDirection, SwipeEvent, SwipeGestureResult, SwitchSize, SwitchVariant, SymbolCategory, TabMeasure, TabNote, TablatureTechnique, TablatureVariant, TableColumn, TableSize, TableVariant, TabsOrientation, TabsSize, TabsVariant, TempoType, ThemeColorValue, ThemeColors, ThemeComponentOverrides, ThumbnailSpriteConfig, TimeDisplayMode, TimeDisplaySize, TimeDisplayVariant, TimeDomainOptions, TimeDomainResult, TimeSignature, TimelineAlign, TimelineEvent, TimelineLayout, ToastOptions, ToastPosition, ToastVariant, TooltipPosition, TouchGuardConfig, TransportSize, TransportVariant, TransposeOptions, TreeNode, TreeSelectionMode, TunerMode, TunerVariant, TuningData, TupletConfig, TupletPosition, TwAlertClassConfig, TwBadgeClassConfig, TwButtonClassConfig, TwCardClassConfig, TwClassOverrides, TwConfig, TwDropdownClassConfig, TwInputClassConfig, TwModalClassConfig, TwTabsClassConfig, TwTheme, TwThemeConfig, TwTranslations, VisualizerColorScheme, VisualizerVariant, Voice, VuMeterMode, VuMeterOrientation, VuMeterVariant, WaveformColorScheme, WaveformDownsampleOptions, WaveformDownsampleResult, WaveformMode, WaveformSize, WaveformVariant, WorkerMessage, WorkerMessageType, WorkerResponse };
11974
+ export { ACCENT_PRESETS, AR_TIME_PRESETS, AriaUtils, AudioContextService, AudioWorkerService, BPM_RANGES, CODEC_INFO, COMMON_CHORDS, DEFAULT_THEME, DEFAULT_THEME_COLORS, DEFAULT_TW_CONFIG, DockService, EQ_PRESETS, FilePickerService, INSTRUMENT_PRESETS, MIDI_CC, MUSIC_FILE_FILTERS, MidiService, MobileSupportService, MusicAccessibilityService, NativeAppPlatformService, NativeIpcService, NativeNotificationsService, NativePlatformService, NativeStorageService, PIANO_CHORDS, PITCH_PRESETS, SAMPLE_MUSIC, SystemTrayService, THEME_CSS_CLASSES, TW_ACCORDION_COMPONENTS, TW_ALERT_COMPONENTS, TW_ALL, TW_ARIA_DIRECTIVES, TW_ASPECT_RATIO_COMPONENTS, TW_AVATAR_COMPONENTS, TW_BADGE_COMPONENTS, TW_BLEED_COMPONENTS, TW_BREADCRUMB_COMPONENTS, TW_BUTTON_COMPONENTS, TW_CARD_COMPONENTS, TW_CENTER_COMPONENTS, TW_CHECKBOX_COMPONENTS, TW_CHIP_COMPONENTS, TW_COLUMNS_COMPONENTS, TW_CONFIG, TW_CONTAINER_COMPONENTS, TW_CORE_DIRECTIVES, TW_DATATABLES_COMPONENTS, TW_DEFAULT_TRANSLATIONS, TW_DIRECTIVES, TW_DIVIDER_COMPONENTS, TW_DROPDOWN_COMPONENTS, TW_DX_DIRECTIVES, TW_GRID_COMPONENTS, TW_IMAGE_COMPONENTS, TW_INPUT_COMPONENTS, TW_LOCALE, TW_MENU_COMPONENTS, TW_MODAL_COMPONENTS, TW_MULTISELECT_COMPONENTS, TW_MUSIC_COMPONENTS, TW_MUSIC_DIRECTIVES, TW_NATIVE_COMPONENTS, TW_NATIVE_DIRECTIVES, TW_OVERLAY_COMPONENTS, TW_PAGINATION_COMPONENTS, TW_POPOVER_COMPONENTS, TW_PROGRESS_COMPONENTS, TW_RADIO_COMPONENTS, TW_RATING_COMPONENTS, TW_SCROLL_AREA_COMPONENTS, TW_SCROLL_TOP_COMPONENTS, TW_SELECT_COMPONENTS, TW_SIDEBAR_COMPONENTS, TW_SKELETON_COMPONENTS, TW_SLIDER_COMPONENTS, TW_SPACER_COMPONENTS, TW_SPINNER_COMPONENTS, TW_SPLITTER_COMPONENTS, TW_STACK_COMPONENTS, TW_STEPS_COMPONENTS, TW_STICKY_COMPONENTS, TW_SWITCH_COMPONENTS, TW_TABLE_COMPONENTS, TW_TABS_COMPONENTS, TW_THEME, TW_TIMELINE_COMPONENTS, TW_TOAST_COMPONENTS, TW_TRANSLATIONS, TW_TREE_COMPONENTS, TwAboutDialogComponent, TwAccordionComponent, TwAccordionItemComponent, TwActivityIndicatorComponent, TwAlertComponent, TwAlertDescriptionComponent, TwAlertDialogComponent, TwAlertTitleComponent, TwAnnounceDirective, TwAriaActivedescendantDirective, TwAriaBusyDirective, TwAriaCheckedDirective, TwAriaCurrentDirective, TwAriaDescribedbyDirective, TwAriaDisabledDirective, TwAriaExpandedDirective, TwAriaHaspopupDirective, TwAriaHiddenDirective, TwAriaLabelDirective, TwAriaLabelledbyDirective, TwAriaLiveDirective, TwAriaModalDirective, TwAriaOwnsDirective, TwAriaPressedDirective, TwAriaSelectedDirective, TwAriaService, TwAriaValueDirective, TwAspectRatioComponent, TwAudioPlayerComponent, TwAudioStatsComponent, TwAutoFocusDirective, TwAvatarComponent, TwAvatarGroupComponent, TwBadgeComponent, TwBadgeGroupComponent, TwBleedComponent, TwBpmDisplayComponent, TwBreadcrumbComponent, TwBreadcrumbsNavComponent, TwButtonComponent, TwButtonLinkComponent, TwCardBodyDirective, TwCardComponent, TwCardFooterDirective, TwCardHeaderDirective, TwCardHorizontalComponent, TwCardMediaDirective, TwCardSubtitleDirective, TwCardTitleDirective, TwCenterComponent, TwChannelStripComponent, TwCheckboxComponent, TwChipComponent, TwChipsComponent, TwChordDiagramComponent, TwCircleComponent, TwClassDirective, TwClassService, TwClickOutsideDirective, TwCodeViewerComponent, TwColumnsComponent, TwCommandPaletteComponent, TwCompressorMeterComponent, TwConfirmDialogComponent, TwConnectionStatusComponent, TwContainerComponent, TwContextMenuComponent, TwCopyClipboardDirective, TwDatatablesComponent, TwDebounceClickDirective, TwDividerComponent, TwDraggableDirective, TwDropZoneDirective, TwDropdownComponent, TwDropdownDividerComponent, TwDropdownHeaderComponent, TwDropdownItemDirective, TwDropdownMenuComponent, TwDropdownTriggerDirective, TwErrorDirective, TwFaderComponent, TwFileTreeComponent, TwFocusTrapDirective, TwGraphicEQComponent, TwGridComponent, TwHStackComponent, TwHintDirective, TwHoverClassDirective, TwI18nService, TwImageComponent, TwInViewDirective, TwInputAffixDirective, TwInputComponent, TwKeyboardShortcutDirective, TwLabelDirective, TwLazyImageDirective, TwLeadSheetComponent, TwLoadingOverlayComponent, TwLogViewerComponent, TwLongPressDirective, TwLooperComponent, TwMenuBarComponent, TwMenuComponent, TwMetronomeComponent, TwMidiLearnDirective, TwMixerComponent, TwModalBodyComponent, TwModalComponent, TwModalFooterComponent, TwModalHeaderComponent, TwModalTitleComponent, TwMultiSelectComponent, TwMusicalSymbolComponent, TwNativeConfirmDialogComponent, TwNativeContextMenuComponent, TwNoteComponent, TwNoteDisplayComponent, TwNoteInputComponent, TwOnboardingWizardComponent, TwOscilloscopeComponent, TwOverlayComponent, TwPaginationComponent, TwPanControlComponent, TwParametricEQComponent, TwPianoChordComponent, TwPianoComponent, TwPitchDisplayComponent, TwPopoverComponent, TwPreferencesDialogComponent, TwProgressCircularComponent, TwProgressComponent, TwPromptDialogComponent, TwPropertyInspectorComponent, TwQuickSwitcherComponent, TwRadioButtonComponent, TwRadioGroupComponent, TwRatingComponent, TwResizablePanelsComponent, TwResizeObserverDirective, TwRippleDirective, TwRoleDirective, TwScoreEditorComponent, TwScrollAreaComponent, TwScrollSectionDirective, TwScrollToDirective, TwScrollTopComponent, TwScrubberComponent, TwSearchBarComponent, TwSelectComponent, TwSettingTemplateDirective, TwSettingsPanelComponent, TwSheetMusicComponent, TwShortcutDirective, TwShortcutDisplayComponent, TwShortcutsEditorComponent, TwSidebarComponent, TwSidebarNavComponent, TwSimpleGridComponent, TwSkeletonCardComponent, TwSkeletonComponent, TwSkeletonTableComponent, TwSkeletonTextComponent, TwSliderComponent, TwSpacerComponent, TwSpectrumComponent, TwSpinnerComponent, TwSplitterComponent, TwSplitterPaneComponent, TwSquareComponent, TwSrOnlyDirective, TwStackComponent, TwStaffComponent, TwStatusBarComponent, TwStepsComponent, TwStickyComponent, TwSwipeDirective, TwSwitchComponent, TwTabBarComponent, TwTabPanelComponent, TwTablatureComponent, TwTableComponent, TwTabsComponent, TwTerminalComponent, TwTextareaComponent, TwThemeSelectorComponent, TwThemeService, TwTimeDisplayComponent, TwTimelineComponent, TwTitleBarComponent, TwToastComponent, TwToastContainerComponent, TwToastService, TwToolbarComponent, TwTooltipDirective, TwTouchGuardDirective, TwTransportComponent, TwTrapScrollDirective, TwTreeComponent, TwTunerComponent, TwUpdateDialogComponent, TwVStackComponent, TwVariantDirective, TwVisualizerComponent, TwVolumeDialComponent, TwVuMeterComponent, TwWaveformComponent, TwWindowControlsComponent, TwWrapComponent, UpdateService, createTheme, generateThemeCssProperties, getWorkerScript, handleMessage, parseABCNotation, parseMusicXML, provideTwConfig, provideTwLocale, provideTwTheme, provideTwTranslations, withTwConfig, withTwTheme };
11975
+ export type { AboutDialogConfig, AccentLevel, AccentPattern, AccessibilityPreferences, ActiveNote, ActivityIndicatorSize, ActivityIndicatorVariant, AlertDialogConfig, AlertDialogType, AlertStyle, AlertVariant, AnnouncementPriority, ArticulationType, AspectRatioPreset, AttackReleaseDisplay, AudioChain, AudioContextState, AudioFileInfo, AudioNodeConfig, AudioPlayerTheme, AudioPlayerVariant, AudioSourceType, AudioStatsSize, AudioStatsVariant, AudioTrack, AudioWorkerConfig, AudioWorkletModuleInfo, AuxSend, AvatarSize, AvatarStatus, AvatarVariant, BadgeSize, BadgeStyle, BadgeVariant, BeamConfig, BeamPosition, BeatDetectionOptions, BeatDetectionResult, BeatEvent, BeatHighlightMode, BleedAmount, BleedDirection, BpmDisplaySize, BpmDisplayVariant, BpmSyncStatus, BreadcrumbItem, BreadcrumbSeparator, ButtonSize, ButtonVariant, CCValueChangeEvent, CardVariant, ChannelGroup, ChannelStripSize, ChannelStripState, ChannelStripVariant, CheckboxSize, CheckboxVariant, ChipSize, ChipStyle, ChipVariant, ChordDefinition, ChordDiagramSize, ChordDiagramVariant, ChordFingering, ClefType, ClipboardData, CodeLanguage, ColorMode, ColumnsCount, ColumnsGap, ColumnsRule, CommandItem, CommandPaletteMode, CompressorMeterSize, CompressorMeterVariant, CompressorSettings, ConfirmDialogConfig, ConnectedSource, ConnectionState, ContainerSize, CopyClipboardEvent, DetectedNote, DialSize, DialVariant, DividerLabelPosition, DividerOrientation, DividerVariant, DragData, DropEvent, DropdownPosition, DynamicType, EQBand, EQBandChange, EQBandValue, EQFilterType, EQPreset, EQPresetCategory, EQVariant, ExportFormat, FFTProcessOptions, FFTProcessResult, FaderOrientation, FaderSize, FaderVariant, FileFilter, FileInfo, FilePickerResult, FileTreeEvent, FileTreeNode, FindPeaksOptions, FindPeaksResult, FrequencyConversionOptions, FrequencyConversionResult, FrequencyScale, GainReductionHistoryPoint, GraphicEQBandCount, GraphicEQVariant, GridCols, GridGap, HairpinType, HapticFeedbackType, HistoryEntry, ImageBorderRadius, ImageFit, InViewEvent, InputSize, InputVariant, InstrumentPart, IpcMessage, IpcResponse, KeySignature, KeyboardShortcut, KeyboardShortcutEvent, LazyImageEvent, LeadSheetChord, LeadSheetData, LeadSheetDisplayMode, LeadSheetMeasure, LeadSheetSection, LeadSheetStyle, LeadSheetVariant, LevelOptions, LevelResult, LogEntry, LogFilter, LongPressEvent, LoopLayer, LooperEvent, LooperSize, LooperState, LooperVariant, LyricEntry, MeasureData, MelodyNote, MenuItem, MenuVariant, MetronomeBeat, MetronomeSize, MetronomeVariant, MidiCCMapping, MidiDevice, MidiDeviceInfo, MidiLearnState, MidiMessage, MidiMessageType, MidiNoteInfo, MixerBreakpoint, MixerChannel, MixerSection, MixerSize, MixerState, MixerVariant, ModalSize, MultiSelectAppendTo, MultiSelectGroup, MultiSelectOption, MultiSelectSize, MultiSelectVariant, MusicSwipeDirection, NativeBreadcrumbItem, NativeClipboardData, NativeContextMenuEvent, NativeContextMenuPosition, NativeFileFilter, NativeMenuBarItem, NativeMenuItem, NativeNotificationAction, NativeNotificationOptions, NativeOpenFileOptions, NativeSaveFileOptions, NativeSidebarPosition, NativeSidebarVariant, NoteAccidental, NoteData, NoteDisplaySize, NoteDisplayVariant, NoteDuration, NoteEvent, NoteHistoryEntry, NoteInputEvent, NoteInputMeasureData, NoteName, OnboardingStep, OpenFileOptions, OrnamentType, OscilloscopeTriggerMode, OscilloscopeVariant, OverlayBlur, OverlayOpacity, PaginationSize, PaginationVariant, PanControlSize, PanControlVariant, PanelConfig, PedalType, PianoChordDefinition, PianoChordNote, PianoChordSize, PianoChordVariant, PianoKey, PianoSize, PianoVariant, PinchGestureState, PitchBendStyle, PitchDisplaySize, PitchDisplayVariant, PitchInfo, PlacedNote, Platform, PlatformTheme, PlatformType, PopoverPosition, PopoverTrigger, PreferencesTab, PrintOptions, ProgressSize, ProgressVariant, PromptInputType, PropertyItem, QuickSwitcherItem, RadioSize, RadioVariant, RatingSize, RatingVariant, RepeatType, ResizeEvent, SaveFileOptions, ScoreData, ScoreEditorVariant, ScrollAreaDirection, ScrollAreaScrollbar, ScrollTopPosition, ScrollTopVariant, ScrubberMarker, ScrubberThumbnail, ScrubberVariant, SearchFilter, SearchSuggestion, SelectAppendTo, SelectGroup, SelectOption, SelectSize, SelectVariant, SettingItem, SettingsCategory, SheetMusicData, SheetMusicLayout, SheetMusicVariant, ShortcutBinding, ShortcutDisplayPlatform, ShortcutDisplayVariant, SidebarItem, SidebarPosition, SidebarSize, SkeletonGap, SkeletonVariant, SlashPattern, SlashStyle, SliderSize, SliderVariant, SlurPoints, SmoothDataOptions, SmoothDataResult, SpacerSize, SpectrumColorScheme, SpectrumVariant, SpinnerColor, SpinnerSize, SpinnerVariant, SplitDirection, SplitterDirection, SplitterGutterSize, StackAlign, StackDirection, StackJustify, StackSpacing, StaffTimeSignature, StaffVariant, StatusBarItem, StemDirection, StepItem, StepsOrientation, StepsSize, StickyOffset, StickyPosition, StorageOptions, SwipeDirection, SwipeEvent, SwipeGestureResult, SwitchSize, SwitchVariant, SymbolCategory, TabBarPosition, TabBarVariant, TabEvent, TabItem, TabMeasure, TabNote, TablatureTechnique, TablatureVariant, TableColumn, TableSize, TableVariant, TabsOrientation, TabsSize, TabsVariant, TempoType, TerminalLine, TerminalVariant, ThemeColorValue, ThemeColors, ThemeComponentOverrides, ThemeMode, ThemePreset, ThumbnailSpriteConfig, TimeDisplayMode, TimeDisplaySize, TimeDisplayVariant, TimeDomainOptions, TimeDomainResult, TimeSignature, TimelineAlign, TimelineEvent, TimelineLayout, TitleBarPlatform, TitleBarVariant, ToastOptions, ToastPosition, ToastVariant, ToolbarItem, ToolbarPosition, ToolbarVariant, TooltipPosition, TouchGuardConfig, TransportSize, TransportVariant, TransposeOptions, TrayConfig, TreeNode, TreeSelectionMode, TunerMode, TunerVariant, TuningData, TupletConfig, TupletPosition, TwAlertClassConfig, TwBadgeClassConfig, TwButtonClassConfig, TwCardClassConfig, TwClassOverrides, TwConfig, TwDropdownClassConfig, TwInputClassConfig, TwModalClassConfig, TwTabsClassConfig, TwTheme, TwThemeConfig, TwTranslations, UpdateDialogInfo, UpdateInfo, UpdateProgress, UpdateStatus, VisualizerColorScheme, VisualizerVariant, Voice, VuMeterMode, VuMeterOrientation, VuMeterVariant, WaveformColorScheme, WaveformDownsampleOptions, WaveformDownsampleResult, WaveformMode, WaveformSize, WaveformVariant, WindowControlButton, WindowControlsPosition, WindowState, WorkerMessage, WorkerMessageType, WorkerResponse };