kui-crm 0.0.192 → 0.0.193
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/cjs/index.js +33 -0
- package/cjs/index.js.map +1 -1
- package/index.d.ts +14 -2
- package/index.js +31 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/cjs/index.js
CHANGED
|
@@ -311,6 +311,35 @@ var RentPeriodTypeValues = [
|
|
|
311
311
|
{ value: "medium", label: "Medium" },
|
|
312
312
|
{ value: "long", label: "Long" },
|
|
313
313
|
{ value: "any", label: "All" },
|
|
314
|
+
];
|
|
315
|
+
var SlabsTypesValues = [
|
|
316
|
+
{ value: "wood", label: "Wood" },
|
|
317
|
+
{ value: "stone", label: "Stone" },
|
|
318
|
+
{ value: "brick", label: "Brick" },
|
|
319
|
+
{ value: "reinforced_concrete", label: "Reinforced concrete" },
|
|
320
|
+
{ value: "metal", label: "Metal" },
|
|
321
|
+
{ value: "combined", label: "Combined" },
|
|
322
|
+
];
|
|
323
|
+
var WallMaterialsValues = [
|
|
324
|
+
{ value: "brick", label: "Brick" },
|
|
325
|
+
{ value: "block", label: "Block" },
|
|
326
|
+
{ value: "panel", label: "Panel" },
|
|
327
|
+
{ value: "wood", label: "Wood" },
|
|
328
|
+
{ value: "stone", label: "Stone" },
|
|
329
|
+
];
|
|
330
|
+
var HouseTypesValues = [
|
|
331
|
+
{ value: "ST", label: "Stalinka" },
|
|
332
|
+
{ value: "MB", label: "Monolith-brick" },
|
|
333
|
+
{ value: "M", label: "Monolith" },
|
|
334
|
+
{ value: "BR", label: "Brick" },
|
|
335
|
+
{ value: "P", label: "Panel" },
|
|
336
|
+
{ value: "W", label: "Wooden" },
|
|
337
|
+
{ value: "BL", label: "Blocky" },
|
|
338
|
+
{ value: "WP", label: "Wooden floors" },
|
|
339
|
+
{ value: "apart_hotel", label: "Apart hotel" },
|
|
340
|
+
{ value: "apartment", label: "Apartment" },
|
|
341
|
+
{ value: "townhouse", label: "Townhouse" },
|
|
342
|
+
{ value: "private_residence ", label: "Private residence" },
|
|
314
343
|
];
|
|
315
344
|
|
|
316
345
|
var authFlag = "maroomCRMisAuth";
|
|
@@ -4022,6 +4051,7 @@ var getFillingInfoFields = function (withType, type, setType) { return __spreadA
|
|
|
4022
4051
|
type: type,
|
|
4023
4052
|
variant: "custom",
|
|
4024
4053
|
CustomInput: FillingTagsAutocomplete$1,
|
|
4054
|
+
isRequired: true,
|
|
4025
4055
|
}
|
|
4026
4056
|
], false), kuiUtils.addToArrayByCondition(type !== "finish", {
|
|
4027
4057
|
label: "Serial code",
|
|
@@ -4146,6 +4176,7 @@ exports.FullSlider = FullSlider$1;
|
|
|
4146
4176
|
exports.FullSliderModal = FullSliderModal;
|
|
4147
4177
|
exports.GalleryWithThumbnails = GalleryWithThumbnails;
|
|
4148
4178
|
exports.HeadingWithButton = HeadingWithButton;
|
|
4179
|
+
exports.HouseTypesValues = HouseTypesValues;
|
|
4149
4180
|
exports.ImageCard = ImageCard;
|
|
4150
4181
|
exports.ImageCardWithBackdrop = ImageCardWithBackdrop;
|
|
4151
4182
|
exports.ImageStore = ImageStore;
|
|
@@ -4187,6 +4218,7 @@ exports.RoomTypeValues = RoomTypeValues;
|
|
|
4187
4218
|
exports.RoomTypesValues = RoomTypesValues;
|
|
4188
4219
|
exports.ScrollingContainer = ScrollingContainer;
|
|
4189
4220
|
exports.SignInPage = index;
|
|
4221
|
+
exports.SlabsTypesValues = SlabsTypesValues;
|
|
4190
4222
|
exports.SliderThumbnails = SliderThumbnails;
|
|
4191
4223
|
exports.SquarePreviewImage = SquarePreviewImage;
|
|
4192
4224
|
exports.TVTypesValues = TVTypesValues;
|
|
@@ -4206,6 +4238,7 @@ exports.TwoOptionForAutocomplete = TwoOptionForAutocomplete;
|
|
|
4206
4238
|
exports.UnitOfPaymentValues = UnitOfPaymentValues;
|
|
4207
4239
|
exports.UploadAgent = UploadAgent;
|
|
4208
4240
|
exports.UserBadge = UserBadge;
|
|
4241
|
+
exports.WallMaterialsValues = WallMaterialsValues;
|
|
4209
4242
|
exports.WaterValues = WaterValues;
|
|
4210
4243
|
exports.apartmentFields = apartmentFields;
|
|
4211
4244
|
exports.authFlag = authFlag;
|