Skip to content

Commit

Permalink
build: Travis CI automatic compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
juzi214032 committed Dec 18, 2021
1 parent 8e55230 commit c292bd5
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 10 deletions.
2 changes: 1 addition & 1 deletion dist/behaviors/countdown.js

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

2 changes: 1 addition & 1 deletion dist/calendar/components/mounth/index.js

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

2 changes: 1 addition & 1 deletion dist/calendar/index.js

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

2 changes: 1 addition & 1 deletion examples/dist/behaviors/countdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export default Behavior({
behaviors: [],
properties: {
time: {
type: Object,
optionalTypes: [String, Object],
value: new Date().getTime() + 86400000,
observer: function (newVal, oldVal) {
if (newVal && !oldVal) {
Expand Down
9 changes: 6 additions & 3 deletions examples/dist/calendar/components/mounth/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ Component({
},
properties: {
minDate: {
optionalTypes: [Object,String],
type: Object,
optionalTypes: [String, null],
},
maxDate: {
optionalTypes: [Object,String],
type: Object,
optionalTypes: [String, null],
},
formatter: {
type: null,
Expand All @@ -20,7 +22,8 @@ Component({
observer: 'setDays'
},
currentDate: {
optionalTypes: [Array],
type: Array,
optionalTypes: [null],
observer() {
this.setDays();
}
Expand Down
Loading

0 comments on commit c292bd5

Please sign in to comment.