This repository has been archived by the owner on Jun 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(table): add support for fixed table
Added support for new table type fixed, added to Office UI Fabric 2.4.x. Closes #308.
- Loading branch information
1 parent
c914b96
commit c643a25
Showing
5 changed files
with
125 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
'use strict'; | ||
|
||
/** | ||
* Enum for supported input types of the uif-table directive | ||
* This enum is intended to be used as a string. | ||
* | ||
* @readonly | ||
* @enum {string} | ||
* @usage | ||
* | ||
* This is used to generate the string that you pass into the `uif-table-type` attribute of the following components: | ||
* | ||
* let style: string = TableTypeEnum[TableTypeEnum.text]; | ||
*/ | ||
export enum TableTypeEnum { | ||
fluid, | ||
fixed | ||
} |