@pegasusheavy/ngx-tailwindcss 0.2.0 → 0.3.1

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
@@ -2065,33 +2066,38 @@ type RadioSize = 'sm' | 'md' | 'lg';
2065
2066
  declare class TwRadioButtonComponent {
2066
2067
  private readonly twClass;
2067
2068
  /** Value of the radio button */
2068
- value: any;
2069
+ readonly value: _angular_core.InputSignal<any>;
2069
2070
  /** Label text */
2070
- label: string;
2071
+ readonly label: _angular_core.InputSignal<string>;
2071
2072
  /** Name attribute (set by parent group) */
2072
- name: string;
2073
+ readonly name: _angular_core.InputSignal<string>;
2073
2074
  /** Visual variant */
2074
- variant: RadioVariant;
2075
+ readonly variant: _angular_core.InputSignal<RadioVariant>;
2075
2076
  /** Size of the radio button */
2076
- size: RadioSize;
2077
+ readonly size: _angular_core.InputSignal<RadioSize>;
2077
2078
  /** Whether the radio is disabled */
2078
- disabled: boolean;
2079
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2079
2080
  /** Focus event */
2080
- onFocus: EventEmitter<FocusEvent>;
2081
+ readonly onFocus: _angular_core.OutputEmitterRef<FocusEvent>;
2081
2082
  /** Blur event */
2082
- onBlur: EventEmitter<FocusEvent>;
2083
+ readonly onBlur: _angular_core.OutputEmitterRef<FocusEvent>;
2083
2084
  /** Internal: selected value from parent */
2084
2085
  selectedValue: _angular_core.WritableSignal<any>;
2086
+ /** Internal: disabled override from parent */
2087
+ _disabledOverride: _angular_core.WritableSignal<boolean>;
2088
+ /** Internal: name override from parent */
2089
+ _nameOverride: _angular_core.WritableSignal<string>;
2085
2090
  /** Internal: change callback from parent */
2086
2091
  onSelectionChange: (value: any) => void;
2092
+ protected isDisabled: _angular_core.Signal<boolean>;
2093
+ protected effectiveName: _angular_core.Signal<string>;
2087
2094
  protected isChecked: _angular_core.Signal<boolean>;
2088
2095
  protected labelContainerClasses: _angular_core.Signal<string>;
2089
2096
  protected radioClasses: _angular_core.Signal<string>;
2090
2097
  protected labelTextClasses: _angular_core.Signal<string>;
2091
2098
  onRadioChange(): void;
2092
2099
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwRadioButtonComponent, never>;
2093
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwRadioButtonComponent, "tw-radio-button", never, { "value": { "alias": "value"; "required": true; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onFocus": "onFocus"; "onBlur": "onBlur"; }, never, ["*"], true, never>;
2094
- static ngAcceptInputType_disabled: unknown;
2100
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwRadioButtonComponent, "tw-radio-button", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "onFocus": "onFocus"; "onBlur": "onBlur"; }, never, ["*"], true, never>;
2095
2101
  }
2096
2102
  /**
2097
2103
  * Radio button group component
@@ -2107,21 +2113,25 @@ declare class TwRadioButtonComponent {
2107
2113
  declare class TwRadioGroupComponent implements ControlValueAccessor, AfterContentInit {
2108
2114
  private readonly twClass;
2109
2115
  /** Name for all radio buttons in the group */
2110
- name: string;
2116
+ readonly name: _angular_core.InputSignal<string>;
2111
2117
  /** Orientation of the group */
2112
- orientation: 'horizontal' | 'vertical';
2118
+ readonly orientation: _angular_core.InputSignal<"horizontal" | "vertical">;
2113
2119
  /** Gap between radio buttons */
2114
- gap: 'sm' | 'md' | 'lg';
2120
+ readonly gap: _angular_core.InputSignal<"sm" | "md" | "lg">;
2115
2121
  /** Whether all radios are disabled */
2116
- disabled: boolean;
2122
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2117
2123
  /** Change event */
2118
- onChange: EventEmitter<any>;
2124
+ readonly onChange: _angular_core.OutputEmitterRef<any>;
2119
2125
  radioButtons: QueryList<TwRadioButtonComponent>;
2120
2126
  protected selectedValue: _angular_core.WritableSignal<any>;
2127
+ private _disabled;
2128
+ private contentInitialized;
2121
2129
  private onChangeFn;
2122
2130
  private onTouchedFn;
2123
2131
  private readonly GAPS;
2132
+ protected isDisabled: _angular_core.Signal<boolean>;
2124
2133
  protected groupClasses: _angular_core.Signal<string>;
2134
+ constructor();
2125
2135
  ngAfterContentInit(): void;
2126
2136
  private updateRadioButtons;
2127
2137
  private updateRadioButtonsSelection;
@@ -2130,8 +2140,7 @@ declare class TwRadioGroupComponent implements ControlValueAccessor, AfterConten
2130
2140
  registerOnTouched(fn: () => void): void;
2131
2141
  setDisabledState(isDisabled: boolean): void;
2132
2142
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwRadioGroupComponent, never>;
2133
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwRadioGroupComponent, "tw-radio-group", never, { "name": { "alias": "name"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onChange": "onChange"; }, ["radioButtons"], ["*"], true, never>;
2134
- static ngAcceptInputType_disabled: unknown;
2143
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwRadioGroupComponent, "tw-radio-group", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "onChange": "onChange"; }, ["radioButtons"], ["*"], true, never>;
2135
2144
  }
2136
2145
 
2137
2146
  type SwitchVariant = 'primary' | 'secondary' | 'success' | 'warning' | 'danger';
@@ -2201,47 +2210,47 @@ declare class TwSelectComponent implements ControlValueAccessor, OnDestroy, Afte
2201
2210
  private readonly platformId;
2202
2211
  triggerButton: ElementRef<HTMLButtonElement>;
2203
2212
  /** Options to display (flat list) */
2204
- options: SelectOption[];
2213
+ readonly options: _angular_core.InputSignal<SelectOption[]>;
2205
2214
  /** Grouped options to display */
2206
- groups: SelectGroup[];
2215
+ readonly groups: _angular_core.InputSignal<SelectGroup[]>;
2207
2216
  /** Placeholder text */
2208
- placeholder: string;
2217
+ readonly placeholder: _angular_core.InputSignal<string>;
2209
2218
  /** Label text */
2210
- label: string;
2219
+ readonly label: _angular_core.InputSignal<string>;
2211
2220
  /** Size of the select */
2212
- size: SelectSize;
2221
+ readonly size: _angular_core.InputSignal<SelectSize>;
2213
2222
  /** Visual variant */
2214
- variant: SelectVariant;
2223
+ readonly variant: _angular_core.InputSignal<SelectVariant>;
2215
2224
  /** Whether the select is disabled */
2216
- disabled: boolean;
2225
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2217
2226
  /** Whether the select is required */
2218
- required: boolean;
2227
+ readonly required: _angular_core.InputSignalWithTransform<boolean, unknown>;
2219
2228
  /** Whether to show filter input */
2220
- filter: boolean;
2229
+ readonly filter: _angular_core.InputSignalWithTransform<boolean, unknown>;
2221
2230
  /** Filter placeholder text */
2222
- filterPlaceholder: string;
2231
+ readonly filterPlaceholder: _angular_core.InputSignal<string>;
2223
2232
  /** Empty message when no options match filter */
2224
- emptyMessage: string;
2233
+ readonly emptyMessage: _angular_core.InputSignal<string>;
2225
2234
  /** Whether to show checkmark for selected option */
2226
- showCheckmark: boolean;
2235
+ readonly showCheckmark: _angular_core.InputSignalWithTransform<boolean, unknown>;
2227
2236
  /** Hint text */
2228
- hint: string;
2237
+ readonly hint: _angular_core.InputSignal<string>;
2229
2238
  /** Error message */
2230
- error: string;
2239
+ readonly error: _angular_core.InputSignal<string>;
2231
2240
  /** Input ID */
2232
- inputId: string;
2241
+ readonly inputId: _angular_core.InputSignal<string>;
2233
2242
  /** Additional classes */
2234
- classOverride: string;
2243
+ readonly classOverride: _angular_core.InputSignal<string>;
2235
2244
  /**
2236
2245
  * Where to append the dropdown
2237
2246
  * - 'body': Appends dropdown to document body (avoids overflow clipping)
2238
2247
  * - 'self': Keeps dropdown within the component (default)
2239
2248
  */
2240
- appendTo: SelectAppendTo;
2249
+ readonly appendTo: _angular_core.InputSignal<SelectAppendTo>;
2241
2250
  /** Change event */
2242
- onChange: EventEmitter<SelectOption | null>;
2251
+ readonly onChange: _angular_core.OutputEmitterRef<SelectOption | null>;
2243
2252
  /** Open/Close event */
2244
- onToggle: EventEmitter<boolean>;
2253
+ readonly onToggle: _angular_core.OutputEmitterRef<boolean>;
2245
2254
  protected isOpen: _angular_core.WritableSignal<boolean>;
2246
2255
  protected filterValue: _angular_core.WritableSignal<string>;
2247
2256
  protected selectedValue: _angular_core.WritableSignal<any>;
@@ -2250,11 +2259,13 @@ declare class TwSelectComponent implements ControlValueAccessor, OnDestroy, Afte
2250
2259
  left: number;
2251
2260
  width: number;
2252
2261
  } | null>;
2262
+ private _disabled;
2253
2263
  private onChangeFn;
2254
2264
  private onTouchedFn;
2255
2265
  private portalContainer;
2256
2266
  private scrollListener;
2257
2267
  private resizeListener;
2268
+ protected isDisabled: _angular_core.Signal<boolean>;
2258
2269
  protected allOptions: _angular_core.Signal<SelectOption[]>;
2259
2270
  protected selectedOption: _angular_core.Signal<SelectOption | null>;
2260
2271
  protected filteredOptions: _angular_core.Signal<SelectOption[]>;
@@ -2296,11 +2307,7 @@ declare class TwSelectComponent implements ControlValueAccessor, OnDestroy, Afte
2296
2307
  /** Clear the selection */
2297
2308
  clear(): void;
