@inera/ids-angular 1.8.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.
@@ -143,7 +143,9 @@
143
143
  function IDButtonComponent() {
144
144
  this.secondary = false;
145
145
  this.toggle = false;
146
- this.responsive = false;
146
+ this.block = false;
147
+ this.sBlock = false;
148
+ this.mBlock = false;
147
149
  this.active = false;
148
150
  this.submit = false;
149
151
  this.search = false;
@@ -153,20 +155,24 @@
153
155
  return IDButtonComponent;
154
156
  }());
155
157
  IDButtonComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDButtonComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
156
- IDButtonComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonComponent, selector: "id-button", inputs: { secondary: "secondary", toggle: "toggle", responsive: "responsive", active: "active", submit: "submit", search: "search", disabled: "disabled", type: "type" }, ngImport: i0__namespace, template: "<ids-button \n [secondary]=\"secondary\"\n [toggle]=\"toggle\"\n [toggle]=\"toggle\"\n [active]=\"toggle\"\n [submit]=\"submit\"\n [search]=\"search\"\n [disabled]=\"disabled\"\n [responsive]=\"responsive\"\n [type]=\"type\">\n <ng-content></ng-content>\n</ids-button>", styles: ["id-button[ng-reflect-responsive=true] { display: contents; }"], encapsulation: i0__namespace.ViewEncapsulation.None });
158
+ IDButtonComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
157
159
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDButtonComponent, decorators: [{
158
160
  type: i0.Component,
159
161
  args: [{
160
162
  selector: 'id-button',
161
163
  templateUrl: './button.component.html',
162
- styles: ['id-button[ng-reflect-responsive=true] { display: contents; }'],
164
+ styles: ['id-button[ng-reflect-block=true], id-button[ng-reflect-m-block=true], id-button[ng-reflect-s-block=true] { display: contents; }'],
163
165
  encapsulation: i0.ViewEncapsulation.None,
164
166
  }]
165
167
  }], ctorParameters: function () { return []; }, propDecorators: { secondary: [{
166
168
  type: i0.Input
167
169
  }], toggle: [{
168
170
  type: i0.Input
169
- }], responsive: [{
171
+ }], block: [{
172
+ type: i0.Input
173
+ }], sBlock: [{
174
+ type: i0.Input
175
+ }], mBlock: [{
170
176
  type: i0.Input
171
177
  }], active: [{
172
178
  type: i0.Input
@@ -241,7 +247,7 @@
241
247
  }]
242
248
  }] });
243
249
 
244
- /*! *****************************************************************************
250
+ /******************************************************************************
245
251
  Copyright (c) Microsoft Corporation.
246
252
 
247
253
  Permission to use, copy, modify, and/or distribute this software for any
@@ -403,7 +409,11 @@
403
409
  var __createBinding = Object.create ? (function (o, m, k, k2) {
404
410
  if (k2 === undefined)
405
411
  k2 = k;
406
- Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
412
+ var desc = Object.getOwnPropertyDescriptor(m, k);
413
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
414
+ desc = { enumerable: true, get: function () { return m[k]; } };
415
+ }
416
+ Object.defineProperty(o, k2, desc);
407
417
  }) : (function (o, m, k, k2) {
408
418
  if (k2 === undefined)
409
419
  k2 = k;
@@ -557,6 +567,11 @@
557
567
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
558
568
  throw new TypeError("Cannot write private member to an object whose class did not declare it");
559
569
  return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
570
+ }
571
+ function __classPrivateFieldIn(state, receiver) {
572
+ if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function"))
573
+ throw new TypeError("Cannot use 'in' operator on non-object");
574
+ return typeof state === "function" ? receiver === state : state.has(receiver);
560
575
  }
561
576
 
562
577
  var IDLink = /** @class */ (function () {
@@ -866,7 +881,7 @@
866
881
  return IDCardComponent;
867
882
  }());
868
883
  IDCardComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCardComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
