@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.
Files changed (39) hide show
  1. package/bundles/maplander-components.umd.js +12 -12
  2. package/bundles/maplander-components.umd.js.map +1 -1
  3. package/bundles/maplander-components.umd.min.js +2 -2
  4. package/bundles/maplander-components.umd.min.js.map +1 -1
  5. package/esm2015/lib/components/filters/filters.component.js +1 -1
  6. package/esm2015/lib/components/panorama-visor/panorama-visor.component.js +3 -3
  7. package/esm2015/lib/components/property/components/details/details.component.js +1 -1
  8. package/esm2015/lib/components/property/components/editor/editor.component.js +3 -3
  9. package/esm2015/lib/components/property/components/gallery/gallery.component.js +1 -1
  10. package/esm2015/lib/components/property/components/multimedia-uploader/multimedia-uploader.component.js +1 -1
  11. package/esm2015/lib/components/property/components/property/property.component.js +1 -1
  12. package/esm2015/lib/components/property/components/slideshow/slide-show.component.js +1 -1
  13. package/esm2015/lib/components/property/components/stats/stats.component.js +1 -1
  14. package/esm2015/lib/components/property-card/property-card.component.js +1 -1
  15. package/esm2015/lib/utils/models/index.js +2 -1
  16. package/esm2015/lib/utils/models/property-type-item.js +3 -1
  17. package/esm2015/lib/utils/models/sub-type-item.js +15 -0
  18. package/esm5/lib/components/filters/filters.component.js +1 -1
  19. package/esm5/lib/components/panorama-visor/panorama-visor.component.js +3 -3
  20. package/esm5/lib/components/property/components/details/details.component.js +1 -1
  21. package/esm5/lib/components/property/components/editor/editor.component.js +3 -3
  22. package/esm5/lib/components/property/components/gallery/gallery.component.js +1 -1
  23. package/esm5/lib/components/property/components/multimedia-uploader/multimedia-uploader.component.js +1 -1
  24. package/esm5/lib/components/property/components/property/property.component.js +1 -1
  25. package/esm5/lib/components/property/components/slideshow/slide-show.component.js +1 -1
  26. package/esm5/lib/components/property/components/stats/stats.component.js +1 -1
  27. package/esm5/lib/components/property-card/property-card.component.js +1 -1
  28. package/esm5/lib/utils/models/index.js +2 -1
  29. package/esm5/lib/utils/models/property-type-item.js +3 -1
  30. package/esm5/lib/utils/models/sub-type-item.js +15 -0
  31. package/fesm2015/maplander-components.js +12 -12
  32. package/fesm2015/maplander-components.js.map +1 -1
  33. package/fesm5/maplander-components.js +12 -12
  34. package/fesm5/maplander-components.js.map +1 -1
  35. package/lib/utils/models/index.d.ts +1 -0
  36. package/lib/utils/models/property-type-item.d.ts +2 -0
  37. package/lib/utils/models/sub-type-item.d.ts +5 -0
  38. package/maplander-components.metadata.json +1 -1
  39. package/package.json +1 -1
@@ -6,3 +6,4 @@ export * from './filters-change';
6
6
  export * from './marker';
7
7
  export * from './property-card-info';
8
8
  export * from './property-type-item';
9
+ export * from './sub-type-item';
@@ -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
  }
@@ -0,0 +1,5 @@
1
+ import { PropertySubTypeEnum } from '@maplander/types';
2
+ export interface SubTypeItem {
3
+ name: string;
4
+ type: PropertySubTypeEnum;
5
+ }