/**
 * Made by mkcomponent.sh
*/

import { Component, OnInit, OnChanges, Inject, Input, Output, EventEmitter } from '@angular/core'
import { ConfiguratorService } from '@k-core/modules/configurator/services/svc.configurator'
import { ConfiguratorProductLoaderService } from '@k-core/modules/configurator/services/svc.configurator-product-reloader'


import { DetailsComponent } from '@k-core/modules/configurator/components/details/cmp.details';

@Component({
    moduleId: module.id+ '',
    selector: 'configurator-details',
    templateUrl: './template/t--details.pug',
    styleUrls: ['sty.details.scss']
})

export class DetailsBauhausComponent extends DetailsComponent {

    // ---- Variables ---- \\
  

    // ---- Lifecycle hooks ---- \\




    // ---- Functions ---- \\
    /**
     * Calibrates the values based if they are default or not. If the value is set
     * in the preset, it will be loaded, else the default value of a attribute will
     * be selected.
     * 
     */

}