@haloduck/ui 2.0.16 → 2.0.18
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/haloduck-ui.mjs +10 -2
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -647,10 +647,11 @@ declare class TagInputComponent implements ControlValueAccessor, AfterViewInit {
|
|
|
647
647
|
declare class TagViewerComponent implements AfterViewInit {
|
|
648
648
|
label: ElementRef;
|
|
649
649
|
tags: string[];
|
|
650
|
+
shouldWrap: boolean;
|
|
650
651
|
set value(tags: string[] | null);
|
|
651
652
|
ngAfterViewInit(): void;
|
|
652
653
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagViewerComponent, never>;
|
|
653
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TagViewerComponent, "haloduck-tag-viewer", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
654
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagViewerComponent, "haloduck-tag-viewer", never, { "shouldWrap": { "alias": "shouldWrap"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
654
655
|
}
|
|
655
656
|
|
|
656
657
|
interface GroupedConfig {
|
|
@@ -676,6 +677,7 @@ declare class GroupedDirective implements OnInit {
|
|
|
676
677
|
constructor(elementRef: ElementRef, renderer: Renderer2);
|
|
677
678
|
ngOnInit(): void;
|
|
678
679
|
private applyConfig;
|
|
680
|
+
private createLayout;
|
|
679
681
|
private createBorder;
|
|
680
682
|
private createLabel;
|
|
681
683
|
private addClasses;
|