codexly-ui 0.8.2 → 0.8.3
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 +38 -10
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +6 -0
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -1782,6 +1782,9 @@ declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
|
1782
1782
|
readonly collapsed: _angular_core.WritableSignal<boolean>;
|
|
1783
1783
|
readonly _hovered: _angular_core.WritableSignal<boolean>;
|
|
1784
1784
|
private readonly _isMobile;
|
|
1785
|
+
/** True only for the duration of an explicit toggle/hover transition — see _sidebarCls(). */
|
|
1786
|
+
protected readonly _animating: _angular_core.WritableSignal<boolean>;
|
|
1787
|
+
private _animatingTimer;
|
|
1785
1788
|
readonly collapsedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
1786
1789
|
readonly expandedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
1787
1790
|
constructor();
|
|
@@ -1792,6 +1795,9 @@ declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
|
1792
1795
|
private _mqlListener;
|
|
1793
1796
|
ngOnInit(): void;
|
|
1794
1797
|
ngOnDestroy(): void;
|
|
1798
|
+
/** Arms the width/transform transition for one toggle's duration, then switches it back off
|
|
1799
|
+
* so a later window resize reflow doesn't get caught by a live CSS transition on `width`. */
|
|
1800
|
+
private _withTransition;
|
|
1795
1801
|
_toggleCollapsed(): void;
|
|
1796
1802
|
_onSidebarEnter(): void;
|
|
1797
1803
|
_onSidebarLeave(): void;
|