@builttocreate/engine-utils 2.9.1-beta.900.1 → 2.9.1-beta.943
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.
|
@@ -25,6 +25,7 @@ var task = 'task';
|
|
|
25
25
|
var table = 'table';
|
|
26
26
|
var inputGroup = 'inputGroup';
|
|
27
27
|
var chart = 'chart';
|
|
28
|
+
var barcode = 'barcode';
|
|
28
29
|
var types = {
|
|
29
30
|
uniqueId: uniqueId,
|
|
30
31
|
image: image,
|
|
@@ -43,7 +44,8 @@ var types = {
|
|
|
43
44
|
inputGroup: inputGroup,
|
|
44
45
|
chart: chart,
|
|
45
46
|
multiSelect: multiSelect,
|
|
46
|
-
dropdown: dropdown
|
|
47
|
+
dropdown: dropdown,
|
|
48
|
+
barcode: barcode
|
|
47
49
|
};
|
|
48
50
|
types.all = Object.keys(types);
|
|
49
51
|
types.titles = {
|
|
@@ -62,6 +64,7 @@ types.titles = {
|
|
|
62
64
|
inputGroup: 'Field Group',
|
|
63
65
|
chart: 'Performance Chart',
|
|
64
66
|
multiSelect: 'Checkbox',
|
|
65
|
-
dropdown: 'Dropdown'
|
|
67
|
+
dropdown: 'Dropdown',
|
|
68
|
+
barcode: 'Barcode'
|
|
66
69
|
};
|
|
67
70
|
var _default = exports["default"] = types;
|