el-header-and-footer 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +24 -0
- package/el-header-and-footer.d.ts +5 -0
- package/esm2020/el-header-and-footer.mjs +5 -0
- package/esm2020/lib/el-header-and-footer.component.mjs +1046 -0
- package/esm2020/lib/el-header-and-footer.module.mjs +49 -0
- package/esm2020/lib/el-header-and-footer.service.mjs +14 -0
- package/esm2020/public-api.mjs +7 -0
- package/fesm2015/el-header-and-footer.mjs +1116 -0
- package/fesm2015/el-header-and-footer.mjs.map +1 -0
- package/fesm2020/el-header-and-footer.mjs +1113 -0
- package/fesm2020/el-header-and-footer.mjs.map +1 -0
- package/lib/el-header-and-footer.component.d.ts +142 -0
- package/lib/el-header-and-footer.module.d.ts +13 -0
- package/lib/el-header-and-footer.service.d.ts +6 -0
- package/package.json +31 -0
- package/public-api.d.ts +3 -0
package/README.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# ElHeaderAndFooter
|
2
|
+
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
4
|
+
|
5
|
+
## Code scaffolding
|
6
|
+
|
7
|
+
Run `ng generate component component-name --project el-header-and-footer` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project el-header-and-footer`.
|
8
|
+
> Note: Don't forget to add `--project el-header-and-footer` or else it will be added to the default project in your `angular.json` file.
|
9
|
+
|
10
|
+
## Build
|
11
|
+
|
12
|
+
Run `ng build el-header-and-footer` to build the project. The build artifacts will be stored in the `dist/` directory.
|
13
|
+
|
14
|
+
## Publishing
|
15
|
+
|
16
|
+
After building your library with `ng build el-header-and-footer`, go to the dist folder `cd dist/el-header-and-footer` and run `npm publish`.
|
17
|
+
|
18
|
+
## Running unit tests
|
19
|
+
|
20
|
+
Run `ng test el-header-and-footer` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
21
|
+
|
22
|
+
## Further help
|
23
|
+
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
@@ -0,0 +1,5 @@
|
|
1
|
+
/**
|
2
|
+
* Generated bundle index. Do not edit.
|
3
|
+
*/
|
4
|
+
export * from './public-api';
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWwtaGVhZGVyLWFuZC1mb290ZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9lbC1oZWFkZXItYW5kLWZvb3Rlci9zcmMvZWwtaGVhZGVyLWFuZC1mb290ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|