@afeefa/vue-app 0.0.315 → 0.0.316
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.316
|
package/package.json
CHANGED
|
@@ -54,7 +54,7 @@ import { PositionConfig } from '../services/PositionService'
|
|
|
54
54
|
import { randomCssClass } from '../utils/random'
|
|
55
55
|
|
|
56
56
|
@Component({
|
|
57
|
-
props: ['value', 'validator', 'type', {dense: true, outlined: true, focus: false}]
|
|
57
|
+
props: ['value', 'validator', 'type', 'day', {dense: true, outlined: true, focus: false}]
|
|
58
58
|
})
|
|
59
59
|
export default class ADatePicker extends Mixins(ComponentWidthMixin, UsesPositionServiceMixin, CancelOnEscMixin) {
|
|
60
60
|
value_ = null
|
|
@@ -310,7 +310,7 @@ export default class ADatePicker extends Mixins(ComponentWidthMixin, UsesPositio
|
|
|
310
310
|
return this.actualInputValue
|
|
311
311
|
}
|
|
312
312
|
|
|
313
|
-
return formatDate(this.value_, {day:
|
|
313
|
+
return formatDate(this.value_, {day: this.day})
|
|
314
314
|
}
|
|
315
315
|
|
|
316
316
|
validate () {
|