lightning_ui_kit 0.3.5 → 0.4.0

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 (1288) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +34 -3
  3. data/app/assets/stylesheets/lightning_ui_kit/application.css +6 -0
  4. data/app/assets/stylesheets/lightning_ui_kit/themes.css +14 -0
  5. data/app/assets/vendor/lightning_ui_kit.css +3249 -0
  6. data/app/assets/vendor/lightning_ui_kit.js +18 -0
  7. data/app/components/lightning_ui_kit/aspect_ratio_component.html.erb +3 -0
  8. data/app/components/lightning_ui_kit/aspect_ratio_component.rb +35 -0
  9. data/app/components/lightning_ui_kit/auth_layout_component.html.erb +5 -0
  10. data/app/components/lightning_ui_kit/auth_layout_component.rb +9 -0
  11. data/app/components/lightning_ui_kit/breadcrumb/item_component.html.erb +7 -0
  12. data/app/components/lightning_ui_kit/breadcrumb/item_component.rb +27 -0
  13. data/app/components/lightning_ui_kit/breadcrumb_component.html.erb +12 -0
  14. data/app/components/lightning_ui_kit/breadcrumb_component.rb +23 -0
  15. data/app/components/lightning_ui_kit/button_component.rb +13 -0
  16. data/app/components/lightning_ui_kit/calendar_component.html.erb +15 -0
  17. data/app/components/lightning_ui_kit/calendar_component.rb +47 -0
  18. data/app/components/lightning_ui_kit/carousel_component.html.erb +24 -0
  19. data/app/components/lightning_ui_kit/carousel_component.rb +31 -0
  20. data/app/components/lightning_ui_kit/chart_component.html.erb +80 -0
  21. data/app/components/lightning_ui_kit/chart_component.rb +263 -0
  22. data/app/components/lightning_ui_kit/collapsible_component.html.erb +10 -0
  23. data/app/components/lightning_ui_kit/collapsible_component.rb +28 -0
  24. data/app/components/lightning_ui_kit/combobox_component.html.erb +5 -5
  25. data/app/components/lightning_ui_kit/combobox_component.rb +29 -5
  26. data/app/components/lightning_ui_kit/command/item_component.html.erb +1 -0
  27. data/app/components/lightning_ui_kit/command/item_component.rb +8 -0
  28. data/app/components/lightning_ui_kit/command_component.html.erb +25 -0
  29. data/app/components/lightning_ui_kit/command_component.rb +26 -0
  30. data/app/components/lightning_ui_kit/context_menu_component.html.erb +12 -0
  31. data/app/components/lightning_ui_kit/context_menu_component.rb +27 -0
  32. data/app/components/lightning_ui_kit/copy_input_component.html.erb +37 -0
  33. data/app/components/lightning_ui_kit/copy_input_component.rb +60 -0
  34. data/app/components/lightning_ui_kit/date_picker_component.html.erb +12 -0
  35. data/app/components/lightning_ui_kit/date_picker_component.rb +53 -0
  36. data/app/components/lightning_ui_kit/hover_card_component.html.erb +15 -0
  37. data/app/components/lightning_ui_kit/hover_card_component.rb +35 -0
  38. data/app/components/lightning_ui_kit/input_component.rb +1 -0
  39. data/app/components/lightning_ui_kit/input_otp_component.html.erb +19 -0
  40. data/app/components/lightning_ui_kit/input_otp_component.rb +40 -0
  41. data/app/components/lightning_ui_kit/menubar/menu_component.html.erb +12 -0
  42. data/app/components/lightning_ui_kit/menubar/menu_component.rb +22 -0
  43. data/app/components/lightning_ui_kit/menubar_component.html.erb +5 -0
  44. data/app/components/lightning_ui_kit/menubar_component.rb +21 -0
  45. data/app/components/lightning_ui_kit/modal_component.html.erb +44 -24
  46. data/app/components/lightning_ui_kit/modal_component.rb +42 -2
  47. data/app/components/lightning_ui_kit/navigation_menu/item_component.html.erb +1 -0
  48. data/app/components/lightning_ui_kit/navigation_menu/item_component.rb +13 -0
  49. data/app/components/lightning_ui_kit/navigation_menu_component.html.erb +27 -0
  50. data/app/components/lightning_ui_kit/navigation_menu_component.rb +26 -0
  51. data/app/components/lightning_ui_kit/pagination_component.html.erb +2 -2
  52. data/app/components/lightning_ui_kit/pagination_component.rb +1 -2
  53. data/app/components/lightning_ui_kit/popover_component.html.erb +8 -0
  54. data/app/components/lightning_ui_kit/popover_component.rb +32 -0
  55. data/app/components/lightning_ui_kit/progress_component.html.erb +3 -0
  56. data/app/components/lightning_ui_kit/progress_component.rb +39 -0
  57. data/app/components/lightning_ui_kit/resizable_component.html.erb +17 -0
  58. data/app/components/lightning_ui_kit/resizable_component.rb +52 -0
  59. data/app/components/lightning_ui_kit/scroll_area_component.html.erb +3 -0
  60. data/app/components/lightning_ui_kit/scroll_area_component.rb +32 -0
  61. data/app/components/lightning_ui_kit/separator_component.html.erb +1 -0
  62. data/app/components/lightning_ui_kit/separator_component.rb +36 -0
  63. data/app/components/lightning_ui_kit/sheet_component.html.erb +53 -0
  64. data/app/components/lightning_ui_kit/sheet_component.rb +60 -0
  65. data/app/components/lightning_ui_kit/slider_component.html.erb +20 -0
  66. data/app/components/lightning_ui_kit/slider_component.rb +56 -0
  67. data/app/components/lightning_ui_kit/table/column_component.rb +19 -2
  68. data/app/components/lightning_ui_kit/table_component.html.erb +102 -11
  69. data/app/components/lightning_ui_kit/table_component.rb +137 -3
  70. data/app/components/lightning_ui_kit/toggle_component.html.erb +3 -0
  71. data/app/components/lightning_ui_kit/toggle_component.rb +53 -0
  72. data/app/components/lightning_ui_kit/toggle_group/item_component.html.erb +1 -0
  73. data/app/components/lightning_ui_kit/toggle_group/item_component.rb +8 -0
  74. data/app/components/lightning_ui_kit/toggle_group_component.html.erb +15 -0
  75. data/app/components/lightning_ui_kit/toggle_group_component.rb +57 -0
  76. data/app/components/lightning_ui_kit/tooltip_component.html.erb +1 -1
  77. data/app/controllers/concerns/lightning_ui_kit/sortable.rb +18 -0
  78. data/app/javascript/lightning_ui_kit/controllers/calendar_controller.js +103 -0
  79. data/app/javascript/lightning_ui_kit/controllers/carousel_controller.js +68 -0
  80. data/app/javascript/lightning_ui_kit/controllers/chart_controller.js +53 -0
  81. data/app/javascript/lightning_ui_kit/controllers/clipboard_controller.js +40 -3
  82. data/app/javascript/lightning_ui_kit/controllers/collapsible_controller.js +24 -0
  83. data/app/javascript/lightning_ui_kit/controllers/command_controller.js +71 -0
  84. data/app/javascript/lightning_ui_kit/controllers/context_menu_controller.js +59 -0
  85. data/app/javascript/lightning_ui_kit/controllers/date_picker_controller.js +69 -0
  86. data/app/javascript/lightning_ui_kit/controllers/dropzone_controller.js +1 -1
  87. data/app/javascript/lightning_ui_kit/controllers/hover_card_controller.js +84 -0
  88. data/app/javascript/lightning_ui_kit/controllers/menubar_controller.js +55 -0
  89. data/app/javascript/lightning_ui_kit/controllers/modal_controller.js +28 -16
  90. data/app/javascript/lightning_ui_kit/controllers/navigation_menu_controller.js +96 -0
  91. data/app/javascript/lightning_ui_kit/controllers/otp_controller.js +65 -0
  92. data/app/javascript/lightning_ui_kit/controllers/popover_controller.js +75 -0
  93. data/app/javascript/lightning_ui_kit/controllers/resizable_controller.js +51 -0
  94. data/app/javascript/lightning_ui_kit/controllers/reveal_controller.js +2 -2
  95. data/app/javascript/lightning_ui_kit/controllers/sheet_controller.js +42 -0
  96. data/app/javascript/lightning_ui_kit/controllers/slider_controller.js +23 -0
  97. data/app/javascript/lightning_ui_kit/controllers/table_controller.js +82 -0
  98. data/app/javascript/lightning_ui_kit/controllers/toggle_controller.js +16 -0
  99. data/app/javascript/lightning_ui_kit/controllers/toggle_group_controller.js +31 -0
  100. data/app/javascript/lightning_ui_kit/index.js +36 -0
  101. data/lib/lightning_ui_kit/builder.rb +96 -0
  102. data/lib/lightning_ui_kit/sorting.rb +46 -0
  103. data/lib/lightning_ui_kit/version.rb +1 -1
  104. data/lib/lightning_ui_kit.rb +1 -0
  105. data/vendor/bundle/ruby/3.4.0/cache/json-2.18.1.gem +0 -0
  106. data/vendor/bundle/ruby/3.4.0/cache/rubocop-1.84.2.gem +0 -0
  107. data/vendor/bundle/ruby/3.4.0/cache/standard-1.54.0.gem +0 -0
  108. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/bigdecimal.so +0 -0
  109. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/gem_make.out +6 -6
  110. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/mkmf.log +26 -26
  111. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/date_core.so +0 -0
  112. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/gem_make.out +6 -6
  113. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/mkmf.log +4 -4
  114. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/erb/escape.so +0 -0
  115. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/gem_make.out +6 -6
  116. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/mkmf.log +2 -2
  117. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/gem_make.out +6 -6
  118. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/io/console.so +0 -0
  119. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/mkmf.log +16 -16
  120. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/gem_make.out +25 -0
  121. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/json/ext/generator.so +0 -0
  122. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/json/ext/parser.so +0 -0
  123. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/mkmf.log +165 -0
  124. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/gem_make.out +6 -6
  125. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/mkmf.log +12 -12
  126. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/nio4r_ext.so +0 -0
  127. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/gem_make.out +6 -6
  128. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/mkmf.log +6 -6
  129. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/prism/prism.so +0 -0
  130. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/gem_make.out +6 -6
  131. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/mkmf.log +10 -10
  132. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/psych.so +0 -0
  133. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/racc-1.8.1/gem_make.out +6 -6
  134. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/racc-1.8.1/racc/cparse.so +0 -0
  135. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/gem_make.out +6 -6
  136. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/mkmf.log +2 -2
  137. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/stringio.so +0 -0
  138. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/websocket-driver-0.8.0/gem_make.out +6 -6
  139. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/websocket-driver-0.8.0/websocket_mask.so +0 -0
  140. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/Makefile +3 -3
  141. data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/lib/bigdecimal.so +0 -0
  142. data/vendor/bundle/ruby/3.4.0/gems/date-3.4.1/ext/date/Makefile +3 -3
  143. data/vendor/bundle/ruby/3.4.0/gems/date-3.4.1/lib/date_core.so +0 -0
  144. data/vendor/bundle/ruby/3.4.0/gems/erb-5.0.2/ext/erb/escape/Makefile +3 -3
  145. data/vendor/bundle/ruby/3.4.0/gems/erb-5.0.2/lib/erb/escape.so +0 -0
  146. data/vendor/bundle/ruby/3.4.0/gems/io-console-0.8.1/ext/io/console/Makefile +3 -3
  147. data/vendor/bundle/ruby/3.4.0/gems/io-console-0.8.1/lib/io/console.so +0 -0
  148. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/CHANGES.md +733 -0
  149. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/fbuffer/fbuffer.h +249 -0
  150. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/generator/Makefile +273 -0
  151. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/generator/generator.c +2224 -0
  152. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/json.h +101 -0
  153. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/parser/Makefile +273 -0
  154. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/parser/parser.c +1672 -0
  155. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/simd/simd.h +218 -0
  156. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/vendor/fpconv.c +480 -0
  157. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/ext/generator.so +0 -0
  158. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/ext/parser.so +0 -0
  159. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/version.rb +5 -0
  160. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json.rb +663 -0
  161. data/vendor/bundle/ruby/3.4.0/gems/nio4r-2.7.4/ext/nio4r/Makefile +3 -3
  162. data/vendor/bundle/ruby/3.4.0/gems/nio4r-2.7.4/lib/nio4r_ext.so +0 -0
  163. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/ext/prism/Makefile +3 -3
  164. data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/prism.so +0 -0
  165. data/vendor/bundle/ruby/3.4.0/gems/psych-5.2.6/ext/psych/Makefile +3 -3
  166. data/vendor/bundle/ruby/3.4.0/gems/psych-5.2.6/lib/psych.so +0 -0
  167. data/vendor/bundle/ruby/3.4.0/gems/racc-1.8.1/ext/racc/cparse/Makefile +3 -3
  168. data/vendor/bundle/ruby/3.4.0/gems/racc-1.8.1/lib/racc/cparse.so +0 -0
  169. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/LICENSE.txt +20 -0
  170. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/README.md +255 -0
  171. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/config/default.yml +6146 -0
  172. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cache_config.rb +58 -0
  173. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/lsp.rb +19 -0
  174. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cli.rb +247 -0
  175. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/comment_config.rb +261 -0
  176. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/config_loader.rb +269 -0
  177. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/gem_version.rb +132 -0
  178. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/alignment_corrector.rb +144 -0
  179. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +111 -0
  180. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +241 -0
  181. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +49 -0
  182. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/case_indentation.rb +221 -0
  183. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/class_structure.rb +388 -0
  184. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +101 -0
  185. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_argument_indentation.rb +315 -0
  186. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_array_element_line_break.rb +94 -0
  187. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_hash_element_line_break.rb +68 -0
  188. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/heredoc_indentation.rb +195 -0
  189. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/indentation_width.rb +493 -0
  190. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/line_length.rb +431 -0
  191. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +115 -0
  192. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +115 -0
  193. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +403 -0
  194. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_in_lambda_literal.rb +78 -0
  195. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_methods.rb +398 -0
  196. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/float_comparison.rb +136 -0
  197. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/literal_as_condition.rb +283 -0
  198. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_splat_expansion.rb +216 -0
  199. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/struct_new_override.rb +75 -0
  200. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/to_json.rb +45 -0
  201. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_or.rb +111 -0
  202. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +121 -0
  203. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +236 -0
  204. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/predicate_method.rb +330 -0
  205. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/predicate_prefix.rb +204 -0
  206. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/offense.rb +246 -0
  207. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/json_load.rb +69 -0
  208. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/access_modifier_declarations.rb +364 -0
  209. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/block_delimiters.rb +504 -0
  210. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/documentation.rb +198 -0
  211. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/documentation_method.rb +152 -0
  212. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_class_definition.rb +96 -0
  213. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/format_string_token.rb +272 -0
  214. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/guard_clause.rb +321 -0
  215. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_as_last_array_item.rb +102 -0
  216. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_lookup_method.rb +94 -0
  217. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_unless_modifier.rb +351 -0
  218. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +44 -0
  219. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +166 -0
  220. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/lambda_call.rb +79 -0
  221. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/method_def_parentheses.rb +178 -0
  222. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/module_member_existence_check.rb +117 -0
  223. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_if_then.rb +42 -0
  224. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/negative_array_index.rb +220 -0
  225. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/preferred_hash_methods.rb +74 -0
  226. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_condition.rb +345 -0
  227. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/reverse_find.rb +51 -0
  228. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/team.rb +290 -0
  229. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/branch.rb +355 -0
  230. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/clang_style_formatter.rb +58 -0
  231. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/formatter_set.rb +114 -0
  232. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/tap_formatter.rb +85 -0
  233. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/diagnostic.rb +173 -0
  234. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/disable_comment_edits.rb +135 -0
  235. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/routes.rb +256 -0
  236. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/runtime.rb +79 -0
  237. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/stdin_runner.rb +76 -0
  238. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/remote_config.rb +114 -0
  239. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/rspec/shared_contexts.rb +275 -0
  240. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/rspec/support.rb +35 -0
  241. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/server/cache.rb +187 -0
  242. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/target_ruby.rb +308 -0
  243. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/version.rb +160 -0
  244. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop.rb +830 -0
  245. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/CHANGELOG.md +716 -0
  246. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/Gemfile.lock +89 -0
  247. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/base.yml +1981 -0
  248. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/ruby-3.3.yml +7 -0
  249. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/ruby-3.4.yml +7 -0
  250. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/lib/standard/version.rb +3 -0
  251. data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/standard.gemspec +32 -0
  252. data/vendor/bundle/ruby/3.4.0/gems/stringio-3.1.7/ext/stringio/Makefile +3 -3
  253. data/vendor/bundle/ruby/3.4.0/gems/stringio-3.1.7/lib/stringio.so +0 -0
  254. data/vendor/bundle/ruby/3.4.0/gems/websocket-driver-0.8.0/ext/websocket-driver/Makefile +3 -3
  255. data/vendor/bundle/ruby/3.4.0/gems/websocket-driver-0.8.0/lib/websocket_mask.so +0 -0
  256. data/vendor/bundle/ruby/3.4.0/specifications/json-2.18.1.gemspec +0 -0
  257. data/vendor/bundle/ruby/3.4.0/specifications/rubocop-1.84.2.gemspec +39 -0
  258. data/vendor/bundle/ruby/3.4.0/specifications/standard-1.54.0.gemspec +31 -0
  259. metadata +1116 -1030
  260. data/vendor/bundle/ruby/3.4.0/cache/json-2.18.0.gem +0 -0
  261. data/vendor/bundle/ruby/3.4.0/cache/rubocop-1.82.1.gem +0 -0
  262. data/vendor/bundle/ruby/3.4.0/cache/standard-1.53.0.gem +0 -0
  263. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/gem_make.out +0 -25
  264. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/json/ext/generator.so +0 -0
  265. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/json/ext/parser.so +0 -0
  266. data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/mkmf.log +0 -165
  267. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/CHANGES.md +0 -728
  268. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/fbuffer/fbuffer.h +0 -247
  269. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/generator/Makefile +0 -273
  270. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/generator/generator.c +0 -2202
  271. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/json.h +0 -97
  272. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/parser/Makefile +0 -273
  273. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/parser/parser.c +0 -1679
  274. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/simd/simd.h +0 -191
  275. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/vendor/fpconv.c +0 -480
  276. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/ext/generator.so +0 -0
  277. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/ext/parser.so +0 -0
  278. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/version.rb +0 -5
  279. data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json.rb +0 -642
  280. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/LICENSE.txt +0 -20
  281. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/README.md +0 -255
  282. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/config/default.yml +0 -6099
  283. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cache_config.rb +0 -29
  284. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cli/command/lsp.rb +0 -19
  285. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cli.rb +0 -228
  286. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/comment_config.rb +0 -261
  287. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/config_loader.rb +0 -273
  288. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/bundler/gem_version.rb +0 -132
  289. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/correctors/alignment_corrector.rb +0 -126
  290. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +0 -111
  291. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +0 -241
  292. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +0 -49
  293. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/case_indentation.rb +0 -219
  294. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/class_structure.rb +0 -381
  295. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +0 -101
  296. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_argument_indentation.rb +0 -282
  297. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_array_element_line_break.rb +0 -68
  298. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_hash_element_line_break.rb +0 -68
  299. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/heredoc_indentation.rb +0 -162
  300. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/indentation_width.rb +0 -400
  301. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/line_length.rb +0 -428
  302. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +0 -115
  303. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +0 -115
  304. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +0 -267
  305. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/space_in_lambda_literal.rb +0 -78
  306. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/duplicate_methods.rb +0 -346
  307. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/float_comparison.rb +0 -136
  308. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/literal_as_condition.rb +0 -283
  309. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/redundant_splat_expansion.rb +0 -216
  310. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/struct_new_override.rb +0 -59
  311. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/to_json.rb +0 -49
  312. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/useless_or.rb +0 -111
  313. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +0 -121
  314. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +0 -236
  315. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/naming/predicate_method.rb +0 -319
  316. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/naming/predicate_prefix.rb +0 -204
  317. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/offense.rb +0 -238
  318. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/security/json_load.rb +0 -69
  319. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -365
  320. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/block_delimiters.rb +0 -503
  321. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/documentation.rb +0 -198
  322. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/documentation_method.rb +0 -152
  323. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/format_string_token.rb +0 -255
  324. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/guard_clause.rb +0 -308
  325. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/hash_as_last_array_item.rb +0 -100
  326. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_unless_modifier.rb +0 -322
  327. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +0 -44
  328. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +0 -163
  329. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/lambda_call.rb +0 -79
  330. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/method_def_parentheses.rb +0 -180
  331. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/module_member_existence_check.rb +0 -74
  332. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/multiline_if_then.rb +0 -44
  333. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/preferred_hash_methods.rb +0 -74
  334. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/redundant_condition.rb +0 -342
  335. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/team.rb +0 -290
  336. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/variable_force/branch.rb +0 -331
  337. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/clang_style_formatter.rb +0 -55
  338. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/formatter_set.rb +0 -114
  339. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/tap_formatter.rb +0 -82
  340. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/diagnostic.rb +0 -185
  341. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/routes.rb +0 -256
  342. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/runtime.rb +0 -69
  343. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/stdin_runner.rb +0 -69
  344. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/remote_config.rb +0 -111
  345. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/rspec/shared_contexts.rb +0 -271
  346. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/rspec/support.rb +0 -34
  347. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/server/cache.rb +0 -208
  348. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/target_ruby.rb +0 -306
  349. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/version.rb +0 -160
  350. data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop.rb +0 -826
  351. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/CHANGELOG.md +0 -712
  352. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/Gemfile.lock +0 -89
  353. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/config/base.yml +0 -1969
  354. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/config/ruby-3.3.yml +0 -7
  355. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/lib/standard/version.rb +0 -3
  356. data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/standard.gemspec +0 -32
  357. data/vendor/bundle/ruby/3.4.0/specifications/json-2.18.0.gemspec +0 -0
  358. data/vendor/bundle/ruby/3.4.0/specifications/rubocop-1.82.1.gemspec +0 -39
  359. data/vendor/bundle/ruby/3.4.0/specifications/standard-1.53.0.gemspec +0 -31
  360. /data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/{json-2.18.0 → json-2.18.1}/gem.build_complete +0 -0
  361. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/BSDL +0 -0
  362. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/COPYING +0 -0
  363. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/LEGAL +0 -0
  364. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/README.md +0 -0
  365. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/generator/extconf.rb +0 -0
  366. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/parser/extconf.rb +0 -0
  367. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/simd/conf.rb +0 -0
  368. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/vendor/jeaiii-ltoa.h +0 -0
  369. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/vendor/ryu.h +0 -0
  370. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/json.gemspec +0 -0
  371. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/bigdecimal.rb +0 -0
  372. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/complex.rb +0 -0
  373. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/core.rb +0 -0
  374. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/date.rb +0 -0
  375. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/date_time.rb +0 -0
  376. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/exception.rb +0 -0
  377. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/ostruct.rb +0 -0
  378. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/range.rb +0 -0
  379. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/rational.rb +0 -0
  380. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/regexp.rb +0 -0
  381. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/set.rb +0 -0
  382. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/string.rb +0 -0
  383. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/struct.rb +0 -0
  384. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/symbol.rb +0 -0
  385. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/time.rb +0 -0
  386. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/common.rb +0 -0
  387. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/ext/generator/state.rb +0 -0
  388. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/ext.rb +0 -0
  389. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/generic_object.rb +0 -0
  390. /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/truffle_ruby/generator.rb +0 -0
  391. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/logo.png +0 -0
  392. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/output.css.erb +0 -0
  393. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/output.html.erb +0 -0
  394. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/config/internal_affairs.yml +0 -0
  395. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/config/obsoletion.yml +0 -0
  396. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/exe/rubocop +0 -0
  397. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/arguments_env.rb +0 -0
  398. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/arguments_file.rb +0 -0
  399. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ast_aliases.rb +0 -0
  400. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cached_data.rb +0 -0
  401. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/auto_generate_config.rb +0 -0
  402. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/base.rb +0 -0
  403. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/execute_runner.rb +0 -0
  404. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/init_dotfile.rb +0 -0
  405. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/show_cops.rb +0 -0
  406. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/show_docs_url.rb +0 -0
  407. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/suggest_extensions.rb +0 -0
  408. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/version.rb +0 -0
  409. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command.rb +0 -0
  410. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/environment.rb +0 -0
  411. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config.rb +0 -0
  412. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_finder.rb +0 -0
  413. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_loader_resolver.rb +0 -0
  414. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +0 -0
  415. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/changed_parameter.rb +0 -0
  416. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/cop_rule.rb +0 -0
  417. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/extracted_cop.rb +0 -0
  418. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/parameter_rule.rb +0 -0
  419. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/removed_cop.rb +0 -0
  420. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/renamed_cop.rb +0 -0
  421. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/rule.rb +0 -0
  422. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/split_cop.rb +0 -0
  423. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion.rb +0 -0
  424. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_regeneration.rb +0 -0
  425. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_store.rb +0 -0
  426. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_validator.rb +0 -0
  427. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/autocorrect_logic.rb +0 -0
  428. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/badge.rb +0 -0
  429. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/base.rb +0 -0
  430. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/duplicated_gem.rb +0 -0
  431. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/duplicated_group.rb +0 -0
  432. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/gem_comment.rb +0 -0
  433. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/gem_filename.rb +0 -0
  434. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/insecure_protocol_source.rb +0 -0
  435. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/ordered_gems.rb +0 -0
  436. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/commissioner.rb +0 -0
  437. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/cop.rb +0 -0
  438. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/corrector.rb +0 -0
  439. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/condition_corrector.rb +0 -0
  440. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/each_to_for_corrector.rb +0 -0
  441. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/empty_line_corrector.rb +0 -0
  442. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/for_to_each_corrector.rb +0 -0
  443. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/if_then_corrector.rb +0 -0
  444. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +0 -0
  445. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/line_break_corrector.rb +0 -0
  446. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +0 -0
  447. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +0 -0
  448. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/parentheses_corrector.rb +0 -0
  449. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/percent_literal_corrector.rb +0 -0
  450. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/punctuation_corrector.rb +0 -0
  451. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/require_library_corrector.rb +0 -0
  452. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/space_corrector.rb +0 -0
  453. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/string_literal_corrector.rb +0 -0
  454. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/unused_arg_corrector.rb +0 -0
  455. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/documentation.rb +0 -0
  456. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/exclude_limit.rb +0 -0
  457. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/force.rb +0 -0
  458. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/add_runtime_dependency.rb +0 -0
  459. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/attribute_assignment.rb +0 -0
  460. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/dependency_version.rb +0 -0
  461. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +0 -0
  462. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/development_dependencies.rb +0 -0
  463. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/duplicated_assignment.rb +0 -0
  464. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/ordered_dependencies.rb +0 -0
  465. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/require_mfa.rb +0 -0
  466. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/required_ruby_version.rb +0 -0
  467. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +0 -0
  468. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/generator/configuration_injector.rb +0 -0
  469. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/generator/require_file_injector.rb +0 -0
  470. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/generator.rb +0 -0
  471. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/ignored_node.rb +0 -0
  472. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/cop_description.rb +0 -0
  473. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/cop_enabled.rb +0 -0
  474. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/create_empty_file.rb +0 -0
  475. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +0 -0
  476. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/example_description.rb +0 -0
  477. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +0 -0
  478. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +0 -0
  479. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/location_exists.rb +0 -0
  480. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/location_expression.rb +0 -0
  481. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +0 -0
  482. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +0 -0
  483. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/method_name_equal.rb +0 -0
  484. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_destructuring.rb +0 -0
  485. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +0 -0
  486. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +0 -0
  487. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_walker.rb +0 -0
  488. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +0 -0
  489. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_type_group.rb +0 -0
  490. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_type_multiple_predicates.rb +0 -0
  491. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +0 -0
  492. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/numblock_handler.rb +0 -0
  493. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +0 -0
  494. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +0 -0
  495. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/operator_keyword.rb +0 -0
  496. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/plugin.rb +0 -0
  497. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +0 -0
  498. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +0 -0
  499. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +0 -0
  500. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb +0 -0
  501. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +0 -0
  502. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +0 -0
  503. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +0 -0
  504. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +0 -0
  505. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +0 -0
  506. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +0 -0
  507. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +0 -0
  508. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/undefined_config.rb +0 -0
  509. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +0 -0
  510. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs.rb +0 -0
  511. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/access_modifier_indentation.rb +0 -0
  512. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/argument_alignment.rb +0 -0
  513. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/array_alignment.rb +0 -0
  514. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/assignment_indentation.rb +0 -0
  515. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/begin_end_alignment.rb +0 -0
  516. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/block_alignment.rb +0 -0
  517. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/block_end_newline.rb +0 -0
  518. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +0 -0
  519. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +0 -0
  520. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/comment_indentation.rb +0 -0
  521. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/condition_position.rb +0 -0
  522. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/def_end_alignment.rb +0 -0
  523. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/dot_position.rb +0 -0
  524. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/else_alignment.rb +0 -0
  525. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_comment.rb +0 -0
  526. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +0 -0
  527. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +0 -0
  528. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +0 -0
  529. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_between_defs.rb +0 -0
  530. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines.rb +0 -0
  531. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +0 -0
  532. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +0 -0
  533. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +0 -0
  534. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +0 -0
  535. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +0 -0
  536. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +0 -0
  537. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +0 -0
  538. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +0 -0
  539. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +0 -0
  540. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/end_alignment.rb +0 -0
  541. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/end_of_line.rb +0 -0
  542. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/extra_spacing.rb +0 -0
  543. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_array_element_indentation.rb +0 -0
  544. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_hash_element_indentation.rb +0 -0
  545. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_method_argument_line_break.rb +0 -0
  546. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +0 -0
  547. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_parameter_indentation.rb +0 -0
  548. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/hash_alignment.rb +0 -0
  549. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +0 -0
  550. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/indentation_consistency.rb +0 -0
  551. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/indentation_style.rb +0 -0
  552. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/initial_indentation.rb +0 -0
  553. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/leading_comment_space.rb +0 -0
  554. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/leading_empty_lines.rb +0 -0
  555. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/line_continuation_leading_space.rb +0 -0
  556. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/line_continuation_spacing.rb +0 -0
  557. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +0 -0
  558. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +0 -0
  559. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_assignment_layout.rb +0 -0
  560. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_block_layout.rb +0 -0
  561. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +0 -0
  562. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +0 -0
  563. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +0 -0
  564. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +0 -0
  565. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +0 -0
  566. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_operation_indentation.rb +0 -0
  567. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/parameter_alignment.rb +0 -0
  568. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/redundant_line_break.rb +0 -0
  569. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +0 -0
  570. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/single_line_block_chain.rb +0 -0
  571. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_colon.rb +0 -0
  572. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_comma.rb +0 -0
  573. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_method_name.rb +0 -0
  574. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_not.rb +0 -0
  575. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_semicolon.rb +0 -0
  576. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_block_parameters.rb +0 -0
  577. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +0 -0
  578. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_keyword.rb +0 -0
  579. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_method_call_operator.rb +0 -0
  580. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_operators.rb +0 -0
  581. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_block_braces.rb +0 -0
  582. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_brackets.rb +0 -0
  583. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_comma.rb +0 -0
  584. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_comment.rb +0 -0
  585. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_first_arg.rb +0 -0
  586. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_semicolon.rb +0 -0
  587. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +0 -0
  588. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +0 -0
  589. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_block_braces.rb +0 -0
  590. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +0 -0
  591. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_parens.rb +0 -0
  592. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +0 -0
  593. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_range_literal.rb +0 -0
  594. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +0 -0
  595. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +0 -0
  596. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/trailing_empty_lines.rb +0 -0
  597. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/trailing_whitespace.rb +0 -0
  598. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/legacy/corrections_proxy.rb +0 -0
  599. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/legacy/corrector.rb +0 -0
  600. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_assignment.rb +0 -0
  601. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_block_association.rb +0 -0
  602. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_operator.rb +0 -0
  603. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +0 -0
  604. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_range.rb +0 -0
  605. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +0 -0
  606. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/array_literal_in_regexp.rb +0 -0
  607. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/assignment_in_condition.rb +0 -0
  608. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/big_decimal_new.rb +0 -0
  609. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +0 -0
  610. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/boolean_symbol.rb +0 -0
  611. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/circular_argument_reference.rb +0 -0
  612. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_definition_in_block.rb +0 -0
  613. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +0 -0
  614. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_reassignment.rb +0 -0
  615. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_resolution.rb +0 -0
  616. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/cop_directive_syntax.rb +0 -0
  617. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/debugger.rb +0 -0
  618. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/deprecated_class_methods.rb +0 -0
  619. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/deprecated_constants.rb +0 -0
  620. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +0 -0
  621. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +0 -0
  622. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_branch.rb +0 -0
  623. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_case_condition.rb +0 -0
  624. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +0 -0
  625. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_hash_key.rb +0 -0
  626. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_magic_comment.rb +0 -0
  627. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_match_pattern.rb +0 -0
  628. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +0 -0
  629. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_require.rb +0 -0
  630. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +0 -0
  631. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_set_element.rb +0 -0
  632. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/each_with_object_argument.rb +0 -0
  633. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/else_layout.rb +0 -0
  634. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_block.rb +0 -0
  635. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_class.rb +0 -0
  636. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_conditional_body.rb +0 -0
  637. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_ensure.rb +0 -0
  638. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_expression.rb +0 -0
  639. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_file.rb +0 -0
  640. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_in_pattern.rb +0 -0
  641. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_interpolation.rb +0 -0
  642. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_when.rb +0 -0
  643. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ensure_return.rb +0 -0
  644. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -0
  645. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/flip_flop.rb +0 -0
  646. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/float_out_of_range.rb +0 -0
  647. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/format_parameter_mismatch.rb +0 -0
  648. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/hash_compare_by_identity.rb +0 -0
  649. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/hash_new_with_keyword_arguments_as_default.rb +0 -0
  650. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/heredoc_method_call_position.rb +0 -0
  651. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/identity_comparison.rb +0 -0
  652. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/implicit_string_concatenation.rb +0 -0
  653. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +0 -0
  654. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ineffective_access_modifier.rb +0 -0
  655. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/inherit_exception.rb +0 -0
  656. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/interpolation_check.rb +0 -0
  657. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +0 -0
  658. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/lambda_without_literal_block.rb +0 -0
  659. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +0 -0
  660. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/literal_in_interpolation.rb +0 -0
  661. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/loop.rb +0 -0
  662. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +0 -0
  663. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/missing_super.rb +0 -0
  664. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/mixed_case_range.rb +0 -0
  665. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +0 -0
  666. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/multiple_comparison.rb +0 -0
  667. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/nested_method_definition.rb +0 -0
  668. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/nested_percent_literal.rb +0 -0
  669. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/next_without_accumulator.rb +0 -0
  670. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +0 -0
  671. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/non_atomic_file_operation.rb +0 -0
  672. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/non_deterministic_require_order.rb +0 -0
  673. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +0 -0
  674. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/number_conversion.rb +0 -0
  675. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +0 -0
  676. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +0 -0
  677. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/or_assignment_to_constant.rb +0 -0
  678. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -0
  679. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +0 -0
  680. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +0 -0
  681. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/percent_string_array.rb +0 -0
  682. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/percent_symbol_array.rb +0 -0
  683. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/raise_exception.rb +0 -0
  684. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/rand_one.rb +0 -0
  685. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +0 -0
  686. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +0 -0
  687. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +0 -0
  688. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +0 -0
  689. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_require_statement.rb +0 -0
  690. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_safe_navigation.rb +0 -0
  691. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_string_coercion.rb +0 -0
  692. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_type_conversion.rb +0 -0
  693. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_with_index.rb +0 -0
  694. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_with_object.rb +0 -0
  695. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/refinement_import_methods.rb +0 -0
  696. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/regexp_as_condition.rb +0 -0
  697. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/require_parentheses.rb +0 -0
  698. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/require_range_parentheses.rb +0 -0
  699. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/require_relative_self_path.rb +0 -0
  700. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/rescue_exception.rb +0 -0
  701. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/rescue_type.rb +0 -0
  702. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/return_in_void_context.rb +0 -0
  703. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -0
  704. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/safe_navigation_consistency.rb +0 -0
  705. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +0 -0
  706. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/script_permission.rb +0 -0
  707. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/self_assignment.rb +0 -0
  708. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/send_with_mixin_argument.rb +0 -0
  709. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shadowed_argument.rb +0 -0
  710. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shadowed_exception.rb +0 -0
  711. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +0 -0
  712. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shared_mutable_default.rb +0 -0
  713. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/suppressed_exception.rb +0 -0
  714. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +0 -0
  715. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/symbol_conversion.rb +0 -0
  716. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/syntax.rb +0 -0
  717. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/to_enum_arguments.rb +0 -0
  718. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/top_level_return_with_argument.rb +0 -0
  719. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +0 -0
  720. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/triple_quotes.rb +0 -0
  721. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +0 -0
  722. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +0 -0
  723. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unexpected_block_arity.rb +0 -0
  724. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unified_integer.rb +0 -0
  725. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +0 -0
  726. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unreachable_code.rb +0 -0
  727. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unreachable_loop.rb +0 -0
  728. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unused_block_argument.rb +0 -0
  729. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unused_method_argument.rb +0 -0
  730. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/uri_escape_unescape.rb +0 -0
  731. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/uri_regexp.rb +0 -0
  732. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_access_modifier.rb +0 -0
  733. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_assignment.rb +0 -0
  734. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_constant_scoping.rb +0 -0
  735. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_default_value_argument.rb +0 -0
  736. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_defined.rb +0 -0
  737. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_else_without_rescue.rb +0 -0
  738. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_method_definition.rb +0 -0
  739. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_numeric_operation.rb +0 -0
  740. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_rescue.rb +0 -0
  741. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +0 -0
  742. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_setter_call.rb +0 -0
  743. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_times.rb +0 -0
  744. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/void.rb +0 -0
  745. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/message_annotator.rb +0 -0
  746. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/abc_size.rb +0 -0
  747. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/block_length.rb +0 -0
  748. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/block_nesting.rb +0 -0
  749. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/class_length.rb +0 -0
  750. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/collection_literal_length.rb +0 -0
  751. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +0 -0
  752. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/method_length.rb +0 -0
  753. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/module_length.rb +0 -0
  754. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/parameter_lists.rb +0 -0
  755. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/perceived_complexity.rb +0 -0
  756. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +0 -0
  757. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +0 -0
  758. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/iterating_block.rb +0 -0
  759. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +0 -0
  760. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +0 -0
  761. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/migration/department_name.rb +0 -0
  762. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/alignment.rb +0 -0
  763. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_identifiers.rb +0 -0
  764. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_methods.rb +0 -0
  765. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_pattern.rb +0 -0
  766. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_receivers.rb +0 -0
  767. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/annotation_comment.rb +0 -0
  768. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/array_min_size.rb +0 -0
  769. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/array_syntax.rb +0 -0
  770. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/auto_corrector.rb +0 -0
  771. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/check_assignment.rb +0 -0
  772. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/check_line_breakable.rb +0 -0
  773. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/check_single_line_suitability.rb +0 -0
  774. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/code_length.rb +0 -0
  775. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/comments_help.rb +0 -0
  776. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_enforced_style.rb +0 -0
  777. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_formatting.rb +0 -0
  778. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_max.rb +0 -0
  779. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_naming.rb +0 -0
  780. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_numbering.rb +0 -0
  781. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/def_node.rb +0 -0
  782. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/dig_help.rb +0 -0
  783. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/documentation_comment.rb +0 -0
  784. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/duplication.rb +0 -0
  785. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/empty_lines_around_body.rb +0 -0
  786. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/empty_parameter.rb +0 -0
  787. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/end_keyword_alignment.rb +0 -0
  788. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/endless_method_rewriter.rb +0 -0
  789. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/enforce_superclass.rb +0 -0
  790. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/first_element_line_break.rb +0 -0
  791. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/forbidden_identifiers.rb +0 -0
  792. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/forbidden_pattern.rb +0 -0
  793. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/frozen_string_literal.rb +0 -0
  794. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/gem_declaration.rb +0 -0
  795. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/gemspec_help.rb +0 -0
  796. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/hash_alignment_styles.rb +0 -0
  797. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/hash_subset.rb +0 -0
  798. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/hash_transform_method.rb +0 -0
  799. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
  800. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/integer_node.rb +0 -0
  801. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
  802. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/line_length_help.rb +0 -0
  803. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/match_range.rb +0 -0
  804. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/method_complexity.rb +0 -0
  805. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/method_preference.rb +0 -0
  806. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/min_body_length.rb +0 -0
  807. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/min_branches_count.rb +0 -0
  808. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_element_indentation.rb +0 -0
  809. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +0 -0
  810. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +0 -0
  811. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +0 -0
  812. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/negative_conditional.rb +0 -0
  813. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/nil_methods.rb +0 -0
  814. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/on_normal_if_unless.rb +0 -0
  815. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/ordered_gem_node.rb +0 -0
  816. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
  817. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/percent_array.rb +0 -0
  818. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/percent_literal.rb +0 -0
  819. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/preceding_following_alignment.rb +0 -0
  820. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/preferred_delimiters.rb +0 -0
  821. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/range_help.rb +0 -0
  822. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/rational_literal.rb +0 -0
  823. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/require_library.rb +0 -0
  824. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/rescue_node.rb +0 -0
  825. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/safe_assignment.rb +0 -0
  826. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/space_after_punctuation.rb +0 -0
  827. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/space_before_punctuation.rb +0 -0
  828. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/statement_modifier.rb +0 -0
  829. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/string_help.rb +0 -0
  830. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/string_literals_help.rb +0 -0
  831. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/surrounding_space.rb +0 -0
  832. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/symbol_help.rb +0 -0
  833. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/target_ruby_version.rb +0 -0
  834. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/trailing_body.rb +0 -0
  835. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/trailing_comma.rb +0 -0
  836. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/uncommunicative_name.rb +0 -0
  837. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/unused_argument.rb +0 -0
  838. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/visibility_help.rb +0 -0
  839. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/accessor_method_name.rb +0 -0
  840. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/ascii_identifiers.rb +0 -0
  841. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +0 -0
  842. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/block_forwarding.rb +0 -0
  843. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/block_parameter_name.rb +0 -0
  844. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/class_and_module_camel_case.rb +0 -0
  845. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/constant_name.rb +0 -0
  846. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/file_name.rb +0 -0
  847. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +0 -0
  848. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +0 -0
  849. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/inclusive_language.rb +0 -0
  850. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +0 -0
  851. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/method_name.rb +0 -0
  852. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/method_parameter_name.rb +0 -0
  853. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +0 -0
  854. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/variable_name.rb +0 -0
  855. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/variable_number.rb +0 -0
  856. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/registry.rb +0 -0
  857. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/compound_hash.rb +0 -0
  858. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/eval.rb +0 -0
  859. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/io_methods.rb +0 -0
  860. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/marshal_load.rb +0 -0
  861. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/open.rb +0 -0
  862. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/yaml_load.rb +0 -0
  863. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/severity.rb +0 -0
  864. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/accessor_grouping.rb +0 -0
  865. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/alias.rb +0 -0
  866. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ambiguous_endless_method_definition.rb +0 -0
  867. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/and_or.rb +0 -0
  868. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/arguments_forwarding.rb +0 -0
  869. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_coercion.rb +0 -0
  870. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_first_last.rb +0 -0
  871. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_intersect.rb +0 -0
  872. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_intersect_with_single_element.rb +0 -0
  873. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_join.rb +0 -0
  874. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ascii_comments.rb +0 -0
  875. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/attr.rb +0 -0
  876. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/auto_resource_cleanup.rb +0 -0
  877. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bare_percent_literals.rb +0 -0
  878. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/begin_block.rb +0 -0
  879. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +0 -0
  880. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bisected_attr_accessor.rb +0 -0
  881. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bitwise_predicate.rb +0 -0
  882. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/block_comments.rb +0 -0
  883. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/case_equality.rb +0 -0
  884. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/case_like_if.rb +0 -0
  885. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/character_literal.rb +0 -0
  886. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_and_module_children.rb +0 -0
  887. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_check.rb +0 -0
  888. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_equality_comparison.rb +0 -0
  889. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_methods.rb +0 -0
  890. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_methods_definitions.rb +0 -0
  891. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_vars.rb +0 -0
  892. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/collection_compact.rb +0 -0
  893. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/collection_methods.rb +0 -0
  894. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/collection_querying.rb +0 -0
  895. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/colon_method_call.rb +0 -0
  896. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/colon_method_definition.rb +0 -0
  897. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/combinable_defined.rb +0 -0
  898. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/combinable_loops.rb +0 -0
  899. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/command_literal.rb +0 -0
  900. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/comment_annotation.rb +0 -0
  901. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/commented_keyword.rb +0 -0
  902. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/comparable_between.rb +0 -0
  903. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/comparable_clamp.rb +0 -0
  904. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/concat_array_literals.rb +0 -0
  905. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/conditional_assignment.rb +0 -0
  906. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/constant_visibility.rb +0 -0
  907. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/copyright.rb +0 -0
  908. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/data_inheritance.rb +0 -0
  909. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/date_time.rb +0 -0
  910. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/def_with_parentheses.rb +0 -0
  911. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/dig_chain.rb +0 -0
  912. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/dir.rb +0 -0
  913. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/dir_empty.rb +0 -0
  914. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +0 -0
  915. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +0 -0
  916. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/double_cop_disable_directive.rb +0 -0
  917. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/double_negation.rb +0 -0
  918. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/each_for_simple_loop.rb +0 -0
  919. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/each_with_object.rb +0 -0
  920. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_block_parameter.rb +0 -0
  921. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_case_condition.rb +0 -0
  922. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_else.rb +0 -0
  923. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_heredoc.rb +0 -0
  924. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_lambda_parameter.rb +0 -0
  925. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_literal.rb +0 -0
  926. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_method.rb +0 -0
  927. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_string_inside_interpolation.rb +0 -0
  928. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/encoding.rb +0 -0
  929. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/end_block.rb +0 -0
  930. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/endless_method.rb +0 -0
  931. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/env_home.rb +0 -0
  932. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/eval_with_location.rb +0 -0
  933. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/even_odd.rb +0 -0
  934. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/exact_regexp_match.rb +0 -0
  935. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/expand_path_arguments.rb +0 -0
  936. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/explicit_block_argument.rb +0 -0
  937. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/exponential_notation.rb +0 -0
  938. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/fetch_env_var.rb +0 -0
  939. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_empty.rb +0 -0
  940. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_null.rb +0 -0
  941. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_read.rb +0 -0
  942. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_touch.rb +0 -0
  943. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_write.rb +0 -0
  944. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/float_division.rb +0 -0
  945. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/for.rb +0 -0
  946. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/format_string.rb +0 -0
  947. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/frozen_string_literal_comment.rb +0 -0
  948. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/global_std_stream.rb +0 -0
  949. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/global_vars.rb +0 -0
  950. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_conversion.rb +0 -0
  951. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_each_methods.rb +0 -0
  952. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_except.rb +0 -0
  953. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_fetch_chain.rb +0 -0
  954. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_like_case.rb +0 -0
  955. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_slice.rb +0 -0
  956. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_syntax.rb +0 -0
  957. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_transform_keys.rb +0 -0
  958. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_transform_values.rb +0 -0
  959. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/identical_conditional_branches.rb +0 -0
  960. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/if_inside_else.rb +0 -0
  961. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/if_with_semicolon.rb +0 -0
  962. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/implicit_runtime_error.rb +0 -0
  963. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/in_pattern_then.rb +0 -0
  964. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/infinite_loop.rb +0 -0
  965. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/inline_comment.rb +0 -0
  966. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/inverse_methods.rb +0 -0
  967. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/invertible_unless_condition.rb +0 -0
  968. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ip_addresses.rb +0 -0
  969. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/it_assignment.rb +0 -0
  970. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/it_block_parameter.rb +0 -0
  971. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/keyword_arguments_merging.rb +0 -0
  972. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/keyword_parameters_order.rb +0 -0
  973. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/lambda.rb +0 -0
  974. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/line_end_concatenation.rb +0 -0
  975. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/magic_comment_format.rb +0 -0
  976. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +0 -0
  977. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_into_array.rb +0 -0
  978. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_to_hash.rb +0 -0
  979. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_to_set.rb +0 -0
  980. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +0 -0
  981. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +0 -0
  982. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +0 -0
  983. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +0 -0
  984. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_called_on_do_end_block.rb +0 -0
  985. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/min_max.rb +0 -0
  986. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/min_max_comparison.rb +0 -0
  987. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/missing_else.rb +0 -0
  988. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/missing_respond_to_missing.rb +0 -0
  989. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/mixin_grouping.rb +0 -0
  990. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/mixin_usage.rb +0 -0
  991. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/module_function.rb +0 -0
  992. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_block_chain.rb +0 -0
  993. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_if_modifier.rb +0 -0
  994. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_in_pattern_then.rb +0 -0
  995. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_memoization.rb +0 -0
  996. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_method_signature.rb +0 -0
  997. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_ternary_operator.rb +0 -0
  998. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_when_then.rb +0 -0
  999. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiple_comparison.rb +0 -0
  1000. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/mutable_constant.rb +0 -0
  1001. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_if.rb +0 -0
  1002. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_if_else_condition.rb +0 -0
  1003. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_unless.rb +0 -0
  1004. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_while.rb +0 -0
  1005. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_file_dirname.rb +0 -0
  1006. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_modifier.rb +0 -0
  1007. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_parenthesized_calls.rb +0 -0
  1008. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_ternary_operator.rb +0 -0
  1009. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/next.rb +0 -0
  1010. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nil_comparison.rb +0 -0
  1011. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nil_lambda.rb +0 -0
  1012. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/non_nil_check.rb +0 -0
  1013. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/not.rb +0 -0
  1014. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numbered_parameters.rb +0 -0
  1015. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numbered_parameters_limit.rb +0 -0
  1016. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numeric_literal_prefix.rb +0 -0
  1017. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numeric_literals.rb +0 -0
  1018. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numeric_predicate.rb +0 -0
  1019. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/object_then.rb +0 -0
  1020. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/one_line_conditional.rb +0 -0
  1021. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/open_struct_use.rb +0 -0
  1022. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/operator_method_call.rb +0 -0
  1023. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/option_hash.rb +0 -0
  1024. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/optional_arguments.rb +0 -0
  1025. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/optional_boolean_parameter.rb +0 -0
  1026. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/or_assignment.rb +0 -0
  1027. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/parallel_assignment.rb +0 -0
  1028. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/parentheses_around_condition.rb +0 -0
  1029. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/percent_literal_delimiters.rb +0 -0
  1030. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/percent_q_literals.rb +0 -0
  1031. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/perl_backrefs.rb +0 -0
  1032. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/proc.rb +0 -0
  1033. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/quoted_symbols.rb +0 -0
  1034. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/raise_args.rb +0 -0
  1035. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/random_with_offset.rb +0 -0
  1036. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_argument.rb +0 -0
  1037. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_array_constructor.rb +0 -0
  1038. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_array_flatten.rb +0 -0
  1039. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_assignment.rb +0 -0
  1040. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_begin.rb +0 -0
  1041. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_capital_w.rb +0 -0
  1042. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_conditional.rb +0 -0
  1043. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_constant_base.rb +0 -0
  1044. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +0 -0
  1045. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +0 -0
  1046. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_each.rb +0 -0
  1047. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_exception.rb +0 -0
  1048. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_fetch_block.rb +0 -0
  1049. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +0 -0
  1050. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_filter_chain.rb +0 -0
  1051. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_format.rb +0 -0
  1052. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_freeze.rb +0 -0
  1053. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +0 -0
  1054. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_initialize.rb +0 -0
  1055. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_interpolation.rb +0 -0
  1056. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb +0 -0
  1057. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_line_continuation.rb +0 -0
  1058. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_parentheses.rb +0 -0
  1059. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_percent_q.rb +0 -0
  1060. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_argument.rb +0 -0
  1061. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_character_class.rb +0 -0
  1062. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_constructor.rb +0 -0
  1063. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_escape.rb +0 -0
  1064. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_return.rb +0 -0
  1065. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_self.rb +0 -0
  1066. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_self_assignment.rb +0 -0
  1067. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +0 -0
  1068. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_sort.rb +0 -0
  1069. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_sort_by.rb +0 -0
  1070. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_string_escape.rb +0 -0
  1071. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/regexp_literal.rb +0 -0
  1072. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/require_order.rb +0 -0
  1073. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/rescue_modifier.rb +0 -0
  1074. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/rescue_standard_error.rb +0 -0
  1075. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/return_nil.rb +0 -0
  1076. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +0 -0
  1077. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/safe_navigation.rb +0 -0
  1078. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/safe_navigation_chain_length.rb +0 -0
  1079. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/sample.rb +0 -0
  1080. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/select_by_regexp.rb +0 -0
  1081. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/self_assignment.rb +0 -0
  1082. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/semicolon.rb +0 -0
  1083. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/send.rb +0 -0
  1084. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/send_with_literal_method_name.rb +0 -0
  1085. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/signal_exception.rb +0 -0
  1086. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_argument_dig.rb +0 -0
  1087. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_line_block_params.rb +0 -0
  1088. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_line_do_end_block.rb +0 -0
  1089. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_line_methods.rb +0 -0
  1090. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/slicing_with_range.rb +0 -0
  1091. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/sole_nested_conditional.rb +0 -0
  1092. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/special_global_vars.rb +0 -0
  1093. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +0 -0
  1094. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/static_class.rb +0 -0
  1095. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/stderr_puts.rb +0 -0
  1096. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_chars.rb +0 -0
  1097. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_concatenation.rb +0 -0
  1098. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_hash_keys.rb +0 -0
  1099. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_literals.rb +0 -0
  1100. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_literals_in_interpolation.rb +0 -0
  1101. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_methods.rb +0 -0
  1102. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/strip.rb +0 -0
  1103. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/struct_inheritance.rb +0 -0
  1104. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/super_arguments.rb +0 -0
  1105. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/super_with_args_parentheses.rb +0 -0
  1106. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/swap_values.rb +0 -0
  1107. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/symbol_array.rb +0 -0
  1108. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/symbol_literal.rb +0 -0
  1109. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/symbol_proc.rb +0 -0
  1110. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ternary_parentheses.rb +0 -0
  1111. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/top_level_method_definition.rb +0 -0
  1112. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_body_on_class.rb +0 -0
  1113. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +0 -0
  1114. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_body_on_module.rb +0 -0
  1115. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +0 -0
  1116. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +0 -0
  1117. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +0 -0
  1118. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +0 -0
  1119. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_method_end_statement.rb +0 -0
  1120. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_underscore_variable.rb +0 -0
  1121. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trivial_accessors.rb +0 -0
  1122. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/unless_else.rb +0 -0
  1123. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/unless_logical_operators.rb +0 -0
  1124. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/unpack_first.rb +0 -0
  1125. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/variable_interpolation.rb +0 -0
  1126. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/when_then.rb +0 -0
  1127. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/while_until_do.rb +0 -0
  1128. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/while_until_modifier.rb +0 -0
  1129. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/word_array.rb +0 -0
  1130. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/yaml_file_read.rb +0 -0
  1131. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/yoda_condition.rb +0 -0
  1132. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/yoda_expression.rb +0 -0
  1133. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/zero_length_predicate.rb +0 -0
  1134. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/util.rb +0 -0
  1135. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/utils/format_string.rb +0 -0
  1136. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/assignment.rb +0 -0
  1137. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/branchable.rb +0 -0
  1138. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/reference.rb +0 -0
  1139. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/scope.rb +0 -0
  1140. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/variable.rb +0 -0
  1141. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/variable_table.rb +0 -0
  1142. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force.rb +0 -0
  1143. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cops_documentation_generator.rb +0 -0
  1144. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/core_ext/string.rb +0 -0
  1145. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/directive_comment.rb +0 -0
  1146. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/error.rb +0 -0
  1147. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/comment.rb +0 -0
  1148. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/processed_source.rb +0 -0
  1149. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/range.rb +0 -0
  1150. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/regexp_node.rb +0 -0
  1151. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/regexp_parser.rb +0 -0
  1152. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/feature_loader.rb +0 -0
  1153. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/file_finder.rb +0 -0
  1154. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/file_patterns.rb +0 -0
  1155. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/auto_gen_config_formatter.rb +0 -0
  1156. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/base_formatter.rb +0 -0
  1157. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/colorizable.rb +0 -0
  1158. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/disabled_config_formatter.rb +0 -0
  1159. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/emacs_style_formatter.rb +0 -0
  1160. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/file_list_formatter.rb +0 -0
  1161. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/fuubar_style_formatter.rb +0 -0
  1162. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/github_actions_formatter.rb +0 -0
  1163. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/html_formatter.rb +0 -0
  1164. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/json_formatter.rb +0 -0
  1165. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/junit_formatter.rb +0 -0
  1166. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
  1167. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/offense_count_formatter.rb +0 -0
  1168. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
  1169. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/progress_formatter.rb +0 -0
  1170. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
  1171. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/simple_text_formatter.rb +0 -0
  1172. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/text_util.rb +0 -0
  1173. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/worst_offenders_formatter.rb +0 -0
  1174. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter.rb +0 -0
  1175. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lockfile.rb +0 -0
  1176. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/logger.rb +0 -0
  1177. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/server.rb +0 -0
  1178. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/severity.rb +0 -0
  1179. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp.rb +0 -0
  1180. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/magic_comment.rb +0 -0
  1181. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/name_similarity.rb +0 -0
  1182. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/options.rb +0 -0
  1183. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/path_util.rb +0 -0
  1184. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/pending_cops_reporter.rb +0 -0
  1185. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/platform.rb +0 -0
  1186. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/configuration_integrator.rb +0 -0
  1187. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/load_error.rb +0 -0
  1188. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/loader.rb +0 -0
  1189. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/not_supported_error.rb +0 -0
  1190. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin.rb +0 -0
  1191. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rake_task.rb +0 -0
  1192. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/result_cache.rb +0 -0
  1193. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/cop_helper.rb +0 -0
  1194. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/expect_offense.rb +0 -0
  1195. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
  1196. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/runner.rb +0 -0
  1197. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/cli.rb +0 -0
  1198. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/base.rb +0 -0
  1199. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/exec.rb +0 -0
  1200. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/restart.rb +0 -0
  1201. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/start.rb +0 -0
  1202. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/status.rb +0 -0
  1203. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/stop.rb +0 -0
  1204. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command.rb +0 -0
  1205. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/core.rb +0 -0
  1206. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/errors.rb +0 -0
  1207. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/helper.rb +0 -0
  1208. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command/base.rb +0 -0
  1209. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command/exec.rb +0 -0
  1210. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command/stop.rb +0 -0
  1211. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command.rb +0 -0
  1212. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/socket_reader.rb +0 -0
  1213. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server.rb +0 -0
  1214. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/string_interpreter.rb +0 -0
  1215. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/target_finder.rb +0 -0
  1216. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/util.rb +0 -0
  1217. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/warning.rb +0 -0
  1218. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/yaml_duplication_checker.rb +0 -0
  1219. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/ruby_lsp/rubocop/addon.rb +0 -0
  1220. /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/ruby_lsp/rubocop/runtime_adapter.rb +0 -0
  1221. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/Gemfile +0 -0
  1222. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/LICENSE.txt +0 -0
  1223. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/README.md +0 -0
  1224. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/Rakefile +0 -0
  1225. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/console +0 -0
  1226. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/rake +0 -0
  1227. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/run +0 -0
  1228. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/setup +0 -0
  1229. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/default.yml +0 -0
  1230. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-1.8.yml +0 -0
  1231. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-1.9.yml +0 -0
  1232. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.0.yml +0 -0
  1233. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.1.yml +0 -0
  1234. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.2.yml +0 -0
  1235. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.3.yml +0 -0
  1236. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.4.yml +0 -0
  1237. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.5.yml +0 -0
  1238. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.6.yml +0 -0
  1239. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.7.yml +0 -0
  1240. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.0.yml +0 -0
  1241. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.1.yml +0 -0
  1242. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.2.yml +0 -0
  1243. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/ARCHITECTURE.md +0 -0
  1244. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/RELEASE.md +0 -0
  1245. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/RUBY_VERSIONS.md +0 -0
  1246. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/UPGRADING.md +0 -0
  1247. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/exe/standardrb +0 -0
  1248. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/ruby_lsp/standard/addon.rb +0 -0
  1249. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/ruby_lsp/standard/wraps_built_in_lsp_standardizer.rb +0 -0
  1250. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/base/plugin.rb +0 -0
  1251. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/base.rb +0 -0
  1252. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/builds_config.rb +0 -0
  1253. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/cli.rb +0 -0
  1254. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/assigns_rubocop_yaml.rb +0 -0
  1255. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/configures_ignored_paths.rb +0 -0
  1256. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/merges_user_config_extensions.rb +0 -0
  1257. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/sets_target_ruby_version.rb +0 -0
  1258. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store.rb +0 -0
  1259. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/file_finder.rb +0 -0
  1260. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/formatter.rb +0 -0
  1261. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/loads_runner.rb +0 -0
  1262. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/loads_yaml_config.rb +0 -0
  1263. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/diagnostic.rb +0 -0
  1264. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/kills_server.rb +0 -0
  1265. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/logger.rb +0 -0
  1266. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/routes.rb +0 -0
  1267. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/server.rb +0 -0
  1268. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/standardizer.rb +0 -0
  1269. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/stdin_rubocop_runner.rb +0 -0
  1270. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/merges_settings.rb +0 -0
  1271. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/combines_plugin_configs.rb +0 -0
  1272. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/creates_runner_context.rb +0 -0
  1273. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/determines_class_constant.rb +0 -0
  1274. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/initializes_plugins.rb +0 -0
  1275. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/merges_plugins_into_rubocop_config.rb +0 -0
  1276. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/standardizes_configured_plugins.rb +0 -0
  1277. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin.rb +0 -0
  1278. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/railtie.rb +0 -0
  1279. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/rake.rb +0 -0
  1280. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/resolves_yaml_option.rb +0 -0
  1281. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/rubocop/ext.rb +0 -0
  1282. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/genignore.rb +0 -0
  1283. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/help.rb +0 -0
  1284. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/lsp.rb +0 -0
  1285. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/rubocop.rb +0 -0
  1286. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/verbose_version.rb +0 -0
  1287. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/version.rb +0 -0
  1288. /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard.rb +0 -0
