codexly-ui 0.10.40 → 0.10.42
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
package/types/codexly-ui.d.ts
CHANGED
|
@@ -2559,6 +2559,12 @@ declare class ClxCarouselComponent implements AfterContentInit, OnDestroy {
|
|
|
2559
2559
|
private _autoPlayTimer;
|
|
2560
2560
|
private _touchStartX;
|
|
2561
2561
|
private readonly _zone;
|
|
2562
|
+
/** True while the window is actively being resized — suppresses the track's transition so the
|
|
2563
|
+
* browser doesn't re-trigger a 500ms transform animation on every resize frame (translateX uses
|
|
2564
|
+
* a % value, which resolves to a new pixel value on each frame and reads as a "change"). */
|
|
2565
|
+
protected readonly _resizing: _angular_core.WritableSignal<boolean>;
|
|
2566
|
+
private _resizeEndTimer;
|
|
2567
|
+
private _resizeListener;
|
|
2562
2568
|
protected readonly _aspectClass: _angular_core.Signal<string>;
|
|
2563
2569
|
protected readonly _viewportClass: _angular_core.Signal<string>;
|
|
2564
2570
|
protected readonly _dotItems: _angular_core.Signal<{
|