Results 38 comments of anisabboud

Progress-bar tries to do: `track-color: color.adjust(mdc-theme-color.prop-value($color), $alpha: -0.75),` which produces error `var(--theme-primary-500) is not a color` (since CSS variables are not static colors). ```dart ./src/scss/styles.scss - Error: Module build failed...

If I temporarily replace the var(--theme-primary-500) with a static color such as #ff0000, the app compiles, but that breaks the dynamic theming feature, and a warning remains in the console....

Just to sum up, using a CSS variable for the 500 color in the color palette causes 1 error (in progress-bar) and ~28 warnings. Like @mpo-dev mentioned above, the **error**...

I encountered the same issue: When clicking the image button in the toolbar: - Quill `v1.3.7` would open the image upload/selection window, and insert the image into the editor in...

`v1.3.7` handlers: https://github.com/quilljs/quill/blob/0148738cb22d52808f35873adb620ca56b1ae061/themes/base.js#L117-L150 `v2.0.0` handlers: https://github.com/quilljs/quill/blob/3454595a2eda53f7990001ec4e0234285ad95f1d/packages/quill/src/themes/base.ts#L191-L219

Related pull request ("image selector fix"): https://github.com/quilljs/quill/pull/4120

Summarizing the fix suggested in https://github.com/quilljs/quill/pull/4120/files: #### Current code https://github.com/quilljs/quill/blob/3454595a2eda53f7990001ec4e0234285ad95f1d/packages/quill/src/core/quill.ts#L800-L815 #### Suggested fix by @medi6 https://github.com/quilljs/quill/pull/4120 1. Move `const modules ...` after the `if` 2. Replace each `modules` inside the...

Encountered the same issue with the latest Angular 17 with `::part` CSS selector (ng serve / ng build with ESBuild): **"Pseudo-elements are not supported by css-select"** #### `.scss` ```scss math-field::part(content)...

I'm encountering the same issue on a new project with AngularFire + FirebaseUI (cannot Sign in with Email): 1. Sign up with some [email protected] ![image](https://github.com/firebase/firebaseui-web/assets/5672108/a1f0ffe3-e1ba-4ad2-8e56-a2c48a0669ae) 2. Check Firebase console -...

Tried downgrading from 6.1.0 to 6.0.0, but it didn't help. The culprit seems to be in `fetchSignInMethodsForEmail` used by FirebaseUI to determine whether to show Sign in / Create account...