duck-dev-lib 0.0.49 → 0.0.51
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/fesm2022/duck-dev-lib.mjs +160 -161
- package/fesm2022/duck-dev-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/duck-dev-lib.d.ts +2 -1
package/package.json
CHANGED
package/types/duck-dev-lib.d.ts
CHANGED
|
@@ -447,12 +447,13 @@ declare class DuckDevAccordionComponent {
|
|
|
447
447
|
declare class DuckDevAccordionNeobrutalComponent {
|
|
448
448
|
readonly content: _angular_core.InputSignal<TemplateRef<unknown>>;
|
|
449
449
|
readonly title: _angular_core.InputSignal<string>;
|
|
450
|
+
readonly stampLabel: _angular_core.InputSignal<string>;
|
|
450
451
|
readonly color: _angular_core.InputSignal<AccentEnumColor>;
|
|
451
452
|
protected readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
452
453
|
protected readonly stateLabel: _angular_core.Signal<"OPEN" | "CLOSED">;
|
|
453
454
|
protected toggle(): void;
|
|
454
455
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DuckDevAccordionNeobrutalComponent, never>;
|
|
455
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DuckDevAccordionNeobrutalComponent, "duck-dev-accordion-neobrutal", never, { "content": { "alias": "content"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
456
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DuckDevAccordionNeobrutalComponent, "duck-dev-accordion-neobrutal", never, { "content": { "alias": "content"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "stampLabel": { "alias": "stampLabel"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
456
457
|
}
|
|
457
458
|
|
|
458
459
|
interface DuckDevAccordionItem {
|