carbon-components-angular 3.1.1 → 3.2.0

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 (22) hide show
  1. package/bundle/carbon-angular.umd.js +1 -1
  2. package/bundle/carbon-angular.umd.js.map +1 -1
  3. package/docs/documentation/components/TagFilter.html +52 -3
  4. package/docs/documentation/coverage.html +4 -4
  5. package/docs/documentation/js/search/search_index.js +2 -2
  6. package/docs/storybook/iframe.html +3 -3
  7. package/docs/storybook/{main.eb15c0da383acd1e5ab9.bundle.js → main.cc3329d0f31a1601a8eb.bundle.js} +12 -3
  8. package/docs/storybook/main.cc3329d0f31a1601a8eb.bundle.js.map +1 -0
  9. package/docs/storybook/{runtime~main.eb15c0da383acd1e5ab9.bundle.js → runtime~main.cc3329d0f31a1601a8eb.bundle.js} +1 -1
  10. package/docs/storybook/{runtime~main.eb15c0da383acd1e5ab9.bundle.js.map → runtime~main.cc3329d0f31a1601a8eb.bundle.js.map} +1 -1
  11. package/docs/storybook/{vendors~main.eb15c0da383acd1e5ab9.bundle.js → vendors~main.cc3329d0f31a1601a8eb.bundle.js} +1 -1
  12. package/docs/storybook/{vendors~main.eb15c0da383acd1e5ab9.bundle.js.map → vendors~main.cc3329d0f31a1601a8eb.bundle.js.map} +1 -1
  13. package/package.json +1 -1
  14. package/tag/tag-filter.component.d.ts +5 -0
  15. package/tag/tag-filter.component.js +9 -3
  16. package/tag/tag-filter.component.js.map +1 -1
  17. package/tag/tag-filter.component.metadata.json +1 -1
  18. package/tag/tag-filter.component.ngfactory.js +5 -2
  19. package/tag/tag-filter.component.ngfactory.js.map +1 -1
  20. package/tag/tag-filter.component.ngsummary.json +1 -1
  21. package/tag/tag.module.ngfactory.js.map +1 -1
  22. package/docs/storybook/main.eb15c0da383acd1e5ab9.bundle.js.map +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carbon-components-angular",
3
- "version": "3.1.1",
3
+ "version": "3.2.0",
4
4
  "description": "Next generation components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -18,7 +18,12 @@
18
18
  */
19
19
 
20
20
 
21
+ import { EventEmitter } from "@angular/core";
21
22
  import { Tag } from "./tag.component";
22
23
  export declare class TagFilter extends Tag {
24
+ /**
25
+ * Function for close/delete the tag
26
+ */
27
+ close: EventEmitter<any>;
23
28
  readonly attrClass: string;
24
29
  }
@@ -28,12 +28,17 @@ var __extends = (this && this.__extends) || (function () {
28
28
  d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29
29
  };
30
30
  })();
31
- import { Component, HostBinding } from "@angular/core";
31
+ import { Component, Output, EventEmitter, HostBinding } from "@angular/core";
32
32
  import { Tag } from "./tag.component";
