@gisce/ooui 2.37.0 → 2.38.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/README.md +2 -0
- package/dist/ActionButtons.d.ts +5 -0
- package/dist/ActionButtons.d.ts.map +1 -0
- package/dist/Label.d.ts.map +1 -1
- package/dist/WidgetFactory.d.ts.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/ooui.es.js +180 -174
- package/dist/ooui.es.js.map +1 -1
- package/package.json +1 -1
- package/src/ActionButtons.ts +5 -0
- package/src/Label.ts +3 -0
- package/src/WidgetFactory.ts +4 -0
- package/src/index.ts +2 -0
package/package.json
CHANGED
package/src/Label.ts
CHANGED
package/src/WidgetFactory.ts
CHANGED
|
@@ -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";
|
|
@@ -77,6 +78,9 @@ class WidgetFactory {
|
|
|
77
78
|
case "buttonGroup":
|
|
78
79
|
this._widgetClass = ButtonGroup;
|
|
79
80
|
break;
|
|
81
|
+
case "action_buttons":
|
|
82
|
+
this._widgetClass = ActionButtons;
|
|
83
|
+
break;
|
|
80
84
|
case "selection":
|
|
81
85
|
this._widgetClass = Selection;
|
|
82
86
|
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";
|
|
@@ -105,6 +106,7 @@ export {
|
|
|
105
106
|
Separator,
|
|
106
107
|
Button,
|
|
107
108
|
ButtonGroup,
|
|
109
|
+
ActionButtons,
|
|
108
110
|
Reference,
|
|
109
111
|
Binary,
|
|
110
112
|
Image,
|