Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ks89/angular-modal-gallery

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ks89/angular-modal-gallery - npm Package Versions

1
7

7.2.6

Diff

Changelog

Source

7.2.6

Bugfixes

  • carousel in IE11 legacy mode shows wrong title on previous arrow (it's the same of next arrow, instead of previous). Fixed by @aslubsky with pull request #199.
ks89
published 8.0.0-beta.4 •

Changelog

Source

8.0.0-beta.4

Features

  • new modal-gallery CSS classes used to set the backdrop (BREAKING CHANGES)

    To upgrade from all previous 8.0.0 beta releases, change your global styles.scss from:

    .cdk-overlay-backdrop.cdk-overlay-backdrop-showing.dark-backdrop {
      background: #000;
      opacity: 0.85 !important;
    }
    
    .cdk-overlay-container {
      z-index: 90000 !important;
    }
    

    to :

    .ks-modal-gallery-backdrop {
      background: #000 !important;;
      opacity: 0.85 !important;;
    }
    
    .ks-modal-gallery-panel {
      z-index: 90000 !important;
    }
    
<br>

This is a beta version without documentation If you want to try it, check examples/angular-cli-10 to get tons of working examples

ks89
published 8.0.0-beta.3 •

Changelog

Source

8.0.0-beta.3

Features

  • upgrade to Angular 10. (Breaking Change).
  • remove Angular 8 support. (Breaking Change).

Demos

  • update all examples with Angular 10, except for angular-cli-9
<br> **This is a beta version without documentation** **If you want to try it, check examples/angular-cli-10 to get tons of working examples**
ks89
published 8.0.0-beta.2 •

Changelog

Source

8.0.0-beta.2

Features

  • restore Server Side Rendering support with Universal #183. (Breaking Change).
  • Carousel has a new input "[disableSsrWorkaround]="true"" to use modals in carousels with SystemJS (Breaking Change). Also, every time you need to open modal gallery, you must pass to LibConfig this code:
    keyboardServiceConfig: {
        shortcuts: ['ctrl+s', 'meta+s'],
        disableSsrWorkaround: true
      }
    

Demos

  • update all LibConfigs in SystemJS demo to prevent crashes. Because, now disableSsrWorkaround must be passed manually in every LibConfig. This is a breaking change (see above).
ks89
published 8.0.0-beta.1 •

Changelog

Source

8.0.0-beta.1

Features

  • Migrate to angular/cdk to fix all issues with angular/material (Breaking Change) (fixes #137, #111, #95)
  • Split plain-gallery and modal-gallery decoupling those components. Instead, define new APIs to open modal-gallery as a service (Breaking Change)
  • upgrade to Angular 9 and angular-cli 9, removing support for both Angular 6 and 7 (Breaking Change)
  • remove Module.forRoot() (Breaking Change)
  • move keyboard configuration into libconfig (permits different configuration for every instance of the library). (Breaking Change)
  • Add ability to set fallback image #194 (Breaking Change)
  • Add a way to disable titles if requested by the user #179 (Breaking Change)

Demos

  • upgrade all examples (except for universal, at the moment)
  • remove angular-cli-6 example and add angular-cli-9
  • upgrade systemjs example

Internal library changes

  • remove npm's codeclimate coverage reporter to use the new version
  • experiment with Angular IVY

Known issues

Still not working with universal (SSR), please be patient!

<br> **This is a beta version, with SSR support missing and no documentation at all** **If you want to try it, check examples/angular-cli-9 to get tons of working examples**
ks89
published 7.2.5 •

Changelog

Source

7.2.5

Bugfixes

  • carousel autoPlay ignores configPlay.autoPlay = false. Reported and fixed by @aslubsky (issue #191 and pull request #192)
ks89
published 7.2.4 •

Changelog

Source

7.2.4

Bugfixes

  • fix again issue #188 reported by @jagoda-b: if first/last image, next/prev arrows show hand cursor.
ks89
published 7.2.3 •

Changelog

Source

7.2.3

Bugfixes

  • fix another issue about side previews, because they where invisible (IMPORTANT BUG FIX)
  • fix issue #188 reported by @jagoda-b: if first/last image, next/prev arrows are invisible but clickable. Also "title" is still visible.
ks89
published 7.2.2 •

Changelog

Source

7.2.2

Bugfixes

  • fix issue #186 about vertical scrolling with carousel, caused by HammerJs (solution received by @mohaxspb as a pull request https://github.com/Ks89/angular-modal-gallery/pull/187)
ks89
published 7.3.0-rc.1 •

Changelog

Source

7.3.0-rc.1

Features

  • support image download also as base64
  • add config.service to store and share library configuration (this is used only inside the library and it's a core feature for future releases like 8.0.0) #180

Bugfixes

  • if slideConfig is undefined, side previews should be visible, because they are enabled by default. Fixed thanks to the new configService and unit testing.

Demos

  • fix some issues and update all examples
  • fix example B23 to enable delete button

Testing

  • update tests
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc