@inera/ids-angular 1.9.1 → 1.10.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 (27) hide show
  1. package/bundles/inera-ids-angular.umd.js +126 -32
  2. package/bundles/inera-ids-angular.umd.js.map +1 -1
  3. package/esm2015/lib/components/agent/agent.component.js +33 -0
  4. package/esm2015/lib/components/agent/agent.module.js +24 -0
  5. package/esm2015/lib/components/dialog/dialog.component.js +8 -2
  6. package/esm2015/lib/components/form/base/IDFormBase.js +18 -0
  7. package/esm2015/lib/components/form/checkbox/checkbox.component.js +5 -3
  8. package/esm2015/lib/components/form/checkbox-group/checkbox-group.component.js +5 -3
  9. package/esm2015/lib/components/form/input/input.component.js +6 -4
  10. package/esm2015/lib/components/form/select/select.component.js +8 -4
  11. package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +6 -4
  12. package/esm2015/lib/components/form/textarea/textarea.component.js +7 -4
  13. package/esm2015/public-api.js +4 -1
  14. package/fesm2015/inera-ids-angular.js +100 -19
  15. package/fesm2015/inera-ids-angular.js.map +1 -1
  16. package/lib/components/agent/agent.component.d.ts +12 -0
  17. package/lib/components/agent/agent.module.d.ts +9 -0
  18. package/lib/components/dialog/dialog.component.d.ts +3 -1
  19. package/lib/components/form/base/IDFormBase.d.ts +8 -0
  20. package/lib/components/form/checkbox/checkbox.component.d.ts +2 -1
  21. package/lib/components/form/checkbox-group/checkbox-group.component.d.ts +2 -1
  22. package/lib/components/form/input/input.component.d.ts +3 -1
  23. package/lib/components/form/select/select.component.d.ts +3 -1
  24. package/lib/components/form/select-multiple/select-multiple.component.d.ts +2 -1
  25. package/lib/components/form/textarea/textarea.component.d.ts +2 -1
  26. package/package.json +2 -2
  27. package/public-api.d.ts +2 -0
@@ -1,9 +1,10 @@
1
1
  import * as i0 from '@angular/core';
2
- import { EventEmitter, Component, Input, Output, NgModule, CUSTOM_ELEMENTS_SCHEMA, ViewEncapsulation, HostBinding } from '@angular/core';
2
+ import { EventEmitter, Component, Input, Output, NgModule, CUSTOM_ELEMENTS_SCHEMA, ViewEncapsulation, Injectable, HostBinding } from '@angular/core';
3
3
  import * as i2 from '@angular/common';
4
4
  import { CommonModule } from '@angular/common';
5
5
  import '@inera/ids-core/components/alert/register';
6
6
  import '@inera/ids-core/components/alert-global/register';
7
+ import '@inera/ids-core/components/agent/register';
7
8
  import '@inera/ids-core/components/button/register';
8
9
  import '@inera/ids-core/components/button-group/register';
9
10
  import * as i1 from '@angular/platform-browser';
@@ -140,6 +141,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
140
141
  }]
141
142
  }] });
142
143
 
