coveragebook_components 0.12.2 → 0.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/build/coco/app.css +6615 -5488
- data/app/assets/build/coco/app.js +3142 -3169
- data/app/assets/build/coco/book.css +5169 -2130
- data/app/assets/build/coco/book.js +3986 -1565
- data/app/assets/css/app.css +2 -8
- data/app/assets/css/base/config.css +1 -0
- data/app/assets/css/{base.css → base/setup.css} +7 -4
- data/app/assets/css/{shared → base}/tippy.css +18 -0
- data/app/assets/css/book.css +2 -4
- data/app/assets/js/app.js +25 -9
- data/app/assets/js/{libs → base}/alpine/directives/dropdown.js +1 -1
- data/app/assets/js/{libs → base}/alpine/directives/tooltip.js +1 -1
- data/app/assets/js/{libs → base}/alpine/index.js +7 -7
- data/app/assets/js/{libs → base}/alpine/utils/tippy_modifiers.js +1 -1
- data/app/assets/js/base/setup.js +8 -0
- data/app/assets/js/book.js +4 -4
- data/app/components/coco/app/{layouts/application/application.js → application_layout/application_layout.js} +1 -1
- data/app/components/coco/app/application_layout/application_layout.rb +16 -0
- data/app/components/coco/app/contact_callout/contact_callout.rb +21 -0
- data/app/components/coco/app/faqs/faqs.rb +14 -0
- data/app/components/coco/app/{blocks/header → header}/header.js +1 -1
- data/app/components/coco/app/header/header.rb +33 -0
- data/app/components/coco/app/{blocks/nav_drawer → nav_drawer}/nav_drawer.css +1 -1
- data/app/components/coco/app/{blocks/nav_drawer → nav_drawer}/nav_drawer.js +1 -1
- data/app/components/coco/app/nav_drawer/nav_drawer.rb +32 -0
- data/app/components/coco/app/plan_card/plan_card.rb +39 -0
- data/app/components/coco/app/{blocks/plan_picker → plan_picker}/plan_picker.css +3 -3
- data/app/components/coco/app/{blocks/plan_picker → plan_picker}/plan_picker.js +1 -1
- data/app/components/coco/app/plan_picker/plan_picker.rb +25 -0
- data/app/components/coco/app/{blocks/sidebar_nav → sidebar_nav}/item/item.js +2 -2
- data/app/components/coco/app/sidebar_nav/item/item.rb +48 -0
- data/app/components/coco/app/{blocks/sidebar_nav → sidebar_nav}/menu/menu.js +1 -1
- data/app/components/coco/app/sidebar_nav/menu/menu.rb +46 -0
- data/app/components/coco/app/{blocks/sidebar_nav → sidebar_nav}/navbar/navbar.html.erb +1 -1
- data/app/components/coco/app/{blocks/sidebar_nav → sidebar_nav}/navbar/navbar.js +2 -2
- data/app/components/coco/app/sidebar_nav/navbar/navbar.rb +50 -0
- data/app/components/coco/app/{blocks/slide_editor → slide_editor}/slide_editor.js +2 -2
- data/app/components/coco/app/slide_editor/slide_editor.rb +114 -0
- data/app/components/coco/book/editable_slide/editable_slide.rb +72 -0
- data/app/components/coco/book/media_slide/media_slide.rb +12 -0
- data/app/components/coco/{shared → buttons}/button/button.js +1 -1
- data/app/components/coco/{shared → buttons}/button/button.rb +2 -2
- data/app/components/coco/{shared → buttons}/button/button_dropdown.js +1 -1
- data/app/components/coco/{shared → buttons}/button_group/button_group.js +2 -2
- data/app/components/coco/{shared → buttons}/button_to/button_to.rb +1 -1
- data/app/components/coco/{app/elements → buttons}/color_picker_button/color_picker_button.css +2 -2
- data/app/components/coco/{app/elements → buttons}/color_picker_button/color_picker_button.html.erb +1 -1
- data/app/components/coco/{app/elements → buttons}/color_picker_button/color_picker_button.js +2 -2
- data/app/components/coco/buttons/color_picker_button/color_picker_button.rb +53 -0
- data/app/components/coco/{app/elements → buttons}/confirm_panel/confirm_panel.css +1 -1
- data/app/components/coco/{app/elements → buttons}/confirm_panel/confirm_panel.html.erb +1 -1
- data/app/components/coco/{app/elements → buttons}/confirm_panel/confirm_panel.js +2 -2
- data/app/components/coco/buttons/confirm_panel/confirm_panel.rb +19 -0
- data/app/components/coco/{app/elements → buttons}/image_picker_button/image_picker_button.css +2 -2
- data/app/components/coco/{app/elements → buttons}/image_picker_button/image_picker_button.html.erb +1 -1
- data/app/components/coco/{app/elements → buttons}/image_picker_button/image_picker_button.js +2 -2
- data/app/components/coco/buttons/image_picker_button/image_picker_button.rb +44 -0
- data/app/components/coco/{app/elements → buttons}/layout_picker_button/layout_picker_button.css +11 -11
- data/app/components/coco/{app/elements → buttons}/layout_picker_button/layout_picker_button.html.erb +1 -1
- data/app/components/coco/{app/elements → buttons}/layout_picker_button/layout_picker_button.js +2 -2
- data/app/components/coco/buttons/layout_picker_button/layout_picker_button.rb +33 -0
- data/app/components/coco/{app/elements → buttons}/menu/menu.css +2 -4
- data/app/components/coco/buttons/menu/menu.rb +37 -0
- data/app/components/coco/{app/elements → buttons}/menu_button/menu_button.css +1 -1
- data/app/components/coco/{app/elements → buttons}/menu_button/menu_button.html.erb +1 -1
- data/app/components/coco/buttons/menu_button/menu_button.js +6 -0
- data/app/components/coco/buttons/menu_button/menu_button.rb +30 -0
- data/app/components/coco/{app/elements → buttons}/menu_items/user_profile/user_profile.css +1 -1
- data/app/components/coco/buttons/menu_items/user_profile/user_profile.rb +18 -0
- data/app/components/coco/{app/elements → buttons}/option_bar/option_bar.css +1 -1
- data/app/components/coco/buttons/option_bar/option_bar.rb +13 -0
- data/app/components/coco/{app/elements → buttons}/toolbar/toolbar.css +1 -1
- data/app/components/coco/{app/elements → buttons}/toolbar/toolbar.js +1 -1
- data/app/components/coco/buttons/toolbar/toolbar.rb +35 -0
- data/app/components/coco/component.rb +1 -1
- data/app/components/coco/concerns/acts_as_button_group.rb +4 -11
- data/app/components/coco/concerns/acts_as_field_with_html_options.rb +1 -1
- data/app/components/coco/concerns/acts_as_field_with_options.rb +2 -2
- data/app/components/coco/concerns/with_icon.rb +1 -1
- data/app/components/coco/embeds/youtube_embed/youtube_embed.rb +16 -0
- data/app/components/coco/fields/button_component.rb +14 -0
- data/app/components/coco/fields/check_box_component.rb +7 -0
- data/app/components/coco/fields/collection_check_boxes_component.rb +7 -0
- data/app/components/coco/fields/collection_radio_buttons_component.rb +7 -0
- data/app/components/coco/fields/collection_select_component.rb +7 -0
- data/app/components/coco/fields/color_field_component.rb +7 -0
- data/app/components/coco/fields/date_field_component.rb +7 -0
- data/app/components/coco/fields/date_select_component.rb +7 -0
- data/app/components/coco/fields/datetime_local_field_component.rb +7 -0
- data/app/components/coco/fields/datetime_select_component.rb +7 -0
- data/app/components/coco/fields/email_field_component.rb +7 -0
- data/app/components/coco/fields/error_message_component.rb +7 -0
- data/app/components/coco/fields/file_field_component.rb +7 -0
- data/app/components/coco/fields/grouped_collection_select_component.rb +7 -0
- data/app/components/coco/fields/hint_component.rb +7 -0
- data/app/components/coco/fields/label_component.rb +7 -0
- data/app/components/coco/fields/month_field_component.rb +7 -0
- data/app/components/coco/fields/number_field_component.rb +7 -0
- data/app/components/coco/fields/password_field_component.rb +7 -0
- data/app/components/coco/fields/radio_button_component.rb +7 -0
- data/app/components/coco/fields/range_field_component.rb +7 -0
- data/app/components/coco/fields/search_field_component.rb +7 -0
- data/app/components/coco/fields/select_component.rb +7 -0
- data/app/components/coco/fields/submit_component.rb +14 -0
- data/app/components/coco/fields/telephone_field_component.rb +7 -0
- data/app/components/coco/fields/text_area_component.rb +7 -0
- data/app/components/coco/fields/text_field_component.rb +7 -0
- data/app/components/coco/fields/time_field_component.rb +7 -0
- data/app/components/coco/fields/time_select_component.rb +7 -0
- data/app/components/coco/fields/time_zone_select_component.rb +7 -0
- data/app/components/coco/fields/url_field_component.rb +7 -0
- data/app/components/coco/fields/week_field_component.rb +7 -0
- data/app/components/coco/fields/weekday_select_component.rb +7 -0
- data/app/components/coco/{shared → images}/icon/icon.js +1 -1
- data/app/components/coco/{shared → images}/image_uploader/image_uploader.js +1 -1
- data/app/components/coco/{app/elements → indicators}/stamp/stamp.css +1 -1
- data/app/components/coco/indicators/stamp/stamp.rb +25 -0
- data/app/components/coco/{app/layouts → layout}/page/page.js +1 -1
- data/app/components/coco/layout/page/page.rb +55 -0
- data/app/components/coco/{app/elements → messaging}/alert/alert.css +7 -7
- data/app/components/coco/{app/elements → messaging}/alert/alert.html.erb +1 -1
- data/app/components/coco/{app/elements → messaging}/alert/alert.js +2 -2
- data/app/components/coco/messaging/alert/alert.rb +75 -0
- data/app/components/coco/{app/elements → messaging}/notice/notice.css +1 -1
- data/app/components/coco/messaging/notice/notice.html.erb +5 -0
- data/app/components/coco/messaging/notice/notice.js +5 -0
- data/app/components/coco/messaging/notice/notice.rb +18 -0
- data/app/components/coco/{app/elements → messaging}/snackbar/snackbar.css +1 -1
- data/app/components/coco/{app/elements → messaging}/snackbar/snackbar.html.erb +1 -1
- data/app/components/coco/{app/elements → messaging}/snackbar/snackbar.js +2 -2
- data/app/components/coco/messaging/snackbar/snackbar.rb +34 -0
- data/app/components/coco/messaging/system_banner/system_banner.css +4 -0
- data/app/components/coco/messaging/system_banner/system_banner.html.erb +5 -0
- data/app/components/coco/{app/elements → messaging}/system_banner/system_banner.js +2 -2
- data/app/components/coco/messaging/system_banner/system_banner.rb +78 -0
- data/app/components/coco/{app/elements → messaging}/toast/toast.css +1 -1
- data/app/components/coco/{app/elements → messaging}/toast/toast.html.erb +1 -1
- data/app/components/coco/{app/elements → messaging}/toast/toast.js +2 -2
- data/app/components/coco/messaging/toast/toast.rb +19 -0
- data/app/components/coco/{shared → modals}/modal/modal.js +2 -2
- data/app/components/coco/{shared → modals}/modal/modal.rb +2 -1
- data/app/components/coco/{shared → modals}/modal_dialog/modal_dialog.js +1 -1
- data/app/components/coco/{shared → modals}/modal_dialog/modal_dialog.rb +1 -1
- data/app/components/coco/{shared → modals}/modal_lightbox/modal_lightbox.js +1 -1
- data/app/components/coco/{shared → navigation}/link/link.rb +1 -1
- data/app/components/coco/{shared/pager_link/pager_link.css → navigation/pager_button/pager_button.css} +1 -1
- data/app/components/coco/{shared/pager_link/pager_link.rb → navigation/pager_button/pager_button.rb} +1 -1
- data/app/components/coco/{app/elements → pickers}/color_picker/color_picker.css +11 -11
- data/app/components/coco/{app/elements → pickers}/color_picker/color_picker.html.erb +1 -1
- data/app/components/coco/{app/elements → pickers}/color_picker/color_picker.js +2 -2
- data/app/components/coco/pickers/color_picker/color_picker.rb +48 -0
- data/app/components/coco/{app/elements → pickers}/image_picker/image_picker.css +11 -11
- data/app/components/coco/{app/elements → pickers}/image_picker/image_picker.html.erb +1 -1
- data/app/components/coco/{app/elements → pickers}/image_picker/image_picker.js +2 -2
- data/app/components/coco/pickers/image_picker/image_picker.rb +20 -0
- data/app/components/coco/presented_component.rb +1 -1
- data/app/components/coco/{shared → utilities}/dropdown/dropdown.js +1 -1
- data/app/components/coco/{shared → utilities}/poll_controller/poll_controller.js +1 -1
- data/app/components/coco/{app/elements → utilities}/seamless_textarea/seamless_textarea.css +1 -1
- data/app/components/coco/{app/elements → utilities}/seamless_textarea/seamless_textarea.html.erb +1 -1
- data/app/components/coco/{app/elements → utilities}/seamless_textarea/seamless_textarea.js +2 -2
- data/app/components/coco/utilities/seamless_textarea/seamless_textarea.rb +25 -0
- data/app/helpers/coco/app_components_helper.rb +35 -0
- data/app/helpers/coco/book_components_helper.rb +11 -0
- data/app/helpers/coco/components_helper.rb +7 -0
- data/app/helpers/coco/core_components_helper.rb +257 -0
- data/app/helpers/coco/helpers.rb +2 -2
- data/app/helpers/coco/modal_helper.rb +22 -0
- data/config/locales/coco.en.yml +17 -18
- data/config/{tailwind.base.config.cjs → tailwind.config.cjs} +10 -0
- data/config/tokens.cjs +9 -23
- data/lib/coco/app_form_builder.rb +1 -1
- data/lib/coco/engine.rb +3 -3
- data/lib/coco.rb +1 -1
- metadata +253 -274
- data/app/assets/css/app/config.css +0 -1
- data/app/assets/css/app/tippy.css +0 -19
- data/app/assets/css/book/config.css +0 -1
- data/app/assets/js/app/components.js +0 -4
- data/app/assets/js/app/setup.js +0 -23
- data/app/assets/js/book/components.js +0 -4
- data/app/assets/js/shared/components.js +0 -4
- data/app/components/coco/app/blocks/contact_callout/contact_callout.rb +0 -23
- data/app/components/coco/app/blocks/faqs/faqs.rb +0 -16
- data/app/components/coco/app/blocks/header/header.rb +0 -35
- data/app/components/coco/app/blocks/nav_drawer/nav_drawer.rb +0 -34
- data/app/components/coco/app/blocks/plan_picker/plan_picker.rb +0 -27
- data/app/components/coco/app/blocks/sidebar_nav/item/item.rb +0 -50
- data/app/components/coco/app/blocks/sidebar_nav/menu/menu.rb +0 -48
- data/app/components/coco/app/blocks/sidebar_nav/navbar/navbar.rb +0 -50
- data/app/components/coco/app/blocks/slide_editor/slide_editor.rb +0 -116
- data/app/components/coco/app/elements/alert/alert.rb +0 -79
- data/app/components/coco/app/elements/color_picker/color_picker.rb +0 -53
- data/app/components/coco/app/elements/color_picker_button/color_picker_button.rb +0 -58
- data/app/components/coco/app/elements/confirm_panel/confirm_panel.rb +0 -23
- data/app/components/coco/app/elements/image_picker/image_picker.rb +0 -25
- data/app/components/coco/app/elements/image_picker_button/image_picker_button.rb +0 -49
- data/app/components/coco/app/elements/layout_picker_button/layout_picker_button.rb +0 -38
- data/app/components/coco/app/elements/menu/menu.rb +0 -41
- data/app/components/coco/app/elements/menu_button/menu_button.js +0 -6
- data/app/components/coco/app/elements/menu_button/menu_button.rb +0 -35
- data/app/components/coco/app/elements/menu_items/user_profile/user_profile.rb +0 -20
- data/app/components/coco/app/elements/notice/notice.html.erb +0 -5
- data/app/components/coco/app/elements/notice/notice.js +0 -5
- data/app/components/coco/app/elements/notice/notice.rb +0 -22
- data/app/components/coco/app/elements/option_bar/option_bar.rb +0 -17
- data/app/components/coco/app/elements/plan_card/plan_card.rb +0 -41
- data/app/components/coco/app/elements/seamless_textarea/seamless_textarea.rb +0 -29
- data/app/components/coco/app/elements/snackbar/snackbar.rb +0 -38
- data/app/components/coco/app/elements/stamp/stamp.rb +0 -29
- data/app/components/coco/app/elements/system_banner/system_banner.css +0 -4
- data/app/components/coco/app/elements/system_banner/system_banner.html.erb +0 -5
- data/app/components/coco/app/elements/system_banner/system_banner.rb +0 -82
- data/app/components/coco/app/elements/toast/toast.rb +0 -23
- data/app/components/coco/app/elements/toolbar/toolbar.rb +0 -41
- data/app/components/coco/app/fields/button_component.rb +0 -16
- data/app/components/coco/app/fields/check_box_component.rb +0 -9
- data/app/components/coco/app/fields/collection_check_boxes_component.rb +0 -9
- data/app/components/coco/app/fields/collection_radio_buttons_component.rb +0 -9
- data/app/components/coco/app/fields/collection_select_component.rb +0 -9
- data/app/components/coco/app/fields/color_field_component.rb +0 -9
- data/app/components/coco/app/fields/date_field_component.rb +0 -9
- data/app/components/coco/app/fields/date_select_component.rb +0 -9
- data/app/components/coco/app/fields/datetime_local_field_component.rb +0 -9
- data/app/components/coco/app/fields/datetime_select_component.rb +0 -9
- data/app/components/coco/app/fields/email_field_component.rb +0 -9
- data/app/components/coco/app/fields/error_message_component.rb +0 -9
- data/app/components/coco/app/fields/file_field_component.rb +0 -9
- data/app/components/coco/app/fields/grouped_collection_select_component.rb +0 -9
- data/app/components/coco/app/fields/hint_component.rb +0 -9
- data/app/components/coco/app/fields/label_component.rb +0 -9
- data/app/components/coco/app/fields/month_field_component.rb +0 -9
- data/app/components/coco/app/fields/number_field_component.rb +0 -9
- data/app/components/coco/app/fields/password_field_component.rb +0 -9
- data/app/components/coco/app/fields/radio_button_component.rb +0 -9
- data/app/components/coco/app/fields/range_field_component.rb +0 -9
- data/app/components/coco/app/fields/search_field_component.rb +0 -9
- data/app/components/coco/app/fields/select_component.rb +0 -9
- data/app/components/coco/app/fields/submit_component.rb +0 -16
- data/app/components/coco/app/fields/telephone_field_component.rb +0 -9
- data/app/components/coco/app/fields/text_area_component.rb +0 -9
- data/app/components/coco/app/fields/text_field_component.rb +0 -9
- data/app/components/coco/app/fields/time_field_component.rb +0 -9
- data/app/components/coco/app/fields/time_select_component.rb +0 -9
- data/app/components/coco/app/fields/time_zone_select_component.rb +0 -9
- data/app/components/coco/app/fields/url_field_component.rb +0 -9
- data/app/components/coco/app/fields/week_field_component.rb +0 -9
- data/app/components/coco/app/fields/weekday_select_component.rb +0 -9
- data/app/components/coco/app/layouts/application/application.rb +0 -18
- data/app/components/coco/app/layouts/page/page.rb +0 -59
- data/app/components/coco/book/blocks/slides/editable_slide/editable_slide.rb +0 -76
- data/app/components/coco/book/blocks/slides/media_slide/media_slide.rb +0 -16
- data/app/components/coco/shared/embeds/youtube/youtube.rb +0 -20
- data/app/helpers/coco/app_helper.rb +0 -141
- data/app/helpers/coco/book_helper.rb +0 -11
- data/app/helpers/coco/component_helper.rb +0 -15
- data/app/helpers/coco/shared_helper.rb +0 -111
- data/app/helpers/coco/url_helper.rb +0 -30
- data/config/tailwind.app.config.cjs +0 -21
- data/config/tailwind.book.config.cjs +0 -21
- /data/app/assets/css/{shared → base}/utils/colors.css +0 -0
- /data/app/assets/css/{shared → base}/utils/icons.css +0 -0
- /data/app/assets/css/{app/utils.css → base/utils/layout.css} +0 -0
- /data/app/assets/css/{shared → base}/utils/text.css +0 -0
- /data/app/assets/js/{libs → base}/alpine/directives/destroy.js +0 -0
- /data/app/assets/js/{libs → base}/alpine/directives/dimensions.js +0 -0
- /data/app/assets/js/{libs → base}/alpine/directives/notification.js +0 -0
- /data/app/assets/js/{libs → base}/alpine/directives/options.js +0 -0
- /data/app/assets/js/{libs → base}/alpine/directives/undo.js +0 -0
- /data/app/assets/js/{shared → base}/coco.js +0 -0
- /data/app/assets/js/{libs → base}/tippy/index.js +0 -0
- /data/app/assets/js/{libs → base}/tippy/plugins/hide_on_esc.js +0 -0
- /data/app/components/coco/app/{layouts/application/application.css → application_layout/application_layout.css} +0 -0
- /data/app/components/coco/app/{layouts/application/application.html.erb → application_layout/application_layout.html.erb} +0 -0
- /data/app/components/coco/app/{blocks/contact_callout → contact_callout}/contact_callout.css +0 -0
- /data/app/components/coco/app/{blocks/contact_callout → contact_callout}/contact_callout.html.erb +0 -0
- /data/app/components/coco/app/{blocks/faqs → faqs}/faqs.css +0 -0
- /data/app/components/coco/app/{blocks/faqs → faqs}/faqs.html.erb +0 -0
- /data/app/components/coco/app/{blocks/header → header}/header.css +0 -0
- /data/app/components/coco/app/{blocks/header → header}/header.html.erb +0 -0
- /data/app/components/coco/app/{blocks/nav_drawer → nav_drawer}/nav_drawer.html.erb +0 -0
- /data/app/components/coco/app/{elements/plan_card → plan_card}/plan_card.css +0 -0
- /data/app/components/coco/app/{elements/plan_card → plan_card}/plan_card.html.erb +0 -0
- /data/app/components/coco/app/{blocks/plan_picker → plan_picker}/plan_picker.html.erb +0 -0
- /data/app/components/coco/app/{blocks/sidebar_nav → sidebar_nav}/item/item.css +0 -0
- /data/app/components/coco/app/{blocks/sidebar_nav → sidebar_nav}/item/item.html.erb +0 -0
- /data/app/components/coco/app/{blocks/sidebar_nav → sidebar_nav}/menu/menu.css +0 -0
- /data/app/components/coco/app/{blocks/sidebar_nav → sidebar_nav}/menu/menu.html.erb +0 -0
- /data/app/components/coco/app/{blocks/sidebar_nav → sidebar_nav}/navbar/navbar.css +0 -0
- /data/app/components/coco/app/{blocks/slide_editor → slide_editor}/slide_editor.css +0 -0
- /data/app/components/coco/app/{blocks/slide_editor → slide_editor}/slide_editor.html.erb +0 -0
- /data/app/components/coco/book/{blocks/slides/editable_slide → editable_slide}/editable_slide.css +0 -0
- /data/app/components/coco/book/{blocks/slides/editable_slide → editable_slide}/editable_slide.html.erb +0 -0
- /data/app/components/coco/book/{blocks/slides/media_slide → media_slide}/media_slide.css +0 -0
- /data/app/components/coco/book/{blocks/slides/media_slide → media_slide}/media_slide.html.erb +0 -0
- /data/app/components/coco/{shared → buttons}/button/button.css +0 -0
- /data/app/components/coco/{shared → buttons}/button/button.html.erb +0 -0
- /data/app/components/coco/{shared → buttons}/button_group/button_group.css +0 -0
- /data/app/components/coco/{shared → buttons}/button_group/button_group.html.erb +0 -0
- /data/app/components/coco/{shared → buttons}/button_group/button_group.rb +0 -0
- /data/app/components/coco/{shared → buttons}/button_to/button_to.css +0 -0
- /data/app/components/coco/{shared → buttons}/button_to/button_to.html.erb +0 -0
- /data/app/components/coco/{app/elements → buttons}/menu/menu.html.erb +0 -0
- /data/app/components/coco/{app/elements → buttons}/menu_items/user_profile/user_profile.html.erb +0 -0
- /data/app/components/coco/{app/elements → buttons}/option_bar/option_bar.html.erb +0 -0
- /data/app/components/coco/{app/elements → buttons}/toolbar/toolbar.html.erb +0 -0
- /data/app/components/coco/{shared/embeds/youtube/youtube.css → embeds/youtube_embed/youtube_embed.css} +0 -0
- /data/app/components/coco/{shared/embeds/youtube/youtube.html.erb → embeds/youtube_embed/youtube_embed.html.erb} +0 -0
- /data/app/components/coco/{shared → images}/avatar/avatar.css +0 -0
- /data/app/components/coco/{shared → images}/avatar/avatar.rb +0 -0
- /data/app/components/coco/{shared → images}/icon/icon.css +0 -0
- /data/app/components/coco/{shared → images}/icon/icon.html.erb +0 -0
- /data/app/components/coco/{shared → images}/icon/icon.rb +0 -0
- /data/app/components/coco/{shared → images}/image/image.css +0 -0
- /data/app/components/coco/{shared → images}/image/image.rb +0 -0
- /data/app/components/coco/{shared → images}/image_uploader/image_uploader.css +0 -0
- /data/app/components/coco/{shared → images}/image_uploader/image_uploader.html.erb +0 -0
- /data/app/components/coco/{shared → images}/image_uploader/image_uploader.rb +0 -0
- /data/app/components/coco/{shared → images}/svg/svg.html.erb +0 -0
- /data/app/components/coco/{shared → images}/svg/svg.rb +0 -0
- /data/app/components/coco/{shared → indicators}/badge/badge.css +0 -0
- /data/app/components/coco/{shared → indicators}/badge/badge.html.erb +0 -0
- /data/app/components/coco/{shared → indicators}/badge/badge.rb +0 -0
- /data/app/components/coco/{app/elements → indicators}/stamp/stamp.html.erb +0 -0
- /data/app/components/coco/{app/layouts → layout}/page/page.css +0 -0
- /data/app/components/coco/{app/layouts → layout}/page/page.html.erb +0 -0
- /data/app/components/coco/{shared → layout}/panel/panel.css +0 -0
- /data/app/components/coco/{shared → layout}/panel/panel.html.erb +0 -0
- /data/app/components/coco/{shared → layout}/panel/panel.rb +0 -0
- /data/app/components/coco/{shared → layout}/spacer/spacer.css +0 -0
- /data/app/components/coco/{shared → layout}/spacer/spacer.rb +0 -0
- /data/app/components/coco/{shared → layout}/stack/stack.css +0 -0
- /data/app/components/coco/{shared → layout}/stack/stack.html.erb +0 -0
- /data/app/components/coco/{shared → layout}/stack/stack.rb +0 -0
- /data/app/components/coco/{shared → modals}/modal/modal.css +0 -0
- /data/app/components/coco/{shared → modals}/modal/modal.html.erb +0 -0
- /data/app/components/coco/{shared → modals}/modal_dialog/modal_dialog.css +0 -0
- /data/app/components/coco/{shared → modals}/modal_dialog/modal_dialog.html.erb +0 -0
- /data/app/components/coco/{shared → modals}/modal_lightbox/modal_lightbox.css +0 -0
- /data/app/components/coco/{shared → modals}/modal_lightbox/modal_lightbox.html.erb +0 -0
- /data/app/components/coco/{shared → modals}/modal_lightbox/modal_lightbox.rb +0 -0
- /data/app/components/coco/{shared → navigation}/link/link.css +0 -0
- /data/app/components/coco/{shared/pager_link/pager_link.html.erb → navigation/pager_button/pager_button.html.erb} +0 -0
- /data/app/components/coco/{shared → typography}/prose/prose.css +0 -0
- /data/app/components/coco/{shared → typography}/prose/prose.rb +0 -0
- /data/app/components/coco/{shared → utilities}/content/content.rb +0 -0
- /data/app/components/coco/{shared → utilities}/dropdown/dropdown.css +0 -0
- /data/app/components/coco/{shared → utilities}/dropdown/dropdown.html.erb +0 -0
- /data/app/components/coco/{shared → utilities}/dropdown/dropdown.rb +0 -0
- /data/app/components/coco/{shared → utilities}/placeholder/placeholder.css +0 -0
- /data/app/components/coco/{shared → utilities}/placeholder/placeholder.html.erb +0 -0
- /data/app/components/coco/{shared → utilities}/placeholder/placeholder.rb +0 -0
- /data/app/components/coco/{shared → utilities}/poll_controller/poll_controller.css +0 -0
- /data/app/components/coco/{shared → utilities}/poll_controller/poll_controller.html.erb +0 -0
- /data/app/components/coco/{shared → utilities}/poll_controller/poll_controller.rb +0 -0
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: coveragebook_components
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Perkins
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -30,28 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 3.9.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: zeitwerk
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '2.5'
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '2.5'
|
40
|
+
version: 3.9.0
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: turbo-rails
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1422,16 +1408,14 @@ files:
|
|
1422
1408
|
- app/assets/build/coco/img/test/slides/slide-foreground-portrait.jpg
|
1423
1409
|
- app/assets/config/coco/manifest.js
|
1424
1410
|
- app/assets/css/app.css
|
1425
|
-
- app/assets/css/
|
1426
|
-
- app/assets/css/
|
1427
|
-
- app/assets/css/
|
1428
|
-
- app/assets/css/base.css
|
1411
|
+
- app/assets/css/base/config.css
|
1412
|
+
- app/assets/css/base/setup.css
|
1413
|
+
- app/assets/css/base/tippy.css
|
1414
|
+
- app/assets/css/base/utils/colors.css
|
1415
|
+
- app/assets/css/base/utils/icons.css
|
1416
|
+
- app/assets/css/base/utils/layout.css
|
1417
|
+
- app/assets/css/base/utils/text.css
|
1429
1418
|
- app/assets/css/book.css
|
1430
|
-
- app/assets/css/book/config.css
|
1431
|
-
- app/assets/css/shared/tippy.css
|
1432
|
-
- app/assets/css/shared/utils/colors.css
|
1433
|
-
- app/assets/css/shared/utils/icons.css
|
1434
|
-
- app/assets/css/shared/utils/text.css
|
1435
1419
|
- app/assets/custom_icons/other/eye-off-red.svg
|
1436
1420
|
- app/assets/custom_icons/other/google-sso.svg
|
1437
1421
|
- app/assets/custom_icons/other/layout-overlay.svg
|
@@ -1452,10 +1436,20 @@ files:
|
|
1452
1436
|
- app/assets/img/test/slides/slide-foreground-landscape.jpg
|
1453
1437
|
- app/assets/img/test/slides/slide-foreground-portrait.jpg
|
1454
1438
|
- app/assets/js/app.js
|
1455
|
-
- app/assets/js/
|
1456
|
-
- app/assets/js/
|
1439
|
+
- app/assets/js/base/alpine/directives/destroy.js
|
1440
|
+
- app/assets/js/base/alpine/directives/dimensions.js
|
1441
|
+
- app/assets/js/base/alpine/directives/dropdown.js
|
1442
|
+
- app/assets/js/base/alpine/directives/notification.js
|
1443
|
+
- app/assets/js/base/alpine/directives/options.js
|
1444
|
+
- app/assets/js/base/alpine/directives/tooltip.js
|
1445
|
+
- app/assets/js/base/alpine/directives/undo.js
|
1446
|
+
- app/assets/js/base/alpine/index.js
|
1447
|
+
- app/assets/js/base/alpine/utils/tippy_modifiers.js
|
1448
|
+
- app/assets/js/base/coco.js
|
1449
|
+
- app/assets/js/base/setup.js
|
1450
|
+
- app/assets/js/base/tippy/index.js
|
1451
|
+
- app/assets/js/base/tippy/plugins/hide_on_esc.js
|
1457
1452
|
- app/assets/js/book.js
|
1458
|
-
- app/assets/js/book/components.js
|
1459
1453
|
- app/assets/js/helpers/alpine.js
|
1460
1454
|
- app/assets/js/helpers/color.js
|
1461
1455
|
- app/assets/js/helpers/dom.js
|
@@ -1465,171 +1459,98 @@ files:
|
|
1465
1459
|
- app/assets/js/helpers/path.js
|
1466
1460
|
- app/assets/js/helpers/screenshot.js
|
1467
1461
|
- app/assets/js/helpers/turbo_events.js
|
1468
|
-
- app/
|
1469
|
-
- app/
|
1470
|
-
- app/
|
1471
|
-
- app/
|
1472
|
-
- app/
|
1473
|
-
- app/
|
1474
|
-
- app/
|
1475
|
-
- app/
|
1476
|
-
- app/
|
1477
|
-
- app/
|
1478
|
-
- app/
|
1479
|
-
- app/
|
1480
|
-
- app/
|
1481
|
-
- app/components/coco/app/
|
1482
|
-
- app/components/coco/app/
|
1483
|
-
- app/components/coco/app/
|
1484
|
-
- app/components/coco/app/
|
1485
|
-
- app/components/coco/app/
|
1486
|
-
- app/components/coco/app/
|
1487
|
-
- app/components/coco/app/
|
1488
|
-
- app/components/coco/app/
|
1489
|
-
- app/components/coco/app/
|
1490
|
-
- app/components/coco/app/
|
1491
|
-
- app/components/coco/app/
|
1492
|
-
- app/components/coco/app/
|
1493
|
-
- app/components/coco/app/
|
1494
|
-
- app/components/coco/app/
|
1495
|
-
- app/components/coco/app/
|
1496
|
-
- app/components/coco/app/
|
1497
|
-
- app/components/coco/app/
|
1498
|
-
- app/components/coco/app/
|
1499
|
-
- app/components/coco/app/
|
1500
|
-
- app/components/coco/app/
|
1501
|
-
- app/components/coco/app/
|
1502
|
-
- app/components/coco/app/
|
1503
|
-
- app/components/coco/app/
|
1504
|
-
- app/components/coco/app/
|
1505
|
-
- app/components/coco/app/
|
1506
|
-
- app/components/coco/app/
|
1507
|
-
- app/components/coco/app/
|
1508
|
-
- app/components/coco/app/
|
1509
|
-
- app/components/coco/
|
1510
|
-
- app/components/coco/
|
1511
|
-
- app/components/coco/
|
1512
|
-
- app/components/coco/
|
1513
|
-
- app/components/coco/
|
1514
|
-
- app/components/coco/
|
1515
|
-
- app/components/coco/
|
1516
|
-
- app/components/coco/
|
1517
|
-
- app/components/coco/
|
1518
|
-
- app/components/coco/
|
1519
|
-
- app/components/coco/
|
1520
|
-
- app/components/coco/
|
1521
|
-
- app/components/coco/
|
1522
|
-
- app/components/coco/
|
1523
|
-
- app/components/coco/
|
1524
|
-
- app/components/coco/
|
1525
|
-
- app/components/coco/
|
1526
|
-
- app/components/coco/
|
1527
|
-
- app/components/coco/
|
1528
|
-
- app/components/coco/
|
1529
|
-
- app/components/coco/
|
1530
|
-
- app/components/coco/
|
1531
|
-
- app/components/coco/
|
1532
|
-
- app/components/coco/
|
1533
|
-
- app/components/coco/
|
1534
|
-
- app/components/coco/
|
1535
|
-
- app/components/coco/
|
1536
|
-
- app/components/coco/
|
1537
|
-
- app/components/coco/
|
1538
|
-
- app/components/coco/
|
1539
|
-
- app/components/coco/
|
1540
|
-
- app/components/coco/
|
1541
|
-
- app/components/coco/
|
1542
|
-
- app/components/coco/
|
1543
|
-
- app/components/coco/
|
1544
|
-
- app/components/coco/
|
1545
|
-
- app/components/coco/
|
1546
|
-
- app/components/coco/
|
1547
|
-
- app/components/coco/
|
1548
|
-
- app/components/coco/
|
1549
|
-
- app/components/coco/
|
1550
|
-
- app/components/coco/
|
1551
|
-
- app/components/coco/
|
1552
|
-
- app/components/coco/
|
1553
|
-
- app/components/coco/
|
1554
|
-
- app/components/coco/
|
1555
|
-
- app/components/coco/
|
1556
|
-
- app/components/coco/
|
1557
|
-
- app/components/coco/
|
1558
|
-
- app/components/coco/
|
1559
|
-
- app/components/coco/
|
1560
|
-
- app/components/coco/app/elements/plan_card/plan_card.css
|
1561
|
-
- app/components/coco/app/elements/plan_card/plan_card.html.erb
|
1562
|
-
- app/components/coco/app/elements/plan_card/plan_card.rb
|
1563
|
-
- app/components/coco/app/elements/seamless_textarea/seamless_textarea.css
|
1564
|
-
- app/components/coco/app/elements/seamless_textarea/seamless_textarea.html.erb
|
1565
|
-
- app/components/coco/app/elements/seamless_textarea/seamless_textarea.js
|
1566
|
-
- app/components/coco/app/elements/seamless_textarea/seamless_textarea.rb
|
1567
|
-
- app/components/coco/app/elements/snackbar/snackbar.css
|
1568
|
-
- app/components/coco/app/elements/snackbar/snackbar.html.erb
|
1569
|
-
- app/components/coco/app/elements/snackbar/snackbar.js
|
1570
|
-
- app/components/coco/app/elements/snackbar/snackbar.rb
|
1571
|
-
- app/components/coco/app/elements/stamp/stamp.css
|
1572
|
-
- app/components/coco/app/elements/stamp/stamp.html.erb
|
1573
|
-
- app/components/coco/app/elements/stamp/stamp.rb
|
1574
|
-
- app/components/coco/app/elements/system_banner/system_banner.css
|
1575
|
-
- app/components/coco/app/elements/system_banner/system_banner.html.erb
|
1576
|
-
- app/components/coco/app/elements/system_banner/system_banner.js
|
1577
|
-
- app/components/coco/app/elements/system_banner/system_banner.rb
|
1578
|
-
- app/components/coco/app/elements/toast/toast.css
|
1579
|
-
- app/components/coco/app/elements/toast/toast.html.erb
|
1580
|
-
- app/components/coco/app/elements/toast/toast.js
|
1581
|
-
- app/components/coco/app/elements/toast/toast.rb
|
1582
|
-
- app/components/coco/app/elements/toolbar/toolbar.css
|
1583
|
-
- app/components/coco/app/elements/toolbar/toolbar.html.erb
|
1584
|
-
- app/components/coco/app/elements/toolbar/toolbar.js
|
1585
|
-
- app/components/coco/app/elements/toolbar/toolbar.rb
|
1586
|
-
- app/components/coco/app/fields/button_component.rb
|
1587
|
-
- app/components/coco/app/fields/check_box_component.rb
|
1588
|
-
- app/components/coco/app/fields/collection_check_boxes_component.rb
|
1589
|
-
- app/components/coco/app/fields/collection_radio_buttons_component.rb
|
1590
|
-
- app/components/coco/app/fields/collection_select_component.rb
|
1591
|
-
- app/components/coco/app/fields/color_field_component.rb
|
1592
|
-
- app/components/coco/app/fields/date_field_component.rb
|
1593
|
-
- app/components/coco/app/fields/date_select_component.rb
|
1594
|
-
- app/components/coco/app/fields/datetime_local_field_component.rb
|
1595
|
-
- app/components/coco/app/fields/datetime_select_component.rb
|
1596
|
-
- app/components/coco/app/fields/email_field_component.rb
|
1597
|
-
- app/components/coco/app/fields/error_message_component.rb
|
1598
|
-
- app/components/coco/app/fields/file_field_component.rb
|
1599
|
-
- app/components/coco/app/fields/grouped_collection_select_component.rb
|
1600
|
-
- app/components/coco/app/fields/hint_component.rb
|
1601
|
-
- app/components/coco/app/fields/label_component.rb
|
1602
|
-
- app/components/coco/app/fields/month_field_component.rb
|
1603
|
-
- app/components/coco/app/fields/number_field_component.rb
|
1604
|
-
- app/components/coco/app/fields/password_field_component.rb
|
1605
|
-
- app/components/coco/app/fields/radio_button_component.rb
|
1606
|
-
- app/components/coco/app/fields/range_field_component.rb
|
1607
|
-
- app/components/coco/app/fields/search_field_component.rb
|
1608
|
-
- app/components/coco/app/fields/select_component.rb
|
1609
|
-
- app/components/coco/app/fields/submit_component.rb
|
1610
|
-
- app/components/coco/app/fields/telephone_field_component.rb
|
1611
|
-
- app/components/coco/app/fields/text_area_component.rb
|
1612
|
-
- app/components/coco/app/fields/text_field_component.rb
|
1613
|
-
- app/components/coco/app/fields/time_field_component.rb
|
1614
|
-
- app/components/coco/app/fields/time_select_component.rb
|
1615
|
-
- app/components/coco/app/fields/time_zone_select_component.rb
|
1616
|
-
- app/components/coco/app/fields/url_field_component.rb
|
1617
|
-
- app/components/coco/app/fields/week_field_component.rb
|
1618
|
-
- app/components/coco/app/fields/weekday_select_component.rb
|
1619
|
-
- app/components/coco/app/layouts/application/application.css
|
1620
|
-
- app/components/coco/app/layouts/application/application.html.erb
|
1621
|
-
- app/components/coco/app/layouts/application/application.js
|
1622
|
-
- app/components/coco/app/layouts/application/application.rb
|
1623
|
-
- app/components/coco/app/layouts/page/page.css
|
1624
|
-
- app/components/coco/app/layouts/page/page.html.erb
|
1625
|
-
- app/components/coco/app/layouts/page/page.js
|
1626
|
-
- app/components/coco/app/layouts/page/page.rb
|
1627
|
-
- app/components/coco/book/blocks/slides/editable_slide/editable_slide.css
|
1628
|
-
- app/components/coco/book/blocks/slides/editable_slide/editable_slide.html.erb
|
1629
|
-
- app/components/coco/book/blocks/slides/editable_slide/editable_slide.rb
|
1630
|
-
- app/components/coco/book/blocks/slides/media_slide/media_slide.css
|
1631
|
-
- app/components/coco/book/blocks/slides/media_slide/media_slide.html.erb
|
1632
|
-
- app/components/coco/book/blocks/slides/media_slide/media_slide.rb
|
1462
|
+
- app/components/coco/app/application_layout/application_layout.css
|
1463
|
+
- app/components/coco/app/application_layout/application_layout.html.erb
|
1464
|
+
- app/components/coco/app/application_layout/application_layout.js
|
1465
|
+
- app/components/coco/app/application_layout/application_layout.rb
|
1466
|
+
- app/components/coco/app/contact_callout/contact_callout.css
|
1467
|
+
- app/components/coco/app/contact_callout/contact_callout.html.erb
|
1468
|
+
- app/components/coco/app/contact_callout/contact_callout.rb
|
1469
|
+
- app/components/coco/app/faqs/faqs.css
|
1470
|
+
- app/components/coco/app/faqs/faqs.html.erb
|
1471
|
+
- app/components/coco/app/faqs/faqs.rb
|
1472
|
+
- app/components/coco/app/header/header.css
|
1473
|
+
- app/components/coco/app/header/header.html.erb
|
1474
|
+
- app/components/coco/app/header/header.js
|
1475
|
+
- app/components/coco/app/header/header.rb
|
1476
|
+
- app/components/coco/app/nav_drawer/nav_drawer.css
|
1477
|
+
- app/components/coco/app/nav_drawer/nav_drawer.html.erb
|
1478
|
+
- app/components/coco/app/nav_drawer/nav_drawer.js
|
1479
|
+
- app/components/coco/app/nav_drawer/nav_drawer.rb
|
1480
|
+
- app/components/coco/app/plan_card/plan_card.css
|
1481
|
+
- app/components/coco/app/plan_card/plan_card.html.erb
|
1482
|
+
- app/components/coco/app/plan_card/plan_card.rb
|
1483
|
+
- app/components/coco/app/plan_picker/plan_picker.css
|
1484
|
+
- app/components/coco/app/plan_picker/plan_picker.html.erb
|
1485
|
+
- app/components/coco/app/plan_picker/plan_picker.js
|
1486
|
+
- app/components/coco/app/plan_picker/plan_picker.rb
|
1487
|
+
- app/components/coco/app/sidebar_nav/item/item.css
|
1488
|
+
- app/components/coco/app/sidebar_nav/item/item.html.erb
|
1489
|
+
- app/components/coco/app/sidebar_nav/item/item.js
|
1490
|
+
- app/components/coco/app/sidebar_nav/item/item.rb
|
1491
|
+
- app/components/coco/app/sidebar_nav/menu/menu.css
|
1492
|
+
- app/components/coco/app/sidebar_nav/menu/menu.html.erb
|
1493
|
+
- app/components/coco/app/sidebar_nav/menu/menu.js
|
1494
|
+
- app/components/coco/app/sidebar_nav/menu/menu.rb
|
1495
|
+
- app/components/coco/app/sidebar_nav/navbar/navbar.css
|
1496
|
+
- app/components/coco/app/sidebar_nav/navbar/navbar.html.erb
|
1497
|
+
- app/components/coco/app/sidebar_nav/navbar/navbar.js
|
1498
|
+
- app/components/coco/app/sidebar_nav/navbar/navbar.rb
|
1499
|
+
- app/components/coco/app/slide_editor/slide_editor.css
|
1500
|
+
- app/components/coco/app/slide_editor/slide_editor.html.erb
|
1501
|
+
- app/components/coco/app/slide_editor/slide_editor.js
|
1502
|
+
- app/components/coco/app/slide_editor/slide_editor.rb
|
1503
|
+
- app/components/coco/book/editable_slide/editable_slide.css
|
1504
|
+
- app/components/coco/book/editable_slide/editable_slide.html.erb
|
1505
|
+
- app/components/coco/book/editable_slide/editable_slide.rb
|
1506
|
+
- app/components/coco/book/media_slide/media_slide.css
|
1507
|
+
- app/components/coco/book/media_slide/media_slide.html.erb
|
1508
|
+
- app/components/coco/book/media_slide/media_slide.rb
|
1509
|
+
- app/components/coco/buttons/button/button.css
|
1510
|
+
- app/components/coco/buttons/button/button.html.erb
|
1511
|
+
- app/components/coco/buttons/button/button.js
|
1512
|
+
- app/components/coco/buttons/button/button.rb
|
1513
|
+
- app/components/coco/buttons/button/button_dropdown.js
|
1514
|
+
- app/components/coco/buttons/button_group/button_group.css
|
1515
|
+
- app/components/coco/buttons/button_group/button_group.html.erb
|
1516
|
+
- app/components/coco/buttons/button_group/button_group.js
|
1517
|
+
- app/components/coco/buttons/button_group/button_group.rb
|
1518
|
+
- app/components/coco/buttons/button_to/button_to.css
|
1519
|
+
- app/components/coco/buttons/button_to/button_to.html.erb
|
1520
|
+
- app/components/coco/buttons/button_to/button_to.rb
|
1521
|
+
- app/components/coco/buttons/color_picker_button/color_picker_button.css
|
1522
|
+
- app/components/coco/buttons/color_picker_button/color_picker_button.html.erb
|
1523
|
+
- app/components/coco/buttons/color_picker_button/color_picker_button.js
|
1524
|
+
- app/components/coco/buttons/color_picker_button/color_picker_button.rb
|
1525
|
+
- app/components/coco/buttons/confirm_panel/confirm_panel.css
|
1526
|
+
- app/components/coco/buttons/confirm_panel/confirm_panel.html.erb
|
1527
|
+
- app/components/coco/buttons/confirm_panel/confirm_panel.js
|
1528
|
+
- app/components/coco/buttons/confirm_panel/confirm_panel.rb
|
1529
|
+
- app/components/coco/buttons/image_picker_button/image_picker_button.css
|
1530
|
+
- app/components/coco/buttons/image_picker_button/image_picker_button.html.erb
|
1531
|
+
- app/components/coco/buttons/image_picker_button/image_picker_button.js
|
1532
|
+
- app/components/coco/buttons/image_picker_button/image_picker_button.rb
|
1533
|
+
- app/components/coco/buttons/layout_picker_button/layout_picker_button.css
|
1534
|
+
- app/components/coco/buttons/layout_picker_button/layout_picker_button.html.erb
|
1535
|
+
- app/components/coco/buttons/layout_picker_button/layout_picker_button.js
|
1536
|
+
- app/components/coco/buttons/layout_picker_button/layout_picker_button.rb
|
1537
|
+
- app/components/coco/buttons/menu/menu.css
|
1538
|
+
- app/components/coco/buttons/menu/menu.html.erb
|
1539
|
+
- app/components/coco/buttons/menu/menu.rb
|
1540
|
+
- app/components/coco/buttons/menu_button/menu_button.css
|
1541
|
+
- app/components/coco/buttons/menu_button/menu_button.html.erb
|
1542
|
+
- app/components/coco/buttons/menu_button/menu_button.js
|
1543
|
+
- app/components/coco/buttons/menu_button/menu_button.rb
|
1544
|
+
- app/components/coco/buttons/menu_items/user_profile/user_profile.css
|
1545
|
+
- app/components/coco/buttons/menu_items/user_profile/user_profile.html.erb
|
1546
|
+
- app/components/coco/buttons/menu_items/user_profile/user_profile.rb
|
1547
|
+
- app/components/coco/buttons/option_bar/option_bar.css
|
1548
|
+
- app/components/coco/buttons/option_bar/option_bar.html.erb
|
1549
|
+
- app/components/coco/buttons/option_bar/option_bar.rb
|
1550
|
+
- app/components/coco/buttons/toolbar/toolbar.css
|
1551
|
+
- app/components/coco/buttons/toolbar/toolbar.html.erb
|
1552
|
+
- app/components/coco/buttons/toolbar/toolbar.js
|
1553
|
+
- app/components/coco/buttons/toolbar/toolbar.rb
|
1633
1554
|
- app/components/coco/component.rb
|
1634
1555
|
- app/components/coco/concerns/accepts_options.rb
|
1635
1556
|
- app/components/coco/concerns/accepts_tag_attributes.rb
|
@@ -1647,94 +1568,152 @@ files:
|
|
1647
1568
|
- app/components/coco/concerns/with_icon.rb
|
1648
1569
|
- app/components/coco/concerns/with_tooltip.rb
|
1649
1570
|
- app/components/coco/concerns/wraps_component.rb
|
1571
|
+
- app/components/coco/embeds/youtube_embed/youtube_embed.css
|
1572
|
+
- app/components/coco/embeds/youtube_embed/youtube_embed.html.erb
|
1573
|
+
- app/components/coco/embeds/youtube_embed/youtube_embed.rb
|
1574
|
+
- app/components/coco/fields/button_component.rb
|
1575
|
+
- app/components/coco/fields/check_box_component.rb
|
1576
|
+
- app/components/coco/fields/collection_check_boxes_component.rb
|
1577
|
+
- app/components/coco/fields/collection_radio_buttons_component.rb
|
1578
|
+
- app/components/coco/fields/collection_select_component.rb
|
1579
|
+
- app/components/coco/fields/color_field_component.rb
|
1580
|
+
- app/components/coco/fields/date_field_component.rb
|
1581
|
+
- app/components/coco/fields/date_select_component.rb
|
1582
|
+
- app/components/coco/fields/datetime_local_field_component.rb
|
1583
|
+
- app/components/coco/fields/datetime_select_component.rb
|
1584
|
+
- app/components/coco/fields/email_field_component.rb
|
1585
|
+
- app/components/coco/fields/error_message_component.rb
|
1586
|
+
- app/components/coco/fields/file_field_component.rb
|
1587
|
+
- app/components/coco/fields/grouped_collection_select_component.rb
|
1588
|
+
- app/components/coco/fields/hint_component.rb
|
1589
|
+
- app/components/coco/fields/label_component.rb
|
1590
|
+
- app/components/coco/fields/month_field_component.rb
|
1591
|
+
- app/components/coco/fields/number_field_component.rb
|
1592
|
+
- app/components/coco/fields/password_field_component.rb
|
1593
|
+
- app/components/coco/fields/radio_button_component.rb
|
1594
|
+
- app/components/coco/fields/range_field_component.rb
|
1595
|
+
- app/components/coco/fields/search_field_component.rb
|
1596
|
+
- app/components/coco/fields/select_component.rb
|
1597
|
+
- app/components/coco/fields/submit_component.rb
|
1598
|
+
- app/components/coco/fields/telephone_field_component.rb
|
1599
|
+
- app/components/coco/fields/text_area_component.rb
|
1600
|
+
- app/components/coco/fields/text_field_component.rb
|
1601
|
+
- app/components/coco/fields/time_field_component.rb
|
1602
|
+
- app/components/coco/fields/time_select_component.rb
|
1603
|
+
- app/components/coco/fields/time_zone_select_component.rb
|
1604
|
+
- app/components/coco/fields/url_field_component.rb
|
1605
|
+
- app/components/coco/fields/week_field_component.rb
|
1606
|
+
- app/components/coco/fields/weekday_select_component.rb
|
1607
|
+
- app/components/coco/images/avatar/avatar.css
|
1608
|
+
- app/components/coco/images/avatar/avatar.rb
|
1609
|
+
- app/components/coco/images/icon/icon.css
|
1610
|
+
- app/components/coco/images/icon/icon.html.erb
|
1611
|
+
- app/components/coco/images/icon/icon.js
|
1612
|
+
- app/components/coco/images/icon/icon.rb
|
1613
|
+
- app/components/coco/images/image/image.css
|
1614
|
+
- app/components/coco/images/image/image.rb
|
1615
|
+
- app/components/coco/images/image_uploader/image_uploader.css
|
1616
|
+
- app/components/coco/images/image_uploader/image_uploader.html.erb
|
1617
|
+
- app/components/coco/images/image_uploader/image_uploader.js
|
1618
|
+
- app/components/coco/images/image_uploader/image_uploader.rb
|
1619
|
+
- app/components/coco/images/svg/svg.html.erb
|
1620
|
+
- app/components/coco/images/svg/svg.rb
|
1621
|
+
- app/components/coco/indicators/badge/badge.css
|
1622
|
+
- app/components/coco/indicators/badge/badge.html.erb
|
1623
|
+
- app/components/coco/indicators/badge/badge.rb
|
1624
|
+
- app/components/coco/indicators/stamp/stamp.css
|
1625
|
+
- app/components/coco/indicators/stamp/stamp.html.erb
|
1626
|
+
- app/components/coco/indicators/stamp/stamp.rb
|
1627
|
+
- app/components/coco/layout/page/page.css
|
1628
|
+
- app/components/coco/layout/page/page.html.erb
|
1629
|
+
- app/components/coco/layout/page/page.js
|
1630
|
+
- app/components/coco/layout/page/page.rb
|
1631
|
+
- app/components/coco/layout/panel/panel.css
|
1632
|
+
- app/components/coco/layout/panel/panel.html.erb
|
1633
|
+
- app/components/coco/layout/panel/panel.rb
|
1634
|
+
- app/components/coco/layout/spacer/spacer.css
|
1635
|
+
- app/components/coco/layout/spacer/spacer.rb
|
1636
|
+
- app/components/coco/layout/stack/stack.css
|
1637
|
+
- app/components/coco/layout/stack/stack.html.erb
|
1638
|
+
- app/components/coco/layout/stack/stack.rb
|
1639
|
+
- app/components/coco/messaging/alert/alert.css
|
1640
|
+
- app/components/coco/messaging/alert/alert.html.erb
|
1641
|
+
- app/components/coco/messaging/alert/alert.js
|
1642
|
+
- app/components/coco/messaging/alert/alert.rb
|
1643
|
+
- app/components/coco/messaging/notice/notice.css
|
1644
|
+
- app/components/coco/messaging/notice/notice.html.erb
|
1645
|
+
- app/components/coco/messaging/notice/notice.js
|
1646
|
+
- app/components/coco/messaging/notice/notice.rb
|
1647
|
+
- app/components/coco/messaging/snackbar/snackbar.css
|
1648
|
+
- app/components/coco/messaging/snackbar/snackbar.html.erb
|
1649
|
+
- app/components/coco/messaging/snackbar/snackbar.js
|
1650
|
+
- app/components/coco/messaging/snackbar/snackbar.rb
|
1651
|
+
- app/components/coco/messaging/system_banner/system_banner.css
|
1652
|
+
- app/components/coco/messaging/system_banner/system_banner.html.erb
|
1653
|
+
- app/components/coco/messaging/system_banner/system_banner.js
|
1654
|
+
- app/components/coco/messaging/system_banner/system_banner.rb
|
1655
|
+
- app/components/coco/messaging/toast/toast.css
|
1656
|
+
- app/components/coco/messaging/toast/toast.html.erb
|
1657
|
+
- app/components/coco/messaging/toast/toast.js
|
1658
|
+
- app/components/coco/messaging/toast/toast.rb
|
1659
|
+
- app/components/coco/modals/modal/modal.css
|
1660
|
+
- app/components/coco/modals/modal/modal.html.erb
|
1661
|
+
- app/components/coco/modals/modal/modal.js
|
1662
|
+
- app/components/coco/modals/modal/modal.rb
|
1663
|
+
- app/components/coco/modals/modal_dialog/modal_dialog.css
|
1664
|
+
- app/components/coco/modals/modal_dialog/modal_dialog.html.erb
|
1665
|
+
- app/components/coco/modals/modal_dialog/modal_dialog.js
|
1666
|
+
- app/components/coco/modals/modal_dialog/modal_dialog.rb
|
1667
|
+
- app/components/coco/modals/modal_lightbox/modal_lightbox.css
|
1668
|
+
- app/components/coco/modals/modal_lightbox/modal_lightbox.html.erb
|
1669
|
+
- app/components/coco/modals/modal_lightbox/modal_lightbox.js
|
1670
|
+
- app/components/coco/modals/modal_lightbox/modal_lightbox.rb
|
1671
|
+
- app/components/coco/navigation/link/link.css
|
1672
|
+
- app/components/coco/navigation/link/link.rb
|
1673
|
+
- app/components/coco/navigation/pager_button/pager_button.css
|
1674
|
+
- app/components/coco/navigation/pager_button/pager_button.html.erb
|
1675
|
+
- app/components/coco/navigation/pager_button/pager_button.rb
|
1676
|
+
- app/components/coco/pickers/color_picker/color_picker.css
|
1677
|
+
- app/components/coco/pickers/color_picker/color_picker.html.erb
|
1678
|
+
- app/components/coco/pickers/color_picker/color_picker.js
|
1679
|
+
- app/components/coco/pickers/color_picker/color_picker.rb
|
1680
|
+
- app/components/coco/pickers/image_picker/image_picker.css
|
1681
|
+
- app/components/coco/pickers/image_picker/image_picker.html.erb
|
1682
|
+
- app/components/coco/pickers/image_picker/image_picker.js
|
1683
|
+
- app/components/coco/pickers/image_picker/image_picker.rb
|
1650
1684
|
- app/components/coco/presented_component.rb
|
1651
|
-
- app/components/coco/shared/avatar/avatar.css
|
1652
|
-
- app/components/coco/shared/avatar/avatar.rb
|
1653
|
-
- app/components/coco/shared/badge/badge.css
|
1654
|
-
- app/components/coco/shared/badge/badge.html.erb
|
1655
|
-
- app/components/coco/shared/badge/badge.rb
|
1656
|
-
- app/components/coco/shared/button/button.css
|
1657
|
-
- app/components/coco/shared/button/button.html.erb
|
1658
|
-
- app/components/coco/shared/button/button.js
|
1659
|
-
- app/components/coco/shared/button/button.rb
|
1660
|
-
- app/components/coco/shared/button/button_dropdown.js
|
1661
|
-
- app/components/coco/shared/button_group/button_group.css
|
1662
|
-
- app/components/coco/shared/button_group/button_group.html.erb
|
1663
|
-
- app/components/coco/shared/button_group/button_group.js
|
1664
|
-
- app/components/coco/shared/button_group/button_group.rb
|
1665
|
-
- app/components/coco/shared/button_to/button_to.css
|
1666
|
-
- app/components/coco/shared/button_to/button_to.html.erb
|
1667
|
-
- app/components/coco/shared/button_to/button_to.rb
|
1668
|
-
- app/components/coco/shared/content/content.rb
|
1669
|
-
- app/components/coco/shared/dropdown/dropdown.css
|
1670
|
-
- app/components/coco/shared/dropdown/dropdown.html.erb
|
1671
|
-
- app/components/coco/shared/dropdown/dropdown.js
|
1672
|
-
- app/components/coco/shared/dropdown/dropdown.rb
|
1673
|
-
- app/components/coco/shared/embeds/youtube/youtube.css
|
1674
|
-
- app/components/coco/shared/embeds/youtube/youtube.html.erb
|
1675
|
-
- app/components/coco/shared/embeds/youtube/youtube.rb
|
1676
|
-
- app/components/coco/shared/icon/icon.css
|
1677
|
-
- app/components/coco/shared/icon/icon.html.erb
|
1678
|
-
- app/components/coco/shared/icon/icon.js
|
1679
|
-
- app/components/coco/shared/icon/icon.rb
|
1680
|
-
- app/components/coco/shared/image/image.css
|
1681
|
-
- app/components/coco/shared/image/image.rb
|
1682
|
-
- app/components/coco/shared/image_uploader/image_uploader.css
|
1683
|
-
- app/components/coco/shared/image_uploader/image_uploader.html.erb
|
1684
|
-
- app/components/coco/shared/image_uploader/image_uploader.js
|
1685
|
-
- app/components/coco/shared/image_uploader/image_uploader.rb
|
1686
|
-
- app/components/coco/shared/link/link.css
|
1687
|
-
- app/components/coco/shared/link/link.rb
|
1688
|
-
- app/components/coco/shared/modal/modal.css
|
1689
|
-
- app/components/coco/shared/modal/modal.html.erb
|
1690
|
-
- app/components/coco/shared/modal/modal.js
|
1691
|
-
- app/components/coco/shared/modal/modal.rb
|
1692
|
-
- app/components/coco/shared/modal_dialog/modal_dialog.css
|
1693
|
-
- app/components/coco/shared/modal_dialog/modal_dialog.html.erb
|
1694
|
-
- app/components/coco/shared/modal_dialog/modal_dialog.js
|
1695
|
-
- app/components/coco/shared/modal_dialog/modal_dialog.rb
|
1696
|
-
- app/components/coco/shared/modal_lightbox/modal_lightbox.css
|
1697
|
-
- app/components/coco/shared/modal_lightbox/modal_lightbox.html.erb
|
1698
|
-
- app/components/coco/shared/modal_lightbox/modal_lightbox.js
|
1699
|
-
- app/components/coco/shared/modal_lightbox/modal_lightbox.rb
|
1700
|
-
- app/components/coco/shared/pager_link/pager_link.css
|
1701
|
-
- app/components/coco/shared/pager_link/pager_link.html.erb
|
1702
|
-
- app/components/coco/shared/pager_link/pager_link.rb
|
1703
|
-
- app/components/coco/shared/panel/panel.css
|
1704
|
-
- app/components/coco/shared/panel/panel.html.erb
|
1705
|
-
- app/components/coco/shared/panel/panel.rb
|
1706
|
-
- app/components/coco/shared/placeholder/placeholder.css
|
1707
|
-
- app/components/coco/shared/placeholder/placeholder.html.erb
|
1708
|
-
- app/components/coco/shared/placeholder/placeholder.rb
|
1709
|
-
- app/components/coco/shared/poll_controller/poll_controller.css
|
1710
|
-
- app/components/coco/shared/poll_controller/poll_controller.html.erb
|
1711
|
-
- app/components/coco/shared/poll_controller/poll_controller.js
|
1712
|
-
- app/components/coco/shared/poll_controller/poll_controller.rb
|
1713
|
-
- app/components/coco/shared/prose/prose.css
|
1714
|
-
- app/components/coco/shared/prose/prose.rb
|
1715
|
-
- app/components/coco/shared/spacer/spacer.css
|
1716
|
-
- app/components/coco/shared/spacer/spacer.rb
|
1717
|
-
- app/components/coco/shared/stack/stack.css
|
1718
|
-
- app/components/coco/shared/stack/stack.html.erb
|
1719
|
-
- app/components/coco/shared/stack/stack.rb
|
1720
|
-
- app/components/coco/shared/svg/svg.html.erb
|
1721
|
-
- app/components/coco/shared/svg/svg.rb
|
1722
1685
|
- app/components/coco/tag.rb
|
1686
|
+
- app/components/coco/typography/prose/prose.css
|
1687
|
+
- app/components/coco/typography/prose/prose.rb
|
1688
|
+
- app/components/coco/utilities/content/content.rb
|
1689
|
+
- app/components/coco/utilities/dropdown/dropdown.css
|
1690
|
+
- app/components/coco/utilities/dropdown/dropdown.html.erb
|
1691
|
+
- app/components/coco/utilities/dropdown/dropdown.js
|
1692
|
+
- app/components/coco/utilities/dropdown/dropdown.rb
|
1693
|
+
- app/components/coco/utilities/placeholder/placeholder.css
|
1694
|
+
- app/components/coco/utilities/placeholder/placeholder.html.erb
|
1695
|
+
- app/components/coco/utilities/placeholder/placeholder.rb
|
1696
|
+
- app/components/coco/utilities/poll_controller/poll_controller.css
|
1697
|
+
- app/components/coco/utilities/poll_controller/poll_controller.html.erb
|
1698
|
+
- app/components/coco/utilities/poll_controller/poll_controller.js
|
1699
|
+
- app/components/coco/utilities/poll_controller/poll_controller.rb
|
1700
|
+
- app/components/coco/utilities/seamless_textarea/seamless_textarea.css
|
1701
|
+
- app/components/coco/utilities/seamless_textarea/seamless_textarea.html.erb
|
1702
|
+
- app/components/coco/utilities/seamless_textarea/seamless_textarea.js
|
1703
|
+
- app/components/coco/utilities/seamless_textarea/seamless_textarea.rb
|
1723
1704
|
- app/helpers/coco/alpine_helper.rb
|
1724
|
-
- app/helpers/coco/
|
1725
|
-
- app/helpers/coco/
|
1726
|
-
- app/helpers/coco/
|
1705
|
+
- app/helpers/coco/app_components_helper.rb
|
1706
|
+
- app/helpers/coco/book_components_helper.rb
|
1707
|
+
- app/helpers/coco/components_helper.rb
|
1708
|
+
- app/helpers/coco/core_components_helper.rb
|
1727
1709
|
- app/helpers/coco/format_helper.rb
|
1728
1710
|
- app/helpers/coco/helpers.rb
|
1729
1711
|
- app/helpers/coco/integration_helper.rb
|
1730
|
-
- app/helpers/coco/
|
1712
|
+
- app/helpers/coco/modal_helper.rb
|
1731
1713
|
- app/helpers/coco/tag_helper.rb
|
1732
|
-
- app/helpers/coco/url_helper.rb
|
1733
1714
|
- config/icons.json
|
1734
1715
|
- config/locales/coco.en.yml
|
1735
|
-
- config/tailwind.
|
1736
|
-
- config/tailwind.base.config.cjs
|
1737
|
-
- config/tailwind.book.config.cjs
|
1716
|
+
- config/tailwind.config.cjs
|
1738
1717
|
- config/tokens.cjs
|
1739
1718
|
- config/utils.cjs
|
1740
1719
|
- lib/coco.rb
|
@@ -1 +0,0 @@
|
|
1
|
-
@config "../../../../config/tailwind.app.config.cjs";
|
@@ -1,19 +0,0 @@
|
|
1
|
-
@layer utilities {
|
2
|
-
.tippy-dropdown-box {
|
3
|
-
@apply bg-background-light-2 text-gray-900 label-sm border border-solid border-gray-blend-100 shadow-xl rounded-lg;
|
4
|
-
}
|
5
|
-
}
|
6
|
-
|
7
|
-
@layer components {
|
8
|
-
/*
|
9
|
-
* Tippy dropdown theme
|
10
|
-
*/
|
11
|
-
.tippy-box[data-theme~="coco-app-dropdown"],
|
12
|
-
.tippy-box[data-theme~="coco-app-menu"] {
|
13
|
-
@apply tippy-dropdown-box;
|
14
|
-
}
|
15
|
-
|
16
|
-
.tippy-box[data-theme~="coco-naked-dropdown"] {
|
17
|
-
width: min-content;
|
18
|
-
}
|
19
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
@config "../../../../config/tailwind.book.config.cjs";
|