@arsedizioni/ars-utils 18.2.154 → 18.2.156
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/clipper.common/common/definitions.d.ts +10 -9
- package/clipper.ui/ui/browser-dialog/browser-dialog.component.d.ts +2 -1
- package/clipper.ui/ui/document/document.component.d.ts +4 -7
- package/clipper.ui/ui/document-index/document-index.component.d.ts +4 -1
- package/clipper.ui/ui/document-manager/document-manager.d.ts +3 -3
- package/clipper.ui/ui/references/references.component.d.ts +3 -2
- package/clipper.ui/ui/search-result-item/search-result-item.component.d.ts +1 -1
- package/clipper.ui/ui/search-result-manager/search-result-manager.d.ts +7 -6
- package/esm2022/clipper.common/common/definitions.mjs +1 -1
- package/esm2022/clipper.ui/ui/browser-dialog/browser-dialog.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/document/document.component.mjs +20 -27
- package/esm2022/clipper.ui/ui/document-index/document-index.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/document-manager/document-manager.mjs +11 -13
- package/esm2022/clipper.ui/ui/references/references.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-dialog/search-dialog.component.mjs +10 -10
- package/esm2022/clipper.ui/ui/search-result-item/search-result-item.component.mjs +1 -1
- package/esm2022/clipper.ui/ui/search-result-manager/search-result-manager.mjs +10 -9
- package/esm2022/core/directives/validators.mjs +2 -2
- package/esm2022/core/selectable.mjs +4 -4
- package/esm2022/help/components/help-viewer/help-viewer.component.mjs +6 -6
- package/esm2022/help/services/help.service.mjs +1 -1
- package/esm2022/support.common/common/interceptors/auth.interceptor.mjs +2 -2
- package/esm2022/support.ui/ui/notifications-browser/notifications-browser.component.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +53 -61
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +4 -4
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-help.mjs +5 -5
- package/fesm2022/arsedizioni-ars-utils-help.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs.map +1 -1
- package/help/services/help.service.d.ts +3 -2
- package/package.json +7 -7
|
@@ -1283,7 +1283,7 @@ class TimeValidatorDirective {
|
|
|
1283
1283
|
if (t !== -1) {
|
|
1284
1284
|
if (this.slots) {
|
|
1285
1285
|
const slots = this.slots.split('|');
|
|
1286
|
-
slots.forEach(
|
|
1286
|
+
slots.forEach(s => {
|
|
1287
1287
|
const t1 = this.getTime(s.substring(0, 5));
|
|
1288
1288
|
const t2 = this.getTime(s.substring(6));
|
|
1289
1289
|
if (t1 !== -1 && t2 !== -1 && t1 <= t && t2 >= t) {
|
|
@@ -1717,8 +1717,8 @@ class SelectableModel {
|
|
|
1717
1717
|
deselectByValues(lookupValues) {
|
|
1718
1718
|
if (!lookupValues || lookupValues.length === 0)
|
|
1719
1719
|
return;
|
|
1720
|
-
lookupValues.forEach(
|
|
1721
|
-
const p = SystemUtils.arrayFindIndexByKey(this._all, this._lookupFieldName, n
|
|
1720
|
+
lookupValues.forEach(n => {
|
|
1721
|
+
const p = SystemUtils.arrayFindIndexByKey(this._all, this._lookupFieldName, n);
|
|
1722
1722
|
if (p != -1) {
|
|
1723
1723
|
let item = this._all[p];
|
|
1724
1724
|
this._all.splice(p, 1);
|
|
@@ -1732,7 +1732,7 @@ class SelectableModel {
|
|
|
1732
1732
|
* @param clearFunc : the function used to clear
|
|
1733
1733
|
*/
|
|
1734
1734
|
clearCurrent(clearFunc) {
|
|
1735
|
-
this._current.selected.forEach(
|
|
1735
|
+
this._current.selected.forEach(n => {
|
|
1736
1736
|
clearFunc(n);
|
|
1737
1737
|
});
|
|
1738
1738
|
this._current.clear();
|