Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/catalog/install/js/catalog/config/settings/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/catalog/install/js/catalog/config/settings/src/settings.js

import CatalogPage from './catalog-page';
import Slider from './slider';

class CatalogSettings
{
	#page: CatalogPage;

	constructor(settings)
	{
		this.#page = CatalogPage.init(settings);

		this.#page.subscribe('change', this.#onEventChangeData.bind(this));
	}

	render(): HTMLElement
	{
		return this.#page.getPage();
	}

	#onEventChangeData()
	{
		this.#page.onChange();
	}
}

export {
	CatalogSettings,
	Slider,
};