ecotransac-shared-js 1.2.31 → 1.2.32

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/dist/index.d.mts CHANGED
@@ -870,7 +870,7 @@ type Field = {
870
870
  placeholder?: string;
871
871
  };
872
872
  };
873
- type FieldType = "text" | "number" | "select" | "textarea" | "radio-boolean" | "radio" | "date" | "country" | "switch" | "propertyType" | "grade" | "year" | "exclusivity" | "address" | "phone";
873
+ type FieldType = "text" | "number" | "select" | "select-number" | "textarea" | "radio-boolean" | "radio" | "date" | "country" | "switch" | "propertyType" | "grade" | "year" | "exclusivity" | "address" | "phone";
874
874
  type State = {
875
875
  [key: string]: boolean;
876
876
  };
package/dist/index.d.ts CHANGED
@@ -870,7 +870,7 @@ type Field = {
870
870
  placeholder?: string;
871
871
  };
872
872
  };
873
- type FieldType = "text" | "number" | "select" | "textarea" | "radio-boolean" | "radio" | "date" | "country" | "switch" | "propertyType" | "grade" | "year" | "exclusivity" | "address" | "phone";
873
+ type FieldType = "text" | "number" | "select" | "select-number" | "textarea" | "radio-boolean" | "radio" | "date" | "country" | "switch" | "propertyType" | "grade" | "year" | "exclusivity" | "address" | "phone";
874
874
  type State = {
875
875
  [key: string]: boolean;
876
876
  };
package/dist/index.js CHANGED
@@ -1245,7 +1245,7 @@ var surfacesFormFields = [
1245
1245
  },
1246
1246
  {
1247
1247
  name: "floorCount",
1248
- fieldType: "select",
1248
+ fieldType: "select-number",
1249
1249
  label: "Nombre de niveau(x) de la maison",
1250
1250
  condition: and(not("isLand"), not("isParking")),
1251
1251
  props: { options: FLOOR_COUNT },
package/dist/index.mjs CHANGED
@@ -1151,7 +1151,7 @@ var surfacesFormFields = [
1151
1151
  },
1152
1152
  {
1153
1153
  name: "floorCount",
1154
- fieldType: "select",
1154
+ fieldType: "select-number",
1155
1155
  label: "Nombre de niveau(x) de la maison",
1156
1156
  condition: and(not("isLand"), not("isParking")),
1157
1157
  props: { options: FLOOR_COUNT },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecotransac-shared-js",
3
- "version": "1.2.31",
3
+ "version": "1.2.32",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "modules": "dist/index.mjs",