ctt-babylon 0.10.29 → 0.10.30
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/esm2022/lib/components/core/babylon-rooms-slider/babylon-rooms-slider.interface.mjs +1 -1
- package/esm2022/lib/directives/link-type/link-type.directive.mjs +4 -1
- package/esm2022/lib/services/mapper/mapper.service.mjs +2 -1
- package/fesm2022/ctt-babylon.mjs +4 -0
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-rooms-slider/babylon-rooms-slider.interface.d.ts +2 -0
- package/package.json +1 -1
package/fesm2022/ctt-babylon.mjs
CHANGED
|
@@ -78,6 +78,9 @@ class BabylonLinkTypeDirective {
|
|
|
78
78
|
case 'internal_link':
|
|
79
79
|
this.handleInternalLink(this.href);
|
|
80
80
|
break;
|
|
81
|
+
case 'internal_hotel_link':
|
|
82
|
+
this.handleInternalLink(this.href);
|
|
83
|
+
break;
|
|
81
84
|
case 'external':
|
|
82
85
|
this.handleExternalLink(this.href);
|
|
83
86
|
break;
|
|
@@ -2486,6 +2489,7 @@ class MapperService {
|
|
|
2486
2489
|
case 'servicesslider':
|
|
2487
2490
|
componentMapped.props = this.mapServicesSlider(component.props);
|
|
2488
2491
|
break;
|
|
2492
|
+
case 'locationaddress':
|
|
2489
2493
|
case 'contactaddress':
|
|
2490
2494
|
componentMapped.props = this.mapContactAddress(component.props);
|
|
2491
2495
|
break;
|