{"version":3,"file":"TokenRow.BN1lUV10.js","sources":["../../../../../../../../node_modules/svelte/src/internal/client/dom/elements/actions.js","../../../../../../../../node_modules/svelte/src/internal/client/dom/elements/bindings/shared.js","../../../../../../../../node_modules/svelte/src/internal/client/dom/elements/bindings/input.js","../../../../../../../../node_modules/svelte/src/internal/client/dom/legacy/misc.js","../../../../../../../../node_modules/svelte/src/motion/utils.js","../../../../../../../../node_modules/svelte/src/motion/tweened.js","../../../../../../src/lib/actions/tooltip.ts","../../../../../../src/lib/components/common/Button.svelte","../../../../../../../../node_modules/svelte/src/transition/index.js","../../../../../../../../node_modules/svelte-portal/src/Portal.svelte","../../../../../../src/lib/components/common/Modal.svelte","../../../../../../src/lib/components/sidebar/TokenRow.svelte"],"sourcesContent":["/** @import { ActionPayload } from '#client' */\nimport { effect, render_effect } from '../../reactivity/effects.js';\nimport { safe_not_equal } from '../../reactivity/equality.js';\nimport { deep_read_state, untrack } from '../../runtime.js';\n\n/**\n * @template P\n * @param {Element} dom\n * @param {(dom: Element, value?: P) => ActionPayload
} action\n * @param {() => P} [get_value]\n * @returns {void}\n */\nexport function action(dom, action, get_value) {\n\teffect(() => {\n\t\tvar payload = untrack(() => action(dom, get_value?.()) || {});\n\n\t\tif (get_value && payload?.update) {\n\t\t\tvar inited = false;\n\t\t\t/** @type {P} */\n\t\t\tvar prev = /** @type {any} */ ({}); // initialize with something so it's never equal on first run\n\n\t\t\trender_effect(() => {\n\t\t\t\tvar value = get_value();\n\n\t\t\t\t// Action's update method is coarse-grained, i.e. when anything in the passed value changes, update.\n\t\t\t\t// This works in legacy mode because of mutable_source being updated as a whole, but when using $state\n\t\t\t\t// together with actions and mutation, it wouldn't notice the change without a deep read.\n\t\t\t\tdeep_read_state(value);\n\n\t\t\t\tif (inited && safe_not_equal(prev, value)) {\n\t\t\t\t\tprev = value;\n\t\t\t\t\t/** @type {Function} */ (payload.update)(value);\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tinited = true;\n\t\t}\n\n\t\tif (payload?.destroy) {\n\t\t\treturn () => /** @type {Function} */ (payload.destroy)();\n\t\t}\n\t});\n}\n","import { teardown } from '../../../reactivity/effects.js';\nimport { add_form_reset_listener } from '../misc.js';\n\n/**\n * Fires the handler once immediately (unless corresponding arg is set to `false`),\n * then listens to the given events until the render effect context is destroyed\n * @param {EventTarget} target\n * @param {Array