@awc-ui/angular 0.0.0-snapshot.20260820120614.cae27aa
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/LICENSE +21 -0
- package/README.md +41 -0
- package/awc-ui.module.d.ts +67 -0
- package/directives/angular-component-lib/utils.d.ts +9 -0
- package/directives/boolean-value-accessor.d.ts +9 -0
- package/directives/index.d.ts +2 -0
- package/directives/number-value-accessor.d.ts +9 -0
- package/directives/proxies.d.ts +2005 -0
- package/directives/radio-value-accessor.d.ts +8 -0
- package/directives/select-value-accessor.d.ts +8 -0
- package/directives/switch-value-accessor.d.ts +21 -0
- package/directives/text-value-accessor.d.ts +8 -0
- package/directives/value-accessor.d.ts +18 -0
- package/esm2022/awc-ui-angular.mjs +5 -0
- package/esm2022/awc-ui.module.mjs +101 -0
- package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/directives/boolean-value-accessor.mjs +38 -0
- package/esm2022/directives/index.mjs +85 -0
- package/esm2022/directives/number-value-accessor.mjs +40 -0
- package/esm2022/directives/proxies.mjs +2132 -0
- package/esm2022/directives/radio-value-accessor.mjs +35 -0
- package/esm2022/directives/select-value-accessor.mjs +35 -0
- package/esm2022/directives/switch-value-accessor.mjs +50 -0
- package/esm2022/directives/text-value-accessor.mjs +35 -0
- package/esm2022/directives/value-accessor.mjs +40 -0
- package/esm2022/index.mjs +15 -0
- package/fesm2022/awc-ui-angular.mjs +2537 -0
- package/fesm2022/awc-ui-angular.mjs.map +1 -0
- package/index.d.ts +11 -0
- package/package.json +45 -0
|
@@ -0,0 +1,2537 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, HostListener, Directive, APP_INITIALIZER, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
import { defineCustomElements } from '@awc-ui/core/loader';
|
|
5
|
+
import { __decorate } from 'tslib';
|
|
6
|
+
import { fromEvent } from 'rxjs';
|
|
7
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
8
|
+
|
|
9
|
+
/* eslint-disable */
|
|
10
|
+
/* tslint:disable */
|
|
11
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
12
|
+
const Prototype = Cmp.prototype;
|
|
13
|
+
inputs.forEach((item) => {
|
|
14
|
+
Object.defineProperty(Prototype, item, {
|
|
15
|
+
get() {
|
|
16
|
+
return this.el[item];
|
|
17
|
+
},
|
|
18
|
+
set(val) {
|
|
19
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
20
|
+
},
|
|
21
|
+
/**
|
|
22
|
+
* In the event that proxyInputs is called
|
|
23
|
+
* multiple times re-defining these inputs
|
|
24
|
+
* will cause an error to be thrown. As a result
|
|
25
|
+
* we set configurable: true to indicate these
|
|
26
|
+
* properties can be changed.
|
|
27
|
+
*/
|
|
28
|
+
configurable: true,
|
|
29
|
+
});
|
|
30
|
+
});
|
|
31
|
+
};
|
|
32
|
+
const proxyMethods = (Cmp, methods) => {
|
|
33
|
+
const Prototype = Cmp.prototype;
|
|
34
|
+
methods.forEach((methodName) => {
|
|
35
|
+
Prototype[methodName] = function () {
|
|
36
|
+
const args = arguments;
|
|
37
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
38
|
+
};
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
const proxyOutputs = (instance, el, events) => {
|
|
42
|
+
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
43
|
+
};
|
|
44
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
45
|
+
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
46
|
+
customElements.define(tagName, customElement);
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
50
|
+
function ProxyCmp(opts) {
|
|
51
|
+
const decorator = function (cls) {
|
|
52
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
53
|
+
if (defineCustomElementFn !== undefined) {
|
|
54
|
+
defineCustomElementFn();
|
|
55
|
+
}
|
|
56
|
+
if (inputs) {
|
|
57
|
+
proxyInputs(cls, inputs);
|
|
58
|
+
}
|
|
59
|
+
if (methods) {
|
|
60
|
+
proxyMethods(cls, methods);
|
|
61
|
+
}
|
|
62
|
+
return cls;
|
|
63
|
+
};
|
|
64
|
+
return decorator;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
let MdAccordion = class MdAccordion {
|
|
68
|
+
constructor(c, r, z) {
|
|
69
|
+
this.z = z;
|
|
70
|
+
c.detach();
|
|
71
|
+
this.el = r.nativeElement;
|
|
72
|
+
proxyOutputs(this, this.el, ['mdToggle', 'mdReorder', 'mdDragStart', 'mdDragMove', 'mdDragEnd']);
|
|
73
|
+
}
|
|
74
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
75
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdAccordion, selector: "md-accordion", inputs: { bringToFront: "bringToFront", defaultExpanded: "defaultExpanded", density: "density", elevation: "elevation", exclusive: "exclusive", floating: "floating", headingLevel: "headingLevel", initialX: "initialX", initialY: "initialY", keepOneExpanded: "keepOneExpanded", region: "region", regionThreshold: "regionThreshold", reorderable: "reorderable", transition: "transition", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
76
|
+
};
|
|
77
|
+
MdAccordion = __decorate([
|
|
78
|
+
ProxyCmp({
|
|
79
|
+
inputs: ['bringToFront', 'defaultExpanded', 'density', 'elevation', 'exclusive', 'floating', 'headingLevel', 'initialX', 'initialY', 'keepOneExpanded', 'region', 'regionThreshold', 'reorderable', 'transition', 'variant']
|
|
80
|
+
})
|
|
81
|
+
], MdAccordion);
|
|
82
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAccordion, decorators: [{
|
|
83
|
+
type: Component,
|
|
84
|
+
args: [{
|
|
85
|
+
selector: 'md-accordion',
|
|
86
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
87
|
+
template: '<ng-content></ng-content>',
|
|
88
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
89
|
+
inputs: ['bringToFront', 'defaultExpanded', 'density', 'elevation', 'exclusive', 'floating', 'headingLevel', 'initialX', 'initialY', 'keepOneExpanded', 'region', 'regionThreshold', 'reorderable', 'transition', 'variant'],
|
|
90
|
+
}]
|
|
91
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
92
|
+
let MdAccordionItem = class MdAccordionItem {
|
|
93
|
+
constructor(c, r, z) {
|
|
94
|
+
this.z = z;
|
|
95
|
+
c.detach();
|
|
96
|
+
this.el = r.nativeElement;
|
|
97
|
+
proxyOutputs(this, this.el, ['mdItemToggle', 'mdItemRequestFocus', 'mdItemRequestReorder']);
|
|
98
|
+
}
|
|
99
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
100
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdAccordionItem, selector: "md-accordion-item", inputs: { collapsible: "collapsible", contentMaxHeight: "contentMaxHeight", density: "density", disabled: "disabled", expanded: "expanded", headingLevel: "headingLevel", headline: "headline", icon: "icon", regionRole: "regionRole", supportingText: "supportingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
101
|
+
};
|
|
102
|
+
MdAccordionItem = __decorate([
|
|
103
|
+
ProxyCmp({
|
|
104
|
+
inputs: ['collapsible', 'contentMaxHeight', 'density', 'disabled', 'expanded', 'headingLevel', 'headline', 'icon', 'regionRole', 'supportingText'],
|
|
105
|
+
methods: ['toggle', 'focusHeader']
|
|
106
|
+
})
|
|
107
|
+
], MdAccordionItem);
|
|
108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAccordionItem, decorators: [{
|
|
109
|
+
type: Component,
|
|
110
|
+
args: [{
|
|
111
|
+
selector: 'md-accordion-item',
|
|
112
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
113
|
+
template: '<ng-content></ng-content>',
|
|
114
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
115
|
+
inputs: ['collapsible', 'contentMaxHeight', 'density', 'disabled', 'expanded', 'headingLevel', 'headline', 'icon', 'regionRole', 'supportingText'],
|
|
116
|
+
}]
|
|
117
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
118
|
+
let MdAppBar = class MdAppBar {
|
|
119
|
+
constructor(c, r, z) {
|
|
120
|
+
this.z = z;
|
|
121
|
+
c.detach();
|
|
122
|
+
this.el = r.nativeElement;
|
|
123
|
+
proxyOutputs(this, this.el, ['mdLeadingClick', 'mdSearchActivate', 'mdSearchInput']);
|
|
124
|
+
}
|
|
125
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAppBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
126
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdAppBar, selector: "md-app-bar", inputs: { density: "density", headline: "headline", leadingIcon: "leadingIcon", leadingIconLabel: "leadingIconLabel", scrolled: "scrolled", searchAriaLabel: "searchAriaLabel", searchDisabled: "searchDisabled", searchPlaceholder: "searchPlaceholder", searchValue: "searchValue", subtitle: "subtitle", titleAlignment: "titleAlignment", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
127
|
+
};
|
|
128
|
+
MdAppBar = __decorate([
|
|
129
|
+
ProxyCmp({
|
|
130
|
+
inputs: ['density', 'headline', 'leadingIcon', 'leadingIconLabel', 'scrolled', 'searchAriaLabel', 'searchDisabled', 'searchPlaceholder', 'searchValue', 'subtitle', 'titleAlignment', 'variant']
|
|
131
|
+
})
|
|
132
|
+
], MdAppBar);
|
|
133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAppBar, decorators: [{
|
|
134
|
+
type: Component,
|
|
135
|
+
args: [{
|
|
136
|
+
selector: 'md-app-bar',
|
|
137
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
138
|
+
template: '<ng-content></ng-content>',
|
|
139
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
140
|
+
inputs: ['density', 'headline', 'leadingIcon', 'leadingIconLabel', 'scrolled', 'searchAriaLabel', 'searchDisabled', 'searchPlaceholder', 'searchValue', 'subtitle', 'titleAlignment', 'variant'],
|
|
141
|
+
}]
|
|
142
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
143
|
+
let MdAreaChart = class MdAreaChart {
|
|
144
|
+
constructor(c, r, z) {
|
|
145
|
+
this.z = z;
|
|
146
|
+
c.detach();
|
|
147
|
+
this.el = r.nativeElement;
|
|
148
|
+
proxyOutputs(this, this.el, ['mdMarkerClick', 'mdLineClick', 'mdAreaClick', 'mdAxisClick', 'mdLegendClick', 'mdHover', 'mdReady', 'mdZoom']);
|
|
149
|
+
}
|
|
150
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAreaChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
151
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdAreaChart, selector: "md-area-chart", inputs: { animation: "animation", animationDuration: "animationDuration", axisTicks: "axisTicks", connectNulls: "connectNulls", curve: "curve", density: "density", fillOpacity: "fillOpacity", grid: "grid", heightProp: "heightProp", inverted: "inverted", label: "label", labelEmpty: "labelEmpty", labelPlot: "labelPlot", labelPoint: "labelPoint", labelZoomEnd: "labelZoomEnd", labelZoomStart: "labelZoomStart", legend: "legend", lineWidth: "lineWidth", loading: "loading", loadingLabel: "loadingLabel", locale: "locale", markSize: "markSize", noAnimation: "noAnimation", series: "series", seriesLabels: "seriesLabels", showLabels: "showLabels", showLine: "showLine", showMarks: "showMarks", stack: "stack", subtitle: "subtitle", summary: "summary", tableLabels: "tableLabels", titleAlign: "titleAlign", tooltip: "tooltip", tooltipRenderer: "tooltipRenderer", valueFormatter: "valueFormatter", xAxis: "xAxis", yAxis: "yAxis", zoom: "zoom" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
152
|
+
};
|
|
153
|
+
MdAreaChart = __decorate([
|
|
154
|
+
ProxyCmp({
|
|
155
|
+
inputs: ['animation', 'animationDuration', 'axisTicks', 'connectNulls', 'curve', 'density', 'fillOpacity', 'grid', 'heightProp', 'inverted', 'label', 'labelEmpty', 'labelPlot', 'labelPoint', 'labelZoomEnd', 'labelZoomStart', 'legend', 'lineWidth', 'loading', 'loadingLabel', 'locale', 'markSize', 'noAnimation', 'series', 'seriesLabels', 'showLabels', 'showLine', 'showMarks', 'stack', 'subtitle', 'summary', 'tableLabels', 'titleAlign', 'tooltip', 'tooltipRenderer', 'valueFormatter', 'xAxis', 'yAxis', 'zoom'],
|
|
156
|
+
methods: ['resize', 'replay', 'toDataURL', 'getInstance', 'setZoom', 'resetZoom']
|
|
157
|
+
})
|
|
158
|
+
], MdAreaChart);
|
|
159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAreaChart, decorators: [{
|
|
160
|
+
type: Component,
|
|
161
|
+
args: [{
|
|
162
|
+
selector: 'md-area-chart',
|
|
163
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
164
|
+
template: '<ng-content></ng-content>',
|
|
165
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
166
|
+
inputs: ['animation', 'animationDuration', 'axisTicks', 'connectNulls', 'curve', 'density', 'fillOpacity', 'grid', 'heightProp', 'inverted', 'label', 'labelEmpty', 'labelPlot', 'labelPoint', 'labelZoomEnd', 'labelZoomStart', 'legend', 'lineWidth', 'loading', 'loadingLabel', 'locale', 'markSize', 'noAnimation', 'series', 'seriesLabels', 'showLabels', 'showLine', 'showMarks', 'stack', 'subtitle', 'summary', 'tableLabels', 'titleAlign', 'tooltip', 'tooltipRenderer', 'valueFormatter', 'xAxis', 'yAxis', 'zoom'],
|
|
167
|
+
}]
|
|
168
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
169
|
+
let MdAutocomplete = class MdAutocomplete {
|
|
170
|
+
constructor(c, r, z) {
|
|
171
|
+
this.z = z;
|
|
172
|
+
c.detach();
|
|
173
|
+
this.el = r.nativeElement;
|
|
174
|
+
proxyOutputs(this, this.el, ['mdChange', 'mdInput', 'mdOpen', 'mdClose', 'mdClear', 'mdValidityChange']);
|
|
175
|
+
}
|
|
176
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAutocomplete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
177
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdAutocomplete, selector: "md-autocomplete", inputs: { chipPosition: "chipPosition", clearIcon: "clearIcon", clearOnBlur: "clearOnBlur", clearable: "clearable", density: "density", disableCloseOnSelect: "disableCloseOnSelect", disabled: "disabled", dropdownIcon: "dropdownIcon", error: "error", errorText: "errorText", filterMode: "filterMode", filterer: "filterer", freeSolo: "freeSolo", inputValue: "inputValue", label: "label", limitResults: "limitResults", loading: "loading", loadingText: "loadingText", matchTriggerWidth: "matchTriggerWidth", maxHeight: "maxHeight", maxSelected: "maxSelected", multiple: "multiple", name: "name", noOptionsText: "noOptionsText", noResultsText: "noResultsText", open: "open", options: "options", placeholder: "placeholder", placement: "placement", required: "required", reserveSupportingSpace: "reserveSupportingSpace", rowHeight: "rowHeight", softDisabled: "softDisabled", statusTemplate: "statusTemplate", supportingText: "supportingText", value: "value", valueMissingLabel: "valueMissingLabel", variant: "variant", virtualize: "virtualize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
178
|
+
};
|
|
179
|
+
MdAutocomplete = __decorate([
|
|
180
|
+
ProxyCmp({
|
|
181
|
+
inputs: ['chipPosition', 'clearIcon', 'clearOnBlur', 'clearable', 'density', 'disableCloseOnSelect', 'disabled', 'dropdownIcon', 'error', 'errorText', 'filterMode', 'filterer', 'freeSolo', 'inputValue', 'label', 'limitResults', 'loading', 'loadingText', 'matchTriggerWidth', 'maxHeight', 'maxSelected', 'multiple', 'name', 'noOptionsText', 'noResultsText', 'open', 'options', 'placeholder', 'placement', 'required', 'reserveSupportingSpace', 'rowHeight', 'softDisabled', 'statusTemplate', 'supportingText', 'value', 'valueMissingLabel', 'variant', 'virtualize'],
|
|
182
|
+
methods: ['focusInput', 'showMenu', 'closeMenu', 'loadOptions', 'getLabels', 'getValidity', 'checkValidity', 'reportValidity', 'setCustomValidity']
|
|
183
|
+
})
|
|
184
|
+
], MdAutocomplete);
|
|
185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAutocomplete, decorators: [{
|
|
186
|
+
type: Component,
|
|
187
|
+
args: [{
|
|
188
|
+
selector: 'md-autocomplete',
|
|
189
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
190
|
+
template: '<ng-content></ng-content>',
|
|
191
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
192
|
+
inputs: ['chipPosition', 'clearIcon', 'clearOnBlur', 'clearable', 'density', 'disableCloseOnSelect', 'disabled', 'dropdownIcon', 'error', 'errorText', 'filterMode', 'filterer', 'freeSolo', 'inputValue', 'label', 'limitResults', 'loading', 'loadingText', 'matchTriggerWidth', 'maxHeight', 'maxSelected', 'multiple', 'name', 'noOptionsText', 'noResultsText', 'open', 'options', 'placeholder', 'placement', 'required', 'reserveSupportingSpace', 'rowHeight', 'softDisabled', 'statusTemplate', 'supportingText', 'value', 'valueMissingLabel', 'variant', 'virtualize'],
|
|
193
|
+
}]
|
|
194
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
195
|
+
let MdAvatar = class MdAvatar {
|
|
196
|
+
constructor(c, r, z) {
|
|
197
|
+
this.z = z;
|
|
198
|
+
c.detach();
|
|
199
|
+
this.el = r.nativeElement;
|
|
200
|
+
proxyOutputs(this, this.el, ['mdLoad', 'mdError']);
|
|
201
|
+
}
|
|
202
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
203
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdAvatar, selector: "md-avatar", inputs: { alt: "alt", colorFromName: "colorFromName", crossorigin: "crossorigin", density: "density", initials: "initials", label: "label", loading: "loading", name: "name", shape: "shape", size: "size", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
204
|
+
};
|
|
205
|
+
MdAvatar = __decorate([
|
|
206
|
+
ProxyCmp({
|
|
207
|
+
inputs: ['alt', 'colorFromName', 'crossorigin', 'density', 'initials', 'label', 'loading', 'name', 'shape', 'size', 'src']
|
|
208
|
+
})
|
|
209
|
+
], MdAvatar);
|
|
210
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdAvatar, decorators: [{
|
|
211
|
+
type: Component,
|
|
212
|
+
args: [{
|
|
213
|
+
selector: 'md-avatar',
|
|
214
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
215
|
+
template: '<ng-content></ng-content>',
|
|
216
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
217
|
+
inputs: ['alt', 'colorFromName', 'crossorigin', 'density', 'initials', 'label', 'loading', 'name', 'shape', 'size', 'src'],
|
|
218
|
+
}]
|
|
219
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
220
|
+
let MdBadge = class MdBadge {
|
|
221
|
+
constructor(c, r, z) {
|
|
222
|
+
this.z = z;
|
|
223
|
+
c.detach();
|
|
224
|
+
this.el = r.nativeElement;
|
|
225
|
+
}
|
|
226
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
227
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdBadge, selector: "md-badge", inputs: { density: "density", icon: "icon", max: "max", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
228
|
+
};
|
|
229
|
+
MdBadge = __decorate([
|
|
230
|
+
ProxyCmp({
|
|
231
|
+
inputs: ['density', 'icon', 'max', 'value', 'variant']
|
|
232
|
+
})
|
|
233
|
+
], MdBadge);
|
|
234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdBadge, decorators: [{
|
|
235
|
+
type: Component,
|
|
236
|
+
args: [{
|
|
237
|
+
selector: 'md-badge',
|
|
238
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
239
|
+
template: '<ng-content></ng-content>',
|
|
240
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
241
|
+
inputs: ['density', 'icon', 'max', 'value', 'variant'],
|
|
242
|
+
}]
|
|
243
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
244
|
+
let MdBarChart = class MdBarChart {
|
|
245
|
+
constructor(c, r, z) {
|
|
246
|
+
this.z = z;
|
|
247
|
+
c.detach();
|
|
248
|
+
this.el = r.nativeElement;
|
|
249
|
+
proxyOutputs(this, this.el, ['mdBarClick', 'mdLegendClick', 'mdHover', 'mdReady', 'mdZoom']);
|
|
250
|
+
}
|
|
251
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdBarChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
252
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdBarChart, selector: "md-bar-chart", inputs: { animation: "animation", animationDuration: "animationDuration", axisTicks: "axisTicks", barGap: "barGap", barWidth: "barWidth", categoryGap: "categoryGap", chevron: "chevron", clickable: "clickable", cornerRadius: "cornerRadius", density: "density", heightProp: "heightProp", label: "label", labelPlot: "labelPlot", labelPoint: "labelPoint", labelZoomEnd: "labelZoomEnd", labelZoomStart: "labelZoomStart", layout: "layout", legend: "legend", loading: "loading", loadingLabel: "loadingLabel", locale: "locale", noAnimation: "noAnimation", polar: "polar", polarHole: "polarHole", polarSweep: "polarSweep", series: "series", showLabels: "showLabels", showTotals: "showTotals", stack: "stack", subtitle: "subtitle", titleAlign: "titleAlign", tooltip: "tooltip", tooltipRenderer: "tooltipRenderer", valueFormatter: "valueFormatter", xAxis: "xAxis", yAxis: "yAxis", yAxis2: "yAxis2", zoom: "zoom" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
253
|
+
};
|
|
254
|
+
MdBarChart = __decorate([
|
|
255
|
+
ProxyCmp({
|
|
256
|
+
inputs: ['animation', 'animationDuration', 'axisTicks', 'barGap', 'barWidth', 'categoryGap', 'chevron', 'clickable', 'cornerRadius', 'density', 'heightProp', 'label', 'labelPlot', 'labelPoint', 'labelZoomEnd', 'labelZoomStart', 'layout', 'legend', 'loading', 'loadingLabel', 'locale', 'noAnimation', 'polar', 'polarHole', 'polarSweep', 'series', 'showLabels', 'showTotals', 'stack', 'subtitle', 'titleAlign', 'tooltip', 'tooltipRenderer', 'valueFormatter', 'xAxis', 'yAxis', 'yAxis2', 'zoom'],
|
|
257
|
+
methods: ['resize', 'replay', 'drill', 'toDataURL', 'getInstance', 'setZoom', 'resetZoom']
|
|
258
|
+
})
|
|
259
|
+
], MdBarChart);
|
|
260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdBarChart, decorators: [{
|
|
261
|
+
type: Component,
|
|
262
|
+
args: [{
|
|
263
|
+
selector: 'md-bar-chart',
|
|
264
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
265
|
+
template: '<ng-content></ng-content>',
|
|
266
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
267
|
+
inputs: ['animation', 'animationDuration', 'axisTicks', 'barGap', 'barWidth', 'categoryGap', 'chevron', 'clickable', 'cornerRadius', 'density', 'heightProp', 'label', 'labelPlot', 'labelPoint', 'labelZoomEnd', 'labelZoomStart', 'layout', 'legend', 'loading', 'loadingLabel', 'locale', 'noAnimation', 'polar', 'polarHole', 'polarSweep', 'series', 'showLabels', 'showTotals', 'stack', 'subtitle', 'titleAlign', 'tooltip', 'tooltipRenderer', 'valueFormatter', 'xAxis', 'yAxis', 'yAxis2', 'zoom'],
|
|
268
|
+
}]
|
|
269
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
270
|
+
let MdBottomSheet = class MdBottomSheet {
|
|
271
|
+
constructor(c, r, z) {
|
|
272
|
+
this.z = z;
|
|
273
|
+
c.detach();
|
|
274
|
+
this.el = r.nativeElement;
|
|
275
|
+
proxyOutputs(this, this.el, ['mdOpen', 'mdClose', 'mdCancel']);
|
|
276
|
+
}
|
|
277
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdBottomSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
278
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdBottomSheet, selector: "md-bottom-sheet", inputs: { bottomDivider: "bottomDivider", closeable: "closeable", contentAlign: "contentAlign", density: "density", headline: "headline", headlineAlign: "headlineAlign", open: "open", scrimDismissible: "scrimDismissible", scrollShadow: "scrollShadow", sheetAriaLabel: "sheetAriaLabel", showDragHandle: "showDragHandle", topDivider: "topDivider", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
279
|
+
};
|
|
280
|
+
MdBottomSheet = __decorate([
|
|
281
|
+
ProxyCmp({
|
|
282
|
+
inputs: ['bottomDivider', 'closeable', 'contentAlign', 'density', 'headline', 'headlineAlign', 'open', 'scrimDismissible', 'scrollShadow', 'sheetAriaLabel', 'showDragHandle', 'topDivider', 'variant'],
|
|
283
|
+
methods: ['show', 'close']
|
|
284
|
+
})
|
|
285
|
+
], MdBottomSheet);
|
|
286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdBottomSheet, decorators: [{
|
|
287
|
+
type: Component,
|
|
288
|
+
args: [{
|
|
289
|
+
selector: 'md-bottom-sheet',
|
|
290
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
291
|
+
template: '<ng-content></ng-content>',
|
|
292
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
293
|
+
inputs: ['bottomDivider', 'closeable', 'contentAlign', 'density', 'headline', 'headlineAlign', 'open', 'scrimDismissible', 'scrollShadow', 'sheetAriaLabel', 'showDragHandle', 'topDivider', 'variant'],
|
|
294
|
+
}]
|
|
295
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
296
|
+
let MdBreadcrumbItem = class MdBreadcrumbItem {
|
|
297
|
+
constructor(c, r, z) {
|
|
298
|
+
this.z = z;
|
|
299
|
+
c.detach();
|
|
300
|
+
this.el = r.nativeElement;
|
|
301
|
+
proxyOutputs(this, this.el, ['mdSelect']);
|
|
302
|
+
}
|
|
303
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
304
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdBreadcrumbItem, selector: "md-breadcrumb-item", inputs: { collapsed: "collapsed", current: "current", density: "density", disabled: "disabled", href: "href", icon: "icon", itemIndex: "itemIndex", itemTotal: "itemTotal", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
305
|
+
};
|
|
306
|
+
MdBreadcrumbItem = __decorate([
|
|
307
|
+
ProxyCmp({
|
|
308
|
+
inputs: ['collapsed', 'current', 'density', 'disabled', 'href', 'icon', 'itemIndex', 'itemTotal', 'rel', 'target']
|
|
309
|
+
})
|
|
310
|
+
], MdBreadcrumbItem);
|
|
311
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdBreadcrumbItem, decorators: [{
|
|
312
|
+
type: Component,
|
|
313
|
+
args: [{
|
|
314
|
+
selector: 'md-breadcrumb-item',
|
|
315
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
316
|
+
template: '<ng-content></ng-content>',
|
|
317
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
318
|
+
inputs: ['collapsed', 'current', 'density', 'disabled', 'href', 'icon', 'itemIndex', 'itemTotal', 'rel', 'target'],
|
|
319
|
+
}]
|
|
320
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
321
|
+
let MdBreadcrumbs = class MdBreadcrumbs {
|
|
322
|
+
constructor(c, r, z) {
|
|
323
|
+
this.z = z;
|
|
324
|
+
c.detach();
|
|
325
|
+
this.el = r.nativeElement;
|
|
326
|
+
proxyOutputs(this, this.el, ['mdExpand']);
|
|
327
|
+
}
|
|
328
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
329
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdBreadcrumbs, selector: "md-breadcrumbs", inputs: { density: "density", expandLabel: "expandLabel", itemsAfterCollapse: "itemsAfterCollapse", itemsBeforeCollapse: "itemsBeforeCollapse", label: "label", maxItems: "maxItems", separator: "separator" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
330
|
+
};
|
|
331
|
+
MdBreadcrumbs = __decorate([
|
|
332
|
+
ProxyCmp({
|
|
333
|
+
inputs: ['density', 'expandLabel', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'label', 'maxItems', 'separator'],
|
|
334
|
+
methods: ['expand', 'collapse']
|
|
335
|
+
})
|
|
336
|
+
], MdBreadcrumbs);
|
|
337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdBreadcrumbs, decorators: [{
|
|
338
|
+
type: Component,
|
|
339
|
+
args: [{
|
|
340
|
+
selector: 'md-breadcrumbs',
|
|
341
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
342
|
+
template: '<ng-content></ng-content>',
|
|
343
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
344
|
+
inputs: ['density', 'expandLabel', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'label', 'maxItems', 'separator'],
|
|
345
|
+
}]
|
|
346
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
347
|
+
let MdButton = class MdButton {
|
|
348
|
+
constructor(c, r, z) {
|
|
349
|
+
this.z = z;
|
|
350
|
+
c.detach();
|
|
351
|
+
this.el = r.nativeElement;
|
|
352
|
+
proxyOutputs(this, this.el, ['mdClick', 'mdChange']);
|
|
353
|
+
}
|
|
354
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
355
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdButton, selector: "md-button", inputs: { density: "density", disabled: "disabled", fullWidth: "fullWidth", href: "href", icon: "icon", loading: "loading", mirrorIcon: "mirrorIcon", ripple: "ripple", roleOverride: "roleOverride", selected: "selected", shape: "shape", shapeMorph: "shapeMorph", size: "size", softDisabled: "softDisabled", suppressExpandIconFlip: "suppressExpandIconFlip", target: "target", toggle: "toggle", trailingIcon: "trailingIcon", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
356
|
+
};
|
|
357
|
+
MdButton = __decorate([
|
|
358
|
+
ProxyCmp({
|
|
359
|
+
inputs: ['density', 'disabled', 'fullWidth', 'href', 'icon', 'loading', 'mirrorIcon', 'ripple', 'roleOverride', 'selected', 'shape', 'shapeMorph', 'size', 'softDisabled', 'suppressExpandIconFlip', 'target', 'toggle', 'trailingIcon', 'type', 'variant']
|
|
360
|
+
})
|
|
361
|
+
], MdButton);
|
|
362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdButton, decorators: [{
|
|
363
|
+
type: Component,
|
|
364
|
+
args: [{
|
|
365
|
+
selector: 'md-button',
|
|
366
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
367
|
+
template: '<ng-content></ng-content>',
|
|
368
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
369
|
+
inputs: ['density', 'disabled', 'fullWidth', 'href', 'icon', 'loading', 'mirrorIcon', 'ripple', 'roleOverride', 'selected', 'shape', 'shapeMorph', 'size', 'softDisabled', 'suppressExpandIconFlip', 'target', 'toggle', 'trailingIcon', 'type', 'variant'],
|
|
370
|
+
}]
|
|
371
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
372
|
+
let MdButtonGroup = class MdButtonGroup {
|
|
373
|
+
constructor(c, r, z) {
|
|
374
|
+
this.z = z;
|
|
375
|
+
c.detach();
|
|
376
|
+
this.el = r.nativeElement;
|
|
377
|
+
proxyOutputs(this, this.el, ['mdSelectionChange']);
|
|
378
|
+
}
|
|
379
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
380
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdButtonGroup, selector: "md-button-group", inputs: { density: "density", fullWidth: "fullWidth", required: "required", selectionMode: "selectionMode", shape: "shape", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
381
|
+
};
|
|
382
|
+
MdButtonGroup = __decorate([
|
|
383
|
+
ProxyCmp({
|
|
384
|
+
inputs: ['density', 'fullWidth', 'required', 'selectionMode', 'shape', 'size', 'variant']
|
|
385
|
+
})
|
|
386
|
+
], MdButtonGroup);
|
|
387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdButtonGroup, decorators: [{
|
|
388
|
+
type: Component,
|
|
389
|
+
args: [{
|
|
390
|
+
selector: 'md-button-group',
|
|
391
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
392
|
+
template: '<ng-content></ng-content>',
|
|
393
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
394
|
+
inputs: ['density', 'fullWidth', 'required', 'selectionMode', 'shape', 'size', 'variant'],
|
|
395
|
+
}]
|
|
396
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
397
|
+
let MdCard = class MdCard {
|
|
398
|
+
constructor(c, r, z) {
|
|
399
|
+
this.z = z;
|
|
400
|
+
c.detach();
|
|
401
|
+
this.el = r.nativeElement;
|
|
402
|
+
proxyOutputs(this, this.el, ['mdClick', 'mdDragStart', 'mdDragMove', 'mdDragEnd']);
|
|
403
|
+
}
|
|
404
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
405
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdCard, selector: "md-card", inputs: { density: "density", disabled: "disabled", dragEnabled: "dragEnabled", fullHeight: "fullHeight", fullWidth: "fullWidth", interactive: "interactive", ripple: "ripple", softDisabled: "softDisabled", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
406
|
+
};
|
|
407
|
+
MdCard = __decorate([
|
|
408
|
+
ProxyCmp({
|
|
409
|
+
inputs: ['density', 'disabled', 'dragEnabled', 'fullHeight', 'fullWidth', 'interactive', 'ripple', 'softDisabled', 'variant']
|
|
410
|
+
})
|
|
411
|
+
], MdCard);
|
|
412
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdCard, decorators: [{
|
|
413
|
+
type: Component,
|
|
414
|
+
args: [{
|
|
415
|
+
selector: 'md-card',
|
|
416
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
417
|
+
template: '<ng-content></ng-content>',
|
|
418
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
419
|
+
inputs: ['density', 'disabled', 'dragEnabled', 'fullHeight', 'fullWidth', 'interactive', 'ripple', 'softDisabled', 'variant'],
|
|
420
|
+
}]
|
|
421
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
422
|
+
let MdCheckbox = class MdCheckbox {
|
|
423
|
+
constructor(c, r, z) {
|
|
424
|
+
this.z = z;
|
|
425
|
+
c.detach();
|
|
426
|
+
this.el = r.nativeElement;
|
|
427
|
+
proxyOutputs(this, this.el, ['mdChange', 'mdValidityChange']);
|
|
428
|
+
}
|
|
429
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
430
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdCheckbox, selector: "md-checkbox", inputs: { checked: "checked", density: "density", disabled: "disabled", error: "error", errorText: "errorText", indeterminate: "indeterminate", name: "name", required: "required", softDisabled: "softDisabled", supportingText: "supportingText", value: "value", valueMissingLabel: "valueMissingLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
431
|
+
};
|
|
432
|
+
MdCheckbox = __decorate([
|
|
433
|
+
ProxyCmp({
|
|
434
|
+
inputs: ['checked', 'density', 'disabled', 'error', 'errorText', 'indeterminate', 'name', 'required', 'softDisabled', 'supportingText', 'value', 'valueMissingLabel'],
|
|
435
|
+
methods: ['getValidity', 'checkValidity', 'reportValidity', 'setCustomValidity']
|
|
436
|
+
})
|
|
437
|
+
], MdCheckbox);
|
|
438
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdCheckbox, decorators: [{
|
|
439
|
+
type: Component,
|
|
440
|
+
args: [{
|
|
441
|
+
selector: 'md-checkbox',
|
|
442
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
443
|
+
template: '<ng-content></ng-content>',
|
|
444
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
445
|
+
inputs: ['checked', 'density', 'disabled', 'error', 'errorText', 'indeterminate', 'name', 'required', 'softDisabled', 'supportingText', 'value', 'valueMissingLabel'],
|
|
446
|
+
}]
|
|
447
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
448
|
+
let MdChip = class MdChip {
|
|
449
|
+
constructor(c, r, z) {
|
|
450
|
+
this.z = z;
|
|
451
|
+
c.detach();
|
|
452
|
+
this.el = r.nativeElement;
|
|
453
|
+
proxyOutputs(this, this.el, ['mdClick', 'mdSelect', 'mdRemove']);
|
|
454
|
+
}
|
|
455
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
456
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdChip, selector: "md-chip", inputs: { appearance: "appearance", color: "color", density: "density", disabled: "disabled", elevated: "elevated", icon: "icon", label: "label", removable: "removable", selectable: "selectable", selected: "selected", softDisabled: "softDisabled", trailingIcon: "trailingIcon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
457
|
+
};
|
|
458
|
+
MdChip = __decorate([
|
|
459
|
+
ProxyCmp({
|
|
460
|
+
inputs: ['appearance', 'color', 'density', 'disabled', 'elevated', 'icon', 'label', 'removable', 'selectable', 'selected', 'softDisabled', 'trailingIcon', 'variant']
|
|
461
|
+
})
|
|
462
|
+
], MdChip);
|
|
463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdChip, decorators: [{
|
|
464
|
+
type: Component,
|
|
465
|
+
args: [{
|
|
466
|
+
selector: 'md-chip',
|
|
467
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
468
|
+
template: '<ng-content></ng-content>',
|
|
469
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
470
|
+
inputs: ['appearance', 'color', 'density', 'disabled', 'elevated', 'icon', 'label', 'removable', 'selectable', 'selected', 'softDisabled', 'trailingIcon', 'variant'],
|
|
471
|
+
}]
|
|
472
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
473
|
+
let MdColorPicker = class MdColorPicker {
|
|
474
|
+
constructor(c, r, z) {
|
|
475
|
+
this.z = z;
|
|
476
|
+
c.detach();
|
|
477
|
+
this.el = r.nativeElement;
|
|
478
|
+
proxyOutputs(this, this.el, ['mdInput', 'mdChange', 'mdOpenChange']);
|
|
479
|
+
}
|
|
480
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdColorPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
481
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdColorPicker, selector: "md-color-picker", inputs: { alpha: "alpha", ariaLabelProp: "ariaLabelProp", density: "density", disabled: "disabled", dismissOnOutsideClick: "dismissOnOutsideClick", format: "format", open: "open", presets: "presets", showHex: "showHex", showInputs: "showInputs", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
482
|
+
};
|
|
483
|
+
MdColorPicker = __decorate([
|
|
484
|
+
ProxyCmp({
|
|
485
|
+
inputs: ['alpha', 'ariaLabelProp', 'density', 'disabled', 'dismissOnOutsideClick', 'format', 'open', 'presets', 'showHex', 'showInputs', 'value', 'variant'],
|
|
486
|
+
methods: ['show', 'close']
|
|
487
|
+
})
|
|
488
|
+
], MdColorPicker);
|
|
489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdColorPicker, decorators: [{
|
|
490
|
+
type: Component,
|
|
491
|
+
args: [{
|
|
492
|
+
selector: 'md-color-picker',
|
|
493
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
494
|
+
template: '<ng-content></ng-content>',
|
|
495
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
496
|
+
inputs: ['alpha', 'ariaLabelProp', 'density', 'disabled', 'dismissOnOutsideClick', 'format', 'open', 'presets', 'showHex', 'showInputs', 'value', 'variant'],
|
|
497
|
+
}]
|
|
498
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
499
|
+
let MdDatePicker = class MdDatePicker {
|
|
500
|
+
constructor(c, r, z) {
|
|
501
|
+
this.z = z;
|
|
502
|
+
c.detach();
|
|
503
|
+
this.el = r.nativeElement;
|
|
504
|
+
proxyOutputs(this, this.el, ['mdChange', 'mdSelected', 'mdInput', 'mdOpen', 'mdClose', 'mdCancel', 'mdViewChange', 'mdMenuOpen', 'mdMenuSelect', 'mdModeChange', 'mdValidityChange']);
|
|
505
|
+
}
|
|
506
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
507
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdDatePicker, selector: "md-date-picker", inputs: { calendarIcon: "calendarIcon", cancelLabel: "cancelLabel", chooseMonthAndYearLabel: "chooseMonthAndYearLabel", chooseMonthLabel: "chooseMonthLabel", chooseMonthYearLabel: "chooseMonthYearLabel", chooseYearLabel: "chooseYearLabel", clearLabel: "clearLabel", clearable: "clearable", closeCalendarLabel: "closeCalendarLabel", commitOnSelect: "commitOnSelect", dateSeparator: "dateSeparator", density: "density", disabled: "disabled", enterDatesLabel: "enterDatesLabel", error: "error", errorText: "errorText", fieldVariant: "fieldVariant", firstDayOfWeek: "firstDayOfWeek", headline: "headline", invalidDateLabel: "invalidDateLabel", isDateDisabled: "isDateDisabled", label: "label", locale: "locale", max: "max", min: "min", name: "name", nextMonthLabel: "nextMonthLabel", nextYearLabel: "nextYearLabel", okLabel: "okLabel", open: "open", openCalendarLabel: "openCalendarLabel", outsideClickDismissible: "outsideClickDismissible", placeholder: "placeholder", previousMonthLabel: "previousMonthLabel", previousYearLabel: "previousYearLabel", required: "required", reserveSupportingSpace: "reserveSupportingSpace", scrimDismissible: "scrimDismissible", selectDateLabel: "selectDateLabel", supportingText: "supportingText", toggleCalendarLabel: "toggleCalendarLabel", toggleTextLabel: "toggleTextLabel", value: "value", valueMissingLabel: "valueMissingLabel", variant: "variant", yearGridLabel: "yearGridLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
508
|
+
};
|
|
509
|
+
MdDatePicker = __decorate([
|
|
510
|
+
ProxyCmp({
|
|
511
|
+
inputs: ['calendarIcon', 'cancelLabel', 'chooseMonthAndYearLabel', 'chooseMonthLabel', 'chooseMonthYearLabel', 'chooseYearLabel', 'clearLabel', 'clearable', 'closeCalendarLabel', 'commitOnSelect', 'dateSeparator', 'density', 'disabled', 'enterDatesLabel', 'error', 'errorText', 'fieldVariant', 'firstDayOfWeek', 'headline', 'invalidDateLabel', 'isDateDisabled', 'label', 'locale', 'max', 'min', 'name', 'nextMonthLabel', 'nextYearLabel', 'okLabel', 'open', 'openCalendarLabel', 'outsideClickDismissible', 'placeholder', 'previousMonthLabel', 'previousYearLabel', 'required', 'reserveSupportingSpace', 'scrimDismissible', 'selectDateLabel', 'supportingText', 'toggleCalendarLabel', 'toggleTextLabel', 'value', 'valueMissingLabel', 'variant', 'yearGridLabel'],
|
|
512
|
+
methods: ['show', 'close', 'clear', 'focusInput', 'getValidity', 'checkValidity', 'reportValidity', 'setCustomValidity']
|
|
513
|
+
})
|
|
514
|
+
], MdDatePicker);
|
|
515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdDatePicker, decorators: [{
|
|
516
|
+
type: Component,
|
|
517
|
+
args: [{
|
|
518
|
+
selector: 'md-date-picker',
|
|
519
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
520
|
+
template: '<ng-content></ng-content>',
|
|
521
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
522
|
+
inputs: ['calendarIcon', 'cancelLabel', 'chooseMonthAndYearLabel', 'chooseMonthLabel', 'chooseMonthYearLabel', 'chooseYearLabel', 'clearLabel', 'clearable', 'closeCalendarLabel', 'commitOnSelect', 'dateSeparator', 'density', 'disabled', 'enterDatesLabel', 'error', 'errorText', 'fieldVariant', 'firstDayOfWeek', 'headline', 'invalidDateLabel', 'isDateDisabled', 'label', 'locale', 'max', 'min', 'name', 'nextMonthLabel', 'nextYearLabel', 'okLabel', 'open', 'openCalendarLabel', 'outsideClickDismissible', 'placeholder', 'previousMonthLabel', 'previousYearLabel', 'required', 'reserveSupportingSpace', 'scrimDismissible', 'selectDateLabel', 'supportingText', 'toggleCalendarLabel', 'toggleTextLabel', 'value', 'valueMissingLabel', 'variant', 'yearGridLabel'],
|
|
523
|
+
}]
|
|
524
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
525
|
+
let MdDialog = class MdDialog {
|
|
526
|
+
constructor(c, r, z) {
|
|
527
|
+
this.z = z;
|
|
528
|
+
c.detach();
|
|
529
|
+
this.el = r.nativeElement;
|
|
530
|
+
proxyOutputs(this, this.el, ['mdOpen', 'mdClose', 'mdCancel']);
|
|
531
|
+
}
|
|
532
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
533
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdDialog, selector: "md-dialog", inputs: { cancelLabel: "cancelLabel", closeLabel: "closeLabel", density: "density", divider: "divider", fullscreen: "fullscreen", headerDivider: "headerDivider", headline: "headline", icon: "icon", locale: "locale", okLabel: "okLabel", open: "open", scrimDismissible: "scrimDismissible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
534
|
+
};
|
|
535
|
+
MdDialog = __decorate([
|
|
536
|
+
ProxyCmp({
|
|
537
|
+
inputs: ['cancelLabel', 'closeLabel', 'density', 'divider', 'fullscreen', 'headerDivider', 'headline', 'icon', 'locale', 'okLabel', 'open', 'scrimDismissible'],
|
|
538
|
+
methods: ['show', 'close']
|
|
539
|
+
})
|
|
540
|
+
], MdDialog);
|
|
541
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdDialog, decorators: [{
|
|
542
|
+
type: Component,
|
|
543
|
+
args: [{
|
|
544
|
+
selector: 'md-dialog',
|
|
545
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
546
|
+
template: '<ng-content></ng-content>',
|
|
547
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
548
|
+
inputs: ['cancelLabel', 'closeLabel', 'density', 'divider', 'fullscreen', 'headerDivider', 'headline', 'icon', 'locale', 'okLabel', 'open', 'scrimDismissible'],
|
|
549
|
+
}]
|
|
550
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
551
|
+
let MdDivider = class MdDivider {
|
|
552
|
+
constructor(c, r, z) {
|
|
553
|
+
this.z = z;
|
|
554
|
+
c.detach();
|
|
555
|
+
this.el = r.nativeElement;
|
|
556
|
+
}
|
|
557
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
558
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdDivider, selector: "md-divider", inputs: { inset: "inset", insetEnd: "insetEnd", insetStart: "insetStart", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
559
|
+
};
|
|
560
|
+
MdDivider = __decorate([
|
|
561
|
+
ProxyCmp({
|
|
562
|
+
inputs: ['inset', 'insetEnd', 'insetStart', 'vertical']
|
|
563
|
+
})
|
|
564
|
+
], MdDivider);
|
|
565
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdDivider, decorators: [{
|
|
566
|
+
type: Component,
|
|
567
|
+
args: [{
|
|
568
|
+
selector: 'md-divider',
|
|
569
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
570
|
+
template: '<ng-content></ng-content>',
|
|
571
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
572
|
+
inputs: ['inset', 'insetEnd', 'insetStart', 'vertical'],
|
|
573
|
+
}]
|
|
574
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
575
|
+
let MdFab = class MdFab {
|
|
576
|
+
constructor(c, r, z) {
|
|
577
|
+
this.z = z;
|
|
578
|
+
c.detach();
|
|
579
|
+
this.el = r.nativeElement;
|
|
580
|
+
proxyOutputs(this, this.el, ['mdClick']);
|
|
581
|
+
}
|
|
582
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdFab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
583
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdFab, selector: "md-fab", inputs: { density: "density", disabled: "disabled", extended: "extended", icon: "icon", label: "label", lowered: "lowered", ripple: "ripple", size: "size", softDisabled: "softDisabled", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
584
|
+
};
|
|
585
|
+
MdFab = __decorate([
|
|
586
|
+
ProxyCmp({
|
|
587
|
+
inputs: ['density', 'disabled', 'extended', 'icon', 'label', 'lowered', 'ripple', 'size', 'softDisabled', 'variant']
|
|
588
|
+
})
|
|
589
|
+
], MdFab);
|
|
590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdFab, decorators: [{
|
|
591
|
+
type: Component,
|
|
592
|
+
args: [{
|
|
593
|
+
selector: 'md-fab',
|
|
594
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
595
|
+
template: '<ng-content></ng-content>',
|
|
596
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
597
|
+
inputs: ['density', 'disabled', 'extended', 'icon', 'label', 'lowered', 'ripple', 'size', 'softDisabled', 'variant'],
|
|
598
|
+
}]
|
|
599
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
600
|
+
let MdFabMenu = class MdFabMenu {
|
|
601
|
+
constructor(c, r, z) {
|
|
602
|
+
this.z = z;
|
|
603
|
+
c.detach();
|
|
604
|
+
this.el = r.nativeElement;
|
|
605
|
+
proxyOutputs(this, this.el, ['mdOpen', 'mdClose']);
|
|
606
|
+
}
|
|
607
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdFabMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
608
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdFabMenu, selector: "md-fab-menu", inputs: { anchor: "anchor", density: "density", menuLabel: "menuLabel", open: "open", placement: "placement", quick: "quick", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
609
|
+
};
|
|
610
|
+
MdFabMenu = __decorate([
|
|
611
|
+
ProxyCmp({
|
|
612
|
+
inputs: ['anchor', 'density', 'menuLabel', 'open', 'placement', 'quick', 'variant'],
|
|
613
|
+
methods: ['show', 'close']
|
|
614
|
+
})
|
|
615
|
+
], MdFabMenu);
|
|
616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdFabMenu, decorators: [{
|
|
617
|
+
type: Component,
|
|
618
|
+
args: [{
|
|
619
|
+
selector: 'md-fab-menu',
|
|
620
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
621
|
+
template: '<ng-content></ng-content>',
|
|
622
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
623
|
+
inputs: ['anchor', 'density', 'menuLabel', 'open', 'placement', 'quick', 'variant'],
|
|
624
|
+
}]
|
|
625
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
626
|
+
let MdFabMenuItem = class MdFabMenuItem {
|
|
627
|
+
constructor(c, r, z) {
|
|
628
|
+
this.z = z;
|
|
629
|
+
c.detach();
|
|
630
|
+
this.el = r.nativeElement;
|
|
631
|
+
proxyOutputs(this, this.el, ['mdClick']);
|
|
632
|
+
}
|
|
633
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdFabMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
634
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdFabMenuItem, selector: "md-fab-menu-item", inputs: { density: "density", disabled: "disabled", icon: "icon", label: "label", rovingFocusVisible: "rovingFocusVisible", softDisabled: "softDisabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
635
|
+
};
|
|
636
|
+
MdFabMenuItem = __decorate([
|
|
637
|
+
ProxyCmp({
|
|
638
|
+
inputs: ['density', 'disabled', 'icon', 'label', 'rovingFocusVisible', 'softDisabled']
|
|
639
|
+
})
|
|
640
|
+
], MdFabMenuItem);
|
|
641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdFabMenuItem, decorators: [{
|
|
642
|
+
type: Component,
|
|
643
|
+
args: [{
|
|
644
|
+
selector: 'md-fab-menu-item',
|
|
645
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
646
|
+
template: '<ng-content></ng-content>',
|
|
647
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
648
|
+
inputs: ['density', 'disabled', 'icon', 'label', 'rovingFocusVisible', 'softDisabled'],
|
|
649
|
+
}]
|
|
650
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
651
|
+
let MdIconButton = class MdIconButton {
|
|
652
|
+
constructor(c, r, z) {
|
|
653
|
+
this.z = z;
|
|
654
|
+
c.detach();
|
|
655
|
+
this.el = r.nativeElement;
|
|
656
|
+
proxyOutputs(this, this.el, ['mdClick']);
|
|
657
|
+
}
|
|
658
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
659
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdIconButton, selector: "md-icon-button", inputs: { buttonWidth: "buttonWidth", density: "density", disabled: "disabled", href: "href", icon: "icon", ripple: "ripple", selected: "selected", selectedIcon: "selectedIcon", shape: "shape", shapeMorph: "shapeMorph", size: "size", softDisabled: "softDisabled", target: "target", toggle: "toggle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
660
|
+
};
|
|
661
|
+
MdIconButton = __decorate([
|
|
662
|
+
ProxyCmp({
|
|
663
|
+
inputs: ['buttonWidth', 'density', 'disabled', 'href', 'icon', 'ripple', 'selected', 'selectedIcon', 'shape', 'shapeMorph', 'size', 'softDisabled', 'target', 'toggle', 'variant']
|
|
664
|
+
})
|
|
665
|
+
], MdIconButton);
|
|
666
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdIconButton, decorators: [{
|
|
667
|
+
type: Component,
|
|
668
|
+
args: [{
|
|
669
|
+
selector: 'md-icon-button',
|
|
670
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
671
|
+
template: '<ng-content></ng-content>',
|
|
672
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
673
|
+
inputs: ['buttonWidth', 'density', 'disabled', 'href', 'icon', 'ripple', 'selected', 'selectedIcon', 'shape', 'shapeMorph', 'size', 'softDisabled', 'target', 'toggle', 'variant'],
|
|
674
|
+
}]
|
|
675
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
676
|
+
let MdLineChart = class MdLineChart {
|
|
677
|
+
constructor(c, r, z) {
|
|
678
|
+
this.z = z;
|
|
679
|
+
c.detach();
|
|
680
|
+
this.el = r.nativeElement;
|
|
681
|
+
proxyOutputs(this, this.el, ['mdMarkerClick', 'mdLineClick', 'mdAreaClick', 'mdAxisClick', 'mdLegendClick', 'mdHover', 'mdReady', 'mdZoom']);
|
|
682
|
+
}
|
|
683
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdLineChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
684
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdLineChart, selector: "md-line-chart", inputs: { animation: "animation", animationDuration: "animationDuration", area: "area", axisTicks: "axisTicks", connectNulls: "connectNulls", curve: "curve", density: "density", grid: "grid", heightProp: "heightProp", inverted: "inverted", label: "label", labelEmpty: "labelEmpty", labelPlot: "labelPlot", labelPoint: "labelPoint", labelZoomEnd: "labelZoomEnd", labelZoomStart: "labelZoomStart", legend: "legend", lineWidth: "lineWidth", loading: "loading", loadingLabel: "loadingLabel", locale: "locale", markLines: "markLines", markSize: "markSize", noAnimation: "noAnimation", series: "series", seriesLabels: "seriesLabels", showLabels: "showLabels", showLine: "showLine", showMarks: "showMarks", stack: "stack", subtitle: "subtitle", summary: "summary", tableLabels: "tableLabels", titleAlign: "titleAlign", tooltip: "tooltip", tooltipRenderer: "tooltipRenderer", valueFormatter: "valueFormatter", xAxis: "xAxis", yAxes: "yAxes", yAxis: "yAxis", zoom: "zoom" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
685
|
+
};
|
|
686
|
+
MdLineChart = __decorate([
|
|
687
|
+
ProxyCmp({
|
|
688
|
+
inputs: ['animation', 'animationDuration', 'area', 'axisTicks', 'connectNulls', 'curve', 'density', 'grid', 'heightProp', 'inverted', 'label', 'labelEmpty', 'labelPlot', 'labelPoint', 'labelZoomEnd', 'labelZoomStart', 'legend', 'lineWidth', 'loading', 'loadingLabel', 'locale', 'markLines', 'markSize', 'noAnimation', 'series', 'seriesLabels', 'showLabels', 'showLine', 'showMarks', 'stack', 'subtitle', 'summary', 'tableLabels', 'titleAlign', 'tooltip', 'tooltipRenderer', 'valueFormatter', 'xAxis', 'yAxes', 'yAxis', 'zoom'],
|
|
689
|
+
methods: ['resize', 'replay', 'toDataURL', 'getInstance', 'setZoom', 'resetZoom']
|
|
690
|
+
})
|
|
691
|
+
], MdLineChart);
|
|
692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdLineChart, decorators: [{
|
|
693
|
+
type: Component,
|
|
694
|
+
args: [{
|
|
695
|
+
selector: 'md-line-chart',
|
|
696
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
697
|
+
template: '<ng-content></ng-content>',
|
|
698
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
699
|
+
inputs: ['animation', 'animationDuration', 'area', 'axisTicks', 'connectNulls', 'curve', 'density', 'grid', 'heightProp', 'inverted', 'label', 'labelEmpty', 'labelPlot', 'labelPoint', 'labelZoomEnd', 'labelZoomStart', 'legend', 'lineWidth', 'loading', 'loadingLabel', 'locale', 'markLines', 'markSize', 'noAnimation', 'series', 'seriesLabels', 'showLabels', 'showLine', 'showMarks', 'stack', 'subtitle', 'summary', 'tableLabels', 'titleAlign', 'tooltip', 'tooltipRenderer', 'valueFormatter', 'xAxis', 'yAxes', 'yAxis', 'zoom'],
|
|
700
|
+
}]
|
|
701
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
702
|
+
let MdList = class MdList {
|
|
703
|
+
constructor(c, r, z) {
|
|
704
|
+
this.z = z;
|
|
705
|
+
c.detach();
|
|
706
|
+
this.el = r.nativeElement;
|
|
707
|
+
proxyOutputs(this, this.el, ['mdSelect', 'mdActivate', 'mdReorder']);
|
|
708
|
+
}
|
|
709
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
710
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdList, selector: "md-list", inputs: { density: "density", interactionMode: "interactionMode", label: "label", labelledby: "labelledby", listStyle: "listStyle", reorderable: "reorderable", roleOverride: "roleOverride", selectionMode: "selectionMode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
711
|
+
};
|
|
712
|
+
MdList = __decorate([
|
|
713
|
+
ProxyCmp({
|
|
714
|
+
inputs: ['density', 'interactionMode', 'label', 'labelledby', 'listStyle', 'reorderable', 'roleOverride', 'selectionMode'],
|
|
715
|
+
methods: ['activateNext', 'activatePrevious', 'selectItem', 'getSelectedIndices']
|
|
716
|
+
})
|
|
717
|
+
], MdList);
|
|
718
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdList, decorators: [{
|
|
719
|
+
type: Component,
|
|
720
|
+
args: [{
|
|
721
|
+
selector: 'md-list',
|
|
722
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
723
|
+
template: '<ng-content></ng-content>',
|
|
724
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
725
|
+
inputs: ['density', 'interactionMode', 'label', 'labelledby', 'listStyle', 'reorderable', 'roleOverride', 'selectionMode'],
|
|
726
|
+
}]
|
|
727
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
728
|
+
let MdListItem = class MdListItem {
|
|
729
|
+
constructor(c, r, z) {
|
|
730
|
+
this.z = z;
|
|
731
|
+
c.detach();
|
|
732
|
+
this.el = r.nativeElement;
|
|
733
|
+
proxyOutputs(this, this.el, ['mdClick', 'mdItemClick', 'mdItemSelect', 'mdRequestActivation', 'mdItemRequestReorder', 'mdExpand']);
|
|
734
|
+
}
|
|
735
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
736
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdListItem, selector: "md-list-item", inputs: { containerRole: "containerRole", density: "density", disabled: "disabled", expandable: "expandable", expanded: "expanded", headline: "headline", href: "href", interactionMode: "interactionMode", leadingAvatar: "leadingAvatar", leadingAvatarAlt: "leadingAvatarAlt", leadingAvatarLabel: "leadingAvatarLabel", leadingAvatarName: "leadingAvatarName", leadingIcon: "leadingIcon", leadingImage: "leadingImage", leadingImageAlt: "leadingImageAlt", lines: "lines", overline: "overline", reorderable: "reorderable", rovingFocusVisible: "rovingFocusVisible", selected: "selected", selectionMode: "selectionMode", softDisabled: "softDisabled", supportingText: "supportingText", tabbable: "tabbable", target: "target", trailingIcon: "trailingIcon", trailingSupportingText: "trailingSupportingText", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
737
|
+
};
|
|
738
|
+
MdListItem = __decorate([
|
|
739
|
+
ProxyCmp({
|
|
740
|
+
inputs: ['containerRole', 'density', 'disabled', 'expandable', 'expanded', 'headline', 'href', 'interactionMode', 'leadingAvatar', 'leadingAvatarAlt', 'leadingAvatarLabel', 'leadingAvatarName', 'leadingIcon', 'leadingImage', 'leadingImageAlt', 'lines', 'overline', 'reorderable', 'rovingFocusVisible', 'selected', 'selectionMode', 'softDisabled', 'supportingText', 'tabbable', 'target', 'trailingIcon', 'trailingSupportingText', 'type'],
|
|
741
|
+
methods: ['setFocus', 'focusItem', 'toggle', 'expand', 'collapse']
|
|
742
|
+
})
|
|
743
|
+
], MdListItem);
|
|
744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdListItem, decorators: [{
|
|
745
|
+
type: Component,
|
|
746
|
+
args: [{
|
|
747
|
+
selector: 'md-list-item',
|
|
748
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
749
|
+
template: '<ng-content></ng-content>',
|
|
750
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
751
|
+
inputs: ['containerRole', 'density', 'disabled', 'expandable', 'expanded', 'headline', 'href', 'interactionMode', 'leadingAvatar', 'leadingAvatarAlt', 'leadingAvatarLabel', 'leadingAvatarName', 'leadingIcon', 'leadingImage', 'leadingImageAlt', 'lines', 'overline', 'reorderable', 'rovingFocusVisible', 'selected', 'selectionMode', 'softDisabled', 'supportingText', 'tabbable', 'target', 'trailingIcon', 'trailingSupportingText', 'type'],
|
|
752
|
+
}]
|
|
753
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
754
|
+
let MdLoadingIndicator = class MdLoadingIndicator {
|
|
755
|
+
constructor(c, r, z) {
|
|
756
|
+
this.z = z;
|
|
757
|
+
c.detach();
|
|
758
|
+
this.el = r.nativeElement;
|
|
759
|
+
}
|
|
760
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdLoadingIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
761
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdLoadingIndicator, selector: "md-loading-indicator", inputs: { density: "density", label: "label", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
762
|
+
};
|
|
763
|
+
MdLoadingIndicator = __decorate([
|
|
764
|
+
ProxyCmp({
|
|
765
|
+
inputs: ['density', 'label', 'variant']
|
|
766
|
+
})
|
|
767
|
+
], MdLoadingIndicator);
|
|
768
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdLoadingIndicator, decorators: [{
|
|
769
|
+
type: Component,
|
|
770
|
+
args: [{
|
|
771
|
+
selector: 'md-loading-indicator',
|
|
772
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
773
|
+
template: '<ng-content></ng-content>',
|
|
774
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
775
|
+
inputs: ['density', 'label', 'variant'],
|
|
776
|
+
}]
|
|
777
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
778
|
+
let MdMenu = class MdMenu {
|
|
779
|
+
constructor(c, r, z) {
|
|
780
|
+
this.z = z;
|
|
781
|
+
c.detach();
|
|
782
|
+
this.el = r.nativeElement;
|
|
783
|
+
proxyOutputs(this, this.el, ['mdOpen', 'mdClose']);
|
|
784
|
+
}
|
|
785
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
786
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdMenu, selector: "md-menu", inputs: { anchor: "anchor", autoFocus: "autoFocus", density: "density", emptyText: "emptyText", layout: "layout", listLabel: "listLabel", listbox: "listbox", matchAnchorWidth: "matchAnchorWidth", maxHeight: "maxHeight", open: "open", persistent: "persistent", placement: "placement", quick: "quick", responsive: "responsive", useGap: "useGap", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
787
|
+
};
|
|
788
|
+
MdMenu = __decorate([
|
|
789
|
+
ProxyCmp({
|
|
790
|
+
inputs: ['anchor', 'autoFocus', 'density', 'emptyText', 'layout', 'listLabel', 'listbox', 'matchAnchorWidth', 'maxHeight', 'open', 'persistent', 'placement', 'quick', 'responsive', 'useGap', 'variant'],
|
|
791
|
+
methods: ['setComboboxElement', 'setVirtualProvider', 'getScrollViewport', 'show', 'reposition', 'close']
|
|
792
|
+
})
|
|
793
|
+
], MdMenu);
|
|
794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdMenu, decorators: [{
|
|
795
|
+
type: Component,
|
|
796
|
+
args: [{
|
|
797
|
+
selector: 'md-menu',
|
|
798
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
799
|
+
template: '<ng-content></ng-content>',
|
|
800
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
801
|
+
inputs: ['anchor', 'autoFocus', 'density', 'emptyText', 'layout', 'listLabel', 'listbox', 'matchAnchorWidth', 'maxHeight', 'open', 'persistent', 'placement', 'quick', 'responsive', 'useGap', 'variant'],
|
|
802
|
+
}]
|
|
803
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
804
|
+
let MdMenuItem = class MdMenuItem {
|
|
805
|
+
constructor(c, r, z) {
|
|
806
|
+
this.z = z;
|
|
807
|
+
c.detach();
|
|
808
|
+
this.el = r.nativeElement;
|
|
809
|
+
proxyOutputs(this, this.el, ['mdClick']);
|
|
810
|
+
}
|
|
811
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
812
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdMenuItem, selector: "md-menu-item", inputs: { badge: "badge", checkPosition: "checkPosition", density: "density", disabled: "disabled", divider: "divider", gap: "gap", headline: "headline", indeterminate: "indeterminate", keepOpen: "keepOpen", presentation: "presentation", roleOverride: "roleOverride", selected: "selected", supportingText: "supportingText", trailingText: "trailingText", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
813
|
+
};
|
|
814
|
+
MdMenuItem = __decorate([
|
|
815
|
+
ProxyCmp({
|
|
816
|
+
inputs: ['badge', 'checkPosition', 'density', 'disabled', 'divider', 'gap', 'headline', 'indeterminate', 'keepOpen', 'presentation', 'roleOverride', 'selected', 'supportingText', 'trailingText', 'type']
|
|
817
|
+
})
|
|
818
|
+
], MdMenuItem);
|
|
819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdMenuItem, decorators: [{
|
|
820
|
+
type: Component,
|
|
821
|
+
args: [{
|
|
822
|
+
selector: 'md-menu-item',
|
|
823
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
824
|
+
template: '<ng-content></ng-content>',
|
|
825
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
826
|
+
inputs: ['badge', 'checkPosition', 'density', 'disabled', 'divider', 'gap', 'headline', 'indeterminate', 'keepOpen', 'presentation', 'roleOverride', 'selected', 'supportingText', 'trailingText', 'type'],
|
|
827
|
+
}]
|
|
828
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
829
|
+
let MdMenuItemGroup = class MdMenuItemGroup {
|
|
830
|
+
constructor(c, r, z) {
|
|
831
|
+
this.z = z;
|
|
832
|
+
c.detach();
|
|
833
|
+
this.el = r.nativeElement;
|
|
834
|
+
}
|
|
835
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdMenuItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
836
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdMenuItemGroup, selector: "md-menu-item-group", inputs: { density: "density", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
837
|
+
};
|
|
838
|
+
MdMenuItemGroup = __decorate([
|
|
839
|
+
ProxyCmp({
|
|
840
|
+
inputs: ['density', 'label']
|
|
841
|
+
})
|
|
842
|
+
], MdMenuItemGroup);
|
|
843
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdMenuItemGroup, decorators: [{
|
|
844
|
+
type: Component,
|
|
845
|
+
args: [{
|
|
846
|
+
selector: 'md-menu-item-group',
|
|
847
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
848
|
+
template: '<ng-content></ng-content>',
|
|
849
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
850
|
+
inputs: ['density', 'label'],
|
|
851
|
+
}]
|
|
852
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
853
|
+
let MdMeter = class MdMeter {
|
|
854
|
+
constructor(c, r, z) {
|
|
855
|
+
this.z = z;
|
|
856
|
+
c.detach();
|
|
857
|
+
this.el = r.nativeElement;
|
|
858
|
+
}
|
|
859
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdMeter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
860
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdMeter, selector: "md-meter", inputs: { color: "color", density: "density", formatOptions: "formatOptions", label: "label", locale: "locale", max: "max", min: "min", showLabel: "showLabel", showValue: "showValue", size: "size", thickness: "thickness", value: "value", valueText: "valueText", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
861
|
+
};
|
|
862
|
+
MdMeter = __decorate([
|
|
863
|
+
ProxyCmp({
|
|
864
|
+
inputs: ['color', 'density', 'formatOptions', 'label', 'locale', 'max', 'min', 'showLabel', 'showValue', 'size', 'thickness', 'value', 'valueText', 'variant']
|
|
865
|
+
})
|
|
866
|
+
], MdMeter);
|
|
867
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdMeter, decorators: [{
|
|
868
|
+
type: Component,
|
|
869
|
+
args: [{
|
|
870
|
+
selector: 'md-meter',
|
|
871
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
872
|
+
template: '<ng-content></ng-content>',
|
|
873
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
874
|
+
inputs: ['color', 'density', 'formatOptions', 'label', 'locale', 'max', 'min', 'showLabel', 'showValue', 'size', 'thickness', 'value', 'valueText', 'variant'],
|
|
875
|
+
}]
|
|
876
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
877
|
+
let MdMultiSelect = class MdMultiSelect {
|
|
878
|
+
constructor(c, r, z) {
|
|
879
|
+
this.z = z;
|
|
880
|
+
c.detach();
|
|
881
|
+
this.el = r.nativeElement;
|
|
882
|
+
proxyOutputs(this, this.el, ['mdChange', 'mdOpen', 'mdClose', 'mdRemove', 'mdClear', 'mdValidityChange']);
|
|
883
|
+
}
|
|
884
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdMultiSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
885
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdMultiSelect, selector: "md-multi-select", inputs: { chipOverflow: "chipOverflow", chipPosition: "chipPosition", clearIcon: "clearIcon", clearLabel: "clearLabel", clearable: "clearable", countFormatter: "countFormatter", density: "density", disabled: "disabled", displayMode: "displayMode", dropdownIcon: "dropdownIcon", error: "error", errorText: "errorText", filterLabel: "filterLabel", filterMode: "filterMode", filterable: "filterable", label: "label", loading: "loading", loadingText: "loadingText", matchTriggerWidth: "matchTriggerWidth", maxHeight: "maxHeight", maxSelected: "maxSelected", name: "name", noOptionsText: "noOptionsText", noResultsText: "noResultsText", open: "open", options: "options", placeholder: "placeholder", placement: "placement", required: "required", reserveSupportingSpace: "reserveSupportingSpace", rowHeight: "rowHeight", searchPlaceholder: "searchPlaceholder", searchingLabel: "searchingLabel", selectAllLabel: "selectAllLabel", showSelectAll: "showSelectAll", softDisabled: "softDisabled", supportingText: "supportingText", trigger: "trigger", triggerIcon: "triggerIcon", triggerLabel: "triggerLabel", value: "value", valueMissingLabel: "valueMissingLabel", variant: "variant", virtualize: "virtualize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
886
|
+
};
|
|
887
|
+
MdMultiSelect = __decorate([
|
|
888
|
+
ProxyCmp({
|
|
889
|
+
inputs: ['chipOverflow', 'chipPosition', 'clearIcon', 'clearLabel', 'clearable', 'countFormatter', 'density', 'disabled', 'displayMode', 'dropdownIcon', 'error', 'errorText', 'filterLabel', 'filterMode', 'filterable', 'label', 'loading', 'loadingText', 'matchTriggerWidth', 'maxHeight', 'maxSelected', 'name', 'noOptionsText', 'noResultsText', 'open', 'options', 'placeholder', 'placement', 'required', 'reserveSupportingSpace', 'rowHeight', 'searchPlaceholder', 'searchingLabel', 'selectAllLabel', 'showSelectAll', 'softDisabled', 'supportingText', 'trigger', 'triggerIcon', 'triggerLabel', 'value', 'valueMissingLabel', 'variant', 'virtualize'],
|
|
890
|
+
methods: ['show', 'close', 'focusTrigger', 'reset', 'loadOptions', 'setQuery', 'getLabels', 'getValidity', 'checkValidity', 'reportValidity', 'setCustomValidity']
|
|
891
|
+
})
|
|
892
|
+
], MdMultiSelect);
|
|
893
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdMultiSelect, decorators: [{
|
|
894
|
+
type: Component,
|
|
895
|
+
args: [{
|
|
896
|
+
selector: 'md-multi-select',
|
|
897
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
898
|
+
template: '<ng-content></ng-content>',
|
|
899
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
900
|
+
inputs: ['chipOverflow', 'chipPosition', 'clearIcon', 'clearLabel', 'clearable', 'countFormatter', 'density', 'disabled', 'displayMode', 'dropdownIcon', 'error', 'errorText', 'filterLabel', 'filterMode', 'filterable', 'label', 'loading', 'loadingText', 'matchTriggerWidth', 'maxHeight', 'maxSelected', 'name', 'noOptionsText', 'noResultsText', 'open', 'options', 'placeholder', 'placement', 'required', 'reserveSupportingSpace', 'rowHeight', 'searchPlaceholder', 'searchingLabel', 'selectAllLabel', 'showSelectAll', 'softDisabled', 'supportingText', 'trigger', 'triggerIcon', 'triggerLabel', 'value', 'valueMissingLabel', 'variant', 'virtualize'],
|
|
901
|
+
}]
|
|
902
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
903
|
+
let MdNavigationBar = class MdNavigationBar {
|
|
904
|
+
constructor(c, r, z) {
|
|
905
|
+
this.z = z;
|
|
906
|
+
c.detach();
|
|
907
|
+
this.el = r.nativeElement;
|
|
908
|
+
proxyOutputs(this, this.el, ['mdChange']);
|
|
909
|
+
}
|
|
910
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdNavigationBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
911
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdNavigationBar, selector: "md-navigation-bar", inputs: { activeIndex: "activeIndex", density: "density", labelBehavior: "labelBehavior", manualActivation: "manualActivation" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
912
|
+
};
|
|
913
|
+
MdNavigationBar = __decorate([
|
|
914
|
+
ProxyCmp({
|
|
915
|
+
inputs: ['activeIndex', 'density', 'labelBehavior', 'manualActivation'],
|
|
916
|
+
methods: ['select', 'focusTab']
|
|
917
|
+
})
|
|
918
|
+
], MdNavigationBar);
|
|
919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdNavigationBar, decorators: [{
|
|
920
|
+
type: Component,
|
|
921
|
+
args: [{
|
|
922
|
+
selector: 'md-navigation-bar',
|
|
923
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
924
|
+
template: '<ng-content></ng-content>',
|
|
925
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
926
|
+
inputs: ['activeIndex', 'density', 'labelBehavior', 'manualActivation'],
|
|
927
|
+
}]
|
|
928
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
929
|
+
let MdNavigationRail = class MdNavigationRail {
|
|
930
|
+
constructor(c, r, z) {
|
|
931
|
+
this.z = z;
|
|
932
|
+
c.detach();
|
|
933
|
+
this.el = r.nativeElement;
|
|
934
|
+
proxyOutputs(this, this.el, ['mdTabChange', 'mdExpand', 'mdCollapse']);
|
|
935
|
+
}
|
|
936
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdNavigationRail, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
937
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdNavigationRail, selector: "md-navigation-rail", inputs: { activeIndex: "activeIndex", alignment: "alignment", density: "density", disableFocusManagement: "disableFocusManagement", expandable: "expandable", fullHeight: "fullHeight", label: "label", labelVisibility: "labelVisibility", maxVisible: "maxVisible", modal: "modal", orientation: "orientation", overflowIcon: "overflowIcon", overflowLabel: "overflowLabel", toggleLabel: "toggleLabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
938
|
+
};
|
|
939
|
+
MdNavigationRail = __decorate([
|
|
940
|
+
ProxyCmp({
|
|
941
|
+
inputs: ['activeIndex', 'alignment', 'density', 'disableFocusManagement', 'expandable', 'fullHeight', 'label', 'labelVisibility', 'maxVisible', 'modal', 'orientation', 'overflowIcon', 'overflowLabel', 'toggleLabel', 'variant'],
|
|
942
|
+
methods: ['expand', 'collapse', 'toggle', 'focusTab']
|
|
943
|
+
})
|
|
944
|
+
], MdNavigationRail);
|
|
945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdNavigationRail, decorators: [{
|
|
946
|
+
type: Component,
|
|
947
|
+
args: [{
|
|
948
|
+
selector: 'md-navigation-rail',
|
|
949
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
950
|
+
template: '<ng-content></ng-content>',
|
|
951
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
952
|
+
inputs: ['activeIndex', 'alignment', 'density', 'disableFocusManagement', 'expandable', 'fullHeight', 'label', 'labelVisibility', 'maxVisible', 'modal', 'orientation', 'overflowIcon', 'overflowLabel', 'toggleLabel', 'variant'],
|
|
953
|
+
}]
|
|
954
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
955
|
+
let MdNavigationRailTab = class MdNavigationRailTab {
|
|
956
|
+
constructor(c, r, z) {
|
|
957
|
+
this.z = z;
|
|
958
|
+
c.detach();
|
|
959
|
+
this.el = r.nativeElement;
|
|
960
|
+
proxyOutputs(this, this.el, ['mdTabClick', 'mdSubmenuToggle']);
|
|
961
|
+
}
|
|
962
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdNavigationRailTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
963
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdNavigationRailTab, selector: "md-navigation-rail-tab", inputs: { active: "active", badge: "badge", badgeValue: "badgeValue", density: "density", disabled: "disabled", expanded: "expanded", href: "href", icon: "icon", label: "label", labelVisibility: "labelVisibility", target: "target", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
964
|
+
};
|
|
965
|
+
MdNavigationRailTab = __decorate([
|
|
966
|
+
ProxyCmp({
|
|
967
|
+
inputs: ['active', 'badge', 'badgeValue', 'density', 'disabled', 'expanded', 'href', 'icon', 'label', 'labelVisibility', 'target', 'value'],
|
|
968
|
+
methods: ['clearSubmenuSelection']
|
|
969
|
+
})
|
|
970
|
+
], MdNavigationRailTab);
|
|
971
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdNavigationRailTab, decorators: [{
|
|
972
|
+
type: Component,
|
|
973
|
+
args: [{
|
|
974
|
+
selector: 'md-navigation-rail-tab',
|
|
975
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
976
|
+
template: '<ng-content></ng-content>',
|
|
977
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
978
|
+
inputs: ['active', 'badge', 'badgeValue', 'density', 'disabled', 'expanded', 'href', 'icon', 'label', 'labelVisibility', 'target', 'value'],
|
|
979
|
+
}]
|
|
980
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
981
|
+
let MdNavigationTab = class MdNavigationTab {
|
|
982
|
+
constructor(c, r, z) {
|
|
983
|
+
this.z = z;
|
|
984
|
+
c.detach();
|
|
985
|
+
this.el = r.nativeElement;
|
|
986
|
+
proxyOutputs(this, this.el, ['mdTabClick']);
|
|
987
|
+
}
|
|
988
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdNavigationTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
989
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdNavigationTab, selector: "md-navigation-tab", inputs: { active: "active", activeIcon: "activeIcon", badge: "badge", badgeMax: "badgeMax", badgeValue: "badgeValue", density: "density", disabled: "disabled", href: "href", icon: "icon", label: "label", labelBehavior: "labelBehavior", softDisabled: "softDisabled", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
990
|
+
};
|
|
991
|
+
MdNavigationTab = __decorate([
|
|
992
|
+
ProxyCmp({
|
|
993
|
+
inputs: ['active', 'activeIcon', 'badge', 'badgeMax', 'badgeValue', 'density', 'disabled', 'href', 'icon', 'label', 'labelBehavior', 'softDisabled', 'target'],
|
|
994
|
+
methods: ['focusEl']
|
|
995
|
+
})
|
|
996
|
+
], MdNavigationTab);
|
|
997
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdNavigationTab, decorators: [{
|
|
998
|
+
type: Component,
|
|
999
|
+
args: [{
|
|
1000
|
+
selector: 'md-navigation-tab',
|
|
1001
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1002
|
+
template: '<ng-content></ng-content>',
|
|
1003
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1004
|
+
inputs: ['active', 'activeIcon', 'badge', 'badgeMax', 'badgeValue', 'density', 'disabled', 'href', 'icon', 'label', 'labelBehavior', 'softDisabled', 'target'],
|
|
1005
|
+
}]
|
|
1006
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1007
|
+
let MdNumberField = class MdNumberField {
|
|
1008
|
+
constructor(c, r, z) {
|
|
1009
|
+
this.z = z;
|
|
1010
|
+
c.detach();
|
|
1011
|
+
this.el = r.nativeElement;
|
|
1012
|
+
proxyOutputs(this, this.el, ['mdInput', 'mdChange', 'mdValidityChange']);
|
|
1013
|
+
}
|
|
1014
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdNumberField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1015
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdNumberField, selector: "md-number-field", inputs: { allowOutOfRange: "allowOutOfRange", allowWheelScrub: "allowWheelScrub", decrementLabel: "decrementLabel", density: "density", disabled: "disabled", error: "error", errorText: "errorText", formatOptions: "formatOptions", incrementLabel: "incrementLabel", label: "label", largeStep: "largeStep", locale: "locale", max: "max", min: "min", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", reserveSupportingSpace: "reserveSupportingSpace", smallStep: "smallStep", snapOnStep: "snapOnStep", step: "step", steppers: "steppers", supportingText: "supportingText", value: "value", valueMissingLabel: "valueMissingLabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1016
|
+
};
|
|
1017
|
+
MdNumberField = __decorate([
|
|
1018
|
+
ProxyCmp({
|
|
1019
|
+
inputs: ['allowOutOfRange', 'allowWheelScrub', 'decrementLabel', 'density', 'disabled', 'error', 'errorText', 'formatOptions', 'incrementLabel', 'label', 'largeStep', 'locale', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'reserveSupportingSpace', 'smallStep', 'snapOnStep', 'step', 'steppers', 'supportingText', 'value', 'valueMissingLabel', 'variant'],
|
|
1020
|
+
methods: ['setFocus', 'select', 'stepUp', 'stepDown', 'getValidity', 'checkValidity', 'reportValidity', 'setCustomValidity']
|
|
1021
|
+
})
|
|
1022
|
+
], MdNumberField);
|
|
1023
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdNumberField, decorators: [{
|
|
1024
|
+
type: Component,
|
|
1025
|
+
args: [{
|
|
1026
|
+
selector: 'md-number-field',
|
|
1027
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1028
|
+
template: '<ng-content></ng-content>',
|
|
1029
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1030
|
+
inputs: ['allowOutOfRange', 'allowWheelScrub', 'decrementLabel', 'density', 'disabled', 'error', 'errorText', 'formatOptions', 'incrementLabel', 'label', 'largeStep', 'locale', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'reserveSupportingSpace', 'smallStep', 'snapOnStep', 'step', 'steppers', 'supportingText', 'value', 'valueMissingLabel', 'variant'],
|
|
1031
|
+
}]
|
|
1032
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1033
|
+
let MdOrganizationChart = class MdOrganizationChart {
|
|
1034
|
+
constructor(c, r, z) {
|
|
1035
|
+
this.z = z;
|
|
1036
|
+
c.detach();
|
|
1037
|
+
this.el = r.nativeElement;
|
|
1038
|
+
proxyOutputs(this, this.el, ['mdSelectionChange', 'mdNodeToggle']);
|
|
1039
|
+
}
|
|
1040
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdOrganizationChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1041
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdOrganizationChart, selector: "md-organization-chart", inputs: { collapseLabel: "collapseLabel", collapsible: "collapsible", density: "density", expandLabel: "expandLabel", label: "label", nodes: "nodes", orientation: "orientation", selectedIds: "selectedIds", selectionMode: "selectionMode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1042
|
+
};
|
|
1043
|
+
MdOrganizationChart = __decorate([
|
|
1044
|
+
ProxyCmp({
|
|
1045
|
+
inputs: ['collapseLabel', 'collapsible', 'density', 'expandLabel', 'label', 'nodes', 'orientation', 'selectedIds', 'selectionMode']
|
|
1046
|
+
})
|
|
1047
|
+
], MdOrganizationChart);
|
|
1048
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdOrganizationChart, decorators: [{
|
|
1049
|
+
type: Component,
|
|
1050
|
+
args: [{
|
|
1051
|
+
selector: 'md-organization-chart',
|
|
1052
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1053
|
+
template: '<ng-content></ng-content>',
|
|
1054
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1055
|
+
inputs: ['collapseLabel', 'collapsible', 'density', 'expandLabel', 'label', 'nodes', 'orientation', 'selectedIds', 'selectionMode'],
|
|
1056
|
+
}]
|
|
1057
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1058
|
+
let MdOtpField = class MdOtpField {
|
|
1059
|
+
constructor(c, r, z) {
|
|
1060
|
+
this.z = z;
|
|
1061
|
+
c.detach();
|
|
1062
|
+
this.el = r.nativeElement;
|
|
1063
|
+
proxyOutputs(this, this.el, ['mdInput', 'mdChange', 'mdComplete', 'mdInvalidInput', 'mdValidityChange']);
|
|
1064
|
+
}
|
|
1065
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdOtpField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1066
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdOtpField, selector: "md-otp-field", inputs: { autoSubmit: "autoSubmit", cellLabelTemplate: "cellLabelTemplate", density: "density", disabled: "disabled", error: "error", errorText: "errorText", groupSize: "groupSize", incompleteLabel: "incompleteLabel", inputMode: "inputMode", label: "label", length: "length", mask: "mask", name: "name", readOnly: "readOnly", required: "required", reserveSupportingSpace: "reserveSupportingSpace", supportingText: "supportingText", transform: "transform", validationType: "validationType", value: "value", valueMissingLabel: "valueMissingLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1067
|
+
};
|
|
1068
|
+
MdOtpField = __decorate([
|
|
1069
|
+
ProxyCmp({
|
|
1070
|
+
inputs: ['autoSubmit', 'cellLabelTemplate', 'density', 'disabled', 'error', 'errorText', 'groupSize', 'incompleteLabel', 'inputMode', 'label', 'length', 'mask', 'name', 'readOnly', 'required', 'reserveSupportingSpace', 'supportingText', 'transform', 'validationType', 'value', 'valueMissingLabel'],
|
|
1071
|
+
methods: ['setFocus', 'clear', 'getValidity', 'setCustomValidity', 'checkValidity', 'reportValidity']
|
|
1072
|
+
})
|
|
1073
|
+
], MdOtpField);
|
|
1074
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdOtpField, decorators: [{
|
|
1075
|
+
type: Component,
|
|
1076
|
+
args: [{
|
|
1077
|
+
selector: 'md-otp-field',
|
|
1078
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1079
|
+
template: '<ng-content></ng-content>',
|
|
1080
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1081
|
+
inputs: ['autoSubmit', 'cellLabelTemplate', 'density', 'disabled', 'error', 'errorText', 'groupSize', 'incompleteLabel', 'inputMode', 'label', 'length', 'mask', 'name', 'readOnly', 'required', 'reserveSupportingSpace', 'supportingText', 'transform', 'validationType', 'value', 'valueMissingLabel'],
|
|
1082
|
+
}]
|
|
1083
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1084
|
+
let MdPieChart = class MdPieChart {
|
|
1085
|
+
constructor(c, r, z) {
|
|
1086
|
+
this.z = z;
|
|
1087
|
+
c.detach();
|
|
1088
|
+
this.el = r.nativeElement;
|
|
1089
|
+
proxyOutputs(this, this.el, ['mdSliceClick', 'mdLegendClick', 'mdReady']);
|
|
1090
|
+
}
|
|
1091
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdPieChart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1092
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdPieChart, selector: "md-pie-chart", inputs: { animation: "animation", animationDuration: "animationDuration", cornerRadius: "cornerRadius", data: "data", density: "density", endAngle: "endAngle", gradient: "gradient", heightProp: "heightProp", highlight: "highlight", innerRadius: "innerRadius", label: "label", labelEmpty: "labelEmpty", labelMode: "labelMode", labelPlot: "labelPlot", labelPoint: "labelPoint", legend: "legend", loading: "loading", loadingLabel: "loadingLabel", locale: "locale", monochrome: "monochrome", noAnimation: "noAnimation", outerRadius: "outerRadius", paddingAngle: "paddingAngle", ringWidths: "ringWidths", showLabels: "showLabels", startAngle: "startAngle", subtitle: "subtitle", summary: "summary", tableLabels: "tableLabels", titleAlign: "titleAlign", tooltip: "tooltip", tooltipRenderer: "tooltipRenderer", valueFormatter: "valueFormatter" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1093
|
+
};
|
|
1094
|
+
MdPieChart = __decorate([
|
|
1095
|
+
ProxyCmp({
|
|
1096
|
+
inputs: ['animation', 'animationDuration', 'cornerRadius', 'data', 'density', 'endAngle', 'gradient', 'heightProp', 'highlight', 'innerRadius', 'label', 'labelEmpty', 'labelMode', 'labelPlot', 'labelPoint', 'legend', 'loading', 'loadingLabel', 'locale', 'monochrome', 'noAnimation', 'outerRadius', 'paddingAngle', 'ringWidths', 'showLabels', 'startAngle', 'subtitle', 'summary', 'tableLabels', 'titleAlign', 'tooltip', 'tooltipRenderer', 'valueFormatter'],
|
|
1097
|
+
methods: ['resize', 'replay', 'drill', 'toDataURL', 'getInstance']
|
|
1098
|
+
})
|
|
1099
|
+
], MdPieChart);
|
|
1100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdPieChart, decorators: [{
|
|
1101
|
+
type: Component,
|
|
1102
|
+
args: [{
|
|
1103
|
+
selector: 'md-pie-chart',
|
|
1104
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1105
|
+
template: '<ng-content></ng-content>',
|
|
1106
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1107
|
+
inputs: ['animation', 'animationDuration', 'cornerRadius', 'data', 'density', 'endAngle', 'gradient', 'heightProp', 'highlight', 'innerRadius', 'label', 'labelEmpty', 'labelMode', 'labelPlot', 'labelPoint', 'legend', 'loading', 'loadingLabel', 'locale', 'monochrome', 'noAnimation', 'outerRadius', 'paddingAngle', 'ringWidths', 'showLabels', 'startAngle', 'subtitle', 'summary', 'tableLabels', 'titleAlign', 'tooltip', 'tooltipRenderer', 'valueFormatter'],
|
|
1108
|
+
}]
|
|
1109
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1110
|
+
let MdProgressIndicator = class MdProgressIndicator {
|
|
1111
|
+
constructor(c, r, z) {
|
|
1112
|
+
this.z = z;
|
|
1113
|
+
c.detach();
|
|
1114
|
+
this.el = r.nativeElement;
|
|
1115
|
+
proxyOutputs(this, this.el, ['mdComplete']);
|
|
1116
|
+
}
|
|
1117
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdProgressIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1118
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdProgressIndicator, selector: "md-progress-indicator", inputs: { complete: "complete", density: "density", fourColor: "fourColor", indeterminate: "indeterminate", label: "label", max: "max", size: "size", thickness: "thickness", value: "value", variant: "variant", wave: "wave", waveAmplitude: "waveAmplitude", waveLength: "waveLength", waveSpeed: "waveSpeed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1119
|
+
};
|
|
1120
|
+
MdProgressIndicator = __decorate([
|
|
1121
|
+
ProxyCmp({
|
|
1122
|
+
inputs: ['complete', 'density', 'fourColor', 'indeterminate', 'label', 'max', 'size', 'thickness', 'value', 'variant', 'wave', 'waveAmplitude', 'waveLength', 'waveSpeed']
|
|
1123
|
+
})
|
|
1124
|
+
], MdProgressIndicator);
|
|
1125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdProgressIndicator, decorators: [{
|
|
1126
|
+
type: Component,
|
|
1127
|
+
args: [{
|
|
1128
|
+
selector: 'md-progress-indicator',
|
|
1129
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1130
|
+
template: '<ng-content></ng-content>',
|
|
1131
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1132
|
+
inputs: ['complete', 'density', 'fourColor', 'indeterminate', 'label', 'max', 'size', 'thickness', 'value', 'variant', 'wave', 'waveAmplitude', 'waveLength', 'waveSpeed'],
|
|
1133
|
+
}]
|
|
1134
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1135
|
+
let MdRadio = class MdRadio {
|
|
1136
|
+
constructor(c, r, z) {
|
|
1137
|
+
this.z = z;
|
|
1138
|
+
c.detach();
|
|
1139
|
+
this.el = r.nativeElement;
|
|
1140
|
+
proxyOutputs(this, this.el, ['mdChange', 'mdFocus', 'mdBlur', 'mdValidityChange']);
|
|
1141
|
+
}
|
|
1142
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1143
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdRadio, selector: "md-radio", inputs: { checked: "checked", density: "density", disabled: "disabled", name: "name", required: "required", softDisabled: "softDisabled", value: "value", valueMissingLabel: "valueMissingLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1144
|
+
};
|
|
1145
|
+
MdRadio = __decorate([
|
|
1146
|
+
ProxyCmp({
|
|
1147
|
+
inputs: ['checked', 'density', 'disabled', 'name', 'required', 'softDisabled', 'value', 'valueMissingLabel'],
|
|
1148
|
+
methods: ['syncValidityFromGroup', 'getValidity', 'checkValidity', 'reportValidity', 'setCustomValidity', 'setFocus', 'setBlur', 'select']
|
|
1149
|
+
})
|
|
1150
|
+
], MdRadio);
|
|
1151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdRadio, decorators: [{
|
|
1152
|
+
type: Component,
|
|
1153
|
+
args: [{
|
|
1154
|
+
selector: 'md-radio',
|
|
1155
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1156
|
+
template: '<ng-content></ng-content>',
|
|
1157
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1158
|
+
inputs: ['checked', 'density', 'disabled', 'name', 'required', 'softDisabled', 'value', 'valueMissingLabel'],
|
|
1159
|
+
}]
|
|
1160
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1161
|
+
let MdRating = class MdRating {
|
|
1162
|
+
constructor(c, r, z) {
|
|
1163
|
+
this.z = z;
|
|
1164
|
+
c.detach();
|
|
1165
|
+
this.el = r.nativeElement;
|
|
1166
|
+
proxyOutputs(this, this.el, ['mdHover', 'mdChange']);
|
|
1167
|
+
}
|
|
1168
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1169
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdRating, selector: "md-rating", inputs: { defaultValue: "defaultValue", density: "density", disabled: "disabled", emptyIcon: "emptyIcon", getLabel: "getLabel", hover: "hover", icon: "icon", max: "max", name: "name", outlineEmpty: "outlineEmpty", precision: "precision", ratingLabel: "ratingLabel", readonly: "readonly", showValueLabel: "showValueLabel", size: "size", softDisabled: "softDisabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1170
|
+
};
|
|
1171
|
+
MdRating = __decorate([
|
|
1172
|
+
ProxyCmp({
|
|
1173
|
+
inputs: ['defaultValue', 'density', 'disabled', 'emptyIcon', 'getLabel', 'hover', 'icon', 'max', 'name', 'outlineEmpty', 'precision', 'ratingLabel', 'readonly', 'showValueLabel', 'size', 'softDisabled', 'value'],
|
|
1174
|
+
methods: ['focusRating']
|
|
1175
|
+
})
|
|
1176
|
+
], MdRating);
|
|
1177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdRating, decorators: [{
|
|
1178
|
+
type: Component,
|
|
1179
|
+
args: [{
|
|
1180
|
+
selector: 'md-rating',
|
|
1181
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1182
|
+
template: '<ng-content></ng-content>',
|
|
1183
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1184
|
+
inputs: ['defaultValue', 'density', 'disabled', 'emptyIcon', 'getLabel', 'hover', 'icon', 'max', 'name', 'outlineEmpty', 'precision', 'ratingLabel', 'readonly', 'showValueLabel', 'size', 'softDisabled', 'value'],
|
|
1185
|
+
}]
|
|
1186
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1187
|
+
let MdRipple = class MdRipple {
|
|
1188
|
+
constructor(c, r, z) {
|
|
1189
|
+
this.z = z;
|
|
1190
|
+
c.detach();
|
|
1191
|
+
this.el = r.nativeElement;
|
|
1192
|
+
}
|
|
1193
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdRipple, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1194
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdRipple, selector: "md-ripple", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1195
|
+
};
|
|
1196
|
+
MdRipple = __decorate([
|
|
1197
|
+
ProxyCmp({
|
|
1198
|
+
inputs: ['disabled'],
|
|
1199
|
+
methods: ['whenSettled', 'trigger']
|
|
1200
|
+
})
|
|
1201
|
+
], MdRipple);
|
|
1202
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdRipple, decorators: [{
|
|
1203
|
+
type: Component,
|
|
1204
|
+
args: [{
|
|
1205
|
+
selector: 'md-ripple',
|
|
1206
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1207
|
+
template: '<ng-content></ng-content>',
|
|
1208
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1209
|
+
inputs: ['disabled'],
|
|
1210
|
+
}]
|
|
1211
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1212
|
+
let MdSearch = class MdSearch {
|
|
1213
|
+
constructor(c, r, z) {
|
|
1214
|
+
this.z = z;
|
|
1215
|
+
c.detach();
|
|
1216
|
+
this.el = r.nativeElement;
|
|
1217
|
+
proxyOutputs(this, this.el, ['mdInput', 'mdSearch', 'mdSubmit', 'mdChange', 'mdOpen', 'mdClose', 'mdClear', 'mdVoice', 'mdLeadingIconClick', 'mdTrailingIconClick']);
|
|
1218
|
+
}
|
|
1219
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1220
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSearch, selector: "md-search", inputs: { announceResults: "announceResults", debounce: "debounce", density: "density", disabled: "disabled", dismissOnOutsideClick: "dismissOnOutsideClick", elevation: "elevation", escapeCloses: "escapeCloses", fullWidth: "fullWidth", initialFocus: "initialFocus", inputAriaLabel: "inputAriaLabel", layout: "layout", leadingIcon: "leadingIcon", loading: "loading", loadingLabel: "loadingLabel", maxBlockSize: "maxBlockSize", noResultsLabel: "noResultsLabel", open: "open", openLeadingIcon: "openLeadingIcon", placeholder: "placeholder", resultsLabel: "resultsLabel", scrollShadow: "scrollShadow", showClearButton: "showClearButton", throttle: "throttle", trigger: "trigger", triggerElement: "triggerElement", triggerFor: "triggerFor", triggerIcon: "triggerIcon", value: "value", variant: "variant", voiceSearch: "voiceSearch" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1221
|
+
};
|
|
1222
|
+
MdSearch = __decorate([
|
|
1223
|
+
ProxyCmp({
|
|
1224
|
+
inputs: ['announceResults', 'debounce', 'density', 'disabled', 'dismissOnOutsideClick', 'elevation', 'escapeCloses', 'fullWidth', 'initialFocus', 'inputAriaLabel', 'layout', 'leadingIcon', 'loading', 'loadingLabel', 'maxBlockSize', 'noResultsLabel', 'open', 'openLeadingIcon', 'placeholder', 'resultsLabel', 'scrollShadow', 'showClearButton', 'throttle', 'trigger', 'triggerElement', 'triggerFor', 'triggerIcon', 'value', 'variant', 'voiceSearch'],
|
|
1225
|
+
methods: ['show', 'close', 'toggle', 'focusInput', 'startVoice', 'stopVoice']
|
|
1226
|
+
})
|
|
1227
|
+
], MdSearch);
|
|
1228
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSearch, decorators: [{
|
|
1229
|
+
type: Component,
|
|
1230
|
+
args: [{
|
|
1231
|
+
selector: 'md-search',
|
|
1232
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1233
|
+
template: '<ng-content></ng-content>',
|
|
1234
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1235
|
+
inputs: ['announceResults', 'debounce', 'density', 'disabled', 'dismissOnOutsideClick', 'elevation', 'escapeCloses', 'fullWidth', 'initialFocus', 'inputAriaLabel', 'layout', 'leadingIcon', 'loading', 'loadingLabel', 'maxBlockSize', 'noResultsLabel', 'open', 'openLeadingIcon', 'placeholder', 'resultsLabel', 'scrollShadow', 'showClearButton', 'throttle', 'trigger', 'triggerElement', 'triggerFor', 'triggerIcon', 'value', 'variant', 'voiceSearch'],
|
|
1236
|
+
}]
|
|
1237
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1238
|
+
let MdSegmentedButton = class MdSegmentedButton {
|
|
1239
|
+
constructor(c, r, z) {
|
|
1240
|
+
this.z = z;
|
|
1241
|
+
c.detach();
|
|
1242
|
+
this.el = r.nativeElement;
|
|
1243
|
+
proxyOutputs(this, this.el, ['mdSegmentClick']);
|
|
1244
|
+
}
|
|
1245
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSegmentedButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1246
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSegmentedButton, selector: "md-segmented-button", inputs: { density: "density", disabled: "disabled", icon: "icon", label: "label", noCheckmark: "noCheckmark", ripple: "ripple", segmentDensity: "segmentDensity", segmentIndex: "segmentIndex", segmentMultiselect: "segmentMultiselect", segmentTotal: "segmentTotal", selected: "selected", softDisabled: "softDisabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1247
|
+
};
|
|
1248
|
+
MdSegmentedButton = __decorate([
|
|
1249
|
+
ProxyCmp({
|
|
1250
|
+
inputs: ['density', 'disabled', 'icon', 'label', 'noCheckmark', 'ripple', 'segmentDensity', 'segmentIndex', 'segmentMultiselect', 'segmentTotal', 'selected', 'softDisabled', 'value']
|
|
1251
|
+
})
|
|
1252
|
+
], MdSegmentedButton);
|
|
1253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSegmentedButton, decorators: [{
|
|
1254
|
+
type: Component,
|
|
1255
|
+
args: [{
|
|
1256
|
+
selector: 'md-segmented-button',
|
|
1257
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1258
|
+
template: '<ng-content></ng-content>',
|
|
1259
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1260
|
+
inputs: ['density', 'disabled', 'icon', 'label', 'noCheckmark', 'ripple', 'segmentDensity', 'segmentIndex', 'segmentMultiselect', 'segmentTotal', 'selected', 'softDisabled', 'value'],
|
|
1261
|
+
}]
|
|
1262
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1263
|
+
let MdSegmentedButtonSet = class MdSegmentedButtonSet {
|
|
1264
|
+
constructor(c, r, z) {
|
|
1265
|
+
this.z = z;
|
|
1266
|
+
c.detach();
|
|
1267
|
+
this.el = r.nativeElement;
|
|
1268
|
+
proxyOutputs(this, this.el, ['mdChange']);
|
|
1269
|
+
}
|
|
1270
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSegmentedButtonSet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1271
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSegmentedButtonSet, selector: "md-segmented-button-set", inputs: { density: "density", multiselect: "multiselect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1272
|
+
};
|
|
1273
|
+
MdSegmentedButtonSet = __decorate([
|
|
1274
|
+
ProxyCmp({
|
|
1275
|
+
inputs: ['density', 'multiselect']
|
|
1276
|
+
})
|
|
1277
|
+
], MdSegmentedButtonSet);
|
|
1278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSegmentedButtonSet, decorators: [{
|
|
1279
|
+
type: Component,
|
|
1280
|
+
args: [{
|
|
1281
|
+
selector: 'md-segmented-button-set',
|
|
1282
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1283
|
+
template: '<ng-content></ng-content>',
|
|
1284
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1285
|
+
inputs: ['density', 'multiselect'],
|
|
1286
|
+
}]
|
|
1287
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1288
|
+
let MdSelect = class MdSelect {
|
|
1289
|
+
constructor(c, r, z) {
|
|
1290
|
+
this.z = z;
|
|
1291
|
+
c.detach();
|
|
1292
|
+
this.el = r.nativeElement;
|
|
1293
|
+
proxyOutputs(this, this.el, ['mdChange', 'mdOpen', 'mdClose', 'mdValidityChange']);
|
|
1294
|
+
}
|
|
1295
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1296
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSelect, selector: "md-select", inputs: { clearIcon: "clearIcon", clearLabel: "clearLabel", clearable: "clearable", density: "density", disabled: "disabled", dropdownIcon: "dropdownIcon", error: "error", errorText: "errorText", filterLabel: "filterLabel", filterMode: "filterMode", filterable: "filterable", fullWidth: "fullWidth", label: "label", loading: "loading", loadingText: "loadingText", matchTriggerWidth: "matchTriggerWidth", maxHeight: "maxHeight", name: "name", noOptionsText: "noOptionsText", noResultsText: "noResultsText", open: "open", options: "options", placeholder: "placeholder", placement: "placement", required: "required", reserveSupportingSpace: "reserveSupportingSpace", rowHeight: "rowHeight", searchPlaceholder: "searchPlaceholder", searchingLabel: "searchingLabel", supportingText: "supportingText", value: "value", valueMissingLabel: "valueMissingLabel", variant: "variant", virtualize: "virtualize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1297
|
+
};
|
|
1298
|
+
MdSelect = __decorate([
|
|
1299
|
+
ProxyCmp({
|
|
1300
|
+
inputs: ['clearIcon', 'clearLabel', 'clearable', 'density', 'disabled', 'dropdownIcon', 'error', 'errorText', 'filterLabel', 'filterMode', 'filterable', 'fullWidth', 'label', 'loading', 'loadingText', 'matchTriggerWidth', 'maxHeight', 'name', 'noOptionsText', 'noResultsText', 'open', 'options', 'placeholder', 'placement', 'required', 'reserveSupportingSpace', 'rowHeight', 'searchPlaceholder', 'searchingLabel', 'supportingText', 'value', 'valueMissingLabel', 'variant', 'virtualize'],
|
|
1301
|
+
methods: ['show', 'close', 'focusTrigger', 'reset', 'loadOptions', 'setQuery', 'getLabels', 'getValidity', 'checkValidity', 'reportValidity', 'setCustomValidity']
|
|
1302
|
+
})
|
|
1303
|
+
], MdSelect);
|
|
1304
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSelect, decorators: [{
|
|
1305
|
+
type: Component,
|
|
1306
|
+
args: [{
|
|
1307
|
+
selector: 'md-select',
|
|
1308
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1309
|
+
template: '<ng-content></ng-content>',
|
|
1310
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1311
|
+
inputs: ['clearIcon', 'clearLabel', 'clearable', 'density', 'disabled', 'dropdownIcon', 'error', 'errorText', 'filterLabel', 'filterMode', 'filterable', 'fullWidth', 'label', 'loading', 'loadingText', 'matchTriggerWidth', 'maxHeight', 'name', 'noOptionsText', 'noResultsText', 'open', 'options', 'placeholder', 'placement', 'required', 'reserveSupportingSpace', 'rowHeight', 'searchPlaceholder', 'searchingLabel', 'supportingText', 'value', 'valueMissingLabel', 'variant', 'virtualize'],
|
|
1312
|
+
}]
|
|
1313
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1314
|
+
let MdSelectOption = class MdSelectOption {
|
|
1315
|
+
constructor(c, r, z) {
|
|
1316
|
+
this.z = z;
|
|
1317
|
+
c.detach();
|
|
1318
|
+
this.el = r.nativeElement;
|
|
1319
|
+
proxyOutputs(this, this.el, ['mdSelectOptionChange']);
|
|
1320
|
+
}
|
|
1321
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSelectOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1322
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSelectOption, selector: "md-select-option", inputs: { disabled: "disabled", icon: "icon", iconColor: "iconColor", label: "label", selected: "selected", supportingText: "supportingText", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1323
|
+
};
|
|
1324
|
+
MdSelectOption = __decorate([
|
|
1325
|
+
ProxyCmp({
|
|
1326
|
+
inputs: ['disabled', 'icon', 'iconColor', 'label', 'selected', 'supportingText', 'value']
|
|
1327
|
+
})
|
|
1328
|
+
], MdSelectOption);
|
|
1329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSelectOption, decorators: [{
|
|
1330
|
+
type: Component,
|
|
1331
|
+
args: [{
|
|
1332
|
+
selector: 'md-select-option',
|
|
1333
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1334
|
+
template: '<ng-content></ng-content>',
|
|
1335
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1336
|
+
inputs: ['disabled', 'icon', 'iconColor', 'label', 'selected', 'supportingText', 'value'],
|
|
1337
|
+
}]
|
|
1338
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1339
|
+
let MdSideSheet = class MdSideSheet {
|
|
1340
|
+
constructor(c, r, z) {
|
|
1341
|
+
this.z = z;
|
|
1342
|
+
c.detach();
|
|
1343
|
+
this.el = r.nativeElement;
|
|
1344
|
+
proxyOutputs(this, this.el, ['mdOpen', 'mdClose', 'mdCancel', 'mdBack']);
|
|
1345
|
+
}
|
|
1346
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSideSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1347
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSideSheet, selector: "md-side-sheet", inputs: { bottomDivider: "bottomDivider", closeable: "closeable", density: "density", detached: "detached", headline: "headline", open: "open", scrimDismissible: "scrimDismissible", sheetAriaLabel: "sheetAriaLabel", showBack: "showBack", side: "side", topDivider: "topDivider", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1348
|
+
};
|
|
1349
|
+
MdSideSheet = __decorate([
|
|
1350
|
+
ProxyCmp({
|
|
1351
|
+
inputs: ['bottomDivider', 'closeable', 'density', 'detached', 'headline', 'open', 'scrimDismissible', 'sheetAriaLabel', 'showBack', 'side', 'topDivider', 'variant'],
|
|
1352
|
+
methods: ['show', 'close']
|
|
1353
|
+
})
|
|
1354
|
+
], MdSideSheet);
|
|
1355
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSideSheet, decorators: [{
|
|
1356
|
+
type: Component,
|
|
1357
|
+
args: [{
|
|
1358
|
+
selector: 'md-side-sheet',
|
|
1359
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1360
|
+
template: '<ng-content></ng-content>',
|
|
1361
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1362
|
+
inputs: ['bottomDivider', 'closeable', 'density', 'detached', 'headline', 'open', 'scrimDismissible', 'sheetAriaLabel', 'showBack', 'side', 'topDivider', 'variant'],
|
|
1363
|
+
}]
|
|
1364
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1365
|
+
let MdSkeleton = class MdSkeleton {
|
|
1366
|
+
constructor(c, r, z) {
|
|
1367
|
+
this.z = z;
|
|
1368
|
+
c.detach();
|
|
1369
|
+
this.el = r.nativeElement;
|
|
1370
|
+
}
|
|
1371
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1372
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSkeleton, selector: "md-skeleton", inputs: { animation: "animation", announce: "announce", ariaLabelProp: "ariaLabelProp", density: "density", fullHeight: "fullHeight", fullWidth: "fullWidth", height: "height", lines: "lines", variant: "variant", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1373
|
+
};
|
|
1374
|
+
MdSkeleton = __decorate([
|
|
1375
|
+
ProxyCmp({
|
|
1376
|
+
inputs: ['animation', 'announce', 'ariaLabelProp', 'density', 'fullHeight', 'fullWidth', 'height', 'lines', 'variant', 'width']
|
|
1377
|
+
})
|
|
1378
|
+
], MdSkeleton);
|
|
1379
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSkeleton, decorators: [{
|
|
1380
|
+
type: Component,
|
|
1381
|
+
args: [{
|
|
1382
|
+
selector: 'md-skeleton',
|
|
1383
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1384
|
+
template: '<ng-content></ng-content>',
|
|
1385
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1386
|
+
inputs: ['animation', 'announce', 'ariaLabelProp', 'density', 'fullHeight', 'fullWidth', 'height', 'lines', 'variant', 'width'],
|
|
1387
|
+
}]
|
|
1388
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1389
|
+
let MdSlider = class MdSlider {
|
|
1390
|
+
constructor(c, r, z) {
|
|
1391
|
+
this.z = z;
|
|
1392
|
+
c.detach();
|
|
1393
|
+
this.el = r.nativeElement;
|
|
1394
|
+
proxyOutputs(this, this.el, ['mdInput', 'mdChange', 'mdFocus', 'mdBlur', 'mdDragStart', 'mdDragEnd']);
|
|
1395
|
+
}
|
|
1396
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1397
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSlider, selector: "md-slider", inputs: { ariaLabelEnd: "ariaLabelEnd", ariaLabelStart: "ariaLabelStart", controlled: "controlled", density: "density", disabled: "disabled", fullHeight: "fullHeight", icon: "icon", insetIcon: "insetIcon", labeled: "labeled", max: "max", min: "min", name: "name", nameEnd: "nameEnd", nameStart: "nameStart", orientation: "orientation", range: "range", size: "size", sliderAriaLabel: "sliderAriaLabel", step: "step", stops: "stops", value: "value", valueEnd: "valueEnd", valueEndText: "valueEndText", valueIndicator: "valueIndicator", valueStart: "valueStart", valueStartText: "valueStartText", valueText: "valueText", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1398
|
+
};
|
|
1399
|
+
MdSlider = __decorate([
|
|
1400
|
+
ProxyCmp({
|
|
1401
|
+
inputs: ['ariaLabelEnd', 'ariaLabelStart', 'controlled', 'density', 'disabled', 'fullHeight', 'icon', 'insetIcon', 'labeled', 'max', 'min', 'name', 'nameEnd', 'nameStart', 'orientation', 'range', 'size', 'sliderAriaLabel', 'step', 'stops', 'value', 'valueEnd', 'valueEndText', 'valueIndicator', 'valueStart', 'valueStartText', 'valueText', 'variant']
|
|
1402
|
+
})
|
|
1403
|
+
], MdSlider);
|
|
1404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSlider, decorators: [{
|
|
1405
|
+
type: Component,
|
|
1406
|
+
args: [{
|
|
1407
|
+
selector: 'md-slider',
|
|
1408
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1409
|
+
template: '<ng-content></ng-content>',
|
|
1410
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1411
|
+
inputs: ['ariaLabelEnd', 'ariaLabelStart', 'controlled', 'density', 'disabled', 'fullHeight', 'icon', 'insetIcon', 'labeled', 'max', 'min', 'name', 'nameEnd', 'nameStart', 'orientation', 'range', 'size', 'sliderAriaLabel', 'step', 'stops', 'value', 'valueEnd', 'valueEndText', 'valueIndicator', 'valueStart', 'valueStartText', 'valueText', 'variant'],
|
|
1412
|
+
}]
|
|
1413
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1414
|
+
let MdSnackbar = class MdSnackbar {
|
|
1415
|
+
constructor(c, r, z) {
|
|
1416
|
+
this.z = z;
|
|
1417
|
+
c.detach();
|
|
1418
|
+
this.el = r.nativeElement;
|
|
1419
|
+
proxyOutputs(this, this.el, ['mdOpen', 'mdClose', 'mdAction']);
|
|
1420
|
+
}
|
|
1421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSnackbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1422
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSnackbar, selector: "md-snackbar", inputs: { action: "action", autoHide: "autoHide", autoHideDuration: "autoHideDuration", closeable: "closeable", density: "density", dismissLabel: "dismissLabel", message: "message", open: "open", politeness: "politeness", position: "position", stacked: "stacked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1423
|
+
};
|
|
1424
|
+
MdSnackbar = __decorate([
|
|
1425
|
+
ProxyCmp({
|
|
1426
|
+
inputs: ['action', 'autoHide', 'autoHideDuration', 'closeable', 'density', 'dismissLabel', 'message', 'open', 'politeness', 'position', 'stacked'],
|
|
1427
|
+
methods: ['show', 'hide']
|
|
1428
|
+
})
|
|
1429
|
+
], MdSnackbar);
|
|
1430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSnackbar, decorators: [{
|
|
1431
|
+
type: Component,
|
|
1432
|
+
args: [{
|
|
1433
|
+
selector: 'md-snackbar',
|
|
1434
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1435
|
+
template: '<ng-content></ng-content>',
|
|
1436
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1437
|
+
inputs: ['action', 'autoHide', 'autoHideDuration', 'closeable', 'density', 'dismissLabel', 'message', 'open', 'politeness', 'position', 'stacked'],
|
|
1438
|
+
}]
|
|
1439
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1440
|
+
let MdSparkline = class MdSparkline {
|
|
1441
|
+
constructor(c, r, z) {
|
|
1442
|
+
this.z = z;
|
|
1443
|
+
c.detach();
|
|
1444
|
+
this.el = r.nativeElement;
|
|
1445
|
+
proxyOutputs(this, this.el, ['mdSparkClick', 'mdReady']);
|
|
1446
|
+
}
|
|
1447
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSparkline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1448
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSparkline, selector: "md-sparkline", inputs: { barWidth: "barWidth", color: "color", cornerRadius: "cornerRadius", curve: "curve", data: "data", heightProp: "heightProp", labels: "labels", lineWidth: "lineWidth", markSize: "markSize", max: "max", min: "min", noAnimation: "noAnimation", referenceAreas: "referenceAreas", showMarks: "showMarks", showTooltip: "showTooltip", valueFormatter: "valueFormatter", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1449
|
+
};
|
|
1450
|
+
MdSparkline = __decorate([
|
|
1451
|
+
ProxyCmp({
|
|
1452
|
+
inputs: ['barWidth', 'color', 'cornerRadius', 'curve', 'data', 'heightProp', 'labels', 'lineWidth', 'markSize', 'max', 'min', 'noAnimation', 'referenceAreas', 'showMarks', 'showTooltip', 'valueFormatter', 'variant'],
|
|
1453
|
+
methods: ['resize', 'getInstance']
|
|
1454
|
+
})
|
|
1455
|
+
], MdSparkline);
|
|
1456
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSparkline, decorators: [{
|
|
1457
|
+
type: Component,
|
|
1458
|
+
args: [{
|
|
1459
|
+
selector: 'md-sparkline',
|
|
1460
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1461
|
+
template: '<ng-content></ng-content>',
|
|
1462
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1463
|
+
inputs: ['barWidth', 'color', 'cornerRadius', 'curve', 'data', 'heightProp', 'labels', 'lineWidth', 'markSize', 'max', 'min', 'noAnimation', 'referenceAreas', 'showMarks', 'showTooltip', 'valueFormatter', 'variant'],
|
|
1464
|
+
}]
|
|
1465
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1466
|
+
let MdSplitButton = class MdSplitButton {
|
|
1467
|
+
constructor(c, r, z) {
|
|
1468
|
+
this.z = z;
|
|
1469
|
+
c.detach();
|
|
1470
|
+
this.el = r.nativeElement;
|
|
1471
|
+
proxyOutputs(this, this.el, ['mdLeadingClick', 'mdTrailingClick']);
|
|
1472
|
+
}
|
|
1473
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSplitButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1474
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSplitButton, selector: "md-split-button", inputs: { controls: "controls", density: "density", disabled: "disabled", fullWidth: "fullWidth", haspopup: "haspopup", icon: "icon", label: "label", menuLabel: "menuLabel", ripple: "ripple", size: "size", softDisabled: "softDisabled", trailingChecked: "trailingChecked", trailingIcon: "trailingIcon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1475
|
+
};
|
|
1476
|
+
MdSplitButton = __decorate([
|
|
1477
|
+
ProxyCmp({
|
|
1478
|
+
inputs: ['controls', 'density', 'disabled', 'fullWidth', 'haspopup', 'icon', 'label', 'menuLabel', 'ripple', 'size', 'softDisabled', 'trailingChecked', 'trailingIcon', 'variant']
|
|
1479
|
+
})
|
|
1480
|
+
], MdSplitButton);
|
|
1481
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSplitButton, decorators: [{
|
|
1482
|
+
type: Component,
|
|
1483
|
+
args: [{
|
|
1484
|
+
selector: 'md-split-button',
|
|
1485
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1486
|
+
template: '<ng-content></ng-content>',
|
|
1487
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1488
|
+
inputs: ['controls', 'density', 'disabled', 'fullWidth', 'haspopup', 'icon', 'label', 'menuLabel', 'ripple', 'size', 'softDisabled', 'trailingChecked', 'trailingIcon', 'variant'],
|
|
1489
|
+
}]
|
|
1490
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1491
|
+
let MdStatusDot = class MdStatusDot {
|
|
1492
|
+
constructor(c, r, z) {
|
|
1493
|
+
this.z = z;
|
|
1494
|
+
c.detach();
|
|
1495
|
+
this.el = r.nativeElement;
|
|
1496
|
+
}
|
|
1497
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdStatusDot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1498
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdStatusDot, selector: "md-status-dot", inputs: { density: "density", label: "label", live: "live", size: "size", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1499
|
+
};
|
|
1500
|
+
MdStatusDot = __decorate([
|
|
1501
|
+
ProxyCmp({
|
|
1502
|
+
inputs: ['density', 'label', 'live', 'size', 'state']
|
|
1503
|
+
})
|
|
1504
|
+
], MdStatusDot);
|
|
1505
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdStatusDot, decorators: [{
|
|
1506
|
+
type: Component,
|
|
1507
|
+
args: [{
|
|
1508
|
+
selector: 'md-status-dot',
|
|
1509
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1510
|
+
template: '<ng-content></ng-content>',
|
|
1511
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1512
|
+
inputs: ['density', 'label', 'live', 'size', 'state'],
|
|
1513
|
+
}]
|
|
1514
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1515
|
+
let MdStep = class MdStep {
|
|
1516
|
+
constructor(c, r, z) {
|
|
1517
|
+
this.z = z;
|
|
1518
|
+
c.detach();
|
|
1519
|
+
this.el = r.nativeElement;
|
|
1520
|
+
proxyOutputs(this, this.el, ['mdStepClick', 'mdStepNext', 'mdStepBack']);
|
|
1521
|
+
}
|
|
1522
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1523
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdStep, selector: "md-step", inputs: { accessibleName: "accessibleName", active: "active", completed: "completed", completedIcon: "completedIcon", density: "density", description: "description", disabled: "disabled", editable: "editable", error: "error", errorIcon: "errorIcon", errorText: "errorText", hideActions: "hideActions", icon: "icon", label: "label", optional: "optional" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1524
|
+
};
|
|
1525
|
+
MdStep = __decorate([
|
|
1526
|
+
ProxyCmp({
|
|
1527
|
+
inputs: ['accessibleName', 'active', 'completed', 'completedIcon', 'density', 'description', 'disabled', 'editable', 'error', 'errorIcon', 'errorText', 'hideActions', 'icon', 'label', 'optional']
|
|
1528
|
+
})
|
|
1529
|
+
], MdStep);
|
|
1530
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdStep, decorators: [{
|
|
1531
|
+
type: Component,
|
|
1532
|
+
args: [{
|
|
1533
|
+
selector: 'md-step',
|
|
1534
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1535
|
+
template: '<ng-content></ng-content>',
|
|
1536
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1537
|
+
inputs: ['accessibleName', 'active', 'completed', 'completedIcon', 'density', 'description', 'disabled', 'editable', 'error', 'errorIcon', 'errorText', 'hideActions', 'icon', 'label', 'optional'],
|
|
1538
|
+
}]
|
|
1539
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1540
|
+
let MdStepper = class MdStepper {
|
|
1541
|
+
constructor(c, r, z) {
|
|
1542
|
+
this.z = z;
|
|
1543
|
+
c.detach();
|
|
1544
|
+
this.el = r.nativeElement;
|
|
1545
|
+
proxyOutputs(this, this.el, ['mdBeforeChange', 'mdStepChange', 'mdComplete']);
|
|
1546
|
+
}
|
|
1547
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1548
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdStepper, selector: "md-stepper", inputs: { active: "active", autoComplete: "autoComplete", backLabel: "backLabel", completedWord: "completedWord", currentWord: "currentWord", density: "density", errorWord: "errorWord", finishLabel: "finishLabel", indicator: "indicator", label: "label", lazy: "lazy", loading: "loading", mode: "mode", nav: "nav", nextDisabled: "nextDisabled", nextLabel: "nextLabel", ofWord: "ofWord", optionalWord: "optionalWord", orientation: "orientation", stepWord: "stepWord", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1549
|
+
};
|
|
1550
|
+
MdStepper = __decorate([
|
|
1551
|
+
ProxyCmp({
|
|
1552
|
+
inputs: ['active', 'autoComplete', 'backLabel', 'completedWord', 'currentWord', 'density', 'errorWord', 'finishLabel', 'indicator', 'label', 'lazy', 'loading', 'mode', 'nav', 'nextDisabled', 'nextLabel', 'ofWord', 'optionalWord', 'orientation', 'stepWord', 'variant'],
|
|
1553
|
+
methods: ['next', 'prev', 'goTo', 'reset']
|
|
1554
|
+
})
|
|
1555
|
+
], MdStepper);
|
|
1556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdStepper, decorators: [{
|
|
1557
|
+
type: Component,
|
|
1558
|
+
args: [{
|
|
1559
|
+
selector: 'md-stepper',
|
|
1560
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1561
|
+
template: '<ng-content></ng-content>',
|
|
1562
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1563
|
+
inputs: ['active', 'autoComplete', 'backLabel', 'completedWord', 'currentWord', 'density', 'errorWord', 'finishLabel', 'indicator', 'label', 'lazy', 'loading', 'mode', 'nav', 'nextDisabled', 'nextLabel', 'ofWord', 'optionalWord', 'orientation', 'stepWord', 'variant'],
|
|
1564
|
+
}]
|
|
1565
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1566
|
+
let MdSubMenuItem = class MdSubMenuItem {
|
|
1567
|
+
constructor(c, r, z) {
|
|
1568
|
+
this.z = z;
|
|
1569
|
+
c.detach();
|
|
1570
|
+
this.el = r.nativeElement;
|
|
1571
|
+
proxyOutputs(this, this.el, ['mdClick']);
|
|
1572
|
+
}
|
|
1573
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSubMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1574
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSubMenuItem, selector: "md-sub-menu-item", inputs: { badge: "badge", density: "density", disabled: "disabled", divider: "divider", gap: "gap", headline: "headline", supportingText: "supportingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1575
|
+
};
|
|
1576
|
+
MdSubMenuItem = __decorate([
|
|
1577
|
+
ProxyCmp({
|
|
1578
|
+
inputs: ['badge', 'density', 'disabled', 'divider', 'gap', 'headline', 'supportingText'],
|
|
1579
|
+
methods: ['collapse']
|
|
1580
|
+
})
|
|
1581
|
+
], MdSubMenuItem);
|
|
1582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSubMenuItem, decorators: [{
|
|
1583
|
+
type: Component,
|
|
1584
|
+
args: [{
|
|
1585
|
+
selector: 'md-sub-menu-item',
|
|
1586
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1587
|
+
template: '<ng-content></ng-content>',
|
|
1588
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1589
|
+
inputs: ['badge', 'density', 'disabled', 'divider', 'gap', 'headline', 'supportingText'],
|
|
1590
|
+
}]
|
|
1591
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1592
|
+
let MdSwitch = class MdSwitch {
|
|
1593
|
+
constructor(c, r, z) {
|
|
1594
|
+
this.z = z;
|
|
1595
|
+
c.detach();
|
|
1596
|
+
this.el = r.nativeElement;
|
|
1597
|
+
proxyOutputs(this, this.el, ['mdInput', 'mdChange', 'mdValidityChange']);
|
|
1598
|
+
}
|
|
1599
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1600
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdSwitch, selector: "md-switch", inputs: { density: "density", disabled: "disabled", icons: "icons", name: "name", required: "required", selected: "selected", selectedIcon: "selectedIcon", showOnlySelectedIcon: "showOnlySelectedIcon", softDisabled: "softDisabled", unselectedIcon: "unselectedIcon", value: "value", valueMissingLabel: "valueMissingLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1601
|
+
};
|
|
1602
|
+
MdSwitch = __decorate([
|
|
1603
|
+
ProxyCmp({
|
|
1604
|
+
inputs: ['density', 'disabled', 'icons', 'name', 'required', 'selected', 'selectedIcon', 'showOnlySelectedIcon', 'softDisabled', 'unselectedIcon', 'value', 'valueMissingLabel'],
|
|
1605
|
+
methods: ['setFocus', 'getValidity', 'checkValidity', 'reportValidity', 'setCustomValidity']
|
|
1606
|
+
})
|
|
1607
|
+
], MdSwitch);
|
|
1608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdSwitch, decorators: [{
|
|
1609
|
+
type: Component,
|
|
1610
|
+
args: [{
|
|
1611
|
+
selector: 'md-switch',
|
|
1612
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1613
|
+
template: '<ng-content></ng-content>',
|
|
1614
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1615
|
+
inputs: ['density', 'disabled', 'icons', 'name', 'required', 'selected', 'selectedIcon', 'showOnlySelectedIcon', 'softDisabled', 'unselectedIcon', 'value', 'valueMissingLabel'],
|
|
1616
|
+
}]
|
|
1617
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1618
|
+
let MdTab = class MdTab {
|
|
1619
|
+
constructor(c, r, z) {
|
|
1620
|
+
this.z = z;
|
|
1621
|
+
c.detach();
|
|
1622
|
+
this.el = r.nativeElement;
|
|
1623
|
+
proxyOutputs(this, this.el, ['mdTabClick']);
|
|
1624
|
+
}
|
|
1625
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1626
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTab, selector: "md-tab", inputs: { active: "active", badge: "badge", controls: "controls", density: "density", disabled: "disabled", icon: "icon", inlineIcon: "inlineIcon", label: "label", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1627
|
+
};
|
|
1628
|
+
MdTab = __decorate([
|
|
1629
|
+
ProxyCmp({
|
|
1630
|
+
inputs: ['active', 'badge', 'controls', 'density', 'disabled', 'icon', 'inlineIcon', 'label', 'variant']
|
|
1631
|
+
})
|
|
1632
|
+
], MdTab);
|
|
1633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTab, decorators: [{
|
|
1634
|
+
type: Component,
|
|
1635
|
+
args: [{
|
|
1636
|
+
selector: 'md-tab',
|
|
1637
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1638
|
+
template: '<ng-content></ng-content>',
|
|
1639
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1640
|
+
inputs: ['active', 'badge', 'controls', 'density', 'disabled', 'icon', 'inlineIcon', 'label', 'variant'],
|
|
1641
|
+
}]
|
|
1642
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1643
|
+
let MdTabPanel = class MdTabPanel {
|
|
1644
|
+
constructor(c, r, z) {
|
|
1645
|
+
this.z = z;
|
|
1646
|
+
c.detach();
|
|
1647
|
+
this.el = r.nativeElement;
|
|
1648
|
+
}
|
|
1649
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTabPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1650
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTabPanel, selector: "md-tab-panel", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1651
|
+
};
|
|
1652
|
+
MdTabPanel = __decorate([
|
|
1653
|
+
ProxyCmp({
|
|
1654
|
+
inputs: ['active']
|
|
1655
|
+
})
|
|
1656
|
+
], MdTabPanel);
|
|
1657
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTabPanel, decorators: [{
|
|
1658
|
+
type: Component,
|
|
1659
|
+
args: [{
|
|
1660
|
+
selector: 'md-tab-panel',
|
|
1661
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1662
|
+
template: '<ng-content></ng-content>',
|
|
1663
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1664
|
+
inputs: ['active'],
|
|
1665
|
+
}]
|
|
1666
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1667
|
+
let MdTabPanels = class MdTabPanels {
|
|
1668
|
+
constructor(c, r, z) {
|
|
1669
|
+
this.z = z;
|
|
1670
|
+
c.detach();
|
|
1671
|
+
this.el = r.nativeElement;
|
|
1672
|
+
}
|
|
1673
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTabPanels, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1674
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTabPanels, selector: "md-tab-panels", inputs: { for: "for", sizing: "sizing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1675
|
+
};
|
|
1676
|
+
MdTabPanels = __decorate([
|
|
1677
|
+
ProxyCmp({
|
|
1678
|
+
inputs: ['for', 'sizing']
|
|
1679
|
+
})
|
|
1680
|
+
], MdTabPanels);
|
|
1681
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTabPanels, decorators: [{
|
|
1682
|
+
type: Component,
|
|
1683
|
+
args: [{
|
|
1684
|
+
selector: 'md-tab-panels',
|
|
1685
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1686
|
+
template: '<ng-content></ng-content>',
|
|
1687
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1688
|
+
inputs: ['for', 'sizing'],
|
|
1689
|
+
}]
|
|
1690
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1691
|
+
let MdTable = class MdTable {
|
|
1692
|
+
constructor(c, r, z) {
|
|
1693
|
+
this.z = z;
|
|
1694
|
+
c.detach();
|
|
1695
|
+
this.el = r.nativeElement;
|
|
1696
|
+
proxyOutputs(this, this.el, ['mdSortChange', 'mdSelectionChange', 'mdPinChange', 'mdColumnVisibilityChange', 'mdScroll']);
|
|
1697
|
+
}
|
|
1698
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1699
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTable, selector: "md-table", inputs: { caption: "caption", columnTemplate: "columnTemplate", columns: "columns", density: "density", empty: "empty", frozenHeader: "frozenHeader", hoverable: "hoverable", keepHeight: "keepHeight", label: "label", loading: "loading", loadingMode: "loadingMode", loadingRows: "loadingRows", minWidth: "minWidth", motion: "motion", noDividers: "noDividers", pinIcon: "pinIcon", pinMode: "pinMode", rowCount: "rowCount", rowOffset: "rowOffset", scrollbar: "scrollbar", selection: "selection", sortBy: "sortBy", sortOrder: "sortOrder", stickyFooter: "stickyFooter", stickyHeader: "stickyHeader", striped: "striped", summary: "summary" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1700
|
+
};
|
|
1701
|
+
MdTable = __decorate([
|
|
1702
|
+
ProxyCmp({
|
|
1703
|
+
inputs: ['caption', 'columnTemplate', 'columns', 'density', 'empty', 'frozenHeader', 'hoverable', 'keepHeight', 'label', 'loading', 'loadingMode', 'loadingRows', 'minWidth', 'motion', 'noDividers', 'pinIcon', 'pinMode', 'rowCount', 'rowOffset', 'scrollbar', 'selection', 'sortBy', 'sortOrder', 'stickyFooter', 'stickyHeader', 'striped', 'summary'],
|
|
1704
|
+
methods: ['getSelection', 'selectAll', 'deselectAll', 'toggleSelectAll', 'setSort', 'pinColumn', 'setColumnVisibility', 'animateNextChange']
|
|
1705
|
+
})
|
|
1706
|
+
], MdTable);
|
|
1707
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTable, decorators: [{
|
|
1708
|
+
type: Component,
|
|
1709
|
+
args: [{
|
|
1710
|
+
selector: 'md-table',
|
|
1711
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1712
|
+
template: '<ng-content></ng-content>',
|
|
1713
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1714
|
+
inputs: ['caption', 'columnTemplate', 'columns', 'density', 'empty', 'frozenHeader', 'hoverable', 'keepHeight', 'label', 'loading', 'loadingMode', 'loadingRows', 'minWidth', 'motion', 'noDividers', 'pinIcon', 'pinMode', 'rowCount', 'rowOffset', 'scrollbar', 'selection', 'sortBy', 'sortOrder', 'stickyFooter', 'stickyHeader', 'striped', 'summary'],
|
|
1715
|
+
}]
|
|
1716
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1717
|
+
let MdTableBody = class MdTableBody {
|
|
1718
|
+
constructor(c, r, z) {
|
|
1719
|
+
this.z = z;
|
|
1720
|
+
c.detach();
|
|
1721
|
+
this.el = r.nativeElement;
|
|
1722
|
+
}
|
|
1723
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1724
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTableBody, selector: "md-table-body", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1725
|
+
};
|
|
1726
|
+
MdTableBody = __decorate([
|
|
1727
|
+
ProxyCmp({})
|
|
1728
|
+
], MdTableBody);
|
|
1729
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableBody, decorators: [{
|
|
1730
|
+
type: Component,
|
|
1731
|
+
args: [{
|
|
1732
|
+
selector: 'md-table-body',
|
|
1733
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1734
|
+
template: '<ng-content></ng-content>',
|
|
1735
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1736
|
+
inputs: [],
|
|
1737
|
+
}]
|
|
1738
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1739
|
+
let MdTableCell = class MdTableCell {
|
|
1740
|
+
constructor(c, r, z) {
|
|
1741
|
+
this.z = z;
|
|
1742
|
+
c.detach();
|
|
1743
|
+
this.el = r.nativeElement;
|
|
1744
|
+
}
|
|
1745
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1746
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTableCell, selector: "md-table-cell", inputs: { align: "align", colSpan: "colSpan", density: "density", ellipsis: "ellipsis", head: "head", noPinIndicator: "noPinIndicator", numeric: "numeric", padding: "padding", pinIcon: "pinIcon", rowSpan: "rowSpan", scope: "scope", sticky: "sticky", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1747
|
+
};
|
|
1748
|
+
MdTableCell = __decorate([
|
|
1749
|
+
ProxyCmp({
|
|
1750
|
+
inputs: ['align', 'colSpan', 'density', 'ellipsis', 'head', 'noPinIndicator', 'numeric', 'padding', 'pinIcon', 'rowSpan', 'scope', 'sticky', 'variant']
|
|
1751
|
+
})
|
|
1752
|
+
], MdTableCell);
|
|
1753
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableCell, decorators: [{
|
|
1754
|
+
type: Component,
|
|
1755
|
+
args: [{
|
|
1756
|
+
selector: 'md-table-cell',
|
|
1757
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1758
|
+
template: '<ng-content></ng-content>',
|
|
1759
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1760
|
+
inputs: ['align', 'colSpan', 'density', 'ellipsis', 'head', 'noPinIndicator', 'numeric', 'padding', 'pinIcon', 'rowSpan', 'scope', 'sticky', 'variant'],
|
|
1761
|
+
}]
|
|
1762
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1763
|
+
let MdTableContainer = class MdTableContainer {
|
|
1764
|
+
constructor(c, r, z) {
|
|
1765
|
+
this.z = z;
|
|
1766
|
+
c.detach();
|
|
1767
|
+
this.el = r.nativeElement;
|
|
1768
|
+
}
|
|
1769
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1770
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTableContainer, selector: "md-table-container", inputs: { elevation: "elevation", maxHeight: "maxHeight", minHeight: "minHeight", shape: "shape", variant: "variant", vibrant: "vibrant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1771
|
+
};
|
|
1772
|
+
MdTableContainer = __decorate([
|
|
1773
|
+
ProxyCmp({
|
|
1774
|
+
inputs: ['elevation', 'maxHeight', 'minHeight', 'shape', 'variant', 'vibrant']
|
|
1775
|
+
})
|
|
1776
|
+
], MdTableContainer);
|
|
1777
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableContainer, decorators: [{
|
|
1778
|
+
type: Component,
|
|
1779
|
+
args: [{
|
|
1780
|
+
selector: 'md-table-container',
|
|
1781
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1782
|
+
template: '<ng-content></ng-content>',
|
|
1783
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1784
|
+
inputs: ['elevation', 'maxHeight', 'minHeight', 'shape', 'variant', 'vibrant'],
|
|
1785
|
+
}]
|
|
1786
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1787
|
+
let MdTableExpandToggle = class MdTableExpandToggle {
|
|
1788
|
+
constructor(c, r, z) {
|
|
1789
|
+
this.z = z;
|
|
1790
|
+
c.detach();
|
|
1791
|
+
this.el = r.nativeElement;
|
|
1792
|
+
}
|
|
1793
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableExpandToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1794
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTableExpandToggle, selector: "md-table-expand-toggle", inputs: { buttonLabel: "buttonLabel", icon: "icon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1795
|
+
};
|
|
1796
|
+
MdTableExpandToggle = __decorate([
|
|
1797
|
+
ProxyCmp({
|
|
1798
|
+
inputs: ['buttonLabel', 'icon']
|
|
1799
|
+
})
|
|
1800
|
+
], MdTableExpandToggle);
|
|
1801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableExpandToggle, decorators: [{
|
|
1802
|
+
type: Component,
|
|
1803
|
+
args: [{
|
|
1804
|
+
selector: 'md-table-expand-toggle',
|
|
1805
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1806
|
+
template: '<ng-content></ng-content>',
|
|
1807
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1808
|
+
inputs: ['buttonLabel', 'icon'],
|
|
1809
|
+
}]
|
|
1810
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1811
|
+
let MdTableFoot = class MdTableFoot {
|
|
1812
|
+
constructor(c, r, z) {
|
|
1813
|
+
this.z = z;
|
|
1814
|
+
c.detach();
|
|
1815
|
+
this.el = r.nativeElement;
|
|
1816
|
+
}
|
|
1817
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableFoot, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1818
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTableFoot, selector: "md-table-foot", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1819
|
+
};
|
|
1820
|
+
MdTableFoot = __decorate([
|
|
1821
|
+
ProxyCmp({})
|
|
1822
|
+
], MdTableFoot);
|
|
1823
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableFoot, decorators: [{
|
|
1824
|
+
type: Component,
|
|
1825
|
+
args: [{
|
|
1826
|
+
selector: 'md-table-foot',
|
|
1827
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1828
|
+
template: '<ng-content></ng-content>',
|
|
1829
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1830
|
+
inputs: [],
|
|
1831
|
+
}]
|
|
1832
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1833
|
+
let MdTableHead = class MdTableHead {
|
|
1834
|
+
constructor(c, r, z) {
|
|
1835
|
+
this.z = z;
|
|
1836
|
+
c.detach();
|
|
1837
|
+
this.el = r.nativeElement;
|
|
1838
|
+
}
|
|
1839
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableHead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1840
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTableHead, selector: "md-table-head", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1841
|
+
};
|
|
1842
|
+
MdTableHead = __decorate([
|
|
1843
|
+
ProxyCmp({})
|
|
1844
|
+
], MdTableHead);
|
|
1845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableHead, decorators: [{
|
|
1846
|
+
type: Component,
|
|
1847
|
+
args: [{
|
|
1848
|
+
selector: 'md-table-head',
|
|
1849
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1850
|
+
template: '<ng-content></ng-content>',
|
|
1851
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1852
|
+
inputs: [],
|
|
1853
|
+
}]
|
|
1854
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1855
|
+
let MdTablePagination = class MdTablePagination {
|
|
1856
|
+
constructor(c, r, z) {
|
|
1857
|
+
this.z = z;
|
|
1858
|
+
c.detach();
|
|
1859
|
+
this.el = r.nativeElement;
|
|
1860
|
+
proxyOutputs(this, this.el, ['mdPageChange', 'mdRowsPerPageChange']);
|
|
1861
|
+
}
|
|
1862
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTablePagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1863
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTablePagination, selector: "md-table-pagination", inputs: { compact: "compact", count: "count", density: "density", disabled: "disabled", labelAll: "labelAll", labelDisplayedRows: "labelDisplayedRows", labelFirstPage: "labelFirstPage", labelLastPage: "labelLastPage", labelNextPage: "labelNextPage", labelPreviousPage: "labelPreviousPage", labelRowsPerPage: "labelRowsPerPage", page: "page", rowsPerPage: "rowsPerPage", rowsPerPageOptions: "rowsPerPageOptions", showFirstLast: "showFirstLast" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1864
|
+
};
|
|
1865
|
+
MdTablePagination = __decorate([
|
|
1866
|
+
ProxyCmp({
|
|
1867
|
+
inputs: ['compact', 'count', 'density', 'disabled', 'labelAll', 'labelDisplayedRows', 'labelFirstPage', 'labelLastPage', 'labelNextPage', 'labelPreviousPage', 'labelRowsPerPage', 'page', 'rowsPerPage', 'rowsPerPageOptions', 'showFirstLast'],
|
|
1868
|
+
methods: ['goToPage', 'setRowsPerPage']
|
|
1869
|
+
})
|
|
1870
|
+
], MdTablePagination);
|
|
1871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTablePagination, decorators: [{
|
|
1872
|
+
type: Component,
|
|
1873
|
+
args: [{
|
|
1874
|
+
selector: 'md-table-pagination',
|
|
1875
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1876
|
+
template: '<ng-content></ng-content>',
|
|
1877
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1878
|
+
inputs: ['compact', 'count', 'density', 'disabled', 'labelAll', 'labelDisplayedRows', 'labelFirstPage', 'labelLastPage', 'labelNextPage', 'labelPreviousPage', 'labelRowsPerPage', 'page', 'rowsPerPage', 'rowsPerPageOptions', 'showFirstLast'],
|
|
1879
|
+
}]
|
|
1880
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1881
|
+
let MdTableRow = class MdTableRow {
|
|
1882
|
+
constructor(c, r, z) {
|
|
1883
|
+
this.z = z;
|
|
1884
|
+
c.detach();
|
|
1885
|
+
this.el = r.nativeElement;
|
|
1886
|
+
proxyOutputs(this, this.el, ['mdRowClick', 'mdRowSelectionChange', 'mdRowExpandedChange']);
|
|
1887
|
+
}
|
|
1888
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1889
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTableRow, selector: "md-table-row", inputs: { clickable: "clickable", disabled: "disabled", expandable: "expandable", expanded: "expanded", highlight: "highlight", rowgroup: "rowgroup", selectable: "selectable", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1890
|
+
};
|
|
1891
|
+
MdTableRow = __decorate([
|
|
1892
|
+
ProxyCmp({
|
|
1893
|
+
inputs: ['clickable', 'disabled', 'expandable', 'expanded', 'highlight', 'rowgroup', 'selectable', 'selected', 'value'],
|
|
1894
|
+
methods: ['toggle']
|
|
1895
|
+
})
|
|
1896
|
+
], MdTableRow);
|
|
1897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableRow, decorators: [{
|
|
1898
|
+
type: Component,
|
|
1899
|
+
args: [{
|
|
1900
|
+
selector: 'md-table-row',
|
|
1901
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1902
|
+
template: '<ng-content></ng-content>',
|
|
1903
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1904
|
+
inputs: ['clickable', 'disabled', 'expandable', 'expanded', 'highlight', 'rowgroup', 'selectable', 'selected', 'value'],
|
|
1905
|
+
}]
|
|
1906
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1907
|
+
let MdTableSortLabel = class MdTableSortLabel {
|
|
1908
|
+
constructor(c, r, z) {
|
|
1909
|
+
this.z = z;
|
|
1910
|
+
c.detach();
|
|
1911
|
+
this.el = r.nativeElement;
|
|
1912
|
+
proxyOutputs(this, this.el, ['mdSortRequest']);
|
|
1913
|
+
}
|
|
1914
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableSortLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1915
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTableSortLabel, selector: "md-table-sort-label", inputs: { active: "active", column: "column", defaultOrder: "defaultOrder", density: "density", disabled: "disabled", icon: "icon", iconPosition: "iconPosition", order: "order" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1916
|
+
};
|
|
1917
|
+
MdTableSortLabel = __decorate([
|
|
1918
|
+
ProxyCmp({
|
|
1919
|
+
inputs: ['active', 'column', 'defaultOrder', 'density', 'disabled', 'icon', 'iconPosition', 'order']
|
|
1920
|
+
})
|
|
1921
|
+
], MdTableSortLabel);
|
|
1922
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableSortLabel, decorators: [{
|
|
1923
|
+
type: Component,
|
|
1924
|
+
args: [{
|
|
1925
|
+
selector: 'md-table-sort-label',
|
|
1926
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1927
|
+
template: '<ng-content></ng-content>',
|
|
1928
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1929
|
+
inputs: ['active', 'column', 'defaultOrder', 'density', 'disabled', 'icon', 'iconPosition', 'order'],
|
|
1930
|
+
}]
|
|
1931
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1932
|
+
let MdTableToolbar = class MdTableToolbar {
|
|
1933
|
+
constructor(c, r, z) {
|
|
1934
|
+
this.z = z;
|
|
1935
|
+
c.detach();
|
|
1936
|
+
this.el = r.nativeElement;
|
|
1937
|
+
}
|
|
1938
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1939
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTableToolbar, selector: "md-table-toolbar", inputs: { autoBind: "autoBind", compact: "compact", density: "density", headline: "headline", labelSelected: "labelSelected", numSelected: "numSelected", supportingText: "supportingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1940
|
+
};
|
|
1941
|
+
MdTableToolbar = __decorate([
|
|
1942
|
+
ProxyCmp({
|
|
1943
|
+
inputs: ['autoBind', 'compact', 'density', 'headline', 'labelSelected', 'numSelected', 'supportingText']
|
|
1944
|
+
})
|
|
1945
|
+
], MdTableToolbar);
|
|
1946
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTableToolbar, decorators: [{
|
|
1947
|
+
type: Component,
|
|
1948
|
+
args: [{
|
|
1949
|
+
selector: 'md-table-toolbar',
|
|
1950
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1951
|
+
template: '<ng-content></ng-content>',
|
|
1952
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1953
|
+
inputs: ['autoBind', 'compact', 'density', 'headline', 'labelSelected', 'numSelected', 'supportingText'],
|
|
1954
|
+
}]
|
|
1955
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1956
|
+
let MdTabs = class MdTabs {
|
|
1957
|
+
constructor(c, r, z) {
|
|
1958
|
+
this.z = z;
|
|
1959
|
+
c.detach();
|
|
1960
|
+
this.el = r.nativeElement;
|
|
1961
|
+
proxyOutputs(this, this.el, ['mdTabChange']);
|
|
1962
|
+
}
|
|
1963
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1964
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTabs, selector: "md-tabs", inputs: { activeTabIndex: "activeTabIndex", ariaLabelProp: "ariaLabelProp", tabWidth: "tabWidth", variant: "variant", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1965
|
+
};
|
|
1966
|
+
MdTabs = __decorate([
|
|
1967
|
+
ProxyCmp({
|
|
1968
|
+
inputs: ['activeTabIndex', 'ariaLabelProp', 'tabWidth', 'variant', 'width'],
|
|
1969
|
+
methods: ['selectTab']
|
|
1970
|
+
})
|
|
1971
|
+
], MdTabs);
|
|
1972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTabs, decorators: [{
|
|
1973
|
+
type: Component,
|
|
1974
|
+
args: [{
|
|
1975
|
+
selector: 'md-tabs',
|
|
1976
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1977
|
+
template: '<ng-content></ng-content>',
|
|
1978
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1979
|
+
inputs: ['activeTabIndex', 'ariaLabelProp', 'tabWidth', 'variant', 'width'],
|
|
1980
|
+
}]
|
|
1981
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1982
|
+
let MdTextField = class MdTextField {
|
|
1983
|
+
constructor(c, r, z) {
|
|
1984
|
+
this.z = z;
|
|
1985
|
+
c.detach();
|
|
1986
|
+
this.el = r.nativeElement;
|
|
1987
|
+
proxyOutputs(this, this.el, ['mdInput', 'mdChange', 'mdSearch', 'mdClear', 'mdPasswordToggle', 'mdSpeechResult', 'mdValidityChange']);
|
|
1988
|
+
}
|
|
1989
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTextField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1990
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTextField, selector: "md-text-field", inputs: { appearFocused: "appearFocused", autoCapitalize: "autoCapitalize", autocomplete: "autocomplete", chipsWrap: "chipsWrap", clearable: "clearable", debounce: "debounce", density: "density", disabled: "disabled", enterKeyHint: "enterKeyHint", error: "error", errorText: "errorText", focusBorderWidth: "focusBorderWidth", formatOn: "formatOn", formatter: "formatter", inputAriaAutocomplete: "inputAriaAutocomplete", inputExpanded: "inputExpanded", inputMode: "inputMode", inputRole: "inputRole", label: "label", max: "max", maxLength: "maxLength", min: "min", minLength: "minLength", multiline: "multiline", name: "name", parser: "parser", passwordToggle: "passwordToggle", pattern: "pattern", placeholder: "placeholder", prefixText: "prefixText", readOnly: "readOnly", required: "required", reserveSupportingSpace: "reserveSupportingSpace", restrict: "restrict", rows: "rows", speechLang: "speechLang", speechToText: "speechToText", spellcheck: "spellcheck", step: "step", suffixText: "suffixText", supportingText: "supportingText", throttle: "throttle", type: "type", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1991
|
+
};
|
|
1992
|
+
MdTextField = __decorate([
|
|
1993
|
+
ProxyCmp({
|
|
1994
|
+
inputs: ['appearFocused', 'autoCapitalize', 'autocomplete', 'chipsWrap', 'clearable', 'debounce', 'density', 'disabled', 'enterKeyHint', 'error', 'errorText', 'focusBorderWidth', 'formatOn', 'formatter', 'inputAriaAutocomplete', 'inputExpanded', 'inputMode', 'inputRole', 'label', 'max', 'maxLength', 'min', 'minLength', 'multiline', 'name', 'parser', 'passwordToggle', 'pattern', 'placeholder', 'prefixText', 'readOnly', 'required', 'reserveSupportingSpace', 'restrict', 'rows', 'speechLang', 'speechToText', 'spellcheck', 'step', 'suffixText', 'supportingText', 'throttle', 'type', 'value', 'variant'],
|
|
1995
|
+
methods: ['setFocus', 'select', 'getInputElement', 'getValidity', 'setCustomValidity', 'checkValidity', 'reportValidity']
|
|
1996
|
+
})
|
|
1997
|
+
], MdTextField);
|
|
1998
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTextField, decorators: [{
|
|
1999
|
+
type: Component,
|
|
2000
|
+
args: [{
|
|
2001
|
+
selector: 'md-text-field',
|
|
2002
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2003
|
+
template: '<ng-content></ng-content>',
|
|
2004
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2005
|
+
inputs: ['appearFocused', 'autoCapitalize', 'autocomplete', 'chipsWrap', 'clearable', 'debounce', 'density', 'disabled', 'enterKeyHint', 'error', 'errorText', 'focusBorderWidth', 'formatOn', 'formatter', 'inputAriaAutocomplete', 'inputExpanded', 'inputMode', 'inputRole', 'label', 'max', 'maxLength', 'min', 'minLength', 'multiline', 'name', 'parser', 'passwordToggle', 'pattern', 'placeholder', 'prefixText', 'readOnly', 'required', 'reserveSupportingSpace', 'restrict', 'rows', 'speechLang', 'speechToText', 'spellcheck', 'step', 'suffixText', 'supportingText', 'throttle', 'type', 'value', 'variant'],
|
|
2006
|
+
}]
|
|
2007
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2008
|
+
let MdTimePicker = class MdTimePicker {
|
|
2009
|
+
constructor(c, r, z) {
|
|
2010
|
+
this.z = z;
|
|
2011
|
+
c.detach();
|
|
2012
|
+
this.el = r.nativeElement;
|
|
2013
|
+
proxyOutputs(this, this.el, ['mdChange', 'mdInput', 'mdOpen', 'mdClose', 'mdCancel', 'mdModeChange', 'mdValidityChange']);
|
|
2014
|
+
}
|
|
2015
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2016
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTimePicker, selector: "md-time-picker", inputs: { amLabel: "amLabel", cancelLabel: "cancelLabel", density: "density", disabled: "disabled", format: "format", headline: "headline", headlineDialLabel: "headlineDialLabel", headlineInputLabel: "headlineInputLabel", hideTrigger: "hideTrigger", hourLabel: "hourLabel", label: "label", max: "max", min: "min", minuteLabel: "minuteLabel", minuteStep: "minuteStep", name: "name", okLabel: "okLabel", open: "open", orientation: "orientation", periodLabel: "periodLabel", periodLayout: "periodLayout", pmLabel: "pmLabel", rangeOutsideLabel: "rangeOutsideLabel", rangeOverflowLabel: "rangeOverflowLabel", rangeUnderflowLabel: "rangeUnderflowLabel", required: "required", responsive: "responsive", toggleDialLabel: "toggleDialLabel", toggleInputLabel: "toggleInputLabel", value: "value", valueMissingLabel: "valueMissingLabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2017
|
+
};
|
|
2018
|
+
MdTimePicker = __decorate([
|
|
2019
|
+
ProxyCmp({
|
|
2020
|
+
inputs: ['amLabel', 'cancelLabel', 'density', 'disabled', 'format', 'headline', 'headlineDialLabel', 'headlineInputLabel', 'hideTrigger', 'hourLabel', 'label', 'max', 'min', 'minuteLabel', 'minuteStep', 'name', 'okLabel', 'open', 'orientation', 'periodLabel', 'periodLayout', 'pmLabel', 'rangeOutsideLabel', 'rangeOverflowLabel', 'rangeUnderflowLabel', 'required', 'responsive', 'toggleDialLabel', 'toggleInputLabel', 'value', 'valueMissingLabel', 'variant'],
|
|
2021
|
+
methods: ['show', 'hide', 'checkValidity', 'reportValidity', 'getValidity']
|
|
2022
|
+
})
|
|
2023
|
+
], MdTimePicker);
|
|
2024
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTimePicker, decorators: [{
|
|
2025
|
+
type: Component,
|
|
2026
|
+
args: [{
|
|
2027
|
+
selector: 'md-time-picker',
|
|
2028
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2029
|
+
template: '<ng-content></ng-content>',
|
|
2030
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2031
|
+
inputs: ['amLabel', 'cancelLabel', 'density', 'disabled', 'format', 'headline', 'headlineDialLabel', 'headlineInputLabel', 'hideTrigger', 'hourLabel', 'label', 'max', 'min', 'minuteLabel', 'minuteStep', 'name', 'okLabel', 'open', 'orientation', 'periodLabel', 'periodLayout', 'pmLabel', 'rangeOutsideLabel', 'rangeOverflowLabel', 'rangeUnderflowLabel', 'required', 'responsive', 'toggleDialLabel', 'toggleInputLabel', 'value', 'valueMissingLabel', 'variant'],
|
|
2032
|
+
}]
|
|
2033
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2034
|
+
let MdToolbar = class MdToolbar {
|
|
2035
|
+
constructor(c, r, z) {
|
|
2036
|
+
this.z = z;
|
|
2037
|
+
c.detach();
|
|
2038
|
+
this.el = r.nativeElement;
|
|
2039
|
+
}
|
|
2040
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2041
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdToolbar, selector: "md-toolbar", inputs: { alignment: "alignment", ariaLabelProp: "ariaLabelProp", ariaLabelledby: "ariaLabelledby", color: "color", containerSemantics: "containerSemantics", density: "density", layout: "layout", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2042
|
+
};
|
|
2043
|
+
MdToolbar = __decorate([
|
|
2044
|
+
ProxyCmp({
|
|
2045
|
+
inputs: ['alignment', 'ariaLabelProp', 'ariaLabelledby', 'color', 'containerSemantics', 'density', 'layout', 'variant'],
|
|
2046
|
+
methods: ['setFocus']
|
|
2047
|
+
})
|
|
2048
|
+
], MdToolbar);
|
|
2049
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdToolbar, decorators: [{
|
|
2050
|
+
type: Component,
|
|
2051
|
+
args: [{
|
|
2052
|
+
selector: 'md-toolbar',
|
|
2053
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2054
|
+
template: '<ng-content></ng-content>',
|
|
2055
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2056
|
+
inputs: ['alignment', 'ariaLabelProp', 'ariaLabelledby', 'color', 'containerSemantics', 'density', 'layout', 'variant'],
|
|
2057
|
+
}]
|
|
2058
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2059
|
+
let MdTooltip = class MdTooltip {
|
|
2060
|
+
constructor(c, r, z) {
|
|
2061
|
+
this.z = z;
|
|
2062
|
+
c.detach();
|
|
2063
|
+
this.el = r.nativeElement;
|
|
2064
|
+
proxyOutputs(this, this.el, ['mdOpen', 'mdClose']);
|
|
2065
|
+
}
|
|
2066
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2067
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTooltip, selector: "md-tooltip", inputs: { autoPosition: "autoPosition", crossOffset: "crossOffset", density: "density", disabled: "disabled", hideDelay: "hideDelay", offset: "offset", open: "open", position: "position", showDelay: "showDelay", subhead: "subhead", text: "text", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2068
|
+
};
|
|
2069
|
+
MdTooltip = __decorate([
|
|
2070
|
+
ProxyCmp({
|
|
2071
|
+
inputs: ['autoPosition', 'crossOffset', 'density', 'disabled', 'hideDelay', 'offset', 'open', 'position', 'showDelay', 'subhead', 'text', 'variant'],
|
|
2072
|
+
methods: ['show', 'hide']
|
|
2073
|
+
})
|
|
2074
|
+
], MdTooltip);
|
|
2075
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTooltip, decorators: [{
|
|
2076
|
+
type: Component,
|
|
2077
|
+
args: [{
|
|
2078
|
+
selector: 'md-tooltip',
|
|
2079
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2080
|
+
template: '<ng-content></ng-content>',
|
|
2081
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2082
|
+
inputs: ['autoPosition', 'crossOffset', 'density', 'disabled', 'hideDelay', 'offset', 'open', 'position', 'showDelay', 'subhead', 'text', 'variant'],
|
|
2083
|
+
}]
|
|
2084
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2085
|
+
let MdTransferList = class MdTransferList {
|
|
2086
|
+
constructor(c, r, z) {
|
|
2087
|
+
this.z = z;
|
|
2088
|
+
c.detach();
|
|
2089
|
+
this.el = r.nativeElement;
|
|
2090
|
+
proxyOutputs(this, this.el, ['mdChange', 'mdMove']);
|
|
2091
|
+
}
|
|
2092
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTransferList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2093
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: MdTransferList, selector: "md-transfer-list", inputs: { countTemplate: "countTemplate", density: "density", disabled: "disabled", emptyIcon: "emptyIcon", emptyText: "emptyText", items: "items", moveAllLeftIcon: "moveAllLeftIcon", moveAllLeftLabel: "moveAllLeftLabel", moveAllRightIcon: "moveAllRightIcon", moveAllRightLabel: "moveAllRightLabel", moveLeftIcon: "moveLeftIcon", moveLeftLabel: "moveLeftLabel", moveRightIcon: "moveRightIcon", moveRightLabel: "moveRightLabel", searchIcon: "searchIcon", searchable: "searchable", showSelectAll: "showSelectAll", singleStepOnly: "singleStepOnly", sourceSearchPlaceholder: "sourceSearchPlaceholder", sourceTitle: "sourceTitle", targetSearchPlaceholder: "targetSearchPlaceholder", targetTitle: "targetTitle", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2094
|
+
};
|
|
2095
|
+
MdTransferList = __decorate([
|
|
2096
|
+
ProxyCmp({
|
|
2097
|
+
inputs: ['countTemplate', 'density', 'disabled', 'emptyIcon', 'emptyText', 'items', 'moveAllLeftIcon', 'moveAllLeftLabel', 'moveAllRightIcon', 'moveAllRightLabel', 'moveLeftIcon', 'moveLeftLabel', 'moveRightIcon', 'moveRightLabel', 'searchIcon', 'searchable', 'showSelectAll', 'singleStepOnly', 'sourceSearchPlaceholder', 'sourceTitle', 'targetSearchPlaceholder', 'targetTitle', 'value'],
|
|
2098
|
+
methods: ['moveSelectedRight', 'moveSelectedLeft']
|
|
2099
|
+
})
|
|
2100
|
+
], MdTransferList);
|
|
2101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: MdTransferList, decorators: [{
|
|
2102
|
+
type: Component,
|
|
2103
|
+
args: [{
|
|
2104
|
+
selector: 'md-transfer-list',
|
|
2105
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2106
|
+
template: '<ng-content></ng-content>',
|
|
2107
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2108
|
+
inputs: ['countTemplate', 'density', 'disabled', 'emptyIcon', 'emptyText', 'items', 'moveAllLeftIcon', 'moveAllLeftLabel', 'moveAllRightIcon', 'moveAllRightLabel', 'moveLeftIcon', 'moveLeftLabel', 'moveRightIcon', 'moveRightLabel', 'searchIcon', 'searchable', 'showSelectAll', 'singleStepOnly', 'sourceSearchPlaceholder', 'sourceTitle', 'targetSearchPlaceholder', 'targetTitle', 'value'],
|
|
2109
|
+
}]
|
|
2110
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2111
|
+
|
|
2112
|
+
const DIRECTIVES = [
|
|
2113
|
+
MdAccordion,
|
|
2114
|
+
MdAccordionItem,
|
|
2115
|
+
MdAppBar,
|
|
2116
|
+
MdAreaChart,
|
|
2117
|
+
MdAutocomplete,
|
|
2118
|
+
MdAvatar,
|
|
2119
|
+
MdBadge,
|
|
2120
|
+
MdBarChart,
|
|
2121
|
+
MdBottomSheet,
|
|
2122
|
+
MdBreadcrumbItem,
|
|
2123
|
+
MdBreadcrumbs,
|
|
2124
|
+
MdButton,
|
|
2125
|
+
MdButtonGroup,
|
|
2126
|
+
MdCard,
|
|
2127
|
+
MdCheckbox,
|
|
2128
|
+
MdChip,
|
|
2129
|
+
MdColorPicker,
|
|
2130
|
+
MdDatePicker,
|
|
2131
|
+
MdDialog,
|
|
2132
|
+
MdDivider,
|
|
2133
|
+
MdFab,
|
|
2134
|
+
MdFabMenu,
|
|
2135
|
+
MdFabMenuItem,
|
|
2136
|
+
MdIconButton,
|
|
2137
|
+
MdLineChart,
|
|
2138
|
+
MdList,
|
|
2139
|
+
MdListItem,
|
|
2140
|
+
MdLoadingIndicator,
|
|
2141
|
+
MdMenu,
|
|
2142
|
+
MdMenuItem,
|
|
2143
|
+
MdMenuItemGroup,
|
|
2144
|
+
MdMeter,
|
|
2145
|
+
MdMultiSelect,
|
|
2146
|
+
MdNavigationBar,
|
|
2147
|
+
MdNavigationRail,
|
|
2148
|
+
MdNavigationRailTab,
|
|
2149
|
+
MdNavigationTab,
|
|
2150
|
+
MdNumberField,
|
|
2151
|
+
MdOrganizationChart,
|
|
2152
|
+
MdOtpField,
|
|
2153
|
+
MdPieChart,
|
|
2154
|
+
MdProgressIndicator,
|
|
2155
|
+
MdRadio,
|
|
2156
|
+
MdRating,
|
|
2157
|
+
MdRipple,
|
|
2158
|
+
MdSearch,
|
|
2159
|
+
MdSegmentedButton,
|
|
2160
|
+
MdSegmentedButtonSet,
|
|
2161
|
+
MdSelect,
|
|
2162
|
+
MdSelectOption,
|
|
2163
|
+
MdSideSheet,
|
|
2164
|
+
MdSkeleton,
|
|
2165
|
+
MdSlider,
|
|
2166
|
+
MdSnackbar,
|
|
2167
|
+
MdSparkline,
|
|
2168
|
+
MdSplitButton,
|
|
2169
|
+
MdStatusDot,
|
|
2170
|
+
MdStep,
|
|
2171
|
+
MdStepper,
|
|
2172
|
+
MdSubMenuItem,
|
|
2173
|
+
MdSwitch,
|
|
2174
|
+
MdTab,
|
|
2175
|
+
MdTabPanel,
|
|
2176
|
+
MdTabPanels,
|
|
2177
|
+
MdTable,
|
|
2178
|
+
MdTableBody,
|
|
2179
|
+
MdTableCell,
|
|
2180
|
+
MdTableContainer,
|
|
2181
|
+
MdTableExpandToggle,
|
|
2182
|
+
MdTableFoot,
|
|
2183
|
+
MdTableHead,
|
|
2184
|
+
MdTablePagination,
|
|
2185
|
+
MdTableRow,
|
|
2186
|
+
MdTableSortLabel,
|
|
2187
|
+
MdTableToolbar,
|
|
2188
|
+
MdTabs,
|
|
2189
|
+
MdTextField,
|
|
2190
|
+
MdTimePicker,
|
|
2191
|
+
MdToolbar,
|
|
2192
|
+
MdTooltip,
|
|
2193
|
+
MdTransferList
|
|
2194
|
+
];
|
|
2195
|
+
|
|
2196
|
+
class ValueAccessor {
|
|
2197
|
+
constructor(el) {
|
|
2198
|
+
this.el = el;
|
|
2199
|
+
this.onChange = () => { };
|
|
2200
|
+
this.onTouched = () => { };
|
|
2201
|
+
}
|
|
2202
|
+
writeValue(value) {
|
|
2203
|
+
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
2204
|
+
}
|
|
2205
|
+
handleChangeEvent(value) {
|
|
2206
|
+
if (value !== this.lastValue) {
|
|
2207
|
+
this.lastValue = value;
|
|
2208
|
+
this.onChange(value);
|
|
2209
|
+
}
|
|
2210
|
+
}
|
|
2211
|
+
_handleBlurEvent() {
|
|
2212
|
+
this.onTouched();
|
|
2213
|
+
}
|
|
2214
|
+
registerOnChange(fn) {
|
|
2215
|
+
this.onChange = fn;
|
|
2216
|
+
}
|
|
2217
|
+
registerOnTouched(fn) {
|
|
2218
|
+
this.onTouched = fn;
|
|
2219
|
+
}
|
|
2220
|
+
setDisabledState(isDisabled) {
|
|
2221
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
2222
|
+
}
|
|
2223
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2224
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
2225
|
+
}
|
|
2226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
2227
|
+
type: Directive,
|
|
2228
|
+
args: [{}]
|
|
2229
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
2230
|
+
type: HostListener,
|
|
2231
|
+
args: ['focusout']
|
|
2232
|
+
}] } });
|
|
2233
|
+
|
|
2234
|
+
class TextValueAccessor extends ValueAccessor {
|
|
2235
|
+
constructor(el) {
|
|
2236
|
+
super(el);
|
|
2237
|
+
}
|
|
2238
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2239
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: TextValueAccessor, selector: "md-text-field, md-autocomplete, md-otp-field", host: { listeners: { "mdInput": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
2240
|
+
{
|
|
2241
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2242
|
+
useExisting: TextValueAccessor,
|
|
2243
|
+
multi: true
|
|
2244
|
+
}
|
|
2245
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2246
|
+
}
|
|
2247
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
2248
|
+
type: Directive,
|
|
2249
|
+
args: [{
|
|
2250
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2251
|
+
selector: 'md-text-field, md-autocomplete, md-otp-field',
|
|
2252
|
+
host: {
|
|
2253
|
+
'(mdInput)': 'handleChangeEvent($event.target.value)'
|
|
2254
|
+
},
|
|
2255
|
+
providers: [
|
|
2256
|
+
{
|
|
2257
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2258
|
+
useExisting: TextValueAccessor,
|
|
2259
|
+
multi: true
|
|
2260
|
+
}
|
|
2261
|
+
]
|
|
2262
|
+
}]
|
|
2263
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
2264
|
+
|
|
2265
|
+
class SelectValueAccessor extends ValueAccessor {
|
|
2266
|
+
constructor(el) {
|
|
2267
|
+
super(el);
|
|
2268
|
+
}
|
|
2269
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2270
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: SelectValueAccessor, selector: "md-select, md-multi-select, md-date-picker, md-time-picker", host: { listeners: { "mdChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
2271
|
+
{
|
|
2272
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2273
|
+
useExisting: SelectValueAccessor,
|
|
2274
|
+
multi: true
|
|
2275
|
+
}
|
|
2276
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2277
|
+
}
|
|
2278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2279
|
+
type: Directive,
|
|
2280
|
+
args: [{
|
|
2281
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2282
|
+
selector: 'md-select, md-multi-select, md-date-picker, md-time-picker',
|
|
2283
|
+
host: {
|
|
2284
|
+
'(mdChange)': 'handleChangeEvent($event.target.value)'
|
|
2285
|
+
},
|
|
2286
|
+
providers: [
|
|
2287
|
+
{
|
|
2288
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2289
|
+
useExisting: SelectValueAccessor,
|
|
2290
|
+
multi: true
|
|
2291
|
+
}
|
|
2292
|
+
]
|
|
2293
|
+
}]
|
|
2294
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
2295
|
+
|
|
2296
|
+
class BooleanValueAccessor extends ValueAccessor {
|
|
2297
|
+
constructor(el) {
|
|
2298
|
+
super(el);
|
|
2299
|
+
}
|
|
2300
|
+
writeValue(value) {
|
|
2301
|
+
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
2302
|
+
}
|
|
2303
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2304
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: BooleanValueAccessor, selector: "md-checkbox", host: { listeners: { "mdChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
2305
|
+
{
|
|
2306
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2307
|
+
useExisting: BooleanValueAccessor,
|
|
2308
|
+
multi: true
|
|
2309
|
+
}
|
|
2310
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2311
|
+
}
|
|
2312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
2313
|
+
type: Directive,
|
|
2314
|
+
args: [{
|
|
2315
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2316
|
+
selector: 'md-checkbox',
|
|
2317
|
+
host: {
|
|
2318
|
+
'(mdChange)': 'handleChangeEvent($event.target.checked)'
|
|
2319
|
+
},
|
|
2320
|
+
providers: [
|
|
2321
|
+
{
|
|
2322
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2323
|
+
useExisting: BooleanValueAccessor,
|
|
2324
|
+
multi: true
|
|
2325
|
+
}
|
|
2326
|
+
]
|
|
2327
|
+
}]
|
|
2328
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
2329
|
+
|
|
2330
|
+
class RadioValueAccessor extends ValueAccessor {
|
|
2331
|
+
constructor(el) {
|
|
2332
|
+
super(el);
|
|
2333
|
+
}
|
|
2334
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2335
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: RadioValueAccessor, selector: "md-radio", host: { listeners: { "mdChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
2336
|
+
{
|
|
2337
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2338
|
+
useExisting: RadioValueAccessor,
|
|
2339
|
+
multi: true
|
|
2340
|
+
}
|
|
2341
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2342
|
+
}
|
|
2343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
2344
|
+
type: Directive,
|
|
2345
|
+
args: [{
|
|
2346
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2347
|
+
selector: 'md-radio',
|
|
2348
|
+
host: {
|
|
2349
|
+
'(mdChange)': 'handleChangeEvent($event.target.checked)'
|
|
2350
|
+
},
|
|
2351
|
+
providers: [
|
|
2352
|
+
{
|
|
2353
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2354
|
+
useExisting: RadioValueAccessor,
|
|
2355
|
+
multi: true
|
|
2356
|
+
}
|
|
2357
|
+
]
|
|
2358
|
+
}]
|
|
2359
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
2360
|
+
|
|
2361
|
+
class NumericValueAccessor extends ValueAccessor {
|
|
2362
|
+
constructor(el) {
|
|
2363
|
+
super(el);
|
|
2364
|
+
}
|
|
2365
|
+
registerOnChange(fn) {
|
|
2366
|
+
super.registerOnChange(value => {
|
|
2367
|
+
fn(value === '' ? null : parseFloat(value));
|
|
2368
|
+
});
|
|
2369
|
+
}
|
|
2370
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2371
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NumericValueAccessor, selector: "md-rating, md-slider, md-number-field", host: { listeners: { "mdChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
2372
|
+
{
|
|
2373
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2374
|
+
useExisting: NumericValueAccessor,
|
|
2375
|
+
multi: true
|
|
2376
|
+
}
|
|
2377
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2378
|
+
}
|
|
2379
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
2380
|
+
type: Directive,
|
|
2381
|
+
args: [{
|
|
2382
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2383
|
+
selector: 'md-rating, md-slider, md-number-field',
|
|
2384
|
+
host: {
|
|
2385
|
+
'(mdChange)': 'handleChangeEvent($event.target.value)'
|
|
2386
|
+
},
|
|
2387
|
+
providers: [
|
|
2388
|
+
{
|
|
2389
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2390
|
+
useExisting: NumericValueAccessor,
|
|
2391
|
+
multi: true
|
|
2392
|
+
}
|
|
2393
|
+
]
|
|
2394
|
+
}]
|
|
2395
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
2396
|
+
|
|
2397
|
+
/**
|
|
2398
|
+
* ControlValueAccessor for `md-switch`.
|
|
2399
|
+
*
|
|
2400
|
+
* Hand-written rather than generated because md-switch stores its state in
|
|
2401
|
+
* `selected`, not `checked`. The Stencil Angular output target merges every
|
|
2402
|
+
* config that shares a `type`, so listing md-switch alongside md-checkbox under
|
|
2403
|
+
* `boolean` produced ONE directive whose writeValue hardcoded `.checked` while
|
|
2404
|
+
* its host binding read `.selected` — silently breaking both controls in
|
|
2405
|
+
* opposite directions.
|
|
2406
|
+
*
|
|
2407
|
+
* This file is NOT generated, so the build will not overwrite it.
|
|
2408
|
+
*/
|
|
2409
|
+
class SwitchValueAccessor extends ValueAccessor {
|
|
2410
|
+
constructor(el) {
|
|
2411
|
+
super(el);
|
|
2412
|
+
}
|
|
2413
|
+
writeValue(value) {
|
|
2414
|
+
this.el.nativeElement.selected = this.lastValue = value == null ? false : value;
|
|
2415
|
+
}
|
|
2416
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SwitchValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2417
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: SwitchValueAccessor, selector: "md-switch", host: { listeners: { "mdChange": "handleChangeEvent($event.target.selected)" } }, providers: [
|
|
2418
|
+
{
|
|
2419
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2420
|
+
useExisting: SwitchValueAccessor,
|
|
2421
|
+
multi: true,
|
|
2422
|
+
},
|
|
2423
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
2424
|
+
}
|
|
2425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SwitchValueAccessor, decorators: [{
|
|
2426
|
+
type: Directive,
|
|
2427
|
+
args: [{
|
|
2428
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2429
|
+
selector: 'md-switch',
|
|
2430
|
+
host: {
|
|
2431
|
+
'(mdChange)': 'handleChangeEvent($event.target.selected)',
|
|
2432
|
+
},
|
|
2433
|
+
providers: [
|
|
2434
|
+
{
|
|
2435
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2436
|
+
useExisting: SwitchValueAccessor,
|
|
2437
|
+
multi: true,
|
|
2438
|
+
},
|
|
2439
|
+
],
|
|
2440
|
+
}]
|
|
2441
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
2442
|
+
|
|
2443
|
+
/**
|
|
2444
|
+
* ControlValueAccessor directives, so `[(ngModel)]` and `formControlName` bind
|
|
2445
|
+
* to AWC UI inputs. Declared here rather than in `DIRECTIVES` because that
|
|
2446
|
+
* array is GENERATED by the Stencil output target on every build and would
|
|
2447
|
+
* discard anything added to it.
|
|
2448
|
+
*/
|
|
2449
|
+
const VALUE_ACCESSORS = [
|
|
2450
|
+
TextValueAccessor,
|
|
2451
|
+
SelectValueAccessor,
|
|
2452
|
+
BooleanValueAccessor,
|
|
2453
|
+
RadioValueAccessor,
|
|
2454
|
+
NumericValueAccessor,
|
|
2455
|
+
SwitchValueAccessor,
|
|
2456
|
+
];
|
|
2457
|
+
/**
|
|
2458
|
+
* Registers the AWC UI custom elements (the Stencil lazy loader) during
|
|
2459
|
+
* application bootstrap. Add it to your root providers instead of calling
|
|
2460
|
+
* `defineCustomElements()` manually:
|
|
2461
|
+
*
|
|
2462
|
+
* @example
|
|
2463
|
+
* // NgModule app
|
|
2464
|
+
* @NgModule({
|
|
2465
|
+
* imports: [AwcUiModule],
|
|
2466
|
+
* providers: [provideAwcUi()],
|
|
2467
|
+
* })
|
|
2468
|
+
* export class AppModule {}
|
|
2469
|
+
*
|
|
2470
|
+
* // Standalone app
|
|
2471
|
+
* bootstrapApplication(AppComponent, {
|
|
2472
|
+
* providers: [provideAwcUi(), importProvidersFrom(AwcUiModule)],
|
|
2473
|
+
* });
|
|
2474
|
+
*
|
|
2475
|
+
* SSR-safe: it is a no-op when `window` is not available.
|
|
2476
|
+
*/
|
|
2477
|
+
function provideAwcUi() {
|
|
2478
|
+
return {
|
|
2479
|
+
provide: APP_INITIALIZER,
|
|
2480
|
+
multi: true,
|
|
2481
|
+
useValue: () => typeof window !== 'undefined' ? defineCustomElements(window) : Promise.resolve(),
|
|
2482
|
+
};
|
|
2483
|
+
}
|
|
2484
|
+
/**
|
|
2485
|
+
* AwcUiModule
|
|
2486
|
+
*
|
|
2487
|
+
* Import this module in your Angular application to use all AWC UI
|
|
2488
|
+
* component proxies (typed inputs, outputs and methods).
|
|
2489
|
+
*
|
|
2490
|
+
* The underlying custom elements must be registered once. Either add
|
|
2491
|
+
* `provideAwcUi()` to your root providers (recommended, see above), or
|
|
2492
|
+
* call `defineCustomElements()` from `@awc-ui/core/loader` in `main.ts`:
|
|
2493
|
+
*
|
|
2494
|
+
* @example
|
|
2495
|
+
* // main.ts
|
|
2496
|
+
* import { defineCustomElements } from '@awc-ui/core/loader';
|
|
2497
|
+
* defineCustomElements(window);
|
|
2498
|
+
*
|
|
2499
|
+
* // app.module.ts (or standalone component)
|
|
2500
|
+
* import { AwcUiModule } from '@awc-ui/angular';
|
|
2501
|
+
*
|
|
2502
|
+
* @NgModule({
|
|
2503
|
+
* imports: [AwcUiModule, ...],
|
|
2504
|
+
* })
|
|
2505
|
+
* export class AppModule {}
|
|
2506
|
+
*/
|
|
2507
|
+
class AwcUiModule {
|
|
2508
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AwcUiModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2509
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: AwcUiModule, declarations: [MdAccordion, MdAccordionItem, MdAppBar, MdAreaChart, MdAutocomplete, MdAvatar, MdBadge, MdBarChart, MdBottomSheet, MdBreadcrumbItem, MdBreadcrumbs, MdButton, MdButtonGroup, MdCard, MdCheckbox, MdChip, MdColorPicker, MdDatePicker, MdDialog, MdDivider, MdFab, MdFabMenu, MdFabMenuItem, MdIconButton, MdLineChart, MdList, MdListItem, MdLoadingIndicator, MdMenu, MdMenuItem, MdMenuItemGroup, MdMeter, MdMultiSelect, MdNavigationBar, MdNavigationRail, MdNavigationRailTab, MdNavigationTab, MdNumberField, MdOrganizationChart, MdOtpField, MdPieChart, MdProgressIndicator, MdRadio, MdRating, MdRipple, MdSearch, MdSegmentedButton, MdSegmentedButtonSet, MdSelect, MdSelectOption, MdSideSheet, MdSkeleton, MdSlider, MdSnackbar, MdSparkline, MdSplitButton, MdStatusDot, MdStep, MdStepper, MdSubMenuItem, MdSwitch, MdTab, MdTabPanel, MdTabPanels, MdTable, MdTableBody, MdTableCell, MdTableContainer, MdTableExpandToggle, MdTableFoot, MdTableHead, MdTablePagination, MdTableRow, MdTableSortLabel, MdTableToolbar, MdTabs, MdTextField, MdTimePicker, MdToolbar, MdTooltip, MdTransferList, TextValueAccessor,
|
|
2510
|
+
SelectValueAccessor,
|
|
2511
|
+
BooleanValueAccessor,
|
|
2512
|
+
RadioValueAccessor,
|
|
2513
|
+
NumericValueAccessor,
|
|
2514
|
+
SwitchValueAccessor], imports: [CommonModule], exports: [MdAccordion, MdAccordionItem, MdAppBar, MdAreaChart, MdAutocomplete, MdAvatar, MdBadge, MdBarChart, MdBottomSheet, MdBreadcrumbItem, MdBreadcrumbs, MdButton, MdButtonGroup, MdCard, MdCheckbox, MdChip, MdColorPicker, MdDatePicker, MdDialog, MdDivider, MdFab, MdFabMenu, MdFabMenuItem, MdIconButton, MdLineChart, MdList, MdListItem, MdLoadingIndicator, MdMenu, MdMenuItem, MdMenuItemGroup, MdMeter, MdMultiSelect, MdNavigationBar, MdNavigationRail, MdNavigationRailTab, MdNavigationTab, MdNumberField, MdOrganizationChart, MdOtpField, MdPieChart, MdProgressIndicator, MdRadio, MdRating, MdRipple, MdSearch, MdSegmentedButton, MdSegmentedButtonSet, MdSelect, MdSelectOption, MdSideSheet, MdSkeleton, MdSlider, MdSnackbar, MdSparkline, MdSplitButton, MdStatusDot, MdStep, MdStepper, MdSubMenuItem, MdSwitch, MdTab, MdTabPanel, MdTabPanels, MdTable, MdTableBody, MdTableCell, MdTableContainer, MdTableExpandToggle, MdTableFoot, MdTableHead, MdTablePagination, MdTableRow, MdTableSortLabel, MdTableToolbar, MdTabs, MdTextField, MdTimePicker, MdToolbar, MdTooltip, MdTransferList, TextValueAccessor,
|
|
2515
|
+
SelectValueAccessor,
|
|
2516
|
+
BooleanValueAccessor,
|
|
2517
|
+
RadioValueAccessor,
|
|
2518
|
+
NumericValueAccessor,
|
|
2519
|
+
SwitchValueAccessor] }); }
|
|
2520
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AwcUiModule, imports: [CommonModule] }); }
|
|
2521
|
+
}
|
|
2522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: AwcUiModule, decorators: [{
|
|
2523
|
+
type: NgModule,
|
|
2524
|
+
args: [{
|
|
2525
|
+
imports: [CommonModule],
|
|
2526
|
+
declarations: [...DIRECTIVES, ...VALUE_ACCESSORS],
|
|
2527
|
+
exports: [...DIRECTIVES, ...VALUE_ACCESSORS],
|
|
2528
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2529
|
+
}]
|
|
2530
|
+
}] });
|
|
2531
|
+
|
|
2532
|
+
/**
|
|
2533
|
+
* Generated bundle index. Do not edit.
|
|
2534
|
+
*/
|
|
2535
|
+
|
|
2536
|
+
export { AwcUiModule, BooleanValueAccessor, DIRECTIVES, MdAccordion, MdAccordionItem, MdAppBar, MdAreaChart, MdAutocomplete, MdAvatar, MdBadge, MdBarChart, MdBottomSheet, MdBreadcrumbItem, MdBreadcrumbs, MdButton, MdButtonGroup, MdCard, MdCheckbox, MdChip, MdColorPicker, MdDatePicker, MdDialog, MdDivider, MdFab, MdFabMenu, MdFabMenuItem, MdIconButton, MdLineChart, MdList, MdListItem, MdLoadingIndicator, MdMenu, MdMenuItem, MdMenuItemGroup, MdMeter, MdMultiSelect, MdNavigationBar, MdNavigationRail, MdNavigationRailTab, MdNavigationTab, MdNumberField, MdOrganizationChart, MdOtpField, MdPieChart, MdProgressIndicator, MdRadio, MdRating, MdRipple, MdSearch, MdSegmentedButton, MdSegmentedButtonSet, MdSelect, MdSelectOption, MdSideSheet, MdSkeleton, MdSlider, MdSnackbar, MdSparkline, MdSplitButton, MdStatusDot, MdStep, MdStepper, MdSubMenuItem, MdSwitch, MdTab, MdTabPanel, MdTabPanels, MdTable, MdTableBody, MdTableCell, MdTableContainer, MdTableExpandToggle, MdTableFoot, MdTableHead, MdTablePagination, MdTableRow, MdTableSortLabel, MdTableToolbar, MdTabs, MdTextField, MdTimePicker, MdToolbar, MdTooltip, MdTransferList, NumericValueAccessor, RadioValueAccessor, SelectValueAccessor, SwitchValueAccessor, TextValueAccessor, VALUE_ACCESSORS, ValueAccessor, provideAwcUi };
|
|
2537
|
+
//# sourceMappingURL=awc-ui-angular.mjs.map
|