33
33
  var TagFilter = /** @class */ (function (_super) {
34
34
  __extends(TagFilter, _super);
35
35
  function TagFilter() {
36
- return _super !== null && _super.apply(this, arguments) || this;
36
+ var _this = _super !== null && _super.apply(this, arguments) || this;
37
+ /**
38
+ * Function for close/delete the tag
39
+ */
40
+ _this.close = new EventEmitter();
41
+ return _this;
37
42
  }
38
43
  Object.defineProperty(TagFilter.prototype, "attrClass", {
39
44
  get: function () {
@@ -45,10 +50,11 @@ var TagFilter = /** @class */ (function (_super) {
45
50
  TagFilter.decorators = [
46
51
  { type: Component, args: [{
47
52
  selector: "ibm-tag-filter",
48
- template: "\n\t\t<ng-content></ng-content>\n\t\t<svg\n\t\t\tfocusable=\"false\"\n\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\tstyle=\"will-change: transform;\"\n\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\taria-label=\"Clear filter\"\n\t\t\twidth=\"16\"\n\t\t\theight=\"16\"\n\t\t\tviewBox=\"0 0 16 16\"\n\t\t\trole=\"img\">\n\t\t\t<path d=\"M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z\"></path>\n\t\t</svg>\n\t"
53
+ template: "\n\t\t<ng-content></ng-content>\n\t\t<svg\n\t\t\t(click)=\"close.emit()\"\n\t\t\tfocusable=\"false\"\n\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\tstyle=\"will-change: transform;\"\n\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\taria-label=\"Clear filter\"\n\t\t\twidth=\"16\"\n\t\t\theight=\"16\"\n\t\t\tviewBox=\"0 0 16 16\"\n\t\t\trole=\"img\">\n\t\t\t<path d=\"M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z\"></path>\n\t\t</svg>\n\t"
49
54
  },] },
50
55
  ];
51
56
  TagFilter.propDecorators = {
57
+ close: [{ type: Output }],
52
58
  attrClass: [{ type: HostBinding, args: ["attr.class",] }]
53
59
  };
54
60
  return TagFilter;
@@ -1 +1 @@
1
- {"version":3,"file":"tag-filter.component.js","sourceRoot":"","sources":["../src/tag/tag-filter.component.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACvD,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AAEtC;IAkB+B,6BAAG;IAlBlC;;IAsBA,CAAC;IAHA,sBAA+B,gCAAS;aAAxC;YACC,OAAO,sCAAoC,IAAI,CAAC,IAAI,SAAI,IAAI,CAAC,KAAO,CAAC;QACtE,CAAC;;;OAAA;;gBArBD,SAAS,SAAC;oBACV,QAAQ,EAAE,gBAAgB;oBAC1B,QAAQ,EAAE,8bAcT;iBACD;;;4BAEC,WAAW,SAAC,YAAY;;IAG1B,gBAAC;CAAA,AAtBD,CAkB+B,GAAG,GAIjC;SAJY,SAAS","sourcesContent":["import { Component, HostBinding } from \"@angular/core\";\nimport { Tag } from \"./tag.component\";\n\n@Component({\n\tselector: \"ibm-tag-filter\",\n\ttemplate: `\n\t\t<ng-content></ng-content>\n\t\t<svg\n\t\t\tfocusable=\"false\"\n\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\tstyle=\"will-change: transform;\"\n\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\taria-label=\"Clear filter\"\n\t\t\twidth=\"16\"\n\t\t\theight=\"16\"\n\t\t\tviewBox=\"0 0 16 16\"\n\t\t\trole=\"img\">\n\t\t\t<path d=\"M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z\"></path>\n\t\t</svg>\n\t`\n})\nexport class TagFilter extends Tag {\n\t@HostBinding(\"attr.class\") get attrClass() {\n\t\treturn `bx--tag bx--tag--filter bx--tag--${this.type} ${this.class}`;\n\t}\n}\n"]}
1
+ {"version":3,"file":"tag-filter.component.js","sourceRoot":"","sources":["../src/tag/tag-filter.component.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,OAAO,EACN,SAAS,EACT,MAAM,EACN,YAAY,EACZ,WAAW,EACX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AAEtC;IAmB+B,6BAAG;IAnBlC;QAAA,qEA4BC;QARA;;WAEG;QACO,WAAK,GAAG,IAAI,YAAY,EAAO,CAAC;;IAK3C,CAAC;IAHA,sBAA+B,gCAAS;aAAxC;YACC,OAAO,sCAAoC,IAAI,CAAC,IAAI,SAAI,IAAI,CAAC,KAAO,CAAC;QACtE,CAAC;;;OAAA;;gBA3BD,SAAS,SAAC;oBACV,QAAQ,EAAE,gBAAgB;oBAC1B,QAAQ,EAAE,8dAeT;iBACD;;;wBAKC,MAAM;4BAEN,WAAW,SAAC,YAAY;;IAG1B,gBAAC;CAAA,AA5BD,CAmB+B,GAAG,GASjC;SATY,SAAS","sourcesContent":["import {\n\tComponent,\n\tOutput,\n\tEventEmitter,\n\tHostBinding\n} from \"@angular/core\";\nimport { Tag } from \"./tag.component\";\n\n@Component({\n\tselector: \"ibm-tag-filter\",\n\ttemplate: `\n\t\t<ng-content></ng-content>\n\t\t<svg\n\t\t\t(click)=\"close.emit()\"\n\t\t\tfocusable=\"false\"\n\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\tstyle=\"will-change: transform;\"\n\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\taria-label=\"Clear filter\"\n\t\t\twidth=\"16\"\n\t\t\theight=\"16\"\n\t\t\tviewBox=\"0 0 16 16\"\n\t\t\trole=\"img\">\n\t\t\t<path d=\"M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z\"></path>\n\t\t</svg>\n\t`\n})\nexport class TagFilter extends Tag {\n\t/**\n\t * Function for close/delete the tag\n\t */\n\t@Output() close = new EventEmitter<any>();\n\n\t@HostBinding(\"attr.class\") get attrClass() {\n\t\treturn `bx--tag bx--tag--filter bx--tag--${this.type} ${this.class}`;\n\t}\n}\n"]}
@@ -1 +1 @@
1
- [{"__symbolic":"module","version":4,"metadata":{"TagFilter":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"./tag.component","name":"Tag","line":21,"character":31},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":3,"character":1},"arguments":[{"selector":"ibm-tag-filter","template":"\n\t\t<ng-content></ng-content>\n\t\t<svg\n\t\t\tfocusable=\"false\"\n\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\tstyle=\"will-change: transform;\"\n\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\taria-label=\"Clear filter\"\n\t\t\twidth=\"16\"\n\t\t\theight=\"16\"\n\t\t\tviewBox=\"0 0 16 16\"\n\t\t\trole=\"img\">\n\t\t\t<path d=\"M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z\"></path>\n\t\t</svg>\n\t"}]}],"members":{"attrClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"HostBinding","line":22,"character":2},"arguments":["attr.class"]}]}]}}}}]
1
+ [{"__symbolic":"module","version":4,"metadata":{"TagFilter":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"./tag.component","name":"Tag","line":27,"character":31},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":8,"character":1},"arguments":[{"selector":"ibm-tag-filter","template":"\n\t\t<ng-content></ng-content>\n\t\t<svg\n\t\t\t(click)=\"close.emit()\"\n\t\t\tfocusable=\"false\"\n\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\tstyle=\"will-change: transform;\"\n\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\taria-label=\"Clear filter\"\n\t\t\twidth=\"16\"\n\t\t\theight=\"16\"\n\t\t\tviewBox=\"0 0 16 16\"\n\t\t\trole=\"img\">\n\t\t\t<path d=\"M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z\"></path>\n\t\t</svg>\n\t"}]}],"members":{"close":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":31,"character":2}}]}],"attrClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"HostBinding","line":33,"character":2},"arguments":["attr.class"]}]}]}}}}]
@@ -29,8 +29,11 @@ import * as i1 from "./tag-filter.component";
29
29
  var styles_TagFilter = [];