2298
2309
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwSelectComponent, never>;
2299
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwSelectComponent, "tw-select", never, { "options": { "alias": "options"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "showCheckmark": { "alias": "showCheckmark"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "classOverride": { "alias": "classOverride"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; }, { "onChange": "onChange"; "onToggle": "onToggle"; }, never, never, true, never>;
2300
- static ngAcceptInputType_disabled: unknown;
2301
- static ngAcceptInputType_required: unknown;
2302
- static ngAcceptInputType_filter: unknown;
2303
- static ngAcceptInputType_showCheckmark: unknown;
2310
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwSelectComponent, "tw-select", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "groups": { "alias": "groups"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "filter": { "alias": "filter"; "required": false; "isSignal": true; }; "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "showCheckmark": { "alias": "showCheckmark"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "inputId": { "alias": "inputId"; "required": false; "isSignal": true; }; "classOverride": { "alias": "classOverride"; "required": false; "isSignal": true; }; "appendTo": { "alias": "appendTo"; "required": false; "isSignal": true; }; }, { "onChange": "onChange"; "onToggle": "onToggle"; }, never, never, true, never>;
2304
2311
  }
2305
2312
 
2306
2313
  interface MultiSelectOption {
@@ -2423,45 +2430,47 @@ type SliderSize = 'sm' | 'md' | 'lg';
2423
2430
  declare class TwSliderComponent implements ControlValueAccessor {
2424
2431
  private readonly twClass;
2425
2432
  /** Minimum value */
2426
- min: number;
2433
+ readonly min: _angular_core.InputSignalWithTransform<number, unknown>;
2427
2434
  /** Maximum value */
2428
- max: number;
2435
+ readonly max: _angular_core.InputSignalWithTransform<number, unknown>;
2429
2436
  /** Step increment */
2430
- step: number;
2437
+ readonly step: _angular_core.InputSignalWithTransform<number, unknown>;
2431
2438
  /** Label text */
2432
- label: string;
2439
+ readonly label: _angular_core.InputSignal<string>;
2433
2440
  /** Visual variant */
2434
- variant: SliderVariant;
2441
+ readonly variant: _angular_core.InputSignal<SliderVariant>;
2435
2442
  /** Size of the slider */
2436
- size: SliderSize;
2443
+ readonly size: _angular_core.InputSignal<SliderSize>;
2437
2444
  /** Whether the slider is disabled */
2438
- disabled: boolean;
2445
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2439
2446
  /** Whether to show the current value */
2440
- showValue: boolean;
2447
+ readonly showValue: _angular_core.InputSignalWithTransform<boolean, unknown>;
2441
2448
  /** Whether to show min/max labels */
2442
- showMinMax: boolean;
2449
+ readonly showMinMax: _angular_core.InputSignalWithTransform<boolean, unknown>;
2443
2450
  /** Whether to show tick marks */
2444
- showTicks: boolean;
2451
+ readonly showTicks: _angular_core.InputSignalWithTransform<boolean, unknown>;
2445
2452
  /** Number of tick marks to show */
2446
- tickCount: number;
2453
+ readonly tickCount: _angular_core.InputSignalWithTransform<number, unknown>;
2447
2454
  /** Whether to show value bubble while dragging */
2448
- showValueBubble: boolean;
2455
+ readonly showValueBubble: _angular_core.InputSignalWithTransform<boolean, unknown>;
2449
2456
  /** Format function for display value */
2450
- valueFormat: (value: number) => string;
2457
+ readonly valueFormat: _angular_core.InputSignal<(value: number) => string>;
2451
2458
  /** Additional classes */
2452
- classOverride: string;
2459
+ readonly classOverride: _angular_core.InputSignal<string>;
2453
2460
  /** Change event (fires on mouseup/touchend) */
2454
- onChange: EventEmitter<number>;
2461
+ readonly onChange: _angular_core.OutputEmitterRef<number>;
2455
2462
  /** Input event (fires continuously while dragging) */
2456
- onInput: EventEmitter<number>;
2463
+ readonly onInput: _angular_core.OutputEmitterRef<number>;
2457
2464
  /** Focus event */
2458
- onFocus: EventEmitter<FocusEvent>;
2465
+ readonly onFocus: _angular_core.OutputEmitterRef<FocusEvent>;
2459
2466
  /** Blur event */
2460
- onBlur: EventEmitter<FocusEvent>;
2467
+ readonly onBlur: _angular_core.OutputEmitterRef<FocusEvent>;
2461
2468
  protected value: _angular_core.WritableSignal<number>;
2462
2469
  protected isDragging: _angular_core.WritableSignal<boolean>;
2470
+ private _disabled;
2463
2471
  private onChangeFn;
2464
2472
  private onTouchedFn;
2473
+ protected isDisabled: _angular_core.Signal<boolean>;
2465
2474
  protected fillPercentage: _angular_core.Signal<number>;
2466
2475
  protected displayValue: _angular_core.Signal<string>;
2467
2476
  protected ticks: _angular_core.Signal<number[]>;
@@ -2474,7 +2483,7 @@ declare class TwSliderComponent implements ControlValueAccessor {
2474
2483
  protected thumbClasses: _angular_core.Signal<string>;
2475
2484
  onSliderInput(event: Event): void;
2476
2485
  onSliderChange(event: Event): void;
2477
- onInputBlur(): void;
2486
+ onInputBlur(event: FocusEvent): void;
2478
2487
  onDragStart(): void;
2479
2488
  onDragEnd(): void;
2480
2489
  writeValue(value: number): void;
@@ -2482,16 +2491,7 @@ declare class TwSliderComponent implements ControlValueAccessor {
2482
2491
  registerOnTouched(fn: () => void): void;
2483
2492
  setDisabledState(isDisabled: boolean): void;
2484
2493
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwSliderComponent, never>;
2485
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwSliderComponent, "tw-slider", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "label": { "alias": "label"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showValue": { "alias": "showValue"; "required": false; }; "showMinMax": { "alias": "showMinMax"; "required": false; }; "showTicks": { "alias": "showTicks"; "required": false; }; "tickCount": { "alias": "tickCount"; "required": false; }; "showValueBubble": { "alias": "showValueBubble"; "required": false; }; "valueFormat": { "alias": "valueFormat"; "required": false; }; "classOverride": { "alias": "classOverride"; "required": false; }; }, { "onChange": "onChange"; "onInput": "onInput"; "onFocus": "onFocus"; "onBlur": "onBlur"; }, never, never, true, never>;
2486
- static ngAcceptInputType_min: unknown;
2487
- static ngAcceptInputType_max: unknown;
2488
- static ngAcceptInputType_step: unknown;
2489
- static ngAcceptInputType_disabled: unknown;
2490
- static ngAcceptInputType_showValue: unknown;
2491
- static ngAcceptInputType_showMinMax: unknown;
2492
- static ngAcceptInputType_showTicks: unknown;
2493
- static ngAcceptInputType_tickCount: unknown;
2494
- static ngAcceptInputType_showValueBubble: unknown;
2494
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwSliderComponent, "tw-slider", never, { "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "showMinMax": { "alias": "showMinMax"; "required": false; "isSignal": true; }; "showTicks": { "alias": "showTicks"; "required": false; "isSignal": true; }; "tickCount": { "alias": "tickCount"; "required": false; "isSignal": true; }; "showValueBubble": { "alias": "showValueBubble"; "required": false; "isSignal": true; }; "valueFormat": { "alias": "valueFormat"; "required": false; "isSignal": true; }; "classOverride": { "alias": "classOverride"; "required": false; "isSignal": true; }; }, { "onChange": "onChange"; "onInput": "onInput"; "onFocus": "onFocus"; "onBlur": "onBlur"; }, never, never, true, never>;
2495
2495
  }
2496
2496
 
2497
2497
  type RatingVariant = 'primary' | 'warning' | 'danger';
@@ -2508,59 +2508,55 @@ type RatingSize = 'sm' | 'md' | 'lg' | 'xl';
2508
2508
  */
2509
2509
  declare class TwRatingComponent implements ControlValueAccessor {
2510
2510
  /** Number of stars */
2511
- stars: number;
2511
+ readonly stars: _angular_core.InputSignalWithTransform<number, unknown>;
2512
2512
  /** Visual variant */
2513
- variant: RatingVariant;
2513
+ readonly variant: _angular_core.InputSignal<RatingVariant>;
2514
2514
  /** Size of the stars */
2515
- size: RatingSize;
2515
+ readonly size: _angular_core.InputSignal<RatingSize>;
2516
2516
  /** Whether the rating is disabled */
2517
- disabled: boolean;
2517
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2518
2518
  /** Whether the rating is readonly (display only) */
2519
- readonly: boolean;
2519
+ readonly readonly: _angular_core.InputSignalWithTransform<boolean, unknown>;
2520
2520
  /** Whether to allow half-star ratings */
2521
- allowHalf: boolean;
2521
+ readonly allowHalf: _angular_core.InputSignalWithTransform<boolean, unknown>;
2522
2522
  /** Whether to show the current value */
2523
- showValue: boolean;
2523
+ readonly showValue: _angular_core.InputSignalWithTransform<boolean, unknown>;
2524
2524
  /** Whether to show cancel button */
2525
- showCancel: boolean;
2525
+ readonly showCancel: _angular_core.InputSignalWithTransform<boolean, unknown>;
2526
2526
  /** Aria label for accessibility */
2527
- ariaLabel: string;
2527
+ readonly ariaLabel: _angular_core.InputSignal<string>;
2528
2528
  /** Additional classes */
2529
- classOverride: string;
2529
+ readonly classOverride: _angular_core.InputSignal<string>;
2530
2530
  /** Change event */
2531
- change: EventEmitter<number>;
2531
+ readonly change: _angular_core.OutputEmitterRef<number>;
2532
2532
  /** Focus event */
2533
- focus: EventEmitter<FocusEvent>;
2533
+ readonly focus: _angular_core.OutputEmitterRef<FocusEvent>;
2534
2534
  /** Blur event */
2535
- blur: EventEmitter<FocusEvent>;
2536
- getFilledStars(index: number): number;
2537
- onStarClick(index: number): void;
2538
- writeValue(value: number): void;
2539
- registerOnChange(fn: (value: number) => void): void;
2540
- registerOnTouched(fn: () => void): void;
2541
- setDisabledState(isDisabled: boolean): void;
2535
+ readonly blur: _angular_core.OutputEmitterRef<FocusEvent>;
2536
+ private _disabled;
2537
+ protected isDisabled: _angular_core.Signal<boolean>;
2538
+ private readonly twClass;
2539
+ private onChangeFn;
2540
+ private onTouchedFn;
2542
2541
  protected value: _angular_core.WritableSignal<number>;
2543
2542
  protected hoverValue: _angular_core.WritableSignal<number | null>;
2544
2543
  protected starsArray: _angular_core.Signal<number[]>;
2545
2544
  protected containerClasses: _angular_core.Signal<string>;
2545
+ getFilledStars(index: number): number;
2546
2546
  protected starClasses(index: number): string;
2547
- private readonly twClass;
2548
- private onChangeFn;
2549
- private onTouchedFn;
2547
+ protected iconClasses(): string;
2548
+ protected valueClasses(): string;
2549
+ onStarClick(index: number): void;
2550
2550
  onStarHover(index: number): void;
2551
2551
  onStarLeave(): void;
2552
2552
  onInputBlur(event: FocusEvent): void;
2553
2553
  clear(): void;
2554
- protected iconClasses(): string;
2555
- protected valueClasses(): string;
2554
+ writeValue(value: number): void;
2555
+ registerOnChange(fn: (value: number) => void): void;
2556
+ registerOnTouched(fn: () => void): void;
2557
+ setDisabledState(isDisabled: boolean): void;
2556
2558
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwRatingComponent, never>;
2557
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwRatingComponent, "tw-rating", never, { "stars": { "alias": "stars"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "allowHalf": { "alias": "allowHalf"; "required": false; }; "showValue": { "alias": "showValue"; "required": false; }; "showCancel": { "alias": "showCancel"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "classOverride": { "alias": "classOverride"; "required": false; }; }, { "change": "change"; "focus": "focus"; "blur": "blur"; }, never, never, true, never>;
2558
- static ngAcceptInputType_stars: unknown;
2559
- static ngAcceptInputType_disabled: unknown;
2560
- static ngAcceptInputType_readonly: unknown;
2561
- static ngAcceptInputType_allowHalf: unknown;
2562
- static ngAcceptInputType_showValue: unknown;
2563
- static ngAcceptInputType_showCancel: unknown;
2559
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwRatingComponent, "tw-rating", never, { "stars": { "alias": "stars"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "allowHalf": { "alias": "allowHalf"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "showCancel": { "alias": "showCancel"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "classOverride": { "alias": "classOverride"; "required": false; "isSignal": true; }; }, { "change": "change"; "focus": "focus"; "blur": "blur"; }, never, never, true, never>;
2564
2560
  }
2565
2561
 
2566
2562
  type ChipVariant = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info';
@@ -2579,51 +2575,49 @@ type ChipSize = 'sm' | 'md' | 'lg';
2579
2575
  declare class TwChipComponent {
2580
2576
  private readonly twClass;
2581
2577
  /** Chip label text */
2582
- label: string;
2578
+ readonly label: _angular_core.InputSignal<string>;
2583
2579
  /** Visual variant */
2584
- variant: ChipVariant;
2580
+ readonly variant: _angular_core.InputSignal<ChipVariant>;
2585
2581
  /** Style variant */
2586
- chipStyle: ChipStyle;
2582
+ readonly chipStyle: _angular_core.InputSignal<ChipStyle>;
2587
2583
  /** Size */
2588
- size: ChipSize;
2584
+ readonly size: _angular_core.InputSignal<ChipSize>;
2589
2585
  /** Image URL for avatar chip */
2590
- image: string;
2586
+ readonly image: _angular_core.InputSignal<string>;
2591
2587
  /** Image alt text */
2592
- imageAlt: string;
2588
+ readonly imageAlt: _angular_core.InputSignal<string>;
2593
2589
  /** Whether the chip can be removed */
2594
- removable: boolean;
2590
+ readonly removable: _angular_core.InputSignalWithTransform<boolean, unknown>;
2595
2591
  /** Whether the chip is disabled */
2596
- disabled: boolean;
2592
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2597
2593
  /** Additional classes */
2598
- classOverride: string;
2594
+ readonly classOverride: _angular_core.InputSignal<string>;
2599
2595
  /** Remove event */
2600
- onRemove: EventEmitter<void>;
2596
+ readonly onRemove: _angular_core.OutputEmitterRef<void>;
2601
2597
  protected chipClasses: _angular_core.Signal<string>;
2602
2598
  protected imageClasses: _angular_core.Signal<string>;
2603
2599
  protected removeButtonClasses: _angular_core.Signal<string>;
2604
2600
  onRemoveClick(event: Event): void;
2605
2601
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwChipComponent, never>;
2606
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwChipComponent, "tw-chip", never, { "label": { "alias": "label"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "chipStyle": { "alias": "chipStyle"; "required": false; }; "size": { "alias": "size"; "required": false; }; "image": { "alias": "image"; "required": false; }; "imageAlt": { "alias": "imageAlt"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "classOverride": { "alias": "classOverride"; "required": false; }; }, { "onRemove": "onRemove"; }, never, ["[twChipIcon]", "*"], true, never>;
2607
- static ngAcceptInputType_removable: unknown;
2608
- static ngAcceptInputType_disabled: unknown;
2602
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwChipComponent, "tw-chip", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "chipStyle": { "alias": "chipStyle"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "image": { "alias": "image"; "required": false; "isSignal": true; }; "imageAlt": { "alias": "imageAlt"; "required": false; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "classOverride": { "alias": "classOverride"; "required": false; "isSignal": true; }; }, { "onRemove": "onRemove"; }, never, ["[twChipIcon]", "*"], true, never>;
2609
2603
  }
2610
2604
  /**
2611
2605
  * Chip input for creating/selecting multiple chips
2612
2606
  */
2613
2607
  declare class TwChipsComponent {
2614
2608
  private readonly twClass;
2615
- values: any[];
2616
- variant: ChipVariant;
2617
- chipStyle: ChipStyle;
2618
- size: ChipSize;
2619
- placeholder: string;
2620
- disabled: boolean;
2621
- allowAdd: boolean;
2622
- field: string;
2623
- classOverride: string;
2624
- valuesChange: EventEmitter<any[]>;
2625
- onAdd: EventEmitter<any>;
2626
- onRemove: EventEmitter<{
2609
+ readonly values: _angular_core.InputSignal<any[]>;
2610
+ readonly variant: _angular_core.InputSignal<ChipVariant>;
2611
+ readonly chipStyle: _angular_core.InputSignal<ChipStyle>;
2612
+ readonly size: _angular_core.InputSignal<ChipSize>;
2613
+ readonly placeholder: _angular_core.InputSignal<string>;
2614
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2615
+ readonly allowAdd: _angular_core.InputSignalWithTransform<boolean, unknown>;
2616
+ readonly field: _angular_core.InputSignal<string>;
2617
+ readonly classOverride: _angular_core.InputSignal<string>;
2618
+ readonly valuesChange: _angular_core.OutputEmitterRef<any[]>;
2619
+ readonly onAdd: _angular_core.OutputEmitterRef<any>;
2620
+ readonly onRemove: _angular_core.OutputEmitterRef<{
2627
2621
  value: any;
2628
2622
  index: number;
2629
2623
  }>;
@@ -2634,9 +2628,7 @@ declare class TwChipsComponent {
2634
2628
  onAddChip(event: Event): void;
2635
2629
  onBackspace(event: Event): void;
2636
2630
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwChipsComponent, never>;
2637
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwChipsComponent, "tw-chips", never, { "values": { "alias": "values"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "chipStyle": { "alias": "chipStyle"; "required": false; }; "size": { "alias": "size"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "allowAdd": { "alias": "allowAdd"; "required": false; }; "field": { "alias": "field"; "required": false; }; "classOverride": { "alias": "classOverride"; "required": false; }; }, { "valuesChange": "valuesChange"; "onAdd": "onAdd"; "onRemove": "onRemove"; }, never, never, true, never>;
2638
- static ngAcceptInputType_disabled: unknown;
2639
- static ngAcceptInputType_allowAdd: unknown;
2631
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwChipsComponent, "tw-chips", never, { "values": { "alias": "values"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "chipStyle": { "alias": "chipStyle"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "allowAdd": { "alias": "allowAdd"; "required": false; "isSignal": true; }; "field": { "alias": "field"; "required": false; "isSignal": true; }; "classOverride": { "alias": "classOverride"; "required": false; "isSignal": true; }; }, { "valuesChange": "valuesChange"; "onAdd": "onAdd"; "onRemove": "onRemove"; }, never, never, true, never>;
2640
2632
  }
2641
2633
 
2642
2634
  type CardVariant = 'elevated' | 'outlined' | 'filled' | 'ghost';
@@ -3961,17 +3953,17 @@ type TimelineAlign = 'left' | 'right' | 'alternate';
3961
3953
  declare class TwTimelineComponent {
3962
3954
  private readonly twClass;
3963
3955
  /** Events to display */
3964
- events: TimelineEvent[];
3956
+ readonly events: _angular_core.InputSignal<TimelineEvent[]>;
3965
3957
  /** Layout direction */
3966
- layout: TimelineLayout;
3958
+ readonly layout: _angular_core.InputSignal<TimelineLayout>;
3967
3959
  /** Content alignment */
3968
- align: TimelineAlign;
3960
+ readonly align: _angular_core.InputSignal<TimelineAlign>;
3969
3961
  /** Marker size */
3970
- markerSize: 'sm' | 'md' | 'lg';
3962
+ readonly markerSize: _angular_core.InputSignal<"sm" | "md" | "lg">;
3971
3963
  /** Track by function for ngFor */
3972
- trackByFn: (event: TimelineEvent) => any;
3964
+ readonly trackByFn: _angular_core.InputSignal<(event: TimelineEvent) => any>;
3973
3965
  /** Additional classes */
3974
- classOverride: string;
3966
+ readonly classOverride: _angular_core.InputSignal<string>;
3975
3967
  private readonly MARKER_SIZES;
3976
3968
  protected containerClasses: _angular_core.Signal<string>;
3977
3969
  protected itemClasses(isFirst: boolean, isLast: boolean): string;
@@ -3984,7 +3976,7 @@ declare class TwTimelineComponent {
3984
3976
  protected titleClasses(): string;
3985
3977
  protected descriptionClasses(): string;
3986
3978
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwTimelineComponent, never>;
3987
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwTimelineComponent, "tw-timeline", never, { "events": { "alias": "events"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "align": { "alias": "align"; "required": false; }; "markerSize": { "alias": "markerSize"; "required": false; }; "trackByFn": { "alias": "trackByFn"; "required": false; }; "classOverride": { "alias": "classOverride"; "required": false; }; }, {}, never, never, true, never>;
3979
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwTimelineComponent, "tw-timeline", never, { "events": { "alias": "events"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "markerSize": { "alias": "markerSize"; "required": false; "isSignal": true; }; "trackByFn": { "alias": "trackByFn"; "required": false; "isSignal": true; }; "classOverride": { "alias": "classOverride"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3988
3980
  }
3989
3981
 
3990
3982
  interface BreadcrumbItem {
@@ -4064,25 +4056,25 @@ type StepsSize = 'sm' | 'md' | 'lg';
4064
4056
  declare class TwStepsComponent {
4065
4057
  private readonly twClass;
4066
4058
  /** Step definitions */
4067
- steps: StepItem[];
4059
+ readonly steps: _angular_core.InputSignal<StepItem[]>;
4068
4060
  /** Current active step index */
4069
- activeIndex: number;
4061
+ readonly activeIndex: _angular_core.InputSignalWithTransform<number, unknown>;
4070
4062
  /** Orientation */
4071
- orientation: StepsOrientation;
4063
+ readonly orientation: _angular_core.InputSignal<StepsOrientation>;
4072
4064
  /** Size variant */
4073
- size: StepsSize;
4065
+ readonly size: _angular_core.InputSignal<StepsSize>;
4074
4066
  /** Whether to show labels */
4075
- showLabels: boolean;
4067
+ readonly showLabels: _angular_core.InputSignalWithTransform<boolean, unknown>;
4076
4068
  /** Whether steps are readonly (non-clickable) */
4077
- readonly: boolean;
4069
+ readonly readonlyMode: _angular_core.InputSignalWithTransform<boolean, unknown>;
4078
4070
  /** Whether to allow clicking future steps */
4079
- linear: boolean;
4071
+ readonly linear: _angular_core.InputSignalWithTransform<boolean, unknown>;
4080
4072
  /** Additional classes */
4081
- classOverride: string;
4073
+ readonly classOverride: _angular_core.InputSignal<string>;
4082
4074
  /** Active index change event */
4083
- activeIndexChange: EventEmitter<number>;
4075
+ readonly activeIndexChange: _angular_core.OutputEmitterRef<number>;
4084
4076
  /** Step click event */
4085
- onStepClick$: EventEmitter<{
4077
+ readonly onStepClick$: _angular_core.OutputEmitterRef<{
4086
4078
  step: StepItem;
4087
4079
  index: number;
4088
4080
  }>;
@@ -4107,11 +4099,7 @@ declare class TwStepsComponent {
4107
4099
  /** Go to specific step */
4108
4100
  goTo(index: number): void;
4109
4101
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwStepsComponent, never>;
4110
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwStepsComponent, "tw-steps", never, { "steps": { "alias": "steps"; "required": false; }; "activeIndex": { "alias": "activeIndex"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showLabels": { "alias": "showLabels"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "linear": { "alias": "linear"; "required": false; }; "classOverride": { "alias": "classOverride"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; "onStepClick$": "onStepClick$"; }, never, never, true, never>;
4111
- static ngAcceptInputType_activeIndex: unknown;
4112
- static ngAcceptInputType_showLabels: unknown;
4113
- static ngAcceptInputType_readonly: unknown;
4114
- static ngAcceptInputType_linear: unknown;
4102
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwStepsComponent, "tw-steps", never, { "steps": { "alias": "steps"; "required": false; "isSignal": true; }; "activeIndex": { "alias": "activeIndex"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showLabels": { "alias": "showLabels"; "required": false; "isSignal": true; }; "readonlyMode": { "alias": "readonly"; "required": false; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "classOverride": { "alias": "classOverride"; "required": false; "isSignal": true; }; }, { "activeIndexChange": "activeIndexChange"; "onStepClick$": "onStepClick$"; }, never, never, true, never>;
4115
4103
  }
4116
4104
 
4117
4105
  interface MenuItem {
@@ -4913,38 +4901,35 @@ type ImageBorderRadius = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | 'f
4913
4901
  declare class TwImageComponent {
4914
4902
  private readonly twClass;
4915
4903
  /** Image source URL */
4916
- src: string;
4904
+ readonly src: _angular_core.InputSignal<string>;
4917
4905
  /** Alternative text */
4918
- alt: string;
4906
+ readonly alt: _angular_core.InputSignal<string>;
4919
4907
  /** Preview source (larger image for preview) */
4920
- previewSrc: string;
4908
+ readonly previewSrc: _angular_core.InputSignal<string>;
4921
4909
  /** Width of the image */
4922
- width: string;
4910
+ readonly width: _angular_core.InputSignal<string>;
4923
4911
  /** Height of the image */
4924
- height: string;
4912
+ readonly height: _angular_core.InputSignal<string>;
4925
4913
  /** Object fit */
4926
- set fit(value: ImageFit);
4927
- protected _fit: _angular_core.WritableSignal<ImageFit>;
4914
+ readonly fit: _angular_core.InputSignal<ImageFit>;
4928
4915
  /** Border radius */
4929
- set borderRadius(value: ImageBorderRadius);
4930
- protected _borderRadius: _angular_core.WritableSignal<ImageBorderRadius>;
4916
+ readonly borderRadius: _angular_core.InputSignal<ImageBorderRadius>;
4931
4917
  /** Whether to enable preview on click */
4932
- set preview(value: boolean);
4933
- protected _preview: _angular_core.WritableSignal<boolean>;
4918
+ readonly preview: _angular_core.InputSignalWithTransform<boolean, unknown>;
4934
4919
  /** Whether zoom is enabled in preview */
4935
- zoomable: boolean;
4920
+ readonly zoomable: _angular_core.InputSignalWithTransform<boolean, unknown>;
4936
4921
  /** Whether rotation is enabled in preview */
4937
- rotatable: boolean;
4922
+ readonly rotatable: _angular_core.InputSignalWithTransform<boolean, unknown>;
4938
4923
  /** Additional classes */
4939
- classOverride: string;
4924
+ readonly classOverride: _angular_core.InputSignal<string>;
4940
4925
  /** Preview show event */
4941
- onShow: EventEmitter<void>;
4926
+ readonly onShow: _angular_core.OutputEmitterRef<void>;
4942
4927
  /** Preview hide event */
4943
- onHide: EventEmitter<void>;
4928
+ readonly onHide: _angular_core.OutputEmitterRef<void>;
4944
4929
  /** Image load event */
4945
- onLoad: EventEmitter<void>;
4930
+ readonly onLoad: _angular_core.OutputEmitterRef<void>;
4946
4931
  /** Image error event */
4947
- onError: EventEmitter<void>;
4932
+ readonly onError: _angular_core.OutputEmitterRef<void>;
4948
4933
  protected loading: _angular_core.WritableSignal<boolean>;
4949
4934
  protected previewVisible: _angular_core.WritableSignal<boolean>;
4950
4935
  protected zoomLevel: _angular_core.WritableSignal<number>;
@@ -4966,10 +4951,7 @@ declare class TwImageComponent {
4966
4951
  rotateLeft(): void;
4967
4952
  rotateRight(): void;
4968
4953
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwImageComponent, never>;
4969
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwImageComponent, "tw-image", never, { "src": { "alias": "src"; "required": true; }; "alt": { "alias": "alt"; "required": false; }; "previewSrc": { "alias": "previewSrc"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "zoomable": { "alias": "zoomable"; "required": false; }; "rotatable": { "alias": "rotatable"; "required": false; }; "classOverride": { "alias": "classOverride"; "required": false; }; }, { "onShow": "onShow"; "onHide": "onHide"; "onLoad": "onLoad"; "onError": "onError"; }, never, never, true, never>;
4970
- static ngAcceptInputType_preview: unknown;
4971
- static ngAcceptInputType_zoomable: unknown;
4972
- static ngAcceptInputType_rotatable: unknown;
4954
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwImageComponent, "tw-image", never, { "src": { "alias": "src"; "required": true; "isSignal": true; }; "alt": { "alias": "alt"; "required": false; "isSignal": true; }; "previewSrc": { "alias": "previewSrc"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "fit": { "alias": "fit"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; "preview": { "alias": "preview"; "required": false; "isSignal": true; }; "zoomable": { "alias": "zoomable"; "required": false; "isSignal": true; }; "rotatable": { "alias": "rotatable"; "required": false; "isSignal": true; }; "classOverride": { "alias": "classOverride"; "required": false; "isSignal": true; }; }, { "onShow": "onShow"; "onHide": "onHide"; "onLoad": "onLoad"; "onError": "onError"; }, never, never, true, never>;
4973
4955
  }
4974
4956
 
4975
4957
  type ScrollTopPosition = 'bottom-right' | 'bottom-left' | 'bottom-center';
@@ -6914,7 +6896,7 @@ declare class TwNoteComponent {
6914
6896
  protected readonly stemX: _angular_core.Signal<number>;
6915
6897
  protected readonly stemY1: _angular_core.Signal<number>;
6916
6898
  protected readonly stemY2: _angular_core.Signal<number>;
6917
- protected readonly flagCount: _angular_core.Signal<2 | 0 | 1 | 3>;
6899
+ protected readonly flagCount: _angular_core.Signal<1 | 0 | 2 | 3>;
6918
6900
  protected readonly noteColor: _angular_core.Signal<string>;
6919
6901
  protected readonly noteHeadFill: _angular_core.Signal<string>;
6920
6902
  protected readonly containerClasses: _angular_core.Signal<string>;
@@ -6976,11 +6958,11 @@ declare class TwNoteInputComponent implements AfterViewInit, OnDestroy {
6976
6958
  readonly lineSpacing: _angular_core.InputSignalWithTransform<number, unknown>;
6977
6959
  readonly editable: _angular_core.InputSignal<boolean>;
6978
6960
  readonly showVoiceColors: _angular_core.InputSignal<boolean>;
6979
- readonly maxVoices: _angular_core.InputSignal<1 | 2 | 3 | 4>;
6961
+ readonly maxVoices: _angular_core.InputSignal<2 | 1 | 3 | 4>;
6980
6962
  readonly enableMidiInput: _angular_core.InputSignal<boolean>;
6981
6963
  readonly enableKeyboardShortcuts: _angular_core.InputSignal<boolean>;
6982
6964
  readonly snapToGrid: _angular_core.InputSignal<boolean>;
6983
- readonly gridDivision: _angular_core.InputSignal<8 | 4 | 16>;
6965
+ readonly gridDivision: _angular_core.InputSignal<4 | 8 | 16>;
6984
6966
  readonly initialNotes: _angular_core.InputSignal<PlacedNote[]>;
6985
6967
  readonly noteAdded: _angular_core.OutputEmitterRef<NoteInputEvent>;
6986
6968
  readonly noteRemoved: _angular_core.OutputEmitterRef<NoteInputEvent>;
@@ -7705,7 +7687,7 @@ declare class TwScoreEditorComponent implements OnDestroy {
7705
7687
  protected readonly currentAccidental: _angular_core.WritableSignal<NoteAccidental>;
7706
7688
  protected readonly isDotted: _angular_core.WritableSignal<boolean>;
7707
7689
  protected readonly isRest: _angular_core.WritableSignal<boolean>;
7708
- protected readonly currentVoice: _angular_core.WritableSignal<1 | 2 | 3 | 4>;
7690
+ protected readonly currentVoice: _angular_core.WritableSignal<2 | 1 | 3 | 4>;
7709
7691
  protected readonly undoStack: _angular_core.WritableSignal<HistoryEntry[]>;
7710
7692
  protected readonly redoStack: _angular_core.WritableSignal<HistoryEntry[]>;
7711
7693
  protected readonly showPartDialog: _angular_core.WritableSignal<boolean>;
@@ -10222,6 +10204,1699 @@ declare class AudioWorkerService implements OnDestroy {
10222
10204
  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
10205
  declare const TW_MUSIC_DIRECTIVES: readonly [typeof TwTouchGuardDirective, typeof TwMidiLearnDirective];
10224
10206
 
10207
+ /**
10208
+ * Native App UI Component Types
10209
+ */
10210
+ type Platform = 'macos' | 'windows' | 'linux' | 'web' | 'tauri' | 'electron';
10211
+ type PlatformTheme = 'light' | 'dark' | 'system';
10212
+ interface WindowState {
10213
+ isMaximized: boolean;
10214
+ isMinimized: boolean;
10215
+ isFullscreen: boolean;
10216
+ isFocused: boolean;
10217
+ }
10218
+ type TitleBarVariant = 'default' | 'transparent' | 'unified';
10219
+ type TitleBarPlatform = 'macos' | 'windows' | 'linux' | 'web' | 'auto' | 'tauri' | 'electron';
10220
+ type WindowControlsPosition = 'left' | 'right';
10221
+ type WindowControlButton = 'close' | 'minimize' | 'maximize' | 'fullscreen';
10222
+ interface NativeMenuItem {
10223
+ id: string;
10224
+ label: string;
10225
+ icon?: string;
10226
+ shortcut?: string;
10227
+ disabled?: boolean;
10228
+ checked?: boolean;
10229
+ type?: 'normal' | 'separator' | 'checkbox' | 'radio' | 'submenu';
10230
+ submenu?: NativeMenuItem[];
10231
+ action?: () => void;
10232
+ }
10233
+ interface NativeMenuBarItem {
10234
+ id: string;
10235
+ label: string;
10236
+ items: NativeMenuItem[];
10237
+ }
10238
+ interface NativeContextMenuPosition {
10239
+ x: number;
10240
+ y: number;
10241
+ }
10242
+ interface NativeContextMenuEvent {
10243
+ item: NativeMenuItem;
10244
+ originalEvent: MouseEvent;
10245
+ }
10246
+ interface SidebarItem {
10247
+ id: string;
10248
+ label: string;
10249
+ icon?: string;
10250
+ badge?: string | number;
10251
+ children?: SidebarItem[];
10252
+ expanded?: boolean;
10253
+ active?: boolean;
10254
+ disabled?: boolean;
10255
+ data?: unknown;
10256
+ }
10257
+ type NativeSidebarVariant = 'default' | 'compact' | 'floating';
10258
+ type NativeSidebarPosition = 'left' | 'right';
10259
+ interface FileTreeNode {
10260
+ id: string;
10261
+ name: string;
10262
+ type: 'file' | 'folder';
10263
+ icon?: string;
10264
+ children?: FileTreeNode[];
10265
+ expanded?: boolean;
10266
+ selected?: boolean;
10267
+ path?: string;
10268
+ size?: number;
10269
+ modified?: Date;
10270
+ data?: unknown;
10271
+ }
10272
+ interface FileTreeEvent {
10273
+ node: FileTreeNode;
10274
+ action: 'select' | 'expand' | 'collapse' | 'rename' | 'delete' | 'create';
10275
+ }
10276
+ interface TabItem {
10277
+ id: string;
10278
+ label: string;
10279
+ icon?: string;
10280
+ closable?: boolean;
10281
+ dirty?: boolean;
10282
+ pinned?: boolean;
10283
+ tooltip?: string;
10284
+ data?: unknown;
10285
+ }
10286
+ type TabBarVariant = 'default' | 'pills' | 'underline' | 'boxed';
10287
+ type TabBarPosition = 'top' | 'bottom';
10288
+ interface TabEvent {
10289
+ tab: TabItem;
10290
+ index: number;
10291
+ action: 'select' | 'close' | 'pin' | 'unpin' | 'reorder';
10292
+ }
10293
+ interface CommandItem {
10294
+ id: string;
10295
+ label: string;
10296
+ description?: string;
10297
+ icon?: string;
10298
+ shortcut?: string;
10299
+ category?: string;
10300
+ keywords?: string[];
10301
+ action: () => void | Promise<void>;
10302
+ }
10303
+ interface CommandPaletteMode {
10304
+ id: string;
10305
+ label: string;
10306
+ placeholder: string;
10307
+ prefix?: string;
10308
+ items: CommandItem[] | (() => CommandItem[] | Promise<CommandItem[]>);
10309
+ }
10310
+ interface SearchSuggestion {
10311
+ id: string;
10312
+ label: string;
10313
+ description?: string;
10314
+ icon?: string;
10315
+ type?: string;
10316
+ data?: unknown;
10317
+ }
10318
+ interface SearchFilter {
10319
+ id: string;
10320
+ label: string;
10321
+ value: string;
10322
+ icon?: string;
10323
+ }
10324
+ type AlertDialogType = 'info' | 'success' | 'warning' | 'error';
10325
+ interface AlertDialogConfig {
10326
+ title: string;
10327
+ message: string;
10328
+ type?: AlertDialogType;
10329
+ confirmLabel?: string;
10330
+ showDontAskAgain?: boolean;
10331
+ }
10332
+ interface ConfirmDialogConfig {
10333
+ title: string;
10334
+ message: string;
10335
+ type?: AlertDialogType;
10336
+ confirmLabel?: string;
10337
+ cancelLabel?: string;
10338
+ destructive?: boolean;
10339
+ }
10340
+ interface AboutDialogConfig {
10341
+ appName: string;
10342
+ appIcon?: string;
10343
+ version: string;
10344
+ copyright?: string;
10345
+ description?: string;
10346
+ credits?: string[];
10347
+ links?: {
10348
+ label: string;
10349
+ url: string;
10350
+ }[];
10351
+ }
10352
+ interface TerminalLine {
10353
+ id: string;
10354
+ content: string;
10355
+ type: 'input' | 'output' | 'error' | 'info' | 'success' | 'warning';
10356
+ timestamp?: Date;
10357
+ }
10358
+ type TerminalVariant = 'default' | 'dark' | 'light' | 'retro';
10359
+ interface LogEntry {
10360
+ id: string;
10361
+ timestamp: Date;
10362
+ level: 'debug' | 'info' | 'warn' | 'error' | 'fatal';
10363
+ message: string;
10364
+ source?: string;
10365
+ details?: unknown;
10366
+ }
10367
+ interface LogFilter {
10368
+ levels?: LogEntry['level'][];
10369
+ source?: string;
10370
+ search?: string;
10371
+ startTime?: Date;
10372
+ endTime?: Date;
10373
+ }
10374
+ interface StatusBarItem {
10375
+ id: string;
10376
+ content: string;
10377
+ icon?: string;
10378
+ tooltip?: string;
10379
+ position: 'left' | 'center' | 'right';
10380
+ priority?: number;
10381
+ clickable?: boolean;
10382
+ action?: () => void;
10383
+ }
10384
+ interface ToolbarItem {
10385
+ id: string;
10386
+ type: 'button' | 'toggle' | 'dropdown' | 'separator' | 'spacer' | 'custom';
10387
+ label?: string;
10388
+ icon?: string;
10389
+ tooltip?: string;
10390
+ disabled?: boolean;
10391
+ active?: boolean;
10392
+ items?: ToolbarItem[];
10393
+ action?: () => void;
10394
+ }
10395
+ type ToolbarVariant = 'default' | 'compact' | 'large';
10396
+ type ToolbarPosition = 'top' | 'bottom' | 'left' | 'right';
10397
+ interface DragData {
10398
+ type: string;
10399
+ data: unknown;
10400
+ source?: string;
10401
+ }
10402
+ interface DropEvent {
10403
+ data: DragData;
10404
+ position: {
10405
+ x: number;
10406
+ y: number;
10407
+ };
10408
+ target: HTMLElement;
10409
+ }
10410
+ interface KeyboardShortcut {
10411
+ key: string;
10412
+ ctrl?: boolean;
10413
+ alt?: boolean;
10414
+ shift?: boolean;
10415
+ meta?: boolean;
10416
+ action: () => void;
10417
+ description?: string;
10418
+ }
10419
+ interface StorageOptions {
10420
+ encrypt?: boolean;
10421
+ expires?: Date | number;
10422
+ }
10423
+ interface IpcMessage<T = unknown> {
10424
+ channel: string;
10425
+ payload: T;
10426
+ id?: string;
10427
+ }
10428
+ interface IpcResponse<T = unknown> {
10429
+ success: boolean;
10430
+ data?: T;
10431
+ error?: string;
10432
+ }
10433
+
10434
+ /**
10435
+ * Service for detecting and interacting with the native platform
10436
+ * Supports Tauri, Electron, and web browsers
10437
+ */
10438
+ declare class NativeAppPlatformService {
10439
+ private readonly _platform;
10440
+ private readonly _isTauri;
10441
+ private readonly _isElectron;
10442
+ private readonly _theme;
10443
+ private readonly _windowState;
10444
+ readonly platform: _angular_core.Signal<Platform>;
10445
+ readonly isTauri: _angular_core.Signal<boolean>;
10446
+ readonly isElectron: _angular_core.Signal<boolean>;
10447
+ readonly isNative: _angular_core.Signal<boolean>;
10448
+ readonly isWeb: _angular_core.Signal<boolean>;
10449
+ readonly theme: _angular_core.Signal<PlatformTheme>;
10450
+ readonly windowState: _angular_core.Signal<WindowState>;
10451
+ readonly isDarkMode: _angular_core.Signal<boolean>;
10452
+ constructor();
10453
+ private detectPlatform;
10454
+ private checkTauri;
10455
+ private checkElectron;
10456
+ private initThemeListener;
10457
+ private initWindowStateListener;
10458
+ setTheme(theme: PlatformTheme): void;
10459
+ minimize(): Promise<void>;
10460
+ maximize(): Promise<void>;
10461
+ close(): Promise<void>;
10462
+ toggleFullscreen(): Promise<void>;
10463
+ setTitle(title: string): Promise<void>;
10464
+ getModifierKey(): string;
10465
+ getAltKey(): string;
10466
+ formatShortcut(shortcut: string): string;
10467
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NativeAppPlatformService, never>;
10468
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<NativeAppPlatformService>;
10469
+ }
10470
+
10471
+ /**
10472
+ * Custom window title bar component
10473
+ * Replaces the native title bar with a draggable custom one
10474
+ *
10475
+ * @example
10476
+ * ```html
10477
+ * <tw-title-bar title="My App"></tw-title-bar>
10478
+ * <tw-title-bar title="My App" [showIcon]="true" icon="assets/icon.png"></tw-title-bar>
10479
+ * <tw-title-bar variant="transparent" platform="macos"></tw-title-bar>
10480
+ * ```
10481
+ */
10482
+ declare class TwTitleBarComponent {
10483
+ protected readonly platformService: NativeAppPlatformService;
10484
+ readonly title: _angular_core.InputSignal<string>;
10485
+ readonly icon: _angular_core.InputSignal<string | undefined>;
10486
+ readonly showIcon: _angular_core.InputSignal<boolean>;
10487
+ readonly variant: _angular_core.InputSignal<TitleBarVariant>;
10488
+ readonly platform: _angular_core.InputSignal<TitleBarPlatform>;
10489
+ readonly height: _angular_core.InputSignal<number>;
10490
+ readonly showClose: _angular_core.InputSignal<boolean>;
10491
+ readonly showMinimize: _angular_core.InputSignal<boolean>;
10492
+ readonly showMaximize: _angular_core.InputSignal<boolean>;
10493
+ readonly showFullscreen: _angular_core.InputSignal<boolean>;
10494
+ readonly doubleClick: _angular_core.OutputEmitterRef<void>;
10495
+ protected readonly effectivePlatform: _angular_core.Signal<_pegasusheavy_ngx_tailwindcss.Platform>;
10496
+ protected readonly containerClasses: _angular_core.Signal<string>;
10497
+ protected onDoubleClick(): void;
10498
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwTitleBarComponent, never>;
10499
+ 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>;
10500
+ }
10501
+
10502
+ /**
10503
+ * Window control buttons (minimize, maximize, close)
10504
+ * Automatically adapts to platform style (macOS traffic lights, Windows, Linux)
10505
+ *
10506
+ * @example
10507
+ * ```html
10508
+ * <tw-window-controls></tw-window-controls>
10509
+ * <tw-window-controls platform="macos"></tw-window-controls>
10510
+ * <tw-window-controls [showFullscreen]="true"></tw-window-controls>
10511
+ * ```
10512
+ */
10513
+ declare class TwWindowControlsComponent {
10514
+ protected readonly platformService: NativeAppPlatformService;
10515
+ readonly platform: _angular_core.InputSignal<TitleBarPlatform>;
10516
+ readonly showClose: _angular_core.InputSignal<boolean>;
10517
+ readonly showMinimize: _angular_core.InputSignal<boolean>;
10518
+ readonly showMaximize: _angular_core.InputSignal<boolean>;
10519
+ readonly showFullscreen: _angular_core.InputSignal<boolean>;
10520
+ readonly disabled: _angular_core.InputSignal<boolean>;
10521
+ readonly closeClick: _angular_core.OutputEmitterRef<void>;
10522
+ readonly minimizeClick: _angular_core.OutputEmitterRef<void>;
10523
+ readonly maximizeClick: _angular_core.OutputEmitterRef<void>;
10524
+ readonly fullscreenClick: _angular_core.OutputEmitterRef<void>;
10525
+ protected hovered: boolean;
10526
+ protected readonly effectivePlatform: _angular_core.Signal<_pegasusheavy_ngx_tailwindcss.Platform>;
10527
+ protected readonly containerClasses: _angular_core.Signal<"flex items-center" | "flex items-center -mr-1">;
10528
+ protected onClose(): void;
10529
+ protected onMinimize(): void;
10530
+ protected onMaximize(): void;
10531
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwWindowControlsComponent, never>;
10532
+ 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>;
10533
+ }
10534
+
10535
+ /**
10536
+ * Application menu bar component
10537
+ * Provides a native-style menu bar with dropdown menus
10538
+ *
10539
+ * @example
10540
+ * ```html
10541
+ * <tw-menu-bar [items]="menuItems" (itemSelect)="onMenuSelect($event)"></tw-menu-bar>
10542
+ * ```
10543
+ */
10544
+ declare class TwMenuBarComponent {
10545
+ private readonly platformService;
10546
+ private readonly elementRef;
10547
+ readonly items: _angular_core.InputSignal<NativeMenuBarItem[]>;
10548
+ readonly itemSelect: _angular_core.OutputEmitterRef<NativeMenuItem>;
10549
+ readonly menuOpen: _angular_core.OutputEmitterRef<string>;
10550
+ readonly menuClose: _angular_core.OutputEmitterRef<void>;
10551
+ protected readonly openMenuId: _angular_core.WritableSignal<string | null>;
10552
+ protected readonly hoveredItemId: _angular_core.WritableSignal<string | null>;
10553
+ protected onDocumentClick(event: MouseEvent): void;
10554
+ protected onEscape(): void;
10555
+ protected toggleMenu(menuId: string): void;
10556
+ protected onMenuHover(menuId: string): void;
10557
+ protected closeMenu(): void;
10558
+ protected selectItem(item: NativeMenuItem): void;
10559
+ protected formatShortcut(shortcut: string): string;
10560
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwMenuBarComponent, never>;
10561
+ 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>;
10562
+ }
10563
+
10564
+ /**
10565
+ * Context menu component (right-click menu)
10566
+ *
10567
+ * @example
10568
+ * ```html
10569
+ * <tw-context-menu [items]="menuItems" [trigger]="targetElement" (itemSelect)="onSelect($event)"></tw-context-menu>
10570
+ * ```
10571
+ */
10572
+ declare class TwNativeContextMenuComponent implements OnInit, OnDestroy {
10573
+ private readonly platformService;
10574
+ readonly items: _angular_core.InputSignal<NativeMenuItem[]>;
10575
+ readonly trigger: _angular_core.InputSignal<HTMLElement | null>;
10576
+ readonly itemSelect: _angular_core.OutputEmitterRef<NativeContextMenuEvent>;
10577
+ readonly opened: _angular_core.OutputEmitterRef<NativeContextMenuPosition>;
10578
+ readonly closed: _angular_core.OutputEmitterRef<void>;
10579
+ protected readonly isOpen: _angular_core.WritableSignal<boolean>;
10580
+ protected readonly position: _angular_core.WritableSignal<NativeContextMenuPosition>;
10581
+ protected readonly hoveredItemId: _angular_core.WritableSignal<string | null>;
10582
+ private contextMenuHandler;
10583
+ ngOnInit(): void;
10584
+ ngOnDestroy(): void;
10585
+ protected onDocumentClick(): void;
10586
+ protected onEscape(): void;
10587
+ protected onScroll(): void;
10588
+ private onContextMenu;
10589
+ protected selectItem(item: NativeMenuItem, event: MouseEvent): void;
10590
+ protected formatShortcut(shortcut: string): string;
10591
+ open(x: number, y: number): void;
10592
+ close(): void;
10593
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwNativeContextMenuComponent, never>;
10594
+ 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>;
10595
+ }
10596
+
10597
+ /**
10598
+ * Collapsible sidebar navigation component
10599
+ * Supports nested items, badges, icons, and multiple variants
10600
+ *
10601
+ * @example
10602
+ * ```html
10603
+ * <tw-sidebar-nav [items]="navItems" (itemSelect)="onNavigate($event)"></tw-sidebar-nav>
10604
+ * <tw-sidebar-nav [items]="navItems" [collapsed]="isCollapsed" variant="compact"></tw-sidebar-nav>
10605
+ * ```
10606
+ */
10607
+ declare class TwSidebarNavComponent {
10608
+ private readonly twClass;
10609
+ readonly items: _angular_core.InputSignal<SidebarItem[]>;
10610
+ readonly variant: _angular_core.InputSignal<NativeSidebarVariant>;
10611
+ readonly position: _angular_core.InputSignal<NativeSidebarPosition>;
10612
+ readonly width: _angular_core.InputSignal<number>;
10613
+ readonly collapsedWidth: _angular_core.InputSignal<number>;
10614
+ readonly collapsed: _angular_core.InputSignal<boolean>;
10615
+ readonly collapsible: _angular_core.InputSignal<boolean>;
10616
+ readonly showHeader: _angular_core.InputSignal<boolean>;
10617
+ readonly headerTitle: _angular_core.InputSignal<string>;
10618
+ readonly itemSelect: _angular_core.OutputEmitterRef<SidebarItem>;
10619
+ readonly itemExpand: _angular_core.OutputEmitterRef<SidebarItem>;
10620
+ readonly collapsedChange: _angular_core.OutputEmitterRef<boolean>;
10621
+ private readonly _collapsed;
10622
+ protected readonly containerClasses: _angular_core.Signal<string>;
10623
+ protected getItemClasses(item: SidebarItem, depth: number): string;
10624
+ protected toggleCollapse(): void;
10625
+ protected onItemClick(item: SidebarItem): void;
10626
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwSidebarNavComponent, never>;
10627
+ 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>;
10628
+ }
10629
+
10630
+ /**
10631
+ * File tree / explorer component
10632
+ * Displays hierarchical file/folder structure with expand/collapse
10633
+ *
10634
+ * @example
10635
+ * ```html
10636
+ * <tw-file-tree [nodes]="files" (nodeSelect)="onFileSelect($event)"></tw-file-tree>
10637
+ * ```
10638
+ */
10639
+ declare class TwFileTreeComponent {
10640
+ readonly nodes: _angular_core.InputSignal<FileTreeNode[]>;
10641
+ readonly showSize: _angular_core.InputSignal<boolean>;
10642
+ readonly showDate: _angular_core.InputSignal<boolean>;
10643
+ readonly multiSelect: _angular_core.InputSignal<boolean>;
10644
+ readonly nodeSelect: _angular_core.OutputEmitterRef<FileTreeEvent>;
10645
+ readonly nodeExpand: _angular_core.OutputEmitterRef<FileTreeEvent>;
10646
+ readonly nodeCollapse: _angular_core.OutputEmitterRef<FileTreeEvent>;
10647
+ readonly nodeDoubleClick: _angular_core.OutputEmitterRef<FileTreeEvent>;
10648
+ protected readonly selectedNodes: _angular_core.WritableSignal<Set<string>>;
10649
+ protected onNodeClick(node: FileTreeNode): void;
10650
+ protected onNodeDoubleClick(node: FileTreeNode): void;
10651
+ protected toggleExpand(node: FileTreeNode, event?: MouseEvent): void;
10652
+ private clearSelection;
10653
+ protected formatSize(bytes: number): string;
10654
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwFileTreeComponent, never>;
10655
+ 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>;
10656
+ }
10657
+
10658
+ interface NativeBreadcrumbItem {
10659
+ id: string;
10660
+ label: string;
10661
+ icon?: string;
10662
+ path?: string;
10663
+ data?: unknown;
10664
+ }
10665
+ /**
10666
+ * Breadcrumb navigation component
10667
+ * Shows path-based navigation with click-to-navigate
10668
+ *
10669
+ * @example
10670
+ * ```html
10671
+ * <tw-breadcrumbs-nav [items]="breadcrumbs" (itemSelect)="onNavigate($event)"></tw-breadcrumbs-nav>
10672
+ * ```
10673
+ */
10674
+ declare class TwBreadcrumbsNavComponent {
10675
+ readonly items: _angular_core.InputSignal<NativeBreadcrumbItem[]>;
10676
+ readonly showHome: _angular_core.InputSignal<boolean>;
10677
+ readonly editable: _angular_core.InputSignal<boolean>;
10678
+ readonly showCopyButton: _angular_core.InputSignal<boolean>;
10679
+ readonly separator: _angular_core.InputSignal<string>;
10680
+ readonly itemSelect: _angular_core.OutputEmitterRef<NativeBreadcrumbItem>;
10681
+ readonly homeSelect: _angular_core.OutputEmitterRef<void>;
10682
+ readonly pathChange: _angular_core.OutputEmitterRef<string>;
10683
+ readonly pathCopy: _angular_core.OutputEmitterRef<string>;
10684
+ protected readonly isEditing: _angular_core.WritableSignal<boolean>;
10685
+ protected readonly editPath: _angular_core.WritableSignal<string>;
10686
+ protected onHomeClick(): void;
10687
+ protected onItemClick(item: NativeBreadcrumbItem): void;
10688
+ protected startEdit(): void;
10689
+ protected cancelEdit(): void;
10690
+ protected onPathInput(event: Event): void;
10691
+ protected submitPath(): void;
10692
+ protected copyPath(): Promise<void>;
10693
+ getPath(): string;
10694
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwBreadcrumbsNavComponent, never>;
10695
+ 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>;
10696
+ }
10697
+
10698
+ /**
10699
+ * Document/file tab bar component
10700
+ * Supports closable tabs, drag to reorder, pinning, and dirty indicators
10701
+ *
10702
+ * @example
10703
+ * ```html
10704
+ * <tw-tab-bar [tabs]="openTabs" [activeTabId]="currentTabId" (tabSelect)="onTabSelect($event)"></tw-tab-bar>
10705
+ * ```
10706
+ */
10707
+ declare class TwTabBarComponent {
10708
+ readonly tabs: _angular_core.InputSignal<TabItem[]>;
10709
+ readonly activeTabId: _angular_core.InputSignal<string | null>;
10710
+ readonly variant: _angular_core.InputSignal<TabBarVariant>;
10711
+ readonly position: _angular_core.InputSignal<TabBarPosition>;
10712
+ readonly showAddButton: _angular_core.InputSignal<boolean>;
10713
+ readonly showOverflowMenu: _angular_core.InputSignal<boolean>;
10714
+ readonly tabSelect: _angular_core.OutputEmitterRef<TabEvent>;
10715
+ readonly tabClose: _angular_core.OutputEmitterRef<TabEvent>;
10716
+ readonly tabPin: _angular_core.OutputEmitterRef<TabEvent>;
10717
+ readonly tabReorder: _angular_core.OutputEmitterRef<{
10718
+ from: number;
10719
+ to: number;
10720
+ }>;
10721
+ readonly addTab: _angular_core.OutputEmitterRef<void>;
10722
+ readonly closeAll: _angular_core.OutputEmitterRef<void>;
10723
+ readonly closeOthers: _angular_core.OutputEmitterRef<string>;
10724
+ protected readonly overflowMenuOpen: _angular_core.WritableSignal<boolean>;
10725
+ private draggedTabIndex;
10726
+ protected readonly containerClasses: _angular_core.Signal<string>;
10727
+ protected getTabClasses(tab: TabItem): string;
10728
+ protected selectTab(tab: TabItem, index: number): void;
10729
+ protected closeTab(tab: TabItem, index: number, event: MouseEvent): void;
10730
+ protected onMiddleClick(tab: TabItem, index: number, event: MouseEvent): void;
10731
+ protected onDragStart(tab: TabItem, index: number, event: DragEvent): void;
10732
+ protected onDragOver(event: DragEvent): void;
10733
+ protected onDrop(toIndex: number, event: DragEvent): void;
10734
+ protected closeAllTabs(): void;
10735
+ protected closeOtherTabs(): void;
10736
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwTabBarComponent, never>;
10737
+ 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>;
10738
+ }
10739
+
10740
+ /**
10741
+ * Command palette component (Cmd+K / Ctrl+K style)
10742
+ * Provides fuzzy search for commands, files, and more
10743
+ *
10744
+ * @example
10745
+ * ```html
10746
+ * <tw-command-palette [commands]="commands" (commandSelect)="onCommand($event)"></tw-command-palette>
10747
+ * ```
10748
+ */
10749
+ declare class TwCommandPaletteComponent implements OnInit, OnDestroy {
10750
+ private readonly platformService;
10751
+ readonly commands: _angular_core.InputSignal<CommandItem[]>;
10752
+ readonly placeholder: _angular_core.InputSignal<string>;
10753
+ readonly shortcut: _angular_core.InputSignal<string>;
10754
+ readonly commandSelect: _angular_core.OutputEmitterRef<CommandItem>;
10755
+ readonly opened: _angular_core.OutputEmitterRef<void>;
10756
+ readonly closed: _angular_core.OutputEmitterRef<void>;
10757
+ protected readonly isOpen: _angular_core.WritableSignal<boolean>;
10758
+ protected readonly searchQuery: _angular_core.WritableSignal<string>;
10759
+ protected readonly selectedIndex: _angular_core.WritableSignal<number>;
10760
+ protected readonly filteredCommands: _angular_core.Signal<CommandItem[]>;
10761
+ protected readonly groupedCommands: _angular_core.Signal<{
10762
+ category: string;
10763
+ commands: CommandItem[];
10764
+ }[]>;
10765
+ private keydownHandler;
10766
+ ngOnInit(): void;
10767
+ ngOnDestroy(): void;
10768
+ private handleGlobalKeydown;
10769
+ protected onEscape(): void;
10770
+ protected onKeyDown(event: KeyboardEvent): void;
10771
+ protected onSearchChange(query: string): void;
10772
+ protected clearSearch(): void;
10773
+ protected selectCommand(command: CommandItem): void;
10774
+ protected formatShortcut(shortcut: string): string;
10775
+ protected getGlobalIndex(category: string, localIndex: number): number;
10776
+ private fuzzyMatch;
10777
+ open(): void;
10778
+ close(): void;
10779
+ toggle(): void;
10780
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwCommandPaletteComponent, never>;
10781
+ 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>;
10782
+ }
10783
+
10784
+ /**
10785
+ * Search bar component with suggestions and filters
10786
+ *
10787
+ * @example
10788
+ * ```html
10789
+ * <tw-search-bar (search)="onSearch($event)" [suggestions]="suggestions"></tw-search-bar>
10790
+ * ```
10791
+ */
10792
+ declare class TwSearchBarComponent {
10793
+ private readonly elementRef;
10794
+ readonly placeholder: _angular_core.InputSignal<string>;
10795
+ readonly suggestions: _angular_core.InputSignal<SearchSuggestion[]>;
10796
+ readonly filters: _angular_core.InputSignal<SearchFilter[]>;
10797
+ readonly loading: _angular_core.InputSignal<boolean>;
10798
+ readonly fullWidth: _angular_core.InputSignal<boolean>;
10799
+ readonly showShortcut: _angular_core.InputSignal<boolean>;
10800
+ readonly shortcutHint: _angular_core.InputSignal<string>;
10801
+ readonly search: _angular_core.OutputEmitterRef<string>;
10802
+ readonly queryChange: _angular_core.OutputEmitterRef<string>;
10803
+ readonly suggestionSelect: _angular_core.OutputEmitterRef<SearchSuggestion>;
10804
+ readonly filterChange: _angular_core.OutputEmitterRef<SearchFilter[]>;
10805
+ protected readonly query: _angular_core.WritableSignal<string>;
10806
+ protected readonly isFocused: _angular_core.WritableSignal<boolean>;
10807
+ protected readonly showSuggestions: _angular_core.WritableSignal<boolean>;
10808
+ protected readonly activeFilters: _angular_core.WritableSignal<SearchFilter[]>;
10809
+ protected readonly recentSearches: _angular_core.WritableSignal<string[]>;
10810
+ protected onDocumentClick(event: MouseEvent): void;
10811
+ protected onFocus(): void;
10812
+ protected onBlur(): void;
10813
+ protected onQueryChange(query: string): void;
10814
+ protected submitSearch(): void;
10815
+ protected clearSearch(): void;
10816
+ protected selectSuggestion(suggestion: SearchSuggestion): void;
10817
+ protected selectRecent(recent: string): void;
10818
+ protected removeFilter(filter: SearchFilter): void;
10819
+ addFilter(filter: SearchFilter): void;
10820
+ focus(): void;
10821
+ clear(): void;
10822
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwSearchBarComponent, never>;
10823
+ 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>;
10824
+ }
10825
+
10826
+ interface QuickSwitcherItem {
10827
+ id: string;
10828
+ label: string;
10829
+ description?: string;
10830
+ icon?: string;
10831
+ path?: string;
10832
+ type: 'file' | 'tab' | 'command' | 'symbol' | 'recent';
10833
+ metadata?: Record<string, unknown>;
10834
+ }
10835
+ declare class TwQuickSwitcherComponent {
10836
+ readonly items: _angular_core.InputSignal<QuickSwitcherItem[]>;
10837
+ readonly recentItemIds: _angular_core.InputSignal<string[]>;
10838
+ readonly placeholder: _angular_core.InputSignal<string>;
10839
+ readonly maxResults: _angular_core.InputSignal<number>;
10840
+ readonly itemSelected: _angular_core.OutputEmitterRef<QuickSwitcherItem>;
10841
+ readonly closed: _angular_core.OutputEmitterRef<void>;
10842
+ readonly searchInput: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
10843
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
10844
+ readonly searchQuery: _angular_core.WritableSignal<string>;
10845
+ readonly selectedIndex: _angular_core.WritableSignal<number>;
10846
+ readonly recentItems: _angular_core.Signal<QuickSwitcherItem[]>;
10847
+ readonly filteredItems: _angular_core.Signal<QuickSwitcherItem[]>;
10848
+ constructor();
10849
+ handleKeydown(event: KeyboardEvent): void;
10850
+ open(): void;
10851
+ close(): void;
10852
+ selectItem(item: QuickSwitcherItem): void;
10853
+ onBackdropClick(event: MouseEvent): void;
10854
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwQuickSwitcherComponent, never>;
10855
+ 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>;
10856
+ }
10857
+
10858
+ interface SettingsCategory {
10859
+ id: string;
10860
+ label: string;
10861
+ icon?: string;
10862
+ description?: string;
10863
+ }
10864
+ interface SettingItem {
10865
+ id: string;
10866
+ categoryId: string;
10867
+ label: string;
10868
+ description?: string;
10869
+ type: 'toggle' | 'select' | 'text' | 'number' | 'color' | 'path' | 'shortcut';
10870
+ value: unknown;
10871
+ options?: {
10872
+ label: string;
10873
+ value: unknown;
10874
+ }[];
10875
+ min?: number;
10876
+ max?: number;
10877
+ step?: number;
10878
+ placeholder?: string;
10879
+ disabled?: boolean;
10880
+ }
10881
+ declare class TwSettingTemplateDirective {
10882
+ readonly template: TemplateRef<unknown>;
10883
+ readonly settingId: _angular_core.InputSignal<string>;
10884
+ constructor(template: TemplateRef<unknown>);
10885
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwSettingTemplateDirective, never>;
10886
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TwSettingTemplateDirective, "[twSettingTemplate]", never, { "settingId": { "alias": "twSettingTemplate"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
10887
+ }
10888
+ declare class TwSettingsPanelComponent {
10889
+ readonly categories: _angular_core.InputSignal<SettingsCategory[]>;
10890
+ readonly settings: _angular_core.InputSignal<SettingItem[]>;
10891
+ readonly settingChanged: _angular_core.OutputEmitterRef<{
10892
+ setting: SettingItem;
10893
+ value: unknown;
10894
+ }>;
10895
+ readonly resetToDefaults: _angular_core.OutputEmitterRef<void>;
10896
+ readonly exportSettings: _angular_core.OutputEmitterRef<void>;
10897
+ readonly importSettings: _angular_core.OutputEmitterRef<void>;
10898
+ readonly browsePath: _angular_core.OutputEmitterRef<SettingItem>;
10899
+ readonly editShortcut: _angular_core.OutputEmitterRef<SettingItem>;
10900
+ readonly templates: _angular_core.Signal<readonly TwSettingTemplateDirective[]>;
10901
+ readonly searchQuery: _angular_core.WritableSignal<string>;
10902
+ readonly selectedCategoryId: _angular_core.WritableSignal<string | null>;
10903
+ readonly selectedCategory: _angular_core.Signal<SettingsCategory | undefined>;
10904
+ readonly filteredSettings: _angular_core.Signal<SettingItem[]>;
10905
+ toggleSetting(setting: SettingItem): void;
10906
+ updateSetting(setting: SettingItem, value: unknown): void;
10907
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwSettingsPanelComponent, never>;
10908
+ 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>;
10909
+ }
10910
+
10911
+ interface PreferencesTab {
10912
+ id: string;
10913
+ label: string;
10914
+ icon?: string;
10915
+ }
10916
+ declare class TwPreferencesDialogComponent {
10917
+ readonly title: _angular_core.InputSignal<string>;
10918
+ readonly tabs: _angular_core.InputSignal<PreferencesTab[]>;
10919
+ readonly defaultTabId: _angular_core.InputSignal<string | null>;
10920
+ readonly tabChanged: _angular_core.OutputEmitterRef<string>;
10921
+ readonly closed: _angular_core.OutputEmitterRef<void>;
10922
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
10923
+ readonly selectedTabId: _angular_core.WritableSignal<string | null>;
10924
+ readonly selectedTab: _angular_core.Signal<PreferencesTab | undefined>;
10925
+ open(tabId?: string): void;
10926
+ close(): void;
10927
+ selectTab(tabId: string): void;
10928
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwPreferencesDialogComponent, never>;
10929
+ 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>;
10930
+ }
10931
+
10932
+ interface ShortcutBinding {
10933
+ id: string;
10934
+ command: string;
10935
+ description?: string;
10936
+ category?: string;
10937
+ keys: string[];
10938
+ defaultKeys: string[];
10939
+ isCustom?: boolean;
10940
+ }
10941
+ declare class TwShortcutsEditorComponent {
10942
+ readonly shortcuts: _angular_core.InputSignal<ShortcutBinding[]>;
10943
+ readonly platform: _angular_core.InputSignal<"windows" | "linux" | "mac">;
10944
+ readonly shortcutChanged: _angular_core.OutputEmitterRef<{
10945
+ shortcut: ShortcutBinding;
10946
+ keys: string[];
10947
+ }>;
10948
+ readonly shortcutReset: _angular_core.OutputEmitterRef<ShortcutBinding>;
10949
+ readonly resetAllShortcuts: _angular_core.OutputEmitterRef<void>;
10950
+ readonly exportShortcuts: _angular_core.OutputEmitterRef<void>;
10951
+ readonly importShortcuts: _angular_core.OutputEmitterRef<void>;
10952
+ readonly searchQuery: _angular_core.WritableSignal<string>;
10953
+ readonly selectedCategory: _angular_core.WritableSignal<string>;
10954
+ readonly editingId: _angular_core.WritableSignal<string | null>;
10955
+ readonly recordedKeys: _angular_core.WritableSignal<string[]>;
10956
+ readonly conflictWarning: _angular_core.WritableSignal<string | null>;
10957
+ readonly categories: _angular_core.Signal<string[]>;
10958
+ readonly filteredShortcuts: _angular_core.Signal<ShortcutBinding[]>;
10959
+ handleKeydown(event: KeyboardEvent): void;
10960
+ startEdit(shortcut: ShortcutBinding): void;
10961
+ cancelEdit(): void;
10962
+ saveEdit(): void;
10963
+ resetShortcut(shortcut: ShortcutBinding): void;
10964
+ formatKey(key: string): string;
10965
+ private findConflict;
10966
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwShortcutsEditorComponent, never>;
10967
+ 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>;
10968
+ }
10969
+
10970
+ type ThemeMode = 'light' | 'dark' | 'system';
10971
+ interface ThemePreset {
10972
+ id: string;
10973
+ name: string;
10974
+ colors: {
10975
+ primary: string;
10976
+ secondary: string;
10977
+ accent: string;
10978
+ background: string;
10979
+ surface: string;
10980
+ text: string;
10981
+ };
10982
+ preview?: string;
10983
+ }
10984
+ declare class TwThemeSelectorComponent {
10985
+ private readonly document;
10986
+ readonly presets: _angular_core.InputSignal<ThemePreset[]>;
10987
+ readonly defaultMode: _angular_core.InputSignal<ThemeMode>;
10988
+ readonly defaultAccentColor: _angular_core.InputSignal<string>;
10989
+ readonly modeChanged: _angular_core.OutputEmitterRef<ThemeMode>;
10990
+ readonly accentColorChanged: _angular_core.OutputEmitterRef<string>;
10991
+ readonly fontSizeChanged: _angular_core.OutputEmitterRef<number>;
10992
+ readonly presetSelected: _angular_core.OutputEmitterRef<ThemePreset>;
10993
+ readonly highContrastChanged: _angular_core.OutputEmitterRef<boolean>;
10994
+ readonly reducedMotionChanged: _angular_core.OutputEmitterRef<boolean>;
10995
+ readonly currentMode: _angular_core.WritableSignal<ThemeMode>;
10996
+ readonly currentAccentColor: _angular_core.WritableSignal<string>;
10997
+ readonly fontSize: _angular_core.WritableSignal<number>;
10998
+ readonly selectedPresetId: _angular_core.WritableSignal<string | null>;
10999
+ readonly highContrast: _angular_core.WritableSignal<boolean>;
11000
+ readonly reducedMotion: _angular_core.WritableSignal<boolean>;
11001
+ readonly modes: {
11002
+ value: ThemeMode;
11003
+ label: string;
11004
+ }[];
11005
+ readonly accentColors: {
11006
+ name: string;
11007
+ value: string;
11008
+ }[];
11009
+ constructor();
11010
+ selectMode(mode: ThemeMode): void;
11011
+ selectAccentColor(color: string): void;
11012
+ setFontSize(size: number): void;
11013
+ selectPreset(preset: ThemePreset): void;
11014
+ toggleHighContrast(): void;
11015
+ toggleReducedMotion(): void;
11016
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwThemeSelectorComponent, never>;
11017
+ 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>;
11018
+ }
11019
+
11020
+ /**
11021
+ * Alert dialog component
11022
+ * Shows informational, warning, or error messages
11023
+ *
11024
+ * @example
11025
+ * ```html
11026
+ * <tw-alert-dialog
11027
+ * [open]="showAlert"
11028
+ * title="Success"
11029
+ * message="Your changes have been saved."
11030
+ * type="success"
11031
+ * (confirm)="onDismiss()"
11032
+ * ></tw-alert-dialog>
11033
+ * ```
11034
+ */
11035
+ declare class TwAlertDialogComponent {
11036
+ readonly open: _angular_core.InputSignal<boolean>;
11037
+ readonly title: _angular_core.InputSignal<string>;
11038
+ readonly message: _angular_core.InputSignal<string>;
11039
+ readonly type: _angular_core.InputSignal<AlertDialogType>;
11040
+ readonly confirmLabel: _angular_core.InputSignal<string>;
11041
+ readonly showDontAskAgain: _angular_core.InputSignal<boolean>;
11042
+ readonly confirm: _angular_core.OutputEmitterRef<{
11043
+ dontAskAgain: boolean;
11044
+ }>;
11045
+ readonly openChange: _angular_core.OutputEmitterRef<boolean>;
11046
+ protected readonly dontAskAgain: _angular_core.WritableSignal<boolean>;
11047
+ protected readonly iconContainerClasses: _angular_core.Signal<string>;
11048
+ 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">;
11049
+ protected onConfirm(): void;
11050
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwAlertDialogComponent, never>;
11051
+ 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>;
11052
+ }
11053
+
11054
+ /**
11055
+ * Confirmation dialog component
11056
+ * Asks user to confirm or cancel an action
11057
+ *
11058
+ * @example
11059
+ * ```html
11060
+ * <tw-confirm-dialog
11061
+ * [open]="showConfirm"
11062
+ * title="Delete file?"
11063
+ * message="This action cannot be undone."
11064
+ * [destructive]="true"
11065
+ * (confirm)="onDelete()"
11066
+ * (cancel)="showConfirm = false"
11067
+ * ></tw-confirm-dialog>
11068
+ * ```
11069
+ */
11070
+ declare class TwNativeConfirmDialogComponent {
11071
+ readonly open: _angular_core.InputSignal<boolean>;
11072
+ readonly title: _angular_core.InputSignal<string>;
11073
+ readonly message: _angular_core.InputSignal<string>;
11074
+ readonly type: _angular_core.InputSignal<AlertDialogType>;
11075
+ readonly confirmLabel: _angular_core.InputSignal<string>;
11076
+ readonly cancelLabel: _angular_core.InputSignal<string>;
11077
+ readonly destructive: _angular_core.InputSignal<boolean>;
11078
+ readonly confirm: _angular_core.OutputEmitterRef<void>;
11079
+ readonly cancel: _angular_core.OutputEmitterRef<void>;
11080
+ readonly openChange: _angular_core.OutputEmitterRef<boolean>;
11081
+ protected onEscape(): void;
11082
+ protected onEnter(): void;
11083
+ 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">;
11084
+ 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">;
11085
+ protected onConfirm(): void;
11086
+ protected onCancel(): void;
11087
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwNativeConfirmDialogComponent, never>;
11088
+ 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>;
11089
+ }
11090
+
11091
+ type PromptInputType = 'text' | 'password' | 'number' | 'email' | 'url';
11092
+ declare class TwPromptDialogComponent {
11093
+ readonly title: _angular_core.InputSignal<string>;
11094
+ readonly message: _angular_core.InputSignal<string>;
11095
+ readonly defaultValue: _angular_core.InputSignal<string>;
11096
+ readonly placeholder: _angular_core.InputSignal<string>;
11097
+ readonly inputType: _angular_core.InputSignal<PromptInputType>;
11098
+ readonly confirmText: _angular_core.InputSignal<string>;
11099
+ readonly cancelText: _angular_core.InputSignal<string>;
11100
+ readonly required: _angular_core.InputSignal<boolean>;
11101
+ readonly minLength: _angular_core.InputSignal<number | null>;
11102
+ readonly maxLength: _angular_core.InputSignal<number | null>;
11103
+ readonly pattern: _angular_core.InputSignal<string | null>;
11104
+ readonly customValidator: _angular_core.InputSignal<((value: string) => string | null) | null>;
11105
+ readonly confirmed: _angular_core.OutputEmitterRef<string>;
11106
+ readonly cancelled: _angular_core.OutputEmitterRef<void>;
11107
+ readonly inputElement: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
11108
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
11109
+ readonly inputValue: _angular_core.WritableSignal<string>;
11110
+ readonly validationError: _angular_core.WritableSignal<string | null>;
11111
+ constructor();
11112
+ open(defaultValue?: string): void;
11113
+ close(): void;
11114
+ confirm(): void;
11115
+ cancel(): void;
11116
+ isValid(): boolean;
11117
+ private validate;
11118
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwPromptDialogComponent, never>;
11119
+ 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>;
11120
+ }
11121
+
11122
+ /**
11123
+ * About dialog component
11124
+ * Shows application information, version, credits
11125
+ *
11126
+ * @example
11127
+ * ```html
11128
+ * <tw-about-dialog
11129
+ * [open]="showAbout"
11130
+ * appName="My App"
11131
+ * version="1.0.0"
11132
+ * [links]="[{ label: 'Website', url: 'https://example.com' }]"
11133
+ * (close)="showAbout = false"
11134
+ * ></tw-about-dialog>
11135
+ * ```
11136
+ */
11137
+ declare class TwAboutDialogComponent {
11138
+ readonly open: _angular_core.InputSignal<boolean>;
11139
+ readonly appName: _angular_core.InputSignal<string>;
11140
+ readonly appIcon: _angular_core.InputSignal<string | undefined>;
11141
+ readonly version: _angular_core.InputSignal<string>;
11142
+ readonly description: _angular_core.InputSignal<string | undefined>;
11143
+ readonly copyright: _angular_core.InputSignal<string | undefined>;
11144
+ readonly credits: _angular_core.InputSignal<string[]>;
11145
+ readonly links: _angular_core.InputSignal<{
11146
+ label: string;
11147
+ url: string;
11148
+ }[]>;
11149
+ readonly showUpdateButton: _angular_core.InputSignal<boolean>;
11150
+ readonly showLicenseButton: _angular_core.InputSignal<boolean>;
11151
+ readonly close: _angular_core.OutputEmitterRef<void>;
11152
+ readonly openChange: _angular_core.OutputEmitterRef<boolean>;
11153
+ readonly checkForUpdates: _angular_core.OutputEmitterRef<void>;
11154
+ readonly viewLicense: _angular_core.OutputEmitterRef<void>;
11155
+ protected onEscape(): void;
11156
+ protected onClose(): void;
11157
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwAboutDialogComponent, never>;
11158
+ 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>;
11159
+ }
11160
+
11161
+ interface UpdateDialogInfo {
11162
+ currentVersion: string;
11163
+ newVersion: string;
11164
+ releaseDate?: string;
11165
+ changelog?: string;
11166
+ downloadSize?: string;
11167
+ mandatory?: boolean;
11168
+ }
11169
+ declare class TwUpdateDialogComponent {
11170
+ readonly appName: _angular_core.InputSignal<string>;
11171
+ readonly updateInfo: _angular_core.InputSignal<UpdateDialogInfo | null>;
11172
+ readonly showAutoUpdate: _angular_core.InputSignal<boolean>;
11173
+ readonly downloadStarted: _angular_core.OutputEmitterRef<void>;
11174
+ readonly downloadCancelled: _angular_core.OutputEmitterRef<void>;
11175
+ readonly installClicked: _angular_core.OutputEmitterRef<void>;
11176
+ readonly remindLaterClicked: _angular_core.OutputEmitterRef<void>;
11177
+ readonly autoUpdateChanged: _angular_core.OutputEmitterRef<boolean>;
11178
+ readonly closed: _angular_core.OutputEmitterRef<void>;
11179
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
11180
+ readonly isDownloading: _angular_core.WritableSignal<boolean>;
11181
+ readonly downloadProgress: _angular_core.WritableSignal<number>;
11182
+ readonly autoUpdate: _angular_core.WritableSignal<boolean>;
11183
+ open(info: UpdateDialogInfo): void;
11184
+ close(): void;
11185
+ startDownload(): void;
11186
+ cancelDownload(): void;
11187
+ installUpdate(): void;
11188
+ remindLater(): void;
11189
+ toggleAutoUpdate(): void;
11190
+ setDownloadProgress(progress: number): void;
11191
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwUpdateDialogComponent, never>;
11192
+ 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>;
11193
+ }
11194
+
11195
+ interface OnboardingStep {
11196
+ id: string;
11197
+ title: string;
11198
+ description?: string;
11199
+ image?: string;
11200
+ icon?: string;
11201
+ }
11202
+ declare class TwOnboardingWizardComponent {
11203
+ readonly steps: _angular_core.InputSignal<OnboardingStep[]>;
11204
+ readonly allowSkip: _angular_core.InputSignal<boolean>;
11205
+ readonly showDontShowAgain: _angular_core.InputSignal<boolean>;
11206
+ readonly completeText: _angular_core.InputSignal<string>;
11207
+ readonly stepChanged: _angular_core.OutputEmitterRef<{
11208
+ step: OnboardingStep;
11209
+ index: number;
11210
+ }>;
11211
+ readonly completed: _angular_core.OutputEmitterRef<{
11212
+ dontShowAgain: boolean;
11213
+ }>;
11214
+ readonly skipped: _angular_core.OutputEmitterRef<void>;
11215
+ readonly closed: _angular_core.OutputEmitterRef<void>;
11216
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
11217
+ readonly currentIndex: _angular_core.WritableSignal<number>;
11218
+ readonly dontShowAgain: _angular_core.WritableSignal<boolean>;
11219
+ readonly currentStep: _angular_core.Signal<OnboardingStep>;
11220
+ readonly isLastStep: _angular_core.Signal<boolean>;
11221
+ readonly progressPercent: _angular_core.Signal<number>;
11222
+ open(startIndex?: number): void;
11223
+ close(): void;
11224
+ next(): void;
11225
+ previous(): void;
11226
+ goToStep(index: number): void;
11227
+ skip(): void;
11228
+ complete(): void;
11229
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwOnboardingWizardComponent, never>;
11230
+ 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>;
11231
+ }
11232
+
11233
+ /**
11234
+ * Terminal / Console output component
11235
+ * Displays command output with ANSI color support
11236
+ *
11237
+ * @example
11238
+ * ```html
11239
+ * <tw-terminal [lines]="output" (command)="onCommand($event)"></tw-terminal>
11240
+ * ```
11241
+ */
11242
+ declare class TwTerminalComponent implements AfterViewChecked {
11243
+ private outputArea;
11244
+ readonly lines: _angular_core.InputSignal<TerminalLine[]>;
11245
+ readonly variant: _angular_core.InputSignal<TerminalVariant>;
11246
+ readonly title: _angular_core.InputSignal<string>;
11247
+ readonly prompt: _angular_core.InputSignal<string>;
11248
+ readonly inputPlaceholder: _angular_core.InputSignal<string>;
11249
+ readonly showHeader: _angular_core.InputSignal<boolean>;
11250
+ readonly showInput: _angular_core.InputSignal<boolean>;
11251
+ readonly showCursor: _angular_core.InputSignal<boolean>;
11252
+ readonly showTimestamps: _angular_core.InputSignal<boolean>;
11253
+ readonly showClearButton: _angular_core.InputSignal<boolean>;
11254
+ readonly showCopyButton: _angular_core.InputSignal<boolean>;
11255
+ readonly autoScroll: _angular_core.InputSignal<boolean>;
11256
+ readonly maxLines: _angular_core.InputSignal<number>;
11257
+ readonly command: _angular_core.OutputEmitterRef<string>;
11258
+ readonly clear: _angular_core.OutputEmitterRef<void>;
11259
+ readonly copy: _angular_core.OutputEmitterRef<string>;
11260
+ protected readonly currentInput: _angular_core.WritableSignal<string>;
11261
+ protected readonly isProcessing: _angular_core.WritableSignal<boolean>;
11262
+ protected readonly commandHistory: _angular_core.WritableSignal<string[]>;
11263
+ protected readonly historyIndex: _angular_core.WritableSignal<number>;
11264
+ private shouldScroll;
11265
+ ngAfterViewChecked(): void;
11266
+ protected readonly containerClasses: _angular_core.Signal<string>;
11267
+ protected getLineClasses(line: TerminalLine): string;
11268
+ protected formatTimestamp(date: Date): string;
11269
+ protected stripAnsi(text: string): string;
11270
+ protected submitCommand(): void;
11271
+ protected navigateHistory(direction: number): void;
11272
+ protected copyOutput(): Promise<void>;
11273
+ setProcessing(processing: boolean): void;
11274
+ scrollToBottom(): void;
11275
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwTerminalComponent, never>;
11276
+ 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>;
11277
+ }
11278
+
11279
+ /**
11280
+ * Log viewer component
11281
+ * Displays log entries with filtering and search
11282
+ *
11283
+ * @example
11284
+ * ```html
11285
+ * <tw-log-viewer [entries]="logs" (entrySelect)="onLogSelect($event)"></tw-log-viewer>
11286
+ * ```
11287
+ */
11288
+ declare class TwLogViewerComponent {
11289
+ readonly entries: _angular_core.InputSignal<LogEntry[]>;
11290
+ readonly showSource: _angular_core.InputSignal<boolean>;
11291
+ readonly entrySelect: _angular_core.OutputEmitterRef<LogEntry>;
11292
+ readonly clearLogs: _angular_core.OutputEmitterRef<void>;
11293
+ readonly exportClick: _angular_core.OutputEmitterRef<LogEntry[]>;
11294
+ protected readonly searchQuery: _angular_core.WritableSignal<string>;
11295
+ protected readonly activeLevels: _angular_core.WritableSignal<Set<"info" | "error" | "debug" | "warn" | "fatal">>;
11296
+ protected readonly autoScroll: _angular_core.WritableSignal<boolean>;
11297
+ protected readonly selectedEntry: _angular_core.WritableSignal<LogEntry | null>;
11298
+ protected readonly logLevels: ({
11299
+ value: "debug";
11300
+ label: string;
11301
+ } | {
11302
+ value: "info";
11303
+ label: string;
11304
+ } | {
11305
+ value: "warn";
11306
+ label: string;
11307
+ } | {
11308
+ value: "error";
11309
+ label: string;
11310
+ } | {
11311
+ value: "fatal";
11312
+ label: string;
11313
+ })[];
11314
+ protected readonly filteredEntries: _angular_core.Signal<LogEntry[]>;
11315
+ protected toggleLevelFilter(level: LogEntry['level']): void;
11316
+ protected onFilterChange(): void;
11317
+ protected selectEntry(entry: LogEntry): void;
11318
+ protected formatTimestamp(date: Date): string;
11319
+ protected getLevelFilterClasses(level: LogEntry['level']): string;
11320
+ protected getLevelBadgeClasses(level: LogEntry['level']): string;
11321
+ protected exportLogs(): void;
11322
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwLogViewerComponent, never>;
11323
+ 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>;
11324
+ }
11325
+
11326
+ interface PropertyItem {
11327
+ key: string;
11328
+ value: unknown;
11329
+ type: 'string' | 'number' | 'boolean' | 'color' | 'date' | 'object' | 'array' | 'null';
11330
+ editable?: boolean;
11331
+ category?: string;
11332
+ }
11333
+ declare class TwPropertyInspectorComponent {
11334
+ readonly title: _angular_core.InputSignal<string>;
11335
+ readonly properties: _angular_core.InputSignal<PropertyItem[]>;
11336
+ readonly propertyChanged: _angular_core.OutputEmitterRef<{
11337
+ property: PropertyItem;
11338
+ value: unknown;
11339
+ }>;
11340
+ readonly refresh: _angular_core.OutputEmitterRef<void>;
11341
+ readonly objectExpanded: _angular_core.OutputEmitterRef<PropertyItem>;
11342
+ readonly valueCopied: _angular_core.OutputEmitterRef<PropertyItem>;
11343
+ readonly collapsedCategories: _angular_core.WritableSignal<Set<string>>;
11344
+ readonly categories: _angular_core.Signal<string[]>;
11345
+ getPropertiesByCategory(category: string): PropertyItem[];
11346
+ toggleCategory(category: string): void;
11347
+ updateProperty(property: PropertyItem, value: unknown): void;
11348
+ copyValue(property: PropertyItem): void;
11349
+ expandObject(property: PropertyItem): void;
11350
+ formatValue(value: unknown): string;
11351
+ getArrayLength(value: unknown): number;
11352
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwPropertyInspectorComponent, never>;
11353
+ 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>;
11354
+ }
11355
+
11356
+ type CodeLanguage = 'json' | 'javascript' | 'typescript' | 'html' | 'css' | 'xml' | 'markdown' | 'text';
11357
+ declare class TwCodeViewerComponent {
11358
+ readonly code: _angular_core.InputSignal<string>;
11359
+ readonly language: _angular_core.InputSignal<CodeLanguage>;
11360
+ readonly filename: _angular_core.InputSignal<string>;
11361
+ readonly showLineNumbers: _angular_core.InputSignal<boolean>;
11362
+ readonly showSearch: _angular_core.InputSignal<boolean>;
11363
+ readonly showFooter: _angular_core.InputSignal<boolean>;
11364
+ readonly highlightLines: _angular_core.InputSignal<number[]>;
11365
+ readonly copied: _angular_core.OutputEmitterRef<void>;
11366
+ readonly wordWrap: _angular_core.WritableSignal<boolean>;
11367
+ readonly searchQuery: _angular_core.WritableSignal<string>;
11368
+ readonly currentMatchIndex: _angular_core.WritableSignal<number>;
11369
+ readonly lines: _angular_core.Signal<string[]>;
11370
+ readonly highlightedLines: _angular_core.Signal<Set<number>>;
11371
+ readonly byteSize: _angular_core.Signal<string>;
11372
+ readonly searchMatches: _angular_core.Signal<number[]>;
11373
+ constructor();
11374
+ isMatchLine(lineIndex: number): boolean;
11375
+ nextMatch(): void;
11376
+ previousMatch(): void;
11377
+ toggleWordWrap(): void;
11378
+ copyCode(): void;
11379
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwCodeViewerComponent, never>;
11380
+ 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>;
11381
+ }
11382
+
11383
+ /**
11384
+ * Application status bar component
11385
+ * Displays status information at the bottom of the window
11386
+ *
11387
+ * @example
11388
+ * ```html
11389
+ * <tw-status-bar [items]="statusItems" (itemClick)="onStatusClick($event)"></tw-status-bar>
11390
+ * ```
11391
+ */
11392
+ declare class TwStatusBarComponent {
11393
+ readonly items: _angular_core.InputSignal<StatusBarItem[]>;
11394
+ readonly variant: _angular_core.InputSignal<"default" | "minimal">;
11395
+ readonly itemClick: _angular_core.OutputEmitterRef<StatusBarItem>;
11396
+ protected readonly leftItems: _angular_core.Signal<StatusBarItem[]>;
11397
+ protected readonly centerItems: _angular_core.Signal<StatusBarItem[]>;
11398
+ protected readonly rightItems: _angular_core.Signal<StatusBarItem[]>;
11399
+ protected onItemClick(item: StatusBarItem): void;
11400
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwStatusBarComponent, never>;
11401
+ 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>;
11402
+ }
11403
+
11404
+ /**
11405
+ * Toolbar / Action bar component
11406
+ * Displays action buttons with icons and tooltips
11407
+ *
11408
+ * @example
11409
+ * ```html
11410
+ * <tw-toolbar [items]="toolbarItems" (itemClick)="onToolbarAction($event)"></tw-toolbar>
11411
+ * ```
11412
+ */
11413
+ declare class TwToolbarComponent {
11414
+ readonly items: _angular_core.InputSignal<ToolbarItem[]>;
11415
+ readonly variant: _angular_core.InputSignal<ToolbarVariant>;
11416
+ readonly position: _angular_core.InputSignal<ToolbarPosition>;
11417
+ readonly showLabels: _angular_core.InputSignal<boolean>;
11418
+ readonly itemClick: _angular_core.OutputEmitterRef<ToolbarItem>;
11419
+ protected openDropdownId: string | null;
11420
+ protected readonly containerClasses: _angular_core.Signal<string>;
11421
+ 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">;
11422
+ protected getButtonClasses(item: ToolbarItem): string;
11423
+ protected toggleDropdown(item: ToolbarItem): void;
11424
+ protected onItemClick(item: ToolbarItem): void;
11425
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwToolbarComponent, never>;
11426
+ 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>;
11427
+ }
11428
+
11429
+ type ActivityIndicatorVariant = 'spinner' | 'dots' | 'pulse' | 'bars' | 'ring';
11430
+ type ActivityIndicatorSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
11431
+ declare class TwActivityIndicatorComponent {
11432
+ readonly variant: _angular_core.InputSignal<ActivityIndicatorVariant>;
11433
+ readonly size: _angular_core.InputSignal<ActivityIndicatorSize>;
11434
+ readonly color: _angular_core.InputSignal<string>;
11435
+ readonly label: _angular_core.InputSignal<string>;
11436
+ readonly inline: _angular_core.InputSignal<boolean>;
11437
+ readonly containerClasses: _angular_core.Signal<string>;
11438
+ readonly sizeClasses: _angular_core.Signal<string>;
11439
+ readonly dotSizeClasses: _angular_core.Signal<string>;
11440
+ barClasses(index: number): string;
11441
+ readonly labelClasses: _angular_core.Signal<string>;
11442
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwActivityIndicatorComponent, never>;
11443
+ 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>;
11444
+ }
11445
+
11446
+ type ConnectionState = 'connected' | 'connecting' | 'disconnected' | 'error' | 'syncing' | 'synced';
11447
+ declare class TwConnectionStatusComponent {
11448
+ readonly state: _angular_core.InputSignal<ConnectionState>;
11449
+ readonly showLabel: _angular_core.InputSignal<boolean>;
11450
+ readonly showLastSynced: _angular_core.InputSignal<boolean>;
11451
+ readonly showRetry: _angular_core.InputSignal<boolean>;
11452
+ readonly lastSynced: _angular_core.InputSignal<Date | null>;
11453
+ readonly compact: _angular_core.InputSignal<boolean>;
11454
+ readonly customLabels: _angular_core.InputSignal<Partial<Record<ConnectionState, string>>>;
11455
+ readonly statusClicked: _angular_core.OutputEmitterRef<void>;
11456
+ readonly retryClicked: _angular_core.OutputEmitterRef<void>;
11457
+ private readonly defaultLabels;
11458
+ readonly statusLabel: _angular_core.Signal<string>;
11459
+ readonly ariaLabel: _angular_core.Signal<string>;
11460
+ readonly containerClasses: _angular_core.Signal<string>;
11461
+ readonly dotClasses: _angular_core.Signal<string>;
11462
+ readonly pulseClasses: _angular_core.Signal<string>;
11463
+ readonly isPulsing: _angular_core.Signal<boolean>;
11464
+ readonly labelClasses: _angular_core.Signal<string>;
11465
+ formatLastSynced(): string;
11466
+ retry(event: MouseEvent): void;
11467
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwConnectionStatusComponent, never>;
11468
+ 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>;
11469
+ }
11470
+
11471
+ type SplitDirection = 'horizontal' | 'vertical';
11472
+ interface PanelConfig {
11473
+ id: string;
11474
+ minSize?: number;
11475
+ maxSize?: number;
11476
+ defaultSize?: number;
11477
+ collapsible?: boolean;
11478
+ collapsed?: boolean;
11479
+ }
11480
+ declare class TwResizablePanelsComponent {
11481
+ private readonly document;
11482
+ private readonly ngZone;
11483
+ private readonly destroyRef;
11484
+ readonly direction: _angular_core.InputSignal<SplitDirection>;
11485
+ readonly defaultSplit: _angular_core.InputSignal<number>;
11486
+ readonly minSize: _angular_core.InputSignal<number>;
11487
+ readonly maxSize: _angular_core.InputSignal<number>;
11488
+ readonly panel1Config: _angular_core.InputSignal<PanelConfig | null>;
11489
+ readonly panel2Config: _angular_core.InputSignal<PanelConfig | null>;
11490
+ readonly showCollapseButtons: _angular_core.InputSignal<boolean>;
11491
+ readonly handleSize: _angular_core.InputSignal<number>;
11492
+ readonly sizeChanged: _angular_core.OutputEmitterRef<{
11493
+ panel1: number;
11494
+ panel2: number;
11495
+ }>;
11496
+ readonly panel1CollapseChanged: _angular_core.OutputEmitterRef<boolean>;
11497
+ readonly panel2CollapseChanged: _angular_core.OutputEmitterRef<boolean>;
11498
+ readonly container: _angular_core.Signal<ElementRef<HTMLDivElement> | undefined>;
11499
+ readonly panel1Size: _angular_core.WritableSignal<number>;
11500
+ readonly panel2Size: _angular_core.Signal<number>;
11501
+ readonly panel1Collapsed: _angular_core.WritableSignal<boolean>;
11502
+ readonly panel2Collapsed: _angular_core.WritableSignal<boolean>;
11503
+ readonly isResizing: _angular_core.WritableSignal<boolean>;
11504
+ constructor();
11505
+ readonly containerClasses: _angular_core.Signal<string>;
11506
+ panelClasses(index: number): string;
11507
+ readonly handleClasses: _angular_core.Signal<string>;
11508
+ 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">;
11509
+ readonly collapseButtonsClasses: _angular_core.Signal<string>;
11510
+ startResize(event: MouseEvent | TouchEvent): void;
11511
+ resetSize(): void;
11512
+ togglePanel1Collapse(): void;
11513
+ togglePanel2Collapse(): void;
11514
+ private getEventPosition;
11515
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwResizablePanelsComponent, never>;
11516
+ 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>;
11517
+ }
11518
+
11519
+ type ShortcutDisplayVariant = 'default' | 'compact' | 'inline';
11520
+ type ShortcutDisplayPlatform = 'mac' | 'windows' | 'linux' | 'auto';
11521
+ declare class TwShortcutDisplayComponent {
11522
+ readonly keys: _angular_core.InputSignal<string[]>;
11523
+ readonly shortcut: _angular_core.InputSignal<string>;
11524
+ readonly variant: _angular_core.InputSignal<ShortcutDisplayVariant>;
11525
+ readonly platform: _angular_core.InputSignal<ShortcutDisplayPlatform>;
11526
+ readonly separator: _angular_core.InputSignal<string>;
11527
+ readonly showSeparator: _angular_core.InputSignal<boolean>;
11528
+ private readonly keySymbols;
11529
+ private readonly detectedPlatform;
11530
+ readonly formattedKeys: _angular_core.Signal<string[]>;
11531
+ readonly containerClasses: _angular_core.Signal<"inline-flex items-center gap-1" | "inline-flex items-center gap-0.5" | "inline-flex items-center gap-0">;
11532
+ 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">;
11533
+ readonly separatorClasses: _angular_core.Signal<"text-slate-400 text-xs" | "text-slate-400 text-xs mx-0.5">;
11534
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwShortcutDisplayComponent, never>;
11535
+ 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>;
11536
+ }
11537
+
11538
+ /**
11539
+ * Storage service for persistent data
11540
+ * Supports local storage, secure storage, and file-based storage
11541
+ */
11542
+ declare class NativeStorageService {
11543
+ private readonly platformService;
11544
+ private readonly _isInitialized;
11545
+ readonly isInitialized: _angular_core.Signal<boolean>;
11546
+ get<T>(key: string, defaultValue?: T): T | null;
11547
+ set<T>(key: string, value: T, options?: StorageOptions): void;
11548
+ remove(key: string): void;
11549
+ clear(): void;
11550
+ keys(): string[];
11551
+ has(key: string): boolean;
11552
+ getSecure<T>(key: string): Promise<T | null>;
11553
+ setSecure<T>(key: string, value: T): Promise<void>;
11554
+ removeSecure(key: string): Promise<void>;
11555
+ getSession<T>(key: string, defaultValue?: T): T | null;
11556
+ setSession<T>(key: string, value: T): void;
11557
+ removeSession(key: string): void;
11558
+ clearSession(): void;
11559
+ private dbPromise;
11560
+ private getDB;
11561
+ getIndexedDB<T>(key: string): Promise<T | null>;
11562
+ setIndexedDB<T>(key: string, value: T): Promise<void>;
11563
+ removeIndexedDB(key: string): Promise<void>;
11564
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NativeStorageService, never>;
11565
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<NativeStorageService>;
11566
+ }
11567
+
11568
+ type IpcCallback<T> = (data: T) => void;
11569
+ /**
11570
+ * IPC (Inter-Process Communication) service
11571
+ * Handles communication between renderer and main process in Tauri/Electron
11572
+ */
11573
+ declare class NativeIpcService {
11574
+ private readonly platformService;
11575
+ private readonly ngZone;
11576
+ private listeners;
11577
+ private unlistenFns;
11578
+ private readonly _isConnected;
11579
+ readonly isConnected: _angular_core.Signal<boolean>;
11580
+ constructor();
11581
+ private init;
11582
+ /**
11583
+ * Invoke a command in the main process and get a response
11584
+ */
11585
+ invoke<T, R = unknown>(command: string, payload?: T): Promise<IpcResponse<R>>;
11586
+ /**
11587
+ * Send a message to the main process (fire and forget)
11588
+ */
11589
+ send<T>(channel: string, payload?: T): Promise<void>;
11590
+ /**
11591
+ * Listen for messages from the main process
11592
+ */
11593
+ on<T>(channel: string, callback: IpcCallback<T>): Promise<() => void>;
11594
+ /**
11595
+ * Listen for a message once
11596
+ */
11597
+ once<T>(channel: string, callback: IpcCallback<T>): Promise<void>;
11598
+ /**
11599
+ * Remove listener for a channel
11600
+ */
11601
+ off(channel: string, callback?: IpcCallback<unknown>): void;
11602
+ /**
11603
+ * Emit a custom event (works in all environments)
11604
+ */
11605
+ emit<T>(channel: string, payload?: T): void;
11606
+ /**
11607
+ * Clean up all listeners
11608
+ */
11609
+ destroy(): void;
11610
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NativeIpcService, never>;
11611
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<NativeIpcService>;
11612
+ }
11613
+
11614
+ interface NativeFileFilter {
11615
+ name: string;
11616
+ extensions: string[];
11617
+ }
11618
+ interface NativeOpenFileOptions {
11619
+ title?: string;
11620
+ defaultPath?: string;
11621
+ filters?: NativeFileFilter[];
11622
+ multiple?: boolean;
11623
+ directory?: boolean;
11624
+ }
11625
+ interface NativeSaveFileOptions {
11626
+ title?: string;
11627
+ defaultPath?: string;
11628
+ filters?: NativeFileFilter[];
11629
+ }
11630
+ interface FilePickerResult {
11631
+ path: string;
11632
+ name: string;
11633
+ size?: number;
11634
+ type?: string;
11635
+ }
11636
+ declare class FilePickerService {
11637
+ private readonly platformService;
11638
+ openFile(options?: NativeOpenFileOptions): Promise<FilePickerResult[] | null>;
11639
+ saveFile(options?: NativeSaveFileOptions): Promise<string | null>;
11640
+ selectDirectory(options?: NativeOpenFileOptions): Promise<string | null>;
11641
+ private openFileTauri;
11642
+ private openFileElectron;
11643
+ private openFileWeb;
11644
+ private saveFileTauri;
11645
+ private saveFileElectron;
11646
+ private saveFileWeb;
11647
+ private selectDirectoryTauri;
11648
+ private selectDirectoryElectron;
11649
+ private selectDirectoryWeb;
11650
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilePickerService, never>;
11651
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<FilePickerService>;
11652
+ }
11653
+
11654
+ interface TrayConfig {
11655
+ icon: string;
11656
+ tooltip?: string;
11657
+ title?: string;
11658
+ menu?: NativeMenuItem[];
11659
+ }
11660
+ declare class SystemTrayService {
11661
+ private readonly platformService;
11662
+ readonly isSupported: _angular_core.WritableSignal<boolean>;
11663
+ readonly isVisible: _angular_core.WritableSignal<boolean>;
11664
+ private trayInstance;
11665
+ constructor();
11666
+ private checkSupport;
11667
+ create(config: TrayConfig): Promise<boolean>;
11668
+ setIcon(icon: string): Promise<void>;
11669
+ setTooltip(tooltip: string): Promise<void>;
11670
+ setMenu(menu: NativeMenuItem[]): Promise<void>;
11671
+ destroy(): Promise<void>;
11672
+ private createTauriTray;
11673
+ private createElectronTray;
11674
+ private buildTauriMenu;
11675
+ private setTauriMenu;
11676
+ private convertMenuForElectron;
11677
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SystemTrayService, never>;
11678
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<SystemTrayService>;
11679
+ }
11680
+
11681
+ interface NativeNotificationOptions {
11682
+ title: string;
11683
+ body?: string;
11684
+ icon?: string;
11685
+ sound?: boolean;
11686
+ silent?: boolean;
11687
+ timeout?: number;
11688
+ urgency?: 'low' | 'normal' | 'critical';
11689
+ }
11690
+ interface NativeNotificationAction {
11691
+ id: string;
11692
+ title: string;
11693
+ }
11694
+ declare class NativeNotificationsService {
11695
+ private readonly platformService;
11696
+ readonly isSupported: _angular_core.WritableSignal<boolean>;
11697
+ readonly permissionGranted: _angular_core.WritableSignal<boolean>;
11698
+ constructor();
11699
+ private checkSupport;
11700
+ requestPermission(): Promise<boolean>;
11701
+ show(options: NativeNotificationOptions): Promise<string | null>;
11702
+ setBadgeCount(count: number): Promise<void>;
11703
+ clearBadge(): Promise<void>;
11704
+ private showTauriNotification;
11705
+ private showElectronNotification;
11706
+ private showWebNotification;
11707
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NativeNotificationsService, never>;
11708
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<NativeNotificationsService>;
11709
+ }
11710
+
11711
+ declare class DockService {
11712
+ private readonly platformService;
11713
+ readonly isSupported: _angular_core.WritableSignal<boolean>;
11714
+ constructor();
11715
+ private checkSupport;
11716
+ /**
11717
+ * Set the dock badge (macOS) or taskbar overlay (Windows)
11718
+ */
11719
+ setBadge(text: string): Promise<void>;
11720
+ /**
11721
+ * Clear the dock badge
11722
+ */
11723
+ clearBadge(): Promise<void>;
11724
+ /**
11725
+ * Set progress on the dock icon (macOS) or taskbar (Windows)
11726
+ */
11727
+ setProgress(progress: number): Promise<void>;
11728
+ /**
11729
+ * Clear progress indicator
11730
+ */
11731
+ clearProgress(): Promise<void>;
11732
+ /**
11733
+ * Bounce the dock icon (macOS only)
11734
+ */
11735
+ bounce(type?: 'informational' | 'critical'): Promise<number>;
11736
+ /**
11737
+ * Cancel a dock bounce (macOS only)
11738
+ */
11739
+ cancelBounce(id: number): Promise<void>;
11740
+ /**
11741
+ * Set the dock menu (macOS only)
11742
+ */
11743
+ setMenu(items: NativeMenuItem[]): Promise<void>;
11744
+ /**
11745
+ * Show the dock icon (macOS only - if hidden)
11746
+ */
11747
+ show(): Promise<void>;
11748
+ /**
11749
+ * Hide the dock icon (macOS only)
11750
+ */
11751
+ hide(): Promise<void>;
11752
+ /**
11753
+ * Flash the window in the taskbar (Windows only)
11754
+ */
11755
+ flashFrame(flash: boolean): Promise<void>;
11756
+ private convertMenuForElectron;
11757
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DockService, never>;
11758
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<DockService>;
11759
+ }
11760
+
11761
+ interface UpdateInfo {
11762
+ currentVersion: string;
11763
+ version: string;
11764
+ releaseDate?: string;
11765
+ releaseNotes?: string;
11766
+ downloadUrl?: string;
11767
+ }
11768
+ interface UpdateProgress {
11769
+ percent: number;
11770
+ bytesDownloaded: number;
11771
+ bytesTotal: number;
11772
+ }
11773
+ type UpdateStatus = 'idle' | 'checking' | 'available' | 'not-available' | 'downloading' | 'downloaded' | 'error';
11774
+ declare class UpdateService {
11775
+ private readonly platformService;
11776
+ readonly status: _angular_core.WritableSignal<UpdateStatus>;
11777
+ readonly updateInfo: _angular_core.WritableSignal<UpdateInfo | null>;
11778
+ readonly progress: _angular_core.WritableSignal<UpdateProgress | null>;
11779
+ readonly error: _angular_core.WritableSignal<string | null>;
11780
+ readonly isSupported: _angular_core.WritableSignal<boolean>;
11781
+ private readonly updateAvailable$;
11782
+ private readonly downloadProgress$;
11783
+ private readonly updateDownloaded$;
11784
+ private readonly updateError$;
11785
+ constructor();
11786
+ private checkSupport;
11787
+ private setupListeners;
11788
+ get onUpdateAvailable(): Observable<UpdateInfo>;
11789
+ get onDownloadProgress(): Observable<UpdateProgress>;
11790
+ get onUpdateDownloaded(): Observable<void>;
11791
+ get onError(): Observable<string>;
11792
+ checkForUpdates(): Promise<UpdateInfo | null>;
11793
+ downloadUpdate(): Promise<void>;
11794
+ installUpdate(): Promise<void>;
11795
+ private setupElectronListeners;
11796
+ private checkTauriUpdates;
11797
+ private checkElectronUpdates;
11798
+ private downloadTauriUpdate;
11799
+ private downloadElectronUpdate;
11800
+ private installTauriUpdate;
11801
+ private installElectronUpdate;
11802
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<UpdateService, never>;
11803
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<UpdateService>;
11804
+ }
11805
+
11806
+ /**
11807
+ * Directive to make elements draggable
11808
+ *
11809
+ * @example
11810
+ * ```html
11811
+ * <div twDraggable [dragData]="{ type: 'file', data: file }">Drag me</div>
11812
+ * ```
11813
+ */
11814
+ declare class TwDraggableDirective implements OnInit, OnDestroy {
11815
+ private readonly elementRef;
11816
+ readonly twDraggable: _angular_core.InputSignal<boolean | "">;
11817
+ readonly dragData: _angular_core.InputSignal<DragData>;
11818
+ readonly dragImage: _angular_core.InputSignal<HTMLElement | null>;
11819
+ readonly dragImageOffsetX: _angular_core.InputSignal<number>;
11820
+ readonly dragImageOffsetY: _angular_core.InputSignal<number>;
11821
+ readonly dragEffectAllowed: _angular_core.InputSignal<"link" | "copy" | "none" | "all" | "move" | "copyLink" | "copyMove" | "linkMove" | "uninitialized">;
11822
+ readonly dragStarted: _angular_core.OutputEmitterRef<DragEvent>;
11823
+ readonly dragEnded: _angular_core.OutputEmitterRef<DragEvent>;
11824
+ protected get isDraggable(): boolean;
11825
+ protected readonly baseClass = true;
11826
+ protected get cursorClass(): boolean;
11827
+ ngOnInit(): void;
11828
+ ngOnDestroy(): void;
11829
+ protected onDragStart(event: DragEvent): void;
11830
+ protected onDragEnd(event: DragEvent): void;
11831
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwDraggableDirective, never>;
11832
+ 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>;
11833
+ }
11834
+
11835
+ /**
11836
+ * Directive to define drop target areas
11837
+ *
11838
+ * @example
11839
+ * ```html
11840
+ * <div twDropZone [acceptTypes]="['file', 'folder']" (dropped)="onDrop($event)">
11841
+ * Drop files here
11842
+ * </div>
11843
+ * ```
11844
+ */
11845
+ declare class TwDropZoneDirective {
11846
+ private readonly elementRef;
11847
+ readonly twDropZone: _angular_core.InputSignal<boolean | "">;
11848
+ readonly acceptTypes: _angular_core.InputSignal<string[]>;
11849
+ readonly dropEffect: _angular_core.InputSignal<"link" | "copy" | "none" | "move">;
11850
+ readonly dragEntered: _angular_core.OutputEmitterRef<DragEvent>;
11851
+ readonly dragLeft: _angular_core.OutputEmitterRef<DragEvent>;
11852
+ readonly dragOver: _angular_core.OutputEmitterRef<DragEvent>;
11853
+ readonly dropped: _angular_core.OutputEmitterRef<DropEvent>;
11854
+ protected readonly isDragOver: _angular_core.WritableSignal<boolean>;
11855
+ private dragEnterCount;
11856
+ protected readonly baseClass = true;
11857
+ protected get activeClass(): boolean;
11858
+ protected get isEnabled(): boolean;
11859
+ protected onDragEnter(event: DragEvent): void;
11860
+ protected onDragLeave(event: DragEvent): void;
11861
+ protected onDragOver(event: DragEvent): void;
11862
+ protected onDrop(event: DragEvent): void;
11863
+ private validateDrag;
11864
+ private validateType;
11865
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwDropZoneDirective, never>;
11866
+ 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>;
11867
+ }
11868
+
11869
+ /**
11870
+ * Directive for binding keyboard shortcuts to actions
11871
+ *
11872
+ * @example
11873
+ * ```html
11874
+ * <button twShortcut="ctrl+s" (shortcutTriggered)="onSave()">Save</button>
11875
+ * <div twShortcut="ctrl+shift+p" [shortcutGlobal]="true" (shortcutTriggered)="openPalette()"></div>
11876
+ * ```
11877
+ */
11878
+ declare class TwShortcutDirective implements OnInit, OnDestroy {
11879
+ private readonly platformService;
11880
+ private readonly ngZone;
11881
+ readonly twShortcut: _angular_core.InputSignal<string>;
11882
+ readonly shortcutGlobal: _angular_core.InputSignal<boolean>;
11883
+ readonly shortcutPreventDefault: _angular_core.InputSignal<boolean>;
11884
+ readonly shortcutEnabled: _angular_core.InputSignal<boolean>;
11885
+ readonly shortcutTriggered: _angular_core.OutputEmitterRef<KeyboardEvent>;
11886
+ private keydownHandler;
11887
+ ngOnInit(): void;
11888
+ ngOnDestroy(): void;
11889
+ private handleKeydown;
11890
+ private parseShortcut;
11891
+ private normalizeKey;
11892
+ private matchesShortcut;
11893
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TwShortcutDirective, never>;
11894
+ 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>;
11895
+ }
11896
+
11897
+ 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];
11898
+ declare const TW_NATIVE_DIRECTIVES: readonly [typeof TwDraggableDirective, typeof TwDropZoneDirective, typeof TwShortcutDirective];
11899
+
10225
11900
  declare const TW_AVATAR_COMPONENTS: readonly [typeof TwAvatarComponent, typeof TwAvatarGroupComponent];
10226
11901
  declare const TW_SPINNER_COMPONENTS: readonly [typeof TwSpinnerComponent, typeof TwLoadingOverlayComponent];
10227
11902
  declare const TW_PROGRESS_COMPONENTS: readonly [typeof TwProgressComponent, typeof TwProgressCircularComponent];
@@ -10275,7 +11950,7 @@ declare const TW_OVERLAY_COMPONENTS: readonly [typeof TwOverlayComponent];
10275
11950
  * export class MyComponent {}
10276
11951
  * ```
10277
11952
  */
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];
11953
+ 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
11954
 
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 };
11955
+ 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 };
11956
+ 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 };