@optionfactory/fml 8.0.0 → 8.0.1
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/dist/client-errors.iife.js +11 -8
- package/dist/client-errors.iife.js.map +1 -1
- package/dist/client-errors.iife.min.js +1 -1
- package/dist/client-errors.iife.min.js.map +1 -1
- package/dist/fml.css +10 -1
- package/dist/fml.css.map +1 -1
- package/dist/fml.d.mts +73 -13
- package/dist/fml.iife.js +598 -208
- package/dist/fml.iife.js.map +1 -1
- package/dist/fml.iife.min.js +1 -1
- package/dist/fml.iife.min.js.map +1 -1
- package/dist/fml.min.mjs +1 -1
- package/dist/fml.min.mjs.map +1 -1
- package/dist/fml.mjs +598 -208
- package/dist/fml.mjs.map +1 -1
- package/dist/ftl.d.mts +2 -1
- package/dist/ftl.iife.js +60 -33
- package/dist/ftl.iife.js.map +1 -1
- package/dist/ftl.iife.min.js +1 -1
- package/dist/ftl.iife.min.js.map +1 -1
- package/dist/ftl.min.mjs +1 -1
- package/dist/ftl.min.mjs.map +1 -1
- package/dist/ftl.mjs +60 -33
- package/dist/ftl.mjs.map +1 -1
- package/dist/ful.css +10 -1
- package/dist/ful.css.map +1 -1
- package/dist/ful.d.mts +22 -6
- package/dist/ful.iife.js +496 -166
- package/dist/ful.iife.js.map +1 -1
- package/dist/ful.iife.min.js +1 -1
- package/dist/ful.iife.min.js.map +1 -1
- package/dist/ful.min.mjs +1 -1
- package/dist/ful.min.mjs.map +1 -1
- package/dist/ful.mjs +496 -166
- package/dist/ful.mjs.map +1 -1
- package/dist/httpc.d.mts +49 -6
- package/dist/httpc.iife.js +40 -9
- package/dist/httpc.iife.js.map +1 -1
- package/dist/httpc.iife.min.js +1 -1
- package/dist/httpc.iife.min.js.map +1 -1
- package/dist/httpc.min.mjs +1 -1
- package/dist/httpc.min.mjs.map +1 -1
- package/dist/httpc.mjs +40 -9
- package/dist/httpc.mjs.map +1 -1
- package/package.json +6 -7
package/dist/ful.iife.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ful.iife.js","sources":["../src/ful/storage.mjs","../src/ful/events/async.mjs","../src/ful/timing.mjs","../src/ful/elements/bindings.mjs","../src/ful/elements/form.mjs","../src/ful/elements/input.mjs","../src/ful/elements/temporals.mjs","../src/ful/elements/files.mjs","../src/ful/elements/select.mjs","../src/ful/elements/radio.mjs","../src/ful/elements/checkbox.mjs","../src/ful/elements/spinner.mjs","../src/ful/elements/table.mjs","../src/ful/elements/filters.mjs","../src/ful/elements/l10n.mjs","../src/ful/elements/plugin.mjs"],"sourcesContent":["class LocalStorage extends Storage {\n static save(k, v) {\n localStorage.setItem(k, JSON.stringify(v));\n }\n static load(k) {\n const got = localStorage.getItem(k);\n return got === null ? undefined : JSON.parse(got);\n }\n static remove(k) {\n localStorage.removeItem(k);\n }\n static pop(k) {\n const decoded = LocalStorage.load(k);\n LocalStorage.remove(k);\n return decoded;\n }\n}\n\nclass SessionStorage extends Storage {\n static save(k, v) {\n sessionStorage.setItem(k, JSON.stringify(v));\n }\n static load(k) {\n const got = sessionStorage.getItem(k);\n return got === null ? undefined : JSON.parse(got);\n }\n static remove(k) {\n sessionStorage.removeItem(k);\n }\n static pop(k) {\n const decoded = SessionStorage.load(k);\n SessionStorage.remove(k);\n return decoded;\n }\n}\n\nclass VersionedLocalStorage {\n static save(key, revision, data) {\n LocalStorage.save(key, { revision, data });\n }\n static load(key, revision) {\n const stored = LocalStorage.load(key);\n if (stored === undefined) {\n return undefined;\n }\n if (stored.revision !== revision) {\n localStorage.removeItem(key);\n return undefined;\n }\n return stored.data;\n }\n}\n\nclass VersionedSessionStorage {\n static save(key, revision, data) {\n SessionStorage.save(key, { revision, data });\n }\n static load(key, revision) {\n const stored = SessionStorage.load(key);\n if (stored === undefined) {\n return undefined;\n }\n if (stored.revision !== revision) {\n localStorage.removeItem(key);\n return undefined;\n }\n return stored.data;\n }\n}\n\nexport { LocalStorage, VersionedLocalStorage, SessionStorage, VersionedSessionStorage };\n","/**\n * @typedef {Object} AsyncExtension\n * @property {Promise<any>[]} promises\n * @typedef {Event & { async?: AsyncExtension }} AsyncEvent\n */\nclass AsyncEvents {\n /**\n * Dispatches an event and handles asynchronous resolution based on the execution mode.\n * @param {HTMLElement} el - The target element dispatching the event.\n * @param {AsyncEvent} evt - The event instance.\n * @param {{mode?: 'broadcast' | 'pipeline' | 'delegate'}} [options] - Configuration options (defaults to 'broadcast').\n * @returns {Promise<any>} Resolves with an array of values for broadcasts, a single value for pipelines/delegates, or undefined.\n */\n static async fireAsync(el, evt, options) {\n el.dispatchEvent(evt);\n const promises = evt.async?.promises ?? [];\n const mode = options?.mode ?? 'broadcast';\n if (mode === 'pipeline' && promises.length > 1) {\n throw new Error(\n `[AsyncEvents] Event \"${evt.type}\" is configured in 'pipeline' mode and expects at most one async listener, but ${promises.length} listeners were triggered on this element.`,\n );\n }\n if (mode === 'delegate' && promises.length !== 1) {\n throw new Error(\n `[AsyncEvents] Event \"${evt.type}\" is configured in 'delegate' mode and requires exactly one async listener, but ${promises.length} were registered.`,\n );\n }\n return mode === 'broadcast' ? Promise.all(promises) : Promise.resolve(promises[0]);\n }\n\n /**\n * Registers an asynchronous event listener wrapper.\n * @param {HTMLElement} el - The target element.\n * @param {string} type - The event name/type.\n * @param {Function} fn - The async listener middleware function returning the execution result.\n * @param {AddEventListenerOptions} [options] - Native addEventListener options.\n * @returns {EventListener} The underlying proxy listener function needed for cleanup via asyncOff.\n */\n static asyncOn(el, type, fn, options) {\n /** @type {(evt: Event) => Promise<void>} */\n const listener = async (event) => {\n const ae = /** @type {AsyncEvent} */ (event);\n if (!ae.async) {\n ae.async = { promises: [] };\n }\n const { promise, resolve, reject } = Promise.withResolvers();\n ae.async.promises.push(promise);\n try {\n resolve(await fn(ae));\n } catch (e) {\n reject(e);\n }\n };\n\n el.addEventListener(type, listener, options);\n return listener;\n }\n\n /**\n * Unregisters an asynchronous event listener proxy.\n * @param {HTMLElement} el - The target element.\n * @param {string} type - The event name/type.\n * @param {EventListener} listener - The proxy listener instance previously returned by asyncOn.\n * @param {EventListenerOptions} [options] - Native removeEventListener options.\n */\n static asyncOff(el, type, listener, options) {\n el.removeEventListener(type, listener, options);\n }\n\n /**\n * Mixes the asynchronous execution engine extensions into target class prototypes.\n * @param {...Function} classes - The target class constructors to decorate.\n */\n static mixInto(...classes) {\n for (const k of classes) {\n Object.assign(k.prototype, {\n /**\n * @this {HTMLElement}\n * @param {AsyncEvent} evt\n * @param {{mode?: 'broadcast' | 'pipeline' | 'delegate'}} [options]\n * @returns {Promise<any>}\n */\n async fireAsync(evt, options) {\n return await AsyncEvents.fireAsync(this, evt, options);\n },\n\n /**\n * @this {HTMLElement}\n * @param {string} type\n * @param {Function} fn\n * @param {AddEventListenerOptions} [options]\n * @returns {EventListener}\n */\n asyncOn(type, fn, options) {\n return AsyncEvents.asyncOn(this, type, fn, options);\n },\n\n /**\n * @this {HTMLElement}\n * @param {string} type\n * @param {EventListener} listener\n * @param {EventListenerOptions} [options]\n * @returns {void}\n */\n asyncOff(type, listener, options) {\n AsyncEvents.asyncOff(this, type, listener, options);\n },\n });\n }\n }\n}\n\nexport { AsyncEvents };\n","class Timing {\n static sleep(ms) {\n return new Promise((resolve) => setTimeout(resolve, ms));\n }\n static DEBOUNCE_DEFAULT = 0;\n static DEBOUNCE_IMMEDIATE = 1;\n /**\n * Executes only after a period of inactivity (pause in events).\n * Respond to the \"end\" of a series of events.\n * @param {*} timeoutMs\n * @param {*} func\n * @param {*} [options]\n * @returns {[function, function]}\n */\n static debounce(timeoutMs, func, options) {\n const opts = options ?? Timing.DEBOUNCE_DEFAULT;\n let tid = null;\n let args = [];\n let previousTimestamp = 0;\n\n const later = () => {\n const elapsed = performance.now() - previousTimestamp;\n if (timeoutMs > elapsed) {\n tid = setTimeout(later, timeoutMs - elapsed);\n return;\n }\n tid = null;\n if (opts !== Timing.DEBOUNCE_IMMEDIATE) {\n func(...args);\n }\n // This check is needed because `func` can recursively invoke `debounced`.\n if (tid === null) {\n args = [];\n }\n };\n\n const debounced = function () {\n args = [...arguments];\n previousTimestamp = performance.now();\n if (tid === null) {\n tid = setTimeout(later, timeoutMs);\n if (opts === Timing.DEBOUNCE_IMMEDIATE) {\n func(...args);\n }\n }\n };\n const abort = () => clearTimeout(tid);\n return [debounced, abort];\n }\n static THROTTLE_DEFAULT = 0;\n static THROTTLE_NO_LEADING = 1;\n static THROTTLE_NO_TRAILING = 2;\n /**\n * Executes at most once per specified time interval, regardless of ongoing events.\n * @param {*} timeoutMs\n * @param {*} func\n * @param {*} [options]\n * @returns {[function, function]}\n */\n static throttle(timeoutMs, func, options) {\n const opts = options ?? Timing.THROTTLE_DEFAULT;\n let tid = null;\n let args = [];\n let previousTimestamp = 0;\n\n const later = () => {\n previousTimestamp = opts & Timing.THROTTLE_NO_LEADING ? 0 : performance.now();\n tid = null;\n func(...args);\n if (tid === null) {\n args = [];\n }\n };\n const throttled = function () {\n const now = performance.now();\n if (!previousTimestamp && opts & Timing.THROTTLE_NO_LEADING) {\n previousTimestamp = now;\n }\n const remaining = previousTimestamp === 0 ? 0 : timeoutMs - (now - previousTimestamp);\n args = [...arguments];\n if (remaining <= 0 || remaining > timeoutMs) {\n if (tid !== null) {\n clearTimeout(tid);\n tid = null;\n }\n previousTimestamp = now;\n func(...args);\n if (tid === null) {\n args = [];\n }\n } else if (tid === null && !(opts & Timing.THROTTLE_NO_TRAILING)) {\n tid = setTimeout(later, remaining);\n }\n };\n const abort = () => clearTimeout(tid);\n return [throttled, abort];\n }\n}\n\nexport { Timing };\n","class Bindings {\n /**\n * @param {{ [x: string]: any; }} obj\n * @param {string} prefix\n * @param {Set<String>} stops\n * @return {{ [x: string]: any; }}\n */\n static flatten(obj, prefix, stops) {\n return Object.keys(obj).reduce((acc, k) => {\n const pre = prefix.length ? prefix + '.' + k : k;\n if (!stops.has(pre) && typeof obj[k] === 'object' && obj[k] !== null) {\n Object.assign(acc, Bindings.flatten(obj[k], pre, stops));\n } else {\n acc[pre] = obj[k];\n }\n return acc;\n }, {});\n }\n\n /**\n * @param {any} result\n * @param {string} path\n * @param {any} value\n */\n static providePath(result, path, value) {\n const keys = path.split('.').map((k) => (/^[0-9]+$/.test(k) ? +k : k));\n let current = result ?? {};\n let previous = null;\n for (let i = 0; ; ++i) {\n const ckey = keys[i];\n const pkey = keys[i - 1];\n if (Number.isInteger(ckey) && !Array.isArray(current)) {\n if (previous !== null) {\n previous[pkey] = current = [];\n } else {\n result = current = [];\n }\n }\n if (i === keys.length - 1) {\n //when value is undefined we only want to define the property if it's not defined\n current[ckey] = value !== undefined ? value : ckey in current ? current[ckey] : null;\n return result;\n }\n if (current[ckey] === undefined) {\n current[ckey] = {};\n }\n previous = current;\n current = current[ckey];\n }\n }\n /**\n *\n * @param {Element & {dataset?: any} & {checked?: boolean} & {value?: any}} el\n * @returns\n */\n static extract(el) {\n if (el.getAttribute('type') === 'radio') {\n if (!el.checked) {\n return undefined;\n }\n return el.dataset['fulBindType'] === 'boolean' ? el.value === 'true' : el.value;\n }\n if (el.getAttribute('type') === 'checkbox') {\n return el.checked;\n }\n if (el.dataset['fulBindType'] === 'boolean') {\n return !el.value ? null : el.value === 'true';\n }\n if (el.tagName === 'INPUT' || el.tagName === 'SELECT' || el.tagName === 'TEXTAREA') {\n return el.value === '' || el.value === undefined ? null : el.value;\n }\n return el.value;\n }\n\n /**\n *\n * @param {HTMLFormElement} form\n * @param {HTMLElement} [submitter]\n * @returns\n */\n static extractFrom(form, submitter) {\n let result = {};\n for (const el of form.elements) {\n // we are assuming submitters are disabled during submit.\n if (!el.hasAttribute('name') || (el.matches(':disabled') && el !== submitter)) {\n continue;\n }\n result = Bindings.providePath(\n result,\n /** @type {string} */ (el.getAttribute('name')),\n Bindings.extract(el),\n );\n }\n return result;\n }\n\n /**\n *\n * @param {Element & {checked?: boolean} & {value?: any}} el\n * @returns\n */\n static mutate(el, raw) {\n if (el.getAttribute('type') === 'radio') {\n el.checked = el.getAttribute('value') === raw;\n return;\n }\n if (el.getAttribute('type') === 'checkbox') {\n el.checked = raw;\n return;\n }\n el.value = raw;\n }\n\n static mutateIn(form, values) {\n const names = Array.from(form.elements)\n .map((el) => el.getAttribute('name'))\n .filter((n) => n);\n for (const [flattenedKey, value] of Object.entries(Bindings.flatten(values, '', new Set(names)))) {\n for (const el of form.querySelectorAll(`[name='${CSS.escape(flattenedKey)}']`)) {\n Bindings.mutate(el, value);\n }\n }\n }\n\n static errors(form, es, scrollOnError) {\n const fieldErrors = es.filter((e) => e.type === 'FIELD_ERROR' || e.type === 'INVALID_FORMAT');\n const globalErrors = es.filter((e) => e.type !== 'FIELD_ERROR' && e.type !== 'INVALID_FORMAT');\n form.querySelectorAll(`[name]`).forEach((el) => el.setCustomValidity?.(''));\n form.querySelectorAll('ful-errors').forEach((el) => {\n el.replaceChildren();\n el.setAttribute('hidden', '');\n });\n fieldErrors.forEach((e) => {\n const name = e.context.replace(/\\[/g, '.').replace(/\\]\\./g, '.').replace(/\\]/g, '')\n const parts = name.split('.');\n for (let i = parts.length; i != 0; --i) {\n const prefix = parts.slice(0, i).join('.');\n const suffix = parts.slice(i, parts.length).join('.');\n form.querySelectorAll(`[name='${CSS.escape(prefix)}']`).forEach((input) =>\n input.setCustomValidity?.(e.reason, suffix),\n );\n }\n });\n form.querySelectorAll('ful-errors').forEach((el) => {\n const hel = /** @type HTMLElement} */ (el);\n hel.innerText = globalErrors.map((e) => e.reason).join('\\n');\n if (globalErrors.length !== 0) {\n el.removeAttribute('hidden');\n }\n });\n if (es.length == 0 || !scrollOnError) {\n return;\n }\n Array.from(form.querySelectorAll(`:invalid`))\n .sort((a, b) => a.getBoundingClientRect().y - b.getBoundingClientRect().y)[0]\n ?.focus();\n }\n}\n\nexport { Bindings };\n","import { Attributes, ParsedElement, registry } from '../../ftl/index.mjs';\nimport { Failure } from '../../httpc/index.mjs';\nimport { Bindings } from './bindings.mjs';\nimport { AsyncEvents } from '../events/async.mjs';\n\nclass RemoteJsonFormLoader {\n #http;\n #url;\n #method;\n #requestMapper;\n #responseMapper;\n constructor(http, url, method, requestMapper, responseMapper) {\n this.#http = http;\n this.#url = url;\n this.#method = method;\n this.#requestMapper = requestMapper;\n this.#responseMapper = responseMapper;\n }\n prepare(values, form) {\n return this.#requestMapper(values, form);\n }\n async submit(values, form) {\n return await this.#http.request(this.#method, this.#url).json(values).fetch();\n }\n transform(response, form) {\n return this.#responseMapper(response, form);\n }\n}\n\nclass LocalFormLoader {\n #requestMapper;\n #responseMapper;\n constructor(requestMapper, responseMapper) {\n this.#requestMapper = requestMapper;\n this.#responseMapper = responseMapper;\n }\n async prepare(values, form) {\n return await this.#requestMapper(values, form);\n }\n async submit(values, form, response) {\n return response;\n }\n async transform(response, form) {\n return await this.#responseMapper(response, form);\n }\n}\n\nclass FormLoader {\n static create(el, conf) {\n const http = registry.component('http-client');\n const requestMapper = el.hasAttribute('request-mapper')\n ? registry.component(el.getAttribute('request-mapper'))\n : (v) => v;\n const responseMapper = el.hasAttribute('response-mapper')\n ? registry.component(el.getAttribute('response-mapper'))\n : (v) => v;\n const url = el.getAttribute('action');\n if (!url) {\n return new LocalFormLoader(requestMapper, responseMapper);\n }\n const method = el.getAttribute('method') ?? 'POST';\n return new RemoteJsonFormLoader(http, url, method, requestMapper, responseMapper);\n }\n}\n\nclass Form extends ParsedElement {\n form;\n render() {\n const form = (this.form = document.createElement('form'));\n form.setAttribute('novalidate', '');\n Attributes.forward('form-', this, form);\n form.replaceChildren(...this.childNodes);\n form.addEventListener('submit', async (e) => {\n e.preventDefault();\n e.stopPropagation();\n await this.submit(e.submitter ?? undefined);\n });\n if (this.hasAttribute('clear-invalid-on-change')) {\n this.addEventListener('change', (/** @type any */ evt) => {\n evt.target.setCustomValidity?.('');\n });\n }\n this.replaceChildren(form);\n }\n /**\n *\n * @param {HTMLElement} [submitter]\n * @returns\n */\n async submit(submitter) {\n this.spinner(true);\n try {\n const loader = registry.component(this.getAttribute('loader') ?? 'loaders:form').create(this);\n const values = Bindings.extractFrom(this.form, submitter);\n let request = await loader.prepare(values, this);\n try {\n const se = new CustomEvent('submit', {\n bubbles: true,\n cancelable: true,\n detail: { submitter, values, request },\n });\n if (!this.dispatchEvent(se)) {\n return;\n }\n this.errors = [];\n const sre = new CustomEvent('submit:requested', {\n bubbles: true,\n cancelable: false,\n detail: { submitter, values: se.detail.values, request: se.detail.request },\n });\n let response = await AsyncEvents.fireAsync(this, sre, { mode: 'pipeline' });\n request = sre.detail.request;\n\n response = await loader.submit(request, this, response);\n const mapped = await loader.transform(response, this);\n this.dispatchEvent(\n new CustomEvent('submit:success', {\n bubbles: true,\n cancelable: false,\n detail: { submitter, values, request, response: mapped },\n }),\n );\n } catch (e) {\n this.dispatchEvent(\n new CustomEvent('submit:failure', {\n bubbles: true,\n cancelable: false,\n detail: { submitter, values, request, exception: e },\n }),\n );\n if (e instanceof Failure) {\n this.errors = e.problems;\n }\n console.warn('failed to submit form', this, 'reason:', e);\n }\n } finally {\n this.spinner(false);\n }\n }\n reset() {\n this.form.reset();\n }\n spinner(spin) {\n this.querySelectorAll('ful-spinner').forEach((el) => {\n const hel = /** @type HTMLElement */ (el);\n hel.hidden = !spin;\n });\n this.querySelectorAll('input,button').forEach((el) => {\n const hel = /** @type HTMLButtonElement|HTMLInputElement */ (el);\n if (hel.type !== 'submit' && hel.type !== 'reset') {\n return;\n }\n if (spin) {\n hel.dataset.wd = String(hel.disabled);\n hel.disabled = true;\n } else {\n hel.disabled = hel.dataset.wd === 'true';\n delete hel.dataset.wd;\n }\n });\n }\n set values(vs) {\n Bindings.mutateIn(this.form, vs);\n }\n get values() {\n return Bindings.extractFrom(this.form);\n }\n set errors(es) {\n Bindings.errors(this.form, es, this.hasAttribute('scroll-on-error'));\n }\n}\n\nexport { FormLoader, Form };\n","import { Attributes, ParsedElement } from '../../ftl/index.mjs';\n\nclass Input extends ParsedElement {\n static observed = ['value', 'readonly:presence', 'required:presence'];\n static slots = true;\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <input data-tpl-if=\"type != 'textarea'\" class=\"form-control\" data-tpl-type=\"type\" placeholder=\" \" form=\"\">\n <textarea data-tpl-if=\"type == 'textarea'\" class=\"form-control\" placeholder=\" \" form=\"\"></textarea>\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <ful-field-error></ful-field-error>\n `;\n static formAssociated = true;\n _input;\n _fieldError;\n constructor() {\n super();\n this.internals = this.attachInternals();\n this.internals.role = 'presentation';\n }\n _type() {\n return this.getAttribute('type') ?? 'text';\n }\n _fragment(type, slots) {\n return this.template().withOverlay({ type, slots }).render();\n }\n render({ slots, observed, disabled, skipObservedSetup }) {\n const type = this._type();\n const fragment = this._fragment(type, slots);\n this._input = fragment.querySelector('input,textarea');\n\n Attributes.forward('input-', this, this._input);\n if (!skipObservedSetup) {\n this.disabled = disabled;\n this.readonly = observed.readonly;\n this.required = observed.required;\n this.value = observed.value;\n }\n this._input.addEventListener('keydown', (evt) => {\n if (evt.key !== 'Enter' || this._type() === 'textarea') {\n return;\n }\n const form = this.internals.form;\n if (!form) {\n return;\n }\n const candidates = /** @type [HTMLButtonElement|HTMLInputElement] */ (\n Array.from(form.querySelectorAll('button:not(:disabled), input:not(:disabled)'))\n );\n const submitter = candidates.find((el) => el.type === 'submit');\n form.requestSubmit(submitter);\n });\n this._input.addEventListener('input', (evt) => {\n const re = this.getAttribute('mask');\n if (!re) {\n return;\n }\n const before = evt.target.value;\n const after = before.replace(new RegExp(re, 'g'), '');\n if (before === after) {\n return;\n }\n const start = evt.target.selectionStart;\n const offset = before.length - after.length;\n evt.target.value = after;\n evt.target.setSelectionRange(start - offset, start - offset);\n });\n this._input.addEventListener('change', (evt) => {\n evt.stopPropagation();\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n });\n const label = fragment.querySelector('label');\n label.addEventListener('click', () => this.focus());\n this._fieldError = fragment.querySelector('ful-field-error');\n this._input.ariaDescribedByElements = [this._fieldError];\n this._input.ariaLabelledByElements = [label];\n this.replaceChildren(fragment);\n }\n get value() {\n const uppercase = this.hasAttribute('uppercase');\n const trim = this.hasAttribute('trim');\n const v = this._input.value;\n const uppercased = uppercase ? v.toUpperCase() : v;\n const trimmed = trim ? uppercased.trim() : uppercased;\n return trimmed === '' ? null : trimmed;\n }\n set value(value) {\n this._input.value = value === '' ? null : value;\n }\n get readonly() {\n return this._input.readOnly;\n }\n set readonly(v) {\n this._input.readOnly = v;\n this.reflect(() => {\n Attributes.toggle(this, 'readonly', v);\n });\n }\n get disabled() {\n return this._input.hasAttribute('disabled');\n }\n set disabled(d) {\n Attributes.toggle(this._input, 'disabled', d);\n }\n get required() {\n return this._input.getAttribute('aria-required') === 'true';\n }\n set required(d) {\n Attributes.set(this._input, 'aria-required', d ? 'true' : null);\n this.reflect(() => {\n Attributes.toggle(this, 'required', d);\n });\n }\n focus(options) {\n this._input.focus(options);\n }\n setCustomValidity(error) {\n if (!error) {\n this.internals.setValidity({});\n this._fieldError.innerText = '';\n return;\n }\n this.internals.setValidity({ customError: true }, ' ');\n this._fieldError.innerText = error;\n }\n formResetCallback() {\n this.value = this.unmarshal('value', this.getAttribute('value'));\n }\n}\n\nexport { Input };\n","import { ParsedElement } from '../../ftl/index.mjs';\nimport { Input } from './input.mjs';\n\nclass LocalDate extends ParsedElement {\n render() {\n const content = this.innerHTML.trim();\n if (content === '') {\n this.innerHTML = this.getAttribute('default') ?? '';\n return;\n }\n const locale = this.getAttribute('locale') ?? Intl.DateTimeFormat().resolvedOptions().locale;\n const formatter = new Intl.DateTimeFormat(locale, { year: 'numeric', month: 'numeric', day: 'numeric' });\n const [y, m, d] = content.split('-').map(Number);\n this.innerHTML = formatter.format(new Date(y, m - 1, d));\n }\n}\n\nclass Instant extends ParsedElement {\n render() {\n const content = this.innerHTML.trim();\n if (content === '') {\n this.innerHTML = this.getAttribute('default') ?? '';\n return;\n }\n const locale = this.getAttribute('locale') ?? Intl.DateTimeFormat().resolvedOptions().locale;\n const format = new Intl.DateTimeFormat(locale, {\n year: 'numeric',\n month: 'numeric',\n day: 'numeric',\n hour: 'numeric',\n minute: 'numeric',\n second: 'numeric',\n hour12: false,\n });\n this.innerHTML = format.format(new Date(Instant.isoToLocal(content)));\n }\n static isoToLocal(iso) {\n //this is so sad\n const d = new Date(iso);\n const pad = (n, v) => String(v).padStart(n, '0');\n const date = `${d.getFullYear()}-${pad(2, d.getMonth() + 1)}-${pad(2, d.getDate())}`;\n const time = `${pad(2, d.getHours())}:${pad(2, d.getMinutes())}:${pad(2, d.getSeconds())}.${pad(3, d.getMilliseconds())}`;\n return `${date}T${time}`;\n }\n}\n\nclass InputLocalDate extends Input {\n static observed = ['value', 'readonly:presence', 'required:presence', 'min', 'max', 'step'];\n _type() {\n return 'date';\n }\n render(conf) {\n const { observed } = conf;\n super.render(conf);\n this.min = observed.min;\n this.max = observed.max;\n this.step = observed.step;\n }\n get min() {\n const v = this._input.min;\n return v === '' ? null : v;\n }\n set min(v) {\n this._input.min = InputLocalDate.#fromIsoOrOffset(v);\n }\n get max() {\n const v = this._input.max;\n return v === '' ? null : v;\n }\n set max(v) {\n this._input.max = InputLocalDate.#fromIsoOrOffset(v);\n }\n get step() {\n const v = this._input.step;\n return v === '' ? null : v;\n }\n set step(v) {\n this._input.step = v ?? '';\n }\n static #fromIsoOrOffset(v) {\n if (!v) {\n return '';\n }\n //this could be date.toLocaleDateString('en-CA')\n const formatLocalDate = (date) =>\n new Date(date.getTime() - date.getTimezoneOffset() * 60000).toISOString().split('T')[0];\n if (v === 'now') {\n return formatLocalDate(new Date());\n }\n const re = /^([+-])(\\d+)([dmy])$/;\n const match = re.exec(v);\n if (!match) {\n return v;\n }\n const sign = match[1] === '-' ? -1 : 1;\n const offset = +match[2];\n const r = new Date();\n r.setHours(0, 0, 0, 0);\n switch (match[3]) {\n case 'd':\n r.setDate(r.getDate() + offset * sign);\n break;\n case 'm':\n const originalDay = r.getDate();\n r.setMonth(r.getMonth() + offset * sign);\n if (r.getDate() !== originalDay) {\n r.setDate(0);\n }\n break;\n case 'y':\n r.setFullYear(r.getFullYear() + offset * sign);\n break;\n }\n return formatLocalDate(r);\n }\n}\n\nclass InputLocalTime extends InputLocalDate {\n _type() {\n return 'time';\n }\n}\n\nclass InputInstant extends Input {\n static observed = ['value', 'readonly:presence', 'required:presence', 'min', 'max', 'step'];\n _type() {\n return 'datetime-local';\n }\n render(conf) {\n const { observed } = conf;\n super.render(conf);\n this.min = observed.min;\n this.max = observed.max;\n this.step = observed.step;\n }\n get value() {\n const v = this._input.value;\n return v === '' ? null : new Date(v).toISOString();\n }\n set value(v) {\n this._input.value = v ? Instant.isoToLocal(v) : '';\n }\n get min() {\n const v = this._input.min;\n return v === '' ? null : new Date(v).toISOString();\n }\n set min(v) {\n this._input.min = v ? Instant.isoToLocal(v) : '';\n }\n get max() {\n const v = this._input.max;\n return v === '' ? null : new Date(v).toISOString();\n }\n set max(v) {\n this._input.max = v ? Instant.isoToLocal(v) : '';\n }\n get step() {\n const v = this._input.step;\n return v === '' ? null : v;\n }\n set step(v) {\n this._input.step = v ?? '';\n }\n}\n\nexport { Instant, LocalDate, InputLocalDate, InputLocalTime, InputInstant };\n","import { Attributes } from '../../ftl/index.mjs';\nimport { Input } from './input.mjs';\n\nclass InputFile extends Input {\n static l10n = {\n en: {\n dropzonelabel: 'Click or drop your files here',\n unaccepptablefiletype: 'Only files of type {0} are supported',\n maxfilesizeexceeded: 'Maximum supported file size is {0}',\n maxtotalsizeexceeded: 'Maximum supported total file size is {0}',\n maxfilesexceeded: 'Maximum files count exceeded',\n },\n it: {\n dropzonelabel: 'Clicca o trascina i file qui',\n unaccepptablefiletype: 'Solo i file di tipo {0} sono supportati',\n maxfilesizeexceeded: 'La dimensione massima di un file è di {0}',\n maxtotalsizeexceeded: 'La dimensione massima complessiva dei file è di {0}',\n maxfilesexceeded: 'Numero massimo di file superato',\n },\n es: {\n dropzonelabel: 'Haz clic o arrastra tus archivos aquí',\n unaccepptablefiletype: 'Solo se admiten archivos de tipo {0}',\n maxfilesizeexceeded: 'El tamaño máximo de archivo admitido es {0}',\n maxtotalsizeexceeded: 'El tamaño total máximo admitido es {0}',\n maxfilesexceeded: 'Se ha superado el número máximo de archivos',\n },\n fr: {\n dropzonelabel: 'Cliquez ou déposez vos fichiers ici',\n unaccepptablefiletype: 'Seuls les fichiers de type {0} sont pris en charge',\n maxfilesizeexceeded: 'La taille maximale de fichier prise en charge est {0}',\n maxtotalsizeexceeded: 'La taille totale maximale prise en charge est {0}',\n maxfilesexceeded: 'Nombre maximal de fichiers dépassé',\n },\n };\n static observed = [\n 'value',\n 'readonly:presence',\n 'required:presence',\n 'accept:csv',\n 'multiple:presence',\n 'itemlist:presence',\n 'dropzone:presence',\n 'maxfiles:number',\n 'maxfilesize:number',\n 'maxtotalsize:number',\n ];\n #accept;\n #items;\n #dropzone;\n #warnings;\n _type() {\n return 'file';\n }\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <input class=\"form-control\" data-tpl-type=\"type\" placeholder=\" \" form=\"\">\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <div data-ref=\"dropzone\" class=\"dropzone\" data-tpl-if=\"slots.dropzone\">\n {{{{ slots.dropzone }}}}\n </div>\n <div data-ref=\"dropzone\" class=\"default-dropzone\" data-tpl-if=\"!slots.dropzone\">\n {{ #l10n:t('dropzonelabel') }}\n </div>\n <ful-item-list></ful-item-list>\n <ful-field-warnings></ful-field-warnings>\n <ful-field-error></ful-field-error>\n `;\n static templates = {\n items: `\n <ful-item data-tpl-each=\"files\" data-tpl-var=\"file\" data-tpl-data-name=\"file.name\">\n <div>{{ file.name }}</div>\n <div>{{ #bytes:format(file.size) }}</div>\n <button type=\"button\" class=\"btn btn-sm btn-outline-danger bi bi-x-lg\" alt=\"Rimuovi\"></button>\n </ful-item>\n `,\n warning: `<ful-field-warning>{{ #l10n:t(key, args) }}</ful-field-warning>`,\n };\n render(conf) {\n const { observed } = conf;\n super.render(conf);\n this.#items = this.querySelector('ful-item-list');\n this.#dropzone = this.querySelector('[data-ref=dropzone]');\n this.#warnings = this.querySelector('ful-field-warnings');\n this.accept = observed.accept;\n this.multiple = observed.multiple;\n this.itemlist = observed.itemlist;\n this.dropzone = observed.dropzone;\n this.maxfiles = observed.maxfiles;\n this.maxfilesize = observed.maxfilesize;\n this.maxtotalsize = observed.maxtotalsize;\n this.#warnings.addEventListener('animationend', (e) => {\n e.target.remove();\n });\n this.#items.addEventListener('click', (e) => {\n if (!e.target.closest('button')) {\n return;\n }\n const fileName = e.target.closest('ful-item').dataset.name;\n const dt = new DataTransfer();\n [...this.files].filter((f) => f.name !== fileName).forEach((f) => dt.items.add(f));\n this.files = dt.files;\n this.#update();\n });\n this.#dropzone.addEventListener('click', (e) => {\n this.querySelector('input')?.click();\n });\n\n this.#dropzone.addEventListener('dragover', (e) => {\n e.preventDefault();\n });\n this.#dropzone.addEventListener('drop', (e) => {\n e.preventDefault();\n const dt = new DataTransfer();\n [...e.dataTransfer.items].filter((i) => i.kind === 'file').forEach((i) => dt.items.add(i.getAsFile()));\n this.files = dt.files;\n this.#update();\n });\n this._input.addEventListener('change', (e) => {\n this.#update();\n });\n }\n #formatByteSize(v) {\n return v > 1024 * 1024\n ? `${Math.round((v / 1024 / 1024) * 100) / 100}MiB`\n : v > 1024\n ? `${Math.round((v / 1024) * 100) / 100}KiB`\n : `${v}B`;\n }\n #update() {\n this.setCustomValidity();\n this.#ensureAcceptable();\n this.#ensureFileSizes();\n this.#ensureTotalSize();\n this.#ensureFilesCount();\n this.template('items')\n .withOverlay({ files: this.files })\n .withModule('bytes', { format: this.#formatByteSize })\n .renderTo(this.#items);\n }\n warning(key, args) {\n this.template('warning').withOverlay({ key, args }).renderTo(this.#warnings);\n }\n #ensureAcceptable() {\n if (!this.#accept.length) {\n return;\n }\n const unacceptable = [...this.files].filter(\n (file) => !this.#accept.some((type) => file.name.toLowerCase().endsWith(type.toLowerCase())),\n );\n\n if (unacceptable.length === 0) {\n return;\n }\n this.warning('unaccepptablefiletype', this.#accept.join(', '));\n const dt = new DataTransfer();\n [...this.files].filter((f) => !unacceptable.includes(f)).forEach((f) => dt.items.add(f));\n this.files = dt.files;\n }\n #ensureFilesCount() {\n if (this.#maxfiles === null) {\n return;\n }\n if (this.files.length <= this.#maxfiles) {\n return;\n }\n this.warning('maxfilesexceeded');\n const dt = new DataTransfer();\n this.files = dt.files;\n }\n\n #ensureFileSizes() {\n if (this.#maxfilesize === null) {\n return;\n }\n const oversized = [...this.files].filter((file) => file.size > this.#maxfilesize);\n if (oversized.length === 0) {\n return;\n }\n this.warning('maxfilesizeexceeded', this.#formatByteSize(this.#maxfilesize));\n const dt = new DataTransfer();\n [...this.files].filter((f) => !oversized.includes(f)).forEach((f) => dt.items.add(f));\n this.files = dt.files;\n }\n #ensureTotalSize() {\n if (this.#maxtotalsize === null) {\n return;\n }\n const totalSize = [...this.files].reduce((acc, file) => acc + file.size, 0);\n if (totalSize <= this.#maxtotalsize) {\n return;\n }\n this.warning('maxtotalsizeexceeded', this.#formatByteSize(this.#maxtotalsize));\n this.files = new DataTransfer().files;\n }\n get accept() {\n return this.#accept;\n }\n set accept(vs) {\n this._input.accept = vs.join(',');\n this.#accept = vs;\n this.reflect(() => {\n this.setAttribute('accept', this._input.accept);\n });\n }\n get multiple() {\n return this._input.multiple;\n }\n set multiple(v) {\n this._input.multiple = v;\n this.reflect(() => {\n Attributes.toggle(this, 'multiple', v);\n });\n }\n get files() {\n return this._input.files;\n }\n set files(vs) {\n this._input.files = vs;\n }\n get file() {\n return this.files[0] ?? null;\n }\n set file(v) {\n const dt = new DataTransfer();\n if (v) {\n dt.items.add(v);\n }\n this.files = dt.files;\n }\n get value() {\n const names = Array.from(this._input.files).map((f) => f.name);\n return this.multiple ? names : (names[0] ?? null);\n }\n set value(v) {\n if (v) {\n return;\n }\n this.files = new DataTransfer().files;\n this.#update();\n }\n get totalsize() {\n return Array.from(this.files).reduce((a, f) => a + f.size, 0);\n }\n #maxfiles;\n get maxfiles() {\n return this.#maxfiles;\n }\n set maxfiles(v) {\n this.#maxfiles = v;\n this.reflect(() => {\n Attributes.set(this, 'maxfiles', v);\n });\n }\n #maxfilesize;\n get maxfilesize() {\n return this.#maxfilesize;\n }\n set maxfilesize(v) {\n this.#maxfilesize = v;\n this.reflect(() => {\n Attributes.set(this, 'maxfilesize', v);\n });\n }\n #maxtotalsize;\n get maxtotalsize() {\n return this.#maxtotalsize;\n }\n set maxtotalsize(v) {\n this.#maxtotalsize = v;\n this.reflect(() => {\n Attributes.set(this, 'maxtotalsize', v);\n });\n }\n #useItemlist;\n get itemlist() {\n return this.#useItemlist;\n }\n set itemlist(v) {\n this.#useItemlist = v;\n this.reflect(() => {\n Attributes.toggle(this, 'itemlist', v);\n });\n }\n #useDropzone;\n get dropzone() {\n return this.#useDropzone;\n }\n set dropzone(v) {\n this.#useDropzone = v;\n this.reflect(() => {\n Attributes.toggle(this, 'dropzone', v);\n });\n }\n}\n\nexport { InputFile };\n","import { Attributes, Fragments, ParsedElement, registry, Templates } from '../../ftl/index.mjs';\nimport { VersionedLocalStorage } from '../storage.mjs';\nimport { Timing } from '../timing.mjs';\n\nclass RemoteLoader {\n #http;\n #url;\n #method;\n #responseMapper;\n #prefetch;\n #revision;\n #data;\n constructor({ http, url, method, responseMapper, prefetch, revision }) {\n this.#http = http;\n this.#url = url;\n this.#method = method;\n this.#responseMapper = responseMapper;\n this.#prefetch = prefetch;\n this.#revision = revision;\n this.#data = null;\n }\n async prefetch() {\n if (!this.#prefetch) {\n return;\n }\n await this.#ensureFetched();\n }\n async exact(...keys) {\n await this.#ensureFetched();\n return this.#data.filter(([k, v]) => keys.some((r) => r == k));\n }\n async load(needle) {\n await this.#ensureFetched();\n return this.#data.filter(([k, v]) => (v ?? '').toLowerCase().includes(needle?.toLowerCase()));\n }\n async reconfigureUrl(url) {\n this.#data = null;\n this.#url = url;\n }\n async #ensureFetched() {\n if (this.#data !== null) {\n return;\n }\n const raw = await RemoteLoader.#revisionedData(this.#http, this.#method, this.#url, this.#revision);\n this.#data = this.#responseMapper(raw);\n }\n static async #revisionedData(http, method, url, revision) {\n const storageKey = `${method}@${url}`;\n if (revision !== null) {\n const data = VersionedLocalStorage.load(storageKey, revision);\n if (data !== undefined) {\n return data;\n }\n }\n const data = await http.request(method, url).fetchJson();\n if (revision !== null) {\n VersionedLocalStorage.save(storageKey, revision, data);\n }\n return data;\n }\n}\n\nclass PartialRemoteLoader {\n #http;\n #url;\n #method;\n #responseMapper;\n constructor({ http, url, method, responseMapper }) {\n this.#http = http;\n this.#url = url;\n this.#method = method;\n this.#responseMapper = responseMapper;\n }\n async exact(...keys) {\n const response = await this.#http\n .request(this.#method, this.#url)\n .param('k', ...keys)\n .fetchJson();\n return this.#responseMapper(response);\n }\n async load(needle) {\n const response = await this.#http.request(this.#method, this.#url).param('s', needle).fetchJson();\n return this.#responseMapper(response);\n }\n}\n\nclass InMemoryLoader {\n #data;\n constructor(data) {\n this.#data = data;\n }\n update(data) {\n this.#data = data;\n }\n exact(...keys) {\n return this.#data.filter(([k, v]) => keys.some((r) => r == k));\n }\n load(needle) {\n return this.#data.filter(([k, v]) => (v ?? '').toLowerCase().includes(needle?.toLowerCase()));\n }\n}\n\nclass SelectLoader {\n static create(el, conf) {\n if (!el.hasAttribute('src')) {\n const els = Array.from(conf.options?.querySelectorAll('option') ?? []);\n const data = els.map((e) => {\n return [e.getAttribute('value') ?? e.innerText.trim(), e.innerText.trim()];\n });\n return new InMemoryLoader(data);\n }\n const http = registry.component('http-client');\n const responseMapper = SelectLoader.#responseMapperFrom(el);\n\n if ('chunked' == el.getAttribute('mode')) {\n return new PartialRemoteLoader({\n http,\n url: el.getAttribute('src'),\n method: el.getAttribute('method') ?? 'POST',\n responseMapper,\n });\n }\n return new RemoteLoader({\n http,\n url: el.getAttribute('src'),\n method: el.getAttribute('method') ?? 'POST',\n responseMapper,\n prefetch: el.hasAttribute('preload'),\n revision: el.getAttribute('revision'),\n });\n }\n static #responseMapperFrom(el) {\n if (el.hasAttribute('k-expr') && el.hasAttribute('l-expr')) {\n return (response) => {\n const rows = registry\n .evaluator()\n .withOverlay(response)\n .evaluateExpression(el.getAttribute('d-expr') ?? 'self');\n return rows.map((row) => {\n const evaluator = registry.evaluator().withOverlay(row);\n return [\n evaluator.evaluateExpression(el.getAttribute('k-expr')),\n evaluator.evaluateExpression(el.getAttribute('l-expr')),\n evaluator.evaluateExpression(el.getAttribute('m-expr') ?? 'self'),\n ];\n });\n };\n }\n if (el.hasAttribute('response-mapper')) {\n return registry.component(el.getAttribute('response-mapper'));\n }\n return (response) => response;\n }\n}\n\nclass Dropdown extends ParsedElement {\n static slots = true;\n static template = `\n <ful-spinner class=\"centered\" hidden></ful-spinner>\n <menu tabindex=\"-1\" role=\"listbox\" hidden></menu>\n `;\n static templates = {\n options: `\n <li data-tpl-each=\"self\" data-tpl-selected=\"index == 0\" data-tpl-value=\"index\" role=\"option\" data-tpl-aria-selected=\"index == 0 ? 'true' : 'false'\">\n {{ label }}\n </li>\n `,\n };\n #spinner;\n #menu;\n #optionstemplate;\n #options = new Map();\n render({ slots }) {\n const fragment = this.template().render();\n this.#optionstemplate = Fragments.isBlank(slots.default)\n ? this.template('options')\n : Templates.fromFragment(slots.default);\n this.#spinner = fragment.querySelector('ful-spinner');\n this.#menu = fragment.querySelector('menu');\n this.#menu.addEventListener('click', (evt) => {\n evt.stopPropagation();\n const li = evt.target.closest('li');\n if (!li) {\n this.hide();\n return;\n }\n this.#change(li);\n });\n this.replaceChildren(fragment);\n }\n acceptSelection() {\n const selected = this.#menu.querySelector('[selected]') ?? this.#menu.firstElementChild;\n this.#change(selected);\n }\n update(values) {\n if (values === undefined) {\n throw new Error('null data');\n }\n this.#options = new Map(values.map((v, i) => [String(i), v]));\n const data = values.map(([key, label, metadata], index) => ({ index, key, label, metadata }));\n this.#optionstemplate.withOverlay(data).renderTo(this.#menu);\n }\n #change(target) {\n const index = target.getAttribute('value');\n const data = this.#options.get(index);\n this.hide();\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: { index, data },\n }),\n );\n }\n hide() {\n this.setAttribute('hidden', '');\n }\n get shown() {\n return !this.hasAttribute('hidden');\n }\n async show(loader) {\n this.removeAttribute('hidden');\n this.#menu.setAttribute('hidden', '');\n this.#spinner.removeAttribute('hidden');\n try {\n const data = await loader();\n this.update(data);\n } finally {\n this.#spinner.setAttribute('hidden', '');\n this.#menu.removeAttribute('hidden');\n }\n }\n async moveOrShow(forward, loader) {\n if (this.shown) {\n const selected = this.#menu.querySelector('[selected]') ?? this.#menu.firstElementChild;\n const candidate = selected[`${forward ? 'next' : 'previous'}ElementSibling`];\n if (candidate) {\n selected.removeAttribute('selected');\n candidate.setAttribute('selected', '');\n candidate.scrollIntoView({ block: 'nearest', behavior: 'smooth' });\n }\n return;\n }\n await this.show(loader);\n }\n}\n\nclass Select extends ParsedElement {\n static observed = ['value:csvm', 'readonly:presence', 'required:presence', 'itemlist:presence'];\n static slots = true;\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group flex-nowrap\" tabindex=\"-1\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <div class=\"ful-select-input-container\">\n <div class=\"ful-select-input\">\n <badges></badges>\n <input type=\"text\" form=\"\" role=\"combobox\" aria-autocomplete=\"list\" aria-haspopup=\"listbox\" aria-expanded=\"false\">\n </div>\n <ful-dropdown hidden popover=\"manual\">{{{{ slots.dropdown }}}}</ful-dropdown>\n </div>\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <ful-item-list></ful-item-list>\n <ful-field-error></ful-field-error>\n `;\n static templates = {\n items: `\n <ful-item data-tpl-each=\"entries\" data-tpl-var=\"entry\" data-tpl-data-key=\"entry[0]\">\n <div>{{ entry[1][0] }}</div>\n <button type=\"button\" class=\"btn btn-sm btn-outline-danger bi bi-x-lg\"></button>\n </ful-item>\n `,\n };\n static formAssociated = true;\n internals;\n #loader;\n #badges;\n #ddmenu;\n #input;\n #items;\n #multiple;\n #fieldError;\n #values = new Map();\n constructor() {\n super();\n this.internals = this.attachInternals();\n this.internals.role = 'presentation';\n }\n async render({ slots, observed, disabled }) {\n const name = this.getAttribute('name');\n this.#loader = registry\n .component(this.getAttribute('loader') ?? 'loaders:select')\n .create(this, { options: slots.options });\n\n this.#multiple = this.hasAttribute('multiple');\n await this.#loader.prefetch?.();\n const fragment = this.template().withOverlay({ slots, name }).render();\n this.#input = fragment.querySelector('input');\n this.#items = fragment.querySelector('ful-item-list');\n Attributes.forward('input-', this, this.#input);\n this.#badges = fragment.querySelector('badges');\n\n this.value = observed.value;\n this.disabled = disabled;\n this.readonly = observed.readonly;\n this.required = observed.required;\n this.itemlist = observed.itemlist;\n\n this.#ddmenu = fragment.querySelector('ful-dropdown');\n const label = fragment.querySelector('label');\n label.addEventListener('click', () => this.focus());\n this.#fieldError = fragment.querySelector('ful-field-error');\n this.#input.ariaDescribedByElements = [this.#fieldError];\n this.#input.ariaLabelledByElements = [label];\n\n const self = this;\n const [dload, abortdload] = Timing.throttle(400, () => {\n self.#input.setAttribute('aria-expanded', 'true');\n self.#ddmenu.show(() => self.#loader.load(self.#input.value));\n });\n this.addEventListener('click', (/** @type any */ e) => {\n if (e.target.matches('input')) {\n return;\n }\n if (this.disabled || this.readonly) {\n return;\n }\n if (this.#ddmenu.shown) {\n this.#input.setAttribute('aria-expanded', 'false');\n this.#ddmenu.hide();\n return;\n }\n this.#input.focus();\n dload();\n });\n this.#items.addEventListener('click', (e) => {\n e.stopPropagation();\n if (!e.target.closest('button')) {\n return;\n }\n if (this.disabled || this.readonly) {\n return;\n }\n const idx = [...this.#items.children].indexOf(e.target.closest('ful-item'));\n if (idx === -1) {\n return;\n }\n this.#values.delete(Array.from(this.#values.keys())[idx]);\n this.#changed();\n this.#syncBadges();\n });\n this.#badges.addEventListener('click', (e) => {\n e.stopPropagation();\n if (this.disabled || this.readonly) {\n return;\n }\n const idx = [...this.#badges.children].indexOf(e.target);\n if (idx === -1) {\n return;\n }\n this.#values.delete(Array.from(this.#values.keys())[idx]);\n this.#changed();\n this.#syncBadges();\n });\n this.#input.addEventListener('change', (e) => {\n e.stopPropagation();\n });\n this.#input.addEventListener('blur', (e) => {\n e.stopPropagation();\n if (e.relatedTarget && this.contains(e.relatedTarget)) {\n return;\n }\n abortdload();\n this.#input.setAttribute('aria-expanded', 'false');\n this.#ddmenu.hide();\n this.#input.value = '';\n });\n this.#input.addEventListener('keydown', (e) => {\n if (this.disabled || this.readonly) {\n return;\n }\n switch (e.code) {\n case 'ArrowUp': {\n e.preventDefault();\n this.#input.setAttribute('aria-expanded', 'true');\n this.#ddmenu.moveOrShow(false, () => self.#loader.load(self.#input.value));\n break;\n }\n case 'ArrowDown': {\n e.preventDefault();\n this.#input.setAttribute('aria-expanded', 'true');\n this.#ddmenu.moveOrShow(true, () => self.#loader.load(self.#input.value));\n break;\n }\n case 'Escape': {\n this.#input.setAttribute('aria-expanded', 'false'); \n this.#ddmenu.hide();\n break;\n }\n case 'Enter': {\n e.preventDefault();\n this.#input.setAttribute('aria-expanded', 'false');\n this.#ddmenu.acceptSelection();\n this.#input.value = '';\n break;\n }\n case 'Backspace': {\n //remove last if caret at position 0\n if (this.#values.size && this.#input.selectionStart === 0 && this.#input.selectionEnd === 0) {\n this.#values.delete(Array.from(this.#values.keys()).pop());\n this.#changed();\n this.#syncBadges();\n }\n break;\n }\n case 'Tab': {\n this.#input.setAttribute('aria-expanded', 'false');\n this.#ddmenu.hide();\n abortdload();\n break;\n }\n }\n });\n this.#input.addEventListener('input', (e) => {\n e.stopPropagation();\n if (this.disabled || this.readonly) {\n return;\n }\n dload();\n });\n this.#ddmenu.addEventListener('change', (e) => {\n e.stopPropagation();\n if (!this.#multiple) {\n this.#values.clear();\n }\n this.#values.set(e.detail.data[0], e.detail.data.slice(1));\n this.#changed();\n this.#syncBadges();\n this.#input.focus();\n this.#input.setAttribute('aria-expanded', 'false');\n this.#ddmenu.hide();\n this.#input.value = '';\n });\n this.replaceChildren(fragment);\n }\n async withLoader(fn) {\n return await fn(this.#loader);\n }\n #changed() {\n const selection = [...this.#values.entries()].map((e) => ({\n key: e[0],\n label: e[1][0],\n metadata: e[1].slice(1),\n }));\n const value = this.#multiple ? selection : (selection[0] ?? null);\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: { value },\n }),\n );\n }\n #syncBadges() {\n const badges = Array.from(this.#values.entries()).map(([k, v]) => {\n const b = document.createElement('badge');\n b.setAttribute('role', 'button');\n b.setAttribute('value', k);\n b.innerText = v[0];\n return b;\n });\n this.#badges.replaceChildren();\n this.#badges.append(...badges);\n this.#items.replaceChildren();\n this.template('items').withOverlay({ entries: this.#values.entries() }).renderTo(this.#items);\n }\n set value(vs) {\n if (vs === null) {\n this.#values = new Map();\n this.#syncBadges();\n return;\n }\n (async () => {\n const entries = await (this.#multiple ? this.#loader.exact(...vs) : this.#loader.exact(vs));\n this.#values = new Map(entries.map((e) => [e[0], e.slice(1)]));\n this.#syncBadges();\n })();\n }\n get value() {\n if (this.#multiple) {\n return [...this.#values.keys()];\n }\n return [...this.#values.keys()][0] ?? null;\n }\n get entry() {\n if (this.#multiple) {\n return [...this.#values.entries()];\n }\n return [...this.#values.entries()][0] ?? null;\n }\n get disabled() {\n return this.#input.hasAttribute('disabled');\n }\n set disabled(d) {\n Attributes.toggle(this.#input, 'disabled', d);\n }\n get readonly() {\n return this.#input.readOnly;\n }\n set readonly(v) {\n this.#input.readOnly = v;\n this.reflect(() => {\n Attributes.toggle(this, 'readonly', v);\n });\n }\n get required() {\n return this.#input.getAttribute('aria-required') === 'true';\n }\n set required(d) {\n Attributes.set(this.#input, 'aria-required', d ? 'true' : null);\n this.reflect(() => {\n Attributes.toggle(this, 'required', d);\n });\n }\n #useItemlist;\n get itemlist() {\n return this.#useItemlist;\n }\n set itemlist(v) {\n this.#useItemlist = v;\n this.reflect(() => {\n Attributes.toggle(this, 'itemlist', v);\n });\n }\n focus(options) {\n this.#input.focus(options);\n }\n setCustomValidity(error) {\n if (!error) {\n this.internals.setValidity({});\n this.#fieldError.innerText = '';\n return;\n }\n this.internals.setValidity({ customError: true }, ' ');\n this.#fieldError.innerText = error;\n }\n}\n\nexport { Dropdown, Select, SelectLoader };\n","import { Attributes, Fragments, ParsedElement } from '../../ftl/index.mjs';\n\nclass RadioGroup extends ParsedElement {\n static observed = ['value', 'readonly:presence', 'required:presence'];\n static slots = true;\n static template = `\n <fieldset>\n <legend class=\"form-label\">\n {{{{ slots.default }}}}\n </legend>\n <header data-tpl-if=\"slots.header\">\n {{{{ slots.header }}}}\n </header>\n <section>\n <div class=\"label-wrapper\" data-tpl-each=\"inputsAndLabels\" data-tpl-var=\"ial\">\n <label>\n {{{{ ial[0] }}}}\n <div>{{{{ ial[1] }}}}</div>\n </label>\n </div>\n </section>\n <ful-field-error></ful-field-error>\n <footer data-tpl-if=\"slots.footer\">\n {{{{ slots.footer }}}}\n </footer>\n </fieldset>\n `;\n static formAssociated = true;\n #fieldset;\n #fieldError;\n #firstRadio;\n #booleanType;\n constructor() {\n super();\n this.internals = this.attachInternals();\n this.internals.role = 'radiogroup';\n }\n render({ slots, observed, disabled }) {\n const name = this.getAttribute('name') ?? Attributes.uid('ful-radiogroup');\n const radioEls = Array.from(slots.default.querySelectorAll('ful-radio'));\n const inputsAndLabels = radioEls.map((el) => {\n const input = document.createElement('input');\n input.setAttribute('type', 'radio');\n Attributes.forward('input-', this, input);\n Attributes.forward('', el, input);\n input.setAttribute('name', `${name}-ignore`);\n input.setAttribute('form', ``);\n input.addEventListener('change', (evt) => {\n evt.stopPropagation();\n //change is not cancelable\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n });\n const label = Fragments.fromChildNodes(el);\n return [input, label];\n });\n\n radioEls.forEach((el) => el.remove());\n this.template().withOverlay({ name, slots, inputsAndLabels }).renderTo(this);\n this.#fieldset = this.firstElementChild;\n this.disabled = disabled;\n this.readonly = observed.readonly;\n this.required = observed.required;\n this.value = observed.value;\n this.#fieldError = this.querySelector('ful-field-error');\n this.ariaDescribedByElements = [this.#fieldError];\n this.#firstRadio = this.querySelector('input[type=radio]');\n this.#booleanType = this.getAttribute('type') === 'boolean';\n }\n get value() {\n /** @type {HTMLInputElement|null} */\n const checked = this.querySelector('input[type=radio]:checked');\n return checked ? (this.#booleanType ? checked.value === 'true' : checked.value) : null;\n }\n set value(value) {\n if (value === null) {\n this.querySelectorAll(`input[type=radio]`).forEach((el) => {\n /** @type {HTMLInputElement} */ (el).checked = false;\n });\n return;\n }\n /** @type {HTMLInputElement|null} */\n const el = this.querySelector(`input[type=radio][value=${CSS.escape(String(value))}]`);\n if (el) {\n el.checked = true;\n }\n }\n get readonly() {\n return this.#fieldset.inert;\n }\n set readonly(v) {\n this.#fieldset.inert = v;\n this.reflect(() => {\n Attributes.toggle(this, 'readonly', v);\n });\n }\n get disabled() {\n return this.#fieldset.hasAttribute('disabled');\n }\n set disabled(d) {\n Attributes.toggle(this.#fieldset, 'disabled', d);\n }\n get required() {\n return this.#fieldset.getAttribute('aria-required') === 'true';\n }\n set required(d) {\n Attributes.set(this.#fieldset, 'aria-required', d ? 'true' : null);\n this.reflect(() => {\n Attributes.toggle(this, 'required', d);\n });\n }\n focus(options) {\n this.#firstRadio.focus(options);\n }\n setCustomValidity(error) {\n if (!error) {\n this.internals.setValidity({});\n this.#fieldError.innerText = '';\n return;\n }\n this.internals.setValidity({ customError: true }, ' ');\n this.#fieldError.innerText = error;\n }\n}\n\nexport { RadioGroup };\n","import { Attributes, ParsedElement } from '../../ftl/index.mjs';\n\nclass Checkbox extends ParsedElement {\n static observed = ['value:bool', 'readonly:presence', 'required:presence'];\n static slots = true;\n static template = `\n <div data-tpl-class=\"klass\">\n <div class=\"input-container\">\n <input class=\"form-check-input\" type=\"checkbox\" data-tpl-role=\"isSwitch ? 'switch' : false\" form=\"\" placeholder=\" \">\n </div>\n <div class=\"form-check-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n </div>\n <ful-field-error></ful-field-error>\n `;\n #container;\n #input;\n #fieldError;\n static formAssociated = true;\n constructor() {\n super();\n this.internals = this.attachInternals();\n this.internals.role = 'presentation';\n }\n render({ slots, observed, disabled }) {\n const isSwitch = this.getAttribute('type') == 'switch';\n const klass = isSwitch ? 'form-check form-switch' : 'form-check';\n const fragment = this.template().withOverlay({ slots, klass, isSwitch }).render();\n this.#container = fragment.firstElementChild;\n this.#input = fragment.querySelector('input');\n Attributes.forward('input-', this, this.#input);\n this.disabled = disabled;\n this.readonly = observed.readonly;\n this.required = observed.required;\n this.value = observed.value;\n this.#input.addEventListener('change', (evt) => {\n evt.stopPropagation();\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n });\n const label = fragment.querySelector('label');\n label.addEventListener('click', () => {\n this.focus();\n if (this.disabled || this.readonly) {\n return;\n }\n this.value = !this.value;\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n });\n this.#fieldError = fragment.querySelector('ful-field-error');\n this.#input.ariaDescribedByElements = [this.#fieldError];\n this.#input.ariaLabelledByElements = [label];\n this.replaceChildren(fragment);\n }\n get value() {\n return this.#input.checked;\n }\n set value(value) {\n this.#input.checked = value;\n }\n get readonly() {\n return this.#container.inert;\n }\n set readonly(v) {\n this.#container.inert = v;\n this.reflect(() => {\n Attributes.toggle(this, 'readonly', v);\n });\n }\n get disabled() {\n return this.#input.hasAttribute('disabled');\n }\n set disabled(d) {\n Attributes.toggle(this.#input, 'disabled', d);\n }\n get required() {\n return this.#input.getAttribute('aria-required') === 'true';\n }\n set required(d) {\n Attributes.set(this.#input, 'aria-required', d ? 'true' : null);\n this.reflect(() => {\n Attributes.toggle(this, 'required', d);\n });\n }\n focus(options) {\n this.#input.focus(options);\n }\n setCustomValidity(error) {\n if (!error) {\n this.internals.setValidity({});\n this.#fieldError.innerText = '';\n return;\n }\n this.internals.setValidity({ customError: true }, ' ');\n this.#fieldError.innerText = error;\n }\n}\n\nexport { Checkbox };\n","import { ParsedElement } from '../../ftl/index.mjs';\n\nclass Spinner extends ParsedElement {\n static slots = true;\n static template = `\n <div class=\"ful-spinner-wrapper\" role=\"status\">\n <div class=\"ful-spinner-text\">{{{{ slots.default }}}}</div>\n <div class=\"ful-spinner-icon\"></div>\n </div>\n `;\n render({ slots }) {\n this.template().withOverlay({ slots }).renderTo(this);\n }\n}\n\nexport { Spinner };\n","import { Attributes, Fragments, Nodes, ParsedElement, registry, Rendering } from '../../ftl/index.mjs';\n\nclass SortButton extends ParsedElement {\n static observed = ['order'];\n #order;\n render() {\n const sorter = this.getAttribute('sorter');\n const orders = ['asc', 'desc', null];\n this.addEventListener('click', () => {\n const nextOrder = orders[(orders.indexOf(this.order) + 1) % 3];\n this.dispatchEvent(\n new CustomEvent('sort-requested', {\n bubbles: true,\n cancelable: true,\n detail: {\n value: { sorter, order: nextOrder },\n },\n }),\n );\n });\n }\n\n get order() {\n return this.#order || null;\n }\n\n set order(value) {\n this.#order = value || null;\n this.reflect(() => {\n if (this.#order) {\n this.setAttribute('order', value);\n } else {\n this.removeAttribute('order');\n }\n });\n }\n}\n\nclass Pagination extends ParsedElement {\n static observed = ['total:number', 'current:number'];\n static l10n = {\n en: {\n showing: 'Page {0} of {1}',\n navigation: 'Page navigation',\n previous: 'Previous',\n next: 'Next',\n },\n it: {\n showing: 'Pagina {0} di {1}',\n navigation: 'Navigazione pagine',\n previous: 'Precedente',\n next: 'Successivo',\n },\n es: {\n showing: 'Página {0} de {1}',\n navigation: 'Navegación de páginas',\n previous: 'Anterior',\n next: 'Siguiente',\n },\n fr: {\n showing: 'Page {0} sur {1}',\n navigation: 'Navigation des pages',\n previous: 'Précédent',\n next: 'Suivant',\n },\n };\n static config = {\n prevIcon: 'bi bi-chevron-left',\n nextIcon: 'bi bi-chevron-right',\n reloadIcon: 'bi bi-arrow-clockwise',\n };\n static template = `\n <nav data-tpl-aria-label=\"#l10n:t('navigation')\" class=\"user-select-none\">\n <ul class=\"pagination\">\n <li class=\"page-item ms-auto me-2 pagination-index\"> {{ #l10n:t('showing', curr.label, total) }}</li>\n <li class=\"page-item me-2 reload\"><a role=\"button\"><i data-tpl-class=\"config.reloadIcon\"></i></a></li>\n <li class=\"page-item prev\">\n <a data-tpl-class=\"prev.enabled?'page-link':'page-link disabled'\" data-tpl-aria-label=\"#l10n:t('previous')\" role=\"button\" data-tpl-data-page=\"prev.index\">\n <i aria-hidden=\"true\" data-tpl-class=\"config.prevIcon\"></i>\n </a>\n </li>\n <li class=\"page-item\" data-tpl-each=\"pages\" data-tpl-var=\"page\">\n <a data-tpl-class=\"curr.index != page.index ? 'page-link': 'page-link disabled'\" role=\"button\" data-tpl-data-page=\"page.index\" >\n {{ page.label }}\n </a>\n </li>\n <li class=\"page-item next\">\n <a data-tpl-class=\"next.enabled?'page-link':'page-link disabled'\" data-tpl-aria-label=\"#l10n:t('next')\" role=\"button\" data-tpl-data-page=\"next.index\">\n <i aria-hidden=\"true\" data-tpl-class=\"config.nextIcon\"></i>\n </a>\n </li>\n </ul>\n </nav>\n `;\n #total = 0;\n #current = 0;\n render({ observed }) {\n this.update(observed.current ?? 0, observed.total ?? 0);\n this.addEventListener('click', (/** @type any */ evt) => {\n const el = evt.target.closest('a');\n if (!el) {\n return;\n }\n this.dispatchEvent(\n new CustomEvent('page-requested', {\n bubbles: true,\n cancelable: true,\n detail: {\n value: Number(el.dataset.page ?? this.#current),\n },\n }),\n );\n });\n }\n update(current, total) {\n const maxRender = Number(this.getAttribute('pages') ?? '5');\n const prev = { index: Math.max(0, current - 1), enabled: current > 0 };\n const curr = { index: current, label: current + 1 };\n const next = { index: Math.min(total, current + 1), enabled: current + 1 < total };\n const pages = [\n {\n index: current,\n label: current + 1,\n },\n ];\n for (let mid = current, offset = 1; offset !== maxRender && pages.length != maxRender; ++offset) {\n const p = mid - offset;\n if (p >= 0) {\n pages.unshift({ index: p, label: p + 1 });\n }\n const n = mid + offset;\n if (n < total) {\n pages.push({ index: n, label: n + 1 });\n }\n }\n this.template().withOverlay({ total, prev, curr, next, pages }).renderTo(this);\n }\n get total() {\n return this.#total;\n }\n set total(value) {\n this.#total = value;\n this.reflect(() => {\n this.setAttribute('total', String(value));\n this.update(this.#current ?? 0, this.#total);\n });\n }\n get current() {\n return this.#current;\n }\n set current(value) {\n this.#current = value;\n this.reflect(() => {\n this.setAttribute('current', String(value));\n this.update(this.#current, this.#total ?? 0);\n });\n }\n}\n\nclass TableSchemaParser {\n static parse(nodeOrFragment, template) {\n const schema = Nodes.queryChildren(nodeOrFragment, 'schema');\n if (!schema) {\n throw new Error(`missing expected <schema> in ${nodeOrFragment}`);\n }\n const headersTr = document.createElement('tr');\n const rowsTr = document.createElement('tr');\n rowsTr.setAttribute('data-tpl-each', 'rows');\n for (const attr of schema.getAttributeNames()) {\n const value = schema.getAttribute(attr);\n headersTr.setAttribute(attr, value ?? '');\n rowsTr.setAttribute(attr, value ?? '');\n }\n const columns = Nodes.queryChildrenAll(schema, 'column');\n const sort =\n columns\n .filter((v) => v.hasAttribute('order'))\n .map((v) => ({ sorter: v.getAttribute('sorter'), order: v.getAttribute('order') }))[0] ?? null;\n for (var column of columns) {\n const maybeTitleTag = Nodes.queryChildren(column, 'title');\n const sorter = column.getAttribute('sorter');\n const order = column.getAttribute('order');\n const titleNode = maybeTitleTag ?? document.createTextNode(column.getAttribute('title') ?? '');\n maybeTitleTag?.remove();\n column.removeAttribute('sorter');\n column.removeAttribute('order');\n column.removeAttribute('title');\n const wrappedTitleNode =\n !sorter && !order\n ? titleNode\n : (() => {\n const fulSorter = document.createElement('ful-sorter');\n if (sorter) {\n fulSorter.setAttribute('sorter', sorter);\n }\n if (order) {\n fulSorter.setAttribute('order', order);\n }\n fulSorter.append(titleNode);\n return fulSorter;\n })();\n const th = document.createElement('th');\n const td = document.createElement('td');\n for (const attr of column.getAttributeNames()) {\n const value = column.getAttribute(attr);\n th.setAttribute(attr, value ?? '');\n td.setAttribute(attr, value ?? '');\n }\n th.append(wrappedTitleNode);\n td.append(...column.childNodes);\n headersTr.append(th);\n rowsTr.append(td);\n }\n\n return {\n headersTemplate: template\n .withOverlay({ inHeaders: true, inRows: false })\n .withFragment(Fragments.from(headersTr)),\n rowsTemplate: template.withOverlay({ inHeaders: false, inRows: true }).withFragment(Fragments.from(rowsTr)),\n sort: sort,\n length: columns.length,\n };\n }\n}\n\nclass InMemoryTableLoader {\n #data;\n constructor(data) {\n this.#data = data;\n }\n async load(pageRequest, sortRequest, filterRequest) {\n const begin = pageRequest.page * pageRequest.size;\n const end = begin + pageRequest.size;\n const page = this.#data.slice(begin, end);\n const totalElements = this.#data.length;\n return {\n data: page,\n size: totalElements\n };\n }\n update(data) {\n this.#data = data;\n }\n}\n\nclass RemoteTableLoader {\n #http;\n #url;\n #method;\n constructor(http, url, method) {\n this.#http = http;\n this.#url = url;\n this.#method = method;\n }\n async load(pageRequest, sortRequest, filterRequest) {\n const filters = Object.entries(filterRequest).filter(([k, v]) => v);\n return await this.#http\n .request(this.#method, this.#url)\n .param('page', pageRequest.page)\n .param('size', pageRequest.size)\n .param('sort', sortRequest ? `${sortRequest.sorter},${sortRequest.order}` : null)\n .param('filters', filters.length > 0 ? JSON.stringify(Object.fromEntries(filters)) : null)\n .fetchJson();\n }\n}\n\nclass TableLoader {\n static create(el, conf) {\n const url = el.getAttribute('src');\n if (url) {\n const http = registry.component('http-client');\n const method = el.getAttribute('method') ?? 'GET';\n return new RemoteTableLoader(http, url, method);\n }\n return new InMemoryTableLoader([]);\n }\n}\n\nclass Table extends ParsedElement {\n static slots = true;\n static l10n = {\n en: {\n initial: 'Start searching to see results.',\n error: 'Error while loading data:',\n nodata: 'No elements found.',\n },\n it: {\n initial: 'Avvia la ricerca per visualizzare i risultati.',\n error: 'Errore nel caricamento dei dati:',\n nodata: 'Nessun elemento trovato.',\n },\n es: {\n initial: 'Inicia la búsqueda para ver los resultados.',\n error: 'Error al cargar los datos:',\n nodata: 'No se encontraron elementos.',\n },\n fr: {\n initial: 'Lancez la recherche pour voir les résultats.',\n error: 'Erreur lors du chargement des données :',\n nodata: 'Aucun élément trouvé.',\n },\n };\n static config = {\n searchIcon: 'bi bi-search',\n };\n static template = `\n <ful-form data-tpl-if=\"slots.filters\">\n {{{{ slots.filters }}}}\n </ful-form>\n <div class=\"table-wrapper\">\n <table class=\"table\">\n <caption data-tpl-if=\"slots.caption\">{{{{ slots.caption }}}}</caption>\n <thead></thead>\n <tbody></tbody>\n <tbody data-ref=\"initial\">\n <tr>\n <td data-tpl-colspan=\"schema.length\">\n <div>\n <p data-tpl-if=\"config.searchIcon\"><i data-tpl-class=\"config.searchIcon\"></i></p>\n {{{ #l10n:t('initial') }}}\n </div>\n </td>\n </tr>\n </tbody>\n <tbody data-ref=\"loading\" hidden>\n <tr>\n <td data-tpl-colspan=\"schema.length\">\n <ful-spinner class=\"big\"></ful-spinner>\n </td>\n </tr>\n </tbody>\n <tbody data-ref=\"feedback\" hidden>\n <tr>\n <td data-tpl-colspan=\"schema.length\">\n <div class=\"alert alert-danger\">\n <p>{{ #l10n:t('error') }}</p>\n <div data-ref=\"feedback-error\"></div>\n </div>\n </td>\n </tr>\n </tbody>\n <tfoot data-tpl-if=\"slots.footer\">\n {{{{ slots.footer }}}}\n </tfoot>\n </table>\n </div>\n <ful-pagination current=\"0\" total=\"1\"></ful-pagination>\n `;\n static templates = {\n row: `\n <tr data-tpl-if=\"pageResponse.data.length == 0\">\n <td data-tpl-colspan=\"schema.length\" class=\"text-center align-middle p-4\">\n {{ #l10n:t('nodata') }}\n </td>\n </tr>\n {{{{ schema.rowsTemplate.withOverlay({'rows': pageResponse.data}).render() }}}}\n `,\n };\n #loader;\n #schema;\n #body;\n #loading;\n #noAutoload;\n #feedback;\n #paginator;\n #sorters;\n #latestRequest;\n async render({ slots, observed }) {\n const template = this.template();\n const schema = TableSchemaParser.parse(slots.schema, template);\n const fragment = template.withOverlay({ slots, schema }).render();\n const tableWrapper = /** @type HTMLTableElement */ (Nodes.queryChildren(fragment, '.table-wrapper'));\n const table = /** @type HTMLTableElement */ (tableWrapper.querySelector('table'));\n Attributes.forward('table-', this, table);\n this.#loader = registry.component(this.getAttribute('loader') ?? 'loaders:table').create(this);\n\n this.#schema = schema;\n this.#body = table.querySelector(':scope > tbody');\n this.#loading = table.querySelector(':scope > tbody[data-ref=loading]');\n this.#noAutoload = table.querySelector(':scope > tbody[data-ref=initial]');\n this.#feedback = table.querySelector(':scope > tbody[data-ref=feedback]');\n this.#paginator = Nodes.queryChildren(fragment, 'ful-pagination');\n this.#sorters = table.querySelectorAll(':scope > thead ful-sorter') ?? [];\n this.replaceChildren(fragment);\n schema.headersTemplate.renderTo(this.querySelector('thead'));\n await Rendering.waitForChildren(this);\n\n const maybeForm = /** @type any */ (Nodes.queryChildren(this, 'ful-form'));\n this.#latestRequest = {\n pageRequest: {\n page: 0,\n size: this.getAttribute('page-size') ? Number(this.getAttribute('page-size')) : 10,\n },\n sortRequest: schema.sort,\n filterRequest: maybeForm?.values ?? {},\n };\n maybeForm?.addEventListener('submit:success', async (evt) => {\n await this.load(\n {\n page: 0,\n size: this.#latestRequest.pageRequest.size,\n },\n this.#latestRequest.sortRequest,\n evt.detail.request,\n );\n });\n this.addEventListener('page-requested', async (/** @type any */ e) => {\n await this.load(\n {\n page: e.detail.value,\n size: this.#latestRequest.pageRequest.size,\n },\n this.#latestRequest.sortRequest,\n this.#latestRequest.filterRequest,\n );\n });\n this.addEventListener('sort-requested', async (/** @type any */ e) => {\n const sortRequest = e.detail.value.order ? e.detail.value : null;\n await this.load(this.#latestRequest.pageRequest, sortRequest, this.#latestRequest.filterRequest);\n this.#sorters.forEach((s) => (s.order = null));\n e.target.order = e.detail.value.order;\n });\n if (this.hasAttribute('autoload')) {\n await this.reload();\n }\n }\n\n async reload() {\n return await this.load(\n this.#latestRequest.pageRequest,\n this.#latestRequest.sortRequest,\n this.#latestRequest.filterRequest,\n );\n }\n async load(pageRequest, sortRequest, filterRequest) {\n this.#body.replaceChildren();\n this.#loading.removeAttribute('hidden', '');\n this.#feedback.setAttribute('hidden', '');\n this.#noAutoload.setAttribute('hidden', '');\n try {\n const pageResponse = await this.#loader.load(pageRequest, sortRequest, filterRequest);\n this.#latestRequest = { pageRequest, sortRequest, filterRequest };\n this.#update(pageRequest, sortRequest, filterRequest, pageResponse);\n } catch (/** @type any */ error) {\n this.#loading.setAttribute('hidden', '');\n this.#feedback.removeAttribute('hidden', '');\n if (!error.problems) {\n this.#feedback.querySelector('[data-ref=feedback-error]').textContent = error;\n } else {\n this.#feedback.querySelector('[data-ref=feedback-error]').textContent = error.problems.map(\n (p) => `${p.reason}`,\n );\n }\n throw error;\n }\n }\n async withLoader(fn) {\n return await fn(this.#loader);\n }\n async resetWithFilter(filterRequest) {\n return await this.load(\n {\n page: 0,\n size: this.#latestRequest.pageRequest.size,\n },\n this.#latestRequest.sortRequest,\n filterRequest,\n );\n }\n #update(pageRequest, sortRequest, filterRequest, pageResponse) {\n this.#loading.setAttribute('hidden', '');\n this.#body.replaceChildren(\n this.template('row')\n .withOverlay({\n schema: this.#schema,\n pageRequest,\n filterRequest,\n pageResponse,\n })\n .render(),\n );\n this.#paginator.current = pageRequest.page;\n this.#paginator.total = Math.ceil(pageResponse.size / pageRequest.size);\n }\n}\n\nexport { TableLoader, SortButton, Table, TableSchemaParser, Pagination };\n","import { Attributes } from '../../ftl/index.mjs';\nimport { Instant } from './temporals.mjs';\nimport { Input } from './input.mjs';\n\nclass InstantFilter extends Input {\n static observed = ['value:json', 'readonly:presence', 'required:presence'];\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <button data-ref=\"operator\" class=\"btn btn-outline-secondary dropdown-toggle\" type=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\" value=\"LTE\" form=\"\">≼</button>\n <ul class=\"dropdown-menu\">\n <li><a class=\"dropdown-item\" role=\"button\" value=\"EQ\">=</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"NEQ\">≠</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"LT\">≺</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"GT\">≻</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"LTE\">≼</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"GTE\">≽</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"BETWEEN\">↔</a></li>\n </ul>\n <input data-ref=\"value1\" type=\"datetime-local\" class=\"form-control\" form=\"\">\n <input data-ref=\"value2\" type=\"datetime-local\" class=\"form-control\" form=\"\" hidden>\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <ful-field-error></ful-field-error>\n `;\n #operator;\n #value1;\n #value2;\n render(conf) {\n super.render({ ...conf, skipObservedSetup: true });\n this.#operator = this.querySelector('[data-ref=operator]');\n this.#value1 = this.querySelector('[data-ref=value1]');\n this.#value2 = this.querySelector('[data-ref=value2]');\n\n this.disabled = conf.disabled;\n this.readonly = conf.observed.readonly;\n this.required = conf.observed.required;\n this.value = conf.observed.value;\n\n this.addEventListener('click', (evt) => {\n const target = /** @type HTMLElement */ (evt.target);\n if (!target.matches('ul > li > a')) {\n return;\n }\n const btn = /** @type HTMLButtonElement */ (target.closest('ul')?.previousElementSibling);\n const value = /** @type String */ (target.getAttribute('value'));\n Attributes.toggle(this.#value2, 'hidden', value !== 'BETWEEN');\n btn.setAttribute('value', value);\n btn.innerHTML = target.innerHTML;\n });\n }\n\n get value() {\n const operator = this.#operator.getAttribute('value');\n const values = operator === 'BETWEEN' ? [this.#value1.value, this.#value2.value] : [this.#value1.value];\n return values.some((v) => v === '') ? undefined : [operator, ...values.map((v) => new Date(v).toISOString())];\n }\n set value(v) {\n if (v == null) {\n this.#value1.value = '';\n this.#value2.value = '';\n return;\n }\n const [operator, ...values] = v;\n this.#operator.setAttribute('value', operator);\n this.#value1.value = values[0] ? Instant.isoToLocal(values[0]) : values[0];\n this.#value2.value = values[1] ? Instant.isoToLocal(values[1]) : values[1];\n }\n set readonly(v) {\n this.#value2.readOnly = v;\n super.readonly = v;\n }\n set disabled(d) {\n Attributes.toggle(this.#value2, 'disabled', d);\n super.disabled = d;\n }\n}\n\nclass LocalDateFilter extends Input {\n static observed = ['value:json', 'readonly:presence', 'required:presence'];\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <button data-ref=\"operator\" class=\"btn btn-outline-secondary dropdown-toggle\" type=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\" value=\"EQ\" form=\"\">=</button>\n <ul class=\"dropdown-menu\">\n <li><a class=\"dropdown-item\" role=\"button\" value=\"EQ\">=</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"NEQ\">≠</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"LT\">≺</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"GT\">≻</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"LTE\">≼</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"GTE\">≽</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"BETWEEN\">↔</a></li>\n </ul>\n <input data-ref=\"value1\" type=\"date\" class=\"form-control\" form=\"\">\n <input data-ref=\"value2\" type=\"date\" class=\"form-control\" form=\"\" hidden>\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <ful-field-error></ful-field-error>\n `;\n #operator;\n #value1;\n #value2;\n render(conf) {\n super.render({ ...conf, skipObservedSetup: true });\n\n this.#operator = this.querySelector('[data-ref=operator]');\n this.#value1 = this.querySelector('[data-ref=value1]');\n this.#value2 = this.querySelector('[data-ref=value2]');\n\n this.disabled = conf.disabled;\n this.readonly = conf.observed.readonly;\n this.required = conf.observed.required;\n this.value = conf.observed.value;\n\n this.addEventListener('click', (evt) => {\n const target = /** @type HTMLElement */ (evt.target);\n if (!target.matches('ul > li > a')) {\n return;\n }\n const btn = /** @type HTMLButtonElement */ (target.closest('ul')?.previousElementSibling);\n const value = /** @type String */ (target.getAttribute('value'));\n Attributes.toggle(this.#value2, 'hidden', value !== 'BETWEEN');\n btn.setAttribute('value', value);\n btn.innerHTML = target.innerHTML;\n });\n }\n get value() {\n const operator = this.#operator.getAttribute('value');\n const values = operator == 'BETWEEN' ? [this.#value1.value, this.#value2.value] : [this.#value1.value];\n return values.some((v) => v === '') ? undefined : [operator, ...values];\n }\n set value(v) {\n if (v == null) {\n this.#value1.value = '';\n this.#value2.value = '';\n return;\n }\n const [operator, ...values] = v;\n this.#operator.setAttribute('value', operator);\n this.#value1.value = values[0];\n this.#value2.value = values[1];\n }\n set readonly(v) {\n this.#value2.readOnly = v;\n super.readonly = v;\n }\n set disabled(d) {\n Attributes.toggle(this.#value2, 'disabled', d);\n super.disabled = d;\n }\n}\n\nclass TextFilter extends Input {\n static observed = ['value:json', 'readonly:presence', 'required:presence'];\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <button data-ref=\"operator\" class=\"btn btn-outline-secondary dropdown-toggle\" type=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\" value=\"CONTAINS\" form=\"\">…a…</button>\n <ul class=\"dropdown-menu\">\n <li><a class=\"dropdown-item\" role=\"button\" value=\"CONTAINS\">…a…</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"STARTS_WITH\">a…</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"ENDS_WITH\">…a</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"EQ\">=</a></li>\n </ul>\n <input data-ref=\"value\" type=\"text\" class=\"form-control\" form=\"\">\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <ful-field-error></ful-field-error>\n `;\n #operator;\n #value;\n render(conf) {\n super.render({ ...conf, skipObservedSetup: true });\n\n this.#operator = this.querySelector('[data-ref=operator]');\n this.#value = this.querySelector('[data-ref=value]');\n\n this.disabled = conf.disabled;\n this.readonly = conf.observed.readonly;\n this.required = conf.observed.required;\n this.value = conf.observed.value;\n\n this.addEventListener('click', (evt) => {\n const target = /** @type HTMLElement */ (evt.target);\n if (!target.matches('ul > li > a')) {\n return;\n }\n const btn = /** @type HTMLButtonElement */ (target.closest('ul')?.previousElementSibling);\n const value = /** @type String */ (target.getAttribute('value'));\n btn.setAttribute('value', value);\n btn.innerHTML = target.innerHTML;\n });\n }\n get value() {\n const operator = this.#operator.getAttribute('value');\n return this.#value.value === '' ? undefined : [operator, 'IGNORE_CASE', this.#value.value];\n }\n set value(v) {\n if (v == null) {\n this.#value.value = '';\n return;\n }\n const [operator, sensitivity, value] = v;\n this.#operator.setAttribute('value', operator);\n this.#value.value = value;\n }\n}\n\nexport { InstantFilter, LocalDateFilter, TextFilter };\n","class LocalizationModule {\n static t(k, ...args) {\n //@ts-ignore\n const format = this.l10n?.[this.language]?.[k] ?? this.l10n?.['en']?.[k] ?? k;\n if (args.length === 0) {\n return format;\n }\n return format.replace(/{(\\d+)}/g, (m, is) => {\n return args[Number(is)];\n });\n }\n static tl(k, args = []) {\n return LocalizationModule.t.apply(this, [k, ...args]);\n }\n}\n\nexport { LocalizationModule };\n","import { HttpClient } from '../../httpc/index.mjs';\nimport { Checkbox } from './checkbox.mjs';\nimport { LocalDate, Instant, InputLocalDate, InputLocalTime, InputInstant } from './temporals.mjs';\nimport { InstantFilter, LocalDateFilter, TextFilter } from './filters.mjs';\nimport { FormLoader, Form } from './form.mjs';\nimport { Input } from './input.mjs';\nimport { InputFile } from './files.mjs';\nimport { RadioGroup } from './radio.mjs';\nimport { SelectLoader, Dropdown, Select } from './select.mjs';\nimport { Spinner } from './spinner.mjs';\nimport { TableLoader, Table, Pagination, SortButton } from './table.mjs';\nimport { LocalizationModule } from './l10n.mjs';\n\nclass Plugin {\n configure(registry) {\n const httpClient = HttpClient.builder().withCsrfToken().withRedirectOnUnauthorized('/').build();\n registry\n .defineModule('l10n', LocalizationModule)\n .defineComponent('http-client', httpClient)\n .defineElement('ful-spinner', Spinner)\n .defineElement('ful-form', Form)\n .defineElement('ful-checkbox', Checkbox)\n .defineElement('ful-input', Input)\n .defineElement('ful-input-file', InputFile)\n .defineElement('ful-local-date', LocalDate)\n .defineElement('ful-instant', Instant)\n .defineElement('ful-input-local-date', InputLocalDate)\n .defineElement('ful-input-local-time', InputLocalTime)\n .defineElement('ful-input-instant', InputInstant)\n .defineElement('ful-radio-group', RadioGroup)\n .defineElement('ful-table', Table)\n .defineElement('ful-pagination', Pagination)\n .defineElement('ful-sorter', SortButton)\n .defineElement('ful-filter-instant', InstantFilter)\n .defineElement('ful-filter-local-date', LocalDateFilter)\n .defineElement('ful-filter-text', TextFilter)\n .defineElement('ful-select', Select)\n .defineElement('ful-dropdown', Dropdown)\n .defineComponent('loaders:select', SelectLoader)\n .defineComponent('loaders:form', FormLoader)\n .defineComponent('loaders:table', TableLoader)\n .defineOverlay({\n language: navigator?.language?.split('-')?.[0] ?? 'en',\n });\n }\n}\n\nexport { Plugin };\n"],"names":["registry","ParsedElement","Attributes","Failure","Fragments","Templates","Nodes","Rendering","HttpClient"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ful.iife.js","sources":["../src/ful/storage.mjs","../src/ful/events/async.mjs","../src/ful/timing.mjs","../src/ful/elements/bindings.mjs","../src/ful/elements/form.mjs","../src/ful/elements/input.mjs","../src/ful/elements/temporals.mjs","../src/ful/elements/files.mjs","../src/ful/elements/select.mjs","../src/ful/elements/radio.mjs","../src/ful/elements/checkbox.mjs","../src/ful/elements/spinner.mjs","../src/ful/elements/table.mjs","../src/ful/elements/filters.mjs","../src/ful/elements/l10n.mjs","../src/ful/elements/plugin.mjs"],"sourcesContent":["class LocalStorage extends Storage {\n static save(k, v) {\n localStorage.setItem(k, JSON.stringify(v));\n }\n static load(k) {\n const got = localStorage.getItem(k);\n if (got === null) {\n return undefined;\n }\n try {\n return JSON.parse(got);\n } catch {\n //not what save wrote: drop it, otherwise every later read fails the same way\n localStorage.removeItem(k);\n return undefined;\n }\n }\n static remove(k) {\n localStorage.removeItem(k);\n }\n static pop(k) {\n const decoded = LocalStorage.load(k);\n LocalStorage.remove(k);\n return decoded;\n }\n}\n\nclass SessionStorage extends Storage {\n static save(k, v) {\n sessionStorage.setItem(k, JSON.stringify(v));\n }\n static load(k) {\n const got = sessionStorage.getItem(k);\n if (got === null) {\n return undefined;\n }\n try {\n return JSON.parse(got);\n } catch {\n //not what save wrote: drop it, otherwise every later read fails the same way\n sessionStorage.removeItem(k);\n return undefined;\n }\n }\n static remove(k) {\n sessionStorage.removeItem(k);\n }\n static pop(k) {\n const decoded = SessionStorage.load(k);\n SessionStorage.remove(k);\n return decoded;\n }\n}\n\nclass VersionedLocalStorage {\n static save(key, revision, data) {\n LocalStorage.save(key, { revision, data });\n }\n static load(key, revision) {\n const stored = LocalStorage.load(key);\n if (stored === undefined) {\n return undefined;\n }\n if (stored.revision !== revision) {\n LocalStorage.remove(key);\n return undefined;\n }\n return stored.data;\n }\n}\n\nclass VersionedSessionStorage {\n static save(key, revision, data) {\n SessionStorage.save(key, { revision, data });\n }\n static load(key, revision) {\n const stored = SessionStorage.load(key);\n if (stored === undefined) {\n return undefined;\n }\n if (stored.revision !== revision) {\n SessionStorage.remove(key);\n return undefined;\n }\n return stored.data;\n }\n}\n\nexport { LocalStorage, VersionedLocalStorage, SessionStorage, VersionedSessionStorage };\n","/**\n * @typedef {Object} AsyncExtension\n * @property {Promise<any>[]} promises\n * @typedef {Event & { async?: AsyncExtension }} AsyncEvent\n */\nclass AsyncEvents {\n /**\n * Dispatches an event and handles asynchronous resolution based on the execution mode.\n * @param {HTMLElement} el - The target element dispatching the event.\n * @param {AsyncEvent} evt - The event instance.\n * @param {{mode?: 'broadcast' | 'pipeline' | 'delegate'}} [options] - Configuration options (defaults to 'broadcast').\n * @returns {Promise<any>} Resolves with an array of values for broadcasts, a single value for pipelines/delegates, or undefined.\n */\n static async fireAsync(el, evt, options) {\n el.dispatchEvent(evt);\n const promises = evt.async?.promises ?? [];\n const mode = options?.mode ?? 'broadcast';\n if (mode === 'pipeline' && promises.length > 1) {\n throw new Error(\n `[AsyncEvents] Event \"${evt.type}\" is configured in 'pipeline' mode and expects at most one async listener, but ${promises.length} listeners were triggered on this element.`,\n );\n }\n if (mode === 'delegate' && promises.length !== 1) {\n throw new Error(\n `[AsyncEvents] Event \"${evt.type}\" is configured in 'delegate' mode and requires exactly one async listener, but ${promises.length} were registered.`,\n );\n }\n return mode === 'broadcast' ? Promise.all(promises) : Promise.resolve(promises[0]);\n }\n\n /**\n * Registers an asynchronous event listener wrapper.\n * @param {HTMLElement} el - The target element.\n * @param {string} type - The event name/type.\n * @param {Function} fn - The async listener middleware function returning the execution result.\n * @param {AddEventListenerOptions} [options] - Native addEventListener options.\n * @returns {EventListener} The underlying proxy listener function needed for cleanup via asyncOff.\n */\n static asyncOn(el, type, fn, options) {\n /** @type {(evt: Event) => Promise<void>} */\n const listener = async (event) => {\n const ae = /** @type {AsyncEvent} */ (event);\n if (!ae.async) {\n ae.async = { promises: [] };\n }\n const { promise, resolve, reject } = Promise.withResolvers();\n ae.async.promises.push(promise);\n try {\n resolve(await fn(ae));\n } catch (e) {\n reject(e);\n }\n };\n\n el.addEventListener(type, listener, options);\n return listener;\n }\n\n /**\n * Unregisters an asynchronous event listener proxy.\n * @param {HTMLElement} el - The target element.\n * @param {string} type - The event name/type.\n * @param {EventListener} listener - The proxy listener instance previously returned by asyncOn.\n * @param {EventListenerOptions} [options] - Native removeEventListener options.\n */\n static asyncOff(el, type, listener, options) {\n el.removeEventListener(type, listener, options);\n }\n\n /**\n * Mixes the asynchronous execution engine extensions into target class prototypes.\n * @param {...Function} classes - The target class constructors to decorate.\n */\n static mixInto(...classes) {\n for (const k of classes) {\n Object.assign(k.prototype, {\n /**\n * @this {HTMLElement}\n * @param {AsyncEvent} evt\n * @param {{mode?: 'broadcast' | 'pipeline' | 'delegate'}} [options]\n * @returns {Promise<any>}\n */\n async fireAsync(evt, options) {\n return await AsyncEvents.fireAsync(this, evt, options);\n },\n\n /**\n * @this {HTMLElement}\n * @param {string} type\n * @param {Function} fn\n * @param {AddEventListenerOptions} [options]\n * @returns {EventListener}\n */\n asyncOn(type, fn, options) {\n return AsyncEvents.asyncOn(this, type, fn, options);\n },\n\n /**\n * @this {HTMLElement}\n * @param {string} type\n * @param {EventListener} listener\n * @param {EventListenerOptions} [options]\n * @returns {void}\n */\n asyncOff(type, listener, options) {\n AsyncEvents.asyncOff(this, type, listener, options);\n },\n });\n }\n }\n}\n\nexport { AsyncEvents };\n","class Timing {\n static sleep(ms) {\n return new Promise((resolve) => setTimeout(resolve, ms));\n }\n static DEBOUNCE_DEFAULT = 0;\n static DEBOUNCE_IMMEDIATE = 1;\n /**\n * Executes only after a period of inactivity (pause in events).\n * Respond to the \"end\" of a series of events.\n * @param {*} timeoutMs\n * @param {*} func\n * @param {*} [options]\n * @returns {[function, function]}\n */\n static debounce(timeoutMs, func, options) {\n const opts = options ?? Timing.DEBOUNCE_DEFAULT;\n let tid = /** @type {number | null} */ (null);\n let args = [];\n let previousTimestamp = 0;\n\n const later = () => {\n const elapsed = performance.now() - previousTimestamp;\n if (timeoutMs > elapsed) {\n tid = setTimeout(later, timeoutMs - elapsed);\n return;\n }\n tid = null;\n if (opts !== Timing.DEBOUNCE_IMMEDIATE) {\n func(...args);\n }\n // This check is needed because `func` can recursively invoke `debounced`.\n if (tid === null) {\n args = [];\n }\n };\n\n const debounced = (...called) => {\n args = called;\n previousTimestamp = performance.now();\n if (tid === null) {\n tid = setTimeout(later, timeoutMs);\n if (opts === Timing.DEBOUNCE_IMMEDIATE) {\n func(...args);\n }\n }\n };\n const abort = () => {\n clearTimeout(tid ?? undefined);\n tid = null;\n args = [];\n };\n return [debounced, abort];\n }\n static THROTTLE_DEFAULT = 0;\n static THROTTLE_NO_LEADING = 1;\n static THROTTLE_NO_TRAILING = 2;\n /**\n * Executes at most once per specified time interval, regardless of ongoing events.\n * @param {*} timeoutMs\n * @param {*} func\n * @param {*} [options]\n * @returns {[function, function]}\n */\n static throttle(timeoutMs, func, options) {\n const opts = options ?? Timing.THROTTLE_DEFAULT;\n let tid = /** @type {number | null} */ (null);\n let args = [];\n let previousTimestamp = 0;\n\n const later = () => {\n previousTimestamp = opts & Timing.THROTTLE_NO_LEADING ? 0 : performance.now();\n tid = null;\n func(...args);\n if (tid === null) {\n args = [];\n }\n };\n const throttled = (...called) => {\n const now = performance.now();\n if (!previousTimestamp && opts & Timing.THROTTLE_NO_LEADING) {\n previousTimestamp = now;\n }\n const remaining = previousTimestamp === 0 ? 0 : timeoutMs - (now - previousTimestamp);\n args = called;\n if (remaining <= 0 || remaining > timeoutMs) {\n if (tid !== null) {\n clearTimeout(tid);\n tid = null;\n }\n previousTimestamp = now;\n func(...args);\n if (tid === null) {\n args = [];\n }\n } else if (tid === null && !(opts & Timing.THROTTLE_NO_TRAILING)) {\n tid = setTimeout(later, remaining);\n }\n };\n const abort = () => {\n clearTimeout(tid ?? undefined);\n tid = null;\n args = [];\n };\n return [throttled, abort];\n }\n}\n\nexport { Timing };\n","class Bindings {\n /**\n * @param {{ [x: string]: any; }} obj\n * @param {string} prefix\n * @param {Set<String>} stops\n * @return {{ [x: string]: any; }}\n */\n static flatten(obj, prefix, stops) {\n return Object.keys(obj).reduce((acc, k) => {\n const pre = prefix.length ? `${prefix}.${k}` : k;\n if (!stops.has(pre) && typeof obj[k] === 'object' && obj[k] !== null) {\n Object.assign(acc, Bindings.flatten(obj[k], pre, stops));\n } else {\n acc[pre] = obj[k];\n }\n return acc;\n }, {});\n }\n\n /**\n * @param {any} result\n * @param {string} path\n * @param {any} value\n */\n static providePath(result, path, value) {\n const keys = path.split('.').map((k) => (/^[0-9]+$/.test(k) ? +k : k));\n let current = result ?? {};\n let previous = /** @type {any} */ (null);\n for (let i = 0; ; ++i) {\n const ckey = keys[i];\n const pkey = keys[i - 1];\n if (Number.isInteger(ckey) && !Array.isArray(current)) {\n if (previous !== null) {\n previous[pkey] = current = [];\n } else {\n result = current = [];\n }\n }\n if (i === keys.length - 1) {\n //when value is undefined we only want to define the property if it's not defined\n current[ckey] = value !== undefined ? value : ckey in current ? current[ckey] : null;\n return result;\n }\n if (current[ckey] === undefined) {\n current[ckey] = {};\n }\n previous = current;\n current = current[ckey];\n }\n }\n /**\n *\n * @param {Element & {dataset?: any} & {checked?: boolean} & {value?: any}} el\n * @returns\n */\n static extract(el) {\n if (el.getAttribute('type') === 'radio') {\n if (!el.checked) {\n return undefined;\n }\n return el.dataset.fulBindType === 'boolean' ? el.value === 'true' : el.value;\n }\n if (el.getAttribute('type') === 'checkbox') {\n return el.checked;\n }\n if (el.dataset.fulBindType === 'boolean') {\n return !el.value ? null : el.value === 'true';\n }\n if (el.tagName === 'INPUT' || el.tagName === 'SELECT' || el.tagName === 'TEXTAREA') {\n return el.value === '' || el.value === undefined ? null : el.value;\n }\n return el.value;\n }\n\n /**\n *\n * @param {HTMLFormElement} form\n * @param {HTMLElement} [submitter]\n * @returns\n */\n static extractFrom(form, submitter) {\n let result = {};\n for (const el of form.elements) {\n // we are assuming submitters are disabled during submit.\n if (!el.hasAttribute('name') || (el.matches(':disabled') && el !== submitter)) {\n continue;\n }\n result = Bindings.providePath(\n result,\n /** @type {string} */ (el.getAttribute('name')),\n Bindings.extract(el),\n );\n }\n return result;\n }\n\n /**\n *\n * @param {Element & {dataset?: any} & {checked?: boolean} & {value?: any}} el\n * @returns\n */\n static mutate(el, raw) {\n if (el.getAttribute('type') === 'radio') {\n //values are matched as strings, as ful-radio-group does: extract decodes\n //boolean radios, and payloads carry numbers where the attribute is text\n el.checked = raw != null && el.getAttribute('value') === String(raw);\n return;\n }\n if (el.getAttribute('type') === 'checkbox') {\n el.checked = raw;\n return;\n }\n el.value = raw;\n }\n\n static mutateIn(form, values) {\n const names = Array.from(form.elements)\n .map((el) => el.getAttribute('name'))\n .filter((n) => n);\n for (const [flattenedKey, value] of Object.entries(Bindings.flatten(values, '', new Set(names)))) {\n for (const el of form.querySelectorAll(`[name='${CSS.escape(flattenedKey)}']`)) {\n Bindings.mutate(el, value);\n }\n }\n }\n\n static errors(form, es, scrollOnError) {\n const fieldErrors = es.filter((e) => e.type === 'FIELD_ERROR' || e.type === 'INVALID_FORMAT');\n const globalErrors = es.filter((e) => e.type !== 'FIELD_ERROR' && e.type !== 'INVALID_FORMAT');\n form.querySelectorAll(`[name]`).forEach((el) => {\n el.setCustomValidity?.('');\n });\n form.querySelectorAll('ful-errors').forEach((el) => {\n el.replaceChildren();\n el.setAttribute('hidden', '');\n });\n fieldErrors.forEach((e) => {\n const name = e.context.replace(/\\[/g, '.').replace(/\\]\\./g, '.').replace(/\\]/g, '')\n const parts = name.split('.');\n for (let i = parts.length; i !== 0; --i) {\n const prefix = parts.slice(0, i).join('.');\n const suffix = parts.slice(i, parts.length).join('.');\n form.querySelectorAll(`[name='${CSS.escape(prefix)}']`).forEach((input) => {\n input.setCustomValidity?.(e.reason, suffix);\n });\n }\n });\n form.querySelectorAll('ful-errors').forEach((el) => {\n const hel = /** @type HTMLElement} */ (el);\n hel.innerText = globalErrors.map((e) => e.reason).join('\\n');\n if (globalErrors.length !== 0) {\n el.removeAttribute('hidden');\n }\n });\n if (es.length === 0 || !scrollOnError) {\n return;\n }\n Array.from(form.querySelectorAll(`:invalid`))\n .sort((a, b) => a.getBoundingClientRect().y - b.getBoundingClientRect().y)[0]\n ?.focus();\n }\n}\n\nexport { Bindings };\n","import { Attributes, ParsedElement, registry } from '../../ftl/index.mjs';\nimport { Failure } from '../../httpc/index.mjs';\nimport { Bindings } from './bindings.mjs';\nimport { AsyncEvents } from '../events/async.mjs';\n\nclass RemoteJsonFormLoader {\n #http;\n #url;\n #method;\n #requestMapper;\n #responseMapper;\n constructor(http, url, method, requestMapper, responseMapper) {\n this.#http = http;\n this.#url = url;\n this.#method = method;\n this.#requestMapper = requestMapper;\n this.#responseMapper = responseMapper;\n }\n prepare(values, form) {\n return this.#requestMapper(values, form);\n }\n async submit(values, form) {\n return await this.#http.request(this.#method, this.#url).json(values).fetch();\n }\n transform(response, form) {\n return this.#responseMapper(response, form);\n }\n}\n\nclass LocalFormLoader {\n #requestMapper;\n #responseMapper;\n constructor(requestMapper, responseMapper) {\n this.#requestMapper = requestMapper;\n this.#responseMapper = responseMapper;\n }\n async prepare(values, form) {\n return await this.#requestMapper(values, form);\n }\n async submit(values, form, response) {\n return response;\n }\n async transform(response, form) {\n return await this.#responseMapper(response, form);\n }\n}\n\nclass FormLoader {\n static create(el, conf) {\n const http = registry.component('http-client');\n const requestMapper = el.hasAttribute('request-mapper')\n ? registry.component(el.getAttribute('request-mapper'))\n : (v) => v;\n const responseMapper = el.hasAttribute('response-mapper')\n ? registry.component(el.getAttribute('response-mapper'))\n : (v) => v;\n const url = el.getAttribute('action');\n if (!url) {\n return new LocalFormLoader(requestMapper, responseMapper);\n }\n const method = el.getAttribute('method') ?? 'POST';\n return new RemoteJsonFormLoader(http, url, method, requestMapper, responseMapper);\n }\n}\n\nclass Form extends ParsedElement {\n form;\n render() {\n const form = document.createElement('form');\n this.form = form;\n form.setAttribute('novalidate', '');\n Attributes.forward('form-', this, form);\n form.replaceChildren(...this.childNodes);\n form.addEventListener('submit', async (e) => {\n e.preventDefault();\n e.stopPropagation();\n await this.submit(e.submitter ?? undefined);\n });\n if (this.hasAttribute('clear-invalid-on-change')) {\n this.addEventListener('change', (/** @type any */ evt) => {\n evt.target.setCustomValidity?.('');\n });\n }\n this.replaceChildren(form);\n }\n /**\n *\n * @param {HTMLElement} [submitter]\n * @returns\n */\n async submit(submitter) {\n this.spinner(true);\n //one try: building the loader and preparing the request are as much part of a\n //submit as sending it, and a mapper that throws is how a caller reports a\n //problem with the values\n let values;\n let request;\n try {\n const loader = registry.component(this.getAttribute('loader') ?? 'loaders:form').create(this);\n values = Bindings.extractFrom(this.form, submitter);\n request = await loader.prepare(values, this);\n const se = new CustomEvent('submit', {\n bubbles: true,\n cancelable: true,\n detail: { submitter, values, request },\n });\n if (!this.dispatchEvent(se)) {\n return;\n }\n this.errors = [];\n const sre = new CustomEvent('submit:requested', {\n bubbles: true,\n cancelable: false,\n detail: { submitter, values: se.detail.values, request: se.detail.request },\n });\n let response = await AsyncEvents.fireAsync(this, sre, { mode: 'pipeline' });\n request = sre.detail.request;\n\n response = await loader.submit(request, this, response);\n const mapped = await loader.transform(response, this);\n this.dispatchEvent(\n new CustomEvent('submit:success', {\n bubbles: true,\n cancelable: false,\n detail: { submitter, values, request, response: mapped },\n }),\n );\n } catch (e) {\n this.dispatchEvent(\n new CustomEvent('submit:failure', {\n bubbles: true,\n cancelable: false,\n detail: { submitter, values, request, exception: e },\n }),\n );\n if (e instanceof Failure) {\n this.errors = e.problems;\n }\n console.warn('failed to submit form', this, 'reason:', e);\n } finally {\n this.spinner(false);\n }\n }\n reset() {\n this.form.reset();\n }\n #spinning = 0;\n spinner(spin) {\n //submits can overlap: only the outermost one saves and restores the button states\n if (spin) {\n ++this.#spinning;\n if (this.#spinning !== 1) {\n return;\n }\n } else {\n this.#spinning = Math.max(0, this.#spinning - 1);\n if (this.#spinning !== 0) {\n return;\n }\n }\n this.querySelectorAll('ful-spinner').forEach((el) => {\n const hel = /** @type HTMLElement */ (el);\n hel.hidden = !spin;\n });\n this.querySelectorAll('input,button').forEach((el) => {\n const hel = /** @type HTMLButtonElement|HTMLInputElement */ (el);\n if (hel.type !== 'submit' && hel.type !== 'reset') {\n return;\n }\n if (spin) {\n hel.dataset.wd = String(hel.disabled);\n hel.disabled = true;\n } else {\n hel.disabled = hel.dataset.wd === 'true';\n delete hel.dataset.wd;\n }\n });\n }\n set values(vs) {\n Bindings.mutateIn(this.form, vs);\n }\n get values() {\n return Bindings.extractFrom(this.form);\n }\n set errors(es) {\n Bindings.errors(this.form, es, this.hasAttribute('scroll-on-error'));\n }\n}\n\nexport { FormLoader, Form };\n","import { Attributes, ParsedElement } from '../../ftl/index.mjs';\n\nclass Input extends ParsedElement {\n static observed = ['value', 'readonly:presence', 'required:presence', 'placeholder'];\n static slots = true;\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <input data-tpl-if=\"type != 'textarea'\" class=\"form-control\" data-tpl-type=\"type\" placeholder=\" \" form=\"\">\n <textarea data-tpl-if=\"type == 'textarea'\" class=\"form-control\" placeholder=\" \" form=\"\"></textarea>\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <ful-field-error></ful-field-error>\n `;\n static formAssociated = true;\n _input;\n _fieldError;\n constructor() {\n super();\n this.internals = this.attachInternals();\n this.internals.role = 'presentation';\n }\n _type() {\n return this.getAttribute('type') ?? 'text';\n }\n _fragment(type, slots) {\n return this.template().withOverlay({ type, slots }).render();\n }\n render({ slots, observed, disabled, skipObservedSetup }) {\n const type = this._type();\n const fragment = this._fragment(type, slots);\n this._input = fragment.querySelector('input,textarea');\n\n Attributes.forward('input-', this, this._input);\n this._input.addEventListener('keydown', (evt) => {\n if (evt.key !== 'Enter' || this._type() === 'textarea') {\n return;\n }\n const form = this.internals.form;\n if (!form) {\n return;\n }\n const candidates = /** @type [HTMLButtonElement|HTMLInputElement] */ (\n Array.from(form.querySelectorAll('button:not(:disabled), input:not(:disabled)'))\n );\n const submitter = candidates.find((el) => el.type === 'submit');\n form.requestSubmit(submitter);\n });\n this._input.addEventListener('input', (evt) => {\n const mask = this.getAttribute('mask');\n if (!mask) {\n return;\n }\n const strip = (v) => v.replace(new RegExp(mask, 'g'), '');\n const before = evt.target.value;\n const after = strip(before);\n if (before === after) {\n return;\n }\n const start = evt.target.selectionStart;\n evt.target.value = after;\n if (start === null) {\n //email, number and the date types have no selection to restore\n return;\n }\n //the caret keeps its place among the characters that survived, so only the\n //ones stripped before it count\n const caret = strip(before.slice(0, start)).length;\n evt.target.setSelectionRange(caret, caret);\n });\n this._input.addEventListener('change', (evt) => {\n evt.stopPropagation();\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n });\n const label = fragment.querySelector('label');\n label.addEventListener('click', () => this.focus());\n this._fieldError = fragment.querySelector('ful-field-error');\n this._input.ariaDescribedByElements = [this._fieldError];\n this._input.ariaLabelledByElements = [label];\n this.replaceChildren(fragment);\n if (!skipObservedSetup) {\n // biome-ignore lint/complexity/noUselessThisAlias: keeps checkJs from seeing these as class fields\n const el = this;\n el.disabled = disabled;\n el.readonly = observed.readonly;\n el.required = observed.required;\n el.placeholder = observed.placeholder;\n el.value = observed.value;\n }\n }\n get value() {\n const uppercase = this.hasAttribute('uppercase');\n const trim = this.hasAttribute('trim');\n const v = this._input.value;\n const uppercased = uppercase ? v.toUpperCase() : v;\n const trimmed = trim ? uppercased.trim() : uppercased;\n return trimmed === '' ? null : trimmed;\n }\n set value(value) {\n this._input.value = value === '' ? null : value;\n }\n get readonly() {\n return this._input.readOnly;\n }\n set readonly(v) {\n this._input.readOnly = v;\n this.reflect(() => {\n Attributes.toggle(this, 'readonly', v);\n });\n }\n get disabled() {\n return this._input.hasAttribute('disabled');\n }\n set disabled(d) {\n Attributes.toggle(this._input, 'disabled', d);\n //also on the host: a form associated element only matches :disabled through its\n //own attribute, and that is what keeps it out of the submitted values. no reflect\n //is needed, disabled is deliberately not observed: the platform delivers it\n //through formDisabledCallback, which also covers a disabled ancestor fieldset\n Attributes.toggle(this, 'disabled', d);\n }\n get required() {\n return this._input.getAttribute('aria-required') === 'true';\n }\n set required(d) {\n Attributes.set(this._input, 'aria-required', d ? 'true' : null);\n this.reflect(() => {\n Attributes.toggle(this, 'required', d);\n });\n }\n get placeholder() {\n const v = this._input.getAttribute('placeholder');\n return v === ' ' ? null : v;\n }\n set placeholder(d) {\n //without a placeholder :placeholder-shown never matches, and floating labels\n //rely on it, so a blank one stands in for none\n Attributes.set(this._input, 'placeholder', d ?? ' ');\n this.reflect(() => {\n Attributes.set(this, 'placeholder', d);\n });\n }\n focus(options) {\n this._input.focus(options);\n }\n setCustomValidity(error) {\n if (!error) {\n this.internals.setValidity({});\n this._fieldError.innerText = '';\n return;\n }\n this.internals.setValidity({ customError: true }, ' ');\n this._fieldError.innerText = error;\n }\n formResetCallback() {\n this.value = this.unmarshal('value', this.getAttribute('value'));\n }\n}\n\nexport { Input };\n","import { ParsedElement } from '../../ftl/index.mjs';\nimport { Input } from './input.mjs';\n\nclass LocalDate extends ParsedElement {\n render() {\n const content = this.textContent.trim();\n if (content === '') {\n this.replaceChildren(this.getAttribute('default') ?? '');\n return;\n }\n const locale = this.getAttribute('locale') ?? Intl.DateTimeFormat().resolvedOptions().locale;\n const formatter = new Intl.DateTimeFormat(locale, { year: 'numeric', month: 'numeric', day: 'numeric' });\n const [y, m, d] = content.split('-').map(Number);\n this.replaceChildren(formatter.format(new Date(y, m - 1, d)));\n }\n}\n\nclass Instant extends ParsedElement {\n render() {\n const content = this.textContent.trim();\n if (content === '') {\n this.replaceChildren(this.getAttribute('default') ?? '');\n return;\n }\n const locale = this.getAttribute('locale') ?? Intl.DateTimeFormat().resolvedOptions().locale;\n const format = new Intl.DateTimeFormat(locale, {\n year: 'numeric',\n month: 'numeric',\n day: 'numeric',\n hour: 'numeric',\n minute: 'numeric',\n second: 'numeric',\n hour12: false,\n });\n this.replaceChildren(format.format(new Date(Instant.isoToLocal(content))));\n }\n static isoToLocal(iso) {\n //this is so sad\n const d = new Date(iso);\n const pad = (n, v) => String(v).padStart(n, '0');\n const date = `${d.getFullYear()}-${pad(2, d.getMonth() + 1)}-${pad(2, d.getDate())}`;\n const time = `${pad(2, d.getHours())}:${pad(2, d.getMinutes())}:${pad(2, d.getSeconds())}.${pad(3, d.getMilliseconds())}`;\n return `${date}T${time}`;\n }\n}\n\nclass InputLocalDate extends Input {\n static observed = ['value', 'readonly:presence', 'required:presence', 'placeholder', 'min', 'max', 'step'];\n _type() {\n return 'date';\n }\n render(conf) {\n const { observed } = conf;\n super.render(conf);\n //step first: on a time input min and max are snapped to its grid\n this.step = observed.step;\n this.min = observed.min;\n this.max = observed.max;\n }\n get min() {\n const v = this._input.min;\n return v === '' ? null : v;\n }\n set min(v) {\n this._input.min = InputLocalDate.#fromIsoOrOffset(v);\n }\n get max() {\n const v = this._input.max;\n return v === '' ? null : v;\n }\n set max(v) {\n this._input.max = InputLocalDate.#fromIsoOrOffset(v);\n }\n get step() {\n const v = this._input.step;\n return v === '' ? null : v;\n }\n set step(v) {\n this._input.step = v ?? '';\n }\n static #fromIsoOrOffset(v) {\n if (!v) {\n return '';\n }\n //this could be date.toLocaleDateString('en-CA')\n const formatLocalDate = (date) =>\n new Date(date.getTime() - date.getTimezoneOffset() * 60000).toISOString().split('T')[0];\n if (v === 'now') {\n return formatLocalDate(new Date());\n }\n const re = /^([+-])(\\d+)([dmy])$/;\n const match = re.exec(v);\n if (!match) {\n return v;\n }\n const sign = match[1] === '-' ? -1 : 1;\n const offset = +match[2];\n const r = new Date();\n r.setHours(0, 0, 0, 0);\n switch (match[3]) {\n case 'd':\n r.setDate(r.getDate() + offset * sign);\n break;\n case 'm': {\n const originalDay = r.getDate();\n r.setMonth(r.getMonth() + offset * sign);\n if (r.getDate() !== originalDay) {\n r.setDate(0);\n }\n break;\n }\n case 'y':\n r.setFullYear(r.getFullYear() + offset * sign);\n break;\n }\n return formatLocalDate(r);\n }\n}\n\nclass InputLocalTime extends InputLocalDate {\n _type() {\n return 'time';\n }\n get min() {\n const v = this._input.min;\n return v === '' ? null : v;\n }\n set min(v) {\n this._input.min = this.#fromNowOrOffset(v);\n }\n get max() {\n const v = this._input.max;\n return v === '' ? null : v;\n }\n set max(v) {\n this._input.max = this.#fromNowOrOffset(v);\n }\n /**\n * Resolves `now` and hour or minute offsets against the current time, wrapping\n * around midnight. `m` is minutes here, unlike the date offsets of the parent where\n * it is months: months mean nothing on a time. Anything else is passed through.\n */\n #fromNowOrOffset(v) {\n if (!v) {\n return '';\n }\n const resolved = new Date();\n if (v !== 'now') {\n const re = /^([+-])(\\d+)([hm])$/;\n const match = re.exec(v);\n if (!match) {\n return v;\n }\n const sign = match[1] === '-' ? -1 : 1;\n const offset = +match[2] * sign;\n if (match[3] === 'h') {\n resolved.setHours(resolved.getHours() + offset);\n } else {\n resolved.setMinutes(resolved.getMinutes() + offset);\n }\n }\n return InputLocalTime.#snapped(resolved, Number(this._input.step) || 60);\n }\n /**\n * Truncates a time to the step grid: min anchors that grid, so a bound that is not\n * on it makes every value on it invalid.\n */\n static #snapped(date, stepSeconds) {\n const pad = (n) => String(n).padStart(2, '0');\n const seconds = date.getHours() * 3600 + date.getMinutes() * 60 + date.getSeconds();\n const snapped = Math.floor(seconds / stepSeconds) * stepSeconds;\n const hh = pad(Math.floor(snapped / 3600));\n const mm = pad(Math.floor((snapped % 3600) / 60));\n return stepSeconds % 60 === 0 ? `${hh}:${mm}` : `${hh}:${mm}:${pad(snapped % 60)}`;\n }\n}\n\nclass InputInstant extends Input {\n static observed = ['value', 'readonly:presence', 'required:presence', 'placeholder', 'min', 'max', 'step'];\n _type() {\n return 'datetime-local';\n }\n render(conf) {\n const { observed } = conf;\n super.render(conf);\n this.min = observed.min;\n this.max = observed.max;\n this.step = observed.step;\n }\n get value() {\n const v = this._input.value;\n return v === '' ? null : new Date(v).toISOString();\n }\n set value(v) {\n this._input.value = v ? Instant.isoToLocal(v) : '';\n }\n get min() {\n const v = this._input.min;\n return v === '' ? null : new Date(v).toISOString();\n }\n set min(v) {\n this._input.min = v ? Instant.isoToLocal(v) : '';\n }\n get max() {\n const v = this._input.max;\n return v === '' ? null : new Date(v).toISOString();\n }\n set max(v) {\n this._input.max = v ? Instant.isoToLocal(v) : '';\n }\n get step() {\n const v = this._input.step;\n return v === '' ? null : v;\n }\n set step(v) {\n this._input.step = v ?? '';\n }\n}\n\nexport { Instant, LocalDate, InputLocalDate, InputLocalTime, InputInstant };\n","import { Attributes } from '../../ftl/index.mjs';\nimport { Input } from './input.mjs';\n\nclass InputFile extends Input {\n static l10n = {\n en: {\n dropzonelabel: 'Click or drop your files here',\n unacceptablefiletype: 'Only files of type {0} are supported',\n maxfilesizeexceeded: 'Maximum supported file size is {0}',\n maxtotalsizeexceeded: 'Maximum supported total file size is {0}',\n maxfilesexceeded: 'Maximum files count exceeded',\n },\n it: {\n dropzonelabel: 'Clicca o trascina i file qui',\n unacceptablefiletype: 'Solo i file di tipo {0} sono supportati',\n maxfilesizeexceeded: 'La dimensione massima di un file è di {0}',\n maxtotalsizeexceeded: 'La dimensione massima complessiva dei file è di {0}',\n maxfilesexceeded: 'Numero massimo di file superato',\n },\n es: {\n dropzonelabel: 'Haz clic o arrastra tus archivos aquí',\n unacceptablefiletype: 'Solo se admiten archivos de tipo {0}',\n maxfilesizeexceeded: 'El tamaño máximo de archivo admitido es {0}',\n maxtotalsizeexceeded: 'El tamaño total máximo admitido es {0}',\n maxfilesexceeded: 'Se ha superado el número máximo de archivos',\n },\n fr: {\n dropzonelabel: 'Cliquez ou déposez vos fichiers ici',\n unacceptablefiletype: 'Seuls les fichiers de type {0} sont pris en charge',\n maxfilesizeexceeded: 'La taille maximale de fichier prise en charge est {0}',\n maxtotalsizeexceeded: 'La taille totale maximale prise en charge est {0}',\n maxfilesexceeded: 'Nombre maximal de fichiers dépassé',\n },\n };\n static observed = [\n 'value',\n 'readonly:presence',\n 'required:presence',\n 'placeholder',\n 'accept:csv',\n 'multiple:presence',\n 'itemlist:presence',\n 'dropzone:presence',\n 'maxfiles:number',\n 'maxfilesize:number',\n 'maxtotalsize:number',\n ];\n #accept;\n #items;\n #dropzone;\n #warnings;\n _type() {\n return 'file';\n }\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <input class=\"form-control\" data-tpl-type=\"type\" placeholder=\" \" form=\"\">\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <div data-ref=\"dropzone\" class=\"dropzone\" data-tpl-if=\"slots.dropzone\">\n {{{{ slots.dropzone }}}}\n </div>\n <div data-ref=\"dropzone\" class=\"default-dropzone\" data-tpl-if=\"!slots.dropzone\">\n {{ #l10n:t('dropzonelabel') }}\n </div>\n <ful-item-list></ful-item-list>\n <ful-field-warnings></ful-field-warnings>\n <ful-field-error></ful-field-error>\n `;\n static templates = {\n items: `\n <ful-item data-tpl-each=\"files\" data-tpl-var=\"file\" data-tpl-data-name=\"file.name\">\n <div>{{ file.name }}</div>\n <div>{{ #bytes:format(file.size) }}</div>\n <button type=\"button\" class=\"btn btn-sm btn-outline-danger bi bi-x-lg\" alt=\"Rimuovi\"></button>\n </ful-item>\n `,\n warning: `<ful-field-warning>{{ #l10n:t(key, args) }}</ful-field-warning>`,\n };\n render(conf) {\n const { observed } = conf;\n super.render({ ...conf, skipObservedSetup: true });\n this.#items = this.querySelector('ful-item-list');\n this.#dropzone = this.querySelector('[data-ref=dropzone]');\n this.#warnings = this.querySelector('ful-field-warnings');\n this.accept = observed.accept;\n this.multiple = observed.multiple;\n this.itemlist = observed.itemlist;\n this.dropzone = observed.dropzone;\n this.maxfiles = observed.maxfiles;\n this.maxfilesize = observed.maxfilesize;\n this.maxtotalsize = observed.maxtotalsize;\n\n this.disabled = conf.disabled;\n this.readonly = observed.readonly;\n this.required = observed.required;\n this.placeholder = observed.placeholder;\n this.value = observed.value;\n this.#warnings.addEventListener('animationend', (e) => {\n e.target.remove();\n });\n this.#items.addEventListener('click', (e) => {\n if (!e.target.closest('button')) {\n return;\n }\n const idx = [...this.#items.children].indexOf(e.target.closest('ful-item'));\n if (idx === -1) {\n return;\n }\n const dt = new DataTransfer();\n [...this.files]\n .filter((f, i) => i !== idx)\n .forEach((f) => {\n dt.items.add(f);\n });\n this.files = dt.files;\n });\n this.#dropzone.addEventListener('click', (e) => {\n this.querySelector('input')?.click();\n });\n\n this.#dropzone.addEventListener('dragover', (e) => {\n e.preventDefault();\n });\n this.#dropzone.addEventListener('drop', (e) => {\n e.preventDefault();\n const dropped = [...e.dataTransfer.items].filter((i) => i.kind === 'file');\n if (dropped.length === 0) {\n return;\n }\n const dt = new DataTransfer();\n dropped.forEach((i) => {\n dt.items.add(i.getAsFile());\n });\n this.files = dt.files;\n });\n this._input.addEventListener('change', (e) => {\n this.#update();\n });\n }\n #formatByteSize(v) {\n return v > 1024 * 1024\n ? `${Math.round((v / 1024 / 1024) * 100) / 100}MiB`\n : v > 1024\n ? `${Math.round((v / 1024) * 100) / 100}KiB`\n : `${v}B`;\n }\n #update() {\n this.setCustomValidity();\n this.#warnings.replaceChildren();\n this.#ensureAcceptable();\n this.#ensureFileSizes();\n this.#ensureTotalSize();\n this.#ensureFilesCount();\n this.template('items')\n .withOverlay({ files: this.files })\n .withModule('bytes', { format: this.#formatByteSize })\n .renderTo(this.#items);\n }\n warning(key, args) {\n this.template('warning').withOverlay({ key, args }).appendTo(this.#warnings);\n }\n #ensureAcceptable() {\n if (!this.#accept.length) {\n return;\n }\n const unacceptable = [...this.files].filter(\n (file) => !this.#accept.some((type) => file.name.toLowerCase().endsWith(type.toLowerCase())),\n );\n\n if (unacceptable.length === 0) {\n return;\n }\n this.warning('unacceptablefiletype', this.#accept.join(', '));\n const dt = new DataTransfer();\n [...this.files]\n .filter((f) => !unacceptable.includes(f))\n .forEach((f) => {\n dt.items.add(f);\n });\n this._input.files = dt.files;\n }\n #ensureFilesCount() {\n if (this.#maxfiles === null) {\n return;\n }\n if (this.files.length <= this.#maxfiles) {\n return;\n }\n this.warning('maxfilesexceeded');\n this._input.files = new DataTransfer().files;\n }\n\n #ensureFileSizes() {\n if (this.#maxfilesize === null) {\n return;\n }\n const oversized = [...this.files].filter((file) => file.size > this.#maxfilesize);\n if (oversized.length === 0) {\n return;\n }\n this.warning('maxfilesizeexceeded', this.#formatByteSize(this.#maxfilesize));\n const dt = new DataTransfer();\n [...this.files]\n .filter((f) => !oversized.includes(f))\n .forEach((f) => {\n dt.items.add(f);\n });\n this._input.files = dt.files;\n }\n #ensureTotalSize() {\n if (this.#maxtotalsize === null) {\n return;\n }\n const totalSize = [...this.files].reduce((acc, file) => acc + file.size, 0);\n if (totalSize <= this.#maxtotalsize) {\n return;\n }\n this.warning('maxtotalsizeexceeded', this.#formatByteSize(this.#maxtotalsize));\n this._input.files = new DataTransfer().files;\n }\n get accept() {\n return this.#accept;\n }\n set accept(vs) {\n this._input.accept = vs.join(',');\n this.#accept = vs;\n this.reflect(() => {\n this.setAttribute('accept', this._input.accept);\n });\n }\n get multiple() {\n return this._input.multiple;\n }\n set multiple(v) {\n this._input.multiple = v;\n this.reflect(() => {\n Attributes.toggle(this, 'multiple', v);\n });\n }\n get files() {\n return this._input.files;\n }\n set files(vs) {\n this._input.files = vs;\n this.#update();\n }\n get file() {\n return this.files[0] ?? null;\n }\n set file(v) {\n const dt = new DataTransfer();\n if (v) {\n dt.items.add(v);\n }\n this.files = dt.files;\n }\n get value() {\n const names = Array.from(this._input.files).map((f) => f.name);\n return this.multiple ? names : (names[0] ?? null);\n }\n set value(v) {\n if (v) {\n return;\n }\n this.files = new DataTransfer().files;\n }\n get totalsize() {\n return Array.from(this.files).reduce((a, f) => a + f.size, 0);\n }\n #maxfiles;\n get maxfiles() {\n return this.#maxfiles;\n }\n set maxfiles(v) {\n this.#maxfiles = v;\n this.reflect(() => {\n Attributes.set(this, 'maxfiles', v);\n });\n }\n #maxfilesize;\n get maxfilesize() {\n return this.#maxfilesize;\n }\n set maxfilesize(v) {\n this.#maxfilesize = v;\n this.reflect(() => {\n Attributes.set(this, 'maxfilesize', v);\n });\n }\n #maxtotalsize;\n get maxtotalsize() {\n return this.#maxtotalsize;\n }\n set maxtotalsize(v) {\n this.#maxtotalsize = v;\n this.reflect(() => {\n Attributes.set(this, 'maxtotalsize', v);\n });\n }\n #useItemlist;\n get itemlist() {\n return this.#useItemlist;\n }\n set itemlist(v) {\n this.#useItemlist = v;\n this.reflect(() => {\n Attributes.toggle(this, 'itemlist', v);\n });\n }\n #useDropzone;\n get dropzone() {\n return this.#useDropzone;\n }\n set dropzone(v) {\n this.#useDropzone = v;\n this.reflect(() => {\n Attributes.toggle(this, 'dropzone', v);\n });\n }\n}\n\nexport { InputFile };\n","import { Attributes, Fragments, ParsedElement, registry, Templates } from '../../ftl/index.mjs';\nimport { VersionedLocalStorage } from '../storage.mjs';\nimport { Timing } from '../timing.mjs';\n\nclass RemoteLoader {\n #http;\n #url;\n #method;\n #responseMapper;\n #prefetch;\n #revision;\n #data;\n constructor({ http, url, method, responseMapper, prefetch, revision }) {\n this.#http = http;\n this.#url = url;\n this.#method = method;\n this.#responseMapper = responseMapper;\n this.#prefetch = prefetch;\n this.#revision = revision;\n this.#data = null;\n }\n async prefetch() {\n if (!this.#prefetch) {\n return;\n }\n await this.#ensureFetched();\n }\n async exact(...keys) {\n await this.#ensureFetched();\n return this.#data.filter(([k, v]) => keys.some((r) => r == k));\n }\n async load(needle) {\n await this.#ensureFetched();\n return this.#data.filter(([k, v]) => (v ?? '').toLowerCase().includes(needle?.toLowerCase()));\n }\n async reconfigureUrl(url) {\n this.#data = null;\n this.#url = url;\n }\n async #ensureFetched() {\n if (this.#data !== null) {\n return;\n }\n const raw = await RemoteLoader.#revisionedData(this.#http, this.#method, this.#url, this.#revision);\n this.#data = this.#responseMapper(raw);\n }\n static async #revisionedData(http, method, url, revision) {\n const storageKey = `${method}@${url}`;\n if (revision !== null) {\n const data = VersionedLocalStorage.load(storageKey, revision);\n if (data !== undefined) {\n return data;\n }\n }\n const data = await http.request(method, url).fetchJson();\n if (revision !== null) {\n VersionedLocalStorage.save(storageKey, revision, data);\n }\n return data;\n }\n}\n\nclass PartialRemoteLoader {\n #http;\n #url;\n #method;\n #responseMapper;\n constructor({ http, url, method, responseMapper }) {\n this.#http = http;\n this.#url = url;\n this.#method = method;\n this.#responseMapper = responseMapper;\n }\n async exact(...keys) {\n const response = await this.#http\n .request(this.#method, this.#url)\n .param('k', ...keys)\n .fetchJson();\n return this.#responseMapper(response);\n }\n async load(needle) {\n const response = await this.#http.request(this.#method, this.#url).param('s', needle).fetchJson();\n return this.#responseMapper(response);\n }\n}\n\nclass InMemoryLoader {\n #data;\n constructor(data) {\n this.#data = data;\n }\n update(data) {\n this.#data = data;\n }\n exact(...keys) {\n return this.#data.filter(([k, v]) => keys.some((r) => r == k));\n }\n load(needle) {\n return this.#data.filter(([k, v]) => (v ?? '').toLowerCase().includes(needle?.toLowerCase()));\n }\n}\n\nclass SelectLoader {\n static create(el, conf) {\n if (!el.hasAttribute('src')) {\n const els = Array.from(conf.options?.querySelectorAll('option') ?? []);\n const data = els.map((e) => {\n return [e.getAttribute('value') ?? e.innerText.trim(), e.innerText.trim()];\n });\n return new InMemoryLoader(data);\n }\n const http = registry.component('http-client');\n const responseMapper = SelectLoader.#responseMapperFrom(el);\n\n if ('chunked' === el.getAttribute('mode')) {\n return new PartialRemoteLoader({\n http,\n url: el.getAttribute('src'),\n method: el.getAttribute('method') ?? 'POST',\n responseMapper,\n });\n }\n return new RemoteLoader({\n http,\n url: el.getAttribute('src'),\n method: el.getAttribute('method') ?? 'POST',\n responseMapper,\n prefetch: el.hasAttribute('preload'),\n revision: el.getAttribute('revision'),\n });\n }\n static #responseMapperFrom(el) {\n if (el.hasAttribute('k-expr') && el.hasAttribute('l-expr')) {\n return (response) => {\n const rows = registry\n .evaluator()\n .withOverlay(response)\n .evaluateExpression(el.getAttribute('d-expr') ?? 'self');\n return rows.map((row) => {\n const evaluator = registry.evaluator().withOverlay(row);\n return [\n evaluator.evaluateExpression(el.getAttribute('k-expr')),\n evaluator.evaluateExpression(el.getAttribute('l-expr')),\n evaluator.evaluateExpression(el.getAttribute('m-expr') ?? 'self'),\n ];\n });\n };\n }\n if (el.hasAttribute('response-mapper')) {\n return registry.component(el.getAttribute('response-mapper'));\n }\n return (response) => response;\n }\n}\n\nclass Dropdown extends ParsedElement {\n static slots = true;\n static template = `\n <ful-spinner class=\"centered\" hidden></ful-spinner>\n <menu tabindex=\"-1\" role=\"listbox\" hidden></menu>\n `;\n static templates = {\n options: `\n <li data-tpl-each=\"self\" data-tpl-selected=\"index == 0\" data-tpl-value=\"index\" role=\"option\" data-tpl-aria-selected=\"index == 0 ? 'true' : 'false'\">\n {{ label }}\n </li>\n `,\n };\n #spinner;\n #menu;\n #optionstemplate;\n #options = new Map();\n render({ slots }) {\n const fragment = this.template().render();\n this.#optionstemplate = Fragments.isBlank(slots.default)\n ? this.template('options')\n : Templates.fromFragment(slots.default);\n this.#spinner = fragment.querySelector('ful-spinner');\n this.#menu = fragment.querySelector('menu');\n this.#menu.addEventListener('click', (evt) => {\n evt.stopPropagation();\n const li = evt.target.closest('li');\n if (!li) {\n this.hide();\n return;\n }\n this.#change(li);\n });\n this.replaceChildren(fragment);\n }\n #selected() {\n return this.#menu?.querySelector('[selected]') ?? this.#menu?.firstElementChild ?? null;\n }\n acceptSelection() {\n const selected = this.#selected();\n if (!selected) {\n return;\n }\n this.#change(selected);\n }\n update(values) {\n if (values === undefined) {\n throw new Error('null data');\n }\n this.#options = new Map(values.map((v, i) => [String(i), v]));\n const data = values.map(([key, label, metadata], index) => ({ index, key, label, metadata }));\n this.#optionstemplate.withOverlay(data).renderTo(this.#menu);\n }\n #change(target) {\n const index = target.getAttribute('value');\n const data = this.#options.get(index);\n this.hide();\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: { index, data },\n }),\n );\n }\n hide() {\n this.setAttribute('hidden', '');\n }\n get shown() {\n return !this.hasAttribute('hidden');\n }\n async show(loader) {\n this.removeAttribute('hidden');\n this.#menu.setAttribute('hidden', '');\n this.#spinner.removeAttribute('hidden');\n try {\n const data = await loader();\n this.update(data);\n } catch (e) {\n this.hide();\n throw e;\n } finally {\n this.#spinner.setAttribute('hidden', '');\n this.#menu.removeAttribute('hidden');\n }\n }\n async moveOrShow(forward, loader) {\n if (this.shown) {\n const selected = this.#selected();\n const candidate = selected?.[`${forward ? 'next' : 'previous'}ElementSibling`];\n if (selected && candidate) {\n selected.removeAttribute('selected');\n candidate.setAttribute('selected', '');\n candidate.scrollIntoView({ block: 'nearest', behavior: 'smooth' });\n }\n return;\n }\n await this.show(loader);\n }\n}\n\nclass Select extends ParsedElement {\n static observed = ['value:csvm', 'readonly:presence', 'required:presence', 'itemlist:presence'];\n static slots = true;\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group flex-nowrap\" tabindex=\"-1\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <div class=\"ful-select-input-container\">\n <div class=\"ful-select-input\">\n <badges></badges>\n <input type=\"text\" form=\"\" role=\"combobox\" aria-autocomplete=\"list\" aria-haspopup=\"listbox\" aria-expanded=\"false\">\n </div>\n <ful-dropdown hidden popover=\"manual\">{{{{ slots.dropdown }}}}</ful-dropdown>\n </div>\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <ful-item-list></ful-item-list>\n <ful-field-error></ful-field-error>\n `;\n static templates = {\n items: `\n <ful-item data-tpl-each=\"entries\" data-tpl-var=\"entry\" data-tpl-data-key=\"entry[0]\">\n <div>{{ entry[1][0] }}</div>\n <button type=\"button\" class=\"btn btn-sm btn-outline-danger bi bi-x-lg\"></button>\n </ful-item>\n `,\n };\n static formAssociated = true;\n internals;\n #loader;\n #badges;\n #ddmenu;\n #input;\n #items;\n #multiple;\n #fieldError;\n #values = new Map();\n #token = 0;\n constructor() {\n super();\n this.internals = this.attachInternals();\n this.internals.role = 'presentation';\n }\n async render({ slots, observed, disabled }) {\n const name = this.getAttribute('name');\n this.#loader = registry\n .component(this.getAttribute('loader') ?? 'loaders:select')\n .create(this, { options: slots.options });\n\n this.#multiple = this.hasAttribute('multiple');\n try {\n await this.#loader.prefetch?.();\n } catch (/** @type any */ e) {\n console.warn('failed to prefetch select options', this, 'reason:', e);\n }\n const fragment = this.template().withOverlay({ slots, name }).render();\n this.#input = fragment.querySelector('input');\n this.#items = fragment.querySelector('ful-item-list');\n Attributes.forward('input-', this, this.#input);\n this.#badges = fragment.querySelector('badges');\n\n this.value = observed.value;\n this.disabled = disabled;\n this.readonly = observed.readonly;\n this.required = observed.required;\n this.itemlist = observed.itemlist;\n\n this.#ddmenu = fragment.querySelector('ful-dropdown');\n const label = fragment.querySelector('label');\n label.addEventListener('click', () => this.focus());\n this.#fieldError = fragment.querySelector('ful-field-error');\n this.#input.ariaDescribedByElements = [this.#fieldError];\n this.#input.ariaLabelledByElements = [label];\n const [dload, abortdload] = Timing.throttle(400, () => {\n this.#input.setAttribute('aria-expanded', 'true');\n this.#ddmenu.show(() => this.#loader.load(this.#input.value));\n });\n this.addEventListener('click', (/** @type any */ e) => {\n if (e.target.matches('input')) {\n return;\n }\n if (this.disabled || this.readonly) {\n return;\n }\n if (this.#ddmenu.shown) {\n this.#input.setAttribute('aria-expanded', 'false');\n this.#ddmenu.hide();\n return;\n }\n this.#input.focus();\n dload();\n });\n this.#items.addEventListener('click', (e) => {\n e.stopPropagation();\n if (!e.target.closest('button')) {\n return;\n }\n if (this.disabled || this.readonly) {\n return;\n }\n const idx = [...this.#items.children].indexOf(e.target.closest('ful-item'));\n if (idx === -1) {\n return;\n }\n this.#values.delete(Array.from(this.#values.keys())[idx]);\n this.#changed();\n this.#syncBadges();\n });\n this.#badges.addEventListener('click', (e) => {\n e.stopPropagation();\n if (this.disabled || this.readonly) {\n return;\n }\n const idx = [...this.#badges.children].indexOf(e.target);\n if (idx === -1) {\n return;\n }\n this.#values.delete(Array.from(this.#values.keys())[idx]);\n this.#changed();\n this.#syncBadges();\n });\n this.#input.addEventListener('change', (e) => {\n e.stopPropagation();\n });\n this.#input.addEventListener('blur', (e) => {\n e.stopPropagation();\n if (e.relatedTarget && this.contains(e.relatedTarget)) {\n return;\n }\n abortdload();\n this.#input.setAttribute('aria-expanded', 'false');\n this.#ddmenu.hide();\n this.#input.value = '';\n });\n this.#input.addEventListener('keydown', (e) => {\n if (this.disabled || this.readonly) {\n return;\n }\n switch (e.code) {\n case 'ArrowUp': {\n e.preventDefault();\n this.#input.setAttribute('aria-expanded', 'true');\n this.#ddmenu.moveOrShow(false, () => this.#loader.load(this.#input.value));\n break;\n }\n case 'ArrowDown': {\n e.preventDefault();\n this.#input.setAttribute('aria-expanded', 'true');\n this.#ddmenu.moveOrShow(true, () => this.#loader.load(this.#input.value));\n break;\n }\n case 'Escape': {\n this.#input.setAttribute('aria-expanded', 'false'); \n this.#ddmenu.hide();\n break;\n }\n case 'Enter': {\n if (!this.#ddmenu.shown) {\n //nothing to accept: submit the form as ful-input does. the inner\n //input carries form=\"\" so it never submits one on its own\n this.#requestSubmit();\n return;\n }\n e.preventDefault();\n this.#input.setAttribute('aria-expanded', 'false');\n this.#ddmenu.acceptSelection();\n this.#input.value = '';\n break;\n }\n case 'Backspace': {\n //remove last if caret at position 0\n if (this.#values.size && this.#input.selectionStart === 0 && this.#input.selectionEnd === 0) {\n this.#values.delete(Array.from(this.#values.keys()).pop());\n this.#changed();\n this.#syncBadges();\n }\n break;\n }\n case 'Tab': {\n this.#input.setAttribute('aria-expanded', 'false');\n this.#ddmenu.hide();\n abortdload();\n break;\n }\n }\n });\n this.#input.addEventListener('input', (e) => {\n e.stopPropagation();\n if (this.disabled || this.readonly) {\n return;\n }\n dload();\n });\n this.#ddmenu.addEventListener('change', (e) => {\n e.stopPropagation();\n if (!this.#multiple) {\n this.#values.clear();\n }\n this.#values.set(e.detail.data[0], e.detail.data.slice(1));\n this.#changed();\n this.#syncBadges();\n this.#input.focus();\n this.#input.setAttribute('aria-expanded', 'false');\n this.#ddmenu.hide();\n this.#input.value = '';\n });\n this.replaceChildren(fragment);\n }\n async withLoader(fn) {\n return await fn(this.#loader);\n }\n #requestSubmit() {\n const form = this.internals.form;\n if (!form) {\n return;\n }\n const candidates = /** @type [HTMLButtonElement|HTMLInputElement] */ (\n Array.from(form.querySelectorAll('button:not(:disabled), input:not(:disabled)'))\n );\n form.requestSubmit(candidates.find((el) => el.type === 'submit'));\n }\n #changed() {\n const selection = [...this.#values.entries()].map((e) => ({\n key: e[0],\n label: e[1][0],\n metadata: e[1].slice(1),\n }));\n const value = this.#multiple ? selection : (selection[0] ?? null);\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: { value },\n }),\n );\n }\n #syncBadges() {\n const badges = Array.from(this.#values.entries()).map(([k, v]) => {\n const b = document.createElement('badge');\n b.setAttribute('role', 'button');\n b.setAttribute('value', k);\n b.innerText = v[0];\n return b;\n });\n this.#badges.replaceChildren();\n this.#badges.append(...badges);\n this.#items.replaceChildren();\n this.template('items').withOverlay({ entries: this.#values.entries() }).renderTo(this.#items);\n }\n set value(vs) {\n //the csvm mapper yields [] for a missing multiple value, an empty string is\n //left alone: it is a usable key for an <option value=\"\">\n const keys = vs == null ? [] : Array.isArray(vs) ? vs : [vs];\n //the keys are known synchronously and are all `value` reads, so they are applied\n //now: only the labels need the loader, until then a key stands in for its own\n this.#values = new Map(keys.map((k) => [k, [k]]));\n this.#syncBadges();\n const token = ++this.#token;\n if (keys.length === 0) {\n return;\n }\n this.#resolve(keys, token);\n }\n /**\n * Resolves the labels of the assigned keys. A failed lookup is left to reject so\n * that it is reported like any other failure: the keys stay applied either way.\n */\n async #resolve(keys, token) {\n const entries = await this.#loader.exact(...keys);\n if (token !== this.#token) {\n //a newer assignment has been made in the meantime\n return;\n }\n //label the keys that are still selected: a removal made while the lookup was in\n //flight must not be undone by it, and a key the loader does not know is dropped\n const resolved = new Map(entries.map((e) => [e[0], e.slice(1)]));\n for (const key of keys) {\n if (!this.#values.has(key)) {\n continue;\n }\n if (resolved.has(key)) {\n this.#values.set(key, resolved.get(key));\n } else {\n this.#values.delete(key);\n }\n }\n this.#syncBadges();\n }\n get value() {\n if (this.#multiple) {\n return [...this.#values.keys()];\n }\n return [...this.#values.keys()][0] ?? null;\n }\n get entry() {\n if (this.#multiple) {\n return [...this.#values.entries()];\n }\n return [...this.#values.entries()][0] ?? null;\n }\n get disabled() {\n return this.#input.hasAttribute('disabled');\n }\n set disabled(d) {\n Attributes.toggle(this.#input, 'disabled', d);\n //also on the host: a form associated element only matches :disabled through its\n //own attribute, and that is what keeps it out of the submitted values. no reflect\n //is needed, disabled is deliberately not observed: the platform delivers it\n //through formDisabledCallback, which also covers a disabled ancestor fieldset\n Attributes.toggle(this, 'disabled', d);\n }\n get readonly() {\n return this.#input.readOnly;\n }\n set readonly(v) {\n this.#input.readOnly = v;\n this.reflect(() => {\n Attributes.toggle(this, 'readonly', v);\n });\n }\n get required() {\n return this.#input.getAttribute('aria-required') === 'true';\n }\n set required(d) {\n Attributes.set(this.#input, 'aria-required', d ? 'true' : null);\n this.reflect(() => {\n Attributes.toggle(this, 'required', d);\n });\n }\n #useItemlist;\n get itemlist() {\n return this.#useItemlist;\n }\n set itemlist(v) {\n this.#useItemlist = v;\n this.reflect(() => {\n Attributes.toggle(this, 'itemlist', v);\n });\n }\n focus(options) {\n this.#input.focus(options);\n }\n setCustomValidity(error) {\n if (!error) {\n this.internals.setValidity({});\n this.#fieldError.innerText = '';\n return;\n }\n this.internals.setValidity({ customError: true }, ' ');\n this.#fieldError.innerText = error;\n }\n}\n\nexport { Dropdown, Select, SelectLoader };\n","import { Attributes, Fragments, ParsedElement } from '../../ftl/index.mjs';\n\nclass RadioGroup extends ParsedElement {\n static observed = ['value', 'readonly:presence', 'required:presence'];\n static slots = true;\n static template = `\n <fieldset>\n <legend class=\"form-label\">\n {{{{ slots.default }}}}\n </legend>\n <header data-tpl-if=\"slots.header\">\n {{{{ slots.header }}}}\n </header>\n <section>\n <div class=\"label-wrapper\" data-tpl-each=\"inputsAndLabels\" data-tpl-var=\"ial\">\n <label>\n {{{{ ial[0] }}}}\n <div>{{{{ ial[1] }}}}</div>\n </label>\n </div>\n </section>\n <ful-field-error></ful-field-error>\n <footer data-tpl-if=\"slots.footer\">\n {{{{ slots.footer }}}}\n </footer>\n </fieldset>\n `;\n static formAssociated = true;\n #fieldset;\n #fieldError;\n #firstRadio;\n #booleanType;\n constructor() {\n super();\n this.internals = this.attachInternals();\n this.internals.role = 'radiogroup';\n }\n render({ slots, observed, disabled }) {\n const name = this.getAttribute('name') ?? Attributes.uid('ful-radiogroup');\n const radioEls = Array.from(slots.default.querySelectorAll('ful-radio'));\n const inputsAndLabels = radioEls.map((el) => {\n const input = document.createElement('input');\n input.setAttribute('type', 'radio');\n Attributes.forward('input-', this, input);\n Attributes.forward('', el, input);\n input.setAttribute('name', `${name}-ignore`);\n input.setAttribute('form', ``);\n input.addEventListener('change', (evt) => {\n evt.stopPropagation();\n //change is not cancelable\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n });\n const label = Fragments.fromChildNodes(el);\n return [input, label];\n });\n\n radioEls.forEach((el) => {\n el.remove();\n });\n this.template().withOverlay({ name, slots, inputsAndLabels }).renderTo(this);\n this.#fieldset = this.firstElementChild;\n this.disabled = disabled;\n this.readonly = observed.readonly;\n this.required = observed.required;\n this.value = observed.value;\n this.#fieldError = this.querySelector('ful-field-error');\n this.ariaDescribedByElements = [this.#fieldError];\n this.#firstRadio = this.querySelector('input[type=radio]');\n this.#booleanType = this.getAttribute('type') === 'boolean';\n }\n get value() {\n /** @type {HTMLInputElement|null} */\n const checked = this.querySelector('input[type=radio]:checked');\n return checked ? (this.#booleanType ? checked.value === 'true' : checked.value) : null;\n }\n set value(value) {\n if (value === null) {\n this.querySelectorAll(`input[type=radio]`).forEach((el) => {\n /** @type {HTMLInputElement} */ (el).checked = false;\n });\n return;\n }\n /** @type {HTMLInputElement|null} */\n const el = this.querySelector(`input[type=radio][value=${CSS.escape(String(value))}]`);\n if (el) {\n el.checked = true;\n }\n }\n get readonly() {\n return this.#fieldset.inert;\n }\n set readonly(v) {\n this.#fieldset.inert = v;\n this.reflect(() => {\n Attributes.toggle(this, 'readonly', v);\n });\n }\n get disabled() {\n return this.#fieldset.hasAttribute('disabled');\n }\n set disabled(d) {\n Attributes.toggle(this.#fieldset, 'disabled', d);\n //also on the host: a form associated element only matches :disabled through its\n //own attribute, and that is what keeps it out of the submitted values. no reflect\n //is needed, disabled is deliberately not observed: the platform delivers it\n //through formDisabledCallback, which also covers a disabled ancestor fieldset\n Attributes.toggle(this, 'disabled', d);\n }\n get required() {\n return this.#fieldset.getAttribute('aria-required') === 'true';\n }\n set required(d) {\n Attributes.set(this.#fieldset, 'aria-required', d ? 'true' : null);\n this.reflect(() => {\n Attributes.toggle(this, 'required', d);\n });\n }\n focus(options) {\n this.#firstRadio.focus(options);\n }\n setCustomValidity(error) {\n if (!error) {\n this.internals.setValidity({});\n this.#fieldError.innerText = '';\n return;\n }\n this.internals.setValidity({ customError: true }, ' ');\n this.#fieldError.innerText = error;\n }\n}\n\nexport { RadioGroup };\n","import { Attributes, ParsedElement } from '../../ftl/index.mjs';\n\nclass Checkbox extends ParsedElement {\n static observed = ['value:bool', 'readonly:presence', 'required:presence'];\n static slots = true;\n static template = `\n <div data-tpl-class=\"klass\">\n <div class=\"input-container\">\n <input class=\"form-check-input\" type=\"checkbox\" data-tpl-role=\"isSwitch ? 'switch' : false\" form=\"\" placeholder=\" \">\n </div>\n <div class=\"form-check-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n </div>\n <ful-field-error></ful-field-error>\n `;\n #container;\n #input;\n #fieldError;\n static formAssociated = true;\n constructor() {\n super();\n this.internals = this.attachInternals();\n this.internals.role = 'presentation';\n }\n render({ slots, observed, disabled }) {\n const isSwitch = this.getAttribute('type') === 'switch';\n const klass = isSwitch ? 'form-check form-switch' : 'form-check';\n const fragment = this.template().withOverlay({ slots, klass, isSwitch }).render();\n this.#container = fragment.firstElementChild;\n this.#input = fragment.querySelector('input');\n Attributes.forward('input-', this, this.#input);\n this.disabled = disabled;\n this.readonly = observed.readonly;\n this.required = observed.required;\n this.value = observed.value;\n this.#input.addEventListener('change', (evt) => {\n evt.stopPropagation();\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n });\n const label = fragment.querySelector('label');\n label.addEventListener('click', () => {\n this.focus();\n if (this.disabled || this.readonly) {\n return;\n }\n this.value = !this.value;\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n });\n this.#fieldError = fragment.querySelector('ful-field-error');\n this.#input.ariaDescribedByElements = [this.#fieldError];\n this.#input.ariaLabelledByElements = [label];\n this.replaceChildren(fragment);\n }\n get value() {\n return this.#input.checked;\n }\n set value(value) {\n this.#input.checked = value;\n }\n get readonly() {\n return this.#container.inert;\n }\n set readonly(v) {\n this.#container.inert = v;\n this.reflect(() => {\n Attributes.toggle(this, 'readonly', v);\n });\n }\n get disabled() {\n return this.#input.hasAttribute('disabled');\n }\n set disabled(d) {\n Attributes.toggle(this.#input, 'disabled', d);\n //also on the host: a form associated element only matches :disabled through its\n //own attribute, and that is what keeps it out of the submitted values. no reflect\n //is needed, disabled is deliberately not observed: the platform delivers it\n //through formDisabledCallback, which also covers a disabled ancestor fieldset\n Attributes.toggle(this, 'disabled', d);\n }\n get required() {\n return this.#input.getAttribute('aria-required') === 'true';\n }\n set required(d) {\n Attributes.set(this.#input, 'aria-required', d ? 'true' : null);\n this.reflect(() => {\n Attributes.toggle(this, 'required', d);\n });\n }\n focus(options) {\n this.#input.focus(options);\n }\n setCustomValidity(error) {\n if (!error) {\n this.internals.setValidity({});\n this.#fieldError.innerText = '';\n return;\n }\n this.internals.setValidity({ customError: true }, ' ');\n this.#fieldError.innerText = error;\n }\n}\n\nexport { Checkbox };\n","import { ParsedElement } from '../../ftl/index.mjs';\n\nclass Spinner extends ParsedElement {\n static slots = true;\n static template = `\n <div class=\"ful-spinner-wrapper\" role=\"status\">\n <div class=\"ful-spinner-text\">{{{{ slots.default }}}}</div>\n <div class=\"ful-spinner-icon\"></div>\n </div>\n `;\n render({ slots }) {\n this.template().withOverlay({ slots }).renderTo(this);\n }\n}\n\nexport { Spinner };\n","import { Attributes, Fragments, Nodes, ParsedElement, registry, Rendering } from '../../ftl/index.mjs';\n\nclass SortButton extends ParsedElement {\n static observed = ['order'];\n #order;\n render({ observed }) {\n const sorter = this.getAttribute('sorter');\n const orders = ['asc', 'desc', null];\n this.order = observed.order;\n this.addEventListener('click', () => {\n const nextOrder = orders[(orders.indexOf(this.order) + 1) % 3];\n this.dispatchEvent(\n new CustomEvent('sort-requested', {\n bubbles: true,\n cancelable: true,\n detail: {\n value: { sorter, order: nextOrder },\n },\n }),\n );\n });\n }\n\n get order() {\n return this.#order || null;\n }\n\n set order(value) {\n this.#order = value || null;\n this.reflect(() => {\n if (this.#order) {\n this.setAttribute('order', value);\n } else {\n this.removeAttribute('order');\n }\n });\n }\n}\n\nclass Pagination extends ParsedElement {\n static observed = ['total:number', 'current:number'];\n static l10n = {\n en: {\n showing: 'Page {0} of {1}',\n navigation: 'Page navigation',\n previous: 'Previous',\n next: 'Next',\n },\n it: {\n showing: 'Pagina {0} di {1}',\n navigation: 'Navigazione pagine',\n previous: 'Precedente',\n next: 'Successivo',\n },\n es: {\n showing: 'Página {0} de {1}',\n navigation: 'Navegación de páginas',\n previous: 'Anterior',\n next: 'Siguiente',\n },\n fr: {\n showing: 'Page {0} sur {1}',\n navigation: 'Navigation des pages',\n previous: 'Précédent',\n next: 'Suivant',\n },\n };\n static config = {\n prevIcon: 'bi bi-chevron-left',\n nextIcon: 'bi bi-chevron-right',\n reloadIcon: 'bi bi-arrow-clockwise',\n };\n static template = `\n <nav data-tpl-aria-label=\"#l10n:t('navigation')\" class=\"user-select-none\">\n <ul class=\"pagination\">\n <li class=\"page-item ms-auto me-2 pagination-index\"> {{ #l10n:t('showing', curr.label, total) }}</li>\n <li class=\"page-item me-2 reload\"><a role=\"button\"><i data-tpl-class=\"config.reloadIcon\"></i></a></li>\n <li class=\"page-item prev\">\n <a data-tpl-class=\"prev.enabled?'page-link':'page-link disabled'\" data-tpl-aria-label=\"#l10n:t('previous')\" role=\"button\" data-tpl-data-page=\"prev.index\">\n <i aria-hidden=\"true\" data-tpl-class=\"config.prevIcon\"></i>\n </a>\n </li>\n <li class=\"page-item\" data-tpl-each=\"pages\" data-tpl-var=\"page\">\n <a data-tpl-class=\"curr.index != page.index ? 'page-link': 'page-link disabled'\" role=\"button\" data-tpl-data-page=\"page.index\" >\n {{ page.label }}\n </a>\n </li>\n <li class=\"page-item next\">\n <a data-tpl-class=\"next.enabled?'page-link':'page-link disabled'\" data-tpl-aria-label=\"#l10n:t('next')\" role=\"button\" data-tpl-data-page=\"next.index\">\n <i aria-hidden=\"true\" data-tpl-class=\"config.nextIcon\"></i>\n </a>\n </li>\n </ul>\n </nav>\n `;\n #total = 0;\n #current = 0;\n render({ observed }) {\n this.total = observed.total ?? 0;\n this.current = observed.current ?? 0;\n this.addEventListener('click', (/** @type any */ evt) => {\n const el = evt.target.closest('a');\n if (!el || el.classList.contains('disabled')) {\n //a disabled link leads nowhere: the page it would ask for does not exist\n return;\n }\n this.dispatchEvent(\n new CustomEvent('page-requested', {\n bubbles: true,\n cancelable: true,\n detail: {\n value: Number(el.dataset.page ?? this.#current),\n },\n }),\n );\n });\n }\n update(current, total) {\n const maxRender = Number(this.getAttribute('pages') ?? '5');\n const hasPrev = current > 0;\n const hasNext = current + 1 < total;\n //a disabled arrow carries no page: there is nothing valid for it to point at\n const prev = { index: hasPrev ? current - 1 : null, enabled: hasPrev };\n const curr = { index: current, label: current + 1 };\n const next = { index: hasNext ? current + 1 : null, enabled: hasNext };\n //the window holds at most maxRender pages, centered on the current one and slid\n //back towards the end so it stays full on the last pages\n const rendered = Math.max(1, Math.min(maxRender, total));\n const first = Math.max(0, Math.min(current - Math.floor((rendered - 1) / 2), total - rendered));\n const pages = Array.from({ length: rendered }, (_, offset) => ({\n index: first + offset,\n label: first + offset + 1,\n }));\n this.template().withOverlay({ total, prev, curr, next, pages }).renderTo(this);\n }\n get total() {\n return this.#total;\n }\n set total(value) {\n this.#total = value;\n this.reflect(() => {\n this.setAttribute('total', String(value));\n this.update(this.#current ?? 0, this.#total);\n });\n }\n get current() {\n return this.#current;\n }\n set current(value) {\n this.#current = value;\n this.reflect(() => {\n this.setAttribute('current', String(value));\n this.update(this.#current, this.#total ?? 0);\n });\n }\n}\n\nclass TableSchemaParser {\n static parse(nodeOrFragment, template) {\n //nodeOrFragment is undefined when the slot is missing altogether\n const schema = nodeOrFragment ? Nodes.queryChildren(nodeOrFragment, 'schema') : null;\n if (!schema) {\n throw new Error('missing expected <schema>: ful-table needs a <template slot=\"schema\"> holding one');\n }\n const headersTr = document.createElement('tr');\n const rowsTr = document.createElement('tr');\n rowsTr.setAttribute('data-tpl-each', 'rows');\n for (const attr of schema.getAttributeNames()) {\n const value = schema.getAttribute(attr);\n headersTr.setAttribute(attr, value ?? '');\n rowsTr.setAttribute(attr, value ?? '');\n }\n const columns = Nodes.queryChildrenAll(schema, 'column');\n const sort =\n columns\n .filter((v) => v.hasAttribute('order'))\n .map((v) => ({ sorter: v.getAttribute('sorter'), order: v.getAttribute('order') }))[0] ?? null;\n for (var column of columns) {\n const maybeTitleTag = Nodes.queryChildren(column, 'title');\n const sorter = column.getAttribute('sorter');\n const order = column.getAttribute('order');\n const titleNode = maybeTitleTag ?? document.createTextNode(column.getAttribute('title') ?? '');\n maybeTitleTag?.remove();\n column.removeAttribute('sorter');\n column.removeAttribute('order');\n column.removeAttribute('title');\n const wrappedTitleNode =\n !sorter && !order\n ? titleNode\n : (() => {\n const fulSorter = document.createElement('ful-sorter');\n if (sorter) {\n fulSorter.setAttribute('sorter', sorter);\n }\n if (order) {\n fulSorter.setAttribute('order', order);\n }\n fulSorter.append(titleNode);\n return fulSorter;\n })();\n const th = document.createElement('th');\n const td = document.createElement('td');\n for (const attr of column.getAttributeNames()) {\n const value = column.getAttribute(attr);\n th.setAttribute(attr, value ?? '');\n td.setAttribute(attr, value ?? '');\n }\n th.append(wrappedTitleNode);\n td.append(...column.childNodes);\n headersTr.append(th);\n rowsTr.append(td);\n }\n\n return {\n headersTemplate: template\n .withOverlay({ inHeaders: true, inRows: false })\n .withFragment(Fragments.from(headersTr)),\n rowsTemplate: template.withOverlay({ inHeaders: false, inRows: true }).withFragment(Fragments.from(rowsTr)),\n sort: sort,\n length: columns.length,\n };\n }\n}\n\nclass InMemoryTableLoader {\n #data;\n constructor(data) {\n this.#data = data;\n }\n async load(pageRequest, sortRequest, filterRequest) {\n const begin = pageRequest.page * pageRequest.size;\n const end = begin + pageRequest.size;\n const page = this.#data.slice(begin, end);\n const totalElements = this.#data.length;\n return {\n data: page,\n size: totalElements\n };\n }\n update(data) {\n this.#data = data;\n }\n}\n\nclass RemoteTableLoader {\n #http;\n #url;\n #method;\n constructor(http, url, method) {\n this.#http = http;\n this.#url = url;\n this.#method = method;\n }\n async load(pageRequest, sortRequest, filterRequest) {\n const filters = Object.entries(filterRequest).filter(([k, v]) => v);\n return await this.#http\n .request(this.#method, this.#url)\n .param('page', pageRequest.page)\n .param('size', pageRequest.size)\n .param('sort', sortRequest ? `${sortRequest.sorter},${sortRequest.order}` : null)\n .param('filters', filters.length > 0 ? JSON.stringify(Object.fromEntries(filters)) : null)\n .fetchJson();\n }\n}\n\nclass TableLoader {\n static create(el, conf) {\n const url = el.getAttribute('src');\n if (url) {\n const http = registry.component('http-client');\n const method = el.getAttribute('method') ?? 'GET';\n return new RemoteTableLoader(http, url, method);\n }\n return new InMemoryTableLoader([]);\n }\n}\n\nclass Table extends ParsedElement {\n static slots = true;\n static l10n = {\n en: {\n initial: 'Start searching to see results.',\n error: 'Error while loading data:',\n nodata: 'No elements found.',\n },\n it: {\n initial: 'Avvia la ricerca per visualizzare i risultati.',\n error: 'Errore nel caricamento dei dati:',\n nodata: 'Nessun elemento trovato.',\n },\n es: {\n initial: 'Inicia la búsqueda para ver los resultados.',\n error: 'Error al cargar los datos:',\n nodata: 'No se encontraron elementos.',\n },\n fr: {\n initial: 'Lancez la recherche pour voir les résultats.',\n error: 'Erreur lors du chargement des données :',\n nodata: 'Aucun élément trouvé.',\n },\n };\n static config = {\n searchIcon: 'bi bi-search',\n };\n static template = `\n <ful-form data-tpl-if=\"slots.filters\">\n {{{{ slots.filters }}}}\n </ful-form>\n <div class=\"table-wrapper\">\n <table class=\"table\">\n <caption data-tpl-if=\"slots.caption\">{{{{ slots.caption }}}}</caption>\n <thead></thead>\n <tbody></tbody>\n <tbody data-ref=\"initial\">\n <tr>\n <td data-tpl-colspan=\"schema.length\">\n <div>\n <p data-tpl-if=\"config.searchIcon\"><i data-tpl-class=\"config.searchIcon\"></i></p>\n {{{ #l10n:t('initial') }}}\n </div>\n </td>\n </tr>\n </tbody>\n <tbody data-ref=\"loading\" hidden>\n <tr>\n <td data-tpl-colspan=\"schema.length\">\n <ful-spinner class=\"big\"></ful-spinner>\n </td>\n </tr>\n </tbody>\n <tbody data-ref=\"feedback\" hidden>\n <tr>\n <td data-tpl-colspan=\"schema.length\">\n <div class=\"alert alert-danger\">\n <p>{{ #l10n:t('error') }}</p>\n <div data-ref=\"feedback-error\"></div>\n </div>\n </td>\n </tr>\n </tbody>\n <tfoot data-tpl-if=\"slots.footer\">\n {{{{ slots.footer }}}}\n </tfoot>\n </table>\n </div>\n <ful-pagination current=\"0\" total=\"1\"></ful-pagination>\n `;\n static templates = {\n row: `\n <tr data-tpl-if=\"pageResponse.data.length == 0\">\n <td data-tpl-colspan=\"schema.length\" class=\"text-center align-middle p-4\">\n {{ #l10n:t('nodata') }}\n </td>\n </tr>\n {{{{ schema.rowsTemplate.withOverlay({'rows': pageResponse.data}).render() }}}}\n `,\n };\n #loader;\n #schema;\n #body;\n #loading;\n #noAutoload;\n #feedback;\n #paginator;\n #sorters;\n #latestRequest;\n async render({ slots, observed }) {\n const template = this.template();\n const schema = TableSchemaParser.parse(slots.schema, template);\n const fragment = template.withOverlay({ slots, schema }).render();\n const tableWrapper = /** @type HTMLTableElement */ (Nodes.queryChildren(fragment, '.table-wrapper'));\n const table = /** @type HTMLTableElement */ (tableWrapper.querySelector('table'));\n Attributes.forward('table-', this, table);\n this.#loader = registry.component(this.getAttribute('loader') ?? 'loaders:table').create(this);\n\n this.#schema = schema;\n this.#body = table.querySelector(':scope > tbody');\n this.#loading = table.querySelector(':scope > tbody[data-ref=loading]');\n this.#noAutoload = table.querySelector(':scope > tbody[data-ref=initial]');\n this.#feedback = table.querySelector(':scope > tbody[data-ref=feedback]');\n this.#paginator = Nodes.queryChildren(fragment, 'ful-pagination');\n this.replaceChildren(fragment);\n const thead = /** @type HTMLTableSectionElement */ (this.querySelector('thead'));\n schema.headersTemplate.renderTo(thead);\n this.#sorters = thead.querySelectorAll('ful-sorter');\n await Rendering.waitForChildren(this);\n\n const maybeForm = /** @type any */ (Nodes.queryChildren(this, 'ful-form'));\n this.#latestRequest = {\n pageRequest: {\n page: 0,\n size: this.getAttribute('page-size') ? Number(this.getAttribute('page-size')) : 10,\n },\n sortRequest: schema.sort,\n filterRequest: maybeForm?.values ?? {},\n };\n maybeForm?.addEventListener('submit:success', async (evt) => {\n await this.load(\n {\n page: 0,\n size: this.#latestRequest.pageRequest.size,\n },\n this.#latestRequest.sortRequest,\n evt.detail.request,\n );\n });\n this.addEventListener('page-requested', async (/** @type any */ e) => {\n await this.load(\n {\n page: e.detail.value,\n size: this.#latestRequest.pageRequest.size,\n },\n this.#latestRequest.sortRequest,\n this.#latestRequest.filterRequest,\n );\n });\n this.addEventListener('sort-requested', async (/** @type any */ e) => {\n const sortRequest = e.detail.value.order ? e.detail.value : null;\n await this.load(this.#latestRequest.pageRequest, sortRequest, this.#latestRequest.filterRequest);\n this.#sorters.forEach((s) => {\n s.order = null;\n });\n e.target.order = e.detail.value.order;\n });\n if (this.hasAttribute('autoload')) {\n //not awaited: the first load must not hold up the upgrade, and a loader that\n //fails or never answers must not keep ftl:ready from firing for the page.\n //load renders its own error state and lets the failure reject, so it is reported\n this.reload();\n }\n }\n\n async reload() {\n return await this.load(\n this.#latestRequest.pageRequest,\n this.#latestRequest.sortRequest,\n this.#latestRequest.filterRequest,\n );\n }\n async load(pageRequest, sortRequest, filterRequest) {\n this.#body.replaceChildren();\n this.#loading.removeAttribute('hidden');\n this.#feedback.setAttribute('hidden', '');\n this.#noAutoload.setAttribute('hidden', '');\n try {\n const pageResponse = await this.#loader.load(pageRequest, sortRequest, filterRequest);\n this.#latestRequest = { pageRequest, sortRequest, filterRequest };\n this.#update(pageRequest, sortRequest, filterRequest, pageResponse);\n } catch (/** @type any */ error) {\n this.#loading.setAttribute('hidden', '');\n this.#feedback.removeAttribute('hidden');\n if (!error.problems) {\n this.#feedback.querySelector('[data-ref=feedback-error]').textContent = error;\n } else {\n this.#feedback.querySelector('[data-ref=feedback-error]').textContent = error.problems.map(\n (p) => `${p.reason}`,\n );\n }\n throw error;\n }\n }\n async withLoader(fn) {\n return await fn(this.#loader);\n }\n async resetWithFilter(filterRequest) {\n return await this.load(\n {\n page: 0,\n size: this.#latestRequest.pageRequest.size,\n },\n this.#latestRequest.sortRequest,\n filterRequest,\n );\n }\n #update(pageRequest, sortRequest, filterRequest, pageResponse) {\n this.#loading.setAttribute('hidden', '');\n this.#body.replaceChildren(\n this.template('row')\n .withOverlay({\n schema: this.#schema,\n pageRequest,\n filterRequest,\n pageResponse,\n })\n .render(),\n );\n this.#paginator.current = pageRequest.page;\n this.#paginator.total = Math.ceil(pageResponse.size / pageRequest.size);\n }\n}\n\nexport { TableLoader, SortButton, Table, TableSchemaParser, Pagination };\n","import { Attributes } from '../../ftl/index.mjs';\nimport { Instant } from './temporals.mjs';\nimport { Input } from './input.mjs';\n\nclass InstantFilter extends Input {\n static observed = ['value:json', 'readonly:presence', 'required:presence', 'placeholder'];\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <button data-ref=\"operator\" class=\"btn btn-outline-secondary dropdown-toggle\" type=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\" value=\"LTE\" form=\"\">≼</button>\n <ul class=\"dropdown-menu\">\n <li><a class=\"dropdown-item\" role=\"button\" value=\"EQ\">=</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"NEQ\">≠</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"LT\">≺</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"GT\">≻</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"LTE\">≼</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"GTE\">≽</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"BETWEEN\">↔</a></li>\n </ul>\n <input data-ref=\"value1\" type=\"datetime-local\" class=\"form-control\" form=\"\">\n <input data-ref=\"value2\" type=\"datetime-local\" class=\"form-control\" form=\"\" hidden>\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <ful-field-error></ful-field-error>\n `;\n #operator;\n #value1;\n #value2;\n render(conf) {\n super.render({ ...conf, skipObservedSetup: true });\n this.#operator = this.querySelector('[data-ref=operator]');\n this.#value1 = this.querySelector('[data-ref=value1]');\n this.#value2 = this.querySelector('[data-ref=value2]');\n //Input.render only re-dispatches changes coming from the first operand\n this.#value2.addEventListener('change', (evt) => {\n evt.stopPropagation();\n this.#notifyChange();\n });\n\n this.disabled = conf.disabled;\n this.readonly = conf.observed.readonly;\n this.required = conf.observed.required;\n this.placeholder = conf.observed.placeholder;\n this.value = conf.observed.value;\n\n this.addEventListener('click', (evt) => {\n const target = /** @type HTMLElement */ (evt.target);\n if (!target.matches('ul > li > a')) {\n return;\n }\n const btn = /** @type HTMLButtonElement */ (target.closest('ul')?.previousElementSibling);\n const value = /** @type String */ (target.getAttribute('value'));\n const previous = btn.getAttribute('value');\n Attributes.toggle(this.#value2, 'hidden', value !== 'BETWEEN');\n btn.setAttribute('value', value);\n btn.innerHTML = target.innerHTML;\n if (previous !== value) {\n this.#notifyChange();\n }\n });\n }\n\n get value() {\n const operator = this.#operator.getAttribute('value');\n const values = operator === 'BETWEEN' ? [this.#value1.value, this.#value2.value] : [this.#value1.value];\n return values.some((v) => v === '') ? undefined : [operator, ...values.map((v) => new Date(v).toISOString())];\n }\n set value(v) {\n if (v == null) {\n this.#value1.value = '';\n this.#value2.value = '';\n return;\n }\n const [operator, ...values] = v;\n this.#showOperator(operator);\n this.#value1.value = values[0] ? Instant.isoToLocal(values[0]) : values[0];\n this.#value2.value = values[1] ? Instant.isoToLocal(values[1]) : values[1];\n }\n #showOperator(operator) {\n this.#operator.setAttribute('value', operator);\n const items = Array.from(this.#operator.nextElementSibling?.querySelectorAll('li > a[value]') ?? []);\n const item = items.find((a) => a.getAttribute('value') === operator);\n if (item) {\n this.#operator.innerHTML = item.innerHTML;\n }\n Attributes.toggle(this.#value2, 'hidden', operator !== 'BETWEEN');\n }\n #notifyChange() {\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n }\n get readonly() {\n return super.readonly;\n }\n set readonly(v) {\n this.#value2.readOnly = v;\n super.readonly = v;\n }\n get disabled() {\n return super.disabled;\n }\n set disabled(d) {\n Attributes.toggle(this.#value2, 'disabled', d);\n super.disabled = d;\n }\n}\n\nclass LocalDateFilter extends Input {\n static observed = ['value:json', 'readonly:presence', 'required:presence', 'placeholder'];\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <button data-ref=\"operator\" class=\"btn btn-outline-secondary dropdown-toggle\" type=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\" value=\"EQ\" form=\"\">=</button>\n <ul class=\"dropdown-menu\">\n <li><a class=\"dropdown-item\" role=\"button\" value=\"EQ\">=</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"NEQ\">≠</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"LT\">≺</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"GT\">≻</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"LTE\">≼</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"GTE\">≽</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"BETWEEN\">↔</a></li>\n </ul>\n <input data-ref=\"value1\" type=\"date\" class=\"form-control\" form=\"\">\n <input data-ref=\"value2\" type=\"date\" class=\"form-control\" form=\"\" hidden>\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <ful-field-error></ful-field-error>\n `;\n #operator;\n #value1;\n #value2;\n render(conf) {\n super.render({ ...conf, skipObservedSetup: true });\n\n this.#operator = this.querySelector('[data-ref=operator]');\n this.#value1 = this.querySelector('[data-ref=value1]');\n this.#value2 = this.querySelector('[data-ref=value2]');\n //Input.render only re-dispatches changes coming from the first operand\n this.#value2.addEventListener('change', (evt) => {\n evt.stopPropagation();\n this.#notifyChange();\n });\n\n this.disabled = conf.disabled;\n this.readonly = conf.observed.readonly;\n this.required = conf.observed.required;\n this.placeholder = conf.observed.placeholder;\n this.value = conf.observed.value;\n\n this.addEventListener('click', (evt) => {\n const target = /** @type HTMLElement */ (evt.target);\n if (!target.matches('ul > li > a')) {\n return;\n }\n const btn = /** @type HTMLButtonElement */ (target.closest('ul')?.previousElementSibling);\n const value = /** @type String */ (target.getAttribute('value'));\n const previous = btn.getAttribute('value');\n Attributes.toggle(this.#value2, 'hidden', value !== 'BETWEEN');\n btn.setAttribute('value', value);\n btn.innerHTML = target.innerHTML;\n if (previous !== value) {\n this.#notifyChange();\n }\n });\n }\n get value() {\n const operator = this.#operator.getAttribute('value');\n const values = operator === 'BETWEEN' ? [this.#value1.value, this.#value2.value] : [this.#value1.value];\n return values.some((v) => v === '') ? undefined : [operator, ...values];\n }\n set value(v) {\n if (v == null) {\n this.#value1.value = '';\n this.#value2.value = '';\n return;\n }\n const [operator, ...values] = v;\n this.#showOperator(operator);\n this.#value1.value = values[0];\n this.#value2.value = values[1];\n }\n #showOperator(operator) {\n this.#operator.setAttribute('value', operator);\n const items = Array.from(this.#operator.nextElementSibling?.querySelectorAll('li > a[value]') ?? []);\n const item = items.find((a) => a.getAttribute('value') === operator);\n if (item) {\n this.#operator.innerHTML = item.innerHTML;\n }\n Attributes.toggle(this.#value2, 'hidden', operator !== 'BETWEEN');\n }\n #notifyChange() {\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n }\n get readonly() {\n return super.readonly;\n }\n set readonly(v) {\n this.#value2.readOnly = v;\n super.readonly = v;\n }\n get disabled() {\n return super.disabled;\n }\n set disabled(d) {\n Attributes.toggle(this.#value2, 'disabled', d);\n super.disabled = d;\n }\n}\n\nclass TextFilter extends Input {\n static observed = ['value:json', 'readonly:presence', 'required:presence', 'placeholder'];\n static template = `\n <div class=\"form-label\">\n <label>{{{{ slots.default }}}}</label>\n {{{{ slots.info }}}}\n </div>\n <div class=\"input-group\">\n <span data-tpl-if=\"slots.ibefore\" class=\"input-group-text\">{{{{ slots.ibefore }}}}</span>\n {{{{ slots.before }}}}\n <button data-ref=\"operator\" class=\"btn btn-outline-secondary dropdown-toggle\" type=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\" value=\"CONTAINS\" form=\"\">…a…</button>\n <ul class=\"dropdown-menu\">\n <li><a class=\"dropdown-item\" role=\"button\" value=\"CONTAINS\">…a…</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"STARTS_WITH\">a…</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"ENDS_WITH\">…a</a></li>\n <li><a class=\"dropdown-item\" role=\"button\" value=\"EQ\">=</a></li>\n </ul>\n <input data-ref=\"value\" type=\"text\" class=\"form-control\" form=\"\">\n {{{{ slots.after }}}}\n <span data-tpl-if=\"slots.iafter\" class=\"input-group-text\">{{{{ slots.iafter }}}}</span>\n </div>\n <ful-field-error></ful-field-error>\n `;\n #operator;\n #value;\n //the sensitivity has no control of its own: it is carried through from whoever set the value\n #sensitivity = 'IGNORE_CASE';\n render(conf) {\n super.render({ ...conf, skipObservedSetup: true });\n\n this.#operator = this.querySelector('[data-ref=operator]');\n this.#value = this.querySelector('[data-ref=value]');\n\n this.disabled = conf.disabled;\n this.readonly = conf.observed.readonly;\n this.required = conf.observed.required;\n this.placeholder = conf.observed.placeholder;\n this.value = conf.observed.value;\n\n this.addEventListener('click', (evt) => {\n const target = /** @type HTMLElement */ (evt.target);\n if (!target.matches('ul > li > a')) {\n return;\n }\n const btn = /** @type HTMLButtonElement */ (target.closest('ul')?.previousElementSibling);\n const value = /** @type String */ (target.getAttribute('value'));\n const previous = btn.getAttribute('value');\n btn.setAttribute('value', value);\n btn.innerHTML = target.innerHTML;\n if (previous !== value) {\n this.#notifyChange();\n }\n });\n }\n get value() {\n const operator = this.#operator.getAttribute('value');\n return this.#value.value === '' ? undefined : [operator, this.#sensitivity, this.#value.value];\n }\n set value(v) {\n if (v == null) {\n this.#value.value = '';\n return;\n }\n const [operator, sensitivity, value] = v;\n this.#showOperator(operator);\n this.#sensitivity = sensitivity ?? 'IGNORE_CASE';\n this.#value.value = value;\n }\n #showOperator(operator) {\n this.#operator.setAttribute('value', operator);\n const items = Array.from(this.#operator.nextElementSibling?.querySelectorAll('li > a[value]') ?? []);\n const item = items.find((a) => a.getAttribute('value') === operator);\n if (item) {\n this.#operator.innerHTML = item.innerHTML;\n }\n }\n #notifyChange() {\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n cancelable: false,\n detail: {\n value: this.value,\n },\n }),\n );\n }\n}\n\nexport { InstantFilter, LocalDateFilter, TextFilter };\n","class LocalizationModule {\n static t(k, ...args) {\n //@ts-expect-error l10n and language come from the element class and the data stack\n const format = this.l10n?.[this.language]?.[k] ?? this.l10n?.en?.[k] ?? k;\n if (args.length === 0) {\n return format;\n }\n return format.replace(/{(\\d+)}/g, (m, is) => {\n return args[Number(is)];\n });\n }\n static tl(k, args = []) {\n return LocalizationModule.t.apply(this, [k, ...args]);\n }\n}\n\nexport { LocalizationModule };\n","import { HttpClient } from '../../httpc/index.mjs';\nimport { Checkbox } from './checkbox.mjs';\nimport { LocalDate, Instant, InputLocalDate, InputLocalTime, InputInstant } from './temporals.mjs';\nimport { InstantFilter, LocalDateFilter, TextFilter } from './filters.mjs';\nimport { FormLoader, Form } from './form.mjs';\nimport { Input } from './input.mjs';\nimport { InputFile } from './files.mjs';\nimport { RadioGroup } from './radio.mjs';\nimport { SelectLoader, Dropdown, Select } from './select.mjs';\nimport { Spinner } from './spinner.mjs';\nimport { TableLoader, Table, Pagination, SortButton } from './table.mjs';\nimport { LocalizationModule } from './l10n.mjs';\n\nclass Plugin {\n configure(registry) {\n const httpClient = HttpClient.builder().withCsrfToken().withRedirectOnUnauthorized('/').build();\n registry\n .defineModule('l10n', LocalizationModule)\n .defineComponent('http-client', httpClient)\n .defineElement('ful-spinner', Spinner)\n .defineElement('ful-form', Form)\n .defineElement('ful-checkbox', Checkbox)\n .defineElement('ful-input', Input)\n .defineElement('ful-input-file', InputFile)\n .defineElement('ful-local-date', LocalDate)\n .defineElement('ful-instant', Instant)\n .defineElement('ful-input-local-date', InputLocalDate)\n .defineElement('ful-input-local-time', InputLocalTime)\n .defineElement('ful-input-instant', InputInstant)\n .defineElement('ful-radio-group', RadioGroup)\n .defineElement('ful-table', Table)\n .defineElement('ful-pagination', Pagination)\n .defineElement('ful-sorter', SortButton)\n .defineElement('ful-filter-instant', InstantFilter)\n .defineElement('ful-filter-local-date', LocalDateFilter)\n .defineElement('ful-filter-text', TextFilter)\n .defineElement('ful-select', Select)\n .defineElement('ful-dropdown', Dropdown)\n .defineComponent('loaders:select', SelectLoader)\n .defineComponent('loaders:form', FormLoader)\n .defineComponent('loaders:table', TableLoader)\n .defineOverlay({\n language: navigator?.language?.split('-')?.[0] ?? 'en',\n });\n }\n}\n\nexport { Plugin };\n"],"names":["registry","ParsedElement","Attributes","Failure","Fragments","Templates","Nodes","Rendering","HttpClient"],"mappings":"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"}
|