@@ -966,7 +966,7 @@ export class UserValueComponent extends Component {
966
966
}
967
967
/**
968
968
* Sets all props as data attributes to match with existing tours.
969
- * @TODO this should be removed or only shown when tours are actually
969
+ * @TODO this should be removed or only shown when tours are actually
970
970
* activated. However, some SCSS styles are using attributes to style some
971
971
* buttons (e.g. BackgroundShape).
972
972
*/
@@ -980,7 +980,7 @@ export class UserValueComponent extends Component {
980
980
}
981
981
/**
982
982
* Prepare the values that will be passed as parameters to the state.
983
- *
983
+ *
984
984
* @private
985
985
* @return {Objectl }
986
986
*/
@@ -1919,7 +1919,7 @@ class WeMulti extends UserValueComponent {
1919
1919
registry . category ( "snippet_widgets" ) . add ( "WeMulti" , WeMulti ) ;
1920
1920
1921
1921
export class ColorpickerUserValue extends SelectUserValue {
1922
- /**
1922
+ /**
1923
1923
* The Color Combination value, which is a string ranging from 1 to 5
1924
1924
*
1925
1925
* @type {string }
@@ -2937,7 +2937,7 @@ class RangeUserValue extends UnitUserValue {
2937
2937
}
2938
2938
/**
2939
2939
* @private
2940
- * @param {string } inputValue
2940
+ * @param {string } inputValue
2941
2941
*/
2942
2942
_computeDisplayValue ( inputValue ) {
2943
2943
if ( this . toRatio ) {
@@ -3707,7 +3707,7 @@ export class SnippetOptionComponent extends Component {
3707
3707
this . $overlay = this . props . snippetOption . instance . $overlay ;
3708
3708
this . renderContext = useState ( this . props . snippetOption . instance . renderContext ) ;
3709
3709
// When a component is mounted or unmounted, the state of other
3710
- // components might be impacted. (i.e. dependencies behaving
3710
+ // components might be impacted. (i.e. dependencies behaving
3711
3711
// differently when a component is in the DOM or when it isn't)
3712
3712
this . updateUI = false ;
3713
3713
@@ -6297,7 +6297,7 @@ registry.category("snippet_widgets").add("Overlay", Overlay);
6297
6297
*/
6298
6298
export class SnippetMove extends ColumnLayoutMixin ( SnippetOption ) {
6299
6299
static displayOverlayOptions = true ;
6300
-
6300
+
6301
6301
/**
6302
6302
* @override
6303
6303
*/
@@ -7498,7 +7498,7 @@ export class ImageTools extends ImageHandlerOption {
7498
7498
/**
7499
7499
* Replace animation durations in SVG and CSS with modified values.
7500
7500
*
7501
- * This function takes a ratio and an SVG string containing animations. It
7501
+ * This function takes a ratio and an SVG string containing animations. It
7502
7502
* uses regular expressions to find and replace the duration values in both
7503
7503
* CSS animation rules and SVG duration attributes based on the provided
7504
7504
* ratio.
@@ -7507,7 +7507,7 @@ export class ImageTools extends ImageHandlerOption {
7507
7507
* durations. If speed is 0.0, the original
7508
7508
* durations are preserved.
7509
7509
* @param {string } svg The SVG string containing animations.
7510
- * @returns {string } The modified SVG string with updated animation
7510
+ * @returns {string } The modified SVG string with updated animation
7511
7511
* durations.
7512
7512
*/
7513
7513
_replaceAnimationDuration ( speed , svg ) {
@@ -7534,7 +7534,7 @@ export class ImageTools extends ImageHandlerOption {
7534
7534
// Replace the CSS --animation_ratio variable for future purpose.
7535
7535
svg = svg . replace ( CSS_ANIMATION_RATIO_REGEX , `--animation_ratio: ${ ratio } ;` ) ;
7536
7536
} else {
7537
- // Add the style tag with the root variable --animation ratio for
7537
+ // Add the style tag with the root variable --animation ratio for
7538
7538
// future purpose.
7539
7539
const regex = / < s v g .* > / m;
7540
7540
const subst = `$&\n\t<style>\n\t\t:root { \n\t\t\t--animation_ratio: ${ ratio } ;\n\t\t}\n\t</style>` ;
0 commit comments