@haloduck/ui 2.0.16 → 2.0.17
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 +5 -0
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
package/fesm2022/haloduck-ui.mjs
CHANGED
|
@@ -3069,6 +3069,7 @@ class GroupedDirective {
|
|
|
3069
3069
|
}
|
|
3070
3070
|
ngOnInit() {
|
|
3071
3071
|
this.applyConfig();
|
|
3072
|
+
this.createLayout();
|
|
3072
3073
|
this.createBorder();
|
|
3073
3074
|
this.createLabel();
|
|
3074
3075
|
}
|
|
@@ -3086,6 +3087,10 @@ class GroupedDirective {
|
|
|
3086
3087
|
this.labelOffset = config.labelOffset ?? this.labelOffset;
|
|
3087
3088
|
}
|
|
3088
3089
|
}
|
|
3090
|
+
createLayout() {
|
|
3091
|
+
const element = this.elementRef.nativeElement;
|
|
3092
|
+
this.addClasses(element, this.layoutClasses);
|
|
3093
|
+
}
|
|
3089
3094
|
createBorder() {
|
|
3090
3095
|
const element = this.elementRef.nativeElement;
|
|
3091
3096
|
// 기존 테두리 클래스 제거
|