Skip to content

Commit

Permalink
Prepare Release 1.27.0 (#1513)
Browse files Browse the repository at this point in the history
* Prepare Release 1.27.0

* Revert @blueprintjs/core dependency versions in site-landing/ and docs/

* [DateTimePicker] Fix where changing TimePicker clears date (#1474)

* 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

* Incorporate datetime PR #1474
  • Loading branch information
cmslewis authored Aug 30, 2017
1 parent 3eb4b27 commit 74619bd
Show file tree
Hide file tree
Showing 10 changed files with 2,004 additions and 1,175 deletions.
38 changes: 18 additions & 20 deletions docs/blueprint-landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -2803,16 +2803,15 @@ a.pt-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
position: absolute;
top: 0;
right: 0;
left: 0;
margin-right: 70px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
height: 30px;
line-height: 30px;
color: #5c7080;
padding-right: 80px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
Expand Down Expand Up @@ -2849,19 +2848,16 @@ a.pt-button {
background-color: #f5f8fa;
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
color: #182026;
min-width: 24px;
min-height: 24px;
line-height: 24px;
position: absolute;
top: 0;
right: 0;
left: 100%;
margin-left: -1px;
margin: 3px;
border-radius: 3px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
width: 70px;
height: 30px;
padding: 0 10px;
text-align: center;
line-height: 30px;
content: "Browse"; }
.pt-file-upload-input::after:hover {
box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
Expand Down Expand Up @@ -2889,16 +2885,18 @@ a.pt-button {
background-color: #d8e1e8;
background-image: none; }
.pt-large .pt-file-upload-input {
margin-right: 85px;
height: 40px;
line-height: 40px;
font-size: 16px; }
font-size: 16px;
padding-right: 95px; }
.pt-large .pt-file-upload-input[type="search"], .pt-large .pt-file-upload-input.pt-round {
padding: 0 15px; }
.pt-large .pt-file-upload-input::after {
width: 85px;
height: 40px;
padding: 0 15px;
line-height: 40px;
font-size: 16px; }
min-width: 30px;
min-height: 30px;
line-height: 30px;
margin: 5px;
width: 85px; }
.pt-dark .pt-file-upload-input {
box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
background: rgba(16, 22, 26, 0.3);
Expand Down
8 changes: 6 additions & 2 deletions docs/blueprint-landing.js
Original file line number Diff line number Diff line change
Expand Up @@ -34172,12 +34172,15 @@
var tabIndicator = (React.createElement("div", { className: "pt-tab-indicator-wrapper", style: indicatorWrapperStyle },
React.createElement("div", { className: "pt-tab-indicator" })));
var classes = classNames(Classes.TABS, (_b = {}, _b[Classes.VERTICAL] = this.props.vertical, _b), this.props.className);
var tabListClasses = classNames(Classes.TAB_LIST, (_c = {},
_c[Classes.LARGE] = this.props.large,
_c));
return (React.createElement("div", { className: classes },
React.createElement("div", { className: Classes.TAB_LIST, onKeyDown: this.handleKeyDown, onKeyPress: this.handleKeyPress, ref: this.refHandlers.tablist, role: "tablist" },
React.createElement("div", { className: tabListClasses, onKeyDown: this.handleKeyDown, onKeyPress: this.handleKeyPress, ref: this.refHandlers.tablist, role: "tablist" },
this.props.animate ? tabIndicator : undefined,
tabTitles),
tabPanels));
var _b;
var _b, _c;
};
Tabs2.prototype.componentDidMount = function () {
this.moveSelectionIndicator();
Expand Down Expand Up @@ -34258,6 +34261,7 @@
Tabs2.Tab = tab2_1.Tab2;
Tabs2.defaultProps = {
animate: true,
large: false,
renderActiveTabPanelOnly: false,
vertical: false,
};
Expand Down
38 changes: 18 additions & 20 deletions docs/docs/site-docs.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

1 comment on commit 74619bd

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prepare Release 1.27.0 (#1513)

Preview: documentation
Coverage: core | datetime

Please sign in to comment.