@kizmann/nano-ui 0.8.20 → 0.8.22

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kizmann/nano-ui",
3
- "version": "0.8.20",
3
+ "version": "0.8.22",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Eduard Kizmann <kizmann@protonmail.ch>",
@@ -132,6 +132,10 @@ export default {
132
132
  return;
133
133
  }
134
134
 
135
+ this.$watch('NCheckboxGroup.tempValue', () => {
136
+ this.tempChecked = this.NCheckboxGroup.isChecked(this.value);
137
+ });
138
+
135
139
  this.NCheckboxGroup.addCheckbox(this);
136
140
  },
137
141
 
@@ -160,7 +160,7 @@ export default {
160
160
  format: {
161
161
  default()
162
162
  {
163
- return Locale.trans('YYYY-MM-DD HH:mm:ss');
163
+ return 'YYYY-MM-DD HH:mm:ss';
164
164
  },
165
165
  type: [String]
166
166
  },
@@ -1,4 +1,4 @@
1
- import { Arr, Obj, Now, Any } from "@kizmann/pico-js";
1
+ import { Arr, Obj, Now, Any, Locale } 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 'HH:mm:ss';
82
+ return Locale.trans('HH:mm:ss');
83
83
  },
84
84
  type: [String]
85
85
  },