@kingsimba/nc-ui 0.1.21 → 0.1.22
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.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +470 -466
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
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
|
/**
|