@gisce/ooui 2.36.0 → 2.37.0-alpha.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gisce/ooui",
3
- "version": "2.36.0",
3
+ "version": "2.37.0-alpha.1",
4
4
  "engines": {
5
5
  "node": "20.5.0"
6
6
  },
@@ -0,0 +1,5 @@
1
+ import Field from "./Field";
2
+
3
+ class ActionButtons extends Field {}
4
+
5
+ export default ActionButtons;
@@ -3,6 +3,7 @@ import Page from "./Page";
3
3
  import Group from "./Group";
4
4
  import Button from "./Button";
5
5
  import ButtonGroup from "./ButtonGroup";
6
+ import ActionButtons from "./ActionButtons";
6
7
  import Label from "./Label";
7
8
  import Char from "./Char";
8
9
  import Text from "./Text";
@@ -76,6 +77,9 @@ class WidgetFactory {
76
77
  case "buttonGroup":
77
78
  this._widgetClass = ButtonGroup;
78
79
  break;
80
+ case "action_buttons":
81
+ this._widgetClass = ActionButtons;
82
+ break;
79
83
  case "selection":
80
84
  this._widgetClass = Selection;
81
85
  break;
package/src/index.ts CHANGED
@@ -27,6 +27,7 @@ import Page from "./Page";
27
27
  import Separator from "./Separator";
28
28
  import Button from "./Button";
29
29
  import ButtonGroup from "./ButtonGroup";
30
+ import ActionButtons from "./ActionButtons";
30
31
  import Reference from "./Reference";
31
32
  import Binary from "./Binary";
32
33
  import Image from "./Image";
@@ -104,6 +105,7 @@ export {
104
105
  Separator,
105
106
  Button,
106
107
  ButtonGroup,
108
+ ActionButtons,
107
109
  Reference,
108
110
  Binary,
109
111
  Image,