30
30
  var RenderType_TagFilter = i0.ɵcrt({ encapsulation: 2, styles: styles_TagFilter, data: {} });
31
31
  export { RenderType_TagFilter as RenderType_TagFilter };
32
- export function View_TagFilter_0(_l) { return i0.ɵvid(0, [i0.ɵncd(null, 0), (_l()(), i0.ɵeld(1, 0, null, null, 1, ":svg:svg", [["aria-label", "Clear filter"], ["focusable", "false"], ["height", "16"], ["preserveAspectRatio", "xMidYMid meet"], ["role", "img"], ["style", "will-change: transform;"], ["viewBox", "0 0 16 16"], ["width", "16"], ["xmlns", "http://www.w3.org/2000/svg"]], null, null, null, null, null)), (_l()(), i0.ɵeld(2, 0, null, null, 0, ":svg:path", [["d", "M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z"]], null, null, null, null, null))], null, null); }
32
+ export function View_TagFilter_0(_l) { return i0.ɵvid(0, [i0.ɵncd(null, 0), (_l()(), i0.ɵeld(1, 0, null, null, 1, ":svg:svg", [["aria-label", "Clear filter"], ["focusable", "false"], ["height", "16"], ["preserveAspectRatio", "xMidYMid meet"], ["role", "img"], ["style", "will-change: transform;"], ["viewBox", "0 0 16 16"], ["width", "16"], ["xmlns", "http://www.w3.org/2000/svg"]], null, [[null, "click"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("click" === en)) {
33
+ var pd_0 = (_co.close.emit() !== false);
34
+ ad = (pd_0 && ad);
35
+ } return ad; }, null, null)), (_l()(), i0.ɵeld(2, 0, null, null, 0, ":svg:path", [["d", "M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z"]], null, null, null, null, null))], null, null); }
33
36
  export function View_TagFilter_Host_0(_l) { return i0.ɵvid(0, [(_l()(), i0.ɵeld(0, 0, null, null, 1, "ibm-tag-filter", [], [[1, "class", 0]], null, null, View_TagFilter_0, RenderType_TagFilter)), i0.ɵdid(1, 49152, null, 0, i1.TagFilter, [], null, null)], null, function (_ck, _v) { var currVal_0 = i0.ɵnov(_v, 1).attrClass; _ck(_v, 0, 0, currVal_0); }); }
