ngx-zmz-clipboard
v8.0.4-tsconfig-flags
Published
angular 2 clipboard
Downloads
7
Readme
ngx-clipboard , F.K.A angular2-clipboard
From 6.0.0, there is no dependency anymore. Just Angular.
It works with angular version 2.0.0 and up
To make more sense with the future versioning scheme of Angular, the directive selector is now rename to ngxClipboard
Dependencies
- Angular >=4.0.0
If you need to use it on 2.0.0, please use version 7.x.x.
The code are pretty much the same, in 8.0.0 it uses InjectionToken which requires angular4.
Install
You can get it on npm.
npm install ngx-clipboard --save
Build project
1. npm i
2. npm run build
Usage
If you use SystemJS to load your files, you might have to update your config:
System.config({
map: {
'ngx-clipboard': 'node_modules/ngx-clipboard'
}
});
For webpack / Angular CLI, it works as any other libraries. Please check demo folder for more help.
This library support 2 kinds of copy source.
You can either set
[cbContent]="'target string'"
Or
[ngxClipboard]="inputTarget"
PLEASE CHECK WITH PLUNKER FIRST
Example
Contributing
- Your commits conform to the conventions established here
- This project used commitizen and semantic-release to handle npm version from CI
- run git add first to add your changes to staging
- use
npm run commit
to commit, and CI will do the rest. - if changes contain breaking change, use
BREAKING CHANGE
keyword in the comment to trigger major release - before push to git and trigger CI, you can dry run
npm run semantic-release
locally to make sure the version number is push as expected.
Troubleshooting
If you use webpack, check
/demo/webpack
. Try to use the same version of webpack that demo used, if you run into any error.The latest version (3.0.0+) works with AoT, please check /demo/angular2-aot-webpack to see how to make it work.
Kudos to
Thierry Templier This project is inspired by his answer on StackOverflow.
The core function is ported from clipboard.js by @zenorocha.
blacksonic AoT's demo is based on his project.