@syncfusion/ej2-pdfviewer 17.3.58-4568 → 17.3.59-4568

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.
Files changed (71) hide show
  1. package/dist/ej2-pdfviewer.umd.min.js +1 -1
  2. package/dist/ej2-pdfviewer.umd.min.js.map +1 -1
  3. package/dist/es6/ej2-pdfviewer.es2015.js +38 -42
  4. package/dist/es6/ej2-pdfviewer.es2015.js.map +1 -1
  5. package/dist/es6/ej2-pdfviewer.es5.js +38 -42
  6. package/dist/es6/ej2-pdfviewer.es5.js.map +1 -1
  7. package/package.json +1 -1
  8. package/src/pdfviewer/annotation/annotation.js +3 -0
  9. package/src/pdfviewer/base/pdfviewer-base.d.ts +2 -0
  10. package/src/pdfviewer/base/pdfviewer-base.js +33 -10
  11. package/src/pdfviewer/magnification/magnification.d.ts +0 -1
  12. package/src/pdfviewer/magnification/magnification.js +2 -32
  13. package/styles/bootstrap-dark.css +10 -6
  14. package/styles/bootstrap-dark.scss +4 -1
  15. package/styles/bootstrap.css +10 -6
  16. package/styles/bootstrap.scss +4 -1
  17. package/styles/bootstrap4.css +10 -6
  18. package/styles/bootstrap4.scss +4 -1
  19. package/styles/bootstrap5-dark.css +15 -8
  20. package/styles/bootstrap5-dark.scss +4 -1
  21. package/styles/bootstrap5.css +15 -8
  22. package/styles/bootstrap5.scss +4 -1
  23. package/styles/fabric-dark.css +10 -6
  24. package/styles/fabric-dark.scss +4 -1
  25. package/styles/fabric.css +10 -6
  26. package/styles/fabric.scss +4 -1
  27. package/styles/fluent-dark.css +10 -6
  28. package/styles/fluent-dark.scss +4 -1
  29. package/styles/fluent.css +10 -6
  30. package/styles/fluent.scss +4 -1
  31. package/styles/fluent2.css +4876 -0
  32. package/styles/fluent2.scss +4 -0
  33. package/styles/highcontrast-light.css +10 -6
  34. package/styles/highcontrast-light.scss +4 -1
  35. package/styles/highcontrast.css +10 -6
  36. package/styles/highcontrast.scss +4 -1
  37. package/styles/material-dark.css +10 -6
  38. package/styles/material-dark.scss +4 -1
  39. package/styles/material.css +10 -6
  40. package/styles/material.scss +4 -1
  41. package/styles/material3-dark.css +12 -9
  42. package/styles/material3-dark.scss +4 -1
  43. package/styles/material3.css +12 -9
  44. package/styles/material3.scss +4 -1
  45. package/styles/pdfviewer/_fluent2-definition.scss +40 -39
  46. package/styles/pdfviewer/_theme.scss +428 -28
  47. package/styles/pdfviewer/bootstrap-dark.css +10 -6
  48. package/styles/pdfviewer/bootstrap.css +10 -6
  49. package/styles/pdfviewer/bootstrap4.css +10 -6
  50. package/styles/pdfviewer/bootstrap5-dark.css +15 -8
  51. package/styles/pdfviewer/bootstrap5.css +15 -8
  52. package/styles/pdfviewer/fabric-dark.css +10 -6
  53. package/styles/pdfviewer/fabric.css +10 -6
  54. package/styles/pdfviewer/fluent-dark.css +10 -6
  55. package/styles/pdfviewer/fluent.css +10 -6
  56. package/styles/pdfviewer/fluent2.css +4876 -0
  57. package/styles/pdfviewer/fluent2.scss +4 -0
  58. package/styles/pdfviewer/highcontrast-light.css +10 -6
  59. package/styles/pdfviewer/highcontrast.css +10 -6
  60. package/styles/pdfviewer/icons/_bootstrap5.scss +0 -2
  61. package/styles/pdfviewer/icons/_fluent2.scss +510 -0
  62. package/styles/pdfviewer/material-dark.css +10 -6
  63. package/styles/pdfviewer/material.css +10 -6
  64. package/styles/pdfviewer/material3-dark.css +12 -9
  65. package/styles/pdfviewer/material3.css +12 -9
  66. package/styles/pdfviewer/tailwind-dark.css +10 -6
  67. package/styles/pdfviewer/tailwind.css +10 -6
  68. package/styles/tailwind-dark.css +10 -6
  69. package/styles/tailwind-dark.scss +4 -1
  70. package/styles/tailwind.css +10 -6
  71. package/styles/tailwind.scss +4 -1
