lightning_ui_kit 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/app/assets/builds/{lightning_ui.css → lightning_ui_kit.css} +422 -100
  4. data/app/assets/builds/lightning_ui_kit.js +6 -0
  5. data/app/assets/builds/{lightning_ui.js.map → lightning_ui_kit.js.map} +4 -4
  6. data/app/components/{lightning_ui → lightning_ui_kit}/alert_component.rb +1 -1
  7. data/app/components/{lightning_ui → lightning_ui_kit}/avatar_component.rb +1 -1
  8. data/app/components/lightning_ui_kit/badge_component.rb +68 -0
  9. data/app/components/{lightning_ui → lightning_ui_kit}/banner_component.rb +2 -2
  10. data/app/components/{lightning_ui → lightning_ui_kit}/base_component.rb +2 -2
  11. data/app/components/{lightning_ui → lightning_ui_kit}/button_component.rb +1 -1
  12. data/app/components/{lightning_ui → lightning_ui_kit}/checkbox_component.html.erb +1 -1
  13. data/app/components/{lightning_ui → lightning_ui_kit}/checkbox_component.rb +1 -1
  14. data/app/components/{lightning_ui → lightning_ui_kit}/description_list/item_component.rb +1 -1
  15. data/app/components/lightning_ui_kit/description_list_component.rb +5 -0
  16. data/app/components/lightning_ui_kit/dropdown/item_component.rb +5 -0
  17. data/app/components/{lightning_ui → lightning_ui_kit}/dropdown_component.rb +1 -1
  18. data/app/components/lightning_ui_kit/dropzone_component.html.erb +82 -0
  19. data/app/components/lightning_ui_kit/dropzone_component.rb +61 -0
  20. data/app/components/lightning_ui_kit/errors.rb +34 -0
  21. data/app/components/lightning_ui_kit/file_input_component.html.erb +50 -0
  22. data/app/components/lightning_ui_kit/file_input_component.rb +62 -0
  23. data/app/components/{lightning_ui → lightning_ui_kit}/input_component.html.erb +21 -14
  24. data/app/components/{lightning_ui → lightning_ui_kit}/input_component.rb +18 -3
  25. data/app/components/{lightning_ui → lightning_ui_kit}/link_component.rb +1 -1
  26. data/app/components/{lightning_ui → lightning_ui_kit}/modal_component.rb +1 -1
  27. data/app/components/{lightning_ui → lightning_ui_kit}/pagination_component.rb +1 -1
  28. data/app/components/lightning_ui_kit/select_component.html.erb +40 -0
  29. data/app/components/lightning_ui_kit/select_component.rb +55 -0
  30. data/app/components/lightning_ui_kit/sidebar_component.rb +4 -0
  31. data/app/components/{lightning_ui → lightning_ui_kit}/skeleton_component.rb +1 -1
  32. data/app/components/lightning_ui_kit/spinner_component.rb +4 -0
  33. data/app/components/{lightning_ui → lightning_ui_kit}/switch_component.html.erb +8 -1
  34. data/app/components/{lightning_ui → lightning_ui_kit}/switch_component.rb +13 -2
  35. data/app/components/{lightning_ui → lightning_ui_kit}/table/action_component.rb +1 -1
  36. data/app/components/{lightning_ui → lightning_ui_kit}/table/column_component.rb +1 -1
  37. data/app/components/{lightning_ui → lightning_ui_kit}/table_component.rb +3 -3
  38. data/app/components/{lightning_ui → lightning_ui_kit}/text_component.rb +1 -1
  39. data/app/components/{lightning_ui → lightning_ui_kit}/textarea_component.html.erb +15 -8
  40. data/app/components/{lightning_ui → lightning_ui_kit}/textarea_component.rb +18 -3
  41. data/app/helpers/lightning_ui_kit/application_helper.rb +7 -0
  42. data/app/helpers/{lightning_ui → lightning_ui_kit}/heroicon_helper.rb +1 -1
  43. data/app/javascript/lightning_ui_kit/controllers/dropzone_controller.js +76 -0
  44. data/app/javascript/{lightning_ui → lightning_ui_kit}/index.js +5 -0
  45. data/config/locales/en.yml +3 -0
  46. data/lib/{lightning_ui → lightning_ui_kit}/engine.rb +5 -6
  47. data/lib/lightning_ui_kit/version.rb +3 -0
  48. data/lib/lightning_ui_kit.rb +6 -0
  49. metadata +78 -72
  50. data/app/assets/builds/lightning_ui.js +0 -6
  51. data/app/components/lightning_ui/badge_component.rb +0 -43
  52. data/app/components/lightning_ui/description_list_component.rb +0 -5
  53. data/app/components/lightning_ui/dropdown/item_component.rb +0 -5
  54. data/app/components/lightning_ui/select_component.html.erb +0 -20
  55. data/app/components/lightning_ui/select_component.rb +0 -25
  56. data/app/components/lightning_ui/sidebar_component.rb +0 -4
  57. data/app/components/lightning_ui/spinner_component.rb +0 -4
  58. data/app/helpers/lightning_ui/application_helper.rb +0 -7
  59. data/lib/lightning_ui/version.rb +0 -3
  60. data/lib/lightning_ui.rb +0 -6
  61. data/lib/tasks/lightning_ui_tasks.rake +0 -4
  62. /data/app/assets/stylesheets/{lightning_ui → lightning_ui_kit}/application.css +0 -0
  63. /data/app/components/{lightning_ui → lightning_ui_kit}/alert_component.html.erb +0 -0
  64. /data/app/components/{lightning_ui → lightning_ui_kit}/avatar_component.html.erb +0 -0
  65. /data/app/components/{lightning_ui → lightning_ui_kit}/badge_component.html.erb +0 -0
  66. /data/app/components/{lightning_ui → lightning_ui_kit}/banner_component.html.erb +0 -0
  67. /data/app/components/{lightning_ui → lightning_ui_kit}/button_component.html.erb +0 -0
  68. /data/app/components/{lightning_ui → lightning_ui_kit}/description_list/item_component.html.erb +0 -0
  69. /data/app/components/{lightning_ui → lightning_ui_kit}/description_list_component.html.erb +0 -0
  70. /data/app/components/{lightning_ui → lightning_ui_kit}/dropdown_component.html.erb +0 -0
  71. /data/app/components/{lightning_ui → lightning_ui_kit}/link_component.html.erb +0 -0
  72. /data/app/components/{lightning_ui → lightning_ui_kit}/modal_component.html.erb +0 -0
  73. /data/app/components/{lightning_ui → lightning_ui_kit}/pagination_component.html.erb +0 -0
  74. /data/app/components/{lightning_ui → lightning_ui_kit}/sidebar_component.html.erb +0 -0
  75. /data/app/components/{lightning_ui → lightning_ui_kit}/skeleton_component.html.erb +0 -0
  76. /data/app/components/{lightning_ui → lightning_ui_kit}/spinner_component.html.erb +0 -0
  77. /data/app/components/{lightning_ui → lightning_ui_kit}/table_component.html.erb +0 -0
  78. /data/app/components/{lightning_ui → lightning_ui_kit}/text_component.html.erb +0 -0
  79. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/accordion_controller.js +0 -0
  80. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/banner_controller.js +0 -0
  81. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/checkbox_controller.js +0 -0
  82. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/clipboard_controller.js +0 -0
  83. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/dropdown_controller.js +0 -0
  84. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/main_controller.js +0 -0
  85. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/modal_controller.js +0 -0
  86. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/reveal_controller.js +0 -0
  87. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/switch_controller.js +0 -0
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lightning_ui_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Koval
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-25 00:00:00.000000000 Z
11
+ date: 2025-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -104,80 +104,86 @@ files:
104
104
  - MIT-LICENSE
105
105
  - README.md
106
106
  - Rakefile
