Skip to content

Commit 902b3dd

Browse files
committed
fix(backdrop): add missing export
(cherry picked from commit 8609b06)
1 parent 90667c6 commit 902b3dd

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

projects/coreui-angular/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './public-api';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './public_api';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { BackdropService } from './backdrop.service';

projects/coreui-angular/src/lib/table/table.type.ts

+5-4
Original file line numberDiff line numberDiff 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

5858
export 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

7172
export interface ITableRowCellProps extends ITableElementProps {
7273
/**
7374
* Highlight a table row or cell
7475
@type boolean
7576
*/
76-
active?: boolean
77+
active?: boolean;
7778
}

projects/coreui-angular/src/public-api.ts

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export * from './lib/accordion';
88
export * from './lib/alert';
99
export * from './lib/avatar';
1010
export * from './lib/badge';
11+
export * from './lib/backdrop';
1112
export * from './lib/breadcrumb';
1213
export * from './lib/button';
1314
export * from './lib/button-group';

0 commit comments

Comments
 (0)