Kirill Dabija

Results 13 comments of Kirill Dabija

Does anybody faced issue with "losing" ```Kind``` of ```DateTime``` object after serialization?? Before serialization had ```Utc``` kind, but after ```Unspecified```... ![serialization_comaprison](https://user-images.githubusercontent.com/15612158/123818201-740aed80-d901-11eb-8df5-3ca1c41eca89.PNG)

We used this notation in version 4.X to handle backing fields value: ```csharp [NotUndoable] private SomeType _originalObject; ``` It was helping to "save" field value between ```DataPortal``` operations. @rockfordlhotka, there...

I see, but we have to use such backing fields because they have links to required sources (objects). Have implemented something like this and it works: ```csharp protected override void...

Updated answer, methods was inside base class, but i think i will move them inside target classes to avoid reflection. Thx for tips, going to change classes in this direction.

Seems like because checking fails. In comparison of ```isPlatformBrowser(this._platformId)``` directive has ```_platformId``` as ```PlatformService``` from constructor. ![image](https://user-images.githubusercontent.com/15612158/120458530-05894d00-c3a0-11eb-9061-a68931e32a8b.png)

[This](https://github.com/ManuCutillas/ngx-responsive/pull/158) should fix, if will be merged ;)

I've tried version 6.0.1 and yes, seems like it is compiling. But scss bundle become too large if you want to import style just for few components, like +30 MB...

@Juveniel 6.0.3 fails to compile with Angular 15, imports starts with "~" throws error "Can't find stylesheet to import." :/

@joneff I'm so sorry, i just noticed that i was referencing old package from another project (working inside nx workspace), for some reason, package 6.0.3 was not installed... Yep, with...

Tried to import all styles, hoping that it will fix broken grid styles issue: ```@import "@progress/kendo-theme-material/scss/all";``` But got an error: ![image](https://user-images.githubusercontent.com/15612158/213217386-b6478689-cc9a-42c9-a237-0f1a046d81be.png)