ariadne_view_components 0.0.3 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -7
  3. data/app/assets/builds/ariadne_view_components.css +1874 -0
  4. data/app/assets/config/manifest.js +2 -0
  5. data/app/assets/javascripts/ariadne.d.ts +1 -0
  6. data/app/assets/javascripts/ariadne_view_components.js +1 -1
  7. data/app/assets/javascripts/ariadne_view_components.js.map +1 -1
  8. data/app/assets/javascripts/clipboard-copy-component.d.ts +4 -0
  9. data/app/assets/javascripts/slideover-component.d.ts +9 -0
  10. data/app/assets/javascripts/time_ago_component.d.ts +1 -0
  11. data/app/assets/javascripts/tooltip-component.d.ts +24 -0
  12. data/app/assets/stylesheets/application.ariadne_view_components.css +5 -0
  13. data/app/assets/stylesheets/tooltip-component.css +37 -0
  14. data/app/components/ariadne/ariadne.d.ts +1 -0
  15. data/app/components/ariadne/ariadne.js +9 -0
  16. data/app/components/ariadne/ariadne.ts +8 -9
  17. data/app/components/ariadne/base_button.rb +10 -8
  18. data/app/components/ariadne/blankslate_component.html.erb +26 -0
  19. data/app/components/ariadne/blankslate_component.rb +151 -0
  20. data/app/components/ariadne/body_component.rb +30 -0
  21. data/app/components/ariadne/button_component.html.erb +1 -1
  22. data/app/components/ariadne/button_component.rb +9 -11
  23. data/app/components/ariadne/clipboard-copy-component.d.ts +4 -0
  24. data/app/components/ariadne/clipboard-copy-component.js +18 -0
  25. data/app/components/ariadne/{clipboard_copy_component.ts → clipboard-copy-component.ts} +0 -0
  26. data/app/components/ariadne/clipboard_copy_component.d.ts +4 -0
  27. data/app/components/ariadne/clipboard_copy_component.html.erb +2 -2
  28. data/app/components/ariadne/clipboard_copy_component.js +18 -0
  29. data/app/components/ariadne/clipboard_copy_component.rb +45 -5
  30. data/app/components/ariadne/comment_component.html.erb +25 -0
  31. data/app/components/ariadne/comment_component.rb +45 -0
  32. data/app/components/ariadne/component.rb +6 -1
  33. data/app/components/ariadne/container_component.html.erb +3 -0
  34. data/app/components/ariadne/container_component.rb +25 -0
  35. data/app/components/ariadne/flash_component.rb +9 -9
  36. data/app/components/ariadne/flex_component.rb +51 -0
  37. data/app/components/ariadne/footer_component.html.erb +7 -0
  38. data/app/components/ariadne/footer_component.rb +23 -0
  39. data/app/components/ariadne/grid_component.html.erb +26 -0
  40. data/app/components/ariadne/grid_component.rb +66 -0
  41. data/app/components/ariadne/header_component.html.erb +29 -0
  42. data/app/components/ariadne/header_component.rb +114 -0
  43. data/app/components/ariadne/heading_component.rb +3 -3
  44. data/app/components/ariadne/heroicon_component.html.erb +2 -5
  45. data/app/components/ariadne/heroicon_component.rb +20 -7
  46. data/app/components/ariadne/image_component.rb +5 -3
  47. data/app/components/ariadne/inline_flex_component.html.erb +5 -0
  48. data/app/components/ariadne/inline_flex_component.rb +65 -0
  49. data/app/components/ariadne/link_component.rb +65 -0
  50. data/app/components/ariadne/list_component.html.erb +15 -0
  51. data/app/components/ariadne/list_component.rb +67 -0
  52. data/app/components/ariadne/main_component.rb +32 -0
  53. data/app/components/ariadne/pill_component.html.erb +3 -0
  54. data/app/components/ariadne/pill_component.rb +30 -0
  55. data/app/components/ariadne/slideover-component.d.ts +9 -0
  56. data/app/components/ariadne/slideover-component.js +20 -0
  57. data/app/components/ariadne/slideover-component.ts +26 -0
  58. data/app/components/ariadne/slideover_component.d.ts +9 -0
  59. data/app/components/ariadne/slideover_component.html.erb +11 -0
  60. data/app/components/ariadne/slideover_component.js +19 -0
  61. data/app/components/ariadne/slideover_component.rb +81 -0
  62. data/app/components/ariadne/time_ago_component.d.ts +1 -0
  63. data/app/components/ariadne/time_ago_component.js +1 -0
  64. data/app/components/ariadne/time_ago_component.rb +56 -0
  65. data/app/components/ariadne/time_ago_component.ts +1 -0
  66. data/app/components/ariadne/timeline_component.html.erb +19 -0
  67. data/app/components/ariadne/timeline_component.rb +34 -0
  68. data/app/components/ariadne/tooltip-component.d.ts +24 -0
  69. data/app/components/ariadne/tooltip-component.js +42 -0
  70. data/app/components/ariadne/tooltip-component.ts +57 -0
  71. data/app/components/ariadne/tooltip_component.html.erb +4 -0
  72. data/app/components/ariadne/tooltip_component.rb +34 -31
  73. data/app/lib/ariadne/action_view_extensions/form_helper.rb +23 -0
  74. data/app/lib/ariadne/form_builder.rb +71 -0
  75. data/lib/ariadne/classify.rb +4 -90
  76. data/lib/ariadne/view_components/engine.rb +8 -0
  77. data/lib/ariadne/view_components/version.rb +1 -1
  78. data/lib/ariadne/view_components.rb +31 -29
  79. data/lib/rubocop/cop/ariadne/ariadne_heroicon.rb +2 -2
  80. data/lib/tasks/docs.rake +52 -58
  81. data/static/arguments.yml +290 -17
  82. data/static/audited_at.json +18 -0
  83. data/static/classes.yml +189 -1
  84. data/static/constants.json +173 -30
  85. data/static/statuses.json +18 -0
  86. metadata +77 -9
  87. data/app/assets/stylesheets/application.tailwind.css +0 -3
  88. data/lib/tasks/tailwind.rake +0 -31
