File tree 5 files changed +9
-4
lines changed
projects/coreui-angular/src
5 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ export * from './public-api' ;
Original file line number Diff line number Diff line change
1
+ export * from './public_api' ;
Original file line number Diff line number Diff line change
1
+ export { BackdropService } from './backdrop.service' ;
Original file line number Diff line number Diff line change @@ -52,26 +52,27 @@ export interface ITable {
52
52
* @type boolean
53
53
*/
54
54
striped ?: boolean | string ;
55
- attributes ?: { [ key : string ] : any } ;
55
+ attributes ?: { [ key : string ] : any } ;
56
56
}
57
57
58
58
export interface ITableElementProps {
59
59
/**
60
60
* Set the vertical alignment.
61
61
@type 'bottom' | 'middle' | 'top'
62
62
*/
63
- align ?: ( 'bottom' | 'middle' | 'top' )
63
+ align ?: ( 'bottom' | 'middle' | 'top' ) ;
64
64
/**
65
65
* Sets the color context of the component to one of CoreUI’s themed colors.
66
66
* @type Colors
67
67
*/
68
- color ?: Colors
68
+ color ?: Colors ;
69
+ _attributes ?: { [ key : string ] : any } ;
69
70
}
70
71
71
72
export interface ITableRowCellProps extends ITableElementProps {
72
73
/**
73
74
* Highlight a table row or cell
74
75
@type boolean
75
76
*/
76
- active ?: boolean
77
+ active ?: boolean ;
77
78
}
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export * from './lib/accordion';
8
8
export * from './lib/alert' ;
9
9
export * from './lib/avatar' ;
10
10
export * from './lib/badge' ;
11
+ export * from './lib/backdrop' ;
11
12
export * from './lib/breadcrumb' ;
12
13
export * from './lib/button' ;
13
14
export * from './lib/button-group' ;
You can’t perform that action at this time.
0 commit comments