// node_modules/@lit/reactive-element/development/decorators/base.js var desc = (obj, name, descriptor) => { descriptor.configurable = true; descriptor.enumerable = true; if ( // We check for Reflect.decorate each time, in case the zombiefill // is applied via lazy loading some Angular code. Reflect.decorate && typeof name !== "object" ) { Object.defineProperty(obj, name, descriptor); } return descriptor; }; // node_modules/@lit/reactive-element/development/decorators/query.js var DEV_MODE = true; var issueWarning; if (DEV_MODE) { const issuedWarnings = globalThis.litIssuedWarnings ??= /* @__PURE__ */ new Set(); issueWarning = (code, warning) => { warning += code ? ` See https://lit.dev/msg/${code} for more information.` : ""; if (!issuedWarnings.has(warning)) { console.warn(warning); issuedWarnings.add(warning); } }; } function query(selector, cache) { return (protoOrTarget, nameOrContext, descriptor) => { const doQuery = (el) => { const result = el.renderRoot?.querySelector(selector) ?? null; if (DEV_MODE && result === null && cache && !el.hasUpdated) { const name = typeof nameOrContext === "object" ? nameOrContext.name : nameOrContext; issueWarning("", `@query'd field ${JSON.stringify(String(name))} with the 'cache' flag set for selector '${selector}' has been accessed before the first update and returned null. This is expected if the renderRoot tree has not been provided beforehand (e.g. via Declarative Shadow DOM). Therefore the value hasn't been cached.`); } return result; }; if (cache) { const { get, set } = typeof nameOrContext === "object" ? protoOrTarget : descriptor ?? (() => { const key = DEV_MODE ? Symbol(`${String(nameOrContext)} (@query() cache)`) : Symbol(); return { get() { return this[key]; }, set(v) { this[key] = v; } }; })(); return desc(protoOrTarget, nameOrContext, { get() { let result = get.call(this); if (result === void 0) { result = doQuery(this); if (result !== null || this.hasUpdated) { set.call(this, result); } } return result; } }); } else { return desc(protoOrTarget, nameOrContext, { get() { return doQuery(this); } }); } }; } export { desc, query }; /*! Bundled license information: @lit/reactive-element/development/decorators/base.js: (** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: BSD-3-Clause *) @lit/reactive-element/development/decorators/query.js: (** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: BSD-3-Clause *) */ //# sourceMappingURL=chunk-GPHXI3E5.js.map