@atelier-ui/angular 0.0.21 → 0.0.23
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
|
@@ -112,22 +112,13 @@ declare class LlmCardFooter {
|
|
|
112
112
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LlmCardFooter, "llm-card-footer", never, {}, {}, never, ["*"], true, never>;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
/**
|
|
116
|
-
* Inline status badge for labeling items with semantic color variants.
|
|
117
|
-
*
|
|
118
|
-
* Usage:
|
|
119
|
-
* ```html
|
|
120
|
-
* <llm-badge variant="success">Active</llm-badge>
|
|
121
|
-
* <llm-badge variant="danger" size="sm">Error</llm-badge>
|
|
122
|
-
* <llm-badge variant="warning">Pending</llm-badge>
|
|
123
|
-
* ```
|
|
124
|
-
*/
|
|
125
115
|
declare class LlmBadge {
|
|
126
116
|
/** Semantic color variant of the badge. */
|
|
127
117
|
readonly variant: _angular_core.InputSignal<"default" | "success" | "warning" | "danger" | "info">;
|
|
128
118
|
/** Size of the badge. */
|
|
129
119
|
readonly size: _angular_core.InputSignal<"sm" | "md">;
|
|
130
120
|
protected readonly hostClasses: _angular_core.Signal<string>;
|
|
121
|
+
protected readonly variantIcon: _angular_core.Signal<string | null>;
|
|
131
122
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LlmBadge, never>;
|
|
132
123
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LlmBadge, "llm-badge", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
133
124
|
}
|
|
@@ -419,17 +410,6 @@ declare class LlmToggle implements FormCheckboxControl {
|
|
|
419
410
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LlmToggle, "llm-toggle", never, { "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "touched": { "alias": "touched"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "errors": { "alias": "errors"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "touched": "touchedChange"; }, never, ["*"], true, never>;
|
|
420
411
|
}
|
|
421
412
|
|
|
422
|
-
/**
|
|
423
|
-
* Inline notification banner with semantic color variants and optional dismiss button.
|
|
424
|
-
*
|
|
425
|
-
* Usage:
|
|
426
|
-
* ```html
|
|
427
|
-
* <llm-alert variant="success">Your changes were saved.</llm-alert>
|
|
428
|
-
* <llm-alert variant="warning" [dismissible]="true" (dismissed)="onDismiss()">
|
|
429
|
-
* Your session expires soon.
|
|
430
|
-
* </llm-alert>
|
|
431
|
-
* ```
|
|
432
|
-
*/
|
|
433
413
|
declare class LlmAlert {
|
|
434
414
|
/** Semantic color variant of the alert. */
|
|
435
415
|
readonly variant: _angular_core.InputSignal<"success" | "warning" | "danger" | "info">;
|
|
@@ -438,6 +418,7 @@ declare class LlmAlert {
|
|
|
438
418
|
/** Emitted when the dismiss button is clicked. */
|
|
439
419
|
readonly dismissed: _angular_core.OutputEmitterRef<void>;
|
|
440
420
|
protected readonly hostClasses: _angular_core.Signal<string>;
|
|
421
|
+
protected readonly variantIcon: _angular_core.Signal<string>;
|
|
441
422
|
/** @internal */
|
|
442
423
|
get isDismissible(): boolean;
|
|
443
424
|
/** @internal */
|