Skip to content

Commit 14cd384

Browse files
committed
chore: build lib prod build
1 parent 8dbbc26 commit 14cd384

File tree

7 files changed

+9
-0
lines changed

7 files changed

+9
-0
lines changed

library/angular-admin-lte/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
*/
44

55
export * from './lib/layout';
6+
export * from './lib/animations';
7+
export * from './lib/color';
68

79
export * from './lib/accordion';
810
export * from './lib/alert';

library/angular-admin-lte/src/lib/accordion/accordion.module.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { ColorModule } from '../color/color.module';
66
import { AccordionHeaderComponent, AccordionContentComponent, AccordionComponent, AccordionGroupComponent } from './accordion.component';
77
import { AccordionToggleDirective } from './accordion.directive';
88
export { AccordionHeaderComponent, AccordionContentComponent, AccordionComponent, AccordionGroupComponent } from './accordion.component';
9+
export { AccordionToggleDirective } from './accordion.directive';
910

1011
@NgModule({
1112
imports: [CommonModule, AnimationsModule, ColorModule],

library/angular-admin-lte/src/lib/animations/animations.module.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { NgModule } from '@angular/core';
22

33
import { CollapseAnimationDirective } from './animations.directive';
44

5+
export { CollapseAnimationDirective } from './animations.directive';
56

67
@NgModule({
78
exports: [CollapseAnimationDirective],
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './animations.module';

library/angular-admin-lte/src/lib/color/color.module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import { NgModule } from '@angular/core';
22

33
import { BackgroundColorDirective, ColorDirective } from './color.directive';
44

5+
export { BackgroundColorDirective, ColorDirective } from './color.directive';
6+
57
@NgModule({
68
exports: [BackgroundColorDirective, ColorDirective],
79
declarations: [BackgroundColorDirective, ColorDirective]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './color.module';

library/angular-admin-lte/src/lib/tabs/tabs.module.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { ColorModule } from '../color/color.module';
55
import { TabToggleDirective } from './tabs.directive';
66
import { TabsComponent, TabsHeaderComponent, TabComponent, TabHeaderComponent, TabContentComponent } from './tabs.component';
77

8+
export { TabToggleDirective } from './tabs.directive';
89
export { TabsComponent, TabsHeaderComponent, TabComponent, TabHeaderComponent, TabContentComponent } from './tabs.component';
910

1011
@NgModule({

0 commit comments

Comments
 (0)