button-workspace 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.
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # ButtonWorkspace
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 11.2.14.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project button-workspace` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project button-workspace`.
8
+ > Note: Don't forget to add `--project button-workspace` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build button-workspace` 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 button-workspace`, go to the dist folder `cd dist/button-workspace` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test button-workspace` 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,67 @@
1
+ (function (global, factory) {
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core')) :
3
+ typeof define === 'function' && define.amd ? define('button-workspace', ['exports', '@angular/core'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global['button-workspace'] = {}, global.ng.core));
5
+ }(this, (function (exports, i0) { 'use strict';
6
+
7
+ var ButtonWorkspaceService = /** @class */ (function () {
8
+ function ButtonWorkspaceService() {
9
+ }
10
+ return ButtonWorkspaceService;
11
+ }());
12
+ ButtonWorkspaceService.ɵprov = i0.ɵɵdefineInjectable({ factory: function ButtonWorkspaceService_Factory() { return new ButtonWorkspaceService(); }, token: ButtonWorkspaceService, providedIn: "root" });
13
+ ButtonWorkspaceService.decorators = [
14
+ { type: i0.Injectable, args: [{
15
+ providedIn: 'root'
16
+ },] }
17
+ ];
18
+ ButtonWorkspaceService.ctorParameters = function () { return []; };
19
+
20
+ var ButtonWorkspaceComponent = /** @class */ (function () {
21
+ function ButtonWorkspaceComponent() {
22
+ }
23
+ ButtonWorkspaceComponent.prototype.ngOnInit = function () {
24
+ };
25
+ return ButtonWorkspaceComponent;
26
+ }());
27
+ ButtonWorkspaceComponent.decorators = [
28
+ { type: i0.Component, args: [{
29
+ selector: 'lib-button-workspace',
30
+ template: "\n <p>\n button-workspace works!\n </p>\n "
31
+ },] }
32
+ ];
33
+ ButtonWorkspaceComponent.ctorParameters = function () { return []; };
34
+
35
+ var ButtonWorkspaceModule = /** @class */ (function () {
36
+ function ButtonWorkspaceModule() {
37
+ }
38
+ return ButtonWorkspaceModule;
39
+ }());
40
+ ButtonWorkspaceModule.decorators = [
41
+ { type: i0.NgModule, args: [{
42
+ declarations: [
43
+ ButtonWorkspaceComponent
44
+ ],
45
+ imports: [],
46
+ exports: [
47
+ ButtonWorkspaceComponent
48
+ ]
49
+ },] }
50
+ ];
51
+
52
+ /*
53
+ * Public API Surface of button-workspace
54
+ */
55
+
56
+ /**
57
+ * Generated bundle index. Do not edit.
58
+ */
59
+
60
+ exports.ButtonWorkspaceComponent = ButtonWorkspaceComponent;
61
+ exports.ButtonWorkspaceModule = ButtonWorkspaceModule;
62
+ exports.ButtonWorkspaceService = ButtonWorkspaceService;
63
+
64
+ Object.defineProperty(exports, '__esModule', { value: true });
65
+
66
+ })));
67
+ //# sourceMappingURL=button-workspace.umd.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"button-workspace.umd.js","sources":["../../../projects/button-workspace/src/lib/button-workspace.service.ts","../../../projects/button-workspace/src/lib/button-workspace.component.ts","../../../projects/button-workspace/src/lib/button-workspace.module.ts","../../../projects/button-workspace/src/public-api.ts","../../../projects/button-workspace/src/button-workspace.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ButtonWorkspaceService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-button-workspace',\n template: `\n <p>\n button-workspace works!\n </p>\n `,\n styles: [\n ]\n})\nexport class ButtonWorkspaceComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { ButtonWorkspaceComponent } from './button-workspace.component';\n\n\n\n@NgModule({\n declarations: [\n ButtonWorkspaceComponent\n ],\n imports: [\n ],\n exports: [\n ButtonWorkspaceComponent\n ]\n})\nexport class ButtonWorkspaceModule { }\n","/*\n * Public API Surface of button-workspace\n */\n\nexport * from './lib/button-workspace.service';\nexport * from './lib/button-workspace.component';\nexport * from './lib/button-workspace.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Injectable","Component","NgModule"],"mappings":";;;;;;;QAOE;SAAiB;;;;;gBALlBA,aAAU,SAAC;oBACV,UAAU,EAAE,MAAM;iBACnB;;;;;QCUC;SAAiB;QAEjB,2CAAQ,GAAR;SACC;;;;gBAfFC,YAAS,SAAC;oBACT,QAAQ,EAAE,sBAAsB;oBAChC,QAAQ,EAAE,wDAIT;iBAGF;;;;;QCID;;;;;gBAVCC,WAAQ,SAAC;oBACR,YAAY,EAAE;wBACZ,wBAAwB;qBACzB;oBACD,OAAO,EAAE,EACR;oBACD,OAAO,EAAE;wBACP,wBAAwB;qBACzB;iBACF;;;ICdD;;;;ICAA;;;;;;;;;;;;;;"}
@@ -0,0 +1,2 @@
1
+ !function(e,o){"object"==typeof exports&&"undefined"!=typeof module?o(exports,require("@angular/core")):"function"==typeof define&&define.amd?define("button-workspace",["exports","@angular/core"],o):o((e="undefined"!=typeof globalThis?globalThis:e||self)["button-workspace"]={},e.ng.core)}(this,(function(e,o){"use strict";var t=function(){};t.ɵprov=o.ɵɵdefineInjectable({factory:function(){return new t},token:t,providedIn:"root"}),t.decorators=[{type:o.Injectable,args:[{providedIn:"root"}]}],t.ctorParameters=function(){return[]};var n=function(){function e(){}return e.prototype.ngOnInit=function(){},e}();n.decorators=[{type:o.Component,args:[{selector:"lib-button-workspace",template:"\n <p>\n button-workspace works!\n </p>\n "}]}],n.ctorParameters=function(){return[]};var r=function(){};r.decorators=[{type:o.NgModule,args:[{declarations:[n],imports:[],exports:[n]}]}],e.ButtonWorkspaceComponent=n,e.ButtonWorkspaceModule=r,e.ButtonWorkspaceService=t,Object.defineProperty(e,"__esModule",{value:!0})}));
2
+ //# sourceMappingURL=button-workspace.umd.min.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../projects/button-workspace/src/lib/button-workspace.service.ts","../../../projects/button-workspace/src/lib/button-workspace.component.ts","../../../projects/button-workspace/src/lib/button-workspace.module.ts"],"names":["Injectable","args","providedIn","ButtonWorkspaceComponent","prototype","ngOnInit","Component","selector","template","NgModule","declarations","imports","exports"],"mappings":"yUAOE,4HALDA,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,kECWZ,SAAAC,YAEAA,EAAAC,UAAAC,SAAA,sCAdDC,EAAAA,UAASL,KAAA,CAAC,CACTM,SAAU,uBACVC,SAAU,yGCWZ,iCAVCC,EAAAA,SAAQR,KAAA,CAAC,CACRS,aAAc,CACZP,GAEFQ,QAAS,GAETC,QAAS,CACPT","sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ButtonWorkspaceService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-button-workspace',\n template: `\n <p>\n button-workspace works!\n </p>\n `,\n styles: [\n ]\n})\nexport class ButtonWorkspaceComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { ButtonWorkspaceComponent } from './button-workspace.component';\n\n\n\n@NgModule({\n declarations: [\n ButtonWorkspaceComponent\n ],\n imports: [\n ],\n exports: [\n ButtonWorkspaceComponent\n ]\n})\nexport class ButtonWorkspaceModule { }\n"]}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=button-workspace.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"button-workspace.d.ts","sourceRoot":"","sources":["../../projects/button-workspace/src/button-workspace.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,cAAc,CAAC"}
@@ -0,0 +1 @@
1
+ {"__symbolic":"module","version":4,"metadata":{"ButtonWorkspaceService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":2,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]},"statics":{"ɵprov":{}}},"ButtonWorkspaceComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-button-workspace","template":"\n <p>\n button-workspace works!\n </p>\n ","styles":[]}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}],"ngOnInit":[{"__symbolic":"method"}]}},"ButtonWorkspaceModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":5,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"ButtonWorkspaceComponent"}],"imports":[],"exports":[{"__symbolic":"reference","name":"ButtonWorkspaceComponent"}]}]}],"members":{}}},"origins":{"ButtonWorkspaceService":"./lib/button-workspace.service","ButtonWorkspaceComponent":"./lib/button-workspace.component","ButtonWorkspaceModule":"./lib/button-workspace.module"},"importAs":"button-workspace"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXdvcmtzcGFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2J1dHRvbi13b3Jrc3BhY2Uvc3JjL2J1dHRvbi13b3Jrc3BhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,18 @@
1
+ import { Component } from '@angular/core';
2
+ export class ButtonWorkspaceComponent {
3
+ constructor() { }
4
+ ngOnInit() {
5
+ }
6
+ }
7
+ ButtonWorkspaceComponent.decorators = [
8
+ { type: Component, args: [{
9
+ selector: 'lib-button-workspace',
10
+ template: `
11
+ <p>
12
+ button-workspace works!
13
+ </p>
14
+ `
15
+ },] }
16
+ ];
17
+ ButtonWorkspaceComponent.ctorParameters = () => [];
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXdvcmtzcGFjZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9idXR0b24td29ya3NwYWNlL3NyYy9saWIvYnV0dG9uLXdvcmtzcGFjZS5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQVlsRCxNQUFNLE9BQU8sd0JBQXdCO0lBRW5DLGdCQUFnQixDQUFDO0lBRWpCLFFBQVE7SUFDUixDQUFDOzs7WUFmRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHNCQUFzQjtnQkFDaEMsUUFBUSxFQUFFOzs7O0dBSVQ7YUFHRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1idXR0b24td29ya3NwYWNlJyxcbiAgdGVtcGxhdGU6IGBcbiAgICA8cD5cbiAgICAgIGJ1dHRvbi13b3Jrc3BhY2Ugd29ya3MhXG4gICAgPC9wPlxuICBgLFxuICBzdHlsZXM6IFtcbiAgXVxufSlcbmV4cG9ydCBjbGFzcyBCdXR0b25Xb3Jrc3BhY2VDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gIH1cblxufVxuIl19
@@ -0,0 +1,16 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { ButtonWorkspaceComponent } from './button-workspace.component';
3
+ export class ButtonWorkspaceModule {
4
+ }
5
+ ButtonWorkspaceModule.decorators = [
6
+ { type: NgModule, args: [{
7
+ declarations: [
8
+ ButtonWorkspaceComponent
9
+ ],
10
+ imports: [],
11
+ exports: [
12
+ ButtonWorkspaceComponent
13
+ ]
14
+ },] }
15
+ ];
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXdvcmtzcGFjZS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9idXR0b24td29ya3NwYWNlL3NyYy9saWIvYnV0dG9uLXdvcmtzcGFjZS5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQWN4RSxNQUFNLE9BQU8scUJBQXFCOzs7WUFWakMsUUFBUSxTQUFDO2dCQUNSLFlBQVksRUFBRTtvQkFDWix3QkFBd0I7aUJBQ3pCO2dCQUNELE9BQU8sRUFBRSxFQUNSO2dCQUNELE9BQU8sRUFBRTtvQkFDUCx3QkFBd0I7aUJBQ3pCO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQnV0dG9uV29ya3NwYWNlQ29tcG9uZW50IH0gZnJvbSAnLi9idXR0b24td29ya3NwYWNlLmNvbXBvbmVudCc7XG5cblxuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBCdXR0b25Xb3Jrc3BhY2VDb21wb25lbnRcbiAgXSxcbiAgaW1wb3J0czogW1xuICBdLFxuICBleHBvcnRzOiBbXG4gICAgQnV0dG9uV29ya3NwYWNlQ29tcG9uZW50XG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgQnV0dG9uV29ya3NwYWNlTW9kdWxlIHsgfVxuIl19
@@ -0,0 +1,13 @@
1
+ import { Injectable } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class ButtonWorkspaceService {
4
+ constructor() { }
5
+ }
6
+ ButtonWorkspaceService.ɵprov = i0.ɵɵdefineInjectable({ factory: function ButtonWorkspaceService_Factory() { return new ButtonWorkspaceService(); }, token: ButtonWorkspaceService, providedIn: "root" });
7
+ ButtonWorkspaceService.decorators = [
8
+ { type: Injectable, args: [{
9
+ providedIn: 'root'
10
+ },] }
11
+ ];
12
+ ButtonWorkspaceService.ctorParameters = () => [];
13
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXdvcmtzcGFjZS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvYnV0dG9uLXdvcmtzcGFjZS9zcmMvbGliL2J1dHRvbi13b3Jrc3BhY2Uuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8sc0JBQXNCO0lBRWpDLGdCQUFnQixDQUFDOzs7O1lBTGxCLFVBQVUsU0FBQztnQkFDVixVQUFVLEVBQUUsTUFBTTthQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgQnV0dG9uV29ya3NwYWNlU2VydmljZSB7XG5cbiAgY29uc3RydWN0b3IoKSB7IH1cbn1cbiJdfQ==
@@ -0,0 +1,7 @@
1
+ /*
2
+ * Public API Surface of button-workspace
3
+ */
4
+ export * from './lib/button-workspace.service';
5
+ export * from './lib/button-workspace.component';
6
+ export * from './lib/button-workspace.module';
7
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2J1dHRvbi13b3Jrc3BhY2Uvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsa0NBQWtDLENBQUM7QUFDakQsY0FBYywrQkFBK0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2YgYnV0dG9uLXdvcmtzcGFjZVxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vbGliL2J1dHRvbi13b3Jrc3BhY2Uuc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b24td29ya3NwYWNlLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9idXR0b24td29ya3NwYWNlLm1vZHVsZSc7XG4iXX0=
@@ -0,0 +1,54 @@
1
+ import { ɵɵdefineInjectable, Injectable, Component, NgModule } from '@angular/core';
2
+
3
+ class ButtonWorkspaceService {
4
+ constructor() { }
5
+ }
6
+ ButtonWorkspaceService.ɵprov = ɵɵdefineInjectable({ factory: function ButtonWorkspaceService_Factory() { return new ButtonWorkspaceService(); }, token: ButtonWorkspaceService, providedIn: "root" });
7
+ ButtonWorkspaceService.decorators = [
8
+ { type: Injectable, args: [{
9
+ providedIn: 'root'
10
+ },] }
11
+ ];
12
+ ButtonWorkspaceService.ctorParameters = () => [];
13
+
14
+ class ButtonWorkspaceComponent {
15
+ constructor() { }
16
+ ngOnInit() {
17
+ }
18
+ }
19
+ ButtonWorkspaceComponent.decorators = [
20
+ { type: Component, args: [{
21
+ selector: 'lib-button-workspace',
22
+ template: `
23
+ <p>
24
+ button-workspace works!
25
+ </p>
26
+ `
27
+ },] }
28
+ ];
29
+ ButtonWorkspaceComponent.ctorParameters = () => [];
30
+
31
+ class ButtonWorkspaceModule {
32
+ }
33
+ ButtonWorkspaceModule.decorators = [
34
+ { type: NgModule, args: [{
35
+ declarations: [
36
+ ButtonWorkspaceComponent
37
+ ],
38
+ imports: [],
39
+ exports: [
40
+ ButtonWorkspaceComponent
41
+ ]
42
+ },] }
43
+ ];
44
+
45
+ /*
46
+ * Public API Surface of button-workspace
47
+ */
48
+
49
+ /**
50
+ * Generated bundle index. Do not edit.
51
+ */
52
+
53
+ export { ButtonWorkspaceComponent, ButtonWorkspaceModule, ButtonWorkspaceService };
54
+ //# sourceMappingURL=button-workspace.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"button-workspace.js","sources":["../../../projects/button-workspace/src/lib/button-workspace.service.ts","../../../projects/button-workspace/src/lib/button-workspace.component.ts","../../../projects/button-workspace/src/lib/button-workspace.module.ts","../../../projects/button-workspace/src/public-api.ts","../../../projects/button-workspace/src/button-workspace.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ButtonWorkspaceService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-button-workspace',\n template: `\n <p>\n button-workspace works!\n </p>\n `,\n styles: [\n ]\n})\nexport class ButtonWorkspaceComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { ButtonWorkspaceComponent } from './button-workspace.component';\n\n\n\n@NgModule({\n declarations: [\n ButtonWorkspaceComponent\n ],\n imports: [\n ],\n exports: [\n ButtonWorkspaceComponent\n ]\n})\nexport class ButtonWorkspaceModule { }\n","/*\n * Public API Surface of button-workspace\n */\n\nexport * from './lib/button-workspace.service';\nexport * from './lib/button-workspace.component';\nexport * from './lib/button-workspace.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;MAKa,sBAAsB;IAEjC,iBAAiB;;;;YALlB,UAAU,SAAC;gBACV,UAAU,EAAE,MAAM;aACnB;;;;MCQY,wBAAwB;IAEnC,iBAAiB;IAEjB,QAAQ;KACP;;;YAfF,SAAS,SAAC;gBACT,QAAQ,EAAE,sBAAsB;gBAChC,QAAQ,EAAE;;;;GAIT;aAGF;;;;MCIY,qBAAqB;;;YAVjC,QAAQ,SAAC;gBACR,YAAY,EAAE;oBACZ,wBAAwB;iBACzB;gBACD,OAAO,EAAE,EACR;gBACD,OAAO,EAAE;oBACP,wBAAwB;iBACzB;aACF;;;ACdD;;;;ACAA;;;;;;"}
@@ -0,0 +1,6 @@
1
+ import { OnInit } from '@angular/core';
2
+ export declare class ButtonWorkspaceComponent implements OnInit {
3
+ constructor();
4
+ ngOnInit(): void;
5
+ }
6
+ //# sourceMappingURL=button-workspace.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"button-workspace.component.d.ts","sourceRoot":"","sources":["../../../projects/button-workspace/src/lib/button-workspace.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAElD,qBAUa,wBAAyB,YAAW,MAAM;;IAIrD,QAAQ,IAAI,IAAI;CAGjB"}
@@ -0,0 +1,3 @@
1
+ export declare class ButtonWorkspaceModule {
2
+ }
3
+ //# sourceMappingURL=button-workspace.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"button-workspace.module.d.ts","sourceRoot":"","sources":["../../../projects/button-workspace/src/lib/button-workspace.module.ts"],"names":[],"mappings":"AAKA,qBAUa,qBAAqB;CAAI"}
@@ -0,0 +1,4 @@
1
+ export declare class ButtonWorkspaceService {
2
+ constructor();
3
+ }
4
+ //# sourceMappingURL=button-workspace.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"button-workspace.service.d.ts","sourceRoot":"","sources":["../../../projects/button-workspace/src/lib/button-workspace.service.ts"],"names":[],"mappings":"AAEA,qBAGa,sBAAsB;;CAGlC"}
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "button-workspace",
3
+ "version": "0.0.1",
4
+ "peerDependencies": {
5
+ "@angular/common": "^11.2.14",
6
+ "@angular/core": "^11.2.14"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.0.0"
10
+ },
11
+ "main": "bundles/button-workspace.umd.js",
12
+ "module": "fesm2015/button-workspace.js",
13
+ "es2015": "fesm2015/button-workspace.js",
14
+ "esm2015": "esm2015/button-workspace.js",
15
+ "fesm2015": "fesm2015/button-workspace.js",
16
+ "typings": "button-workspace.d.ts",
17
+ "metadata": "button-workspace.metadata.json",
18
+ "sideEffects": false
19
+ }
@@ -0,0 +1,4 @@
1
+ export * from './lib/button-workspace.service';
2
+ export * from './lib/button-workspace.component';
3
+ export * from './lib/button-workspace.module';
4
+ //# sourceMappingURL=public-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../projects/button-workspace/src/public-api.ts"],"names":[],"mappings":"AAIA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kCAAkC,CAAC;AACjD,cAAc,+BAA+B,CAAC"}