@quartzds/core-angular 1.0.0-beta.2 → 1.0.0-beta.21
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/lib/generated/array.d.ts +1 -1
- package/lib/generated/array.d.ts.map +1 -1
- package/lib/generated/array.js +11 -0
- package/lib/generated/array.js.map +1 -1
- package/lib/generated/boolean-value-accessor.d.ts +3 -0
- package/lib/generated/boolean-value-accessor.d.ts.map +1 -1
- package/lib/generated/boolean-value-accessor.js +28 -22
- package/lib/generated/boolean-value-accessor.js.map +1 -1
- package/lib/generated/number-value-accessor.d.ts +3 -0
- package/lib/generated/number-value-accessor.d.ts.map +1 -1
- package/lib/generated/number-value-accessor.js +28 -22
- package/lib/generated/number-value-accessor.js.map +1 -1
- package/lib/generated/proxies.d.ts +180 -7
- package/lib/generated/proxies.d.ts.map +1 -1
- package/lib/generated/proxies.js +443 -99
- package/lib/generated/proxies.js.map +1 -1
- package/lib/generated/radio-value-accessor.d.ts +9 -0
- package/lib/generated/radio-value-accessor.d.ts.map +1 -0
- package/lib/generated/radio-value-accessor.js +35 -0
- package/lib/generated/radio-value-accessor.js.map +1 -0
- package/lib/generated/select-value-accessor.d.ts +9 -0
- package/lib/generated/select-value-accessor.d.ts.map +1 -0
- package/lib/generated/select-value-accessor.js +35 -0
- package/lib/generated/select-value-accessor.js.map +1 -0
- package/lib/generated/text-value-accessor.d.ts +3 -0
- package/lib/generated/text-value-accessor.d.ts.map +1 -1
- package/lib/generated/text-value-accessor.js +28 -22
- package/lib/generated/text-value-accessor.js.map +1 -1
- package/lib/generated/value-accessor.d.ts +3 -0
- package/lib/generated/value-accessor.d.ts.map +1 -1
- package/lib/generated/value-accessor.js +12 -14
- package/lib/generated/value-accessor.js.map +1 -1
- package/lib/quartz.module.d.ts +10 -0
- package/lib/quartz.module.d.ts.map +1 -1
- package/lib/quartz.module.js +27 -11
- package/lib/quartz.module.js.map +1 -1
- package/package.json +14 -12
package/lib/generated/proxies.js
CHANGED
|
@@ -5,16 +5,28 @@ import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZo
|
|
|
5
5
|
import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
|
|
6
6
|
import { defineCustomElement as defineQdsButton } from '@quartzds/core/components/qds-button.js';
|
|
7
7
|
import { defineCustomElement as defineQdsCheckbox } from '@quartzds/core/components/qds-checkbox.js';
|
|
8
|
+
import { defineCustomElement as defineQdsDialog } from '@quartzds/core/components/qds-dialog.js';
|
|
9
|
+
import { defineCustomElement as defineQdsDivider } from '@quartzds/core/components/qds-divider.js';
|
|
8
10
|
import { defineCustomElement as defineQdsDropdown } from '@quartzds/core/components/qds-dropdown.js';
|
|
11
|
+
import { defineCustomElement as defineQdsFormMessage } from '@quartzds/core/components/qds-form-message.js';
|
|
9
12
|
import { defineCustomElement as defineQdsIcon } from '@quartzds/core/components/qds-icon.js';
|
|
10
13
|
import { defineCustomElement as defineQdsInlineLink } from '@quartzds/core/components/qds-inline-link.js';
|
|
11
14
|
import { defineCustomElement as defineQdsInput } from '@quartzds/core/components/qds-input.js';
|
|
12
15
|
import { defineCustomElement as defineQdsLabel } from '@quartzds/core/components/qds-label.js';
|
|
13
16
|
import { defineCustomElement as defineQdsRadio } from '@quartzds/core/components/qds-radio.js';
|
|
17
|
+
import { defineCustomElement as defineQdsSelect } from '@quartzds/core/components/qds-select.js';
|
|
14
18
|
import { defineCustomElement as defineQdsSwitch } from '@quartzds/core/components/qds-switch.js';
|
|
19
|
+
import { defineCustomElement as defineQdsTable } from '@quartzds/core/components/qds-table.js';
|
|
20
|
+
import { defineCustomElement as defineQdsTableBody } from '@quartzds/core/components/qds-table-body.js';
|
|
21
|
+
import { defineCustomElement as defineQdsTableCell } from '@quartzds/core/components/qds-table-cell.js';
|
|
22
|
+
import { defineCustomElement as defineQdsTableHead } from '@quartzds/core/components/qds-table-head.js';
|
|
23
|
+
import { defineCustomElement as defineQdsTableHeadCell } from '@quartzds/core/components/qds-table-head-cell.js';
|
|
24
|
+
import { defineCustomElement as defineQdsTableRow } from '@quartzds/core/components/qds-table-row.js';
|
|
25
|
+
import { defineCustomElement as defineQdsTextarea } from '@quartzds/core/components/qds-textarea.js';
|
|
15
26
|
import { defineCustomElement as defineQdsTitle } from '@quartzds/core/components/qds-title.js';
|
|
16
27
|
import { defineCustomElement as defineQdsTooltip } from '@quartzds/core/components/qds-tooltip.js';
|
|
17
|
-
|
|
28
|
+
import * as i0 from "@angular/core";
|
|
29
|
+
export let QdsButton = class QdsButton {
|
|
18
30
|
constructor(c, r, z) {
|
|
19
31
|
this.z = z;
|
|
20
32
|
c.detach();
|
|
@@ -22,22 +34,26 @@ let QdsButton = class QdsButton {
|
|
|
22
34
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
23
35
|
}
|
|
24
36
|
};
|
|
37
|
+
QdsButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
38
|
+
QdsButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsButton, selector: "qds-button", inputs: { disabled: "disabled", download: "download", form: "form", formAction: "formAction", formMethod: "formMethod", formNoValidate: "formNoValidate", formTarget: "formTarget", href: "href", iconLibrary: "iconLibrary", iconName: "iconName", importance: "importance", name: "name", size: "size", target: "target", text: "text", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
25
39
|
QdsButton = __decorate([
|
|
26
40
|
ProxyCmp({
|
|
27
41
|
defineCustomElementFn: defineQdsButton,
|
|
28
42
|
inputs: ['disabled', 'download', 'form', 'formAction', 'formMethod', 'formNoValidate', 'formTarget', 'href', 'iconLibrary', 'iconName', 'importance', 'name', 'size', 'target', 'text', 'type', 'value']
|
|
29
43
|
}),
|
|
30
|
-
Component({
|
|
31
|
-
selector: 'qds-button',
|
|
32
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
33
|
-
template: '<ng-content></ng-content>',
|
|
34
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
35
|
-
inputs: ['disabled', 'download', 'form', 'formAction', 'formMethod', 'formNoValidate', 'formTarget', 'href', 'iconLibrary', 'iconName', 'importance', 'name', 'size', 'target', 'text', 'type', 'value'],
|
|
36
|
-
}),
|
|
37
44
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
38
45
|
], QdsButton);
|
|
39
|
-
|
|
40
|
-
|
|
46
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsButton, decorators: [{
|
|
47
|
+
type: Component,
|
|
48
|
+
args: [{
|
|
49
|
+
selector: 'qds-button',
|
|
50
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
51
|
+
template: '<ng-content></ng-content>',
|
|
52
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
53
|
+
inputs: ['disabled', 'download', 'form', 'formAction', 'formMethod', 'formNoValidate', 'formTarget', 'href', 'iconLibrary', 'iconName', 'importance', 'name', 'size', 'target', 'text', 'type', 'value'],
|
|
54
|
+
}]
|
|
55
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
56
|
+
export let QdsCheckbox = class QdsCheckbox {
|
|
41
57
|
constructor(c, r, z) {
|
|
42
58
|
this.z = z;
|
|
43
59
|
c.detach();
|
|
@@ -45,23 +61,81 @@ let QdsCheckbox = class QdsCheckbox {
|
|
|
45
61
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus']);
|
|
46
62
|
}
|
|
47
63
|
};
|
|
64
|
+
QdsCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
65
|
+
QdsCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsCheckbox, selector: "qds-checkbox", inputs: { autoFocus: "autoFocus", checked: "checked", disabled: "disabled", form: "form", indeterminate: "indeterminate", inline: "inline", name: "name", required: "required", size: "size", text: "text", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
48
66
|
QdsCheckbox = __decorate([
|
|
49
67
|
ProxyCmp({
|
|
50
68
|
defineCustomElementFn: defineQdsCheckbox,
|
|
51
69
|
inputs: ['autoFocus', 'checked', 'disabled', 'form', 'indeterminate', 'inline', 'name', 'required', 'size', 'text', 'value'],
|
|
52
70
|
methods: ['checkValidity', 'reportValidity', 'setCustomValidity']
|
|
53
71
|
}),
|
|
54
|
-
Component({
|
|
55
|
-
selector: 'qds-checkbox',
|
|
56
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
57
|
-
template: '<ng-content></ng-content>',
|
|
58
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
59
|
-
inputs: ['autoFocus', 'checked', 'disabled', 'form', 'indeterminate', 'inline', 'name', 'required', 'size', 'text', 'value'],
|
|
60
|
-
}),
|
|
61
72
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
62
73
|
], QdsCheckbox);
|
|
63
|
-
|
|
64
|
-
|
|
74
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsCheckbox, decorators: [{
|
|
75
|
+
type: Component,
|
|
76
|
+
args: [{
|
|
77
|
+
selector: 'qds-checkbox',
|
|
78
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
79
|
+
template: '<ng-content></ng-content>',
|
|
80
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
81
|
+
inputs: ['autoFocus', 'checked', 'disabled', 'form', 'indeterminate', 'inline', 'name', 'required', 'size', 'text', 'value'],
|
|
82
|
+
}]
|
|
83
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
84
|
+
export let QdsDialog = class QdsDialog {
|
|
85
|
+
constructor(c, r, z) {
|
|
86
|
+
this.z = z;
|
|
87
|
+
c.detach();
|
|
88
|
+
this.el = r.nativeElement;
|
|
89
|
+
proxyOutputs(this, this.el, ['qdsCancel', 'qdsClose']);
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
QdsDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
93
|
+
QdsDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsDialog, selector: "qds-dialog", inputs: { open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
94
|
+
QdsDialog = __decorate([
|
|
95
|
+
ProxyCmp({
|
|
96
|
+
defineCustomElementFn: defineQdsDialog,
|
|
97
|
+
inputs: ['open'],
|
|
98
|
+
methods: ['show', 'close']
|
|
99
|
+
}),
|
|
100
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
101
|
+
], QdsDialog);
|
|
102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsDialog, decorators: [{
|
|
103
|
+
type: Component,
|
|
104
|
+
args: [{
|
|
105
|
+
selector: 'qds-dialog',
|
|
106
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
107
|
+
template: '<ng-content></ng-content>',
|
|
108
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
109
|
+
inputs: ['open'],
|
|
110
|
+
}]
|
|
111
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
112
|
+
export let QdsDivider = class QdsDivider {
|
|
113
|
+
constructor(c, r, z) {
|
|
114
|
+
this.z = z;
|
|
115
|
+
c.detach();
|
|
116
|
+
this.el = r.nativeElement;
|
|
117
|
+
}
|
|
118
|
+
};
|
|
119
|
+
QdsDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
120
|
+
QdsDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsDivider, selector: "qds-divider", inputs: { importance: "importance" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
121
|
+
QdsDivider = __decorate([
|
|
122
|
+
ProxyCmp({
|
|
123
|
+
defineCustomElementFn: defineQdsDivider,
|
|
124
|
+
inputs: ['importance']
|
|
125
|
+
}),
|
|
126
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
127
|
+
], QdsDivider);
|
|
128
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsDivider, decorators: [{
|
|
129
|
+
type: Component,
|
|
130
|
+
args: [{
|
|
131
|
+
selector: 'qds-divider',
|
|
132
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
133
|
+
template: '<ng-content></ng-content>',
|
|
134
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
135
|
+
inputs: ['importance'],
|
|
136
|
+
}]
|
|
137
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
138
|
+
export let QdsDropdown = class QdsDropdown {
|
|
65
139
|
constructor(c, r, z) {
|
|
66
140
|
this.z = z;
|
|
67
141
|
c.detach();
|
|
@@ -69,23 +143,53 @@ let QdsDropdown = class QdsDropdown {
|
|
|
69
143
|
proxyOutputs(this, this.el, ['qdsCancel', 'qdsClose']);
|
|
70
144
|
}
|
|
71
145
|
};
|
|
146
|
+
QdsDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
147
|
+
QdsDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsDropdown, selector: "qds-dropdown", inputs: { autoUpdateOptions: "autoUpdateOptions", disabled: "disabled", flipOptions: "flipOptions", noFlip: "noFlip", noShift: "noShift", offsetOptions: "offsetOptions", placement: "placement", shiftOptions: "shiftOptions", strategy: "strategy", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
72
148
|
QdsDropdown = __decorate([
|
|
73
149
|
ProxyCmp({
|
|
74
150
|
defineCustomElementFn: defineQdsDropdown,
|
|
75
151
|
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', 'target'],
|
|
76
152
|
methods: ['show', 'close', 'update']
|
|
77
153
|
}),
|
|
78
|
-
Component({
|
|
79
|
-
selector: 'qds-dropdown',
|
|
80
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
81
|
-
template: '<ng-content></ng-content>',
|
|
82
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
83
|
-
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', 'target'],
|
|
84
|
-
}),
|
|
85
154
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
86
155
|
], QdsDropdown);
|
|
87
|
-
|
|
88
|
-
|
|
156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsDropdown, decorators: [{
|
|
157
|
+
type: Component,
|
|
158
|
+
args: [{
|
|
159
|
+
selector: 'qds-dropdown',
|
|
160
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
161
|
+
template: '<ng-content></ng-content>',
|
|
162
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
163
|
+
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', 'target'],
|
|
164
|
+
}]
|
|
165
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
166
|
+
export let QdsFormMessage = class QdsFormMessage {
|
|
167
|
+
constructor(c, r, z) {
|
|
168
|
+
this.z = z;
|
|
169
|
+
c.detach();
|
|
170
|
+
this.el = r.nativeElement;
|
|
171
|
+
}
|
|
172
|
+
};
|
|
173
|
+
QdsFormMessage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsFormMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
174
|
+
QdsFormMessage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsFormMessage, selector: "qds-form-message", inputs: { inline: "inline", size: "size", status: "status", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
175
|
+
QdsFormMessage = __decorate([
|
|
176
|
+
ProxyCmp({
|
|
177
|
+
defineCustomElementFn: defineQdsFormMessage,
|
|
178
|
+
inputs: ['inline', 'size', 'status', 'text']
|
|
179
|
+
}),
|
|
180
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
181
|
+
], QdsFormMessage);
|
|
182
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsFormMessage, decorators: [{
|
|
183
|
+
type: Component,
|
|
184
|
+
args: [{
|
|
185
|
+
selector: 'qds-form-message',
|
|
186
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
187
|
+
template: '<ng-content></ng-content>',
|
|
188
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
189
|
+
inputs: ['inline', 'size', 'status', 'text'],
|
|
190
|
+
}]
|
|
191
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
192
|
+
export let QdsIcon = class QdsIcon {
|
|
89
193
|
constructor(c, r, z) {
|
|
90
194
|
this.z = z;
|
|
91
195
|
c.detach();
|
|
@@ -93,22 +197,26 @@ let QdsIcon = class QdsIcon {
|
|
|
93
197
|
proxyOutputs(this, this.el, ['qdsLoad', 'qdsError']);
|
|
94
198
|
}
|
|
95
199
|
};
|
|
200
|
+
QdsIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
201
|
+
QdsIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsIcon, selector: "qds-icon", inputs: { library: "library", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
96
202
|
QdsIcon = __decorate([
|
|
97
203
|
ProxyCmp({
|
|
98
204
|
defineCustomElementFn: defineQdsIcon,
|
|
99
205
|
inputs: ['library', 'name']
|
|
100
206
|
}),
|
|
101
|
-
Component({
|
|
102
|
-
selector: 'qds-icon',
|
|
103
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
104
|
-
template: '<ng-content></ng-content>',
|
|
105
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
106
|
-
inputs: ['library', 'name'],
|
|
107
|
-
}),
|
|
108
207
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
109
208
|
], QdsIcon);
|
|
110
|
-
|
|
111
|
-
|
|
209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsIcon, decorators: [{
|
|
210
|
+
type: Component,
|
|
211
|
+
args: [{
|
|
212
|
+
selector: 'qds-icon',
|
|
213
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
214
|
+
template: '<ng-content></ng-content>',
|
|
215
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
216
|
+
inputs: ['library', 'name'],
|
|
217
|
+
}]
|
|
218
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
219
|
+
export let QdsInlineLink = class QdsInlineLink {
|
|
112
220
|
constructor(c, r, z) {
|
|
113
221
|
this.z = z;
|
|
114
222
|
c.detach();
|
|
@@ -116,22 +224,26 @@ let QdsInlineLink = class QdsInlineLink {
|
|
|
116
224
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
117
225
|
}
|
|
118
226
|
};
|
|
227
|
+
QdsInlineLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsInlineLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
228
|
+
QdsInlineLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsInlineLink, selector: "qds-inline-link", inputs: { disabled: "disabled", download: "download", href: "href", hreflang: "hreflang", referrerPolicy: "referrerPolicy", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
119
229
|
QdsInlineLink = __decorate([
|
|
120
230
|
ProxyCmp({
|
|
121
231
|
defineCustomElementFn: defineQdsInlineLink,
|
|
122
232
|
inputs: ['disabled', 'download', 'href', 'hreflang', 'referrerPolicy', 'rel', 'target']
|
|
123
233
|
}),
|
|
124
|
-
Component({
|
|
125
|
-
selector: 'qds-inline-link',
|
|
126
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
127
|
-
template: '<ng-content></ng-content>',
|
|
128
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
129
|
-
inputs: ['disabled', 'download', 'href', 'hreflang', 'referrerPolicy', 'rel', 'target'],
|
|
130
|
-
}),
|
|
131
234
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
132
235
|
], QdsInlineLink);
|
|
133
|
-
|
|
134
|
-
|
|
236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsInlineLink, decorators: [{
|
|
237
|
+
type: Component,
|
|
238
|
+
args: [{
|
|
239
|
+
selector: 'qds-inline-link',
|
|
240
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
241
|
+
template: '<ng-content></ng-content>',
|
|
242
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
243
|
+
inputs: ['disabled', 'download', 'href', 'hreflang', 'referrerPolicy', 'rel', 'target'],
|
|
244
|
+
}]
|
|
245
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
246
|
+
export let QdsInput = class QdsInput {
|
|
135
247
|
constructor(c, r, z) {
|
|
136
248
|
this.z = z;
|
|
137
249
|
c.detach();
|
|
@@ -139,45 +251,53 @@ let QdsInput = class QdsInput {
|
|
|
139
251
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus', 'qdsInput']);
|
|
140
252
|
}
|
|
141
253
|
};
|
|
254
|
+
QdsInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
255
|
+
QdsInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsInput, selector: "qds-input", inputs: { autoCapitalize: "autoCapitalize", autoComplete: "autoComplete", autoFocus: "autoFocus", disabled: "disabled", enterkeyhint: "enterkeyhint", form: "form", inputmode: "inputmode", invalid: "invalid", max: "max", maxLength: "maxLength", min: "min", minLength: "minLength", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readOnly: "readOnly", required: "required", size: "size", spellCheck: "spellCheck", step: "step", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
142
256
|
QdsInput = __decorate([
|
|
143
257
|
ProxyCmp({
|
|
144
258
|
defineCustomElementFn: defineQdsInput,
|
|
145
259
|
inputs: ['autoCapitalize', 'autoComplete', 'autoFocus', 'disabled', 'enterkeyhint', 'form', 'inputmode', 'invalid', 'max', 'maxLength', 'min', 'minLength', 'multiple', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'size', 'spellCheck', 'step', 'type', 'value'],
|
|
146
260
|
methods: ['reportValidity', 'select', 'setCustomValidity', 'setRangeText', 'setSelectionRange', 'stepDown', 'stepUp']
|
|
147
261
|
}),
|
|
148
|
-
Component({
|
|
149
|
-
selector: 'qds-input',
|
|
150
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
151
|
-
template: '<ng-content></ng-content>',
|
|
152
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
153
|
-
inputs: ['autoCapitalize', 'autoComplete', 'autoFocus', 'disabled', 'enterkeyhint', 'form', 'inputmode', 'invalid', 'max', 'maxLength', 'min', 'minLength', 'multiple', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'size', 'spellCheck', 'step', 'type', 'value'],
|
|
154
|
-
}),
|
|
155
262
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
156
263
|
], QdsInput);
|
|
157
|
-
|
|
158
|
-
|
|
264
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsInput, decorators: [{
|
|
265
|
+
type: Component,
|
|
266
|
+
args: [{
|
|
267
|
+
selector: 'qds-input',
|
|
268
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
269
|
+
template: '<ng-content></ng-content>',
|
|
270
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
271
|
+
inputs: ['autoCapitalize', 'autoComplete', 'autoFocus', 'disabled', 'enterkeyhint', 'form', 'inputmode', 'invalid', 'max', 'maxLength', 'min', 'minLength', 'multiple', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'size', 'spellCheck', 'step', 'type', 'value'],
|
|
272
|
+
}]
|
|
273
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
274
|
+
export let QdsLabel = class QdsLabel {
|
|
159
275
|
constructor(c, r, z) {
|
|
160
276
|
this.z = z;
|
|
161
277
|
c.detach();
|
|
162
278
|
this.el = r.nativeElement;
|
|
163
279
|
}
|
|
164
280
|
};
|
|
281
|
+
QdsLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
282
|
+
QdsLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsLabel, selector: "qds-label", inputs: { inline: "inline", required: "required", size: "size", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
165
283
|
QdsLabel = __decorate([
|
|
166
284
|
ProxyCmp({
|
|
167
285
|
defineCustomElementFn: defineQdsLabel,
|
|
168
286
|
inputs: ['inline', 'required', 'size', 'text']
|
|
169
287
|
}),
|
|
170
|
-
Component({
|
|
171
|
-
selector: 'qds-label',
|
|
172
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
173
|
-
template: '<ng-content></ng-content>',
|
|
174
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
175
|
-
inputs: ['inline', 'required', 'size', 'text'],
|
|
176
|
-
}),
|
|
177
288
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
178
289
|
], QdsLabel);
|
|
179
|
-
|
|
180
|
-
|
|
290
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsLabel, decorators: [{
|
|
291
|
+
type: Component,
|
|
292
|
+
args: [{
|
|
293
|
+
selector: 'qds-label',
|
|
294
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
295
|
+
template: '<ng-content></ng-content>',
|
|
296
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
297
|
+
inputs: ['inline', 'required', 'size', 'text'],
|
|
298
|
+
}]
|
|
299
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
300
|
+
export let QdsRadio = class QdsRadio {
|
|
181
301
|
constructor(c, r, z) {
|
|
182
302
|
this.z = z;
|
|
183
303
|
c.detach();
|
|
@@ -185,22 +305,54 @@ let QdsRadio = class QdsRadio {
|
|
|
185
305
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus']);
|
|
186
306
|
}
|
|
187
307
|
};
|
|
308
|
+
QdsRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
309
|
+
QdsRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsRadio, selector: "qds-radio", inputs: { checked: "checked", disabled: "disabled", form: "form", inline: "inline", name: "name", required: "required", size: "size", text: "text", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
188
310
|
QdsRadio = __decorate([
|
|
189
311
|
ProxyCmp({
|
|
190
312
|
defineCustomElementFn: defineQdsRadio,
|
|
191
313
|
inputs: ['checked', 'disabled', 'form', 'inline', 'name', 'required', 'size', 'text', 'value']
|
|
192
314
|
}),
|
|
193
|
-
Component({
|
|
194
|
-
selector: 'qds-radio',
|
|
195
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
196
|
-
template: '<ng-content></ng-content>',
|
|
197
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
198
|
-
inputs: ['checked', 'disabled', 'form', 'inline', 'name', 'required', 'size', 'text', 'value'],
|
|
199
|
-
}),
|
|
200
315
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
201
316
|
], QdsRadio);
|
|
202
|
-
|
|
203
|
-
|
|
317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsRadio, decorators: [{
|
|
318
|
+
type: Component,
|
|
319
|
+
args: [{
|
|
320
|
+
selector: 'qds-radio',
|
|
321
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
322
|
+
template: '<ng-content></ng-content>',
|
|
323
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
324
|
+
inputs: ['checked', 'disabled', 'form', 'inline', 'name', 'required', 'size', 'text', 'value'],
|
|
325
|
+
}]
|
|
326
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
327
|
+
export let QdsSelect = class QdsSelect {
|
|
328
|
+
constructor(c, r, z) {
|
|
329
|
+
this.z = z;
|
|
330
|
+
c.detach();
|
|
331
|
+
this.el = r.nativeElement;
|
|
332
|
+
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus', 'qdsInput']);
|
|
333
|
+
}
|
|
334
|
+
};
|
|
335
|
+
QdsSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
336
|
+
QdsSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsSelect, selector: "qds-select", inputs: { autoComplete: "autoComplete", autoFocus: "autoFocus", disabled: "disabled", form: "form", invalid: "invalid", multiple: "multiple", name: "name", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
337
|
+
QdsSelect = __decorate([
|
|
338
|
+
ProxyCmp({
|
|
339
|
+
defineCustomElementFn: defineQdsSelect,
|
|
340
|
+
inputs: ['autoComplete', 'autoFocus', 'disabled', 'form', 'invalid', 'multiple', 'name', 'required', 'size', 'value'],
|
|
341
|
+
methods: ['addItem', 'item', 'namedItem', 'removeItem', 'setCustomValidity']
|
|
342
|
+
}),
|
|
343
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
344
|
+
], QdsSelect);
|
|
345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsSelect, decorators: [{
|
|
346
|
+
type: Component,
|
|
347
|
+
args: [{
|
|
348
|
+
selector: 'qds-select',
|
|
349
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
350
|
+
template: '<ng-content></ng-content>',
|
|
351
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
352
|
+
inputs: ['autoComplete', 'autoFocus', 'disabled', 'form', 'invalid', 'multiple', 'name', 'required', 'size', 'value'],
|
|
353
|
+
}]
|
|
354
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
355
|
+
export let QdsSwitch = class QdsSwitch {
|
|
204
356
|
constructor(c, r, z) {
|
|
205
357
|
this.z = z;
|
|
206
358
|
c.detach();
|
|
@@ -208,44 +360,232 @@ let QdsSwitch = class QdsSwitch {
|
|
|
208
360
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus']);
|
|
209
361
|
}
|
|
210
362
|
};
|
|
363
|
+
QdsSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
364
|
+
QdsSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsSwitch, selector: "qds-switch", inputs: { autoFocus: "autoFocus", checked: "checked", disabled: "disabled", form: "form", iconCheckedLibrary: "iconCheckedLibrary", iconCheckedName: "iconCheckedName", iconUncheckedLibrary: "iconUncheckedLibrary", iconUncheckedName: "iconUncheckedName", inline: "inline", name: "name", size: "size", textChecked: "textChecked", textUnchecked: "textUnchecked", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
211
365
|
QdsSwitch = __decorate([
|
|
212
366
|
ProxyCmp({
|
|
213
367
|
defineCustomElementFn: defineQdsSwitch,
|
|
214
368
|
inputs: ['autoFocus', 'checked', 'disabled', 'form', 'iconCheckedLibrary', 'iconCheckedName', 'iconUncheckedLibrary', 'iconUncheckedName', 'inline', 'name', 'size', 'textChecked', 'textUnchecked', 'value']
|
|
215
369
|
}),
|
|
216
|
-
Component({
|
|
217
|
-
selector: 'qds-switch',
|
|
218
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
219
|
-
template: '<ng-content></ng-content>',
|
|
220
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
221
|
-
inputs: ['autoFocus', 'checked', 'disabled', 'form', 'iconCheckedLibrary', 'iconCheckedName', 'iconUncheckedLibrary', 'iconUncheckedName', 'inline', 'name', 'size', 'textChecked', 'textUnchecked', 'value'],
|
|
222
|
-
}),
|
|
223
370
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
224
371
|
], QdsSwitch);
|
|
225
|
-
|
|
226
|
-
|
|
372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsSwitch, decorators: [{
|
|
373
|
+
type: Component,
|
|
374
|
+
args: [{
|
|
375
|
+
selector: 'qds-switch',
|
|
376
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
377
|
+
template: '<ng-content></ng-content>',
|
|
378
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
379
|
+
inputs: ['autoFocus', 'checked', 'disabled', 'form', 'iconCheckedLibrary', 'iconCheckedName', 'iconUncheckedLibrary', 'iconUncheckedName', 'inline', 'name', 'size', 'textChecked', 'textUnchecked', 'value'],
|
|
380
|
+
}]
|
|
381
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
382
|
+
export let QdsTable = class QdsTable {
|
|
383
|
+
constructor(c, r, z) {
|
|
384
|
+
this.z = z;
|
|
385
|
+
c.detach();
|
|
386
|
+
this.el = r.nativeElement;
|
|
387
|
+
}
|
|
388
|
+
};
|
|
389
|
+
QdsTable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
390
|
+
QdsTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsTable, selector: "qds-table", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
391
|
+
QdsTable = __decorate([
|
|
392
|
+
ProxyCmp({
|
|
393
|
+
defineCustomElementFn: defineQdsTable
|
|
394
|
+
}),
|
|
395
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
396
|
+
], QdsTable);
|
|
397
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTable, decorators: [{
|
|
398
|
+
type: Component,
|
|
399
|
+
args: [{
|
|
400
|
+
selector: 'qds-table',
|
|
401
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
402
|
+
template: '<ng-content></ng-content>',
|
|
403
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
404
|
+
inputs: [],
|
|
405
|
+
}]
|
|
406
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
407
|
+
export let QdsTableBody = class QdsTableBody {
|
|
227
408
|
constructor(c, r, z) {
|
|
228
409
|
this.z = z;
|
|
229
410
|
c.detach();
|
|
230
411
|
this.el = r.nativeElement;
|
|
231
412
|
}
|
|
232
413
|
};
|
|
414
|
+
QdsTableBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
415
|
+
QdsTableBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsTableBody, selector: "qds-table-body", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
416
|
+
QdsTableBody = __decorate([
|
|
417
|
+
ProxyCmp({
|
|
418
|
+
defineCustomElementFn: defineQdsTableBody
|
|
419
|
+
}),
|
|
420
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
421
|
+
], QdsTableBody);
|
|
422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTableBody, decorators: [{
|
|
423
|
+
type: Component,
|
|
424
|
+
args: [{
|
|
425
|
+
selector: 'qds-table-body',
|
|
426
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
427
|
+
template: '<ng-content></ng-content>',
|
|
428
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
429
|
+
inputs: [],
|
|
430
|
+
}]
|
|
431
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
432
|
+
export let QdsTableCell = class QdsTableCell {
|
|
433
|
+
constructor(c, r, z) {
|
|
434
|
+
this.z = z;
|
|
435
|
+
c.detach();
|
|
436
|
+
this.el = r.nativeElement;
|
|
437
|
+
}
|
|
438
|
+
};
|
|
439
|
+
QdsTableCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
440
|
+
QdsTableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsTableCell, selector: "qds-table-cell", inputs: { colSpan: "colSpan", rowSpan: "rowSpan" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
441
|
+
QdsTableCell = __decorate([
|
|
442
|
+
ProxyCmp({
|
|
443
|
+
defineCustomElementFn: defineQdsTableCell,
|
|
444
|
+
inputs: ['colSpan', 'rowSpan']
|
|
445
|
+
}),
|
|
446
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
447
|
+
], QdsTableCell);
|
|
448
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTableCell, decorators: [{
|
|
449
|
+
type: Component,
|
|
450
|
+
args: [{
|
|
451
|
+
selector: 'qds-table-cell',
|
|
452
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
453
|
+
template: '<ng-content></ng-content>',
|
|
454
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
455
|
+
inputs: ['colSpan', 'rowSpan'],
|
|
456
|
+
}]
|
|
457
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
458
|
+
export let QdsTableHead = class QdsTableHead {
|
|
459
|
+
constructor(c, r, z) {
|
|
460
|
+
this.z = z;
|
|
461
|
+
c.detach();
|
|
462
|
+
this.el = r.nativeElement;
|
|
463
|
+
}
|
|
464
|
+
};
|
|
465
|
+
QdsTableHead.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTableHead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
466
|
+
QdsTableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsTableHead, selector: "qds-table-head", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
467
|
+
QdsTableHead = __decorate([
|
|
468
|
+
ProxyCmp({
|
|
469
|
+
defineCustomElementFn: defineQdsTableHead
|
|
470
|
+
}),
|
|
471
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
472
|
+
], QdsTableHead);
|
|
473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTableHead, decorators: [{
|
|
474
|
+
type: Component,
|
|
475
|
+
args: [{
|
|
476
|
+
selector: 'qds-table-head',
|
|
477
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
478
|
+
template: '<ng-content></ng-content>',
|
|
479
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
480
|
+
inputs: [],
|
|
481
|
+
}]
|
|
482
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
483
|
+
export let QdsTableHeadCell = class QdsTableHeadCell {
|
|
484
|
+
constructor(c, r, z) {
|
|
485
|
+
this.z = z;
|
|
486
|
+
c.detach();
|
|
487
|
+
this.el = r.nativeElement;
|
|
488
|
+
}
|
|
489
|
+
};
|
|
490
|
+
QdsTableHeadCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTableHeadCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
491
|
+
QdsTableHeadCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsTableHeadCell, selector: "qds-table-head-cell", inputs: { abbr: "abbr", colSpan: "colSpan", rowSpan: "rowSpan", scope: "scope" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
492
|
+
QdsTableHeadCell = __decorate([
|
|
493
|
+
ProxyCmp({
|
|
494
|
+
defineCustomElementFn: defineQdsTableHeadCell,
|
|
495
|
+
inputs: ['abbr', 'colSpan', 'rowSpan', 'scope']
|
|
496
|
+
}),
|
|
497
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
498
|
+
], QdsTableHeadCell);
|
|
499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTableHeadCell, decorators: [{
|
|
500
|
+
type: Component,
|
|
501
|
+
args: [{
|
|
502
|
+
selector: 'qds-table-head-cell',
|
|
503
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
504
|
+
template: '<ng-content></ng-content>',
|
|
505
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
506
|
+
inputs: ['abbr', 'colSpan', 'rowSpan', 'scope'],
|
|
507
|
+
}]
|
|
508
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
509
|
+
export let QdsTableRow = class QdsTableRow {
|
|
510
|
+
constructor(c, r, z) {
|
|
511
|
+
this.z = z;
|
|
512
|
+
c.detach();
|
|
513
|
+
this.el = r.nativeElement;
|
|
514
|
+
}
|
|
515
|
+
};
|
|
516
|
+
QdsTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
517
|
+
QdsTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsTableRow, selector: "qds-table-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
518
|
+
QdsTableRow = __decorate([
|
|
519
|
+
ProxyCmp({
|
|
520
|
+
defineCustomElementFn: defineQdsTableRow
|
|
521
|
+
}),
|
|
522
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
523
|
+
], QdsTableRow);
|
|
524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTableRow, decorators: [{
|
|
525
|
+
type: Component,
|
|
526
|
+
args: [{
|
|
527
|
+
selector: 'qds-table-row',
|
|
528
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
529
|
+
template: '<ng-content></ng-content>',
|
|
530
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
531
|
+
inputs: [],
|
|
532
|
+
}]
|
|
533
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
534
|
+
export let QdsTextarea = class QdsTextarea {
|
|
535
|
+
constructor(c, r, z) {
|
|
536
|
+
this.z = z;
|
|
537
|
+
c.detach();
|
|
538
|
+
this.el = r.nativeElement;
|
|
539
|
+
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus', 'qdsInput']);
|
|
540
|
+
}
|
|
541
|
+
};
|
|
542
|
+
QdsTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
543
|
+
QdsTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsTextarea, selector: "qds-textarea", inputs: { autoCapitalize: "autoCapitalize", autoComplete: "autoComplete", autoFocus: "autoFocus", cols: "cols", disabled: "disabled", enterkeyhint: "enterkeyhint", form: "form", inputmode: "inputmode", invalid: "invalid", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", rows: "rows", size: "size", spellCheck: "spellCheck", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
544
|
+
QdsTextarea = __decorate([
|
|
545
|
+
ProxyCmp({
|
|
546
|
+
defineCustomElementFn: defineQdsTextarea,
|
|
547
|
+
inputs: ['autoCapitalize', 'autoComplete', 'autoFocus', 'cols', 'disabled', 'enterkeyhint', 'form', 'inputmode', 'invalid', 'maxLength', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'rows', 'size', 'spellCheck', 'value', 'wrap'],
|
|
548
|
+
methods: ['reportValidity', 'select', 'setCustomValidity', 'setRangeText', 'setSelectionRange']
|
|
549
|
+
}),
|
|
550
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
551
|
+
], QdsTextarea);
|
|
552
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTextarea, decorators: [{
|
|
553
|
+
type: Component,
|
|
554
|
+
args: [{
|
|
555
|
+
selector: 'qds-textarea',
|
|
556
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
557
|
+
template: '<ng-content></ng-content>',
|
|
558
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
559
|
+
inputs: ['autoCapitalize', 'autoComplete', 'autoFocus', 'cols', 'disabled', 'enterkeyhint', 'form', 'inputmode', 'invalid', 'maxLength', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'rows', 'size', 'spellCheck', 'value', 'wrap'],
|
|
560
|
+
}]
|
|
561
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
562
|
+
export let QdsTitle = class QdsTitle {
|
|
563
|
+
constructor(c, r, z) {
|
|
564
|
+
this.z = z;
|
|
565
|
+
c.detach();
|
|
566
|
+
this.el = r.nativeElement;
|
|
567
|
+
}
|
|
568
|
+
};
|
|
569
|
+
QdsTitle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
570
|
+
QdsTitle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsTitle, selector: "qds-title", inputs: { iconLibrary: "iconLibrary", iconName: "iconName", kicker: "kicker", layer: "layer", level: "level", subtitle: "subtitle", tag: "tag" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
233
571
|
QdsTitle = __decorate([
|
|
234
572
|
ProxyCmp({
|
|
235
573
|
defineCustomElementFn: defineQdsTitle,
|
|
236
574
|
inputs: ['iconLibrary', 'iconName', 'kicker', 'layer', 'level', 'subtitle', 'tag']
|
|
237
575
|
}),
|
|
238
|
-
Component({
|
|
239
|
-
selector: 'qds-title',
|
|
240
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
241
|
-
template: '<ng-content></ng-content>',
|
|
242
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
243
|
-
inputs: ['iconLibrary', 'iconName', 'kicker', 'layer', 'level', 'subtitle', 'tag'],
|
|
244
|
-
}),
|
|
245
576
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
246
577
|
], QdsTitle);
|
|
247
|
-
|
|
248
|
-
|
|
578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTitle, decorators: [{
|
|
579
|
+
type: Component,
|
|
580
|
+
args: [{
|
|
581
|
+
selector: 'qds-title',
|
|
582
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
583
|
+
template: '<ng-content></ng-content>',
|
|
584
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
585
|
+
inputs: ['iconLibrary', 'iconName', 'kicker', 'layer', 'level', 'subtitle', 'tag'],
|
|
586
|
+
}]
|
|
587
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
588
|
+
export let QdsTooltip = class QdsTooltip {
|
|
249
589
|
constructor(c, r, z) {
|
|
250
590
|
this.z = z;
|
|
251
591
|
c.detach();
|
|
@@ -253,20 +593,24 @@ let QdsTooltip = class QdsTooltip {
|
|
|
253
593
|
proxyOutputs(this, this.el, ['qdsClose']);
|
|
254
594
|
}
|
|
255
595
|
};
|
|
596
|
+
QdsTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
597
|
+
QdsTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.4", type: QdsTooltip, selector: "qds-tooltip", inputs: { autoUpdateOptions: "autoUpdateOptions", disabled: "disabled", flipOptions: "flipOptions", noFlip: "noFlip", noShift: "noShift", offsetOptions: "offsetOptions", placement: "placement", shiftOptions: "shiftOptions", strategy: "strategy", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
256
598
|
QdsTooltip = __decorate([
|
|
257
599
|
ProxyCmp({
|
|
258
600
|
defineCustomElementFn: defineQdsTooltip,
|
|
259
601
|
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', 'target'],
|
|
260
602
|
methods: ['show', 'close', 'updateArrow']
|
|
261
603
|
}),
|
|
262
|
-
Component({
|
|
263
|
-
selector: 'qds-tooltip',
|
|
264
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
265
|
-
template: '<ng-content></ng-content>',
|
|
266
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
267
|
-
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', 'target'],
|
|
268
|
-
}),
|
|
269
604
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
270
605
|
], QdsTooltip);
|
|
271
|
-
|
|
606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: QdsTooltip, decorators: [{
|
|
607
|
+
type: Component,
|
|
608
|
+
args: [{
|
|
609
|
+
selector: 'qds-tooltip',
|
|
610
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
611
|
+
template: '<ng-content></ng-content>',
|
|
612
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
613
|
+
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', 'target'],
|
|
614
|
+
}]
|
|
615
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
272
616
|
//# sourceMappingURL=proxies.js.map
|