@kizmann/nano-ui 0.8.17 → 0.8.20
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/nano-ui.js +1 -1
- package/dist/nano-ui.js.map +1 -1
- package/package.json +1 -1
- package/src/checkbox/src/checkbox-group/checkbox-group.js +1 -1
- package/src/datepicker/src/datepicker/datepicker.js +1 -1
- package/src/datepicker/src/datepicker-panel/datepicker-panel.js +0 -8
- package/src/datetimepicker/src/datetimepicker/datetimepicker.js +9 -3
- package/src/timepicker/src/timepicker/timepicker.js +2 -2
package/package.json
CHANGED
@@ -317,8 +317,11 @@ export default {
|
|
317
317
|
|
318
318
|
renderDatePanel()
|
319
319
|
{
|
320
|
-
|
321
|
-
|
320
|
+
let props = Obj.only(this.$props, [
|
321
|
+
'minDate', 'maxDate', 'size', 'type', 'format', 'monthPanels', 'disabled', 'weekdays', 'months'
|
322
|
+
]);
|
323
|
+
|
324
|
+
props = Obj.assign(props, {
|
322
325
|
modelValue: this.tempValue.format(this.format) || null,
|
323
326
|
});
|
324
327
|
|
@@ -331,8 +334,11 @@ export default {
|
|
331
334
|
|
332
335
|
renderTimePanel()
|
333
336
|
{
|
337
|
+
let props = Obj.only(this.$props, [
|
338
|
+
'size', 'type', 'format', 'disabled', 'hoursInterval', 'minutesInterval', 'secondsInterval'
|
339
|
+
]);
|
334
340
|
|
335
|
-
|
341
|
+
props = Obj.assign(props, {
|
336
342
|
modelValue: this.tempValue.format(this.format) || null,
|
337
343
|
});
|
338
344
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Arr, Obj, Now, Any
|
1
|
+
import { Arr, Obj, Now, Any } from "@kizmann/pico-js";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
|
@@ -79,7 +79,7 @@ export default {
|
|
79
79
|
displayFormat: {
|
80
80
|
default()
|
81
81
|
{
|
82
|
-
return
|
82
|
+
return 'HH:mm:ss';
|
83
83
|
},
|
84
84
|
type: [String]
|
85
85
|
},
|