From 3c3bfe1775ee10d737074205236fcff485ce185e Mon Sep 17 00:00:00 2001 From: andreeapescar Date: Tue, 24 Sep 2024 16:48:06 +0300 Subject: [PATCH] chore: update comment --- src/components.d.ts | 8 ++++---- src/components/pie-author/pie-author.tsx | 6 +++--- src/components/pie-player/pie-player.tsx | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components.d.ts b/src/components.d.ts index e781d1c..7b741ba 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -96,7 +96,7 @@ export namespace Components { */ 'uploadSoundSupport': ExternalUploadSoundSupport; /** - * If the Player should try to use math-rendering-accessible. Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix. The versions that can be safely used can be found here: TODO. + * Enables math-rendering accessibility support for the Player. Set to TRUE only if you're using item types that include the math-rendering accessibility fix. For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ). */ 'useMathRenderingAccessible': boolean; 'validateModels': () => Promise; @@ -159,7 +159,7 @@ export namespace Components { */ 'updateElementModel': (update: PieModel) => Promise; /** - * If the Player should try to use math-rendering-accessible. Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix. The versions that can be safely used can be found here: TODO. + * Enables math-rendering accessibility support for the Player. Set to TRUE only if you're using item types that include the math-rendering accessibility fix. For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ). */ 'useMathRenderingAccessible': boolean; 'version': string; @@ -299,7 +299,7 @@ declare namespace LocalJSX { */ 'uploadSoundSupport'?: ExternalUploadSoundSupport; /** - * If the Player should try to use math-rendering-accessible. Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix. The versions that can be safely used can be found here: TODO. + * Enables math-rendering accessibility support for the Player. Set to TRUE only if you're using item types that include the math-rendering accessibility fix. For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ). */ 'useMathRenderingAccessible'?: boolean; 'version'?: string; @@ -371,7 +371,7 @@ declare namespace LocalJSX { */ 'showBottomBorder'?: boolean; /** - * If the Player should try to use math-rendering-accessible. Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix. The versions that can be safely used can be found here: TODO. + * Enables math-rendering accessibility support for the Player. Set to TRUE only if you're using item types that include the math-rendering accessibility fix. For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ). */ 'useMathRenderingAccessible'?: boolean; 'version'?: string; diff --git a/src/components/pie-author/pie-author.tsx b/src/components/pie-author/pie-author.tsx index f68f718..e2c7373 100644 --- a/src/components/pie-author/pie-author.tsx +++ b/src/components/pie-author/pie-author.tsx @@ -122,9 +122,9 @@ export class Author { @Prop() isInsidePieApiAuthor?: boolean = false; /** - * If the Player should try to use math-rendering-accessible. - * Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix. - * The versions that can be safely used can be found here: TODO. + * Enables math-rendering accessibility support for the Player. + * Set to TRUE only if you're using item types that include the math-rendering accessibility fix. + * For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ). */ @Prop() useMathRenderingAccessible: boolean = false; diff --git a/src/components/pie-player/pie-player.tsx b/src/components/pie-player/pie-player.tsx index b89986d..4c3536f 100644 --- a/src/components/pie-player/pie-player.tsx +++ b/src/components/pie-player/pie-player.tsx @@ -163,9 +163,9 @@ export class Player { version: string = VERSION; /** - * If the Player should try to use math-rendering-accessible. - * Do not set this to TRUE if you're not using item types that were released before having the math-rendering-accessible fix. - * The versions that can be safely used can be found here: TODO. + * Enables math-rendering accessibility support for the Player. + * Set to TRUE only if you're using item types that include the math-rendering accessibility fix. + * For safe version compatibility, refer to the following link: TODO (https://illuminate.atlassian.net/wiki/x/zIBkFwQ). */ @Prop() useMathRenderingAccessible: boolean = false;