Assets and Features
Which Assets (< v9.0) have been moved into Features (9.0+)? Here is a list of the Bedrock Features and the Javascript and CSS files contained within each. Contents of bedrock/assets/
:
accordions
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/accordions
├── js
│ └── frontend.js
└── scss
├── frontend
│ └── _frontend.scss
└── frontend.scss
account
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/account
├── js
│ ├── frontend
│ │ └── components
│ │ └── Avatar
│ │ ├── Avatar.js
│ │ ├── Avatar.scss
│ │ ├── Avatar.vue
│ │ ├── Cropper.js
│ │ ├── Cropper.scss
│ │ └── Cropper.vue
│ └── frontend.js
└── scss
├── frontend
│ ├── _frontend.scss
│ └── sidebar
│ └── _navigation.scss
└── frontend.scss
basics
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/basics
└── scss
├── frontend
│ ├── _feature.scss
│ └── _frontend.scss
└── frontend.scss
bedrock
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/bedrock
├── js
│ ├── frontend
│ │ ├── async-thumbnail-builder.js
│ │ └── locations
│ │ ├── country-data-link.js
│ │ └── country-stateprovince-link.js
│ └── frontend.js
└── scss
├── _frontend.scss
├── mixins
│ └── _line-height-crop.scss
├── _mixins.scss
├── _pagination.scss
├── _theme-context-root.scss
├── _theme-grid.scss
├── utilities
│ ├── _spacing.scss
│ └── _z-index.scss
└── _utilities.scss
boards
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/boards
├── js
│ ├── backend.js
│ └── frontend.js
└── scss
├── frontend
│ └── _frontend.scss
└── frontend.scss
calendar
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/calendar
├── js
│ ├── backend
│ │ ├── admin.js
│ │ ├── duration.js
│ │ └── menu.js
│ ├── backend.js
│ ├── frontend
│ │ └── event-list.js
│ ├── frontend.js
│ └── vendor
│ └── fullcalendar.js
└── scss
├── frontend
│ ├── calendar
│ │ └── _calendar.scss
│ ├── event-list
│ │ └── _event-list.scss
│ └── _frontend.scss
└── frontend.scss
ckeditor
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/ckeditor
├── js
│ ├── concrete
│ │ ├── concreteinline
│ │ │ ├── icons
│ │ │ │ └── cancel.png
│ │ │ └── register.js
│ │ ├── concretestyles
│ │ │ ├── icons
│ │ │ │ └── snippet.png
│ │ │ └── register.js
│ │ ├── file-manager.js
│ │ ├── inline.js
│ │ ├── link.js
│ │ ├── normalizeonchange.js
│ │ ├── styles.js
│ │ └── upload-image.js
│ └── concrete.js
└── scss
├── concrete.scss
└── plugins
└── _inline.scss
cms
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/cms
├── components
│ ├── BoardInstanceRuleList.vue
│ ├── BoardInstanceRule.vue
│ ├── BoardSlot.vue
│ ├── Board.vue
│ ├── Breadcrumb.vue
│ ├── CompletedProcessList.vue
│ ├── customizer
│ │ ├── block
│ │ │ ├── ToolbarSectionWidget.vue
│ │ │ └── ToolbarSliderWidget.vue
│ │ ├── ColorPageCustomizerWidget.vue
│ │ ├── flyout
│ │ │ └── FlyoutMenu.vue
│ │ ├── FontFamilyPageCustomizerWidget.vue
│ │ ├── FontStylePageCustomizerWidget.vue
│ │ ├── FontWeightPageCustomizerWidget.vue
│ │ ├── ImagePageCustomizerWidget.vue
│ │ ├── SizePageCustomizerWidget.vue
│ │ ├── TextDecorationPageCustomizerWidget.vue
│ │ ├── TextTransformPageCustomizerWidget.vue
│ │ ├── ThemeCustomizerPreview.vue
│ │ ├── ThemeCustomizer.vue
│ │ └── TypePageCustomizerWidget.vue
│ ├── express
│ │ └── Selector.vue
│ ├── file-manager
│ │ ├── Chooser
│ │ │ ├── ExternalFileProvider.vue
│ │ │ ├── FileManager.vue
│ │ │ ├── FileSets.vue
│ │ │ ├── Files.vue
│ │ │ ├── FileUpload.vue
│ │ │ ├── FolderBookmark.vue
│ │ │ ├── Header.vue
│ │ │ ├── RecentUploads.vue
│ │ │ ├── SavedSearch.vue
│ │ │ └── Search.vue
│ │ ├── Chooser.vue
│ │ ├── Uploader
│ │ │ └── UploadFromComputer.vue
│ │ └── Uploader.vue
│ ├── fontawesome-iconlist.js
│ ├── form
│ │ ├── ConcreteEventOccurrenceInput.vue
│ │ ├── ConcreteExpressEntryInput.vue
│ │ ├── ConcreteFileDirectoryInput.vue
│ │ ├── ConcreteFileInput.vue
│ │ ├── ConcretePageInput.vue
│ │ ├── ConcreteThemeColorInput.vue
│ │ ├── ConcreteUserInput.vue
│ │ ├── IconSelector.vue
│ │ ├── PasswordInput.vue
│ │ └── Toggle.vue
│ ├── gallery
│ │ ├── GalleryEdit.vue
│ │ ├── ImageCell.vue
│ │ └── ImageDetail.vue
│ ├── groups
│ │ └── Chooser.vue
│ ├── IconButton.vue
│ ├── iconlist.js
│ ├── Icon.vue
│ ├── index.js
│ ├── menu
│ │ ├── ContextMenu.vue
│ │ ├── MenuButton.vue
│ │ ├── MenuDivider.vue
│ │ └── MenuItem.vue
│ ├── page
│ │ ├── Chooser
│ │ │ └── ChooserSearch.vue
│ │ └── PageList.vue
│ ├── Pagination.vue
│ ├── RunningProcessList.vue
│ └── user
│ ├── Chooser
│ │ ├── Search.vue
│ │ └── Users.vue
│ └── Chooser.vue
├── js
│ ├── ajax-request
│ │ ├── base.js
│ │ ├── block.js
│ │ └── form.js
│ ├── alert.js
│ ├── asset-loader.js
│ ├── base.js
│ ├── calendar
│ │ └── event-selector.js
│ ├── calendar.js
│ ├── concrete.js
│ ├── edit-mode
│ │ ├── area.js
│ │ ├── block.js
│ │ ├── blocktype.js
│ │ ├── composer
│ │ │ └── save-coordinator.js
│ │ ├── containerblock.js
│ │ ├── container.js
│ │ ├── dragarea.js
│ │ ├── duplicateblock.js
│ │ ├── editmode.js
│ │ ├── heartbeat.js
│ │ ├── layout.js
│ │ ├── layouts.js
│ │ ├── orphanedblock.js
│ │ ├── stackblock.js
│ │ ├── stackdisplay.js
│ │ ├── stack.js
│ │ └── style-customizer
│ │ ├── color.js
│ │ ├── custom.js
│ │ ├── image.js
│ │ ├── inline-toolbar.js
│ │ ├── palette.js
│ │ ├── size.js
│ │ ├── style-customizer.js
│ │ └── typography.js
│ ├── edit-mode.js
│ ├── events.js
│ ├── express
│ │ ├── search.js
│ │ └── selector.js
│ ├── express.js
│ ├── file-manager
│ │ ├── file-manager.js
│ │ └── uploader.js
│ ├── help
│ │ ├── guide-manager.js
│ │ ├── guides
│ │ │ ├── add-content-edit-mode.js
│ │ │ ├── add-content.js
│ │ │ ├── add-page.js
│ │ │ ├── change-content-edit-mode.js
│ │ │ ├── change-content.js
│ │ │ ├── dashboard.js
│ │ │ ├── location-panel.js
│ │ │ ├── personalize.js
│ │ │ └── toolbar.js
│ │ └── help.js
│ ├── in-context-menu.js
│ ├── jquery-awesome-rating.js
│ ├── jquery.pep.js
│ ├── legacy-dialog.js
│ ├── liveupdate
│ │ ├── jquery-liveupdate.js
│ │ └── quicksilver.js
│ ├── modifiable-ajax-bootstrap-select.js
│ ├── modifiable-bootstrap-select.js
│ ├── page-indexer.js
│ ├── page-notification.js
│ ├── panels.js
│ ├── pnotify.js
│ ├── processes.js
│ ├── progressive-operations.js
│ ├── queue-consumer.js
│ ├── search
│ │ ├── base.js
│ │ ├── field-selector.js
│ │ └── table.js
│ ├── sitemap
│ │ ├── menu.js
│ │ ├── search.js
│ │ ├── selector.js
│ │ ├── sitemap.js
│ │ └── sitemap-selector.js
│ ├── toolbar.js
│ ├── tree.js
│ ├── users
│ │ └── user-manager.js
│ ├── users.js
│ └── vue
│ └── Manager.js
└── scss
├── animations
│ ├── _legacy.scss
│ └── _table-row-highlight.scss
├── _animations.scss
├── _base.scss
├── _boards.scss
├── bootstrap
│ ├── _reboot.scss
│ ├── _reboot-tags.scss
│ └── _root-modified.scss
├── _breadcrumb.scss
├── _buttons.scss
├── _color-picker.scss
├── _date-time.scss
├── dialogs
│ ├── _summary-templates.scss
│ └── _workflow-approve_page_preview.scss
├── _dialog.scss
├── _dialogs.scss
├── _dropdown.scss
├── file-manager
│ ├── _file-chooser.scss
│ └── _image-cell.scss
├── _file-manager.scss
├── _file-uploader.scss
├── _forms.scss
├── _help.scss
├── _hud.scss
├── _icons.scss
├── _inline-toolbar.scss
├── _intelligent-search.scss
├── _item-select-list.scss
├── _item-selector.scss
├── jquery-ui
│ ├── _overrides.scss
│ └── _theme.scss
├── _layouts.scss
├── _list-group.scss
├── _login-page.scss
├── mixins
│ └── _item-select-list-hover.scss
├── _nav.scss
├── _nprogress.scss
├── _page-areas.scss
├── _pagination.scss
├── panels
│ ├── add
│ │ ├── _blocks.scss
│ │ └── _stack.scss
│ ├── _dashboard.scss
│ ├── _help.scss
│ ├── _page-relations.scss
│ ├── pages
│ │ ├── _attributes.scss
│ │ ├── _check-in.scss
│ │ ├── _design.scss
│ │ ├── details
│ │ │ ├── _clipboard.scss
│ │ │ ├── _composer.scss
│ │ │ └── _location.scss
│ │ ├── _mobile-preview.scss
│ │ ├── _seo.scss
│ │ ├── _versions.scss
│ │ └── _view-as-user.scss
│ ├── _shared.scss
│ └── _sitemap.scss
├── _panels.scss
├── _permission-grid.scss
├── _popover.scss
├── _search.scss
├── _selectize.scss
├── _sitemap.scss
├── _style-customizer.scss
├── _tables.scss
├── _tabs.scss
├── _tasks.scss
├── _toolbar.scss
├── _tooltips.scss
├── _transitions.scss
├── _type.scss
├── utilities
│ ├── _loaders.scss
│ └── _sizing.scss
├── _utilities.scss
├── _variables.scss
└── _vue.scss
conversations
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/conversations
├── js
│ ├── frontend
│ │ ├── attachments.js
│ │ └── conversations.js
│ └── frontend.js
└── scss
├── frontend
│ └── _frontend.scss
└── frontend.scss
desktop
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/desktop
├── js
│ ├── frontend
│ │ ├── draft-list.js
│ │ └── notification.js
│ └── frontend.js
└── scss
├── frontend
│ ├── _frontend.scss
│ └── _waiting-for-me.scss
└── frontend.scss
documents
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/documents
├── js
│ ├── frontend
│ │ └── document-library.js
│ └── frontend.js
└── scss
├── frontend
│ ├── _document-library.scss
│ └── _frontend.scss
└── frontend.scss
express
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/express
├── js
│ ├── frontend
│ │ └── express-entry-list.js
│ └── frontend.js
└── scss
├── frontend
│ ├── _express-entry-list.scss
│ └── _frontend.scss
└── frontend.scss
faq
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/faq
└── scss
├── frontend
│ ├── faq
│ │ └── _faq.scss
│ └── _frontend.scss
└── frontend.scss
icons
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/icons
└── sprites.svg
imagery
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/imagery
├── js
│ ├── frontend
│ │ ├── gallery.js
│ │ ├── lightbox.js
│ │ └── responsive-slides.js
│ └── frontend.js
└── scss
├── frontend
│ ├── _frontend.scss
│ ├── gallery
│ │ └── _gallery.scss
│ ├── _hero-image.scss
│ ├── image-slider
│ │ └── _image-slider.scss
│ ├── lightbox
│ │ ├── _effects.scss
│ │ ├── _lightbox.scss
│ │ ├── _magnific-popup.scss
│ │ └── _variables.scss
│ └── _responsive-slides.scss
└── frontend.scss
maps
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/maps
├── js
│ ├── frontend
│ │ └── google-map.js
│ └── frontend.js
└── scss
├── frontend
│ ├── _frontend.scss
│ └── _google-map.scss
└── frontend.scss
multilingual
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/multilingual
├── js
│ ├── frontend
│ │ └── switch-language-block.js
│ └── frontend.js
└── scss
├── frontend
│ ├── _frontend.scss
│ └── _switch-language-flags.scss
└── frontend.scss
navigation
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/navigation
├── js
│ ├── frontend
│ │ └── top-navigation-bar.js
│ └── frontend.js
└── scss
├── frontend
│ ├── _date-navigation.scss
│ ├── _frontend.scss
│ ├── _page-list.scss
│ ├── _responsive-navigation.scss
│ ├── _rss-displayer.scss
│ └── _top-navigation-bar.scss
└── frontend.scss
polls
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/polls
└── scss
├── frontend
│ ├── _frontend.scss
│ └── _survey.scss
└── frontend.scss
profile
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/profile
└── scss
├── frontend
│ ├── _directory.scss
│ ├── _frontend.scss
│ └── _profile.scss
└── frontend.scss
search
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/search
└── scss
├── frontend
│ ├── _frontend.scss
│ ├── _search-block.scss
│ └── _search-block-tag-cloud.scss
└── frontend.scss
social
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/social
└── scss
├── frontend
│ ├── _frontend.scss
│ ├── _share-this-page.scss
│ └── _social-links.scss
└── frontend.scss
taxonomy
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/taxonomy
└── scss
├── frontend
│ ├── _frontend.scss
│ ├── _tags.scss
│ └── _topic_list.scss
└── frontend.scss
testimonials
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/testimonials
└── scss
├── frontend
│ ├── _frontend.scss
│ └── _testimonial.scss
└── frontend.scss
video
View files on GitHub: https://github.com/concretecms/bedrock/tree/master/assets/video
└── scss
├── frontend
│ ├── _frontend.scss
│ └── _youtube.scss
└── frontend.scss