JB Nizet

Results 111 comments of JB Nizet

Hello. I've been asked for such a feature already (See #39). But I feel it's out of the scope of DbSetup: it would be quite a complex task, and I'm...

Firebase Cloud Storage is basically the same as Google Cloud Storage, and there is no such thing as a directory in Google Cloud Storage. See https://cloud.google.com/storage/docs/objects and https://cloud.google.com/storage/docs/naming-objects for details.

That code deletes all the objects under a prefix. It's not the same as trying to delete a folder, because folders don't exist.

No, because there is no such thing as a folder on cloud storage. You can't delete something that doesn't exist.

Without even talking about release dates, what's the plan for Bootstrap 5 and Bootstrap 4 support? - as soon as a version of ng-bootstrap comes out which depends on Bootstrap...

@apyr-behnam SCSS variables are used at build time to customize the generated CSS. This Bootstrap CSS is unique, so it can't vary between components. And the Bootstrap variables must be...

Oops, sorry for that. I've edited the description to change the stackblitz URL. In the meantime, I've realized that NgbModal is not provided in root, and that each lazy module...

This looks to me like an Angular issue, not an ng-bootstrap issue. We can't change the bootstrap css, and we can't change the way Angular extracts rules to index.html.

The example in the documentation uses ViewEncapsulation.NONE. Yours doesn't. If you want to keep the default encapsulation, you need to add `::ng-deep ` before all your CSS selectors.

@maritogaleano no. As I said, add `::ng-deep` **before** the css selectors: https://stackblitz.com/edit/angular-jmvsej?file=src%2Fapp%2Ftooltip-customclass.ts ```css ::ng-deep .my-custom-class .tooltip-inner { background-color: darkgreen; font-size: 125%; } ::ng-deep .my-custom-class.bs-tooltip-end .tooltip-arrow::before { border-right-color: darkgreen; } ::ng-deep...