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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
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 },
|