windows-plus-utilities 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/README.md +24 -0
  2. package/custom-card/components/custom-card/custom-card.component.d.ts +30 -0
  3. package/custom-card/custom-card.module.d.ts +8 -0
  4. package/custom-card/package.json +10 -0
  5. package/custom-card/public-api.d.ts +3 -0
  6. package/custom-card/util/interface/config/custom-card-config.interface.d.ts +9 -0
  7. package/custom-card/windows-plus-utilities-custom-card.d.ts +5 -0
  8. package/esm2020/custom-card/components/custom-card/custom-card.component.mjs +29 -0
  9. package/esm2020/custom-card/custom-card.module.mjs +26 -0
  10. package/esm2020/custom-card/public-api.mjs +7 -0
  11. package/esm2020/custom-card/util/interface/config/custom-card-config.interface.mjs +2 -0
  12. package/esm2020/custom-card/windows-plus-utilities-custom-card.mjs +5 -0
  13. package/esm2020/lib/windows-plus-utilities.component.mjs +26 -0
  14. package/esm2020/lib/windows-plus-utilities.module.mjs +21 -0
  15. package/esm2020/lib/windows-plus-utilities.service.mjs +14 -0
  16. package/esm2020/public-api.mjs +7 -0
  17. package/esm2020/windows-plus-utilities.mjs +5 -0
  18. package/fesm2015/windows-plus-utilities-custom-card.mjs +63 -0
  19. package/fesm2015/windows-plus-utilities-custom-card.mjs.map +1 -0
  20. package/fesm2015/windows-plus-utilities.mjs +67 -0
  21. package/fesm2015/windows-plus-utilities.mjs.map +1 -0
  22. package/fesm2020/windows-plus-utilities-custom-card.mjs +63 -0
  23. package/fesm2020/windows-plus-utilities-custom-card.mjs.map +1 -0
  24. package/fesm2020/windows-plus-utilities.mjs +67 -0
  25. package/fesm2020/windows-plus-utilities.mjs.map +1 -0
  26. package/lib/windows-plus-utilities.component.d.ts +8 -0
  27. package/lib/windows-plus-utilities.module.d.ts +7 -0
  28. package/lib/windows-plus-utilities.service.d.ts +6 -0
  29. package/package.json +39 -0
  30. package/public-api.d.ts +3 -0
  31. package/windows-plus-utilities.d.ts +5 -0
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # WindowsPlusUtilities
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.1.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project windows-plus-utilities` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project windows-plus-utilities`.
8
+ > Note: Don't forget to add `--project windows-plus-utilities` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build windows-plus-utilities` 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 windows-plus-utilities`, go to the dist folder `cd dist/windows-plus-utilities` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test windows-plus-utilities` 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,30 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomCardComponent implements OnInit {
4
+ /**
5
+ * @description the cards HTML element identifier
6
+ */
7
+ id: string;
8
+ /**
9
+ * @description whether the card is the active card
10
+ */
11
+ active: boolean;
12
+ /**
13
+ * @description the method to be run when the card is clicked
14
+ */
15
+ handleClick: (...args: any[]) => void;
16
+ /**
17
+ * @description the value to be displayed in the card
18
+ */
19
+ label: string;
20
+ /**
21
+ * @description class constructor specifying the required properties and services
22
+ */
23
+ constructor();
24
+ /**
25
+ * @description the method to be run when the component is loaded
26
+ */
27
+ ngOnInit(): void;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomCardComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomCardComponent, "wp-custom-card", never, { "id": "id"; "active": "active"; "handleClick": "handleClick"; "label": "label"; }, {}, never, never>;
30
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/custom-card/custom-card.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class CustomCardModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomCardModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CustomCardModule, [typeof i1.CustomCardComponent], [typeof i2.CommonModule], [typeof i1.CustomCardComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<CustomCardModule>;
8
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "module": "../fesm2015/windows-plus-utilities-custom-card.mjs",
3
+ "es2020": "../fesm2020/windows-plus-utilities-custom-card.mjs",
4
+ "esm2020": "../esm2020/custom-card/windows-plus-utilities-custom-card.mjs",
5
+ "fesm2020": "../fesm2020/windows-plus-utilities-custom-card.mjs",
6
+ "fesm2015": "../fesm2015/windows-plus-utilities-custom-card.mjs",
7
+ "typings": "windows-plus-utilities-custom-card.d.ts",
8
+ "sideEffects": false,
9
+ "name": "windows-plus-utilities/custom-card"
10
+ }
@@ -0,0 +1,3 @@
1
+ export * from './components/custom-card/custom-card.component';
2
+ export * from './util/interface/config/custom-card-config.interface';
3
+ export * from './custom-card.module';
@@ -0,0 +1,9 @@
1
+ /**
2
+ * @description an interface defining the required properties for the custom card configuration
3
+ */
4
+ export interface CustomCardConfig {
5
+ id: string;
6
+ active: boolean;
7
+ handleClick: (...args: any[]) => void;
8
+ label: string;
9
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="windows-plus-utilities/custom-card" />
5
+ export * from './public-api';
@@ -0,0 +1,29 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ export class CustomCardComponent {
5
+ /**
6
+ * @description class constructor specifying the required properties and services
7
+ */
8
+ constructor() { }
9
+ /**
10
+ * @description the method to be run when the component is loaded
11
+ */
12
+ ngOnInit() {
13
+ }
14
+ }
15
+ CustomCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
16
+ CustomCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: CustomCardComponent, selector: "wp-custom-card", inputs: { id: "id", active: "active", handleClick: "handleClick", label: "label" }, ngImport: i0, template: "<div>\n\t<div \n\t\t[id]=\"id\"\n\t\tclass=\"custom-card\"\n\t\t[ngClass]=\"{'active': active}\"\n\t\t(click)=\"handleClick(id)\"\n\t>\n\t\t<div class=\"overlay\"></div>\n\t\t<div class=\"card-header\">\n\t\t\t<div class=\"card-title\">\n\t\t\t\t{{label}}\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>", styles: [""], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
17
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardComponent, decorators: [{
18
+ type: Component,
19
+ args: [{ selector: 'wp-custom-card', template: "<div>\n\t<div \n\t\t[id]=\"id\"\n\t\tclass=\"custom-card\"\n\t\t[ngClass]=\"{'active': active}\"\n\t\t(click)=\"handleClick(id)\"\n\t>\n\t\t<div class=\"overlay\"></div>\n\t\t<div class=\"card-header\">\n\t\t\t<div class=\"card-title\">\n\t\t\t\t{{label}}\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>", styles: [""] }]
20
+ }], ctorParameters: function () { return []; }, propDecorators: { id: [{
21
+ type: Input
22
+ }], active: [{
23
+ type: Input
24
+ }], handleClick: [{
25
+ type: Input
26
+ }], label: [{
27
+ type: Input
28
+ }] } });
29
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLWNhcmQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvd2luZG93cy1wbHVzLXV0aWxpdGllcy9jdXN0b20tY2FyZC9jb21wb25lbnRzL2N1c3RvbS1jYXJkL2N1c3RvbS1jYXJkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMvY3VzdG9tLWNhcmQvY29tcG9uZW50cy9jdXN0b20tY2FyZC9jdXN0b20tY2FyZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQzs7O0FBT3pELE1BQU0sT0FBTyxtQkFBbUI7SUFpQi9COztPQUVHO0lBQ0YsZ0JBQWdCLENBQUM7SUFDbEI7O09BRUc7SUFDRixRQUFRO0lBQ1IsQ0FBQzs7Z0hBekJVLG1CQUFtQjtvR0FBbkIsbUJBQW1CLDBJQ1BoQyw2U0FjTTsyRkRQTyxtQkFBbUI7a0JBTC9CLFNBQVM7K0JBQ0UsZ0JBQWdCOzBFQVFsQixFQUFFO3NCQUFWLEtBQUs7Z0JBSUcsTUFBTTtzQkFBZCxLQUFLO2dCQUlHLFdBQVc7c0JBQW5CLEtBQUs7Z0JBSUcsS0FBSztzQkFBYixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3dwLWN1c3RvbS1jYXJkJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2N1c3RvbS1jYXJkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY3VzdG9tLWNhcmQuY29tcG9uZW50LmNzcyddXG59KVxuZXhwb3J0IGNsYXNzIEN1c3RvbUNhcmRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXHQvKipcblx0ICogQGRlc2NyaXB0aW9uIHRoZSBjYXJkcyBIVE1MIGVsZW1lbnQgaWRlbnRpZmllclxuXHQgKi9cblx0QElucHV0KCkgaWQ6IHN0cmluZ1xuXHQvKipcblx0ICogQGRlc2NyaXB0aW9uIHdoZXRoZXIgdGhlIGNhcmQgaXMgdGhlIGFjdGl2ZSBjYXJkXG5cdCAqL1xuXHRASW5wdXQoKSBhY3RpdmU6IGJvb2xlYW5cblx0LyoqXG5cdCAqIEBkZXNjcmlwdGlvbiB0aGUgbWV0aG9kIHRvIGJlIHJ1biB3aGVuIHRoZSBjYXJkIGlzIGNsaWNrZWRcblx0ICovXG5cdEBJbnB1dCgpIGhhbmRsZUNsaWNrOiAoLi4uYXJnczogYW55W10pID0+IHZvaWRcblx0LyoqXG5cdCAqIEBkZXNjcmlwdGlvbiB0aGUgdmFsdWUgdG8gYmUgZGlzcGxheWVkIGluIHRoZSBjYXJkXG5cdCAqL1xuXHRASW5wdXQoKSBsYWJlbDogc3RyaW5nXG5cdC8qKlxuXHQgKiBAZGVzY3JpcHRpb24gY2xhc3MgY29uc3RydWN0b3Igc3BlY2lmeWluZyB0aGUgcmVxdWlyZWQgcHJvcGVydGllcyBhbmQgc2VydmljZXNcblx0ICovXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cdC8qKlxuXHQgKiBAZGVzY3JpcHRpb24gdGhlIG1ldGhvZCB0byBiZSBydW4gd2hlbiB0aGUgY29tcG9uZW50IGlzIGxvYWRlZFxuXHQgKi9cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gIH1cbn1cbiIsIjxkaXY+XG5cdDxkaXYgXG5cdFx0W2lkXT1cImlkXCJcblx0XHRjbGFzcz1cImN1c3RvbS1jYXJkXCJcblx0XHRbbmdDbGFzc109XCJ7J2FjdGl2ZSc6IGFjdGl2ZX1cIlxuXHRcdChjbGljayk9XCJoYW5kbGVDbGljayhpZClcIlxuXHQ+XG5cdFx0PGRpdiBjbGFzcz1cIm92ZXJsYXlcIj48L2Rpdj5cblx0XHQ8ZGl2IGNsYXNzPVwiY2FyZC1oZWFkZXJcIj5cblx0XHRcdDxkaXYgY2xhc3M9XCJjYXJkLXRpdGxlXCI+XG5cdFx0XHRcdHt7bGFiZWx9fVxuXHRcdFx0PC9kaXY+XG5cdFx0PC9kaXY+XG5cdDwvZGl2PlxuPC9kaXY+Il19
@@ -0,0 +1,26 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { CustomCardComponent } from './components/custom-card/custom-card.component';
4
+ import * as i0 from "@angular/core";
5
+ export class CustomCardModule {
6
+ }
7
+ CustomCardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8
+ CustomCardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, declarations: [CustomCardComponent], imports: [CommonModule], exports: [CustomCardComponent] });
9
+ CustomCardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, imports: [[
10
+ CommonModule
11
+ ]] });
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, decorators: [{
13
+ type: NgModule,
14
+ args: [{
15
+ declarations: [
16
+ CustomCardComponent
17
+ ],
18
+ imports: [
19
+ CommonModule
20
+ ],
21
+ exports: [
22
+ CustomCardComponent
23
+ ]
24
+ }]
25
+ }] });
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLWNhcmQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvd2luZG93cy1wbHVzLXV0aWxpdGllcy9jdXN0b20tY2FyZC9jdXN0b20tY2FyZC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0RBQWdELENBQUM7O0FBZXJGLE1BQU0sT0FBTyxnQkFBZ0I7OzZHQUFoQixnQkFBZ0I7OEdBQWhCLGdCQUFnQixpQkFUekIsbUJBQW1CLGFBR25CLFlBQVksYUFHWixtQkFBbUI7OEdBR1YsZ0JBQWdCLFlBUGxCO1lBQ1AsWUFBWTtTQUNiOzJGQUtVLGdCQUFnQjtrQkFYNUIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osbUJBQW1CO3FCQUNwQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTtxQkFDYjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsbUJBQW1CO3FCQUNwQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ3VzdG9tQ2FyZENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9jdXN0b20tY2FyZC9jdXN0b20tY2FyZC5jb21wb25lbnQnO1xuXG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgQ3VzdG9tQ2FyZENvbXBvbmVudFxuICBdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBDdXN0b21DYXJkQ29tcG9uZW50XG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgQ3VzdG9tQ2FyZE1vZHVsZSB7IH1cbiJdfQ==
@@ -0,0 +1,7 @@
1
+ /*
2
+ * Public API Surface of windows-plus-utilities
3
+ */
4
+ export * from './components/custom-card/custom-card.component';
5
+ export * from './util/interface/config/custom-card-config.interface';
6
+ export * from './custom-card.module';
7
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMvY3VzdG9tLWNhcmQvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsZ0RBQWdELENBQUM7QUFDL0QsY0FBYyxzREFBc0QsQ0FBQztBQUNyRSxjQUFjLHNCQUFzQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiB3aW5kb3dzLXBsdXMtdXRpbGl0aWVzXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL2N1c3RvbS1jYXJkL2N1c3RvbS1jYXJkLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3V0aWwvaW50ZXJmYWNlL2NvbmZpZy9jdXN0b20tY2FyZC1jb25maWcuaW50ZXJmYWNlJztcbmV4cG9ydCAqIGZyb20gJy4vY3VzdG9tLWNhcmQubW9kdWxlJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLWNhcmQtY29uZmlnLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMvY3VzdG9tLWNhcmQvdXRpbC9pbnRlcmZhY2UvY29uZmlnL2N1c3RvbS1jYXJkLWNvbmZpZy5pbnRlcmZhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxyXG4gKiBAZGVzY3JpcHRpb24gYW4gaW50ZXJmYWNlIGRlZmluaW5nIHRoZSByZXF1aXJlZCBwcm9wZXJ0aWVzIGZvciB0aGUgY3VzdG9tIGNhcmQgY29uZmlndXJhdGlvblxyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBDdXN0b21DYXJkQ29uZmlnIHtcclxuXHRpZDogc3RyaW5nLFxyXG5cdGFjdGl2ZTogYm9vbGVhbixcclxuXHRoYW5kbGVDbGljazogKC4uLmFyZ3M6IGFueVtdKSA9PiB2b2lkLFxyXG5cdGxhYmVsOiBzdHJpbmdcclxufSJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2luZG93cy1wbHVzLXV0aWxpdGllcy1jdXN0b20tY2FyZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMvY3VzdG9tLWNhcmQvd2luZG93cy1wbHVzLXV0aWxpdGllcy1jdXN0b20tY2FyZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,26 @@
1
+ import { Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class WindowsPlusUtilitiesComponent {
4
+ constructor() { }
5
+ ngOnInit() {
6
+ }
7
+ }
8
+ WindowsPlusUtilitiesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9
+ WindowsPlusUtilitiesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: WindowsPlusUtilitiesComponent, selector: "lib-windows-plus-utilities", ngImport: i0, template: `
10
+ <p>
11
+ windows-plus-utilities works!
12
+ </p>
13
+ `, isInline: true });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesComponent, decorators: [{
15
+ type: Component,
16
+ args: [{
17
+ selector: 'lib-windows-plus-utilities',
18
+ template: `
19
+ <p>
20
+ windows-plus-utilities works!
21
+ </p>
22
+ `,
23
+ styles: []
24
+ }]
25
+ }], ctorParameters: function () { return []; } });
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2luZG93cy1wbHVzLXV0aWxpdGllcy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy93aW5kb3dzLXBsdXMtdXRpbGl0aWVzL3NyYy9saWIvd2luZG93cy1wbHVzLXV0aWxpdGllcy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7QUFZbEQsTUFBTSxPQUFPLDZCQUE2QjtJQUV4QyxnQkFBZ0IsQ0FBQztJQUVqQixRQUFRO0lBQ1IsQ0FBQzs7MEhBTFUsNkJBQTZCOzhHQUE3Qiw2QkFBNkIsa0VBUjlCOzs7O0dBSVQ7MkZBSVUsNkJBQTZCO2tCQVZ6QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSw0QkFBNEI7b0JBQ3RDLFFBQVEsRUFBRTs7OztHQUlUO29CQUNELE1BQU0sRUFBRSxFQUNQO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLXdpbmRvd3MtcGx1cy11dGlsaXRpZXMnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxwPlxuICAgICAgd2luZG93cy1wbHVzLXV0aWxpdGllcyB3b3JrcyFcbiAgICA8L3A+XG4gIGAsXG4gIHN0eWxlczogW1xuICBdXG59KVxuZXhwb3J0IGNsYXNzIFdpbmRvd3NQbHVzVXRpbGl0aWVzQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICB9XG5cbn1cbiJdfQ==
@@ -0,0 +1,21 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { WindowsPlusUtilitiesComponent } from './windows-plus-utilities.component';
3
+ import * as i0 from "@angular/core";
4
+ export class WindowsPlusUtilitiesModule {
5
+ }
6
+ WindowsPlusUtilitiesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7
+ WindowsPlusUtilitiesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, declarations: [WindowsPlusUtilitiesComponent], exports: [WindowsPlusUtilitiesComponent] });
8
+ WindowsPlusUtilitiesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, imports: [[]] });
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, decorators: [{
10
+ type: NgModule,
11
+ args: [{
12
+ declarations: [
13
+ WindowsPlusUtilitiesComponent
14
+ ],
15
+ imports: [],
16
+ exports: [
17
+ WindowsPlusUtilitiesComponent
18
+ ]
19
+ }]
20
+ }] });
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2luZG93cy1wbHVzLXV0aWxpdGllcy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy93aW5kb3dzLXBsdXMtdXRpbGl0aWVzL3NyYy9saWIvd2luZG93cy1wbHVzLXV0aWxpdGllcy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSxvQ0FBb0MsQ0FBQzs7QUFjbkYsTUFBTSxPQUFPLDBCQUEwQjs7dUhBQTFCLDBCQUEwQjt3SEFBMUIsMEJBQTBCLGlCQVJuQyw2QkFBNkIsYUFLN0IsNkJBQTZCO3dIQUdwQiwwQkFBMEIsWUFONUIsRUFDUjsyRkFLVSwwQkFBMEI7a0JBVnRDLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFO3dCQUNaLDZCQUE2QjtxQkFDOUI7b0JBQ0QsT0FBTyxFQUFFLEVBQ1I7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLDZCQUE2QjtxQkFDOUI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgV2luZG93c1BsdXNVdGlsaXRpZXNDb21wb25lbnQgfSBmcm9tICcuL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMuY29tcG9uZW50JztcblxuXG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIFdpbmRvd3NQbHVzVXRpbGl0aWVzQ29tcG9uZW50XG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIFdpbmRvd3NQbHVzVXRpbGl0aWVzQ29tcG9uZW50XG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgV2luZG93c1BsdXNVdGlsaXRpZXNNb2R1bGUgeyB9XG4iXX0=
@@ -0,0 +1,14 @@
1
+ import { Injectable } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class WindowsPlusUtilitiesService {
4
+ constructor() { }
5
+ }
6
+ WindowsPlusUtilitiesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
7
+ WindowsPlusUtilitiesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesService, providedIn: 'root' });
8
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesService, decorators: [{
9
+ type: Injectable,
10
+ args: [{
11
+ providedIn: 'root'
12
+ }]
13
+ }], ctorParameters: function () { return []; } });
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2luZG93cy1wbHVzLXV0aWxpdGllcy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvd2luZG93cy1wbHVzLXV0aWxpdGllcy9zcmMvbGliL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8sMkJBQTJCO0lBRXRDLGdCQUFnQixDQUFDOzt3SEFGTiwyQkFBMkI7NEhBQTNCLDJCQUEyQixjQUYxQixNQUFNOzJGQUVQLDJCQUEyQjtrQkFIdkMsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnXG59KVxuZXhwb3J0IGNsYXNzIFdpbmRvd3NQbHVzVXRpbGl0aWVzU2VydmljZSB7XG5cbiAgY29uc3RydWN0b3IoKSB7IH1cbn1cbiJdfQ==
@@ -0,0 +1,7 @@
1
+ /*
2
+ * Public API Surface of windows-plus-utilities
3
+ */
4
+ export * from './lib/windows-plus-utilities.service';
5
+ export * from './lib/windows-plus-utilities.component';
6
+ export * from './lib/windows-plus-utilities.module';
7
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMsd0NBQXdDLENBQUM7QUFDdkQsY0FBYyxxQ0FBcUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2Ygd2luZG93cy1wbHVzLXV0aWxpdGllc1xuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vbGliL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMuc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi93aW5kb3dzLXBsdXMtdXRpbGl0aWVzLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi93aW5kb3dzLXBsdXMtdXRpbGl0aWVzLm1vZHVsZSc7XG4iXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2luZG93cy1wbHVzLXV0aWxpdGllcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMvc3JjL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,63 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, Input, NgModule } from '@angular/core';
3
+ import * as i1 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+
6
+ class CustomCardComponent {
7
+ /**
8
+ * @description class constructor specifying the required properties and services
9
+ */
10
+ constructor() { }
11
+ /**
12
+ * @description the method to be run when the component is loaded
13
+ */
14
+ ngOnInit() {
15
+ }
16
+ }
17
+ CustomCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
18
+ CustomCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: CustomCardComponent, selector: "wp-custom-card", inputs: { id: "id", active: "active", handleClick: "handleClick", label: "label" }, ngImport: i0, template: "<div>\n\t<div \n\t\t[id]=\"id\"\n\t\tclass=\"custom-card\"\n\t\t[ngClass]=\"{'active': active}\"\n\t\t(click)=\"handleClick(id)\"\n\t>\n\t\t<div class=\"overlay\"></div>\n\t\t<div class=\"card-header\">\n\t\t\t<div class=\"card-title\">\n\t\t\t\t{{label}}\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>", styles: [""], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardComponent, decorators: [{
20
+ type: Component,
21
+ args: [{ selector: 'wp-custom-card', template: "<div>\n\t<div \n\t\t[id]=\"id\"\n\t\tclass=\"custom-card\"\n\t\t[ngClass]=\"{'active': active}\"\n\t\t(click)=\"handleClick(id)\"\n\t>\n\t\t<div class=\"overlay\"></div>\n\t\t<div class=\"card-header\">\n\t\t\t<div class=\"card-title\">\n\t\t\t\t{{label}}\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>", styles: [""] }]
22
+ }], ctorParameters: function () { return []; }, propDecorators: { id: [{
23
+ type: Input
24
+ }], active: [{
25
+ type: Input
26
+ }], handleClick: [{
27
+ type: Input
28
+ }], label: [{
29
+ type: Input
30
+ }] } });
31
+
32
+ class CustomCardModule {
33
+ }
34
+ CustomCardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
35
+ CustomCardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, declarations: [CustomCardComponent], imports: [CommonModule], exports: [CustomCardComponent] });
36
+ CustomCardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, imports: [[
37
+ CommonModule
38
+ ]] });
39
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, decorators: [{
40
+ type: NgModule,
41
+ args: [{
42
+ declarations: [
43
+ CustomCardComponent
44
+ ],
45
+ imports: [
46
+ CommonModule
47
+ ],
48
+ exports: [
49
+ CustomCardComponent
50
+ ]
51
+ }]
52
+ }] });
53
+
54
+ /*
55
+ * Public API Surface of windows-plus-utilities
56
+ */
57
+
58
+ /**
59
+ * Generated bundle index. Do not edit.
60
+ */
61
+
62
+ export { CustomCardComponent, CustomCardModule };
63
+ //# sourceMappingURL=windows-plus-utilities-custom-card.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"windows-plus-utilities-custom-card.mjs","sources":["../../../projects/windows-plus-utilities/custom-card/components/custom-card/custom-card.component.ts","../../../projects/windows-plus-utilities/custom-card/components/custom-card/custom-card.component.html","../../../projects/windows-plus-utilities/custom-card/custom-card.module.ts","../../../projects/windows-plus-utilities/custom-card/public-api.ts","../../../projects/windows-plus-utilities/custom-card/windows-plus-utilities-custom-card.ts"],"sourcesContent":["import { Component, Input, OnInit } from '@angular/core';\n\n@Component({\n selector: 'wp-custom-card',\n templateUrl: './custom-card.component.html',\n styleUrls: ['./custom-card.component.css']\n})\nexport class CustomCardComponent implements OnInit {\n\t/**\n\t * @description the cards HTML element identifier\n\t */\n\t@Input() id: string\n\t/**\n\t * @description whether the card is the active card\n\t */\n\t@Input() active: boolean\n\t/**\n\t * @description the method to be run when the card is clicked\n\t */\n\t@Input() handleClick: (...args: any[]) => void\n\t/**\n\t * @description the value to be displayed in the card\n\t */\n\t@Input() label: string\n\t/**\n\t * @description class constructor specifying the required properties and services\n\t */\n constructor() { }\n\t/**\n\t * @description the method to be run when the component is loaded\n\t */\n ngOnInit(): void {\n }\n}\n","<div>\n\t<div \n\t\t[id]=\"id\"\n\t\tclass=\"custom-card\"\n\t\t[ngClass]=\"{'active': active}\"\n\t\t(click)=\"handleClick(id)\"\n\t>\n\t\t<div class=\"overlay\"></div>\n\t\t<div class=\"card-header\">\n\t\t\t<div class=\"card-title\">\n\t\t\t\t{{label}}\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { CustomCardComponent } from './components/custom-card/custom-card.component';\n\n\n\n@NgModule({\n declarations: [\n CustomCardComponent\n ],\n imports: [\n CommonModule\n ],\n exports: [\n CustomCardComponent\n ]\n})\nexport class CustomCardModule { }\n","/*\n * Public API Surface of windows-plus-utilities\n */\n\nexport * from './components/custom-card/custom-card.component';\nexport * from './util/interface/config/custom-card-config.interface';\nexport * from './custom-card.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MAOa,mBAAmB,CAAA;AAiB/B;;AAEG;AACF,IAAA,WAAA,GAAA,GAAiB;AAClB;;AAEG;IACF,QAAQ,GAAA;KACP;;gHAzBU,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAnB,mBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,0ICPhC,6SAcM,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,UAAA,EAAA,CAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;2FDPO,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAL/B,SAAS;+BACE,gBAAgB,EAAA,QAAA,EAAA,6SAAA,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA;0EAQlB,EAAE,EAAA,CAAA;sBAAV,KAAK;gBAIG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAIG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBAIG,KAAK,EAAA,CAAA;sBAAb,KAAK;;;MENM,gBAAgB,CAAA;;6GAAhB,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAhB,gBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gBAAgB,EATzB,YAAA,EAAA,CAAA,mBAAmB,CAGnB,EAAA,OAAA,EAAA,CAAA,YAAY,aAGZ,mBAAmB,CAAA,EAAA,CAAA,CAAA;AAGV,gBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gBAAgB,EAPlB,OAAA,EAAA,CAAA;YACP,YAAY;SACb,CAAA,EAAA,CAAA,CAAA;2FAKU,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAX5B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,mBAAmB;AACpB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,YAAY;AACb,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,mBAAmB;AACpB,qBAAA;iBACF,CAAA;;;AChBD;;AAEG;;ACFH;;AAEG;;;;"}
@@ -0,0 +1,67 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Injectable, Component, NgModule } from '@angular/core';
3
+
4
+ class WindowsPlusUtilitiesService {
5
+ constructor() { }
6
+ }
7
+ WindowsPlusUtilitiesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8
+ WindowsPlusUtilitiesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesService, providedIn: 'root' });
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesService, decorators: [{
10
+ type: Injectable,
11
+ args: [{
12
+ providedIn: 'root'
13
+ }]
14
+ }], ctorParameters: function () { return []; } });
15
+
16
+ class WindowsPlusUtilitiesComponent {
17
+ constructor() { }
18
+ ngOnInit() {
19
+ }
20
+ }
21
+ WindowsPlusUtilitiesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
22
+ WindowsPlusUtilitiesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: WindowsPlusUtilitiesComponent, selector: "lib-windows-plus-utilities", ngImport: i0, template: `
23
+ <p>
24
+ windows-plus-utilities works!
25
+ </p>
26
+ `, isInline: true });
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesComponent, decorators: [{
28
+ type: Component,
29
+ args: [{
30
+ selector: 'lib-windows-plus-utilities',
31
+ template: `
32
+ <p>
33
+ windows-plus-utilities works!
34
+ </p>
35
+ `,
36
+ styles: []
37
+ }]
38
+ }], ctorParameters: function () { return []; } });
39
+
40
+ class WindowsPlusUtilitiesModule {
41
+ }
42
+ WindowsPlusUtilitiesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
43
+ WindowsPlusUtilitiesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, declarations: [WindowsPlusUtilitiesComponent], exports: [WindowsPlusUtilitiesComponent] });
44
+ WindowsPlusUtilitiesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, imports: [[]] });
45
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, decorators: [{
46
+ type: NgModule,
47
+ args: [{
48
+ declarations: [
49
+ WindowsPlusUtilitiesComponent
50
+ ],
51
+ imports: [],
52
+ exports: [
53
+ WindowsPlusUtilitiesComponent
54
+ ]
55
+ }]
56
+ }] });
57
+
58
+ /*
59
+ * Public API Surface of windows-plus-utilities
60
+ */
61
+
62
+ /**
63
+ * Generated bundle index. Do not edit.
64
+ */
65
+
66
+ export { WindowsPlusUtilitiesComponent, WindowsPlusUtilitiesModule, WindowsPlusUtilitiesService };
67
+ //# sourceMappingURL=windows-plus-utilities.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"windows-plus-utilities.mjs","sources":["../../../projects/windows-plus-utilities/src/lib/windows-plus-utilities.service.ts","../../../projects/windows-plus-utilities/src/lib/windows-plus-utilities.component.ts","../../../projects/windows-plus-utilities/src/lib/windows-plus-utilities.module.ts","../../../projects/windows-plus-utilities/src/public-api.ts","../../../projects/windows-plus-utilities/src/windows-plus-utilities.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class WindowsPlusUtilitiesService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-windows-plus-utilities',\n template: `\n <p>\n windows-plus-utilities works!\n </p>\n `,\n styles: [\n ]\n})\nexport class WindowsPlusUtilitiesComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { WindowsPlusUtilitiesComponent } from './windows-plus-utilities.component';\n\n\n\n@NgModule({\n declarations: [\n WindowsPlusUtilitiesComponent\n ],\n imports: [\n ],\n exports: [\n WindowsPlusUtilitiesComponent\n ]\n})\nexport class WindowsPlusUtilitiesModule { }\n","/*\n * Public API Surface of windows-plus-utilities\n */\n\nexport * from './lib/windows-plus-utilities.service';\nexport * from './lib/windows-plus-utilities.component';\nexport * from './lib/windows-plus-utilities.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,2BAA2B,CAAA;AAEtC,IAAA,WAAA,GAAA,GAAiB;;wHAFN,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAA3B,2BAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,2BAA2B,cAF1B,MAAM,EAAA,CAAA,CAAA;2FAEP,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBAHvC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;iBACnB,CAAA;;;MCQY,6BAA6B,CAAA;AAExC,IAAA,WAAA,GAAA,GAAiB;IAEjB,QAAQ,GAAA;KACP;;0HALU,6BAA6B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA7B,6BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,6BAA6B,EAR9B,QAAA,EAAA,4BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAIU,6BAA6B,EAAA,UAAA,EAAA,CAAA;kBAVzC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,4BAA4B;AACtC,oBAAA,QAAQ,EAAE,CAAA;;;;AAIT,EAAA,CAAA;AACD,oBAAA,MAAM,EAAE,EACP;iBACF,CAAA;;;MCIY,0BAA0B,CAAA;;uHAA1B,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;wHAA1B,0BAA0B,EAAA,YAAA,EAAA,CARnC,6BAA6B,CAAA,EAAA,OAAA,EAAA,CAK7B,6BAA6B,CAAA,EAAA,CAAA,CAAA;AAGpB,0BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,0BAA0B,YAN5B,EACR,CAAA,EAAA,CAAA,CAAA;2FAKU,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBAVtC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,6BAA6B;AAC9B,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP,6BAA6B;AAC9B,qBAAA;iBACF,CAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;"}
@@ -0,0 +1,63 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, Input, NgModule } from '@angular/core';
3
+ import * as i1 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+
6
+ class CustomCardComponent {
7
+ /**
8
+ * @description class constructor specifying the required properties and services
9
+ */
10
+ constructor() { }
11
+ /**
12
+ * @description the method to be run when the component is loaded
13
+ */
14
+ ngOnInit() {
15
+ }
16
+ }
17
+ CustomCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
18
+ CustomCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: CustomCardComponent, selector: "wp-custom-card", inputs: { id: "id", active: "active", handleClick: "handleClick", label: "label" }, ngImport: i0, template: "<div>\n\t<div \n\t\t[id]=\"id\"\n\t\tclass=\"custom-card\"\n\t\t[ngClass]=\"{'active': active}\"\n\t\t(click)=\"handleClick(id)\"\n\t>\n\t\t<div class=\"overlay\"></div>\n\t\t<div class=\"card-header\">\n\t\t\t<div class=\"card-title\">\n\t\t\t\t{{label}}\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>", styles: [""], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardComponent, decorators: [{
20
+ type: Component,
21
+ args: [{ selector: 'wp-custom-card', template: "<div>\n\t<div \n\t\t[id]=\"id\"\n\t\tclass=\"custom-card\"\n\t\t[ngClass]=\"{'active': active}\"\n\t\t(click)=\"handleClick(id)\"\n\t>\n\t\t<div class=\"overlay\"></div>\n\t\t<div class=\"card-header\">\n\t\t\t<div class=\"card-title\">\n\t\t\t\t{{label}}\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>", styles: [""] }]
22
+ }], ctorParameters: function () { return []; }, propDecorators: { id: [{
23
+ type: Input
24
+ }], active: [{
25
+ type: Input
26
+ }], handleClick: [{
27
+ type: Input
28
+ }], label: [{
29
+ type: Input
30
+ }] } });
31
+
32
+ class CustomCardModule {
33
+ }
34
+ CustomCardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
35
+ CustomCardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, declarations: [CustomCardComponent], imports: [CommonModule], exports: [CustomCardComponent] });
36
+ CustomCardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, imports: [[
37
+ CommonModule
38
+ ]] });
39
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CustomCardModule, decorators: [{
40
+ type: NgModule,
41
+ args: [{
42
+ declarations: [
43
+ CustomCardComponent
44
+ ],
45
+ imports: [
46
+ CommonModule
47
+ ],
48
+ exports: [
49
+ CustomCardComponent
50
+ ]
51
+ }]
52
+ }] });
53
+
54
+ /*
55
+ * Public API Surface of windows-plus-utilities
56
+ */
57
+
58
+ /**
59
+ * Generated bundle index. Do not edit.
60
+ */
61
+
62
+ export { CustomCardComponent, CustomCardModule };
63
+ //# sourceMappingURL=windows-plus-utilities-custom-card.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"windows-plus-utilities-custom-card.mjs","sources":["../../../projects/windows-plus-utilities/custom-card/components/custom-card/custom-card.component.ts","../../../projects/windows-plus-utilities/custom-card/components/custom-card/custom-card.component.html","../../../projects/windows-plus-utilities/custom-card/custom-card.module.ts","../../../projects/windows-plus-utilities/custom-card/public-api.ts","../../../projects/windows-plus-utilities/custom-card/windows-plus-utilities-custom-card.ts"],"sourcesContent":["import { Component, Input, OnInit } from '@angular/core';\n\n@Component({\n selector: 'wp-custom-card',\n templateUrl: './custom-card.component.html',\n styleUrls: ['./custom-card.component.css']\n})\nexport class CustomCardComponent implements OnInit {\n\t/**\n\t * @description the cards HTML element identifier\n\t */\n\t@Input() id: string\n\t/**\n\t * @description whether the card is the active card\n\t */\n\t@Input() active: boolean\n\t/**\n\t * @description the method to be run when the card is clicked\n\t */\n\t@Input() handleClick: (...args: any[]) => void\n\t/**\n\t * @description the value to be displayed in the card\n\t */\n\t@Input() label: string\n\t/**\n\t * @description class constructor specifying the required properties and services\n\t */\n constructor() { }\n\t/**\n\t * @description the method to be run when the component is loaded\n\t */\n ngOnInit(): void {\n }\n}\n","<div>\n\t<div \n\t\t[id]=\"id\"\n\t\tclass=\"custom-card\"\n\t\t[ngClass]=\"{'active': active}\"\n\t\t(click)=\"handleClick(id)\"\n\t>\n\t\t<div class=\"overlay\"></div>\n\t\t<div class=\"card-header\">\n\t\t\t<div class=\"card-title\">\n\t\t\t\t{{label}}\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { CustomCardComponent } from './components/custom-card/custom-card.component';\n\n\n\n@NgModule({\n declarations: [\n CustomCardComponent\n ],\n imports: [\n CommonModule\n ],\n exports: [\n CustomCardComponent\n ]\n})\nexport class CustomCardModule { }\n","/*\n * Public API Surface of windows-plus-utilities\n */\n\nexport * from './components/custom-card/custom-card.component';\nexport * from './util/interface/config/custom-card-config.interface';\nexport * from './custom-card.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MAOa,mBAAmB,CAAA;AAiB/B;;AAEG;AACF,IAAA,WAAA,GAAA,GAAiB;AAClB;;AAEG;IACF,QAAQ,GAAA;KACP;;gHAzBU,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAnB,mBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,0ICPhC,6SAcM,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,UAAA,EAAA,CAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;2FDPO,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAL/B,SAAS;+BACE,gBAAgB,EAAA,QAAA,EAAA,6SAAA,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA;0EAQlB,EAAE,EAAA,CAAA;sBAAV,KAAK;gBAIG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAIG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBAIG,KAAK,EAAA,CAAA;sBAAb,KAAK;;;MENM,gBAAgB,CAAA;;6GAAhB,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAhB,gBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gBAAgB,EATzB,YAAA,EAAA,CAAA,mBAAmB,CAGnB,EAAA,OAAA,EAAA,CAAA,YAAY,aAGZ,mBAAmB,CAAA,EAAA,CAAA,CAAA;AAGV,gBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gBAAgB,EAPlB,OAAA,EAAA,CAAA;YACP,YAAY;AACb,SAAA,CAAA,EAAA,CAAA,CAAA;2FAKU,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAX5B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,mBAAmB;AACpB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,YAAY;AACb,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,mBAAmB;AACpB,qBAAA;AACF,iBAAA,CAAA;;;AChBD;;AAEG;;ACFH;;AAEG;;;;"}
@@ -0,0 +1,67 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Injectable, Component, NgModule } from '@angular/core';
3
+
4
+ class WindowsPlusUtilitiesService {
5
+ constructor() { }
6
+ }
7
+ WindowsPlusUtilitiesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8
+ WindowsPlusUtilitiesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesService, providedIn: 'root' });
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesService, decorators: [{
10
+ type: Injectable,
11
+ args: [{
12
+ providedIn: 'root'
13
+ }]
14
+ }], ctorParameters: function () { return []; } });
15
+
16
+ class WindowsPlusUtilitiesComponent {
17
+ constructor() { }
18
+ ngOnInit() {
19
+ }
20
+ }
21
+ WindowsPlusUtilitiesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
22
+ WindowsPlusUtilitiesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: WindowsPlusUtilitiesComponent, selector: "lib-windows-plus-utilities", ngImport: i0, template: `
23
+ <p>
24
+ windows-plus-utilities works!
25
+ </p>
26
+ `, isInline: true });
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesComponent, decorators: [{
28
+ type: Component,
29
+ args: [{
30
+ selector: 'lib-windows-plus-utilities',
31
+ template: `
32
+ <p>
33
+ windows-plus-utilities works!
34
+ </p>
35
+ `,
36
+ styles: []
37
+ }]
38
+ }], ctorParameters: function () { return []; } });
39
+
40
+ class WindowsPlusUtilitiesModule {
41
+ }
42
+ WindowsPlusUtilitiesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
43
+ WindowsPlusUtilitiesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, declarations: [WindowsPlusUtilitiesComponent], exports: [WindowsPlusUtilitiesComponent] });
44
+ WindowsPlusUtilitiesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, imports: [[]] });
45
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: WindowsPlusUtilitiesModule, decorators: [{
46
+ type: NgModule,
47
+ args: [{
48
+ declarations: [
49
+ WindowsPlusUtilitiesComponent
50
+ ],
51
+ imports: [],
52
+ exports: [
53
+ WindowsPlusUtilitiesComponent
54
+ ]
55
+ }]
56
+ }] });
57
+
58
+ /*
59
+ * Public API Surface of windows-plus-utilities
60
+ */
61
+
62
+ /**
63
+ * Generated bundle index. Do not edit.
64
+ */
65
+
66
+ export { WindowsPlusUtilitiesComponent, WindowsPlusUtilitiesModule, WindowsPlusUtilitiesService };
67
+ //# sourceMappingURL=windows-plus-utilities.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"windows-plus-utilities.mjs","sources":["../../../projects/windows-plus-utilities/src/lib/windows-plus-utilities.service.ts","../../../projects/windows-plus-utilities/src/lib/windows-plus-utilities.component.ts","../../../projects/windows-plus-utilities/src/lib/windows-plus-utilities.module.ts","../../../projects/windows-plus-utilities/src/public-api.ts","../../../projects/windows-plus-utilities/src/windows-plus-utilities.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class WindowsPlusUtilitiesService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-windows-plus-utilities',\n template: `\n <p>\n windows-plus-utilities works!\n </p>\n `,\n styles: [\n ]\n})\nexport class WindowsPlusUtilitiesComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { WindowsPlusUtilitiesComponent } from './windows-plus-utilities.component';\n\n\n\n@NgModule({\n declarations: [\n WindowsPlusUtilitiesComponent\n ],\n imports: [\n ],\n exports: [\n WindowsPlusUtilitiesComponent\n ]\n})\nexport class WindowsPlusUtilitiesModule { }\n","/*\n * Public API Surface of windows-plus-utilities\n */\n\nexport * from './lib/windows-plus-utilities.service';\nexport * from './lib/windows-plus-utilities.component';\nexport * from './lib/windows-plus-utilities.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,2BAA2B,CAAA;AAEtC,IAAA,WAAA,GAAA,GAAiB;;wHAFN,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAA3B,2BAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,2BAA2B,cAF1B,MAAM,EAAA,CAAA,CAAA;2FAEP,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBAHvC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA,CAAA;;;MCQY,6BAA6B,CAAA;AAExC,IAAA,WAAA,GAAA,GAAiB;IAEjB,QAAQ,GAAA;KACP;;0HALU,6BAA6B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA7B,6BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,6BAA6B,EAR9B,QAAA,EAAA,4BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAIU,6BAA6B,EAAA,UAAA,EAAA,CAAA;kBAVzC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,4BAA4B;AACtC,oBAAA,QAAQ,EAAE,CAAA;;;;AAIT,EAAA,CAAA;AACD,oBAAA,MAAM,EAAE,EACP;AACF,iBAAA,CAAA;;;MCIY,0BAA0B,CAAA;;uHAA1B,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;wHAA1B,0BAA0B,EAAA,YAAA,EAAA,CARnC,6BAA6B,CAAA,EAAA,OAAA,EAAA,CAK7B,6BAA6B,CAAA,EAAA,CAAA,CAAA;AAGpB,0BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,0BAA0B,YAN5B,EACR,CAAA,EAAA,CAAA,CAAA;2FAKU,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBAVtC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,6BAA6B;AAC9B,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP,6BAA6B;AAC9B,qBAAA;AACF,iBAAA,CAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;"}
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class WindowsPlusUtilitiesComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowsPlusUtilitiesComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<WindowsPlusUtilitiesComponent, "lib-windows-plus-utilities", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./windows-plus-utilities.component";
3
+ export declare class WindowsPlusUtilitiesModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowsPlusUtilitiesModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<WindowsPlusUtilitiesModule, [typeof i1.WindowsPlusUtilitiesComponent], never, [typeof i1.WindowsPlusUtilitiesComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<WindowsPlusUtilitiesModule>;
7
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class WindowsPlusUtilitiesService {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowsPlusUtilitiesService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDeclaration<WindowsPlusUtilitiesService>;
6
+ }
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "windows-plus-utilities",
3
+ "version": "0.0.1",
4
+ "peerDependencies": {
5
+ "@angular/common": "^13.1.0",
6
+ "@angular/core": "^13.1.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "module": "fesm2015/windows-plus-utilities.mjs",
12
+ "es2020": "fesm2020/windows-plus-utilities.mjs",
13
+ "esm2020": "esm2020/windows-plus-utilities.mjs",
14
+ "fesm2020": "fesm2020/windows-plus-utilities.mjs",
15
+ "fesm2015": "fesm2015/windows-plus-utilities.mjs",
16
+ "typings": "windows-plus-utilities.d.ts",
17
+ "exports": {
18
+ "./package.json": {
19
+ "default": "./package.json"
20
+ },
21
+ ".": {
22
+ "types": "./windows-plus-utilities.d.ts",
23
+ "esm2020": "./esm2020/windows-plus-utilities.mjs",
24
+ "es2020": "./fesm2020/windows-plus-utilities.mjs",
25
+ "es2015": "./fesm2015/windows-plus-utilities.mjs",
26
+ "node": "./fesm2015/windows-plus-utilities.mjs",
27
+ "default": "./fesm2020/windows-plus-utilities.mjs"
28
+ },
29
+ "./custom-card": {
30
+ "types": "./custom-card/windows-plus-utilities-custom-card.d.ts",
31
+ "esm2020": "./esm2020/custom-card/windows-plus-utilities-custom-card.mjs",
32
+ "es2020": "./fesm2020/windows-plus-utilities-custom-card.mjs",
33
+ "es2015": "./fesm2015/windows-plus-utilities-custom-card.mjs",
34
+ "node": "./fesm2015/windows-plus-utilities-custom-card.mjs",
35
+ "default": "./fesm2020/windows-plus-utilities-custom-card.mjs"
36
+ }
37
+ },
38
+ "sideEffects": false
39
+ }
@@ -0,0 +1,3 @@
1
+ export * from './lib/windows-plus-utilities.service';
2
+ export * from './lib/windows-plus-utilities.component';
3
+ export * from './lib/windows-plus-utilities.module';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="windows-plus-utilities" />
5
+ export * from './public-api';