Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
angular-shop-components
Advanced tools
An angular 5.0+ set of reusable components and services for starting an online shop!
https://mattlewis92.github.io/angular-confirmation-popover/
A simple angular 5.0+ directive to display a bootstrap styled confirmation popover when an element is clicked.
Install through npm:
npm install --save angular-confirmation-popover
Then use it in your app on a component:
// include bootstrap - both v3 and v4 are supported
// if not using bootstrap you could implement the popover styles yourself
import 'bootstrap/dist/css/bootstrap.css';
import { NgModule, Component } from '@angular/core';
import { ConfirmationPopoverModule } from 'angular-confirmation-popover';
// first add it to your apps module
@NgModule({
declarations: [MyComponent],
imports: [
ConfirmationPopoverModule.forRoot({
confirmButtonType: 'danger' // set defaults here
})
],
bootstrap: [MyComponent]
})
class MyModule {}
// now use it within your component
@Component({
selector: 'my-component',
template: `
<button
class="btn btn-default"
mwlConfirmationPopover
[popoverTitle]="popoverTitle"
[popoverMessage]="popoverMessage"
placement="left"
(confirm)="confirmClicked = true"
(cancel)="cancelClicked = true">
Click me!
</button>
`
})
class MyComponent {
public popoverTitle: string = 'Popover title';
public popoverMessage: string = 'Popover description';
public confirmClicked: boolean = false;
public cancelClicked: boolean = false;
}
You may also find it useful to view the demo source.
All documentation is auto-generated from the source via compodoc and can be viewed here: https://mattlewis92.github.io/angular-confirmation-popover/docs/
The main mwlConfirmationPopover
directive options can be viewed here.
npm install
while current directory is this repoRun npm start
to start a development server on port 8000 with auto reload + tests.
Run npm test
to run tests once or npm run test:watch
to continually run tests.
npm run release
MIT
FAQs
An angular 5.0+ set of reusable components and services for starting an online shop!
The npm package angular-shop-components receives a total of 0 weekly downloads. As such, angular-shop-components popularity was classified as not popular.
We found that angular-shop-components demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.