-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 2023-12-04 EoD * 2023-12-06 BoD * 2023-12-06 EoD * 2023-12-07 MoD * 2023-12-07 MoD #2 * 2023-12-07 MoD #3 * 2023-12-07 MoD #4 * Remove js and alternate theme builds from M.B.W.MD3 * Restore alternate theme build * Enabled first buildscripts command * Cleaned npm install everywhere * Added js builds * Remove all hints of JS build * Remove extraneous logging & reinstate JS build * Working build sans JS production * 2023-12-12 BoD * 2023-12-12 EoD * Removed js build * 2023-12-13 Commit prior to MBDateField restructuring * 2023-12-15 Numeric field restructuring * 2023-12-16 Update website with numeric field demos * 2023-12-18 Functional DateTimeField with new TextField * 2023-12-18 Partial DecimalField * 2023-12-19 EoD * 2023-12-22 EoD * 2023-12-26 EoD * 2028-12-28 BoD * Attempt to split build/publish of MD3 website * No help with split build/publish steps, publish still deletes static assets * 2023-12-30 BoD * 2023-12-30 EoD * 2023-12-31 Tabs update * 2023-12-31 Repaired gitignore * 2024-01-01 MBGrid * 2024-01-02 MoD * 2024-01-02 EoD * MBMenu.ts * 2024-01-04 EoD * 2024-01-07 EoD * 2024-01-10 8.0.1 security * Release notes update for 5.0.2
- Loading branch information
Showing
154 changed files
with
12,603 additions
and
2,833 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
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
17 changes: 1 addition & 16 deletions
17
Material.Blazor.MD3/Components.MD2/DataTable/MBDataTable.ts
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 |
---|---|---|
@@ -1,23 +1,8 @@ | ||
import { MDCDataTable } from '@material/data-table'; | ||
|
||
export function init(elem, hasProgress, showProgress) { | ||
export function init(elem) { | ||
if (!elem) { | ||
return; | ||
} | ||
elem._dataTable = MDCDataTable.attachTo(elem); | ||
if (hasProgress) { | ||
setProgress(elem, showProgress); | ||
} | ||
} | ||
|
||
export function setProgress(elem, showProgress) { | ||
if (!elem) { | ||
return; | ||
} | ||
if (showProgress) { | ||
elem._dataTable.showProgress(); | ||
} | ||
else { | ||
elem._dataTable.hideProgress(); | ||
} | ||
} |
Oops, something went wrong.