-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare Release 1.27.0 #1513
Prepare Release 1.27.0 #1513
Conversation
Prepare Release 1.27.0Preview: documentation | landing | table | github pages |
minor thoughts imo, language looks good
|
packages/docs/package.json
Outdated
@@ -7,7 +7,7 @@ | |||
"style": "dist/docs.css", | |||
"unpkg": "dist/docs.bundle.js", | |||
"dependencies": { | |||
"@blueprintjs/core": "^1.25.1", | |||
"@blueprintjs/core": "^1.27.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@giladgray What's the rule of thumb with package versions in site-landing
, site-docs
, and docs
? (For both dependencies and the package itself.)
packages/site-landing/package.json
Outdated
@@ -22,7 +22,7 @@ | |||
"watch": "onchange 'src/**' -- npm-run-all build:copy build:webpack" | |||
}, | |||
"devDependencies": { | |||
"@blueprintjs/core": "^1.25.1", | |||
"@blueprintjs/core": "^1.27.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert
@giladgray done |
Revert @blueprintjs/core dependency versions in site-landing/ and docs/Preview: documentation | table | github pages |
* Fixes #1402 time picker change clears data picker * Add unit test to verify passing the same prop twice does not change the selected date * Change unit test name to be more accurate * Delete extra whitespace and newlines * Add unit test for rerendering with undefined value prop
@giladgray @tgreenwatts @gscshoyru I added @cathyxz's #1474 PR to this release. take a look at that and anything else. 👍 |
Incorporate datetime PR #1474Preview: documentation | table | github pages |
🎆 Highlights:
Table
scrollToRegion(region: IRegion)
instance method,Table
renderMode
to toggle batched cell rendering,Table
onCompleteRender
prop, newSuggest
component📖 Latest docs: blueprintjs.com/docs
@blueprintjs/core 1.27.0
🐛 Bug fixes
pt-file-upload
now addsellipsis
styling to long, overflowing file names.Tabs2
now offers alarge
prop to enablept-large
styling.pt-large
regression from our last release (see: [Core/Tabs2 regression] cannot set to large anymore when using component's API #1506).@blueprintjs/datetime 1.22.0
🐛 Bug fixes
DateTimePicker
no longer clears selected date when changing time values. (🎩 @cathyxz)@blueprintjs/table 1.24.0
💎 New features
Table
now offers ascrollToRegion(region: IRegion)
instance method to programmatically scroll a desired row, column, or cell into view!animated?: boolean
option to animate the scroll (see: [Table] Addanimated
option to scrollToRegion instance method #1501).Table
now supports arenderMode?: RenderMode
prop:RenderMode.BATCH
(default): renders cells in batches to improve performance (see: [Table] Batch Child Rendering #1201)RenderMode.NONE
: renders cells synchronously all at onceTable
now offers anonCompleteRender
prop.🐛 Bug fixes
Table
now shows the focused cell immediately and in the right place whenenableFocus
becomestrue
.Table
resizing columns no longer throws error whenisRowHeaderShown=false
Table
no longer firesonVisibleCellsChange
redundantly when the viewport hasn't actually changed.Table
FULL_ROWS
,FULL_COLUMNS
, andFULL_TABLE
selection overlays now align properly to cell borders.@blueprintjs/labs 0.8.0
💎 New features
Suggest
component!Suggest
behaves similarly toSelect
, except it renders a text input as thePopover
target instead of arbitrary children.