codexly-ui 0.11.4 → 0.11.7
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/fesm2022/codexly-ui.mjs +32 -24
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +9 -2
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -2491,6 +2491,13 @@ 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>;
|
|
2497
|
+
/** Unread-count badge color — falls back to the theme's notification.unreadColor (then
|
|
2498
|
+
* primaryColor) when unset, same precedence as every other per-instance override in this
|
|
2499
|
+
* library (instance input > theme block > primaryColor). */
|
|
2500
|
+
readonly badgeColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2494
2501
|
readonly itemClick: _angular_core.OutputEmitterRef<ClxNotificationItem>;
|
|
2495
2502
|
readonly markRead: _angular_core.OutputEmitterRef<string>;
|
|
2496
2503
|
readonly markAllRead: _angular_core.OutputEmitterRef<void>;
|
|
@@ -2498,12 +2505,12 @@ declare class ClxNotificationComponent {
|
|
|
2498
2505
|
readonly deleteAllRead: _angular_core.OutputEmitterRef<void>;
|
|
2499
2506
|
protected readonly _style: _angular_core.Signal<codexly_ui.ClxResolvedNotificationStyle>;
|
|
2500
2507
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
2508
|
+
protected readonly _badgeColor: _angular_core.Signal<ClxColorInput>;
|
|
2501
2509
|
private readonly _sso;
|
|
2502
2510
|
readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
2503
2511
|
readonly _positions: ConnectedPosition[];
|
|
2504
2512
|
protected readonly _isOpen: _angular_core.WritableSignal<boolean>;
|
|
2505
2513
|
protected readonly _filter: _angular_core.WritableSignal<string>;
|
|
2506
|
-
protected readonly _ringClass: _angular_core.Signal<string>;
|
|
2507
2514
|
protected readonly _panelClass: _angular_core.Signal<string>;
|
|
2508
2515
|
protected readonly _unreadCount: _angular_core.Signal<number>;
|
|
2509
2516
|
protected readonly _readCount: _angular_core.Signal<number>;
|
|
@@ -2526,7 +2533,7 @@ declare class ClxNotificationComponent {
|
|
|
2526
2533
|
private _dayLabel;
|
|
2527
2534
|
protected _timeOf(iso: string): string;
|
|
2528
2535
|
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>;
|
|
2536
|
+
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; }; "badgeColor": { "alias": "badgeColor"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
|
|
2530
2537
|
}
|
|
2531
2538
|
|
|
2532
2539
|
declare class ClxAlertComponent implements OnInit, OnDestroy {
|