@plesk/ui-library 3.46.2 → 3.46.3

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.
@@ -30,7 +30,9 @@ class CodeEditor extends Component {
30
30
  tabMode: 'shift',
31
31
  autoRefresh: true,
32
32
  extraKeys: {
33
- 'Ctrl-S': 'save'
33
+ 'Ctrl-S': 'save',
34
+ Tab: false,
35
+ 'Shift-Tab': false
34
36
  },
35
37
  direction: isRtl() ? 'rtl' : 'ltr'
36
38
  }
@@ -37,18 +37,21 @@ const ButtonGroupControl = ({
37
37
  width: shouldApplyMonoWidth ? monoWidth : style.width,
38
38
  ...style
39
39
  };
40
- return /*#__PURE__*/_jsx(Button, {
41
- ref: node => {
42
- index === 0 && (buttonsRef.current = []);
43
- node && buttonsRef.current.push(node);
44
- },
45
- selected: selectedValues.includes(value),
46
- ghost: ghost,
47
- onClick: () => onClick(value),
48
- ...buttonProps,
49
- className: classNames(buttonProps.className, `${baseClassName}__button`),
50
- style: buttonStyle,
51
- children: title
40
+ return /*#__PURE__*/_jsx("div", {
41
+ role: "listitem",
42
+ children: /*#__PURE__*/_jsx(Button, {
43
+ ref: node => {
44
+ index === 0 && (buttonsRef.current = []);
45
+ node && buttonsRef.current.push(node);
46
+ },
47
+ selected: selectedValues.includes(value),
48
+ ghost: ghost,
49
+ onClick: () => onClick(value),
50
+ ...buttonProps,
51
+ className: classNames(buttonProps.className, `${baseClassName}__button`),
52
+ style: buttonStyle,
53
+ children: title
54
+ })
52
55
  }, `${value}`);
53
56
  })
54
57
  });
package/esm/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // Copyright 1999-2025. WebPros International GmbH. All rights reserved.
2
2
  import svg4everybody from 'svg4everybody';
3
- const version = "3.46.2";
3
+ const version = "3.46.3";
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.46.2",
3
+ "version": "3.46.3",
4
4
  "description": "Plesk UI Library",
5
5
  "main": "index.js",
6
6
  "module": "esm/index.js",