diff --git a/src/Cropper.Blazor/Client/Components/Docs/DocsApi.razor b/src/Cropper.Blazor/Client/Components/Docs/DocsApi.razor
index 9072c262..3ae611ce 100644
--- a/src/Cropper.Blazor/Client/Components/Docs/DocsApi.razor
+++ b/src/Cropper.Blazor/Client/Components/Docs/DocsApi.razor
@@ -19,6 +19,7 @@
-
@Type.GetTypeDisplayName()
diff --git a/src/Cropper.Blazor/Client/Pages/AspectRatio/AspectRatioPage.razor b/src/Cropper.Blazor/Client/Pages/AspectRatio/AspectRatioPage.razor
index 64bb04f8..58b8b66f 100644
--- a/src/Cropper.Blazor/Client/Pages/AspectRatio/AspectRatioPage.razor
+++ b/src/Cropper.Blazor/Client/Pages/AspectRatio/AspectRatioPage.razor
@@ -23,7 +23,7 @@
You can use AspectRatio decimal field in the
- Option property to define the fixed aspect ratio of the crop box.
+ Options property to define the fixed aspect ratio of the crop box.
To enable free aspect ratio setting AspectRatio
propety to 0.
@@ -54,7 +54,7 @@
Use InitialAspectRatio in the
- Option cropper component property
+ Options cropper component property
to define the initial aspect ratio of the crop box.
By default, it is the same as the aspect ratio of the canvas (image wrapper).
diff --git a/src/Cropper.Blazor/Client/Pages/BasicUsage/BasicCropperUsagePage.razor b/src/Cropper.Blazor/Client/Pages/BasicUsage/BasicCropperUsagePage.razor
index 2d6beae0..b3bea68f 100644
--- a/src/Cropper.Blazor/Client/Pages/BasicUsage/BasicCropperUsagePage.razor
+++ b/src/Cropper.Blazor/Client/Pages/BasicUsage/BasicCropperUsagePage.razor
@@ -8,7 +8,7 @@
Note
The CropperComponent is dependant on ICropperComponentBase
- Check the Installation page for instructions regarding default setup.
+ Check the Installation page for instructions regarding default setup.
@@ -16,8 +16,8 @@
To start using the cropper component, you must specify the path to the image
with which you will work in the Src property.
- You also need to specify the cropper settings using the Options property,
- which can be left as default, as in the example below.
+ You also need to specify the cropper settings using the Options property,
+ which can be left as default, as in the example below.
Note: With the release of .NET 8, сropper's default settings will be set automatically,
diff --git a/src/Cropper.Blazor/Client/Pages/CropBoxDimensions/CropBoxDimensionsPage.razor b/src/Cropper.Blazor/Client/Pages/CropBoxDimensions/CropBoxDimensionsPage.razor
index 09324bde..8f6215c2 100644
--- a/src/Cropper.Blazor/Client/Pages/CropBoxDimensions/CropBoxDimensionsPage.razor
+++ b/src/Cropper.Blazor/Client/Pages/CropBoxDimensions/CropBoxDimensionsPage.razor
@@ -10,14 +10,14 @@
To set the initial dimensions of crop area (crop box), you can use the
SetDataOptions property,
- which is located in the Option property of the cropper.
+ which is located in the Options property of the cropper.
To resize the crop area of an already initialized cropper component
you can use its SetData method.
Note: This method only available when the value of the
- ViewMode option is greater than or equal to 1.
+ ViewMode option is greater than or equal to 1.
Height and width of the crop area are based on the natural size of the original image.
@@ -53,7 +53,7 @@
Use the MinCropBoxHeight and MinCropBoxWidth
- fields in the Option cropper component property to
+ fields in the Options cropper component property to
enable minimum limit for the relative size of crop area
diff --git a/src/Cropper.Blazor/Client/Pages/CropZoom/CropperZoomPage.razor b/src/Cropper.Blazor/Client/Pages/CropZoom/CropperZoomPage.razor
index 830a708e..9d21193a 100644
--- a/src/Cropper.Blazor/Client/Pages/CropZoom/CropperZoomPage.razor
+++ b/src/Cropper.Blazor/Client/Pages/CropZoom/CropperZoomPage.razor
@@ -19,10 +19,10 @@
You can use Zoomable boolean field in the
- Option property to enable/disable to zoom the image.
+ Options property to enable/disable to zoom the image.
You can use ZoomOnTouch boolean field in the
- Option property to enable/disable to
+ Options property to enable/disable to
zoom the image by dragging touch.
Boolean field ZoomOnWheel used to enable/disable
@@ -38,7 +38,7 @@
Use decimal field WheelZoomRatio in the
- Option cropper component property
+ Options cropper component property
to define zoom ratio when zooming the image by mouse wheeling.
By default, WheelZoomRatio is 0,1.
diff --git a/src/Cropper.Blazor/Client/Pages/ViewModes/ViewModesPage.razor b/src/Cropper.Blazor/Client/Pages/ViewModes/ViewModesPage.razor
index 4b260bf7..672ee524 100644
--- a/src/Cropper.Blazor/Client/Pages/ViewModes/ViewModesPage.razor
+++ b/src/Cropper.Blazor/Client/Pages/ViewModes/ViewModesPage.razor
@@ -8,7 +8,7 @@
- With the ViewMode in Options prop
+ With the ViewMode in Options prop
you can change the view mode of the cropper.
ViewMode enumeration contains the following view modes:
@@ -34,14 +34,14 @@
- If you set ViewMode to ViewMode.
+ If you set ViewMode to ViewMode.
Vm0, the crop box can extend outside the canvas,
while a value of Vm1, Vm2,
or Vm3 will restrict the crop box to the size of the canvas.
- ViewMode of Vm2 or Vm3
+ ViewMode of Vm2 or Vm3
will additionally restrict the canvas to the container.
There is no difference between Vm2 and Vm3