@inera/ids-angular 1.7.0 → 1.9.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 +186 -19
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/components/button/button.component.js +13 -6
- package/esm2015/lib/components/card/card.component.js +20 -0
- package/esm2015/lib/components/card/card.module.js +22 -0
- package/esm2015/lib/components/dialog/actions/dialog-actions.component.js +16 -0
- package/esm2015/lib/components/dialog/dialog.component.js +35 -0
- package/esm2015/lib/components/dialog/dialog.module.js +27 -0
- package/esm2015/lib/components/grid/column/column.component.js +24 -7
- package/esm2015/lib/components/grid/container/container.component.js +5 -2
- package/esm2015/lib/components/grid/row/row.component.js +18 -6
- package/esm2015/public-api.js +8 -1
- package/fesm2015/inera-ids-angular.js +162 -16
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/components/button/button.component.d.ts +4 -1
- package/lib/components/card/card.component.d.ts +7 -0
- package/lib/components/card/card.module.d.ts +8 -0
- package/lib/components/dialog/actions/dialog-actions.component.d.ts +6 -0
- package/lib/components/dialog/dialog.component.d.ts +12 -0
- package/lib/components/dialog/dialog.module.d.ts +9 -0
- package/lib/components/grid/column/column.component.d.ts +10 -3
- package/lib/components/grid/container/container.component.d.ts +2 -1
- package/lib/components/grid/row/row.component.d.ts +7 -2
- package/package.json +2 -2
- package/public-api.d.ts +5 -0
|
@@ -10,7 +10,9 @@ import * as i1 from '@angular/platform-browser';
|
|
|
10
10
|
import * as i3 from '@angular/router';
|
|
11
11
|
import { RouterModule } from '@angular/router';
|
|
12
12
|
import '@inera/ids-core/components/breadcrumbs/register';
|
|
13
|
+
import '@inera/ids-core/components/card/register';
|
|
13
14
|
import '@inera/ids-core/components/date-label/register';
|
|
15
|
+
import '@inera/ids-core/components/dialog/register';
|
|
14
16
|
import '@inera/ids-core/components/icon/register';
|
|
15
17
|
import '@inera/ids-core/components/form/input/register';
|
|
16
18
|
import '@inera/ids-core/components/form/checkbox/register';
|
|
@@ -142,6 +144,9 @@ class IDButtonComponent {
|
|
|
142
144
|
constructor() {
|
|
143
145
|
this.secondary = false;
|
|
144
146
|
this.toggle = false;
|
|
147
|
+
this.block = false;
|
|
148
|
+
this.sBlock = false;
|
|
149
|
+
this.mBlock = false;
|
|
145
150
|
this.active = false;
|
|
146
151
|
this.submit = false;
|
|
147
152
|
this.search = false;
|
|
@@ -150,26 +155,30 @@ class IDButtonComponent {
|
|
|
150
155
|
}
|
|
151
156
|
}
|
|
152
157
|
IDButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
153
|
-
IDButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonComponent, selector: "id-button", inputs: { secondary: "secondary", toggle: "toggle",
|
|
158
|
+
IDButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonComponent, selector: "id-button", inputs: { secondary: "secondary", toggle: "toggle", block: "block", sBlock: "sBlock", mBlock: "mBlock", active: "active", submit: "submit", search: "search", disabled: "disabled", type: "type" }, ngImport: i0, template: "<ids-button \r\n [secondary]=\"secondary ? 'true' : null\"\r\n [toggle]=\"toggle ? 'true' : null\"\r\n [active]=\"active ? 'true' : null\"\r\n [submit]=\"submit ? 'true' : null\"\r\n [search]=\"search ? 'true' : null\"\r\n [disabled]=\"disabled ? 'true' : null\"\r\n [block]=\"block ? 'true' : null\"\r\n [s-block]=\"sBlock ? 'true' : null\"\r\n [m-block]=\"mBlock ? 'true' : null\"\r\n [type]=\"type\">\r\n <ng-content></ng-content>\r\n</ids-button>", styles: ["id-button[ng-reflect-block=true], id-button[ng-reflect-m-block=true], id-button[ng-reflect-s-block=true] { display: contents; }"], encapsulation: i0.ViewEncapsulation.None });
|
|
154
159
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonComponent, decorators: [{
|
|
155
160
|
type: Component,
|
|
156
161
|
args: [{
|
|
157
162
|
selector: 'id-button',
|
|
158
163
|
templateUrl: './button.component.html',
|
|
164
|
+
styles: ['id-button[ng-reflect-block=true], id-button[ng-reflect-m-block=true], id-button[ng-reflect-s-block=true] { display: contents; }'],
|
|
159
165
|
encapsulation: ViewEncapsulation.None,
|
|
160
166
|
}]
|
|
161
167
|
}], ctorParameters: function () { return []; }, propDecorators: { secondary: [{
|
|
162
168
|
type: Input
|
|
163
169
|
}], toggle: [{
|
|
164
170
|
type: Input
|
|
171
|
+
}], block: [{
|
|
172
|
+
type: Input
|
|
173
|
+
}], sBlock: [{
|
|
174
|
+
type: Input
|
|
175
|
+
}], mBlock: [{
|
|
176
|
+
type: Input
|
|
165
177
|
}], active: [{
|
|
166
178
|
type: Input
|
|
167
179
|
}], submit: [{
|
|
168
180
|
type: Input
|
|
169
181
|
}], search: [{
|
|
170
|
-
type: HostBinding,
|
|
171
|
-
args: ['class.ids-btn-search']
|
|
172
|
-
}, {
|
|
173
182
|
type: Input
|
|
174
183
|
}], disabled: [{
|
|
175
184
|
type: Input
|
|
@@ -468,6 +477,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
468
477
|
}]
|
|
469
478
|
}] });
|
|
470
479
|
|
|
480
|
+
class IDCardComponent {
|
|
481
|
+
constructor() {
|
|
482
|
+
this.fill = false;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
IDCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
486
|
+
IDCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCardComponent, selector: "id-card", inputs: { fill: "fill" }, ngImport: i0, template: "<ids-card \r\n [fill]=\"fill\">\r\n <ng-content></ng-content>\r\n</ids-card>", encapsulation: i0.ViewEncapsulation.None });
|
|
487
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardComponent, decorators: [{
|
|
488
|
+
type: Component,
|
|
489
|
+
args: [{
|
|
490
|
+
selector: 'id-card',
|
|
491
|
+
templateUrl: './card.component.html',
|
|
492
|
+
encapsulation: ViewEncapsulation.None,
|
|
493
|
+
}]
|
|
494
|
+
}], ctorParameters: function () { return []; }, propDecorators: { fill: [{
|
|
495
|
+
type: Input
|
|
496
|
+
}] } });
|
|
497
|
+
|
|
498
|
+
class IDCardModule {
|
|
499
|
+
}
|
|
500
|
+
IDCardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
501
|
+
IDCardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardModule, declarations: [IDCardComponent], exports: [IDCardComponent] });
|
|
502
|
+
IDCardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardModule });
|
|
503
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCardModule, decorators: [{
|
|
504
|
+
type: NgModule,
|
|
505
|
+
args: [{
|
|
506
|
+
declarations: [
|
|
507
|
+
IDCardComponent
|
|
508
|
+
],
|
|
509
|
+
exports: [
|
|
510
|
+
IDCardComponent
|
|
511
|
+
],
|
|
512
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
513
|
+
}]
|
|
514
|
+
}] });
|
|
515
|
+
|
|
471
516
|
class IDDateLabelComponent {
|
|
472
517
|
constructor() {
|
|
473
518
|
this.date = null;
|
|
@@ -516,6 +561,75 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
516
561
|
}]
|
|
517
562
|
}] });
|
|
518
563
|
|
|
564
|
+
class IDDialogComponent {
|
|
565
|
+
constructor() {
|
|
566
|
+
this.dismissible = false;
|
|
567
|
+
this.headline = '';
|
|
568
|
+
this.overlay = false;
|
|
569
|
+
this.persistent = false;
|
|
570
|
+
this.show = false;
|
|
571
|
+
this.width = '';
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
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 });
|
|
576
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogComponent, decorators: [{
|
|
577
|
+
type: Component,
|
|
578
|
+
args: [{
|
|
579
|
+
selector: 'id-dialog',
|
|
580
|
+
templateUrl: './dialog.component.html',
|
|
581
|
+
encapsulation: ViewEncapsulation.None,
|
|
582
|
+
}]
|
|
583
|
+
}], ctorParameters: function () { return []; }, propDecorators: { dismissible: [{
|
|
584
|
+
type: Input
|
|
585
|
+
}], headline: [{
|
|
586
|
+
type: Input
|
|
587
|
+
}], overlay: [{
|
|
588
|
+
type: Input
|
|
589
|
+
}], persistent: [{
|
|
590
|
+
type: Input
|
|
591
|
+
}], show: [{
|
|
592
|
+
type: Input
|
|
593
|
+
}], width: [{
|
|
594
|
+
type: Input
|
|
595
|
+
}] } });
|
|
596
|
+
|
|
597
|
+
class IDDialogActionsComponent {
|
|
598
|
+
constructor() { }
|
|
599
|
+
}
|
|
600
|
+
IDDialogActionsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogActionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
601
|
+
IDDialogActionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDialogActionsComponent, selector: "id-dialog-actions", ngImport: i0, template: "<ids-dialog-actions>\r\n <ng-content></ng-content>\r\n</ids-dialog-actions>", encapsulation: i0.ViewEncapsulation.None });
|
|
602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogActionsComponent, decorators: [{
|
|
603
|
+
type: Component,
|
|
604
|
+
args: [{
|
|
605
|
+
selector: 'id-dialog-actions',
|
|
606
|
+
templateUrl: './dialog-actions.component.html',
|
|
607
|
+
encapsulation: ViewEncapsulation.None,
|
|
608
|
+
}]
|
|
609
|
+
}], ctorParameters: function () { return []; } });
|
|
610
|
+
|
|
611
|
+
class IDDialogModule {
|
|
612
|
+
}
|
|
613
|
+
IDDialogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
614
|
+
IDDialogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogModule, declarations: [IDDialogComponent,
|
|
615
|
+
IDDialogActionsComponent], exports: [IDDialogComponent,
|
|
616
|
+
IDDialogActionsComponent] });
|
|
617
|
+
IDDialogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogModule });
|
|
618
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogModule, decorators: [{
|
|
619
|
+
type: NgModule,
|
|
620
|
+
args: [{
|
|
621
|
+
declarations: [
|
|
622
|
+
IDDialogComponent,
|
|
623
|
+
IDDialogActionsComponent
|
|
624
|
+
],
|
|
625
|
+
exports: [
|
|
626
|
+
IDDialogComponent,
|
|
627
|
+
IDDialogActionsComponent
|
|
628
|
+
],
|
|
629
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
630
|
+
}]
|
|
631
|
+
}] });
|
|
632
|
+
|
|
519
633
|
class IDIcon {
|
|
520
634
|
constructor(_props) {
|
|
521
635
|
this._props = _props;
|
|
@@ -1040,17 +1154,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1040
1154
|
}] });
|
|
1041
1155
|
|
|
1042
1156
|
class IDRowComponent {
|
|
1043
|
-
constructor() {
|
|
1157
|
+
constructor(_elementRef) {
|
|
1158
|
+
this._elementRef = _elementRef;
|
|
1159
|
+
this.align = null;
|
|
1160
|
+
this.justify = null;
|
|
1161
|
+
this.style = null;
|
|
1162
|
+
this._elementRef.nativeElement.removeAttribute('style');
|
|
1163
|
+
}
|
|
1044
1164
|
}
|
|
1045
|
-
IDRowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1046
|
-
IDRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRowComponent, selector: "id-row", ngImport: i0, template: "<ids-row>\r\n <ng-content></ng-content>\r\n</ids-row>" });
|
|
1165
|
+
IDRowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRowComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1166
|
+
IDRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRowComponent, selector: "id-row", inputs: { align: "align", justify: "justify", style: "style" }, ngImport: i0, template: "<ids-row [style]=\"style\" [justify]=\"justify\" [align]=\"align\">\r\n <ng-content></ng-content>\r\n</ids-row>" });
|
|
1047
1167
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRowComponent, decorators: [{
|
|
1048
1168
|
type: Component,
|
|
1049
1169
|
args: [{
|
|
1050
1170
|
selector: 'id-row',
|
|
1051
1171
|
templateUrl: './row.component.html',
|
|
1052
1172
|
}]
|
|
1053
|
-
}], ctorParameters: function () { return []; }
|
|
1173
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { align: [{
|
|
1174
|
+
type: Input
|
|
1175
|
+
}], justify: [{
|
|
1176
|
+
type: Input
|
|
1177
|
+
}], style: [{
|
|
1178
|
+
type: Input
|
|
1179
|
+
}] } });
|
|
1054
1180
|
|
|
1055
1181
|
class IDRowModule {
|
|
1056
1182
|
}
|
|
@@ -1071,14 +1197,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1071
1197
|
}] });
|
|
1072
1198
|
|
|
1073
1199
|
class IDColumnComponent {
|
|
1074
|
-
constructor() {
|
|
1200
|
+
constructor(_elementRef) {
|
|
1201
|
+
this._elementRef = _elementRef;
|
|
1075
1202
|
this.cols = "";
|
|
1076
|
-
this.
|
|
1203
|
+
this.offset = null;
|
|
1204
|
+
this.m = "";
|
|
1205
|
+
this.mOffset = null;
|
|
1206
|
+
this.s = "";
|
|
1207
|
+
this.sOffset = null;
|
|
1077
1208
|
this.align = "";
|
|
1209
|
+
this.style = null;
|
|
1210
|
+
this._elementRef.nativeElement.removeAttribute('style');
|
|
1078
1211
|
}
|
|
1079
1212
|
}
|
|
1080
|
-
IDColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1081
|
-
IDColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDColumnComponent, selector: "id-col", inputs: { cols: "cols",
|
|
1213
|
+
IDColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1214
|
+
IDColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDColumnComponent, selector: "id-col", inputs: { cols: "cols", offset: "offset", m: "m", mOffset: "mOffset", s: "s", sOffset: "sOffset", align: "align", style: "style" }, ngImport: i0, template: "<ids-col \r\n [attr.cols]=\"cols\"\r\n [attr.offset]=\"offset\"\r\n [attr.m]=\"m\" \r\n [attr.m-offset]=\"[mOffset]\"\r\n [attr.s]=\"s\" \r\n [attr.s-offset]=\"[sOffset]\"\r\n [attr.align]=\"align\"\r\n [attr.style]=\"style\">\r\n <ng-content></ng-content>\r\n</ids-col>", styles: ["id-col { display: contents; }"], encapsulation: i0.ViewEncapsulation.None });
|
|
1082
1215
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnComponent, decorators: [{
|
|
1083
1216
|
type: Component,
|
|
1084
1217
|
args: [{
|
|
@@ -1087,12 +1220,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1087
1220
|
encapsulation: ViewEncapsulation.None,
|
|
1088
1221
|
styles: ['id-col { display: contents; }']
|
|
1089
1222
|
}]
|
|
1090
|
-
}], ctorParameters: function () { return []; }, propDecorators: { cols: [{
|
|
1223
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { cols: [{
|
|
1224
|
+
type: Input
|
|
1225
|
+
}], offset: [{
|
|
1091
1226
|
type: Input
|
|
1092
|
-
}],
|
|
1227
|
+
}], m: [{
|
|
1228
|
+
type: Input
|
|
1229
|
+
}], mOffset: [{
|
|
1230
|
+
type: Input
|
|
1231
|
+
}], s: [{
|
|
1232
|
+
type: Input
|
|
1233
|
+
}], sOffset: [{
|
|
1093
1234
|
type: Input
|
|
1094
1235
|
}], align: [{
|
|
1095
1236
|
type: Input
|
|
1237
|
+
}], style: [{
|
|
1238
|
+
type: Input
|
|
1096
1239
|
}] } });
|
|
1097
1240
|
|
|
1098
1241
|
class IDColumnModule {
|
|
@@ -1116,10 +1259,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1116
1259
|
class IDContainerComponent {
|
|
1117
1260
|
constructor() {
|
|
1118
1261
|
this.fluid = false;
|
|
1262
|
+
this.gutterless = false;
|
|
1119
1263
|
}
|
|
1120
1264
|
}
|
|
1121
1265
|
IDContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1122
|
-
IDContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDContainerComponent, selector: "id-container", inputs: { fluid: "fluid" }, ngImport: i0, template: "<ids-container [attr.fluid]=\"fluid\">\r\n <ng-content></ng-content>\r\n</ids-container>", encapsulation: i0.ViewEncapsulation.None });
|
|
1266
|
+
IDContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDContainerComponent, selector: "id-container", inputs: { fluid: "fluid", gutterless: "gutterless" }, ngImport: i0, template: "<ids-container \r\n [attr.gutterless]=\"gutterless ? true : null\" \r\n [attr.fluid]=\"fluid ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-container>", encapsulation: i0.ViewEncapsulation.None });
|
|
1123
1267
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDContainerComponent, decorators: [{
|
|
1124
1268
|
type: Component,
|
|
1125
1269
|
args: [{
|
|
@@ -1129,6 +1273,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1129
1273
|
}]
|
|
1130
1274
|
}], ctorParameters: function () { return []; }, propDecorators: { fluid: [{
|
|
1131
1275
|
type: Input
|
|
1276
|
+
}], gutterless: [{
|
|
1277
|
+
type: Input
|
|
1132
1278
|
}] } });
|
|
1133
1279
|
|
|
1134
1280
|
class IDContainerModule {
|
|
@@ -1746,5 +1892,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1746
1892
|
* Generated bundle index. Do not edit.
|
|
1747
1893
|
*/
|
|
1748
1894
|
|
|
1749
|
-
export { IDAlertComponent, IDAlertGlobalComponent, IDAlertGlobalModule, IDAlertModule, IDBreadcrumbsComponent, IDBreadcrumbsModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDContainerComponent, IDContainerModule, IDDateLabelComponent, IDDateLabelModule, 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 };
|
|
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 };
|
|
1750
1896
|
//# sourceMappingURL=inera-ids-angular.js.map
|