Wojciech

Results 8 comments of Wojciech

This is a fix. Since property can be anything. In the function you are checking type of the input. It cannot be boolean since it is unknown. From typescript documentation:...

> Shouldn't `!!obj` convert the `unknown` to a `boolean` and therefore fix the error? I would rather not change `unknown` to `any` as this just bypasses the Typescript checks. `as...

Just add `ng-package.json` and `public-api.ts` file into `component-a` folder. In root public-api file paste ``` export default void 0; ``` Should works as expected ;)

Same here. Starts failing after update to v12. Only on component testing

I can help with standalone components. Someone already takes this or no?

> Hey there, we stumbled upon the exact same issue of properties becoming required via some conditions. Whether that is directly in the "root" schema or in some nested anyOf|oneOf|allOf...

Until fixed you can go with ``` nz-carousel { ::ng-deep { .slick-list, .slick-track, .slick-slide { height: auto !important; } } } ``` Works fine for me