Filip Holčík
Filip Holčík
Tried Storybook and alternatives, but nothing suited SvelteKit project structure, so I have deiced to build demo/docs page using @sveltejs/site-kit, which is pretty effective. TODO: - Add content (documentation, landing...
Hey, ## Current solution Customization of individual parts of lightbox is done by specifying desired props of particular elements by providing `` component with [`customization` object](https://github.com/Hejtmus/svelte-lightbox/blob/87e5225587d8a5afd3fb799fa067cd7038943bce/src/lib/Types.ts#L4). You are right that...
Yes, customization object has to be set individually to single instances of ``, which makes styling inconvenient. I like your proposed solution, although there are other options, but I think...
Hello @luukio, I saw you already implemented and documented customization classes. It looks good, can you please create PR?
Thank you @luukio for PR, I already published new minor version to npm.
Hello @ReflextionsDev, thanks for this issue. Can you please provide me with necessary code to replicate this behavior? Best regards, Filip.
Hey, thank you for reproduction and feedback, I will look at it as soon as is possible. Now I'm busy, but this should be quick fix, I guess it will...
## Example usage of separate navigation controller and navigation indicator: ``` import... let activeSection // Navigation indicator let navigationController // Navigation controller implemented as object of functions const goSomewhere =...
Programmatic navigation is done using writable store, subscribing gives current active section/slide info, and there is also `.goto(index: number)` method, which is used for scrolling to desired index (vertically or...
Hello, currently svelte-fullpage doesn't have programmatic navigation with navigation indicator. So for now I would use [intersection observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API). Next version of this lib will feature programmatic navigation with its indicator...