107
- - app/assets/builds/lightning_ui.css
108
- - app/assets/builds/lightning_ui.js
109
- - app/assets/builds/lightning_ui.js.map
110
- - app/assets/stylesheets/lightning_ui/application.css
111
- - app/components/lightning_ui/alert_component.html.erb
112
- - app/components/lightning_ui/alert_component.rb
113
- - app/components/lightning_ui/avatar_component.html.erb
114
- - app/components/lightning_ui/avatar_component.rb
115
- - app/components/lightning_ui/badge_component.html.erb
116
- - app/components/lightning_ui/badge_component.rb
117
- - app/components/lightning_ui/banner_component.html.erb
118
- - app/components/lightning_ui/banner_component.rb
119
- - app/components/lightning_ui/base_component.rb
120
- - app/components/lightning_ui/button_component.html.erb
121
- - app/components/lightning_ui/button_component.rb
122
- - app/components/lightning_ui/checkbox_component.html.erb
123
- - app/components/lightning_ui/checkbox_component.rb
124
- - app/components/lightning_ui/description_list/item_component.html.erb
125
- - app/components/lightning_ui/description_list/item_component.rb
126
- - app/components/lightning_ui/description_list_component.html.erb
127
- - app/components/lightning_ui/description_list_component.rb
128
- - app/components/lightning_ui/dropdown/item_component.rb
129
- - app/components/lightning_ui/dropdown_component.html.erb
130
- - app/components/lightning_ui/dropdown_component.rb
131
- - app/components/lightning_ui/input_component.html.erb
132
- - app/components/lightning_ui/input_component.rb
133
- - app/components/lightning_ui/link_component.html.erb
134
- - app/components/lightning_ui/link_component.rb
135
- - app/components/lightning_ui/modal_component.html.erb
136
- - app/components/lightning_ui/modal_component.rb
137
- - app/components/lightning_ui/pagination_component.html.erb
138
- - app/components/lightning_ui/pagination_component.rb
139
- - app/components/lightning_ui/select_component.html.erb
140
- - app/components/lightning_ui/select_component.rb
141
- - app/components/lightning_ui/sidebar_component.html.erb
142
- - app/components/lightning_ui/sidebar_component.rb
143
- - app/components/lightning_ui/skeleton_component.html.erb
144
- - app/components/lightning_ui/skeleton_component.rb
145
- - app/components/lightning_ui/spinner_component.html.erb
146
- - app/components/lightning_ui/spinner_component.rb
147
- - app/components/lightning_ui/switch_component.html.erb
148
- - app/components/lightning_ui/switch_component.rb
149
- - app/components/lightning_ui/table/action_component.rb
150
- - app/components/lightning_ui/table/column_component.rb
151
- - app/components/lightning_ui/table_component.html.erb
152
- - app/components/lightning_ui/table_component.rb
153
- - app/components/lightning_ui/text_component.html.erb
154
- - app/components/lightning_ui/text_component.rb
155
- - app/components/lightning_ui/textarea_component.html.erb
156
- - app/components/lightning_ui/textarea_component.rb
157
- - app/helpers/lightning_ui/application_helper.rb
158
- - app/helpers/lightning_ui/heroicon_helper.rb
159
- - app/javascript/lightning_ui/controllers/accordion_controller.js
160
- - app/javascript/lightning_ui/controllers/banner_controller.js
161
- - app/javascript/lightning_ui/controllers/checkbox_controller.js
162
- - app/javascript/lightning_ui/controllers/clipboard_controller.js
163
- - app/javascript/lightning_ui/controllers/dropdown_controller.js
164
- - app/javascript/lightning_ui/controllers/main_controller.js
165
- - app/javascript/lightning_ui/controllers/modal_controller.js
166
- - app/javascript/lightning_ui/controllers/reveal_controller.js
167
- - app/javascript/lightning_ui/controllers/switch_controller.js
168
- - app/javascript/lightning_ui/index.js
107
+ - app/assets/builds/lightning_ui_kit.css
108
+ - app/assets/builds/lightning_ui_kit.js
109
+ - app/assets/builds/lightning_ui_kit.js.map
110
+ - app/assets/stylesheets/lightning_ui_kit/application.css
111
+ - app/components/lightning_ui_kit/alert_component.html.erb
112
+ - app/components/lightning_ui_kit/alert_component.rb
113
+ - app/components/lightning_ui_kit/avatar_component.html.erb
114
+ - app/components/lightning_ui_kit/avatar_component.rb
115
+ - app/components/lightning_ui_kit/badge_component.html.erb
116
+ - app/components/lightning_ui_kit/badge_component.rb
117
+ - app/components/lightning_ui_kit/banner_component.html.erb
118
+ - app/components/lightning_ui_kit/banner_component.rb
119
+ - app/components/lightning_ui_kit/base_component.rb
120
+ - app/components/lightning_ui_kit/button_component.html.erb
121
+ - app/components/lightning_ui_kit/button_component.rb
122
+ - app/components/lightning_ui_kit/checkbox_component.html.erb
123
+ - app/components/lightning_ui_kit/checkbox_component.rb
124
+ - app/components/lightning_ui_kit/description_list/item_component.html.erb
125
+ - app/components/lightning_ui_kit/description_list/item_component.rb
126
+ - app/components/lightning_ui_kit/description_list_component.html.erb
127
+ - app/components/lightning_ui_kit/description_list_component.rb
128
+ - app/components/lightning_ui_kit/dropdown/item_component.rb
129
+ - app/components/lightning_ui_kit/dropdown_component.html.erb
130
+ - app/components/lightning_ui_kit/dropdown_component.rb
131
+ - app/components/lightning_ui_kit/dropzone_component.html.erb
132
+ - app/components/lightning_ui_kit/dropzone_component.rb
133
+ - app/components/lightning_ui_kit/errors.rb
134
+ - app/components/lightning_ui_kit/file_input_component.html.erb
135
+ - app/components/lightning_ui_kit/file_input_component.rb
136
+ - app/components/lightning_ui_kit/input_component.html.erb
137
+ - app/components/lightning_ui_kit/input_component.rb
138
+ - app/components/lightning_ui_kit/link_component.html.erb
139
+ - app/components/lightning_ui_kit/link_component.rb
140
+ - app/components/lightning_ui_kit/modal_component.html.erb
141
+ - app/components/lightning_ui_kit/modal_component.rb
142
+ - app/components/lightning_ui_kit/pagination_component.html.erb
143
+ - app/components/lightning_ui_kit/pagination_component.rb
144
+ - app/components/lightning_ui_kit/select_component.html.erb
145
+ - app/components/lightning_ui_kit/select_component.rb
146
+ - app/components/lightning_ui_kit/sidebar_component.html.erb
147
+ - app/components/lightning_ui_kit/sidebar_component.rb
148
+ - app/components/lightning_ui_kit/skeleton_component.html.erb
149
+ - app/components/lightning_ui_kit/skeleton_component.rb
150
+ - app/components/lightning_ui_kit/spinner_component.html.erb
151
+ - app/components/lightning_ui_kit/spinner_component.rb
152
+ - app/components/lightning_ui_kit/switch_component.html.erb
153
+ - app/components/lightning_ui_kit/switch_component.rb
154
+ - app/components/lightning_ui_kit/table/action_component.rb
155
+ - app/components/lightning_ui_kit/table/column_component.rb
156
+ - app/components/lightning_ui_kit/table_component.html.erb
157
+ - app/components/lightning_ui_kit/table_component.rb
158
+ - app/components/lightning_ui_kit/text_component.html.erb
159
+ - app/components/lightning_ui_kit/text_component.rb
160
+ - app/components/lightning_ui_kit/textarea_component.html.erb
161
+ - app/components/lightning_ui_kit/textarea_component.rb
162
+ - app/helpers/lightning_ui_kit/application_helper.rb
163
+ - app/helpers/lightning_ui_kit/heroicon_helper.rb
164
+ - app/javascript/lightning_ui_kit/controllers/accordion_controller.js
165
+ - app/javascript/lightning_ui_kit/controllers/banner_controller.js
166
+ - app/javascript/lightning_ui_kit/controllers/checkbox_controller.js
167
+ - app/javascript/lightning_ui_kit/controllers/clipboard_controller.js
168
+ - app/javascript/lightning_ui_kit/controllers/dropdown_controller.js
169
+ - app/javascript/lightning_ui_kit/controllers/dropzone_controller.js
170
+ - app/javascript/lightning_ui_kit/controllers/main_controller.js
171
+ - app/javascript/lightning_ui_kit/controllers/modal_controller.js
172
+ - app/javascript/lightning_ui_kit/controllers/reveal_controller.js
173
+ - app/javascript/lightning_ui_kit/controllers/switch_controller.js
174
+ - app/javascript/lightning_ui_kit/index.js
169
175
  - config/initializers/heroicons.rb
170
- - lib/lightning_ui.rb
171
- - lib/lightning_ui/engine.rb
172
- - lib/lightning_ui/version.rb
173
- - lib/tasks/lightning_ui_tasks.rake
174
- homepage: https://github.com/k0va1/lightning_ui
176
+ - config/locales/en.yml
177
+ - lib/lightning_ui_kit.rb
178
+ - lib/lightning_ui_kit/engine.rb
179
+ - lib/lightning_ui_kit/version.rb
180
+ homepage: https://github.com/k0va1/lightning_ui_kit
175
181
  licenses:
176
182
  - MIT
177
183
  metadata:
178
- homepage_uri: https://github.com/k0va1/lightning_ui
179
- source_code_uri: https://github.com/k0va1/lightning_ui
180
- changelog_uri: https://github.com/k0va1/lightning_ui/blob/main/CHANGELOG.md
184
+ homepage_uri: https://github.com/k0va1/lightning_ui_kit
185
+ source_code_uri: https://github.com/k0va1/lightning_ui_kit
186
+ changelog_uri: https://github.com/k0va1/lightning_ui_kit/blob/main/CHANGELOG.md
181
187
  post_install_message:
182
188
  rdoc_options: []
183
189
  require_paths:
