@quartzds/core-angular 1.0.0-beta.21 → 1.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/generated/array.d.ts +1 -1
- package/lib/generated/array.d.ts.map +1 -1
- package/lib/generated/array.js +0 -11
- package/lib/generated/array.js.map +1 -1
- package/lib/generated/boolean-value-accessor.d.ts +0 -3
- package/lib/generated/boolean-value-accessor.d.ts.map +1 -1
- package/lib/generated/boolean-value-accessor.js +22 -28
- package/lib/generated/boolean-value-accessor.js.map +1 -1
- package/lib/generated/number-value-accessor.d.ts +0 -3
- package/lib/generated/number-value-accessor.d.ts.map +1 -1
- package/lib/generated/number-value-accessor.js +22 -28
- package/lib/generated/number-value-accessor.js.map +1 -1
- package/lib/generated/proxies.d.ts +7 -180
- package/lib/generated/proxies.d.ts.map +1 -1
- package/lib/generated/proxies.js +99 -443
- package/lib/generated/proxies.js.map +1 -1
- package/lib/generated/text-value-accessor.d.ts +0 -3
- package/lib/generated/text-value-accessor.d.ts.map +1 -1
- package/lib/generated/text-value-accessor.js +22 -28
- package/lib/generated/text-value-accessor.js.map +1 -1
- package/lib/generated/value-accessor.d.ts +0 -3
- package/lib/generated/value-accessor.d.ts.map +1 -1
- package/lib/generated/value-accessor.js +14 -12
- package/lib/generated/value-accessor.js.map +1 -1
- package/lib/quartz.module.d.ts +0 -10
- package/lib/quartz.module.d.ts.map +1 -1
- package/lib/quartz.module.js +11 -27
- package/lib/quartz.module.js.map +1 -1
- package/package.json +9 -14
- package/lib/generated/radio-value-accessor.d.ts +0 -9
- package/lib/generated/radio-value-accessor.d.ts.map +0 -1
- package/lib/generated/radio-value-accessor.js +0 -35
- package/lib/generated/radio-value-accessor.js.map +0 -1
- package/lib/generated/select-value-accessor.d.ts +0 -9
- package/lib/generated/select-value-accessor.d.ts.map +0 -1
- package/lib/generated/select-value-accessor.js +0 -35
- package/lib/generated/select-value-accessor.js.map +0 -1
package/lib/generated/proxies.js
CHANGED
|
@@ -5,28 +5,16 @@ 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';
|
|
10
8
|
import { defineCustomElement as defineQdsDropdown } from '@quartzds/core/components/qds-dropdown.js';
|
|
11
|
-
import { defineCustomElement as defineQdsFormMessage } from '@quartzds/core/components/qds-form-message.js';
|
|
12
9
|
import { defineCustomElement as defineQdsIcon } from '@quartzds/core/components/qds-icon.js';
|
|
13
10
|
import { defineCustomElement as defineQdsInlineLink } from '@quartzds/core/components/qds-inline-link.js';
|
|
14
11
|
import { defineCustomElement as defineQdsInput } from '@quartzds/core/components/qds-input.js';
|
|
15
12
|
import { defineCustomElement as defineQdsLabel } from '@quartzds/core/components/qds-label.js';
|
|
16
13
|
import { defineCustomElement as defineQdsRadio } from '@quartzds/core/components/qds-radio.js';
|
|
17
|
-
import { defineCustomElement as defineQdsSelect } from '@quartzds/core/components/qds-select.js';
|
|
18
14
|
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';
|
|
26
15
|
import { defineCustomElement as defineQdsTitle } from '@quartzds/core/components/qds-title.js';
|
|
27
16
|
import { defineCustomElement as defineQdsTooltip } from '@quartzds/core/components/qds-tooltip.js';
|
|
28
|
-
|
|
29
|
-
export let QdsButton = class QdsButton {
|
|
17
|
+
let QdsButton = class QdsButton {
|
|
30
18
|
constructor(c, r, z) {
|
|
31
19
|
this.z = z;
|
|
32
20
|
c.detach();
|
|
@@ -34,26 +22,22 @@ export let QdsButton = class QdsButton {
|
|
|
34
22
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
35
23
|
}
|
|
36
24
|
};
|
|
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 });
|
|
39
25
|
QdsButton = __decorate([
|
|
40
26
|
ProxyCmp({
|
|
41
27
|
defineCustomElementFn: defineQdsButton,
|
|
42
28
|
inputs: ['disabled', 'download', 'form', 'formAction', 'formMethod', 'formNoValidate', 'formTarget', 'href', 'iconLibrary', 'iconName', 'importance', 'name', 'size', 'target', 'text', 'type', 'value']
|
|
43
29
|
}),
|
|
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
|
+
}),
|
|
44
37
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
45
38
|
], QdsButton);
|
|
46
|
-
|
|
47
|
-
|
|
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 {
|
|
39
|
+
export { QdsButton };
|
|
40
|
+
let QdsCheckbox = class QdsCheckbox {
|
|
57
41
|
constructor(c, r, z) {
|
|
58
42
|
this.z = z;
|
|
59
43
|
c.detach();
|
|
@@ -61,81 +45,23 @@ export let QdsCheckbox = class QdsCheckbox {
|
|
|
61
45
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus']);
|
|
62
46
|
}
|
|
63
47
|
};
|
|
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 });
|
|
66
48
|
QdsCheckbox = __decorate([
|
|
67
49
|
ProxyCmp({
|
|
68
50
|
defineCustomElementFn: defineQdsCheckbox,
|
|
69
51
|
inputs: ['autoFocus', 'checked', 'disabled', 'form', 'indeterminate', 'inline', 'name', 'required', 'size', 'text', 'value'],
|
|
70
52
|
methods: ['checkValidity', 'reportValidity', 'setCustomValidity']
|
|
71
53
|
}),
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
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']
|
|
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'],
|
|
125
60
|
}),
|
|
126
61
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
127
|
-
],
|
|
128
|
-
|
|
129
|
-
|
|
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 {
|
|
62
|
+
], QdsCheckbox);
|
|
63
|
+
export { QdsCheckbox };
|
|
64
|
+
let QdsDropdown = class QdsDropdown {
|
|
139
65
|
constructor(c, r, z) {
|
|
140
66
|
this.z = z;
|
|
141
67
|
c.detach();
|
|
@@ -143,53 +69,23 @@ export let QdsDropdown = class QdsDropdown {
|
|
|
143
69
|
proxyOutputs(this, this.el, ['qdsCancel', 'qdsClose']);
|
|
144
70
|
}
|
|
145
71
|
};
|
|
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 });
|
|
148
72
|
QdsDropdown = __decorate([
|
|
149
73
|
ProxyCmp({
|
|
150
74
|
defineCustomElementFn: defineQdsDropdown,
|
|
151
75
|
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', 'target'],
|
|
152
76
|
methods: ['show', 'close', 'update']
|
|
153
77
|
}),
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
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']
|
|
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'],
|
|
179
84
|
}),
|
|
180
85
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
181
|
-
],
|
|
182
|
-
|
|
183
|
-
|
|
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 {
|
|
86
|
+
], QdsDropdown);
|
|
87
|
+
export { QdsDropdown };
|
|
88
|
+
let QdsIcon = class QdsIcon {
|
|
193
89
|
constructor(c, r, z) {
|
|
194
90
|
this.z = z;
|
|
195
91
|
c.detach();
|
|
@@ -197,26 +93,22 @@ export let QdsIcon = class QdsIcon {
|
|
|
197
93
|
proxyOutputs(this, this.el, ['qdsLoad', 'qdsError']);
|
|
198
94
|
}
|
|
199
95
|
};
|
|
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 });
|
|
202
96
|
QdsIcon = __decorate([
|
|
203
97
|
ProxyCmp({
|
|
204
98
|
defineCustomElementFn: defineQdsIcon,
|
|
205
99
|
inputs: ['library', 'name']
|
|
206
100
|
}),
|
|
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
|
+
}),
|
|
207
108
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
208
109
|
], QdsIcon);
|
|
209
|
-
|
|
210
|
-
|
|
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 {
|
|
110
|
+
export { QdsIcon };
|
|
111
|
+
let QdsInlineLink = class QdsInlineLink {
|
|
220
112
|
constructor(c, r, z) {
|
|
221
113
|
this.z = z;
|
|
222
114
|
c.detach();
|
|
@@ -224,26 +116,22 @@ export let QdsInlineLink = class QdsInlineLink {
|
|
|
224
116
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
225
117
|
}
|
|
226
118
|
};
|
|
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 });
|
|
229
119
|
QdsInlineLink = __decorate([
|
|
230
120
|
ProxyCmp({
|
|
231
121
|
defineCustomElementFn: defineQdsInlineLink,
|
|
232
122
|
inputs: ['disabled', 'download', 'href', 'hreflang', 'referrerPolicy', 'rel', 'target']
|
|
233
123
|
}),
|
|
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
|
+
}),
|
|
234
131
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
235
132
|
], QdsInlineLink);
|
|
236
|
-
|
|
237
|
-
|
|
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 {
|
|
133
|
+
export { QdsInlineLink };
|
|
134
|
+
let QdsInput = class QdsInput {
|
|
247
135
|
constructor(c, r, z) {
|
|
248
136
|
this.z = z;
|
|
249
137
|
c.detach();
|
|
@@ -251,53 +139,45 @@ export let QdsInput = class QdsInput {
|
|
|
251
139
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus', 'qdsInput']);
|
|
252
140
|
}
|
|
253
141
|
};
|
|
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 });
|
|
256
142
|
QdsInput = __decorate([
|
|
257
143
|
ProxyCmp({
|
|
258
144
|
defineCustomElementFn: defineQdsInput,
|
|
259
145
|
inputs: ['autoCapitalize', 'autoComplete', 'autoFocus', 'disabled', 'enterkeyhint', 'form', 'inputmode', 'invalid', 'max', 'maxLength', 'min', 'minLength', 'multiple', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'size', 'spellCheck', 'step', 'type', 'value'],
|
|
260
146
|
methods: ['reportValidity', 'select', 'setCustomValidity', 'setRangeText', 'setSelectionRange', 'stepDown', 'stepUp']
|
|
261
147
|
}),
|
|
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
|
+
}),
|
|
262
155
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
263
156
|
], QdsInput);
|
|
264
|
-
|
|
265
|
-
|
|
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 {
|
|
157
|
+
export { QdsInput };
|
|
158
|
+
let QdsLabel = class QdsLabel {
|
|
275
159
|
constructor(c, r, z) {
|
|
276
160
|
this.z = z;
|
|
277
161
|
c.detach();
|
|
278
162
|
this.el = r.nativeElement;
|
|
279
163
|
}
|
|
280
164
|
};
|
|
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 });
|
|
283
165
|
QdsLabel = __decorate([
|
|
284
166
|
ProxyCmp({
|
|
285
167
|
defineCustomElementFn: defineQdsLabel,
|
|
286
168
|
inputs: ['inline', 'required', 'size', 'text']
|
|
287
169
|
}),
|
|
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
|
+
}),
|
|
288
177
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
289
178
|
], QdsLabel);
|
|
290
|
-
|
|
291
|
-
|
|
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 {
|
|
179
|
+
export { QdsLabel };
|
|
180
|
+
let QdsRadio = class QdsRadio {
|
|
301
181
|
constructor(c, r, z) {
|
|
302
182
|
this.z = z;
|
|
303
183
|
c.detach();
|
|
@@ -305,54 +185,22 @@ export let QdsRadio = class QdsRadio {
|
|
|
305
185
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus']);
|
|
306
186
|
}
|
|
307
187
|
};
|
|
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 });
|
|
310
188
|
QdsRadio = __decorate([
|
|
311
189
|
ProxyCmp({
|
|
312
190
|
defineCustomElementFn: defineQdsRadio,
|
|
313
191
|
inputs: ['checked', 'disabled', 'form', 'inline', 'name', 'required', 'size', 'text', 'value']
|
|
314
192
|
}),
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
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']
|
|
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'],
|
|
342
199
|
}),
|
|
343
200
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
344
|
-
],
|
|
345
|
-
|
|
346
|
-
|
|
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 {
|
|
201
|
+
], QdsRadio);
|
|
202
|
+
export { QdsRadio };
|
|
203
|
+
let QdsSwitch = class QdsSwitch {
|
|
356
204
|
constructor(c, r, z) {
|
|
357
205
|
this.z = z;
|
|
358
206
|
c.detach();
|
|
@@ -360,232 +208,44 @@ export let QdsSwitch = class QdsSwitch {
|
|
|
360
208
|
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus']);
|
|
361
209
|
}
|
|
362
210
|
};
|
|
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 });
|
|
365
211
|
QdsSwitch = __decorate([
|
|
366
212
|
ProxyCmp({
|
|
367
213
|
defineCustomElementFn: defineQdsSwitch,
|
|
368
214
|
inputs: ['autoFocus', 'checked', 'disabled', 'form', 'iconCheckedLibrary', 'iconCheckedName', 'iconUncheckedLibrary', 'iconUncheckedName', 'inline', 'name', 'size', 'textChecked', 'textUnchecked', 'value']
|
|
369
215
|
}),
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
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
|
|
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'],
|
|
394
222
|
}),
|
|
395
223
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
396
|
-
],
|
|
397
|
-
|
|
398
|
-
|
|
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 {
|
|
408
|
-
constructor(c, r, z) {
|
|
409
|
-
this.z = z;
|
|
410
|
-
c.detach();
|
|
411
|
-
this.el = r.nativeElement;
|
|
412
|
-
}
|
|
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 {
|
|
224
|
+
], QdsSwitch);
|
|
225
|
+
export { QdsSwitch };
|
|
226
|
+
let QdsTitle = class QdsTitle {
|
|
563
227
|
constructor(c, r, z) {
|
|
564
228
|
this.z = z;
|
|
565
229
|
c.detach();
|
|
566
230
|
this.el = r.nativeElement;
|
|
567
231
|
}
|
|
568
232
|
};
|
|
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 });
|
|
571
233
|
QdsTitle = __decorate([
|
|
572
234
|
ProxyCmp({
|
|
573
235
|
defineCustomElementFn: defineQdsTitle,
|
|
574
236
|
inputs: ['iconLibrary', 'iconName', 'kicker', 'layer', 'level', 'subtitle', 'tag']
|
|
575
237
|
}),
|
|
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
|
+
}),
|
|
576
245
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
577
246
|
], QdsTitle);
|
|
578
|
-
|
|
579
|
-
|
|
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 {
|
|
247
|
+
export { QdsTitle };
|
|
248
|
+
let QdsTooltip = class QdsTooltip {
|
|
589
249
|
constructor(c, r, z) {
|
|
590
250
|
this.z = z;
|
|
591
251
|
c.detach();
|
|
@@ -593,24 +253,20 @@ export let QdsTooltip = class QdsTooltip {
|
|
|
593
253
|
proxyOutputs(this, this.el, ['qdsClose']);
|
|
594
254
|
}
|
|
595
255
|
};
|
|
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 });
|
|
598
256
|
QdsTooltip = __decorate([
|
|
599
257
|
ProxyCmp({
|
|
600
258
|
defineCustomElementFn: defineQdsTooltip,
|
|
601
259
|
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', 'target'],
|
|
602
260
|
methods: ['show', 'close', 'updateArrow']
|
|
603
261
|
}),
|
|
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
|
+
}),
|
|
604
269
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
605
270
|
], QdsTooltip);
|
|
606
|
-
|
|
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 }]; } });
|
|
271
|
+
export { QdsTooltip };
|
|
616
272
|
//# sourceMappingURL=proxies.js.map
|