codexly-ui 0.11.5 → 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 +13 -16
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +6 -1
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -2494,6 +2494,10 @@ declare class ClxNotificationComponent {
|
|
|
2494
2494
|
readonly triggerVariant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
2495
2495
|
readonly triggerSize: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg">;
|
|
2496
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>;
|
|
2497
2501
|
readonly itemClick: _angular_core.OutputEmitterRef<ClxNotificationItem>;
|
|
2498
2502
|
readonly markRead: _angular_core.OutputEmitterRef<string>;
|
|
2499
2503
|
readonly markAllRead: _angular_core.OutputEmitterRef<void>;
|
|
@@ -2501,6 +2505,7 @@ declare class ClxNotificationComponent {
|
|
|
2501
2505
|
readonly deleteAllRead: _angular_core.OutputEmitterRef<void>;
|
|
2502
2506
|
protected readonly _style: _angular_core.Signal<codexly_ui.ClxResolvedNotificationStyle>;
|
|
2503
2507
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
2508
|
+
protected readonly _badgeColor: _angular_core.Signal<ClxColorInput>;
|
|
2504
2509
|
private readonly _sso;
|
|
2505
2510
|
readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
2506
2511
|
readonly _positions: ConnectedPosition[];
|
|
@@ -2528,7 +2533,7 @@ declare class ClxNotificationComponent {
|
|
|
2528
2533
|
private _dayLabel;
|
|
2529
2534
|
protected _timeOf(iso: string): string;
|
|
2530
2535
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNotificationComponent, 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>;
|
|
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>;
|
|
2532
2537
|
}
|
|
2533
2538
|
|
|
2534
2539
|
declare class ClxAlertComponent implements OnInit, OnDestroy {
|