144
+ class IDAgentComponent {
145
+ constructor() {
146
+ this.expanded = true;
147
+ this.headline = '';
148
+ this.showText = '';
149
+ this.hideText = '';
150
+ this.didToggleExpansion = new EventEmitter();
151
+ }
152
+ }
153
+ IDAgentComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
154
+ IDAgentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAgentComponent, selector: "id-agent", inputs: { expanded: "expanded", headline: "headline", showText: "showText", hideText: "hideText" }, outputs: { didToggleExpansion: "didToggleExpansion" }, ngImport: i0, template: "<ids-agent\n [showtext]=\"showText\"\n [hidetext]=\"hideText\"\n [expanded]=\"expanded\"\n (didToggleExpansion)=\"didToggleExpansion.emit(true)\">\n <h3 slot=\"alert-headline\" *ngIf=\"headline\">\n {{headline}}\n </h3>\n <ng-content></ng-content>\n</ids-agent>", styles: [":host { display: block; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
155
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentComponent, decorators: [{
156
+ type: Component,
157
+ args: [{
158
+ selector: 'id-agent',
159
+ templateUrl: './agent.component.html',
160
+ styles: [':host { display: block; }']
161
+ }]
162
+ }], ctorParameters: function () { return []; }, propDecorators: { expanded: [{
163
+ type: Input
164
+ }], headline: [{
165
+ type: Input
166
+ }], showText: [{
167
+ type: Input
168
+ }], hideText: [{
169
+ type: Input
170
+ }], didToggleExpansion: [{
171
+ type: Output
172
+ }] } });
173
+
174
+ class IDAgentModule {
175
+ }
176
+ IDAgentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
177
+ IDAgentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentModule, declarations: [IDAgentComponent], imports: [CommonModule], exports: [IDAgentComponent] });
178
+ IDAgentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentModule, imports: [[CommonModule]] });
179
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentModule, decorators: [{
180
+ type: NgModule,
181
+ args: [{
182
+ declarations: [
183
+ IDAgentComponent
184
+ ],
185
+ exports: [
186
+ IDAgentComponent
187
+ ],
188
+ imports: [CommonModule],
189
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
190
+ }]
191
+ }] });
192
+
143
193
  class IDButtonComponent {
144
194
  constructor() {
145
195
  this.secondary = false;
@@ -564,6 +614,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
564
614
  class IDDialogComponent {
565
615
  constructor() {
566
616
  this.dismissible = false;
617
+ this.srCloseText = false;
618
+ this.noFocusTrap = false;
567
619
  this.headline = '';
568
620
  this.overlay = false;
569
621
  this.persistent = false;
@@ -572,7 +624,7 @@ class IDDialogComponent {
572
624
  }
573
625
  }
574
626
  IDDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
575
- IDDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDialogComponent, selector: "id-dialog", inputs: { dismissible: "dismissible", headline: "headline", overlay: "overlay", persistent: "persistent", show: "show", width: "width" }, ngImport: i0, template: "<ids-dialog \r\n [dismissible]=\"dismissible\"\r\n [headline]=\"headline\"\r\n [overlay]=\"overlay\"\r\n [persistent]=\"persistent\"\r\n [show]=\"show\"\r\n [width]=\"width\">\r\n <ng-content></ng-content>\r\n</ids-dialog>", encapsulation: i0.ViewEncapsulation.None });
627
+ IDDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDialogComponent, selector: "id-dialog", inputs: { dismissible: "dismissible", srCloseText: "srCloseText", noFocusTrap: "noFocusTrap", headline: "headline", overlay: "overlay", persistent: "persistent", show: "show", width: "width" }, ngImport: i0, template: "<ids-dialog \r\n [dismissible]=\"dismissible\"\r\n [headline]=\"headline\"\r\n [overlay]=\"overlay\"\r\n [persistent]=\"persistent\"\r\n [show]=\"show\"\r\n [width]=\"width\"\r\n [no-focus-trap]=\"noFocusTrap\"\r\n [srclosetext]=\"srCloseText\">\r\n <ng-content></ng-content>\r\n</ids-dialog>", encapsulation: i0.ViewEncapsulation.None });
576
628
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogComponent, decorators: [{
577
629
  type: Component,
578
630
  args: [{
@@ -582,6 +634,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
582
634
  }]
583
635
  }], ctorParameters: function () { return []; }, propDecorators: { dismissible: [{
584
636
  type: Input
637
+ }], srCloseText: [{
638
+ type: Input
639
+ }], noFocusTrap: [{
640
+ type: Input
585
641
  }], headline: [{
586
642
  type: Input
587
643
  }], overlay: [{
@@ -720,13 +776,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
720
776
  }]
721
777
  }] });
722
778
 
723
- class IDInputComponent {
779
+ class IDFormBase {
724
780
  constructor() {
781
+ this.valid = true;
782
+ this.noValidation = false;
783
+ }
784
+ }
785
+ IDFormBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFormBase, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
786
+ IDFormBase.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFormBase });
787
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFormBase, decorators: [{
788
+ type: Injectable
789
+ }], ctorParameters: function () { return []; }, propDecorators: { valid: [{
790
+ type: Input
791
+ }], noValidation: [{
792
+ type: Input
793
+ }] } });
794
+
795
+ class IDInputComponent extends IDFormBase {
796
+ constructor() {
797
+ super();
725
798
  this.autofocus = false;
726
799
  }
727
800
  }