869
- IDCardComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCardComponent, selector: "id-card", inputs: { fill: "fill" }, ngImport: i0__namespace, template: "<ids-card \n [fill]=\"fill\">\n <ng-content></ng-content>\n</ids-card>", encapsulation: i0__namespace.ViewEncapsulation.None });
884
+ IDCardComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCardComponent, selector: "id-card", inputs: { fill: "fill" }, ngImport: i0__namespace, template: "<ids-card \r\n [fill]=\"fill\">\r\n <ng-content></ng-content>\r\n</ids-card>", encapsulation: i0__namespace.ViewEncapsulation.None });
870
885
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDCardComponent, decorators: [{
871
886
  type: i0.Component,
872
887
  args: [{
@@ -963,7 +978,7 @@
963
978
  return IDDialogComponent;
964
979
  }());
965
980
  IDDialogComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDialogComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
966
- IDDialogComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, template: "<ids-dialog \n [dismissible]=\"dismissible\"\n [headline]=\"headline\"\n [overlay]=\"overlay\"\n [persistent]=\"persistent\"\n [show]=\"show\"\n [width]=\"width\">\n <ng-content></ng-content>\n</ids-dialog>", encapsulation: i0__namespace.ViewEncapsulation.None });
981
+ IDDialogComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
967
982
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDialogComponent, decorators: [{
968
983
  type: i0.Component,
969
984
  args: [{
@@ -991,7 +1006,7 @@
991
1006
  return IDDialogActionsComponent;
992
1007
  }());
993
1008
  IDDialogActionsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDialogActionsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
994
- IDDialogActionsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDialogActionsComponent, selector: "id-dialog-actions", ngImport: i0__namespace, template: "<ids-dialog-actions>\n <ng-content></ng-content>\n</ids-dialog-actions>", encapsulation: i0__namespace.ViewEncapsulation.None });
1009
+ IDDialogActionsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDialogActionsComponent, selector: "id-dialog-actions", ngImport: i0__namespace, template: "<ids-dialog-actions>\r\n <ng-content></ng-content>\r\n</ids-dialog-actions>", encapsulation: i0__namespace.ViewEncapsulation.None });
995
1010
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDDialogActionsComponent, decorators: [{
996
1011
  type: i0.Component,
997
1012
  args: [{
@@ -1641,19 +1656,30 @@
1641
1656
  }] });
1642
1657
 
1643
1658
  var IDRowComponent = /** @class */ (function () {
1644
- function IDRowComponent() {
1659
+ function IDRowComponent(_elementRef) {
1660
+ this._elementRef = _elementRef;
1661
+ this.align = null;
1662
+ this.justify = null;
1663
+ this.style = null;
1664
+ this._elementRef.nativeElement.removeAttribute('style');
1645
1665
  }
1646
1666
  return IDRowComponent;
1647
1667
  }());
1648
- IDRowComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRowComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1649
- IDRowComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRowComponent, selector: "id-row", ngImport: i0__namespace, template: "<ids-row>\r\n <ng-content></ng-content>\r\n</ids-row>" });
1668
+ IDRowComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRowComponent, deps: [{ token: i0__namespace.ElementRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
1669
+ IDRowComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRowComponent, selector: "id-row", inputs: { align: "align", justify: "justify", style: "style" }, ngImport: i0__namespace, template: "<ids-row [style]=\"style\" [justify]=\"justify\" [align]=\"align\">\r\n <ng-content></ng-content>\r\n</ids-row>" });
1650
1670
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDRowComponent, decorators: [{
1651
1671
  type: i0.Component,
1652
1672
  args: [{
1653
1673
  selector: 'id-row',
1654
1674
  templateUrl: './row.component.html',
1655
1675
  }]
1656
- }], ctorParameters: function () { return []; } });
1676
+ }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }]; }, propDecorators: { align: [{
1677
+ type: i0.Input
1678
+ }], justify: [{
1679
+ type: i0.Input
1680
+ }], style: [{
1681
+ type: i0.Input
1682
+ }] } });
1657
1683
 
1658
1684
  var IDRowModule = /** @class */ (function () {
1659
1685
  function IDRowModule() {
@@ -1677,15 +1703,22 @@
1677
1703
  }] });
1678
1704
 
