codexly-ui 0.8.3 → 0.9.0

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.8.3",
3
+ "version": "0.9.0",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -553,30 +553,17 @@ declare class ClxTooltipDirective {
553
553
  readonly clxTooltipSize: _angular_core.InputSignal<ClxTooltipSize>;
554
554
  readonly clxTooltipDelay: _angular_core.InputSignal<number>;
555
555
  private readonly _el;
556
- private readonly _renderer;
557
- private readonly _appRef;
558
- private readonly _injector;
559
- private readonly _animate;
556
+ private readonly _tooltip;
560
557
  private readonly _platformId;
561
558
  private readonly _destroyRef;
562
- private _ref;
563
- private _pendingRef;
564
559
  private _showTimer;
565
560
  private _hideTimer;
566
- private _tooltipId;
567
561
  private _abort;
568
- private _destroyed;
569
562
  constructor();
570
563
  private _scheduleShow;
571
564
  private _scheduleHide;
572
565
  private _show;
573
566
  private _hide;
574
- /** Synchronous teardown, no fade — used on touchend so the bubble can't linger over UI the tap opens. */
575
- private _hideImmediate;
576
- private _resolvePosition;
577
- private _placeAt;
578
- private _destroyBubble;
579
- private _forceDestroyBubble;
580
567
  private _clearShow;
581
568
  private _clearHide;
582
569
  private _clearTimers;
@@ -1969,12 +1956,12 @@ declare class ClxNavGroupComponent {
1969
1956
  * hand-rolled `<h1 class="text-2xl font-semibold">` + `<p>` pattern repeated across every page.
1970
1957
  *
1971
1958
  * For detail pages whose title needs inline content (a status badge, a monospace order
1972
- * number) that a plain `title` string can't express, project a `[clxPageHeaderTitle]`
1973
- * block instead of using the `title`/`subtitle` inputs.
1959
+ * number) that a plain `headerTitle` string can't express, project a `[clxPageHeaderTitle]`
1960
+ * block instead of using the `headerTitle`/`subtitle` inputs.
1974
1961
  */
1975
1962
  declare class ClxPageHeaderComponent {
1976
1963
  private readonly _themeSvc;
1977
- readonly title: _angular_core.InputSignal<string>;
1964
+ readonly headerTitle: _angular_core.InputSignal<string>;
1978
1965
  readonly subtitle: _angular_core.InputSignal<string | undefined>;
1979
1966
  /** Set to show the back button — `[showBack]="true" (back)="goBack()"`. */
1980
1967
  readonly showBack: _angular_core.InputSignal<boolean>;
@@ -1989,14 +1976,14 @@ declare class ClxPageHeaderComponent {
1989
1976
  /** Subtitle classes resolved from the theme — same usage as titleClass. */
1990
1977
  readonly subtitleClass: _angular_core.Signal<string>;
1991
1978
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxPageHeaderComponent, never>;
1992
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxPageHeaderComponent, "clx-page-header", ["clxPageHeader"], { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "showBack": { "alias": "showBack"; "required": false; "isSignal": true; }; }, { "back": "back"; }, ["_titleSlot"], ["[clxPageHeaderTitle]", "*"], true, never>;
1979
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxPageHeaderComponent, "clx-page-header", ["clxPageHeader"], { "headerTitle": { "alias": "headerTitle"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "showBack": { "alias": "showBack"; "required": false; "isSignal": true; }; }, { "back": "back"; }, ["_titleSlot"], ["[clxPageHeaderTitle]", "*"], true, never>;
1993
1980
  }
1994
1981
 
1995
1982
  /** Optional replacement for the auto-generated `<h1>` — project this when the title needs
1996
1983
  * inline content next to it (a status badge, a monospace order number, extra spans) that a
1997
- * plain `title` string input can't express. The `title`/`subtitle` inputs are ignored when
1998
- * this is present; ClxPageHeaderComponent's own text-2xl/font-weight/truncate styling is
1999
- * NOT applied automatically to projected content — style the projected `<h1>` yourself. */
1984
+ * plain `headerTitle` string input can't express. The `headerTitle`/`subtitle` inputs are
1985
+ * ignored when this is present; ClxPageHeaderComponent's own text-2xl/font-weight/truncate
1986
+ * styling is NOT applied automatically to projected content — style the projected `<h1>` yourself. */
2000
1987
  declare class ClxPageHeaderTitleDirective {
2001
1988
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxPageHeaderTitleDirective, never>;
2002
1989
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ClxPageHeaderTitleDirective, "[clxPageHeaderTitle]", never, {}, {}, never, never, true, never>;