34
- var TagFilterNgFactory = i0.ɵccf("ibm-tag-filter", i1.TagFilter, View_TagFilter_Host_0, { type: "type", class: "class" }, {}, ["*"]);
37
+ var TagFilterNgFactory = i0.ɵccf("ibm-tag-filter", i1.TagFilter, View_TagFilter_Host_0, { type: "type", class: "class" }, { close: "close" }, ["*"]);
35
38
  export { TagFilterNgFactory as TagFilterNgFactory };
36
39
  //# sourceMappingURL=tag-filter.component.ngfactory.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tag-filter.component.ngfactory.js","sourceRoot":"","sources":["../src/tag/tag-filter.component.ngfactory.ts","../src/tag/tag-filter.component.ts.TagFilter.html"],"names":[],"mappings":";;;;;;;;;;;0DCCE,eAAY,IACZ,8UASY,KACX,uKAAuF","sourcesContent":["import * as i0 from '@angular/core';\ni0.ComponentFactory;\n","\n\t\t<ng-content></ng-content>\n\t\t<svg\n\t\t\tfocusable=\"false\"\n\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\tstyle=\"will-change: transform;\"\n\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\taria-label=\"Clear filter\"\n\t\t\twidth=\"16\"\n\t\t\theight=\"16\"\n\t\t\tviewBox=\"0 0 16 16\"\n\t\t\trole=\"img\">\n\t\t\t<path d=\"M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z\"></path>\n\t\t</svg>\n\t"]}
