@win2win/shared 1.0.88 → 1.0.90
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.
|
@@ -36,7 +36,7 @@ export declare const GAMA_PROP_CONTROL_TYPES: readonly [{
|
|
|
36
36
|
readonly label: "Selector de tarjetas";
|
|
37
37
|
}, {
|
|
38
38
|
readonly code: "location";
|
|
39
|
-
readonly icon: "
|
|
39
|
+
readonly icon: "o_location_on";
|
|
40
40
|
readonly label: "Ubicación";
|
|
41
41
|
}, {
|
|
42
42
|
readonly code: "dynamic_array";
|
|
@@ -50,6 +50,10 @@ export declare const GAMA_PROP_CONTROL_TYPES: readonly [{
|
|
|
50
50
|
readonly code: "keys_counter";
|
|
51
51
|
readonly icon: "plus_one";
|
|
52
52
|
readonly label: "Contador de entradas";
|
|
53
|
+
}, {
|
|
54
|
+
readonly code: "collection";
|
|
55
|
+
readonly icon: "o_description";
|
|
56
|
+
readonly label: "Colección";
|
|
53
57
|
}];
|
|
54
58
|
export type GamaPropControlCode = (typeof GAMA_PROP_CONTROL_TYPES)[number]['code'];
|
|
55
59
|
export declare enum ControlType {
|
|
@@ -65,5 +69,6 @@ export declare enum ControlType {
|
|
|
65
69
|
LOCATION = "location",
|
|
66
70
|
DYNAMIC_ARRAY = "dynamic_array",
|
|
67
71
|
OBJECT = "object",
|
|
68
|
-
KEYS_COUNTER = "keys_counter"
|
|
72
|
+
KEYS_COUNTER = "keys_counter",
|
|
73
|
+
COLLECTION = "collection"
|
|
69
74
|
}
|
|
@@ -11,10 +11,11 @@ exports.GAMA_PROP_CONTROL_TYPES = [
|
|
|
11
11
|
{ code: 'checkbox', icon: 'o_check_box', label: 'Checkbox' },
|
|
12
12
|
{ code: 'select', icon: 'list', label: 'Selector simple' },
|
|
13
13
|
{ code: 'cards_select', icon: 'grid_view', label: 'Selector de tarjetas' },
|
|
14
|
-
{ code: 'location', icon: '
|
|
14
|
+
{ code: 'location', icon: 'o_location_on', label: 'Ubicación' },
|
|
15
15
|
{ code: 'dynamic_array', icon: 'data_array', label: 'Colección dinámica' },
|
|
16
16
|
{ code: 'object', icon: 'data_object', label: 'Objeto' },
|
|
17
17
|
{ code: 'keys_counter', icon: 'plus_one', label: 'Contador de entradas' },
|
|
18
|
+
{ code: 'collection', icon: 'o_description', label: 'Colección' },
|
|
18
19
|
];
|
|
19
20
|
var ControlType;
|
|
20
21
|
(function (ControlType) {
|
|
@@ -31,4 +32,5 @@ var ControlType;
|
|
|
31
32
|
ControlType["DYNAMIC_ARRAY"] = "dynamic_array";
|
|
32
33
|
ControlType["OBJECT"] = "object";
|
|
33
34
|
ControlType["KEYS_COUNTER"] = "keys_counter";
|
|
35
|
+
ControlType["COLLECTION"] = "collection";
|
|
34
36
|
})(ControlType || (exports.ControlType = ControlType = {}));
|
package/package.json
CHANGED