From e5219ed937479994c6fc7770111ca10e5bd51254 Mon Sep 17 00:00:00 2001 From: Farzad Hayatbakhsh Date: Fri, 15 Nov 2024 16:16:04 +1000 Subject: [PATCH 1/3] DOC-2570: Add LicenseKey property to Blazor Tech Ref --- .../integrations/blazor-tech-ref.adoc | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/partials/integrations/blazor-tech-ref.adoc b/modules/ROOT/partials/integrations/blazor-tech-ref.adoc index 9f2cc84635..5bdadedba3 100644 --- a/modules/ROOT/partials/integrations/blazor-tech-ref.adoc +++ b/modules/ROOT/partials/integrations/blazor-tech-ref.adoc @@ -13,13 +13,14 @@ The `+TinyMCE.Blazor+` `+Editor+` component accepts the following properties: ---- @@ -167,6 +168,21 @@ In your component: /> ---- +=== `LicenseKey` + +Specifies the {productname} license key. Required for self-hosted deployments of {productname}. This property is not required for deployments using the {cloudname}. For more information on licensing, see: xref:license-key.adoc[License key]. + +*Type:* `+String+` + +==== Example using LicenseKey + +[source,cs] +---- + +---- + === `ScriptSrc` Use the `+ScriptSrc+` property to specify the location of {productname} to lazy load when the application is not using {cloudname}. This setting is required if the application uses a self-hosted version of {productname}, such as the https://www.nuget.org/packages/TinyMCE/[{productname} NuGet package] or a .zip package of {productname}. From 8937a837ca4b13ca5e0289610e0cc152ed2c0521 Mon Sep 17 00:00:00 2001 From: Farzad Hayatbakhsh Date: Fri, 15 Nov 2024 16:36:49 +1000 Subject: [PATCH 2/3] Change CloudChannel to {productmajorversion} --- modules/ROOT/partials/integrations/blazor-tech-ref.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/partials/integrations/blazor-tech-ref.adoc b/modules/ROOT/partials/integrations/blazor-tech-ref.adoc index 5bdadedba3..a57ed8104a 100644 --- a/modules/ROOT/partials/integrations/blazor-tech-ref.adoc +++ b/modules/ROOT/partials/integrations/blazor-tech-ref.adoc @@ -13,7 +13,7 @@ The `+TinyMCE.Blazor+` `+Editor+` component accepts the following properties: Date: Fri, 15 Nov 2024 16:39:47 +1000 Subject: [PATCH 3/3] Add attribute substitution --- modules/ROOT/partials/integrations/blazor-tech-ref.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/partials/integrations/blazor-tech-ref.adoc b/modules/ROOT/partials/integrations/blazor-tech-ref.adoc index a57ed8104a..3af7d14c5b 100644 --- a/modules/ROOT/partials/integrations/blazor-tech-ref.adoc +++ b/modules/ROOT/partials/integrations/blazor-tech-ref.adoc @@ -8,7 +8,7 @@ Covered in this section: The `+TinyMCE.Blazor+` `+Editor+` component accepts the following properties: -[source,cs] +[source,cs,subs="attributes+"] ----