@win2win/shared 1.0.207 → 1.0.208
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.
|
@@ -54,8 +54,12 @@ export declare const GAMA_PROP_CONTROL_TYPES: readonly [{
|
|
|
54
54
|
readonly code: "collection";
|
|
55
55
|
readonly icon: "o_description";
|
|
56
56
|
readonly label: "Colección";
|
|
57
|
+
}, {
|
|
58
|
+
readonly code: "images";
|
|
59
|
+
readonly icon: "image";
|
|
60
|
+
readonly label: "Imágenes";
|
|
57
61
|
}];
|
|
58
|
-
export type GamaPropControlCode = (typeof GAMA_PROP_CONTROL_TYPES)[number][
|
|
62
|
+
export type GamaPropControlCode = (typeof GAMA_PROP_CONTROL_TYPES)[number]["code"];
|
|
59
63
|
export declare enum ControlType {
|
|
60
64
|
TEXT = "input_text",
|
|
61
65
|
NUMBER = "input_number",
|
|
@@ -70,5 +74,6 @@ export declare enum ControlType {
|
|
|
70
74
|
DYNAMIC_ARRAY = "dynamic_array",
|
|
71
75
|
OBJECT = "object",
|
|
72
76
|
KEYS_COUNTER = "keys_counter",
|
|
73
|
-
COLLECTION = "collection"
|
|
77
|
+
COLLECTION = "collection",
|
|
78
|
+
IMAGES = "images"
|
|
74
79
|
}
|
|
@@ -2,20 +2,21 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ControlType = exports.GAMA_PROP_CONTROL_TYPES = void 0;
|
|
4
4
|
exports.GAMA_PROP_CONTROL_TYPES = [
|
|
5
|
-
{ code:
|
|
6
|
-
{ code:
|
|
7
|
-
{ code:
|
|
8
|
-
{ code:
|
|
9
|
-
{ code:
|
|
10
|
-
{ code:
|
|
11
|
-
{ code:
|
|
12
|
-
{ code:
|
|
13
|
-
{ code:
|
|
14
|
-
{ code:
|
|
15
|
-
{ code:
|
|
16
|
-
{ code:
|
|
17
|
-
{ code:
|
|
18
|
-
{ code:
|
|
5
|
+
{ code: "input_text", icon: "title", label: "Texto" },
|
|
6
|
+
{ code: "input_number", icon: "o_looks_one", label: "Número" },
|
|
7
|
+
{ code: "datetime", icon: "event", label: "Fecha y hora" },
|
|
8
|
+
{ code: "date", icon: "calendar_today", label: "Fecha" },
|
|
9
|
+
{ code: "time", icon: "schedule", label: "Hora" },
|
|
10
|
+
{ code: "switch", icon: "toggle_on", label: "Switch" },
|
|
11
|
+
{ code: "checkbox", icon: "o_check_box", label: "Checkbox" },
|
|
12
|
+
{ code: "select", icon: "list", label: "Selector simple" },
|
|
13
|
+
{ code: "cards_select", icon: "grid_view", label: "Selector de tarjetas" },
|
|
14
|
+
{ code: "location", icon: "o_location_on", label: "Ubicación" },
|
|
15
|
+
{ code: "dynamic_array", icon: "data_array", label: "Colección dinámica" },
|
|
16
|
+
{ code: "object", icon: "data_object", label: "Objeto" },
|
|
17
|
+
{ code: "keys_counter", icon: "plus_one", label: "Contador de entradas" },
|
|
18
|
+
{ code: "collection", icon: "o_description", label: "Colección" },
|
|
19
|
+
{ code: "images", icon: "image", label: "Imágenes" },
|
|
19
20
|
];
|
|
20
21
|
var ControlType;
|
|
21
22
|
(function (ControlType) {
|
|
@@ -33,4 +34,5 @@ var ControlType;
|
|
|
33
34
|
ControlType["OBJECT"] = "object";
|
|
34
35
|
ControlType["KEYS_COUNTER"] = "keys_counter";
|
|
35
36
|
ControlType["COLLECTION"] = "collection";
|
|
37
|
+
ControlType["IMAGES"] = "images";
|
|
36
38
|
})(ControlType || (exports.ControlType = ControlType = {}));
|
package/package.json
CHANGED