package/package.json CHANGED
@@ -70,5 +70,5 @@
70
70
  },
71
71
  "sideEffects": false,
72
72
  "typings": "index.d.ts",
73
- "version": "17.3.58-4568"
73
+ "version": "17.3.59-4568"
74
74
  }
@@ -357,6 +357,9 @@ var Annotation = /** @class */ (function () {
357
357
  // tslint:disable-next-line
358
358
  var sessionSize = Math.round(JSON.stringify(window.sessionStorage).length / 1024);
359
359
  var maxSessionSize = 4500;
360
+ if (this.pdfViewerBase.isDeviceiOS || this.pdfViewerBase.isMacSafari) {
361
+ maxSessionSize = 2000;
362
+ }
360
363
  if (sessionSize > maxSessionSize) {
361
364
  var storageLength = window.sessionStorage.length;
362
365
  // tslint:disable-next-line
@@ -473,6 +473,8 @@ export declare class PdfViewerBase {
473
473
  private isGotoPageEnabled;
474
474
  private taggedTextHandler;
475
475
  private taggedCollection;
476
+ private isScrollerMoving;
477
+ private isScrollerMovingTimer;
476
478
  constructor(viewer: PdfViewer);
477
479
  /**
478
480
  * @private
@@ -362,12 +362,12 @@ var PdfViewerBase = /** @class */ (function () {
362
362
  * @private
363
363
  */
364
364
  // eslint-disable-next-line
365
- this.isDeviceiOS = (['iPad Simulator', 'iPhone Simulator', 'iPod Simulator', 'iPad', 'iPhone', 'iPod'].includes(navigator.platform) || (navigator.userAgent.includes("Mac") && "ontouchend" in document));
365
+ this.isDeviceiOS = false;
366
366
  /**
367
367
  * @private
368
368
  */
369
369
  // eslint-disable-next-line
370
- this.isMacSafari = navigator.userAgent.indexOf("Safari") > -1 && navigator.userAgent.indexOf("Chrome") === -1 && !this.isDeviceiOS;
370
+ this.isMacSafari = false;
371
371
  /**
372
372
  * @private
373
373
  */
@@ -376,6 +376,8 @@ var PdfViewerBase = /** @class */ (function () {
376
376
  this.isGotoPageEnabled = false;
377
377
  this.taggedTextHandler = null;
378
378
  this.taggedCollection = [];
379
+ this.isScrollerMoving = false;
380
+ this.isScrollerMovingTimer = null;
379
381
  this.clearSessionStorage = function () {
380
382
  var documentId = window.sessionStorage.getItem('hashId');
381
383
  var documentLiveCount = window.sessionStorage.getItem('documentLiveCount');
@@ -1368,9 +1370,21 @@ var PdfViewerBase = /** @class */ (function () {
1368
1370
  if (_this.isThumb) {
1369
1371
  _this.ispageMoved = true;
1370
1372
  event.preventDefault();
1373
+ _this.isScrollerMoving = true;
1371
1374
  _this.mobilePageNoContainer.style.display = 'block';
1372
1375
  scrollposX = event.touches[0].pageX - _this.scrollX;
1373
1376
  scrollposY = event.touches[0].pageY - _this.viewerContainer.offsetTop;
1377
+ if (isNullOrUndefined(_this.isScrollerMovingTimer)) {
1378
+ _this.isScrollerMovingTimer = setTimeout(function () {
1379
+ _this.isScrollerMoving = false;
1380
+ _this.pageViewScrollChanged(_this.currentPageNumber);
1381
+ }, 300);
1382
+ }
1383
+ var differenceY = Math.abs(_this.viewerContainer.scrollTop - (scrollposY * ratio));
1384
+ if (differenceY > 10) {
1385
+ clearTimeout(_this.isScrollerMovingTimer);
1386
+ _this.isScrollerMovingTimer = null;
1387
+ }
1374
1388
  _this.viewerContainer.scrollTop = scrollposY * ratio;
1375
1389
  // tslint:disable-next-line
1376
1390
  var containerValue = event.touches[0].pageY;
@@ -1485,8 +1499,6 @@ var PdfViewerBase = /** @class */ (function () {
1485
1499
  this.textLayer = new TextLayer(this.pdfViewer, this);
1486
1500
  this.taggedPdf = new TaggedPDF(this.pdfViewer, this);
1487
1501
  this.signatureModule = new Signature(this.pdfViewer, this);
1488
- // tslint:disable-next-line:max-line-length
1489
- this.isWebkitMobile = /Chrome/.test(navigator.userAgent) || /Google Inc/.test(navigator.vendor) || (navigator.userAgent.indexOf('Safari') !== -1);
1490
1502
  }
1491
1503
  /**
1492
1504
  * @private
@@ -1631,6 +1643,7 @@ var PdfViewerBase = /** @class */ (function () {
1631
1643
  PdfViewerBase.prototype.mobileScrollContainerDown = function (event) {
1632
1644
  this.ispageMoved = false;
1633
1645
  this.isThumb = true;
1646
+ this.isScrollerMoving = false;
1634
1647
  if (this.isTextMarkupAnnotationModule()) {
1635
1648
  if (this.pdfViewer.annotationModule.textMarkupAnnotationModule.selectTextMarkupCurrentPage != null && Browser.isDevice) {
1636
1649
  var pageNumber = this.pdfViewer.annotationModule.textMarkupAnnotationModule.selectTextMarkupCurrentPage;
@@ -1704,6 +1717,8 @@ var PdfViewerBase = /** @class */ (function () {
1704
1717
  }
1705
1718
  this.isThumb = false;
1706
1719
  this.ispageMoved = false;
1720
+ this.isScrollerMoving = false;
1721
+ this.pageViewScrollChanged(this.currentPageNumber);
1707
1722
  this.mobileScrollerContainer.removeEventListener('touchmove', this.viewerContainerOnScroll.bind(this), true);
1708
1723
  this.mobilePageNoContainer.style.display = 'none';
1709
1724
  };
@@ -2748,6 +2763,9 @@ var PdfViewerBase = /** @class */ (function () {
2748
2763
  };
2749
2764
  PdfViewerBase.prototype.wireEvents = function () {
2750
2765
  var _this = this;
2766
+ this.isDeviceiOS = (['iPad Simulator', 'iPhone Simulator', 'iPod Simulator', 'iPad', 'iPhone', 'iPod'].includes(navigator.platform) || (navigator.userAgent.includes("Mac") && "ontouchend" in document));
2767
+ this.isMacSafari = navigator.userAgent.indexOf("Safari") > -1 && navigator.userAgent.indexOf("Chrome") === -1 && !this.isDeviceiOS;
2768
+ this.isWebkitMobile = /Chrome/.test(navigator.userAgent) || /Google Inc/.test(navigator.vendor) || (navigator.userAgent.indexOf('Safari') !== -1) || (navigator.userAgent.indexOf('WebKit') !== -1);
2751
2769
  this.viewerContainer.addEventListener('scroll', this.viewerContainerOnScroll, true);
2752
2770
  if (Browser.isDevice) {
2753
2771
  this.viewerContainer.addEventListener('touchmove', this.viewerContainerOnScroll, true);
@@ -4018,7 +4036,7 @@ var PdfViewerBase = /** @class */ (function () {
4018
4036
  if (this.isDataExits && !this.getStoredData(currentPageIndex)) {
4019
4037
  isSkip = true;
4020
4038
  }
4021
- if (this.renderedPagesList.indexOf(currentPageIndex) === -1 && !this.getMagnified() && !isSkip) {
4039
+ if (this.renderedPagesList.indexOf(currentPageIndex) === -1 && !this.getMagnified() && !isSkip && !this.isScrollerMoving) {
4022
4040
  this.createRequestForRender(currentPageIndex);
4023
4041
  this.renderCountIncrement();
4024
4042
  }
@@ -4031,7 +4049,7 @@ var PdfViewerBase = /** @class */ (function () {
4031
4049
  isSkip = true;
4032
4050
  }
4033
4051
  if (canvas !== null && !isSkip) {
4034
- if (this.renderedPagesList.indexOf(previous) === -1 && !this.getMagnified()) {
4052
+ if (this.renderedPagesList.indexOf(previous) === -1 && !this.getMagnified() && !this.isScrollerMoving) {
4035
4053
  this.createRequestForRender(previous);
4036
4054
  this.renderCountIncrement();
4037
4055
  }
@@ -4043,7 +4061,7 @@ var PdfViewerBase = /** @class */ (function () {
4043
4061
  var pageHeight = 0;
4044
4062
  if (next < this.pageCount) {
4045
4063
  pageHeight = this.getPageHeight(next);
4046
- if ((this.renderedPagesList.indexOf(next) === -1 || this.isMinimumZoom) && !this.getMagnified()) {
4064
+ if ((this.renderedPagesList.indexOf(next) === -1 || this.isMinimumZoom) && !this.getMagnified() && !this.isScrollerMoving) {
4047
4065
  if (this.renderedPagesList.indexOf(next) === -1) {
4048
4066
  this.createRequestForRender(next);
4049
4067
  this.renderCountIncrement();
@@ -4841,6 +4859,11 @@ var PdfViewerBase = /** @class */ (function () {
4841
4859
  // tslint:disable-next-line
4842
4860
  var sessionSize = Math.round(JSON.stringify(window.sessionStorage).length / 1024);
4843
4861
  var maxSessionSize = 5000;
4862
+ var maxSessionLength = 200;
4863
+ if (this.isDeviceiOS || this.isMacSafari) {
4864
+ maxSessionSize = 2000;
4865
+ maxSessionLength = 80;
4866
+ }
4844
4867
  if (sessionSize >= maxSessionSize) {
4845
4868
  if (!this.isStorageExceed) {
4846
4869
  // tslint:disable-next-line
@@ -4862,10 +4885,10 @@ var PdfViewerBase = /** @class */ (function () {
4862
4885
  }
4863
4886
  this.isStorageExceed = true;
4864
4887
  sessionSize = Math.round(JSON.stringify(window.sessionStorage).length / 1024);
4865
- if (sessionSize >= 5000) {
4888
+ if (sessionSize >= maxSessionSize) {
4866
4889
  var storageLength = window.sessionStorage.length;
4867
- if (storageLength > 200) {
4868
- storageLength = 200;
4890
+ if (storageLength > maxSessionLength) {
4891
+ storageLength = maxSessionLength;
4869
4892
  }
4870
4893
  for (var i = 0; i < storageLength; i++) {
4871
4894
  if (window.sessionStorage.key(i) && window.sessionStorage.key(i).split('_')[3]) {
@@ -73,7 +73,6 @@ export declare class Magnification {
73
73
  * @private
74
74
  */
75
75
  isDoubleTapZoom: boolean;
76
- private isWebkitMobile;
77
76
  /**
78
77
  * @private
79
78
  */
@@ -71,12 +71,9 @@ var Magnification = /** @class */ (function () {
71
71
  * @private
72
72
  */
73
73
  this.isDoubleTapZoom = false;
74
- this.isWebkitMobile = false;
75
74
  this.pdfViewer = pdfViewer;
76
75
  this.pdfViewerBase = viewerBase;
77
76
  this.zoomLevel = 2;
78
- // tslint:disable-next-line:max-line-length
79
- this.isWebkitMobile = /Chrome/.test(navigator.userAgent) || /Google Inc/.test(navigator.vendor) || (navigator.userAgent.indexOf('Safari') !== -1);
80
77
  }
81
78
  /**
82
79
  * Zoom the PDF document to the given zoom value
@@ -169,7 +166,7 @@ var Magnification = /** @class */ (function () {
169
166
  this.isAutoZoom = false;
170
167
  this.onZoomChanged(zoomValue);
171
168
  if (Browser.isDevice) {
172
- if (this.isWebkitMobile) {
169
+ if (this.pdfViewerBase.isWebkitMobile) {
173
170
  this.pdfViewerBase.viewerContainer.style.overflowY = 'auto';
174
171
  }
175
172
  else {
@@ -331,7 +328,7 @@ var Magnification = /** @class */ (function () {
331
328
  this.pdfViewerBase.isMinimumZoom = false;
332
329
  }
333
330
  if (Browser.isDevice) {
334
- if (this.isWebkitMobile) {
331
+ if (this.pdfViewerBase.isWebkitMobile) {
335
332
  this.pdfViewerBase.viewerContainer.style.overflowY = 'auto';
336
333
  }
337
334
  else {
@@ -898,33 +895,6 @@ var Magnification = /** @class */ (function () {
898
895
  aElement[index].parentNode.removeChild(aElement[index]);
899
896
  }
900
897
  }
901
- if (textLayer) {
902
- textLayer.style.width = width + 'px';
903
- textLayer.style.height = height + 'px';
904
- if (this.pdfViewer.textSelectionModule) {
905
- if (this.isPinchZoomed) {
906
- textLayer.style.display = 'none';
907
- }
908
- else if (this.isMagnified) {
909
- var lowerValue = ((pageNumber - 2) === 0) ? 0 : (pageNumber - 2);
910
- // eslint-disable-next-line max-len
911
- var higherValue = ((pageNumber) === (this.pdfViewerBase.pageCount)) ? (this.pdfViewerBase.pageCount - 1) : (pageNumber + 1);
912
- if ((lowerValue <= i) && (i <= higherValue) && ((this.pdfViewer.textSelectionModule.isTextSelection && isSelectionAvailable) || this.pdfViewerBase.textLayer.getTextSearchStatus() || this.pdfViewerBase.isInitialPageMode)) {
913
- this.pdfViewerBase.textLayer.resizeTextContentsOnZoom(i);
914
- if (this.pdfViewer.textSelectionModule.isTextSelection && isSelectionAvailable) {
915
- this.pdfViewer.textSelectionModule.applySelectionRangeOnScroll(i);
916
- }
917
- }
918
- else {
919
- textLayer.style.display = 'none';
920
- }
921
- }
922
- else {
923
- textLayer.style.display = 'none';
924
- }
925
- }
926
- this.pdfViewerBase.applyElementStyles(textLayer, i);
927
- }
928
898
  var adornerSvg = getDiagramElement(this.pdfViewer.element.id + '_textLayer_' + i);
929
899
  if (adornerSvg) {
930
900
  var adonerLayer = getDiagramElement(this.pdfViewer.element.id + i + '_diagramAdorner_svg');
@@ -1014,6 +1014,10 @@ input.e-pv-input-password::-ms-reveal {
1014
1014
  padding: 0 0 0 3px;
1015
1015
  }
1016
1016
 
1017
+ .e-pv-fontfamily-container .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input {
1018
+ width: 100px;
1019
+ }
1020
+
1017
1021
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1018
1022
  .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1019
1023
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
@@ -2197,9 +2201,9 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2197
2201
 
2198
2202
  .e-pv-organize-total-page-button {
2199
2203
  float: left;
2200
- font-size: 12;
2201
2204
  font-weight: normal;
2202
2205
  color: #f0f0f0;
2206
+ font-size: 12;
2203
2207
  }
2204
2208
 
2205
2209
  .e-pdfviewer .e-pv-organize-window .e-footer-content .e-btn.e-flat:disabled {
@@ -2456,8 +2460,8 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2456
2460
  .e-pv-properties-line-stroke-color-label,
2457
2461
  .e-pv-properties-line-opacity-label,
2458
2462
  .e-pv-properties-line-leader-length-label {
2459
- margin-bottom: 8px;
2460
2463
  font-size: 14px;
2464
+ margin-bottom: 8px;
2461
2465
  }
2462
2466
 
2463
2467
  .e-pv-properties-line-end-container,
@@ -3045,8 +3049,8 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3045
3049
  }
3046
3050
 
3047
3051
  .e-pdfviewer .e-pv-signature-apperance .e-checkbox-wrapper {
3048
- margin-top: 10px;
3049
3052
  padding-bottom: 1px;
3053
+ margin-top: 10px;
3050
3054
  }
3051
3055
 
3052
3056
  .e-pdfviewer .e-pv-signature-window .e-footer-content {
@@ -3138,12 +3142,12 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3138
3142
  border-radius: 5px;
3139
3143
  display: inline-block;
3140
3144
  font-size: 13px;
3141
- height: 88px;
3142
- margin: 15px;
3143
3145
  padding-top: 40px;
3144
3146
  text-align: center;
3145
- width: 311px;
3146
3147
  word-wrap: break-word;
3148
+ height: 88px;
3149
+ width: 311px;
3150
+ margin: 15px;
3147
3151
  }
3148
3152
 
3149
3153
  .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused {
@@ -1 +1,4 @@
1
- @import 'pdfviewer/bootstrap-dark.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap-dark.scss';
2
+ @import 'pdfviewer/bootstrap-dark-definition.scss';
3
+ @import 'pdfviewer/icons/bootstrap-dark.scss';
4
+ @import 'pdfviewer/all.scss';
@@ -1020,6 +1020,10 @@ input.e-pv-input-password::-ms-reveal {
1020
1020
  padding: 0 0 0 3px;
1021
1021
  }
1022
1022
 
1023
+ .e-pv-fontfamily-container .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input {
1024
+ width: 100px;
1025
+ }
1026
+
1023
1027
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1024
1028
  .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1025
1029
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
@@ -2203,9 +2207,9 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2203
2207
 
2204
2208
  .e-pv-organize-total-page-button {
2205
2209
  float: left;
2206
- font-size: 12;
2207
2210
  font-weight: normal;
2208
2211
  color: #000;
2212
+ font-size: 12;
2209
2213
  }
2210
2214
 
2211
2215
  .e-pdfviewer .e-pv-organize-window .e-footer-content .e-btn.e-flat:disabled {
@@ -2462,8 +2466,8 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2462
2466
  .e-pv-properties-line-stroke-color-label,
2463
2467
  .e-pv-properties-line-opacity-label,
2464
2468
  .e-pv-properties-line-leader-length-label {
2465
- margin-bottom: 8px;
2466
2469
  font-size: 14px;
2470
+ margin-bottom: 8px;
2467
2471
  }
2468
2472
 
2469
2473
  .e-pv-properties-line-end-container,
@@ -3053,8 +3057,8 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3053
3057
  }
3054
3058
 
3055
3059
  .e-pdfviewer .e-pv-signature-apperance .e-checkbox-wrapper {
3056
- margin-top: 10px;
3057
3060
  padding-bottom: 1px;
3061
+ margin-top: 10px;
3058
3062
  }
3059
3063
 
3060
3064
  .e-pdfviewer .e-pv-signature-window .e-footer-content {
@@ -3146,12 +3150,12 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3146
3150
  border-radius: 5px;
3147
3151
  display: inline-block;
3148
3152
  font-size: 13px;
3149
- height: 88px;
3150
- margin: 15px;
3151
3153
  padding-top: 40px;
3152
3154
  text-align: center;
3153
- width: 311px;
3154
3155
  word-wrap: break-word;
3156
+ height: 88px;
3157
+ width: 311px;
3158
+ margin: 15px;
3155
3159
  }
3156
3160
 
3157
3161
  .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused {
@@ -1 +1,4 @@
1
- @import 'pdfviewer/bootstrap.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap.scss';
2
+ @import 'pdfviewer/bootstrap-definition.scss';
3
+ @import 'pdfviewer/icons/bootstrap.scss';
4
+ @import 'pdfviewer/all.scss';
@@ -1035,6 +1035,10 @@ input.e-pv-input-password::-ms-reveal {
1035
1035
  padding: 0 0 0 3px;
1036
1036
  }
1037
1037
 
1038
+ .e-pv-fontfamily-container .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input {
1039
+ width: 100px;
1040
+ }
1041
+
1038
1042
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1039
1043
  .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1040
1044
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
@@ -2418,9 +2422,9 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2418
2422
 
2419
2423
  .e-pv-organize-total-page-button {
2420
2424
  float: left;
2421
- font-size: 12;
2422
2425
  font-weight: normal;
2423
2426
  color: #212529;
2427
+ font-size: 12;
2424
2428
  }
2425
2429
 
2426
2430
  .e-pdfviewer .e-pv-organize-window .e-footer-content .e-btn.e-flat:disabled {
@@ -2677,8 +2681,8 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2677
2681
  .e-pv-properties-line-stroke-color-label,
2678
2682
  .e-pv-properties-line-opacity-label,
2679
2683
  .e-pv-properties-line-leader-length-label {
2680
- margin-bottom: 8px;
2681
2684
  font-size: 14px;
2685
+ margin-bottom: 8px;
2682
2686
  }
2683
2687
 
2684
2688
  .e-pv-properties-line-end-container,
@@ -3339,8 +3343,8 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3339
3343
  }
3340
3344
 
3341
3345
  .e-pdfviewer .e-pv-signature-apperance .e-checkbox-wrapper {
3342
- margin-top: 10px;
3343
3346
  padding-bottom: 1px;
3347
+ margin-top: 10px;
3344
3348
  }
3345
3349
 
3346
3350
  .e-pdfviewer .e-pv-signature-window .e-footer-content {
@@ -3434,12 +3438,12 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3434
3438
  border-radius: 5px;
3435
3439
  display: inline-block;
3436
3440
  font-size: 13px;
3437
- height: 88px;
3438
- margin: 15px;
3439
3441
  padding-top: 40px;
3440
3442
  text-align: center;
3441
- width: 311px;
3442
3443
  word-wrap: break-word;
3444
+ height: 88px;
3445
+ width: 311px;
3446
+ margin: 15px;
3443
3447
  }
3444
3448
 
3445
3449
  .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused {
@@ -1 +1,4 @@
1
- @import 'pdfviewer/bootstrap4.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap4.scss';
2
+ @import 'pdfviewer/bootstrap4-definition.scss';
3
+ @import 'pdfviewer/icons/bootstrap4.scss';
4
+ @import 'pdfviewer/all.scss';
@@ -39,14 +39,12 @@
39
39
  content: "\e8a5";
40
40
  }
41
41
  .e-pdfviewer .e-pv-prev-search-icon::before {
42
- color: #adb5bd;
43
42
  content: "\e765";
44
43
  }
45
44
  .e-pdfviewer .e-pv-next-page-navigation-icon::before {
46
45
  content: "\e748";
47
46
  }
48
47
  .e-pdfviewer .e-pv-next-search-icon::before {
49
- color: #adb5bd;
50
48
  content: "\e748";
51
49
  }
52
50
  .e-pdfviewer .e-pv-last-page-navigation-icon::before {
@@ -1033,6 +1031,10 @@ input.e-pv-input-password::-ms-reveal {
1033
1031
  padding: 0;
1034
1032
  }
1035
1033
 
1034
+ .e-pv-fontfamily-container .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input {
1035
+ width: 100px;
1036
+ }
1037
+
1036
1038
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1037
1039
  .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1038
1040
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
@@ -2077,11 +2079,16 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2077
2079
 
2078
2080
  .e-pv-search-btn.e-btn {
2079
2081
  background-color: transparent;
2082
+ color: #adb5bd;
2080
2083
  border: 0;
2081
2084
  box-shadow: none;
2082
2085
  height: 24px;
2083
2086
  margin-top: -6px;
2084
2087
  width: 24px;
2088
+ padding-bottom: 0;
2089
+ padding-left: 1px;
2090
+ padding-right: 1px;
2091
+ padding-top: 1px;
2085
2092
  }
2086
2093
 
2087
2094
  .e-pv-search-btn.e-btn:active {
@@ -2312,9 +2319,9 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2312
2319
 
2313
2320
  .e-pv-organize-total-page-button {
2314
2321
  float: left;
2315
- font-size: 12;
2316
2322
  font-weight: normal;
2317
2323
  color: #fff;
2324
+ font-size: 12;
2318
2325
  }
2319
2326
 
2320
2327
  .e-pdfviewer .e-pv-organize-window .e-footer-content .e-btn.e-flat:disabled {
@@ -2619,8 +2626,8 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2619
2626
  .e-pv-properties-line-stroke-color-label,
2620
2627
  .e-pv-properties-line-opacity-label,
2621
2628
  .e-pv-properties-line-leader-length-label {
2622
- margin-bottom: 8px;
2623
2629
  font-size: 14px;
2630
+ margin-bottom: 8px;
2624
2631
  }
2625
2632
 
2626
2633
  .e-pv-properties-line-end-container,
@@ -3278,8 +3285,8 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3278
3285
  }
3279
3286
 
3280
3287
  .e-pdfviewer .e-pv-signature-apperance .e-checkbox-wrapper {
3281
- margin-top: 10px;
3282
3288
  padding-bottom: 5px;
3289
+ margin-top: 10px;
3283
3290
  }
3284
3291
 
3285
3292
  .e-pdfviewer .e-pv-signature-window .e-footer-content {
@@ -3372,12 +3379,12 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3372
3379
  border-radius: 5px;
3373
3380
  display: inline-block;
3374
3381
  font-size: 13px;
3375
- height: 88px;
3376
- margin: 15px;
3377
3382
  padding-top: 40px;
3378
3383
  text-align: center;
3379
- width: 311px;
3380
3384
  word-wrap: break-word;
3385
+ height: 88px;
3386
+ width: 311px;
3387
+ margin: 15px;
3381
3388
  }
3382
3389
 
3383
3390
  .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused {
@@ -1 +1,4 @@
1
- @import 'pdfviewer/bootstrap5-dark.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap5-dark.scss';
2
+ @import 'pdfviewer/bootstrap5-dark-definition.scss';
3
+ @import 'pdfviewer/icons/bootstrap5-dark.scss';
4
+ @import 'pdfviewer/all.scss';
@@ -39,14 +39,12 @@
39
39
  content: "\e8a5";
40
40
  }
41
41
  .e-pdfviewer .e-pv-prev-search-icon::before {
42
- color: #6c757d;
43
42
  content: "\e765";
44
43
  }
45
44
  .e-pdfviewer .e-pv-next-page-navigation-icon::before {
46
45
  content: "\e748";
47
46
  }
48
47
  .e-pdfviewer .e-pv-next-search-icon::before {
49
- color: #6c757d;
50
48
  content: "\e748";
51
49
  }
52
50
  .e-pdfviewer .e-pv-last-page-navigation-icon::before {
@@ -1033,6 +1031,10 @@ input.e-pv-input-password::-ms-reveal {
1033
1031
  padding: 0;
1034
1032
  }
1035
1033
 
1034
+ .e-pv-fontfamily-container .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input {
1035
+ width: 100px;
1036
+ }
1037
+
1036
1038
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1037
1039
  .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1038
1040
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
@@ -2077,11 +2079,16 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2077
2079
 
2078
2080
  .e-pv-search-btn.e-btn {
2079
2081
  background-color: transparent;
2082
+ color: #6c757d;
2080
2083
  border: 0;
2081
2084
  box-shadow: none;
2082
2085
  height: 24px;
2083
2086
  margin-top: -6px;
2084
2087
  width: 24px;
2088
+ padding-bottom: 0;
2089
+ padding-left: 1px;
2090
+ padding-right: 1px;
2091
+ padding-top: 1px;
2085
2092
  }
2086
2093
 
2087
2094
  .e-pv-search-btn.e-btn:active {
@@ -2312,9 +2319,9 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2312
2319
 
2313
2320
  .e-pv-organize-total-page-button {
2314
2321
  float: left;
2315
- font-size: 12;
2316
2322
  font-weight: normal;
2317
2323
  color: #212529;
2324
+ font-size: 12;
2318
2325
  }
2319
2326
 
2320
2327
  .e-pdfviewer .e-pv-organize-window .e-footer-content .e-btn.e-flat:disabled {
@@ -2619,8 +2626,8 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2619
2626
  .e-pv-properties-line-stroke-color-label,
2620
2627
  .e-pv-properties-line-opacity-label,
2621
2628
  .e-pv-properties-line-leader-length-label {
2622
- margin-bottom: 8px;
2623
2629
  font-size: 14px;
2630
+ margin-bottom: 8px;
2624
2631
  }
2625
2632
 
2626
2633
  .e-pv-properties-line-end-container,
@@ -3278,8 +3285,8 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3278
3285
  }
3279
3286
 
3280
3287
  .e-pdfviewer .e-pv-signature-apperance .e-checkbox-wrapper {
3281
- margin-top: 10px;
3282
3288
  padding-bottom: 5px;
3289
+ margin-top: 10px;
3283
3290
  }
3284
3291
 
3285
3292
  .e-pdfviewer .e-pv-signature-window .e-footer-content {
@@ -3372,12 +3379,12 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3372
3379
  border-radius: 5px;
3373
3380
  display: inline-block;
3374
3381
  font-size: 13px;
3375
- height: 88px;
3376
- margin: 15px;
3377
3382
  padding-top: 40px;
3378
3383
  text-align: center;
3379
- width: 311px;
3380
3384
  word-wrap: break-word;
3385
+ height: 88px;
3386
+ width: 311px;
3387
+ margin: 15px;
3381
3388
  }
3382
3389
 
3383
3390
  .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused {
@@ -1 +1,4 @@
1
- @import 'pdfviewer/bootstrap5.scss';
1
+ @import 'ej2-base/styles/definition/bootstrap5.scss';
2
+ @import 'pdfviewer/bootstrap5-definition.scss';
3
+ @import 'pdfviewer/icons/bootstrap5.scss';
4
+ @import 'pdfviewer/all.scss';
@@ -1024,6 +1024,10 @@ input.e-pv-input-password::-ms-reveal {
1024
1024
  padding: 0 0 0 3px;
1025
1025
  }
1026
1026
 
1027
+ .e-pv-fontfamily-container .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-valid-input {
1028
+ width: 100px;
1029
+ }
1030
+
1027
1031
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1028
1032
  .e-input-group.e-control-wrapper.e-pv-prop-dropdown.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1029
1033
  .e-input-group.e-control-wrapper.e-pv-zoom-drop-down-rtl.e-ddl.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
@@ -2205,9 +2209,9 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2205
2209
 
2206
2210
  .e-pv-organize-total-page-button {
2207
2211
  float: left;
2208
- font-size: 12;
2209
2212
  font-weight: normal;
2210
2213
  color: #dadada;
2214
+ font-size: 12;
2211
2215
  }
2212
2216
 
2213
2217
  .e-pdfviewer .e-pv-organize-window .e-footer-content .e-btn.e-flat:disabled {
@@ -2464,8 +2468,8 @@ div > .e-pv-bookmark-icon.e-pv-icon {
2464
2468
  .e-pv-properties-line-stroke-color-label,
2465
2469
  .e-pv-properties-line-opacity-label,
2466
2470
  .e-pv-properties-line-leader-length-label {
2467
- margin-bottom: 8px;
2468
2471
  font-size: 14px;
2472
+ margin-bottom: 8px;
2469
2473
  }
2470
2474
 
2471
2475
  .e-pv-properties-line-end-container,
@@ -3053,8 +3057,8 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3053
3057
  }
3054
3058
 
3055
3059
  .e-pdfviewer .e-pv-signature-apperance .e-checkbox-wrapper {
3056
- margin-top: 10px;
3057
3060
  padding-bottom: 1px;
3061
+ margin-top: 10px;
3058
3062
  }
3059
3063
 
3060
3064
  .e-pdfviewer .e-pv-signature-window .e-footer-content {
@@ -3146,12 +3150,12 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3146
3150
  border-radius: 5px;
3147
3151
  display: inline-block;
3148
3152
  font-size: 13px;
3149
- height: 88px;
3150
- margin: 15px;
3151
3153
  padding-top: 40px;
3152
3154
  text-align: center;
3153
- width: 311px;
3154
3155
  word-wrap: break-word;
3156
+ height: 88px;
3157
+ width: 311px;
3158
+ margin: 15px;
3155
3159
  }
3156
3160
 
3157
3161
  .e-pv-stamp-template-container .e-menu-container .e-menu .e-menu-item.e-focused {