@@ -1 +1 @@
1
- {"version":3,"file":"ariadne_view_components.js","sources":["../../../node_modules/@hotwired/stimulus/dist/stimulus.js","../../components/ariadne/ariadne.js","../../components/ariadne/clipboard_copy_component.js"],"sourcesContent":["/*\nStimulus 3.0.1\nCopyright © 2021 Basecamp, LLC\n */\nclass EventListener {\n constructor(eventTarget, eventName, eventOptions) {\n this.eventTarget = eventTarget;\n this.eventName = eventName;\n this.eventOptions = eventOptions;\n this.unorderedBindings = new Set();\n }\n connect() {\n this.eventTarget.addEventListener(this.eventName, this, this.eventOptions);\n }\n disconnect() {\n this.eventTarget.removeEventListener(this.eventName, this, this.eventOptions);\n }\n bindingConnected(binding) {\n this.unorderedBindings.add(binding);\n }\n bindingDisconnected(binding) {\n this.unorderedBindings.delete(binding);\n }\n handleEvent(event) {\n const extendedEvent = extendEvent(event);\n for (const binding of this.bindings) {\n if (extendedEvent.immediatePropagationStopped) {\n break;\n }\n else {\n binding.handleEvent(extendedEvent);\n }\n }\n }\n get bindings() {\n return Array.from(this.unorderedBindings).sort((left, right) => {\n const leftIndex = left.index, rightIndex = right.index;\n return leftIndex < rightIndex ? -1 : leftIndex > rightIndex ? 1 : 0;\n });\n }\n}\nfunction extendEvent(event) {\n if (\"immediatePropagationStopped\" in event) {\n return event;\n }\n else {\n const { stopImmediatePropagation } = event;\n return Object.assign(event, {\n immediatePropagationStopped: false,\n stopImmediatePropagation() {\n this.immediatePropagationStopped = true;\n stopImmediatePropagation.call(this);\n }\n });\n }\n}\n\nclass Dispatcher {\n constructor(application) {\n this.application = application;\n this.eventListenerMaps = new Map;\n this.started = false;\n }\n start() {\n if (!this.started) {\n this.started = true;\n this.eventListeners.forEach(eventListener => eventListener.connect());\n }\n }\n stop() {\n if (this.started) {\n this.started = false;\n this.eventListeners.forEach(eventListener => eventListener.disconnect());\n }\n }\n get eventListeners() {\n return Array.from(this.eventListenerMaps.values())\n .reduce((listeners, map) => listeners.concat(Array.from(map.values())), []);\n }\n bindingConnected(binding) {\n this.fetchEventListenerForBinding(binding).bindingConnected(binding);\n }\n bindingDisconnected(binding) {\n this.fetchEventListenerForBinding(binding).bindingDisconnected(binding);\n }\n handleError(error, message, detail = {}) {\n this.application.handleError(error, `Error ${message}`, detail);\n }\n fetchEventListenerForBinding(binding) {\n const { eventTarget, eventName, eventOptions } = binding;\n return this.fetchEventListener(eventTarget, eventName, eventOptions);\n }\n fetchEventListener(eventTarget, eventName, eventOptions) {\n const eventListenerMap = this.fetchEventListenerMapForEventTarget(eventTarget);\n const cacheKey = this.cacheKey(eventName, eventOptions);\n let eventListener = eventListenerMap.get(cacheKey);\n if (!eventListener) {\n eventListener = this.createEventListener(eventTarget, eventName, eventOptions);\n eventListenerMap.set(cacheKey, eventListener);\n }\n return eventListener;\n }\n createEventListener(eventTarget, eventName, eventOptions) {\n const eventListener = new EventListener(eventTarget, eventName, eventOptions);\n if (this.started) {\n eventListener.connect();\n }\n return eventListener;\n }\n fetchEventListenerMapForEventTarget(eventTarget) {\n let eventListenerMap = this.eventListenerMaps.get(eventTarget);\n if (!eventListenerMap) {\n eventListenerMap = new Map;\n this.eventListenerMaps.set(eventTarget, eventListenerMap);\n }\n return eventListenerMap;\n }\n cacheKey(eventName, eventOptions) {\n const parts = [eventName];\n Object.keys(eventOptions).sort().forEach(key => {\n parts.push(`${eventOptions[key] ? \"\" : \"!\"}${key}`);\n });\n return parts.join(\":\");\n }\n}\n\nconst descriptorPattern = /^((.+?)(@(window|document))?->)?(.+?)(#([^:]+?))(:(.+))?$/;\nfunction parseActionDescriptorString(descriptorString) {\n const source = descriptorString.trim();\n const matches = source.match(descriptorPattern) || [];\n return {\n eventTarget: parseEventTarget(matches[4]),\n eventName: matches[2],\n eventOptions: matches[9] ? parseEventOptions(matches[9]) : {},\n identifier: matches[5],\n methodName: matches[7]\n };\n}\nfunction parseEventTarget(eventTargetName) {\n if (eventTargetName == \"window\") {\n return window;\n }\n else if (eventTargetName == \"document\") {\n return document;\n }\n}\nfunction parseEventOptions(eventOptions) {\n return eventOptions.split(\":\").reduce((options, token) => Object.assign(options, { [token.replace(/^!/, \"\")]: !/^!/.test(token) }), {});\n}\nfunction stringifyEventTarget(eventTarget) {\n if (eventTarget == window) {\n return \"window\";\n }\n else if (eventTarget == document) {\n return \"document\";\n }\n}\n\nfunction camelize(value) {\n return value.replace(/(?:[_-])([a-z0-9])/g, (_, char) => char.toUpperCase());\n}\nfunction capitalize(value) {\n return value.charAt(0).toUpperCase() + value.slice(1);\n}\nfunction dasherize(value) {\n return value.replace(/([A-Z])/g, (_, char) => `-${char.toLowerCase()}`);\n}\nfunction tokenize(value) {\n return value.match(/[^\\s]+/g) || [];\n}\n\nclass Action {\n constructor(element, index, descriptor) {\n this.element = element;\n this.index = index;\n this.eventTarget = descriptor.eventTarget || element;\n this.eventName = descriptor.eventName || getDefaultEventNameForElement(element) || error(\"missing event name\");\n this.eventOptions = descriptor.eventOptions || {};\n this.identifier = descriptor.identifier || error(\"missing identifier\");\n this.methodName = descriptor.methodName || error(\"missing method name\");\n }\n static forToken(token) {\n return new this(token.element, token.index, parseActionDescriptorString(token.content));\n }\n toString() {\n const eventNameSuffix = this.eventTargetName ? `@${this.eventTargetName}` : \"\";\n return `${this.eventName}${eventNameSuffix}->${this.identifier}#${this.methodName}`;\n }\n get params() {\n if (this.eventTarget instanceof Element) {\n return this.getParamsFromEventTargetAttributes(this.eventTarget);\n }\n else {\n return {};\n }\n }\n getParamsFromEventTargetAttributes(eventTarget) {\n const params = {};\n const pattern = new RegExp(`^data-${this.identifier}-(.+)-param$`);\n const attributes = Array.from(eventTarget.attributes);\n attributes.forEach(({ name, value }) => {\n const match = name.match(pattern);\n const key = match && match[1];\n if (key) {\n Object.assign(params, { [camelize(key)]: typecast(value) });\n }\n });\n return params;\n }\n get eventTargetName() {\n return stringifyEventTarget(this.eventTarget);\n }\n}\nconst defaultEventNames = {\n \"a\": e => \"click\",\n \"button\": e => \"click\",\n \"form\": e => \"submit\",\n \"details\": e => \"toggle\",\n \"input\": e => e.getAttribute(\"type\") == \"submit\" ? \"click\" : \"input\",\n \"select\": e => \"change\",\n \"textarea\": e => \"input\"\n};\nfunction getDefaultEventNameForElement(element) {\n const tagName = element.tagName.toLowerCase();\n if (tagName in defaultEventNames) {\n return defaultEventNames[tagName](element);\n }\n}\nfunction error(message) {\n throw new Error(message);\n}\nfunction typecast(value) {\n try {\n return JSON.parse(value);\n }\n catch (o_O) {\n return value;\n }\n}\n\nclass Binding {\n constructor(context, action) {\n this.context = context;\n this.action = action;\n }\n get index() {\n return this.action.index;\n }\n get eventTarget() {\n return this.action.eventTarget;\n }\n get eventOptions() {\n return this.action.eventOptions;\n }\n get identifier() {\n return this.context.identifier;\n }\n handleEvent(event) {\n if (this.willBeInvokedByEvent(event)) {\n this.invokeWithEvent(event);\n }\n }\n get eventName() {\n return this.action.eventName;\n }\n get method() {\n const method = this.controller[this.methodName];\n if (typeof method == \"function\") {\n return method;\n }\n throw new Error(`Action \"${this.action}\" references undefined method \"${this.methodName}\"`);\n }\n invokeWithEvent(event) {\n const { target, currentTarget } = event;\n try {\n const { params } = this.action;\n const actionEvent = Object.assign(event, { params });\n this.method.call(this.controller, actionEvent);\n this.context.logDebugActivity(this.methodName, { event, target, currentTarget, action: this.methodName });\n }\n catch (error) {\n const { identifier, controller, element, index } = this;\n const detail = { identifier, controller, element, index, event };\n this.context.handleError(error, `invoking action \"${this.action}\"`, detail);\n }\n }\n willBeInvokedByEvent(event) {\n const eventTarget = event.target;\n if (this.element === eventTarget) {\n return true;\n }\n else if (eventTarget instanceof Element && this.element.contains(eventTarget)) {\n return this.scope.containsElement(eventTarget);\n }\n else {\n return this.scope.containsElement(this.action.element);\n }\n }\n get controller() {\n return this.context.controller;\n }\n get methodName() {\n return this.action.methodName;\n }\n get element() {\n return this.scope.element;\n }\n get scope() {\n return this.context.scope;\n }\n}\n\nclass ElementObserver {\n constructor(element, delegate) {\n this.mutationObserverInit = { attributes: true, childList: true, subtree: true };\n this.element = element;\n this.started = false;\n this.delegate = delegate;\n this.elements = new Set;\n this.mutationObserver = new MutationObserver((mutations) => this.processMutations(mutations));\n }\n start() {\n if (!this.started) {\n this.started = true;\n this.mutationObserver.observe(this.element, this.mutationObserverInit);\n this.refresh();\n }\n }\n pause(callback) {\n if (this.started) {\n this.mutationObserver.disconnect();\n this.started = false;\n }\n callback();\n if (!this.started) {\n this.mutationObserver.observe(this.element, this.mutationObserverInit);\n this.started = true;\n }\n }\n stop() {\n if (this.started) {\n this.mutationObserver.takeRecords();\n this.mutationObserver.disconnect();\n this.started = false;\n }\n }\n refresh() {\n if (this.started) {\n const matches = new Set(this.matchElementsInTree());\n for (const element of Array.from(this.elements)) {\n if (!matches.has(element)) {\n this.removeElement(element);\n }\n }\n for (const element of Array.from(matches)) {\n this.addElement(element);\n }\n }\n }\n processMutations(mutations) {\n if (this.started) {\n for (const mutation of mutations) {\n this.processMutation(mutation);\n }\n }\n }\n processMutation(mutation) {\n if (mutation.type == \"attributes\") {\n this.processAttributeChange(mutation.target, mutation.attributeName);\n }\n else if (mutation.type == \"childList\") {\n this.processRemovedNodes(mutation.removedNodes);\n this.processAddedNodes(mutation.addedNodes);\n }\n }\n processAttributeChange(node, attributeName) {\n const element = node;\n if (this.elements.has(element)) {\n if (this.delegate.elementAttributeChanged && this.matchElement(element)) {\n this.delegate.elementAttributeChanged(element, attributeName);\n }\n else {\n this.removeElement(element);\n }\n }\n else if (this.matchElement(element)) {\n this.addElement(element);\n }\n }\n processRemovedNodes(nodes) {\n for (const node of Array.from(nodes)) {\n const element = this.elementFromNode(node);\n if (element) {\n this.processTree(element, this.removeElement);\n }\n }\n }\n processAddedNodes(nodes) {\n for (const node of Array.from(nodes)) {\n const element = this.elementFromNode(node);\n if (element && this.elementIsActive(element)) {\n this.processTree(element, this.addElement);\n }\n }\n }\n matchElement(element) {\n return this.delegate.matchElement(element);\n }\n matchElementsInTree(tree = this.element) {\n return this.delegate.matchElementsInTree(tree);\n }\n processTree(tree, processor) {\n for (const element of this.matchElementsInTree(tree)) {\n processor.call(this, element);\n }\n }\n elementFromNode(node) {\n if (node.nodeType == Node.ELEMENT_NODE) {\n return node;\n }\n }\n elementIsActive(element) {\n if (element.isConnected != this.element.isConnected) {\n return false;\n }\n else {\n return this.element.contains(element);\n }\n }\n addElement(element) {\n if (!this.elements.has(element)) {\n if (this.elementIsActive(element)) {\n this.elements.add(element);\n if (this.delegate.elementMatched) {\n this.delegate.elementMatched(element);\n }\n }\n }\n }\n removeElement(element) {\n if (this.elements.has(element)) {\n this.elements.delete(element);\n if (this.delegate.elementUnmatched) {\n this.delegate.elementUnmatched(element);\n }\n }\n }\n}\n\nclass AttributeObserver {\n constructor(element, attributeName, delegate) {\n this.attributeName = attributeName;\n this.delegate = delegate;\n this.elementObserver = new ElementObserver(element, this);\n }\n get element() {\n return this.elementObserver.element;\n }\n get selector() {\n return `[${this.attributeName}]`;\n }\n start() {\n this.elementObserver.start();\n }\n pause(callback) {\n this.elementObserver.pause(callback);\n }\n stop() {\n this.elementObserver.stop();\n }\n refresh() {\n this.elementObserver.refresh();\n }\n get started() {\n return this.elementObserver.started;\n }\n matchElement(element) {\n return element.hasAttribute(this.attributeName);\n }\n matchElementsInTree(tree) {\n const match = this.matchElement(tree) ? [tree] : [];\n const matches = Array.from(tree.querySelectorAll(this.selector));\n return match.concat(matches);\n }\n elementMatched(element) {\n if (this.delegate.elementMatchedAttribute) {\n this.delegate.elementMatchedAttribute(element, this.attributeName);\n }\n }\n elementUnmatched(element) {\n if (this.delegate.elementUnmatchedAttribute) {\n this.delegate.elementUnmatchedAttribute(element, this.attributeName);\n }\n }\n elementAttributeChanged(element, attributeName) {\n if (this.delegate.elementAttributeValueChanged && this.attributeName == attributeName) {\n this.delegate.elementAttributeValueChanged(element, attributeName);\n }\n }\n}\n\nclass StringMapObserver {\n constructor(element, delegate) {\n this.element = element;\n this.delegate = delegate;\n this.started = false;\n this.stringMap = new Map;\n this.mutationObserver = new MutationObserver(mutations => this.processMutations(mutations));\n }\n start() {\n if (!this.started) {\n this.started = true;\n this.mutationObserver.observe(this.element, { attributes: true, attributeOldValue: true });\n this.refresh();\n }\n }\n stop() {\n if (this.started) {\n this.mutationObserver.takeRecords();\n this.mutationObserver.disconnect();\n this.started = false;\n }\n }\n refresh() {\n if (this.started) {\n for (const attributeName of this.knownAttributeNames) {\n this.refreshAttribute(attributeName, null);\n }\n }\n }\n processMutations(mutations) {\n if (this.started) {\n for (const mutation of mutations) {\n this.processMutation(mutation);\n }\n }\n }\n processMutation(mutation) {\n const attributeName = mutation.attributeName;\n if (attributeName) {\n this.refreshAttribute(attributeName, mutation.oldValue);\n }\n }\n refreshAttribute(attributeName, oldValue) {\n const key = this.delegate.getStringMapKeyForAttribute(attributeName);\n if (key != null) {\n if (!this.stringMap.has(attributeName)) {\n this.stringMapKeyAdded(key, attributeName);\n }\n const value = this.element.getAttribute(attributeName);\n if (this.stringMap.get(attributeName) != value) {\n this.stringMapValueChanged(value, key, oldValue);\n }\n if (value == null) {\n const oldValue = this.stringMap.get(attributeName);\n this.stringMap.delete(attributeName);\n if (oldValue)\n this.stringMapKeyRemoved(key, attributeName, oldValue);\n }\n else {\n this.stringMap.set(attributeName, value);\n }\n }\n }\n stringMapKeyAdded(key, attributeName) {\n if (this.delegate.stringMapKeyAdded) {\n this.delegate.stringMapKeyAdded(key, attributeName);\n }\n }\n stringMapValueChanged(value, key, oldValue) {\n if (this.delegate.stringMapValueChanged) {\n this.delegate.stringMapValueChanged(value, key, oldValue);\n }\n }\n stringMapKeyRemoved(key, attributeName, oldValue) {\n if (this.delegate.stringMapKeyRemoved) {\n this.delegate.stringMapKeyRemoved(key, attributeName, oldValue);\n }\n }\n get knownAttributeNames() {\n return Array.from(new Set(this.currentAttributeNames.concat(this.recordedAttributeNames)));\n }\n get currentAttributeNames() {\n return Array.from(this.element.attributes).map(attribute => attribute.name);\n }\n get recordedAttributeNames() {\n return Array.from(this.stringMap.keys());\n }\n}\n\nfunction add(map, key, value) {\n fetch(map, key).add(value);\n}\nfunction del(map, key, value) {\n fetch(map, key).delete(value);\n prune(map, key);\n}\nfunction fetch(map, key) {\n let values = map.get(key);\n if (!values) {\n values = new Set();\n map.set(key, values);\n }\n return values;\n}\nfunction prune(map, key) {\n const values = map.get(key);\n if (values != null && values.size == 0) {\n map.delete(key);\n }\n}\n\nclass Multimap {\n constructor() {\n this.valuesByKey = new Map();\n }\n get keys() {\n return Array.from(this.valuesByKey.keys());\n }\n get values() {\n const sets = Array.from(this.valuesByKey.values());\n return sets.reduce((values, set) => values.concat(Array.from(set)), []);\n }\n get size() {\n const sets = Array.from(this.valuesByKey.values());\n return sets.reduce((size, set) => size + set.size, 0);\n }\n add(key, value) {\n add(this.valuesByKey, key, value);\n }\n delete(key, value) {\n del(this.valuesByKey, key, value);\n }\n has(key, value) {\n const values = this.valuesByKey.get(key);\n return values != null && values.has(value);\n }\n hasKey(key) {\n return this.valuesByKey.has(key);\n }\n hasValue(value) {\n const sets = Array.from(this.valuesByKey.values());\n return sets.some(set => set.has(value));\n }\n getValuesForKey(key) {\n const values = this.valuesByKey.get(key);\n return values ? Array.from(values) : [];\n }\n getKeysForValue(value) {\n return Array.from(this.valuesByKey)\n .filter(([key, values]) => values.has(value))\n .map(([key, values]) => key);\n }\n}\n\nclass IndexedMultimap extends Multimap {\n constructor() {\n super();\n this.keysByValue = new Map;\n }\n get values() {\n return Array.from(this.keysByValue.keys());\n }\n add(key, value) {\n super.add(key, value);\n add(this.keysByValue, value, key);\n }\n delete(key, value) {\n super.delete(key, value);\n del(this.keysByValue, value, key);\n }\n hasValue(value) {\n return this.keysByValue.has(value);\n }\n getKeysForValue(value) {\n const set = this.keysByValue.get(value);\n return set ? Array.from(set) : [];\n }\n}\n\nclass TokenListObserver {\n constructor(element, attributeName, delegate) {\n this.attributeObserver = new AttributeObserver(element, attributeName, this);\n this.delegate = delegate;\n this.tokensByElement = new Multimap;\n }\n get started() {\n return this.attributeObserver.started;\n }\n start() {\n this.attributeObserver.start();\n }\n pause(callback) {\n this.attributeObserver.pause(callback);\n }\n stop() {\n this.attributeObserver.stop();\n }\n refresh() {\n this.attributeObserver.refresh();\n }\n get element() {\n return this.attributeObserver.element;\n }\n get attributeName() {\n return this.attributeObserver.attributeName;\n }\n elementMatchedAttribute(element) {\n this.tokensMatched(this.readTokensForElement(element));\n }\n elementAttributeValueChanged(element) {\n const [unmatchedTokens, matchedTokens] = this.refreshTokensForElement(element);\n this.tokensUnmatched(unmatchedTokens);\n this.tokensMatched(matchedTokens);\n }\n elementUnmatchedAttribute(element) {\n this.tokensUnmatched(this.tokensByElement.getValuesForKey(element));\n }\n tokensMatched(tokens) {\n tokens.forEach(token => this.tokenMatched(token));\n }\n tokensUnmatched(tokens) {\n tokens.forEach(token => this.tokenUnmatched(token));\n }\n tokenMatched(token) {\n this.delegate.tokenMatched(token);\n this.tokensByElement.add(token.element, token);\n }\n tokenUnmatched(token) {\n this.delegate.tokenUnmatched(token);\n this.tokensByElement.delete(token.element, token);\n }\n refreshTokensForElement(element) {\n const previousTokens = this.tokensByElement.getValuesForKey(element);\n const currentTokens = this.readTokensForElement(element);\n const firstDifferingIndex = zip(previousTokens, currentTokens)\n .findIndex(([previousToken, currentToken]) => !tokensAreEqual(previousToken, currentToken));\n if (firstDifferingIndex == -1) {\n return [[], []];\n }\n else {\n return [previousTokens.slice(firstDifferingIndex), currentTokens.slice(firstDifferingIndex)];\n }\n }\n readTokensForElement(element) {\n const attributeName = this.attributeName;\n const tokenString = element.getAttribute(attributeName) || \"\";\n return parseTokenString(tokenString, element, attributeName);\n }\n}\nfunction parseTokenString(tokenString, element, attributeName) {\n return tokenString.trim().split(/\\s+/).filter(content => content.length)\n .map((content, index) => ({ element, attributeName, content, index }));\n}\nfunction zip(left, right) {\n const length = Math.max(left.length, right.length);\n return Array.from({ length }, (_, index) => [left[index], right[index]]);\n}\nfunction tokensAreEqual(left, right) {\n return left && right && left.index == right.index && left.content == right.content;\n}\n\nclass ValueListObserver {\n constructor(element, attributeName, delegate) {\n this.tokenListObserver = new TokenListObserver(element, attributeName, this);\n this.delegate = delegate;\n this.parseResultsByToken = new WeakMap;\n this.valuesByTokenByElement = new WeakMap;\n }\n get started() {\n return this.tokenListObserver.started;\n }\n start() {\n this.tokenListObserver.start();\n }\n stop() {\n this.tokenListObserver.stop();\n }\n refresh() {\n this.tokenListObserver.refresh();\n }\n get element() {\n return this.tokenListObserver.element;\n }\n get attributeName() {\n return this.tokenListObserver.attributeName;\n }\n tokenMatched(token) {\n const { element } = token;\n const { value } = this.fetchParseResultForToken(token);\n if (value) {\n this.fetchValuesByTokenForElement(element).set(token, value);\n this.delegate.elementMatchedValue(element, value);\n }\n }\n tokenUnmatched(token) {\n const { element } = token;\n const { value } = this.fetchParseResultForToken(token);\n if (value) {\n this.fetchValuesByTokenForElement(element).delete(token);\n this.delegate.elementUnmatchedValue(element, value);\n }\n }\n fetchParseResultForToken(token) {\n let parseResult = this.parseResultsByToken.get(token);\n if (!parseResult) {\n parseResult = this.parseToken(token);\n this.parseResultsByToken.set(token, parseResult);\n }\n return parseResult;\n }\n fetchValuesByTokenForElement(element) {\n let valuesByToken = this.valuesByTokenByElement.get(element);\n if (!valuesByToken) {\n valuesByToken = new Map;\n this.valuesByTokenByElement.set(element, valuesByToken);\n }\n return valuesByToken;\n }\n parseToken(token) {\n try {\n const value = this.delegate.parseValueForToken(token);\n return { value };\n }\n catch (error) {\n return { error };\n }\n }\n}\n\nclass BindingObserver {\n constructor(context, delegate) {\n this.context = context;\n this.delegate = delegate;\n this.bindingsByAction = new Map;\n }\n start() {\n if (!this.valueListObserver) {\n this.valueListObserver = new ValueListObserver(this.element, this.actionAttribute, this);\n this.valueListObserver.start();\n }\n }\n stop() {\n if (this.valueListObserver) {\n this.valueListObserver.stop();\n delete this.valueListObserver;\n this.disconnectAllActions();\n }\n }\n get element() {\n return this.context.element;\n }\n get identifier() {\n return this.context.identifier;\n }\n get actionAttribute() {\n return this.schema.actionAttribute;\n }\n get schema() {\n return this.context.schema;\n }\n get bindings() {\n return Array.from(this.bindingsByAction.values());\n }\n connectAction(action) {\n const binding = new Binding(this.context, action);\n this.bindingsByAction.set(action, binding);\n this.delegate.bindingConnected(binding);\n }\n disconnectAction(action) {\n const binding = this.bindingsByAction.get(action);\n if (binding) {\n this.bindingsByAction.delete(action);\n this.delegate.bindingDisconnected(binding);\n }\n }\n disconnectAllActions() {\n this.bindings.forEach(binding => this.delegate.bindingDisconnected(binding));\n this.bindingsByAction.clear();\n }\n parseValueForToken(token) {\n const action = Action.forToken(token);\n if (action.identifier == this.identifier) {\n return action;\n }\n }\n elementMatchedValue(element, action) {\n this.connectAction(action);\n }\n elementUnmatchedValue(element, action) {\n this.disconnectAction(action);\n }\n}\n\nclass ValueObserver {\n constructor(context, receiver) {\n this.context = context;\n this.receiver = receiver;\n this.stringMapObserver = new StringMapObserver(this.element, this);\n this.valueDescriptorMap = this.controller.valueDescriptorMap;\n this.invokeChangedCallbacksForDefaultValues();\n }\n start() {\n this.stringMapObserver.start();\n }\n stop() {\n this.stringMapObserver.stop();\n }\n get element() {\n return this.context.element;\n }\n get controller() {\n return this.context.controller;\n }\n getStringMapKeyForAttribute(attributeName) {\n if (attributeName in this.valueDescriptorMap) {\n return this.valueDescriptorMap[attributeName].name;\n }\n }\n stringMapKeyAdded(key, attributeName) {\n const descriptor = this.valueDescriptorMap[attributeName];\n if (!this.hasValue(key)) {\n this.invokeChangedCallback(key, descriptor.writer(this.receiver[key]), descriptor.writer(descriptor.defaultValue));\n }\n }\n stringMapValueChanged(value, name, oldValue) {\n const descriptor = this.valueDescriptorNameMap[name];\n if (value === null)\n return;\n if (oldValue === null) {\n oldValue = descriptor.writer(descriptor.defaultValue);\n }\n this.invokeChangedCallback(name, value, oldValue);\n }\n stringMapKeyRemoved(key, attributeName, oldValue) {\n const descriptor = this.valueDescriptorNameMap[key];\n if (this.hasValue(key)) {\n this.invokeChangedCallback(key, descriptor.writer(this.receiver[key]), oldValue);\n }\n else {\n this.invokeChangedCallback(key, descriptor.writer(descriptor.defaultValue), oldValue);\n }\n }\n invokeChangedCallbacksForDefaultValues() {\n for (const { key, name, defaultValue, writer } of this.valueDescriptors) {\n if (defaultValue != undefined && !this.controller.data.has(key)) {\n this.invokeChangedCallback(name, writer(defaultValue), undefined);\n }\n }\n }\n invokeChangedCallback(name, rawValue, rawOldValue) {\n const changedMethodName = `${name}Changed`;\n const changedMethod = this.receiver[changedMethodName];\n if (typeof changedMethod == \"function\") {\n const descriptor = this.valueDescriptorNameMap[name];\n const value = descriptor.reader(rawValue);\n let oldValue = rawOldValue;\n if (rawOldValue) {\n oldValue = descriptor.reader(rawOldValue);\n }\n changedMethod.call(this.receiver, value, oldValue);\n }\n }\n get valueDescriptors() {\n const { valueDescriptorMap } = this;\n return Object.keys(valueDescriptorMap).map(key => valueDescriptorMap[key]);\n }\n get valueDescriptorNameMap() {\n const descriptors = {};\n Object.keys(this.valueDescriptorMap).forEach(key => {\n const descriptor = this.valueDescriptorMap[key];\n descriptors[descriptor.name] = descriptor;\n });\n return descriptors;\n }\n hasValue(attributeName) {\n const descriptor = this.valueDescriptorNameMap[attributeName];\n const hasMethodName = `has${capitalize(descriptor.name)}`;\n return this.receiver[hasMethodName];\n }\n}\n\nclass TargetObserver {\n constructor(context, delegate) {\n this.context = context;\n this.delegate = delegate;\n this.targetsByName = new Multimap;\n }\n start() {\n if (!this.tokenListObserver) {\n this.tokenListObserver = new TokenListObserver(this.element, this.attributeName, this);\n this.tokenListObserver.start();\n }\n }\n stop() {\n if (this.tokenListObserver) {\n this.disconnectAllTargets();\n this.tokenListObserver.stop();\n delete this.tokenListObserver;\n }\n }\n tokenMatched({ element, content: name }) {\n if (this.scope.containsElement(element)) {\n this.connectTarget(element, name);\n }\n }\n tokenUnmatched({ element, content: name }) {\n this.disconnectTarget(element, name);\n }\n connectTarget(element, name) {\n var _a;\n if (!this.targetsByName.has(name, element)) {\n this.targetsByName.add(name, element);\n (_a = this.tokenListObserver) === null || _a === void 0 ? void 0 : _a.pause(() => this.delegate.targetConnected(element, name));\n }\n }\n disconnectTarget(element, name) {\n var _a;\n if (this.targetsByName.has(name, element)) {\n this.targetsByName.delete(name, element);\n (_a = this.tokenListObserver) === null || _a === void 0 ? void 0 : _a.pause(() => this.delegate.targetDisconnected(element, name));\n }\n }\n disconnectAllTargets() {\n for (const name of this.targetsByName.keys) {\n for (const element of this.targetsByName.getValuesForKey(name)) {\n this.disconnectTarget(element, name);\n }\n }\n }\n get attributeName() {\n return `data-${this.context.identifier}-target`;\n }\n get element() {\n return this.context.element;\n }\n get scope() {\n return this.context.scope;\n }\n}\n\nclass Context {\n constructor(module, scope) {\n this.logDebugActivity = (functionName, detail = {}) => {\n const { identifier, controller, element } = this;\n detail = Object.assign({ identifier, controller, element }, detail);\n this.application.logDebugActivity(this.identifier, functionName, detail);\n };\n this.module = module;\n this.scope = scope;\n this.controller = new module.controllerConstructor(this);\n this.bindingObserver = new BindingObserver(this, this.dispatcher);\n this.valueObserver = new ValueObserver(this, this.controller);\n this.targetObserver = new TargetObserver(this, this);\n try {\n this.controller.initialize();\n this.logDebugActivity(\"initialize\");\n }\n catch (error) {\n this.handleError(error, \"initializing controller\");\n }\n }\n connect() {\n this.bindingObserver.start();\n this.valueObserver.start();\n this.targetObserver.start();\n try {\n this.controller.connect();\n this.logDebugActivity(\"connect\");\n }\n catch (error) {\n this.handleError(error, \"connecting controller\");\n }\n }\n disconnect() {\n try {\n this.controller.disconnect();\n this.logDebugActivity(\"disconnect\");\n }\n catch (error) {\n this.handleError(error, \"disconnecting controller\");\n }\n this.targetObserver.stop();\n this.valueObserver.stop();\n this.bindingObserver.stop();\n }\n get application() {\n return this.module.application;\n }\n get identifier() {\n return this.module.identifier;\n }\n get schema() {\n return this.application.schema;\n }\n get dispatcher() {\n return this.application.dispatcher;\n }\n get element() {\n return this.scope.element;\n }\n get parentElement() {\n return this.element.parentElement;\n }\n handleError(error, message, detail = {}) {\n const { identifier, controller, element } = this;\n detail = Object.assign({ identifier, controller, element }, detail);\n this.application.handleError(error, `Error ${message}`, detail);\n }\n targetConnected(element, name) {\n this.invokeControllerMethod(`${name}TargetConnected`, element);\n }\n targetDisconnected(element, name) {\n this.invokeControllerMethod(`${name}TargetDisconnected`, element);\n }\n invokeControllerMethod(methodName, ...args) {\n const controller = this.controller;\n if (typeof controller[methodName] == \"function\") {\n controller[methodName](...args);\n }\n }\n}\n\nfunction readInheritableStaticArrayValues(constructor, propertyName) {\n const ancestors = getAncestorsForConstructor(constructor);\n return Array.from(ancestors.reduce((values, constructor) => {\n getOwnStaticArrayValues(constructor, propertyName).forEach(name => values.add(name));\n return values;\n }, new Set));\n}\nfunction readInheritableStaticObjectPairs(constructor, propertyName) {\n const ancestors = getAncestorsForConstructor(constructor);\n return ancestors.reduce((pairs, constructor) => {\n pairs.push(...getOwnStaticObjectPairs(constructor, propertyName));\n return pairs;\n }, []);\n}\nfunction getAncestorsForConstructor(constructor) {\n const ancestors = [];\n while (constructor) {\n ancestors.push(constructor);\n constructor = Object.getPrototypeOf(constructor);\n }\n return ancestors.reverse();\n}\nfunction getOwnStaticArrayValues(constructor, propertyName) {\n const definition = constructor[propertyName];\n return Array.isArray(definition) ? definition : [];\n}\nfunction getOwnStaticObjectPairs(constructor, propertyName) {\n const definition = constructor[propertyName];\n return definition ? Object.keys(definition).map(key => [key, definition[key]]) : [];\n}\n\nfunction bless(constructor) {\n return shadow(constructor, getBlessedProperties(constructor));\n}\nfunction shadow(constructor, properties) {\n const shadowConstructor = extend(constructor);\n const shadowProperties = getShadowProperties(constructor.prototype, properties);\n Object.defineProperties(shadowConstructor.prototype, shadowProperties);\n return shadowConstructor;\n}\nfunction getBlessedProperties(constructor) {\n const blessings = readInheritableStaticArrayValues(constructor, \"blessings\");\n return blessings.reduce((blessedProperties, blessing) => {\n const properties = blessing(constructor);\n for (const key in properties) {\n const descriptor = blessedProperties[key] || {};\n blessedProperties[key] = Object.assign(descriptor, properties[key]);\n }\n return blessedProperties;\n }, {});\n}\nfunction getShadowProperties(prototype, properties) {\n return getOwnKeys(properties).reduce((shadowProperties, key) => {\n const descriptor = getShadowedDescriptor(prototype, properties, key);\n if (descriptor) {\n Object.assign(shadowProperties, { [key]: descriptor });\n }\n return shadowProperties;\n }, {});\n}\nfunction getShadowedDescriptor(prototype, properties, key) {\n const shadowingDescriptor = Object.getOwnPropertyDescriptor(prototype, key);\n const shadowedByValue = shadowingDescriptor && \"value\" in shadowingDescriptor;\n if (!shadowedByValue) {\n const descriptor = Object.getOwnPropertyDescriptor(properties, key).value;\n if (shadowingDescriptor) {\n descriptor.get = shadowingDescriptor.get || descriptor.get;\n descriptor.set = shadowingDescriptor.set || descriptor.set;\n }\n return descriptor;\n }\n}\nconst getOwnKeys = (() => {\n if (typeof Object.getOwnPropertySymbols == \"function\") {\n return (object) => [\n ...Object.getOwnPropertyNames(object),\n ...Object.getOwnPropertySymbols(object)\n ];\n }\n else {\n return Object.getOwnPropertyNames;\n }\n})();\nconst extend = (() => {\n function extendWithReflect(constructor) {\n function extended() {\n return Reflect.construct(constructor, arguments, new.target);\n }\n extended.prototype = Object.create(constructor.prototype, {\n constructor: { value: extended }\n });\n Reflect.setPrototypeOf(extended, constructor);\n return extended;\n }\n function testReflectExtension() {\n const a = function () { this.a.call(this); };\n const b = extendWithReflect(a);\n b.prototype.a = function () { };\n return new b;\n }\n try {\n testReflectExtension();\n return extendWithReflect;\n }\n catch (error) {\n return (constructor) => class extended extends constructor {\n };\n }\n})();\n\nfunction blessDefinition(definition) {\n return {\n identifier: definition.identifier,\n controllerConstructor: bless(definition.controllerConstructor)\n };\n}\n\nclass Module {\n constructor(application, definition) {\n this.application = application;\n this.definition = blessDefinition(definition);\n this.contextsByScope = new WeakMap;\n this.connectedContexts = new Set;\n }\n get identifier() {\n return this.definition.identifier;\n }\n get controllerConstructor() {\n return this.definition.controllerConstructor;\n }\n get contexts() {\n return Array.from(this.connectedContexts);\n }\n connectContextForScope(scope) {\n const context = this.fetchContextForScope(scope);\n this.connectedContexts.add(context);\n context.connect();\n }\n disconnectContextForScope(scope) {\n const context = this.contextsByScope.get(scope);\n if (context) {\n this.connectedContexts.delete(context);\n context.disconnect();\n }\n }\n fetchContextForScope(scope) {\n let context = this.contextsByScope.get(scope);\n if (!context) {\n context = new Context(this, scope);\n this.contextsByScope.set(scope, context);\n }\n return context;\n }\n}\n\nclass ClassMap {\n constructor(scope) {\n this.scope = scope;\n }\n has(name) {\n return this.data.has(this.getDataKey(name));\n }\n get(name) {\n return this.getAll(name)[0];\n }\n getAll(name) {\n const tokenString = this.data.get(this.getDataKey(name)) || \"\";\n return tokenize(tokenString);\n }\n getAttributeName(name) {\n return this.data.getAttributeNameForKey(this.getDataKey(name));\n }\n getDataKey(name) {\n return `${name}-class`;\n }\n get data() {\n return this.scope.data;\n }\n}\n\nclass DataMap {\n constructor(scope) {\n this.scope = scope;\n }\n get element() {\n return this.scope.element;\n }\n get identifier() {\n return this.scope.identifier;\n }\n get(key) {\n const name = this.getAttributeNameForKey(key);\n return this.element.getAttribute(name);\n }\n set(key, value) {\n const name = this.getAttributeNameForKey(key);\n this.element.setAttribute(name, value);\n return this.get(key);\n }\n has(key) {\n const name = this.getAttributeNameForKey(key);\n return this.element.hasAttribute(name);\n }\n delete(key) {\n if (this.has(key)) {\n const name = this.getAttributeNameForKey(key);\n this.element.removeAttribute(name);\n return true;\n }\n else {\n return false;\n }\n }\n getAttributeNameForKey(key) {\n return `data-${this.identifier}-${dasherize(key)}`;\n }\n}\n\nclass Guide {\n constructor(logger) {\n this.warnedKeysByObject = new WeakMap;\n this.logger = logger;\n }\n warn(object, key, message) {\n let warnedKeys = this.warnedKeysByObject.get(object);\n if (!warnedKeys) {\n warnedKeys = new Set;\n this.warnedKeysByObject.set(object, warnedKeys);\n }\n if (!warnedKeys.has(key)) {\n warnedKeys.add(key);\n this.logger.warn(message, object);\n }\n }\n}\n\nfunction attributeValueContainsToken(attributeName, token) {\n return `[${attributeName}~=\"${token}\"]`;\n}\n\nclass TargetSet {\n constructor(scope) {\n this.scope = scope;\n }\n get element() {\n return this.scope.element;\n }\n get identifier() {\n return this.scope.identifier;\n }\n get schema() {\n return this.scope.schema;\n }\n has(targetName) {\n return this.find(targetName) != null;\n }\n find(...targetNames) {\n return targetNames.reduce((target, targetName) => target\n || this.findTarget(targetName)\n || this.findLegacyTarget(targetName), undefined);\n }\n findAll(...targetNames) {\n return targetNames.reduce((targets, targetName) => [\n ...targets,\n ...this.findAllTargets(targetName),\n ...this.findAllLegacyTargets(targetName)\n ], []);\n }\n findTarget(targetName) {\n const selector = this.getSelectorForTargetName(targetName);\n return this.scope.findElement(selector);\n }\n findAllTargets(targetName) {\n const selector = this.getSelectorForTargetName(targetName);\n return this.scope.findAllElements(selector);\n }\n getSelectorForTargetName(targetName) {\n const attributeName = this.schema.targetAttributeForScope(this.identifier);\n return attributeValueContainsToken(attributeName, targetName);\n }\n findLegacyTarget(targetName) {\n const selector = this.getLegacySelectorForTargetName(targetName);\n return this.deprecate(this.scope.findElement(selector), targetName);\n }\n findAllLegacyTargets(targetName) {\n const selector = this.getLegacySelectorForTargetName(targetName);\n return this.scope.findAllElements(selector).map(element => this.deprecate(element, targetName));\n }\n getLegacySelectorForTargetName(targetName) {\n const targetDescriptor = `${this.identifier}.${targetName}`;\n return attributeValueContainsToken(this.schema.targetAttribute, targetDescriptor);\n }\n deprecate(element, targetName) {\n if (element) {\n const { identifier } = this;\n const attributeName = this.schema.targetAttribute;\n const revisedAttributeName = this.schema.targetAttributeForScope(identifier);\n this.guide.warn(element, `target:${targetName}`, `Please replace ${attributeName}=\"${identifier}.${targetName}\" with ${revisedAttributeName}=\"${targetName}\". ` +\n `The ${attributeName} attribute is deprecated and will be removed in a future version of Stimulus.`);\n }\n return element;\n }\n get guide() {\n return this.scope.guide;\n }\n}\n\nclass Scope {\n constructor(schema, element, identifier, logger) {\n this.targets = new TargetSet(this);\n this.classes = new ClassMap(this);\n this.data = new DataMap(this);\n this.containsElement = (element) => {\n return element.closest(this.controllerSelector) === this.element;\n };\n this.schema = schema;\n this.element = element;\n this.identifier = identifier;\n this.guide = new Guide(logger);\n }\n findElement(selector) {\n return this.element.matches(selector)\n ? this.element\n : this.queryElements(selector).find(this.containsElement);\n }\n findAllElements(selector) {\n return [\n ...this.element.matches(selector) ? [this.element] : [],\n ...this.queryElements(selector).filter(this.containsElement)\n ];\n }\n queryElements(selector) {\n return Array.from(this.element.querySelectorAll(selector));\n }\n get controllerSelector() {\n return attributeValueContainsToken(this.schema.controllerAttribute, this.identifier);\n }\n}\n\nclass ScopeObserver {\n constructor(element, schema, delegate) {\n this.element = element;\n this.schema = schema;\n this.delegate = delegate;\n this.valueListObserver = new ValueListObserver(this.element, this.controllerAttribute, this);\n this.scopesByIdentifierByElement = new WeakMap;\n this.scopeReferenceCounts = new WeakMap;\n }\n start() {\n this.valueListObserver.start();\n }\n stop() {\n this.valueListObserver.stop();\n }\n get controllerAttribute() {\n return this.schema.controllerAttribute;\n }\n parseValueForToken(token) {\n const { element, content: identifier } = token;\n const scopesByIdentifier = this.fetchScopesByIdentifierForElement(element);\n let scope = scopesByIdentifier.get(identifier);\n if (!scope) {\n scope = this.delegate.createScopeForElementAndIdentifier(element, identifier);\n scopesByIdentifier.set(identifier, scope);\n }\n return scope;\n }\n elementMatchedValue(element, value) {\n const referenceCount = (this.scopeReferenceCounts.get(value) || 0) + 1;\n this.scopeReferenceCounts.set(value, referenceCount);\n if (referenceCount == 1) {\n this.delegate.scopeConnected(value);\n }\n }\n elementUnmatchedValue(element, value) {\n const referenceCount = this.scopeReferenceCounts.get(value);\n if (referenceCount) {\n this.scopeReferenceCounts.set(value, referenceCount - 1);\n if (referenceCount == 1) {\n this.delegate.scopeDisconnected(value);\n }\n }\n }\n fetchScopesByIdentifierForElement(element) {\n let scopesByIdentifier = this.scopesByIdentifierByElement.get(element);\n if (!scopesByIdentifier) {\n scopesByIdentifier = new Map;\n this.scopesByIdentifierByElement.set(element, scopesByIdentifier);\n }\n return scopesByIdentifier;\n }\n}\n\nclass Router {\n constructor(application) {\n this.application = application;\n this.scopeObserver = new ScopeObserver(this.element, this.schema, this);\n this.scopesByIdentifier = new Multimap;\n this.modulesByIdentifier = new Map;\n }\n get element() {\n return this.application.element;\n }\n get schema() {\n return this.application.schema;\n }\n get logger() {\n return this.application.logger;\n }\n get controllerAttribute() {\n return this.schema.controllerAttribute;\n }\n get modules() {\n return Array.from(this.modulesByIdentifier.values());\n }\n get contexts() {\n return this.modules.reduce((contexts, module) => contexts.concat(module.contexts), []);\n }\n start() {\n this.scopeObserver.start();\n }\n stop() {\n this.scopeObserver.stop();\n }\n loadDefinition(definition) {\n this.unloadIdentifier(definition.identifier);\n const module = new Module(this.application, definition);\n this.connectModule(module);\n }\n unloadIdentifier(identifier) {\n const module = this.modulesByIdentifier.get(identifier);\n if (module) {\n this.disconnectModule(module);\n }\n }\n getContextForElementAndIdentifier(element, identifier) {\n const module = this.modulesByIdentifier.get(identifier);\n if (module) {\n return module.contexts.find(context => context.element == element);\n }\n }\n handleError(error, message, detail) {\n this.application.handleError(error, message, detail);\n }\n createScopeForElementAndIdentifier(element, identifier) {\n return new Scope(this.schema, element, identifier, this.logger);\n }\n scopeConnected(scope) {\n this.scopesByIdentifier.add(scope.identifier, scope);\n const module = this.modulesByIdentifier.get(scope.identifier);\n if (module) {\n module.connectContextForScope(scope);\n }\n }\n scopeDisconnected(scope) {\n this.scopesByIdentifier.delete(scope.identifier, scope);\n const module = this.modulesByIdentifier.get(scope.identifier);\n if (module) {\n module.disconnectContextForScope(scope);\n }\n }\n connectModule(module) {\n this.modulesByIdentifier.set(module.identifier, module);\n const scopes = this.scopesByIdentifier.getValuesForKey(module.identifier);\n scopes.forEach(scope => module.connectContextForScope(scope));\n }\n disconnectModule(module) {\n this.modulesByIdentifier.delete(module.identifier);\n const scopes = this.scopesByIdentifier.getValuesForKey(module.identifier);\n scopes.forEach(scope => module.disconnectContextForScope(scope));\n }\n}\n\nconst defaultSchema = {\n controllerAttribute: \"data-controller\",\n actionAttribute: \"data-action\",\n targetAttribute: \"data-target\",\n targetAttributeForScope: identifier => `data-${identifier}-target`\n};\n\nclass Application {\n constructor(element = document.documentElement, schema = defaultSchema) {\n this.logger = console;\n this.debug = false;\n this.logDebugActivity = (identifier, functionName, detail = {}) => {\n if (this.debug) {\n this.logFormattedMessage(identifier, functionName, detail);\n }\n };\n this.element = element;\n this.schema = schema;\n this.dispatcher = new Dispatcher(this);\n this.router = new Router(this);\n }\n static start(element, schema) {\n const application = new Application(element, schema);\n application.start();\n return application;\n }\n async start() {\n await domReady();\n this.logDebugActivity(\"application\", \"starting\");\n this.dispatcher.start();\n this.router.start();\n this.logDebugActivity(\"application\", \"start\");\n }\n stop() {\n this.logDebugActivity(\"application\", \"stopping\");\n this.dispatcher.stop();\n this.router.stop();\n this.logDebugActivity(\"application\", \"stop\");\n }\n register(identifier, controllerConstructor) {\n if (controllerConstructor.shouldLoad) {\n this.load({ identifier, controllerConstructor });\n }\n }\n load(head, ...rest) {\n const definitions = Array.isArray(head) ? head : [head, ...rest];\n definitions.forEach(definition => this.router.loadDefinition(definition));\n }\n unload(head, ...rest) {\n const identifiers = Array.isArray(head) ? head : [head, ...rest];\n identifiers.forEach(identifier => this.router.unloadIdentifier(identifier));\n }\n get controllers() {\n return this.router.contexts.map(context => context.controller);\n }\n getControllerForElementAndIdentifier(element, identifier) {\n const context = this.router.getContextForElementAndIdentifier(element, identifier);\n return context ? context.controller : null;\n }\n handleError(error, message, detail) {\n var _a;\n this.logger.error(`%s\\n\\n%o\\n\\n%o`, message, error, detail);\n (_a = window.onerror) === null || _a === void 0 ? void 0 : _a.call(window, message, \"\", 0, 0, error);\n }\n logFormattedMessage(identifier, functionName, detail = {}) {\n detail = Object.assign({ application: this }, detail);\n this.logger.groupCollapsed(`${identifier} #${functionName}`);\n this.logger.log(\"details:\", Object.assign({}, detail));\n this.logger.groupEnd();\n }\n}\nfunction domReady() {\n return new Promise(resolve => {\n if (document.readyState == \"loading\") {\n document.addEventListener(\"DOMContentLoaded\", () => resolve());\n }\n else {\n resolve();\n }\n });\n}\n\nfunction ClassPropertiesBlessing(constructor) {\n const classes = readInheritableStaticArrayValues(constructor, \"classes\");\n return classes.reduce((properties, classDefinition) => {\n return Object.assign(properties, propertiesForClassDefinition(classDefinition));\n }, {});\n}\nfunction propertiesForClassDefinition(key) {\n return {\n [`${key}Class`]: {\n get() {\n const { classes } = this;\n if (classes.has(key)) {\n return classes.get(key);\n }\n else {\n const attribute = classes.getAttributeName(key);\n throw new Error(`Missing attribute \"${attribute}\"`);\n }\n }\n },\n [`${key}Classes`]: {\n get() {\n return this.classes.getAll(key);\n }\n },\n [`has${capitalize(key)}Class`]: {\n get() {\n return this.classes.has(key);\n }\n }\n };\n}\n\nfunction TargetPropertiesBlessing(constructor) {\n const targets = readInheritableStaticArrayValues(constructor, \"targets\");\n return targets.reduce((properties, targetDefinition) => {\n return Object.assign(properties, propertiesForTargetDefinition(targetDefinition));\n }, {});\n}\nfunction propertiesForTargetDefinition(name) {\n return {\n [`${name}Target`]: {\n get() {\n const target = this.targets.find(name);\n if (target) {\n return target;\n }\n else {\n throw new Error(`Missing target element \"${name}\" for \"${this.identifier}\" controller`);\n }\n }\n },\n [`${name}Targets`]: {\n get() {\n return this.targets.findAll(name);\n }\n },\n [`has${capitalize(name)}Target`]: {\n get() {\n return this.targets.has(name);\n }\n }\n };\n}\n\nfunction ValuePropertiesBlessing(constructor) {\n const valueDefinitionPairs = readInheritableStaticObjectPairs(constructor, \"values\");\n const propertyDescriptorMap = {\n valueDescriptorMap: {\n get() {\n return valueDefinitionPairs.reduce((result, valueDefinitionPair) => {\n const valueDescriptor = parseValueDefinitionPair(valueDefinitionPair);\n const attributeName = this.data.getAttributeNameForKey(valueDescriptor.key);\n return Object.assign(result, { [attributeName]: valueDescriptor });\n }, {});\n }\n }\n };\n return valueDefinitionPairs.reduce((properties, valueDefinitionPair) => {\n return Object.assign(properties, propertiesForValueDefinitionPair(valueDefinitionPair));\n }, propertyDescriptorMap);\n}\nfunction propertiesForValueDefinitionPair(valueDefinitionPair) {\n const definition = parseValueDefinitionPair(valueDefinitionPair);\n const { key, name, reader: read, writer: write } = definition;\n return {\n [name]: {\n get() {\n const value = this.data.get(key);\n if (value !== null) {\n return read(value);\n }\n else {\n return definition.defaultValue;\n }\n },\n set(value) {\n if (value === undefined) {\n this.data.delete(key);\n }\n else {\n this.data.set(key, write(value));\n }\n }\n },\n [`has${capitalize(name)}`]: {\n get() {\n return this.data.has(key) || definition.hasCustomDefaultValue;\n }\n }\n };\n}\nfunction parseValueDefinitionPair([token, typeDefinition]) {\n return valueDescriptorForTokenAndTypeDefinition(token, typeDefinition);\n}\nfunction parseValueTypeConstant(constant) {\n switch (constant) {\n case Array: return \"array\";\n case Boolean: return \"boolean\";\n case Number: return \"number\";\n case Object: return \"object\";\n case String: return \"string\";\n }\n}\nfunction parseValueTypeDefault(defaultValue) {\n switch (typeof defaultValue) {\n case \"boolean\": return \"boolean\";\n case \"number\": return \"number\";\n case \"string\": return \"string\";\n }\n if (Array.isArray(defaultValue))\n return \"array\";\n if (Object.prototype.toString.call(defaultValue) === \"[object Object]\")\n return \"object\";\n}\nfunction parseValueTypeObject(typeObject) {\n const typeFromObject = parseValueTypeConstant(typeObject.type);\n if (typeFromObject) {\n const defaultValueType = parseValueTypeDefault(typeObject.default);\n if (typeFromObject !== defaultValueType) {\n throw new Error(`Type \"${typeFromObject}\" must match the type of the default value. Given default value: \"${typeObject.default}\" as \"${defaultValueType}\"`);\n }\n return typeFromObject;\n }\n}\nfunction parseValueTypeDefinition(typeDefinition) {\n const typeFromObject = parseValueTypeObject(typeDefinition);\n const typeFromDefaultValue = parseValueTypeDefault(typeDefinition);\n const typeFromConstant = parseValueTypeConstant(typeDefinition);\n const type = typeFromObject || typeFromDefaultValue || typeFromConstant;\n if (type)\n return type;\n throw new Error(`Unknown value type \"${typeDefinition}\"`);\n}\nfunction defaultValueForDefinition(typeDefinition) {\n const constant = parseValueTypeConstant(typeDefinition);\n if (constant)\n return defaultValuesByType[constant];\n const defaultValue = typeDefinition.default;\n if (defaultValue !== undefined)\n return defaultValue;\n return typeDefinition;\n}\nfunction valueDescriptorForTokenAndTypeDefinition(token, typeDefinition) {\n const key = `${dasherize(token)}-value`;\n const type = parseValueTypeDefinition(typeDefinition);\n return {\n type,\n key,\n name: camelize(key),\n get defaultValue() { return defaultValueForDefinition(typeDefinition); },\n get hasCustomDefaultValue() { return parseValueTypeDefault(typeDefinition) !== undefined; },\n reader: readers[type],\n writer: writers[type] || writers.default\n };\n}\nconst defaultValuesByType = {\n get array() { return []; },\n boolean: false,\n number: 0,\n get object() { return {}; },\n string: \"\"\n};\nconst readers = {\n array(value) {\n const array = JSON.parse(value);\n if (!Array.isArray(array)) {\n throw new TypeError(\"Expected array\");\n }\n return array;\n },\n boolean(value) {\n return !(value == \"0\" || value == \"false\");\n },\n number(value) {\n return Number(value);\n },\n object(value) {\n const object = JSON.parse(value);\n if (object === null || typeof object != \"object\" || Array.isArray(object)) {\n throw new TypeError(\"Expected object\");\n }\n return object;\n },\n string(value) {\n return value;\n }\n};\nconst writers = {\n default: writeString,\n array: writeJSON,\n object: writeJSON\n};\nfunction writeJSON(value) {\n return JSON.stringify(value);\n}\nfunction writeString(value) {\n return `${value}`;\n}\n\nclass Controller {\n constructor(context) {\n this.context = context;\n }\n static get shouldLoad() {\n return true;\n }\n get application() {\n return this.context.application;\n }\n get scope() {\n return this.context.scope;\n }\n get element() {\n return this.scope.element;\n }\n get identifier() {\n return this.scope.identifier;\n }\n get targets() {\n return this.scope.targets;\n }\n get classes() {\n return this.scope.classes;\n }\n get data() {\n return this.scope.data;\n }\n initialize() {\n }\n connect() {\n }\n disconnect() {\n }\n dispatch(eventName, { target = this.element, detail = {}, prefix = this.identifier, bubbles = true, cancelable = true } = {}) {\n const type = prefix ? `${prefix}:${eventName}` : eventName;\n const event = new CustomEvent(type, { detail, bubbles, cancelable });\n target.dispatchEvent(event);\n return event;\n }\n}\nController.blessings = [ClassPropertiesBlessing, TargetPropertiesBlessing, ValuePropertiesBlessing];\nController.targets = [];\nController.values = {};\n\nexport { Application, AttributeObserver, Context, Controller, ElementObserver, IndexedMultimap, Multimap, StringMapObserver, TokenListObserver, ValueListObserver, add, defaultSchema, del, fetch, prune };\n","import { Application } from '@hotwired/stimulus';\nimport ClipboardCopyComponent from './clipboard_copy_component';\n// import './clipboard_copy_component'\n// import './tab_container_component'\n// import './time_ago_component'\n// import './local_time'\n// import './image_crop'\n// import './dropdown'\n// import './alpha/tool-tip-element'\nconst application = Application.start();\napplication.register('clipboard_copy_component', ClipboardCopyComponent);\n","import { Controller } from '@hotwired/stimulus';\nexport default class ClipboardCopyComponent extends Controller {\n copy() {\n const value = this.element.attributes.getNamedItem('value');\n const forNode = this.element.attributes.getNamedItem('for');\n if (value) {\n navigator.clipboard.writeText(value.value);\n }\n else if (forNode) {\n const node = document.getElementById(forNode.value);\n navigator.clipboard.writeText((node === null || node === void 0 ? void 0 : node.textContent) || '');\n }\n else {\n // just copy inner text\n navigator.clipboard.writeText(this.element.textContent || '');\n }\n }\n}\n"],"names":["EventListener","constructor","eventTarget","eventName","eventOptions","this","unorderedBindings","Set","connect","addEventListener","disconnect","removeEventListener","bindingConnected","binding","add","bindingDisconnected","delete","handleEvent","event","extendedEvent","stopImmediatePropagation","Object","assign","immediatePropagationStopped","call","extendEvent","bindings","Array","from","sort","left","right","leftIndex","index","rightIndex","Dispatcher","application","eventListenerMaps","Map","started","start","eventListeners","forEach","eventListener","stop","values","reduce","listeners","map","concat","fetchEventListenerForBinding","handleError","error","message","detail","fetchEventListener","eventListenerMap","fetchEventListenerMapForEventTarget","cacheKey","get","createEventListener","set","parts","keys","key","push","join","descriptorPattern","parseEventTarget","eventTargetName","window","document","camelize","value","replace","_","char","toUpperCase","capitalize","charAt","slice","dasherize","toLowerCase","defaultEventNames","a","e","button","form","details","input","getAttribute","select","textarea","Error","typecast","JSON","parse","o_O","Binding","context","action","identifier","willBeInvokedByEvent","invokeWithEvent","method","controller","methodName","target","currentTarget","params","actionEvent","logDebugActivity","element","Element","contains","scope","containsElement","ElementObserver","delegate","mutationObserverInit","attributes","childList","subtree","elements","mutationObserver","MutationObserver","mutations","processMutations","observe","refresh","pause","callback","takeRecords","matches","matchElementsInTree","has","removeElement","addElement","mutation","processMutation","type","processAttributeChange","attributeName","processRemovedNodes","removedNodes","processAddedNodes","addedNodes","node","elementAttributeChanged","matchElement","nodes","elementFromNode","processTree","elementIsActive","tree","processor","nodeType","Node","ELEMENT_NODE","isConnected","elementMatched","elementUnmatched","AttributeObserver","elementObserver","selector","hasAttribute","match","querySelectorAll","elementMatchedAttribute","elementUnmatchedAttribute","elementAttributeValueChanged","StringMapObserver","stringMap","attributeOldValue","knownAttributeNames","refreshAttribute","oldValue","getStringMapKeyForAttribute","stringMapKeyAdded","stringMapValueChanged","stringMapKeyRemoved","currentAttributeNames","recordedAttributeNames","attribute","name","fetch","Multimap","valuesByKey","size","prune","del","hasKey","hasValue","some","getValuesForKey","getKeysForValue","filter","TokenListObserver","attributeObserver","tokensByElement","tokensMatched","readTokensForElement","unmatchedTokens","matchedTokens","refreshTokensForElement","tokensUnmatched","tokens","token","tokenMatched","tokenUnmatched","previousTokens","currentTokens","firstDifferingIndex","length","Math","max","zip","findIndex","previousToken","currentToken","content","tokenString","trim","split","parseTokenString","ValueListObserver","tokenListObserver","parseResultsByToken","WeakMap","valuesByTokenByElement","fetchParseResultForToken","fetchValuesByTokenForElement","elementMatchedValue","elementUnmatchedValue","parseResult","parseToken","valuesByToken","parseValueForToken","BindingObserver","bindingsByAction","valueListObserver","actionAttribute","disconnectAllActions","schema","connectAction","disconnectAction","clear","descriptor","tagName","getDefaultEventNameForElement","static","descriptorString","options","test","parseActionDescriptorString","toString","eventNameSuffix","getParamsFromEventTargetAttributes","pattern","RegExp","forToken","ValueObserver","receiver","stringMapObserver","valueDescriptorMap","invokeChangedCallbacksForDefaultValues","invokeChangedCallback","writer","defaultValue","valueDescriptorNameMap","valueDescriptors","undefined","data","rawValue","rawOldValue","changedMethodName","changedMethod","reader","descriptors","hasMethodName","TargetObserver","targetsByName","disconnectAllTargets","connectTarget","disconnectTarget","_a","targetConnected","targetDisconnected","Context","module","functionName","controllerConstructor","bindingObserver","dispatcher","valueObserver","targetObserver","initialize","parentElement","invokeControllerMethod","args","readInheritableStaticArrayValues","propertyName","ancestors","getAncestorsForConstructor","definition","isArray","getOwnStaticArrayValues","readInheritableStaticObjectPairs","pairs","getOwnStaticObjectPairs","getPrototypeOf","reverse","bless","properties","shadowConstructor","extend","shadowProperties","prototype","getOwnKeys","shadowingDescriptor","getOwnPropertyDescriptor","getShadowedDescriptor","getShadowProperties","defineProperties","shadow","blessedProperties","blessing","getBlessedProperties","getOwnPropertySymbols","object","getOwnPropertyNames","extendWithReflect","extended","Reflect","construct","arguments","create","setPrototypeOf","b","testReflectExtension","Module","blessDefinition","contextsByScope","connectedContexts","contexts","connectContextForScope","fetchContextForScope","disconnectContextForScope","ClassMap","getDataKey","getAll","getAttributeName","getAttributeNameForKey","DataMap","setAttribute","removeAttribute","Guide","logger","warnedKeysByObject","warn","warnedKeys","attributeValueContainsToken","TargetSet","targetName","find","targetNames","findTarget","findLegacyTarget","findAll","targets","findAllTargets","findAllLegacyTargets","getSelectorForTargetName","findElement","findAllElements","targetAttributeForScope","getLegacySelectorForTargetName","deprecate","targetDescriptor","targetAttribute","revisedAttributeName","guide","Scope","classes","closest","controllerSelector","queryElements","controllerAttribute","ScopeObserver","scopesByIdentifierByElement","scopeReferenceCounts","scopesByIdentifier","fetchScopesByIdentifierForElement","createScopeForElementAndIdentifier","referenceCount","scopeConnected","scopeDisconnected","Router","scopeObserver","modulesByIdentifier","modules","loadDefinition","unloadIdentifier","connectModule","disconnectModule","getContextForElementAndIdentifier","defaultSchema","Application","documentElement","console","debug","logFormattedMessage","router","async","Promise","resolve","readyState","register","shouldLoad","load","head","rest","unload","controllers","getControllerForElementAndIdentifier","onerror","groupCollapsed","log","groupEnd","parseValueDefinitionPair","typeDefinition","typeFromObject","typeObject","parseValueTypeConstant","defaultValueType","parseValueTypeDefault","default","parseValueTypeObject","typeFromDefaultValue","typeFromConstant","parseValueTypeDefinition","constant","defaultValuesByType","defaultValueForDefinition","hasCustomDefaultValue","readers","writers","valueDescriptorForTokenAndTypeDefinition","Boolean","Number","String","array","boolean","number","string","TypeError","writeJSON","stringify","Controller","dispatch","prefix","bubbles","cancelable","CustomEvent","dispatchEvent","blessings","classDefinition","targetDefinition","valueDefinitionPairs","propertyDescriptorMap","result","valueDefinitionPair","valueDescriptor","read","write","propertiesForValueDefinitionPair","copy","getNamedItem","forNode","navigator","clipboard","writeText","getElementById","textContent"],"mappings":"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"}
1
+ {"version":3,"file":"ariadne_view_components.js","sources":["../../../node_modules/@hotwired/stimulus/dist/stimulus.js","../../components/ariadne/slideover-component.js","../../../node_modules/@popperjs/core/lib/enums.js","../../../node_modules/@popperjs/core/lib/dom-utils/getNodeName.js","../../../node_modules/@popperjs/core/lib/dom-utils/getWindow.js","../../../node_modules/@popperjs/core/lib/dom-utils/instanceOf.js","../../../node_modules/@popperjs/core/lib/modifiers/applyStyles.js","../../../node_modules/@popperjs/core/lib/utils/getBasePlacement.js","../../../node_modules/@popperjs/core/lib/utils/math.js","../../../node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js","../../../node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js","../../../node_modules/@popperjs/core/lib/dom-utils/contains.js","../../../node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js","../../../node_modules/@popperjs/core/lib/dom-utils/isTableElement.js","../../../node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js","../../../node_modules/@popperjs/core/lib/dom-utils/getParentNode.js","../../../node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js","../../../node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js","../../../node_modules/@popperjs/core/lib/utils/within.js","../../../node_modules/@popperjs/core/lib/utils/mergePaddingObject.js","../../../node_modules/@popperjs/core/lib/utils/getFreshSideObject.js","../../../node_modules/@popperjs/core/lib/utils/expandToHashMap.js","../../../node_modules/@popperjs/core/lib/modifiers/arrow.js","../../../node_modules/@popperjs/core/lib/utils/getVariation.js","../../../node_modules/@popperjs/core/lib/modifiers/computeStyles.js","../../../node_modules/@popperjs/core/lib/modifiers/eventListeners.js","../../../node_modules/@popperjs/core/lib/utils/getOppositePlacement.js","../../../node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js","../../../node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js","../../../node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js","../../../node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js","../../../node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js","../../../node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js","../../../node_modules/@popperjs/core/lib/utils/rectToClientRect.js","../../../node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js","../../../node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js","../../../node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js","../../../node_modules/@popperjs/core/lib/utils/computeOffsets.js","../../../node_modules/@popperjs/core/lib/utils/detectOverflow.js","../../../node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js","../../../node_modules/@popperjs/core/lib/modifiers/flip.js","../../../node_modules/@popperjs/core/lib/modifiers/hide.js","../../../node_modules/@popperjs/core/lib/modifiers/offset.js","../../../node_modules/@popperjs/core/lib/modifiers/preventOverflow.js","../../../node_modules/@popperjs/core/lib/utils/getAltAxis.js","../../../node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js","../../../node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js","../../../node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js","../../../node_modules/@popperjs/core/lib/utils/orderModifiers.js","../../../node_modules/@popperjs/core/lib/createPopper.js","../../../node_modules/@popperjs/core/lib/utils/debounce.js","../../../node_modules/@popperjs/core/lib/utils/mergeByName.js","../../../node_modules/@popperjs/core/lib/popper.js","../../../node_modules/@popperjs/core/lib/modifiers/popperOffsets.js","../../components/ariadne/tooltip-component.js","../../../node_modules/@github/time-elements/dist/index.js","../../components/ariadne/ariadne.js","../../components/ariadne/clipboard-copy-component.js"],"sourcesContent":["/*\nStimulus 3.1.0\nCopyright © 2022 Basecamp, LLC\n */\nclass EventListener {\n constructor(eventTarget, eventName, eventOptions) {\n this.eventTarget = eventTarget;\n this.eventName = eventName;\n this.eventOptions = eventOptions;\n this.unorderedBindings = new Set();\n }\n connect() {\n this.eventTarget.addEventListener(this.eventName, this, this.eventOptions);\n }\n disconnect() {\n this.eventTarget.removeEventListener(this.eventName, this, this.eventOptions);\n }\n bindingConnected(binding) {\n this.unorderedBindings.add(binding);\n }\n bindingDisconnected(binding) {\n this.unorderedBindings.delete(binding);\n }\n handleEvent(event) {\n const extendedEvent = extendEvent(event);\n for (const binding of this.bindings) {\n if (extendedEvent.immediatePropagationStopped) {\n break;\n }\n else {\n binding.handleEvent(extendedEvent);\n }\n }\n }\n get bindings() {\n return Array.from(this.unorderedBindings).sort((left, right) => {\n const leftIndex = left.index, rightIndex = right.index;\n return leftIndex < rightIndex ? -1 : leftIndex > rightIndex ? 1 : 0;\n });\n }\n}\nfunction extendEvent(event) {\n if (\"immediatePropagationStopped\" in event) {\n return event;\n }\n else {\n const { stopImmediatePropagation } = event;\n return Object.assign(event, {\n immediatePropagationStopped: false,\n stopImmediatePropagation() {\n this.immediatePropagationStopped = true;\n stopImmediatePropagation.call(this);\n }\n });\n }\n}\n\nclass Dispatcher {\n constructor(application) {\n this.application = application;\n this.eventListenerMaps = new Map;\n this.started = false;\n }\n start() {\n if (!this.started) {\n this.started = true;\n this.eventListeners.forEach(eventListener => eventListener.connect());\n }\n }\n stop() {\n if (this.started) {\n this.started = false;\n this.eventListeners.forEach(eventListener => eventListener.disconnect());\n }\n }\n get eventListeners() {\n return Array.from(this.eventListenerMaps.values())\n .reduce((listeners, map) => listeners.concat(Array.from(map.values())), []);\n }\n bindingConnected(binding) {\n this.fetchEventListenerForBinding(binding).bindingConnected(binding);\n }\n bindingDisconnected(binding) {\n this.fetchEventListenerForBinding(binding).bindingDisconnected(binding);\n }\n handleError(error, message, detail = {}) {\n this.application.handleError(error, `Error ${message}`, detail);\n }\n fetchEventListenerForBinding(binding) {\n const { eventTarget, eventName, eventOptions } = binding;\n return this.fetchEventListener(eventTarget, eventName, eventOptions);\n }\n fetchEventListener(eventTarget, eventName, eventOptions) {\n const eventListenerMap = this.fetchEventListenerMapForEventTarget(eventTarget);\n const cacheKey = this.cacheKey(eventName, eventOptions);\n let eventListener = eventListenerMap.get(cacheKey);\n if (!eventListener) {\n eventListener = this.createEventListener(eventTarget, eventName, eventOptions);\n eventListenerMap.set(cacheKey, eventListener);\n }\n return eventListener;\n }\n createEventListener(eventTarget, eventName, eventOptions) {\n const eventListener = new EventListener(eventTarget, eventName, eventOptions);\n if (this.started) {\n eventListener.connect();\n }\n return eventListener;\n }\n fetchEventListenerMapForEventTarget(eventTarget) {\n let eventListenerMap = this.eventListenerMaps.get(eventTarget);\n if (!eventListenerMap) {\n eventListenerMap = new Map;\n this.eventListenerMaps.set(eventTarget, eventListenerMap);\n }\n return eventListenerMap;\n }\n cacheKey(eventName, eventOptions) {\n const parts = [eventName];\n Object.keys(eventOptions).sort().forEach(key => {\n parts.push(`${eventOptions[key] ? \"\" : \"!\"}${key}`);\n });\n return parts.join(\":\");\n }\n}\n\nconst descriptorPattern = /^((.+?)(@(window|document))?->)?(.+?)(#([^:]+?))(:(.+))?$/;\nfunction parseActionDescriptorString(descriptorString) {\n const source = descriptorString.trim();\n const matches = source.match(descriptorPattern) || [];\n return {\n eventTarget: parseEventTarget(matches[4]),\n eventName: matches[2],\n eventOptions: matches[9] ? parseEventOptions(matches[9]) : {},\n identifier: matches[5],\n methodName: matches[7]\n };\n}\nfunction parseEventTarget(eventTargetName) {\n if (eventTargetName == \"window\") {\n return window;\n }\n else if (eventTargetName == \"document\") {\n return document;\n }\n}\nfunction parseEventOptions(eventOptions) {\n return eventOptions.split(\":\").reduce((options, token) => Object.assign(options, { [token.replace(/^!/, \"\")]: !/^!/.test(token) }), {});\n}\nfunction stringifyEventTarget(eventTarget) {\n if (eventTarget == window) {\n return \"window\";\n }\n else if (eventTarget == document) {\n return \"document\";\n }\n}\n\nfunction camelize(value) {\n return value.replace(/(?:[_-])([a-z0-9])/g, (_, char) => char.toUpperCase());\n}\nfunction capitalize(value) {\n return value.charAt(0).toUpperCase() + value.slice(1);\n}\nfunction dasherize(value) {\n return value.replace(/([A-Z])/g, (_, char) => `-${char.toLowerCase()}`);\n}\nfunction tokenize(value) {\n return value.match(/[^\\s]+/g) || [];\n}\n\nclass Action {\n constructor(element, index, descriptor) {\n this.element = element;\n this.index = index;\n this.eventTarget = descriptor.eventTarget || element;\n this.eventName = descriptor.eventName || getDefaultEventNameForElement(element) || error(\"missing event name\");\n this.eventOptions = descriptor.eventOptions || {};\n this.identifier = descriptor.identifier || error(\"missing identifier\");\n this.methodName = descriptor.methodName || error(\"missing method name\");\n }\n static forToken(token) {\n return new this(token.element, token.index, parseActionDescriptorString(token.content));\n }\n toString() {\n const eventNameSuffix = this.eventTargetName ? `@${this.eventTargetName}` : \"\";\n return `${this.eventName}${eventNameSuffix}->${this.identifier}#${this.methodName}`;\n }\n get params() {\n const params = {};\n const pattern = new RegExp(`^data-${this.identifier}-(.+)-param$`);\n for (const { name, value } of Array.from(this.element.attributes)) {\n const match = name.match(pattern);\n const key = match && match[1];\n if (key) {\n params[camelize(key)] = typecast(value);\n }\n }\n return params;\n }\n get eventTargetName() {\n return stringifyEventTarget(this.eventTarget);\n }\n}\nconst defaultEventNames = {\n \"a\": e => \"click\",\n \"button\": e => \"click\",\n \"form\": e => \"submit\",\n \"details\": e => \"toggle\",\n \"input\": e => e.getAttribute(\"type\") == \"submit\" ? \"click\" : \"input\",\n \"select\": e => \"change\",\n \"textarea\": e => \"input\"\n};\nfunction getDefaultEventNameForElement(element) {\n const tagName = element.tagName.toLowerCase();\n if (tagName in defaultEventNames) {\n return defaultEventNames[tagName](element);\n }\n}\nfunction error(message) {\n throw new Error(message);\n}\nfunction typecast(value) {\n try {\n return JSON.parse(value);\n }\n catch (o_O) {\n return value;\n }\n}\n\nclass Binding {\n constructor(context, action) {\n this.context = context;\n this.action = action;\n }\n get index() {\n return this.action.index;\n }\n get eventTarget() {\n return this.action.eventTarget;\n }\n get eventOptions() {\n return this.action.eventOptions;\n }\n get identifier() {\n return this.context.identifier;\n }\n handleEvent(event) {\n if (this.willBeInvokedByEvent(event) && this.shouldBeInvokedPerSelf(event)) {\n this.processStopPropagation(event);\n this.processPreventDefault(event);\n this.invokeWithEvent(event);\n }\n }\n get eventName() {\n return this.action.eventName;\n }\n get method() {\n const method = this.controller[this.methodName];\n if (typeof method == \"function\") {\n return method;\n }\n throw new Error(`Action \"${this.action}\" references undefined method \"${this.methodName}\"`);\n }\n processStopPropagation(event) {\n if (this.eventOptions.stop) {\n event.stopPropagation();\n }\n }\n processPreventDefault(event) {\n if (this.eventOptions.prevent) {\n event.preventDefault();\n }\n }\n invokeWithEvent(event) {\n const { target, currentTarget } = event;\n try {\n const { params } = this.action;\n const actionEvent = Object.assign(event, { params });\n this.method.call(this.controller, actionEvent);\n this.context.logDebugActivity(this.methodName, { event, target, currentTarget, action: this.methodName });\n }\n catch (error) {\n const { identifier, controller, element, index } = this;\n const detail = { identifier, controller, element, index, event };\n this.context.handleError(error, `invoking action \"${this.action}\"`, detail);\n }\n }\n shouldBeInvokedPerSelf(event) {\n if (this.action.eventOptions.self === true) {\n return this.action.element === event.target;\n }\n else {\n return true;\n }\n }\n willBeInvokedByEvent(event) {\n const eventTarget = event.target;\n if (this.element === eventTarget) {\n return true;\n }\n else if (eventTarget instanceof Element && this.element.contains(eventTarget)) {\n return this.scope.containsElement(eventTarget);\n }\n else {\n return this.scope.containsElement(this.action.element);\n }\n }\n get controller() {\n return this.context.controller;\n }\n get methodName() {\n return this.action.methodName;\n }\n get element() {\n return this.scope.element;\n }\n get scope() {\n return this.context.scope;\n }\n}\n\nclass ElementObserver {\n constructor(element, delegate) {\n this.mutationObserverInit = { attributes: true, childList: true, subtree: true };\n this.element = element;\n this.started = false;\n this.delegate = delegate;\n this.elements = new Set;\n this.mutationObserver = new MutationObserver((mutations) => this.processMutations(mutations));\n }\n start() {\n if (!this.started) {\n this.started = true;\n this.mutationObserver.observe(this.element, this.mutationObserverInit);\n this.refresh();\n }\n }\n pause(callback) {\n if (this.started) {\n this.mutationObserver.disconnect();\n this.started = false;\n }\n callback();\n if (!this.started) {\n this.mutationObserver.observe(this.element, this.mutationObserverInit);\n this.started = true;\n }\n }\n stop() {\n if (this.started) {\n this.mutationObserver.takeRecords();\n this.mutationObserver.disconnect();\n this.started = false;\n }\n }\n refresh() {\n if (this.started) {\n const matches = new Set(this.matchElementsInTree());\n for (const element of Array.from(this.elements)) {\n if (!matches.has(element)) {\n this.removeElement(element);\n }\n }\n for (const element of Array.from(matches)) {\n this.addElement(element);\n }\n }\n }\n processMutations(mutations) {\n if (this.started) {\n for (const mutation of mutations) {\n this.processMutation(mutation);\n }\n }\n }\n processMutation(mutation) {\n if (mutation.type == \"attributes\") {\n this.processAttributeChange(mutation.target, mutation.attributeName);\n }\n else if (mutation.type == \"childList\") {\n this.processRemovedNodes(mutation.removedNodes);\n this.processAddedNodes(mutation.addedNodes);\n }\n }\n processAttributeChange(node, attributeName) {\n const element = node;\n if (this.elements.has(element)) {\n if (this.delegate.elementAttributeChanged && this.matchElement(element)) {\n this.delegate.elementAttributeChanged(element, attributeName);\n }\n else {\n this.removeElement(element);\n }\n }\n else if (this.matchElement(element)) {\n this.addElement(element);\n }\n }\n processRemovedNodes(nodes) {\n for (const node of Array.from(nodes)) {\n const element = this.elementFromNode(node);\n if (element) {\n this.processTree(element, this.removeElement);\n }\n }\n }\n processAddedNodes(nodes) {\n for (const node of Array.from(nodes)) {\n const element = this.elementFromNode(node);\n if (element && this.elementIsActive(element)) {\n this.processTree(element, this.addElement);\n }\n }\n }\n matchElement(element) {\n return this.delegate.matchElement(element);\n }\n matchElementsInTree(tree = this.element) {\n return this.delegate.matchElementsInTree(tree);\n }\n processTree(tree, processor) {\n for (const element of this.matchElementsInTree(tree)) {\n processor.call(this, element);\n }\n }\n elementFromNode(node) {\n if (node.nodeType == Node.ELEMENT_NODE) {\n return node;\n }\n }\n elementIsActive(element) {\n if (element.isConnected != this.element.isConnected) {\n return false;\n }\n else {\n return this.element.contains(element);\n }\n }\n addElement(element) {\n if (!this.elements.has(element)) {\n if (this.elementIsActive(element)) {\n this.elements.add(element);\n if (this.delegate.elementMatched) {\n this.delegate.elementMatched(element);\n }\n }\n }\n }\n removeElement(element) {\n if (this.elements.has(element)) {\n this.elements.delete(element);\n if (this.delegate.elementUnmatched) {\n this.delegate.elementUnmatched(element);\n }\n }\n }\n}\n\nclass AttributeObserver {\n constructor(element, attributeName, delegate) {\n this.attributeName = attributeName;\n this.delegate = delegate;\n this.elementObserver = new ElementObserver(element, this);\n }\n get element() {\n return this.elementObserver.element;\n }\n get selector() {\n return `[${this.attributeName}]`;\n }\n start() {\n this.elementObserver.start();\n }\n pause(callback) {\n this.elementObserver.pause(callback);\n }\n stop() {\n this.elementObserver.stop();\n }\n refresh() {\n this.elementObserver.refresh();\n }\n get started() {\n return this.elementObserver.started;\n }\n matchElement(element) {\n return element.hasAttribute(this.attributeName);\n }\n matchElementsInTree(tree) {\n const match = this.matchElement(tree) ? [tree] : [];\n const matches = Array.from(tree.querySelectorAll(this.selector));\n return match.concat(matches);\n }\n elementMatched(element) {\n if (this.delegate.elementMatchedAttribute) {\n this.delegate.elementMatchedAttribute(element, this.attributeName);\n }\n }\n elementUnmatched(element) {\n if (this.delegate.elementUnmatchedAttribute) {\n this.delegate.elementUnmatchedAttribute(element, this.attributeName);\n }\n }\n elementAttributeChanged(element, attributeName) {\n if (this.delegate.elementAttributeValueChanged && this.attributeName == attributeName) {\n this.delegate.elementAttributeValueChanged(element, attributeName);\n }\n }\n}\n\nclass StringMapObserver {\n constructor(element, delegate) {\n this.element = element;\n this.delegate = delegate;\n this.started = false;\n this.stringMap = new Map;\n this.mutationObserver = new MutationObserver(mutations => this.processMutations(mutations));\n }\n start() {\n if (!this.started) {\n this.started = true;\n this.mutationObserver.observe(this.element, { attributes: true, attributeOldValue: true });\n this.refresh();\n }\n }\n stop() {\n if (this.started) {\n this.mutationObserver.takeRecords();\n this.mutationObserver.disconnect();\n this.started = false;\n }\n }\n refresh() {\n if (this.started) {\n for (const attributeName of this.knownAttributeNames) {\n this.refreshAttribute(attributeName, null);\n }\n }\n }\n processMutations(mutations) {\n if (this.started) {\n for (const mutation of mutations) {\n this.processMutation(mutation);\n }\n }\n }\n processMutation(mutation) {\n const attributeName = mutation.attributeName;\n if (attributeName) {\n this.refreshAttribute(attributeName, mutation.oldValue);\n }\n }\n refreshAttribute(attributeName, oldValue) {\n const key = this.delegate.getStringMapKeyForAttribute(attributeName);\n if (key != null) {\n if (!this.stringMap.has(attributeName)) {\n this.stringMapKeyAdded(key, attributeName);\n }\n const value = this.element.getAttribute(attributeName);\n if (this.stringMap.get(attributeName) != value) {\n this.stringMapValueChanged(value, key, oldValue);\n }\n if (value == null) {\n const oldValue = this.stringMap.get(attributeName);\n this.stringMap.delete(attributeName);\n if (oldValue)\n this.stringMapKeyRemoved(key, attributeName, oldValue);\n }\n else {\n this.stringMap.set(attributeName, value);\n }\n }\n }\n stringMapKeyAdded(key, attributeName) {\n if (this.delegate.stringMapKeyAdded) {\n this.delegate.stringMapKeyAdded(key, attributeName);\n }\n }\n stringMapValueChanged(value, key, oldValue) {\n if (this.delegate.stringMapValueChanged) {\n this.delegate.stringMapValueChanged(value, key, oldValue);\n }\n }\n stringMapKeyRemoved(key, attributeName, oldValue) {\n if (this.delegate.stringMapKeyRemoved) {\n this.delegate.stringMapKeyRemoved(key, attributeName, oldValue);\n }\n }\n get knownAttributeNames() {\n return Array.from(new Set(this.currentAttributeNames.concat(this.recordedAttributeNames)));\n }\n get currentAttributeNames() {\n return Array.from(this.element.attributes).map(attribute => attribute.name);\n }\n get recordedAttributeNames() {\n return Array.from(this.stringMap.keys());\n }\n}\n\nfunction add(map, key, value) {\n fetch(map, key).add(value);\n}\nfunction del(map, key, value) {\n fetch(map, key).delete(value);\n prune(map, key);\n}\nfunction fetch(map, key) {\n let values = map.get(key);\n if (!values) {\n values = new Set();\n map.set(key, values);\n }\n return values;\n}\nfunction prune(map, key) {\n const values = map.get(key);\n if (values != null && values.size == 0) {\n map.delete(key);\n }\n}\n\nclass Multimap {\n constructor() {\n this.valuesByKey = new Map();\n }\n get keys() {\n return Array.from(this.valuesByKey.keys());\n }\n get values() {\n const sets = Array.from(this.valuesByKey.values());\n return sets.reduce((values, set) => values.concat(Array.from(set)), []);\n }\n get size() {\n const sets = Array.from(this.valuesByKey.values());\n return sets.reduce((size, set) => size + set.size, 0);\n }\n add(key, value) {\n add(this.valuesByKey, key, value);\n }\n delete(key, value) {\n del(this.valuesByKey, key, value);\n }\n has(key, value) {\n const values = this.valuesByKey.get(key);\n return values != null && values.has(value);\n }\n hasKey(key) {\n return this.valuesByKey.has(key);\n }\n hasValue(value) {\n const sets = Array.from(this.valuesByKey.values());\n return sets.some(set => set.has(value));\n }\n getValuesForKey(key) {\n const values = this.valuesByKey.get(key);\n return values ? Array.from(values) : [];\n }\n getKeysForValue(value) {\n return Array.from(this.valuesByKey)\n .filter(([key, values]) => values.has(value))\n .map(([key, values]) => key);\n }\n}\n\nclass IndexedMultimap extends Multimap {\n constructor() {\n super();\n this.keysByValue = new Map;\n }\n get values() {\n return Array.from(this.keysByValue.keys());\n }\n add(key, value) {\n super.add(key, value);\n add(this.keysByValue, value, key);\n }\n delete(key, value) {\n super.delete(key, value);\n del(this.keysByValue, value, key);\n }\n hasValue(value) {\n return this.keysByValue.has(value);\n }\n getKeysForValue(value) {\n const set = this.keysByValue.get(value);\n return set ? Array.from(set) : [];\n }\n}\n\nclass TokenListObserver {\n constructor(element, attributeName, delegate) {\n this.attributeObserver = new AttributeObserver(element, attributeName, this);\n this.delegate = delegate;\n this.tokensByElement = new Multimap;\n }\n get started() {\n return this.attributeObserver.started;\n }\n start() {\n this.attributeObserver.start();\n }\n pause(callback) {\n this.attributeObserver.pause(callback);\n }\n stop() {\n this.attributeObserver.stop();\n }\n refresh() {\n this.attributeObserver.refresh();\n }\n get element() {\n return this.attributeObserver.element;\n }\n get attributeName() {\n return this.attributeObserver.attributeName;\n }\n elementMatchedAttribute(element) {\n this.tokensMatched(this.readTokensForElement(element));\n }\n elementAttributeValueChanged(element) {\n const [unmatchedTokens, matchedTokens] = this.refreshTokensForElement(element);\n this.tokensUnmatched(unmatchedTokens);\n this.tokensMatched(matchedTokens);\n }\n elementUnmatchedAttribute(element) {\n this.tokensUnmatched(this.tokensByElement.getValuesForKey(element));\n }\n tokensMatched(tokens) {\n tokens.forEach(token => this.tokenMatched(token));\n }\n tokensUnmatched(tokens) {\n tokens.forEach(token => this.tokenUnmatched(token));\n }\n tokenMatched(token) {\n this.delegate.tokenMatched(token);\n this.tokensByElement.add(token.element, token);\n }\n tokenUnmatched(token) {\n this.delegate.tokenUnmatched(token);\n this.tokensByElement.delete(token.element, token);\n }\n refreshTokensForElement(element) {\n const previousTokens = this.tokensByElement.getValuesForKey(element);\n const currentTokens = this.readTokensForElement(element);\n const firstDifferingIndex = zip(previousTokens, currentTokens)\n .findIndex(([previousToken, currentToken]) => !tokensAreEqual(previousToken, currentToken));\n if (firstDifferingIndex == -1) {\n return [[], []];\n }\n else {\n return [previousTokens.slice(firstDifferingIndex), currentTokens.slice(firstDifferingIndex)];\n }\n }\n readTokensForElement(element) {\n const attributeName = this.attributeName;\n const tokenString = element.getAttribute(attributeName) || \"\";\n return parseTokenString(tokenString, element, attributeName);\n }\n}\nfunction parseTokenString(tokenString, element, attributeName) {\n return tokenString.trim().split(/\\s+/).filter(content => content.length)\n .map((content, index) => ({ element, attributeName, content, index }));\n}\nfunction zip(left, right) {\n const length = Math.max(left.length, right.length);\n return Array.from({ length }, (_, index) => [left[index], right[index]]);\n}\nfunction tokensAreEqual(left, right) {\n return left && right && left.index == right.index && left.content == right.content;\n}\n\nclass ValueListObserver {\n constructor(element, attributeName, delegate) {\n this.tokenListObserver = new TokenListObserver(element, attributeName, this);\n this.delegate = delegate;\n this.parseResultsByToken = new WeakMap;\n this.valuesByTokenByElement = new WeakMap;\n }\n get started() {\n return this.tokenListObserver.started;\n }\n start() {\n this.tokenListObserver.start();\n }\n stop() {\n this.tokenListObserver.stop();\n }\n refresh() {\n this.tokenListObserver.refresh();\n }\n get element() {\n return this.tokenListObserver.element;\n }\n get attributeName() {\n return this.tokenListObserver.attributeName;\n }\n tokenMatched(token) {\n const { element } = token;\n const { value } = this.fetchParseResultForToken(token);\n if (value) {\n this.fetchValuesByTokenForElement(element).set(token, value);\n this.delegate.elementMatchedValue(element, value);\n }\n }\n tokenUnmatched(token) {\n const { element } = token;\n const { value } = this.fetchParseResultForToken(token);\n if (value) {\n this.fetchValuesByTokenForElement(element).delete(token);\n this.delegate.elementUnmatchedValue(element, value);\n }\n }\n fetchParseResultForToken(token) {\n let parseResult = this.parseResultsByToken.get(token);\n if (!parseResult) {\n parseResult = this.parseToken(token);\n this.parseResultsByToken.set(token, parseResult);\n }\n return parseResult;\n }\n fetchValuesByTokenForElement(element) {\n let valuesByToken = this.valuesByTokenByElement.get(element);\n if (!valuesByToken) {\n valuesByToken = new Map;\n this.valuesByTokenByElement.set(element, valuesByToken);\n }\n return valuesByToken;\n }\n parseToken(token) {\n try {\n const value = this.delegate.parseValueForToken(token);\n return { value };\n }\n catch (error) {\n return { error };\n }\n }\n}\n\nclass BindingObserver {\n constructor(context, delegate) {\n this.context = context;\n this.delegate = delegate;\n this.bindingsByAction = new Map;\n }\n start() {\n if (!this.valueListObserver) {\n this.valueListObserver = new ValueListObserver(this.element, this.actionAttribute, this);\n this.valueListObserver.start();\n }\n }\n stop() {\n if (this.valueListObserver) {\n this.valueListObserver.stop();\n delete this.valueListObserver;\n this.disconnectAllActions();\n }\n }\n get element() {\n return this.context.element;\n }\n get identifier() {\n return this.context.identifier;\n }\n get actionAttribute() {\n return this.schema.actionAttribute;\n }\n get schema() {\n return this.context.schema;\n }\n get bindings() {\n return Array.from(this.bindingsByAction.values());\n }\n connectAction(action) {\n const binding = new Binding(this.context, action);\n this.bindingsByAction.set(action, binding);\n this.delegate.bindingConnected(binding);\n }\n disconnectAction(action) {\n const binding = this.bindingsByAction.get(action);\n if (binding) {\n this.bindingsByAction.delete(action);\n this.delegate.bindingDisconnected(binding);\n }\n }\n disconnectAllActions() {\n this.bindings.forEach(binding => this.delegate.bindingDisconnected(binding));\n this.bindingsByAction.clear();\n }\n parseValueForToken(token) {\n const action = Action.forToken(token);\n if (action.identifier == this.identifier) {\n return action;\n }\n }\n elementMatchedValue(element, action) {\n this.connectAction(action);\n }\n elementUnmatchedValue(element, action) {\n this.disconnectAction(action);\n }\n}\n\nclass ValueObserver {\n constructor(context, receiver) {\n this.context = context;\n this.receiver = receiver;\n this.stringMapObserver = new StringMapObserver(this.element, this);\n this.valueDescriptorMap = this.controller.valueDescriptorMap;\n }\n start() {\n this.stringMapObserver.start();\n this.invokeChangedCallbacksForDefaultValues();\n }\n stop() {\n this.stringMapObserver.stop();\n }\n get element() {\n return this.context.element;\n }\n get controller() {\n return this.context.controller;\n }\n getStringMapKeyForAttribute(attributeName) {\n if (attributeName in this.valueDescriptorMap) {\n return this.valueDescriptorMap[attributeName].name;\n }\n }\n stringMapKeyAdded(key, attributeName) {\n const descriptor = this.valueDescriptorMap[attributeName];\n if (!this.hasValue(key)) {\n this.invokeChangedCallback(key, descriptor.writer(this.receiver[key]), descriptor.writer(descriptor.defaultValue));\n }\n }\n stringMapValueChanged(value, name, oldValue) {\n const descriptor = this.valueDescriptorNameMap[name];\n if (value === null)\n return;\n if (oldValue === null) {\n oldValue = descriptor.writer(descriptor.defaultValue);\n }\n this.invokeChangedCallback(name, value, oldValue);\n }\n stringMapKeyRemoved(key, attributeName, oldValue) {\n const descriptor = this.valueDescriptorNameMap[key];\n if (this.hasValue(key)) {\n this.invokeChangedCallback(key, descriptor.writer(this.receiver[key]), oldValue);\n }\n else {\n this.invokeChangedCallback(key, descriptor.writer(descriptor.defaultValue), oldValue);\n }\n }\n invokeChangedCallbacksForDefaultValues() {\n for (const { key, name, defaultValue, writer } of this.valueDescriptors) {\n if (defaultValue != undefined && !this.controller.data.has(key)) {\n this.invokeChangedCallback(name, writer(defaultValue), undefined);\n }\n }\n }\n invokeChangedCallback(name, rawValue, rawOldValue) {\n const changedMethodName = `${name}Changed`;\n const changedMethod = this.receiver[changedMethodName];\n if (typeof changedMethod == \"function\") {\n const descriptor = this.valueDescriptorNameMap[name];\n try {\n const value = descriptor.reader(rawValue);\n let oldValue = rawOldValue;\n if (rawOldValue) {\n oldValue = descriptor.reader(rawOldValue);\n }\n changedMethod.call(this.receiver, value, oldValue);\n }\n catch (error) {\n if (!(error instanceof TypeError))\n throw error;\n throw new TypeError(`Stimulus Value \"${this.context.identifier}.${descriptor.name}\" - ${error.message}`);\n }\n }\n }\n get valueDescriptors() {\n const { valueDescriptorMap } = this;\n return Object.keys(valueDescriptorMap).map(key => valueDescriptorMap[key]);\n }\n get valueDescriptorNameMap() {\n const descriptors = {};\n Object.keys(this.valueDescriptorMap).forEach(key => {\n const descriptor = this.valueDescriptorMap[key];\n descriptors[descriptor.name] = descriptor;\n });\n return descriptors;\n }\n hasValue(attributeName) {\n const descriptor = this.valueDescriptorNameMap[attributeName];\n const hasMethodName = `has${capitalize(descriptor.name)}`;\n return this.receiver[hasMethodName];\n }\n}\n\nclass TargetObserver {\n constructor(context, delegate) {\n this.context = context;\n this.delegate = delegate;\n this.targetsByName = new Multimap;\n }\n start() {\n if (!this.tokenListObserver) {\n this.tokenListObserver = new TokenListObserver(this.element, this.attributeName, this);\n this.tokenListObserver.start();\n }\n }\n stop() {\n if (this.tokenListObserver) {\n this.disconnectAllTargets();\n this.tokenListObserver.stop();\n delete this.tokenListObserver;\n }\n }\n tokenMatched({ element, content: name }) {\n if (this.scope.containsElement(element)) {\n this.connectTarget(element, name);\n }\n }\n tokenUnmatched({ element, content: name }) {\n this.disconnectTarget(element, name);\n }\n connectTarget(element, name) {\n var _a;\n if (!this.targetsByName.has(name, element)) {\n this.targetsByName.add(name, element);\n (_a = this.tokenListObserver) === null || _a === void 0 ? void 0 : _a.pause(() => this.delegate.targetConnected(element, name));\n }\n }\n disconnectTarget(element, name) {\n var _a;\n if (this.targetsByName.has(name, element)) {\n this.targetsByName.delete(name, element);\n (_a = this.tokenListObserver) === null || _a === void 0 ? void 0 : _a.pause(() => this.delegate.targetDisconnected(element, name));\n }\n }\n disconnectAllTargets() {\n for (const name of this.targetsByName.keys) {\n for (const element of this.targetsByName.getValuesForKey(name)) {\n this.disconnectTarget(element, name);\n }\n }\n }\n get attributeName() {\n return `data-${this.context.identifier}-target`;\n }\n get element() {\n return this.context.element;\n }\n get scope() {\n return this.context.scope;\n }\n}\n\nclass Context {\n constructor(module, scope) {\n this.logDebugActivity = (functionName, detail = {}) => {\n const { identifier, controller, element } = this;\n detail = Object.assign({ identifier, controller, element }, detail);\n this.application.logDebugActivity(this.identifier, functionName, detail);\n };\n this.module = module;\n this.scope = scope;\n this.controller = new module.controllerConstructor(this);\n this.bindingObserver = new BindingObserver(this, this.dispatcher);\n this.valueObserver = new ValueObserver(this, this.controller);\n this.targetObserver = new TargetObserver(this, this);\n try {\n this.controller.initialize();\n this.logDebugActivity(\"initialize\");\n }\n catch (error) {\n this.handleError(error, \"initializing controller\");\n }\n }\n connect() {\n this.bindingObserver.start();\n this.valueObserver.start();\n this.targetObserver.start();\n try {\n this.controller.connect();\n this.logDebugActivity(\"connect\");\n }\n catch (error) {\n this.handleError(error, \"connecting controller\");\n }\n }\n disconnect() {\n try {\n this.controller.disconnect();\n this.logDebugActivity(\"disconnect\");\n }\n catch (error) {\n this.handleError(error, \"disconnecting controller\");\n }\n this.targetObserver.stop();\n this.valueObserver.stop();\n this.bindingObserver.stop();\n }\n get application() {\n return this.module.application;\n }\n get identifier() {\n return this.module.identifier;\n }\n get schema() {\n return this.application.schema;\n }\n get dispatcher() {\n return this.application.dispatcher;\n }\n get element() {\n return this.scope.element;\n }\n get parentElement() {\n return this.element.parentElement;\n }\n handleError(error, message, detail = {}) {\n const { identifier, controller, element } = this;\n detail = Object.assign({ identifier, controller, element }, detail);\n this.application.handleError(error, `Error ${message}`, detail);\n }\n targetConnected(element, name) {\n this.invokeControllerMethod(`${name}TargetConnected`, element);\n }\n targetDisconnected(element, name) {\n this.invokeControllerMethod(`${name}TargetDisconnected`, element);\n }\n invokeControllerMethod(methodName, ...args) {\n const controller = this.controller;\n if (typeof controller[methodName] == \"function\") {\n controller[methodName](...args);\n }\n }\n}\n\nfunction readInheritableStaticArrayValues(constructor, propertyName) {\n const ancestors = getAncestorsForConstructor(constructor);\n return Array.from(ancestors.reduce((values, constructor) => {\n getOwnStaticArrayValues(constructor, propertyName).forEach(name => values.add(name));\n return values;\n }, new Set));\n}\nfunction readInheritableStaticObjectPairs(constructor, propertyName) {\n const ancestors = getAncestorsForConstructor(constructor);\n return ancestors.reduce((pairs, constructor) => {\n pairs.push(...getOwnStaticObjectPairs(constructor, propertyName));\n return pairs;\n }, []);\n}\nfunction getAncestorsForConstructor(constructor) {\n const ancestors = [];\n while (constructor) {\n ancestors.push(constructor);\n constructor = Object.getPrototypeOf(constructor);\n }\n return ancestors.reverse();\n}\nfunction getOwnStaticArrayValues(constructor, propertyName) {\n const definition = constructor[propertyName];\n return Array.isArray(definition) ? definition : [];\n}\nfunction getOwnStaticObjectPairs(constructor, propertyName) {\n const definition = constructor[propertyName];\n return definition ? Object.keys(definition).map(key => [key, definition[key]]) : [];\n}\n\nfunction bless(constructor) {\n return shadow(constructor, getBlessedProperties(constructor));\n}\nfunction shadow(constructor, properties) {\n const shadowConstructor = extend(constructor);\n const shadowProperties = getShadowProperties(constructor.prototype, properties);\n Object.defineProperties(shadowConstructor.prototype, shadowProperties);\n return shadowConstructor;\n}\nfunction getBlessedProperties(constructor) {\n const blessings = readInheritableStaticArrayValues(constructor, \"blessings\");\n return blessings.reduce((blessedProperties, blessing) => {\n const properties = blessing(constructor);\n for (const key in properties) {\n const descriptor = blessedProperties[key] || {};\n blessedProperties[key] = Object.assign(descriptor, properties[key]);\n }\n return blessedProperties;\n }, {});\n}\nfunction getShadowProperties(prototype, properties) {\n return getOwnKeys(properties).reduce((shadowProperties, key) => {\n const descriptor = getShadowedDescriptor(prototype, properties, key);\n if (descriptor) {\n Object.assign(shadowProperties, { [key]: descriptor });\n }\n return shadowProperties;\n }, {});\n}\nfunction getShadowedDescriptor(prototype, properties, key) {\n const shadowingDescriptor = Object.getOwnPropertyDescriptor(prototype, key);\n const shadowedByValue = shadowingDescriptor && \"value\" in shadowingDescriptor;\n if (!shadowedByValue) {\n const descriptor = Object.getOwnPropertyDescriptor(properties, key).value;\n if (shadowingDescriptor) {\n descriptor.get = shadowingDescriptor.get || descriptor.get;\n descriptor.set = shadowingDescriptor.set || descriptor.set;\n }\n return descriptor;\n }\n}\nconst getOwnKeys = (() => {\n if (typeof Object.getOwnPropertySymbols == \"function\") {\n return (object) => [\n ...Object.getOwnPropertyNames(object),\n ...Object.getOwnPropertySymbols(object)\n ];\n }\n else {\n return Object.getOwnPropertyNames;\n }\n})();\nconst extend = (() => {\n function extendWithReflect(constructor) {\n function extended() {\n return Reflect.construct(constructor, arguments, new.target);\n }\n extended.prototype = Object.create(constructor.prototype, {\n constructor: { value: extended }\n });\n Reflect.setPrototypeOf(extended, constructor);\n return extended;\n }\n function testReflectExtension() {\n const a = function () { this.a.call(this); };\n const b = extendWithReflect(a);\n b.prototype.a = function () { };\n return new b;\n }\n try {\n testReflectExtension();\n return extendWithReflect;\n }\n catch (error) {\n return (constructor) => class extended extends constructor {\n };\n }\n})();\n\nfunction blessDefinition(definition) {\n return {\n identifier: definition.identifier,\n controllerConstructor: bless(definition.controllerConstructor)\n };\n}\n\nclass Module {\n constructor(application, definition) {\n this.application = application;\n this.definition = blessDefinition(definition);\n this.contextsByScope = new WeakMap;\n this.connectedContexts = new Set;\n }\n get identifier() {\n return this.definition.identifier;\n }\n get controllerConstructor() {\n return this.definition.controllerConstructor;\n }\n get contexts() {\n return Array.from(this.connectedContexts);\n }\n connectContextForScope(scope) {\n const context = this.fetchContextForScope(scope);\n this.connectedContexts.add(context);\n context.connect();\n }\n disconnectContextForScope(scope) {\n const context = this.contextsByScope.get(scope);\n if (context) {\n this.connectedContexts.delete(context);\n context.disconnect();\n }\n }\n fetchContextForScope(scope) {\n let context = this.contextsByScope.get(scope);\n if (!context) {\n context = new Context(this, scope);\n this.contextsByScope.set(scope, context);\n }\n return context;\n }\n}\n\nclass ClassMap {\n constructor(scope) {\n this.scope = scope;\n }\n has(name) {\n return this.data.has(this.getDataKey(name));\n }\n get(name) {\n return this.getAll(name)[0];\n }\n getAll(name) {\n const tokenString = this.data.get(this.getDataKey(name)) || \"\";\n return tokenize(tokenString);\n }\n getAttributeName(name) {\n return this.data.getAttributeNameForKey(this.getDataKey(name));\n }\n getDataKey(name) {\n return `${name}-class`;\n }\n get data() {\n return this.scope.data;\n }\n}\n\nclass DataMap {\n constructor(scope) {\n this.scope = scope;\n }\n get element() {\n return this.scope.element;\n }\n get identifier() {\n return this.scope.identifier;\n }\n get(key) {\n const name = this.getAttributeNameForKey(key);\n return this.element.getAttribute(name);\n }\n set(key, value) {\n const name = this.getAttributeNameForKey(key);\n this.element.setAttribute(name, value);\n return this.get(key);\n }\n has(key) {\n const name = this.getAttributeNameForKey(key);\n return this.element.hasAttribute(name);\n }\n delete(key) {\n if (this.has(key)) {\n const name = this.getAttributeNameForKey(key);\n this.element.removeAttribute(name);\n return true;\n }\n else {\n return false;\n }\n }\n getAttributeNameForKey(key) {\n return `data-${this.identifier}-${dasherize(key)}`;\n }\n}\n\nclass Guide {\n constructor(logger) {\n this.warnedKeysByObject = new WeakMap;\n this.logger = logger;\n }\n warn(object, key, message) {\n let warnedKeys = this.warnedKeysByObject.get(object);\n if (!warnedKeys) {\n warnedKeys = new Set;\n this.warnedKeysByObject.set(object, warnedKeys);\n }\n if (!warnedKeys.has(key)) {\n warnedKeys.add(key);\n this.logger.warn(message, object);\n }\n }\n}\n\nfunction attributeValueContainsToken(attributeName, token) {\n return `[${attributeName}~=\"${token}\"]`;\n}\n\nclass TargetSet {\n constructor(scope) {\n this.scope = scope;\n }\n get element() {\n return this.scope.element;\n }\n get identifier() {\n return this.scope.identifier;\n }\n get schema() {\n return this.scope.schema;\n }\n has(targetName) {\n return this.find(targetName) != null;\n }\n find(...targetNames) {\n return targetNames.reduce((target, targetName) => target\n || this.findTarget(targetName)\n || this.findLegacyTarget(targetName), undefined);\n }\n findAll(...targetNames) {\n return targetNames.reduce((targets, targetName) => [\n ...targets,\n ...this.findAllTargets(targetName),\n ...this.findAllLegacyTargets(targetName)\n ], []);\n }\n findTarget(targetName) {\n const selector = this.getSelectorForTargetName(targetName);\n return this.scope.findElement(selector);\n }\n findAllTargets(targetName) {\n const selector = this.getSelectorForTargetName(targetName);\n return this.scope.findAllElements(selector);\n }\n getSelectorForTargetName(targetName) {\n const attributeName = this.schema.targetAttributeForScope(this.identifier);\n return attributeValueContainsToken(attributeName, targetName);\n }\n findLegacyTarget(targetName) {\n const selector = this.getLegacySelectorForTargetName(targetName);\n return this.deprecate(this.scope.findElement(selector), targetName);\n }\n findAllLegacyTargets(targetName) {\n const selector = this.getLegacySelectorForTargetName(targetName);\n return this.scope.findAllElements(selector).map(element => this.deprecate(element, targetName));\n }\n getLegacySelectorForTargetName(targetName) {\n const targetDescriptor = `${this.identifier}.${targetName}`;\n return attributeValueContainsToken(this.schema.targetAttribute, targetDescriptor);\n }\n deprecate(element, targetName) {\n if (element) {\n const { identifier } = this;\n const attributeName = this.schema.targetAttribute;\n const revisedAttributeName = this.schema.targetAttributeForScope(identifier);\n this.guide.warn(element, `target:${targetName}`, `Please replace ${attributeName}=\"${identifier}.${targetName}\" with ${revisedAttributeName}=\"${targetName}\". ` +\n `The ${attributeName} attribute is deprecated and will be removed in a future version of Stimulus.`);\n }\n return element;\n }\n get guide() {\n return this.scope.guide;\n }\n}\n\nclass Scope {\n constructor(schema, element, identifier, logger) {\n this.targets = new TargetSet(this);\n this.classes = new ClassMap(this);\n this.data = new DataMap(this);\n this.containsElement = (element) => {\n return element.closest(this.controllerSelector) === this.element;\n };\n this.schema = schema;\n this.element = element;\n this.identifier = identifier;\n this.guide = new Guide(logger);\n }\n findElement(selector) {\n return this.element.matches(selector)\n ? this.element\n : this.queryElements(selector).find(this.containsElement);\n }\n findAllElements(selector) {\n return [\n ...this.element.matches(selector) ? [this.element] : [],\n ...this.queryElements(selector).filter(this.containsElement)\n ];\n }\n queryElements(selector) {\n return Array.from(this.element.querySelectorAll(selector));\n }\n get controllerSelector() {\n return attributeValueContainsToken(this.schema.controllerAttribute, this.identifier);\n }\n}\n\nclass ScopeObserver {\n constructor(element, schema, delegate) {\n this.element = element;\n this.schema = schema;\n this.delegate = delegate;\n this.valueListObserver = new ValueListObserver(this.element, this.controllerAttribute, this);\n this.scopesByIdentifierByElement = new WeakMap;\n this.scopeReferenceCounts = new WeakMap;\n }\n start() {\n this.valueListObserver.start();\n }\n stop() {\n this.valueListObserver.stop();\n }\n get controllerAttribute() {\n return this.schema.controllerAttribute;\n }\n parseValueForToken(token) {\n const { element, content: identifier } = token;\n const scopesByIdentifier = this.fetchScopesByIdentifierForElement(element);\n let scope = scopesByIdentifier.get(identifier);\n if (!scope) {\n scope = this.delegate.createScopeForElementAndIdentifier(element, identifier);\n scopesByIdentifier.set(identifier, scope);\n }\n return scope;\n }\n elementMatchedValue(element, value) {\n const referenceCount = (this.scopeReferenceCounts.get(value) || 0) + 1;\n this.scopeReferenceCounts.set(value, referenceCount);\n if (referenceCount == 1) {\n this.delegate.scopeConnected(value);\n }\n }\n elementUnmatchedValue(element, value) {\n const referenceCount = this.scopeReferenceCounts.get(value);\n if (referenceCount) {\n this.scopeReferenceCounts.set(value, referenceCount - 1);\n if (referenceCount == 1) {\n this.delegate.scopeDisconnected(value);\n }\n }\n }\n fetchScopesByIdentifierForElement(element) {\n let scopesByIdentifier = this.scopesByIdentifierByElement.get(element);\n if (!scopesByIdentifier) {\n scopesByIdentifier = new Map;\n this.scopesByIdentifierByElement.set(element, scopesByIdentifier);\n }\n return scopesByIdentifier;\n }\n}\n\nclass Router {\n constructor(application) {\n this.application = application;\n this.scopeObserver = new ScopeObserver(this.element, this.schema, this);\n this.scopesByIdentifier = new Multimap;\n this.modulesByIdentifier = new Map;\n }\n get element() {\n return this.application.element;\n }\n get schema() {\n return this.application.schema;\n }\n get logger() {\n return this.application.logger;\n }\n get controllerAttribute() {\n return this.schema.controllerAttribute;\n }\n get modules() {\n return Array.from(this.modulesByIdentifier.values());\n }\n get contexts() {\n return this.modules.reduce((contexts, module) => contexts.concat(module.contexts), []);\n }\n start() {\n this.scopeObserver.start();\n }\n stop() {\n this.scopeObserver.stop();\n }\n loadDefinition(definition) {\n this.unloadIdentifier(definition.identifier);\n const module = new Module(this.application, definition);\n this.connectModule(module);\n }\n unloadIdentifier(identifier) {\n const module = this.modulesByIdentifier.get(identifier);\n if (module) {\n this.disconnectModule(module);\n }\n }\n getContextForElementAndIdentifier(element, identifier) {\n const module = this.modulesByIdentifier.get(identifier);\n if (module) {\n return module.contexts.find(context => context.element == element);\n }\n }\n handleError(error, message, detail) {\n this.application.handleError(error, message, detail);\n }\n createScopeForElementAndIdentifier(element, identifier) {\n return new Scope(this.schema, element, identifier, this.logger);\n }\n scopeConnected(scope) {\n this.scopesByIdentifier.add(scope.identifier, scope);\n const module = this.modulesByIdentifier.get(scope.identifier);\n if (module) {\n module.connectContextForScope(scope);\n }\n }\n scopeDisconnected(scope) {\n this.scopesByIdentifier.delete(scope.identifier, scope);\n const module = this.modulesByIdentifier.get(scope.identifier);\n if (module) {\n module.disconnectContextForScope(scope);\n }\n }\n connectModule(module) {\n this.modulesByIdentifier.set(module.identifier, module);\n const scopes = this.scopesByIdentifier.getValuesForKey(module.identifier);\n scopes.forEach(scope => module.connectContextForScope(scope));\n }\n disconnectModule(module) {\n this.modulesByIdentifier.delete(module.identifier);\n const scopes = this.scopesByIdentifier.getValuesForKey(module.identifier);\n scopes.forEach(scope => module.disconnectContextForScope(scope));\n }\n}\n\nconst defaultSchema = {\n controllerAttribute: \"data-controller\",\n actionAttribute: \"data-action\",\n targetAttribute: \"data-target\",\n targetAttributeForScope: identifier => `data-${identifier}-target`\n};\n\nclass Application {\n constructor(element = document.documentElement, schema = defaultSchema) {\n this.logger = console;\n this.debug = false;\n this.logDebugActivity = (identifier, functionName, detail = {}) => {\n if (this.debug) {\n this.logFormattedMessage(identifier, functionName, detail);\n }\n };\n this.element = element;\n this.schema = schema;\n this.dispatcher = new Dispatcher(this);\n this.router = new Router(this);\n }\n static start(element, schema) {\n const application = new Application(element, schema);\n application.start();\n return application;\n }\n async start() {\n await domReady();\n this.logDebugActivity(\"application\", \"starting\");\n this.dispatcher.start();\n this.router.start();\n this.logDebugActivity(\"application\", \"start\");\n }\n stop() {\n this.logDebugActivity(\"application\", \"stopping\");\n this.dispatcher.stop();\n this.router.stop();\n this.logDebugActivity(\"application\", \"stop\");\n }\n register(identifier, controllerConstructor) {\n this.load({ identifier, controllerConstructor });\n }\n load(head, ...rest) {\n const definitions = Array.isArray(head) ? head : [head, ...rest];\n definitions.forEach(definition => {\n if (definition.controllerConstructor.shouldLoad) {\n this.router.loadDefinition(definition);\n }\n });\n }\n unload(head, ...rest) {\n const identifiers = Array.isArray(head) ? head : [head, ...rest];\n identifiers.forEach(identifier => this.router.unloadIdentifier(identifier));\n }\n get controllers() {\n return this.router.contexts.map(context => context.controller);\n }\n getControllerForElementAndIdentifier(element, identifier) {\n const context = this.router.getContextForElementAndIdentifier(element, identifier);\n return context ? context.controller : null;\n }\n handleError(error, message, detail) {\n var _a;\n this.logger.error(`%s\\n\\n%o\\n\\n%o`, message, error, detail);\n (_a = window.onerror) === null || _a === void 0 ? void 0 : _a.call(window, message, \"\", 0, 0, error);\n }\n logFormattedMessage(identifier, functionName, detail = {}) {\n detail = Object.assign({ application: this }, detail);\n this.logger.groupCollapsed(`${identifier} #${functionName}`);\n this.logger.log(\"details:\", Object.assign({}, detail));\n this.logger.groupEnd();\n }\n}\nfunction domReady() {\n return new Promise(resolve => {\n if (document.readyState == \"loading\") {\n document.addEventListener(\"DOMContentLoaded\", () => resolve());\n }\n else {\n resolve();\n }\n });\n}\n\nfunction ClassPropertiesBlessing(constructor) {\n const classes = readInheritableStaticArrayValues(constructor, \"classes\");\n return classes.reduce((properties, classDefinition) => {\n return Object.assign(properties, propertiesForClassDefinition(classDefinition));\n }, {});\n}\nfunction propertiesForClassDefinition(key) {\n return {\n [`${key}Class`]: {\n get() {\n const { classes } = this;\n if (classes.has(key)) {\n return classes.get(key);\n }\n else {\n const attribute = classes.getAttributeName(key);\n throw new Error(`Missing attribute \"${attribute}\"`);\n }\n }\n },\n [`${key}Classes`]: {\n get() {\n return this.classes.getAll(key);\n }\n },\n [`has${capitalize(key)}Class`]: {\n get() {\n return this.classes.has(key);\n }\n }\n };\n}\n\nfunction TargetPropertiesBlessing(constructor) {\n const targets = readInheritableStaticArrayValues(constructor, \"targets\");\n return targets.reduce((properties, targetDefinition) => {\n return Object.assign(properties, propertiesForTargetDefinition(targetDefinition));\n }, {});\n}\nfunction propertiesForTargetDefinition(name) {\n return {\n [`${name}Target`]: {\n get() {\n const target = this.targets.find(name);\n if (target) {\n return target;\n }\n else {\n throw new Error(`Missing target element \"${name}\" for \"${this.identifier}\" controller`);\n }\n }\n },\n [`${name}Targets`]: {\n get() {\n return this.targets.findAll(name);\n }\n },\n [`has${capitalize(name)}Target`]: {\n get() {\n return this.targets.has(name);\n }\n }\n };\n}\n\nfunction ValuePropertiesBlessing(constructor) {\n const valueDefinitionPairs = readInheritableStaticObjectPairs(constructor, \"values\");\n const propertyDescriptorMap = {\n valueDescriptorMap: {\n get() {\n return valueDefinitionPairs.reduce((result, valueDefinitionPair) => {\n const valueDescriptor = parseValueDefinitionPair(valueDefinitionPair, this.identifier);\n const attributeName = this.data.getAttributeNameForKey(valueDescriptor.key);\n return Object.assign(result, { [attributeName]: valueDescriptor });\n }, {});\n }\n }\n };\n return valueDefinitionPairs.reduce((properties, valueDefinitionPair) => {\n return Object.assign(properties, propertiesForValueDefinitionPair(valueDefinitionPair));\n }, propertyDescriptorMap);\n}\nfunction propertiesForValueDefinitionPair(valueDefinitionPair, controller) {\n const definition = parseValueDefinitionPair(valueDefinitionPair, controller);\n const { key, name, reader: read, writer: write } = definition;\n return {\n [name]: {\n get() {\n const value = this.data.get(key);\n if (value !== null) {\n return read(value);\n }\n else {\n return definition.defaultValue;\n }\n },\n set(value) {\n if (value === undefined) {\n this.data.delete(key);\n }\n else {\n this.data.set(key, write(value));\n }\n }\n },\n [`has${capitalize(name)}`]: {\n get() {\n return this.data.has(key) || definition.hasCustomDefaultValue;\n }\n }\n };\n}\nfunction parseValueDefinitionPair([token, typeDefinition], controller) {\n return valueDescriptorForTokenAndTypeDefinition({\n controller,\n token,\n typeDefinition,\n });\n}\nfunction parseValueTypeConstant(constant) {\n switch (constant) {\n case Array: return \"array\";\n case Boolean: return \"boolean\";\n case Number: return \"number\";\n case Object: return \"object\";\n case String: return \"string\";\n }\n}\nfunction parseValueTypeDefault(defaultValue) {\n switch (typeof defaultValue) {\n case \"boolean\": return \"boolean\";\n case \"number\": return \"number\";\n case \"string\": return \"string\";\n }\n if (Array.isArray(defaultValue))\n return \"array\";\n if (Object.prototype.toString.call(defaultValue) === \"[object Object]\")\n return \"object\";\n}\nfunction parseValueTypeObject(payload) {\n const typeFromObject = parseValueTypeConstant(payload.typeObject.type);\n if (!typeFromObject)\n return;\n const defaultValueType = parseValueTypeDefault(payload.typeObject.default);\n if (typeFromObject !== defaultValueType) {\n const propertyPath = payload.controller ? `${payload.controller}.${payload.token}` : payload.token;\n throw new Error(`The specified default value for the Stimulus Value \"${propertyPath}\" must match the defined type \"${typeFromObject}\". The provided default value of \"${payload.typeObject.default}\" is of type \"${defaultValueType}\".`);\n }\n return typeFromObject;\n}\nfunction parseValueTypeDefinition(payload) {\n const typeFromObject = parseValueTypeObject({\n controller: payload.controller,\n token: payload.token,\n typeObject: payload.typeDefinition\n });\n const typeFromDefaultValue = parseValueTypeDefault(payload.typeDefinition);\n const typeFromConstant = parseValueTypeConstant(payload.typeDefinition);\n const type = typeFromObject || typeFromDefaultValue || typeFromConstant;\n if (type)\n return type;\n const propertyPath = payload.controller ? `${payload.controller}.${payload.typeDefinition}` : payload.token;\n throw new Error(`Unknown value type \"${propertyPath}\" for \"${payload.token}\" value`);\n}\nfunction defaultValueForDefinition(typeDefinition) {\n const constant = parseValueTypeConstant(typeDefinition);\n if (constant)\n return defaultValuesByType[constant];\n const defaultValue = typeDefinition.default;\n if (defaultValue !== undefined)\n return defaultValue;\n return typeDefinition;\n}\nfunction valueDescriptorForTokenAndTypeDefinition(payload) {\n const key = `${dasherize(payload.token)}-value`;\n const type = parseValueTypeDefinition(payload);\n return {\n type,\n key,\n name: camelize(key),\n get defaultValue() { return defaultValueForDefinition(payload.typeDefinition); },\n get hasCustomDefaultValue() { return parseValueTypeDefault(payload.typeDefinition) !== undefined; },\n reader: readers[type],\n writer: writers[type] || writers.default\n };\n}\nconst defaultValuesByType = {\n get array() { return []; },\n boolean: false,\n number: 0,\n get object() { return {}; },\n string: \"\"\n};\nconst readers = {\n array(value) {\n const array = JSON.parse(value);\n if (!Array.isArray(array)) {\n throw new TypeError(`expected value of type \"array\" but instead got value \"${value}\" of type \"${parseValueTypeDefault(array)}\"`);\n }\n return array;\n },\n boolean(value) {\n return !(value == \"0\" || String(value).toLowerCase() == \"false\");\n },\n number(value) {\n return Number(value);\n },\n object(value) {\n const object = JSON.parse(value);\n if (object === null || typeof object != \"object\" || Array.isArray(object)) {\n throw new TypeError(`expected value of type \"object\" but instead got value \"${value}\" of type \"${parseValueTypeDefault(object)}\"`);\n }\n return object;\n },\n string(value) {\n return value;\n }\n};\nconst writers = {\n default: writeString,\n array: writeJSON,\n object: writeJSON\n};\nfunction writeJSON(value) {\n return JSON.stringify(value);\n}\nfunction writeString(value) {\n return `${value}`;\n}\n\nclass Controller {\n constructor(context) {\n this.context = context;\n }\n static get shouldLoad() {\n return true;\n }\n get application() {\n return this.context.application;\n }\n get scope() {\n return this.context.scope;\n }\n get element() {\n return this.scope.element;\n }\n get identifier() {\n return this.scope.identifier;\n }\n get targets() {\n return this.scope.targets;\n }\n get classes() {\n return this.scope.classes;\n }\n get data() {\n return this.scope.data;\n }\n initialize() {\n }\n connect() {\n }\n disconnect() {\n }\n dispatch(eventName, { target = this.element, detail = {}, prefix = this.identifier, bubbles = true, cancelable = true } = {}) {\n const type = prefix ? `${prefix}:${eventName}` : eventName;\n const event = new CustomEvent(type, { detail, bubbles, cancelable });\n target.dispatchEvent(event);\n return event;\n }\n}\nController.blessings = [ClassPropertiesBlessing, TargetPropertiesBlessing, ValuePropertiesBlessing];\nController.targets = [];\nController.values = {};\n\nexport { Application, AttributeObserver, Context, Controller, ElementObserver, IndexedMultimap, Multimap, StringMapObserver, TokenListObserver, ValueListObserver, add, defaultSchema, del, fetch, prune };\n","import { Controller } from '@hotwired/stimulus';\nexport default class SlideoverComponent extends Controller {\n toggle() {\n var _a;\n this.expandableTarget.classList.toggle('hidden');\n this.expandWrapperTarget.classList.toggle('bg-filter-panel');\n for (const slidePanel of this.slidePanelTargets) {\n slidePanel.classList.toggle('hidden');\n }\n this.buttonWrapperTarget.classList.toggle('bg-filter-panel');\n if ((_a = document.getElementById('btnClose')) === null || _a === void 0 ? void 0 : _a.classList.contains('hidden')) {\n const formID = this.buttonWrapperTarget.getAttribute('data-slideover-component-form-id');\n if (formID) {\n const form = document.getElementById(formID);\n form === null || form === void 0 ? void 0 : form.submit();\n }\n }\n }\n}\nSlideoverComponent.targets = ['expandable', 'expandWrapper', 'slidePanel', 'buttonWrapper'];\n","export var top = 'top';\nexport var bottom = 'bottom';\nexport var right = 'right';\nexport var left = 'left';\nexport var auto = 'auto';\nexport var basePlacements = [top, bottom, right, left];\nexport var start = 'start';\nexport var end = 'end';\nexport var clippingParents = 'clippingParents';\nexport var viewport = 'viewport';\nexport var popper = 'popper';\nexport var reference = 'reference';\nexport var variationPlacements = /*#__PURE__*/basePlacements.reduce(function (acc, placement) {\n return acc.concat([placement + \"-\" + start, placement + \"-\" + end]);\n}, []);\nexport var placements = /*#__PURE__*/[].concat(basePlacements, [auto]).reduce(function (acc, placement) {\n return acc.concat([placement, placement + \"-\" + start, placement + \"-\" + end]);\n}, []); // modifiers that need to read the DOM\n\nexport var beforeRead = 'beforeRead';\nexport var read = 'read';\nexport var afterRead = 'afterRead'; // pure-logic modifiers\n\nexport var beforeMain = 'beforeMain';\nexport var main = 'main';\nexport var afterMain = 'afterMain'; // modifier with the purpose to write to the DOM (or write into a framework state)\n\nexport var beforeWrite = 'beforeWrite';\nexport var write = 'write';\nexport var afterWrite = 'afterWrite';\nexport var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite];","export default function getNodeName(element) {\n return element ? (element.nodeName || '').toLowerCase() : null;\n}","export default function getWindow(node) {\n if (node == null) {\n return window;\n }\n\n if (node.toString() !== '[object Window]') {\n var ownerDocument = node.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView || window : window;\n }\n\n return node;\n}","import getWindow from \"./getWindow.js\";\n\nfunction isElement(node) {\n var OwnElement = getWindow(node).Element;\n return node instanceof OwnElement || node instanceof Element;\n}\n\nfunction isHTMLElement(node) {\n var OwnElement = getWindow(node).HTMLElement;\n return node instanceof OwnElement || node instanceof HTMLElement;\n}\n\nfunction isShadowRoot(node) {\n // IE 11 has no ShadowRoot\n if (typeof ShadowRoot === 'undefined') {\n return false;\n }\n\n var OwnElement = getWindow(node).ShadowRoot;\n return node instanceof OwnElement || node instanceof ShadowRoot;\n}\n\nexport { isElement, isHTMLElement, isShadowRoot };","import getNodeName from \"../dom-utils/getNodeName.js\";\nimport { isHTMLElement } from \"../dom-utils/instanceOf.js\"; // This modifier takes the styles prepared by the `computeStyles` modifier\n// and applies them to the HTMLElements such as popper and arrow\n\nfunction applyStyles(_ref) {\n var state = _ref.state;\n Object.keys(state.elements).forEach(function (name) {\n var style = state.styles[name] || {};\n var attributes = state.attributes[name] || {};\n var element = state.elements[name]; // arrow is optional + virtual elements\n\n if (!isHTMLElement(element) || !getNodeName(element)) {\n return;\n } // Flow doesn't support to extend this property, but it's the most\n // effective way to apply styles to an HTMLElement\n // $FlowFixMe[cannot-write]\n\n\n Object.assign(element.style, style);\n Object.keys(attributes).forEach(function (name) {\n var value = attributes[name];\n\n if (value === false) {\n element.removeAttribute(name);\n } else {\n element.setAttribute(name, value === true ? '' : value);\n }\n });\n });\n}\n\nfunction effect(_ref2) {\n var state = _ref2.state;\n var initialStyles = {\n popper: {\n position: state.options.strategy,\n left: '0',\n top: '0',\n margin: '0'\n },\n arrow: {\n position: 'absolute'\n },\n reference: {}\n };\n Object.assign(state.elements.popper.style, initialStyles.popper);\n state.styles = initialStyles;\n\n if (state.elements.arrow) {\n Object.assign(state.elements.arrow.style, initialStyles.arrow);\n }\n\n return function () {\n Object.keys(state.elements).forEach(function (name) {\n var element = state.elements[name];\n var attributes = state.attributes[name] || {};\n var styleProperties = Object.keys(state.styles.hasOwnProperty(name) ? state.styles[name] : initialStyles[name]); // Set all values to an empty string to unset them\n\n var style = styleProperties.reduce(function (style, property) {\n style[property] = '';\n return style;\n }, {}); // arrow is optional + virtual elements\n\n if (!isHTMLElement(element) || !getNodeName(element)) {\n return;\n }\n\n Object.assign(element.style, style);\n Object.keys(attributes).forEach(function (attribute) {\n element.removeAttribute(attribute);\n });\n });\n };\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'applyStyles',\n enabled: true,\n phase: 'write',\n fn: applyStyles,\n effect: effect,\n requires: ['computeStyles']\n};","import { auto } from \"../enums.js\";\nexport default function getBasePlacement(placement) {\n return placement.split('-')[0];\n}","export var max = Math.max;\nexport var min = Math.min;\nexport var round = Math.round;","import { isHTMLElement } from \"./instanceOf.js\";\nimport { round } from \"../utils/math.js\";\nexport default function getBoundingClientRect(element, includeScale) {\n if (includeScale === void 0) {\n includeScale = false;\n }\n\n var rect = element.getBoundingClientRect();\n var scaleX = 1;\n var scaleY = 1;\n\n if (isHTMLElement(element) && includeScale) {\n var offsetHeight = element.offsetHeight;\n var offsetWidth = element.offsetWidth; // Do not attempt to divide by 0, otherwise we get `Infinity` as scale\n // Fallback to 1 in case both values are `0`\n\n if (offsetWidth > 0) {\n scaleX = round(rect.width) / offsetWidth || 1;\n }\n\n if (offsetHeight > 0) {\n scaleY = round(rect.height) / offsetHeight || 1;\n }\n }\n\n return {\n width: rect.width / scaleX,\n height: rect.height / scaleY,\n top: rect.top / scaleY,\n right: rect.right / scaleX,\n bottom: rect.bottom / scaleY,\n left: rect.left / scaleX,\n x: rect.left / scaleX,\n y: rect.top / scaleY\n };\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\"; // Returns the layout rect of an element relative to its offsetParent. Layout\n// means it doesn't take into account transforms.\n\nexport default function getLayoutRect(element) {\n var clientRect = getBoundingClientRect(element); // Use the clientRect sizes if it's not been transformed.\n // Fixes https://github.com/popperjs/popper-core/issues/1223\n\n var width = element.offsetWidth;\n var height = element.offsetHeight;\n\n if (Math.abs(clientRect.width - width) <= 1) {\n width = clientRect.width;\n }\n\n if (Math.abs(clientRect.height - height) <= 1) {\n height = clientRect.height;\n }\n\n return {\n x: element.offsetLeft,\n y: element.offsetTop,\n width: width,\n height: height\n };\n}","import { isShadowRoot } from \"./instanceOf.js\";\nexport default function contains(parent, child) {\n var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method\n\n if (parent.contains(child)) {\n return true;\n } // then fallback to custom implementation with Shadow DOM support\n else if (rootNode && isShadowRoot(rootNode)) {\n var next = child;\n\n do {\n if (next && parent.isSameNode(next)) {\n return true;\n } // $FlowFixMe[prop-missing]: need a better way to handle this...\n\n\n next = next.parentNode || next.host;\n } while (next);\n } // Give up, the result is false\n\n\n return false;\n}","import getWindow from \"./getWindow.js\";\nexport default function getComputedStyle(element) {\n return getWindow(element).getComputedStyle(element);\n}","import getNodeName from \"./getNodeName.js\";\nexport default function isTableElement(element) {\n return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0;\n}","import { isElement } from \"./instanceOf.js\";\nexport default function getDocumentElement(element) {\n // $FlowFixMe[incompatible-return]: assume body is always available\n return ((isElement(element) ? element.ownerDocument : // $FlowFixMe[prop-missing]\n element.document) || window.document).documentElement;\n}","import getNodeName from \"./getNodeName.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport { isShadowRoot } from \"./instanceOf.js\";\nexport default function getParentNode(element) {\n if (getNodeName(element) === 'html') {\n return element;\n }\n\n return (// this is a quicker (but less type safe) way to save quite some bytes from the bundle\n // $FlowFixMe[incompatible-return]\n // $FlowFixMe[prop-missing]\n element.assignedSlot || // step into the shadow DOM of the parent of a slotted node\n element.parentNode || ( // DOM Element detected\n isShadowRoot(element) ? element.host : null) || // ShadowRoot detected\n // $FlowFixMe[incompatible-call]: HTMLElement is a Node\n getDocumentElement(element) // fallback\n\n );\n}","import getWindow from \"./getWindow.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport { isHTMLElement, isShadowRoot } from \"./instanceOf.js\";\nimport isTableElement from \"./isTableElement.js\";\nimport getParentNode from \"./getParentNode.js\";\n\nfunction getTrueOffsetParent(element) {\n if (!isHTMLElement(element) || // https://github.com/popperjs/popper-core/issues/837\n getComputedStyle(element).position === 'fixed') {\n return null;\n }\n\n return element.offsetParent;\n} // `.offsetParent` reports `null` for fixed elements, while absolute elements\n// return the containing block\n\n\nfunction getContainingBlock(element) {\n var isFirefox = navigator.userAgent.toLowerCase().indexOf('firefox') !== -1;\n var isIE = navigator.userAgent.indexOf('Trident') !== -1;\n\n if (isIE && isHTMLElement(element)) {\n // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport\n var elementCss = getComputedStyle(element);\n\n if (elementCss.position === 'fixed') {\n return null;\n }\n }\n\n var currentNode = getParentNode(element);\n\n if (isShadowRoot(currentNode)) {\n currentNode = currentNode.host;\n }\n\n while (isHTMLElement(currentNode) && ['html', 'body'].indexOf(getNodeName(currentNode)) < 0) {\n var css = getComputedStyle(currentNode); // This is non-exhaustive but covers the most common CSS properties that\n // create a containing block.\n // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n\n if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') {\n return currentNode;\n } else {\n currentNode = currentNode.parentNode;\n }\n }\n\n return null;\n} // Gets the closest ancestor positioned element. Handles some edge cases,\n// such as table ancestors and cross browser bugs.\n\n\nexport default function getOffsetParent(element) {\n var window = getWindow(element);\n var offsetParent = getTrueOffsetParent(element);\n\n while (offsetParent && isTableElement(offsetParent) && getComputedStyle(offsetParent).position === 'static') {\n offsetParent = getTrueOffsetParent(offsetParent);\n }\n\n if (offsetParent && (getNodeName(offsetParent) === 'html' || getNodeName(offsetParent) === 'body' && getComputedStyle(offsetParent).position === 'static')) {\n return window;\n }\n\n return offsetParent || getContainingBlock(element) || window;\n}","export default function getMainAxisFromPlacement(placement) {\n return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';\n}","import { max as mathMax, min as mathMin } from \"./math.js\";\nexport function within(min, value, max) {\n return mathMax(min, mathMin(value, max));\n}\nexport function withinMaxClamp(min, value, max) {\n var v = within(min, value, max);\n return v > max ? max : v;\n}","import getFreshSideObject from \"./getFreshSideObject.js\";\nexport default function mergePaddingObject(paddingObject) {\n return Object.assign({}, getFreshSideObject(), paddingObject);\n}","export default function getFreshSideObject() {\n return {\n top: 0,\n right: 0,\n bottom: 0,\n left: 0\n };\n}","export default function expandToHashMap(value, keys) {\n return keys.reduce(function (hashMap, key) {\n hashMap[key] = value;\n return hashMap;\n }, {});\n}","import getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getLayoutRect from \"../dom-utils/getLayoutRect.js\";\nimport contains from \"../dom-utils/contains.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport getMainAxisFromPlacement from \"../utils/getMainAxisFromPlacement.js\";\nimport { within } from \"../utils/within.js\";\nimport mergePaddingObject from \"../utils/mergePaddingObject.js\";\nimport expandToHashMap from \"../utils/expandToHashMap.js\";\nimport { left, right, basePlacements, top, bottom } from \"../enums.js\";\nimport { isHTMLElement } from \"../dom-utils/instanceOf.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar toPaddingObject = function toPaddingObject(padding, state) {\n padding = typeof padding === 'function' ? padding(Object.assign({}, state.rects, {\n placement: state.placement\n })) : padding;\n return mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements));\n};\n\nfunction arrow(_ref) {\n var _state$modifiersData$;\n\n var state = _ref.state,\n name = _ref.name,\n options = _ref.options;\n var arrowElement = state.elements.arrow;\n var popperOffsets = state.modifiersData.popperOffsets;\n var basePlacement = getBasePlacement(state.placement);\n var axis = getMainAxisFromPlacement(basePlacement);\n var isVertical = [left, right].indexOf(basePlacement) >= 0;\n var len = isVertical ? 'height' : 'width';\n\n if (!arrowElement || !popperOffsets) {\n return;\n }\n\n var paddingObject = toPaddingObject(options.padding, state);\n var arrowRect = getLayoutRect(arrowElement);\n var minProp = axis === 'y' ? top : left;\n var maxProp = axis === 'y' ? bottom : right;\n var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets[axis] - state.rects.popper[len];\n var startDiff = popperOffsets[axis] - state.rects.reference[axis];\n var arrowOffsetParent = getOffsetParent(arrowElement);\n var clientSize = arrowOffsetParent ? axis === 'y' ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0;\n var centerToReference = endDiff / 2 - startDiff / 2; // Make sure the arrow doesn't overflow the popper if the center point is\n // outside of the popper bounds\n\n var min = paddingObject[minProp];\n var max = clientSize - arrowRect[len] - paddingObject[maxProp];\n var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference;\n var offset = within(min, center, max); // Prevents breaking syntax highlighting...\n\n var axisProp = axis;\n state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset, _state$modifiersData$.centerOffset = offset - center, _state$modifiersData$);\n}\n\nfunction effect(_ref2) {\n var state = _ref2.state,\n options = _ref2.options;\n var _options$element = options.element,\n arrowElement = _options$element === void 0 ? '[data-popper-arrow]' : _options$element;\n\n if (arrowElement == null) {\n return;\n } // CSS selector\n\n\n if (typeof arrowElement === 'string') {\n arrowElement = state.elements.popper.querySelector(arrowElement);\n\n if (!arrowElement) {\n return;\n }\n }\n\n if (process.env.NODE_ENV !== \"production\") {\n if (!isHTMLElement(arrowElement)) {\n console.error(['Popper: \"arrow\" element must be an HTMLElement (not an SVGElement).', 'To use an SVG arrow, wrap it in an HTMLElement that will be used as', 'the arrow.'].join(' '));\n }\n }\n\n if (!contains(state.elements.popper, arrowElement)) {\n if (process.env.NODE_ENV !== \"production\") {\n console.error(['Popper: \"arrow\" modifier\\'s `element` must be a child of the popper', 'element.'].join(' '));\n }\n\n return;\n }\n\n state.elements.arrow = arrowElement;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'arrow',\n enabled: true,\n phase: 'main',\n fn: arrow,\n effect: effect,\n requires: ['popperOffsets'],\n requiresIfExists: ['preventOverflow']\n};","export default function getVariation(placement) {\n return placement.split('-')[1];\n}","import { top, left, right, bottom, end } from \"../enums.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport getWindow from \"../dom-utils/getWindow.js\";\nimport getDocumentElement from \"../dom-utils/getDocumentElement.js\";\nimport getComputedStyle from \"../dom-utils/getComputedStyle.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getVariation from \"../utils/getVariation.js\";\nimport { round } from \"../utils/math.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar unsetSides = {\n top: 'auto',\n right: 'auto',\n bottom: 'auto',\n left: 'auto'\n}; // Round the offsets to the nearest suitable subpixel based on the DPR.\n// Zooming can change the DPR, but it seems to report a value that will\n// cleanly divide the values into the appropriate subpixels.\n\nfunction roundOffsetsByDPR(_ref) {\n var x = _ref.x,\n y = _ref.y;\n var win = window;\n var dpr = win.devicePixelRatio || 1;\n return {\n x: round(x * dpr) / dpr || 0,\n y: round(y * dpr) / dpr || 0\n };\n}\n\nexport function mapToStyles(_ref2) {\n var _Object$assign2;\n\n var popper = _ref2.popper,\n popperRect = _ref2.popperRect,\n placement = _ref2.placement,\n variation = _ref2.variation,\n offsets = _ref2.offsets,\n position = _ref2.position,\n gpuAcceleration = _ref2.gpuAcceleration,\n adaptive = _ref2.adaptive,\n roundOffsets = _ref2.roundOffsets,\n isFixed = _ref2.isFixed;\n var _offsets$x = offsets.x,\n x = _offsets$x === void 0 ? 0 : _offsets$x,\n _offsets$y = offsets.y,\n y = _offsets$y === void 0 ? 0 : _offsets$y;\n\n var _ref3 = typeof roundOffsets === 'function' ? roundOffsets({\n x: x,\n y: y\n }) : {\n x: x,\n y: y\n };\n\n x = _ref3.x;\n y = _ref3.y;\n var hasX = offsets.hasOwnProperty('x');\n var hasY = offsets.hasOwnProperty('y');\n var sideX = left;\n var sideY = top;\n var win = window;\n\n if (adaptive) {\n var offsetParent = getOffsetParent(popper);\n var heightProp = 'clientHeight';\n var widthProp = 'clientWidth';\n\n if (offsetParent === getWindow(popper)) {\n offsetParent = getDocumentElement(popper);\n\n if (getComputedStyle(offsetParent).position !== 'static' && position === 'absolute') {\n heightProp = 'scrollHeight';\n widthProp = 'scrollWidth';\n }\n } // $FlowFixMe[incompatible-cast]: force type refinement, we compare offsetParent with window above, but Flow doesn't detect it\n\n\n offsetParent = offsetParent;\n\n if (placement === top || (placement === left || placement === right) && variation === end) {\n sideY = bottom;\n var offsetY = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.height : // $FlowFixMe[prop-missing]\n offsetParent[heightProp];\n y -= offsetY - popperRect.height;\n y *= gpuAcceleration ? 1 : -1;\n }\n\n if (placement === left || (placement === top || placement === bottom) && variation === end) {\n sideX = right;\n var offsetX = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.width : // $FlowFixMe[prop-missing]\n offsetParent[widthProp];\n x -= offsetX - popperRect.width;\n x *= gpuAcceleration ? 1 : -1;\n }\n }\n\n var commonStyles = Object.assign({\n position: position\n }, adaptive && unsetSides);\n\n var _ref4 = roundOffsets === true ? roundOffsetsByDPR({\n x: x,\n y: y\n }) : {\n x: x,\n y: y\n };\n\n x = _ref4.x;\n y = _ref4.y;\n\n if (gpuAcceleration) {\n var _Object$assign;\n\n return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? '0' : '', _Object$assign[sideX] = hasX ? '0' : '', _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? \"translate(\" + x + \"px, \" + y + \"px)\" : \"translate3d(\" + x + \"px, \" + y + \"px, 0)\", _Object$assign));\n }\n\n return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + \"px\" : '', _Object$assign2[sideX] = hasX ? x + \"px\" : '', _Object$assign2.transform = '', _Object$assign2));\n}\n\nfunction computeStyles(_ref5) {\n var state = _ref5.state,\n options = _ref5.options;\n var _options$gpuAccelerat = options.gpuAcceleration,\n gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat,\n _options$adaptive = options.adaptive,\n adaptive = _options$adaptive === void 0 ? true : _options$adaptive,\n _options$roundOffsets = options.roundOffsets,\n roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets;\n\n if (process.env.NODE_ENV !== \"production\") {\n var transitionProperty = getComputedStyle(state.elements.popper).transitionProperty || '';\n\n if (adaptive && ['transform', 'top', 'right', 'bottom', 'left'].some(function (property) {\n return transitionProperty.indexOf(property) >= 0;\n })) {\n console.warn(['Popper: Detected CSS transitions on at least one of the following', 'CSS properties: \"transform\", \"top\", \"right\", \"bottom\", \"left\".', '\\n\\n', 'Disable the \"computeStyles\" modifier\\'s `adaptive` option to allow', 'for smooth transitions, or remove these properties from the CSS', 'transition declaration on the popper element if only transitioning', 'opacity or background-color for example.', '\\n\\n', 'We recommend using the popper element as a wrapper around an inner', 'element that can have any CSS property transitioned for animations.'].join(' '));\n }\n }\n\n var commonStyles = {\n placement: getBasePlacement(state.placement),\n variation: getVariation(state.placement),\n popper: state.elements.popper,\n popperRect: state.rects.popper,\n gpuAcceleration: gpuAcceleration,\n isFixed: state.options.strategy === 'fixed'\n };\n\n if (state.modifiersData.popperOffsets != null) {\n state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, {\n offsets: state.modifiersData.popperOffsets,\n position: state.options.strategy,\n adaptive: adaptive,\n roundOffsets: roundOffsets\n })));\n }\n\n if (state.modifiersData.arrow != null) {\n state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, {\n offsets: state.modifiersData.arrow,\n position: 'absolute',\n adaptive: false,\n roundOffsets: roundOffsets\n })));\n }\n\n state.attributes.popper = Object.assign({}, state.attributes.popper, {\n 'data-popper-placement': state.placement\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'computeStyles',\n enabled: true,\n phase: 'beforeWrite',\n fn: computeStyles,\n data: {}\n};","import getWindow from \"../dom-utils/getWindow.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar passive = {\n passive: true\n};\n\nfunction effect(_ref) {\n var state = _ref.state,\n instance = _ref.instance,\n options = _ref.options;\n var _options$scroll = options.scroll,\n scroll = _options$scroll === void 0 ? true : _options$scroll,\n _options$resize = options.resize,\n resize = _options$resize === void 0 ? true : _options$resize;\n var window = getWindow(state.elements.popper);\n var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper);\n\n if (scroll) {\n scrollParents.forEach(function (scrollParent) {\n scrollParent.addEventListener('scroll', instance.update, passive);\n });\n }\n\n if (resize) {\n window.addEventListener('resize', instance.update, passive);\n }\n\n return function () {\n if (scroll) {\n scrollParents.forEach(function (scrollParent) {\n scrollParent.removeEventListener('scroll', instance.update, passive);\n });\n }\n\n if (resize) {\n window.removeEventListener('resize', instance.update, passive);\n }\n };\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'eventListeners',\n enabled: true,\n phase: 'write',\n fn: function fn() {},\n effect: effect,\n data: {}\n};","var hash = {\n left: 'right',\n right: 'left',\n bottom: 'top',\n top: 'bottom'\n};\nexport default function getOppositePlacement(placement) {\n return placement.replace(/left|right|bottom|top/g, function (matched) {\n return hash[matched];\n });\n}","var hash = {\n start: 'end',\n end: 'start'\n};\nexport default function getOppositeVariationPlacement(placement) {\n return placement.replace(/start|end/g, function (matched) {\n return hash[matched];\n });\n}","import getWindow from \"./getWindow.js\";\nexport default function getWindowScroll(node) {\n var win = getWindow(node);\n var scrollLeft = win.pageXOffset;\n var scrollTop = win.pageYOffset;\n return {\n scrollLeft: scrollLeft,\n scrollTop: scrollTop\n };\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getWindowScroll from \"./getWindowScroll.js\";\nexport default function getWindowScrollBarX(element) {\n // If <html> has a CSS width greater than the viewport, then this will be\n // incorrect for RTL.\n // Popper 1 is broken in this case and never had a bug report so let's assume\n // it's not an issue. I don't think anyone ever specifies width on <html>\n // anyway.\n // Browsers where the left scrollbar doesn't cause an issue report `0` for\n // this (e.g. Edge 2019, IE11, Safari)\n return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft;\n}","import getComputedStyle from \"./getComputedStyle.js\";\nexport default function isScrollParent(element) {\n // Firefox wants us to check `-x` and `-y` variations as well\n var _getComputedStyle = getComputedStyle(element),\n overflow = _getComputedStyle.overflow,\n overflowX = _getComputedStyle.overflowX,\n overflowY = _getComputedStyle.overflowY;\n\n return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX);\n}","import getParentNode from \"./getParentNode.js\";\nimport isScrollParent from \"./isScrollParent.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nexport default function getScrollParent(node) {\n if (['html', 'body', '#document'].indexOf(getNodeName(node)) >= 0) {\n // $FlowFixMe[incompatible-return]: assume body is always available\n return node.ownerDocument.body;\n }\n\n if (isHTMLElement(node) && isScrollParent(node)) {\n return node;\n }\n\n return getScrollParent(getParentNode(node));\n}","import getScrollParent from \"./getScrollParent.js\";\nimport getParentNode from \"./getParentNode.js\";\nimport getWindow from \"./getWindow.js\";\nimport isScrollParent from \"./isScrollParent.js\";\n/*\ngiven a DOM element, return the list of all scroll parents, up the list of ancesors\nuntil we get to the top window object. This list is what we attach scroll listeners\nto, because if any of these parent elements scroll, we'll need to re-calculate the\nreference element's position.\n*/\n\nexport default function listScrollParents(element, list) {\n var _element$ownerDocumen;\n\n if (list === void 0) {\n list = [];\n }\n\n var scrollParent = getScrollParent(element);\n var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body);\n var win = getWindow(scrollParent);\n var target = isBody ? [win].concat(win.visualViewport || [], isScrollParent(scrollParent) ? scrollParent : []) : scrollParent;\n var updatedList = list.concat(target);\n return isBody ? updatedList : // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here\n updatedList.concat(listScrollParents(getParentNode(target)));\n}","export default function rectToClientRect(rect) {\n return Object.assign({}, rect, {\n left: rect.x,\n top: rect.y,\n right: rect.x + rect.width,\n bottom: rect.y + rect.height\n });\n}","import { viewport } from \"../enums.js\";\nimport getViewportRect from \"./getViewportRect.js\";\nimport getDocumentRect from \"./getDocumentRect.js\";\nimport listScrollParents from \"./listScrollParents.js\";\nimport getOffsetParent from \"./getOffsetParent.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport { isElement, isHTMLElement } from \"./instanceOf.js\";\nimport getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getParentNode from \"./getParentNode.js\";\nimport contains from \"./contains.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport rectToClientRect from \"../utils/rectToClientRect.js\";\nimport { max, min } from \"../utils/math.js\";\n\nfunction getInnerBoundingClientRect(element) {\n var rect = getBoundingClientRect(element);\n rect.top = rect.top + element.clientTop;\n rect.left = rect.left + element.clientLeft;\n rect.bottom = rect.top + element.clientHeight;\n rect.right = rect.left + element.clientWidth;\n rect.width = element.clientWidth;\n rect.height = element.clientHeight;\n rect.x = rect.left;\n rect.y = rect.top;\n return rect;\n}\n\nfunction getClientRectFromMixedType(element, clippingParent) {\n return clippingParent === viewport ? rectToClientRect(getViewportRect(element)) : isElement(clippingParent) ? getInnerBoundingClientRect(clippingParent) : rectToClientRect(getDocumentRect(getDocumentElement(element)));\n} // A \"clipping parent\" is an overflowable container with the characteristic of\n// clipping (or hiding) overflowing elements with a position different from\n// `initial`\n\n\nfunction getClippingParents(element) {\n var clippingParents = listScrollParents(getParentNode(element));\n var canEscapeClipping = ['absolute', 'fixed'].indexOf(getComputedStyle(element).position) >= 0;\n var clipperElement = canEscapeClipping && isHTMLElement(element) ? getOffsetParent(element) : element;\n\n if (!isElement(clipperElement)) {\n return [];\n } // $FlowFixMe[incompatible-return]: https://github.com/facebook/flow/issues/1414\n\n\n return clippingParents.filter(function (clippingParent) {\n return isElement(clippingParent) && contains(clippingParent, clipperElement) && getNodeName(clippingParent) !== 'body';\n });\n} // Gets the maximum area that the element is visible in due to any number of\n// clipping parents\n\n\nexport default function getClippingRect(element, boundary, rootBoundary) {\n var mainClippingParents = boundary === 'clippingParents' ? getClippingParents(element) : [].concat(boundary);\n var clippingParents = [].concat(mainClippingParents, [rootBoundary]);\n var firstClippingParent = clippingParents[0];\n var clippingRect = clippingParents.reduce(function (accRect, clippingParent) {\n var rect = getClientRectFromMixedType(element, clippingParent);\n accRect.top = max(rect.top, accRect.top);\n accRect.right = min(rect.right, accRect.right);\n accRect.bottom = min(rect.bottom, accRect.bottom);\n accRect.left = max(rect.left, accRect.left);\n return accRect;\n }, getClientRectFromMixedType(element, firstClippingParent));\n clippingRect.width = clippingRect.right - clippingRect.left;\n clippingRect.height = clippingRect.bottom - clippingRect.top;\n clippingRect.x = clippingRect.left;\n clippingRect.y = clippingRect.top;\n return clippingRect;\n}","import getWindow from \"./getWindow.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nexport default function getViewportRect(element) {\n var win = getWindow(element);\n var html = getDocumentElement(element);\n var visualViewport = win.visualViewport;\n var width = html.clientWidth;\n var height = html.clientHeight;\n var x = 0;\n var y = 0; // NB: This isn't supported on iOS <= 12. If the keyboard is open, the popper\n // can be obscured underneath it.\n // Also, `html.clientHeight` adds the bottom bar height in Safari iOS, even\n // if it isn't open, so if this isn't available, the popper will be detected\n // to overflow the bottom of the screen too early.\n\n if (visualViewport) {\n width = visualViewport.width;\n height = visualViewport.height; // Uses Layout Viewport (like Chrome; Safari does not currently)\n // In Chrome, it returns a value very close to 0 (+/-) but contains rounding\n // errors due to floating point numbers, so we need to check precision.\n // Safari returns a number <= 0, usually < -1 when pinch-zoomed\n // Feature detection fails in mobile emulation mode in Chrome.\n // Math.abs(win.innerWidth / visualViewport.scale - visualViewport.width) <\n // 0.001\n // Fallback here: \"Not Safari\" userAgent\n\n if (!/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {\n x = visualViewport.offsetLeft;\n y = visualViewport.offsetTop;\n }\n }\n\n return {\n width: width,\n height: height,\n x: x + getWindowScrollBarX(element),\n y: y\n };\n}","import getDocumentElement from \"./getDocumentElement.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nimport getWindowScroll from \"./getWindowScroll.js\";\nimport { max } from \"../utils/math.js\"; // Gets the entire size of the scrollable document area, even extending outside\n// of the `<html>` and `<body>` rect bounds if horizontally scrollable\n\nexport default function getDocumentRect(element) {\n var _element$ownerDocumen;\n\n var html = getDocumentElement(element);\n var winScroll = getWindowScroll(element);\n var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body;\n var width = max(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0);\n var height = max(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0);\n var x = -winScroll.scrollLeft + getWindowScrollBarX(element);\n var y = -winScroll.scrollTop;\n\n if (getComputedStyle(body || html).direction === 'rtl') {\n x += max(html.clientWidth, body ? body.clientWidth : 0) - width;\n }\n\n return {\n width: width,\n height: height,\n x: x,\n y: y\n };\n}","import getBasePlacement from \"./getBasePlacement.js\";\nimport getVariation from \"./getVariation.js\";\nimport getMainAxisFromPlacement from \"./getMainAxisFromPlacement.js\";\nimport { top, right, bottom, left, start, end } from \"../enums.js\";\nexport default function computeOffsets(_ref) {\n var reference = _ref.reference,\n element = _ref.element,\n placement = _ref.placement;\n var basePlacement = placement ? getBasePlacement(placement) : null;\n var variation = placement ? getVariation(placement) : null;\n var commonX = reference.x + reference.width / 2 - element.width / 2;\n var commonY = reference.y + reference.height / 2 - element.height / 2;\n var offsets;\n\n switch (basePlacement) {\n case top:\n offsets = {\n x: commonX,\n y: reference.y - element.height\n };\n break;\n\n case bottom:\n offsets = {\n x: commonX,\n y: reference.y + reference.height\n };\n break;\n\n case right:\n offsets = {\n x: reference.x + reference.width,\n y: commonY\n };\n break;\n\n case left:\n offsets = {\n x: reference.x - element.width,\n y: commonY\n };\n break;\n\n default:\n offsets = {\n x: reference.x,\n y: reference.y\n };\n }\n\n var mainAxis = basePlacement ? getMainAxisFromPlacement(basePlacement) : null;\n\n if (mainAxis != null) {\n var len = mainAxis === 'y' ? 'height' : 'width';\n\n switch (variation) {\n case start:\n offsets[mainAxis] = offsets[mainAxis] - (reference[len] / 2 - element[len] / 2);\n break;\n\n case end:\n offsets[mainAxis] = offsets[mainAxis] + (reference[len] / 2 - element[len] / 2);\n break;\n\n default:\n }\n }\n\n return offsets;\n}","import getClippingRect from \"../dom-utils/getClippingRect.js\";\nimport getDocumentElement from \"../dom-utils/getDocumentElement.js\";\nimport getBoundingClientRect from \"../dom-utils/getBoundingClientRect.js\";\nimport computeOffsets from \"./computeOffsets.js\";\nimport rectToClientRect from \"./rectToClientRect.js\";\nimport { clippingParents, reference, popper, bottom, top, right, basePlacements, viewport } from \"../enums.js\";\nimport { isElement } from \"../dom-utils/instanceOf.js\";\nimport mergePaddingObject from \"./mergePaddingObject.js\";\nimport expandToHashMap from \"./expandToHashMap.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport default function detectOverflow(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n _options$placement = _options.placement,\n placement = _options$placement === void 0 ? state.placement : _options$placement,\n _options$boundary = _options.boundary,\n boundary = _options$boundary === void 0 ? clippingParents : _options$boundary,\n _options$rootBoundary = _options.rootBoundary,\n rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary,\n _options$elementConte = _options.elementContext,\n elementContext = _options$elementConte === void 0 ? popper : _options$elementConte,\n _options$altBoundary = _options.altBoundary,\n altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary,\n _options$padding = _options.padding,\n padding = _options$padding === void 0 ? 0 : _options$padding;\n var paddingObject = mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements));\n var altContext = elementContext === popper ? reference : popper;\n var popperRect = state.rects.popper;\n var element = state.elements[altBoundary ? altContext : elementContext];\n var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary);\n var referenceClientRect = getBoundingClientRect(state.elements.reference);\n var popperOffsets = computeOffsets({\n reference: referenceClientRect,\n element: popperRect,\n strategy: 'absolute',\n placement: placement\n });\n var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets));\n var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect\n // 0 or negative = within the clipping rect\n\n var overflowOffsets = {\n top: clippingClientRect.top - elementClientRect.top + paddingObject.top,\n bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom,\n left: clippingClientRect.left - elementClientRect.left + paddingObject.left,\n right: elementClientRect.right - clippingClientRect.right + paddingObject.right\n };\n var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element\n\n if (elementContext === popper && offsetData) {\n var offset = offsetData[placement];\n Object.keys(overflowOffsets).forEach(function (key) {\n var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1;\n var axis = [top, bottom].indexOf(key) >= 0 ? 'y' : 'x';\n overflowOffsets[key] += offset[axis] * multiply;\n });\n }\n\n return overflowOffsets;\n}","import getVariation from \"./getVariation.js\";\nimport { variationPlacements, basePlacements, placements as allPlacements } from \"../enums.js\";\nimport detectOverflow from \"./detectOverflow.js\";\nimport getBasePlacement from \"./getBasePlacement.js\";\nexport default function computeAutoPlacement(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n placement = _options.placement,\n boundary = _options.boundary,\n rootBoundary = _options.rootBoundary,\n padding = _options.padding,\n flipVariations = _options.flipVariations,\n _options$allowedAutoP = _options.allowedAutoPlacements,\n allowedAutoPlacements = _options$allowedAutoP === void 0 ? allPlacements : _options$allowedAutoP;\n var variation = getVariation(placement);\n var placements = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function (placement) {\n return getVariation(placement) === variation;\n }) : basePlacements;\n var allowedPlacements = placements.filter(function (placement) {\n return allowedAutoPlacements.indexOf(placement) >= 0;\n });\n\n if (allowedPlacements.length === 0) {\n allowedPlacements = placements;\n\n if (process.env.NODE_ENV !== \"production\") {\n console.error(['Popper: The `allowedAutoPlacements` option did not allow any', 'placements. Ensure the `placement` option matches the variation', 'of the allowed placements.', 'For example, \"auto\" cannot be used to allow \"bottom-start\".', 'Use \"auto-start\" instead.'].join(' '));\n }\n } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions...\n\n\n var overflows = allowedPlacements.reduce(function (acc, placement) {\n acc[placement] = detectOverflow(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding\n })[getBasePlacement(placement)];\n return acc;\n }, {});\n return Object.keys(overflows).sort(function (a, b) {\n return overflows[a] - overflows[b];\n });\n}","import getOppositePlacement from \"../utils/getOppositePlacement.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getOppositeVariationPlacement from \"../utils/getOppositeVariationPlacement.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\nimport computeAutoPlacement from \"../utils/computeAutoPlacement.js\";\nimport { bottom, top, start, right, left, auto } from \"../enums.js\";\nimport getVariation from \"../utils/getVariation.js\"; // eslint-disable-next-line import/no-unused-modules\n\nfunction getExpandedFallbackPlacements(placement) {\n if (getBasePlacement(placement) === auto) {\n return [];\n }\n\n var oppositePlacement = getOppositePlacement(placement);\n return [getOppositeVariationPlacement(placement), oppositePlacement, getOppositeVariationPlacement(oppositePlacement)];\n}\n\nfunction flip(_ref) {\n var state = _ref.state,\n options = _ref.options,\n name = _ref.name;\n\n if (state.modifiersData[name]._skip) {\n return;\n }\n\n var _options$mainAxis = options.mainAxis,\n checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis,\n _options$altAxis = options.altAxis,\n checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis,\n specifiedFallbackPlacements = options.fallbackPlacements,\n padding = options.padding,\n boundary = options.boundary,\n rootBoundary = options.rootBoundary,\n altBoundary = options.altBoundary,\n _options$flipVariatio = options.flipVariations,\n flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio,\n allowedAutoPlacements = options.allowedAutoPlacements;\n var preferredPlacement = state.options.placement;\n var basePlacement = getBasePlacement(preferredPlacement);\n var isBasePlacement = basePlacement === preferredPlacement;\n var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [getOppositePlacement(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement));\n var placements = [preferredPlacement].concat(fallbackPlacements).reduce(function (acc, placement) {\n return acc.concat(getBasePlacement(placement) === auto ? computeAutoPlacement(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding,\n flipVariations: flipVariations,\n allowedAutoPlacements: allowedAutoPlacements\n }) : placement);\n }, []);\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var checksMap = new Map();\n var makeFallbackChecks = true;\n var firstFittingPlacement = placements[0];\n\n for (var i = 0; i < placements.length; i++) {\n var placement = placements[i];\n\n var _basePlacement = getBasePlacement(placement);\n\n var isStartVariation = getVariation(placement) === start;\n var isVertical = [top, bottom].indexOf(_basePlacement) >= 0;\n var len = isVertical ? 'width' : 'height';\n var overflow = detectOverflow(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n altBoundary: altBoundary,\n padding: padding\n });\n var mainVariationSide = isVertical ? isStartVariation ? right : left : isStartVariation ? bottom : top;\n\n if (referenceRect[len] > popperRect[len]) {\n mainVariationSide = getOppositePlacement(mainVariationSide);\n }\n\n var altVariationSide = getOppositePlacement(mainVariationSide);\n var checks = [];\n\n if (checkMainAxis) {\n checks.push(overflow[_basePlacement] <= 0);\n }\n\n if (checkAltAxis) {\n checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0);\n }\n\n if (checks.every(function (check) {\n return check;\n })) {\n firstFittingPlacement = placement;\n makeFallbackChecks = false;\n break;\n }\n\n checksMap.set(placement, checks);\n }\n\n if (makeFallbackChecks) {\n // `2` may be desired in some cases – research later\n var numberOfChecks = flipVariations ? 3 : 1;\n\n var _loop = function _loop(_i) {\n var fittingPlacement = placements.find(function (placement) {\n var checks = checksMap.get(placement);\n\n if (checks) {\n return checks.slice(0, _i).every(function (check) {\n return check;\n });\n }\n });\n\n if (fittingPlacement) {\n firstFittingPlacement = fittingPlacement;\n return \"break\";\n }\n };\n\n for (var _i = numberOfChecks; _i > 0; _i--) {\n var _ret = _loop(_i);\n\n if (_ret === \"break\") break;\n }\n }\n\n if (state.placement !== firstFittingPlacement) {\n state.modifiersData[name]._skip = true;\n state.placement = firstFittingPlacement;\n state.reset = true;\n }\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'flip',\n enabled: true,\n phase: 'main',\n fn: flip,\n requiresIfExists: ['offset'],\n data: {\n _skip: false\n }\n};","import { top, bottom, left, right } from \"../enums.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\n\nfunction getSideOffsets(overflow, rect, preventedOffsets) {\n if (preventedOffsets === void 0) {\n preventedOffsets = {\n x: 0,\n y: 0\n };\n }\n\n return {\n top: overflow.top - rect.height - preventedOffsets.y,\n right: overflow.right - rect.width + preventedOffsets.x,\n bottom: overflow.bottom - rect.height + preventedOffsets.y,\n left: overflow.left - rect.width - preventedOffsets.x\n };\n}\n\nfunction isAnySideFullyClipped(overflow) {\n return [top, right, bottom, left].some(function (side) {\n return overflow[side] >= 0;\n });\n}\n\nfunction hide(_ref) {\n var state = _ref.state,\n name = _ref.name;\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var preventedOffsets = state.modifiersData.preventOverflow;\n var referenceOverflow = detectOverflow(state, {\n elementContext: 'reference'\n });\n var popperAltOverflow = detectOverflow(state, {\n altBoundary: true\n });\n var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect);\n var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets);\n var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets);\n var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets);\n state.modifiersData[name] = {\n referenceClippingOffsets: referenceClippingOffsets,\n popperEscapeOffsets: popperEscapeOffsets,\n isReferenceHidden: isReferenceHidden,\n hasPopperEscaped: hasPopperEscaped\n };\n state.attributes.popper = Object.assign({}, state.attributes.popper, {\n 'data-popper-reference-hidden': isReferenceHidden,\n 'data-popper-escaped': hasPopperEscaped\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'hide',\n enabled: true,\n phase: 'main',\n requiresIfExists: ['preventOverflow'],\n fn: hide\n};","import getBasePlacement from \"../utils/getBasePlacement.js\";\nimport { top, left, right, placements } from \"../enums.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport function distanceAndSkiddingToXY(placement, rects, offset) {\n var basePlacement = getBasePlacement(placement);\n var invertDistance = [left, top].indexOf(basePlacement) >= 0 ? -1 : 1;\n\n var _ref = typeof offset === 'function' ? offset(Object.assign({}, rects, {\n placement: placement\n })) : offset,\n skidding = _ref[0],\n distance = _ref[1];\n\n skidding = skidding || 0;\n distance = (distance || 0) * invertDistance;\n return [left, right].indexOf(basePlacement) >= 0 ? {\n x: distance,\n y: skidding\n } : {\n x: skidding,\n y: distance\n };\n}\n\nfunction offset(_ref2) {\n var state = _ref2.state,\n options = _ref2.options,\n name = _ref2.name;\n var _options$offset = options.offset,\n offset = _options$offset === void 0 ? [0, 0] : _options$offset;\n var data = placements.reduce(function (acc, placement) {\n acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset);\n return acc;\n }, {});\n var _data$state$placement = data[state.placement],\n x = _data$state$placement.x,\n y = _data$state$placement.y;\n\n if (state.modifiersData.popperOffsets != null) {\n state.modifiersData.popperOffsets.x += x;\n state.modifiersData.popperOffsets.y += y;\n }\n\n state.modifiersData[name] = data;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'offset',\n enabled: true,\n phase: 'main',\n requires: ['popperOffsets'],\n fn: offset\n};","import { top, left, right, bottom, start } from \"../enums.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getMainAxisFromPlacement from \"../utils/getMainAxisFromPlacement.js\";\nimport getAltAxis from \"../utils/getAltAxis.js\";\nimport { within, withinMaxClamp } from \"../utils/within.js\";\nimport getLayoutRect from \"../dom-utils/getLayoutRect.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\nimport getVariation from \"../utils/getVariation.js\";\nimport getFreshSideObject from \"../utils/getFreshSideObject.js\";\nimport { min as mathMin, max as mathMax } from \"../utils/math.js\";\n\nfunction preventOverflow(_ref) {\n var state = _ref.state,\n options = _ref.options,\n name = _ref.name;\n var _options$mainAxis = options.mainAxis,\n checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis,\n _options$altAxis = options.altAxis,\n checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis,\n boundary = options.boundary,\n rootBoundary = options.rootBoundary,\n altBoundary = options.altBoundary,\n padding = options.padding,\n _options$tether = options.tether,\n tether = _options$tether === void 0 ? true : _options$tether,\n _options$tetherOffset = options.tetherOffset,\n tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset;\n var overflow = detectOverflow(state, {\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding,\n altBoundary: altBoundary\n });\n var basePlacement = getBasePlacement(state.placement);\n var variation = getVariation(state.placement);\n var isBasePlacement = !variation;\n var mainAxis = getMainAxisFromPlacement(basePlacement);\n var altAxis = getAltAxis(mainAxis);\n var popperOffsets = state.modifiersData.popperOffsets;\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var tetherOffsetValue = typeof tetherOffset === 'function' ? tetherOffset(Object.assign({}, state.rects, {\n placement: state.placement\n })) : tetherOffset;\n var normalizedTetherOffsetValue = typeof tetherOffsetValue === 'number' ? {\n mainAxis: tetherOffsetValue,\n altAxis: tetherOffsetValue\n } : Object.assign({\n mainAxis: 0,\n altAxis: 0\n }, tetherOffsetValue);\n var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null;\n var data = {\n x: 0,\n y: 0\n };\n\n if (!popperOffsets) {\n return;\n }\n\n if (checkMainAxis) {\n var _offsetModifierState$;\n\n var mainSide = mainAxis === 'y' ? top : left;\n var altSide = mainAxis === 'y' ? bottom : right;\n var len = mainAxis === 'y' ? 'height' : 'width';\n var offset = popperOffsets[mainAxis];\n var min = offset + overflow[mainSide];\n var max = offset - overflow[altSide];\n var additive = tether ? -popperRect[len] / 2 : 0;\n var minLen = variation === start ? referenceRect[len] : popperRect[len];\n var maxLen = variation === start ? -popperRect[len] : -referenceRect[len]; // We need to include the arrow in the calculation so the arrow doesn't go\n // outside the reference bounds\n\n var arrowElement = state.elements.arrow;\n var arrowRect = tether && arrowElement ? getLayoutRect(arrowElement) : {\n width: 0,\n height: 0\n };\n var arrowPaddingObject = state.modifiersData['arrow#persistent'] ? state.modifiersData['arrow#persistent'].padding : getFreshSideObject();\n var arrowPaddingMin = arrowPaddingObject[mainSide];\n var arrowPaddingMax = arrowPaddingObject[altSide]; // If the reference length is smaller than the arrow length, we don't want\n // to include its full size in the calculation. If the reference is small\n // and near the edge of a boundary, the popper can overflow even if the\n // reference is not overflowing as well (e.g. virtual elements with no\n // width or height)\n\n var arrowLen = within(0, referenceRect[len], arrowRect[len]);\n var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis;\n var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis;\n var arrowOffsetParent = state.elements.arrow && getOffsetParent(state.elements.arrow);\n var clientOffset = arrowOffsetParent ? mainAxis === 'y' ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0;\n var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0;\n var tetherMin = offset + minOffset - offsetModifierValue - clientOffset;\n var tetherMax = offset + maxOffset - offsetModifierValue;\n var preventedOffset = within(tether ? mathMin(min, tetherMin) : min, offset, tether ? mathMax(max, tetherMax) : max);\n popperOffsets[mainAxis] = preventedOffset;\n data[mainAxis] = preventedOffset - offset;\n }\n\n if (checkAltAxis) {\n var _offsetModifierState$2;\n\n var _mainSide = mainAxis === 'x' ? top : left;\n\n var _altSide = mainAxis === 'x' ? bottom : right;\n\n var _offset = popperOffsets[altAxis];\n\n var _len = altAxis === 'y' ? 'height' : 'width';\n\n var _min = _offset + overflow[_mainSide];\n\n var _max = _offset - overflow[_altSide];\n\n var isOriginSide = [top, left].indexOf(basePlacement) !== -1;\n\n var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0;\n\n var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis;\n\n var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max;\n\n var _preventedOffset = tether && isOriginSide ? withinMaxClamp(_tetherMin, _offset, _tetherMax) : within(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max);\n\n popperOffsets[altAxis] = _preventedOffset;\n data[altAxis] = _preventedOffset - _offset;\n }\n\n state.modifiersData[name] = data;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'preventOverflow',\n enabled: true,\n phase: 'main',\n fn: preventOverflow,\n requiresIfExists: ['offset']\n};","export default function getAltAxis(axis) {\n return axis === 'x' ? 'y' : 'x';\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getNodeScroll from \"./getNodeScroll.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport isScrollParent from \"./isScrollParent.js\";\nimport { round } from \"../utils/math.js\";\n\nfunction isElementScaled(element) {\n var rect = element.getBoundingClientRect();\n var scaleX = round(rect.width) / element.offsetWidth || 1;\n var scaleY = round(rect.height) / element.offsetHeight || 1;\n return scaleX !== 1 || scaleY !== 1;\n} // Returns the composite rect of an element relative to its offsetParent.\n// Composite means it takes into account transforms as well as layout.\n\n\nexport default function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) {\n if (isFixed === void 0) {\n isFixed = false;\n }\n\n var isOffsetParentAnElement = isHTMLElement(offsetParent);\n var offsetParentIsScaled = isHTMLElement(offsetParent) && isElementScaled(offsetParent);\n var documentElement = getDocumentElement(offsetParent);\n var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled);\n var scroll = {\n scrollLeft: 0,\n scrollTop: 0\n };\n var offsets = {\n x: 0,\n y: 0\n };\n\n if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n if (getNodeName(offsetParent) !== 'body' || // https://github.com/popperjs/popper-core/issues/1078\n isScrollParent(documentElement)) {\n scroll = getNodeScroll(offsetParent);\n }\n\n if (isHTMLElement(offsetParent)) {\n offsets = getBoundingClientRect(offsetParent, true);\n offsets.x += offsetParent.clientLeft;\n offsets.y += offsetParent.clientTop;\n } else if (documentElement) {\n offsets.x = getWindowScrollBarX(documentElement);\n }\n }\n\n return {\n x: rect.left + scroll.scrollLeft - offsets.x,\n y: rect.top + scroll.scrollTop - offsets.y,\n width: rect.width,\n height: rect.height\n };\n}","import getWindowScroll from \"./getWindowScroll.js\";\nimport getWindow from \"./getWindow.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nimport getHTMLElementScroll from \"./getHTMLElementScroll.js\";\nexport default function getNodeScroll(node) {\n if (node === getWindow(node) || !isHTMLElement(node)) {\n return getWindowScroll(node);\n } else {\n return getHTMLElementScroll(node);\n }\n}","export default function getHTMLElementScroll(element) {\n return {\n scrollLeft: element.scrollLeft,\n scrollTop: element.scrollTop\n };\n}","import { modifierPhases } from \"../enums.js\"; // source: https://stackoverflow.com/questions/49875255\n\nfunction order(modifiers) {\n var map = new Map();\n var visited = new Set();\n var result = [];\n modifiers.forEach(function (modifier) {\n map.set(modifier.name, modifier);\n }); // On visiting object, check for its dependencies and visit them recursively\n\n function sort(modifier) {\n visited.add(modifier.name);\n var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []);\n requires.forEach(function (dep) {\n if (!visited.has(dep)) {\n var depModifier = map.get(dep);\n\n if (depModifier) {\n sort(depModifier);\n }\n }\n });\n result.push(modifier);\n }\n\n modifiers.forEach(function (modifier) {\n if (!visited.has(modifier.name)) {\n // check for visited object\n sort(modifier);\n }\n });\n return result;\n}\n\nexport default function orderModifiers(modifiers) {\n // order based on dependencies\n var orderedModifiers = order(modifiers); // order based on phase\n\n return modifierPhases.reduce(function (acc, phase) {\n return acc.concat(orderedModifiers.filter(function (modifier) {\n return modifier.phase === phase;\n }));\n }, []);\n}","import getCompositeRect from \"./dom-utils/getCompositeRect.js\";\nimport getLayoutRect from \"./dom-utils/getLayoutRect.js\";\nimport listScrollParents from \"./dom-utils/listScrollParents.js\";\nimport getOffsetParent from \"./dom-utils/getOffsetParent.js\";\nimport getComputedStyle from \"./dom-utils/getComputedStyle.js\";\nimport orderModifiers from \"./utils/orderModifiers.js\";\nimport debounce from \"./utils/debounce.js\";\nimport validateModifiers from \"./utils/validateModifiers.js\";\nimport uniqueBy from \"./utils/uniqueBy.js\";\nimport getBasePlacement from \"./utils/getBasePlacement.js\";\nimport mergeByName from \"./utils/mergeByName.js\";\nimport detectOverflow from \"./utils/detectOverflow.js\";\nimport { isElement } from \"./dom-utils/instanceOf.js\";\nimport { auto } from \"./enums.js\";\nvar INVALID_ELEMENT_ERROR = 'Popper: Invalid reference or popper argument provided. They must be either a DOM element or virtual element.';\nvar INFINITE_LOOP_ERROR = 'Popper: An infinite loop in the modifiers cycle has been detected! The cycle has been interrupted to prevent a browser crash.';\nvar DEFAULT_OPTIONS = {\n placement: 'bottom',\n modifiers: [],\n strategy: 'absolute'\n};\n\nfunction areValidElements() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return !args.some(function (element) {\n return !(element && typeof element.getBoundingClientRect === 'function');\n });\n}\n\nexport function popperGenerator(generatorOptions) {\n if (generatorOptions === void 0) {\n generatorOptions = {};\n }\n\n var _generatorOptions = generatorOptions,\n _generatorOptions$def = _generatorOptions.defaultModifiers,\n defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def,\n _generatorOptions$def2 = _generatorOptions.defaultOptions,\n defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2;\n return function createPopper(reference, popper, options) {\n if (options === void 0) {\n options = defaultOptions;\n }\n\n var state = {\n placement: 'bottom',\n orderedModifiers: [],\n options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions),\n modifiersData: {},\n elements: {\n reference: reference,\n popper: popper\n },\n attributes: {},\n styles: {}\n };\n var effectCleanupFns = [];\n var isDestroyed = false;\n var instance = {\n state: state,\n setOptions: function setOptions(setOptionsAction) {\n var options = typeof setOptionsAction === 'function' ? setOptionsAction(state.options) : setOptionsAction;\n cleanupModifierEffects();\n state.options = Object.assign({}, defaultOptions, state.options, options);\n state.scrollParents = {\n reference: isElement(reference) ? listScrollParents(reference) : reference.contextElement ? listScrollParents(reference.contextElement) : [],\n popper: listScrollParents(popper)\n }; // Orders the modifiers based on their dependencies and `phase`\n // properties\n\n var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers\n\n state.orderedModifiers = orderedModifiers.filter(function (m) {\n return m.enabled;\n }); // Validate the provided modifiers so that the consumer will get warned\n // if one of the modifiers is invalid for any reason\n\n if (process.env.NODE_ENV !== \"production\") {\n var modifiers = uniqueBy([].concat(orderedModifiers, state.options.modifiers), function (_ref) {\n var name = _ref.name;\n return name;\n });\n validateModifiers(modifiers);\n\n if (getBasePlacement(state.options.placement) === auto) {\n var flipModifier = state.orderedModifiers.find(function (_ref2) {\n var name = _ref2.name;\n return name === 'flip';\n });\n\n if (!flipModifier) {\n console.error(['Popper: \"auto\" placements require the \"flip\" modifier be', 'present and enabled to work.'].join(' '));\n }\n }\n\n var _getComputedStyle = getComputedStyle(popper),\n marginTop = _getComputedStyle.marginTop,\n marginRight = _getComputedStyle.marginRight,\n marginBottom = _getComputedStyle.marginBottom,\n marginLeft = _getComputedStyle.marginLeft; // We no longer take into account `margins` on the popper, and it can\n // cause bugs with positioning, so we'll warn the consumer\n\n\n if ([marginTop, marginRight, marginBottom, marginLeft].some(function (margin) {\n return parseFloat(margin);\n })) {\n console.warn(['Popper: CSS \"margin\" styles cannot be used to apply padding', 'between the popper and its reference element or boundary.', 'To replicate margin, use the `offset` modifier, as well as', 'the `padding` option in the `preventOverflow` and `flip`', 'modifiers.'].join(' '));\n }\n }\n\n runModifierEffects();\n return instance.update();\n },\n // Sync update – it will always be executed, even if not necessary. This\n // is useful for low frequency updates where sync behavior simplifies the\n // logic.\n // For high frequency updates (e.g. `resize` and `scroll` events), always\n // prefer the async Popper#update method\n forceUpdate: function forceUpdate() {\n if (isDestroyed) {\n return;\n }\n\n var _state$elements = state.elements,\n reference = _state$elements.reference,\n popper = _state$elements.popper; // Don't proceed if `reference` or `popper` are not valid elements\n // anymore\n\n if (!areValidElements(reference, popper)) {\n if (process.env.NODE_ENV !== \"production\") {\n console.error(INVALID_ELEMENT_ERROR);\n }\n\n return;\n } // Store the reference and popper rects to be read by modifiers\n\n\n state.rects = {\n reference: getCompositeRect(reference, getOffsetParent(popper), state.options.strategy === 'fixed'),\n popper: getLayoutRect(popper)\n }; // Modifiers have the ability to reset the current update cycle. The\n // most common use case for this is the `flip` modifier changing the\n // placement, which then needs to re-run all the modifiers, because the\n // logic was previously ran for the previous placement and is therefore\n // stale/incorrect\n\n state.reset = false;\n state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier\n // is filled with the initial data specified by the modifier. This means\n // it doesn't persist and is fresh on each update.\n // To ensure persistent data, use `${name}#persistent`\n\n state.orderedModifiers.forEach(function (modifier) {\n return state.modifiersData[modifier.name] = Object.assign({}, modifier.data);\n });\n var __debug_loops__ = 0;\n\n for (var index = 0; index < state.orderedModifiers.length; index++) {\n if (process.env.NODE_ENV !== \"production\") {\n __debug_loops__ += 1;\n\n if (__debug_loops__ > 100) {\n console.error(INFINITE_LOOP_ERROR);\n break;\n }\n }\n\n if (state.reset === true) {\n state.reset = false;\n index = -1;\n continue;\n }\n\n var _state$orderedModifie = state.orderedModifiers[index],\n fn = _state$orderedModifie.fn,\n _state$orderedModifie2 = _state$orderedModifie.options,\n _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2,\n name = _state$orderedModifie.name;\n\n if (typeof fn === 'function') {\n state = fn({\n state: state,\n options: _options,\n name: name,\n instance: instance\n }) || state;\n }\n }\n },\n // Async and optimistically optimized update – it will not be executed if\n // not necessary (debounced to run at most once-per-tick)\n update: debounce(function () {\n return new Promise(function (resolve) {\n instance.forceUpdate();\n resolve(state);\n });\n }),\n destroy: function destroy() {\n cleanupModifierEffects();\n isDestroyed = true;\n }\n };\n\n if (!areValidElements(reference, popper)) {\n if (process.env.NODE_ENV !== \"production\") {\n console.error(INVALID_ELEMENT_ERROR);\n }\n\n return instance;\n }\n\n instance.setOptions(options).then(function (state) {\n if (!isDestroyed && options.onFirstUpdate) {\n options.onFirstUpdate(state);\n }\n }); // Modifiers have the ability to execute arbitrary code before the first\n // update cycle runs. They will be executed in the same order as the update\n // cycle. This is useful when a modifier adds some persistent data that\n // other modifiers need to use, but the modifier is run after the dependent\n // one.\n\n function runModifierEffects() {\n state.orderedModifiers.forEach(function (_ref3) {\n var name = _ref3.name,\n _ref3$options = _ref3.options,\n options = _ref3$options === void 0 ? {} : _ref3$options,\n effect = _ref3.effect;\n\n if (typeof effect === 'function') {\n var cleanupFn = effect({\n state: state,\n name: name,\n instance: instance,\n options: options\n });\n\n var noopFn = function noopFn() {};\n\n effectCleanupFns.push(cleanupFn || noopFn);\n }\n });\n }\n\n function cleanupModifierEffects() {\n effectCleanupFns.forEach(function (fn) {\n return fn();\n });\n effectCleanupFns = [];\n }\n\n return instance;\n };\n}\nexport var createPopper = /*#__PURE__*/popperGenerator(); // eslint-disable-next-line import/no-unused-modules\n\nexport { detectOverflow };","export default function debounce(fn) {\n var pending;\n return function () {\n if (!pending) {\n pending = new Promise(function (resolve) {\n Promise.resolve().then(function () {\n pending = undefined;\n resolve(fn());\n });\n });\n }\n\n return pending;\n };\n}","export default function mergeByName(modifiers) {\n var merged = modifiers.reduce(function (merged, current) {\n var existing = merged[current.name];\n merged[current.name] = existing ? Object.assign({}, existing, current, {\n options: Object.assign({}, existing.options, current.options),\n data: Object.assign({}, existing.data, current.data)\n }) : current;\n return merged;\n }, {}); // IE11 does not support Object.values\n\n return Object.keys(merged).map(function (key) {\n return merged[key];\n });\n}","import { popperGenerator, detectOverflow } from \"./createPopper.js\";\nimport eventListeners from \"./modifiers/eventListeners.js\";\nimport popperOffsets from \"./modifiers/popperOffsets.js\";\nimport computeStyles from \"./modifiers/computeStyles.js\";\nimport applyStyles from \"./modifiers/applyStyles.js\";\nimport offset from \"./modifiers/offset.js\";\nimport flip from \"./modifiers/flip.js\";\nimport preventOverflow from \"./modifiers/preventOverflow.js\";\nimport arrow from \"./modifiers/arrow.js\";\nimport hide from \"./modifiers/hide.js\";\nvar defaultModifiers = [eventListeners, popperOffsets, computeStyles, applyStyles, offset, flip, preventOverflow, arrow, hide];\nvar createPopper = /*#__PURE__*/popperGenerator({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper, popperGenerator, defaultModifiers, detectOverflow }; // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper as createPopperLite } from \"./popper-lite.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport * from \"./modifiers/index.js\";","import computeOffsets from \"../utils/computeOffsets.js\";\n\nfunction popperOffsets(_ref) {\n var state = _ref.state,\n name = _ref.name;\n // Offsets are the actual position the popper needs to have to be\n // properly positioned near its reference element\n // This is the most basic placement, and will be adjusted by\n // the modifiers in the next step\n state.modifiersData[name] = computeOffsets({\n reference: state.rects.reference,\n element: state.rects.popper,\n strategy: 'absolute',\n placement: state.placement\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'popperOffsets',\n enabled: true,\n phase: 'read',\n fn: popperOffsets,\n data: {}\n};","import { Controller } from '@hotwired/stimulus';\nimport { createPopper } from '@popperjs/core';\nexport default class TooltipComponent extends Controller {\n // Create a new Popper instance\n connect() {\n this.popperInstance = createPopper(this.triggerTarget, this.tooltipTarget, {\n placement: this.placementValue,\n modifiers: [\n {\n name: 'offset',\n options: {\n offset: this.offsetValue\n }\n }\n ]\n });\n }\n // Destroy the Popper instance\n disconnect() {\n if (this.popperInstance) {\n this.popperInstance.destroy();\n }\n }\n show() {\n this.tooltipTarget.setAttribute('data-tooltip-show', '');\n this.tooltipTarget.classList.remove('invisible');\n // We need to tell Popper to update the tooltip position\n // after we show the tooltip, otherwise it will be incorrect\n this.popperInstance.update();\n this.dispatch('shown', { detail: { trigger: this.triggerTarget, tooltip: this.tooltipTarget } });\n }\n hide() {\n this.tooltipTarget.removeAttribute('data-tooltip-show');\n this.tooltipTarget.classList.add('invisible');\n this.dispatch('hidden', { detail: { trigger: this.triggerTarget, tooltip: this.tooltipTarget } });\n }\n}\nTooltipComponent.targets = ['trigger', 'tooltip'];\nTooltipComponent.values = {\n placement: { type: String, default: 'top' },\n offset: { type: Array, default: [0, 8] }\n};\n","const weekdays = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];\nconst months = [\n 'January',\n 'February',\n 'March',\n 'April',\n 'May',\n 'June',\n 'July',\n 'August',\n 'September',\n 'October',\n 'November',\n 'December'\n];\nfunction pad(num) {\n return `0${num}`.slice(-2);\n}\nfunction strftime(time, formatString) {\n const day = time.getDay();\n const date = time.getDate();\n const month = time.getMonth();\n const year = time.getFullYear();\n const hour = time.getHours();\n const minute = time.getMinutes();\n const second = time.getSeconds();\n return formatString.replace(/%([%aAbBcdeHIlmMpPSwyYZz])/g, function (_arg) {\n let match;\n const modifier = _arg[1];\n switch (modifier) {\n case '%':\n return '%';\n case 'a':\n return weekdays[day].slice(0, 3);\n case 'A':\n return weekdays[day];\n case 'b':\n return months[month].slice(0, 3);\n case 'B':\n return months[month];\n case 'c':\n return time.toString();\n case 'd':\n return pad(date);\n case 'e':\n return String(date);\n case 'H':\n return pad(hour);\n case 'I':\n return pad(strftime(time, '%l'));\n case 'l':\n if (hour === 0 || hour === 12) {\n return String(12);\n }\n else {\n return String((hour + 12) % 12);\n }\n case 'm':\n return pad(month + 1);\n case 'M':\n return pad(minute);\n case 'p':\n if (hour > 11) {\n return 'PM';\n }\n else {\n return 'AM';\n }\n case 'P':\n if (hour > 11) {\n return 'pm';\n }\n else {\n return 'am';\n }\n case 'S':\n return pad(second);\n case 'w':\n return String(day);\n case 'y':\n return pad(year % 100);\n case 'Y':\n return String(year);\n case 'Z':\n match = time.toString().match(/\\((\\w+)\\)$/);\n return match ? match[1] : '';\n case 'z':\n match = time.toString().match(/\\w([+-]\\d\\d\\d\\d) /);\n return match ? match[1] : '';\n }\n return '';\n });\n}\nfunction makeFormatter(options) {\n let format;\n return function () {\n if (format)\n return format;\n if ('Intl' in window) {\n try {\n format = new Intl.DateTimeFormat(undefined, options);\n return format;\n }\n catch (e) {\n if (!(e instanceof RangeError)) {\n throw e;\n }\n }\n }\n };\n}\nlet dayFirst = null;\nconst dayFirstFormatter = makeFormatter({ day: 'numeric', month: 'short' });\nfunction isDayFirst() {\n if (dayFirst !== null) {\n return dayFirst;\n }\n const formatter = dayFirstFormatter();\n if (formatter) {\n const output = formatter.format(new Date(0));\n dayFirst = !!output.match(/^\\d/);\n return dayFirst;\n }\n else {\n return false;\n }\n}\nlet yearSeparator = null;\nconst yearFormatter = makeFormatter({ day: 'numeric', month: 'short', year: 'numeric' });\nfunction isYearSeparator() {\n if (yearSeparator !== null) {\n return yearSeparator;\n }\n const formatter = yearFormatter();\n if (formatter) {\n const output = formatter.format(new Date(0));\n yearSeparator = !!output.match(/\\d,/);\n return yearSeparator;\n }\n else {\n return true;\n }\n}\nfunction isThisYear(date) {\n const now = new Date();\n return now.getUTCFullYear() === date.getUTCFullYear();\n}\nfunction makeRelativeFormat(locale, options) {\n if ('Intl' in window && 'RelativeTimeFormat' in window.Intl) {\n try {\n return new Intl.RelativeTimeFormat(locale, options);\n }\n catch (e) {\n if (!(e instanceof RangeError)) {\n throw e;\n }\n }\n }\n}\nfunction localeFromElement(el) {\n const container = el.closest('[lang]');\n if (container instanceof HTMLElement && container.lang) {\n return container.lang;\n }\n return 'default';\n}\n\nconst datetimes = new WeakMap();\nclass ExtendedTimeElement extends HTMLElement {\n static get observedAttributes() {\n return [\n 'datetime',\n 'day',\n 'format',\n 'lang',\n 'hour',\n 'minute',\n 'month',\n 'second',\n 'title',\n 'weekday',\n 'year',\n 'time-zone-name'\n ];\n }\n connectedCallback() {\n const title = this.getFormattedTitle();\n if (title && !this.hasAttribute('title')) {\n this.setAttribute('title', title);\n }\n const text = this.getFormattedDate();\n if (text) {\n this.textContent = text;\n }\n }\n attributeChangedCallback(attrName, oldValue, newValue) {\n const oldTitle = this.getFormattedTitle();\n if (attrName === 'datetime') {\n const millis = Date.parse(newValue);\n if (isNaN(millis)) {\n datetimes.delete(this);\n }\n else {\n datetimes.set(this, new Date(millis));\n }\n }\n const title = this.getFormattedTitle();\n const currentTitle = this.getAttribute('title');\n if (attrName !== 'title' && title && (!currentTitle || currentTitle === oldTitle)) {\n this.setAttribute('title', title);\n }\n const text = this.getFormattedDate();\n if (text) {\n this.textContent = text;\n }\n }\n get date() {\n return datetimes.get(this);\n }\n getFormattedTitle() {\n const date = this.date;\n if (!date)\n return;\n const formatter = titleFormatter();\n if (formatter) {\n return formatter.format(date);\n }\n else {\n try {\n return date.toLocaleString();\n }\n catch (e) {\n if (e instanceof RangeError) {\n return date.toString();\n }\n else {\n throw e;\n }\n }\n }\n }\n getFormattedDate() {\n return;\n }\n}\nconst titleFormatter = makeFormatter({\n day: 'numeric',\n month: 'short',\n year: 'numeric',\n hour: 'numeric',\n minute: '2-digit',\n timeZoneName: 'short'\n});\n\nconst formatters = new WeakMap();\nclass LocalTimeElement extends ExtendedTimeElement {\n attributeChangedCallback(attrName, oldValue, newValue) {\n if (attrName === 'hour' || attrName === 'minute' || attrName === 'second' || attrName === 'time-zone-name') {\n formatters.delete(this);\n }\n super.attributeChangedCallback(attrName, oldValue, newValue);\n }\n getFormattedDate() {\n const d = this.date;\n if (!d)\n return;\n const date = formatDate(this, d) || '';\n const time = formatTime(this, d) || '';\n return `${date} ${time}`.trim();\n }\n}\nfunction formatDate(el, date) {\n const props = {\n weekday: {\n short: '%a',\n long: '%A'\n },\n day: {\n numeric: '%e',\n '2-digit': '%d'\n },\n month: {\n short: '%b',\n long: '%B'\n },\n year: {\n numeric: '%Y',\n '2-digit': '%y'\n }\n };\n let format = isDayFirst() ? 'weekday day month year' : 'weekday month day, year';\n for (const prop in props) {\n const value = props[prop][el.getAttribute(prop) || ''];\n format = format.replace(prop, value || '');\n }\n format = format.replace(/(\\s,)|(,\\s$)/, '');\n return strftime(date, format).replace(/\\s+/, ' ').trim();\n}\nfunction formatTime(el, date) {\n const options = {};\n const hour = el.getAttribute('hour');\n if (hour === 'numeric' || hour === '2-digit')\n options.hour = hour;\n const minute = el.getAttribute('minute');\n if (minute === 'numeric' || minute === '2-digit')\n options.minute = minute;\n const second = el.getAttribute('second');\n if (second === 'numeric' || second === '2-digit')\n options.second = second;\n const tz = el.getAttribute('time-zone-name');\n if (tz === 'short' || tz === 'long')\n options.timeZoneName = tz;\n if (Object.keys(options).length === 0) {\n return;\n }\n let factory = formatters.get(el);\n if (!factory) {\n factory = makeFormatter(options);\n formatters.set(el, factory);\n }\n const formatter = factory();\n if (formatter) {\n return formatter.format(date);\n }\n else {\n const timef = options.second ? '%H:%M:%S' : '%H:%M';\n return strftime(date, timef);\n }\n}\nif (!window.customElements.get('local-time')) {\n window.LocalTimeElement = LocalTimeElement;\n window.customElements.define('local-time', LocalTimeElement);\n}\n\nclass RelativeTime {\n constructor(date, locale) {\n this.date = date;\n this.locale = locale;\n }\n toString() {\n const ago = this.timeElapsed();\n if (ago) {\n return ago;\n }\n else {\n const ahead = this.timeAhead();\n if (ahead) {\n return ahead;\n }\n else {\n return `on ${this.formatDate()}`;\n }\n }\n }\n timeElapsed() {\n const ms = new Date().getTime() - this.date.getTime();\n const sec = Math.round(ms / 1000);\n const min = Math.round(sec / 60);\n const hr = Math.round(min / 60);\n const day = Math.round(hr / 24);\n if (ms >= 0 && day < 30) {\n return this.timeAgoFromMs(ms);\n }\n else {\n return null;\n }\n }\n timeAhead() {\n const ms = this.date.getTime() - new Date().getTime();\n const sec = Math.round(ms / 1000);\n const min = Math.round(sec / 60);\n const hr = Math.round(min / 60);\n const day = Math.round(hr / 24);\n if (ms >= 0 && day < 30) {\n return this.timeUntil();\n }\n else {\n return null;\n }\n }\n timeAgo() {\n const ms = new Date().getTime() - this.date.getTime();\n return this.timeAgoFromMs(ms);\n }\n timeAgoFromMs(ms) {\n const sec = Math.round(ms / 1000);\n const min = Math.round(sec / 60);\n const hr = Math.round(min / 60);\n const day = Math.round(hr / 24);\n const month = Math.round(day / 30);\n const year = Math.round(month / 12);\n if (ms < 0) {\n return formatRelativeTime(this.locale, 0, 'second');\n }\n else if (sec < 10) {\n return formatRelativeTime(this.locale, 0, 'second');\n }\n else if (sec < 45) {\n return formatRelativeTime(this.locale, -sec, 'second');\n }\n else if (sec < 90) {\n return formatRelativeTime(this.locale, -min, 'minute');\n }\n else if (min < 45) {\n return formatRelativeTime(this.locale, -min, 'minute');\n }\n else if (min < 90) {\n return formatRelativeTime(this.locale, -hr, 'hour');\n }\n else if (hr < 24) {\n return formatRelativeTime(this.locale, -hr, 'hour');\n }\n else if (hr < 36) {\n return formatRelativeTime(this.locale, -day, 'day');\n }\n else if (day < 30) {\n return formatRelativeTime(this.locale, -day, 'day');\n }\n else if (month < 18) {\n return formatRelativeTime(this.locale, -month, 'month');\n }\n else {\n return formatRelativeTime(this.locale, -year, 'year');\n }\n }\n microTimeAgo() {\n const ms = new Date().getTime() - this.date.getTime();\n const sec = Math.round(ms / 1000);\n const min = Math.round(sec / 60);\n const hr = Math.round(min / 60);\n const day = Math.round(hr / 24);\n const month = Math.round(day / 30);\n const year = Math.round(month / 12);\n if (min < 1) {\n return '1m';\n }\n else if (min < 60) {\n return `${min}m`;\n }\n else if (hr < 24) {\n return `${hr}h`;\n }\n else if (day < 365) {\n return `${day}d`;\n }\n else {\n return `${year}y`;\n }\n }\n timeUntil() {\n const ms = this.date.getTime() - new Date().getTime();\n return this.timeUntilFromMs(ms);\n }\n timeUntilFromMs(ms) {\n const sec = Math.round(ms / 1000);\n const min = Math.round(sec / 60);\n const hr = Math.round(min / 60);\n const day = Math.round(hr / 24);\n const month = Math.round(day / 30);\n const year = Math.round(month / 12);\n if (month >= 18) {\n return formatRelativeTime(this.locale, year, 'year');\n }\n else if (month >= 12) {\n return formatRelativeTime(this.locale, year, 'year');\n }\n else if (day >= 45) {\n return formatRelativeTime(this.locale, month, 'month');\n }\n else if (day >= 30) {\n return formatRelativeTime(this.locale, month, 'month');\n }\n else if (hr >= 36) {\n return formatRelativeTime(this.locale, day, 'day');\n }\n else if (hr >= 24) {\n return formatRelativeTime(this.locale, day, 'day');\n }\n else if (min >= 90) {\n return formatRelativeTime(this.locale, hr, 'hour');\n }\n else if (min >= 45) {\n return formatRelativeTime(this.locale, hr, 'hour');\n }\n else if (sec >= 90) {\n return formatRelativeTime(this.locale, min, 'minute');\n }\n else if (sec >= 45) {\n return formatRelativeTime(this.locale, min, 'minute');\n }\n else if (sec >= 10) {\n return formatRelativeTime(this.locale, sec, 'second');\n }\n else {\n return formatRelativeTime(this.locale, 0, 'second');\n }\n }\n microTimeUntil() {\n const ms = this.date.getTime() - new Date().getTime();\n const sec = Math.round(ms / 1000);\n const min = Math.round(sec / 60);\n const hr = Math.round(min / 60);\n const day = Math.round(hr / 24);\n const month = Math.round(day / 30);\n const year = Math.round(month / 12);\n if (day >= 365) {\n return `${year}y`;\n }\n else if (hr >= 24) {\n return `${day}d`;\n }\n else if (min >= 60) {\n return `${hr}h`;\n }\n else if (min > 1) {\n return `${min}m`;\n }\n else {\n return '1m';\n }\n }\n formatDate() {\n let format = isDayFirst() ? '%e %b' : '%b %e';\n if (!isThisYear(this.date)) {\n format += isYearSeparator() ? ', %Y' : ' %Y';\n }\n return strftime(this.date, format);\n }\n formatTime() {\n const formatter = timeFormatter();\n if (formatter) {\n return formatter.format(this.date);\n }\n else {\n return strftime(this.date, '%l:%M%P');\n }\n }\n}\nfunction formatRelativeTime(locale, value, unit) {\n const formatter = makeRelativeFormat(locale, { numeric: 'auto' });\n if (formatter) {\n return formatter.format(value, unit);\n }\n else {\n return formatEnRelativeTime(value, unit);\n }\n}\nfunction formatEnRelativeTime(value, unit) {\n if (value === 0) {\n switch (unit) {\n case 'year':\n case 'quarter':\n case 'month':\n case 'week':\n return `this ${unit}`;\n case 'day':\n return 'today';\n case 'hour':\n case 'minute':\n return `in 0 ${unit}s`;\n case 'second':\n return 'now';\n }\n }\n else if (value === 1) {\n switch (unit) {\n case 'year':\n case 'quarter':\n case 'month':\n case 'week':\n return `next ${unit}`;\n case 'day':\n return 'tomorrow';\n case 'hour':\n case 'minute':\n case 'second':\n return `in 1 ${unit}`;\n }\n }\n else if (value === -1) {\n switch (unit) {\n case 'year':\n case 'quarter':\n case 'month':\n case 'week':\n return `last ${unit}`;\n case 'day':\n return 'yesterday';\n case 'hour':\n case 'minute':\n case 'second':\n return `1 ${unit} ago`;\n }\n }\n else if (value > 1) {\n switch (unit) {\n case 'year':\n case 'quarter':\n case 'month':\n case 'week':\n case 'day':\n case 'hour':\n case 'minute':\n case 'second':\n return `in ${value} ${unit}s`;\n }\n }\n else if (value < -1) {\n switch (unit) {\n case 'year':\n case 'quarter':\n case 'month':\n case 'week':\n case 'day':\n case 'hour':\n case 'minute':\n case 'second':\n return `${-value} ${unit}s ago`;\n }\n }\n throw new RangeError(`Invalid unit argument for format() '${unit}'`);\n}\nconst timeFormatter = makeFormatter({ hour: 'numeric', minute: '2-digit' });\n\nclass RelativeTimeElement extends ExtendedTimeElement {\n getFormattedDate() {\n const date = this.date;\n if (!date)\n return;\n return new RelativeTime(date, localeFromElement(this)).toString();\n }\n connectedCallback() {\n nowElements.push(this);\n if (!updateNowElementsId) {\n updateNowElements();\n updateNowElementsId = window.setInterval(updateNowElements, 60 * 1000);\n }\n super.connectedCallback();\n }\n disconnectedCallback() {\n const ix = nowElements.indexOf(this);\n if (ix !== -1) {\n nowElements.splice(ix, 1);\n }\n if (!nowElements.length) {\n if (updateNowElementsId) {\n clearInterval(updateNowElementsId);\n updateNowElementsId = null;\n }\n }\n }\n}\nconst nowElements = [];\nlet updateNowElementsId;\nfunction updateNowElements() {\n let time, i, len;\n for (i = 0, len = nowElements.length; i < len; i++) {\n time = nowElements[i];\n time.textContent = time.getFormattedDate() || '';\n }\n}\nif (!window.customElements.get('relative-time')) {\n window.RelativeTimeElement = RelativeTimeElement;\n window.customElements.define('relative-time', RelativeTimeElement);\n}\n\nclass TimeAgoElement extends RelativeTimeElement {\n getFormattedDate() {\n const format = this.getAttribute('format');\n const date = this.date;\n if (!date)\n return;\n if (format === 'micro') {\n return new RelativeTime(date, localeFromElement(this)).microTimeAgo();\n }\n else {\n return new RelativeTime(date, localeFromElement(this)).timeAgo();\n }\n }\n}\nif (!window.customElements.get('time-ago')) {\n window.TimeAgoElement = TimeAgoElement;\n window.customElements.define('time-ago', TimeAgoElement);\n}\n\nclass TimeUntilElement extends RelativeTimeElement {\n getFormattedDate() {\n const format = this.getAttribute('format');\n const date = this.date;\n if (!date)\n return;\n if (format === 'micro') {\n return new RelativeTime(date, localeFromElement(this)).microTimeUntil();\n }\n else {\n return new RelativeTime(date, localeFromElement(this)).timeUntil();\n }\n }\n}\nif (!window.customElements.get('time-until')) {\n window.TimeUntilElement = TimeUntilElement;\n window.customElements.define('time-until', TimeUntilElement);\n}\n\nexport { LocalTimeElement, RelativeTimeElement, TimeAgoElement, TimeUntilElement };\n","import { Application } from '@hotwired/stimulus';\nimport ClipboardCopyComponent from './clipboard-copy-component';\nimport SlideoverComponent from './slideover-component';\nimport TooltipComponent from './tooltip-component';\nimport './time_ago_component';\nconst application = Application.start();\napplication.register('clipboard-copy-component', ClipboardCopyComponent);\napplication.register('slideover-component', SlideoverComponent);\napplication.register('tooltip-component', TooltipComponent);\n","import { Controller } from '@hotwired/stimulus';\nexport default class ClipboardCopyComponent extends Controller {\n copy() {\n const value = this.element.attributes.getNamedItem('value');\n const forNode = this.element.attributes.getNamedItem('for');\n if (value) {\n navigator.clipboard.writeText(value.value);\n }\n else if (forNode) {\n const node = document.getElementById(forNode.value);\n navigator.clipboard.writeText((node === null || node === void 0 ? void 0 : node.textContent) || '');\n }\n else {\n // just copy inner text\n navigator.clipboard.writeText(this.element.textContent || '');\n }\n }\n}\n"],"names":["EventListener","constructor","eventTarget","eventName","eventOptions","this","unorderedBindings","Set","connect","addEventListener","disconnect","removeEventListener","bindingConnected","binding","add","bindingDisconnected","delete","handleEvent","event","extendedEvent","stopImmediatePropagation","Object","assign","immediatePropagationStopped","call","extendEvent","bindings","Array","from","sort","left","right","leftIndex","index","rightIndex","Dispatcher","application","eventListenerMaps","Map","started","start","eventListeners","forEach","eventListener","stop","values","reduce","listeners","map","concat","fetchEventListenerForBinding","handleError","error","message","detail","fetchEventListener","eventListenerMap","fetchEventListenerMapForEventTarget","cacheKey","get","createEventListener","set","parts","keys","key","push","join","descriptorPattern","parseEventTarget","eventTargetName","window","document","camelize","value","replace","_","char","toUpperCase","capitalize","charAt","slice","dasherize","toLowerCase","defaultEventNames","a","e","button","form","details","input","getAttribute","select","textarea","Error","typecast","JSON","parse","o_O","Binding","context","action","identifier","willBeInvokedByEvent","shouldBeInvokedPerSelf","processStopPropagation","processPreventDefault","invokeWithEvent","method","controller","methodName","stopPropagation","prevent","preventDefault","target","currentTarget","params","actionEvent","logDebugActivity","element","self","Element","contains","scope","containsElement","ElementObserver","delegate","mutationObserverInit","attributes","childList","subtree","elements","mutationObserver","MutationObserver","mutations","processMutations","observe","refresh","pause","callback","takeRecords","matches","matchElementsInTree","has","removeElement","addElement","mutation","processMutation","type","processAttributeChange","attributeName","processRemovedNodes","removedNodes","processAddedNodes","addedNodes","node","elementAttributeChanged","matchElement","nodes","elementFromNode","processTree","elementIsActive","tree","processor","nodeType","Node","ELEMENT_NODE","isConnected","elementMatched","elementUnmatched","AttributeObserver","elementObserver","selector","hasAttribute","match","querySelectorAll","elementMatchedAttribute","elementUnmatchedAttribute","elementAttributeValueChanged","StringMapObserver","stringMap","attributeOldValue","knownAttributeNames","refreshAttribute","oldValue","getStringMapKeyForAttribute","stringMapKeyAdded","stringMapValueChanged","stringMapKeyRemoved","currentAttributeNames","recordedAttributeNames","attribute","name","fetch","Multimap","valuesByKey","size","prune","del","hasKey","hasValue","some","getValuesForKey","getKeysForValue","filter","TokenListObserver","attributeObserver","tokensByElement","tokensMatched","readTokensForElement","unmatchedTokens","matchedTokens","refreshTokensForElement","tokensUnmatched","tokens","token","tokenMatched","tokenUnmatched","previousTokens","currentTokens","firstDifferingIndex","length","Math","max","zip","findIndex","previousToken","currentToken","content","tokensAreEqual","tokenString","trim","split","parseTokenString","ValueListObserver","tokenListObserver","parseResultsByToken","WeakMap","valuesByTokenByElement","fetchParseResultForToken","fetchValuesByTokenForElement","elementMatchedValue","elementUnmatchedValue","parseResult","parseToken","valuesByToken","parseValueForToken","BindingObserver","bindingsByAction","valueListObserver","actionAttribute","disconnectAllActions","schema","connectAction","disconnectAction","clear","descriptor","tagName","getDefaultEventNameForElement","static","descriptorString","options","test","parseActionDescriptorString","toString","eventNameSuffix","pattern","RegExp","forToken","ValueObserver","receiver","stringMapObserver","valueDescriptorMap","invokeChangedCallbacksForDefaultValues","invokeChangedCallback","writer","defaultValue","valueDescriptorNameMap","valueDescriptors","undefined","data","rawValue","rawOldValue","changedMethodName","changedMethod","reader","TypeError","descriptors","hasMethodName","TargetObserver","targetsByName","disconnectAllTargets","connectTarget","disconnectTarget","_a","targetConnected","targetDisconnected","Context","module","functionName","controllerConstructor","bindingObserver","dispatcher","valueObserver","targetObserver","initialize","parentElement","invokeControllerMethod","args","readInheritableStaticArrayValues","propertyName","ancestors","getAncestorsForConstructor","definition","isArray","getOwnStaticArrayValues","readInheritableStaticObjectPairs","pairs","getOwnStaticObjectPairs","getPrototypeOf","reverse","bless","properties","shadowConstructor","extend","shadowProperties","prototype","getOwnKeys","shadowingDescriptor","getOwnPropertyDescriptor","getShadowedDescriptor","getShadowProperties","defineProperties","shadow","blessedProperties","blessing","getBlessedProperties","getOwnPropertySymbols","object","getOwnPropertyNames","extendWithReflect","extended","Reflect","construct","arguments","create","setPrototypeOf","b","testReflectExtension","Module","blessDefinition","contextsByScope","connectedContexts","contexts","connectContextForScope","fetchContextForScope","disconnectContextForScope","ClassMap","getDataKey","getAll","getAttributeName","getAttributeNameForKey","DataMap","setAttribute","removeAttribute","Guide","logger","warnedKeysByObject","warn","warnedKeys","attributeValueContainsToken","TargetSet","targetName","find","targetNames","findTarget","findLegacyTarget","findAll","targets","findAllTargets","findAllLegacyTargets","getSelectorForTargetName","findElement","findAllElements","targetAttributeForScope","getLegacySelectorForTargetName","deprecate","targetDescriptor","targetAttribute","revisedAttributeName","guide","Scope","classes","closest","controllerSelector","queryElements","controllerAttribute","ScopeObserver","scopesByIdentifierByElement","scopeReferenceCounts","scopesByIdentifier","fetchScopesByIdentifierForElement","createScopeForElementAndIdentifier","referenceCount","scopeConnected","scopeDisconnected","Router","scopeObserver","modulesByIdentifier","modules","loadDefinition","unloadIdentifier","connectModule","disconnectModule","getContextForElementAndIdentifier","defaultSchema","Application","documentElement","console","debug","logFormattedMessage","router","async","Promise","resolve","readyState","register","load","head","rest","shouldLoad","unload","controllers","getControllerForElementAndIdentifier","onerror","groupCollapsed","log","groupEnd","parseValueDefinitionPair","typeDefinition","payload","typeFromObject","parseValueTypeConstant","typeObject","defaultValueType","parseValueTypeDefault","default","propertyPath","parseValueTypeObject","typeFromDefaultValue","typeFromConstant","parseValueTypeDefinition","constant","defaultValuesByType","defaultValueForDefinition","hasCustomDefaultValue","readers","writers","valueDescriptorForTokenAndTypeDefinition","Boolean","Number","String","array","boolean","number","string","writeJSON","stringify","Controller","dispatch","prefix","bubbles","cancelable","CustomEvent","dispatchEvent","blessings","classDefinition","targetDefinition","valueDefinitionPairs","propertyDescriptorMap","result","valueDefinitionPair","valueDescriptor","read","write","propertiesForValueDefinitionPair","SlideoverComponent","toggle","expandableTarget","classList","expandWrapperTarget","slidePanel","slidePanelTargets","buttonWrapperTarget","getElementById","formID","submit","top","bottom","basePlacements","variationPlacements","acc","placement","placements","modifierPhases","getNodeName","nodeName","getWindow","ownerDocument","defaultView","isElement","isHTMLElement","HTMLElement","isShadowRoot","ShadowRoot","applyStyles$1","enabled","phase","fn","_ref","state","style","styles","effect","_ref2","initialStyles","popper","position","strategy","margin","arrow","reference","hasOwnProperty","property","requires","getBasePlacement","min","round","getBoundingClientRect","includeScale","rect","scaleX","scaleY","offsetHeight","offsetWidth","width","height","x","y","getLayoutRect","clientRect","abs","offsetLeft","offsetTop","parent","child","rootNode","getRootNode","next","isSameNode","parentNode","host","getComputedStyle","isTableElement","indexOf","getDocumentElement","getParentNode","assignedSlot","getTrueOffsetParent","offsetParent","getOffsetParent","isFirefox","navigator","userAgent","currentNode","css","transform","perspective","contain","willChange","getContainingBlock","getMainAxisFromPlacement","within","mathMax","mathMin","mergePaddingObject","paddingObject","expandToHashMap","hashMap","arrow$1","_state$modifiersData$","arrowElement","popperOffsets","modifiersData","basePlacement","axis","len","padding","rects","toPaddingObject","arrowRect","minProp","maxProp","endDiff","startDiff","arrowOffsetParent","clientSize","clientHeight","clientWidth","centerToReference","center","offset","axisProp","centerOffset","_options$element","querySelector","requiresIfExists","getVariation","unsetSides","mapToStyles","_Object$assign2","popperRect","variation","offsets","gpuAcceleration","adaptive","roundOffsets","isFixed","_offsets$x","_offsets$y","_ref3","hasX","hasY","sideX","sideY","win","heightProp","widthProp","visualViewport","_Object$assign","commonStyles","_ref4","dpr","devicePixelRatio","roundOffsetsByDPR","passive","hash","getOppositePlacement","matched","end","getOppositeVariationPlacement","getWindowScroll","scrollLeft","pageXOffset","scrollTop","pageYOffset","getWindowScrollBarX","isScrollParent","_getComputedStyle","overflow","overflowX","overflowY","getScrollParent","body","listScrollParents","list","_element$ownerDocumen","scrollParent","isBody","updatedList","rectToClientRect","getClientRectFromMixedType","clippingParent","html","getViewportRect","clientTop","clientLeft","getInnerBoundingClientRect","winScroll","scrollWidth","scrollHeight","direction","getDocumentRect","getClippingRect","boundary","rootBoundary","mainClippingParents","clippingParents","clipperElement","getClippingParents","firstClippingParent","clippingRect","accRect","computeOffsets","commonX","commonY","mainAxis","detectOverflow","_options","_options$placement","_options$boundary","_options$rootBoundary","_options$elementConte","elementContext","_options$altBoundary","altBoundary","_options$padding","altContext","clippingClientRect","contextElement","referenceClientRect","popperClientRect","elementClientRect","overflowOffsets","offsetData","multiply","computeAutoPlacement","flipVariations","_options$allowedAutoP","allowedAutoPlacements","allPlacements","allowedPlacements","overflows","flip$1","_skip","_options$mainAxis","checkMainAxis","_options$altAxis","altAxis","checkAltAxis","specifiedFallbackPlacements","fallbackPlacements","_options$flipVariatio","preferredPlacement","oppositePlacement","getExpandedFallbackPlacements","referenceRect","checksMap","makeFallbackChecks","firstFittingPlacement","i","_basePlacement","isStartVariation","isVertical","mainVariationSide","altVariationSide","checks","every","check","_loop","_i","fittingPlacement","reset","getSideOffsets","preventedOffsets","isAnySideFullyClipped","side","offset$1","_options$offset","invertDistance","skidding","distance","distanceAndSkiddingToXY","_data$state$placement","preventOverflow$1","_options$tether","tether","_options$tetherOffset","tetherOffset","isBasePlacement","tetherOffsetValue","normalizedTetherOffsetValue","offsetModifierState","_offsetModifierState$","mainSide","altSide","additive","minLen","maxLen","arrowPaddingObject","arrowPaddingMin","arrowPaddingMax","arrowLen","minOffset","maxOffset","clientOffset","offsetModifierValue","tetherMax","preventedOffset","_offsetModifierState$2","_mainSide","_altSide","_offset","_len","_min","_max","isOriginSide","_offsetModifierValue","_tetherMin","_tetherMax","_preventedOffset","v","withinMaxClamp","getCompositeRect","elementOrVirtualElement","isOffsetParentAnElement","offsetParentIsScaled","isElementScaled","scroll","order","modifiers","visited","modifier","dep","depModifier","DEFAULT_OPTIONS","areValidElements","_key","popperGenerator","generatorOptions","_generatorOptions","_generatorOptions$def","defaultModifiers","_generatorOptions$def2","defaultOptions","pending","orderedModifiers","effectCleanupFns","isDestroyed","instance","setOptions","setOptionsAction","cleanupModifierEffects","scrollParents","merged","orderModifiers","current","existing","m","_ref3$options","cleanupFn","noopFn","update","forceUpdate","_state$elements","_state$orderedModifie","_state$orderedModifie2","then","destroy","onFirstUpdate","createPopper","_options$scroll","_options$resize","resize","_ref5","_options$gpuAccelerat","_options$adaptive","_options$roundOffsets","applyStyles","flip","preventOverflow","referenceOverflow","popperAltOverflow","referenceClippingOffsets","popperEscapeOffsets","isReferenceHidden","hasPopperEscaped","TooltipComponent","popperInstance","triggerTarget","tooltipTarget","placementValue","offsetValue","show","remove","trigger","tooltip","hide","weekdays","months","pad","num","strftime","time","formatString","day","getDay","date","getDate","month","getMonth","year","getFullYear","hour","getHours","minute","getMinutes","second","getSeconds","_arg","makeFormatter","format","Intl","DateTimeFormat","RangeError","dayFirst","dayFirstFormatter","isDayFirst","formatter","output","Date","yearSeparator","yearFormatter","localeFromElement","el","container","lang","datetimes","ExtendedTimeElement","observedAttributes","connectedCallback","title","getFormattedTitle","text","getFormattedDate","textContent","attributeChangedCallback","attrName","newValue","oldTitle","millis","isNaN","currentTitle","titleFormatter","toLocaleString","timeZoneName","formatters","LocalTimeElement","super","d","props","weekday","short","long","numeric","prop","formatDate","tz","factory","formatTime","customElements","define","RelativeTime","locale","ago","timeElapsed","ahead","timeAhead","ms","getTime","sec","hr","timeAgoFromMs","timeUntil","timeAgo","formatRelativeTime","microTimeAgo","timeUntilFromMs","microTimeUntil","getUTCFullYear","isYearSeparator","timeFormatter","unit","RelativeTimeFormat","makeRelativeFormat","formatEnRelativeTime","RelativeTimeElement","nowElements","updateNowElementsId","updateNowElements","setInterval","disconnectedCallback","ix","splice","clearInterval","TimeAgoElement","TimeUntilElement","copy","getNamedItem","forNode","clipboard","writeText"],"mappings":"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"}