@tifbs/components-bundle
v1.0.1
Published
A collection of helper components, built for AngularCLI (Angular 4)
Downloads
14
Readme
TIFBS Components
Warning: Components added via this package will not update when 'npm update
' is run - they will remain the version checked out at the time, as they are considered dependencies.
To update these please use the below variation on the 'update
' command:
npm --depth 3 update
This will update the npm packages you have installed, along with their dependencies, and the dependencies of those.
ng lint
Because these are Angular Component; 'ng lint
' will try to evaluate them, and will pick up that the prefix to the selectors does not match your own project's.
To remove these from the linting; open your '.angular-cli.json
' file, and find the 'lint' section.
Add:
"exclude": "**/node_modules/**/*"
To the first entry in the list:
"lint": [
{
"project": "src/tsconfig.app.json",
"exclude": "**/node_modules/**/*"
},
...
Includes
- Date-Boxes ('@tifbs/date-boxes-component') - A component for date input using text-boxes, with event-based interaction.
- Loading-Spinner ('@tifbs/loading-spinner-component') - A SVG/CSS3 based loading-spinner, using a service for global interaction.