{"version":3,"file":"MutationObserverUtil.js","names":["defineDs","observeElement","container","callback","config","arguments","length","undefined","childList","subtree","observer","MutationObserver","mutationsList","mutation","observe"],"sources":["DanskeSpil/Domain/NumberGames/Scripts/Helpers/MutationObserverUtil.js"],"sourcesContent":["defineDs('DanskeSpil/Domain/NumberGames/Scripts/Helpers/MutationObserverUtil', function () {\r\n\r\n const observeElement = (container, callback, config = {\r\n childList: true,\r\n subtree: true,\r\n }) => {\r\n // -- config options --\r\n // attributes: true, // Watch for attribute changes\r\n // childList: true, // Watch for addition/removal of child nodes\r\n // subtree: true, // Include all descendants\r\n // characterData: true, // Watch for text content changes\r\n\r\n const observer = new MutationObserver((mutationsList) => {\r\n for (const mutation of mutationsList) {\r\n callback(mutation, observer, container); // Pass the observer to the callback\r\n }\r\n });\r\n\r\n observer.observe(container, config);\r\n\r\n return observer; // Return the observer so it can be disconnected if needed\r\n };\r\n\r\n // exports\r\n return {\r\n observer: observeElement,\r\n };\r\n});\r\n"],"mappings":"AAAAA,QAAQ,CAAC,oEAAoE,EAAE,YAAY;EAEzF,IAAMC,cAAc,GAAG,SAAAA,CAACC,SAAS,EAAEC,QAAQ,EAGrC;IAAA,IAHuCC,MAAM,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG;MACpDG,SAAS,EAAE,IAAI;MACfC,OAAO,EAAE;IACX,CAAC;IACC;IACA;IACA;IACA;IACA;;IAEA,IAAMC,QAAQ,GAAG,IAAIC,gBAAgB,CAAEC,aAAa,IAAK;MACvD,KAAK,IAAMC,QAAQ,IAAID,aAAa,EAAE;QACpCT,QAAQ,CAACU,QAAQ,EAAEH,QAAQ,EAAER,SAAS,CAAC,CAAC,CAAC;MAC3C;IACF,CAAC,CAAC;IAEFQ,QAAQ,CAACI,OAAO,CAACZ,SAAS,EAAEE,MAAM,CAAC;IAEnC,OAAOM,QAAQ,CAAC,CAAC;EACnB,CAAC;;EAED;EACA,OAAO;IACLA,QAAQ,EAAET;EACZ,CAAC;AACH,CAAC,CAAC","ignoreList":[]}