mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
21 lines
565 B
TypeScript
21 lines
565 B
TypeScript
import { Component, Input, OnInit } from "@angular/core";
|
|
import { ANIMATION_FADE_IN_NOT_OUT } from "../../app.animations";
|
|
|
|
@Component({
|
|
selector: "my-ibox",
|
|
templateUrl: "./ibox.component.html",
|
|
styleUrls: ["./ibox.component.scss"],
|
|
animations: [ANIMATION_FADE_IN_NOT_OUT],
|
|
})
|
|
export class IboxComponent implements OnInit {
|
|
@Input() title: string;
|
|
@Input() isCollapsible: boolean;
|
|
@Input() defaultCollapsed: boolean;
|
|
|
|
public collapsed = false;
|
|
|
|
public ngOnInit(): void {
|
|
this.collapsed = this.defaultCollapsed;
|
|
}
|
|
}
|