728
801
  IDInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
729
- IDInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", inputs: { autofocus: "autofocus" }, ngImport: i0, template: "<ids-input [autofocus]=\"autofocus\">\r\n <ng-content></ng-content>\r\n</ids-input>", encapsulation: i0.ViewEncapsulation.None });
802
+ IDInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", inputs: { autofocus: "autofocus" }, usesInheritance: true, ngImport: i0, template: "<ids-input [attr.valid]=\"valid\" [attr.no-validation]=\"noValidation ? noValidation : null\" [attr.autofocus]=\"autofocus\">\r\n <ng-content></ng-content>\r\n</ids-input>", encapsulation: i0.ViewEncapsulation.None });
730
803
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputComponent, decorators: [{
731
804
  type: Component,
732
805
  args: [{
@@ -734,7 +807,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
734
807
  templateUrl: './input.component.html',
735
808
  encapsulation: ViewEncapsulation.None,
736
809
  }]
737
- }], propDecorators: { autofocus: [{
810
+ }], ctorParameters: function () { return []; }, propDecorators: { autofocus: [{
738
811
  type: Input
739
812
  }] } });
740
813
 
@@ -756,13 +829,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
756
829
  }]
757
830
  }] });
758
831
 
759
- class IDCheckboxComponent {
832
+ class IDCheckboxComponent extends IDFormBase {
760
833
  constructor() {
834
+ super();
761
835
  this.valid = true;
762
836
  }
763
837
  }
764
838
  IDCheckboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
765
- IDCheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", inputs: { valid: "valid" }, ngImport: i0, template: "<ids-checkbox [valid]=\"valid\">\r\n <ng-content></ng-content>\r\n</ids-checkbox>", encapsulation: i0.ViewEncapsulation.None });
839
+ IDCheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", inputs: { valid: "valid" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox [attr.valid]=\"valid\" [attr.no-validation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n</ids-checkbox>", encapsulation: i0.ViewEncapsulation.None });
766
840
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, decorators: [{
767
841
  type: Component,
768
842
  args: [{
@@ -792,15 +866,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
792
866
  }]
793
867
  }] });
794
868
 
795
- class IDCheckboxGroupComponent {
869
+ class IDCheckboxGroupComponent extends IDFormBase {
796
870
  constructor() {
871
+ super();
797
872
  this.errorMessage = undefined;
798
873
  }
799
874
  ngOnInit() {
800
875
  }
801
876
  }
802
877
  IDCheckboxGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
803
- IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage" }, ngImport: i0, template: "<ids-checkbox-group>\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-checkbox-group>\r\n", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
878
+ IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox-group [valiid]=\"valid\" [attr.no-validation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-checkbox-group>\r\n", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
804
879
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, decorators: [{
805
880
  type: Component,
806
881
  args: [{
@@ -972,10 +1047,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
972
1047
  }]
973
1048
  }] });
974
1049
 
975
- class IDSelectComponent {
1050
+ class IDSelectComponent extends IDFormBase {
1051
+ constructor() {
1052
+ super();
1053
+ }
976
1054
  }
977
1055
  IDSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
978
- IDSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectComponent, selector: "id-select", ngImport: i0, template: "<ids-select>\r\n <ng-content></ng-content>\r\n</ids-select>", encapsulation: i0.ViewEncapsulation.None });
1056
+ IDSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectComponent, selector: "id-select", usesInheritance: true, ngImport: i0, template: "<ids-select [attr.valid]=\"valid\" [attr.no-validation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n</ids-select>", encapsulation: i0.ViewEncapsulation.None });
979
1057
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectComponent, decorators: [{
980
1058
  type: Component,
981
1059
  args: [{
@@ -983,7 +1061,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
983
1061
  templateUrl: './select.component.html',
984
1062
  encapsulation: ViewEncapsulation.None,
985
1063
  }]
986
- }] });
1064
+ }], ctorParameters: function () { return []; } });
987
1065
 
988
1066
  class IDSelectModule {
989
1067
  }
@@ -1003,15 +1081,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1003
1081
  }]
1004
1082
  }] });
1005
1083
 