@@ -1,6 +0,0 @@
1
- (()=>{var We=Object.defineProperty;var He=(r,e,t)=>e in r?We(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t;var d=(r,e,t)=>(He(r,typeof e!="symbol"?e+"":e,t),t);var v=(r,e,t)=>new Promise((s,n)=>{var i=a=>{try{c(t.next(a))}catch(u){n(u)}},o=a=>{try{c(t.throw(a))}catch(u){n(u)}},c=a=>a.done?s(a.value):Promise.resolve(a.value).then(i,o);c((t=t.apply(r,e)).next())});var Y=class{constructor(e,t,s){this.eventTarget=e,this.eventName=t,this.eventOptions=s,this.unorderedBindings=new Set}connect(){this.eventTarget.addEventListener(this.eventName,this,this.eventOptions)}disconnect(){this.eventTarget.removeEventListener(this.eventName,this,this.eventOptions)}bindingConnected(e){this.unorderedBindings.add(e)}bindingDisconnected(e){this.unorderedBindings.delete(e)}handleEvent(e){let t=Qe(e);for(let s of this.bindings){if(t.immediatePropagationStopped)break;s.handleEvent(t)}}hasBindings(){return this.unorderedBindings.size>0}get bindings(){return Array.from(this.unorderedBindings).sort((e,t)=>{let s=e.index,n=t.index;return s<n?-1:s>n?1:0})}};function Qe(r){if("immediatePropagationStopped"in r)return r;{let{stopImmediatePropagation:e}=r;return Object.assign(r,{immediatePropagationStopped:!1,stopImmediatePropagation(){this.immediatePropagationStopped=!0,e.call(this)}})}}var Z=class{constructor(e){this.application=e,this.eventListenerMaps=new Map,this.started=!1}start(){this.started||(this.started=!0,this.eventListeners.forEach(e=>e.connect()))}stop(){this.started&&(this.started=!1,this.eventListeners.forEach(e=>e.disconnect()))}get eventListeners(){return Array.from(this.eventListenerMaps.values()).reduce((e,t)=>e.concat(Array.from(t.values())),[])}bindingConnected(e){this.fetchEventListenerForBinding(e).bindingConnected(e)}bindingDisconnected(e,t=!1){this.fetchEventListenerForBinding(e).bindingDisconnected(e),t&&this.clearEventListenersForBinding(e)}handleError(e,t,s={}){this.application.handleError(e,`Error ${t}`,s)}clearEventListenersForBinding(e){let t=this.fetchEventListenerForBinding(e);t.hasBindings()||(t.disconnect(),this.removeMappedEventListenerFor(e))}removeMappedEventListenerFor(e){let{eventTarget:t,eventName:s,eventOptions:n}=e,i=this.fetchEventListenerMapForEventTarget(t),o=this.cacheKey(s,n);i.delete(o),i.size==0&&this.eventListenerMaps.delete(t)}fetchEventListenerForBinding(e){let{eventTarget:t,eventName:s,eventOptions:n}=e;return this.fetchEventListener(t,s,n)}fetchEventListener(e,t,s){let n=this.fetchEventListenerMapForEventTarget(e),i=this.cacheKey(t,s),o=n.get(i);return o||(o=this.createEventListener(e,t,s),n.set(i,o)),o}createEventListener(e,t,s){let n=new Y(e,t,s);return this.started&&n.connect(),n}fetchEventListenerMapForEventTarget(e){let t=this.eventListenerMaps.get(e);return t||(t=new Map,this.eventListenerMaps.set(e,t)),t}cacheKey(e,t){let s=[e];return Object.keys(t).sort().forEach(n=>{s.push(`${t[n]?"":"!"}${n}`)}),s.join(":")}},Je={stop({event:r,value:e}){return e&&r.stopPropagation(),!0},prevent({event:r,value:e}){return e&&r.preventDefault(),!0},self({event:r,value:e,element:t}){return e?t===r.target:!0}},Ge=/^(?:(?:([^.]+?)\+)?(.+?)(?:\.(.+?))?(?:@(window|document))?->)?(.+?)(?:#([^:]+?))(?::(.+))?$/;function Ye(r){let t=r.trim().match(Ge)||[],s=t[2],n=t[3];return n&&!["keydown","keyup","keypress"].includes(s)&&(s+=`.${n}`,n=""),{eventTarget:Ze(t[4]),eventName:s,eventOptions:t[7]?Xe(t[7]):{},identifier:t[5],methodName:t[6],keyFilter:t[1]||n}}function Ze(r){if(r=="window")return window;if(r=="document")return document}function Xe(r){return r.split(":").reduce((e,t)=>Object.assign(e,{[t.replace(/^!/,"")]:!/^!/.test(t)}),{})}function et(r){if(r==window)return"window";if(r==document)return"document"}function ye(r){return r.replace(/(?:[_-])([a-z0-9])/g,(e,t)=>t.toUpperCase())}function X(r){return ye(r.replace(/--/g,"-").replace(/__/g,"_"))}function B(r){return r.charAt(0).toUpperCase()+r.slice(1)}function Ve(r){return r.replace(/([A-Z])/g,(e,t)=>`-${t.toLowerCase()}`)}function tt(r){return r.match(/[^\s]+/g)||[]}function ke(r){return r!=null}function ee(r,e){return Object.prototype.hasOwnProperty.call(r,e)}var Me=["meta","ctrl","alt","shift"],te=class{constructor(e,t,s,n){this.element=e,this.index=t,this.eventTarget=s.eventTarget||e,this.eventName=s.eventName||st(e)||U("missing event name"),this.eventOptions=s.eventOptions||{},this.identifier=s.identifier||U("missing identifier"),this.methodName=s.methodName||U("missing method name"),this.keyFilter=s.keyFilter||"",this.schema=n}static forToken(e,t){return new this(e.element,e.index,Ye(e.content),t)}toString(){let e=this.keyFilter?`.${this.keyFilter}`:"",t=this.eventTargetName?`@${this.eventTargetName}`:"";return`${this.eventName}${e}${t}->${this.identifier}#${this.methodName}`}shouldIgnoreKeyboardEvent(e){if(!this.keyFilter)return!1;let t=this.keyFilter.split("+");if(this.keyFilterDissatisfied(e,t))return!0;let s=t.filter(n=>!Me.includes(n))[0];return s?(ee(this.keyMappings,s)||U(`contains unknown key filter: ${this.keyFilter}`),this.keyMappings[s].toLowerCase()!==e.key.toLowerCase()):!1}shouldIgnoreMouseEvent(e){if(!this.keyFilter)return!1;let t=[this.keyFilter];return!!this.keyFilterDissatisfied(e,t)}get params(){let e={},t=new RegExp(`^data-${this.identifier}-(.+)-param$`,"i");for(let{name:s,value:n}of Array.from(this.element.attributes)){let i=s.match(t),o=i&&i[1];o&&(e[ye(o)]=rt(n))}return e}get eventTargetName(){return et(this.eventTarget)}get keyMappings(){return this.schema.keyMappings}keyFilterDissatisfied(e,t){let[s,n,i,o]=Me.map(c=>t.includes(c));return e.metaKey!==s||e.ctrlKey!==n||e.altKey!==i||e.shiftKey!==o}},Ne={a:()=>"click",button:()=>"click",form:()=>"submit",details:()=>"toggle",input:r=>r.getAttribute("type")=="submit"?"click":"input",select:()=>"change",textarea:()=>"input"};function st(r){let e=r.tagName.toLowerCase();if(e in Ne)return Ne[e](r)}function U(r){throw new Error(r)}function rt(r){try{return JSON.parse(r)}catch(e){return r}}var se=class{constructor(e,t){this.context=e,this.action=t}get index(){return this.action.index}get eventTarget(){return this.action.eventTarget}get eventOptions(){return this.action.eventOptions}get identifier(){return this.context.identifier}handleEvent(e){let t=this.prepareActionEvent(e);this.willBeInvokedByEvent(e)&&this.applyEventModifiers(t)&&this.invokeWithEvent(t)}get eventName(){return this.action.eventName}get method(){let e=this.controller[this.methodName];if(typeof e=="function")return e;throw new Error(`Action "${this.action}" references undefined method "${this.methodName}"`)}applyEventModifiers(e){let{element:t}=this.action,{actionDescriptorFilters:s}=this.context.application,{controller:n}=this.context,i=!0;for(let[o,c]of Object.entries(this.eventOptions))if(o in s){let a=s[o];i=i&&a({name:o,value:c,event:e,element:t,controller:n})}else continue;return i}prepareActionEvent(e){return Object.assign(e,{params:this.action.params})}invokeWithEvent(e){let{target:t,currentTarget:s}=e;try{this.method.call(this.controller,e),this.context.logDebugActivity(this.methodName,{event:e,target:t,currentTarget:s,action:this.methodName})}catch(n){let{identifier:i,controller:o,element:c,index:a}=this,u={identifier:i,controller:o,element:c,index:a,event:e};this.context.handleError(n,`invoking action "${this.action}"`,u)}}willBeInvokedByEvent(e){let t=e.target;return e instanceof KeyboardEvent&&this.action.shouldIgnoreKeyboardEvent(e)||e instanceof MouseEvent&&this.action.shouldIgnoreMouseEvent(e)?!1:this.element===t?!0:t instanceof Element&&this.element.contains(t)?this.scope.containsElement(t):this.scope.containsElement(this.action.element)}get controller(){return this.context.controller}get methodName(){return this.action.methodName}get element(){return this.scope.element}get scope(){return this.context.scope}},R=class{constructor(e,t){this.mutationObserverInit={attributes:!0,childList:!0,subtree:!0},this.element=e,this.started=!1,this.delegate=t,this.elements=new Set,this.mutationObserver=new MutationObserver(s=>this.processMutations(s))}start(){this.started||(this.started=!0,this.mutationObserver.observe(this.element,this.mutationObserverInit),this.refresh())}pause(e){this.started&&(this.mutationObserver.disconnect(),this.started=!1),e(),this.started||(this.mutationObserver.observe(this.element,this.mutationObserverInit),this.started=!0)}stop(){this.started&&(this.mutationObserver.takeRecords(),this.mutationObserver.disconnect(),this.started=!1)}refresh(){if(this.started){let e=new Set(this.matchElementsInTree());for(let t of Array.from(this.elements))e.has(t)||this.removeElement(t);for(let t of Array.from(e))this.addElement(t)}}processMutations(e){if(this.started)for(let t of e)this.processMutation(t)}processMutation(e){e.type=="attributes"?this.processAttributeChange(e.target,e.attributeName):e.type=="childList"&&(this.processRemovedNodes(e.removedNodes),this.processAddedNodes(e.addedNodes))}processAttributeChange(e,t){this.elements.has(e)?this.delegate.elementAttributeChanged&&this.matchElement(e)?this.delegate.elementAttributeChanged(e,t):this.removeElement(e):this.matchElement(e)&&this.addElement(e)}processRemovedNodes(e){for(let t of Array.from(e)){let s=this.elementFromNode(t);s&&this.processTree(s,this.removeElement)}}processAddedNodes(e){for(let t of Array.from(e)){let s=this.elementFromNode(t);s&&this.elementIsActive(s)&&this.processTree(s,this.addElement)}}matchElement(e){return this.delegate.matchElement(e)}matchElementsInTree(e=this.element){return this.delegate.matchElementsInTree(e)}processTree(e,t){for(let s of this.matchElementsInTree(e))t.call(this,s)}elementFromNode(e){if(e.nodeType==Node.ELEMENT_NODE)return e}elementIsActive(e){return e.isConnected!=this.element.isConnected?!1:this.element.contains(e)}addElement(e){this.elements.has(e)||this.elementIsActive(e)&&(this.elements.add(e),this.delegate.elementMatched&&this.delegate.elementMatched(e))}removeElement(e){this.elements.has(e)&&(this.elements.delete(e),this.delegate.elementUnmatched&&this.delegate.elementUnmatched(e))}},q=class{constructor(e,t,s){this.attributeName=t,this.delegate=s,this.elementObserver=new R(e,this)}get element(){return this.elementObserver.element}get selector(){return`[${this.attributeName}]`}start(){this.elementObserver.start()}pause(e){this.elementObserver.pause(e)}stop(){this.elementObserver.stop()}refresh(){this.elementObserver.refresh()}get started(){return this.elementObserver.started}matchElement(e){return e.hasAttribute(this.attributeName)}matchElementsInTree(e){let t=this.matchElement(e)?[e]:[],s=Array.from(e.querySelectorAll(this.selector));return t.concat(s)}elementMatched(e){this.delegate.elementMatchedAttribute&&this.delegate.elementMatchedAttribute(e,this.attributeName)}elementUnmatched(e){this.delegate.elementUnmatchedAttribute&&this.delegate.elementUnmatchedAttribute(e,this.attributeName)}elementAttributeChanged(e,t){this.delegate.elementAttributeValueChanged&&this.attributeName==t&&this.delegate.elementAttributeValueChanged(e,t)}};function nt(r,e,t){Ie(r,e).add(t)}function it(r,e,t){Ie(r,e).delete(t),ot(r,e)}function Ie(r,e){let t=r.get(e);return t||(t=new Set,r.set(e,t)),t}function ot(r,e){let t=r.get(e);t!=null&&t.size==0&&r.delete(e)}var p=class{constructor(){this.valuesByKey=new Map}get keys(){return Array.from(this.valuesByKey.keys())}get values(){return Array.from(this.valuesByKey.values()).reduce((t,s)=>t.concat(Array.from(s)),[])}get size(){return Array.from(this.valuesByKey.values()).reduce((t,s)=>t+s.size,0)}add(e,t){nt(this.valuesByKey,e,t)}delete(e,t){it(this.valuesByKey,e,t)}has(e,t){let s=this.valuesByKey.get(e);return s!=null&&s.has(t)}hasKey(e){return this.valuesByKey.has(e)}hasValue(e){return Array.from(this.valuesByKey.values()).some(s=>s.has(e))}getValuesForKey(e){let t=this.valuesByKey.get(e);return t?Array.from(t):[]}getKeysForValue(e){return Array.from(this.valuesByKey).filter(([t,s])=>s.has(e)).map(([t,s])=>t)}};var re=class{constructor(e,t,s,n){this._selector=t,this.details=n,this.elementObserver=new R(e,this),this.delegate=s,this.matchesByElement=new p}get started(){return this.elementObserver.started}get selector(){return this._selector}set selector(e){this._selector=e,this.refresh()}start(){this.elementObserver.start()}pause(e){this.elementObserver.pause(e)}stop(){this.elementObserver.stop()}refresh(){this.elementObserver.refresh()}get element(){return this.elementObserver.element}matchElement(e){let{selector:t}=this;if(t){let s=e.matches(t);return this.delegate.selectorMatchElement?s&&this.delegate.selectorMatchElement(e,this.details):s}else return!1}matchElementsInTree(e){let{selector:t}=this;if(t){let s=this.matchElement(e)?[e]:[],n=Array.from(e.querySelectorAll(t)).filter(i=>this.matchElement(i));return s.concat(n)}else return[]}elementMatched(e){let{selector:t}=this;t&&this.selectorMatched(e,t)}elementUnmatched(e){let t=this.matchesByElement.getKeysForValue(e);for(let s of t)this.selectorUnmatched(e,s)}elementAttributeChanged(e,t){let{selector:s}=this;if(s){let n=this.matchElement(e),i=this.matchesByElement.has(s,e);n&&!i?this.selectorMatched(e,s):!n&&i&&this.selectorUnmatched(e,s)}}selectorMatched(e,t){this.delegate.selectorMatched(e,t,this.details),this.matchesByElement.add(t,e)}selectorUnmatched(e,t){this.delegate.selectorUnmatched(e,t,this.details),this.matchesByElement.delete(t,e)}},ne=class{constructor(e,t){this.element=e,this.delegate=t,this.started=!1,this.stringMap=new Map,this.mutationObserver=new MutationObserver(s=>this.processMutations(s))}start(){this.started||(this.started=!0,this.mutationObserver.observe(this.element,{attributes:!0,attributeOldValue:!0}),this.refresh())}stop(){this.started&&(this.mutationObserver.takeRecords(),this.mutationObserver.disconnect(),this.started=!1)}refresh(){if(this.started)for(let e of this.knownAttributeNames)this.refreshAttribute(e,null)}processMutations(e){if(this.started)for(let t of e)this.processMutation(t)}processMutation(e){let t=e.attributeName;t&&this.refreshAttribute(t,e.oldValue)}refreshAttribute(e,t){let s=this.delegate.getStringMapKeyForAttribute(e);if(s!=null){this.stringMap.has(e)||this.stringMapKeyAdded(s,e);let n=this.element.getAttribute(e);if(this.stringMap.get(e)!=n&&this.stringMapValueChanged(n,s,t),n==null){let i=this.stringMap.get(e);this.stringMap.delete(e),i&&this.stringMapKeyRemoved(s,e,i)}else this.stringMap.set(e,n)}}stringMapKeyAdded(e,t){this.delegate.stringMapKeyAdded&&this.delegate.stringMapKeyAdded(e,t)}stringMapValueChanged(e,t,s){this.delegate.stringMapValueChanged&&this.delegate.stringMapValueChanged(e,t,s)}stringMapKeyRemoved(e,t,s){this.delegate.stringMapKeyRemoved&&this.delegate.stringMapKeyRemoved(e,t,s)}get knownAttributeNames(){return Array.from(new Set(this.currentAttributeNames.concat(this.recordedAttributeNames)))}get currentAttributeNames(){return Array.from(this.element.attributes).map(e=>e.name)}get recordedAttributeNames(){return Array.from(this.stringMap.keys())}},z=class{constructor(e,t,s){this.attributeObserver=new q(e,t,this),this.delegate=s,this.tokensByElement=new p}get started(){return this.attributeObserver.started}start(){this.attributeObserver.start()}pause(e){this.attributeObserver.pause(e)}stop(){this.attributeObserver.stop()}refresh(){this.attributeObserver.refresh()}get element(){return this.attributeObserver.element}get attributeName(){return this.attributeObserver.attributeName}elementMatchedAttribute(e){this.tokensMatched(this.readTokensForElement(e))}elementAttributeValueChanged(e){let[t,s]=this.refreshTokensForElement(e);this.tokensUnmatched(t),this.tokensMatched(s)}elementUnmatchedAttribute(e){this.tokensUnmatched(this.tokensByElement.getValuesForKey(e))}tokensMatched(e){e.forEach(t=>this.tokenMatched(t))}tokensUnmatched(e){e.forEach(t=>this.tokenUnmatched(t))}tokenMatched(e){this.delegate.tokenMatched(e),this.tokensByElement.add(e.element,e)}tokenUnmatched(e){this.delegate.tokenUnmatched(e),this.tokensByElement.delete(e.element,e)}refreshTokensForElement(e){let t=this.tokensByElement.getValuesForKey(e),s=this.readTokensForElement(e),n=ct(t,s).findIndex(([i,o])=>!lt(i,o));return n==-1?[[],[]]:[t.slice(n),s.slice(n)]}readTokensForElement(e){let t=this.attributeName,s=e.getAttribute(t)||"";return at(s,e,t)}};function at(r,e,t){return r.trim().split(/\s+/).filter(s=>s.length).map((s,n)=>({element:e,attributeName:t,content:s,index:n}))}function ct(r,e){let t=Math.max(r.length,e.length);return Array.from({length:t},(s,n)=>[r[n],e[n]])}function lt(r,e){return r&&e&&r.index==e.index&&r.content==e.content}var W=class{constructor(e,t,s){this.tokenListObserver=new z(e,t,this),this.delegate=s,this.parseResultsByToken=new WeakMap,this.valuesByTokenByElement=new WeakMap}get started(){return this.tokenListObserver.started}start(){this.tokenListObserver.start()}stop(){this.tokenListObserver.stop()}refresh(){this.tokenListObserver.refresh()}get element(){return this.tokenListObserver.element}get attributeName(){return this.tokenListObserver.attributeName}tokenMatched(e){let{element:t}=e,{value:s}=this.fetchParseResultForToken(e);s&&(this.fetchValuesByTokenForElement(t).set(e,s),this.delegate.elementMatchedValue(t,s))}tokenUnmatched(e){let{element:t}=e,{value:s}=this.fetchParseResultForToken(e);s&&(this.fetchValuesByTokenForElement(t).delete(e),this.delegate.elementUnmatchedValue(t,s))}fetchParseResultForToken(e){let t=this.parseResultsByToken.get(e);return t||(t=this.parseToken(e),this.parseResultsByToken.set(e,t)),t}fetchValuesByTokenForElement(e){let t=this.valuesByTokenByElement.get(e);return t||(t=new Map,this.valuesByTokenByElement.set(e,t)),t}parseToken(e){try{return{value:this.delegate.parseValueForToken(e)}}catch(t){return{error:t}}}},ie=class{constructor(e,t){this.context=e,this.delegate=t,this.bindingsByAction=new Map}start(){this.valueListObserver||(this.valueListObserver=new W(this.element,this.actionAttribute,this),this.valueListObserver.start())}stop(){this.valueListObserver&&(this.valueListObserver.stop(),delete this.valueListObserver,this.disconnectAllActions())}get element(){return this.context.element}get identifier(){return this.context.identifier}get actionAttribute(){return this.schema.actionAttribute}get schema(){return this.context.schema}get bindings(){return Array.from(this.bindingsByAction.values())}connectAction(e){let t=new se(this.context,e);this.bindingsByAction.set(e,t),this.delegate.bindingConnected(t)}disconnectAction(e){let t=this.bindingsByAction.get(e);t&&(this.bindingsByAction.delete(e),this.delegate.bindingDisconnected(t))}disconnectAllActions(){this.bindings.forEach(e=>this.delegate.bindingDisconnected(e,!0)),this.bindingsByAction.clear()}parseValueForToken(e){let t=te.forToken(e,this.schema);if(t.identifier==this.identifier)return t}elementMatchedValue(e,t){this.connectAction(t)}elementUnmatchedValue(e,t){this.disconnectAction(t)}},oe=class{constructor(e,t){this.context=e,this.receiver=t,this.stringMapObserver=new ne(this.element,this),this.valueDescriptorMap=this.controller.valueDescriptorMap}start(){this.stringMapObserver.start(),this.invokeChangedCallbacksForDefaultValues()}stop(){this.stringMapObserver.stop()}get element(){return this.context.element}get controller(){return this.context.controller}getStringMapKeyForAttribute(e){if(e in this.valueDescriptorMap)return this.valueDescriptorMap[e].name}stringMapKeyAdded(e,t){let s=this.valueDescriptorMap[t];this.hasValue(e)||this.invokeChangedCallback(e,s.writer(this.receiver[e]),s.writer(s.defaultValue))}stringMapValueChanged(e,t,s){let n=this.valueDescriptorNameMap[t];e!==null&&(s===null&&(s=n.writer(n.defaultValue)),this.invokeChangedCallback(t,e,s))}stringMapKeyRemoved(e,t,s){let n=this.valueDescriptorNameMap[e];this.hasValue(e)?this.invokeChangedCallback(e,n.writer(this.receiver[e]),s):this.invokeChangedCallback(e,n.writer(n.defaultValue),s)}invokeChangedCallbacksForDefaultValues(){for(let{key:e,name:t,defaultValue:s,writer:n}of this.valueDescriptors)s!=null&&!this.controller.data.has(e)&&this.invokeChangedCallback(t,n(s),void 0)}invokeChangedCallback(e,t,s){let n=`${e}Changed`,i=this.receiver[n];if(typeof i=="function"){let o=this.valueDescriptorNameMap[e];try{let c=o.reader(t),a=s;s&&(a=o.reader(s)),i.call(this.receiver,c,a)}catch(c){throw c instanceof TypeError&&(c.message=`Stimulus Value "${this.context.identifier}.${o.name}" - ${c.message}`),c}}}get valueDescriptors(){let{valueDescriptorMap:e}=this;return Object.keys(e).map(t=>e[t])}get valueDescriptorNameMap(){let e={};return Object.keys(this.valueDescriptorMap).forEach(t=>{let s=this.valueDescriptorMap[t];e[s.name]=s}),e}hasValue(e){let t=this.valueDescriptorNameMap[e],s=`has${B(t.name)}`;return this.receiver[s]}},ae=class{constructor(e,t){this.context=e,this.delegate=t,this.targetsByName=new p}start(){this.tokenListObserver||(this.tokenListObserver=new z(this.element,this.attributeName,this),this.tokenListObserver.start())}stop(){this.tokenListObserver&&(this.disconnectAllTargets(),this.tokenListObserver.stop(),delete this.tokenListObserver)}tokenMatched({element:e,content:t}){this.scope.containsElement(e)&&this.connectTarget(e,t)}tokenUnmatched({element:e,content:t}){this.disconnectTarget(e,t)}connectTarget(e,t){var s;this.targetsByName.has(t,e)||(this.targetsByName.add(t,e),(s=this.tokenListObserver)===null||s===void 0||s.pause(()=>this.delegate.targetConnected(e,t)))}disconnectTarget(e,t){var s;this.targetsByName.has(t,e)&&(this.targetsByName.delete(t,e),(s=this.tokenListObserver)===null||s===void 0||s.pause(()=>this.delegate.targetDisconnected(e,t)))}disconnectAllTargets(){for(let e of this.targetsByName.keys)for(let t of this.targetsByName.getValuesForKey(e))this.disconnectTarget(t,e)}get attributeName(){return`data-${this.context.identifier}-target`}get element(){return this.context.element}get scope(){return this.context.scope}};function L(r,e){let t=Pe(r);return Array.from(t.reduce((s,n)=>(ut(n,e).forEach(i=>s.add(i)),s),new Set))}function ht(r,e){return Pe(r).reduce((s,n)=>(s.push(...dt(n,e)),s),[])}function Pe(r){let e=[];for(;r;)e.push(r),r=Object.getPrototypeOf(r);return e.reverse()}function ut(r,e){let t=r[e];return Array.isArray(t)?t:[]}function dt(r,e){let t=r[e];return t?Object.keys(t).map(s=>[s,t[s]]):[]}var ce=class{constructor(e,t){this.started=!1,this.context=e,this.delegate=t,this.outletsByName=new p,this.outletElementsByName=new p,this.selectorObserverMap=new Map,this.attributeObserverMap=new Map}start(){this.started||(this.outletDefinitions.forEach(e=>{this.setupSelectorObserverForOutlet(e),this.setupAttributeObserverForOutlet(e)}),this.started=!0,this.dependentContexts.forEach(e=>e.refresh()))}refresh(){this.selectorObserverMap.forEach(e=>e.refresh()),this.attributeObserverMap.forEach(e=>e.refresh())}stop(){this.started&&(this.started=!1,this.disconnectAllOutlets(),this.stopSelectorObservers(),this.stopAttributeObservers())}stopSelectorObservers(){this.selectorObserverMap.size>0&&(this.selectorObserverMap.forEach(e=>e.stop()),this.selectorObserverMap.clear())}stopAttributeObservers(){this.attributeObserverMap.size>0&&(this.attributeObserverMap.forEach(e=>e.stop()),this.attributeObserverMap.clear())}selectorMatched(e,t,{outletName:s}){let n=this.getOutlet(e,s);n&&this.connectOutlet(n,e,s)}selectorUnmatched(e,t,{outletName:s}){let n=this.getOutletFromMap(e,s);n&&this.disconnectOutlet(n,e,s)}selectorMatchElement(e,{outletName:t}){let s=this.selector(t),n=this.hasOutlet(e,t),i=e.matches(`[${this.schema.controllerAttribute}~=${t}]`);return s?n&&i&&e.matches(s):!1}elementMatchedAttribute(e,t){let s=this.getOutletNameFromOutletAttributeName(t);s&&this.updateSelectorObserverForOutlet(s)}elementAttributeValueChanged(e,t){let s=this.getOutletNameFromOutletAttributeName(t);s&&this.updateSelectorObserverForOutlet(s)}elementUnmatchedAttribute(e,t){let s=this.getOutletNameFromOutletAttributeName(t);s&&this.updateSelectorObserverForOutlet(s)}connectOutlet(e,t,s){var n;this.outletElementsByName.has(s,t)||(this.outletsByName.add(s,e),this.outletElementsByName.add(s,t),(n=this.selectorObserverMap.get(s))===null||n===void 0||n.pause(()=>this.delegate.outletConnected(e,t,s)))}disconnectOutlet(e,t,s){var n;this.outletElementsByName.has(s,t)&&(this.outletsByName.delete(s,e),this.outletElementsByName.delete(s,t),(n=this.selectorObserverMap.get(s))===null||n===void 0||n.pause(()=>this.delegate.outletDisconnected(e,t,s)))}disconnectAllOutlets(){for(let e of this.outletElementsByName.keys)for(let t of this.outletElementsByName.getValuesForKey(e))for(let s of this.outletsByName.getValuesForKey(e))this.disconnectOutlet(s,t,e)}updateSelectorObserverForOutlet(e){let t=this.selectorObserverMap.get(e);t&&(t.selector=this.selector(e))}setupSelectorObserverForOutlet(e){let t=this.selector(e),s=new re(document.body,t,this,{outletName:e});this.selectorObserverMap.set(e,s),s.start()}setupAttributeObserverForOutlet(e){let t=this.attributeNameForOutletName(e),s=new q(this.scope.element,t,this);this.attributeObserverMap.set(e,s),s.start()}selector(e){return this.scope.outlets.getSelectorForOutletName(e)}attributeNameForOutletName(e){return this.scope.schema.outletAttributeForScope(this.identifier,e)}getOutletNameFromOutletAttributeName(e){return this.outletDefinitions.find(t=>this.attributeNameForOutletName(t)===e)}get outletDependencies(){let e=new p;return this.router.modules.forEach(t=>{let s=t.definition.controllerConstructor;L(s,"outlets").forEach(i=>e.add(i,t.identifier))}),e}get outletDefinitions(){return this.outletDependencies.getKeysForValue(this.identifier)}get dependentControllerIdentifiers(){return this.outletDependencies.getValuesForKey(this.identifier)}get dependentContexts(){let e=this.dependentControllerIdentifiers;return this.router.contexts.filter(t=>e.includes(t.identifier))}hasOutlet(e,t){return!!this.getOutlet(e,t)||!!this.getOutletFromMap(e,t)}getOutlet(e,t){return this.application.getControllerForElementAndIdentifier(e,t)}getOutletFromMap(e,t){return this.outletsByName.getValuesForKey(t).find(s=>s.element===e)}get scope(){return this.context.scope}get schema(){return this.context.schema}get identifier(){return this.context.identifier}get application(){return this.context.application}get router(){return this.application.router}},le=class{constructor(e,t){this.logDebugActivity=(s,n={})=>{let{identifier:i,controller:o,element:c}=this;n=Object.assign({identifier:i,controller:o,element:c},n),this.application.logDebugActivity(this.identifier,s,n)},this.module=e,this.scope=t,this.controller=new e.controllerConstructor(this),this.bindingObserver=new ie(this,this.dispatcher),this.valueObserver=new oe(this,this.controller),this.targetObserver=new ae(this,this),this.outletObserver=new ce(this,this);try{this.controller.initialize(),this.logDebugActivity("initialize")}catch(s){this.handleError(s,"initializing controller")}}connect(){this.bindingObserver.start(),this.valueObserver.start(),this.targetObserver.start(),this.outletObserver.start();try{this.controller.connect(),this.logDebugActivity("connect")}catch(e){this.handleError(e,"connecting controller")}}refresh(){this.outletObserver.refresh()}disconnect(){try{this.controller.disconnect(),this.logDebugActivity("disconnect")}catch(e){this.handleError(e,"disconnecting controller")}this.outletObserver.stop(),this.targetObserver.stop(),this.valueObserver.stop(),this.bindingObserver.stop()}get application(){return this.module.application}get identifier(){return this.module.identifier}get schema(){return this.application.schema}get dispatcher(){return this.application.dispatcher}get element(){return this.scope.element}get parentElement(){return this.element.parentElement}handleError(e,t,s={}){let{identifier:n,controller:i,element:o}=this;s=Object.assign({identifier:n,controller:i,element:o},s),this.application.handleError(e,`Error ${t}`,s)}targetConnected(e,t){this.invokeControllerMethod(`${t}TargetConnected`,e)}targetDisconnected(e,t){this.invokeControllerMethod(`${t}TargetDisconnected`,e)}outletConnected(e,t,s){this.invokeControllerMethod(`${X(s)}OutletConnected`,e,t)}outletDisconnected(e,t,s){this.invokeControllerMethod(`${X(s)}OutletDisconnected`,e,t)}invokeControllerMethod(e,...t){let s=this.controller;typeof s[e]=="function"&&s[e](...t)}};function ft(r){return gt(r,mt(r))}function gt(r,e){let t=yt(r),s=pt(r.prototype,e);return Object.defineProperties(t.prototype,s),t}function mt(r){return L(r,"blessings").reduce((t,s)=>{let n=s(r);for(let i in n){let o=t[i]||{};t[i]=Object.assign(o,n[i])}return t},{})}function pt(r,e){return vt(e).reduce((t,s)=>{let n=bt(r,e,s);return n&&Object.assign(t,{[s]:n}),t},{})}function bt(r,e,t){let s=Object.getOwnPropertyDescriptor(r,t);if(!(s&&"value"in s)){let i=Object.getOwnPropertyDescriptor(e,t).value;return s&&(i.get=s.get||i.get,i.set=s.set||i.set),i}}var vt=(()=>typeof Object.getOwnPropertySymbols=="function"?r=>[...Object.getOwnPropertyNames(r),...Object.getOwnPropertySymbols(r)]:Object.getOwnPropertyNames)(),yt=(()=>{function r(t){function s(){return Reflect.construct(t,arguments,new.target)}return s.prototype=Object.create(t.prototype,{constructor:{value:s}}),Reflect.setPrototypeOf(s,t),s}function e(){let s=r(function(){this.a.call(this)});return s.prototype.a=function(){},new s}try{return e(),r}catch(t){return s=>class extends s{}}})();function Et(r){return{identifier:r.identifier,controllerConstructor:ft(r.controllerConstructor)}}var he=class{constructor(e,t){this.application=e,this.definition=Et(t),this.contextsByScope=new WeakMap,this.connectedContexts=new Set}get identifier(){return this.definition.identifier}get controllerConstructor(){return this.definition.controllerConstructor}get contexts(){return Array.from(this.connectedContexts)}connectContextForScope(e){let t=this.fetchContextForScope(e);this.connectedContexts.add(t),t.connect()}disconnectContextForScope(e){let t=this.contextsByScope.get(e);t&&(this.connectedContexts.delete(t),t.disconnect())}fetchContextForScope(e){let t=this.contextsByScope.get(e);return t||(t=new le(this,e),this.contextsByScope.set(e,t)),t}},ue=class{constructor(e){this.scope=e}has(e){return this.data.has(this.getDataKey(e))}get(e){return this.getAll(e)[0]}getAll(e){let t=this.data.get(this.getDataKey(e))||"";return tt(t)}getAttributeName(e){return this.data.getAttributeNameForKey(this.getDataKey(e))}getDataKey(e){return`${e}-class`}get data(){return this.scope.data}},de=class{constructor(e){this.scope=e}get element(){return this.scope.element}get identifier(){return this.scope.identifier}get(e){let t=this.getAttributeNameForKey(e);return this.element.getAttribute(t)}set(e,t){let s=this.getAttributeNameForKey(e);return this.element.setAttribute(s,t),this.get(e)}has(e){let t=this.getAttributeNameForKey(e);return this.element.hasAttribute(t)}delete(e){if(this.has(e)){let t=this.getAttributeNameForKey(e);return this.element.removeAttribute(t),!0}else return!1}getAttributeNameForKey(e){return`data-${this.identifier}-${Ve(e)}`}},fe=class{constructor(e){this.warnedKeysByObject=new WeakMap,this.logger=e}warn(e,t,s){let n=this.warnedKeysByObject.get(e);n||(n=new Set,this.warnedKeysByObject.set(e,n)),n.has(t)||(n.add(t),this.logger.warn(s,e))}};function ge(r,e){return`[${r}~="${e}"]`}var me=class{constructor(e){this.scope=e}get element(){return this.scope.element}get identifier(){return this.scope.identifier}get schema(){return this.scope.schema}has(e){return this.find(e)!=null}find(...e){return e.reduce((t,s)=>t||this.findTarget(s)||this.findLegacyTarget(s),void 0)}findAll(...e){return e.reduce((t,s)=>[...t,...this.findAllTargets(s),...this.findAllLegacyTargets(s)],[])}findTarget(e){let t=this.getSelectorForTargetName(e);return this.scope.findElement(t)}findAllTargets(e){let t=this.getSelectorForTargetName(e);return this.scope.findAllElements(t)}getSelectorForTargetName(e){let t=this.schema.targetAttributeForScope(this.identifier);return ge(t,e)}findLegacyTarget(e){let t=this.getLegacySelectorForTargetName(e);return this.deprecate(this.scope.findElement(t),e)}findAllLegacyTargets(e){let t=this.getLegacySelectorForTargetName(e);return this.scope.findAllElements(t).map(s=>this.deprecate(s,e))}getLegacySelectorForTargetName(e){let t=`${this.identifier}.${e}`;return ge(this.schema.targetAttribute,t)}deprecate(e,t){if(e){let{identifier:s}=this,n=this.schema.targetAttribute,i=this.schema.targetAttributeForScope(s);this.guide.warn(e,`target:${t}`,`Please replace ${n}="${s}.${t}" with ${i}="${t}". The ${n} attribute is deprecated and will be removed in a future version of Stimulus.`)}return e}get guide(){return this.scope.guide}},pe=class{constructor(e,t){this.scope=e,this.controllerElement=t}get element(){return this.scope.element}get identifier(){return this.scope.identifier}get schema(){return this.scope.schema}has(e){return this.find(e)!=null}find(...e){return e.reduce((t,s)=>t||this.findOutlet(s),void 0)}findAll(...e){return e.reduce((t,s)=>[...t,...this.findAllOutlets(s)],[])}getSelectorForOutletName(e){let t=this.schema.outletAttributeForScope(this.identifier,e);return this.controllerElement.getAttribute(t)}findOutlet(e){let t=this.getSelectorForOutletName(e);if(t)return this.findElement(t,e)}findAllOutlets(e){let t=this.getSelectorForOutletName(e);return t?this.findAllElements(t,e):[]}findElement(e,t){return this.scope.queryElements(e).filter(n=>this.matchesElement(n,e,t))[0]}findAllElements(e,t){return this.scope.queryElements(e).filter(n=>this.matchesElement(n,e,t))}matchesElement(e,t,s){let n=e.getAttribute(this.scope.schema.controllerAttribute)||"";return e.matches(t)&&n.split(" ").includes(s)}},N=class{constructor(e,t,s,n){this.targets=new me(this),this.classes=new ue(this),this.data=new de(this),this.containsElement=i=>i.closest(this.controllerSelector)===this.element,this.schema=e,this.element=t,this.identifier=s,this.guide=new fe(n),this.outlets=new pe(this.documentScope,t)}findElement(e){return this.element.matches(e)?this.element:this.queryElements(e).find(this.containsElement)}findAllElements(e){return[...this.element.matches(e)?[this.element]:[],...this.queryElements(e).filter(this.containsElement)]}queryElements(e){return Array.from(this.element.querySelectorAll(e))}get controllerSelector(){return ge(this.schema.controllerAttribute,this.identifier)}get isDocumentScope(){return this.element===document.documentElement}get documentScope(){return this.isDocumentScope?this:new N(this.schema,document.documentElement,this.identifier,this.guide.logger)}},be=class{constructor(e,t,s){this.element=e,this.schema=t,this.delegate=s,this.valueListObserver=new W(this.element,this.controllerAttribute,this),this.scopesByIdentifierByElement=new WeakMap,this.scopeReferenceCounts=new WeakMap}start(){this.valueListObserver.start()}stop(){this.valueListObserver.stop()}get controllerAttribute(){return this.schema.controllerAttribute}parseValueForToken(e){let{element:t,content:s}=e;return this.parseValueForElementAndIdentifier(t,s)}parseValueForElementAndIdentifier(e,t){let s=this.fetchScopesByIdentifierForElement(e),n=s.get(t);return n||(n=this.delegate.createScopeForElementAndIdentifier(e,t),s.set(t,n)),n}elementMatchedValue(e,t){let s=(this.scopeReferenceCounts.get(t)||0)+1;this.scopeReferenceCounts.set(t,s),s==1&&this.delegate.scopeConnected(t)}elementUnmatchedValue(e,t){let s=this.scopeReferenceCounts.get(t);s&&(this.scopeReferenceCounts.set(t,s-1),s==1&&this.delegate.scopeDisconnected(t))}fetchScopesByIdentifierForElement(e){let t=this.scopesByIdentifierByElement.get(e);return t||(t=new Map,this.scopesByIdentifierByElement.set(e,t)),t}},ve=class{constructor(e){this.application=e,this.scopeObserver=new be(this.element,this.schema,this),this.scopesByIdentifier=new p,this.modulesByIdentifier=new Map}get element(){return this.application.element}get schema(){return this.application.schema}get logger(){return this.application.logger}get controllerAttribute(){return this.schema.controllerAttribute}get modules(){return Array.from(this.modulesByIdentifier.values())}get contexts(){return this.modules.reduce((e,t)=>e.concat(t.contexts),[])}start(){this.scopeObserver.start()}stop(){this.scopeObserver.stop()}loadDefinition(e){this.unloadIdentifier(e.identifier);let t=new he(this.application,e);this.connectModule(t);let s=e.controllerConstructor.afterLoad;s&&s.call(e.controllerConstructor,e.identifier,this.application)}unloadIdentifier(e){let t=this.modulesByIdentifier.get(e);t&&this.disconnectModule(t)}getContextForElementAndIdentifier(e,t){let s=this.modulesByIdentifier.get(t);if(s)return s.contexts.find(n=>n.element==e)}proposeToConnectScopeForElementAndIdentifier(e,t){let s=this.scopeObserver.parseValueForElementAndIdentifier(e,t);s?this.scopeObserver.elementMatchedValue(s.element,s):console.error(`Couldn't find or create scope for identifier: "${t}" and element:`,e)}handleError(e,t,s){this.application.handleError(e,t,s)}createScopeForElementAndIdentifier(e,t){return new N(this.schema,e,t,this.logger)}scopeConnected(e){this.scopesByIdentifier.add(e.identifier,e);let t=this.modulesByIdentifier.get(e.identifier);t&&t.connectContextForScope(e)}scopeDisconnected(e){this.scopesByIdentifier.delete(e.identifier,e);let t=this.modulesByIdentifier.get(e.identifier);t&&t.disconnectContextForScope(e)}connectModule(e){this.modulesByIdentifier.set(e.identifier,e),this.scopesByIdentifier.getValuesForKey(e.identifier).forEach(s=>e.connectContextForScope(s))}disconnectModule(e){this.modulesByIdentifier.delete(e.identifier),this.scopesByIdentifier.getValuesForKey(e.identifier).forEach(s=>e.disconnectContextForScope(s))}},Ot={controllerAttribute:"data-controller",actionAttribute:"data-action",targetAttribute:"data-target",targetAttributeForScope:r=>`data-${r}-target`,outletAttributeForScope:(r,e)=>`data-${r}-${e}-outlet`,keyMappings:Object.assign(Object.assign({enter:"Enter",tab:"Tab",esc:"Escape",space:" ",up:"ArrowUp",down:"ArrowDown",left:"ArrowLeft",right:"ArrowRight",home:"Home",end:"End",page_up:"PageUp",page_down:"PageDown"},$e("abcdefghijklmnopqrstuvwxyz".split("").map(r=>[r,r]))),$e("0123456789".split("").map(r=>[r,r])))};function $e(r){return r.reduce((e,[t,s])=>Object.assign(Object.assign({},e),{[t]:s}),{})}var H=class{constructor(e=document.documentElement,t=Ot){this.logger=console,this.debug=!1,this.logDebugActivity=(s,n,i={})=>{this.debug&&this.logFormattedMessage(s,n,i)},this.element=e,this.schema=t,this.dispatcher=new Z(this),this.router=new ve(this),this.actionDescriptorFilters=Object.assign({},Je)}static start(e,t){let s=new this(e,t);return s.start(),s}start(){return v(this,null,function*(){yield wt(),this.logDebugActivity("application","starting"),this.dispatcher.start(),this.router.start(),this.logDebugActivity("application","start")})}stop(){this.logDebugActivity("application","stopping"),this.dispatcher.stop(),this.router.stop(),this.logDebugActivity("application","stop")}register(e,t){this.load({identifier:e,controllerConstructor:t})}registerActionOption(e,t){this.actionDescriptorFilters[e]=t}load(e,...t){(Array.isArray(e)?e:[e,...t]).forEach(n=>{n.controllerConstructor.shouldLoad&&this.router.loadDefinition(n)})}unload(e,...t){(Array.isArray(e)?e:[e,...t]).forEach(n=>this.router.unloadIdentifier(n))}get controllers(){return this.router.contexts.map(e=>e.controller)}getControllerForElementAndIdentifier(e,t){let s=this.router.getContextForElementAndIdentifier(e,t);return s?s.controller:null}handleError(e,t,s){var n;this.logger.error(`%s
2
-
3
- %o
4
-
5
- %o`,t,e,s),(n=window.onerror)===null||n===void 0||n.call(window,t,"",0,0,e)}logFormattedMessage(e,t,s={}){s=Object.assign({application:this},s),this.logger.groupCollapsed(`${e} #${t}`),this.logger.log("details:",Object.assign({},s)),this.logger.groupEnd()}};function wt(){return new Promise(r=>{document.readyState=="loading"?document.addEventListener("DOMContentLoaded",()=>r()):r()})}function At(r){return L(r,"classes").reduce((t,s)=>Object.assign(t,Tt(s)),{})}function Tt(r){return{[`${r}Class`]:{get(){let{classes:e}=this;if(e.has(r))return e.get(r);{let t=e.getAttributeName(r);throw new Error(`Missing attribute "${t}"`)}}},[`${r}Classes`]:{get(){return this.classes.getAll(r)}},[`has${B(r)}Class`]:{get(){return this.classes.has(r)}}}}function xt(r){return L(r,"outlets").reduce((t,s)=>Object.assign(t,Ft(s)),{})}function Be(r,e,t){return r.application.getControllerForElementAndIdentifier(e,t)}function Le(r,e,t){let s=Be(r,e,t);if(s||(r.application.router.proposeToConnectScopeForElementAndIdentifier(e,t),s=Be(r,e,t),s))return s}function Ft(r){let e=X(r);return{[`${e}Outlet`]:{get(){let t=this.outlets.find(r),s=this.outlets.getSelectorForOutletName(r);if(t){let n=Le(this,t,r);if(n)return n;throw new Error(`The provided outlet element is missing an outlet controller "${r}" instance for host controller "${this.identifier}"`)}throw new Error(`Missing outlet element "${r}" for host controller "${this.identifier}". Stimulus couldn't find a matching outlet element using selector "${s}".`)}},[`${e}Outlets`]:{get(){let t=this.outlets.findAll(r);return t.length>0?t.map(s=>{let n=Le(this,s,r);if(n)return n;console.warn(`The provided outlet element is missing an outlet controller "${r}" instance for host controller "${this.identifier}"`,s)}).filter(s=>s):[]}},[`${e}OutletElement`]:{get(){let t=this.outlets.find(r),s=this.outlets.getSelectorForOutletName(r);if(t)return t;throw new Error(`Missing outlet element "${r}" for host controller "${this.identifier}". Stimulus couldn't find a matching outlet element using selector "${s}".`)}},[`${e}OutletElements`]:{get(){return this.outlets.findAll(r)}},[`has${B(e)}Outlet`]:{get(){return this.outlets.has(r)}}}}function Ct(r){return L(r,"targets").reduce((t,s)=>Object.assign(t,kt(s)),{})}function kt(r){return{[`${r}Target`]:{get(){let e=this.targets.find(r);if(e)return e;throw new Error(`Missing target element "${r}" for "${this.identifier}" controller`)}},[`${r}Targets`]:{get(){return this.targets.findAll(r)}},[`has${B(r)}Target`]:{get(){return this.targets.has(r)}}}}function Mt(r){let e=ht(r,"values"),t={valueDescriptorMap:{get(){return e.reduce((s,n)=>{let i=Ke(n,this.identifier),o=this.data.getAttributeNameForKey(i.key);return Object.assign(s,{[o]:i})},{})}}};return e.reduce((s,n)=>Object.assign(s,Nt(n)),t)}function Nt(r,e){let t=Ke(r,e),{key:s,name:n,reader:i,writer:o}=t;return{[n]:{get(){let c=this.data.get(s);return c!==null?i(c):t.defaultValue},set(c){c===void 0?this.data.delete(s):this.data.set(s,o(c))}},[`has${B(n)}`]:{get(){return this.data.has(s)||t.hasCustomDefaultValue}}}}function Ke([r,e],t){return Dt({controller:t,token:r,typeDefinition:e})}function Q(r){switch(r){case Array:return"array";case Boolean:return"boolean";case Number:return"number";case Object:return"object";case String:return"string"}}function $(r){switch(typeof r){case"boolean":return"boolean";case"number":return"number";case"string":return"string"}if(Array.isArray(r))return"array";if(Object.prototype.toString.call(r)==="[object Object]")return"object"}function $t(r){let{controller:e,token:t,typeObject:s}=r,n=ke(s.type),i=ke(s.default),o=n&&i,c=n&&!i,a=!n&&i,u=Q(s.type),A=$(r.typeObject.default);if(c)return u;if(a)return A;if(u!==A){let I=e?`${e}.${t}`:t;throw new Error(`The specified default value for the Stimulus Value "${I}" must match the defined type "${u}". The provided default value of "${s.default}" is of type "${A}".`)}if(o)return u}function Bt(r){let{controller:e,token:t,typeDefinition:s}=r,i=$t({controller:e,token:t,typeObject:s}),o=$(s),c=Q(s),a=i||o||c;if(a)return a;let u=e?`${e}.${s}`:t;throw new Error(`Unknown value type "${u}" for "${t}" value`)}function Lt(r){let e=Q(r);if(e)return De[e];let t=ee(r,"default"),s=ee(r,"type"),n=r;if(t)return n.default;if(s){let{type:i}=n,o=Q(i);if(o)return De[o]}return r}function Dt(r){let{token:e,typeDefinition:t}=r,s=`${Ve(e)}-value`,n=Bt(r);return{type:n,key:s,name:ye(s),get defaultValue(){return Lt(t)},get hasCustomDefaultValue(){return $(t)!==void 0},reader:St[n],writer:Se[n]||Se.default}}var De={get array(){return[]},boolean:!1,number:0,get object(){return{}},string:""},St={array(r){let e=JSON.parse(r);if(!Array.isArray(e))throw new TypeError(`expected value of type "array" but instead got value "${r}" of type "${$(e)}"`);return e},boolean(r){return!(r=="0"||String(r).toLowerCase()=="false")},number(r){return Number(r.replace(/_/g,""))},object(r){let e=JSON.parse(r);if(e===null||typeof e!="object"||Array.isArray(e))throw new TypeError(`expected value of type "object" but instead got value "${r}" of type "${$(e)}"`);return e},string(r){return r}},Se={default:jt,array:je,object:je};function je(r){return JSON.stringify(r)}function jt(r){return`${r}`}var l=class{constructor(e){this.context=e}static get shouldLoad(){return!0}static afterLoad(e,t){}get application(){return this.context.application}get scope(){return this.context.scope}get element(){return this.scope.element}get identifier(){return this.scope.identifier}get targets(){return this.scope.targets}get outlets(){return this.scope.outlets}get classes(){return this.scope.classes}get data(){return this.scope.data}initialize(){}connect(){}disconnect(){}dispatch(e,{target:t=this.element,detail:s={},prefix:n=this.identifier,bubbles:i=!0,cancelable:o=!0}={}){let c=n?`${n}:${e}`:e,a=new CustomEvent(c,{detail:s,bubbles:i,cancelable:o});return t.dispatchEvent(a),a}};l.blessings=[At,Ct,Mt,xt];l.targets=[];l.outlets=[];l.values={};var D=class extends l{connect(){this.hasInputTarget&&(this.inputTarget.disabled=!0)}copy(r){if(r.preventDefault(),!this.hasInputTarget)return;let e=this.inputTarget.innerHTML||this.inputTarget.value;navigator.clipboard.writeText(e)}};d(D,"targets",["input"]);var S=class extends l{toggle(r){r.preventDefault();let e=this.controlTarget;e.dataset.checked?(this.fieldTarget.value=!1,delete e.dataset.checked):(this.fieldTarget.value=!0,e.dataset.checked=!0)}};d(S,"targets",["field","control"]);var J=class extends l{close(){this.element.classList.remove("opacity-100"),this.element.classList.add("opacity-0"),setTimeout(()=>{this.element.classList.add("hidden")},300)}};var G=class extends l{openModal(){this.findElement("lui-modal").open()}closeModal(){this.findElement("lui-modal").close()}findElement(r){let e=this.element.dataset.target.replace("#",""),t=document.getElementById(e);return this.application.getControllerForElementAndIdentifier(t,r)}};var j=class extends l{connect(){this.openItem(this.itemTargets[0])}toggle(r){r.preventDefault(),this.itemTargets.forEach(e=>{e.contains(r.target)?this.isOpen(e)?this.closeItem(e):this.openItem(e):this.closeItem(e)})}openItem(r){let e=r.querySelector("[data-accordion-target=content]");e.classList.remove("grid-rows-[0fr]"),e.classList.add("grid-rows-[1fr]"),e.classList.remove("opacity-0"),e.classList.add("opacity-100"),r.querySelector("[data-accordion-target=arrow]").classList.add("rotate-180")}closeItem(r){let e=r.querySelector("[data-accordion-target=content]");e.classList.remove("grid-rows-[1fr]"),e.classList.add("grid-rows-[0fr]"),e.classList.remove("opacity-100"),e.classList.add("opacity-0"),r.querySelector("[data-accordion-target=arrow]").classList.remove("rotate-180")}isOpen(r){return r.querySelector("[data-accordion-target=content]").classList.contains("grid-rows-[1fr]")}};d(j,"targets",["content","item"]);var x=class extends l{connect(){this.dialogTarget.addEventListener("click",this.onClick.bind(this)),this.openValue&&this.open()}disconnect(){this.dialogTarget.removeEventListener("click",this.onClick.bind(this))}open(){this.dialogTarget.showModal()}close(){this.dialogTarget.setAttribute("closing",""),Promise.all(this.dialogTarget.getAnimations().map(r=>r.finished)).then(()=>{this.dialogTarget.removeAttribute("closing"),this.dialogTarget.close()})}onClick(r){r.target===this.dialogTarget&&this.dialogTarget.close()}submitForm(){this.dialogTarget.querySelector("form").requestSubmit()}};d(x,"targets",["dialog"]),d(x,"values",{open:Boolean});var F=class extends l{connect(){this.initialShowValue||this.itemTargets.forEach(r=>{r.classList.add("hidden")})}toggle(r){r.preventDefault(),this.itemTargets.forEach(e=>{e.classList.toggle("hidden")})}};d(F,"targets",["item"]),d(F,"values",{initialShow:Boolean});var V=class extends l{toggle(r){r.preventDefault();let e=r.target;e.dataset.checked?(this.fieldTarget.value=!1,delete e.dataset.checked):(this.fieldTarget.value=!0,e.dataset.checked=!0)}};d(V,"targets",["field"]);var Ee=class extends l{};Ee.debounces=[];var Oe=class extends l{};Oe.throttles=[];var Vt={enterFromClass:"enter",enterActiveClass:"enterStart",enterToClass:"enterEnd",leaveFromClass:"leave",leaveActiveClass:"leaveStart",leaveToClass:"leaveEnd"},It={transitioned:!1,hiddenClass:"hidden",preserveOriginalClass:!0,removeToClasses:!0},_e=(r,e={})=>{var t,s,n;let i=r,o=i.element.dataset.transitionTarget,c;o&&(c=i[`${o}Target`]);let a=(e==null?void 0:e.element)||c||i.element;if(!(a instanceof HTMLElement||a instanceof SVGElement))return;let u=a.dataset,A=parseInt(u.leaveAfter||"")||e.leaveAfter||0,{transitioned:I,hiddenClass:m,preserveOriginalClass:we,removeToClasses:P}=Object.assign({},It,e),Ae=(t=i.enter)===null||t===void 0?void 0:t.bind(i),Te=(s=i.leave)===null||s===void 0?void 0:s.bind(i),xe=(n=i.toggleTransition)===null||n===void 0?void 0:n.bind(i);function K(h){return v(this,null,function*(){if(i.transitioned)return;i.transitioned=!0,Ae&&Ae(h);let f=y("enterFrom",e,u),E=y("enterActive",e,u),O=y("enterTo",e,u),w=y("leaveTo",e,u);m&&a.classList.remove(m),P||T(a,w),yield Ce(a,f,E,O,m,we,P),A>0&&setTimeout(()=>{k(h)},A)})}function k(h){return v(this,null,function*(){if(!i.transitioned)return;i.transitioned=!1,Te&&Te(h);let f=y("leaveFrom",e,u),E=y("leaveActive",e,u),O=y("leaveTo",e,u),w=y("enterTo",e,u);P||T(a,w),yield Ce(a,f,E,O,m,we,P),m&&a.classList.add(m)})}function Fe(h){xe&&xe(h),i.transitioned?k():K()}function Ce(h,f,E,O,w,qe,ze){return v(this,null,function*(){let M=[];qe&&(f.forEach(g=>h.classList.contains(g)&&g!==w&&M.push(g)),E.forEach(g=>h.classList.contains(g)&&g!==w&&M.push(g)),O.forEach(g=>h.classList.contains(g)&&g!==w&&M.push(g))),_(h,f),T(h,M),_(h,E),yield Kt(),T(h,f),_(h,O),yield Pt(h),T(h,E),ze&&T(h,O),_(h,M)})}function Re(){i.transitioned=I,I?(m&&a.classList.remove(m),K()):(m&&a.classList.add(m),k())}function _(h,f){f.length>0&&h.classList.add(...f)}function T(h,f){f.length>0&&h.classList.remove(...f)}return Re(),Object.assign(i,{enter:K,leave:k,toggleTransition:Fe}),[K,k,Fe]};function y(r,e,t){let s=`transition${r[0].toUpperCase()}${r.substr(1)}`,n=Vt[r],i=e[r]||t[s]||t[n]||" ";return _t(i)?[]:i.split(" ")}function Pt(r){return v(this,null,function*(){return new Promise(e=>{let t=Number(getComputedStyle(r).transitionDuration.split(",")[0].replace("s",""))*1e3;setTimeout(()=>{e(t)},t)})})}function Kt(){return v(this,null,function*(){return new Promise(r=>{requestAnimationFrame(()=>{requestAnimationFrame(r)})})})}function _t(r){return r.length===0||!r.trim()}var C=class extends l{connect(){_e(this,{element:this.menuTarget})}toggle(){this.toggleTransition()}hide(e){!this.element.contains(e.target)&&!this.menuTarget.classList.contains("hidden")&&this.leave()}};d(C,"targets",["menu"]);var b="lui",Ue=H.start();window.Stimulus=Ue;function Ut(r){r.register(`${b}-clipboard`,D),r.register(`${b}-checkbox`,S),r.register(`${b}-banner`,J),r.register(`${b}-main`,G),r.register(`${b}-accordion`,j),r.register(`${b}-modal`,x),r.register(`${b}-reveal`,F),r.register(`${b}-switch`,V),r.register(`${b}-dropdown`,C)}Ut(Ue);})();
6
- //# sourceMappingURL=lightning_ui.js.map
@@ -1,43 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- class LightningUi::BadgeComponent < LightningUi::BaseComponent
4
- def initialize(status: :default, progress: nil)
5
- @status = status
6
- @progress = progress
7
- end
8
-
9
- def classes
10
- status_classes = case @status
11
- when :success
12
- "bg-green-200 text-zinc-500"
13
- when :warning
14
- "bg-yellow-200 text-zinc-500"
15
- when :error
16
- "bg-red-600 text-white"
17
- else
18
- "bg-zinc-400/20 text-zinc-500"
19
- end
20
- [defalt_classes, status_classes].join(" ")
21
- end
22
-
23
- def progress_classes
24
- progress_classes = case @progress
25
- when :complete
26
- "bg-zinc-400 border-zinc-400"
27
- when :incomplete
28
- "bg-yellow-300 border-zinc-400"
29
- when :partialy_complete
30
- "relative border-yellow-600 after:w-[3.75px] after:h-[8.2px] after:border-transparent after:border-l-yellow-600 after:border-r-yellow-600 after:border-[1px] after:-rotate-45 after:absolute after:-top-[1px] after:left-[1px] after:margin-0 after-margin-y-[1px]"
31
- end
32
- [default_progress_classes, progress_classes].join(" ")
33
- end
34
-
35
- def default_progress_classes
36
- "h-2 w-2 rounded-[3px] border-[1px]"
37
- end
38
-
39
- # hover:bg-zinc-400/30
40
- def defalt_classes
41
- "relative inline-flex items-center relative gap-x-1.5 rounded-[10px] px-2.5 py-1 text-sm font-medium sm:text-xs forced-colors:outline"
42
- end
43
- end
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- class LightningUi::DescriptionListComponent < LightningUi::BaseComponent
4
- renders_many :items, LightningUi::DescriptionList::ItemComponent
5
- end
@@ -1,5 +0,0 @@
1
- class LightningUi::Dropdown::ItemComponent < LightningUi::BaseComponent
2
- def initialize(title:)
3
- @title = title
4
- end
5
- end
@@ -1,20 +0,0 @@
1
- <%= tag.div data:, class:"[&>[data-slot=label]+[data-slot=control]]:mt-3 [&>[data-slot=label]+[data-slot=description]]:mt-1 [&>[data-slot=description]+[data-slot=control]]:mt-3 [&>[data-slot=control]+[data-slot=description]]:mt-3 [&>[data-slot=control]+[data-slot=error]]:mt-3 *:data-[slot=label]:font-medium" do %>
2
- <% if @label %>
3
- <label data-slot="label" class="text-base/6 text-zinc-950 select-none data-disabled:opacity-50 sm:text-sm/6">
4
- <%= @label %>
5
- </label>
6
- <% end %>
7
- <% if @description %>
8
- <p data-slot="description" class="text-base/6 text-zinc-500 data-disabled:opacity-50 sm:text-sm/6">
9
- <%= @description %>
10
- </p>
11
- <% end %>
12
- <span data-slot="control" class="group relative block w-full before:absolute before:inset-px before:rounded-[calc(var(--radius-lg)-1px)] before:bg-white before:shadow-sm after:pointer-events-none after:absolute after:inset-0 after:rounded-lg after:ring-transparent after:ring-inset has-data-focus:after:ring-2 has-data-focus:after:ring-blue-500 has-data-disabled:opacity-50 has-data-disabled:before:bg-zinc-950/5 has-data-disabled:before:shadow-none">
13
- <% if @form %>
14
- <%= @form.select(@name, @options_for_select, {multiple: @multiple}, { class: "relative block w-full appearance-none rounded-lg py-[calc(--spacing(2.5)-1px)] sm:py-[calc(--spacing(1.5)-1px)] pr-[calc(--spacing(10)-1px)] pl-[calc(--spacing(3.5)-1px)] sm:pr-[calc(--spacing(9)-1px)] sm:pl-[calc(--spacing(3)-1px)] [&_optgroup]:font-semibold text-base/6 text-zinc-950 placeholder:text-zinc-500 sm:text-sm/6 border border-zinc-950/10 data-hover:border-zinc-950/20 bg-transparent focus:outline-hidden data-invalid:border-red-500 data-invalid:data-hover:border-red-500 data-disabled:border-zinc-950/20 data-disabled:opacity-100"}) %>
15
- <% else %>
16
- <%= select_tag(@name, @options_for_select, multiple: @multiple, class: "relative block w-full appearance-none rounded-lg py-[calc(--spacing(2.5)-1px)] sm:py-[calc(--spacing(1.5)-1px)] pr-[calc(--spacing(10)-1px)] pl-[calc(--spacing(3.5)-1px)] sm:pr-[calc(--spacing(9)-1px)] sm:pl-[calc(--spacing(3)-1px)] [&_optgroup]:font-semibold text-base/6 text-zinc-950 placeholder:text-zinc-500 sm:text-sm/6 border border-zinc-950/10 data-hover:border-zinc-950/20 bg-transparent focus:outline-hidden data-invalid:border-red-500 data-invalid:data-hover:border-red-500 data-disabled:border-zinc-950/20 data-disabled:opacity-100") %>
17
- <% end %>
18
- <span class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2"><svg class="size-5 stroke-zinc-500 group-has-data-disabled:stroke-zinc-600 sm:size-4 forced-colors:stroke-[CanvasText]" viewBox="0 0 16 16" aria-hidden="true" fill="none"><path d="M5.75 10.75L8 13L10.25 10.75" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10.25 5.25L8 3L5.75 5.25" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
19
- </span>
20
- <% end %>
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- class LightningUi::SelectComponent < LightningUi::BaseComponent
4
- def initialize(name:, form: nil, label: nil, description: nil, disabled: false, options_for_select: [], multiple: false, **options)
5
- @name = name
6
- @form = form
7
- @label = label
8
- @multiple = multiple
9
- @description = description
10
- @disabled = disabled
11
- @options_for_select = options_for_select
12
- @options = options
13
- end
14
-
15
- def data
16
- default_data = {
17
- slot: "field",
18
- action: "click->switch#toggle",
19
- controller: "select",
20
- disabled: @disabled
21
- }
22
-
23
- default_data.merge(@options[:data] || {})
24
- end
25
- end
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- class LightningUi::SidebarComponent < LightningUi::BaseComponent
4
- end
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- class LightningUi::SpinnerComponent < LightningUi::BaseComponent
4
- end
@@ -1,7 +0,0 @@
1
- module LightningUi
2
- module ApplicationHelper
3
- def lui_asset_path(file)
4
- "/lightning_ui-assets/#{file}".gsub("//", "/")
5
- end
6
- end
7
- end
@@ -1,3 +0,0 @@
1
- module LightningUi
2
- VERSION = "0.1.1"
3
- end
data/lib/lightning_ui.rb DELETED
@@ -1,6 +0,0 @@
1
- require "lightning_ui/version"
2
- require "lightning_ui/engine"
3
-
4
- module LightningUi
5
- # Your code goes here...
6
- end
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :lightning_ui do
3
- # # Task goes here
4
- # end