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