@maplander/components 0.21.76 → 0.21.78
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/bundles/maplander-components.umd.js +12 -12
- package/bundles/maplander-components.umd.js.map +1 -1
- package/bundles/maplander-components.umd.min.js +2 -2
- package/bundles/maplander-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/filters/filters.component.js +1 -1
- package/esm2015/lib/components/panorama-visor/panorama-visor.component.js +3 -3
- package/esm2015/lib/components/property/components/details/details.component.js +1 -1
- package/esm2015/lib/components/property/components/editor/editor.component.js +3 -3
- package/esm2015/lib/components/property/components/gallery/gallery.component.js +1 -1
- package/esm2015/lib/components/property/components/multimedia-uploader/multimedia-uploader.component.js +1 -1
- package/esm2015/lib/components/property/components/property/property.component.js +1 -1
- package/esm2015/lib/components/property/components/slideshow/slide-show.component.js +1 -1
- package/esm2015/lib/components/property/components/stats/stats.component.js +1 -1
- package/esm2015/lib/components/property-card/property-card.component.js +1 -1
- package/esm2015/lib/utils/models/index.js +2 -1
- package/esm2015/lib/utils/models/property-type-item.js +3 -1
- package/esm2015/lib/utils/models/sub-type-item.js +15 -0
- package/esm5/lib/components/filters/filters.component.js +1 -1
- package/esm5/lib/components/panorama-visor/panorama-visor.component.js +3 -3
- package/esm5/lib/components/property/components/details/details.component.js +1 -1
- package/esm5/lib/components/property/components/editor/editor.component.js +3 -3
- package/esm5/lib/components/property/components/gallery/gallery.component.js +1 -1
- package/esm5/lib/components/property/components/multimedia-uploader/multimedia-uploader.component.js +1 -1
- package/esm5/lib/components/property/components/property/property.component.js +1 -1
- package/esm5/lib/components/property/components/slideshow/slide-show.component.js +1 -1
- package/esm5/lib/components/property/components/stats/stats.component.js +1 -1
- package/esm5/lib/components/property-card/property-card.component.js +1 -1
- package/esm5/lib/utils/models/index.js +2 -1
- package/esm5/lib/utils/models/property-type-item.js +3 -1
- package/esm5/lib/utils/models/sub-type-item.js +15 -0
- package/fesm2015/maplander-components.js +12 -12
- package/fesm2015/maplander-components.js.map +1 -1
- package/fesm5/maplander-components.js +12 -12
- package/fesm5/maplander-components.js.map +1 -1
- package/lib/utils/models/index.d.ts +1 -0
- package/lib/utils/models/property-type-item.d.ts +2 -0
- package/lib/utils/models/sub-type-item.d.ts +5 -0
- package/maplander-components.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { PropertyTypeEnum } from '@maplander/types';
|
|
2
2
|
import { AmenityItem } from '../models/amenity-item';
|
|
3
|
+
import { SubTypeItem } from './sub-type-item';
|
|
3
4
|
export interface PropertyTypeItem {
|
|
4
5
|
value: PropertyTypeEnum;
|
|
5
6
|
iconName: string;
|
|
6
7
|
name: string;
|
|
7
8
|
shortName: string;
|
|
9
|
+
subTypes?: SubTypeItem[];
|
|
8
10
|
features?: AmenityItem[];
|
|
9
11
|
amenities?: AmenityItem[];
|
|
10
12
|
}
|