@inera/ids-angular 1.9.0 → 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.
- package/bundles/inera-ids-angular.umd.js +141 -33
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/classes/header/IDHeaderAvatar.js +4 -1
- package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +1 -1
- package/esm2015/lib/classes/header/IDHeaderNavItem.js +4 -1
- package/esm2015/lib/classes/header/IDHeaderNavItemProps.js +1 -1
- package/esm2015/lib/components/agent/agent.component.js +33 -0
- package/esm2015/lib/components/agent/agent.module.js +24 -0
- package/esm2015/lib/components/dialog/dialog.component.js +8 -2
- package/esm2015/lib/components/form/base/IDFormBase.js +18 -0
- package/esm2015/lib/components/form/checkbox/checkbox.component.js +5 -3
- package/esm2015/lib/components/form/checkbox-group/checkbox-group.component.js +5 -3
- package/esm2015/lib/components/form/input/input.component.js +6 -4
- package/esm2015/lib/components/form/select/select.component.js +8 -4
- package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +6 -4
- package/esm2015/lib/components/form/textarea/textarea.component.js +7 -4
- package/esm2015/lib/components/header/header.component.js +2 -2
- package/esm2015/public-api.js +4 -1
- package/fesm2015/inera-ids-angular.js +107 -20
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/classes/header/IDHeaderAvatar.d.ts +1 -0
- package/lib/classes/header/IDHeaderAvatarProps.d.ts +1 -0
- package/lib/classes/header/IDHeaderNavItem.d.ts +1 -0
- package/lib/classes/header/IDHeaderNavItemProps.d.ts +1 -0
- package/lib/components/agent/agent.component.d.ts +12 -0
- package/lib/components/agent/agent.module.d.ts +9 -0
- package/lib/components/dialog/dialog.component.d.ts +3 -1
- package/lib/components/form/base/IDFormBase.d.ts +8 -0
- package/lib/components/form/checkbox/checkbox.component.d.ts +2 -1
- package/lib/components/form/checkbox-group/checkbox-group.component.d.ts +2 -1
- package/lib/components/form/input/input.component.d.ts +3 -1
- package/lib/components/form/select/select.component.d.ts +3 -1
- package/lib/components/form/select-multiple/select-multiple.component.d.ts +2 -1
- package/lib/components/form/textarea/textarea.component.d.ts +2 -1
- package/package.json +2 -2
- 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
|
|
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:
|
|
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: [{
|
|
@@ -1680,7 +1761,7 @@ class IDHeaderComponent {
|
|
|
1680
1761
|
}
|
|
1681
1762
|
}
|
|
1682
1763
|
IDHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1683
|
-
IDHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDHeaderComponent, selector: "id-header", inputs: { type: "type", brandText: "brandText", brandTextTop: "brandTextTop", brandTextBottom: "brandTextBottom", hideRegionPicker: "hideRegionPicker", hideBrand: "hideBrand", pickRegionText: "pickRegionText", regionIcon: "regionIcon", width: "width", srLogoLabel: "srLogoLabel", items: "items", avatar: "avatar", navItems: "navItems", mobileItems: "mobileItems", mobileMenuItems: "mobileMenuItems" }, outputs: { didToggleRegion: "didToggleRegion" }, ngImport: i0, template: "<ids-header \r\n [attr.type]=\"type\"\r\n [attr.brandtext]=\"brandText\"\r\n [attr.brandtexttop]=\"brandTextTop\"\r\n [attr.brandtextbottom]=\"brandTextBottom\"\r\n [hideregionpicker]=\"hideRegionPicker\"\r\n [hidebrand]=\"hideBrand\"\r\n [pickregiontext]=\"pickRegionText\"\r\n [regionicon]=\"regionIcon\"\r\n [width]=\"width\"\r\n [srlogolabel]=\"srLogoLabel\"\r\n (didToggleRegion)=\"didToggleRegion.emit(true)\">\r\n\r\n <ids-header-item *ngFor=\"let item of items\" \r\n [icon]=\"item.iconName\" \r\n [mobile]=\"item.mobile\">\r\n <id-anchor [link]=\"item.link\"></id-anchor>\r\n </ids-header-item>\r\n\r\n <ids-header-nav *ngIf=\"navItems || mobileItems\">\r\n <ids-header-nav-item *ngFor=\"let navItem of navItems; let i = index\" [label]=\"navItem.label\" [link]=\"navItem.link\">\r\n <id-anchor *ngIf=\"navItem.link\" [link]=\"navItem.link\"></id-anchor>\r\n <ids-link slot=\"col-1\" [block]=\"true\" *ngFor=\"let link of navItem.col1\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link> \r\n <ids-link slot=\"col-2\" [block]=\"true\" *ngFor=\"let link of navItem.col2\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link>\r\n <ids-link slot=\"col-3\" [block]=\"true\" *ngFor=\"let link of navItem.col3\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link>\r\n <div slot=\"col-4\">\r\n <h2 style=\"margin-bottom: 15px; color: var(--header-nav-item-heading_color);\" class=\"h2\">{{navItem.headline}}</h2>\r\n <p class=\"body\">{{navItem.paragraph}}</p>\r\n <id-anchor>{{navItem.paragraphLink}}</id-anchor>\r\n </div>\r\n </ids-header-nav-item>\r\n <ids-header-mobile-item *ngFor=\"let mobileItem of mobileItems\" [icon]=\"mobileItem.iconName\">\r\n <id-anchor [link]=\"mobileItem.link\"></id-anchor>\r\n </ids-header-mobile-item>\r\n \r\n <ids-header-mobile-menu *ngIf=\"mobileMenuItems\">\r\n Menu\r\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-header-mobile-menu>\r\n </ids-header-nav>\r\n\r\n <ids-header-avatar *ngIf=\"avatar\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatar]\"></ng-content>\r\n <span slot=\"avatar-text\">{{avatar.serviceName}}</span>\r\n <id-anchor [link]=\"avatar.linkLeft\" slot=\"avatar-left\"></id-anchor>\r\n <id-anchor [link]=\"avatar.linkRight\" slot=\"avatar-right\"></id-anchor>\r\n </ids-header-avatar>\r\n\r\n <ng-content></ng-content>\r\n\r\n <ids-header-mobile-menu \r\n *ngIf=\"type !== '1177' && (mobileMenuItems || avatar)\"\r\n [type]=\"type\">\r\n <ids-mobile-menu-avatar *ngIf=\"avatar\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatarMobile]\"></ng-content>\r\n </ids-mobile-menu-avatar>\r\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-header-mobile-menu>\r\n</ids-header>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1764
|
+
IDHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDHeaderComponent, selector: "id-header", inputs: { type: "type", brandText: "brandText", brandTextTop: "brandTextTop", brandTextBottom: "brandTextBottom", hideRegionPicker: "hideRegionPicker", hideBrand: "hideBrand", pickRegionText: "pickRegionText", regionIcon: "regionIcon", width: "width", srLogoLabel: "srLogoLabel", items: "items", avatar: "avatar", navItems: "navItems", mobileItems: "mobileItems", mobileMenuItems: "mobileMenuItems" }, outputs: { didToggleRegion: "didToggleRegion" }, ngImport: i0, template: "<ids-header \r\n [attr.type]=\"type\"\r\n [attr.brandtext]=\"brandText\"\r\n [attr.brandtexttop]=\"brandTextTop\"\r\n [attr.brandtextbottom]=\"brandTextBottom\"\r\n [hideregionpicker]=\"hideRegionPicker\"\r\n [hidebrand]=\"hideBrand\"\r\n [pickregiontext]=\"pickRegionText\"\r\n [regionicon]=\"regionIcon\"\r\n [width]=\"width\"\r\n [srlogolabel]=\"srLogoLabel\"\r\n (didToggleRegion)=\"didToggleRegion.emit(true)\">\r\n\r\n <ids-header-item *ngFor=\"let item of items\" \r\n [icon]=\"item.iconName\" \r\n [mobile]=\"item.mobile\">\r\n <id-anchor [link]=\"item.link\"></id-anchor>\r\n </ids-header-item>\r\n\r\n <ids-header-nav *ngIf=\"navItems || mobileItems\">\r\n <ids-header-nav-item *ngFor=\"let navItem of navItems; let i = index\" [label]=\"navItem.label\" [link]=\"navItem.link\" [active]=\"navItem.active\">\r\n <id-anchor *ngIf=\"navItem.link\" [link]=\"navItem.link\"></id-anchor>\r\n <ids-link slot=\"col-1\" [block]=\"true\" *ngFor=\"let link of navItem.col1\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link> \r\n <ids-link slot=\"col-2\" [block]=\"true\" *ngFor=\"let link of navItem.col2\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link>\r\n <ids-link slot=\"col-3\" [block]=\"true\" *ngFor=\"let link of navItem.col3\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link>\r\n <div slot=\"col-4\">\r\n <h2 style=\"margin-bottom: 15px; color: var(--header-nav-item-heading_color);\" class=\"h2\">{{navItem.headline}}</h2>\r\n <p class=\"body\">{{navItem.paragraph}}</p>\r\n <id-anchor>{{navItem.paragraphLink}}</id-anchor>\r\n </div>\r\n </ids-header-nav-item>\r\n <ids-header-mobile-item *ngFor=\"let mobileItem of mobileItems\" [icon]=\"mobileItem.iconName\">\r\n <id-anchor [link]=\"mobileItem.link\"></id-anchor>\r\n </ids-header-mobile-item>\r\n \r\n <ids-header-mobile-menu *ngIf=\"mobileMenuItems\">\r\n Menu\r\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-header-mobile-menu>\r\n </ids-header-nav>\r\n\r\n <ids-header-avatar *ngIf=\"avatar\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatar]\"></ng-content>\r\n <span slot=\"avatar-text\">{{avatar.serviceName}}</span>\r\n <id-anchor [link]=\"avatar.linkLeft\" slot=\"avatar-left\"></id-anchor>\r\n <id-anchor [link]=\"avatar.linkRight\" slot=\"avatar-right\"></id-anchor>\r\n </ids-header-avatar>\r\n\r\n <ng-content></ng-content>\r\n\r\n <ids-header-mobile-menu \r\n *ngIf=\"type !== '1177' && (mobileMenuItems || avatar)\"\r\n [type]=\"type\">\r\n <ids-mobile-menu-avatar *ngIf=\"avatar\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatarMobile]\"></ng-content>\r\n <id-anchor style=\"color: var(--mobile-menu-avatar-link)\" *ngIf=\"avatar.linkMobile\" [link]=\"avatar.linkMobile\"></id-anchor>\r\n </ids-mobile-menu-avatar>\r\n <ids-mobile-menu-item *ngFor=\"let item of mobileMenuItems\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-header-mobile-menu>\r\n</ids-header>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1684
1765
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderComponent, decorators: [{
|
|
1685
1766
|
type: Component,
|
|
1686
1767
|
args: [{
|
|
@@ -1771,6 +1852,9 @@ class IDHeaderAvatar {
|
|
|
1771
1852
|
get serviceName() {
|
|
1772
1853
|
return this._props.serviceName;
|
|
1773
1854
|
}
|
|
1855
|
+
get linkMobile() {
|
|
1856
|
+
return this._props.linkMobile;
|
|
1857
|
+
}
|
|
1774
1858
|
}
|
|
1775
1859
|
|
|
1776
1860
|
class IDHeaderNavItem {
|
|
@@ -1801,6 +1885,9 @@ class IDHeaderNavItem {
|
|
|
1801
1885
|
get paragraphLink() {
|
|
1802
1886
|
return this._props.pragraphLink;
|
|
1803
1887
|
}
|
|
1888
|
+
get active() {
|
|
1889
|
+
return this._props.active;
|
|
1890
|
+
}
|
|
1804
1891
|
}
|
|
1805
1892
|
|
|
1806
1893
|
class IDTabsComponent {
|
|
@@ -1892,5 +1979,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1892
1979
|
* Generated bundle index. Do not edit.
|
|
1893
1980
|
*/
|
|
1894
1981
|
|
|
1895
|
-
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 };
|
|
1896
1983
|
//# sourceMappingURL=inera-ids-angular.js.map
|