"use strict"; /* eslint-disable @typescript-eslint/no-non-null-assertion, unicorn/prefer-module */ Object.defineProperty(exports, "__esModule", { value: true }); (() => { const los = exports.los; const feeCategoriesContainerElement = document.querySelector('#container--feeCategories'); let feeCategories = exports.feeCategories; delete exports.feeCategories; function renderFeeCategories() { if (feeCategories.length === 0) { feeCategoriesContainerElement.innerHTML = `
`; return; } feeCategoriesContainerElement.innerHTML = ''; for (const feeCategory of feeCategories) { const feeCategoryContainerElement = document.createElement('section'); feeCategoryContainerElement.className = 'panel container--feeCategory'; feeCategoryContainerElement.dataset.feeCategoryId = feeCategory.feeCategoryId.toString(); feeCategoryContainerElement.innerHTML = '' +
'' +
cityssm.escapeHTML(fee.feeName || '') +
'
' +
'' +
cityssm
.escapeHTML(fee.feeDescription || '')
.replace(/\n/g, '
') +
'' +
'