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

@signainfo/sconfirmationdialog

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@signainfo/sconfirmationdialog

### Installation

  • 0.2.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

SConfirmationDialog component

Installation

npm i --save @signainfo/sconfirmationdialog

Usage

It can be installed globally using:

import Vue from 'vue'
import SConfirmationDialog from '@signainfo/sconfirmationdialog'
import '@signainfo/sconfirmationdialog/dist/sconfirmationdialog.css'
...

Vue.use(SConfirmationDialog)

...

or used on demand:

<script>
import SConfirmationDialog from '@signainfo/sconfirmationdialog'
export default {
  name: 'App',
  components: {
    's-confirmation-dialog': SConfirmationDialog
  },
  data() {
    ...
  }
}
</script>

and use inside the template tag:

<template>
  ...
  <s-confirmation-dialog
    :show="confirmDialog"
    title="Titulo"
    subtitle="Subititulo"
    ok-text="confirm"
    cancel-text="cancel"
    :max-width="500"
    @confirm="confirmDialog = false"
    @cancel="confirmDialog = false"
  ></s-confirmation-dialog>
  ...
</template>

Props:

props: {
    show: { type: Boolean, required: true, default: false },
    title: { type: String, required: false, default: 'Confirmar' },
    subtitle: { type: String, required: true, default: '' },
    okText: { type: String, required: false, default: 'Confirmar' },
    cancelText: { type: String, required: false, default: 'Cancelar' },
    maxWidth: { type: Number, required: false, default: 290 }
}

Development

npm start // start the test app
npm run build // builds the component and publish to npm

Before building the component you need to advance the version using npm semver:

npm version patch // to patch version
npm version minor // to minor version
npm version major // to major version

FAQs

Package last updated on 05 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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