@@ -0,0 +1,3249 @@
1
+ /*! tailwindcss v4.3.3 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root, :host {
6
+ --lui-font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
7
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8
+ --lui-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
+ "Courier New", monospace;
10
+ --lui-color-red-600: oklch(57.7% 0.245 27.325);
11
+ --lui-color-green-600: oklch(62.7% 0.194 149.214);
12
+ --lui-color-blue-500: oklch(62.3% 0.214 259.815);
13
+ --lui-color-blue-600: oklch(54.6% 0.245 262.881);
14
+ --lui-color-gray-700: oklch(37.3% 0.034 259.733);
15
+ --lui-color-zinc-50: oklch(98.5% 0 0);
16
+ --lui-color-zinc-100: oklch(96.7% 0.001 286.375);
17
+ --lui-color-zinc-500: oklch(55.2% 0.016 285.938);
18
+ --lui-color-zinc-900: oklch(21% 0.006 285.885);
19
+ --lui-color-black: #000;
20
+ --lui-color-white: #fff;
21
+ --lui-spacing: 0.25rem;
22
+ --lui-container-xs: 20rem;
23
+ --lui-container-sm: 24rem;
24
+ --lui-container-md: 28rem;
25
+ --lui-container-lg: 32rem;
26
+ --lui-container-xl: 36rem;
27
+ --lui-container-2xl: 42rem;
28
+ --lui-container-3xl: 48rem;
29
+ --lui-container-6xl: 72rem;
30
+ --lui-text-xs: 0.75rem;
31
+ --lui-text-xs--line-height: calc(1 / 0.75);
32
+ --lui-text-sm: 0.875rem;
33
+ --lui-text-sm--line-height: calc(1.25 / 0.875);
34
+ --lui-text-base: 1rem;
35
+ --lui-text-base--line-height: calc(1.5 / 1);
36
+ --lui-text-lg: 1.125rem;
37
+ --lui-text-lg--line-height: calc(1.75 / 1.125);
38
+ --lui-text-xl: 1.25rem;
39
+ --lui-text-xl--line-height: calc(1.75 / 1.25);
40
+ --lui-text-2xl: 1.5rem;
41
+ --lui-text-2xl--line-height: calc(2 / 1.5);
42
+ --lui-text-4xl: 2.25rem;
43
+ --lui-text-4xl--line-height: calc(2.5 / 2.25);
44
+ --lui-font-weight-normal: 400;
45
+ --lui-font-weight-medium: 500;
46
+ --lui-font-weight-semibold: 600;
47
+ --lui-font-weight-bold: 700;
48
+ --lui-tracking-tight: -0.025em;
49
+ --lui-tracking-widest: 0.1em;
50
+ --lui-leading-snug: 1.375;
51
+ --lui-leading-relaxed: 1.625;
52
+ --lui-radius-sm: 0.25rem;
53
+ --lui-radius-md: 0.375rem;
54
+ --lui-radius-lg: 0.5rem;
55
+ --lui-radius-xl: 0.75rem;
56
+ --lui-radius-2xl: 1rem;
57
+ --lui-radius-3xl: 1.5rem;
58
+ --lui-ease-out: cubic-bezier(0, 0, 0.2, 1);
59
+ --lui-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
60
+ --lui-animate-spin: spin 1s linear infinite;
61
+ --lui-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
62
+ --lui-aspect-video: 16 / 9;
63
+ --lui-default-transition-duration: 150ms;
64
+ --lui-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
65
+ --lui-default-font-family: var(--lui-font-sans);
66
+ --lui-default-mono-font-family: var(--lui-font-mono);
67
+ }
68
+ }
69
+ @layer base {
70
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
71
+ box-sizing: border-box;
72
+ margin: 0;
73
+ padding: 0;
74
+ border: 0 solid;
75
+ }
76
+ html, :host {
77
+ line-height: 1.5;
78
+ -webkit-text-size-adjust: 100%;
79
+ tab-size: 4;
80
+ font-family: var(--lui-default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
81
+ font-feature-settings: var(--lui-default-font-feature-settings, normal);
82
+ font-variation-settings: var(--lui-default-font-variation-settings, normal);
83
+ -webkit-tap-highlight-color: transparent;
84
+ }
85
+ hr {
86
+ height: 0;
87
+ color: inherit;
88
+ border-top-width: 1px;
89
+ }
90
+ abbr:where([title]) {
91
+ -webkit-text-decoration: underline dotted;
92
+ text-decoration: underline dotted;
93
+ }
94
+ h1, h2, h3, h4, h5, h6 {
95
+ font-size: inherit;
96
+ font-weight: inherit;
97
+ }
98
+ a {
99
+ color: inherit;
100
+ -webkit-text-decoration: inherit;
101
+ text-decoration: inherit;
102
+ }
103
+ b, strong {
104
+ font-weight: bolder;
105
+ }
106
+ code, kbd, samp, pre {
107
+ font-family: var(--lui-default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
108
+ font-feature-settings: var(--lui-default-mono-font-feature-settings, normal);
109
+ font-variation-settings: var(--lui-default-mono-font-variation-settings, normal);
110
+ font-size: 1em;
111
+ }
112
+ small {
113
+ font-size: 80%;
114
+ }
115
+ sub, sup {
116
+ font-size: 75%;
117
+ line-height: 0;
118
+ position: relative;
119
+ vertical-align: baseline;
120
+ }
121
+ sub {
122
+ bottom: -0.25em;
123
+ }
124
+ sup {
125
+ top: -0.5em;
126
+ }
127
+ table {
128
+ text-indent: 0;
129
+ border-color: inherit;
130
+ border-collapse: collapse;
131
+ }
132
+ :-moz-focusring {
133
+ outline: auto;
134
+ }
135
+ progress {
136
+ vertical-align: baseline;
137
+ }
138
+ summary {
139
+ display: list-item;
140
+ }
141
+ ol, ul, menu {
142
+ list-style: none;
143
+ }
144
+ img, svg, video, canvas, audio, iframe, embed, object {
145
+ display: block;
146
+ vertical-align: middle;
147
+ }
148
+ img, video {
149
+ max-width: 100%;
150
+ height: auto;
151
+ }
152
+ button, input, select, optgroup, textarea, ::file-selector-button {
153
+ font: inherit;
154
+ font-feature-settings: inherit;
155
+ font-variation-settings: inherit;
156
+ letter-spacing: inherit;
157
+ color: inherit;
158
+ border-radius: 0;
159
+ background-color: transparent;
160
+ opacity: 1;
161
+ }
162
+ :where(select:is([multiple], [size])) optgroup {
163
+ font-weight: bolder;
164
+ }
165
+ :where(select:is([multiple], [size])) optgroup option {
166
+ padding-inline-start: 20px;
167
+ }
168
+ ::file-selector-button {
169
+ margin-inline-end: 4px;
170
+ }
171
+ ::placeholder {
172
+ opacity: 1;
173
+ }
174
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
175
+ ::placeholder {
176
+ color: currentcolor;
177
+ @supports (color: color-mix(in lab, red, red)) {
178
+ color: color-mix(in oklab, currentcolor 50%, transparent);
179
+ }
180
+ }
181
+ }
182
+ textarea {
183
+ resize: vertical;
184
+ }
185
+ ::-webkit-search-decoration {
186
+ -webkit-appearance: none;
187
+ }
188
+ ::-webkit-date-and-time-value {
189
+ min-height: 1lh;
190
+ text-align: inherit;
191
+ }
192
+ ::-webkit-datetime-edit {
193
+ display: inline-flex;
194
+ }
195
+ ::-webkit-datetime-edit-fields-wrapper {
196
+ padding: 0;
197
+ }
198
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
199
+ padding-block: 0;
200
+ }
201
+ ::-webkit-calendar-picker-indicator {
202
+ line-height: 1;
203
+ }
204
+ :-moz-ui-invalid {
205
+ box-shadow: none;
206
+ }
207
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
208
+ appearance: button;
209
+ }
210
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
211
+ height: auto;
212
+ }
213
+ [hidden]:where(:not([hidden="until-found"])) {
214
+ display: none !important;
215
+ }
216
+ }
217
+ @layer utilities {
218
+ .lui\:pointer-events-none {
219
+ pointer-events: none;
220
+ }
221
+ .lui\:invisible {
222
+ visibility: hidden;
223
+ }
224
+ .lui\:sr-only {
225
+ position: absolute;
226
+ width: 1px;
227
+ height: 1px;
228
+ padding: 0;
229
+ margin: -1px;
230
+ overflow: hidden;
231
+ clip-path: inset(50%);
232
+ white-space: nowrap;
233
+ border-width: 0;
234
+ }
235
+ .lui\:absolute {
236
+ position: absolute;
237
+ }
238
+ .lui\:fixed {
239
+ position: fixed;
240
+ }
241
+ .lui\:relative {
242
+ position: relative;
243
+ }
244
+ .lui\:inset-0 {
245
+ inset: 0px;
246
+ }
247
+ .lui\:inset-x-0 {
248
+ inset-inline: 0px;
249
+ }
250
+ .lui\:inset-y-0 {
251
+ inset-block: 0px;
252
+ }
253
+ .lui\:top-0 {
254
+ top: 0px;
255
+ }
256
+ .lui\:top-1\/2 {
257
+ top: calc(1 / 2 * 100%);
258
+ }
259
+ .lui\:top-4 {
260
+ top: calc(var(--lui-spacing) * 4);
261
+ }
262
+ .lui\:top-5 {
263
+ top: calc(var(--lui-spacing) * 5);
264
+ }
265
+ .lui\:top-auto {
266
+ top: auto;
267
+ }
268
+ .lui\:top-full {
269
+ top: 100%;
270
+ }
271
+ .lui\:right-0 {
272
+ right: 0px;
273
+ }
274
+ .lui\:right-2 {
275
+ right: calc(var(--lui-spacing) * 2);
276
+ }
277
+ .lui\:right-4 {
278
+ right: calc(var(--lui-spacing) * 4);
279
+ }
280
+ .lui\:bottom-0 {
281
+ bottom: 0px;
282
+ }
283
+ .lui\:bottom-5 {
284
+ bottom: calc(var(--lui-spacing) * 5);
285
+ }
286
+ .lui\:bottom-full {
287
+ bottom: 100%;
288
+ }
289
+ .lui\:left-0 {
290
+ left: 0px;
291
+ }
292
+ .lui\:left-1\/2 {
293
+ left: calc(1 / 2 * 100%);
294
+ }
295
+ .lui\:left-2 {
296
+ left: calc(var(--lui-spacing) * 2);
297
+ }
298
+ .lui\:left-4 {
299
+ left: calc(var(--lui-spacing) * 4);
300
+ }
301
+ .lui\:isolate {
302
+ isolation: isolate;
303
+ }
304
+ .lui\:z-10 {
305
+ z-index: 10;
306
+ }
307
+ .lui\:z-50 {
308
+ z-index: 50;
309
+ }
310
+ .lui\:col-start-1 {
311
+ grid-column-start: 1;
312
+ }
313
+ .lui\:col-start-2 {
314
+ grid-column-start: 2;
315
+ }
316
+ .lui\:row-span-2 {
317
+ grid-row: span 2 / span 2;
318
+ }
319
+ .lui\:row-start-1 {
320
+ grid-row-start: 1;
321
+ }
322
+ .lui\:row-start-2 {
323
+ grid-row-start: 2;
324
+ }
325
+ .lui\:m-0 {
326
+ margin: 0px;
327
+ }
328
+ .lui\:m-auto {
329
+ margin: auto;
330
+ }
331
+ .lui\:-mx-1\.5 {
332
+ margin-inline: calc(var(--lui-spacing) * -1.5);
333
+ }
334
+ .lui\:mx-auto {
335
+ margin-inline: auto;
336
+ }
337
+ .lui\:-my-1\.5 {
338
+ margin-block: calc(var(--lui-spacing) * -1.5);
339
+ }
340
+ .lui\:-my-px {
341
+ margin-block: -1px;
342
+ }
343
+ .lui\:my-4 {
344
+ margin-block: calc(var(--lui-spacing) * 4);
345
+ }
346
+ .lui\:ms-2\.5 {
347
+ margin-inline-start: calc(var(--lui-spacing) * 2.5);
348
+ }
349
+ .lui\:me-3 {
350
+ margin-inline-end: calc(var(--lui-spacing) * 3);
351
+ }
352
+ .lui\:mt-0\.5 {
353
+ margin-top: calc(var(--lui-spacing) * 0.5);
354
+ }
355
+ .lui\:mt-1 {
356
+ margin-top: var(--lui-spacing);
357
+ }
358
+ .lui\:mt-1\.5 {
359
+ margin-top: calc(var(--lui-spacing) * 1.5);
360
+ }
361
+ .lui\:mt-2 {
362
+ margin-top: calc(var(--lui-spacing) * 2);
363
+ }
364
+ .lui\:mt-3 {
365
+ margin-top: calc(var(--lui-spacing) * 3);
366
+ }
367
+ .lui\:mt-4 {
368
+ margin-top: calc(var(--lui-spacing) * 4);
369
+ }
370
+ .lui\:mt-8 {
371
+ margin-top: calc(var(--lui-spacing) * 8);
372
+ }
373
+ .lui\:mb-1 {
374
+ margin-bottom: var(--lui-spacing);
375
+ }
376
+ .lui\:mb-2 {
377
+ margin-bottom: calc(var(--lui-spacing) * 2);
378
+ }
379
+ .lui\:mb-3 {
380
+ margin-bottom: calc(var(--lui-spacing) * 3);
381
+ }
382
+ .lui\:mb-4 {
383
+ margin-bottom: calc(var(--lui-spacing) * 4);
384
+ }
385
+ .lui\:mb-6 {
386
+ margin-bottom: calc(var(--lui-spacing) * 6);
387
+ }
388
+ .lui\:-ml-4 {
389
+ margin-left: calc(var(--lui-spacing) * -4);
390
+ }
391
+ .lui\:ml-0\.5 {
392
+ margin-left: calc(var(--lui-spacing) * 0.5);
393
+ }
394
+ .lui\:ml-2 {
395
+ margin-left: calc(var(--lui-spacing) * 2);
396
+ }
397
+ .lui\:ml-3 {
398
+ margin-left: calc(var(--lui-spacing) * 3);
399
+ }
400
+ .lui\:ml-auto {
401
+ margin-left: auto;
402
+ }
403
+ .lui\:block {
404
+ display: block;
405
+ }
406
+ .lui\:flex {
407
+ display: flex;
408
+ }
409
+ .lui\:grid {
410
+ display: grid;
411
+ }
412
+ .lui\:hidden {
413
+ display: none;
414
+ }
415
+ .lui\:inline-block {
416
+ display: inline-block;
417
+ }
418
+ .lui\:inline-flex {
419
+ display: inline-flex;
420
+ }
421
+ .lui\:inline-grid {
422
+ display: inline-grid;
423
+ }
424
+ .lui\:aspect-square {
425
+ aspect-ratio: 1 / 1;
426
+ }
427
+ .lui\:aspect-video {
428
+ aspect-ratio: var(--lui-aspect-video);
429
+ }
430
+ .lui\:size-2 {
431
+ width: calc(var(--lui-spacing) * 2);
432
+ height: calc(var(--lui-spacing) * 2);
433
+ }
434
+ .lui\:size-2\.5 {
435
+ width: calc(var(--lui-spacing) * 2.5);
436
+ height: calc(var(--lui-spacing) * 2.5);
437
+ }
438
+ .lui\:size-3\.5 {
439
+ width: calc(var(--lui-spacing) * 3.5);
440
+ height: calc(var(--lui-spacing) * 3.5);
441
+ }
442
+ .lui\:size-4 {
443
+ width: calc(var(--lui-spacing) * 4);
444
+ height: calc(var(--lui-spacing) * 4);
445
+ }
446
+ .lui\:size-5 {
447
+ width: calc(var(--lui-spacing) * 5);
448
+ height: calc(var(--lui-spacing) * 5);
449
+ }
450
+ .lui\:size-6 {
451
+ width: calc(var(--lui-spacing) * 6);
452
+ height: calc(var(--lui-spacing) * 6);
453
+ }
454
+ .lui\:size-7 {
455
+ width: calc(var(--lui-spacing) * 7);
456
+ height: calc(var(--lui-spacing) * 7);
457
+ }
458
+ .lui\:size-8 {
459
+ width: calc(var(--lui-spacing) * 8);
460
+ height: calc(var(--lui-spacing) * 8);
461
+ }
462
+ .lui\:size-10 {
463
+ width: calc(var(--lui-spacing) * 10);
464
+ height: calc(var(--lui-spacing) * 10);
465
+ }
466
+ .lui\:size-24 {
467
+ width: calc(var(--lui-spacing) * 24);
468
+ height: calc(var(--lui-spacing) * 24);
469
+ }
470
+ .lui\:size-\[1\.125rem\] {
471
+ width: 1.125rem;
472
+ height: 1.125rem;
473
+ }
474
+ .lui\:size-\[max\(100\%\,2\.75rem\)\] {
475
+ width: max(100%, 2.75rem);
476
+ height: max(100%, 2.75rem);
477
+ }
478
+ .lui\:size-full {
479
+ width: 100%;
480
+ height: 100%;
481
+ }
482
+ .lui\:h-1 {
483
+ height: var(--lui-spacing);
484
+ }
485
+ .lui\:h-1\.5 {
486
+ height: calc(var(--lui-spacing) * 1.5);
487
+ }
488
+ .lui\:h-2 {
489
+ height: calc(var(--lui-spacing) * 2);
490
+ }
491
+ .lui\:h-2\.5 {
492
+ height: calc(var(--lui-spacing) * 2.5);
493
+ }
494
+ .lui\:h-3 {
495
+ height: calc(var(--lui-spacing) * 3);
496
+ }
497
+ .lui\:h-3\.5 {
498
+ height: calc(var(--lui-spacing) * 3.5);
499
+ }
500
+ .lui\:h-5 {
501
+ height: calc(var(--lui-spacing) * 5);
502
+ }
503
+ .lui\:h-6 {
504
+ height: calc(var(--lui-spacing) * 6);
505
+ }
506
+ .lui\:h-8 {
507
+ height: calc(var(--lui-spacing) * 8);
508
+ }
509
+ .lui\:h-9 {
510
+ height: calc(var(--lui-spacing) * 9);
511
+ }
512
+ .lui\:h-10 {
513
+ height: calc(var(--lui-spacing) * 10);
514
+ }
515
+ .lui\:h-11 {
516
+ height: calc(var(--lui-spacing) * 11);
517
+ }
518
+ .lui\:h-40 {
519
+ height: calc(var(--lui-spacing) * 40);
520
+ }
521
+ .lui\:h-48 {
522
+ height: calc(var(--lui-spacing) * 48);
523
+ }
524
+ .lui\:h-72 {
525
+ height: calc(var(--lui-spacing) * 72);
526
+ }
527
+ .lui\:h-\[calc\(2\.5rem\+1px\)\] {
528
+ height: calc(2.5rem + 1px);
529
+ }
530
+ .lui\:h-\[calc\(100\%-1px\)\] {
531
+ height: calc(100% - 1px);
532
+ }
533
+ .lui\:h-full {
534
+ height: 100%;
535
+ }
536
+ .lui\:h-px {
537
+ height: 1px;
538
+ }
539
+ .lui\:h-screen {
540
+ height: 100vh;
541
+ }
542
+ .lui\:max-h-60 {
543
+ max-height: calc(var(--lui-spacing) * 60);
544
+ }
545
+ .lui\:max-h-72 {
546
+ max-height: calc(var(--lui-spacing) * 72);
547
+ }
548
+ .lui\:max-h-none {
549
+ max-height: none;
550
+ }
551
+ .lui\:min-h-0 {
552
+ min-height: 0px;
553
+ }
554
+ .lui\:min-h-\[8rem\] {
555
+ min-height: 8rem;
556
+ }
557
+ .lui\:min-h-\[42px\] {
558
+ min-height: 42px;
559
+ }
560
+ .lui\:min-h-dvh {
561
+ min-height: 100dvh;
562
+ }
563
+ .lui\:min-h-full {
564
+ min-height: 100%;
565
+ }
566
+ .lui\:min-h-screen {
567
+ min-height: 100vh;
568
+ }
569
+ .lui\:w-1 {
570
+ width: var(--lui-spacing);
571
+ }
572
+ .lui\:w-2 {
573
+ width: calc(var(--lui-spacing) * 2);
574
+ }
575
+ .lui\:w-2\.5 {
576
+ width: calc(var(--lui-spacing) * 2.5);
577
+ }
578
+ .lui\:w-3 {
579
+ width: calc(var(--lui-spacing) * 3);
580
+ }
581
+ .lui\:w-3\.5 {
582
+ width: calc(var(--lui-spacing) * 3.5);
583
+ }
584
+ .lui\:w-3\/4 {
585
+ width: calc(3 / 4 * 100%);
586
+ }
587
+ .lui\:w-5 {
588
+ width: calc(var(--lui-spacing) * 5);
589
+ }
590
+ .lui\:w-6 {
591
+ width: calc(var(--lui-spacing) * 6);
592
+ }
593
+ .lui\:w-8 {
594
+ width: calc(var(--lui-spacing) * 8);
595
+ }
596
+ .lui\:w-10 {
597
+ width: calc(var(--lui-spacing) * 10);
598
+ }
599
+ .lui\:w-14 {
600
+ width: calc(var(--lui-spacing) * 14);
601
+ }
602
+ .lui\:w-48 {
603
+ width: calc(var(--lui-spacing) * 48);
604
+ }
605
+ .lui\:w-56 {
606
+ width: calc(var(--lui-spacing) * 56);
607
+ }
608
+ .lui\:w-64 {
609
+ width: calc(var(--lui-spacing) * 64);
610
+ }
611
+ .lui\:w-72 {
612
+ width: calc(var(--lui-spacing) * 72);
613
+ }
614
+ .lui\:w-fit {
615
+ width: fit-content;
616
+ }
617
+ .lui\:w-full {
618
+ width: 100%;
619
+ }
620
+ .lui\:w-max {
621
+ width: max-content;
622
+ }
623
+ .lui\:w-px {
624
+ width: 1px;
625
+ }
626
+ .lui\:w-screen {
627
+ width: 100vw;
628
+ }
629
+ .lui\:max-w-2xl {
630
+ max-width: var(--lui-container-2xl);
631
+ }
632
+ .lui\:max-w-6xl {
633
+ max-width: var(--lui-container-6xl);
634
+ }
635
+ .lui\:max-w-\[150px\] {
636
+ max-width: 150px;
637
+ }
638
+ .lui\:max-w-max {
639
+ max-width: max-content;
640
+ }
641
+ .lui\:max-w-md {
642
+ max-width: var(--lui-container-md);
643
+ }
644
+ .lui\:max-w-none {
645
+ max-width: none;
646
+ }
647
+ .lui\:max-w-sm {
648
+ max-width: var(--lui-container-sm);
649
+ }
650
+ .lui\:max-w-xl {
651
+ max-width: var(--lui-container-xl);
652
+ }
653
+ .lui\:max-w-xs {
654
+ max-width: var(--lui-container-xs);
655
+ }
656
+ .lui\:min-w-0 {
657
+ min-width: 0px;
658
+ }
659
+ .lui\:min-w-8 {
660
+ min-width: calc(var(--lui-spacing) * 8);
661
+ }
662
+ .lui\:min-w-9 {
663
+ min-width: calc(var(--lui-spacing) * 9);
664
+ }
665
+ .lui\:min-w-10 {
666
+ min-width: calc(var(--lui-spacing) * 10);
667
+ }
668
+ .lui\:min-w-\[2\.25rem\] {
669
+ min-width: 2.25rem;
670
+ }
671
+ .lui\:min-w-\[8rem\] {
672
+ min-width: 8rem;
673
+ }
674
+ .lui\:min-w-\[12rem\] {
675
+ min-width: 12rem;
676
+ }
677
+ .lui\:min-w-\[120px\] {
678
+ min-width: 120px;
679
+ }
680
+ .lui\:flex-1 {
681
+ flex: 1;
682
+ }
683
+ .lui\:flex-shrink-0 {
684
+ flex-shrink: 0;
685
+ }
686
+ .lui\:shrink-0 {
687
+ flex-shrink: 0;
688
+ }
689
+ .lui\:grow {
690
+ flex-grow: 1;
691
+ }
692
+ .lui\:grow-0 {
693
+ flex-grow: 0;
694
+ }
695
+ .lui\:basis-full {
696
+ flex-basis: 100%;
697
+ }
698
+ .lui\:border-collapse {
699
+ border-collapse: collapse;
700
+ }
701
+ .lui\:origin-top-left {
702
+ transform-origin: 0 0;
703
+ }
704
+ .lui\:-translate-x-1\/2 {
705
+ --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
706
+ translate: var(--tw-translate-x) var(--tw-translate-y);
707
+ }
708
+ .lui\:-translate-x-full {
709
+ --tw-translate-x: -100%;
710
+ translate: var(--tw-translate-x) var(--tw-translate-y);
711
+ }
712
+ .lui\:translate-x-0 {
713
+ --tw-translate-x: 0px;
714
+ translate: var(--tw-translate-x) var(--tw-translate-y);
715
+ }
716
+ .lui\:translate-x-full {
717
+ --tw-translate-x: 100%;
718
+ translate: var(--tw-translate-x) var(--tw-translate-y);
719
+ }
720
+ .lui\:-translate-y-1\/2 {
721
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
722
+ translate: var(--tw-translate-x) var(--tw-translate-y);
723
+ }
724
+ .lui\:-translate-y-full {
725
+ --tw-translate-y: -100%;
726
+ translate: var(--tw-translate-x) var(--tw-translate-y);
727
+ }
728
+ .lui\:translate-y-full {
729
+ --tw-translate-y: 100%;
730
+ translate: var(--tw-translate-x) var(--tw-translate-y);
731
+ }
732
+ .lui\:scale-95 {
733
+ --tw-scale-x: 95%;
734
+ --tw-scale-y: 95%;
735
+ --tw-scale-z: 95%;
736
+ scale: var(--tw-scale-x) var(--tw-scale-y);
737
+ }
738
+ .lui\:scale-100 {
739
+ --tw-scale-x: 100%;
740
+ --tw-scale-y: 100%;
741
+ --tw-scale-z: 100%;
742
+ scale: var(--tw-scale-x) var(--tw-scale-y);
743
+ }
744
+ .lui\:rotate-45 {
745
+ rotate: 45deg;
746
+ }
747
+ .lui\:rotate-180 {
748
+ rotate: 180deg;
749
+ }
750
+ .lui\:transform {
751
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
752
+ }
753
+ .lui\:animate-pulse {
754
+ animation: var(--lui-animate-pulse);
755
+ }
756
+ .lui\:animate-spin {
757
+ animation: var(--lui-animate-spin);
758
+ }
759
+ .lui\:cursor-col-resize {
760
+ cursor: col-resize;
761
+ }
762
+ .lui\:cursor-default {
763
+ cursor: default;
764
+ }
765
+ .lui\:cursor-help {
766
+ cursor: help;
767
+ }
768
+ .lui\:cursor-pointer {
769
+ cursor: pointer;
770
+ }
771
+ .lui\:cursor-row-resize {
772
+ cursor: row-resize;
773
+ }
774
+ .lui\:touch-none {
775
+ touch-action: none;
776
+ }
777
+ .lui\:\[scrollbar-width\:thin\] {
778
+ scrollbar-width: thin;
779
+ }
780
+ .lui\:list-inside {
781
+ list-style-position: inside;
782
+ }
783
+ .lui\:list-disc {
784
+ list-style-type: disc;
785
+ }
786
+ .lui\:appearance-none {
787
+ appearance: none;
788
+ }
789
+ .lui\:auto-rows-min {
790
+ grid-auto-rows: min-content;
791
+ }
792
+ .lui\:grid-cols-1 {
793
+ grid-template-columns: repeat(1, minmax(0, 1fr));
794
+ }
795
+ .lui\:grid-cols-7 {
796
+ grid-template-columns: repeat(7, minmax(0, 1fr));
797
+ }
798
+ .lui\:grid-cols-\[1\.125rem_1fr\] {
799
+ grid-template-columns: 1.125rem 1fr;
800
+ }
801
+ .lui\:grid-cols-\[1fr_auto\] {
802
+ grid-template-columns: 1fr auto;
803
+ }
804
+ .lui\:grid-rows-\[0fr\] {
805
+ grid-template-rows: 0fr;
806
+ }
807
+ .lui\:grid-rows-\[1fr\] {
808
+ grid-template-rows: 1fr;
809
+ }
810
+ .lui\:grid-rows-\[1fr_auto\] {
811
+ grid-template-rows: 1fr auto;
812
+ }
813
+ .lui\:grid-rows-\[auto_auto\] {
814
+ grid-template-rows: auto auto;
815
+ }
816
+ .lui\:flex-col {
817
+ flex-direction: column;
818
+ }
819
+ .lui\:flex-col-reverse {
820
+ flex-direction: column-reverse;
821
+ }
822
+ .lui\:flex-row {
823
+ flex-direction: row;
824
+ }
825
+ .lui\:flex-wrap {
826
+ flex-wrap: wrap;
827
+ }
828
+ .lui\:items-center {
829
+ align-items: center;
830
+ }
831
+ .lui\:items-start {
832
+ align-items: flex-start;
833
+ }
834
+ .lui\:justify-between {
835
+ justify-content: space-between;
836
+ }
837
+ .lui\:justify-center {
838
+ justify-content: center;
839
+ }
840
+ .lui\:justify-end {
841
+ justify-content: flex-end;
842
+ }
843
+ .lui\:justify-items-center {
844
+ justify-items: center;
845
+ }
846
+ .lui\:gap-0\.5 {
847
+ gap: calc(var(--lui-spacing) * 0.5);
848
+ }
849
+ .lui\:gap-1 {
850
+ gap: var(--lui-spacing);
851
+ }
852
+ .lui\:gap-1\.5 {
853
+ gap: calc(var(--lui-spacing) * 1.5);
854
+ }
855
+ .lui\:gap-2 {
856
+ gap: calc(var(--lui-spacing) * 2);
857
+ }
858
+ .lui\:gap-2\.5 {
859
+ gap: calc(var(--lui-spacing) * 2.5);
860
+ }
861
+ .lui\:gap-3 {
862
+ gap: calc(var(--lui-spacing) * 3);
863
+ }
864
+ .lui\:gap-4 {
865
+ gap: calc(var(--lui-spacing) * 4);
866
+ }
867
+ .lui\:gap-6 {
868
+ gap: calc(var(--lui-spacing) * 6);
869
+ }
870
+ .lui\:gap-8 {
871
+ gap: calc(var(--lui-spacing) * 8);
872
+ }
873
+ :where(.lui\:space-y-1 > :not(:last-child)) {
874
+ --tw-space-y-reverse: 0;
875
+ margin-block-start: calc(var(--lui-spacing) * var(--tw-space-y-reverse));
876
+ margin-block-end: calc(var(--lui-spacing) * calc(1 - var(--tw-space-y-reverse)));
877
+ }
878
+ :where(.lui\:space-y-2 > :not(:last-child)) {
879
+ --tw-space-y-reverse: 0;
880
+ margin-block-start: calc(calc(var(--lui-spacing) * 2) * var(--tw-space-y-reverse));
881
+ margin-block-end: calc(calc(var(--lui-spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
882
+ }
883
+ :where(.lui\:space-y-2\.5 > :not(:last-child)) {
884
+ --tw-space-y-reverse: 0;
885
+ margin-block-start: calc(calc(var(--lui-spacing) * 2.5) * var(--tw-space-y-reverse));
886
+ margin-block-end: calc(calc(var(--lui-spacing) * 2.5) * calc(1 - var(--tw-space-y-reverse)));
887
+ }
888
+ :where(.lui\:space-y-3 > :not(:last-child)) {
889
+ --tw-space-y-reverse: 0;
890
+ margin-block-start: calc(calc(var(--lui-spacing) * 3) * var(--tw-space-y-reverse));
891
+ margin-block-end: calc(calc(var(--lui-spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
892
+ }
893
+ :where(.lui\:space-y-4 > :not(:last-child)) {
894
+ --tw-space-y-reverse: 0;
895
+ margin-block-start: calc(calc(var(--lui-spacing) * 4) * var(--tw-space-y-reverse));
896
+ margin-block-end: calc(calc(var(--lui-spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
897
+ }
898
+ :where(.lui\:space-y-6 > :not(:last-child)) {
899
+ --tw-space-y-reverse: 0;
900
+ margin-block-start: calc(calc(var(--lui-spacing) * 6) * var(--tw-space-y-reverse));
901
+ margin-block-end: calc(calc(var(--lui-spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
902
+ }
903
+ .lui\:gap-x-1\.5 {
904
+ column-gap: calc(var(--lui-spacing) * 1.5);
905
+ }
906
+ .lui\:gap-x-2 {
907
+ column-gap: calc(var(--lui-spacing) * 2);
908
+ }
909
+ .lui\:gap-x-4 {
910
+ column-gap: calc(var(--lui-spacing) * 4);
911
+ }
912
+ .lui\:gap-x-8 {
913
+ column-gap: calc(var(--lui-spacing) * 8);
914
+ }
915
+ .lui\:gap-y-1 {
916
+ row-gap: var(--lui-spacing);
917
+ }
918
+ :where(.lui\:divide-y > :not(:last-child)) {
919
+ --tw-divide-y-reverse: 0;
920
+ border-bottom-style: var(--tw-border-style);
921
+ border-top-style: var(--tw-border-style);
922
+ border-top-width: calc(1px * var(--tw-divide-y-reverse));
923
+ border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
924
+ }
925
+ :where(.lui\:divide-border > :not(:last-child)) {
926
+ border-color: var(--lui-theme-border);
927
+ }
928
+ .lui\:self-start {
929
+ align-self: flex-start;
930
+ }
931
+ .lui\:justify-self-end {
932
+ justify-self: flex-end;
933
+ }
934
+ .lui\:truncate {
935
+ overflow: hidden;
936
+ text-overflow: ellipsis;
937
+ white-space: nowrap;
938
+ }
939
+ .lui\:overflow-auto {
940
+ overflow: auto;
941
+ }
942
+ .lui\:overflow-hidden {
943
+ overflow: hidden;
944
+ }
945
+ .lui\:overflow-visible {
946
+ overflow: visible;
947
+ }
948
+ .lui\:overflow-x-auto {
949
+ overflow-x: auto;
950
+ }
951
+ .lui\:overflow-x-hidden {
952
+ overflow-x: hidden;
953
+ }
954
+ .lui\:overflow-y-auto {
955
+ overflow-y: auto;
956
+ }
957
+ .lui\:overflow-y-hidden {
958
+ overflow-y: hidden;
959
+ }
960
+ .lui\:rounded {
961
+ border-radius: 0.25rem;
962
+ }
963
+ .lui\:rounded-\(--avatar-radius\) {
964
+ border-radius: var(--avatar-radius);
965
+ }
966
+ .lui\:rounded-2xl {
967
+ border-radius: var(--lui-radius-2xl);
968
+ }
969
+ .lui\:rounded-3xl {
970
+ border-radius: var(--lui-radius-3xl);
971
+ }
972
+ .lui\:rounded-\[0\.3125rem\] {
973
+ border-radius: 0.3125rem;
974
+ }
975
+ .lui\:rounded-\[2px\] {
976
+ border-radius: 2px;
977
+ }
978
+ .lui\:rounded-\[3px\] {
979
+ border-radius: 3px;
980
+ }
981
+ .lui\:rounded-\[10px\] {
982
+ border-radius: 10px;
983
+ }
984
+ .lui\:rounded-full {
985
+ border-radius: calc(infinity * 1px);
986
+ }
987
+ .lui\:rounded-lg {
988
+ border-radius: var(--lui-radius-lg);
989
+ }
990
+ .lui\:rounded-md {
991
+ border-radius: var(--lui-radius-md);
992
+ }
993
+ .lui\:rounded-none {
994
+ border-radius: 0;
995
+ }
996
+ .lui\:rounded-sm {
997
+ border-radius: var(--lui-radius-sm);
998
+ }
999
+ .lui\:rounded-xl {
1000
+ border-radius: var(--lui-radius-xl);
1001
+ }
1002
+ .lui\:rounded-t-3xl {
1003
+ border-top-left-radius: var(--lui-radius-3xl);
1004
+ border-top-right-radius: var(--lui-radius-3xl);
1005
+ }
1006
+ .lui\:rounded-t-\[calc\(var\(--radius-lg\)-1px\)\] {
1007
+ border-top-left-radius: calc(var(--radius-lg) - 1px);
1008
+ border-top-right-radius: calc(var(--radius-lg) - 1px);
1009
+ }
1010
+ .lui\:rounded-r-lg {
1011
+ border-top-right-radius: var(--lui-radius-lg);
1012
+ border-bottom-right-radius: var(--lui-radius-lg);
1013
+ }
1014
+ .lui\:border {
1015
+ border-style: var(--tw-border-style);
1016
+ border-width: 1px;
1017
+ }
1018
+ .lui\:border-0 {
1019
+ border-style: var(--tw-border-style);
1020
+ border-width: 0px;
1021
+ }
1022
+ .lui\:border-\[1px\] {
1023
+ border-style: var(--tw-border-style);
1024
+ border-width: 1px;
1025
+ }
1026
+ .lui\:border-t {
1027
+ border-top-style: var(--tw-border-style);
1028
+ border-top-width: 1px;
1029
+ }
1030
+ .lui\:border-r {
1031
+ border-right-style: var(--tw-border-style);
1032
+ border-right-width: 1px;
1033
+ }
1034
+ .lui\:border-b {
1035
+ border-bottom-style: var(--tw-border-style);
1036
+ border-bottom-width: 1px;
1037
+ }
1038
+ .lui\:border-l {
1039
+ border-left-style: var(--tw-border-style);
1040
+ border-left-width: 1px;
1041
+ }
1042
+ .lui\:border-dashed {
1043
+ --tw-border-style: dashed;
1044
+ border-style: dashed;
1045
+ }
1046
+ .lui\:border-dotted {
1047
+ --tw-border-style: dotted;
1048
+ border-style: dotted;
1049
+ }
1050
+ .lui\:border-border {
1051
+ border-color: var(--lui-theme-border);
1052
+ }
1053
+ .lui\:border-border-hover {
1054
+ border-color: var(--lui-theme-border-hover);
1055
+ }
1056
+ .lui\:border-border-invert {
1057
+ border-color: var(--lui-theme-border-invert);
1058
+ }
1059
+ .lui\:border-border-strong {
1060
+ border-color: var(--lui-theme-border-strong);
1061
+ }
1062
+ .lui\:border-border-subtle {
1063
+ border-color: var(--lui-theme-border-subtle);
1064
+ }
1065
+ .lui\:border-destructive {
1066
+ border-color: var(--lui-theme-destructive);
1067
+ }
1068
+ .lui\:border-destructive-border {
1069
+ border-color: var(--lui-theme-destructive-border);
1070
+ }
1071
+ .lui\:border-destructive-border\/50 {
1072
+ border-color: var(--lui-theme-destructive-border);
1073
+ @supports (color: color-mix(in lab, red, red)) {
1074
+ border-color: color-mix(in oklab, var(--lui-theme-destructive-border) 50%, transparent);
1075
+ }
1076
+ }
1077
+ .lui\:border-foreground-faint {
1078
+ border-color: var(--lui-theme-foreground-faint);
1079
+ }
1080
+ .lui\:border-foreground-invert {
1081
+ border-color: var(--lui-theme-foreground-invert);
1082
+ }
1083
+ .lui\:border-inherit {
1084
+ border-color: inherit;
1085
+ }
1086
+ .lui\:border-success-indicator {
1087
+ border-color: var(--lui-theme-success-indicator);
1088
+ }
1089
+ .lui\:border-success-indicator\/50 {
1090
+ border-color: var(--lui-theme-success-indicator);
1091
+ @supports (color: color-mix(in lab, red, red)) {
1092
+ border-color: color-mix(in oklab, var(--lui-theme-success-indicator) 50%, transparent);
1093
+ }
1094
+ }
1095
+ .lui\:border-transparent {
1096
+ border-color: transparent;
1097
+ }
1098
+ .lui\:border-warning-indicator {
1099
+ border-color: var(--lui-theme-warning-indicator);
1100
+ }
1101
+ .lui\:border-warning-indicator\/50 {
1102
+ border-color: var(--lui-theme-warning-indicator);
1103
+ @supports (color: color-mix(in lab, red, red)) {
1104
+ border-color: color-mix(in oklab, var(--lui-theme-warning-indicator) 50%, transparent);
1105
+ }
1106
+ }
1107
+ .lui\:border-b-border {
1108
+ border-bottom-color: var(--lui-theme-border);
1109
+ }
1110
+ .lui\:bg-\(--btn-border\) {
1111
+ background-color: var(--btn-border);
1112
+ }
1113
+ .lui\:bg-\(--radio-indicator\) {
1114
+ background-color: var(--radio-indicator);
1115
+ }
1116
+ .lui\:bg-blue-500 {
1117
+ background-color: var(--lui-color-blue-500);
1118
+ }
1119
+ .lui\:bg-border {
1120
+ background-color: var(--lui-theme-border);
1121
+ }
1122
+ .lui\:bg-border-hover {
1123
+ background-color: var(--lui-theme-border-hover);
1124
+ }
1125
+ .lui\:bg-destructive {
1126
+ background-color: var(--lui-theme-destructive);
1127
+ }
1128
+ .lui\:bg-destructive\/15 {
1129
+ background-color: var(--lui-theme-destructive);
1130
+ @supports (color: color-mix(in lab, red, red)) {
1131
+ background-color: color-mix(in oklab, var(--lui-theme-destructive) 15%, transparent);
1132
+ }
1133
+ }
1134
+ .lui\:bg-foreground-faint {
1135
+ background-color: var(--lui-theme-foreground-faint);
1136
+ }
1137
+ .lui\:bg-foreground-faint\/20 {
1138
+ background-color: var(--lui-theme-foreground-faint);
1139
+ @supports (color: color-mix(in lab, red, red)) {
1140
+ background-color: color-mix(in oklab, var(--lui-theme-foreground-faint) 20%, transparent);
1141
+ }
1142
+ }
1143
+ .lui\:bg-interactive {
1144
+ background-color: var(--lui-theme-interactive);
1145
+ }
1146
+ .lui\:bg-success-bg {
1147
+ background-color: var(--lui-theme-success-bg);
1148
+ }
1149
+ .lui\:bg-success-indicator {
1150
+ background-color: var(--lui-theme-success-indicator);
1151
+ }
1152
+ .lui\:bg-surface {
1153
+ background-color: var(--lui-theme-surface);
1154
+ }
1155
+ .lui\:bg-surface-aside {
1156
+ background-color: var(--lui-theme-surface-aside);
1157
+ }
1158
+ .lui\:bg-surface-hover {
1159
+ background-color: var(--lui-theme-surface-hover);
1160
+ }
1161
+ .lui\:bg-surface-input {
1162
+ background-color: var(--lui-theme-surface-input);
1163
+ }
1164
+ .lui\:bg-surface-invert {
1165
+ background-color: var(--lui-theme-surface-invert);
1166
+ }
1167
+ .lui\:bg-surface-overlay {
1168
+ background-color: var(--lui-theme-surface-overlay);
1169
+ }
1170
+ .lui\:bg-surface-page {
1171
+ background-color: var(--lui-theme-surface-page);
1172
+ }
1173
+ .lui\:bg-surface-secondary {
1174
+ background-color: var(--lui-theme-surface-secondary);
1175
+ }
1176
+ .lui\:bg-surface-tertiary {
1177
+ background-color: var(--lui-theme-surface-tertiary);
1178
+ }
1179
+ .lui\:bg-tooltip-bg {
1180
+ background-color: var(--lui-theme-tooltip-bg);
1181
+ }
1182
+ .lui\:bg-transparent {
1183
+ background-color: transparent;
1184
+ }
1185
+ .lui\:bg-warning-bg {
1186
+ background-color: var(--lui-theme-warning-bg);
1187
+ }
1188
+ .lui\:bg-warning-indicator {
1189
+ background-color: var(--lui-theme-warning-indicator);
1190
+ }
1191
+ .lui\:bg-white {
1192
+ background-color: var(--lui-color-white);
1193
+ }
1194
+ .lui\:bg-zinc-100 {
1195
+ background-color: var(--lui-color-zinc-100);
1196
+ }
1197
+ .lui\:bg-zinc-900 {
1198
+ background-color: var(--lui-color-zinc-900);
1199
+ }
1200
+ .lui\:fill-current {
1201
+ fill: currentcolor;
1202
+ }
1203
+ .lui\:fill-foreground-muted {
1204
+ fill: var(--lui-theme-foreground-muted);
1205
+ }
1206
+ .lui\:stroke-\(--checkbox-check\) {
1207
+ stroke: var(--checkbox-check);
1208
+ }
1209
+ .lui\:stroke-foreground-invert {
1210
+ stroke: var(--lui-theme-foreground-invert);
1211
+ }
1212
+ .lui\:stroke-foreground-muted {
1213
+ stroke: var(--lui-theme-foreground-muted);
1214
+ }
1215
+ .lui\:p-\(--gutter\) {
1216
+ padding: var(--gutter);
1217
+ }
1218
+ .lui\:p-0 {
1219
+ padding: 0px;
1220
+ }
1221
+ .lui\:p-1 {
1222
+ padding: var(--lui-spacing);
1223
+ }
1224
+ .lui\:p-1\.5 {
1225
+ padding: calc(var(--lui-spacing) * 1.5);
1226
+ }
1227
+ .lui\:p-2 {
1228
+ padding: calc(var(--lui-spacing) * 2);
1229
+ }
1230
+ .lui\:p-3 {
1231
+ padding: calc(var(--lui-spacing) * 3);
1232
+ }
1233
+ .lui\:p-4 {
1234
+ padding: calc(var(--lui-spacing) * 4);
1235
+ }
1236
+ .lui\:p-6 {
1237
+ padding: calc(var(--lui-spacing) * 6);
1238
+ }
1239
+ .lui\:p-\[3px\] {
1240
+ padding: 3px;
1241
+ }
1242
+ .lui\:p-\[5\%\] {
1243
+ padding: 5%;
1244
+ }
1245
+ .lui\:px-1 {
1246
+ padding-inline: var(--lui-spacing);
1247
+ }
1248
+ .lui\:px-1\.5 {
1249
+ padding-inline: calc(var(--lui-spacing) * 1.5);
1250
+ }
1251
+ .lui\:px-2 {
1252
+ padding-inline: calc(var(--lui-spacing) * 2);
1253
+ }
1254
+ .lui\:px-2\.5 {
1255
+ padding-inline: calc(var(--lui-spacing) * 2.5);
1256
+ }
1257
+ .lui\:px-3 {
1258
+ padding-inline: calc(var(--lui-spacing) * 3);
1259
+ }
1260
+ .lui\:px-4 {
1261
+ padding-inline: calc(var(--lui-spacing) * 4);
1262
+ }
1263
+ .lui\:px-6 {
1264
+ padding-inline: calc(var(--lui-spacing) * 6);
1265
+ }
1266
+ .lui\:px-\[calc\(--spacing\(3\.5\)-1px\)\] {
1267
+ padding-inline: calc(calc(var(--lui-spacing) * 3.5) - 1px);
1268
+ }
1269
+ .lui\:py-0\.5 {
1270
+ padding-block: calc(var(--lui-spacing) * 0.5);
1271
+ }
1272
+ .lui\:py-1 {
1273
+ padding-block: var(--lui-spacing);
1274
+ }
1275
+ .lui\:py-1\.5 {
1276
+ padding-block: calc(var(--lui-spacing) * 1.5);
1277
+ }
1278
+ .lui\:py-2 {
1279
+ padding-block: calc(var(--lui-spacing) * 2);
1280
+ }
1281
+ .lui\:py-2\.5 {
1282
+ padding-block: calc(var(--lui-spacing) * 2.5);
1283
+ }
1284
+ .lui\:py-4 {
1285
+ padding-block: calc(var(--lui-spacing) * 4);
1286
+ }
1287
+ .lui\:py-6 {
1288
+ padding-block: calc(var(--lui-spacing) * 6);
1289
+ }
1290
+ .lui\:py-9 {
1291
+ padding-block: calc(var(--lui-spacing) * 9);
1292
+ }
1293
+ .lui\:py-\[calc\(--spacing\(1\)\+1px\)\] {
1294
+ padding-block: calc(var(--lui-spacing) + 1px);
1295
+ }
1296
+ .lui\:py-\[calc\(--spacing\(2\)\+1px\)\] {
1297
+ padding-block: calc(calc(var(--lui-spacing) * 2) + 1px);
1298
+ }
1299
+ .lui\:py-\[calc\(--spacing\(2\.5\)-1px\)\] {
1300
+ padding-block: calc(calc(var(--lui-spacing) * 2.5) - 1px);
1301
+ }
1302
+ .lui\:pt-1 {
1303
+ padding-top: var(--lui-spacing);
1304
+ }
1305
+ .lui\:pt-2 {
1306
+ padding-top: calc(var(--lui-spacing) * 2);
1307
+ }
1308
+ .lui\:pt-3 {
1309
+ padding-top: calc(var(--lui-spacing) * 3);
1310
+ }
1311
+ .lui\:pt-6 {
1312
+ padding-top: calc(var(--lui-spacing) * 6);
1313
+ }
1314
+ .lui\:pr-2 {
1315
+ padding-right: calc(var(--lui-spacing) * 2);
1316
+ }
1317
+ .lui\:pr-3 {
1318
+ padding-right: calc(var(--lui-spacing) * 3);
1319
+ }
1320
+ .lui\:pr-4 {
1321
+ padding-right: calc(var(--lui-spacing) * 4);
1322
+ }
1323
+ .lui\:pr-10 {
1324
+ padding-right: calc(var(--lui-spacing) * 10);
1325
+ }
1326
+ .lui\:pr-\[calc\(--spacing\(10\)-1px\)\] {
1327
+ padding-right: calc(calc(var(--lui-spacing) * 10) - 1px);
1328
+ }
1329
+ .lui\:pb-3 {
1330
+ padding-bottom: calc(var(--lui-spacing) * 3);
1331
+ }
1332
+ .lui\:pb-4 {
1333
+ padding-bottom: calc(var(--lui-spacing) * 4);
1334
+ }
1335
+ .lui\:pl-4 {
1336
+ padding-left: calc(var(--lui-spacing) * 4);
1337
+ }
1338
+ .lui\:pl-5 {
1339
+ padding-left: calc(var(--lui-spacing) * 5);
1340
+ }
1341
+ .lui\:pl-11 {
1342
+ padding-left: calc(var(--lui-spacing) * 11);
1343
+ }
1344
+ .lui\:pl-\[calc\(--spacing\(3\.5\)-1px\)\] {
1345
+ padding-left: calc(calc(var(--lui-spacing) * 3.5) - 1px);
1346
+ }
1347
+ .lui\:text-center {
1348
+ text-align: center;
1349
+ }
1350
+ .lui\:text-left {
1351
+ text-align: left;
1352
+ }
1353
+ .lui\:text-right {
1354
+ text-align: right;
1355
+ }
1356
+ .lui\:align-middle {
1357
+ vertical-align: middle;
1358
+ }
1359
+ .lui\:text-2xl {
1360
+ font-size: var(--lui-text-2xl);
1361
+ line-height: var(--tw-leading, var(--lui-text-2xl--line-height));
1362
+ }
1363
+ .lui\:text-2xl\/8 {
1364
+ font-size: var(--lui-text-2xl);
1365
+ line-height: calc(var(--lui-spacing) * 8);
1366
+ }
1367
+ .lui\:text-4xl {
1368
+ font-size: var(--lui-text-4xl);
1369
+ line-height: var(--tw-leading, var(--lui-text-4xl--line-height));
1370
+ }
1371
+ .lui\:text-base {
1372
+ font-size: var(--lui-text-base);
1373
+ line-height: var(--tw-leading, var(--lui-text-base--line-height));
1374
+ }
1375
+ .lui\:text-base\/6 {
1376
+ font-size: var(--lui-text-base);
1377
+ line-height: calc(var(--lui-spacing) * 6);
1378
+ }
1379
+ .lui\:text-lg {
1380
+ font-size: var(--lui-text-lg);
1381
+ line-height: var(--tw-leading, var(--lui-text-lg--line-height));
1382
+ }
1383
+ .lui\:text-lg\/6 {
1384
+ font-size: var(--lui-text-lg);
1385
+ line-height: calc(var(--lui-spacing) * 6);
1386
+ }
1387
+ .lui\:text-sm {
1388
+ font-size: var(--lui-text-sm);
1389
+ line-height: var(--tw-leading, var(--lui-text-sm--line-height));
1390
+ }
1391
+ .lui\:text-sm\/5 {
1392
+ font-size: var(--lui-text-sm);
1393
+ line-height: calc(var(--lui-spacing) * 5);
1394
+ }
1395
+ .lui\:text-sm\/6 {
1396
+ font-size: var(--lui-text-sm);
1397
+ line-height: calc(var(--lui-spacing) * 6);
1398
+ }
1399
+ .lui\:text-sm\/relaxed {
1400
+ font-size: var(--lui-text-sm);
1401
+ line-height: var(--lui-leading-relaxed);
1402
+ }
1403
+ .lui\:text-xl {
1404
+ font-size: var(--lui-text-xl);
1405
+ line-height: var(--tw-leading, var(--lui-text-xl--line-height));
1406
+ }
1407
+ .lui\:text-xs {
1408
+ font-size: var(--lui-text-xs);
1409
+ line-height: var(--tw-leading, var(--lui-text-xs--line-height));
1410
+ }
1411
+ .lui\:text-\[0\.6875rem\] {
1412
+ font-size: 0.6875rem;
1413
+ }
1414
+ .lui\:text-\[48px\] {
1415
+ font-size: 48px;
1416
+ }
1417
+ .lui\:leading-4 {
1418
+ --tw-leading: calc(var(--lui-spacing) * 4);
1419
+ line-height: calc(var(--lui-spacing) * 4);
1420
+ }
1421
+ .lui\:leading-\[18px\] {
1422
+ --tw-leading: 18px;
1423
+ line-height: 18px;
1424
+ }
1425
+ .lui\:leading-none {
1426
+ --tw-leading: 1;
1427
+ line-height: 1;
1428
+ }
1429
+ .lui\:leading-relaxed {
1430
+ --tw-leading: var(--lui-leading-relaxed);
1431
+ line-height: var(--lui-leading-relaxed);
1432
+ }
1433
+ .lui\:leading-snug {
1434
+ --tw-leading: var(--lui-leading-snug);
1435
+ line-height: var(--lui-leading-snug);
1436
+ }
1437
+ .lui\:font-bold {
1438
+ --tw-font-weight: var(--lui-font-weight-bold);
1439
+ font-weight: var(--lui-font-weight-bold);
1440
+ }
1441
+ .lui\:font-medium {
1442
+ --tw-font-weight: var(--lui-font-weight-medium);
1443
+ font-weight: var(--lui-font-weight-medium);
1444
+ }
1445
+ .lui\:font-normal {
1446
+ --tw-font-weight: var(--lui-font-weight-normal);
1447
+ font-weight: var(--lui-font-weight-normal);
1448
+ }
1449
+ .lui\:font-semibold {
1450
+ --tw-font-weight: var(--lui-font-weight-semibold);
1451
+ font-weight: var(--lui-font-weight-semibold);
1452
+ }
1453
+ .lui\:tracking-tight {
1454
+ --tw-tracking: var(--lui-tracking-tight);
1455
+ letter-spacing: var(--lui-tracking-tight);
1456
+ }
1457
+ .lui\:tracking-widest {
1458
+ --tw-tracking: var(--lui-tracking-widest);
1459
+ letter-spacing: var(--lui-tracking-widest);
1460
+ }
1461
+ .lui\:text-balance {
1462
+ text-wrap: balance;
1463
+ }
1464
+ .lui\:text-pretty {
1465
+ text-wrap: pretty;
1466
+ }
1467
+ .lui\:break-words {
1468
+ overflow-wrap: break-word;
1469
+ }
1470
+ .lui\:whitespace-nowrap {
1471
+ white-space: nowrap;
1472
+ }
1473
+ .lui\:text-blue-600 {
1474
+ color: var(--lui-color-blue-600);
1475
+ }
1476
+ .lui\:text-destructive-text {
1477
+ color: var(--lui-theme-destructive-text);
1478
+ }
1479
+ .lui\:text-focus {
1480
+ color: var(--lui-theme-focus);
1481
+ }
1482
+ .lui\:text-foreground {
1483
+ color: var(--lui-theme-foreground);
1484
+ }
1485
+ .lui\:text-foreground-faint {
1486
+ color: var(--lui-theme-foreground-faint);
1487
+ }
1488
+ .lui\:text-foreground-invert {
1489
+ color: var(--lui-theme-foreground-invert);
1490
+ }
1491
+ .lui\:text-foreground-muted {
1492
+ color: var(--lui-theme-foreground-muted);
1493
+ }
1494
+ .lui\:text-foreground-secondary {
1495
+ color: var(--lui-theme-foreground-secondary);
1496
+ }
1497
+ .lui\:text-gray-700 {
1498
+ color: var(--lui-color-gray-700);
1499
+ }
1500
+ .lui\:text-green-600 {
1501
+ color: var(--lui-color-green-600);
1502
+ }
1503
+ .lui\:text-interactive {
1504
+ color: var(--lui-theme-interactive);
1505
+ }
1506
+ .lui\:text-red-600 {
1507
+ color: var(--lui-color-red-600);
1508
+ }
1509
+ .lui\:text-success-text {
1510
+ color: var(--lui-theme-success-text);
1511
+ }
1512
+ .lui\:text-tooltip-text {
1513
+ color: var(--lui-theme-tooltip-text);
1514
+ }
1515
+ .lui\:text-warning-text {
1516
+ color: var(--lui-theme-warning-text);
1517
+ }
1518
+ .lui\:text-zinc-500 {
1519
+ color: var(--lui-color-zinc-500);
1520
+ }
1521
+ .lui\:uppercase {
1522
+ text-transform: uppercase;
1523
+ }
1524
+ .lui\:tabular-nums {
1525
+ --tw-numeric-spacing: tabular-nums;
1526
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
1527
+ }
1528
+ .lui\:underline {
1529
+ text-decoration-line: underline;
1530
+ }
1531
+ .lui\:decoration-dotted {
1532
+ text-decoration-style: dotted;
1533
+ }
1534
+ .lui\:underline-offset-2 {
1535
+ text-underline-offset: 2px;
1536
+ }
1537
+ .lui\:opacity-0 {
1538
+ opacity: 0%;
1539
+ }
1540
+ .lui\:opacity-50 {
1541
+ opacity: 50%;
1542
+ }
1543
+ .lui\:opacity-100 {
1544
+ opacity: 100%;
1545
+ }
1546
+ .lui\:shadow {
1547
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1548
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1549
+ }
1550
+ .lui\:shadow-lg {
1551
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1552
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1553
+ }
1554
+ .lui\:shadow-md {
1555
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1556
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1557
+ }
1558
+ .lui\:shadow-sm {
1559
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1560
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1561
+ }
1562
+ .lui\:shadow-xl {
1563
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1564
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1565
+ }
1566
+ .lui\:ring-1 {
1567
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1568
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1569
+ }
1570
+ .lui\:ring-black\/5 {
1571
+ --tw-ring-color: var(--lui-color-black);
1572
+ @supports (color: color-mix(in lab, red, red)) {
1573
+ --tw-ring-color: color-mix(in oklab, var(--lui-color-black) 5%, transparent);
1574
+ }
1575
+ }
1576
+ .lui\:ring-border {
1577
+ --tw-ring-color: var(--lui-theme-border);
1578
+ }
1579
+ .lui\:outline-hidden {
1580
+ --tw-outline-style: none;
1581
+ outline-style: none;
1582
+ @media (forced-colors: active) {
1583
+ outline: 2px solid transparent;
1584
+ outline-offset: 2px;
1585
+ }
1586
+ }
1587
+ .lui\:outline {
1588
+ outline-style: var(--tw-outline-style);
1589
+ outline-width: 1px;
1590
+ }
1591
+ .lui\:-outline-offset-1 {
1592
+ outline-offset: calc(1px * -1);
1593
+ }
1594
+ .lui\:outline-black\/\(--ring-opacity\) {
1595
+ outline-color: var(--lui-color-black);
1596
+ @supports (color: color-mix(in lab, red, red)) {
1597
+ outline-color: color-mix(in oklab, var(--lui-color-black) var(--ring-opacity), transparent);
1598
+ }
1599
+ }
1600
+ .lui\:backdrop-blur-\[24px\] {
1601
+ --tw-backdrop-blur: blur(24px);
1602
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1603
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1604
+ }
1605
+ .lui\:backdrop-saturate-150 {
1606
+ --tw-backdrop-saturate: saturate(150%);
1607
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1608
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1609
+ }
1610
+ .lui\:transition {
1611
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
1612
+ transition-timing-function: var(--tw-ease, var(--lui-default-transition-timing-function));
1613
+ transition-duration: var(--tw-duration, var(--lui-default-transition-duration));
1614
+ }
1615
+ .lui\:transition-all {
1616
+ transition-property: all;
1617
+ transition-timing-function: var(--tw-ease, var(--lui-default-transition-timing-function));
1618
+ transition-duration: var(--tw-duration, var(--lui-default-transition-duration));
1619
+ }
1620
+ .lui\:transition-colors {
1621
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
1622
+ transition-timing-function: var(--tw-ease, var(--lui-default-transition-timing-function));
1623
+ transition-duration: var(--tw-duration, var(--lui-default-transition-duration));
1624
+ }
1625
+ .lui\:transition-opacity {
1626
+ transition-property: opacity;
1627
+ transition-timing-function: var(--tw-ease, var(--lui-default-transition-timing-function));
1628
+ transition-duration: var(--tw-duration, var(--lui-default-transition-duration));
1629
+ }
1630
+ .lui\:transition-transform {
1631
+ transition-property: transform, translate, scale, rotate;
1632
+ transition-timing-function: var(--tw-ease, var(--lui-default-transition-timing-function));
1633
+ transition-duration: var(--tw-duration, var(--lui-default-transition-duration));
1634
+ }
1635
+ .lui\:duration-150 {
1636
+ --tw-duration: 150ms;
1637
+ transition-duration: 150ms;
1638
+ }
1639
+ .lui\:duration-200 {
1640
+ --tw-duration: 200ms;
1641
+ transition-duration: 200ms;
1642
+ }
1643
+ .lui\:duration-300 {
1644
+ --tw-duration: 300ms;
1645
+ transition-duration: 300ms;
1646
+ }
1647
+ .lui\:ease-\[cubic-bezier\(0\.16\,1\,0\.3\,1\)\] {
1648
+ --tw-ease: cubic-bezier(0.16,1,0.3,1);
1649
+ transition-timing-function: cubic-bezier(0.16,1,0.3,1);
1650
+ }
1651
+ .lui\:ease-in-out {
1652
+ --tw-ease: var(--lui-ease-in-out);
1653
+ transition-timing-function: var(--lui-ease-in-out);
1654
+ }
1655
+ .lui\:ease-out {
1656
+ --tw-ease: var(--lui-ease-out);
1657
+ transition-timing-function: var(--lui-ease-out);
1658
+ }
1659
+ .lui\:will-change-transform {
1660
+ will-change: transform;
1661
+ }
1662
+ .lui\:outline-none {
1663
+ --tw-outline-style: none;
1664
+ outline-style: none;
1665
+ }
1666
+ .lui\:select-all {
1667
+ -webkit-user-select: all;
1668
+ user-select: all;
1669
+ }
1670
+ .lui\:select-none {
1671
+ -webkit-user-select: none;
1672
+ user-select: none;
1673
+ }
1674
+ .lui\:\[--avatar-radius\:20\%\] {
1675
+ --avatar-radius: 20%;
1676
+ }
1677
+ .lui\:\[--btn-bg\:var\(--lui-theme-destructive\)\] {
1678
+ --btn-bg: var(--lui-theme-destructive);
1679
+ }
1680
+ .lui\:\[--btn-bg\:var\(--lui-theme-surface-invert\)\] {
1681
+ --btn-bg: var(--lui-theme-surface-invert);
1682
+ }
1683
+ .lui\:\[--btn-border\:var\(--lui-theme-border-invert\)\] {
1684
+ --btn-border: var(--lui-theme-border-invert);
1685
+ }
1686
+ .lui\:\[--btn-border\:var\(--lui-theme-destructive-border\)\] {
1687
+ --btn-border: var(--lui-theme-destructive-border);
1688
+ }
1689
+ .lui\:\[--btn-hover-overlay\:var\(--lui-theme-foreground-invert\)\]\/10 {
1690
+ --btn-hover-overlay: var(--lui-theme-foreground-invert);
1691
+ @supports (color: color-mix(in lab, red, red)) {
1692
+ --btn-hover-overlay: color-mix(in oklab, var(--lui-theme-foreground-invert) 10%, transparent);
1693
+ }
1694
+ }
1695
+ .lui\:\[--btn-icon\:var\(--lui-theme-foreground-faint\)\] {
1696
+ --btn-icon: var(--lui-theme-foreground-faint);
1697
+ }
1698
+ .lui\:\[--btn-icon\:var\(--lui-theme-foreground-invert\)\] {
1699
+ --btn-icon: var(--lui-theme-foreground-invert);
1700
+ }
1701
+ .lui\:\[--btn-icon\:var\(--lui-theme-foreground-muted\)\] {
1702
+ --btn-icon: var(--lui-theme-foreground-muted);
1703
+ }
1704
+ .lui\:\[--checkbox-check\:var\(--lui-theme-foreground-invert\)\] {
1705
+ --checkbox-check: var(--lui-theme-foreground-invert);
1706
+ }
1707
+ .lui\:\[--checkbox-checked-bg\:var\(--lui-theme-surface-invert\)\] {
1708
+ --checkbox-checked-bg: var(--lui-theme-surface-invert);
1709
+ }
1710
+ .lui\:\[--checkbox-checked-border\:var\(--lui-theme-border-invert\)\] {
1711
+ --checkbox-checked-border: var(--lui-theme-border-invert);
1712
+ }
1713
+ .lui\:\[--gutter\:--spacing\(8\)\] {
1714
+ --gutter: calc(var(--lui-spacing) * 8);
1715
+ }
1716
+ .lui\:\[--radio-checked-bg\:var\(--lui-theme-surface-invert\)\] {
1717
+ --radio-checked-bg: var(--lui-theme-surface-invert);
1718
+ }
1719
+ .lui\:\[--radio-checked-border\:var\(--lui-theme-border-invert\)\] {
1720
+ --radio-checked-border: var(--lui-theme-border-invert);
1721
+ }
1722
+ .lui\:\[--radio-indicator\:var\(--lui-theme-foreground-invert\)\] {
1723
+ --radio-indicator: var(--lui-theme-foreground-invert);
1724
+ }
1725
+ .lui\:\[--ring-opacity\:20\%\] {
1726
+ --ring-opacity: 20%;
1727
+ }
1728
+ .lui\:\[--switch-bg-ring\:var\(--lui-theme-border-invert\)\] {
1729
+ --switch-bg-ring: var(--lui-theme-border-invert);
1730
+ }
1731
+ .lui\:\[--switch-bg\:var\(--lui-theme-surface-invert\)\] {
1732
+ --switch-bg: var(--lui-theme-surface-invert);
1733
+ }
1734
+ .lui\:\[--switch-ring\:var\(--lui-theme-border-invert\)\] {
1735
+ --switch-ring: var(--lui-theme-border-invert);
1736
+ }
1737
+ .lui\:\[--switch-shadow\:var\(--lui-color-black\)\]\/10 {
1738
+ --switch-shadow: var(--lui-color-black);
1739
+ @supports (color: color-mix(in lab, red, red)) {
1740
+ --switch-shadow: color-mix(in oklab, var(--lui-color-black) 10%, transparent);
1741
+ }
1742
+ }
1743
+ .lui\:\[--switch\:white\] {
1744
+ --switch: white;
1745
+ }
1746
+ .lui\:ring-inset {
1747
+ --tw-ring-inset: inset;
1748
+ }
1749
+ :is(.lui\:\*\:rounded-\(--avatar-radius\) > *) {
1750
+ border-radius: var(--avatar-radius);
1751
+ }
1752
+ :is(.lui\:\*\:rounded-full > *) {
1753
+ border-radius: calc(infinity * 1px);
1754
+ }
1755
+ .lui\:group-last\:border-b-0:is(:where(.lui\:group):last-child *) {
1756
+ border-bottom-style: var(--tw-border-style);
1757
+ border-bottom-width: 0px;
1758
+ }
1759
+ @media (hover: hover) {
1760
+ .lui\:group-hover\:animate-icon-bounce:is(:where(.lui\:group):hover *) {
1761
+ animation: icon-bounce 350ms ease-out;
1762
+ }
1763
+ .lui\:group-hover\:border-border-hover:is(:where(.lui\:group):hover *) {
1764
+ border-color: var(--lui-theme-border-hover);
1765
+ }
1766
+ .lui\:group-hover\:text-foreground-secondary:is(:where(.lui\:group):hover *) {
1767
+ color: var(--lui-theme-foreground-secondary);
1768
+ }
1769
+ .lui\:group-hover\/sort\:text-foreground-muted:is(:where(.lui\:group\/sort):hover *) {
1770
+ color: var(--lui-theme-foreground-muted);
1771
+ }
1772
+ }
1773
+ .lui\:group-has-\[\:indeterminate\]\/cb\:opacity-0:is(:where(.lui\:group\/cb):has(:is(:indeterminate)) *) {
1774
+ opacity: 0%;
1775
+ }
1776
+ .lui\:group-has-\[\:indeterminate\]\/cb\:opacity-100:is(:where(.lui\:group\/cb):has(:is(:indeterminate)) *) {
1777
+ opacity: 100%;
1778
+ }
1779
+ .lui\:group-data-checked\:translate-x-4:is(:where(.lui\:group)[data-checked] *) {
1780
+ --tw-translate-x: calc(var(--lui-spacing) * 4);
1781
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1782
+ }
1783
+ .lui\:group-data-checked\:border-transparent:is(:where(.lui\:group)[data-checked] *) {
1784
+ border-color: transparent;
1785
+ }
1786
+ .lui\:group-data-checked\:bg-\(--checkbox-checked-border\):is(:where(.lui\:group)[data-checked] *) {
1787
+ background-color: var(--checkbox-checked-border);
1788
+ }
1789
+ .lui\:group-data-checked\:bg-\(--radio-checked-border\):is(:where(.lui\:group)[data-checked] *) {
1790
+ background-color: var(--radio-checked-border);
1791
+ }
1792
+ .lui\:group-data-checked\:bg-\(--switch\):is(:where(.lui\:group)[data-checked] *) {
1793
+ background-color: var(--switch);
1794
+ }
1795
+ .lui\:group-data-checked\:opacity-100:is(:where(.lui\:group)[data-checked] *) {
1796
+ opacity: 100%;
1797
+ }
1798
+ .lui\:group-data-checked\:shadow-\(--switch-shadow\):is(:where(.lui\:group)[data-checked] *) {
1799
+ --tw-shadow: var(--switch-shadow);
1800
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1801
+ }
1802
+ .lui\:group-data-checked\:ring-\(--switch-ring\):is(:where(.lui\:group)[data-checked] *) {
1803
+ --tw-ring-color: var(--switch-ring);
1804
+ }
1805
+ @media (hover: hover) {
1806
+ .lui\:group-hover\:group-data-checked\:border-transparent:is(:where(.lui\:group):hover *):is(:where(.lui\:group)[data-checked] *) {
1807
+ border-color: transparent;
1808
+ }
1809
+ }
1810
+ .lui\:group-data-disabled\:border-border-strong:is(:where(.lui\:group)[data-disabled] *) {
1811
+ border-color: var(--lui-theme-border-strong);
1812
+ }
1813
+ .lui\:group-data-disabled\:bg-surface-hover:is(:where(.lui\:group)[data-disabled] *) {
1814
+ background-color: var(--lui-theme-surface-hover);
1815
+ }
1816
+ .lui\:group-data-disabled\:opacity-50:is(:where(.lui\:group)[data-disabled] *) {
1817
+ opacity: 50%;
1818
+ }
1819
+ .lui\:group-data-disabled\:\[--checkbox-check\:var\(--lui-theme-foreground\)\]\/50:is(:where(.lui\:group)[data-disabled] *) {
1820
+ --checkbox-check: var(--lui-theme-foreground);
1821
+ @supports (color: color-mix(in lab, red, red)) {
1822
+ --checkbox-check: color-mix(in oklab, var(--lui-theme-foreground) 50%, transparent);
1823
+ }
1824
+ }
1825
+ .lui\:group-data-disabled\:\[--radio-indicator\:var\(--lui-theme-foreground\)\]\/50:is(:where(.lui\:group)[data-disabled] *) {
1826
+ --radio-indicator: var(--lui-theme-foreground);
1827
+ @supports (color: color-mix(in lab, red, red)) {
1828
+ --radio-indicator: color-mix(in oklab, var(--lui-theme-foreground) 50%, transparent);
1829
+ }
1830
+ }
1831
+ .lui\:group-data-checked\:group-data-disabled\:bg-white:is(:where(.lui\:group)[data-checked] *):is(:where(.lui\:group)[data-disabled] *) {
1832
+ background-color: var(--lui-color-white);
1833
+ }
1834
+ .lui\:group-data-checked\:group-data-disabled\:shadow-sm:is(:where(.lui\:group)[data-checked] *):is(:where(.lui\:group)[data-disabled] *) {
1835
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1836
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1837
+ }
1838
+ .lui\:group-data-checked\:group-data-disabled\:ring-black\/5:is(:where(.lui\:group)[data-checked] *):is(:where(.lui\:group)[data-disabled] *) {
1839
+ --tw-ring-color: var(--lui-color-black);
1840
+ @supports (color: color-mix(in lab, red, red)) {
1841
+ --tw-ring-color: color-mix(in oklab, var(--lui-color-black) 5%, transparent);
1842
+ }
1843
+ }
1844
+ .lui\:group-data-focus\:outline:is(:where(.lui\:group)[data-focus] *) {
1845
+ outline-style: var(--tw-outline-style);
1846
+ outline-width: 1px;
1847
+ }
1848
+ .lui\:group-data-focus\:outline-2:is(:where(.lui\:group)[data-focus] *) {
1849
+ outline-style: var(--tw-outline-style);
1850
+ outline-width: 2px;
1851
+ }
1852
+ .lui\:group-data-focus\:outline-offset-2:is(:where(.lui\:group)[data-focus] *) {
1853
+ outline-offset: 2px;
1854
+ }
1855
+ .lui\:group-data-focus\:outline-focus:is(:where(.lui\:group)[data-focus] *) {
1856
+ outline-color: var(--lui-theme-focus);
1857
+ }
1858
+ .lui\:group-data-indeterminate\:opacity-0:is(:where(.lui\:group)[data-indeterminate] *) {
1859
+ opacity: 0%;
1860
+ }
1861
+ .lui\:group-data-indeterminate\:opacity-100:is(:where(.lui\:group)[data-indeterminate] *) {
1862
+ opacity: 100%;
1863
+ }
1864
+ .lui\:group-data-\[open\]\:translate-x-0:is(:where(.lui\:group)[data-open] *) {
1865
+ --tw-translate-x: 0px;
1866
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1867
+ }
1868
+ .lui\:group-data-\[open\]\:opacity-100:is(:where(.lui\:group)[data-open] *) {
1869
+ opacity: 100%;
1870
+ }
1871
+ .lui\:group-data-\[state\=open\]\:rotate-180:is(:where(.lui\:group)[data-state="open"] *) {
1872
+ rotate: 180deg;
1873
+ }
1874
+ .lui\:peer-checked\:opacity-100:is(:where(.lui\:peer):checked ~ *) {
1875
+ opacity: 100%;
1876
+ }
1877
+ .lui\:peer-indeterminate\:opacity-100:is(:where(.lui\:peer):indeterminate ~ *) {
1878
+ opacity: 100%;
1879
+ }
1880
+ .lui\:file\:mr-4::file-selector-button {
1881
+ margin-right: calc(var(--lui-spacing) * 4);
1882
+ }
1883
+ .lui\:file\:cursor-pointer::file-selector-button {
1884
+ cursor: pointer;
1885
+ }
1886
+ .lui\:file\:rounded-l-\[calc\(var\(--radius-lg\)-1px\)\]::file-selector-button {
1887
+ border-top-left-radius: calc(var(--radius-lg) - 1px);
1888
+ border-bottom-left-radius: calc(var(--radius-lg) - 1px);
1889
+ }
1890
+ .lui\:file\:border-0::file-selector-button {
1891
+ border-style: var(--tw-border-style);
1892
+ border-width: 0px;
1893
+ }
1894
+ .lui\:file\:bg-surface-tertiary::file-selector-button {
1895
+ background-color: var(--lui-theme-surface-tertiary);
1896
+ }
1897
+ .lui\:file\:px-\[calc\(--spacing\(3\.5\)-1px\)\]::file-selector-button {
1898
+ padding-inline: calc(calc(var(--lui-spacing) * 3.5) - 1px);
1899
+ }
1900
+ .lui\:file\:py-\[calc\(--spacing\(2\.5\)-1px\)\]::file-selector-button {
1901
+ padding-block: calc(calc(var(--lui-spacing) * 2.5) - 1px);
1902
+ }
1903
+ .lui\:placeholder\:text-foreground-muted::placeholder {
1904
+ color: var(--lui-theme-foreground-muted);
1905
+ }
1906
+ .lui\:backdrop\:bg-transparent::backdrop {
1907
+ background-color: transparent;
1908
+ }
1909
+ .lui\:before\:pointer-events-none::before {
1910
+ content: var(--tw-content);
1911
+ pointer-events: none;
1912
+ }
1913
+ .lui\:before\:absolute::before {
1914
+ content: var(--tw-content);
1915
+ position: absolute;
1916
+ }
1917
+ .lui\:before\:inset-0::before {
1918
+ content: var(--tw-content);
1919
+ inset: 0px;
1920
+ }
1921
+ .lui\:before\:inset-px::before {
1922
+ content: var(--tw-content);
1923
+ inset: 1px;
1924
+ }
1925
+ .lui\:before\:-z-10::before {
1926
+ content: var(--tw-content);
1927
+ z-index: calc(10 * -1);
1928
+ }
1929
+ .lui\:before\:rounded-\[7px\]::before {
1930
+ content: var(--tw-content);
1931
+ border-radius: 7px;
1932
+ }
1933
+ .lui\:before\:rounded-\[calc\(0\.3125rem-1px\)\]::before {
1934
+ content: var(--tw-content);
1935
+ border-radius: calc(0.3125rem - 1px);
1936
+ }
1937
+ .lui\:before\:rounded-\[calc\(var\(--lui-radius-lg\)-1px\)\]::before {
1938
+ content: var(--tw-content);
1939
+ border-radius: calc(var(--lui-radius-lg) - 1px);
1940
+ }
1941
+ .lui\:before\:rounded-full::before {
1942
+ content: var(--tw-content);
1943
+ border-radius: calc(infinity * 1px);
1944
+ }
1945
+ .lui\:before\:bg-\(--btn-bg\)::before {
1946
+ content: var(--tw-content);
1947
+ background-color: var(--btn-bg);
1948
+ }
1949
+ .lui\:before\:bg-surface-input::before {
1950
+ content: var(--tw-content);
1951
+ background-color: var(--lui-theme-surface-input);
1952
+ }
1953
+ .lui\:before\:shadow-sm::before {
1954
+ content: var(--tw-content);
1955
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1956
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1957
+ }
1958
+ .lui\:group-data-checked\:before\:bg-\(--checkbox-checked-bg\):is(:where(.lui\:group)[data-checked] *)::before {
1959
+ content: var(--tw-content);
1960
+ background-color: var(--checkbox-checked-bg);
1961
+ }
1962
+ .lui\:group-data-checked\:before\:bg-\(--radio-checked-bg\):is(:where(.lui\:group)[data-checked] *)::before {
1963
+ content: var(--tw-content);
1964
+ background-color: var(--radio-checked-bg);
1965
+ }
1966
+ .lui\:group-data-disabled\:before\:bg-transparent:is(:where(.lui\:group)[data-disabled] *)::before {
1967
+ content: var(--tw-content);
1968
+ background-color: transparent;
1969
+ }
1970
+ .lui\:after\:pointer-events-none::after {
1971
+ content: var(--tw-content);
1972
+ pointer-events: none;
1973
+ }
1974
+ .lui\:after\:absolute::after {
1975
+ content: var(--tw-content);
1976
+ position: absolute;
1977
+ }
1978
+ .lui\:after\:inset-0::after {
1979
+ content: var(--tw-content);
1980
+ inset: 0px;
1981
+ }
1982
+ .lui\:after\:inset-x-0::after {
1983
+ content: var(--tw-content);
1984
+ inset-inline: 0px;
1985
+ }
1986
+ .lui\:after\:-top-\[1px\]::after {
1987
+ content: var(--tw-content);
1988
+ top: calc(1px * -1);
1989
+ }
1990
+ .lui\:after\:bottom-\[-5px\]::after {
1991
+ content: var(--tw-content);
1992
+ bottom: -5px;
1993
+ }
1994
+ .lui\:after\:left-\[1px\]::after {
1995
+ content: var(--tw-content);
1996
+ left: 1px;
1997
+ }
1998
+ .lui\:after\:-z-10::after {
1999
+ content: var(--tw-content);
2000
+ z-index: calc(10 * -1);
2001
+ }
2002
+ .lui\:after\:h-0\.5::after {
2003
+ content: var(--tw-content);
2004
+ height: calc(var(--lui-spacing) * 0.5);
2005
+ }
2006
+ .lui\:after\:h-\[8\.2px\]::after {
2007
+ content: var(--tw-content);
2008
+ height: 8.2px;
2009
+ }
2010
+ .lui\:after\:w-\[3\.75px\]::after {
2011
+ content: var(--tw-content);
2012
+ width: 3.75px;
2013
+ }
2014
+ .lui\:after\:-rotate-45::after {
2015
+ content: var(--tw-content);
2016
+ rotate: calc(45deg * -1);
2017
+ }
2018
+ .lui\:after\:rounded-\[calc\(0\.3125rem-1px\)\]::after {
2019
+ content: var(--tw-content);
2020
+ border-radius: calc(0.3125rem - 1px);
2021
+ }
2022
+ .lui\:after\:rounded-\[calc\(var\(--lui-radius-lg\)-1px\)\]::after {
2023
+ content: var(--tw-content);
2024
+ border-radius: calc(var(--lui-radius-lg) - 1px);
2025
+ }
2026
+ .lui\:after\:rounded-full::after {
2027
+ content: var(--tw-content);
2028
+ border-radius: calc(infinity * 1px);
2029
+ }
2030
+ .lui\:after\:rounded-lg::after {
2031
+ content: var(--tw-content);
2032
+ border-radius: var(--lui-radius-lg);
2033
+ }
2034
+ .lui\:after\:border-\[1px\]::after {
2035
+ content: var(--tw-content);
2036
+ border-style: var(--tw-border-style);
2037
+ border-width: 1px;
2038
+ }
2039
+ .lui\:after\:border-transparent::after {
2040
+ content: var(--tw-content);
2041
+ border-color: transparent;
2042
+ }
2043
+ .lui\:after\:border-r-foreground-faint::after {
2044
+ content: var(--tw-content);
2045
+ border-right-color: var(--lui-theme-foreground-faint);
2046
+ }
2047
+ .lui\:after\:border-r-foreground-invert::after {
2048
+ content: var(--tw-content);
2049
+ border-right-color: var(--lui-theme-foreground-invert);
2050
+ }
2051
+ .lui\:after\:border-r-success-indicator::after {
2052
+ content: var(--tw-content);
2053
+ border-right-color: var(--lui-theme-success-indicator);
2054
+ }
2055
+ .lui\:after\:border-r-warning-indicator::after {
2056
+ content: var(--tw-content);
2057
+ border-right-color: var(--lui-theme-warning-indicator);
2058
+ }
2059
+ .lui\:after\:border-l-foreground-faint::after {
2060
+ content: var(--tw-content);
2061
+ border-left-color: var(--lui-theme-foreground-faint);
2062
+ }
2063
+ .lui\:after\:border-l-foreground-invert::after {
2064
+ content: var(--tw-content);
2065
+ border-left-color: var(--lui-theme-foreground-invert);
2066
+ }
2067
+ .lui\:after\:border-l-success-indicator::after {
2068
+ content: var(--tw-content);
2069
+ border-left-color: var(--lui-theme-success-indicator);
2070
+ }
2071
+ .lui\:after\:border-l-warning-indicator::after {
2072
+ content: var(--tw-content);
2073
+ border-left-color: var(--lui-theme-warning-indicator);
2074
+ }
2075
+ .lui\:after\:bg-foreground::after {
2076
+ content: var(--tw-content);
2077
+ background-color: var(--lui-theme-foreground);
2078
+ }
2079
+ .lui\:after\:opacity-0::after {
2080
+ content: var(--tw-content);
2081
+ opacity: 0%;
2082
+ }
2083
+ .lui\:after\:shadow-\[inset_0_1px_--theme\(--color-white\/15\%\)\]::after {
2084
+ content: var(--tw-content);
2085
+ --tw-shadow: inset 0 1px var(--tw-shadow-color, var(--lui-color-white));
2086
+ @supports (color: color-mix(in lab, red, red)) {
2087
+ --tw-shadow: inset 0 1px var(--tw-shadow-color, color-mix(in oklab, var(--lui-color-white) 15%, transparent));
2088
+ }
2089
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2090
+ }
2091
+ .lui\:after\:shadow-\[shadow\:inset_0_1px_--theme\(--color-white\/15\%\)\]::after {
2092
+ content: var(--tw-content);
2093
+ --tw-shadow: inset 0 1px var(--tw-shadow-color, var(--lui-color-white));
2094
+ @supports (color: color-mix(in lab, red, red)) {
2095
+ --tw-shadow: inset 0 1px var(--tw-shadow-color, color-mix(in oklab, var(--lui-color-white) 15%, transparent));
2096
+ }
2097
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2098
+ }
2099
+ .lui\:after\:ring-transparent::after {
2100
+ content: var(--tw-content);
2101
+ --tw-ring-color: transparent;
2102
+ }
2103
+ .lui\:after\:transition-opacity::after {
2104
+ content: var(--tw-content);
2105
+ transition-property: opacity;
2106
+ transition-timing-function: var(--tw-ease, var(--lui-default-transition-timing-function));
2107
+ transition-duration: var(--tw-duration, var(--lui-default-transition-duration));
2108
+ }
2109
+ .lui\:after\:ring-inset::after {
2110
+ content: var(--tw-content);
2111
+ --tw-ring-inset: inset;
2112
+ }
2113
+ .lui\:first\:border-none:first-child {
2114
+ --tw-border-style: none;
2115
+ border-style: none;
2116
+ }
2117
+ .lui\:checked\:border-border-invert:checked {
2118
+ border-color: var(--lui-theme-border-invert);
2119
+ }
2120
+ .lui\:checked\:bg-surface-invert:checked {
2121
+ background-color: var(--lui-theme-surface-invert);
2122
+ }
2123
+ .lui\:indeterminate\:border-border-invert:indeterminate {
2124
+ border-color: var(--lui-theme-border-invert);
2125
+ }
2126
+ .lui\:indeterminate\:bg-surface-invert:indeterminate {
2127
+ background-color: var(--lui-theme-surface-invert);
2128
+ }
2129
+ .lui\:focus-within\:ring-2:focus-within {
2130
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2131
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2132
+ }
2133
+ .lui\:focus-within\:ring-focus:focus-within {
2134
+ --tw-ring-color: var(--lui-theme-focus);
2135
+ }
2136
+ .lui\:focus-within\:ring-offset-0:focus-within {
2137
+ --tw-ring-offset-width: 0px;
2138
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2139
+ }
2140
+ .lui\:focus-within\:after\:ring-2:focus-within::after {
2141
+ content: var(--tw-content);
2142
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2143
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2144
+ }
2145
+ .lui\:focus-within\:after\:ring-focus:focus-within::after {
2146
+ content: var(--tw-content);
2147
+ --tw-ring-color: var(--lui-theme-focus);
2148
+ }
2149
+ @media (hover: hover) {
2150
+ .lui\:hover\:cursor-pointer:hover {
2151
+ cursor: pointer;
2152
+ }
2153
+ .lui\:hover\:border-border-hover:hover {
2154
+ border-color: var(--lui-theme-border-hover);
2155
+ }
2156
+ .lui\:hover\:bg-destructive:hover {
2157
+ background-color: var(--lui-theme-destructive);
2158
+ }
2159
+ .lui\:hover\:bg-interactive:hover {
2160
+ background-color: var(--lui-theme-interactive);
2161
+ }
2162
+ .lui\:hover\:bg-interactive-subtle:hover {
2163
+ background-color: var(--lui-theme-interactive-subtle);
2164
+ }
2165
+ .lui\:hover\:bg-surface-hover:hover {
2166
+ background-color: var(--lui-theme-surface-hover);
2167
+ }
2168
+ .lui\:hover\:bg-surface-tertiary:hover {
2169
+ background-color: var(--lui-theme-surface-tertiary);
2170
+ }
2171
+ .lui\:hover\:bg-zinc-50:hover {
2172
+ background-color: var(--lui-color-zinc-50);
2173
+ }
2174
+ .lui\:hover\:text-focus:hover {
2175
+ color: var(--lui-theme-focus);
2176
+ }
2177
+ .lui\:hover\:text-foreground:hover {
2178
+ color: var(--lui-theme-foreground);
2179
+ }
2180
+ .lui\:hover\:text-foreground-secondary:hover {
2181
+ color: var(--lui-theme-foreground-secondary);
2182
+ }
2183
+ .lui\:hover\:underline:hover {
2184
+ text-decoration-line: underline;
2185
+ }
2186
+ .lui\:hover\:ring-black\/15:hover {
2187
+ --tw-ring-color: var(--lui-color-black);
2188
+ }
2189
+ @supports (color: color-mix(in lab, red, red)) {
2190
+ .lui\:hover\:ring-black\/15:hover {
2191
+ --tw-ring-color: color-mix(in oklab, var(--lui-color-black) 15%, transparent);
2192
+ }
2193
+ }
2194
+ .lui\:hover\:\[--btn-icon\:var\(--lui-theme-foreground-invert\)\]:hover {
2195
+ --btn-icon: var(--lui-theme-foreground-invert);
2196
+ }
2197
+ .lui\:hover\:\[--btn-icon\:var\(--lui-theme-foreground-muted\)\]:hover {
2198
+ --btn-icon: var(--lui-theme-foreground-muted);
2199
+ }
2200
+ .lui\:hover\:\[--btn-icon\:var\(--lui-theme-foreground-secondary\)\]:hover {
2201
+ --btn-icon: var(--lui-theme-foreground-secondary);
2202
+ }
2203
+ .lui\:hover\:after\:bg-\(--btn-hover-overlay\):hover::after {
2204
+ content: var(--tw-content);
2205
+ background-color: var(--btn-hover-overlay);
2206
+ }
2207
+ .lui\:checked\:hover\:border-border-invert:checked:hover {
2208
+ border-color: var(--lui-theme-border-invert);
2209
+ }
2210
+ .lui\:indeterminate\:hover\:border-border-invert:indeterminate:hover {
2211
+ border-color: var(--lui-theme-border-invert);
2212
+ }
2213
+ }
2214
+ .lui\:focus\:border-interactive:focus {
2215
+ border-color: var(--lui-theme-interactive);
2216
+ }
2217
+ .lui\:focus\:bg-surface-hover:focus {
2218
+ background-color: var(--lui-theme-surface-hover);
2219
+ }
2220
+ .lui\:focus\:ring-0:focus {
2221
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2222
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2223
+ }
2224
+ .lui\:focus\:ring-2:focus {
2225
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2226
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2227
+ }
2228
+ .lui\:focus\:ring-border:focus {
2229
+ --tw-ring-color: var(--lui-theme-border);
2230
+ }
2231
+ .lui\:focus\:ring-focus:focus {
2232
+ --tw-ring-color: var(--lui-theme-focus);
2233
+ }
2234
+ .lui\:focus\:ring-focus\/40:focus {
2235
+ --tw-ring-color: var(--lui-theme-focus);
2236
+ @supports (color: color-mix(in lab, red, red)) {
2237
+ --tw-ring-color: color-mix(in oklab, var(--lui-theme-focus) 40%, transparent);
2238
+ }
2239
+ }
2240
+ .lui\:focus\:outline-hidden:focus {
2241
+ --tw-outline-style: none;
2242
+ outline-style: none;
2243
+ @media (forced-colors: active) {
2244
+ outline: 2px solid transparent;
2245
+ outline-offset: 2px;
2246
+ }
2247
+ }
2248
+ .lui\:focus\:outline:focus {
2249
+ outline-style: var(--tw-outline-style);
2250
+ outline-width: 1px;
2251
+ }
2252
+ .lui\:focus\:outline-2:focus {
2253
+ outline-style: var(--tw-outline-style);
2254
+ outline-width: 2px;
2255
+ }
2256
+ .lui\:focus\:outline-offset-2:focus {
2257
+ outline-offset: 2px;
2258
+ }
2259
+ .lui\:focus\:outline-focus:focus {
2260
+ outline-color: var(--lui-theme-focus);
2261
+ }
2262
+ .lui\:focus\:outline-none:focus {
2263
+ --tw-outline-style: none;
2264
+ outline-style: none;
2265
+ }
2266
+ .lui\:focus-visible\:outline:focus-visible {
2267
+ outline-style: var(--tw-outline-style);
2268
+ outline-width: 1px;
2269
+ }
2270
+ .lui\:focus-visible\:outline-2:focus-visible {
2271
+ outline-style: var(--tw-outline-style);
2272
+ outline-width: 2px;
2273
+ }
2274
+ .lui\:focus-visible\:outline-offset-2:focus-visible {
2275
+ outline-offset: 2px;
2276
+ }
2277
+ .lui\:focus-visible\:outline-offset-\[-2px\]:focus-visible {
2278
+ outline-offset: -2px;
2279
+ }
2280
+ .lui\:focus-visible\:outline-focus:focus-visible {
2281
+ outline-color: var(--lui-theme-focus);
2282
+ }
2283
+ .lui\:active\:bg-destructive:active {
2284
+ background-color: var(--lui-theme-destructive);
2285
+ }
2286
+ .lui\:active\:bg-surface-hover:active {
2287
+ background-color: var(--lui-theme-surface-hover);
2288
+ }
2289
+ .lui\:active\:\[--btn-icon\:var\(--lui-theme-foreground-invert\)\]:active {
2290
+ --btn-icon: var(--lui-theme-foreground-invert);
2291
+ }
2292
+ .lui\:active\:\[--btn-icon\:var\(--lui-theme-foreground-muted\)\]:active {
2293
+ --btn-icon: var(--lui-theme-foreground-muted);
2294
+ }
2295
+ .lui\:active\:\[--btn-icon\:var\(--lui-theme-foreground-secondary\)\]:active {
2296
+ --btn-icon: var(--lui-theme-foreground-secondary);
2297
+ }
2298
+ .lui\:active\:after\:bg-\(--btn-hover-overlay\):active::after {
2299
+ content: var(--tw-content);
2300
+ background-color: var(--btn-hover-overlay);
2301
+ }
2302
+ .lui\:disabled\:pointer-events-none:disabled {
2303
+ pointer-events: none;
2304
+ }
2305
+ .lui\:disabled\:cursor-not-allowed:disabled {
2306
+ cursor: not-allowed;
2307
+ }
2308
+ .lui\:disabled\:opacity-40:disabled {
2309
+ opacity: 40%;
2310
+ }
2311
+ .lui\:disabled\:opacity-50:disabled {
2312
+ opacity: 50%;
2313
+ }
2314
+ .lui\:disabled\:before\:shadow-none:disabled::before {
2315
+ content: var(--tw-content);
2316
+ --tw-shadow: 0 0 #0000;
2317
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2318
+ }
2319
+ .lui\:disabled\:after\:shadow-none:disabled::after {
2320
+ content: var(--tw-content);
2321
+ --tw-shadow: 0 0 #0000;
2322
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2323
+ }
2324
+ @media (hover: hover) {
2325
+ .lui\:disabled\:hover\:after\:bg-transparent:disabled:hover::after {
2326
+ content: var(--tw-content);
2327
+ background-color: transparent;
2328
+ }
2329
+ }
2330
+ .lui\:has-data-disabled\:opacity-50:has([data-disabled]) {
2331
+ opacity: 50%;
2332
+ }
2333
+ .lui\:has-data-disabled\:before\:bg-surface-hover:has([data-disabled])::before {
2334
+ content: var(--tw-content);
2335
+ background-color: var(--lui-theme-surface-hover);
2336
+ }
2337
+ .lui\:has-data-disabled\:before\:shadow-none:has([data-disabled])::before {
2338
+ content: var(--tw-content);
2339
+ --tw-shadow: 0 0 #0000;
2340
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2341
+ }
2342
+ .lui\:has-data-invalid\:before\:shadow-destructive-border\/10:has([data-invalid])::before {
2343
+ content: var(--tw-content);
2344
+ --tw-shadow-color: var(--lui-theme-destructive-border);
2345
+ @supports (color: color-mix(in lab, red, red)) {
2346
+ --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--lui-theme-destructive-border) 10%, transparent) var(--tw-shadow-alpha), transparent);
2347
+ }
2348
+ }
2349
+ .lui\:data-checked\:bg-\(--switch-bg\)[data-checked] {
2350
+ background-color: var(--switch-bg);
2351
+ }
2352
+ .lui\:data-checked\:ring-\(--switch-bg-ring\)[data-checked] {
2353
+ --tw-ring-color: var(--switch-bg-ring);
2354
+ }
2355
+ @media (hover: hover) {
2356
+ .lui\:hover\:data-checked\:ring-\(--switch-bg-ring\):hover[data-checked] {
2357
+ --tw-ring-color: var(--switch-bg-ring);
2358
+ }
2359
+ }
2360
+ .lui\:data-disabled\:cursor-not-allowed[data-disabled] {
2361
+ cursor: not-allowed;
2362
+ }
2363
+ .lui\:data-disabled\:border-border-hover[data-disabled] {
2364
+ border-color: var(--lui-theme-border-hover);
2365
+ }
2366
+ .lui\:data-disabled\:bg-surface-tertiary[data-disabled] {
2367
+ background-color: var(--lui-theme-surface-tertiary);
2368
+ }
2369
+ .lui\:data-disabled\:opacity-50[data-disabled] {
2370
+ opacity: 50%;
2371
+ }
2372
+ .lui\:data-disabled\:opacity-100[data-disabled] {
2373
+ opacity: 100%;
2374
+ }
2375
+ .lui\:data-disabled\:file\:cursor-not-allowed[data-disabled]::file-selector-button {
2376
+ cursor: not-allowed;
2377
+ }
2378
+ .lui\:data-disabled\:data-checked\:bg-surface-tertiary[data-disabled][data-checked] {
2379
+ background-color: var(--lui-theme-surface-tertiary);
2380
+ }
2381
+ .lui\:data-disabled\:data-checked\:ring-black\/5[data-disabled][data-checked] {
2382
+ --tw-ring-color: var(--lui-color-black);
2383
+ @supports (color: color-mix(in lab, red, red)) {
2384
+ --tw-ring-color: color-mix(in oklab, var(--lui-color-black) 5%, transparent);
2385
+ }
2386
+ }
2387
+ .lui\:data-focus\:outline-2[data-focus] {
2388
+ outline-style: var(--tw-outline-style);
2389
+ outline-width: 2px;
2390
+ }
2391
+ .lui\:data-focus\:outline-offset-2[data-focus] {
2392
+ outline-offset: 2px;
2393
+ }
2394
+ .lui\:data-focus\:outline-focus[data-focus] {
2395
+ outline-color: var(--lui-theme-focus);
2396
+ }
2397
+ .lui\:data-invalid\:border-destructive-border[data-invalid] {
2398
+ border-color: var(--lui-theme-destructive-border);
2399
+ }
2400
+ .lui\:data-selected\:bg-surface-hover[data-selected] {
2401
+ background-color: var(--lui-theme-surface-hover);
2402
+ }
2403
+ .lui\:data-\[active\]\:border-border[data-active] {
2404
+ border-color: var(--lui-theme-border);
2405
+ }
2406
+ .lui\:data-\[active\]\:bg-surface[data-active] {
2407
+ background-color: var(--lui-theme-surface);
2408
+ }
2409
+ .lui\:data-\[active\]\:bg-surface-hover[data-active] {
2410
+ background-color: var(--lui-theme-surface-hover);
2411
+ }
2412
+ .lui\:data-\[active\]\:bg-transparent[data-active] {
2413
+ background-color: transparent;
2414
+ }
2415
+ .lui\:data-\[active\]\:text-foreground[data-active] {
2416
+ color: var(--lui-theme-foreground);
2417
+ }
2418
+ .lui\:data-\[active\]\:shadow-sm[data-active] {
2419
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2420
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2421
+ }
2422
+ .lui\:data-\[active\]\:after\:opacity-100[data-active]::after {
2423
+ content: var(--tw-content);
2424
+ opacity: 100%;
2425
+ }
2426
+ .lui\:data-\[disabled\]\:pointer-events-none[data-disabled] {
2427
+ pointer-events: none;
2428
+ }
2429
+ .lui\:data-\[disabled\]\:cursor-not-allowed[data-disabled] {
2430
+ cursor: not-allowed;
2431
+ }
2432
+ .lui\:data-\[disabled\]\:opacity-50[data-disabled] {
2433
+ opacity: 50%;
2434
+ }
2435
+ .lui\:data-\[highlighted\]\:bg-surface-tertiary[data-highlighted] {
2436
+ background-color: var(--lui-theme-surface-tertiary);
2437
+ }
2438
+ .lui\:data-\[hover\]\:border-border-hover[data-hover] {
2439
+ border-color: var(--lui-theme-border-hover);
2440
+ }
2441
+ .lui\:data-invalid\:data-\[hover\]\:border-destructive-border[data-invalid][data-hover] {
2442
+ border-color: var(--lui-theme-destructive-border);
2443
+ }
2444
+ .lui\:data-invalid\:data-\[hover\]\:border-destructive-border\/60[data-invalid][data-hover] {
2445
+ border-color: var(--lui-theme-destructive-border);
2446
+ @supports (color: color-mix(in lab, red, red)) {
2447
+ border-color: color-mix(in oklab, var(--lui-theme-destructive-border) 60%, transparent);
2448
+ }
2449
+ }
2450
+ .lui\:data-\[open\]\:visible[data-open] {
2451
+ visibility: visible;
2452
+ }
2453
+ .lui\:data-\[selected\]\:bg-interactive-subtle[data-selected] {
2454
+ background-color: var(--lui-theme-interactive-subtle);
2455
+ }
2456
+ :is(.lui\:\*\:data-\[slot\=control\]\:col-start-1 > *)[data-slot="control"] {
2457
+ grid-column-start: 1;
2458
+ }
2459
+ :is(.lui\:\*\:data-\[slot\=control\]\:col-start-2 > *)[data-slot="control"] {
2460
+ grid-column-start: 2;
2461
+ }
2462
+ :is(.lui\:\*\:data-\[slot\=control\]\:row-start-1 > *)[data-slot="control"] {
2463
+ grid-row-start: 1;
2464
+ }
2465
+ :is(.lui\:\*\:data-\[slot\=control\]\:self-center > *)[data-slot="control"] {
2466
+ align-self: center;
2467
+ }
2468
+ :is(.lui\:\*\:data-\[slot\=control\]\:justify-self-center > *)[data-slot="control"] {
2469
+ justify-self: center;
2470
+ }
2471
+ :is(.lui\:\*\:data-\[slot\=description\]\:col-start-1 > *)[data-slot="description"] {
2472
+ grid-column-start: 1;
2473
+ }
2474
+ :is(.lui\:\*\:data-\[slot\=description\]\:col-start-2 > *)[data-slot="description"] {
2475
+ grid-column-start: 2;
2476
+ }
2477
+ :is(.lui\:\*\:data-\[slot\=description\]\:row-start-2 > *)[data-slot="description"] {
2478
+ grid-row-start: 2;
2479
+ }
2480
+ :is(.lui\:\*\:data-\[slot\=error\]\:col-start-1 > *)[data-slot="error"] {
2481
+ grid-column-start: 1;
2482
+ }
2483
+ :is(.lui\:\*\:data-\[slot\=error\]\:row-start-3 > *)[data-slot="error"] {
2484
+ grid-row-start: 3;
2485
+ }
2486
+ :is(.lui\:\*\:data-\[slot\=icon\]\:-mx-0\.5 > *)[data-slot="icon"] {
2487
+ margin-inline: calc(var(--lui-spacing) * -0.5);
2488
+ }
2489
+ :is(.lui\:\*\:data-\[slot\=icon\]\:my-0 > *)[data-slot="icon"] {
2490
+ margin-block: 0px;
2491
+ }
2492
+ :is(.lui\:\*\:data-\[slot\=icon\]\:my-0\.5 > *)[data-slot="icon"] {
2493
+ margin-block: calc(var(--lui-spacing) * 0.5);
2494
+ }
2495
+ :is(.lui\:\*\:data-\[slot\=icon\]\:size-3\.5 > *)[data-slot="icon"] {
2496
+ width: calc(var(--lui-spacing) * 3.5);
2497
+ height: calc(var(--lui-spacing) * 3.5);
2498
+ }
2499
+ :is(.lui\:\*\:data-\[slot\=icon\]\:size-5 > *)[data-slot="icon"] {
2500
+ width: calc(var(--lui-spacing) * 5);
2501
+ height: calc(var(--lui-spacing) * 5);
2502
+ }
2503
+ :is(.lui\:\*\:data-\[slot\=icon\]\:shrink-0 > *)[data-slot="icon"] {
2504
+ flex-shrink: 0;
2505
+ }
2506
+ :is(.lui\:\*\:data-\[slot\=icon\]\:self-center > *)[data-slot="icon"] {
2507
+ align-self: center;
2508
+ }
2509
+ :is(.lui\:\*\:data-\[slot\=icon\]\:text-\(--btn-icon\) > *)[data-slot="icon"] {
2510
+ color: var(--btn-icon);
2511
+ }
2512
+ :is(.lui\:\*\:data-\[slot\=label\]\:col-start-1 > *)[data-slot="label"] {
2513
+ grid-column-start: 1;
2514
+ }
2515
+ :is(.lui\:\*\:data-\[slot\=label\]\:col-start-2 > *)[data-slot="label"] {
2516
+ grid-column-start: 2;
2517
+ }
2518
+ :is(.lui\:\*\:data-\[slot\=label\]\:row-start-1 > *)[data-slot="label"] {
2519
+ grid-row-start: 1;
2520
+ }
2521
+ :is(.lui\:\*\:data-\[slot\=label\]\:justify-self-start > *)[data-slot="label"] {
2522
+ justify-self: flex-start;
2523
+ }
2524
+ :is(.lui\:\*\:data-\[slot\=label\]\:font-medium > *)[data-slot="label"] {
2525
+ --tw-font-weight: var(--lui-font-weight-medium);
2526
+ font-weight: var(--lui-font-weight-medium);
2527
+ }
2528
+ :is(.lui\:has-data-\[slot\=description\]\:\*\*\:data-\[slot\=label\]\:font-medium:has([data-slot="description"]) *)[data-slot="label"] {
2529
+ --tw-font-weight: var(--lui-font-weight-medium);
2530
+ font-weight: var(--lui-font-weight-medium);
2531
+ }
2532
+ .lui\:data-\[state\=on\]\:bg-surface-hover[data-state="on"] {
2533
+ background-color: var(--lui-theme-surface-hover);
2534
+ }
2535
+ .lui\:data-\[state\=on\]\:text-foreground[data-state="on"] {
2536
+ color: var(--lui-theme-foreground);
2537
+ }
2538
+ .lui\:data-\[state\=open\]\:bg-surface-hover[data-state="open"] {
2539
+ background-color: var(--lui-theme-surface-hover);
2540
+ }
2541
+ @media (width < 64rem) {
2542
+ .lui\:max-lg\:hidden {
2543
+ display: none;
2544
+ }
2545
+ .lui\:max-lg\:h-auto {
2546
+ height: auto;
2547
+ }
2548
+ .lui\:max-lg\:min-h-screen {
2549
+ min-height: 100vh;
2550
+ }
2551
+ .lui\:max-lg\:flex-col {
2552
+ flex-direction: column;
2553
+ }
2554
+ }
2555
+ @media (width >= 40rem) {
2556
+ .lui\:sm\:mb-auto {
2557
+ margin-bottom: auto;
2558
+ }
2559
+ .lui\:sm\:size-3\.5 {
2560
+ width: calc(var(--lui-spacing) * 3.5);
2561
+ height: calc(var(--lui-spacing) * 3.5);
2562
+ }
2563
+ .lui\:sm\:size-4 {
2564
+ width: calc(var(--lui-spacing) * 4);
2565
+ height: calc(var(--lui-spacing) * 4);
2566
+ }
2567
+ .lui\:sm\:size-5 {
2568
+ width: calc(var(--lui-spacing) * 5);
2569
+ height: calc(var(--lui-spacing) * 5);
2570
+ }
2571
+ .lui\:sm\:h-3\.5 {
2572
+ height: calc(var(--lui-spacing) * 3.5);
2573
+ }
2574
+ .lui\:sm\:h-5 {
2575
+ height: calc(var(--lui-spacing) * 5);
2576
+ }
2577
+ .lui\:sm\:h-9 {
2578
+ height: calc(var(--lui-spacing) * 9);
2579
+ }
2580
+ .lui\:sm\:min-h-\[38px\] {
2581
+ min-height: 38px;
2582
+ }
2583
+ .lui\:sm\:w-3\.5 {
2584
+ width: calc(var(--lui-spacing) * 3.5);
2585
+ }
2586
+ .lui\:sm\:w-8 {
2587
+ width: calc(var(--lui-spacing) * 8);
2588
+ }
2589
+ .lui\:sm\:max-w-3xl {
2590
+ max-width: var(--lui-container-3xl);
2591
+ }
2592
+ .lui\:sm\:max-w-lg {
2593
+ max-width: var(--lui-container-lg);
2594
+ }
2595
+ .lui\:sm\:min-w-9 {
2596
+ min-width: calc(var(--lui-spacing) * 9);
2597
+ }
2598
+ .lui\:sm\:grid-cols-\[1fr_auto\] {
2599
+ grid-template-columns: 1fr auto;
2600
+ }
2601
+ .lui\:sm\:grid-cols-\[1rem_1fr\] {
2602
+ grid-template-columns: 1rem 1fr;
2603
+ }
2604
+ .lui\:sm\:grid-cols-\[min\(50\%\,--spacing\(80\)\)_auto\] {
2605
+ grid-template-columns: min(50%, calc(var(--lui-spacing) * 80)) auto;
2606
+ }
2607
+ .lui\:sm\:grid-rows-\[1fr_auto_3fr\] {
2608
+ grid-template-rows: 1fr auto 3fr;
2609
+ }
2610
+ .lui\:sm\:flex-row {
2611
+ flex-direction: row;
2612
+ }
2613
+ .lui\:sm\:justify-end {
2614
+ justify-content: flex-end;
2615
+ }
2616
+ .lui\:sm\:gap-2\.5 {
2617
+ gap: calc(var(--lui-spacing) * 2.5);
2618
+ }
2619
+ .lui\:sm\:gap-3 {
2620
+ gap: calc(var(--lui-spacing) * 3);
2621
+ }
2622
+ .lui\:sm\:rounded-2xl {
2623
+ border-radius: var(--lui-radius-2xl);
2624
+ }
2625
+ .lui\:sm\:border-t {
2626
+ border-top-style: var(--tw-border-style);
2627
+ border-top-width: 1px;
2628
+ }
2629
+ .lui\:sm\:border-border-subtle {
2630
+ border-color: var(--lui-theme-border-subtle);
2631
+ }
2632
+ .lui\:sm\:p-4 {
2633
+ padding: calc(var(--lui-spacing) * 4);
2634
+ }
2635
+ .lui\:sm\:px-2 {
2636
+ padding-inline: calc(var(--lui-spacing) * 2);
2637
+ }
2638
+ .lui\:sm\:px-3 {
2639
+ padding-inline: calc(var(--lui-spacing) * 3);
2640
+ }
2641
+ .lui\:sm\:px-\[calc\(--spacing\(3\)-1px\)\] {
2642
+ padding-inline: calc(calc(var(--lui-spacing) * 3) - 1px);
2643
+ }
2644
+ .lui\:sm\:py-0\.5 {
2645
+ padding-block: calc(var(--lui-spacing) * 0.5);
2646
+ }
2647
+ .lui\:sm\:py-1\.5 {
2648
+ padding-block: calc(var(--lui-spacing) * 1.5);
2649
+ }
2650
+ .lui\:sm\:py-3 {
2651
+ padding-block: calc(var(--lui-spacing) * 3);
2652
+ }
2653
+ .lui\:sm\:py-\[calc\(--spacing\(0\.5\)\+1px\)\] {
2654
+ padding-block: calc(calc(var(--lui-spacing) * 0.5) + 1px);
2655
+ }
2656
+ .lui\:sm\:py-\[calc\(--spacing\(1\.5\)-1px\)\] {
2657
+ padding-block: calc(calc(var(--lui-spacing) * 1.5) - 1px);
2658
+ }
2659
+ .lui\:sm\:pt-0 {
2660
+ padding-top: 0px;
2661
+ }
2662
+ .lui\:sm\:pr-\[calc\(--spacing\(9\)-1px\)\] {
2663
+ padding-right: calc(calc(var(--lui-spacing) * 9) - 1px);
2664
+ }
2665
+ .lui\:sm\:pl-\[calc\(--spacing\(3\)-1px\)\] {
2666
+ padding-left: calc(calc(var(--lui-spacing) * 3) - 1px);
2667
+ }
2668
+ .lui\:sm\:text-base\/6 {
2669
+ font-size: var(--lui-text-base);
2670
+ line-height: calc(var(--lui-spacing) * 6);
2671
+ }
2672
+ .lui\:sm\:text-sm\/5 {
2673
+ font-size: var(--lui-text-sm);
2674
+ line-height: calc(var(--lui-spacing) * 5);
2675
+ }
2676
+ .lui\:sm\:text-sm\/6 {
2677
+ font-size: var(--lui-text-sm);
2678
+ line-height: calc(var(--lui-spacing) * 6);
2679
+ }
2680
+ .lui\:sm\:text-xl\/8 {
2681
+ font-size: var(--lui-text-xl);
2682
+ line-height: calc(var(--lui-spacing) * 8);
2683
+ }
2684
+ .lui\:sm\:text-xs {
2685
+ font-size: var(--lui-text-xs);
2686
+ line-height: var(--tw-leading, var(--lui-text-xs--line-height));
2687
+ }
2688
+ :is(.lui\:sm\:\*\:w-auto > *) {
2689
+ width: auto;
2690
+ }
2691
+ .lui\:sm\:group-data-checked\:translate-x-3:is(:where(.lui\:group)[data-checked] *) {
2692
+ --tw-translate-x: calc(var(--lui-spacing) * 3);
2693
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2694
+ }
2695
+ .lui\:file\:sm\:px-\[calc\(--spacing\(3\)-1px\)\]::file-selector-button {
2696
+ padding-inline: calc(calc(var(--lui-spacing) * 3) - 1px);
2697
+ }
2698
+ .lui\:file\:sm\:py-\[calc\(--spacing\(1\.5\)-1px\)\]::file-selector-button {
2699
+ padding-block: calc(calc(var(--lui-spacing) * 1.5) - 1px);
2700
+ }
2701
+ .lui\:sm\:focus-within\:after\:ring-2:focus-within::after {
2702
+ content: var(--tw-content);
2703
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2704
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2705
+ }
2706
+ .lui\:sm\:focus-within\:after\:ring-focus:focus-within::after {
2707
+ content: var(--tw-content);
2708
+ --tw-ring-color: var(--lui-theme-focus);
2709
+ }
2710
+ :is(.lui\:sm\:\*\:data-\[slot\=icon\]\:my-0 > *)[data-slot="icon"] {
2711
+ margin-block: 0px;
2712
+ }
2713
+ :is(.lui\:sm\:\*\:data-\[slot\=icon\]\:my-1 > *)[data-slot="icon"] {
2714
+ margin-block: var(--lui-spacing);
2715
+ }
2716
+ :is(.lui\:sm\:\*\:data-\[slot\=icon\]\:size-3\.5 > *)[data-slot="icon"] {
2717
+ width: calc(var(--lui-spacing) * 3.5);
2718
+ height: calc(var(--lui-spacing) * 3.5);
2719
+ }
2720
+ :is(.lui\:sm\:\*\:data-\[slot\=icon\]\:size-4 > *)[data-slot="icon"] {
2721
+ width: calc(var(--lui-spacing) * 4);
2722
+ height: calc(var(--lui-spacing) * 4);
2723
+ }
2724
+ .lui\:sm\:nth-2\:border-none:nth-child(2) {
2725
+ --tw-border-style: none;
2726
+ border-style: none;
2727
+ }
2728
+ }
2729
+ @media (width >= 64rem) {
2730
+ .lui\:lg\:hidden {
2731
+ display: none;
2732
+ }
2733
+ .lui\:lg\:w-64 {
2734
+ width: calc(var(--lui-spacing) * 64);
2735
+ }
2736
+ .lui\:lg\:min-w-0 {
2737
+ min-width: 0px;
2738
+ }
2739
+ .lui\:lg\:overflow-y-auto {
2740
+ overflow-y: auto;
2741
+ }
2742
+ .lui\:lg\:rounded-lg {
2743
+ border-radius: var(--lui-radius-lg);
2744
+ }
2745
+ .lui\:lg\:bg-surface-secondary {
2746
+ background-color: var(--lui-theme-surface-secondary);
2747
+ }
2748
+ .lui\:lg\:p-10 {
2749
+ padding: calc(var(--lui-spacing) * 10);
2750
+ }
2751
+ .lui\:lg\:pt-4 {
2752
+ padding-top: calc(var(--lui-spacing) * 4);
2753
+ }
2754
+ .lui\:lg\:pr-4 {
2755
+ padding-right: calc(var(--lui-spacing) * 4);
2756
+ }
2757
+ .lui\:lg\:pl-64 {
2758
+ padding-left: calc(var(--lui-spacing) * 64);
2759
+ }
2760
+ .lui\:lg\:shadow-xs {
2761
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
2762
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2763
+ }
2764
+ .lui\:lg\:ring-1 {
2765
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2766
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2767
+ }
2768
+ .lui\:lg\:ring-border-subtle {
2769
+ --tw-ring-color: var(--lui-theme-border-subtle);
2770
+ }
2771
+ }
2772
+ @media (forced-colors: active) {
2773
+ .lui\:forced-colors\:stroke-\[CanvasText\] {
2774
+ stroke: CanvasText;
2775
+ }
2776
+ .lui\:forced-colors\:outline {
2777
+ outline-style: var(--tw-outline-style);
2778
+ outline-width: 1px;
2779
+ }
2780
+ .lui\:forced-colors\:\[--checkbox-check\:HighlightText\] {
2781
+ --checkbox-check: HighlightText;
2782
+ }
2783
+ .lui\:forced-colors\:\[--checkbox-checked-bg\:Highlight\] {
2784
+ --checkbox-checked-bg: Highlight;
2785
+ }
2786
+ .lui\:forced-colors\:\[--radio-checked-bg\:Highlight\] {
2787
+ --radio-checked-bg: Highlight;
2788
+ }
2789
+ .lui\:forced-colors\:\[--radio-indicator\:HighlightText\] {
2790
+ --radio-indicator: HighlightText;
2791
+ }
2792
+ .lui\:forced-colors\:\[--switch-bg\:Highlight\] {
2793
+ --switch-bg: Highlight;
2794
+ }
2795
+ .lui\:forced-colors\:group-data-disabled\:\[--checkbox-check\:Highlight\]:is(:where(.lui\:group)[data-disabled] *) {
2796
+ --checkbox-check: Highlight;
2797
+ }
2798
+ .lui\:forced-colors\:group-data-disabled\:\[--radio-indicator\:Highlight\]:is(:where(.lui\:group)[data-disabled] *) {
2799
+ --radio-indicator: Highlight;
2800
+ }
2801
+ }
2802
+ .lui\:\[\&_optgroup\]\:font-semibold optgroup {
2803
+ --tw-font-weight: var(--lui-font-weight-semibold);
2804
+ font-weight: var(--lui-font-weight-semibold);
2805
+ }
2806
+ .lui\:\[\&\:\:-webkit-scrollbar\]\:h-2::-webkit-scrollbar {
2807
+ height: calc(var(--lui-spacing) * 2);
2808
+ }
2809
+ .lui\:\[\&\:\:-webkit-scrollbar\]\:w-2::-webkit-scrollbar {
2810
+ width: calc(var(--lui-spacing) * 2);
2811
+ }
2812
+ .lui\:\[\&\:\:-webkit-scrollbar-thumb\]\:rounded-full::-webkit-scrollbar-thumb {
2813
+ border-radius: calc(infinity * 1px);
2814
+ }
2815
+ .lui\:\[\&\:\:-webkit-scrollbar-thumb\]\:bg-border-hover::-webkit-scrollbar-thumb {
2816
+ background-color: var(--lui-theme-border-hover);
2817
+ }
2818
+ .lui\:\[\&\:\:-webkit-scrollbar-thumb\:hover\]\:bg-foreground-faint::-webkit-scrollbar-thumb:hover {
2819
+ background-color: var(--lui-theme-foreground-faint);
2820
+ }
2821
+ .lui\:\[\&\:\:-webkit-scrollbar-track\]\:bg-transparent::-webkit-scrollbar-track {
2822
+ background-color: transparent;
2823
+ }
2824
+ .lui\:\[\&\>\[data-slot\=control\]\+\[data-slot\=description\]\]\:mt-3 > [data-slot=control] + [data-slot=description] {
2825
+ margin-top: calc(var(--lui-spacing) * 3);
2826
+ }
2827
+ .lui\:\[\&\>\[data-slot\=control\]\+\[data-slot\=error\]\]\:mt-3 > [data-slot=control] + [data-slot=error] {
2828
+ margin-top: calc(var(--lui-spacing) * 3);
2829
+ }
2830
+ .lui\:\[\&\>\[data-slot\=description\]\+\[data-slot\=control\]\]\:mt-3 > [data-slot=description] + [data-slot=control] {
2831
+ margin-top: calc(var(--lui-spacing) * 3);
2832
+ }
2833
+ .lui\:\[\&\>\[data-slot\=description\]\+\[data-slot\=options\]\]\:mt-3 > [data-slot=description] + [data-slot=options] {
2834
+ margin-top: calc(var(--lui-spacing) * 3);
2835
+ }
2836
+ .lui\:\[\&\>\[data-slot\=label\]\+\[data-slot\=control\]\]\:mt-3 > [data-slot=label] + [data-slot=control] {
2837
+ margin-top: calc(var(--lui-spacing) * 3);
2838
+ }
2839
+ .lui\:\[\&\>\[data-slot\=label\]\+\[data-slot\=description\]\]\:mt-1 > [data-slot=label] + [data-slot=description] {
2840
+ margin-top: var(--lui-spacing);
2841
+ }
2842
+ .lui\:\[\&\>\[data-slot\=label\]\+\[data-slot\=options\]\]\:mt-3 > [data-slot=label] + [data-slot=options] {
2843
+ margin-top: calc(var(--lui-spacing) * 3);
2844
+ }
2845
+ .lui\:\[\&\>\[data-slot\=options\]\+\[data-slot\=error\]\]\:mt-3 > [data-slot=options] + [data-slot=error] {
2846
+ margin-top: calc(var(--lui-spacing) * 3);
2847
+ }
2848
+ .lui\:\[\&\>img\]\:size-full > img {
2849
+ width: 100%;
2850
+ height: 100%;
2851
+ }
2852
+ .lui\:\[\&\>img\]\:object-cover > img {
2853
+ object-fit: cover;
2854
+ }
2855
+ .lui\:\[\&\>video\]\:size-full > video {
2856
+ width: 100%;
2857
+ height: 100%;
2858
+ }
2859
+ .lui\:\[\&\>video\]\:object-cover > video {
2860
+ object-fit: cover;
2861
+ }
2862
+ }
2863
+ :root {
2864
+ --lui-theme-surface: #fff;
2865
+ --lui-theme-surface-secondary: oklch(0.985 0 0);
2866
+ --lui-theme-surface-tertiary: oklch(0.967 0.001 286.375);
2867
+ --lui-theme-surface-page: #f0f0ee;
2868
+ --lui-theme-surface-input: #fff;
2869
+ --lui-theme-surface-invert: oklch(0.21 0.006 285.885);
2870
+ --lui-theme-surface-overlay: oklch(0.141 0.005 285.823 / 25%);
2871
+ --lui-theme-surface-hover: oklch(0.141 0.005 285.823 / 5%);
2872
+ --lui-theme-foreground: oklch(0.141 0.005 285.823);
2873
+ --lui-theme-foreground-secondary: oklch(0.442 0.017 285.786);
2874
+ --lui-theme-foreground-muted: oklch(0.552 0.016 285.938);
2875
+ --lui-theme-foreground-faint: oklch(0.705 0.015 286.067);
2876
+ --lui-theme-foreground-invert: #fff;
2877
+ --lui-theme-border: oklch(0.141 0.005 285.823 / 10%);
2878
+ --lui-theme-border-hover: oklch(0.141 0.005 285.823 / 20%);
2879
+ --lui-theme-border-strong: oklch(0.141 0.005 285.823 / 15%);
2880
+ --lui-theme-border-subtle: oklch(0.141 0.005 285.823 / 5%);
2881
+ --lui-theme-border-invert: oklch(0.141 0.005 285.823 / 90%);
2882
+ --lui-theme-focus: oklch(0.623 0.214 259.815);
2883
+ --lui-theme-interactive: oklch(0.546 0.245 262.881);
2884
+ --lui-theme-interactive-subtle: oklch(0.97 0.014 254.604);
2885
+ --lui-theme-destructive: oklch(0.577 0.245 27.325);
2886
+ --lui-theme-destructive-border: oklch(0.637 0.237 25.331);
2887
+ --lui-theme-destructive-text: oklch(0.577 0.245 27.325);
2888
+ --lui-theme-success-bg: oklch(0.925 0.084 155.995);
2889
+ --lui-theme-success-indicator: oklch(0.627 0.194 149.214);
2890
+ --lui-theme-success-text: oklch(0.45 0.13 150);
2891
+ --lui-theme-warning-bg: oklch(0.945 0.129 101.54);
2892
+ --lui-theme-warning-indicator: oklch(0.852 0.199 91.936);
2893
+ --lui-theme-warning-text: oklch(0.53 0.14 70);
2894
+ --lui-theme-tooltip-bg: oklch(0.274 0.006 286.033);
2895
+ --lui-theme-tooltip-text: #fff;
2896
+ --lui-theme-neutral-bg: oklch(0.985 0.002 247.839);
2897
+ --lui-theme-neutral-text: oklch(0.278 0.033 256.848);
2898
+ --lui-theme-spinner-primary: oklch(0.552 0.016 285.938);
2899
+ --lui-theme-spinner-secondary: oklch(0.872 0.01 258.338);
2900
+ --lui-theme-chart-1: oklch(0.646 0.222 41.116);
2901
+ --lui-theme-chart-2: oklch(0.6 0.118 184.704);
2902
+ --lui-theme-chart-3: oklch(0.398 0.07 227.392);
2903
+ --lui-theme-chart-4: oklch(0.828 0.189 84.429);
2904
+ --lui-theme-chart-5: oklch(0.769 0.188 70.08);
2905
+ }
2906
+ .lui-theme-dark {
2907
+ --lui-theme-surface: oklch(0.141 0.005 285.823);
2908
+ --lui-theme-surface-secondary: oklch(0.21 0.006 285.885);
2909
+ --lui-theme-surface-tertiary: oklch(0.274 0.006 286.033);
2910
+ --lui-theme-surface-page: oklch(0.141 0.005 285.823);
2911
+ --lui-theme-surface-input: color-mix(in oklab, white 5%, transparent);
2912
+ --lui-theme-surface-invert: oklch(0.985 0 0);
2913
+ --lui-theme-surface-overlay: oklch(0 0 0 / 50%);
2914
+ --lui-theme-surface-hover: oklch(1 0 0 / 7%);
2915
+ --lui-theme-foreground: oklch(0.985 0 0);
2916
+ --lui-theme-foreground-secondary: oklch(0.705 0.015 286.067);
2917
+ --lui-theme-foreground-muted: oklch(0.552 0.016 285.938);
2918
+ --lui-theme-foreground-faint: oklch(0.442 0.017 285.786);
2919
+ --lui-theme-foreground-invert: oklch(0.141 0.005 285.823);
2920
+ --lui-theme-border: oklch(1 0 0 / 10%);
2921
+ --lui-theme-border-hover: oklch(1 0 0 / 20%);
2922
+ --lui-theme-border-strong: oklch(1 0 0 / 15%);
2923
+ --lui-theme-border-subtle: oklch(1 0 0 / 5%);
2924
+ --lui-theme-border-invert: oklch(1 0 0 / 90%);
2925
+ --lui-theme-focus: oklch(0.623 0.214 259.815);
2926
+ --lui-theme-interactive: oklch(0.623 0.214 259.815);
2927
+ --lui-theme-interactive-subtle: oklch(0.546 0.245 262.881 / 20%);
2928
+ --lui-theme-destructive: oklch(0.637 0.237 25.331);
2929
+ --lui-theme-destructive-border: oklch(0.637 0.237 25.331);
2930
+ --lui-theme-destructive-text: oklch(0.637 0.237 25.331);
2931
+ --lui-theme-success-bg: oklch(0.627 0.194 149.214 / 25%);
2932
+ --lui-theme-success-indicator: oklch(0.627 0.194 149.214);
2933
+ --lui-theme-success-text: oklch(0.76 0.16 150);
2934
+ --lui-theme-warning-bg: oklch(0.852 0.199 91.936 / 25%);
2935
+ --lui-theme-warning-indicator: oklch(0.852 0.199 91.936);
2936
+ --lui-theme-warning-text: oklch(0.82 0.15 85);
2937
+ --lui-theme-tooltip-bg: oklch(0.92 0.004 286.32);
2938
+ --lui-theme-tooltip-text: oklch(0.141 0.005 285.823);
2939
+ --lui-theme-neutral-bg: oklch(0.274 0.006 286.033);
2940
+ --lui-theme-neutral-text: oklch(0.871 0.006 286.286);
2941
+ --lui-theme-spinner-primary: oklch(0.705 0.015 286.067);
2942
+ --lui-theme-spinner-secondary: oklch(0.442 0.017 285.786);
2943
+ --lui-theme-chart-1: oklch(0.488 0.243 264.376);
2944
+ --lui-theme-chart-2: oklch(0.696 0.17 162.48);
2945
+ --lui-theme-chart-3: oklch(0.769 0.188 70.08);
2946
+ --lui-theme-chart-4: oklch(0.627 0.265 303.9);
2947
+ --lui-theme-chart-5: oklch(0.645 0.246 16.439);
2948
+ }
2949
+ .lui-page-gradient {
2950
+ background-image: radial-gradient(ellipse at 20% 50%, rgba(200,210,230,0.35) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(220,205,235,0.25) 0%, transparent 50%);
2951
+ }
2952
+ .lui-theme-dark .lui-page-gradient {
2953
+ background-image: radial-gradient(ellipse at 20% 50%, rgba(40,50,80,0.4) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(60,40,80,0.3) 0%, transparent 50%);
2954
+ }
2955
+ @keyframes icon-bounce {
2956
+ 0% {
2957
+ scale: 1;
2958
+ }
2959
+ 40% {
2960
+ scale: 1.2;
2961
+ }
2962
+ 70% {
2963
+ scale: 0.95;
2964
+ }
2965
+ 100% {
2966
+ scale: 1;
2967
+ }
2968
+ }
2969
+ @property --tw-translate-x {
2970
+ syntax: "*";
2971
+ inherits: false;
2972
+ initial-value: 0;
2973
+ }
2974
+ @property --tw-translate-y {
2975
+ syntax: "*";
2976
+ inherits: false;
2977
+ initial-value: 0;
2978
+ }
2979
+ @property --tw-translate-z {
2980
+ syntax: "*";
2981
+ inherits: false;
2982
+ initial-value: 0;
2983
+ }
2984
+ @property --tw-scale-x {
2985
+ syntax: "*";
2986
+ inherits: false;
2987
+ initial-value: 1;
2988
+ }
2989
+ @property --tw-scale-y {
2990
+ syntax: "*";
2991
+ inherits: false;
2992
+ initial-value: 1;
2993
+ }
2994
+ @property --tw-scale-z {
2995
+ syntax: "*";
2996
+ inherits: false;
2997
+ initial-value: 1;
2998
+ }
2999
+ @property --tw-rotate-x {
3000
+ syntax: "*";
3001
+ inherits: false;
3002
+ }
3003
+ @property --tw-rotate-y {
3004
+ syntax: "*";
3005
+ inherits: false;
3006
+ }
3007
+ @property --tw-rotate-z {
3008
+ syntax: "*";
3009
+ inherits: false;
3010
+ }
3011
+ @property --tw-skew-x {
3012
+ syntax: "*";
3013
+ inherits: false;
3014
+ }
3015
+ @property --tw-skew-y {
3016
+ syntax: "*";
3017
+ inherits: false;
3018
+ }
3019
+ @property --tw-space-y-reverse {
3020
+ syntax: "*";
3021
+ inherits: false;
3022
+ initial-value: 0;
3023
+ }
3024
+ @property --tw-divide-y-reverse {
3025
+ syntax: "*";
3026
+ inherits: false;
3027
+ initial-value: 0;
3028
+ }
3029
+ @property --tw-border-style {
3030
+ syntax: "*";
3031
+ inherits: false;
3032
+ initial-value: solid;
3033
+ }
3034
+ @property --tw-leading {
3035
+ syntax: "*";
3036
+ inherits: false;
3037
+ }
3038
+ @property --tw-font-weight {
3039
+ syntax: "*";
3040
+ inherits: false;
3041
+ }
3042
+ @property --tw-tracking {
3043
+ syntax: "*";
3044
+ inherits: false;
3045
+ }
3046
+ @property --tw-ordinal {
3047
+ syntax: "*";
3048
+ inherits: false;
3049
+ }
3050
+ @property --tw-slashed-zero {
3051
+ syntax: "*";
3052
+ inherits: false;
3053
+ }
3054
+ @property --tw-numeric-figure {
3055
+ syntax: "*";
3056
+ inherits: false;
3057
+ }
3058
+ @property --tw-numeric-spacing {
3059
+ syntax: "*";
3060
+ inherits: false;
3061
+ }
3062
+ @property --tw-numeric-fraction {
3063
+ syntax: "*";
3064
+ inherits: false;
3065
+ }
3066
+ @property --tw-shadow {
3067
+ syntax: "*";
3068
+ inherits: false;
3069
+ initial-value: 0 0 #0000;
3070
+ }
3071
+ @property --tw-shadow-color {
3072
+ syntax: "*";
3073
+ inherits: false;
3074
+ }
3075
+ @property --tw-shadow-alpha {
3076
+ syntax: "<percentage>";
3077
+ inherits: false;
3078
+ initial-value: 100%;
3079
+ }
3080
+ @property --tw-inset-shadow {
3081
+ syntax: "*";
3082
+ inherits: false;
3083
+ initial-value: 0 0 #0000;
3084
+ }
3085
+ @property --tw-inset-shadow-color {
3086
+ syntax: "*";
3087
+ inherits: false;
3088
+ }
3089
+ @property --tw-inset-shadow-alpha {
3090
+ syntax: "<percentage>";
3091
+ inherits: false;
3092
+ initial-value: 100%;
3093
+ }
3094
+ @property --tw-ring-color {
3095
+ syntax: "*";
3096
+ inherits: false;
3097
+ }
3098
+ @property --tw-ring-shadow {
3099
+ syntax: "*";
3100
+ inherits: false;
3101
+ initial-value: 0 0 #0000;
3102
+ }
3103
+ @property --tw-inset-ring-color {
3104
+ syntax: "*";
3105
+ inherits: false;
3106
+ }
3107
+ @property --tw-inset-ring-shadow {
3108
+ syntax: "*";
3109
+ inherits: false;
3110
+ initial-value: 0 0 #0000;
3111
+ }
3112
+ @property --tw-ring-inset {
3113
+ syntax: "*";
3114
+ inherits: false;
3115
+ }
3116
+ @property --tw-ring-offset-width {
3117
+ syntax: "<length>";
3118
+ inherits: false;
3119
+ initial-value: 0px;
3120
+ }
3121
+ @property --tw-ring-offset-color {
3122
+ syntax: "*";
3123
+ inherits: false;
3124
+ initial-value: #fff;
3125
+ }
3126
+ @property --tw-ring-offset-shadow {
3127
+ syntax: "*";
3128
+ inherits: false;
3129
+ initial-value: 0 0 #0000;
3130
+ }
3131
+ @property --tw-outline-style {
3132
+ syntax: "*";
3133
+ inherits: false;
3134
+ initial-value: solid;
3135
+ }
3136
+ @property --tw-backdrop-blur {
3137
+ syntax: "*";
3138
+ inherits: false;
3139
+ }
3140
+ @property --tw-backdrop-brightness {
3141
+ syntax: "*";
3142
+ inherits: false;
3143
+ }
3144
+ @property --tw-backdrop-contrast {
3145
+ syntax: "*";
3146
+ inherits: false;
3147
+ }
3148
+ @property --tw-backdrop-grayscale {
3149
+ syntax: "*";
3150
+ inherits: false;
3151
+ }
3152
+ @property --tw-backdrop-hue-rotate {
3153
+ syntax: "*";
3154
+ inherits: false;
3155
+ }
3156
+ @property --tw-backdrop-invert {
3157
+ syntax: "*";
3158
+ inherits: false;
3159
+ }
3160
+ @property --tw-backdrop-opacity {
3161
+ syntax: "*";
3162
+ inherits: false;
3163
+ }
3164
+ @property --tw-backdrop-saturate {
3165
+ syntax: "*";
3166
+ inherits: false;
3167
+ }
3168
+ @property --tw-backdrop-sepia {
3169
+ syntax: "*";
3170
+ inherits: false;
3171
+ }
3172
+ @property --tw-duration {
3173
+ syntax: "*";
3174
+ inherits: false;
3175
+ }
3176
+ @property --tw-ease {
3177
+ syntax: "*";
3178
+ inherits: false;
3179
+ }
3180
+ @property --tw-content {
3181
+ syntax: "*";
3182
+ initial-value: "";
3183
+ inherits: false;
3184
+ }
3185
+ @keyframes spin {
3186
+ to {
3187
+ transform: rotate(360deg);
3188
+ }
3189
+ }
3190
+ @keyframes pulse {
3191
+ 50% {
3192
+ opacity: 0.5;
3193
+ }
3194
+ }
3195
+ @layer properties {
3196
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
3197
+ *, ::before, ::after, ::backdrop {
3198
+ --tw-translate-x: 0;
3199
+ --tw-translate-y: 0;
3200
+ --tw-translate-z: 0;
3201
+ --tw-scale-x: 1;
3202
+ --tw-scale-y: 1;
3203
+ --tw-scale-z: 1;
3204
+ --tw-rotate-x: initial;
3205
+ --tw-rotate-y: initial;
3206
+ --tw-rotate-z: initial;
3207
+ --tw-skew-x: initial;
3208
+ --tw-skew-y: initial;
3209
+ --tw-space-y-reverse: 0;
3210
+ --tw-divide-y-reverse: 0;
3211
+ --tw-border-style: solid;
3212
+ --tw-leading: initial;
3213
+ --tw-font-weight: initial;
3214
+ --tw-tracking: initial;
3215
+ --tw-ordinal: initial;
3216
+ --tw-slashed-zero: initial;
3217
+ --tw-numeric-figure: initial;
3218
+ --tw-numeric-spacing: initial;
3219
+ --tw-numeric-fraction: initial;
3220
+ --tw-shadow: 0 0 #0000;
3221
+ --tw-shadow-color: initial;
3222
+ --tw-shadow-alpha: 100%;
3223
+ --tw-inset-shadow: 0 0 #0000;
3224
+ --tw-inset-shadow-color: initial;
3225
+ --tw-inset-shadow-alpha: 100%;
3226
+ --tw-ring-color: initial;
3227
+ --tw-ring-shadow: 0 0 #0000;
3228
+ --tw-inset-ring-color: initial;
3229
+ --tw-inset-ring-shadow: 0 0 #0000;
3230
+ --tw-ring-inset: initial;
3231
+ --tw-ring-offset-width: 0px;
3232
+ --tw-ring-offset-color: #fff;
3233
+ --tw-ring-offset-shadow: 0 0 #0000;
3234
+ --tw-outline-style: solid;
3235
+ --tw-backdrop-blur: initial;
3236
+ --tw-backdrop-brightness: initial;
3237
+ --tw-backdrop-contrast: initial;
3238
+ --tw-backdrop-grayscale: initial;
3239
+ --tw-backdrop-hue-rotate: initial;
3240
+ --tw-backdrop-invert: initial;
3241
+ --tw-backdrop-opacity: initial;
3242
+ --tw-backdrop-saturate: initial;
3243
+ --tw-backdrop-sepia: initial;
3244
+ --tw-duration: initial;
3245
+ --tw-ease: initial;
3246
+ --tw-content: "";
3247
+ }
3248
+ }
3249
+ }