Skip to content

Commit

Permalink
Update built files
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephusPaye committed Jan 28, 2019
1 parent eed64a7 commit e393bb4
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
10 changes: 5 additions & 5 deletions dist/keen-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -7389,7 +7389,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
matchingSuggestions: function matchingSuggestions() {
var _this = this;

var suggestions = this.suggestions.filter(function (suggestion, index) {
var suggestions = this.suggestions.filter(function (suggestion) {
if (_this.filter) {
return _this.filter(suggestion, _this.value, _this.defaultFilter);
}
Expand Down Expand Up @@ -8015,9 +8015,9 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope

if (days.length === 7) {
return days;
} else {
return days.concat(this.lang.days.initials.slice(0, this.startOfWeek));
}

return days.concat(this.lang.days.initials.slice(0, this.startOfWeek));
},
weekClasses: function weekClasses() {
return [_defineProperty({}, 'ui-calendar-month--slide-' + this.slideDirection, this.isSliding), { 'is-sliding': this.isSliding }];
Expand Down Expand Up @@ -10574,7 +10574,7 @@ var handleTouchStart = function handleTouchStart(e) {
return this.options;
}

var options = this.options.filter(function (option, index) {
var options = this.options.filter(function (option) {
if (_this.filter) {
return _this.filter(option, _this.query, _this.defaultFilter);
}
Expand Down Expand Up @@ -11003,7 +11003,7 @@ var handleTouchStart = function handleTouchStart(e) {
};
},
markerText: function markerText() {
return this.markerValue !== undefined ? this.markerValue : this.value;
return this.markerValue === undefined ? this.value : this.markerValue;
},
snapPoints: function snapPoints() {
var points = [];
Expand Down
6 changes: 3 additions & 3 deletions dist/keen-ui.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/docs.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/UiAutocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ if (false) {(function () {
matchingSuggestions: function matchingSuggestions() {
var _this = this;

var suggestions = this.suggestions.filter(function (suggestion, index) {
var suggestions = this.suggestions.filter(function (suggestion) {
if (_this.filter) {
return _this.filter(suggestion, _this.value, _this.defaultFilter);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/UiAutocomplete.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/UiCalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -7322,9 +7322,9 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope

if (days.length === 7) {
return days;
} else {
return days.concat(this.lang.days.initials.slice(0, this.startOfWeek));
}

return days.concat(this.lang.days.initials.slice(0, this.startOfWeek));
},
weekClasses: function weekClasses() {
return [_defineProperty({}, 'ui-calendar-month--slide-' + this.slideDirection, this.isSliding), { 'is-sliding': this.isSliding }];
Expand Down
4 changes: 2 additions & 2 deletions lib/UiDatepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -8176,9 +8176,9 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope

if (days.length === 7) {
return days;
} else {
return days.concat(this.lang.days.initials.slice(0, this.startOfWeek));
}

return days.concat(this.lang.days.initials.slice(0, this.startOfWeek));
},
weekClasses: function weekClasses() {
return [_defineProperty({}, 'ui-calendar-month--slide-' + this.slideDirection, this.isSliding), { 'is-sliding': this.isSliding }];
Expand Down
2 changes: 1 addition & 1 deletion lib/UiSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ if (false) {(function () {
return this.options;
}

var options = this.options.filter(function (option, index) {
var options = this.options.filter(function (option) {
if (_this.filter) {
return _this.filter(option, _this.query, _this.defaultFilter);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/UiSelect.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/UiSlider.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ if (false) {(function () {
};
},
markerText: function markerText() {
return this.markerValue !== undefined ? this.markerValue : this.value;
return this.markerValue === undefined ? this.value : this.markerValue;
},
snapPoints: function snapPoints() {
var points = [];
Expand Down
2 changes: 1 addition & 1 deletion lib/UiSlider.min.js

Large diffs are not rendered by default.

0 comments on commit e393bb4

Please sign in to comment.