@talrace/ngx-noder 19.0.42 → 19.0.43
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.
|
@@ -7162,13 +7162,11 @@ class ParagraphHelper {
|
|
|
7162
7162
|
visibleScreenIndex: offsetTop > 0 ? screenIndex + direction : screenIndex
|
|
7163
7163
|
};
|
|
7164
7164
|
}
|
|
7165
|
-
static getParagraphPages(
|
|
7165
|
+
static getParagraphPages(lines) {
|
|
7166
7166
|
const resultPages = [];
|
|
7167
|
-
|
|
7168
|
-
|
|
7169
|
-
|
|
7170
|
-
}
|
|
7171
|
-
});
|
|
7167
|
+
for (let i = lines[0].page; i <= lines[lines.length - 1].page; i++) {
|
|
7168
|
+
resultPages.push(i);
|
|
7169
|
+
}
|
|
7172
7170
|
return resultPages;
|
|
7173
7171
|
}
|
|
7174
7172
|
static getParagraphHeight(paragraphTextLinesInfo) {
|