@paperless/angular 0.1.0-alpha.405 → 0.1.0-alpha.407
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.
- package/esm2020/lib/directives/p-datepicker.directive.mjs +2 -1
- package/esm2020/lib/modules/table/base/table.component.mjs +2 -2
- package/fesm2015/paperless-angular.mjs +2 -1
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +2 -1
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/base/table.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -259,6 +259,7 @@ class DatepickerDirective extends BaseValueAccessor {
|
|
|
259
259
|
super(el);
|
|
260
260
|
}
|
|
261
261
|
writeValue(value) {
|
|
262
|
+
console.log('[Angular] Write value', value, this.el.nativeElement);
|
|
262
263
|
this.el.nativeElement.value = this.lastValue = value;
|
|
263
264
|
}
|
|
264
265
|
}
|
|
@@ -2154,7 +2155,7 @@ let BaseTableComponent = class BaseTableComponent extends BaseFormComponent {
|
|
|
2154
2155
|
});
|
|
2155
2156
|
this._refresh();
|
|
2156
2157
|
}
|
|
2157
|
-
resetTable(emitEvent = true, forceRefresh =
|
|
2158
|
+
resetTable(emitEvent = true, forceRefresh = false) {
|
|
2158
2159
|
this._setTableValues(this.parsedDefaultTableValues, emitEvent);
|
|
2159
2160
|
if (forceRefresh) {
|
|
2160
2161
|
this._refresh();
|