Skip to content

Commit a6b2b2c

Browse files
1008844: Resolved CI failures
1 parent d700f93 commit a6b2b2c

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

Document-Processing-toc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@
686686
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/custom-fonts">Add custom fonts to the PDF Viewer using the PDF document</a></li>
687687
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/create-a-standalone-pdf-viewer-in-angular-17-and-above-with-no-standalone-flag">Create a Standalone PDF Viewer in Angular 17 and above with --no-standalone flag</a></li>
688688
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/create-a-standalone-pdf-viewer-in-angular-17-and-above-without-no-standalone-flag">Create a Standalone PDF Viewer in Angular 17 and above without --no-standalone flag</a></li>
689-
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/create-a-standalone-pdf-viewer-in-angular-12.md">Create a Standalone PDF Viewer in Angular 12</a></li>
689+
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/create-a-standalone-pdf-viewer-in-angular-12">Create a Standalone PDF Viewer in Angular 12</a></li>
690690
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/configure-annotation-selector-setting">Configure Annotation Selector Setting</a></li>
691691
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds">Convert Pdf Library Bounds to Pdf viewer bounds</a></li>
692692
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/show-custom-stamp-item">Display Custom Stamp items in Custom Stamp</a></li>

Document-Processing/PDF/PDF-Viewer/angular/how-to/annotation-selectors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Customize annotation selectors in Angular PDF Viewer
1111

12-
Use the [annotationSelectorSettings](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/#annotationselectorsettings) property to configure the appearance and behavior of annotation selectors. This includes selection handles and resizers (for example, handle shape and size), which determine how users interact with annotations during editing.
12+
Use the [annotationSelectorSettings](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer#annotationselectorsettings) property to configure the appearance and behavior of annotation selectors. This includes selection handles and resizer (for example, handle shape and size), which determine how users interact with annotations during editing.
1313

1414
The example below changes the selector's resizer handle shape to circular and opens an existing annotation for editing. Setting `resizerShape = 'Circle'` updates the selector appearance to circular resizer handles; ensure an annotation exists before calling `editAnnotation` to avoid runtime errors.
1515

Document-Processing/PDF/PDF-Viewer/angular/how-to/create-a-standalone-pdf-viewer-in-angular-17-and-above-without-no-standalone-flag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ npm install @syncfusion/ej2-angular-pdfviewer --save
4646
cp -R ./node_modules/@syncfusion/ej2-pdfviewer/dist/ej2-pdfviewer-lib src/assets/ej2-pdfviewer-lib
4747
```
4848

49-
On Windows, use an equivalent command (for example, PowerShell `xcopy` or `robocopy`) or add an npm script to copy assets cross-platform. Ensure the development server serves WebAssembly with the `Content-Type: application/wasm` MIME type; see the [Troubleshooting](./troubleshooting/troubleshooting) section for details.
49+
On Windows, use an equivalent command or add an npm script to copy assets cross-platform. Ensure the development server serves WebAssembly with the `Content-Type: application/wasm` MIME type; see the [Troubleshooting](./troubleshooting/troubleshooting) section for details.
5050

5151
## Registering PDF Viewer Module and Adding PDF Viewer component
5252

Document-Processing/PDF/PDF-Viewer/angular/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export class AppComponent implements OnInit {
9797

9898
* [`View PDF Document`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started) - Open and display both normal and protected PDF files.
9999
* [`Annotations`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/annotation/text-markup-annotation) - Annotate documents with text markup, shapes, stamps, ink, and sticky notes. Form filling and form designing are supported.
100-
* [`Form Fields`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/form-designer/create-programmatically) - Create and fill form fields; supports form designing features.
100+
* [`Form Fields`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/forms/overview) - Create and fill form fields; supports form designing features.
101101
* [`Signature`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/annotation/signature-annotation) - Support for hand-written and digital signatures.
102102
* [`Toolbar`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/toolbar) - Built-in and customizable toolbars for common PDF Viewer actions.
103103
* [`Navigation`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/navigation) - Navigate using bookmarks, thumbnails, hyperlinks, and the table of contents.

Document-Processing/PDF/PDF-Viewer/angular/save-pdf-file/to-amazon-s3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import * as AWS from 'aws-sdk';
3030

3131
2. Configure the AWS SDK with the region, access key, and secret access key. This configuration allows the application to interact with AWS services like S3.
3232

33-
N> Replace the placeholder values with the AWS region and credentials. For production, avoid embedding long-lived AWS credentials in client-side code; use temporary credentials (Cognito, STS) or perform uploads via a trusted server.
33+
N> Replace the placeholder values with the AWS region and credentials. For production, avoid embedding long-lived AWS credentials in client-side code; use temporary credentials (STS) or perform uploads via a trusted server.
3434

3535
```typescript
3636
AWS.config.update({

Document-Processing/PDF/PDF-Viewer/angular/save-pdf-file/to-azure-blob-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ SavePdfToBlob() {
101101
}
102102
```
103103

104-
N> Install the Azure Storage Blob client package for browser use: `npm install @azure/storage-blob`. For server-side operations use `dotnet add package Azure.Storage.Blobs`.
104+
N> Install the Azure Storage Blob client package for browser use: `npm install @azure/storage-blob`.
105105

106106
[View sample in GitHub](https://github.com/SyncfusionExamples/open-save-pdf-documents-in-azure-blob-storage/tree/master/Open%20and%20Save%20PDF%20in%20Azure%20Blob%20Storage%20using%20Standalone).
107107

Document-Processing/PDF/PDF-Viewer/angular/toolbar.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,9 @@ import { LinkAnnotationService, BookmarkViewService, MagnificationService,
262262

263263
The PDF Viewer supports customizing toolbar items: add, show, hide, enable, and disable.
264264

265-
* Add: Define new items using the [CustomToolbarItemModel](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/customToolbarItemModel/) and include them in the [ToolbarSettings](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/toolbarSettings/) property. Handle item clicks with the [toolbarclick](https://ej2.syncfusion.com/angular/documentation/api/toolbar/clickEventArgs/) event.
266-
* Show / Hide: Show or hide predefined items through `ToolbarSettings`. See the [ToolbarItem](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/toolbarItem/) API for available identifiers.
267-
* Enable / Disable: Enable or disable toolbar items using the [enabletoolbaritem](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/toolbar/#enabletoolbaritem) API.
265+
* Add: Define new items using the [CustomToolbarItemModel](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/customToolbarItemModel) and include them in the [ToolbarSettings](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/toolbarSettings) property. Handle item clicks with the [toolbarclick](https://ej2.syncfusion.com/angular/documentation/api/toolbar/clickEventArgs) event.
266+
* Show / Hide: Show or hide predefined items through `ToolbarSettings`. See the [ToolbarItem](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/toolbarItem) API for available identifiers.
267+
* Enable / Disable: Enable or disable toolbar items using the [enabletoolbaritem](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/toolbar#enabletoolbaritem) API.
268268

269269
{% tabs %}
270270
{% highlight html tabtitle="Standalone" %}

0 commit comments

Comments
 (0)