1006
- class IDSelectMultipleComponent {
1084
+ class IDSelectMultipleComponent extends IDFormBase {
1007
1085
  constructor() {
1086
+ super(...arguments);
1008
1087
  this.label = undefined;
1009
1088
  this.errorMessage = undefined;
1010
1089
  this.placeholder = '';
1011
1090
  }
1012
1091
  }
1013
- IDSelectMultipleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1014
- IDSelectMultipleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label", errorMessage: "errorMessage", placeholder: "placeholder" }, ngImport: i0, template: "<ids-select-multiple [label]=\"label\" [placeholder]=\"placeholder\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-select-multiple>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1092
+ IDSelectMultipleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
1093
+ IDSelectMultipleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label", errorMessage: "errorMessage", placeholder: "placeholder" }, usesInheritance: true, ngImport: i0, template: "<ids-select-multiple [attr.valid]=\"valid\" [attr.no-validation]=\"noValidation ? noValidation : null\" [label]=\"label\" [placeholder]=\"placeholder\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-select-multiple>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1015
1094
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, decorators: [{
1016
1095
  type: Component,
1017
1096
  args: [{
@@ -1121,11 +1200,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1121
1200
  }]
1122
1201
  }] });
1123
1202
 
1124
- class IDTextareaComponent {
1125
- constructor() { }
1203
+ class IDTextareaComponent extends IDFormBase {
1204
+ constructor() {
1205
+ super();
1206
+ }
1126
1207
  }
1127
1208
  IDTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1128
- IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", ngImport: i0, template: "<ids-textarea>\r\n <ng-content></ng-content>\r\n</ids-textarea>", encapsulation: i0.ViewEncapsulation.None });
1209
+ IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", usesInheritance: true, ngImport: i0, template: "<ids-textarea [attr.valid]=\"valid\" [attr.no-validation]=\"noValidation ? noValidation : null\">\r\n <ng-content></ng-content>\r\n</ids-textarea>", encapsulation: i0.ViewEncapsulation.None });
1129
1210
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, decorators: [{
1130
1211
  type: Component,
1131
1212
  args: [{
@@ -1898,5 +1979,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
1898
1979
  * Generated bundle index. Do not edit.
1899
1980
  */
1900
1981
 
1901
- export { IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDBreadcrumbsComponent, IDBreadcrumbsModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCardComponent, IDCardModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, IDDialogActionsComponent, IDDialogComponent, IDDialogModule, IDErrorMessageComponent, IDErrorMessageModule, IDFooterComponent, IDFooterModule, IDHeaderAvatar, IDHeaderComponent, IDHeaderItem, IDHeaderModule, IDHeaderNavItem, IDIcon, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDLink, IDLinkComponent, IDLinkFunction, IDLinkModule, IDLinkRoute, IDLinkWeb, IDListComponent, IDListItemComponent, IDListItemInfoComponent, IDListItemInfoModule, IDListItemModule, IDListModule, IDMobileMenuComponent, IDMobileMenuItem, IDMobileMenuModule, IDNotificationBadge, IDNotificationBadgeComponent, IDNotificationBadgeModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDTabComponent, IDTabPanelComponent, IDTabsComponent, IDTabsModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule };
1982
+ export { IDAgentComponent, IDAgentModule, IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDBreadcrumbsComponent, IDBreadcrumbsModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCardComponent, IDCardModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, IDDialogActionsComponent, IDDialogComponent, IDDialogModule, IDErrorMessageComponent, IDErrorMessageModule, IDFooterComponent, IDFooterModule, IDHeaderAvatar, IDHeaderComponent, IDHeaderItem, IDHeaderModule, IDHeaderNavItem, IDIcon, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDLink, IDLinkComponent, IDLinkFunction, IDLinkModule, IDLinkRoute, IDLinkWeb, IDListComponent, IDListItemComponent, IDListItemInfoComponent, IDListItemInfoModule, IDListItemModule, IDListModule, IDMobileMenuComponent, IDMobileMenuItem, IDMobileMenuModule, IDNotificationBadge, IDNotificationBadgeComponent, IDNotificationBadgeModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDTabComponent, IDTabPanelComponent, IDTabsComponent, IDTabsModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule };
1902
1983
  //# sourceMappingURL=inera-ids-angular.js.map