codexly-ui 0.11.4 → 0.11.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codexly-ui",
3
- "version": "0.11.4",
3
+ "version": "0.11.5",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -2491,6 +2491,9 @@ declare class ClxNotificationComponent {
2491
2491
  id: string;
2492
2492
  label: string;
2493
2493
  } | undefined>;
2494
+ readonly triggerVariant: _angular_core.InputSignal<ClxButtonVariant>;
2495
+ readonly triggerSize: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg">;
2496
+ readonly triggerIcon: _angular_core.InputSignal<string>;
2494
2497
  readonly itemClick: _angular_core.OutputEmitterRef<ClxNotificationItem>;
2495
2498
  readonly markRead: _angular_core.OutputEmitterRef<string>;
2496
2499
  readonly markAllRead: _angular_core.OutputEmitterRef<void>;
@@ -2503,7 +2506,6 @@ declare class ClxNotificationComponent {
2503
2506
  readonly _positions: ConnectedPosition[];
2504
2507
  protected readonly _isOpen: _angular_core.WritableSignal<boolean>;
2505
2508
  protected readonly _filter: _angular_core.WritableSignal<string>;
2506
- protected readonly _ringClass: _angular_core.Signal<string>;
2507
2509
  protected readonly _panelClass: _angular_core.Signal<string>;
2508
2510
  protected readonly _unreadCount: _angular_core.Signal<number>;
2509
2511
  protected readonly _readCount: _angular_core.Signal<number>;
@@ -2526,7 +2528,7 @@ declare class ClxNotificationComponent {
2526
2528
  private _dayLabel;
2527
2529
  protected _timeOf(iso: string): string;
2528
2530
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNotificationComponent, never>;
2529
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNotificationComponent, "clx-notification", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "categoryTab": { "alias": "categoryTab"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
2531
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNotificationComponent, "clx-notification", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "categoryTab": { "alias": "categoryTab"; "required": false; "isSignal": true; }; "triggerVariant": { "alias": "triggerVariant"; "required": false; "isSignal": true; }; "triggerSize": { "alias": "triggerSize"; "required": false; "isSignal": true; }; "triggerIcon": { "alias": "triggerIcon"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
2530
2532
  }
2531
2533
 
2532
2534
  declare class ClxAlertComponent implements OnInit, OnDestroy {