codexly-ui 0.12.34 → 0.12.35

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.12.34",
3
+ "version": "0.12.35",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -2093,9 +2093,13 @@ interface ClxNotificationTheme {
2093
2093
  severityColors?: ClxNotificationSeverityColors;
2094
2094
  /** Unread-row accent (left rail + title dot) — falls back to primaryColor when unset. */
2095
2095
  unreadColor?: ClxColorInput;
2096
- /** clx-tabs (Todas/Sin leer/...) + "Marcar todo leído" link accent — falls back to
2097
- * primaryColor when unset. Independent from the bell button's own color. */
2096
+ /** clx-tabs (Todas/Sin leer/...) active tab text/icon color + "Marcar todo leído" link accent —
2097
+ * falls back to the theme's tabs.activeTextColor (then primaryColor) when unset. Independent
2098
+ * from the bell button's own color. */
2098
2099
  tabsColor?: ClxColorInput;
2100
+ /** clx-tabs underline color, independent of tabsColor — falls back to the theme's
2101
+ * tabs.underlineColor (then primaryColor) when unset. */
2102
+ tabsUnderlineColor?: ClxColorInput;
2099
2103
  /** Row density. Falls back to 'md'. */
2100
2104
  size?: ClxNotificationSize;
2101
2105
  /** Whether the panel wrapper shows its outer border at all — falls back to true. Same field
@@ -2555,9 +2559,14 @@ declare class ClxNotificationComponent {
2555
2559
  /** Unread-count badge color — falls back to the theme's notification.unreadColor (then
2556
2560
  * primaryColor) when unset. */
2557
2561
  readonly badgeColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2558
- /** clx-tabs (Todas/Sin leer/...) + "Marcar todo leído" link accent — falls back to the theme's
2559
- * notification.tabsColor (then primaryColor) when unset. */
2562
+ /** clx-tabs (Todas/Sin leer/...) active tab text/icon color + "Marcar todo leído" link accent —
2563
+ * falls back to the theme's notification.tabsColor (which itself falls back to the general
2564
+ * "Pestañas" theme's tabs.activeTextColor, then primaryColor) when unset. */
2560
2565
  readonly tabsColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2566
+ /** clx-tabs underline color, independent of tabsColor — falls back to the theme's
2567
+ * notification.tabsUnderlineColor (which itself falls back to tabs.underlineColor, then
2568
+ * primaryColor) when unset. */
2569
+ readonly tabsUnderlineColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2561
2570
  /** Whether the floating panel shows its outer border — falls back to the theme's
2562
2571
  * notification.border (then true) when unset. */
2563
2572
  readonly border: _angular_core.InputSignal<boolean | undefined>;
@@ -2572,6 +2581,7 @@ declare class ClxNotificationComponent {
2572
2581
  protected readonly _buttonColor: _angular_core.Signal<ClxColorInput>;
2573
2582
  protected readonly _badgeColor: _angular_core.Signal<ClxColorInput>;
2574
2583
  protected readonly _tabsColor: _angular_core.Signal<ClxColorInput>;
2584
+ protected readonly _tabsUnderlineColor: _angular_core.Signal<ClxColorInput>;
2575
2585
  protected readonly _border: _angular_core.Signal<boolean>;
2576
2586
  protected readonly _borderColor: _angular_core.Signal<ClxColorInput>;
2577
2587
  private readonly _sso;
@@ -2600,7 +2610,7 @@ declare class ClxNotificationComponent {
2600
2610
  private _dayLabel;
2601
2611
  protected _timeOf(iso: string): string;
2602
2612
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNotificationComponent, never>;
2603
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNotificationComponent, "clx-notification", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "categoryTab": { "alias": "categoryTab"; "required": false; "isSignal": true; }; "buttonColor": { "alias": "buttonColor"; "required": false; "isSignal": true; }; "buttonVariant": { "alias": "buttonVariant"; "required": false; "isSignal": true; }; "buttonSize": { "alias": "buttonSize"; "required": false; "isSignal": true; }; "buttonIcon": { "alias": "buttonIcon"; "required": false; "isSignal": true; }; "badgeColor": { "alias": "badgeColor"; "required": false; "isSignal": true; }; "tabsColor": { "alias": "tabsColor"; "required": false; "isSignal": true; }; "border": { "alias": "border"; "required": false; "isSignal": true; }; "borderColor": { "alias": "borderColor"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
2613
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNotificationComponent, "clx-notification", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "categoryTab": { "alias": "categoryTab"; "required": false; "isSignal": true; }; "buttonColor": { "alias": "buttonColor"; "required": false; "isSignal": true; }; "buttonVariant": { "alias": "buttonVariant"; "required": false; "isSignal": true; }; "buttonSize": { "alias": "buttonSize"; "required": false; "isSignal": true; }; "buttonIcon": { "alias": "buttonIcon"; "required": false; "isSignal": true; }; "badgeColor": { "alias": "badgeColor"; "required": false; "isSignal": true; }; "tabsColor": { "alias": "tabsColor"; "required": false; "isSignal": true; }; "tabsUnderlineColor": { "alias": "tabsUnderlineColor"; "required": false; "isSignal": true; }; "border": { "alias": "border"; "required": false; "isSignal": true; }; "borderColor": { "alias": "borderColor"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
2604
2614
  }
2605
2615
 
2606
2616
  declare class ClxAlertComponent implements OnInit, OnDestroy {
@@ -4064,6 +4074,7 @@ interface ClxResolvedNotificationStyle {
4064
4074
  severityColors: Required<ClxNotificationSeverityColors>;
4065
4075
  unreadColor: ClxColorInput;
4066
4076
  tabsColor: ClxColorInput;
4077
+ tabsUnderlineColor: ClxColorInput;
4067
4078
  size: ClxNotificationSize;
4068
4079
  border: boolean;
4069
4080
  borderColor: ClxColorInput;