1679
1705
  var IDColumnComponent = /** @class */ (function () {
1680
- function IDColumnComponent() {
1706
+ function IDColumnComponent(_elementRef) {
1707
+ this._elementRef = _elementRef;
1681
1708
  this.cols = "";
1682
- this.mobile = "";
1709
+ this.offset = null;
1710
+ this.m = "";
1711
+ this.mOffset = null;
1712
+ this.s = "";
1713
+ this.sOffset = null;
1683
1714
  this.align = "";
1715
+ this.style = null;
1716
+ this._elementRef.nativeElement.removeAttribute('style');
1684
1717
  }
1685
1718
  return IDColumnComponent;
1686
1719
  }());
1687
- IDColumnComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDColumnComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1688
- IDColumnComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDColumnComponent, selector: "id-col", inputs: { cols: "cols", mobile: "mobile", align: "align" }, ngImport: i0__namespace, template: "<ids-col \r\n [attr.cols]=\"cols\"\r\n [attr.mobile]=\"mobile\" \r\n [attr.align]=\"align\">\r\n <ng-content></ng-content>\r\n</ids-col>", styles: ["id-col { display: contents; }"], encapsulation: i0__namespace.ViewEncapsulation.None });
1720
+ IDColumnComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDColumnComponent, deps: [{ token: i0__namespace.ElementRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
1721
+ IDColumnComponent.ɵcmp = i0__namespace.ɵɵ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__namespace, 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__namespace.ViewEncapsulation.None });
1689
1722
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDColumnComponent, decorators: [{
1690
1723
  type: i0.Component,
1691
1724
  args: [{
@@ -1694,12 +1727,22 @@
1694
1727
  encapsulation: i0.ViewEncapsulation.None,
1695
1728
  styles: ['id-col { display: contents; }']
1696
1729
  }]
1697
- }], ctorParameters: function () { return []; }, propDecorators: { cols: [{
1730
+ }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }]; }, propDecorators: { cols: [{
1731
+ type: i0.Input
1732
+ }], offset: [{
1733
+ type: i0.Input
1734
+ }], m: [{
1698
1735
  type: i0.Input
1699
- }], mobile: [{
1736
+ }], mOffset: [{
1737
+ type: i0.Input
1738
+ }], s: [{
1739
+ type: i0.Input
1740
+ }], sOffset: [{
1700
1741
  type: i0.Input
1701
1742
  }], align: [{
1702
1743
  type: i0.Input
1744
+ }], style: [{
1745
+ type: i0.Input
1703
1746
  }] } });
1704
1747
 
1705
1748
  var IDColumnModule = /** @class */ (function () {
@@ -1726,11 +1769,12 @@
1726
1769
  var IDContainerComponent = /** @class */ (function () {
1727
1770
  function IDContainerComponent() {
1728
1771
  this.fluid = false;
1772
+ this.gutterless = false;
1729
1773
  }
1730
1774
  return IDContainerComponent;
1731
1775
  }());
1732
1776
  IDContainerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDContainerComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1733
- IDContainerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDContainerComponent, selector: "id-container", inputs: { fluid: "fluid" }, ngImport: i0__namespace, template: "<ids-container [attr.fluid]=\"fluid\">\r\n <ng-content></ng-content>\r\n</ids-container>", encapsulation: i0__namespace.ViewEncapsulation.None });
1777
+ IDContainerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDContainerComponent, selector: "id-container", inputs: { fluid: "fluid", gutterless: "gutterless" }, ngImport: i0__namespace, 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__namespace.ViewEncapsulation.None });
1734
1778
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: IDContainerComponent, decorators: [{
1735
1779
  type: i0.Component,
1736
1780
  args: [{
@@ -1740,6 +1784,8 @@
1740
1784
  }]
1741
1785
  }], ctorParameters: function () { return []; }, propDecorators: { fluid: [{
1742
1786
  type: i0.Input
1787
+ }], gutterless: [{
1788
+ type: i0.Input
1743
1789
  }] } });
1744
1790
 
1745
1791
  var IDContainerModule = /** @class */ (function () {