-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clearly document whether a component (or example) is dependent on other SCSS files #31733
Comments
Should we document this in the hosted docs, in the Sass files (comment at the top?), both, or something else? |
In docs certainly, and what about supress |
We'll get over to Dart Sass, but I'm not sure about the module system yet. That looked like it's be a bigger lift than we can take right now. |
👋 Hi, I logged this because I'm actually a technical writer with the Cloud Native Computing Foundation :) My suggestion for you, from a documentation/writing standpoint is to document it on each component's page: For example, for Navbar, I'd include a section called "Prerequisites" or "Dependencies", directly before or after "How it works" or after. Something like this: DependenciesIf you are importing Bootstrap modularly, you must import the following for Navbar to render correctly: (or smth along these lines)
How it works.... //etc |
WIP of doing something small in our Sass files to get started: #31744. As a bonus, as previous comments mentioned, getting this going will help us all out for that Dart Sass move if/when we migrate into the new module system. |
I have a similar but simpler request: list all of the files included in node_modules/bootstrap/scss/bootstrap on https://getbootstrap.com/docs/5.0/customize/sass/#importing ? I want to be able to use the functions and customize the styling. I tried just selecting the components I needed but I evidently missed some dependencies and had to go through the files in node_modules to grab more files until it worked. It would have been useful to have a list of everything. |
Clearly document whether a component is dependent on other Bootstrap SCSS files in Bootstrap 4.x.
Some components are dependent on other SCSS Bootstrap classes for full or partial functionality. Document these clearly for each component, so that new users to Bootstrap 4.x can use this clearly.
The documentation on on importing SCSS classes is thin, and making many of the examples on the documentation website work involves troubleshooting imports.
Example use case:
When using the Navbar component in Bootstrap 4.x, the documentation on importing SCSS classes is woefully thin. Based purely on the instruction to look at
bootstrap.scss
's import order, one might assume based on filename alone that you would only need to importnavbar
in your custom SCSS file like so:The reality is that the Navbar class depends on a minimum of the following:
In most use cases, it also requires the following:
To make the first example on the docs page work with a copy-and-paste, you also need the following:
The text was updated successfully, but these errors were encountered: