zedL

Results 10 comments of zedL

I used the 5Beta and it worked. Now I wanted to switch to the release version and run into this error. Unfortunately, I can no longer go back to the...

I got it to work with Angular 13. Here is what I did: Add a file for custom typings. `src/types/index.d.ts` Add following code to index.d.ts: ```typescript declare module 'photoswipe'; declare...

@inttyl in my x.component.scss file I added `@import "photoswipe/dist/photoswipe.css";`

@inttyl in angular.json => "styles": [ "node_modules/photoswipe/dist/photoswipe.css", "src/styles.scss" ]

Here is a full working example :) [ng-photoswipe.zip](https://github.com/dimsemenov/PhotoSwipe/files/8644884/ng-photoswipe.zip) `npm install` & `npm start`

Thanks to @PWKad on aurelias Gitter channel there is always a way aurelia can handle it. If I rewrite the url to: `/rooms-view?roomId[]=abc&visible[]=ture&roomId[]=def&visible[]=false` the things work like expected. Maybe you...

**Readable URL´s** After playing around with the array syntax and the routers navigateToRoute method I would like to point you to some behaviour. I want that my app can handle...