1
+ {"version":3,"file":"tag-filter.component.ngfactory.js","sourceRoot":"","sources":["../src/tag/tag-filter.component.ngfactory.ts","../src/tag/tag-filter.component.ts.TagFilter.html"],"names":[],"mappings":";;;;;;;;;;;0DCCE,eAAY,IACZ,kYAUY,YATX;;wBAAsB;MADvB,wBAUY,KACX,uKAAuF","sourcesContent":["import * as i0 from '@angular/core';\ni0.ComponentFactory;\n","\n\t\t<ng-content></ng-content>\n\t\t<svg\n\t\t\t(click)=\"close.emit()\"\n\t\t\tfocusable=\"false\"\n\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\tstyle=\"will-change: transform;\"\n\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\taria-label=\"Clear filter\"\n\t\t\twidth=\"16\"\n\t\t\theight=\"16\"\n\t\t\tviewBox=\"0 0 16 16\"\n\t\t\trole=\"img\">\n\t\t\t<path d=\"M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z\"></path>\n\t\t</svg>\n\t"]}
@@ -1 +1 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"attrClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]},"arguments":["attr.class"]}]}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]},"isComponent":true,"selector":"ibm-tag-filter","exportAs":null,"inputs":{"type":"type","class":"class"},"outputs":{},"hostListeners":{},"hostProperties":{"attr.class":"attrClass"},"hostAttributes":{},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":1,"template":{"ngContentSelectors":["*"],"encapsulation":2},"componentViewType":{"__symbol":3,"members":[]},"rendererType":{"__symbol":4,"members":[]},"componentFactory":{"__symbol":5,"members":[]}}}],"symbols":[{"__symbol":0,"name":"TagFilter","filePath":"./tag-filter.component"},{"__symbol":1,"name":"Tag","filePath":"./tag.component"},{"__symbol":2,"name":"HostBinding","filePath":"@angular/core"},{"__symbol":3,"name":"View_TagFilter_0","filePath":"./tag-filter.component.ngfactory"},{"__symbol":4,"name":"RenderType_TagFilter","filePath":"./tag-filter.component.ngfactory"},{"__symbol":5,"name":"TagFilterNgFactory","filePath":"./tag-filter.component.ngfactory"}]}
1
+ {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"close":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"attrClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":3,"members":[]},"arguments":["attr.class"]}]}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]},"isComponent":true,"selector":"ibm-tag-filter","exportAs":null,"inputs":{"type":"type","class":"class"},"outputs":{"close":"close"},"hostListeners":{},"hostProperties":{"attr.class":"attrClass"},"hostAttributes":{},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":1,"template":{"ngContentSelectors":["*"],"encapsulation":2},"componentViewType":{"__symbol":4,"members":[]},"rendererType":{"__symbol":5,"members":[]},"componentFactory":{"__symbol":6,"members":[]}}}],"symbols":[{"__symbol":0,"name":"TagFilter","filePath":"./tag-filter.component"},{"__symbol":1,"name":"Tag","filePath":"./tag.component"},{"__symbol":2,"name":"Output","filePath":"@angular/core"},{"__symbol":3,"name":"HostBinding","filePath":"@angular/core"},{"__symbol":4,"name":"View_TagFilter_0","filePath":"./tag-filter.component.ngfactory"},{"__symbol":5,"name":"RenderType_TagFilter","filePath":"./tag-filter.component.ngfactory"},{"__symbol":6,"name":"TagFilterNgFactory","filePath":"./tag-filter.component.ngfactory"}]}
@@ -1 +1 @@
1
- {"version":3,"file":"tag.module.ngfactory.js","sourceRoot":"","sources":["../src/tag/tag.module.ngfactory.ts"],"names":[],"mappings":"","sourcesContent":["import * as i0 from '@angular/core';\nimport * as i1 from './tag.module';\nimport * as i2 from '@angular/common';\nimport * as i3 from '@carbon/icons-angular/lib/close/16';\nimport * as i4 from './tag.component';\nimport * as i5 from './tag-filter.component';\nexport const TagModuleNgFactory:i0.NgModuleFactory<i1.TagModule> = (null as any);\nvar _decl0_0:i2.NgClass = (<any>(null as any));\nvar _decl0_1:i2.NgComponentOutlet = (<any>(null as any));\nvar _decl0_2:i2.NgForOf<any> = (<any>(null as any));\nvar _decl0_3:i2.NgIf = (<any>(null as any));\nvar _decl0_4:i2.NgTemplateOutlet = (<any>(null as any));\nvar _decl0_5:i2.NgStyle = (<any>(null as any));\nvar _decl0_6:i2.NgSwitch = (<any>(null as any));\nvar _decl0_7:i2.NgSwitchCase = (<any>(null as any));\nvar _decl0_8:i2.NgSwitchDefault = (<any>(null as any));\nvar _decl0_9:i2.NgPlural = (<any>(null as any));\nvar _decl0_10:i2.NgPluralCase = (<any>(null as any));\nvar _decl0_11:i3.Close16 = (<any>(null as any));\nvar _decl0_12:i4.Tag = (<any>(null as any));\nvar _decl0_13:i5.TagFilter = (<any>(null as any));\nvar _decl0_14:i2.AsyncPipe = (<any>(null as any));\nvar _decl0_15:i2.UpperCasePipe = (<any>(null as any));\nvar _decl0_16:i2.LowerCasePipe = (<any>(null as any));\nvar _decl0_17:i2.JsonPipe = (<any>(null as any));\nvar _decl0_18:i2.SlicePipe = (<any>(null as any));\nvar _decl0_19:i2.DecimalPipe = (<any>(null as any));\nvar _decl0_20:i2.PercentPipe = (<any>(null as any));\nvar _decl0_21:i2.TitleCasePipe = (<any>(null as any));\nvar _decl0_22:i2.CurrencyPipe = (<any>(null as any));\nvar _decl0_23:i2.DatePipe = (<any>(null as any));\nvar _decl0_24:i2.I18nPluralPipe = (<any>(null as any));\nvar _decl0_25:i2.I18nSelectPipe = (<any>(null as any));\nvar _decl0_26:i2.KeyValuePipe = (<any>(null as any));\nvar _decl0_27:i2.CommonModule = (<any>(null as any));\nvar _decl0_28:i3.Close16Module = (<any>(null as any));\nvar _decl0_29:i0.TemplateRef<any> = (<any>(null as any));\nvar _decl0_30:i0.ElementRef<any> = (<any>(null as any));\nfunction _View_Tag_Host_1_0():void {\n var _any:any = (null as any);\n}\nfunction _View_Tag_1_0():void {\n var _any:any = (null as any);\n}\nfunction _View_TagFilter_Host_2_0():void {\n var _any:any = (null as any);\n}\nfunction _View_TagFilter_2_0():void {\n var _any:any = (null as any);\n}\n"]}
1
+ {"version":3,"file":"tag.module.ngfactory.js","sourceRoot":"","sources":["../src/tag/tag.module.ngfactory.ts"],"names":[],"mappings":"","sourcesContent":["import * as i0 from '@angular/core';\nimport * as i1 from './tag.module';\nimport * as i2 from '@angular/common';\nimport * as i3 from '@carbon/icons-angular/lib/close/16';\nimport * as i4 from './tag.component';\nimport * as i5 from './tag-filter.component';\nexport const TagModuleNgFactory:i0.NgModuleFactory<i1.TagModule> = (null as any);\nvar _decl0_0:i2.NgClass = (<any>(null as any));\nvar _decl0_1:i2.NgComponentOutlet = (<any>(null as any));\nvar _decl0_2:i2.NgForOf<any> = (<any>(null as any));\nvar _decl0_3:i2.NgIf = (<any>(null as any));\nvar _decl0_4:i2.NgTemplateOutlet = (<any>(null as any));\nvar _decl0_5:i2.NgStyle = (<any>(null as any));\nvar _decl0_6:i2.NgSwitch = (<any>(null as any));\nvar _decl0_7:i2.NgSwitchCase = (<any>(null as any));\nvar _decl0_8:i2.NgSwitchDefault = (<any>(null as any));\nvar _decl0_9:i2.NgPlural = (<any>(null as any));\nvar _decl0_10:i2.NgPluralCase = (<any>(null as any));\nvar _decl0_11:i3.Close16 = (<any>(null as any));\nvar _decl0_12:i4.Tag = (<any>(null as any));\nvar _decl0_13:i5.TagFilter = (<any>(null as any));\nvar _decl0_14:i2.AsyncPipe = (<any>(null as any));\nvar _decl0_15:i2.UpperCasePipe = (<any>(null as any));\nvar _decl0_16:i2.LowerCasePipe = (<any>(null as any));\nvar _decl0_17:i2.JsonPipe = (<any>(null as any));\nvar _decl0_18:i2.SlicePipe = (<any>(null as any));\nvar _decl0_19:i2.DecimalPipe = (<any>(null as any));\nvar _decl0_20:i2.PercentPipe = (<any>(null as any));\nvar _decl0_21:i2.TitleCasePipe = (<any>(null as any));\nvar _decl0_22:i2.CurrencyPipe = (<any>(null as any));\nvar _decl0_23:i2.DatePipe = (<any>(null as any));\nvar _decl0_24:i2.I18nPluralPipe = (<any>(null as any));\nvar _decl0_25:i2.I18nSelectPipe = (<any>(null as any));\nvar _decl0_26:i2.KeyValuePipe = (<any>(null as any));\nvar _decl0_27:i2.CommonModule = (<any>(null as any));\nvar _decl0_28:i3.Close16Module = (<any>(null as any));\nvar _decl0_29:i0.TemplateRef<any> = (<any>(null as any));\nvar _decl0_30:i0.ElementRef<any> = (<any>(null as any));\nfunction _View_Tag_Host_1_0():void {\n var _any:any = (null as any);\n}\nfunction _View_Tag_1_0():void {\n var _any:any = (null as any);\n}\nfunction _View_TagFilter_Host_2_0():void {\n var _any:any = (null as any);\n}\nfunction _View_TagFilter_2_0():void {\n var _any:any = (null as any);\n const pd_0:any = ((<any>_decl0_13.close.emit()) !== false);\n}\n"]}