codexly-ui 0.12.23 → 0.12.24

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.23",
3
+ "version": "0.12.24",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -2415,7 +2415,11 @@ declare class ClxModalComponent {
2415
2415
  protected readonly _confirmColor: _angular_core.Signal<codexly_ui.ClxColorInput>;
2416
2416
  protected readonly _confirmVariant: _angular_core.Signal<codexly_ui.ClxButtonVariant>;
2417
2417
  protected readonly _cancelText: _angular_core.Signal<string>;
2418
- protected readonly _cancelColor: _angular_core.Signal<codexly_ui.ClxColorInput>;
2418
+ /** Undefined when the caller didn't pass an explicit cancelButton.color — lets the button's own
2419
+ * emphasis="secondary" resolve the theme's secondaryColor (with secondaryButtonTextColor
2420
+ * auto-applied on solid variants) instead of hardcoding 'slate', same convention as
2421
+ * clx-alert/clx-product-detail/clx-wishlist's secondary actions. */
2422
+ protected readonly _cancelColor: _angular_core.Signal<codexly_ui.ClxColorInput | undefined>;
2419
2423
  protected readonly _cancelVariant: _angular_core.Signal<codexly_ui.ClxButtonVariant>;
2420
2424
  protected _close(): void;
2421
2425
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxModalComponent, never>;
@@ -2591,7 +2595,11 @@ declare class ClxAlertComponent implements OnInit, OnDestroy {
2591
2595
  protected readonly _confirmText: _angular_core.WritableSignal<string>;
2592
2596
  protected readonly _confirmColor: _angular_core.Signal<codexly_ui.ClxColorInput>;
2593
2597
  protected readonly _cancelText: _angular_core.WritableSignal<string>;
2594
- protected readonly _cancelColor: _angular_core.Signal<codexly_ui.ClxColorInput>;
2598
+ /** Undefined when the caller didn't pass an explicit cancelButton.color — lets the button's own
2599
+ * emphasis="secondary" resolve the theme's secondaryColor (with secondaryButtonTextColor
2600
+ * auto-applied on solid variants), same convention as clx-product-detail/clx-wishlist's
2601
+ * secondary CTAs, instead of hardcoding secondaryColor here and losing that auto-text-color. */
2602
+ protected readonly _cancelColor: _angular_core.Signal<codexly_ui.ClxColorInput | undefined>;
2595
2603
  protected readonly _cancelVariant: _angular_core.WritableSignal<ClxButtonVariant>;
2596
2604
  protected readonly _timerTotal: _angular_core.WritableSignal<number>;
2597
2605
  protected readonly _progressPct: _angular_core.WritableSignal<number>;