geoblacklight 5.3.0 → 6.0.0.pre.alpha.1
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 +4 -4
- data/.engine_cart.yml +14 -0
- data/.github/workflows/ruby.yml +24 -25
- data/.gitignore +0 -9
- data/.prettierignore +4 -0
- data/.prettierrc +5 -0
- data/CONTRIBUTING.md +2 -4
- data/Gemfile +4 -2
- data/README.md +4 -4
- data/Rakefile +0 -22
- data/app/assets/stylesheets/geoblacklight/global.css +7 -0
- data/app/assets/stylesheets/geoblacklight/home.css +22 -0
- data/app/assets/stylesheets/geoblacklight/index_maps.css +36 -0
- data/app/assets/stylesheets/geoblacklight/record.css +39 -0
- data/app/assets/stylesheets/geoblacklight/search.css +56 -0
- data/app/assets/stylesheets/geoblacklight/viewers.css +50 -0
- data/app/assets/stylesheets/geoblacklight.css +14 -0
- data/app/components/blacklight/icons/web_services_component.rb +3 -3
- data/app/components/geoblacklight/accordion_component.html.erb +3 -3
- data/app/components/geoblacklight/accordion_component.rb +4 -0
- data/app/components/geoblacklight/arcgis_component.html.erb +1 -1
- data/app/components/geoblacklight/arcgis_component.rb +1 -1
- data/app/components/geoblacklight/attribute_table_component.html.erb +3 -3
- data/app/components/geoblacklight/data_dictionary_download_component.html.erb +1 -1
- data/app/components/geoblacklight/display_note_component.html.erb +1 -1
- data/app/components/geoblacklight/display_note_component.rb +2 -1
- data/app/components/geoblacklight/document/citation_component.html.erb +1 -1
- data/app/components/geoblacklight/document/sidebar_component.html.erb +1 -1
- data/app/components/geoblacklight/document/sidebar_component.rb +0 -1
- data/app/components/geoblacklight/document_component.html.erb +1 -2
- data/app/components/geoblacklight/header_component.html.erb +4 -4
- data/app/components/geoblacklight/header_icons_component.rb +4 -2
- data/app/components/geoblacklight/homepage_feature_facet_component.html.erb +3 -7
- data/app/components/geoblacklight/homepage_feature_facet_component.rb +12 -3
- data/app/components/geoblacklight/iiif_drag_drop_component.html.erb +2 -2
- data/app/components/geoblacklight/iiif_drag_drop_component.rb +2 -2
- data/app/components/geoblacklight/index_map_inspect_component.html.erb +3 -3
- data/app/components/geoblacklight/index_map_legend_component.html.erb +7 -7
- data/app/components/geoblacklight/index_map_legend_component.rb +7 -0
- data/app/components/geoblacklight/item_map_viewer_component.rb +8 -4
- data/app/components/geoblacklight/location_leaflet_map_component.rb +28 -15
- data/app/components/geoblacklight/relations_component.html.erb +2 -2
- data/app/components/geoblacklight/search_result_component.html.erb +28 -26
- data/app/components/geoblacklight/search_result_component.rb +2 -2
- data/app/components/geoblacklight/static_map_component.rb +5 -4
- data/app/components/geoblacklight/viewer_help_text_component.html.erb +1 -1
- data/app/components/geoblacklight/viewer_help_text_component.rb +1 -1
- data/app/components/geoblacklight/web_services_component.html.erb +1 -1
- data/app/components/geoblacklight/web_services_component.rb +1 -1
- data/app/components/geoblacklight/web_services_default_component.html.erb +6 -6
- data/app/components/geoblacklight/web_services_link_component.rb +12 -9
- data/app/components/geoblacklight/web_services_wfs_component.html.erb +4 -4
- data/app/components/geoblacklight/web_services_wms_component.html.erb +4 -4
- data/app/controllers/download_controller.rb +0 -1
- data/app/controllers/wms_controller.rb +1 -1
- data/app/helpers/geoblacklight_helper.rb +0 -15
- data/app/javascript/geoblacklight/controllers/clipboard_controller.js +6 -6
- data/app/javascript/geoblacklight/controllers/downloads_controller.js +37 -29
- data/app/javascript/geoblacklight/controllers/leaflet_viewer_controller.js +108 -117
- data/app/javascript/geoblacklight/controllers/oembed_viewer_controller.js +5 -5
- data/app/javascript/geoblacklight/controllers/openlayers_viewer_controller.js +27 -30
- data/app/javascript/geoblacklight/controllers/search_results_controller.js +18 -18
- data/app/javascript/geoblacklight/core.js +35 -36
- data/app/javascript/geoblacklight/index.js +10 -10
- data/app/javascript/geoblacklight/initializers/metadata_download.js +23 -25
- data/app/javascript/geoblacklight/initializers/popovers.js +4 -4
- data/app/javascript/geoblacklight/initializers/relations.js +20 -20
- data/app/javascript/geoblacklight/initializers/tooltips.js +19 -23
- data/app/javascript/geoblacklight/initializers/truncation.js +18 -18
- data/app/javascript/geoblacklight/leaflet/basemaps.js +2 -3
- data/app/javascript/geoblacklight/leaflet/constants.js +7 -7
- data/app/javascript/geoblacklight/leaflet/controls/geosearch.js +80 -74
- data/app/javascript/geoblacklight/leaflet/controls/layer_opacity.js +74 -73
- data/app/javascript/geoblacklight/leaflet/controls/sidebar.js +31 -29
- data/app/javascript/geoblacklight/leaflet/controls/sleep.js +54 -51
- data/app/javascript/geoblacklight/leaflet/inspection.js +77 -68
- data/app/javascript/geoblacklight/leaflet/layer_index_map.js +74 -69
- data/app/javascript/geoblacklight/leaflet/layer_wmts.js +14 -16
- data/app/javascript/geoblacklight/leaflet/layers.js +59 -66
- data/app/javascript/geoblacklight/leaflet/utils.js +37 -43
- data/app/javascript/geoblacklight/openlayers/basemaps.js +35 -27
- data/app/javascript/geoblacklight/openlayers/inspection.js +23 -23
- data/app/javascript/geoblacklight/openlayers/layers.js +11 -11
- data/app/models/concerns/geoblacklight/bbox_filter_query.rb +7 -9
- data/app/models/concerns/geoblacklight/solr_document.rb +16 -39
- data/app/models/concerns/geoblacklight/suppressed_records_search_behavior.rb +3 -3
- data/app/views/catalog/_document_split.html.erb +3 -3
- data/app/views/catalog/_home_text.html.erb +22 -14
- data/app/views/catalog/_metadata.html.erb +1 -1
- data/app/views/catalog/_relations_container.html.erb +1 -1
- data/app/views/catalog/index.html.erb +0 -1
- data/app/views/catalog/metadata/_markup.html.erb +1 -2
- data/app/views/catalog/metadata/_missing.html.erb +2 -2
- data/app/views/catalog/web_services.html.erb +1 -1
- data/app/views/relation/index.html.erb +1 -1
- data/app/views/relation/index.json.jbuilder +1 -1
- data/config/initializers/rails_config.rb +0 -3
- data/config/locales/geoblacklight.en.yml +79 -78
- data/geoblacklight.gemspec +1 -2
- data/lib/generators/geoblacklight/assets_generator.rb +35 -26
- data/lib/generators/geoblacklight/install_generator.rb +6 -11
- data/lib/generators/geoblacklight/templates/assets/customizations.css +6 -0
- data/lib/generators/geoblacklight/templates/catalog_controller.rb +97 -73
- data/lib/generators/geoblacklight/templates/settings.yml +97 -113
- data/lib/geoblacklight/configuration/default_settings_builder.rb +18 -0
- data/lib/geoblacklight/configuration/display_note_shown_config.rb +13 -0
- data/lib/geoblacklight/configuration/fields_config.rb +51 -0
- data/lib/geoblacklight/configuration/leaflet_config.rb +73 -0
- data/lib/geoblacklight/configuration/leaflet_layers_config.rb +21 -0
- data/lib/geoblacklight/configuration/leaflet_sleep_config.rb +20 -0
- data/lib/geoblacklight/configuration/legacy_settings_builder.rb +94 -0
- data/lib/geoblacklight/configuration.rb +148 -0
- data/lib/geoblacklight/download.rb +2 -2
- data/lib/geoblacklight/engine.rb +7 -5
- data/lib/geoblacklight/metadata/base.rb +0 -2
- data/lib/geoblacklight/metadata_transformer.rb +0 -2
- data/lib/geoblacklight/references.rb +5 -4
- data/lib/geoblacklight/relation/ancestors.rb +3 -2
- data/lib/geoblacklight/relation/descendants.rb +2 -1
- data/lib/geoblacklight/relation/relation_response.rb +4 -4
- data/lib/geoblacklight/version.rb +1 -1
- data/lib/geoblacklight/wms_layer.rb +3 -3
- data/lib/geoblacklight.rb +7 -1
- data/package.json +10 -31
- data/schema/geoblacklight-schema-aardvark.json +1 -9
- data/schema/readme.md +3 -4
- data/solr/conf/_rest_managed.json +3 -2
- data/solr/conf/schema.xml +1 -1
- data/spec/components/geoblacklight/arcgis_component_spec.rb +6 -6
- data/spec/components/geoblacklight/attribute_table_component_spec.rb +6 -7
- data/spec/components/geoblacklight/citation_component_spec.rb +7 -4
- data/spec/components/geoblacklight/display_note_component_spec.rb +8 -8
- data/spec/components/geoblacklight/document_component_spec.rb +13 -13
- data/spec/components/geoblacklight/download_links_component_spec.rb +17 -14
- data/spec/components/geoblacklight/header_icons_component_spec.rb +6 -11
- data/spec/components/geoblacklight/homepage_feature_facet_component_spec.rb +22 -30
- data/spec/components/geoblacklight/iiif_drag_drop_component_spec.rb +3 -3
- data/spec/components/geoblacklight/index_map_legend_component_spec.rb +5 -18
- data/spec/components/geoblacklight/item_map_viewer_component_spec.rb +5 -5
- data/spec/components/geoblacklight/login_link_component_spec.rb +4 -5
- data/spec/components/geoblacklight/search_result_component_spec.rb +2 -6
- data/spec/components/geoblacklight/static_map_component_spec.rb +2 -2
- data/spec/components/geoblacklight/viewer_help_text_component_spec.rb +4 -6
- data/spec/components/geoblacklight/web_services_component_spec.rb +11 -10
- data/spec/controllers/catalog_controller_spec.rb +7 -7
- data/spec/controllers/download_controller_spec.rb +1 -1
- data/spec/controllers/relation_controller_spec.rb +1 -1
- data/spec/controllers/wms_controller_spec.rb +1 -1
- data/spec/features/axe_spec.rb +4 -4
- data/spec/features/bookmarks_spec.rb +1 -1
- data/spec/features/citations_spec.rb +1 -1
- data/spec/features/configurable_basemap_spec.rb +1 -1
- data/spec/features/data_dictionary_download_spec.rb +1 -1
- data/spec/features/download_layer_spec.rb +1 -1
- data/spec/features/empty_search_spec.rb +1 -1
- data/spec/features/esri_viewer_spec.rb +1 -1
- data/spec/features/exports_spec.rb +1 -1
- data/spec/features/full_screen_control_spec.rb +3 -10
- data/spec/features/help_text_spec.rb +1 -1
- data/spec/features/home_page_spec.rb +1 -1
- data/spec/features/index_map_spec.rb +3 -3
- data/spec/features/index_view_spec.rb +7 -7
- data/spec/features/layer_inspection_spec.rb +1 -1
- data/spec/features/layer_opacity_spec.rb +1 -1
- data/spec/features/layer_preview_spec.rb +1 -1
- data/spec/features/layer_with_no_references_spec.rb +1 -1
- data/spec/features/linkified_attribute_table_spec.rb +1 -1
- data/spec/features/metadata_panel_spec.rb +1 -1
- data/spec/features/missing_metadata_spec.rb +1 -1
- data/spec/features/multiple_downloads_spec.rb +1 -1
- data/spec/features/oembed_spec.rb +1 -1
- data/spec/features/relations_spec.rb +2 -2
- data/spec/features/saved_searches_spec.rb +1 -1
- data/spec/features/search_bar_spec.rb +1 -1
- data/spec/features/search_results_complex_geometry_spec.rb +1 -1
- data/spec/features/search_results_icons_spec.rb +3 -4
- data/spec/features/search_results_map_spec.rb +1 -1
- data/spec/features/search_results_overlap_ratio_spec.rb +3 -3
- data/spec/features/search_spec.rb +1 -1
- data/spec/features/show_page_download_spec.rb +1 -1
- data/spec/features/show_page_metadata_spec.rb +2 -2
- data/spec/features/show_page_sidebar_static_map_spec.rb +1 -1
- data/spec/features/sms_spec.rb +1 -1
- data/spec/features/suppressed_records_spec.rb +1 -1
- data/spec/features/tilejson_spec.rb +1 -1
- data/spec/features/tms_spec.rb +1 -1
- data/spec/features/web_services_modal_spec.rb +1 -1
- data/spec/features/wmts_spec.rb +1 -1
- data/spec/features/xyz_spec.rb +1 -1
- data/spec/fixtures/manifests/tilejson.json +10 -19
- data/spec/fixtures/metadata/fgdc.html +1 -1
- data/spec/fixtures/metadata/iso.html +1 -1
- data/spec/fixtures/solr_documents/README.md +0 -1
- data/spec/fixtures/solr_documents/actual-papermap1.json +9 -28
- data/spec/fixtures/solr_documents/actual-point1.json +12 -39
- data/spec/fixtures/solr_documents/actual-polygon1.json +10 -30
- data/spec/fixtures/solr_documents/actual-raster1.json +14 -46
- data/spec/fixtures/solr_documents/all-relationships.json +12 -36
- data/spec/fixtures/solr_documents/b1g_iiif_manifest.json +33 -62
- data/spec/fixtures/solr_documents/b1g_wabash_child_15.json +13 -40
- data/spec/fixtures/solr_documents/b1g_wabash_child_16.json +13 -40
- data/spec/fixtures/solr_documents/b1g_wabash_child_17.json +13 -40
- data/spec/fixtures/solr_documents/b1g_wabash_child_18.json +13 -40
- data/spec/fixtures/solr_documents/b1g_wabash_parent.json +13 -40
- data/spec/fixtures/solr_documents/baruch_ancestor1.json +13 -40
- data/spec/fixtures/solr_documents/baruch_ancestor2.json +13 -40
- data/spec/fixtures/solr_documents/baruch_documentation_download.json +14 -46
- data/spec/fixtures/solr_documents/bbox-spans-180.json +7 -21
- data/spec/fixtures/solr_documents/complex-geom.json +11 -37
- data/spec/fixtures/solr_documents/cornell_html_metadata.json +12 -37
- data/spec/fixtures/solr_documents/display-note.json +11 -33
- data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +13 -39
- data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +13 -40
- data/spec/fixtures/solr_documents/esri-feature-layer.json +13 -39
- data/spec/fixtures/solr_documents/esri-image-map-layer.json +13 -40
- data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +16 -54
- data/spec/fixtures/solr_documents/esri-wms-layer.json +12 -36
- data/spec/fixtures/solr_documents/harvard_raster.json +12 -37
- data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +9 -27
- data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +12 -41
- data/spec/fixtures/solr_documents/index-map-polygon.json +12 -41
- data/spec/fixtures/solr_documents/index-map-stanford.json +14 -45
- data/spec/fixtures/solr_documents/index-map-v1-complex.json +13 -38
- data/spec/fixtures/solr_documents/index_map_point.json +13 -42
- data/spec/fixtures/solr_documents/metadata_no_geom.json +4 -14
- data/spec/fixtures/solr_documents/metadata_no_provider.json +8 -25
- data/spec/fixtures/solr_documents/multiple-downloads.json +6 -18
- data/spec/fixtures/solr_documents/no_locn_geometry.json +4 -12
- data/spec/fixtures/solr_documents/no_spatial.json +4 -12
- data/spec/fixtures/solr_documents/oembed.json +8 -25
- data/spec/fixtures/solr_documents/princeton-child1.json +9 -29
- data/spec/fixtures/solr_documents/princeton-child2.json +9 -29
- data/spec/fixtures/solr_documents/princeton-child3.json +9 -29
- data/spec/fixtures/solr_documents/princeton-child4.json +9 -29
- data/spec/fixtures/solr_documents/princeton-parent.json +10 -33
- data/spec/fixtures/solr_documents/public_cog_princeton.json +9 -27
- data/spec/fixtures/solr_documents/public_iiif_princeton.json +13 -43
- data/spec/fixtures/solr_documents/public_pmtiles_princeton.json +29 -39
- data/spec/fixtures/solr_documents/public_polygon_mit.json +9 -30
- data/spec/fixtures/solr_documents/restricted-line.json +14 -47
- data/spec/fixtures/solr_documents/the-related-record.json +4 -12
- data/spec/fixtures/solr_documents/tilejson.json +23 -46
- data/spec/fixtures/solr_documents/tms.json +7 -21
- data/spec/fixtures/solr_documents/umn_metro_result1.json +13 -41
- data/spec/fixtures/solr_documents/umn_state_result1.json +13 -39
- data/spec/fixtures/solr_documents/umn_state_result2.json +13 -39
- data/spec/fixtures/solr_documents/uva_slug_colon.json +10 -30
- data/spec/fixtures/solr_documents/wmts-multiple.json +23 -39
- data/spec/fixtures/solr_documents/wmts-single-layer.json +23 -46
- data/spec/fixtures/solr_documents/xyz.json +10 -33
- data/spec/helpers/geoblacklight_helper_spec.rb +5 -50
- data/spec/javascripts/geoblacklight_spec.js +10 -10
- data/spec/javascripts/metadata_download_button_spec.js +14 -13
- data/spec/lib/geoblacklight/bounding_box_spec.rb +1 -1
- data/spec/lib/geoblacklight/configuration/default_settings_builder_spec.rb +9 -0
- data/spec/lib/geoblacklight/configuration_spec.rb +13 -0
- data/spec/lib/geoblacklight/download/csv_download_spec.rb +2 -2
- data/spec/lib/geoblacklight/download/geojson_download_spec.rb +2 -2
- data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +5 -2
- data/spec/lib/geoblacklight/download/kmz_download_spec.rb +2 -2
- data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +2 -2
- data/spec/lib/geoblacklight/download_spec.rb +15 -6
- data/spec/lib/geoblacklight/geometry_spec.rb +1 -1
- data/spec/lib/geoblacklight/item_viewer_spec.rb +2 -2
- data/spec/lib/geoblacklight/metadata/base_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata/html_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata_transformer/base_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata_transformer/fgdc_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata_transformer/iso19139_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata_transformer_spec.rb +1 -1
- data/spec/lib/geoblacklight/reference_spec.rb +1 -1
- data/spec/lib/geoblacklight/references_spec.rb +6 -4
- data/spec/lib/geoblacklight/relation/ancestors_spec.rb +10 -4
- data/spec/lib/geoblacklight/relation/descendants_spec.rb +9 -4
- data/spec/lib/geoblacklight/relation/relation_response_spec.rb +12 -15
- data/spec/lib/geoblacklight/wms_layer/feature_info_response_spec.rb +1 -1
- data/spec/lib/geoblacklight/wms_layer_spec.rb +1 -1
- data/spec/models/concerns/geoblacklight/bbox_filter_query_spec.rb +20 -11
- data/spec/models/concerns/geoblacklight/solr_document/citation_spec.rb +1 -1
- data/spec/models/concerns/geoblacklight/solr_document/finder_spec.rb +1 -1
- data/spec/models/concerns/geoblacklight/solr_document/inspection_spec.rb +1 -1
- data/spec/models/concerns/geoblacklight/solr_document_spec.rb +4 -39
- data/spec/models/concerns/geoblacklight/suppressed_records_search_behavior_spec.rb +2 -2
- data/spec/routing/catalog_routing_spec.rb +1 -1
- data/spec/spec_helper.rb +21 -10
- data/spec/tasks/geoblacklight_spec.rb +1 -1
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +4 -3
- metadata +33 -184
- data/Procfile.dev +0 -3
- data/app/assets/stylesheets/geoblacklight/geoblacklight.scss +0 -2
- data/app/assets/stylesheets/geoblacklight/modules/_base.scss +0 -31
- data/app/assets/stylesheets/geoblacklight/modules/_blacklight_overrides.scss +0 -40
- data/app/assets/stylesheets/geoblacklight/modules/_styles.scss +0 -9
- data/app/assets/stylesheets/geoblacklight/modules/downloads.scss +0 -62
- data/app/assets/stylesheets/geoblacklight/modules/geosearch.scss +0 -23
- data/app/assets/stylesheets/geoblacklight/modules/home.scss +0 -13
- data/app/assets/stylesheets/geoblacklight/modules/icon-customization.scss +0 -116
- data/app/assets/stylesheets/geoblacklight/modules/index_maps.scss +0 -61
- data/app/assets/stylesheets/geoblacklight/modules/item.scss +0 -78
- data/app/assets/stylesheets/geoblacklight/modules/layer_opacity.scss +0 -87
- data/app/assets/stylesheets/geoblacklight/modules/leaflet.scss +0 -4
- data/app/assets/stylesheets/geoblacklight/modules/metadata.scss +0 -31
- data/app/assets/stylesheets/geoblacklight/modules/metadata_content.scss +0 -43
- data/app/assets/stylesheets/geoblacklight/modules/metadata_markup.scss +0 -9
- data/app/assets/stylesheets/geoblacklight/modules/metadata_missing.scss +0 -7
- data/app/assets/stylesheets/geoblacklight/modules/modal.scss +0 -5
- data/app/assets/stylesheets/geoblacklight/modules/results.scss +0 -60
- data/app/assets/stylesheets/geoblacklight/modules/search_widgets.scss +0 -5
- data/app/assets/stylesheets/geoblacklight/modules/sidebar.scss +0 -42
- data/app/assets/stylesheets/geoblacklight/modules/toolbar.scss +0 -34
- data/app/assets/stylesheets/geoblacklight/modules/web_services.scss +0 -5
- data/app/components/blacklight/icons/american_geographical_society_library_uwm_libraries_component.rb +0 -46
- data/app/components/blacklight/icons/arizona_component.rb +0 -24
- data/app/components/blacklight/icons/baruch_cuny_component.rb +0 -23
- data/app/components/blacklight/icons/bookmark_component.rb +0 -23
- data/app/components/blacklight/icons/circle_info_solid_component.rb +0 -23
- data/app/components/blacklight/icons/columbia_component.rb +0 -23
- data/app/components/blacklight/icons/cornell_component.rb +0 -25
- data/app/components/blacklight/icons/george_mason_component.rb +0 -24
- data/app/components/blacklight/icons/harvard_component.rb +0 -23
- data/app/components/blacklight/icons/indiana_component.rb +0 -23
- data/app/components/blacklight/icons/lewis_clark_component.rb +0 -25
- data/app/components/blacklight/icons/massgis_component.rb +0 -23
- data/app/components/blacklight/icons/michigan_state_university_component.rb +0 -25
- data/app/components/blacklight/icons/mit_component.rb +0 -23
- data/app/components/blacklight/icons/northwestern_university_component.rb +0 -24
- data/app/components/blacklight/icons/nyu_component.rb +0 -26
- data/app/components/blacklight/icons/pennsylvania_state_university_component.rb +0 -25
- data/app/components/blacklight/icons/princeton_component.rb +0 -23
- data/app/components/blacklight/icons/purdue_university_component.rb +0 -25
- data/app/components/blacklight/icons/rutgers_component.rb +0 -25
- data/app/components/blacklight/icons/sms_component.rb +0 -23
- data/app/components/blacklight/icons/stanford_component.rb +0 -23
- data/app/components/blacklight/icons/texas_component.rb +0 -23
- data/app/components/blacklight/icons/the_ohio_state_university_component.rb +0 -26
- data/app/components/blacklight/icons/tufts_component.rb +0 -23
- data/app/components/blacklight/icons/ucla_component.rb +0 -23
- data/app/components/blacklight/icons/university_of_california_berkeley_component.rb +0 -24
- data/app/components/blacklight/icons/university_of_chicago_component.rb +0 -25
- data/app/components/blacklight/icons/university_of_colorado_boulder_component.rb +0 -26
- data/app/components/blacklight/icons/university_of_illinois_urbana_champaign_component.rb +0 -25
- data/app/components/blacklight/icons/university_of_iowa_component.rb +0 -24
- data/app/components/blacklight/icons/university_of_maryland_component.rb +0 -24
- data/app/components/blacklight/icons/university_of_michigan_component.rb +0 -24
- data/app/components/blacklight/icons/university_of_minnesota_component.rb +0 -24
- data/app/components/blacklight/icons/university_of_nebraska_lincoln_component.rb +0 -27
- data/app/components/blacklight/icons/university_of_wisconsin_madison_component.rb +0 -24
- data/app/components/blacklight/icons/uva_component.rb +0 -23
- data/app/components/geoblacklight/icon_facet_item_component.rb +0 -33
- data/app/components/geoblacklight/web_services_link_component.html.erb +0 -3
- data/bin/vite +0 -29
- data/config/initializers/new_gbl_settings_defaults_4.1.yml +0 -104
- data/lib/generators/geoblacklight/assets/importmap_generator.rb +0 -73
- data/lib/generators/geoblacklight/assets/vite_generator.rb +0 -89
- data/lib/generators/geoblacklight/templates/assets/_customizations.scss +0 -23
- data/lib/generators/geoblacklight/templates/assets/application.js +0 -17
- data/lib/generators/geoblacklight/templates/assets/application.scss +0 -9
- data/lib/generators/geoblacklight/templates/assets/geoblacklight.scss +0 -11
- data/lib/generators/geoblacklight/templates/base.html.erb +0 -46
- data/lib/generators/geoblacklight/templates/vite.config.ts +0 -23
- data/lib/generators/geoblacklight/templates/vite.json +0 -16
- data/schema/geoblacklight-schema-1.0.json +0 -214
- data/solr/conf/xslt/example.xsl +0 -132
- data/solr/conf/xslt/example_atom.xsl +0 -67
- data/solr/conf/xslt/example_rss.xsl +0 -66
- data/solr/conf/xslt/luke.xsl +0 -337
- data/spec/components/blacklight/icons/american_geographical_society_library_uwm_libraries_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/arizona_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/arrow_circle_down_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/baruch_cuny_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/book_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/bookmark_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/cd_rom_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/child_item_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/circle_info_solid_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/citation_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/collection_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/collections_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/columbia_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/cornell_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/datasets_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/dvd_rom_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/email_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/esri_globe_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/fire_solid_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/george_mason_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/globe_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/harvard_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/home_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/iiif_drag_drop_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/image_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/imagery_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/indiana_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/leaf_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/lewis_clark_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/lightbulb_solid_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/line_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/map_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/map_marker_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/maps_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/massgis_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/metadata_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/michigan_state_university_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/mit_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/mixed_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/multilinestring_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/multipoint_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/multipolygon_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/northwestern_university_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/nyu_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/pagelines_brands_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/paper_map_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/parent_item_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/pennsylvania_state_university_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/point_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/polygon_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/polyline_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/princeton_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/public_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/purdue_university_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/raster_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/restricted_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/rutgers_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/sms_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/stanford_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/table_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/tags_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/texas_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/the_ohio_state_university_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/triangle_exclamation_solid_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/tufts_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/ucla_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_california_berkeley_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_chicago_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_colorado_boulder_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_illinois_urbana_champaign_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_iowa_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_maryland_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_michigan_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_minnesota_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_nebraska_lincoln_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_wisconsin_madison_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/uva_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/web_services_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/websites_component_spec.rb +0 -15
- data/spec/components/geoblacklight/icon_facet_item_component_spec.rb +0 -18
- data/spec/config/initializers/rails_config_spec.rb +0 -16
- data/spec/fixtures/solr_documents/public_direct_download.json +0 -62
- data/spec/support/backport_test_helpers.rb +0 -47
- data/spec/support/view_component_capybara_test_helpers.rb +0 -8
- data/vite.config.ts +0 -32
- /data/app/assets/images/{blacklight → geoblacklight}/logo.svg +0 -0
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class BaruchCunyComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M28.66 22.76c-.97-7.44-9.68-8.5-9.68-8.5 6.18-3.64 6.72-6.9 6.72-7.7C25.85 1.04 20.73.4 20.73.4 19.38-.03 3.28.24 3.28.24c1.57.87 1.55 2.52 1.55 2.52.1.67.3 26.13.3 26.13-.3 2.48-1.8 2.96-1.8 2.96l17.42-.1c9.13-.42 7.92-8.99 7.92-8.99zm-11.44 7.4s-5.15.84-5.35-2-.05-14.85-.05-14.85l-.1-9.56c-.05-2.1 2.73-2.02 2.73-2.02 5.8 0 5.25 5.85 5.25 5.85 0 3.19-4.87 7.12-4.87 7.12.44.1 6.67 1.54 7.11 9.36 0 0 .7 5.45-4.73 6.1z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class BookmarkComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 28">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M18.19 2c.23 0 .47.05.69.14.68.27 1.12.9 1.12 1.61v20.14c0 .7-.44 1.34-1.12 1.61-.22.1-.46.13-.7.13a1.9 1.9 0 0 1-1.29-.5L10 18.5l-6.9 6.63c-.35.32-.8.51-1.29.51-.23 0-.47-.05-.69-.14A1.73 1.73 0 0 1 0 23.9V3.74c0-.7.44-1.34 1.12-1.6.22-.1.46-.15.7-.15h16.37z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class CircleInfoSolidComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc. -->
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class ColumbiaComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M31.89 15.45a4.2 4.2 0 0 0-3.88-3.5c-3.48-.28-6.48 1.58-9.86 2.17-.27.05-.63-.52-.96-.85 1.57-1.18 1.35-3.5-.46-4.5a4.05 4.05 0 0 1 0-1.53c.14-.12 1.3.1 1.46-.04.17-.14.13-1.53.03-1.66s-1.41 0-1.48-.08c-.08-.1.03-1.34-.1-1.44-.08-.07-.44-.08-.64-.08s-.56 0-.65.08c-.12.1-.02 1.34-.09 1.44-.07.08-1.37-.06-1.48.08-.1.13-.14 1.52.03 1.66.16.14 1.32-.08 1.46.04.08.06.12 1.4 0 1.54-1.82 1-2.03 3.31-.46 4.49-.33.33-.7.9-.97.86-3.37-.6-6.37-2.46-9.85-2.18a4.2 4.2 0 0 0-3.88 3.5c-.61 3.54 1.94 6.27 3.17 9.28.4.95.74 2.23.68 3.33H28.04c-.06-1.1.28-2.38.67-3.33 1.24-3.01 3.79-5.74 3.18-9.28zM14.56 23.3c-.31 1.78-1.3 2.91-2.13 2.92-.54 0-.97-.2-1.36-.55-.54-.47-.99-1.26-.84-1.72.12-.15 1.58.07 1.68-.07.1-.15-.18-1.29-.34-1.43-.17-.15-1.49.05-1.66-.1-.18-.14-.34-1.55-.52-1.64 0 0-1.4-.2-1.5 0-.1.2.47 1.37.37 1.57s-1.94-.18-1.97.03c-.04.21.1 1.24.28 1.4.18.15 1.9.16 1.9.16.36.27.45.83.46 1.4 0 .72-.56 1.1-1.46.84-1.67-.47-3.73-4.08-4.96-6.59-.9-1.84-1.45-4.86.92-5.76 1.44-.55 2.96-.24 4.51.22 1.63.49 3.77 1.14 5.04 1.93.3.19-.37.04.75 2.52.53 1.16 1.05 3.63.83 4.87zm9.97 2.81c-.9.25-1.46-.12-1.46-.84 0-.57.1-1.13.46-1.4 0 0 1.72 0 1.9-.16s.31-1.2.28-1.4c-.03-.2-1.88.17-1.98-.03s.48-1.38.38-1.58c-.1-.2-1.5.01-1.5.01-.18.09-.34 1.5-.52 1.64s-1.5-.05-1.66.1c-.16.14-.44 1.28-.34 1.43.1.14 1.56-.08 1.68.07.14.46-.3 1.25-.84 1.72-.4.34-.83.55-1.37.55-.82-.01-1.8-1.14-2.12-2.92-.22-1.24.3-3.71.82-4.87 1.13-2.48.45-2.33.76-2.52 1.26-.79 3.4-1.44 5.04-1.93 1.55-.46 3.06-.77 4.5-.22 2.37.9 1.83 3.92.93 5.76-1.23 2.5-3.3 6.12-4.96 6.6z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class CornellComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M16 0C7.18 0 .04 7.16.04 15.96S7.18 32 16 32c8.8 0 15.96-7.24 15.96-16.04C31.96 7.15 24.8 0 16 0zm0 30.19a14.22 14.22 0 1 1 0-28.45 14.22 14.22 0 0 1 0 28.45z"/>
|
|
13
|
-
<path fill="#6c757d" d="M6.33 18.65c0 7.25 9.05 11.17 9.4 11.34l.27.1.27-.18c.44-.16 9.42-4.18 9.42-11.07V5.76H6.33v12.9zm1.39.01v-3.91h7.83v1c-.2-.04-.62-.14-1.1-.07-.26 0-.53.1-.8.1-.44 0-.78.08-1.13.08H10.5v8.82h1.73c.69 0 1.14-.1 1.58-.1.42-.08.78-.08 1.3-.08.09 0 .17.08.26.17.04.04.09.11.17.18v3.58c-2.15-1.11-7.83-4.54-7.83-9.77zm7.83 4.94a1.59 1.59 0 0 0-.43-.07c-.6 0-.95 0-1.37.1-.43 0-.87.08-1.48.08h-.62v-6.79h.96c.33 0 .78 0 1.22-.09.25 0 .52-.09.78-.09.45-.08.88 0 .88 0l.06.03v6.83zm1.04-6.81a.23.23 0 0 1 .12-.04s.44-.1.88 0c.26 0 .53.08.79.08.42 0 .86.1 1.21.1h.96v6.78h-.61c-.6 0-1.05-.09-1.48-.09-.45-.09-.89-.09-1.41-.09-.17 0-.33.03-.46.07V16.8zm0 0v-.05h.04l-.04.04zm0 11.64v-3.61l.23-.15c.08-.17.08-.17.25-.17.52 0 .87.09 1.3.09.43 0 .88.09 1.58.09h1.73v-8.82h-2.01c-.36 0-.7 0-1.14-.09-.26 0-.53-.09-.79-.09-.48 0-.98.07-1.15.08v-1.01h7.86v4.17c0 4.92-5.76 8.4-7.86 9.51zm7.86-14.82H7.72V7.15h16.73v6.46z"/>
|
|
14
|
-
<path fill="#6c757d" d="M10.08 12.2c.6.44 1.66 1.06 1.66 1.06l.17.09.26-.1c.08 0 1.04-.6 1.74-1.05.52-.35.78-.7.78-1.14V7.4H9.2v3.66c.1.36.37.79.9 1.14zm3.22-.7c-.43.27-1.12.71-1.48.88-.36-.18-.97-.62-1.41-.88-.27-.17-.44-.44-.44-.53V9.86h3.77v1.2c0 .18-.27.35-.44.44zM9.98 8.19v.09h3.76v.8H9.97l.01-.89zM18.6 12.2c.62.44 1.67 1.06 1.67 1.06l.17.09.26-.1c.08 0 1.04-.6 1.74-1.05.52-.35.78-.7.78-1.14V7.4h-5.5v3.66c.1.36.36.79.89 1.14zm3.26-.7c-.44.27-1.13.71-1.48.88-.37-.18-.98-.62-1.41-.88-.27-.17-.44-.44-.44-.53v-.16l1.83-1.3 1.93 1.26v.3c0 .17-.26.34-.43.43zm-3.31-3.31v.09h3.74v1.58l-1.93-1.31-1.83 1.28V8.2h.02zM12.24 17.87h2.27v.78h-2.27v-.78zM12.24 19.7h2.27v.78h-2.27v-.78zM12.24 21.54h2.27v.79h-2.27v-.79zM17.3 17.87h2.26v.78H17.3v-.78zM17.3 19.7h2.26v.78H17.3v-.78zM17.3 21.54h2.26v.79H17.3v-.79z"/>
|
|
15
|
-
</svg>
|
|
16
|
-
SVG
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
def title
|
|
20
|
-
key = "blacklight.icon.#{name}"
|
|
21
|
-
t(key)
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class GeorgeMasonComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M32.088 0.6l2.545-4.6c-0.605 0.567-0.9 0.745-1.47 1.13-3.077 2.112-6.864 2.615-10.668 5.744-2.58 2.124-3.773 5.202-3.773 5.202s3.464-3.9 8.703-5.832c2.113-0.783 3.587-1.213 4.663-1.632z"></path>
|
|
13
|
-
<path fill="#6c757d" d="M30.73 3.072c-2.758 0.88-6.042 1.716-9.407 3.987-2.62 1.77-4.143 4.787-4.143 4.787s3.696-3.696 9.068-4.958l2.75-0.642 1.734-3.174zM27.66 8.796c-1.32 0.12-4.078 0.366-7.303 2.162-2.122 1.18-3.795 2.797-3.795 2.797l-0.005 0.010-0.003-0.002c-0.63 1.182-1.502 3.147-2.357 5.26l-4.253-7.763h-5.577l1.782 1.784v13.136l-1.782 1.78h6.1l-1.812-1.782v-10.2l3.983 7.13-1.257 4.135 1.283-1.5s1.040-4.955 5.142-9.82v10.393l-1.783 1.684h7.064l-1.536-1.784v-13.88c3.714-2.944 6.115-3.54 6.1-3.54z"></path>
|
|
14
|
-
</svg>
|
|
15
|
-
SVG
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def title
|
|
19
|
-
key = "blacklight.icon.#{name}"
|
|
20
|
-
t(key)
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class HarvardComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M1.17 1.17h27.04v10.19c0 13.48-8.54 18.92-13.52 21.81-4.98-2.89-13.52-8.33-13.52-21.81V1.17zm6.34 2.86v2.81h.94v13.49H7.5v2.81h4.83v-2.81h-.93v-5.26h6.56v5.26h-.93v2.81h4.83v-2.81h-.94V6.84h.94V4.02h-4.83v2.82h.94v5.26H11.4V6.84h.93V4.02H7.51z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class IndianaComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M0 0h27.36v32H0V0zm16.74 7.7v1.7h1.17v9.46h-2.49V6.39h1.32v-1.7h-6.2v1.7h1.32v12.47H9.34V9.4h1.18V7.7H4.7v1.7H6v10.96l2.15 2.2h3.7v2.52h-1.31v2.18h6.2v-2.18h-1.32v-2.52h3.69l2.13-2.2V9.4h1.34V7.7h-5.84z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class LewisClarkComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M12.38 31.94c3.65-1 7.5-3.88 9.48-8.45-1.4 2.41-4.1 4.14-7.8 2.3s-5.83-.4-6.48.22c.73 1.93 2.1 3.9 4.8 5.93zM6.83 21.95c.51-3.7 3.93-5.26 8.3-3.16 4.16 1.99 7.7-.67 8.12-2.3V0H6.77v18.75c.01 1.08 0 2.14.06 3.2z"/>
|
|
13
|
-
<path fill="#6c757d" d="M6.58 25.66c-.73-2.37-.63-4.67-.66-6.9V0H0v16.25C-.16 25.2 5.74 30.65 11.12 32c-2.58-2.13-3.9-4.24-4.54-6.34z"/>
|
|
14
|
-
<path fill="#6c757d" d="M14.43 21.58c-3.5-1.26-6.07-.8-7.51 1.55.1.86.26 1.64.49 2.38l-.02-.08.12.37c.7-2.15 2.73-4.39 7.12-2.74 2.6.96 7.12 1.28 8.2-2.61.23-.95.37-2.06.41-3.19v-.03c-1.06 4.5-5.1 5.68-8.81 4.35z"/>
|
|
15
|
-
</svg>
|
|
16
|
-
SVG
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
def title
|
|
20
|
-
key = "blacklight.icon.#{name}"
|
|
21
|
-
t(key)
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class MassgisComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 28">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M15 0l15 6v2h-2c0 .55-.48 1-1.08 1H3.08C2.48 9 2 8.55 2 8H0V6zM4 10h4v12h2V10h4v12h2V10h4v12h2V10h4v12h.92c.6 0 1.08.45 1.08 1v1H2v-1c0-.55.48-1 1.08-1H4V10zm24.92 15c.6 0 1.08.45 1.08 1v2H0v-2c0-.55.48-1 1.08-1h27.84z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class MichiganStateUniversityComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<!-- Generated by IcoMoon.io -->
|
|
11
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="28" height="32" viewBox="0 0 28 32">
|
|
12
|
-
<title>#{title}</title>
|
|
13
|
-
<path fill="#6c757d" d="M25.92 2.2s-1.66 3.57-2.5 5.34c-4.15-1.9-9.57-2.17-14.13 0.53-3.040 1.85-5.49 5.16-5.74 8.7-0.080 2.37 0.94 4.95 0.6 7.32-0.065 1.331-0.412 2.568-0.983 3.67l0.023-0.050c-0.76 1.27-1.67 2.37-3.19 2.45 0.34-0.42 2.68-1.58 1.76-6.89-0.36-2.1-3.26-7.33-0.46-13.88 2.55-5.98 13.6-13.060 24.62-7.19z"></path>
|
|
14
|
-
<path fill="#6c757d" d="M13.25 12.69c0.784-0.272 1.688-0.429 2.628-0.429 0.686 0 1.352 0.084 1.989 0.241l-0.057-0.012c2.773 0.434 5.032 2.281 6.041 4.768l0.019 0.052c1.1 2.69 1.88 4.86 3.77 7.16 0.050 0.070-2.94-0.44-2.93-0.52 0.73-5.33-4.31-5.55-5.7-3.56 0.919 0.959 2.21 1.555 3.641 1.555 0.208 0 0.413-0.013 0.614-0.037l-0.024 0.002c-0.3 5.3 1.19 10.1 1.1 10.090-1.2-0.17-6.7-3.4-8.31-4.81-2.37 0.42-4.22 1.3-6.96 1.67-0.080 0.020 0.5-2.020 0.42-3.030 0-2.79-2.13-5.4-0.62-8.82 0.9-2.050 2.27-3.56 4.38-4.32zM15.23 11.080c0.16 0 0.4 0.040 0.41 0.020 0.050-0.18 0.2-1.5 1.32-2.46 1.25-1.080 2.9-0.97 2.88-0.98-1.64-0.5-3.33-0.54-4.5-0.43l-0.1 3.85zM4.8 15.89c-0.133 0.715-0.209 1.537-0.209 2.377 0 0.516 0.029 1.024 0.084 1.525l-0.006-0.062s0.24-1.35 1-2.1c0.68-0.67 1.53-0.8 1.84-0.8 0 0 0.15-0.51 0.13-0.51l-2.83-0.43zM7.98 15.6c0.080-0.22 0.18-0.4 0.3-0.65l-2.9-1.13c-0.19 0.37-0.33 0.91-0.4 1.2l3 0.57zM8.68 14.48s0.47-0.6 0.48-0.59l-2.67-2c-0.28 0.35-0.5 0.73-0.69 1.14l2.88 1.45zM9.68 13.39l0.59-0.54-2.31-2.63c-0.52 0.45-0.68 0.66-1 1.040l2.72 2.13zM10.88 12.48c0 0.030 0.66-0.37 0.67-0.4l-1.71-3.13c-0.66 0.32-1.080 0.66-1.27 0.8l2.3 2.73zM12.15 11.78l0.82-0.27-0.98-3.51c-0.54 0.16-1.28 0.47-1.45 0.59l1.61 3.2zM13.6 11.3c0.030 0.020 0.74-0.15 0.75-0.15l0.090-3.81c-0.030 0.030-0.88 0.16-1.61 0.36l0.77 3.6z"></path>
|
|
15
|
-
</svg>
|
|
16
|
-
SVG
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
def title
|
|
20
|
-
key = "blacklight.icon.#{name}"
|
|
21
|
-
t(key)
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class MitComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="none" stroke="#6c757d" stroke-width="6.75" d="M3.37 0v32M14.36 0v21.78M25.35 0v32"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class NorthwesternUniversityComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<!-- Generated by IcoMoon.io -->
|
|
11
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
|
12
|
-
<title>#{title}</title>
|
|
13
|
-
<path fill="#6c757d" d="M21.118 0.238v2.258l3.79 0.953 0.749 0.93v18.088l-18.984-22.468h-5.583v1.691l3.087 3.472v23.455l-4.176 1.169v1.974h11.972v-1.986l-3.711-0.987-0.76-0.942v-18.86l19.325 23.013h2.235v-28.437l4.199-1.271v-2.054z"></path>
|
|
14
|
-
</svg>
|
|
15
|
-
SVG
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def title
|
|
19
|
-
key = "blacklight.icon.#{name}"
|
|
20
|
-
t(key)
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class NyuComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M8.3 7.23c-1.8 1.94-2.64 8.9 5.08 8.9h.2c-4.79-2.65-4.16-6.6-2.29-9.39.21-.35-1.18-3.61-1.25-3.13-.14 1.4-1.46 3.06-1.73 3.62z"/>
|
|
13
|
-
<path fill="#6c757d" d="M14.84 15.98c-3.13-5.9 3.4-9.86 3.4-10.56 0-2.01-1.32-5.9-1.46-5.35-.48 1.8-2.99 4.45-3.47 5-4.45 4.87-3.34 8.76 1.53 10.91z"/>
|
|
14
|
-
<path fill="#6c757d" d="M15.53 15.98c.42-5.97 6.19-6.67 6.67-7.85.77-2.01-.83-5.7-.97-5.42-.55 1.46-1.74 2.78-1.74 2.78-4.8 3.62-5.7 6.6-3.96 10.36v.14z"/>
|
|
15
|
-
<path fill="#6c757d" d="M16.09 16.12c9.31.77 8.82-9.93 8.82-9.93-.55 1.39-1.73 2.08-1.8 2.22-1.18 1.53-5.91 1.67-6.95 7.57-.07 0-.07.14-.07.14zM11.85 16.89h6.32v1.88h-6.32v-1.88zM14.49 31.7c.07.27.7.48.9 0l1.53-12.17h-3.75l1.32 12.16z"/>
|
|
16
|
-
</svg>
|
|
17
|
-
SVG
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
def title
|
|
21
|
-
key = "blacklight.icon.#{name}"
|
|
22
|
-
t(key)
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
26
|
-
end
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class PennsylvaniaStateUniversityComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<!-- Generated by IcoMoon.io -->
|
|
11
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="32" viewBox="0 0 29 32">
|
|
12
|
-
<title>#{title}</title>
|
|
13
|
-
<path fill="#6c757d" d="M18.9 18.64c0-0.22 0.19-0.56 0.19-0.85 0-0.38-0.45-0.49-0.78-0.53-0.71-0.1-0.97-0.070-0.97-0.22 0-0.11 0.11-0.22 0.22-0.4 0.19-0.3 0.67-0.38 0.9-0.42 0.33-0.030 0.67-0.070 1.11-0.070 0.49 0 0.9 0.070 1.080 0.11 0.45 0.080 0.52 0.26 0.52 0.49v0.22c0 0.22-0.18 0.33-0.48 0.37-0.080 0-0.19 0.040-0.22 0.040-0.23 0.030-0.53 0.070-0.6 0.37-0.22 0.6-0.6 1.080-0.86 1.080-0.070-0.080-0.1-0.11-0.1-0.19zM19.54 8.82c-0.040 0-0.12-0.040-0.12-0.15s0.080-0.22 0.23-0.45c0.37-0.48 0.85-1.080 1.040-1.080 0.070 0 0.15 0.080 0.26 0.26 0.070 0.12 0.11 0.34 0.11 0.53 0 0.63-0.22 1.11-0.56 1.6-0.18-0.12-0.48-0.45-0.96-0.71zM8.88 10c0.15 0 0.3-0.11 0.52-0.37 0.56-0.6 1.080-0.71 1.080-0.97 0-0.11-0.070-0.22-0.15-0.34-0.6-0.93-0.85-1.4-1.19-2.080-0.1-0.22-0.3-0.4-0.4-0.4-0.2 0-0.41 0.21-0.56 0.44-0.19 0.3-0.34 0.6-0.34 0.9 0 0.44 0.11 1.26 0.3 1.78 0.19 0.56 0.48 1.040 0.74 1.040zM15.47 12.12c0-0.37-0.41-0.93-1.15-0.93-0.67 0-1.16 0.48-1.3 0.9 0.14 0.3 0.3 0.63 0.92 0.81 0.080 0.040 0.19 0.040 0.19 0.11 0 0.12-0.11 0.15-0.34 0.15-0.7 0-1.15-0.3-1.34-0.55-0.18 0.030-0.4 0.1-0.67 0.1-0.22 0-0.33-0.14-0.33-0.33 0-0.11 0.040-0.26 0.11-0.4 0.040-0.080 0.080-0.2 0.11-0.23 0.12-0.22 0.3-0.7 0.93-1.080l0.38-0.22c0.37-0.23 0.67-0.26 1.070-0.26h0.34c0.52 0 0.78 0.15 1.040 0.33 0.49 0.41 0.75 0.64 0.75 0.93 0 0.34 0 0.6-0.3 0.93-0.23 0.3-0.56 0.49-0.78 0.49-0.080 0-0.080-0.040-0.080-0.080s0.040-0.070 0.12-0.1c0.22-0.16 0.3-0.42 0.33-0.57zM18.67 22.32c-0.11 0.030-0.37 0.070-1.45 0.070-1.64 0-1.94-0.4-1.94-0.7 0-0.53 2.35-0.94 3.28-0.94 0.89 0 1.3 0.3 1.3 0.52s-0.41 0.82-1.2 1.050zM9.18 27.12c1.544 1.207 3.282 2.386 5.096 3.449l0.224 0.121c0-1.6-0.030-2.57 1.040-3.72 0.45-0.45 0.9-0.93 1.3-1.38 0.3-0.34 0.56-0.56 0.71-0.56 0.12 0 0.15 0.040 0.15 0.19s0.080 0.67 0.41 1.3c0.41 0.78 1 0.9 1.2 0.93 4.69-3.53 8.59-8.1 8.59-14.65v-9.56c-1.16-0.41-5.88-2.2-13.4-2.2s-12.23 1.83-13.39 2.2v9.56c-0 0.024-0 0.053-0 0.082 0 2.769 0.75 5.363 2.058 7.589l-0.038-0.070c0.1-1.35 1-1.98 1-3.28 0-0.9-0.26-1.5-0.26-2.24 0-1.37 1.86-4.2 2.83-5.35 0.040-0.040 0.070-0.12 0.19-0.12 0.070 0 0.1 0.040 0.14 0.12 0.12 0.15 0.15 0.22 0.26 0.22s0.15-0.070 0.15-0.15c0-0.22-0.26-0.63-0.26-2.2 0-1.070 0.26-1.33 0.93-2 0.12-0.12 0.52-0.49 0.86-0.49 0.4 0 0.6 0.23 0.86 0.49 0.4 0.4 1 1.19 1.11 1.3 0.040 0.040 0.040 0.070 0.11 0.070 0.19 0 0.38-0.070 1.2-0.070 1.52 0 3.83 0.22 5.020 0.63 0.6 0.19 0.74 0.34 0.89 0.34 0.070 0 0.070-0.040 0.070-0.12s-0.14-0.18-0.14-0.3c0-0.070 0.070-0.1 0.1-0.14 0.9-0.49 1.64-0.82 2.35-0.82 0.41 0 0.6 0.33 0.78 0.7 0.15 0.26 0.26 0.64 0.26 1.010 0 0.93-0.37 1.53-0.63 1.9 0.15 0.15 0.33 0.33 0.45 0.48 0.22 0.26 0.44 0.6 0.44 0.93 0 0.15-0.070 0.37-0.1 0.56 0 0.070-0.080 0.26-0.23 0.26-0.11 0-0.15-0.15-0.15-0.26v-0.11c0-0.26-0.070-0.64-0.34-0.9-0.3-0.3-0.55-0.52-0.89-0.52h-0.11c-0.56 0-0.78 0.23-0.93 0.38s-0.3 0.37-0.3 0.67c0.18 0.568 0.418 1.061 0.714 1.513l-0.014-0.023c0.12 0.18 0.27 0.25 0.42 0.25 0.37 0 0.7-0.030 0.7-0.18 0-0.040 0-0.080-0.070-0.080h-0.11c-0.49 0-0.78-0.63-1-1.22 0.18-0.19 0.4-0.38 0.77-0.38 0.49 0 0.82 0.34 0.82 0.79 0 0.22-0.070 0.4-0.1 0.48-0.050 0.040-0.050 0.070-0.050 0.070 0 0.080 0.080 0.080 0.23 0.12l0.18 0.030c0.15 0.040 0.3 0.19 0.38 0.34 0.030 0.11 0.14 0.37 0.14 0.44 0.080 0.26 0.23 0.6 0.23 1.050s-0.040 0.55-0.15 1-0.22 0.78-0.26 1.080c0.040 0.11 0.070 0.11 0.070 0.19 0.080 0.18 0.19 0.52 0.19 0.85v0.3c0 0.56-0.22 1-0.49 1.34-0.18 0.26-0.44 0.63-0.63 0.82-0.11 0.11-0.22 0.22-0.4 0.22-0.080 0-0.16-0.030-0.27-0.030-0.11-0.040-0.3-0.080-0.37-0.12-0.33-0.070-0.45-0.3-0.56-0.6l-0.070-0.21c-0.080-0.19-0.11-0.34-0.26-0.34-0.11 0-0.19 0.080-0.3 0.19-0.33 0.48-0.52 0.67-1.12 0.82-0.22 0.030-0.63 0.14-0.85 0.18-0.34 0.080-0.97 0.26-1.34 0.26h-0.22c-0.49-0.070-0.82-0.11-1.42-0.82-0.82-0.96-0.74-1.11-0.78-2.45 0-0.15-0.040-0.34-0.22-0.34-0.15 0-0.19 0.3-0.26 0.67-0.080 0.49-0.19 0.97-0.41 0.97-0.15 0-0.26-0.040-0.52-0.11-0.3-0.11-1.050-0.34-1.45-0.49-0.52-0.18-1.050-0.33-1.27-0.78-0.11-0.22-0.26-0.63-0.37-0.85-0.080-0.15-0.11-0.23-0.22-0.23-0.15 0-0.19 0.19-0.19 0.3 0 0.15-0.070 0.49-0.070 0.7-0.080 0.94-0.26 1.35-0.67 1.83-0.19 0.22-0.34 0.49-0.56 0.75-0.41 0.55-0.67 1.11-0.64 2.15v0.64c0.2 1.78 0.6 2.53 3.24 4.65z"></path>
|
|
14
|
-
<path fill="#6c757d" d="M21.66 13.25c0.030 0.1 0.14 0.37 0.14 0.44 0.080 0.26 0.23 0.6 0.23 1.050s-0.040 0.55-0.15 1-0.22 0.78-0.26 1.080c-0.040-0.080-0.86-1.49-0.9-1.6-0.070-0.11-0.1-0.22-0.1-0.37s0.070-0.23 0.22-0.34c0.1-0.070 0.22-0.15 0.33-0.18 0.41-0.23 0.52-0.49 0.52-0.75l-0.030-0.33zM18.12 15.45c0.040 0.1 0.070 0.22 0.070 0.33 0 0.22-0.030 0.26-0.14 0.4l-0.23 0.2c-0.1 0.070-0.22 0.14-0.3 0.22-0.14 0.18-0.22 0.3-0.22 0.4 0 0.040 0 0.080 0.040 0.080-0.15-0.11-0.22-0.3-0.22-0.45s0.030-0.22 0.030-0.37c0-0.11-0.030-0.22-0.030-0.3-0.23-0.74-0.6-1.64-0.82-2.23-0.23-0.64-0.41-0.97-0.71-0.97-0.15 0-0.3 0.070-0.45 0.070 0.23 0 0.56-0.18 0.78-0.48 0.26-0.33 0.3-0.6 0.3-0.93 0-0.15-0.070-0.26-0.18-0.4 0.33 0.33 0.55 0.77 0.78 1.26 0.52 1.11 0.93 2.27 1.3 3.16zM6.1 22.65v-0.63c0-1.050 0.23-1.6 0.64-2.16l0.55-0.75c0.41-0.52 0.6-0.89 0.67-1.82 0.040-0.22 0.080-0.56 0.080-0.7s0.030-0.3 0.18-0.3c0.12 0 0.15 0.070 0.23 0.22 0.070 0.22 0.26 0.63 0.37 0.86 0.22 0.48 0.7 0.63 1.26 0.78 0.41 0.1 1.16 0.37 1.45 0.48 0.26 0.070 0.38 0.11 0.53 0.11 0.22 0 0.33-0.48 0.4-0.96 0.040-0.41 0.12-0.67 0.26-0.67s0.19 0.18 0.23 0.33c0.030 1.34-0.040 1.45 0.78 2.46 0.6 0.7 0.93 0.74 1.41 0.82-0.18-0.040-0.4-0.26-0.4-0.71v-0.49c0-0.22 0.030-0.48 0.14-0.74 0.080-0.11 0.11-0.37 0.19-0.52 0.11-0.26 0.040-0.3 0.040-0.48s-0.080-0.38-0.2-0.79l-0.25-0.81c-0.3-0.82-0.41-1.050-1.41-1.16-0.34-0.030-1.72-0.22-2.010-0.3-1.12-0.14-2.010-0.22-2.46-0.96-0.56-0.9-0.48-1.97-1-1.97-0.26 0-0.38 0.26-0.38 0.67s0.15 1.11 0.15 2.3c0 1.040-0.11 1.34-0.7 2.090l-0.53 0.67c-0.44 0.55-0.63 0.89-0.63 1.52 0 1.71 0.3 2.98 0.41 3.61zM17.53 26.67c0.030-0.41 0.22-1.12 0.22-1.38 0-0.15-0.040-0.18-0.15-0.18-0.15 0-0.4 0.22-0.7 0.55-0.42 0.41-0.86 0.9-1.3 1.38-1.090 1.15-1.050 2.080-1.050 3.72 1.23-0.74 2.3-1.45 3.12-2-0.1-0.71-0.22-1.2-0.14-2.1z"></path>
|
|
15
|
-
</svg>
|
|
16
|
-
SVG
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
def title
|
|
20
|
-
key = "blacklight.icon.#{name}"
|
|
21
|
-
t(key)
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class PrincetonComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M14.77 31.35a31.91 31.91 0 0 1-7.18-5.08A24.08 24.08 0 0 1 .13 11.83c-.17-1.25-.1-6.7.1-7.43l.08-.32.98.34c1.93.68 4.47.9 6.35.58A13.33 13.33 0 0 0 15 .85c.43-.47.83-.85.9-.85s.25.18.44.4c.64.76 2.01 1.99 2.87 2.57a12.16 12.16 0 0 0 8.23 2.11c1.22-.13 3.3-.64 3.65-.9.14-.1.25-.12.3-.05.43.5.54 5.98.17 8.3-1.09 6.82-4.83 12.5-11.07 16.81-1.8 1.25-4.15 2.55-4.6 2.55-.14 0-.65-.2-1.12-.44zm2.08-.22a32.7 32.7 0 0 0 6.22-4.21l.91-.8-8.1-5.83-8.07 5.81.69.64a37.31 37.31 0 0 0 5.74 4.03c.83.44 1.57.8 1.63.8s.5-.2.98-.44zM10.1 17.56l5.77-4.16 5.8 4.19c3.64 2.61 5.86 4.14 5.95 4.07.23-.17 1.13-1.74 1.68-2.92.8-1.7 1.3-3.23 1.8-5.47l.08-.34H15.88c-14.52 0-15.31 0-15.25.18a28.04 28.04 0 0 0 1.58 5.07c.71 1.6 1.81 3.54 2 3.54.07 0 2.72-1.87 5.9-4.16z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class PurdueUniversityComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<!-- Generated by IcoMoon.io -->
|
|
11
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="58" height="32" viewBox="0 0 58 32">
|
|
12
|
-
<title>#{title}</title>
|
|
13
|
-
<path fill="#6c757d" d="M13.66 0c-1.9 4.4-3.76 8.83-5.65 13.24h5.98l-2.35 5.52h-5.98c-1.9 4.39-3.76 8.84-5.66 13.24h31.96c1.27-2.93 2.5-5.87 3.76-8.8 5.2-0.070 10.8 0.52 15.4-2.39 3.97-2.5 6.1-7.060 7.17-11.47 0.116-0.484 0.182-1.040 0.182-1.611 0-3.111-1.971-5.762-4.732-6.773l-0.050-0.016c-3.99-1.43-8.26-0.8-12.39-0.94h-27.64zM49.95 0.43c1.080-0.15 5.48 1.42 2.65 0.49-0.87-0.25-1.76-0.4-2.65-0.5zM14.080 0.63c11.63 0.040 23.25-0.030 34.88 0.050 3.39 0.070 7.44 1.35 8.55 4.94 1.040 3.72-1 7.4-2.71 10.57-2.47 4.31-7.51 6.27-12.28 6.35-2.4 0.060-4.81 0.010-7.22 0.030-1.27 2.93-2.5 5.87-3.76 8.8h-30.56l5.1-11.97h5.99c0.96-2.26 1.92-4.53 2.9-6.78h-6l5.1-11.98z"></path>
|
|
14
|
-
<path fill="#6c757d" d="M38.8 14.3h-10.7l2.2-5.18c3.79 0.030 7.58-0.060 11.36 0.040 2.9 0.47 1.070 4.22-0.88 4.74-0.578 0.253-1.252 0.4-1.96 0.4-0.007 0-0.014 0-0.021-0h0.001zM46.66 4.34h-31l-2.030 4.78h5.98l-5.95 13.98h-6l-2.030 4.77h22.75l2.040-4.77h-6.080l1.72-4.040c5.5-0.050 11 0.1 16.48-0.090 3.53-0.19 7.17-1.84 8.77-5.15 0.99-2.18 2.48-4.52 1.98-7-0.98-2.5-4.4-2.38-6.63-2.48z"></path>
|
|
15
|
-
</svg>
|
|
16
|
-
SVG
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
def title
|
|
20
|
-
key = "blacklight.icon.#{name}"
|
|
21
|
-
t(key)
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class RutgersComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 246.005 217.375">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="m223.76,176.25l-39.62-60.16c28.72-11.67,43.32-29.88,43.32-54.14,0-17.61-6.99-31.95-21.43-43.84C191.2,6.08,171.06,0,146.13,0H0v41.14h16.35v135.11H0v41.13h107.09v-41.13h-16.9v-51.74h25.93l32.59,51.74h-17.74v41.13h115.03v-41.13h-22.24Zm16.57,35.45h-103.71v-29.8h22.29l-39.71-63.09h-34.71v63.09h16.94v29.8H5.67v-29.8h16.35V35.47H5.67V5.61h140.43c23.59,0,42.54,5.66,56.32,16.84,13.01,10.72,19.33,23.62,19.33,39.44,0,22.86-13.98,39.25-42.73,50.08l-3.47,1.3,45.17,68.63h19.61v29.8Z"/>
|
|
13
|
-
<path fill="#6c757d" d="m220.72,181.9l-45.17-68.63,3.47-1.3c28.75-10.83,42.73-27.22,42.73-50.08,0-15.82-6.32-28.72-19.33-39.44-13.78-11.18-32.73-16.84-56.32-16.84H5.67v29.86h16.35v146.43H5.67v29.8h95.76v-29.8h-16.94v-63.09h34.71l39.71,63.09h-22.29v29.8h103.71v-29.8h-19.61Zm-72.53-100.13l-.07.06c-7.4,5.78-18.3,8.71-32.43,8.71h-31.2v-55.07h38.5c12.04,0,21.34,3.36,27.68,9.94,2.28,2.24,4.09,4.93,5.29,7.9,1.21,2.97,1.79,6.16,1.71,9.36-.01,7.39-3.2,13.82-9.48,19.1Z"/>
|
|
14
|
-
<path fill="#6c757d" d="m155.96,53.31c-1.2-2.97-3.01-5.66-5.29-7.9-6.34-6.58-15.64-9.94-27.68-9.94h-38.5v55.07h31.2c14.13,0,25.03-2.93,32.43-8.71l.07-.06c6.28-5.28,9.47-11.71,9.48-19.1.08-3.2-.5-6.39-1.71-9.36Zm-11.32,24.07c-6.36,4.98-16.09,7.51-28.87,7.51h-25.58v-43.75h32.8c10.39,0,18.35,2.77,23.63,8.22l.08.08c1.76,1.72,3.13,3.79,4.05,6.06.91,2.28,1.35,4.73,1.27,7.18-.03,5.68-2.44,10.48-7.38,14.7Z"/>
|
|
15
|
-
</svg>
|
|
16
|
-
SVG
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
def title
|
|
20
|
-
key = "blacklight.icon.#{name}"
|
|
21
|
-
t(key)
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class SmsComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 28">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M7.25 22a1.25 1.25 0 0 0-2.5 0 1.25 1.25 0 0 0 2.5 0zm3.25-2.5v-11c0-.27-.23-.5-.5-.5H2c-.27 0-.5.23-.5.5v11c0 .27.23.5.5.5h8c.27 0 .5-.23.5-.5zm-3-13.25c0-.14-.1-.25-.25-.25h-2.5c-.14 0-.25.1-.25.25s.1.25.25.25h2.5c.14 0 .25-.1.25-.25zM12 6v16c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class StanfordComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M5.77 5.01L10.2.6h11.7l4.32 4.42v6.25h-7.72V8.33h-4.68v4.23h8.47l3.93 3.8v11.5l-3.86 3.85H9.65l-3.88-3.9V21.6h8.34v2.57h4.75v-3.94H9.63l-3.86-3.86V5zm.5.23v10.93l3.56 3.56h9.53v4.97h-5.78v-2.57h-7.3v5.48l3.57 3.6h12.3l3.55-3.55V16.59l-3.64-3.5H13.3V7.85H19v2.91h6.7v-5.5l-4.03-4.13H10.4zm4.34-3.57h10.87l3.71 3.83v4.78h-5.66V7.36h-6.75v6.29h9.07l3.34 3.19v10.64l-3.25 3.26H10.06l-3.27-3.31v-4.75h6.28v2.57h6.8v-6h-9.83l-3.26-3.26V5.5z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class TexasComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M26.32 14.13v-5.5h-4.75V6.3h1.67V2.5H16.3v3.8h1.74v2.31H11.3V6.31h1.74V2.5H6.1v3.8h1.67v2.31H3v5.5h3.55v-1.64h1.2v3.02c0 6.48 4.95 7.7 4.95 7.7v2.77h-1.4v3.52h6.72v-3.52h-1.4v-2.78s4.94-1.22 4.94-7.7v-3.02h1.2v1.65h3.55zm-13.61 5.23s-1.4-.82-1.4-2.34v-4.55h1.4v6.89zm5.32-2.34c0 1.52-1.4 2.34-1.4 2.34v-6.88h1.4v4.54z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class TheOhioStateUniversityComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<!-- Generated by IcoMoon.io -->
|
|
11
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="32" viewBox="0 0 24 32">
|
|
12
|
-
<title>#{title}</title>
|
|
13
|
-
<path fill="#6c757d" d="M2.98 2.98l-2.98 2.98v20.040l5.92 6h12.54l5.97-5.96v-20.060l-5.93-5.98h-12.54l-2.98 2.98zM21.040 3.43l2.86 2.86v19.42l-5.73 5.68h-11.92l-5.68-5.69v-19.46l5.7-5.67h11.9l2.87 2.86z"></path>
|
|
14
|
-
<path fill="#6c757d" d="M3.85 4.020l-2.62 2.64v18.76l5.27 5.28h11.44l5.24-5.24v-18.85l-5.24-5.23h-11.44l-2.64 2.64zM16.68 7.91l1.070 1.070v14.12l-2.14 2.14h-6.84l-2.090-2.15v-14.15l2.1-2.1h6.84l1.060 1.070z"></path>
|
|
15
|
-
<path fill="#6c757d" d="M8.3 8.46l-0.85 0.84v13.48l1.65 1.65h6.23l1.6-1.61v-13.52l-1.68-1.69h-6.11l-0.85 0.85zM15.7 8.88l0.67 0.67v12.98l-1.33 1.33h-5.64l-1.33-1.33v-12.98l1.33-1.33h5.65l0.66 0.66z"></path>
|
|
16
|
-
</svg>
|
|
17
|
-
SVG
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
def title
|
|
21
|
-
key = "blacklight.icon.#{name}"
|
|
22
|
-
t(key)
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
26
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class TuftsComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M4.58 5.12h5.96v22.4H5.62V32h17.31v-4.49h-4.91V5.15h6.1v7.28h4.5V0H0v12.43h4.58z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class UclaComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M2.98 22.26c-.08-1.12 0-2.7 0-3.48L4.62 0h6.15L9.04 18.93c-.36 4.13 1.26 7.02 5.34 7.02 4.16 0 6.42-2.94 6.78-6.6L22.9 0h6.15l-1.71 19.1C26.7 26.5 21.8 32 13.94 32 7.78 32 3.8 28.01 2.98 22.27z"/>
|
|
13
|
-
</svg>
|
|
14
|
-
SVG
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
def title
|
|
18
|
-
key = "blacklight.icon.#{name}"
|
|
19
|
-
t(key)
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class UniversityOfCaliforniaBerkeleyComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M16.07.13c0-.22 0-.22-.82-.22-.31 0-.59.03-1.2.03-.71 0-1.6-.03-2.01-.03-.82 0-.84 0-.84.22s.44.42 1.23.42c.61 0 .98.17.98 8.3 0 3.45-.3 4.13-1.8 5-.93.54-1.83.56-2.82.56-3.78 0-4.35-2.31-4.35-4.25v-8.7c0-.74.03-.96.86-.96s.94-.05.94-.3-.15-.34-.37-.34L2.62-.1C1.47-.11 1.02-.14.5-.14c-.37 0-.54.08-.54.3 0 .3.1.34 1.22.34.7 0 .82.71.82 1.5v7.72c0 4.22 2.38 5.43 6.04 5.43 1.87 0 3.12-.25 4.1-.84 1.43-.86 2.02-1.82 2.02-5.43 0-3.12.02-4.89.02-6.14 0-2.14.35-2.19 1.16-2.19.74 0 .74-.2.74-.42zM28.43 21.22c0-.13-.3-.57-.47-.94-.12-.24-.14-.51-.22-.51-.17 0-.32.51-.39.83-.12.61-1.8 2.36-4.74 2.36-4 0-6.4-2.78-6.4-6.73 0-4.45 2.4-7.4 6.67-7.4 2.6 0 4.32.84 4.47 1.62.05.2.1.45.27.45.1 0 .24-.08.24-.2 0-1.06.15-1.6.15-1.92 0-.12-.24-.27-.32-.27-.37 0-1.52-.37-3.49-.37-6.88 0-10.49 3.44-10.49 8.36 0 4.94 3.1 7.15 7.52 7.15 4.94 0 7.2-2.21 7.2-2.43z"/>
|
|
13
|
-
<path fill="#6c757d" d="M40.5 28c0-2.3-1.5-2.92-2.66-3.51-.5-.25-.94-.35-.94-.42s.35-.2.86-.54c.6-.4 2.02-1.28 2.02-3.32 0-1.45-.94-3.39-4.13-3.39-2.21 0-4.6.15-5.11.15-.86 0-1.62-.03-2.38-.03-.42 0-.5.05-.5.3s.08.3 1.2.3c.7 0 1.09.21 1.09 2.15v11.18c0 .37-.05.42-1.16.42-.54 0-.68.03-.68.35 0 .24.17.27.41.27.8 0 1.33-.1 2.36-.1 1.08 0 3.32.24 4.35.24 3.05 0 5.26-1.3 5.26-4.05zm-3.18-7c0 2.09-.64 2.46-1.35 3 0 0-1.03-.27-2.65-.27-.74 0-.91-.03-.91-.35v-5.23c0-.5.02-.71 1.64-.71 2.34 0 3.27 2.33 3.27 3.56zm.42 7.2c0 2.14-1.03 3.3-3.24 3.3-.7 0-1.53-.1-1.8-.4-.22-.25-.3-1.55-.3-1.77v-4.4c0-.54.33-.64.9-.64 2.67 0 4.44 1.65 4.44 3.9z"/>
|
|
14
|
-
</svg>
|
|
15
|
-
SVG
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def title
|
|
19
|
-
key = "blacklight.icon.#{name}"
|
|
20
|
-
t(key)
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|