@kingsimba/nc-ui 0.1.21 → 0.1.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -235,13 +235,15 @@ export declare const appStateStore: AppStateStore;
235
235
  * Displays pinned app icons that are always visible, plus any running non-pinned apps.
236
236
  * Clicking an icon launches the app or toggles its active state if already running.
237
237
  */
238
- export declare function AppTaskbar({ pinnedAppIds, className }: AppTaskbarProps): JSX_2.Element;
238
+ export declare function AppTaskbar({ pinnedAppIds, className, showIndicators, }: AppTaskbarProps): JSX_2.Element;
239
239
 
240
240
  export declare interface AppTaskbarProps {
241
241
  /** Array of app IDs to pin to the taskbar (always visible) */
242
242
  pinnedAppIds: string[];
243
243
  /** Optional className for the taskbar container */
244
244
  className?: string;
245
+ /** Whether to show the running and active indicator beneath app icons */
246
+ showIndicators?: boolean;
245
247
  }
246
248
 
247
249
  /**
@@ -351,7 +353,7 @@ declare interface CloseButtonProps {
351
353
 
352
354
  export declare function cn(...inputs: ClassValue[]): string;
353
355
 
354
- export declare function ComboBox({ value, onChange, placeholder, options, disabled, label, clearable, allowTyping, placement, size, appearance, style, className, }: ComboBoxProps): JSX_2.Element;
356
+ export declare function ComboBox({ value, onChange, placeholder, options, disabled, label, clearable, allowTyping, placement, size, appearance, textAlign, style, className, }: ComboBoxProps): JSX_2.Element;
355
357
 
356
358
  export declare type ComboBoxOption = {
357
359
  label: string;
@@ -382,6 +384,8 @@ export declare interface ComboBoxProps {
382
384
  size?: 'default' | 'small';
383
385
  /** Visual appearance of the closed control */
384
386
  appearance?: 'default' | 'transparent';
387
+ /** Horizontal alignment for the selected text and typed query */
388
+ textAlign?: 'left' | 'center' | 'right';
385
389
  /** Custom styles */
386
390
  style?: default_2.CSSProperties;
387
391
  /** Additional CSS class names */