cheng93

Results 17 comments of cheng93

I think this is also true for `[MemberData]`

I see something similar when using tailwind. Changes applied to the component ts and html does not trigger anything. But after saving the scss file, it all builds fine. ```...

![image](https://github.com/help-me-mom/ng-mocks/assets/13205912/5b82cea4-bcab-4092-bbdf-64dcf552eabf) This looks to only affecting Angular 17, after the following API was introduced https://github.com/angular/angular/blob/17.0.8/packages/core/src/render3/deps_tracker/deps_tracker.ts

I believe collisions would only occur if the main library has a conflicting overload In this case JToken/Value/Object Or classname

I think the other repos could also be moved to `FluentAssertions` namespace. Note that this is only the extension class containing the `Should()` methods

I'm looking to start using it. I saw that it was defined in the types. https://github.com/datalust/seq-logging/blob/dev/index.d.ts#L11 So thought it was available. See https://github.com/datalust/winston-seq/discussions/18

workaround has worked for me ```ts import { SIGNAL } from "@angular/core/primitives/signals"; component.items[SIGNAL].applyValueToInputSignal(component.items[SIGNAL], items); ``` source https://github.com/angular/angular/blob/main/packages/core/src/render3/apply_value_input_field.ts#L11

This looks to be a breaking change. I can't find any mention of this in the changelogs `toolbarWidth` is now mandatory in order to use `kendoSchedulerToolbarTemplate` and `kendoSchedulerToolbarViewSelector`

@stnikolova https://stackblitz.com/edit/stackblitz-starters-m1mog7?file=src%2Fmain.ts In the demo above * @progress/[email protected] * the top scheduler does show day selector - has `toolbarWidth` * the bottom scheduler does not show day selector - **does...

In the `ToolbarViewSelectorComponent` You have two ngIfs which contain the following respective * `toolbarWidth responsesiveBreakpoint` which will evaluate to false when `toolbarWidth` is not supplied as it's `undefined`, thus the...