{"version":3,"file":"DataKey-9a4b2364.js","sources":["../../../../../../app/node_modules/@restart/hooks/esm/usePrevious.js","../../../../../../app/node_modules/dom-helpers/esm/querySelectorAll.js","../../../../../../app/node_modules/@restart/ui/esm/DataKey.js"],"sourcesContent":["import { useEffect, useRef } from 'react';\n\n/**\n * Store the last of some value. Tracked via a `Ref` only updating it\n * after the component renders.\n *\n * Helpful if you need to compare a prop value to it's previous value during render.\n *\n * ```ts\n * function Component(props) {\n * const lastProps = usePrevious(props)\n *\n * if (lastProps.foo !== props.foo)\n * resetValueFromProps(props.foo)\n * }\n * ```\n *\n * @param value the value to track\n */\nexport default function usePrevious(value) {\n const ref = useRef(null);\n useEffect(() => {\n ref.current = value;\n });\n return ref.current;\n}","var toArray = Function.prototype.bind.call(Function.prototype.call, [].slice);\n/**\n * Runs `querySelectorAll` on a given element.\n * \n * @param element the element\n * @param selector the selector\n */\n\nexport default function qsa(element, selector) {\n return toArray(element.querySelectorAll(selector));\n}","export const ATTRIBUTE_PREFIX = `data-rr-ui-`;\nexport const PROPERTY_PREFIX = `rrUi`;\nexport function dataAttr(property) {\n return `${ATTRIBUTE_PREFIX}${property}`;\n}\nexport function dataProp(property) {\n return `${PROPERTY_PREFIX}${property}`;\n}"],"names":["usePrevious","value","ref","useRef","useEffect","toArray","qsa","element","selector","ATTRIBUTE_PREFIX","PROPERTY_PREFIX","dataAttr","property","dataProp"],"mappings":"wCAmBe,SAASA,EAAYC,EAAO,CACzC,MAAMC,EAAMC,SAAO,IAAI,EACvBC,OAAAA,EAAAA,UAAU,IAAM,CACdF,EAAI,QAAUD,CAClB,CAAG,EACMC,EAAI,OACb,CCzBA,IAAIG,EAAU,SAAS,UAAU,KAAK,KAAK,SAAS,UAAU,KAAM,GAAG,KAAK,EAQ7D,SAASC,EAAIC,EAASC,EAAU,CAC7C,OAAOH,EAAQE,EAAQ,iBAAiBC,CAAQ,CAAC,CACnD,CCVO,MAAMC,EAAmB,cACnBC,EAAkB,OACxB,SAASC,EAASC,EAAU,CACjC,MAAO,GAAGH,CAAgB,GAAGG,CAAQ,EACvC,CACO,SAASC,EAASD,EAAU,CACjC,MAAO,GAAGF,CAAe,GAAGE,CAAQ,EACtC","x_google_ignoreList":[0,1,2]}