What's new
- This release is first release of PSWriteHTML that is considered stable. It's been in development for over 2 years, but it's time to say it's stable.
- Add columnVisibility button to
New-HTMLTable
$DataTable = @(
[PSCustomObject] @{ 'Test.1' = 'Name'; 'Test 2 Another' = 'Name2'; 'Test..3' = 'Name3'; "Da't'es" = $Date; 'Numbers' = $Int; Enum = $Enum; EnumFruit = $EnumFruit; Bool = $false }
[PSCustomObject] @{ 'Test.1' = 'Name'; 'Test 2 Another' = 'Name2'; 'Test..3' = 'Name3'; "Da't'es" = $Date2; 'Numbers' = $Int; Enum = $Enum; EnumFruit = $EnumFruit; Bool = $false }
[PSCustomObject] @{ 'Test.1' = 'Przemysłąw'; 'Test 2 Another' = 'Name2'; 'Test..3' = 'Name3'; "Da't'es" = $Date3; 'Numbers' = $Int; Enum = $Enum; EnumFruit = $EnumFruit; Bool = $false }
[PSCustomObject] @{ 'Test.1' = 'Kłys'; 'Test 2 Another' = 'Name2'; 'Test..3' = 'Name3'; "Da't'es" = $Date2; 'Numbers' = $Int; Enum = $Enum; EnumFruit = $EnumFruit; Bool = $false }
)
#$DataTable = Get-Process | Select-Object -First 30
New-HTML -TitleText 'Title' -Online -FilePath $PSScriptRoot\Example-TableColumnVisibility.html -ShowHTML {
New-HTMLTable -DataTable $DataTable -Filtering -Buttons columnVisibility, csvHtml5, excelHtml5, pageLength, searchBuilder
}
- Improve CSV output (UTF8 with BOM)
- Added new options for
New-TableButtonCSV
- Improve
New-TableButton*
with a few more options - Added European Union to
New-HTMLMap
- Added
New-HTMLWizardColor
- allows setting colors forNew-HTMLWizard
(globally) - Added
New-HTMLTabPanelColor
- allows setting colors forNew-HTMLTabPanel
(globally) - Fixed
New-HTMLWizard
themes - Added
New-HTMLTabPanel
themes - Updated handful of libraries
Full Changelog: v0.0.191...v1.0.0