File tree Expand file tree Collapse file tree 5 files changed +9
-4
lines changed
projects/coreui-angular/src Expand file tree Collapse file tree 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 {
5252 * @type boolean
5353 */
5454 striped ?: boolean | string ;
55- attributes ?: { [ key : string ] : any } ;
55+ attributes ?: { [ key : string ] : any } ;
5656}
5757
5858export interface ITableElementProps {
5959 /**
6060 * Set the vertical alignment.
6161 @type 'bottom' | 'middle' | 'top'
6262 */
63- align ?: ( 'bottom' | 'middle' | 'top' )
63+ align ?: ( 'bottom' | 'middle' | 'top' ) ;
6464 /**
6565 * Sets the color context of the component to one of CoreUI’s themed colors.
6666 * @type Colors
6767 */
68- color ?: Colors
68+ color ?: Colors ;
69+ _attributes ?: { [ key : string ] : any } ;
6970}
7071
7172export interface ITableRowCellProps extends ITableElementProps {
7273 /**
7374 * Highlight a table row or cell
7475 @type boolean
7576 */
76- active ?: boolean
77+ active ?: boolean ;
7778}
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export * from './lib/accordion';
88export * from './lib/alert' ;
99export * from './lib/avatar' ;
1010export * from './lib/badge' ;
11+ export * from './lib/backdrop' ;
1112export * from './lib/breadcrumb' ;
1213export * from './lib/button' ;
1314export * from './lib/button-group' ;
You can’t perform that action at this time.
0 commit comments