codexly-ui 0.0.55 → 0.0.57
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
|
@@ -972,7 +972,7 @@ declare class ClxRatingComponent {
|
|
|
972
972
|
declare class ClxBadgeComponent {
|
|
973
973
|
readonly variant: _angular_core.InputSignal<ClxBadgeVariant>;
|
|
974
974
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
975
|
-
readonly size: _angular_core.InputSignal<"
|
|
975
|
+
readonly size: _angular_core.InputSignal<"xs" | "sm" | "md">;
|
|
976
976
|
readonly shape: _angular_core.InputSignal<ClxShape>;
|
|
977
977
|
readonly positioned: _angular_core.InputSignal<boolean>;
|
|
978
978
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
@@ -983,7 +983,7 @@ declare class ClxBadgeComponent {
|
|
|
983
983
|
declare class ClxButtonComponent {
|
|
984
984
|
readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
985
985
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
986
|
-
readonly size: _angular_core.InputSignal<"
|
|
986
|
+
readonly size: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg">;
|
|
987
987
|
readonly shape: _angular_core.InputSignal<ClxShape>;
|
|
988
988
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
989
989
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -2154,7 +2154,9 @@ declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
|
2154
2154
|
readonly _sidebarOpen: _angular_core.WritableSignal<boolean>;
|
|
2155
2155
|
readonly collapsed: _angular_core.WritableSignal<boolean>;
|
|
2156
2156
|
readonly _hovered: _angular_core.WritableSignal<boolean>;
|
|
2157
|
+
readonly _transitioning: _angular_core.WritableSignal<boolean>;
|
|
2157
2158
|
private readonly _isMobile;
|
|
2159
|
+
private _transitionTimer;
|
|
2158
2160
|
readonly collapsedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
2159
2161
|
readonly expandedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
2160
2162
|
constructor();
|
|
@@ -2165,6 +2167,7 @@ declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
|
2165
2167
|
private _mqlListener;
|
|
2166
2168
|
ngOnInit(): void;
|
|
2167
2169
|
ngOnDestroy(): void;
|
|
2170
|
+
private _enableTransition;
|
|
2168
2171
|
_toggleCollapsed(): void;
|
|
2169
2172
|
_onSidebarEnter(): void;
|
|
2170
2173
|
_onSidebarLeave(): void;
|