{"version":3,"file":"js/application-149b9fc9d5952ba55834.js","mappings":"0HAGAA,MAAMC,YAAY,SAClBD,MAAME,QAAQC,OAAQ,EAEtB,MAAMC,EAAcC,EAAAA,GAAYC,QAGhCF,EAAYG,OAAQ,EACpBC,OAAOC,SAAWL,ECPlB,oBAA6BM,EAAAA,GAC3BC,eAAiB,CAAC,UAElBC,OAAAA,GACEC,EAAE,+BAA+BC,GAAG,kBAAkB,WACpD,IAAIC,EAAQ,IAAIC,MAAM,SAAU,CAAEC,SAAS,IAC3CC,KAAKC,cAAcJ,EACrB,IAEAF,EAAE,+BAA+BC,GAAG,oBAAoB,WACtDD,EAAE,+CAA+CO,WAAW,YAC5D,IAAIL,EAAQ,IAAIC,MAAM,SAAU,CAAEC,SAAS,IAC3CC,KAAKC,cAAcJ,EACrB,GACF,CAEAM,MAAAA,CAAON,GACLA,EAAMO,OAAOC,KAAKC,QACpB,GClBF,gBAA6Bd,EAAAA,GAC3BE,OAAAA,GACEC,EAAE,SAASC,GAAG,aAAcW,IAC1BA,EAAEH,OAAOC,KAAKC,QAAQ,GAE1B,GCDFpB,EAAYsB,SAAS,UAAWC,GAGhCvB,EAAYsB,SAAS,SAAUE,E","sources":["webpack://nuvis/./app/javascript/controllers/application.js","webpack://nuvis/./app/javascript/controllers/select2_controller.js","webpack://nuvis/./app/javascript/controllers/icheck_controller.js","webpack://nuvis/./app/javascript/controllers/index.js"],"sourcesContent":["import { Application } from '@hotwired/stimulus';\nimport '@hotwired/turbo-rails';\n\nTurbo.setFormMode('optin');\nTurbo.session.drive = false;\n\nconst application = Application.start();\n\n// Configure Stimulus development experience\napplication.debug = false;\nwindow.Stimulus = application;\n\nexport { application };\n","import { Controller } from '@hotwired/stimulus';\n\n// Connects to data-controller=\"select2\"\nexport default class extends Controller {\n  static targets = ['select'];\n\n  connect() {\n    $('select.select2_all_selected').on('select2:select', function () {\n      let event = new Event('change', { bubbles: true });\n      this.dispatchEvent(event);\n    });\n\n    $('select.select2_all_selected').on('select2:unselect', function () {\n      $('select.select2_all_selected option:selected').removeAttr('selected');\n      let event = new Event('change', { bubbles: true });\n      this.dispatchEvent(event);\n    });\n  }\n\n  update(event) {\n    event.target.form.submit();\n  }\n}\n","import { Controller } from '@hotwired/stimulus';\n\n// Connects to data-controller=\"icheck\"\nexport default class extends Controller {\n  connect() {\n    $('input').on('ifToggled', (e) => {\n      e.target.form.submit();\n    });\n  }\n}\n","// This file is auto-generated by ./bin/rails stimulus:manifest:update\n// Run that command whenever you add a new controller or create them with\n// ./bin/rails generate stimulus controllerName\n\nimport { application } from './application';\n\nimport Select2Controller from './select2_controller';\napplication.register('select2', Select2Controller);\n\nimport iCheckController from './icheck_controller';\napplication.register('icheck', iCheckController);\n"],"names":["Turbo","setFormMode","session","drive","application","Application","start","debug","window","Stimulus","Controller","static","connect","$","on","event","Event","bubbles","this","dispatchEvent","removeAttr","update","target","form","submit","e","register","Select2Controller","iCheckController"],"sourceRoot":""}