codexly-ui 0.4.4 → 0.4.6
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
|
@@ -131,9 +131,11 @@ declare class ClxButtonComponent {
|
|
|
131
131
|
protected readonly _ripples: _angular_core.WritableSignal<ClxRippleItem[]>;
|
|
132
132
|
private _nextId;
|
|
133
133
|
private readonly _el;
|
|
134
|
-
/** Static `class="..."` written by the consumer template
|
|
135
|
-
*
|
|
136
|
-
*
|
|
134
|
+
/** Static `class="..."` written by the consumer template. Read via `HostAttributeToken`
|
|
135
|
+
* (resolved from the template's static attribute at DI time) rather than
|
|
136
|
+
* `ElementRef.nativeElement.getAttribute`, since the `[class]` host binding below hasn't
|
|
137
|
+
* necessarily painted yet when the constructor runs — otherwise any consumer-supplied
|
|
138
|
+
* classes (e.g. positioning utilities like `absolute`/`top-1`) would be silently lost. */
|
|
137
139
|
private readonly _consumerClass;
|
|
138
140
|
protected readonly _inactive: _angular_core.Signal<boolean>;
|
|
139
141
|
protected readonly _badgeClass: _angular_core.Signal<string>;
|