duck-dev-lib 0.0.76 → 0.0.77
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/duck-dev-lib.d.ts
CHANGED
|
@@ -797,6 +797,8 @@ declare class DuckDevSegmentButton {
|
|
|
797
797
|
|
|
798
798
|
declare class DuckDevSegmentNeobrutal implements AfterContentInit {
|
|
799
799
|
private readonly cdr;
|
|
800
|
+
private readonly destroyRef;
|
|
801
|
+
private readonly host;
|
|
800
802
|
readonly value: _angular_core.InputSignal<string | undefined>;
|
|
801
803
|
readonly color: _angular_core.InputSignal<AccentEnumColor>;
|
|
802
804
|
readonly valueChange: _angular_core.OutputEmitterRef<string>;
|
|
@@ -818,12 +820,21 @@ declare class DuckDevSegmentNeobrutal implements AfterContentInit {
|
|
|
818
820
|
protected readonly segmentStyle: _angular_core.Signal<{
|
|
819
821
|
[key: string]: string;
|
|
820
822
|
}>;
|
|
823
|
+
private resizeObserver;
|
|
824
|
+
private intersectionObserver;
|
|
825
|
+
private frameId;
|
|
826
|
+
private settleFrameId;
|
|
821
827
|
constructor();
|
|
822
828
|
ngAfterContentInit(): void;
|
|
823
829
|
selectButton(value: string, index: number): void;
|
|
824
830
|
private rebuildButtons;
|
|
825
831
|
private getSelectedIndex;
|
|
826
832
|
private updateIndicator;
|
|
833
|
+
private scheduleIndicatorUpdate;
|
|
834
|
+
private watchContainerSize;
|
|
835
|
+
private watchHostVisibility;
|
|
836
|
+
private scheduleSettledIndicatorUpdate;
|
|
837
|
+
private destroyObservers;
|
|
827
838
|
private getSegmentStyle;
|
|
828
839
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DuckDevSegmentNeobrutal, never>;
|
|
829
840
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DuckDevSegmentNeobrutal, "duck-dev-segment-neobrutal", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "ionChange": "ionChange"; }, ["segmentButtons"], never, true, never>;
|