Giter VIP home page Giter VIP logo

sv-bootstrap-modal's Introduction

sv-bootstrap-modal (Svelte Bootstrap Modal)

Svelte Modal Component for Bootstrap (Bootstrap’s modal plugin in svlete applications), can be used with sapper or standalone with svelte

Demo

Simple Bootstrap Modal Example

How to install

npm install --save-dev sv-bootstrap-modal

Requirements

Bootstrap CSS needs to be present globally in project

Usage

Simple Usage

Example

<script>
  import Modal from "sv-bootstrap-modal";
  let isOpen = false;
</script>

<Modal bind:open={isOpen}>
    <div class="modal-header">
        <h5 class="modal-title">Modal title</h5>
        <button type="button" class="close" on:click={() => (isOpen = false)}>
        <span aria-hidden="true">&times;</span>
        </button>
    </div>
    <div class="modal-body">Woohoo, you're reading this text in a modal!</div>
    <div class="modal-footer">
        <button type="button" class="btn btn-secondary" on:click={() => (isOpen = false)}>Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
    </div>
</Modal>

<button class="btn btn-primary" on:click={()=> (isOpen = true)}>Open Modal</button>

Modal Sizing

Below are the classes which should be used to change the sizes of modal

Small Large Extra large
.modal-sm .modal-lg .modal-xl

Example

<script>
  import Modal from "sv-bootstrap-modal";
  let isOpen = false;
</script>

<Modal bind:open={isOpen} dialogClasses="modal-lg">
    ....
</Modal>

<button class="btn btn-primary" on:click={()=> (isOpen = true)}>Open Modal</button>

Vertically centered

Add modal-dialog-centered to dialogClasses option

Example

<script>
  import Modal from "sv-bootstrap-modal";
  let isOpen = false;
</script>

<Modal bind:open={isOpen} dialogClasses="modal-dialog-centered">
    ....
</Modal>

<button class="btn btn-primary" on:click={()=> (isOpen = true)}>Open Modal</button>

Scrolling long content (Scrollable Modal)

Add modal-dialog-scrollable to dialogClasses option

<script>
  import Modal from "sv-bootstrap-modal";
  let isOpen = false;
</script>

<Modal bind:open={isOpen} dialogClasses="modal-dialog-scrollable">
    ....
</Modal>

<button class="btn btn-primary" on:click={()=> (isOpen = true)}>Open Modal</button>

Component Options

Name Type Default Description
backdrop boolean true Includes a modal-backdrop element.
ignoreBackdrop boolean true It will ignore backdrop click close if true modal will not close on outside click
keyboard boolean true Closes the modal when escape key is pressed
dialogClasses string "" You can add any number of classes to .modal-dialog element
labelledby string "" Used for aria-labelledby
describedby string "" Used for aria-describedby
onOpened function Empty function(noop) Can be Used for callbacks After Modal Opened
onClosed function Empty function(noop) Can be Used for callbacks After Modal Closed

License

Apache License 2.0

sv-bootstrap-modal's People

Contributors

rdp-jr avatar sidd27 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

rdp-jr infuzz

sv-bootstrap-modal's Issues

when nested modal opened backdrops stay dom still

If you're use like this; your modal content in action triggered open new modal, when second level modal closed, you can not first level (top level) modal closed.

When I'm examine this via inspector, modal-backdrop show stay dom still. Because of z-index you can not any pointer events.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.