poetry-ui 0.0.2
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.
- checksums.yaml +7 -0
- data/.gitattributes +6 -0
- data/CHANGELOG.md +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +87 -0
- data/THIRD_PARTY_NOTICES.md +201 -0
- data/app/components/poetry/ui/accordion/component.html.erb +3 -0
- data/app/components/poetry/ui/accordion/component.rb +197 -0
- data/app/components/poetry/ui/accordion/preview.rb +39 -0
- data/app/components/poetry/ui/accordion/style.rb +37 -0
- data/app/components/poetry/ui/alert/component.html.erb +6 -0
- data/app/components/poetry/ui/alert/component.rb +61 -0
- data/app/components/poetry/ui/alert/preview.rb +35 -0
- data/app/components/poetry/ui/alert/style.rb +24 -0
- data/app/components/poetry/ui/alert_dialog/component.html.erb +17 -0
- data/app/components/poetry/ui/alert_dialog/component.rb +208 -0
- data/app/components/poetry/ui/alert_dialog/preview.rb +48 -0
- data/app/components/poetry/ui/alert_dialog/style.rb +46 -0
- data/app/components/poetry/ui/aspect_ratio/component.rb +63 -0
- data/app/components/poetry/ui/aspect_ratio/preview.rb +29 -0
- data/app/components/poetry/ui/aspect_ratio/style.rb +13 -0
- data/app/components/poetry/ui/attachment/component.html.erb +13 -0
- data/app/components/poetry/ui/attachment/component.rb +139 -0
- data/app/components/poetry/ui/attachment/preview.rb +83 -0
- data/app/components/poetry/ui/attachment/style.rb +59 -0
- data/app/components/poetry/ui/autocomplete/component.html.erb +16 -0
- data/app/components/poetry/ui/autocomplete/component.rb +193 -0
- data/app/components/poetry/ui/autocomplete/preview.rb +39 -0
- data/app/components/poetry/ui/autocomplete/style.rb +18 -0
- data/app/components/poetry/ui/avatar/component.rb +103 -0
- data/app/components/poetry/ui/avatar/group_preview.html.erb +11 -0
- data/app/components/poetry/ui/avatar/preview.rb +50 -0
- data/app/components/poetry/ui/avatar/style.rb +34 -0
- data/app/components/poetry/ui/badge/component.rb +73 -0
- data/app/components/poetry/ui/badge/preview.rb +54 -0
- data/app/components/poetry/ui/badge/style.rb +35 -0
- data/app/components/poetry/ui/breadcrumb/component.html.erb +32 -0
- data/app/components/poetry/ui/breadcrumb/component.rb +102 -0
- data/app/components/poetry/ui/breadcrumb/dropdown_crumb_preview.html.erb +21 -0
- data/app/components/poetry/ui/breadcrumb/preview.rb +45 -0
- data/app/components/poetry/ui/breadcrumb/style.rb +25 -0
- data/app/components/poetry/ui/bubble/component.html.erb +4 -0
- data/app/components/poetry/ui/bubble/component.rb +106 -0
- data/app/components/poetry/ui/bubble/preview.rb +62 -0
- data/app/components/poetry/ui/bubble/style.rb +47 -0
- data/app/components/poetry/ui/button/component.html.erb +14 -0
- data/app/components/poetry/ui/button/component.rb +168 -0
- data/app/components/poetry/ui/button/preview.rb +94 -0
- data/app/components/poetry/ui/button/style.rb +41 -0
- data/app/components/poetry/ui/button_group/component.rb +70 -0
- data/app/components/poetry/ui/button_group/popup_triggers_preview.html.erb +21 -0
- data/app/components/poetry/ui/button_group/preview.rb +46 -0
- data/app/components/poetry/ui/button_group/style.rb +27 -0
- data/app/components/poetry/ui/button_group/text_prefix_preview.html.erb +7 -0
- data/app/components/poetry/ui/calendar/component.html.erb +72 -0
- data/app/components/poetry/ui/calendar/component.rb +366 -0
- data/app/components/poetry/ui/calendar/preview.rb +55 -0
- data/app/components/poetry/ui/calendar/style.rb +55 -0
- data/app/components/poetry/ui/card/component.html.erb +11 -0
- data/app/components/poetry/ui/card/component.rb +90 -0
- data/app/components/poetry/ui/card/preview.rb +29 -0
- data/app/components/poetry/ui/card/style.rb +23 -0
- data/app/components/poetry/ui/carousel/component.html.erb +17 -0
- data/app/components/poetry/ui/carousel/component.rb +179 -0
- data/app/components/poetry/ui/carousel/preview.rb +67 -0
- data/app/components/poetry/ui/carousel/style.rb +39 -0
- data/app/components/poetry/ui/checkbox/component.html.erb +22 -0
- data/app/components/poetry/ui/checkbox/component.rb +179 -0
- data/app/components/poetry/ui/checkbox/preview.rb +68 -0
- data/app/components/poetry/ui/checkbox/style.rb +28 -0
- data/app/components/poetry/ui/clipboard_text/component.html.erb +15 -0
- data/app/components/poetry/ui/clipboard_text/component.rb +154 -0
- data/app/components/poetry/ui/clipboard_text/preview.rb +24 -0
- data/app/components/poetry/ui/clipboard_text/style.rb +23 -0
- data/app/components/poetry/ui/code_block/component.html.erb +13 -0
- data/app/components/poetry/ui/code_block/component.rb +141 -0
- data/app/components/poetry/ui/code_block/preview.rb +40 -0
- data/app/components/poetry/ui/code_block/style.rb +38 -0
- data/app/components/poetry/ui/collapsible/component.html.erb +4 -0
- data/app/components/poetry/ui/collapsible/component.rb +134 -0
- data/app/components/poetry/ui/collapsible/preview.rb +24 -0
- data/app/components/poetry/ui/combobox/component.html.erb +49 -0
- data/app/components/poetry/ui/combobox/component.rb +1086 -0
- data/app/components/poetry/ui/combobox/preview.rb +164 -0
- data/app/components/poetry/ui/combobox/style.rb +148 -0
- data/app/components/poetry/ui/command/component.html.erb +20 -0
- data/app/components/poetry/ui/command/component.rb +526 -0
- data/app/components/poetry/ui/command/dialog_component.html.erb +14 -0
- data/app/components/poetry/ui/command/dialog_component.rb +206 -0
- data/app/components/poetry/ui/command/dialog_preview.rb +39 -0
- data/app/components/poetry/ui/command/preview.rb +121 -0
- data/app/components/poetry/ui/command/style.rb +78 -0
- data/app/components/poetry/ui/composable_trigger.rb +63 -0
- data/app/components/poetry/ui/context_menu/component.html.erb +6 -0
- data/app/components/poetry/ui/context_menu/component.rb +358 -0
- data/app/components/poetry/ui/context_menu/preview.rb +111 -0
- data/app/components/poetry/ui/context_menu/style.rb +59 -0
- data/app/components/poetry/ui/data_table/component.html.erb +78 -0
- data/app/components/poetry/ui/data_table/component.rb +277 -0
- data/app/components/poetry/ui/data_table/preview.rb +68 -0
- data/app/components/poetry/ui/data_table/state.rb +115 -0
- data/app/components/poetry/ui/data_table/style.rb +42 -0
- data/app/components/poetry/ui/date_field/component.html.erb +7 -0
- data/app/components/poetry/ui/date_field/component.rb +209 -0
- data/app/components/poetry/ui/date_field/preview.rb +42 -0
- data/app/components/poetry/ui/date_field/style.rb +35 -0
- data/app/components/poetry/ui/date_picker/component.html.erb +23 -0
- data/app/components/poetry/ui/date_picker/component.rb +242 -0
- data/app/components/poetry/ui/date_picker/preview.rb +31 -0
- data/app/components/poetry/ui/date_picker/style.rb +25 -0
- data/app/components/poetry/ui/deferred/component.html.erb +16 -0
- data/app/components/poetry/ui/deferred/component.rb +90 -0
- data/app/components/poetry/ui/deferred/preview.rb +24 -0
- data/app/components/poetry/ui/dialog/component.html.erb +21 -0
- data/app/components/poetry/ui/dialog/component.rb +194 -0
- data/app/components/poetry/ui/dialog/preview.rb +33 -0
- data/app/components/poetry/ui/dialog/style.rb +30 -0
- data/app/components/poetry/ui/drawer/component.html.erb +16 -0
- data/app/components/poetry/ui/drawer/component.rb +207 -0
- data/app/components/poetry/ui/drawer/preview.rb +69 -0
- data/app/components/poetry/ui/drawer/style.rb +105 -0
- data/app/components/poetry/ui/dropdown_menu/component.html.erb +6 -0
- data/app/components/poetry/ui/dropdown_menu/component.rb +350 -0
- data/app/components/poetry/ui/dropdown_menu/preview.rb +101 -0
- data/app/components/poetry/ui/dropdown_menu/style.rb +60 -0
- data/app/components/poetry/ui/empty/component.html.erb +10 -0
- data/app/components/poetry/ui/empty/component.rb +79 -0
- data/app/components/poetry/ui/empty/preview.rb +27 -0
- data/app/components/poetry/ui/empty/style.rb +27 -0
- data/app/components/poetry/ui/family_identity.rb +52 -0
- data/app/components/poetry/ui/field/component.html.erb +19 -0
- data/app/components/poetry/ui/field/component.rb +183 -0
- data/app/components/poetry/ui/field/preview.html.erb +30 -0
- data/app/components/poetry/ui/field/preview.rb +72 -0
- data/app/components/poetry/ui/field/style.rb +68 -0
- data/app/components/poetry/ui/field_group/component.rb +61 -0
- data/app/components/poetry/ui/field_group/preview.html.erb +30 -0
- data/app/components/poetry/ui/field_group/preview.rb +20 -0
- data/app/components/poetry/ui/field_group/style.rb +25 -0
- data/app/components/poetry/ui/field_separator/component.rb +70 -0
- data/app/components/poetry/ui/field_separator/preview.rb +18 -0
- data/app/components/poetry/ui/field_separator/style.rb +20 -0
- data/app/components/poetry/ui/fieldset/component.rb +90 -0
- data/app/components/poetry/ui/fieldset/preview.html.erb +22 -0
- data/app/components/poetry/ui/fieldset/preview.rb +25 -0
- data/app/components/poetry/ui/fieldset/style.rb +18 -0
- data/app/components/poetry/ui/file_input/component.html.erb +14 -0
- data/app/components/poetry/ui/file_input/component.rb +188 -0
- data/app/components/poetry/ui/file_input/preview.rb +30 -0
- data/app/components/poetry/ui/file_input/style.rb +35 -0
- data/app/components/poetry/ui/hover_card/component.html.erb +6 -0
- data/app/components/poetry/ui/hover_card/component.rb +201 -0
- data/app/components/poetry/ui/hover_card/preview.rb +60 -0
- data/app/components/poetry/ui/hover_card/style.rb +17 -0
- data/app/components/poetry/ui/icon/component.rb +127 -0
- data/app/components/poetry/ui/icon/preview.rb +21 -0
- data/app/components/poetry/ui/input/component.rb +80 -0
- data/app/components/poetry/ui/input/preview.rb +35 -0
- data/app/components/poetry/ui/input/style.rb +18 -0
- data/app/components/poetry/ui/input_group/button_preview.html.erb +12 -0
- data/app/components/poetry/ui/input_group/component.rb +69 -0
- data/app/components/poetry/ui/input_group/preview.rb +23 -0
- data/app/components/poetry/ui/input_group/search_preview.html.erb +13 -0
- data/app/components/poetry/ui/input_group/style.rb +40 -0
- data/app/components/poetry/ui/input_group/textarea_preview.html.erb +10 -0
- data/app/components/poetry/ui/input_group_field.rb +61 -0
- data/app/components/poetry/ui/input_otp/component.html.erb +25 -0
- data/app/components/poetry/ui/input_otp/component.rb +250 -0
- data/app/components/poetry/ui/input_otp/preview.rb +91 -0
- data/app/components/poetry/ui/input_otp/style.rb +36 -0
- data/app/components/poetry/ui/item/component.html.erb +13 -0
- data/app/components/poetry/ui/item/component.rb +99 -0
- data/app/components/poetry/ui/item/group_preview.html.erb +15 -0
- data/app/components/poetry/ui/item/preview.rb +52 -0
- data/app/components/poetry/ui/item/style.rb +45 -0
- data/app/components/poetry/ui/kbd/component.rb +47 -0
- data/app/components/poetry/ui/kbd/group_preview.html.erb +4 -0
- data/app/components/poetry/ui/kbd/preview.rb +23 -0
- data/app/components/poetry/ui/kbd/style.rb +13 -0
- data/app/components/poetry/ui/label/component.rb +46 -0
- data/app/components/poetry/ui/label/preview.html.erb +5 -0
- data/app/components/poetry/ui/label/preview.rb +16 -0
- data/app/components/poetry/ui/label/style.rb +13 -0
- data/app/components/poetry/ui/link/component.rb +62 -0
- data/app/components/poetry/ui/link/preview.rb +31 -0
- data/app/components/poetry/ui/link/style.rb +20 -0
- data/app/components/poetry/ui/marker/component.html.erb +4 -0
- data/app/components/poetry/ui/marker/component.rb +81 -0
- data/app/components/poetry/ui/marker/preview.rb +43 -0
- data/app/components/poetry/ui/marker/style.rb +24 -0
- data/app/components/poetry/ui/menubar/component.html.erb +3 -0
- data/app/components/poetry/ui/menubar/component.rb +493 -0
- data/app/components/poetry/ui/menubar/preview.rb +164 -0
- data/app/components/poetry/ui/menubar/style.rb +71 -0
- data/app/components/poetry/ui/menus.rb +386 -0
- data/app/components/poetry/ui/message/component.html.erb +8 -0
- data/app/components/poetry/ui/message/component.rb +64 -0
- data/app/components/poetry/ui/message/preview.rb +33 -0
- data/app/components/poetry/ui/message/style.rb +29 -0
- data/app/components/poetry/ui/message_scroller/component.html.erb +15 -0
- data/app/components/poetry/ui/message_scroller/component.rb +163 -0
- data/app/components/poetry/ui/message_scroller/preview.rb +33 -0
- data/app/components/poetry/ui/message_scroller/style.rb +39 -0
- data/app/components/poetry/ui/metadata_list/component.rb +88 -0
- data/app/components/poetry/ui/metadata_list/preview.rb +55 -0
- data/app/components/poetry/ui/metadata_list/style.rb +35 -0
- data/app/components/poetry/ui/meter/component.rb +117 -0
- data/app/components/poetry/ui/meter/preview.rb +28 -0
- data/app/components/poetry/ui/meter/style.rb +16 -0
- data/app/components/poetry/ui/native_select/component.rb +124 -0
- data/app/components/poetry/ui/native_select/labelled_preview.html.erb +7 -0
- data/app/components/poetry/ui/native_select/preview.rb +20 -0
- data/app/components/poetry/ui/native_select/style.rb +22 -0
- data/app/components/poetry/ui/navigation_menu/bar_preview.html.erb +14 -0
- data/app/components/poetry/ui/navigation_menu/component.html.erb +25 -0
- data/app/components/poetry/ui/navigation_menu/component.rb +254 -0
- data/app/components/poetry/ui/navigation_menu/preview.rb +20 -0
- data/app/components/poetry/ui/navigation_menu/style.rb +73 -0
- data/app/components/poetry/ui/navigation_menu/viewport_preview.html.erb +23 -0
- data/app/components/poetry/ui/number_field/component.html.erb +19 -0
- data/app/components/poetry/ui/number_field/component.rb +263 -0
- data/app/components/poetry/ui/number_field/preview.rb +66 -0
- data/app/components/poetry/ui/number_field/style.rb +14 -0
- data/app/components/poetry/ui/pagination/component.html.erb +40 -0
- data/app/components/poetry/ui/pagination/component.rb +182 -0
- data/app/components/poetry/ui/pagination/preview.rb +47 -0
- data/app/components/poetry/ui/pagination/style.rb +27 -0
- data/app/components/poetry/ui/popover/component.html.erb +17 -0
- data/app/components/poetry/ui/popover/component.rb +203 -0
- data/app/components/poetry/ui/popover/preview.html.erb +29 -0
- data/app/components/poetry/ui/popover/preview.rb +66 -0
- data/app/components/poetry/ui/popover/style.rb +26 -0
- data/app/components/poetry/ui/popper_consumer.rb +69 -0
- data/app/components/poetry/ui/progress/component.rb +95 -0
- data/app/components/poetry/ui/progress/preview.rb +22 -0
- data/app/components/poetry/ui/progress/style.rb +19 -0
- data/app/components/poetry/ui/questionnaire/component.html.erb +80 -0
- data/app/components/poetry/ui/questionnaire/component.rb +396 -0
- data/app/components/poetry/ui/questionnaire/preview.rb +99 -0
- data/app/components/poetry/ui/questionnaire/style.rb +53 -0
- data/app/components/poetry/ui/radio_group/component.html.erb +4 -0
- data/app/components/poetry/ui/radio_group/component.rb +323 -0
- data/app/components/poetry/ui/radio_group/preview.rb +109 -0
- data/app/components/poetry/ui/radio_group/style.rb +53 -0
- data/app/components/poetry/ui/resizable/component.html.erb +10 -0
- data/app/components/poetry/ui/resizable/component.rb +178 -0
- data/app/components/poetry/ui/resizable/preview.rb +42 -0
- data/app/components/poetry/ui/resizable/style.rb +30 -0
- data/app/components/poetry/ui/scroll_area/component.rb +76 -0
- data/app/components/poetry/ui/scroll_area/preview.rb +35 -0
- data/app/components/poetry/ui/scroll_area/style.rb +19 -0
- data/app/components/poetry/ui/search_field/component.html.erb +15 -0
- data/app/components/poetry/ui/search_field/component.rb +137 -0
- data/app/components/poetry/ui/search_field/preview.rb +23 -0
- data/app/components/poetry/ui/search_field/style.rb +18 -0
- data/app/components/poetry/ui/select/component.html.erb +15 -0
- data/app/components/poetry/ui/select/component.rb +639 -0
- data/app/components/poetry/ui/select/preview.rb +113 -0
- data/app/components/poetry/ui/select/style.rb +58 -0
- data/app/components/poetry/ui/sensitive_input/component.html.erb +29 -0
- data/app/components/poetry/ui/sensitive_input/component.rb +274 -0
- data/app/components/poetry/ui/sensitive_input/preview.rb +40 -0
- data/app/components/poetry/ui/sensitive_input/style.rb +49 -0
- data/app/components/poetry/ui/separator/component.rb +57 -0
- data/app/components/poetry/ui/separator/preview.rb +19 -0
- data/app/components/poetry/ui/separator/style.rb +15 -0
- data/app/components/poetry/ui/sheet/component.html.erb +21 -0
- data/app/components/poetry/ui/sheet/component.rb +97 -0
- data/app/components/poetry/ui/sheet/preview.rb +57 -0
- data/app/components/poetry/ui/sheet/style.rb +47 -0
- data/app/components/poetry/ui/sidebar/component.html.erb +20 -0
- data/app/components/poetry/ui/sidebar/component.rb +249 -0
- data/app/components/poetry/ui/sidebar/preview.rb +21 -0
- data/app/components/poetry/ui/sidebar/shell_preview.html.erb +47 -0
- data/app/components/poetry/ui/sidebar/style.rb +139 -0
- data/app/components/poetry/ui/skeleton/component.rb +39 -0
- data/app/components/poetry/ui/skeleton/preview.rb +22 -0
- data/app/components/poetry/ui/skeleton/style.rb +13 -0
- data/app/components/poetry/ui/slider/component.html.erb +13 -0
- data/app/components/poetry/ui/slider/component.rb +360 -0
- data/app/components/poetry/ui/slider/preview.rb +73 -0
- data/app/components/poetry/ui/slider/style.rb +55 -0
- data/app/components/poetry/ui/spinner/component.rb +58 -0
- data/app/components/poetry/ui/spinner/preview.rb +22 -0
- data/app/components/poetry/ui/spinner/style.rb +12 -0
- data/app/components/poetry/ui/stat/component.html.erb +13 -0
- data/app/components/poetry/ui/stat/component.rb +102 -0
- data/app/components/poetry/ui/stat/preview.rb +47 -0
- data/app/components/poetry/ui/stat/style.rb +29 -0
- data/app/components/poetry/ui/switch/component.html.erb +15 -0
- data/app/components/poetry/ui/switch/component.rb +136 -0
- data/app/components/poetry/ui/switch/preview.rb +66 -0
- data/app/components/poetry/ui/switch/style.rb +22 -0
- data/app/components/poetry/ui/table/component.html.erb +3 -0
- data/app/components/poetry/ui/table/component.rb +93 -0
- data/app/components/poetry/ui/table/preview.rb +96 -0
- data/app/components/poetry/ui/table/style.rb +26 -0
- data/app/components/poetry/ui/tabs/component.html.erb +10 -0
- data/app/components/poetry/ui/tabs/component.rb +253 -0
- data/app/components/poetry/ui/tabs/preview.rb +43 -0
- data/app/components/poetry/ui/tabs/style.rb +49 -0
- data/app/components/poetry/ui/tag_group/component.html.erb +8 -0
- data/app/components/poetry/ui/tag_group/component.rb +203 -0
- data/app/components/poetry/ui/tag_group/preview.rb +43 -0
- data/app/components/poetry/ui/tag_group/style.rb +29 -0
- data/app/components/poetry/ui/textarea/component.rb +64 -0
- data/app/components/poetry/ui/textarea/preview.rb +75 -0
- data/app/components/poetry/ui/textarea/style.rb +18 -0
- data/app/components/poetry/ui/time_field/component.html.erb +6 -0
- data/app/components/poetry/ui/time_field/component.rb +85 -0
- data/app/components/poetry/ui/time_field/preview.rb +40 -0
- data/app/components/poetry/ui/time_field/style.rb +30 -0
- data/app/components/poetry/ui/timeline/component.rb +134 -0
- data/app/components/poetry/ui/timeline/preview.rb +61 -0
- data/app/components/poetry/ui/timeline/style.rb +54 -0
- data/app/components/poetry/ui/toast/component.html.erb +24 -0
- data/app/components/poetry/ui/toast/component.rb +178 -0
- data/app/components/poetry/ui/toast/preview.rb +69 -0
- data/app/components/poetry/ui/toast/style.rb +33 -0
- data/app/components/poetry/ui/toast_trigger/addressed_preview.html.erb +12 -0
- data/app/components/poetry/ui/toast_trigger/component.html.erb +3 -0
- data/app/components/poetry/ui/toast_trigger/component.rb +82 -0
- data/app/components/poetry/ui/toast_trigger/default_preview.html.erb +11 -0
- data/app/components/poetry/ui/toast_trigger/preview.rb +19 -0
- data/app/components/poetry/ui/toaster/component.html.erb +1 -0
- data/app/components/poetry/ui/toaster/component.rb +99 -0
- data/app/components/poetry/ui/toaster/positions_preview.html.erb +24 -0
- data/app/components/poetry/ui/toaster/preview.rb +46 -0
- data/app/components/poetry/ui/toaster/stamp_preview.html.erb +15 -0
- data/app/components/poetry/ui/toaster/style.rb +26 -0
- data/app/components/poetry/ui/toggle/component.rb +120 -0
- data/app/components/poetry/ui/toggle/preview.rb +79 -0
- data/app/components/poetry/ui/toggle/style.rb +33 -0
- data/app/components/poetry/ui/toggle_group/component.html.erb +4 -0
- data/app/components/poetry/ui/toggle_group/component.rb +252 -0
- data/app/components/poetry/ui/toggle_group/preview.rb +143 -0
- data/app/components/poetry/ui/toggle_group/style.rb +33 -0
- data/app/components/poetry/ui/toolbar/component.rb +125 -0
- data/app/components/poetry/ui/toolbar/preview.rb +41 -0
- data/app/components/poetry/ui/toolbar/style.rb +20 -0
- data/app/components/poetry/ui/tooltip/component.html.erb +20 -0
- data/app/components/poetry/ui/tooltip/component.rb +185 -0
- data/app/components/poetry/ui/tooltip/preview.rb +74 -0
- data/app/components/poetry/ui/tooltip/previews/provider_row.html.erb +25 -0
- data/app/components/poetry/ui/tooltip/style.rb +24 -0
- data/app/components/poetry/ui/tree/component.html.erb +32 -0
- data/app/components/poetry/ui/tree/component.rb +233 -0
- data/app/components/poetry/ui/tree/preview.rb +55 -0
- data/app/components/poetry/ui/tree/style.rb +29 -0
- data/app/components/poetry/ui/typeset/component.rb +73 -0
- data/app/components/poetry/ui/typeset/preview.rb +45 -0
- data/app/components/poetry/ui/typeset/style.rb +15 -0
- data/app/controllers/poetry/ui/llms_controller.rb +28 -0
- data/app/helpers/poetry/ui/components_helper.rb +1794 -0
- data/app/helpers/poetry/ui/form_builder/type_inference.rb +117 -0
- data/app/helpers/poetry/ui/form_builder.rb +916 -0
- data/app/helpers/poetry/ui/optimistic_form_builder.rb +55 -0
- data/app/helpers/poetry/ui/toast_stream_actions.rb +27 -0
- data/config/component_descriptions.yml +96 -0
- data/config/component_registry.yml +12257 -0
- data/config/locales/en.yml +93 -0
- data/config/routes.rb +8 -0
- data/config/template_classes.txt +113 -0
- data/lib/generators/poetry/add/add_generator.rb +218 -0
- data/lib/generators/poetry/agent_rules/agent_rules_generator.rb +91 -0
- data/lib/generators/poetry/agents/agents_generator.rb +24 -0
- data/lib/generators/poetry/agents_section.rb +148 -0
- data/lib/generators/poetry/block/block_generator.rb +67 -0
- data/lib/generators/poetry/block/templates/action_bar.html.erb +45 -0
- data/lib/generators/poetry/block/templates/app_shell.html.erb +139 -0
- data/lib/generators/poetry/block/templates/data_index.html.erb +85 -0
- data/lib/generators/poetry/block/templates/destructive_panel.html.erb +26 -0
- data/lib/generators/poetry/block/templates/page_header.html.erb +25 -0
- data/lib/generators/poetry/block/templates/section_card.html.erb +42 -0
- data/lib/generators/poetry/block/templates/stepper.html.erb +79 -0
- data/lib/generators/poetry/block/templates/top_nav.html.erb +44 -0
- data/lib/generators/poetry/diff/diff_generator.rb +135 -0
- data/lib/generators/poetry/editor/editor_generator.rb +344 -0
- data/lib/generators/poetry/editor/templates/poetry-check-hook +81 -0
- data/lib/generators/poetry/install/install_generator.rb +364 -0
- data/lib/generators/poetry/pagination/pagination_generator.rb +76 -0
- data/lib/generators/poetry/pagination/templates/kaminari_paginator.html.erb +29 -0
- data/lib/generators/poetry/pagination/templates/poetry_link_renderer.rb +34 -0
- data/lib/generators/poetry/pagination/templates/poetry_pagy_helper.rb +28 -0
- data/lib/generators/poetry/recipes/agent_embed/app/javascript/controllers/agent_demo_controller.js +131 -0
- data/lib/generators/poetry/recipes/screen_data_index/app/controllers/orders_controller.rb +15 -0
- data/lib/generators/poetry/recipes/screen_data_index/app/views/orders/index.html.erb +7 -0
- data/lib/generators/poetry/recipes/screen_data_index/test/system/orders_index_test.rb +16 -0
- data/lib/generators/poetry/recipes/screen_settings/app/controllers/settings_controller.rb +14 -0
- data/lib/generators/poetry/recipes/screen_settings/app/views/settings/show.html.erb +9 -0
- data/lib/generators/poetry/recipes/screen_settings/test/system/settings_show_test.rb +16 -0
- data/lib/generators/poetry/scaffold_templates/scaffold_templates_generator.rb +60 -0
- data/lib/generators/poetry/scaffold_templates/templates/_form.html.erb.tt +77 -0
- data/lib/generators/poetry/scaffold_templates/templates/controller.rb.tt +78 -0
- data/lib/generators/poetry/scaffold_templates/templates/edit.html.erb.tt +14 -0
- data/lib/generators/poetry/scaffold_templates/templates/index.html.erb.tt +24 -0
- data/lib/generators/poetry/scaffold_templates/templates/new.html.erb.tt +11 -0
- data/lib/generators/poetry/scaffold_templates/templates/partial.html.erb.tt +13 -0
- data/lib/generators/poetry/scaffold_templates/templates/show.html.erb.tt +18 -0
- data/lib/generators/poetry/skill/skill_generator.rb +34 -0
- data/lib/generators/poetry/skill/templates/poetry-component/SKILL.md +58 -0
- data/lib/generators/poetry/skill/templates/poetry-component/references/anatomy.md +152 -0
- data/lib/generators/poetry/skill/templates/poetry-component/references/checklist.md +67 -0
- data/lib/generators/poetry/skill/templates/poetry-component/references/documentation.md +137 -0
- data/lib/generators/poetry/skill/templates/poetry-design/SKILL.md +56 -0
- data/lib/generators/poetry/skill/templates/poetry-design/references/audit.md +123 -0
- data/lib/generators/poetry/skill/templates/poetry-design/references/compose.md +73 -0
- data/lib/generators/poetry/skill/templates/poetry-design/references/figma.md +68 -0
- data/lib/generators/poetry/skill/templates/poetry-design/references/paper.md +56 -0
- data/lib/generators/poetry/skill/templates/poetry-design/references/study.md +47 -0
- data/lib/generators/poetry/skill/templates/poetry-design/references/theme.md +70 -0
- data/lib/generators/poetry/skills_section.rb +58 -0
- data/lib/poetry/ui/chat.rb +283 -0
- data/lib/poetry/ui/code_block_highlighter.rb +60 -0
- data/lib/poetry/ui/engine.rb +55 -0
- data/lib/poetry/ui/recipes.rb +157 -0
- data/lib/poetry/ui/testing/combobox.rb +167 -0
- data/lib/poetry/ui/testing/dialog.rb +73 -0
- data/lib/poetry/ui/testing/menu.rb +127 -0
- data/lib/poetry/ui/testing/registration.rb +58 -0
- data/lib/poetry/ui/testing/select.rb +147 -0
- data/lib/poetry/ui/testing/tester.rb +130 -0
- data/lib/poetry/ui/testing.rb +130 -0
- data/lib/poetry/ui/themes.rb +109 -0
- data/lib/poetry/ui/version.rb +8 -0
- data/lib/poetry/ui/webmcp.rb +91 -0
- data/lib/poetry/ui.rb +285 -0
- data/lib/poetry-ui.rb +5 -0
- data/lib/tasks/poetry/check.rake +73 -0
- data/lib/tasks/poetry/design.rake +293 -0
- data/lib/tasks/poetry/verify.rake +36 -0
- data/themes/default.css +1793 -0
- data/themes/luma.css +1764 -0
- data/themes/lyra.css +1768 -0
- data/themes/maia.css +1768 -0
- data/themes/mira.css +1760 -0
- data/themes/nova.css +1755 -0
- data/themes/rhea.css +1771 -0
- data/themes/sera.css +1757 -0
- data/themes/vega.css +1775 -0
- data/typeset/typeset.css +499 -0
- metadata +502 -0
metadata
ADDED
|
@@ -0,0 +1,502 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: poetry-ui
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Matt Solt
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: poetry-core
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - '='
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: 0.0.2
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - '='
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 0.0.2
|
|
26
|
+
description: 'Poetry''s components for the AI-native UI component library: accessible,
|
|
27
|
+
themeable, agent-legible ViewComponents built entirely on poetry-core''s public
|
|
28
|
+
DSL.'
|
|
29
|
+
email:
|
|
30
|
+
- mattsolt@gmail.com
|
|
31
|
+
executables: []
|
|
32
|
+
extensions: []
|
|
33
|
+
extra_rdoc_files: []
|
|
34
|
+
files:
|
|
35
|
+
- ".gitattributes"
|
|
36
|
+
- CHANGELOG.md
|
|
37
|
+
- LICENSE.txt
|
|
38
|
+
- README.md
|
|
39
|
+
- THIRD_PARTY_NOTICES.md
|
|
40
|
+
- app/components/poetry/ui/accordion/component.html.erb
|
|
41
|
+
- app/components/poetry/ui/accordion/component.rb
|
|
42
|
+
- app/components/poetry/ui/accordion/preview.rb
|
|
43
|
+
- app/components/poetry/ui/accordion/style.rb
|
|
44
|
+
- app/components/poetry/ui/alert/component.html.erb
|
|
45
|
+
- app/components/poetry/ui/alert/component.rb
|
|
46
|
+
- app/components/poetry/ui/alert/preview.rb
|
|
47
|
+
- app/components/poetry/ui/alert/style.rb
|
|
48
|
+
- app/components/poetry/ui/alert_dialog/component.html.erb
|
|
49
|
+
- app/components/poetry/ui/alert_dialog/component.rb
|
|
50
|
+
- app/components/poetry/ui/alert_dialog/preview.rb
|
|
51
|
+
- app/components/poetry/ui/alert_dialog/style.rb
|
|
52
|
+
- app/components/poetry/ui/aspect_ratio/component.rb
|
|
53
|
+
- app/components/poetry/ui/aspect_ratio/preview.rb
|
|
54
|
+
- app/components/poetry/ui/aspect_ratio/style.rb
|
|
55
|
+
- app/components/poetry/ui/attachment/component.html.erb
|
|
56
|
+
- app/components/poetry/ui/attachment/component.rb
|
|
57
|
+
- app/components/poetry/ui/attachment/preview.rb
|
|
58
|
+
- app/components/poetry/ui/attachment/style.rb
|
|
59
|
+
- app/components/poetry/ui/autocomplete/component.html.erb
|
|
60
|
+
- app/components/poetry/ui/autocomplete/component.rb
|
|
61
|
+
- app/components/poetry/ui/autocomplete/preview.rb
|
|
62
|
+
- app/components/poetry/ui/autocomplete/style.rb
|
|
63
|
+
- app/components/poetry/ui/avatar/component.rb
|
|
64
|
+
- app/components/poetry/ui/avatar/group_preview.html.erb
|
|
65
|
+
- app/components/poetry/ui/avatar/preview.rb
|
|
66
|
+
- app/components/poetry/ui/avatar/style.rb
|
|
67
|
+
- app/components/poetry/ui/badge/component.rb
|
|
68
|
+
- app/components/poetry/ui/badge/preview.rb
|
|
69
|
+
- app/components/poetry/ui/badge/style.rb
|
|
70
|
+
- app/components/poetry/ui/breadcrumb/component.html.erb
|
|
71
|
+
- app/components/poetry/ui/breadcrumb/component.rb
|
|
72
|
+
- app/components/poetry/ui/breadcrumb/dropdown_crumb_preview.html.erb
|
|
73
|
+
- app/components/poetry/ui/breadcrumb/preview.rb
|
|
74
|
+
- app/components/poetry/ui/breadcrumb/style.rb
|
|
75
|
+
- app/components/poetry/ui/bubble/component.html.erb
|
|
76
|
+
- app/components/poetry/ui/bubble/component.rb
|
|
77
|
+
- app/components/poetry/ui/bubble/preview.rb
|
|
78
|
+
- app/components/poetry/ui/bubble/style.rb
|
|
79
|
+
- app/components/poetry/ui/button/component.html.erb
|
|
80
|
+
- app/components/poetry/ui/button/component.rb
|
|
81
|
+
- app/components/poetry/ui/button/preview.rb
|
|
82
|
+
- app/components/poetry/ui/button/style.rb
|
|
83
|
+
- app/components/poetry/ui/button_group/component.rb
|
|
84
|
+
- app/components/poetry/ui/button_group/popup_triggers_preview.html.erb
|
|
85
|
+
- app/components/poetry/ui/button_group/preview.rb
|
|
86
|
+
- app/components/poetry/ui/button_group/style.rb
|
|
87
|
+
- app/components/poetry/ui/button_group/text_prefix_preview.html.erb
|
|
88
|
+
- app/components/poetry/ui/calendar/component.html.erb
|
|
89
|
+
- app/components/poetry/ui/calendar/component.rb
|
|
90
|
+
- app/components/poetry/ui/calendar/preview.rb
|
|
91
|
+
- app/components/poetry/ui/calendar/style.rb
|
|
92
|
+
- app/components/poetry/ui/card/component.html.erb
|
|
93
|
+
- app/components/poetry/ui/card/component.rb
|
|
94
|
+
- app/components/poetry/ui/card/preview.rb
|
|
95
|
+
- app/components/poetry/ui/card/style.rb
|
|
96
|
+
- app/components/poetry/ui/carousel/component.html.erb
|
|
97
|
+
- app/components/poetry/ui/carousel/component.rb
|
|
98
|
+
- app/components/poetry/ui/carousel/preview.rb
|
|
99
|
+
- app/components/poetry/ui/carousel/style.rb
|
|
100
|
+
- app/components/poetry/ui/checkbox/component.html.erb
|
|
101
|
+
- app/components/poetry/ui/checkbox/component.rb
|
|
102
|
+
- app/components/poetry/ui/checkbox/preview.rb
|
|
103
|
+
- app/components/poetry/ui/checkbox/style.rb
|
|
104
|
+
- app/components/poetry/ui/clipboard_text/component.html.erb
|
|
105
|
+
- app/components/poetry/ui/clipboard_text/component.rb
|
|
106
|
+
- app/components/poetry/ui/clipboard_text/preview.rb
|
|
107
|
+
- app/components/poetry/ui/clipboard_text/style.rb
|
|
108
|
+
- app/components/poetry/ui/code_block/component.html.erb
|
|
109
|
+
- app/components/poetry/ui/code_block/component.rb
|
|
110
|
+
- app/components/poetry/ui/code_block/preview.rb
|
|
111
|
+
- app/components/poetry/ui/code_block/style.rb
|
|
112
|
+
- app/components/poetry/ui/collapsible/component.html.erb
|
|
113
|
+
- app/components/poetry/ui/collapsible/component.rb
|
|
114
|
+
- app/components/poetry/ui/collapsible/preview.rb
|
|
115
|
+
- app/components/poetry/ui/combobox/component.html.erb
|
|
116
|
+
- app/components/poetry/ui/combobox/component.rb
|
|
117
|
+
- app/components/poetry/ui/combobox/preview.rb
|
|
118
|
+
- app/components/poetry/ui/combobox/style.rb
|
|
119
|
+
- app/components/poetry/ui/command/component.html.erb
|
|
120
|
+
- app/components/poetry/ui/command/component.rb
|
|
121
|
+
- app/components/poetry/ui/command/dialog_component.html.erb
|
|
122
|
+
- app/components/poetry/ui/command/dialog_component.rb
|
|
123
|
+
- app/components/poetry/ui/command/dialog_preview.rb
|
|
124
|
+
- app/components/poetry/ui/command/preview.rb
|
|
125
|
+
- app/components/poetry/ui/command/style.rb
|
|
126
|
+
- app/components/poetry/ui/composable_trigger.rb
|
|
127
|
+
- app/components/poetry/ui/context_menu/component.html.erb
|
|
128
|
+
- app/components/poetry/ui/context_menu/component.rb
|
|
129
|
+
- app/components/poetry/ui/context_menu/preview.rb
|
|
130
|
+
- app/components/poetry/ui/context_menu/style.rb
|
|
131
|
+
- app/components/poetry/ui/data_table/component.html.erb
|
|
132
|
+
- app/components/poetry/ui/data_table/component.rb
|
|
133
|
+
- app/components/poetry/ui/data_table/preview.rb
|
|
134
|
+
- app/components/poetry/ui/data_table/state.rb
|
|
135
|
+
- app/components/poetry/ui/data_table/style.rb
|
|
136
|
+
- app/components/poetry/ui/date_field/component.html.erb
|
|
137
|
+
- app/components/poetry/ui/date_field/component.rb
|
|
138
|
+
- app/components/poetry/ui/date_field/preview.rb
|
|
139
|
+
- app/components/poetry/ui/date_field/style.rb
|
|
140
|
+
- app/components/poetry/ui/date_picker/component.html.erb
|
|
141
|
+
- app/components/poetry/ui/date_picker/component.rb
|
|
142
|
+
- app/components/poetry/ui/date_picker/preview.rb
|
|
143
|
+
- app/components/poetry/ui/date_picker/style.rb
|
|
144
|
+
- app/components/poetry/ui/deferred/component.html.erb
|
|
145
|
+
- app/components/poetry/ui/deferred/component.rb
|
|
146
|
+
- app/components/poetry/ui/deferred/preview.rb
|
|
147
|
+
- app/components/poetry/ui/dialog/component.html.erb
|
|
148
|
+
- app/components/poetry/ui/dialog/component.rb
|
|
149
|
+
- app/components/poetry/ui/dialog/preview.rb
|
|
150
|
+
- app/components/poetry/ui/dialog/style.rb
|
|
151
|
+
- app/components/poetry/ui/drawer/component.html.erb
|
|
152
|
+
- app/components/poetry/ui/drawer/component.rb
|
|
153
|
+
- app/components/poetry/ui/drawer/preview.rb
|
|
154
|
+
- app/components/poetry/ui/drawer/style.rb
|
|
155
|
+
- app/components/poetry/ui/dropdown_menu/component.html.erb
|
|
156
|
+
- app/components/poetry/ui/dropdown_menu/component.rb
|
|
157
|
+
- app/components/poetry/ui/dropdown_menu/preview.rb
|
|
158
|
+
- app/components/poetry/ui/dropdown_menu/style.rb
|
|
159
|
+
- app/components/poetry/ui/empty/component.html.erb
|
|
160
|
+
- app/components/poetry/ui/empty/component.rb
|
|
161
|
+
- app/components/poetry/ui/empty/preview.rb
|
|
162
|
+
- app/components/poetry/ui/empty/style.rb
|
|
163
|
+
- app/components/poetry/ui/family_identity.rb
|
|
164
|
+
- app/components/poetry/ui/field/component.html.erb
|
|
165
|
+
- app/components/poetry/ui/field/component.rb
|
|
166
|
+
- app/components/poetry/ui/field/preview.html.erb
|
|
167
|
+
- app/components/poetry/ui/field/preview.rb
|
|
168
|
+
- app/components/poetry/ui/field/style.rb
|
|
169
|
+
- app/components/poetry/ui/field_group/component.rb
|
|
170
|
+
- app/components/poetry/ui/field_group/preview.html.erb
|
|
171
|
+
- app/components/poetry/ui/field_group/preview.rb
|
|
172
|
+
- app/components/poetry/ui/field_group/style.rb
|
|
173
|
+
- app/components/poetry/ui/field_separator/component.rb
|
|
174
|
+
- app/components/poetry/ui/field_separator/preview.rb
|
|
175
|
+
- app/components/poetry/ui/field_separator/style.rb
|
|
176
|
+
- app/components/poetry/ui/fieldset/component.rb
|
|
177
|
+
- app/components/poetry/ui/fieldset/preview.html.erb
|
|
178
|
+
- app/components/poetry/ui/fieldset/preview.rb
|
|
179
|
+
- app/components/poetry/ui/fieldset/style.rb
|
|
180
|
+
- app/components/poetry/ui/file_input/component.html.erb
|
|
181
|
+
- app/components/poetry/ui/file_input/component.rb
|
|
182
|
+
- app/components/poetry/ui/file_input/preview.rb
|
|
183
|
+
- app/components/poetry/ui/file_input/style.rb
|
|
184
|
+
- app/components/poetry/ui/hover_card/component.html.erb
|
|
185
|
+
- app/components/poetry/ui/hover_card/component.rb
|
|
186
|
+
- app/components/poetry/ui/hover_card/preview.rb
|
|
187
|
+
- app/components/poetry/ui/hover_card/style.rb
|
|
188
|
+
- app/components/poetry/ui/icon/component.rb
|
|
189
|
+
- app/components/poetry/ui/icon/preview.rb
|
|
190
|
+
- app/components/poetry/ui/input/component.rb
|
|
191
|
+
- app/components/poetry/ui/input/preview.rb
|
|
192
|
+
- app/components/poetry/ui/input/style.rb
|
|
193
|
+
- app/components/poetry/ui/input_group/button_preview.html.erb
|
|
194
|
+
- app/components/poetry/ui/input_group/component.rb
|
|
195
|
+
- app/components/poetry/ui/input_group/preview.rb
|
|
196
|
+
- app/components/poetry/ui/input_group/search_preview.html.erb
|
|
197
|
+
- app/components/poetry/ui/input_group/style.rb
|
|
198
|
+
- app/components/poetry/ui/input_group/textarea_preview.html.erb
|
|
199
|
+
- app/components/poetry/ui/input_group_field.rb
|
|
200
|
+
- app/components/poetry/ui/input_otp/component.html.erb
|
|
201
|
+
- app/components/poetry/ui/input_otp/component.rb
|
|
202
|
+
- app/components/poetry/ui/input_otp/preview.rb
|
|
203
|
+
- app/components/poetry/ui/input_otp/style.rb
|
|
204
|
+
- app/components/poetry/ui/item/component.html.erb
|
|
205
|
+
- app/components/poetry/ui/item/component.rb
|
|
206
|
+
- app/components/poetry/ui/item/group_preview.html.erb
|
|
207
|
+
- app/components/poetry/ui/item/preview.rb
|
|
208
|
+
- app/components/poetry/ui/item/style.rb
|
|
209
|
+
- app/components/poetry/ui/kbd/component.rb
|
|
210
|
+
- app/components/poetry/ui/kbd/group_preview.html.erb
|
|
211
|
+
- app/components/poetry/ui/kbd/preview.rb
|
|
212
|
+
- app/components/poetry/ui/kbd/style.rb
|
|
213
|
+
- app/components/poetry/ui/label/component.rb
|
|
214
|
+
- app/components/poetry/ui/label/preview.html.erb
|
|
215
|
+
- app/components/poetry/ui/label/preview.rb
|
|
216
|
+
- app/components/poetry/ui/label/style.rb
|
|
217
|
+
- app/components/poetry/ui/link/component.rb
|
|
218
|
+
- app/components/poetry/ui/link/preview.rb
|
|
219
|
+
- app/components/poetry/ui/link/style.rb
|
|
220
|
+
- app/components/poetry/ui/marker/component.html.erb
|
|
221
|
+
- app/components/poetry/ui/marker/component.rb
|
|
222
|
+
- app/components/poetry/ui/marker/preview.rb
|
|
223
|
+
- app/components/poetry/ui/marker/style.rb
|
|
224
|
+
- app/components/poetry/ui/menubar/component.html.erb
|
|
225
|
+
- app/components/poetry/ui/menubar/component.rb
|
|
226
|
+
- app/components/poetry/ui/menubar/preview.rb
|
|
227
|
+
- app/components/poetry/ui/menubar/style.rb
|
|
228
|
+
- app/components/poetry/ui/menus.rb
|
|
229
|
+
- app/components/poetry/ui/message/component.html.erb
|
|
230
|
+
- app/components/poetry/ui/message/component.rb
|
|
231
|
+
- app/components/poetry/ui/message/preview.rb
|
|
232
|
+
- app/components/poetry/ui/message/style.rb
|
|
233
|
+
- app/components/poetry/ui/message_scroller/component.html.erb
|
|
234
|
+
- app/components/poetry/ui/message_scroller/component.rb
|
|
235
|
+
- app/components/poetry/ui/message_scroller/preview.rb
|
|
236
|
+
- app/components/poetry/ui/message_scroller/style.rb
|
|
237
|
+
- app/components/poetry/ui/metadata_list/component.rb
|
|
238
|
+
- app/components/poetry/ui/metadata_list/preview.rb
|
|
239
|
+
- app/components/poetry/ui/metadata_list/style.rb
|
|
240
|
+
- app/components/poetry/ui/meter/component.rb
|
|
241
|
+
- app/components/poetry/ui/meter/preview.rb
|
|
242
|
+
- app/components/poetry/ui/meter/style.rb
|
|
243
|
+
- app/components/poetry/ui/native_select/component.rb
|
|
244
|
+
- app/components/poetry/ui/native_select/labelled_preview.html.erb
|
|
245
|
+
- app/components/poetry/ui/native_select/preview.rb
|
|
246
|
+
- app/components/poetry/ui/native_select/style.rb
|
|
247
|
+
- app/components/poetry/ui/navigation_menu/bar_preview.html.erb
|
|
248
|
+
- app/components/poetry/ui/navigation_menu/component.html.erb
|
|
249
|
+
- app/components/poetry/ui/navigation_menu/component.rb
|
|
250
|
+
- app/components/poetry/ui/navigation_menu/preview.rb
|
|
251
|
+
- app/components/poetry/ui/navigation_menu/style.rb
|
|
252
|
+
- app/components/poetry/ui/navigation_menu/viewport_preview.html.erb
|
|
253
|
+
- app/components/poetry/ui/number_field/component.html.erb
|
|
254
|
+
- app/components/poetry/ui/number_field/component.rb
|
|
255
|
+
- app/components/poetry/ui/number_field/preview.rb
|
|
256
|
+
- app/components/poetry/ui/number_field/style.rb
|
|
257
|
+
- app/components/poetry/ui/pagination/component.html.erb
|
|
258
|
+
- app/components/poetry/ui/pagination/component.rb
|
|
259
|
+
- app/components/poetry/ui/pagination/preview.rb
|
|
260
|
+
- app/components/poetry/ui/pagination/style.rb
|
|
261
|
+
- app/components/poetry/ui/popover/component.html.erb
|
|
262
|
+
- app/components/poetry/ui/popover/component.rb
|
|
263
|
+
- app/components/poetry/ui/popover/preview.html.erb
|
|
264
|
+
- app/components/poetry/ui/popover/preview.rb
|
|
265
|
+
- app/components/poetry/ui/popover/style.rb
|
|
266
|
+
- app/components/poetry/ui/popper_consumer.rb
|
|
267
|
+
- app/components/poetry/ui/progress/component.rb
|
|
268
|
+
- app/components/poetry/ui/progress/preview.rb
|
|
269
|
+
- app/components/poetry/ui/progress/style.rb
|
|
270
|
+
- app/components/poetry/ui/questionnaire/component.html.erb
|
|
271
|
+
- app/components/poetry/ui/questionnaire/component.rb
|
|
272
|
+
- app/components/poetry/ui/questionnaire/preview.rb
|
|
273
|
+
- app/components/poetry/ui/questionnaire/style.rb
|
|
274
|
+
- app/components/poetry/ui/radio_group/component.html.erb
|
|
275
|
+
- app/components/poetry/ui/radio_group/component.rb
|
|
276
|
+
- app/components/poetry/ui/radio_group/preview.rb
|
|
277
|
+
- app/components/poetry/ui/radio_group/style.rb
|
|
278
|
+
- app/components/poetry/ui/resizable/component.html.erb
|
|
279
|
+
- app/components/poetry/ui/resizable/component.rb
|
|
280
|
+
- app/components/poetry/ui/resizable/preview.rb
|
|
281
|
+
- app/components/poetry/ui/resizable/style.rb
|
|
282
|
+
- app/components/poetry/ui/scroll_area/component.rb
|
|
283
|
+
- app/components/poetry/ui/scroll_area/preview.rb
|
|
284
|
+
- app/components/poetry/ui/scroll_area/style.rb
|
|
285
|
+
- app/components/poetry/ui/search_field/component.html.erb
|
|
286
|
+
- app/components/poetry/ui/search_field/component.rb
|
|
287
|
+
- app/components/poetry/ui/search_field/preview.rb
|
|
288
|
+
- app/components/poetry/ui/search_field/style.rb
|
|
289
|
+
- app/components/poetry/ui/select/component.html.erb
|
|
290
|
+
- app/components/poetry/ui/select/component.rb
|
|
291
|
+
- app/components/poetry/ui/select/preview.rb
|
|
292
|
+
- app/components/poetry/ui/select/style.rb
|
|
293
|
+
- app/components/poetry/ui/sensitive_input/component.html.erb
|
|
294
|
+
- app/components/poetry/ui/sensitive_input/component.rb
|
|
295
|
+
- app/components/poetry/ui/sensitive_input/preview.rb
|
|
296
|
+
- app/components/poetry/ui/sensitive_input/style.rb
|
|
297
|
+
- app/components/poetry/ui/separator/component.rb
|
|
298
|
+
- app/components/poetry/ui/separator/preview.rb
|
|
299
|
+
- app/components/poetry/ui/separator/style.rb
|
|
300
|
+
- app/components/poetry/ui/sheet/component.html.erb
|
|
301
|
+
- app/components/poetry/ui/sheet/component.rb
|
|
302
|
+
- app/components/poetry/ui/sheet/preview.rb
|
|
303
|
+
- app/components/poetry/ui/sheet/style.rb
|
|
304
|
+
- app/components/poetry/ui/sidebar/component.html.erb
|
|
305
|
+
- app/components/poetry/ui/sidebar/component.rb
|
|
306
|
+
- app/components/poetry/ui/sidebar/preview.rb
|
|
307
|
+
- app/components/poetry/ui/sidebar/shell_preview.html.erb
|
|
308
|
+
- app/components/poetry/ui/sidebar/style.rb
|
|
309
|
+
- app/components/poetry/ui/skeleton/component.rb
|
|
310
|
+
- app/components/poetry/ui/skeleton/preview.rb
|
|
311
|
+
- app/components/poetry/ui/skeleton/style.rb
|
|
312
|
+
- app/components/poetry/ui/slider/component.html.erb
|
|
313
|
+
- app/components/poetry/ui/slider/component.rb
|
|
314
|
+
- app/components/poetry/ui/slider/preview.rb
|
|
315
|
+
- app/components/poetry/ui/slider/style.rb
|
|
316
|
+
- app/components/poetry/ui/spinner/component.rb
|
|
317
|
+
- app/components/poetry/ui/spinner/preview.rb
|
|
318
|
+
- app/components/poetry/ui/spinner/style.rb
|
|
319
|
+
- app/components/poetry/ui/stat/component.html.erb
|
|
320
|
+
- app/components/poetry/ui/stat/component.rb
|
|
321
|
+
- app/components/poetry/ui/stat/preview.rb
|
|
322
|
+
- app/components/poetry/ui/stat/style.rb
|
|
323
|
+
- app/components/poetry/ui/switch/component.html.erb
|
|
324
|
+
- app/components/poetry/ui/switch/component.rb
|
|
325
|
+
- app/components/poetry/ui/switch/preview.rb
|
|
326
|
+
- app/components/poetry/ui/switch/style.rb
|
|
327
|
+
- app/components/poetry/ui/table/component.html.erb
|
|
328
|
+
- app/components/poetry/ui/table/component.rb
|
|
329
|
+
- app/components/poetry/ui/table/preview.rb
|
|
330
|
+
- app/components/poetry/ui/table/style.rb
|
|
331
|
+
- app/components/poetry/ui/tabs/component.html.erb
|
|
332
|
+
- app/components/poetry/ui/tabs/component.rb
|
|
333
|
+
- app/components/poetry/ui/tabs/preview.rb
|
|
334
|
+
- app/components/poetry/ui/tabs/style.rb
|
|
335
|
+
- app/components/poetry/ui/tag_group/component.html.erb
|
|
336
|
+
- app/components/poetry/ui/tag_group/component.rb
|
|
337
|
+
- app/components/poetry/ui/tag_group/preview.rb
|
|
338
|
+
- app/components/poetry/ui/tag_group/style.rb
|
|
339
|
+
- app/components/poetry/ui/textarea/component.rb
|
|
340
|
+
- app/components/poetry/ui/textarea/preview.rb
|
|
341
|
+
- app/components/poetry/ui/textarea/style.rb
|
|
342
|
+
- app/components/poetry/ui/time_field/component.html.erb
|
|
343
|
+
- app/components/poetry/ui/time_field/component.rb
|
|
344
|
+
- app/components/poetry/ui/time_field/preview.rb
|
|
345
|
+
- app/components/poetry/ui/time_field/style.rb
|
|
346
|
+
- app/components/poetry/ui/timeline/component.rb
|
|
347
|
+
- app/components/poetry/ui/timeline/preview.rb
|
|
348
|
+
- app/components/poetry/ui/timeline/style.rb
|
|
349
|
+
- app/components/poetry/ui/toast/component.html.erb
|
|
350
|
+
- app/components/poetry/ui/toast/component.rb
|
|
351
|
+
- app/components/poetry/ui/toast/preview.rb
|
|
352
|
+
- app/components/poetry/ui/toast/style.rb
|
|
353
|
+
- app/components/poetry/ui/toast_trigger/addressed_preview.html.erb
|
|
354
|
+
- app/components/poetry/ui/toast_trigger/component.html.erb
|
|
355
|
+
- app/components/poetry/ui/toast_trigger/component.rb
|
|
356
|
+
- app/components/poetry/ui/toast_trigger/default_preview.html.erb
|
|
357
|
+
- app/components/poetry/ui/toast_trigger/preview.rb
|
|
358
|
+
- app/components/poetry/ui/toaster/component.html.erb
|
|
359
|
+
- app/components/poetry/ui/toaster/component.rb
|
|
360
|
+
- app/components/poetry/ui/toaster/positions_preview.html.erb
|
|
361
|
+
- app/components/poetry/ui/toaster/preview.rb
|
|
362
|
+
- app/components/poetry/ui/toaster/stamp_preview.html.erb
|
|
363
|
+
- app/components/poetry/ui/toaster/style.rb
|
|
364
|
+
- app/components/poetry/ui/toggle/component.rb
|
|
365
|
+
- app/components/poetry/ui/toggle/preview.rb
|
|
366
|
+
- app/components/poetry/ui/toggle/style.rb
|
|
367
|
+
- app/components/poetry/ui/toggle_group/component.html.erb
|
|
368
|
+
- app/components/poetry/ui/toggle_group/component.rb
|
|
369
|
+
- app/components/poetry/ui/toggle_group/preview.rb
|
|
370
|
+
- app/components/poetry/ui/toggle_group/style.rb
|
|
371
|
+
- app/components/poetry/ui/toolbar/component.rb
|
|
372
|
+
- app/components/poetry/ui/toolbar/preview.rb
|
|
373
|
+
- app/components/poetry/ui/toolbar/style.rb
|
|
374
|
+
- app/components/poetry/ui/tooltip/component.html.erb
|
|
375
|
+
- app/components/poetry/ui/tooltip/component.rb
|
|
376
|
+
- app/components/poetry/ui/tooltip/preview.rb
|
|
377
|
+
- app/components/poetry/ui/tooltip/previews/provider_row.html.erb
|
|
378
|
+
- app/components/poetry/ui/tooltip/style.rb
|
|
379
|
+
- app/components/poetry/ui/tree/component.html.erb
|
|
380
|
+
- app/components/poetry/ui/tree/component.rb
|
|
381
|
+
- app/components/poetry/ui/tree/preview.rb
|
|
382
|
+
- app/components/poetry/ui/tree/style.rb
|
|
383
|
+
- app/components/poetry/ui/typeset/component.rb
|
|
384
|
+
- app/components/poetry/ui/typeset/preview.rb
|
|
385
|
+
- app/components/poetry/ui/typeset/style.rb
|
|
386
|
+
- app/controllers/poetry/ui/llms_controller.rb
|
|
387
|
+
- app/helpers/poetry/ui/components_helper.rb
|
|
388
|
+
- app/helpers/poetry/ui/form_builder.rb
|
|
389
|
+
- app/helpers/poetry/ui/form_builder/type_inference.rb
|
|
390
|
+
- app/helpers/poetry/ui/optimistic_form_builder.rb
|
|
391
|
+
- app/helpers/poetry/ui/toast_stream_actions.rb
|
|
392
|
+
- config/component_descriptions.yml
|
|
393
|
+
- config/component_registry.yml
|
|
394
|
+
- config/locales/en.yml
|
|
395
|
+
- config/routes.rb
|
|
396
|
+
- config/template_classes.txt
|
|
397
|
+
- lib/generators/poetry/add/add_generator.rb
|
|
398
|
+
- lib/generators/poetry/agent_rules/agent_rules_generator.rb
|
|
399
|
+
- lib/generators/poetry/agents/agents_generator.rb
|
|
400
|
+
- lib/generators/poetry/agents_section.rb
|
|
401
|
+
- lib/generators/poetry/block/block_generator.rb
|
|
402
|
+
- lib/generators/poetry/block/templates/action_bar.html.erb
|
|
403
|
+
- lib/generators/poetry/block/templates/app_shell.html.erb
|
|
404
|
+
- lib/generators/poetry/block/templates/data_index.html.erb
|
|
405
|
+
- lib/generators/poetry/block/templates/destructive_panel.html.erb
|
|
406
|
+
- lib/generators/poetry/block/templates/page_header.html.erb
|
|
407
|
+
- lib/generators/poetry/block/templates/section_card.html.erb
|
|
408
|
+
- lib/generators/poetry/block/templates/stepper.html.erb
|
|
409
|
+
- lib/generators/poetry/block/templates/top_nav.html.erb
|
|
410
|
+
- lib/generators/poetry/diff/diff_generator.rb
|
|
411
|
+
- lib/generators/poetry/editor/editor_generator.rb
|
|
412
|
+
- lib/generators/poetry/editor/templates/poetry-check-hook
|
|
413
|
+
- lib/generators/poetry/install/install_generator.rb
|
|
414
|
+
- lib/generators/poetry/pagination/pagination_generator.rb
|
|
415
|
+
- lib/generators/poetry/pagination/templates/kaminari_paginator.html.erb
|
|
416
|
+
- lib/generators/poetry/pagination/templates/poetry_link_renderer.rb
|
|
417
|
+
- lib/generators/poetry/pagination/templates/poetry_pagy_helper.rb
|
|
418
|
+
- lib/generators/poetry/recipes/agent_embed/app/javascript/controllers/agent_demo_controller.js
|
|
419
|
+
- lib/generators/poetry/recipes/screen_data_index/app/controllers/orders_controller.rb
|
|
420
|
+
- lib/generators/poetry/recipes/screen_data_index/app/views/orders/index.html.erb
|
|
421
|
+
- lib/generators/poetry/recipes/screen_data_index/test/system/orders_index_test.rb
|
|
422
|
+
- lib/generators/poetry/recipes/screen_settings/app/controllers/settings_controller.rb
|
|
423
|
+
- lib/generators/poetry/recipes/screen_settings/app/views/settings/show.html.erb
|
|
424
|
+
- lib/generators/poetry/recipes/screen_settings/test/system/settings_show_test.rb
|
|
425
|
+
- lib/generators/poetry/scaffold_templates/scaffold_templates_generator.rb
|
|
426
|
+
- lib/generators/poetry/scaffold_templates/templates/_form.html.erb.tt
|
|
427
|
+
- lib/generators/poetry/scaffold_templates/templates/controller.rb.tt
|
|
428
|
+
- lib/generators/poetry/scaffold_templates/templates/edit.html.erb.tt
|
|
429
|
+
- lib/generators/poetry/scaffold_templates/templates/index.html.erb.tt
|
|
430
|
+
- lib/generators/poetry/scaffold_templates/templates/new.html.erb.tt
|
|
431
|
+
- lib/generators/poetry/scaffold_templates/templates/partial.html.erb.tt
|
|
432
|
+
- lib/generators/poetry/scaffold_templates/templates/show.html.erb.tt
|
|
433
|
+
- lib/generators/poetry/skill/skill_generator.rb
|
|
434
|
+
- lib/generators/poetry/skill/templates/poetry-component/SKILL.md
|
|
435
|
+
- lib/generators/poetry/skill/templates/poetry-component/references/anatomy.md
|
|
436
|
+
- lib/generators/poetry/skill/templates/poetry-component/references/checklist.md
|
|
437
|
+
- lib/generators/poetry/skill/templates/poetry-component/references/documentation.md
|
|
438
|
+
- lib/generators/poetry/skill/templates/poetry-design/SKILL.md
|
|
439
|
+
- lib/generators/poetry/skill/templates/poetry-design/references/audit.md
|
|
440
|
+
- lib/generators/poetry/skill/templates/poetry-design/references/compose.md
|
|
441
|
+
- lib/generators/poetry/skill/templates/poetry-design/references/figma.md
|
|
442
|
+
- lib/generators/poetry/skill/templates/poetry-design/references/paper.md
|
|
443
|
+
- lib/generators/poetry/skill/templates/poetry-design/references/study.md
|
|
444
|
+
- lib/generators/poetry/skill/templates/poetry-design/references/theme.md
|
|
445
|
+
- lib/generators/poetry/skills_section.rb
|
|
446
|
+
- lib/poetry-ui.rb
|
|
447
|
+
- lib/poetry/ui.rb
|
|
448
|
+
- lib/poetry/ui/chat.rb
|
|
449
|
+
- lib/poetry/ui/code_block_highlighter.rb
|
|
450
|
+
- lib/poetry/ui/engine.rb
|
|
451
|
+
- lib/poetry/ui/recipes.rb
|
|
452
|
+
- lib/poetry/ui/testing.rb
|
|
453
|
+
- lib/poetry/ui/testing/combobox.rb
|
|
454
|
+
- lib/poetry/ui/testing/dialog.rb
|
|
455
|
+
- lib/poetry/ui/testing/menu.rb
|
|
456
|
+
- lib/poetry/ui/testing/registration.rb
|
|
457
|
+
- lib/poetry/ui/testing/select.rb
|
|
458
|
+
- lib/poetry/ui/testing/tester.rb
|
|
459
|
+
- lib/poetry/ui/themes.rb
|
|
460
|
+
- lib/poetry/ui/version.rb
|
|
461
|
+
- lib/poetry/ui/webmcp.rb
|
|
462
|
+
- lib/tasks/poetry/check.rake
|
|
463
|
+
- lib/tasks/poetry/design.rake
|
|
464
|
+
- lib/tasks/poetry/verify.rake
|
|
465
|
+
- themes/default.css
|
|
466
|
+
- themes/luma.css
|
|
467
|
+
- themes/lyra.css
|
|
468
|
+
- themes/maia.css
|
|
469
|
+
- themes/mira.css
|
|
470
|
+
- themes/nova.css
|
|
471
|
+
- themes/rhea.css
|
|
472
|
+
- themes/sera.css
|
|
473
|
+
- themes/vega.css
|
|
474
|
+
- typeset/typeset.css
|
|
475
|
+
homepage: https://poetryui.com
|
|
476
|
+
licenses:
|
|
477
|
+
- MIT
|
|
478
|
+
metadata:
|
|
479
|
+
homepage_uri: https://poetryui.com
|
|
480
|
+
documentation_uri: https://poetryui.com/docs
|
|
481
|
+
source_code_uri: https://github.com/roboruby/poetry-ui
|
|
482
|
+
changelog_uri: https://github.com/roboruby/poetry-ui/blob/main/CHANGELOG.md
|
|
483
|
+
bug_tracker_uri: https://github.com/roboruby/poetry-ui/issues
|
|
484
|
+
rubygems_mfa_required: 'true'
|
|
485
|
+
rdoc_options: []
|
|
486
|
+
require_paths:
|
|
487
|
+
- lib
|
|
488
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
489
|
+
requirements:
|
|
490
|
+
- - ">="
|
|
491
|
+
- !ruby/object:Gem::Version
|
|
492
|
+
version: 3.4.0
|
|
493
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
494
|
+
requirements:
|
|
495
|
+
- - ">="
|
|
496
|
+
- !ruby/object:Gem::Version
|
|
497
|
+
version: '0'
|
|
498
|
+
requirements: []
|
|
499
|
+
rubygems_version: 4.0.16
|
|
500
|
+
specification_version: 4
|
|
501
|
+
summary: 'The Poetry component library: AI-native UI components for Rails'
|
|
502
|
+
test_files: []
|