@win2win/shared 1.0.288 → 1.0.289

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.
@@ -58,6 +58,10 @@ export declare const GAMA_PROP_CONTROL_TYPES: readonly [{
58
58
  readonly code: "images";
59
59
  readonly icon: "o_image";
60
60
  readonly label: "Imágenes";
61
+ }, {
62
+ readonly code: "product_picker";
63
+ readonly icon: "sym_o_shopping_cart";
64
+ readonly label: "Selector de producto";
61
65
  }];
62
66
  export type GamaPropControlCode = (typeof GAMA_PROP_CONTROL_TYPES)[number]["code"];
63
67
  export declare enum ControlType {
@@ -75,5 +79,6 @@ export declare enum ControlType {
75
79
  OBJECT = "object",
76
80
  KEYS_COUNTER = "keys_counter",
77
81
  COLLECTION = "collection",
78
- IMAGES = "images"
82
+ IMAGES = "images",
83
+ PRODUCT_PICKER = "product_picker"
79
84
  }
@@ -17,6 +17,7 @@ exports.GAMA_PROP_CONTROL_TYPES = [
17
17
  { code: "keys_counter", icon: "plus_one", label: "Contador de entradas" },
18
18
  { code: "collection", icon: "o_description", label: "Colección" },
19
19
  { code: "images", icon: "o_image", label: "Imágenes" },
20
+ { code: "product_picker", icon: "sym_o_shopping_cart", label: "Selector de producto" },
20
21
  ];
21
22
  var ControlType;
22
23
  (function (ControlType) {
@@ -35,4 +36,5 @@ var ControlType;
35
36
  ControlType["KEYS_COUNTER"] = "keys_counter";
36
37
  ControlType["COLLECTION"] = "collection";
37
38
  ControlType["IMAGES"] = "images";
39
+ ControlType["PRODUCT_PICKER"] = "product_picker";
38
40
  })(ControlType || (exports.ControlType = ControlType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.288",
3
+ "version": "1.0.289",
4
4
  "description": "Tipos, interfaces, funciones, constantes, clases y enums compartidos por todos los proyectos de Win2Win",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",