@maggioli-design-system/magma-angular 2.0.0-beta.2 → 2.0.0-beta.3
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/AGENTS.md +60 -0
- package/README.md +11 -0
- package/agents/assets.md +180 -0
- package/agents/components.md +128 -0
- package/agents/install.md +132 -0
- package/agents/usage.md +211 -0
- package/fesm2022/maggioli-design-system-magma-angular.mjs +105 -80
- package/fesm2022/maggioli-design-system-magma-angular.mjs.map +1 -1
- package/index.d.ts +71 -50
- package/package.json +2 -2
|
@@ -186,9 +186,9 @@ let MdsAccordion = class MdsAccordion {
|
|
|
186
186
|
set multiple(_) { }
|
|
187
187
|
;
|
|
188
188
|
/**
|
|
189
|
-
*
|
|
189
|
+
* Prevents the user from closing the currently open item, forcing at least one panel to stay expanded @default false
|
|
190
190
|
*/
|
|
191
|
-
set
|
|
191
|
+
set disableClose(_) { }
|
|
192
192
|
;
|
|
193
193
|
mdsAccordionChange = new EventEmitter();
|
|
194
194
|
constructor(c, r, z) {
|
|
@@ -197,12 +197,12 @@ let MdsAccordion = class MdsAccordion {
|
|
|
197
197
|
this.el = r.nativeElement;
|
|
198
198
|
}
|
|
199
199
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
200
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsAccordion, isStandalone: true, selector: "mds-accordion", inputs: {
|
|
200
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsAccordion, isStandalone: true, selector: "mds-accordion", inputs: { disableClose: "disableClose", multiple: "multiple" }, outputs: { mdsAccordionChange: "mdsAccordionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
201
201
|
};
|
|
202
202
|
MdsAccordion = __decorate([
|
|
203
203
|
ProxyCmp({
|
|
204
204
|
defineCustomElementFn: defineCustomElement$1,
|
|
205
|
-
inputs: ['
|
|
205
|
+
inputs: ['disableClose', 'multiple']
|
|
206
206
|
})
|
|
207
207
|
], MdsAccordion);
|
|
208
208
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsAccordion, decorators: [{
|
|
@@ -212,7 +212,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
212
212
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
213
213
|
template: '<ng-content></ng-content>',
|
|
214
214
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
215
|
-
inputs: ['
|
|
215
|
+
inputs: ['disableClose', 'multiple'],
|
|
216
216
|
outputs: ['mdsAccordionChange'],
|
|
217
217
|
}]
|
|
218
218
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsAccordionChange: [{
|
|
@@ -614,9 +614,9 @@ let MdsBanner = class MdsBanner {
|
|
|
614
614
|
set tone(_) { }
|
|
615
615
|
;
|
|
616
616
|
/**
|
|
617
|
-
*
|
|
617
|
+
* Hides the decoration around the banner icon @default false
|
|
618
618
|
*/
|
|
619
|
-
set
|
|
619
|
+
set hideCockade(_) { }
|
|
620
620
|
;
|
|
621
621
|
/**
|
|
622
622
|
* Shows the cross icon to perform cancel/delete action on element
|
|
@@ -640,12 +640,12 @@ let MdsBanner = class MdsBanner {
|
|
|
640
640
|
this.el = r.nativeElement;
|
|
641
641
|
}
|
|
642
642
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
643
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsBanner, isStandalone: true, selector: "mds-banner", inputs: {
|
|
643
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsBanner, isStandalone: true, selector: "mds-banner", inputs: { deletable: "deletable", headline: "headline", hideCockade: "hideCockade", icon: "icon", tone: "tone", variant: "variant" }, outputs: { mdsBannerClose: "mdsBannerClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
644
644
|
};
|
|
645
645
|
MdsBanner = __decorate([
|
|
646
646
|
ProxyCmp({
|
|
647
647
|
defineCustomElementFn: defineCustomElement$a,
|
|
648
|
-
inputs: ['
|
|
648
|
+
inputs: ['deletable', 'headline', 'hideCockade', 'icon', 'tone', 'variant'],
|
|
649
649
|
methods: ['updateLang']
|
|
650
650
|
})
|
|
651
651
|
], MdsBanner);
|
|
@@ -656,7 +656,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
656
656
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
657
657
|
template: '<ng-content></ng-content>',
|
|
658
658
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
659
|
-
inputs: ['
|
|
659
|
+
inputs: ['deletable', 'headline', 'hideCockade', 'icon', 'tone', 'variant'],
|
|
660
660
|
outputs: ['mdsBannerClose'],
|
|
661
661
|
}]
|
|
662
662
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsBannerClose: [{
|
|
@@ -804,9 +804,9 @@ let MdsBreadcrumb = class MdsBreadcrumb {
|
|
|
804
804
|
z;
|
|
805
805
|
el;
|
|
806
806
|
/**
|
|
807
|
-
*
|
|
807
|
+
* Hides the back arrow button @default false
|
|
808
808
|
*/
|
|
809
|
-
set
|
|
809
|
+
set hideBack(_) { }
|
|
810
810
|
;
|
|
811
811
|
mdsBreadcrumbChange = new EventEmitter();
|
|
812
812
|
constructor(c, r, z) {
|
|
@@ -815,12 +815,12 @@ let MdsBreadcrumb = class MdsBreadcrumb {
|
|
|
815
815
|
this.el = r.nativeElement;
|
|
816
816
|
}
|
|
817
817
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
818
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsBreadcrumb, isStandalone: true, selector: "mds-breadcrumb", inputs: {
|
|
818
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsBreadcrumb, isStandalone: true, selector: "mds-breadcrumb", inputs: { hideBack: "hideBack" }, outputs: { mdsBreadcrumbChange: "mdsBreadcrumbChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
819
819
|
};
|
|
820
820
|
MdsBreadcrumb = __decorate([
|
|
821
821
|
ProxyCmp({
|
|
822
822
|
defineCustomElementFn: defineCustomElement$d,
|
|
823
|
-
inputs: ['
|
|
823
|
+
inputs: ['hideBack'],
|
|
824
824
|
methods: ['updateLang']
|
|
825
825
|
})
|
|
826
826
|
], MdsBreadcrumb);
|
|
@@ -831,7 +831,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
831
831
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
832
832
|
template: '<ng-content></ng-content>',
|
|
833
833
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
834
|
-
inputs: ['
|
|
834
|
+
inputs: ['hideBack'],
|
|
835
835
|
outputs: ['mdsBreadcrumbChange'],
|
|
836
836
|
}]
|
|
837
837
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsBreadcrumbChange: [{
|
|
@@ -1265,9 +1265,9 @@ let MdsCard = class MdsCard {
|
|
|
1265
1265
|
z;
|
|
1266
1266
|
el;
|
|
1267
1267
|
/**
|
|
1268
|
-
*
|
|
1268
|
+
* Disables the automatic responsive behavior based on container queries @default false
|
|
1269
1269
|
*/
|
|
1270
|
-
set
|
|
1270
|
+
set disableAutoGrid(_) { }
|
|
1271
1271
|
;
|
|
1272
1272
|
constructor(c, r, z) {
|
|
1273
1273
|
this.z = z;
|
|
@@ -1275,12 +1275,12 @@ let MdsCard = class MdsCard {
|
|
|
1275
1275
|
this.el = r.nativeElement;
|
|
1276
1276
|
}
|
|
1277
1277
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1278
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsCard, isStandalone: true, selector: "mds-card", inputs: {
|
|
1278
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsCard, isStandalone: true, selector: "mds-card", inputs: { disableAutoGrid: "disableAutoGrid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1279
1279
|
};
|
|
1280
1280
|
MdsCard = __decorate([
|
|
1281
1281
|
ProxyCmp({
|
|
1282
1282
|
defineCustomElementFn: defineCustomElement$k,
|
|
1283
|
-
inputs: ['
|
|
1283
|
+
inputs: ['disableAutoGrid']
|
|
1284
1284
|
})
|
|
1285
1285
|
], MdsCard);
|
|
1286
1286
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsCard, decorators: [{
|
|
@@ -1290,7 +1290,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
1290
1290
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1291
1291
|
template: '<ng-content></ng-content>',
|
|
1292
1292
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1293
|
-
inputs: ['
|
|
1293
|
+
inputs: ['disableAutoGrid'],
|
|
1294
1294
|
}]
|
|
1295
1295
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1296
1296
|
let MdsCardContent = class MdsCardContent {
|
|
@@ -1520,9 +1520,9 @@ let MdsDropdown = class MdsDropdown {
|
|
|
1520
1520
|
z;
|
|
1521
1521
|
el;
|
|
1522
1522
|
/**
|
|
1523
|
-
* If set, the component will have an arrow pointing to the caller. @default
|
|
1523
|
+
* If set, the component will not have an arrow pointing to the caller. @default false
|
|
1524
1524
|
*/
|
|
1525
|
-
set
|
|
1525
|
+
set hideArrow(_) { }
|
|
1526
1526
|
;
|
|
1527
1527
|
/**
|
|
1528
1528
|
* Sets the distance between arrow and dropdown margins. @default 24
|
|
@@ -1530,9 +1530,9 @@ let MdsDropdown = class MdsDropdown {
|
|
|
1530
1530
|
set arrowPadding(_) { }
|
|
1531
1531
|
;
|
|
1532
1532
|
/**
|
|
1533
|
-
* If set, the component will be placed automatically near it's caller. @default false
|
|
1533
|
+
* If set, the component will not be placed automatically near it's caller. @default false
|
|
1534
1534
|
*/
|
|
1535
|
-
set
|
|
1535
|
+
set disableAutoPlacement(_) { }
|
|
1536
1536
|
;
|
|
1537
1537
|
/**
|
|
1538
1538
|
* Specifies if the component has a backdrop background @default false
|
|
@@ -1565,9 +1565,9 @@ let MdsDropdown = class MdsDropdown {
|
|
|
1565
1565
|
set placement(_) { }
|
|
1566
1566
|
;
|
|
1567
1567
|
/**
|
|
1568
|
-
* If set, the component will be kept inside the viewport. @default
|
|
1568
|
+
* If set, the component will not be kept inside the viewport. @default false
|
|
1569
1569
|
*/
|
|
1570
|
-
set
|
|
1570
|
+
set disableShift(_) { }
|
|
1571
1571
|
;
|
|
1572
1572
|
/**
|
|
1573
1573
|
* Sets a safe area distance between the dropdown and the viewport. @default 24
|
|
@@ -1575,9 +1575,9 @@ let MdsDropdown = class MdsDropdown {
|
|
|
1575
1575
|
set shiftPadding(_) { }
|
|
1576
1576
|
;
|
|
1577
1577
|
/**
|
|
1578
|
-
* If set, the component will follow the caller smoothly
|
|
1578
|
+
* If set, the component will not follow the caller smoothly when the page scrolls. @default false
|
|
1579
1579
|
*/
|
|
1580
|
-
set
|
|
1580
|
+
set disableSmooth(_) { }
|
|
1581
1581
|
;
|
|
1582
1582
|
/**
|
|
1583
1583
|
* Sets the CSS position strategy of the component. @default 'absolute'
|
|
@@ -1603,12 +1603,12 @@ let MdsDropdown = class MdsDropdown {
|
|
|
1603
1603
|
this.el = r.nativeElement;
|
|
1604
1604
|
}
|
|
1605
1605
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1606
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsDropdown, isStandalone: true, selector: "mds-dropdown", inputs: {
|
|
1606
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsDropdown, isStandalone: true, selector: "mds-dropdown", inputs: { arrowPadding: "arrowPadding", backdrop: "backdrop", disableAutoPlacement: "disableAutoPlacement", disableShift: "disableShift", disableSmooth: "disableSmooth", flip: "flip", hideArrow: "hideArrow", interaction: "interaction", offset: "offset", placement: "placement", shiftPadding: "shiftPadding", strategy: "strategy", target: "target", visible: "visible", zIndex: "zIndex" }, outputs: { mdsDropdownVisible: "mdsDropdownVisible", mdsDropdownHide: "mdsDropdownHide", mdsDropdownChange: "mdsDropdownChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1607
1607
|
};
|
|
1608
1608
|
MdsDropdown = __decorate([
|
|
1609
1609
|
ProxyCmp({
|
|
1610
1610
|
defineCustomElementFn: defineCustomElement$r,
|
|
1611
|
-
inputs: ['
|
|
1611
|
+
inputs: ['arrowPadding', 'backdrop', 'disableAutoPlacement', 'disableShift', 'disableSmooth', 'flip', 'hideArrow', 'interaction', 'offset', 'placement', 'shiftPadding', 'strategy', 'target', 'visible', 'zIndex']
|
|
1612
1612
|
})
|
|
1613
1613
|
], MdsDropdown);
|
|
1614
1614
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsDropdown, decorators: [{
|
|
@@ -1618,7 +1618,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
1618
1618
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1619
1619
|
template: '<ng-content></ng-content>',
|
|
1620
1620
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1621
|
-
inputs: ['
|
|
1621
|
+
inputs: ['arrowPadding', 'backdrop', 'disableAutoPlacement', 'disableShift', 'disableSmooth', 'flip', 'hideArrow', 'interaction', 'offset', 'placement', 'shiftPadding', 'strategy', { name: 'target', required: true }, 'visible', 'zIndex'],
|
|
1622
1622
|
outputs: ['mdsDropdownVisible', 'mdsDropdownHide', 'mdsDropdownChange'],
|
|
1623
1623
|
}]
|
|
1624
1624
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsDropdownVisible: [{
|
|
@@ -1742,9 +1742,9 @@ let MdsFile = class MdsFile {
|
|
|
1742
1742
|
set preview(_) { }
|
|
1743
1743
|
;
|
|
1744
1744
|
/**
|
|
1745
|
-
*
|
|
1745
|
+
* Hides the download icon @default false
|
|
1746
1746
|
*/
|
|
1747
|
-
set
|
|
1747
|
+
set hideDownloadedIcon(_) { }
|
|
1748
1748
|
;
|
|
1749
1749
|
/**
|
|
1750
1750
|
* Sets if the download icon must be shown or not
|
|
@@ -1758,12 +1758,12 @@ let MdsFile = class MdsFile {
|
|
|
1758
1758
|
this.el = r.nativeElement;
|
|
1759
1759
|
}
|
|
1760
1760
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsFile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1761
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsFile, isStandalone: true, selector: "mds-file", inputs: { description: "description", filename: "filename", format: "format",
|
|
1761
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsFile, isStandalone: true, selector: "mds-file", inputs: { description: "description", filename: "filename", format: "format", hideDownloadedIcon: "hideDownloadedIcon", preview: "preview", suffix: "suffix" }, outputs: { mdsFileDownload: "mdsFileDownload" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1762
1762
|
};
|
|
1763
1763
|
MdsFile = __decorate([
|
|
1764
1764
|
ProxyCmp({
|
|
1765
1765
|
defineCustomElementFn: defineCustomElement$u,
|
|
1766
|
-
inputs: ['description', 'filename', 'format', '
|
|
1766
|
+
inputs: ['description', 'filename', 'format', 'hideDownloadedIcon', 'preview', 'suffix'],
|
|
1767
1767
|
methods: ['updateLang']
|
|
1768
1768
|
})
|
|
1769
1769
|
], MdsFile);
|
|
@@ -1774,7 +1774,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
1774
1774
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1775
1775
|
template: '<ng-content></ng-content>',
|
|
1776
1776
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1777
|
-
inputs: ['description', 'filename', 'format', '
|
|
1777
|
+
inputs: ['description', 'filename', 'format', 'hideDownloadedIcon', 'preview', 'suffix'],
|
|
1778
1778
|
outputs: ['mdsFileDownload'],
|
|
1779
1779
|
}]
|
|
1780
1780
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsFileDownload: [{
|
|
@@ -2011,9 +2011,9 @@ from the `autoHide` attribute's value, then if the page is scrolled up it is sho
|
|
|
2011
2011
|
set autoHide(_) { }
|
|
2012
2012
|
;
|
|
2013
2013
|
/**
|
|
2014
|
-
*
|
|
2014
|
+
* Hides the backdrop shown when the mds-header-bar attribute appearace is set to `inline` @default false
|
|
2015
2015
|
*/
|
|
2016
|
-
set
|
|
2016
|
+
set hideBackdrop(_) { }
|
|
2017
2017
|
;
|
|
2018
2018
|
/**
|
|
2019
2019
|
* Sets the visibility type of the hamburger menu of mds-header-bar @default 'mobile'
|
|
@@ -2043,12 +2043,12 @@ from the `autoHide` attribute's value, then if the page is scrolled up it is sho
|
|
|
2043
2043
|
this.el = r.nativeElement;
|
|
2044
2044
|
}
|
|
2045
2045
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2046
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsHeader, isStandalone: true, selector: "mds-header", inputs: { appearance: "appearance", appearanceSet: "appearanceSet", autoHide: "autoHide",
|
|
2046
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsHeader, isStandalone: true, selector: "mds-header", inputs: { appearance: "appearance", appearanceSet: "appearanceSet", autoHide: "autoHide", hideBackdrop: "hideBackdrop", menu: "menu", nav: "nav", threshold: "threshold", visibility: "visibility" }, outputs: { mdsHeaderClose: "mdsHeaderClose", mdsHeaderVisibilityChange: "mdsHeaderVisibilityChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2047
2047
|
};
|
|
2048
2048
|
MdsHeader = __decorate([
|
|
2049
2049
|
ProxyCmp({
|
|
2050
2050
|
defineCustomElementFn: defineCustomElement$y,
|
|
2051
|
-
inputs: ['appearance', 'appearanceSet', 'autoHide', '
|
|
2051
|
+
inputs: ['appearance', 'appearanceSet', 'autoHide', 'hideBackdrop', 'menu', 'nav', 'threshold', 'visibility'],
|
|
2052
2052
|
methods: ['setOpened']
|
|
2053
2053
|
})
|
|
2054
2054
|
], MdsHeader);
|
|
@@ -2059,7 +2059,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
2059
2059
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2060
2060
|
template: '<ng-content></ng-content>',
|
|
2061
2061
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2062
|
-
inputs: ['appearance', 'appearanceSet', 'autoHide', '
|
|
2062
|
+
inputs: ['appearance', 'appearanceSet', 'autoHide', 'hideBackdrop', 'menu', 'nav', 'threshold', 'visibility'],
|
|
2063
2063
|
outputs: ['mdsHeaderClose', 'mdsHeaderVisibilityChange'],
|
|
2064
2064
|
}]
|
|
2065
2065
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsHeaderClose: [{
|
|
@@ -2118,9 +2118,9 @@ let MdsHelp = class MdsHelp {
|
|
|
2118
2118
|
set icon(_) { }
|
|
2119
2119
|
;
|
|
2120
2120
|
/**
|
|
2121
|
-
* If set, the component will be placed automatically near it's caller. @default
|
|
2121
|
+
* If set, the component will not be placed automatically near it's caller. @default false
|
|
2122
2122
|
*/
|
|
2123
|
-
set
|
|
2123
|
+
set disableAutoPlacement(_) { }
|
|
2124
2124
|
;
|
|
2125
2125
|
/**
|
|
2126
2126
|
* Specifies where the component should be placed relative to the caller. @default 'top'
|
|
@@ -2133,12 +2133,12 @@ let MdsHelp = class MdsHelp {
|
|
|
2133
2133
|
this.el = r.nativeElement;
|
|
2134
2134
|
}
|
|
2135
2135
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsHelp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2136
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsHelp, isStandalone: true, selector: "mds-help", inputs: {
|
|
2136
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsHelp, isStandalone: true, selector: "mds-help", inputs: { disableAutoPlacement: "disableAutoPlacement", icon: "icon", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2137
2137
|
};
|
|
2138
2138
|
MdsHelp = __decorate([
|
|
2139
2139
|
ProxyCmp({
|
|
2140
2140
|
defineCustomElementFn: defineCustomElement$A,
|
|
2141
|
-
inputs: ['
|
|
2141
|
+
inputs: ['disableAutoPlacement', 'icon', 'placement']
|
|
2142
2142
|
})
|
|
2143
2143
|
], MdsHelp);
|
|
2144
2144
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsHelp, decorators: [{
|
|
@@ -2148,7 +2148,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
2148
2148
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2149
2149
|
template: '<ng-content></ng-content>',
|
|
2150
2150
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2151
|
-
inputs: ['
|
|
2151
|
+
inputs: ['disableAutoPlacement', 'icon', 'placement'],
|
|
2152
2152
|
}]
|
|
2153
2153
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2154
2154
|
let MdsHorizontalScroll = class MdsHorizontalScroll {
|
|
@@ -3505,9 +3505,9 @@ let MdsModal = class MdsModal {
|
|
|
3505
3505
|
set opened(_) { }
|
|
3506
3506
|
;
|
|
3507
3507
|
/**
|
|
3508
|
-
*
|
|
3508
|
+
* Hides the modal backdrop @default false
|
|
3509
3509
|
*/
|
|
3510
|
-
set
|
|
3510
|
+
set hideBackdrop(_) { }
|
|
3511
3511
|
;
|
|
3512
3512
|
/**
|
|
3513
3513
|
* Specifies the animation position of the modal window @default 'center'
|
|
@@ -3515,12 +3515,7 @@ let MdsModal = class MdsModal {
|
|
|
3515
3515
|
set position(_) { }
|
|
3516
3516
|
;
|
|
3517
3517
|
/**
|
|
3518
|
-
* Specifies
|
|
3519
|
-
*/
|
|
3520
|
-
set animating(_) { }
|
|
3521
|
-
;
|
|
3522
|
-
/**
|
|
3523
|
-
* Specifies if the component is animating itself or not @default 'slide'
|
|
3518
|
+
* Specifies the animation style of the modal window @default 'slide'
|
|
3524
3519
|
*/
|
|
3525
3520
|
set animation(_) { }
|
|
3526
3521
|
;
|
|
@@ -3546,12 +3541,12 @@ If `relaxed` is selected the component can be dismissed also by cliccking the ba
|
|
|
3546
3541
|
this.el = r.nativeElement;
|
|
3547
3542
|
}
|
|
3548
3543
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3549
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsModal, isStandalone: true, selector: "mds-modal", inputs: {
|
|
3544
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsModal, isStandalone: true, selector: "mds-modal", inputs: { animation: "animation", hideBackdrop: "hideBackdrop", interaction: "interaction", opened: "opened", overflow: "overflow", position: "position" }, outputs: { mdsModalOpen: "mdsModalOpen", mdsModalShow: "mdsModalShow", mdsModalClose: "mdsModalClose", mdsModalHide: "mdsModalHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3550
3545
|
};
|
|
3551
3546
|
MdsModal = __decorate([
|
|
3552
3547
|
ProxyCmp({
|
|
3553
3548
|
defineCustomElementFn: defineCustomElement$Z,
|
|
3554
|
-
inputs: ['
|
|
3549
|
+
inputs: ['animation', 'hideBackdrop', 'interaction', 'opened', 'overflow', 'position'],
|
|
3555
3550
|
methods: ['close']
|
|
3556
3551
|
})
|
|
3557
3552
|
], MdsModal);
|
|
@@ -3562,7 +3557,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
3562
3557
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3563
3558
|
template: '<ng-content></ng-content>',
|
|
3564
3559
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3565
|
-
inputs: ['
|
|
3560
|
+
inputs: ['animation', 'hideBackdrop', 'interaction', 'opened', 'overflow', 'position'],
|
|
3566
3561
|
outputs: ['mdsModalOpen', 'mdsModalShow', 'mdsModalClose', 'mdsModalHide'],
|
|
3567
3562
|
}]
|
|
3568
3563
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsModalOpen: [{
|
|
@@ -3630,9 +3625,9 @@ let MdsNotification = class MdsNotification {
|
|
|
3630
3625
|
set value(_) { }
|
|
3631
3626
|
;
|
|
3632
3627
|
/**
|
|
3633
|
-
* Specifies if the notification is
|
|
3628
|
+
* Specifies if the notification is dismissed @default false
|
|
3634
3629
|
*/
|
|
3635
|
-
set
|
|
3630
|
+
set dismissed(_) { }
|
|
3636
3631
|
;
|
|
3637
3632
|
/**
|
|
3638
3633
|
* Specifies the position strategy of the notification @default 'fixed'
|
|
@@ -3650,12 +3645,12 @@ let MdsNotification = class MdsNotification {
|
|
|
3650
3645
|
this.el = r.nativeElement;
|
|
3651
3646
|
}
|
|
3652
3647
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
3653
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsNotification, isStandalone: true, selector: "mds-notification", inputs: { max: "max", strategy: "strategy", target: "target", value: "value"
|
|
3648
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsNotification, isStandalone: true, selector: "mds-notification", inputs: { dismissed: "dismissed", max: "max", strategy: "strategy", target: "target", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3654
3649
|
};
|
|
3655
3650
|
MdsNotification = __decorate([
|
|
3656
3651
|
ProxyCmp({
|
|
3657
3652
|
defineCustomElementFn: defineCustomElement$$,
|
|
3658
|
-
inputs: ['max', 'strategy', 'target', 'value'
|
|
3653
|
+
inputs: ['dismissed', 'max', 'strategy', 'target', 'value']
|
|
3659
3654
|
})
|
|
3660
3655
|
], MdsNotification);
|
|
3661
3656
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsNotification, decorators: [{
|
|
@@ -3665,7 +3660,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
3665
3660
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3666
3661
|
template: '<ng-content></ng-content>',
|
|
3667
3662
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3668
|
-
inputs: ['max', 'strategy', 'target', 'value'
|
|
3663
|
+
inputs: ['dismissed', 'max', 'strategy', 'target', 'value'],
|
|
3669
3664
|
}]
|
|
3670
3665
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
3671
3666
|
let MdsPaginator = class MdsPaginator {
|
|
@@ -4541,7 +4536,7 @@ let MdsPushNotificationItem = class MdsPushNotificationItem {
|
|
|
4541
4536
|
set dateFormat(_) { }
|
|
4542
4537
|
;
|
|
4543
4538
|
/**
|
|
4544
|
-
* Specifies if the component is dismissable
|
|
4539
|
+
* Specifies if the component is dismissable; when set, a dismiss button is shown. @default false
|
|
4545
4540
|
*/
|
|
4546
4541
|
set deletable(_) { }
|
|
4547
4542
|
;
|
|
@@ -5247,6 +5242,18 @@ let MdsTabItem = class MdsTabItem {
|
|
|
5247
5242
|
set size(_) { }
|
|
5248
5243
|
;
|
|
5249
5244
|
/**
|
|
5245
|
+
* Reflects the parent tab layout direction (set by mds-tab); drives the
|
|
5246
|
+
vertical layout without :host-context
|
|
5247
|
+
*/
|
|
5248
|
+
set direction(_) { }
|
|
5249
|
+
;
|
|
5250
|
+
/**
|
|
5251
|
+
* Reflects the parent tab selection animation (set by mds-tab); drives the
|
|
5252
|
+
slide-variant styling without :host-context
|
|
5253
|
+
*/
|
|
5254
|
+
set animation(_) { }
|
|
5255
|
+
;
|
|
5256
|
+
/**
|
|
5250
5257
|
* Specifies an optional value to get from mdsTabItemSelect event
|
|
5251
5258
|
*/
|
|
5252
5259
|
set value(_) { }
|
|
@@ -5264,12 +5271,12 @@ let MdsTabItem = class MdsTabItem {
|
|
|
5264
5271
|
this.el = r.nativeElement;
|
|
5265
5272
|
}
|
|
5266
5273
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
5267
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsTabItem, isStandalone: true, selector: "mds-tab-item", inputs: { await: "await", disabled: "disabled", href: "href", icon: "icon", iconPosition: "iconPosition", label: "label", selected: "selected", size: "size", type: "type", value: "value" }, outputs: { mdsTabItemSelect: "mdsTabItemSelect", mdsTabItemFocus: "mdsTabItemFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5274
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsTabItem, isStandalone: true, selector: "mds-tab-item", inputs: { animation: "animation", await: "await", direction: "direction", disabled: "disabled", href: "href", icon: "icon", iconPosition: "iconPosition", label: "label", selected: "selected", size: "size", type: "type", value: "value" }, outputs: { mdsTabItemSelect: "mdsTabItemSelect", mdsTabItemFocus: "mdsTabItemFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5268
5275
|
};
|
|
5269
5276
|
MdsTabItem = __decorate([
|
|
5270
5277
|
ProxyCmp({
|
|
5271
5278
|
defineCustomElementFn: defineCustomElement$1y,
|
|
5272
|
-
inputs: ['await', 'disabled', 'href', 'icon', 'iconPosition', 'label', 'selected', 'size', 'type', 'value']
|
|
5279
|
+
inputs: ['animation', 'await', 'direction', 'disabled', 'href', 'icon', 'iconPosition', 'label', 'selected', 'size', 'type', 'value']
|
|
5273
5280
|
})
|
|
5274
5281
|
], MdsTabItem);
|
|
5275
5282
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsTabItem, decorators: [{
|
|
@@ -5279,7 +5286,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
5279
5286
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5280
5287
|
template: '<ng-content></ng-content>',
|
|
5281
5288
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
5282
|
-
inputs: ['await', 'disabled', 'href', 'icon', 'iconPosition', 'label', 'selected', 'size', 'type', 'value'],
|
|
5289
|
+
inputs: ['animation', 'await', 'direction', 'disabled', 'href', 'icon', 'iconPosition', 'label', 'selected', 'size', 'type', 'value'],
|
|
5283
5290
|
outputs: ['mdsTabItemSelect', 'mdsTabItemFocus'],
|
|
5284
5291
|
}]
|
|
5285
5292
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsTabItemSelect: [{
|
|
@@ -5528,6 +5535,12 @@ let MdsTableRow = class MdsTableRow {
|
|
|
5528
5535
|
set selected(_) { }
|
|
5529
5536
|
;
|
|
5530
5537
|
/**
|
|
5538
|
+
* Reflects the parent table selection state (set by mds-table); drives the
|
|
5539
|
+
row action background without :host-context
|
|
5540
|
+
*/
|
|
5541
|
+
set selection(_) { }
|
|
5542
|
+
;
|
|
5543
|
+
/**
|
|
5531
5544
|
* The value associated with the row, emitted when the row is selected.
|
|
5532
5545
|
*/
|
|
5533
5546
|
set value(_) { }
|
|
@@ -5538,12 +5551,12 @@ let MdsTableRow = class MdsTableRow {
|
|
|
5538
5551
|
this.el = r.nativeElement;
|
|
5539
5552
|
}
|
|
5540
5553
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
5541
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsTableRow, isStandalone: true, selector: "mds-table-row", inputs: { interactive: "interactive", overlayActions: "overlayActions", selectable: "selectable", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5554
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsTableRow, isStandalone: true, selector: "mds-table-row", inputs: { interactive: "interactive", overlayActions: "overlayActions", selectable: "selectable", selected: "selected", selection: "selection", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5542
5555
|
};
|
|
5543
5556
|
MdsTableRow = __decorate([
|
|
5544
5557
|
ProxyCmp({
|
|
5545
5558
|
defineCustomElementFn: defineCustomElement$1F,
|
|
5546
|
-
inputs: ['interactive', 'overlayActions', 'selectable', 'selected', 'value'],
|
|
5559
|
+
inputs: ['interactive', 'overlayActions', 'selectable', 'selected', 'selection', 'value'],
|
|
5547
5560
|
methods: ['updateLang']
|
|
5548
5561
|
})
|
|
5549
5562
|
], MdsTableRow);
|
|
@@ -5554,7 +5567,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
5554
5567
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5555
5568
|
template: '<ng-content></ng-content>',
|
|
5556
5569
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
5557
|
-
inputs: ['interactive', 'overlayActions', 'selectable', 'selected', 'value'],
|
|
5570
|
+
inputs: ['interactive', 'overlayActions', 'selectable', 'selected', 'selection', 'value'],
|
|
5558
5571
|
}]
|
|
5559
5572
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
5560
5573
|
let MdsText = class MdsText {
|
|
@@ -5674,9 +5687,9 @@ let MdsTooltip = class MdsTooltip {
|
|
|
5674
5687
|
z;
|
|
5675
5688
|
el;
|
|
5676
5689
|
/**
|
|
5677
|
-
* If set, the component will be placed automatically near it's caller. @default
|
|
5690
|
+
* If set, the component will not be placed automatically near it's caller. @default false
|
|
5678
5691
|
*/
|
|
5679
|
-
set
|
|
5692
|
+
set disableAutoPlacement(_) { }
|
|
5680
5693
|
;
|
|
5681
5694
|
/**
|
|
5682
5695
|
* Specifies the placement of the component if no space is available where it is placed. @default false
|
|
@@ -5704,9 +5717,9 @@ let MdsTooltip = class MdsTooltip {
|
|
|
5704
5717
|
set typography(_) { }
|
|
5705
5718
|
;
|
|
5706
5719
|
/**
|
|
5707
|
-
* If set, the component will be kept inside the viewport. @default
|
|
5720
|
+
* If set, the component will not be kept inside the viewport. @default false
|
|
5708
5721
|
*/
|
|
5709
|
-
set
|
|
5722
|
+
set disableShift(_) { }
|
|
5710
5723
|
;
|
|
5711
5724
|
/**
|
|
5712
5725
|
* Sets a safe area distance between the tooltip and the viewport. @default 12
|
|
@@ -5729,12 +5742,12 @@ let MdsTooltip = class MdsTooltip {
|
|
|
5729
5742
|
this.el = r.nativeElement;
|
|
5730
5743
|
}
|
|
5731
5744
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
5732
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsTooltip, isStandalone: true, selector: "mds-tooltip", inputs: {
|
|
5745
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsTooltip, isStandalone: true, selector: "mds-tooltip", inputs: { disableAutoPlacement: "disableAutoPlacement", disableShift: "disableShift", flip: "flip", offset: "offset", placement: "placement", shiftPadding: "shiftPadding", strategy: "strategy", target: "target", typography: "typography", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5733
5746
|
};
|
|
5734
5747
|
MdsTooltip = __decorate([
|
|
5735
5748
|
ProxyCmp({
|
|
5736
5749
|
defineCustomElementFn: defineCustomElement$1I,
|
|
5737
|
-
inputs: ['
|
|
5750
|
+
inputs: ['disableAutoPlacement', 'disableShift', 'flip', 'offset', 'placement', 'shiftPadding', 'strategy', 'target', 'typography', 'visible']
|
|
5738
5751
|
})
|
|
5739
5752
|
], MdsTooltip);
|
|
5740
5753
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsTooltip, decorators: [{
|
|
@@ -5744,7 +5757,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
5744
5757
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5745
5758
|
template: '<ng-content></ng-content>',
|
|
5746
5759
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
5747
|
-
inputs: ['
|
|
5760
|
+
inputs: ['disableAutoPlacement', 'disableShift', 'flip', 'offset', 'placement', 'shiftPadding', 'strategy', { name: 'target', required: true }, 'typography', 'visible'],
|
|
5748
5761
|
}]
|
|
5749
5762
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
5750
5763
|
let MdsTree = class MdsTree {
|
|
@@ -5843,6 +5856,18 @@ let MdsTreeItem = class MdsTreeItem {
|
|
|
5843
5856
|
set toggle(_) { }
|
|
5844
5857
|
;
|
|
5845
5858
|
/**
|
|
5859
|
+
* Reflects the parent tree toggle icon position (set by mds-tree); drives the
|
|
5860
|
+
toggle-icon layout without :host-context
|
|
5861
|
+
*/
|
|
5862
|
+
set togglePosition(_) { }
|
|
5863
|
+
;
|
|
5864
|
+
/**
|
|
5865
|
+
* Reflects the parent tree appearance (set by mds-tree); drives the depth/none
|
|
5866
|
+
layout without :host-context
|
|
5867
|
+
*/
|
|
5868
|
+
set appearance(_) { }
|
|
5869
|
+
;
|
|
5870
|
+
/**
|
|
5846
5871
|
* Specifies if the tree is expanded.
|
|
5847
5872
|
*/
|
|
5848
5873
|
set expanded(_) { }
|
|
@@ -5865,13 +5890,13 @@ let MdsTreeItem = class MdsTreeItem {
|
|
|
5865
5890
|
this.el = r.nativeElement;
|
|
5866
5891
|
}
|
|
5867
5892
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsTreeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
5868
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsTreeItem, isStandalone: true, selector: "mds-tree-item", inputs: { actions: "actions", async: "async", depth: "depth", expanded: "expanded", icon: "icon", label: "label", toggle: "toggle", truncate: "truncate" }, outputs: { mdsTreeItemExpand: "mdsTreeItemExpand", mdsTreeItemCollapse: "mdsTreeItemCollapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5893
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: MdsTreeItem, isStandalone: true, selector: "mds-tree-item", inputs: { actions: "actions", appearance: "appearance", async: "async", depth: "depth", expanded: "expanded", icon: "icon", label: "label", toggle: "toggle", togglePosition: "togglePosition", truncate: "truncate" }, outputs: { mdsTreeItemExpand: "mdsTreeItemExpand", mdsTreeItemCollapse: "mdsTreeItemCollapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5869
5894
|
};
|
|
5870
5895
|
MdsTreeItem = __decorate([
|
|
5871
5896
|
ProxyCmp({
|
|
5872
5897
|
defineCustomElementFn: defineCustomElement$1K,
|
|
5873
|
-
inputs: ['actions', 'async', 'depth', 'expanded', 'icon', 'label', 'toggle', 'truncate'],
|
|
5874
|
-
methods: ['updateLang', 'expand']
|
|
5898
|
+
inputs: ['actions', 'appearance', 'async', 'depth', 'expanded', 'icon', 'label', 'toggle', 'togglePosition', 'truncate'],
|
|
5899
|
+
methods: ['updateLang', 'expand', 'refreshActions']
|
|
5875
5900
|
})
|
|
5876
5901
|
], MdsTreeItem);
|
|
5877
5902
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: MdsTreeItem, decorators: [{
|
|
@@ -5881,7 +5906,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
5881
5906
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5882
5907
|
template: '<ng-content></ng-content>',
|
|
5883
5908
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
5884
|
-
inputs: ['actions', 'async', 'depth', 'expanded', 'icon', 'label', 'toggle', 'truncate'],
|
|
5909
|
+
inputs: ['actions', 'appearance', 'async', 'depth', 'expanded', 'icon', 'label', 'toggle', 'togglePosition', 'truncate'],
|
|
5885
5910
|
outputs: ['mdsTreeItemExpand', 'mdsTreeItemCollapse'],
|
|
5886
5911
|
}]
|
|
5887
5912
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsTreeItemExpand: [{
|