@plesk/ui-library 3.35.3 → 3.35.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -101,7 +101,7 @@ class TextArea extends Component {
101
101
  textareaStyles,
102
102
  minRows
103
103
  } = this.state;
104
- const useSizeModifier = AVAILABLE_SIZES.indexOf(size) !== -1;
104
+ const useSizeModifier = size && AVAILABLE_SIZES.indexOf(size) !== -1;
105
105
  return /*#__PURE__*/_jsx("textarea", {
106
106
  className: classNames(baseClassName, {
107
107
  [`${baseClassName}--size-${size}`]: useSizeModifier
package/esm/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // Copyright 1999-2023. Plesk International GmbH. All rights reserved.
2
2
  import svg4everybody from 'svg4everybody';
3
- const version = "3.35.3";
3
+ const version = "3.35.4";
4
4
  export * from './publicPath';
5
5
  export { version };
6
6
  export * from './utils';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plesk/ui-library",
3
- "version": "3.35.3",
3
+ "version": "3.35.4",
4
4
  "description": "Plesk UI Library",
5
5
  "main": "index.js",
6
6
  "module": "esm/index.js",