@quartzds/core-angular 1.0.0-beta.114 → 1.0.0-beta.116
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/CHANGELOG.md +30 -0
- package/lib/generated/angular-component-lib/utils.d.ts.map +1 -1
- package/lib/generated/array.d.ts +1 -1
- package/lib/generated/array.js +1 -1
- package/lib/generated/array.js.map +1 -1
- package/lib/generated/boolean-value-accessor.js +5 -5
- package/lib/generated/boolean-value-accessor.js.map +1 -1
- package/lib/generated/number-value-accessor.js +5 -5
- package/lib/generated/number-value-accessor.js.map +1 -1
- package/lib/generated/proxies.d.ts +94 -41
- package/lib/generated/proxies.d.ts.map +1 -1
- package/lib/generated/proxies.js +364 -226
- package/lib/generated/proxies.js.map +1 -1
- package/lib/generated/radio-value-accessor.js +5 -5
- package/lib/generated/radio-value-accessor.js.map +1 -1
- package/lib/generated/select-value-accessor.js +5 -5
- package/lib/generated/select-value-accessor.js.map +1 -1
- package/lib/generated/text-value-accessor.js +5 -5
- package/lib/generated/text-value-accessor.js.map +1 -1
- package/lib/generated/value-accessor.d.ts +1 -1
- package/lib/generated/value-accessor.js +3 -3
- package/lib/generated/value-accessor.js.map +1 -1
- package/lib/quartz.module.d.ts +1 -1
- package/lib/quartz.module.js +5 -5
- package/lib/quartz.module.js.map +1 -1
- package/package.json +7 -7
package/lib/generated/proxies.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { __decorate, __metadata } from "tslib";
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* auto-generated angular directive proxies */
|
|
4
|
-
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone } from '@angular/core';
|
|
5
|
-
import { ProxyCmp
|
|
4
|
+
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Output, NgZone } from '@angular/core';
|
|
5
|
+
import { ProxyCmp } from './angular-component-lib/utils';
|
|
6
6
|
import { defineCustomElement as defineQdsActionItem } from '@quartzds/core/components/qds-action-item.js';
|
|
7
|
+
import { defineCustomElement as defineQdsAvatarMedia } from '@quartzds/core/components/qds-avatar-media.js';
|
|
7
8
|
import { defineCustomElement as defineQdsBadgeCounter } from '@quartzds/core/components/qds-badge-counter.js';
|
|
8
9
|
import { defineCustomElement as defineQdsBadgeIndicator } from '@quartzds/core/components/qds-badge-indicator.js';
|
|
9
10
|
import { defineCustomElement as defineQdsBreadcrumbItem } from '@quartzds/core/components/qds-breadcrumb-item.js';
|
|
@@ -23,7 +24,6 @@ import { defineCustomElement as defineQdsListItem } from '@quartzds/core/compone
|
|
|
23
24
|
import { defineCustomElement as defineQdsLoader } from '@quartzds/core/components/qds-loader.js';
|
|
24
25
|
import { defineCustomElement as defineQdsMenuItem } from '@quartzds/core/components/qds-menu-item.js';
|
|
25
26
|
import { defineCustomElement as defineQdsMiniButton } from '@quartzds/core/components/qds-mini-button.js';
|
|
26
|
-
import { defineCustomElement as defineQdsNavListItem } from '@quartzds/core/components/qds-nav-list-item.js';
|
|
27
27
|
import { defineCustomElement as defineQdsProgressBar } from '@quartzds/core/components/qds-progress-bar.js';
|
|
28
28
|
import { defineCustomElement as defineQdsRadio } from '@quartzds/core/components/qds-radio.js';
|
|
29
29
|
import { defineCustomElement as defineQdsSelect } from '@quartzds/core/components/qds-select.js';
|
|
@@ -43,13 +43,14 @@ import * as i0 from "@angular/core";
|
|
|
43
43
|
let QdsActionItem = class QdsActionItem {
|
|
44
44
|
constructor(c, r, z) {
|
|
45
45
|
this.z = z;
|
|
46
|
+
this.qdsBlur = new EventEmitter();
|
|
47
|
+
this.qdsFocus = new EventEmitter();
|
|
46
48
|
c.detach();
|
|
47
49
|
this.el = r.nativeElement;
|
|
48
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
49
50
|
}
|
|
50
51
|
};
|
|
51
|
-
QdsActionItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
52
|
-
QdsActionItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
52
|
+
QdsActionItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsActionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
53
|
+
QdsActionItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsActionItem, isStandalone: true, selector: "qds-action-item", inputs: { action: "action", actionDescription: "actionDescription", disabled: "disabled", iconLibrary: "iconLibrary", iconName: "iconName", importance: "importance", size: "size", text: "text" }, outputs: { qdsBlur: "qdsBlur", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
53
54
|
QdsActionItem = __decorate([
|
|
54
55
|
ProxyCmp({
|
|
55
56
|
defineCustomElementFn: defineQdsActionItem,
|
|
@@ -58,17 +59,52 @@ QdsActionItem = __decorate([
|
|
|
58
59
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
59
60
|
], QdsActionItem);
|
|
60
61
|
export { QdsActionItem };
|
|
61
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
62
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsActionItem, decorators: [{
|
|
62
63
|
type: Component,
|
|
63
64
|
args: [{
|
|
64
65
|
selector: 'qds-action-item',
|
|
65
66
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
66
67
|
template: '<ng-content></ng-content>',
|
|
67
68
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
68
|
-
inputs: ['action', 'actionDescription', 'disabled', 'iconLibrary', 'iconName', 'importance', 'size', 'text'],
|
|
69
|
-
|
|
69
|
+
inputs: ['action', 'actionDescription', 'disabled', 'iconLibrary', 'iconName', 'importance', 'size', { name: 'text', required: true }],
|
|
70
|
+
outputs: ['qdsBlur', 'qdsFocus'],
|
|
70
71
|
}]
|
|
71
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
72
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
73
|
+
type: Output
|
|
74
|
+
}], qdsFocus: [{
|
|
75
|
+
type: Output
|
|
76
|
+
}] } });
|
|
77
|
+
let QdsAvatarMedia = class QdsAvatarMedia {
|
|
78
|
+
constructor(c, r, z) {
|
|
79
|
+
this.z = z;
|
|
80
|
+
this.qdsError = new EventEmitter();
|
|
81
|
+
c.detach();
|
|
82
|
+
this.el = r.nativeElement;
|
|
83
|
+
}
|
|
84
|
+
};
|
|
85
|
+
QdsAvatarMedia.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsAvatarMedia, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
86
|
+
QdsAvatarMedia.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsAvatarMedia, isStandalone: true, selector: "qds-avatar-media", inputs: { alt: "alt", iconLibrary: "iconLibrary", iconName: "iconName", src: "src", text: "text" }, outputs: { qdsError: "qdsError" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
87
|
+
QdsAvatarMedia = __decorate([
|
|
88
|
+
ProxyCmp({
|
|
89
|
+
defineCustomElementFn: defineQdsAvatarMedia,
|
|
90
|
+
inputs: ['alt', 'iconLibrary', 'iconName', 'src', 'text']
|
|
91
|
+
}),
|
|
92
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
93
|
+
], QdsAvatarMedia);
|
|
94
|
+
export { QdsAvatarMedia };
|
|
95
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsAvatarMedia, decorators: [{
|
|
96
|
+
type: Component,
|
|
97
|
+
args: [{
|
|
98
|
+
selector: 'qds-avatar-media',
|
|
99
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
100
|
+
template: '<ng-content></ng-content>',
|
|
101
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
102
|
+
inputs: ['alt', 'iconLibrary', 'iconName', 'src', 'text'],
|
|
103
|
+
outputs: ['qdsError'],
|
|
104
|
+
}]
|
|
105
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsError: [{
|
|
106
|
+
type: Output
|
|
107
|
+
}] } });
|
|
72
108
|
let QdsBadgeCounter = class QdsBadgeCounter {
|
|
73
109
|
constructor(c, r, z) {
|
|
74
110
|
this.z = z;
|
|
@@ -76,8 +112,8 @@ let QdsBadgeCounter = class QdsBadgeCounter {
|
|
|
76
112
|
this.el = r.nativeElement;
|
|
77
113
|
}
|
|
78
114
|
};
|
|
79
|
-
QdsBadgeCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
80
|
-
QdsBadgeCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
115
|
+
QdsBadgeCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsBadgeCounter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
116
|
+
QdsBadgeCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsBadgeCounter, isStandalone: true, selector: "qds-badge-counter", inputs: { description: "description", importance: "importance", size: "size", strokeRing: "strokeRing", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
81
117
|
QdsBadgeCounter = __decorate([
|
|
82
118
|
ProxyCmp({
|
|
83
119
|
defineCustomElementFn: defineQdsBadgeCounter,
|
|
@@ -86,15 +122,14 @@ QdsBadgeCounter = __decorate([
|
|
|
86
122
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
87
123
|
], QdsBadgeCounter);
|
|
88
124
|
export { QdsBadgeCounter };
|
|
89
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsBadgeCounter, decorators: [{
|
|
90
126
|
type: Component,
|
|
91
127
|
args: [{
|
|
92
128
|
selector: 'qds-badge-counter',
|
|
93
129
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
94
130
|
template: '<ng-content></ng-content>',
|
|
95
131
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
96
|
-
inputs: ['description', 'importance', 'size', 'strokeRing', 'value'],
|
|
97
|
-
standalone: true
|
|
132
|
+
inputs: ['description', 'importance', 'size', 'strokeRing', { name: 'value', required: true }],
|
|
98
133
|
}]
|
|
99
134
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
100
135
|
let QdsBadgeIndicator = class QdsBadgeIndicator {
|
|
@@ -104,8 +139,8 @@ let QdsBadgeIndicator = class QdsBadgeIndicator {
|
|
|
104
139
|
this.el = r.nativeElement;
|
|
105
140
|
}
|
|
106
141
|
};
|
|
107
|
-
QdsBadgeIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
108
|
-
QdsBadgeIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
142
|
+
QdsBadgeIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsBadgeIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
143
|
+
QdsBadgeIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsBadgeIndicator, isStandalone: true, selector: "qds-badge-indicator", inputs: { description: "description", size: "size", status: "status", strokeRing: "strokeRing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
109
144
|
QdsBadgeIndicator = __decorate([
|
|
110
145
|
ProxyCmp({
|
|
111
146
|
defineCustomElementFn: defineQdsBadgeIndicator,
|
|
@@ -114,7 +149,7 @@ QdsBadgeIndicator = __decorate([
|
|
|
114
149
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
115
150
|
], QdsBadgeIndicator);
|
|
116
151
|
export { QdsBadgeIndicator };
|
|
117
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
152
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsBadgeIndicator, decorators: [{
|
|
118
153
|
type: Component,
|
|
119
154
|
args: [{
|
|
120
155
|
selector: 'qds-badge-indicator',
|
|
@@ -122,7 +157,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
122
157
|
template: '<ng-content></ng-content>',
|
|
123
158
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
124
159
|
inputs: ['description', 'size', 'status', 'strokeRing'],
|
|
125
|
-
standalone: true
|
|
126
160
|
}]
|
|
127
161
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
128
162
|
let QdsBreadcrumbItem = class QdsBreadcrumbItem {
|
|
@@ -132,8 +166,8 @@ let QdsBreadcrumbItem = class QdsBreadcrumbItem {
|
|
|
132
166
|
this.el = r.nativeElement;
|
|
133
167
|
}
|
|
134
168
|
};
|
|
135
|
-
QdsBreadcrumbItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
136
|
-
QdsBreadcrumbItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
169
|
+
QdsBreadcrumbItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
170
|
+
QdsBreadcrumbItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsBreadcrumbItem, isStandalone: true, selector: "qds-breadcrumb-item", inputs: { disabled: "disabled", href: "href", hreflang: "hreflang", iconLibrary: "iconLibrary", iconName: "iconName", referrerPolicy: "referrerPolicy", rel: "rel", target: "target", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
137
171
|
QdsBreadcrumbItem = __decorate([
|
|
138
172
|
ProxyCmp({
|
|
139
173
|
defineCustomElementFn: defineQdsBreadcrumbItem,
|
|
@@ -142,27 +176,27 @@ QdsBreadcrumbItem = __decorate([
|
|
|
142
176
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
143
177
|
], QdsBreadcrumbItem);
|
|
144
178
|
export { QdsBreadcrumbItem };
|
|
145
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsBreadcrumbItem, decorators: [{
|
|
146
180
|
type: Component,
|
|
147
181
|
args: [{
|
|
148
182
|
selector: 'qds-breadcrumb-item',
|
|
149
183
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
150
184
|
template: '<ng-content></ng-content>',
|
|
151
185
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
152
|
-
inputs: ['disabled', 'href', 'hreflang', 'iconLibrary', 'iconName', 'referrerPolicy', 'rel', 'target', 'text'],
|
|
153
|
-
standalone: true
|
|
186
|
+
inputs: ['disabled', 'href', 'hreflang', 'iconLibrary', 'iconName', 'referrerPolicy', 'rel', 'target', { name: 'text', required: true }],
|
|
154
187
|
}]
|
|
155
188
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
156
189
|
let QdsButton = class QdsButton {
|
|
157
190
|
constructor(c, r, z) {
|
|
158
191
|
this.z = z;
|
|
192
|
+
this.qdsBlur = new EventEmitter();
|
|
193
|
+
this.qdsFocus = new EventEmitter();
|
|
159
194
|
c.detach();
|
|
160
195
|
this.el = r.nativeElement;
|
|
161
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
162
196
|
}
|
|
163
197
|
};
|
|
164
|
-
QdsButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
165
|
-
QdsButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
198
|
+
QdsButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
199
|
+
QdsButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsButton, isStandalone: true, selector: "qds-button", inputs: { action: "action", badge: "badge", badgeDescription: "badgeDescription", badgeIndicatorStatus: "badgeIndicatorStatus", disabled: "disabled", download: "download", form: "form", formAction: "formAction", formMethod: "formMethod", formNoValidate: "formNoValidate", formTarget: "formTarget", href: "href", iconLibrary: "iconLibrary", iconName: "iconName", iconOnly: "iconOnly", importance: "importance", labels: "labels", name: "name", rel: "rel", size: "size", target: "target", text: "text", tooltipPlacement: "tooltipPlacement", type: "type", validationMessage: "validationMessage", validity: "validity", value: "value", willValidate: "willValidate" }, outputs: { qdsBlur: "qdsBlur", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
166
200
|
QdsButton = __decorate([
|
|
167
201
|
ProxyCmp({
|
|
168
202
|
defineCustomElementFn: defineQdsButton,
|
|
@@ -171,27 +205,33 @@ QdsButton = __decorate([
|
|
|
171
205
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
172
206
|
], QdsButton);
|
|
173
207
|
export { QdsButton };
|
|
174
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsButton, decorators: [{
|
|
175
209
|
type: Component,
|
|
176
210
|
args: [{
|
|
177
211
|
selector: 'qds-button',
|
|
178
212
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
179
213
|
template: '<ng-content></ng-content>',
|
|
180
214
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
181
|
-
inputs: ['action', 'badge', 'badgeDescription', 'badgeIndicatorStatus', 'disabled', 'download', 'form', 'formAction', 'formMethod', 'formNoValidate', 'formTarget', 'href', 'iconLibrary', 'iconName', 'iconOnly', 'importance', 'labels', 'name', 'rel', 'size', 'target', 'text', 'tooltipPlacement', 'type', 'validationMessage', 'validity', 'value', 'willValidate'],
|
|
182
|
-
|
|
215
|
+
inputs: ['action', 'badge', 'badgeDescription', 'badgeIndicatorStatus', 'disabled', 'download', 'form', 'formAction', 'formMethod', 'formNoValidate', 'formTarget', 'href', 'iconLibrary', 'iconName', 'iconOnly', 'importance', 'labels', 'name', 'rel', 'size', 'target', { name: 'text', required: true }, 'tooltipPlacement', 'type', 'validationMessage', 'validity', 'value', 'willValidate'],
|
|
216
|
+
outputs: ['qdsBlur', 'qdsFocus'],
|
|
183
217
|
}]
|
|
184
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
218
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
219
|
+
type: Output
|
|
220
|
+
}], qdsFocus: [{
|
|
221
|
+
type: Output
|
|
222
|
+
}] } });
|
|
185
223
|
let QdsCheckbox = class QdsCheckbox {
|
|
186
224
|
constructor(c, r, z) {
|
|
187
225
|
this.z = z;
|
|
226
|
+
this.qdsBlur = new EventEmitter();
|
|
227
|
+
this.qdsChange = new EventEmitter();
|
|
228
|
+
this.qdsFocus = new EventEmitter();
|
|
188
229
|
c.detach();
|
|
189
230
|
this.el = r.nativeElement;
|
|
190
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus']);
|
|
191
231
|
}
|
|
192
232
|
};
|
|
193
|
-
QdsCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
194
|
-
QdsCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
233
|
+
QdsCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
234
|
+
QdsCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsCheckbox, isStandalone: true, selector: "qds-checkbox", inputs: { checkboxOnly: "checkboxOnly", 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" }, outputs: { qdsBlur: "qdsBlur", qdsChange: "qdsChange", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
195
235
|
QdsCheckbox = __decorate([
|
|
196
236
|
ProxyCmp({
|
|
197
237
|
defineCustomElementFn: defineQdsCheckbox,
|
|
@@ -200,27 +240,36 @@ QdsCheckbox = __decorate([
|
|
|
200
240
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
201
241
|
], QdsCheckbox);
|
|
202
242
|
export { QdsCheckbox };
|
|
203
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsCheckbox, decorators: [{
|
|
204
244
|
type: Component,
|
|
205
245
|
args: [{
|
|
206
246
|
selector: 'qds-checkbox',
|
|
207
247
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
208
248
|
template: '<ng-content></ng-content>',
|
|
209
249
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
210
|
-
inputs: ['checkboxOnly', 'checked', 'disabled', 'form', 'indeterminate', 'inline', 'name', 'required', 'size', 'text', 'validationMessage', 'validity', 'value', 'willValidate'],
|
|
211
|
-
|
|
250
|
+
inputs: ['checkboxOnly', 'checked', 'disabled', 'form', 'indeterminate', 'inline', 'name', 'required', 'size', { name: 'text', required: true }, 'validationMessage', 'validity', 'value', 'willValidate'],
|
|
251
|
+
outputs: ['qdsBlur', 'qdsChange', 'qdsFocus'],
|
|
212
252
|
}]
|
|
213
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
253
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
254
|
+
type: Output
|
|
255
|
+
}], qdsChange: [{
|
|
256
|
+
type: Output
|
|
257
|
+
}], qdsFocus: [{
|
|
258
|
+
type: Output
|
|
259
|
+
}] } });
|
|
214
260
|
let QdsChip = class QdsChip {
|
|
215
261
|
constructor(c, r, z) {
|
|
216
262
|
this.z = z;
|
|
263
|
+
this.qdsBlur = new EventEmitter();
|
|
264
|
+
this.qdsFocus = new EventEmitter();
|
|
265
|
+
this.qdsClose = new EventEmitter();
|
|
266
|
+
this.qdsChange = new EventEmitter();
|
|
217
267
|
c.detach();
|
|
218
268
|
this.el = r.nativeElement;
|
|
219
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus', 'qdsClose', 'qdsChange']);
|
|
220
269
|
}
|
|
221
270
|
};
|
|
222
|
-
QdsChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
223
|
-
QdsChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
271
|
+
QdsChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
272
|
+
QdsChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsChip, isStandalone: true, selector: "qds-chip", inputs: { checked: "checked", disabled: "disabled", form: "form", iconLibrary: "iconLibrary", iconName: "iconName", name: "name", size: "size", text: "text", type: "type", value: "value" }, outputs: { qdsBlur: "qdsBlur", qdsFocus: "qdsFocus", qdsClose: "qdsClose", qdsChange: "qdsChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
224
273
|
QdsChip = __decorate([
|
|
225
274
|
ProxyCmp({
|
|
226
275
|
defineCustomElementFn: defineQdsChip,
|
|
@@ -229,7 +278,7 @@ QdsChip = __decorate([
|
|
|
229
278
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
230
279
|
], QdsChip);
|
|
231
280
|
export { QdsChip };
|
|
232
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
281
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsChip, decorators: [{
|
|
233
282
|
type: Component,
|
|
234
283
|
args: [{
|
|
235
284
|
selector: 'qds-chip',
|
|
@@ -237,19 +286,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
237
286
|
template: '<ng-content></ng-content>',
|
|
238
287
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
239
288
|
inputs: ['checked', 'disabled', 'form', 'iconLibrary', 'iconName', 'name', 'size', 'text', 'type', 'value'],
|
|
240
|
-
|
|
289
|
+
outputs: ['qdsBlur', 'qdsFocus', 'qdsClose', 'qdsChange'],
|
|
241
290
|
}]
|
|
242
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
291
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
292
|
+
type: Output
|
|
293
|
+
}], qdsFocus: [{
|
|
294
|
+
type: Output
|
|
295
|
+
}], qdsClose: [{
|
|
296
|
+
type: Output
|
|
297
|
+
}], qdsChange: [{
|
|
298
|
+
type: Output
|
|
299
|
+
}] } });
|
|
243
300
|
let QdsDialog = class QdsDialog {
|
|
244
301
|
constructor(c, r, z) {
|
|
245
302
|
this.z = z;
|
|
303
|
+
this.qdsCancel = new EventEmitter();
|
|
304
|
+
this.qdsClose = new EventEmitter();
|
|
246
305
|
c.detach();
|
|
247
306
|
this.el = r.nativeElement;
|
|
248
|
-
proxyOutputs(this, this.el, ['qdsCancel', 'qdsClose']);
|
|
249
307
|
}
|
|
250
308
|
};
|
|
251
|
-
QdsDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
252
|
-
QdsDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
309
|
+
QdsDialog.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
310
|
+
QdsDialog.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsDialog, isStandalone: true, selector: "qds-dialog", inputs: { closable: "closable", open: "open" }, outputs: { qdsCancel: "qdsCancel", qdsClose: "qdsClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
253
311
|
QdsDialog = __decorate([
|
|
254
312
|
ProxyCmp({
|
|
255
313
|
defineCustomElementFn: defineQdsDialog,
|
|
@@ -258,7 +316,7 @@ QdsDialog = __decorate([
|
|
|
258
316
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
259
317
|
], QdsDialog);
|
|
260
318
|
export { QdsDialog };
|
|
261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsDialog, decorators: [{
|
|
262
320
|
type: Component,
|
|
263
321
|
args: [{
|
|
264
322
|
selector: 'qds-dialog',
|
|
@@ -266,9 +324,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
266
324
|
template: '<ng-content></ng-content>',
|
|
267
325
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
268
326
|
inputs: ['closable', 'open'],
|
|
269
|
-
|
|
327
|
+
outputs: ['qdsCancel', 'qdsClose'],
|
|
270
328
|
}]
|
|
271
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
329
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsCancel: [{
|
|
330
|
+
type: Output
|
|
331
|
+
}], qdsClose: [{
|
|
332
|
+
type: Output
|
|
333
|
+
}] } });
|
|
272
334
|
let QdsDivider = class QdsDivider {
|
|
273
335
|
constructor(c, r, z) {
|
|
274
336
|
this.z = z;
|
|
@@ -276,8 +338,8 @@ let QdsDivider = class QdsDivider {
|
|
|
276
338
|
this.el = r.nativeElement;
|
|
277
339
|
}
|
|
278
340
|
};
|
|
279
|
-
QdsDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
280
|
-
QdsDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
341
|
+
QdsDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
342
|
+
QdsDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsDivider, isStandalone: true, selector: "qds-divider", inputs: { importance: "importance", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
281
343
|
QdsDivider = __decorate([
|
|
282
344
|
ProxyCmp({
|
|
283
345
|
defineCustomElementFn: defineQdsDivider,
|
|
@@ -286,7 +348,7 @@ QdsDivider = __decorate([
|
|
|
286
348
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
287
349
|
], QdsDivider);
|
|
288
350
|
export { QdsDivider };
|
|
289
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsDivider, decorators: [{
|
|
290
352
|
type: Component,
|
|
291
353
|
args: [{
|
|
292
354
|
selector: 'qds-divider',
|
|
@@ -294,19 +356,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
294
356
|
template: '<ng-content></ng-content>',
|
|
295
357
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
296
358
|
inputs: ['importance', 'vertical'],
|
|
297
|
-
standalone: true
|
|
298
359
|
}]
|
|
299
360
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
300
361
|
let QdsDropdown = class QdsDropdown {
|
|
301
362
|
constructor(c, r, z) {
|
|
302
363
|
this.z = z;
|
|
364
|
+
this.qdsCancel = new EventEmitter();
|
|
365
|
+
this.qdsClose = new EventEmitter();
|
|
303
366
|
c.detach();
|
|
304
367
|
this.el = r.nativeElement;
|
|
305
|
-
proxyOutputs(this, this.el, ['qdsCancel', 'qdsClose']);
|
|
306
368
|
}
|
|
307
369
|
};
|
|
308
|
-
QdsDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
309
|
-
QdsDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
370
|
+
QdsDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
371
|
+
QdsDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsDropdown, isStandalone: true, selector: "qds-dropdown", inputs: { autoUpdateOptions: "autoUpdateOptions", disabled: "disabled", flipOptions: "flipOptions", keepOpenOnSelect: "keepOpenOnSelect", noFlip: "noFlip", noShift: "noShift", offsetOptions: "offsetOptions", placement: "placement", shiftOptions: "shiftOptions", strategy: "strategy", target: "target" }, outputs: { qdsCancel: "qdsCancel", qdsClose: "qdsClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
310
372
|
QdsDropdown = __decorate([
|
|
311
373
|
ProxyCmp({
|
|
312
374
|
defineCustomElementFn: defineQdsDropdown,
|
|
@@ -316,17 +378,21 @@ QdsDropdown = __decorate([
|
|
|
316
378
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
317
379
|
], QdsDropdown);
|
|
318
380
|
export { QdsDropdown };
|
|
319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsDropdown, decorators: [{
|
|
320
382
|
type: Component,
|
|
321
383
|
args: [{
|
|
322
384
|
selector: 'qds-dropdown',
|
|
323
385
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
324
386
|
template: '<ng-content></ng-content>',
|
|
325
387
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
326
|
-
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'keepOpenOnSelect', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', 'target'],
|
|
327
|
-
|
|
388
|
+
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'keepOpenOnSelect', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', { name: 'target', required: true }],
|
|
389
|
+
outputs: ['qdsCancel', 'qdsClose'],
|
|
328
390
|
}]
|
|
329
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
391
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsCancel: [{
|
|
392
|
+
type: Output
|
|
393
|
+
}], qdsClose: [{
|
|
394
|
+
type: Output
|
|
395
|
+
}] } });
|
|
330
396
|
let QdsFormMessage = class QdsFormMessage {
|
|
331
397
|
constructor(c, r, z) {
|
|
332
398
|
this.z = z;
|
|
@@ -334,8 +400,8 @@ let QdsFormMessage = class QdsFormMessage {
|
|
|
334
400
|
this.el = r.nativeElement;
|
|
335
401
|
}
|
|
336
402
|
};
|
|
337
|
-
QdsFormMessage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
338
|
-
QdsFormMessage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
403
|
+
QdsFormMessage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsFormMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
404
|
+
QdsFormMessage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsFormMessage, isStandalone: true, selector: "qds-form-message", inputs: { inline: "inline", size: "size", status: "status", statusDescription: "statusDescription", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
339
405
|
QdsFormMessage = __decorate([
|
|
340
406
|
ProxyCmp({
|
|
341
407
|
defineCustomElementFn: defineQdsFormMessage,
|
|
@@ -344,7 +410,7 @@ QdsFormMessage = __decorate([
|
|
|
344
410
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
345
411
|
], QdsFormMessage);
|
|
346
412
|
export { QdsFormMessage };
|
|
347
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsFormMessage, decorators: [{
|
|
348
414
|
type: Component,
|
|
349
415
|
args: [{
|
|
350
416
|
selector: 'qds-form-message',
|
|
@@ -352,19 +418,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
352
418
|
template: '<ng-content></ng-content>',
|
|
353
419
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
354
420
|
inputs: ['inline', 'size', 'status', 'statusDescription', 'text'],
|
|
355
|
-
standalone: true
|
|
356
421
|
}]
|
|
357
422
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
358
423
|
let QdsIcon = class QdsIcon {
|
|
359
424
|
constructor(c, r, z) {
|
|
360
425
|
this.z = z;
|
|
426
|
+
this.qdsLoad = new EventEmitter();
|
|
427
|
+
this.qdsError = new EventEmitter();
|
|
361
428
|
c.detach();
|
|
362
429
|
this.el = r.nativeElement;
|
|
363
|
-
proxyOutputs(this, this.el, ['qdsLoad', 'qdsError']);
|
|
364
430
|
}
|
|
365
431
|
};
|
|
366
|
-
QdsIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
367
|
-
QdsIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
432
|
+
QdsIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
433
|
+
QdsIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsIcon, isStandalone: true, selector: "qds-icon", inputs: { library: "library", name: "name" }, outputs: { qdsLoad: "qdsLoad", qdsError: "qdsError" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
368
434
|
QdsIcon = __decorate([
|
|
369
435
|
ProxyCmp({
|
|
370
436
|
defineCustomElementFn: defineQdsIcon,
|
|
@@ -373,27 +439,32 @@ QdsIcon = __decorate([
|
|
|
373
439
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
374
440
|
], QdsIcon);
|
|
375
441
|
export { QdsIcon };
|
|
376
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsIcon, decorators: [{
|
|
377
443
|
type: Component,
|
|
378
444
|
args: [{
|
|
379
445
|
selector: 'qds-icon',
|
|
380
446
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
381
447
|
template: '<ng-content></ng-content>',
|
|
382
448
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
383
|
-
inputs: ['library', 'name'],
|
|
384
|
-
|
|
449
|
+
inputs: ['library', { name: 'name', required: true }],
|
|
450
|
+
outputs: ['qdsLoad', 'qdsError'],
|
|
385
451
|
}]
|
|
386
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
452
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsLoad: [{
|
|
453
|
+
type: Output
|
|
454
|
+
}], qdsError: [{
|
|
455
|
+
type: Output
|
|
456
|
+
}] } });
|
|
387
457
|
let QdsIconButton = class QdsIconButton {
|
|
388
458
|
constructor(c, r, z) {
|
|
389
459
|
this.z = z;
|
|
460
|
+
this.qdsBlur = new EventEmitter();
|
|
461
|
+
this.qdsFocus = new EventEmitter();
|
|
390
462
|
c.detach();
|
|
391
463
|
this.el = r.nativeElement;
|
|
392
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
393
464
|
}
|
|
394
465
|
};
|
|
395
|
-
QdsIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
396
|
-
QdsIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
466
|
+
QdsIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
467
|
+
QdsIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsIconButton, isStandalone: true, selector: "qds-icon-button", inputs: { badge: "badge", badgeDescription: "badgeDescription", badgeIndicatorStatus: "badgeIndicatorStatus", disabled: "disabled", download: "download", href: "href", iconLibrary: "iconLibrary", iconName: "iconName", importance: "importance", rel: "rel", size: "size", target: "target", text: "text" }, outputs: { qdsBlur: "qdsBlur", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
397
468
|
QdsIconButton = __decorate([
|
|
398
469
|
ProxyCmp({
|
|
399
470
|
defineCustomElementFn: defineQdsIconButton,
|
|
@@ -402,27 +473,32 @@ QdsIconButton = __decorate([
|
|
|
402
473
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
403
474
|
], QdsIconButton);
|
|
404
475
|
export { QdsIconButton };
|
|
405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
476
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsIconButton, decorators: [{
|
|
406
477
|
type: Component,
|
|
407
478
|
args: [{
|
|
408
479
|
selector: 'qds-icon-button',
|
|
409
480
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
410
481
|
template: '<ng-content></ng-content>',
|
|
411
482
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
412
|
-
inputs: ['badge', 'badgeDescription', 'badgeIndicatorStatus', 'disabled', 'download', 'href', 'iconLibrary', 'iconName', 'importance', 'rel', 'size', 'target', 'text'],
|
|
413
|
-
|
|
483
|
+
inputs: ['badge', 'badgeDescription', 'badgeIndicatorStatus', 'disabled', 'download', 'href', 'iconLibrary', { name: 'iconName', required: true }, 'importance', 'rel', 'size', 'target', 'text'],
|
|
484
|
+
outputs: ['qdsBlur', 'qdsFocus'],
|
|
414
485
|
}]
|
|
415
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
486
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
487
|
+
type: Output
|
|
488
|
+
}], qdsFocus: [{
|
|
489
|
+
type: Output
|
|
490
|
+
}] } });
|
|
416
491
|
let QdsInlineLink = class QdsInlineLink {
|
|
417
492
|
constructor(c, r, z) {
|
|
418
493
|
this.z = z;
|
|
494
|
+
this.qdsBlur = new EventEmitter();
|
|
495
|
+
this.qdsFocus = new EventEmitter();
|
|
419
496
|
c.detach();
|
|
420
497
|
this.el = r.nativeElement;
|
|
421
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
422
498
|
}
|
|
423
499
|
};
|
|
424
|
-
QdsInlineLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
425
|
-
QdsInlineLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
500
|
+
QdsInlineLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsInlineLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
501
|
+
QdsInlineLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsInlineLink, isStandalone: true, selector: "qds-inline-link", inputs: { disabled: "disabled", download: "download", href: "href", hreflang: "hreflang", iconLibrary: "iconLibrary", iconName: "iconName", importance: "importance", referrerPolicy: "referrerPolicy", rel: "rel", target: "target" }, outputs: { qdsBlur: "qdsBlur", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
426
502
|
QdsInlineLink = __decorate([
|
|
427
503
|
ProxyCmp({
|
|
428
504
|
defineCustomElementFn: defineQdsInlineLink,
|
|
@@ -431,7 +507,7 @@ QdsInlineLink = __decorate([
|
|
|
431
507
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
432
508
|
], QdsInlineLink);
|
|
433
509
|
export { QdsInlineLink };
|
|
434
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
510
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsInlineLink, decorators: [{
|
|
435
511
|
type: Component,
|
|
436
512
|
args: [{
|
|
437
513
|
selector: 'qds-inline-link',
|
|
@@ -439,19 +515,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
439
515
|
template: '<ng-content></ng-content>',
|
|
440
516
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
441
517
|
inputs: ['disabled', 'download', 'href', 'hreflang', 'iconLibrary', 'iconName', 'importance', 'referrerPolicy', 'rel', 'target'],
|
|
442
|
-
|
|
518
|
+
outputs: ['qdsBlur', 'qdsFocus'],
|
|
443
519
|
}]
|
|
444
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
520
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
521
|
+
type: Output
|
|
522
|
+
}], qdsFocus: [{
|
|
523
|
+
type: Output
|
|
524
|
+
}] } });
|
|
445
525
|
let QdsInput = class QdsInput {
|
|
446
526
|
constructor(c, r, z) {
|
|
447
527
|
this.z = z;
|
|
528
|
+
this.qdsBlur = new EventEmitter();
|
|
529
|
+
this.qdsCancel = new EventEmitter();
|
|
530
|
+
this.qdsSearch = new EventEmitter();
|
|
531
|
+
this.qdsChange = new EventEmitter();
|
|
532
|
+
this.qdsFocus = new EventEmitter();
|
|
533
|
+
this.qdsInput = new EventEmitter();
|
|
448
534
|
c.detach();
|
|
449
535
|
this.el = r.nativeElement;
|
|
450
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsCancel', 'qdsSearch', 'qdsChange', 'qdsFocus', 'qdsInput']);
|
|
451
536
|
}
|
|
452
537
|
};
|
|
453
|
-
QdsInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
454
|
-
QdsInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
538
|
+
QdsInput.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
539
|
+
QdsInput.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsInput, isStandalone: true, selector: "qds-input", inputs: { accept: "accept", autoComplete: "autoComplete", capture: "capture", disabled: "disabled", enterkeyhint: "enterkeyhint", files: "files", form: "form", inputmode: "inputmode", labels: "labels", max: "max", maxLength: "maxLength", min: "min", minLength: "minLength", multiple: "multiple", name: "name", noIcon: "noIcon", pattern: "pattern", placeholder: "placeholder", required: "required", selectionDirection: "selectionDirection", selectionEnd: "selectionEnd", selectionStart: "selectionStart", size: "size", step: "step", type: "type", validationMessage: "validationMessage", validity: "validity", value: "value", willValidate: "willValidate" }, outputs: { qdsBlur: "qdsBlur", qdsCancel: "qdsCancel", qdsSearch: "qdsSearch", qdsChange: "qdsChange", qdsFocus: "qdsFocus", qdsInput: "qdsInput" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
455
540
|
QdsInput = __decorate([
|
|
456
541
|
ProxyCmp({
|
|
457
542
|
defineCustomElementFn: defineQdsInput,
|
|
@@ -460,7 +545,7 @@ QdsInput = __decorate([
|
|
|
460
545
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
461
546
|
], QdsInput);
|
|
462
547
|
export { QdsInput };
|
|
463
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsInput, decorators: [{
|
|
464
549
|
type: Component,
|
|
465
550
|
args: [{
|
|
466
551
|
selector: 'qds-input',
|
|
@@ -468,9 +553,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
468
553
|
template: '<ng-content></ng-content>',
|
|
469
554
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
470
555
|
inputs: ['accept', 'autoComplete', 'capture', 'disabled', 'enterkeyhint', 'files', 'form', 'inputmode', 'labels', 'max', 'maxLength', 'min', 'minLength', 'multiple', 'name', 'noIcon', 'pattern', 'placeholder', 'required', 'selectionDirection', 'selectionEnd', 'selectionStart', 'size', 'step', 'type', 'validationMessage', 'validity', 'value', 'willValidate'],
|
|
471
|
-
|
|
556
|
+
outputs: ['qdsBlur', 'qdsCancel', 'qdsSearch', 'qdsChange', 'qdsFocus', 'qdsInput'],
|
|
472
557
|
}]
|
|
473
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
558
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
559
|
+
type: Output
|
|
560
|
+
}], qdsCancel: [{
|
|
561
|
+
type: Output
|
|
562
|
+
}], qdsSearch: [{
|
|
563
|
+
type: Output
|
|
564
|
+
}], qdsChange: [{
|
|
565
|
+
type: Output
|
|
566
|
+
}], qdsFocus: [{
|
|
567
|
+
type: Output
|
|
568
|
+
}], qdsInput: [{
|
|
569
|
+
type: Output
|
|
570
|
+
}] } });
|
|
474
571
|
let QdsLabel = class QdsLabel {
|
|
475
572
|
constructor(c, r, z) {
|
|
476
573
|
this.z = z;
|
|
@@ -478,8 +575,8 @@ let QdsLabel = class QdsLabel {
|
|
|
478
575
|
this.el = r.nativeElement;
|
|
479
576
|
}
|
|
480
577
|
};
|
|
481
|
-
QdsLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
482
|
-
QdsLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
578
|
+
QdsLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
579
|
+
QdsLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsLabel, isStandalone: true, selector: "qds-label", inputs: { importance: "importance", inline: "inline", required: "required", size: "size", text: "text", tooltipTarget: "tooltipTarget" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
483
580
|
QdsLabel = __decorate([
|
|
484
581
|
ProxyCmp({
|
|
485
582
|
defineCustomElementFn: defineQdsLabel,
|
|
@@ -488,7 +585,7 @@ QdsLabel = __decorate([
|
|
|
488
585
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
489
586
|
], QdsLabel);
|
|
490
587
|
export { QdsLabel };
|
|
491
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
588
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsLabel, decorators: [{
|
|
492
589
|
type: Component,
|
|
493
590
|
args: [{
|
|
494
591
|
selector: 'qds-label',
|
|
@@ -496,19 +593,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
496
593
|
template: '<ng-content></ng-content>',
|
|
497
594
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
498
595
|
inputs: ['importance', 'inline', 'required', 'size', 'text', 'tooltipTarget'],
|
|
499
|
-
standalone: true
|
|
500
596
|
}]
|
|
501
597
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
502
598
|
let QdsListItem = class QdsListItem {
|
|
503
599
|
constructor(c, r, z) {
|
|
504
600
|
this.z = z;
|
|
601
|
+
this.qdsBlur = new EventEmitter();
|
|
602
|
+
this.qdsChange = new EventEmitter();
|
|
603
|
+
this.qdsFocus = new EventEmitter();
|
|
505
604
|
c.detach();
|
|
506
605
|
this.el = r.nativeElement;
|
|
507
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus']);
|
|
508
606
|
}
|
|
509
607
|
};
|
|
510
|
-
QdsListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
511
|
-
QdsListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
608
|
+
QdsListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
609
|
+
QdsListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsListItem, isStandalone: true, selector: "qds-list-item", inputs: { avatarSrc: "avatarSrc", badge: "badge", badgeDescription: "badgeDescription", destination: "destination", disabled: "disabled", iconLibrary: "iconLibrary", iconName: "iconName", imageSrc: "imageSrc", indeterminate: "indeterminate", kicker: "kicker", listAction: "listAction", selected: "selected", showDivider: "showDivider", size: "size", subtitle: "subtitle", text: "text" }, outputs: { qdsBlur: "qdsBlur", qdsChange: "qdsChange", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
512
610
|
QdsListItem = __decorate([
|
|
513
611
|
ProxyCmp({
|
|
514
612
|
defineCustomElementFn: defineQdsListItem,
|
|
@@ -517,17 +615,23 @@ QdsListItem = __decorate([
|
|
|
517
615
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
518
616
|
], QdsListItem);
|
|
519
617
|
export { QdsListItem };
|
|
520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
618
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsListItem, decorators: [{
|
|
521
619
|
type: Component,
|
|
522
620
|
args: [{
|
|
523
621
|
selector: 'qds-list-item',
|
|
524
622
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
525
623
|
template: '<ng-content></ng-content>',
|
|
526
624
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
527
|
-
inputs: ['avatarSrc', 'badge', 'badgeDescription', 'destination', 'disabled', 'iconLibrary', 'iconName', 'imageSrc', 'indeterminate', 'kicker', 'listAction', 'selected', 'showDivider', 'size', 'subtitle', 'text'],
|
|
528
|
-
|
|
625
|
+
inputs: ['avatarSrc', 'badge', 'badgeDescription', 'destination', 'disabled', 'iconLibrary', 'iconName', 'imageSrc', 'indeterminate', 'kicker', 'listAction', 'selected', 'showDivider', 'size', 'subtitle', { name: 'text', required: true }],
|
|
626
|
+
outputs: ['qdsBlur', 'qdsChange', 'qdsFocus'],
|
|
529
627
|
}]
|
|
530
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
628
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
629
|
+
type: Output
|
|
630
|
+
}], qdsChange: [{
|
|
631
|
+
type: Output
|
|
632
|
+
}], qdsFocus: [{
|
|
633
|
+
type: Output
|
|
634
|
+
}] } });
|
|
531
635
|
let QdsLoader = class QdsLoader {
|
|
532
636
|
constructor(c, r, z) {
|
|
533
637
|
this.z = z;
|
|
@@ -535,8 +639,8 @@ let QdsLoader = class QdsLoader {
|
|
|
535
639
|
this.el = r.nativeElement;
|
|
536
640
|
}
|
|
537
641
|
};
|
|
538
|
-
QdsLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
539
|
-
QdsLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
642
|
+
QdsLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
643
|
+
QdsLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsLoader, isStandalone: true, selector: "qds-loader", inputs: { importance: "importance", size: "size", status: "status" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
540
644
|
QdsLoader = __decorate([
|
|
541
645
|
ProxyCmp({
|
|
542
646
|
defineCustomElementFn: defineQdsLoader,
|
|
@@ -545,7 +649,7 @@ QdsLoader = __decorate([
|
|
|
545
649
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
546
650
|
], QdsLoader);
|
|
547
651
|
export { QdsLoader };
|
|
548
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
652
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsLoader, decorators: [{
|
|
549
653
|
type: Component,
|
|
550
654
|
args: [{
|
|
551
655
|
selector: 'qds-loader',
|
|
@@ -553,19 +657,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
553
657
|
template: '<ng-content></ng-content>',
|
|
554
658
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
555
659
|
inputs: ['importance', 'size', 'status'],
|
|
556
|
-
standalone: true
|
|
557
660
|
}]
|
|
558
661
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
559
662
|
let QdsMenuItem = class QdsMenuItem {
|
|
560
663
|
constructor(c, r, z) {
|
|
561
664
|
this.z = z;
|
|
665
|
+
this.qdsBlur = new EventEmitter();
|
|
666
|
+
this.qdsFocus = new EventEmitter();
|
|
667
|
+
this.qdsSelect = new EventEmitter();
|
|
562
668
|
c.detach();
|
|
563
669
|
this.el = r.nativeElement;
|
|
564
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus', 'qdsSelect']);
|
|
565
670
|
}
|
|
566
671
|
};
|
|
567
|
-
QdsMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
568
|
-
QdsMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
672
|
+
QdsMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
673
|
+
QdsMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsMenuItem, isStandalone: true, selector: "qds-menu-item", inputs: { checked: "checked", disabled: "disabled", iconLibrary: "iconLibrary", iconName: "iconName", shortcut: "shortcut", size: "size", text: "text", type: "type" }, outputs: { qdsBlur: "qdsBlur", qdsFocus: "qdsFocus", qdsSelect: "qdsSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
569
674
|
QdsMenuItem = __decorate([
|
|
570
675
|
ProxyCmp({
|
|
571
676
|
defineCustomElementFn: defineQdsMenuItem,
|
|
@@ -574,27 +679,34 @@ QdsMenuItem = __decorate([
|
|
|
574
679
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
575
680
|
], QdsMenuItem);
|
|
576
681
|
export { QdsMenuItem };
|
|
577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
682
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsMenuItem, decorators: [{
|
|
578
683
|
type: Component,
|
|
579
684
|
args: [{
|
|
580
685
|
selector: 'qds-menu-item',
|
|
581
686
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
582
687
|
template: '<ng-content></ng-content>',
|
|
583
688
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
584
|
-
inputs: ['checked', 'disabled', 'iconLibrary', 'iconName', 'shortcut', 'size', 'text', 'type'],
|
|
585
|
-
|
|
689
|
+
inputs: ['checked', 'disabled', 'iconLibrary', 'iconName', 'shortcut', 'size', { name: 'text', required: true }, 'type'],
|
|
690
|
+
outputs: ['qdsBlur', 'qdsFocus', 'qdsSelect'],
|
|
586
691
|
}]
|
|
587
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
692
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
693
|
+
type: Output
|
|
694
|
+
}], qdsFocus: [{
|
|
695
|
+
type: Output
|
|
696
|
+
}], qdsSelect: [{
|
|
697
|
+
type: Output
|
|
698
|
+
}] } });
|
|
588
699
|
let QdsMiniButton = class QdsMiniButton {
|
|
589
700
|
constructor(c, r, z) {
|
|
590
701
|
this.z = z;
|
|
702
|
+
this.qdsBlur = new EventEmitter();
|
|
703
|
+
this.qdsFocus = new EventEmitter();
|
|
591
704
|
c.detach();
|
|
592
705
|
this.el = r.nativeElement;
|
|
593
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
594
706
|
}
|
|
595
707
|
};
|
|
596
|
-
QdsMiniButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
597
|
-
QdsMiniButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
708
|
+
QdsMiniButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsMiniButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
709
|
+
QdsMiniButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsMiniButton, isStandalone: true, selector: "qds-mini-button", inputs: { disabled: "disabled", href: "href", library: "library", name: "name", rel: "rel", target: "target", text: "text" }, outputs: { qdsBlur: "qdsBlur", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
598
710
|
QdsMiniButton = __decorate([
|
|
599
711
|
ProxyCmp({
|
|
600
712
|
defineCustomElementFn: defineQdsMiniButton,
|
|
@@ -603,46 +715,21 @@ QdsMiniButton = __decorate([
|
|
|
603
715
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
604
716
|
], QdsMiniButton);
|
|
605
717
|
export { QdsMiniButton };
|
|
606
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
718
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsMiniButton, decorators: [{
|
|
607
719
|
type: Component,
|
|
608
720
|
args: [{
|
|
609
721
|
selector: 'qds-mini-button',
|
|
610
722
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
611
723
|
template: '<ng-content></ng-content>',
|
|
612
724
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
613
|
-
inputs: ['disabled', 'href', 'library', 'name', 'rel', 'target', 'text'],
|
|
614
|
-
|
|
615
|
-
}]
|
|
616
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
617
|
-
let QdsNavListItem = class QdsNavListItem {
|
|
618
|
-
constructor(c, r, z) {
|
|
619
|
-
this.z = z;
|
|
620
|
-
c.detach();
|
|
621
|
-
this.el = r.nativeElement;
|
|
622
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
623
|
-
}
|
|
624
|
-
};
|
|
625
|
-
QdsNavListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: QdsNavListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
626
|
-
QdsNavListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: QdsNavListItem, isStandalone: true, 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 });
|
|
627
|
-
QdsNavListItem = __decorate([
|
|
628
|
-
ProxyCmp({
|
|
629
|
-
defineCustomElementFn: defineQdsNavListItem,
|
|
630
|
-
inputs: ['collapsed', 'disabled', 'iconLibrary', 'iconName', 'selected', 'size', 'subtext', 'text']
|
|
631
|
-
}),
|
|
632
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
633
|
-
], QdsNavListItem);
|
|
634
|
-
export { QdsNavListItem };
|
|
635
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: QdsNavListItem, decorators: [{
|
|
636
|
-
type: Component,
|
|
637
|
-
args: [{
|
|
638
|
-
selector: 'qds-nav-list-item',
|
|
639
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
640
|
-
template: '<ng-content></ng-content>',
|
|
641
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
642
|
-
inputs: ['collapsed', 'disabled', 'iconLibrary', 'iconName', 'selected', 'size', 'subtext', 'text'],
|
|
643
|
-
standalone: true
|
|
725
|
+
inputs: ['disabled', 'href', 'library', { name: 'name', required: true }, 'rel', 'target', { name: 'text', required: true }],
|
|
726
|
+
outputs: ['qdsBlur', 'qdsFocus'],
|
|
644
727
|
}]
|
|
645
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
728
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
729
|
+
type: Output
|
|
730
|
+
}], qdsFocus: [{
|
|
731
|
+
type: Output
|
|
732
|
+
}] } });
|
|
646
733
|
let QdsProgressBar = class QdsProgressBar {
|
|
647
734
|
constructor(c, r, z) {
|
|
648
735
|
this.z = z;
|
|
@@ -650,8 +737,8 @@ let QdsProgressBar = class QdsProgressBar {
|
|
|
650
737
|
this.el = r.nativeElement;
|
|
651
738
|
}
|
|
652
739
|
};
|
|
653
|
-
QdsProgressBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
654
|
-
QdsProgressBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
740
|
+
QdsProgressBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
741
|
+
QdsProgressBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsProgressBar, isStandalone: true, selector: "qds-progress-bar", inputs: { labels: "labels", max: "max", position: "position", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
655
742
|
QdsProgressBar = __decorate([
|
|
656
743
|
ProxyCmp({
|
|
657
744
|
defineCustomElementFn: defineQdsProgressBar,
|
|
@@ -660,7 +747,7 @@ QdsProgressBar = __decorate([
|
|
|
660
747
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
661
748
|
], QdsProgressBar);
|
|
662
749
|
export { QdsProgressBar };
|
|
663
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsProgressBar, decorators: [{
|
|
664
751
|
type: Component,
|
|
665
752
|
args: [{
|
|
666
753
|
selector: 'qds-progress-bar',
|
|
@@ -668,19 +755,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
668
755
|
template: '<ng-content></ng-content>',
|
|
669
756
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
670
757
|
inputs: ['labels', 'max', 'position', 'size', 'value'],
|
|
671
|
-
standalone: true
|
|
672
758
|
}]
|
|
673
759
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
674
760
|
let QdsRadio = class QdsRadio {
|
|
675
761
|
constructor(c, r, z) {
|
|
676
762
|
this.z = z;
|
|
763
|
+
this.qdsBlur = new EventEmitter();
|
|
764
|
+
this.qdsChange = new EventEmitter();
|
|
765
|
+
this.qdsFocus = new EventEmitter();
|
|
677
766
|
c.detach();
|
|
678
767
|
this.el = r.nativeElement;
|
|
679
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus']);
|
|
680
768
|
}
|
|
681
769
|
};
|
|
682
|
-
QdsRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
683
|
-
QdsRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
770
|
+
QdsRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
771
|
+
QdsRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsRadio, isStandalone: true, selector: "qds-radio", inputs: { checked: "checked", disabled: "disabled", form: "form", inline: "inline", name: "name", required: "required", size: "size", text: "text", value: "value" }, outputs: { qdsBlur: "qdsBlur", qdsChange: "qdsChange", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
684
772
|
QdsRadio = __decorate([
|
|
685
773
|
ProxyCmp({
|
|
686
774
|
defineCustomElementFn: defineQdsRadio,
|
|
@@ -689,7 +777,7 @@ QdsRadio = __decorate([
|
|
|
689
777
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
690
778
|
], QdsRadio);
|
|
691
779
|
export { QdsRadio };
|
|
692
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
780
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsRadio, decorators: [{
|
|
693
781
|
type: Component,
|
|
694
782
|
args: [{
|
|
695
783
|
selector: 'qds-radio',
|
|
@@ -697,19 +785,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
697
785
|
template: '<ng-content></ng-content>',
|
|
698
786
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
699
787
|
inputs: ['checked', 'disabled', 'form', 'inline', 'name', 'required', 'size', 'text', 'value'],
|
|
700
|
-
|
|
788
|
+
outputs: ['qdsBlur', 'qdsChange', 'qdsFocus'],
|
|
701
789
|
}]
|
|
702
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
790
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
791
|
+
type: Output
|
|
792
|
+
}], qdsChange: [{
|
|
793
|
+
type: Output
|
|
794
|
+
}], qdsFocus: [{
|
|
795
|
+
type: Output
|
|
796
|
+
}] } });
|
|
703
797
|
let QdsSelect = class QdsSelect {
|
|
704
798
|
constructor(c, r, z) {
|
|
705
799
|
this.z = z;
|
|
800
|
+
this.qdsBlur = new EventEmitter();
|
|
801
|
+
this.qdsChange = new EventEmitter();
|
|
802
|
+
this.qdsFocus = new EventEmitter();
|
|
803
|
+
this.qdsInput = new EventEmitter();
|
|
706
804
|
c.detach();
|
|
707
805
|
this.el = r.nativeElement;
|
|
708
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus', 'qdsInput']);
|
|
709
806
|
}
|
|
710
807
|
};
|
|
711
|
-
QdsSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
712
|
-
QdsSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
808
|
+
QdsSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
809
|
+
QdsSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsSelect, isStandalone: true, selector: "qds-select", inputs: { autoComplete: "autoComplete", 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" }, outputs: { qdsBlur: "qdsBlur", qdsChange: "qdsChange", qdsFocus: "qdsFocus", qdsInput: "qdsInput" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
713
810
|
QdsSelect = __decorate([
|
|
714
811
|
ProxyCmp({
|
|
715
812
|
defineCustomElementFn: defineQdsSelect,
|
|
@@ -718,7 +815,7 @@ QdsSelect = __decorate([
|
|
|
718
815
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
719
816
|
], QdsSelect);
|
|
720
817
|
export { QdsSelect };
|
|
721
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
818
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsSelect, decorators: [{
|
|
722
819
|
type: Component,
|
|
723
820
|
args: [{
|
|
724
821
|
selector: 'qds-select',
|
|
@@ -726,19 +823,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
726
823
|
template: '<ng-content></ng-content>',
|
|
727
824
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
728
825
|
inputs: ['autoComplete', 'disabled', 'form', 'length', 'multiple', 'name', 'options', 'required', 'selectedIndex', 'selectedOptions', 'size', 'type', 'validationMessage', 'validity', 'value', 'willValidate'],
|
|
729
|
-
|
|
826
|
+
outputs: ['qdsBlur', 'qdsChange', 'qdsFocus', 'qdsInput'],
|
|
730
827
|
}]
|
|
731
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
828
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
829
|
+
type: Output
|
|
830
|
+
}], qdsChange: [{
|
|
831
|
+
type: Output
|
|
832
|
+
}], qdsFocus: [{
|
|
833
|
+
type: Output
|
|
834
|
+
}], qdsInput: [{
|
|
835
|
+
type: Output
|
|
836
|
+
}] } });
|
|
732
837
|
let QdsStandaloneLink = class QdsStandaloneLink {
|
|
733
838
|
constructor(c, r, z) {
|
|
734
839
|
this.z = z;
|
|
840
|
+
this.qdsBlur = new EventEmitter();
|
|
841
|
+
this.qdsFocus = new EventEmitter();
|
|
735
842
|
c.detach();
|
|
736
843
|
this.el = r.nativeElement;
|
|
737
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsFocus']);
|
|
738
844
|
}
|
|
739
845
|
};
|
|
740
|
-
QdsStandaloneLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
741
|
-
QdsStandaloneLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
846
|
+
QdsStandaloneLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsStandaloneLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
847
|
+
QdsStandaloneLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsStandaloneLink, isStandalone: true, 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", visitable: "visitable" }, outputs: { qdsBlur: "qdsBlur", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
742
848
|
QdsStandaloneLink = __decorate([
|
|
743
849
|
ProxyCmp({
|
|
744
850
|
defineCustomElementFn: defineQdsStandaloneLink,
|
|
@@ -747,7 +853,7 @@ QdsStandaloneLink = __decorate([
|
|
|
747
853
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
748
854
|
], QdsStandaloneLink);
|
|
749
855
|
export { QdsStandaloneLink };
|
|
750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
856
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsStandaloneLink, decorators: [{
|
|
751
857
|
type: Component,
|
|
752
858
|
args: [{
|
|
753
859
|
selector: 'qds-standalone-link',
|
|
@@ -755,19 +861,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
755
861
|
template: '<ng-content></ng-content>',
|
|
756
862
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
757
863
|
inputs: ['disabled', 'download', 'href', 'hreflang', 'iconLibrary', 'iconName', 'importance', 'referrerPolicy', 'rel', 'size', 'target', 'visitable'],
|
|
758
|
-
|
|
864
|
+
outputs: ['qdsBlur', 'qdsFocus'],
|
|
759
865
|
}]
|
|
760
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
866
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
867
|
+
type: Output
|
|
868
|
+
}], qdsFocus: [{
|
|
869
|
+
type: Output
|
|
870
|
+
}] } });
|
|
761
871
|
let QdsSwitch = class QdsSwitch {
|
|
762
872
|
constructor(c, r, z) {
|
|
763
873
|
this.z = z;
|
|
874
|
+
this.qdsBlur = new EventEmitter();
|
|
875
|
+
this.qdsChange = new EventEmitter();
|
|
876
|
+
this.qdsFocus = new EventEmitter();
|
|
764
877
|
c.detach();
|
|
765
878
|
this.el = r.nativeElement;
|
|
766
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus']);
|
|
767
879
|
}
|
|
768
880
|
};
|
|
769
|
-
QdsSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
770
|
-
QdsSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
881
|
+
QdsSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
882
|
+
QdsSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsSwitch, isStandalone: true, selector: "qds-switch", inputs: { checked: "checked", disabled: "disabled", form: "form", inline: "inline", labels: "labels", name: "name", noIndicator: "noIndicator", size: "size", validationMessage: "validationMessage", validity: "validity", value: "value", willValidate: "willValidate" }, outputs: { qdsBlur: "qdsBlur", qdsChange: "qdsChange", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
771
883
|
QdsSwitch = __decorate([
|
|
772
884
|
ProxyCmp({
|
|
773
885
|
defineCustomElementFn: defineQdsSwitch,
|
|
@@ -776,7 +888,7 @@ QdsSwitch = __decorate([
|
|
|
776
888
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
777
889
|
], QdsSwitch);
|
|
778
890
|
export { QdsSwitch };
|
|
779
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsSwitch, decorators: [{
|
|
780
892
|
type: Component,
|
|
781
893
|
args: [{
|
|
782
894
|
selector: 'qds-switch',
|
|
@@ -784,19 +896,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
784
896
|
template: '<ng-content></ng-content>',
|
|
785
897
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
786
898
|
inputs: ['checked', 'disabled', 'form', 'inline', 'labels', 'name', 'noIndicator', 'size', 'validationMessage', 'validity', 'value', 'willValidate'],
|
|
787
|
-
|
|
899
|
+
outputs: ['qdsBlur', 'qdsChange', 'qdsFocus'],
|
|
788
900
|
}]
|
|
789
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
901
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
902
|
+
type: Output
|
|
903
|
+
}], qdsChange: [{
|
|
904
|
+
type: Output
|
|
905
|
+
}], qdsFocus: [{
|
|
906
|
+
type: Output
|
|
907
|
+
}] } });
|
|
790
908
|
let QdsTab = class QdsTab {
|
|
791
909
|
constructor(c, r, z) {
|
|
792
910
|
this.z = z;
|
|
911
|
+
this.qdsClose = new EventEmitter();
|
|
912
|
+
this.qdsBlur = new EventEmitter();
|
|
913
|
+
this.qdsFocus = new EventEmitter();
|
|
793
914
|
c.detach();
|
|
794
915
|
this.el = r.nativeElement;
|
|
795
|
-
proxyOutputs(this, this.el, ['qdsClose', 'qdsBlur', 'qdsFocus']);
|
|
796
916
|
}
|
|
797
917
|
};
|
|
798
|
-
QdsTab.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
799
|
-
QdsTab.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
918
|
+
QdsTab.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
919
|
+
QdsTab.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsTab, isStandalone: true, selector: "qds-tab", inputs: { action: "action", badge: "badge", badgeCounterImportance: "badgeCounterImportance", badgeDescription: "badgeDescription", badgeIndicatorStatus: "badgeIndicatorStatus", disabled: "disabled", href: "href", iconLibrary: "iconLibrary", iconName: "iconName", iconOnly: "iconOnly", importance: "importance", indicatorPosition: "indicatorPosition", panel: "panel", selected: "selected", size: "size", subtitle: "subtitle", tagIconDescription: "tagIconDescription", tagIconLibrary: "tagIconLibrary", tagIconName: "tagIconName", tagImportance: "tagImportance", tagSize: "tagSize", tagStatus: "tagStatus", tagText: "tagText", text: "text" }, outputs: { qdsClose: "qdsClose", qdsBlur: "qdsBlur", qdsFocus: "qdsFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
800
920
|
QdsTab = __decorate([
|
|
801
921
|
ProxyCmp({
|
|
802
922
|
defineCustomElementFn: defineQdsTab,
|
|
@@ -805,27 +925,34 @@ QdsTab = __decorate([
|
|
|
805
925
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
806
926
|
], QdsTab);
|
|
807
927
|
export { QdsTab };
|
|
808
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
928
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTab, decorators: [{
|
|
809
929
|
type: Component,
|
|
810
930
|
args: [{
|
|
811
931
|
selector: 'qds-tab',
|
|
812
932
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
813
933
|
template: '<ng-content></ng-content>',
|
|
814
934
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
815
|
-
inputs: ['action', 'badge', 'badgeCounterImportance', 'badgeDescription', 'badgeIndicatorStatus', 'disabled', 'href', 'iconLibrary', 'iconName', 'iconOnly', 'importance', 'indicatorPosition', 'panel', 'selected', 'size', 'subtitle', 'tagIconDescription', 'tagIconLibrary', 'tagIconName', 'tagImportance', 'tagSize', 'tagStatus', 'tagText', 'text'],
|
|
816
|
-
|
|
935
|
+
inputs: ['action', 'badge', 'badgeCounterImportance', 'badgeDescription', 'badgeIndicatorStatus', 'disabled', 'href', 'iconLibrary', 'iconName', 'iconOnly', 'importance', 'indicatorPosition', { name: 'panel', required: true }, 'selected', 'size', 'subtitle', 'tagIconDescription', 'tagIconLibrary', 'tagIconName', 'tagImportance', 'tagSize', 'tagStatus', 'tagText', { name: 'text', required: true }],
|
|
936
|
+
outputs: ['qdsClose', 'qdsBlur', 'qdsFocus'],
|
|
817
937
|
}]
|
|
818
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
938
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsClose: [{
|
|
939
|
+
type: Output
|
|
940
|
+
}], qdsBlur: [{
|
|
941
|
+
type: Output
|
|
942
|
+
}], qdsFocus: [{
|
|
943
|
+
type: Output
|
|
944
|
+
}] } });
|
|
819
945
|
let QdsTabbar = class QdsTabbar {
|
|
820
946
|
constructor(c, r, z) {
|
|
821
947
|
this.z = z;
|
|
948
|
+
this.qdsTabShow = new EventEmitter();
|
|
949
|
+
this.qdsTabHide = new EventEmitter();
|
|
822
950
|
c.detach();
|
|
823
951
|
this.el = r.nativeElement;
|
|
824
|
-
proxyOutputs(this, this.el, ['qdsTabShow', 'qdsTabHide']);
|
|
825
952
|
}
|
|
826
953
|
};
|
|
827
|
-
QdsTabbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
828
|
-
QdsTabbar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
954
|
+
QdsTabbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTabbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
955
|
+
QdsTabbar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsTabbar, isStandalone: true, selector: "qds-tabbar", inputs: { alignment: "alignment", layer: "layer", level: "level", orientation: "orientation", showDivider: "showDivider", tablistDescription: "tablistDescription" }, outputs: { qdsTabShow: "qdsTabShow", qdsTabHide: "qdsTabHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
829
956
|
QdsTabbar = __decorate([
|
|
830
957
|
ProxyCmp({
|
|
831
958
|
defineCustomElementFn: defineQdsTabbar,
|
|
@@ -834,7 +961,7 @@ QdsTabbar = __decorate([
|
|
|
834
961
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
835
962
|
], QdsTabbar);
|
|
836
963
|
export { QdsTabbar };
|
|
837
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTabbar, decorators: [{
|
|
838
965
|
type: Component,
|
|
839
966
|
args: [{
|
|
840
967
|
selector: 'qds-tabbar',
|
|
@@ -842,9 +969,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
842
969
|
template: '<ng-content></ng-content>',
|
|
843
970
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
844
971
|
inputs: ['alignment', 'layer', 'level', 'orientation', 'showDivider', 'tablistDescription'],
|
|
845
|
-
|
|
972
|
+
outputs: ['qdsTabShow', 'qdsTabHide'],
|
|
846
973
|
}]
|
|
847
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
974
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsTabShow: [{
|
|
975
|
+
type: Output
|
|
976
|
+
}], qdsTabHide: [{
|
|
977
|
+
type: Output
|
|
978
|
+
}] } });
|
|
848
979
|
let QdsTable = class QdsTable {
|
|
849
980
|
constructor(c, r, z) {
|
|
850
981
|
this.z = z;
|
|
@@ -852,8 +983,8 @@ let QdsTable = class QdsTable {
|
|
|
852
983
|
this.el = r.nativeElement;
|
|
853
984
|
}
|
|
854
985
|
};
|
|
855
|
-
QdsTable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
856
|
-
QdsTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
986
|
+
QdsTable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
987
|
+
QdsTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsTable, isStandalone: true, selector: "qds-table", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
857
988
|
QdsTable = __decorate([
|
|
858
989
|
ProxyCmp({
|
|
859
990
|
defineCustomElementFn: defineQdsTable
|
|
@@ -861,7 +992,7 @@ QdsTable = __decorate([
|
|
|
861
992
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
862
993
|
], QdsTable);
|
|
863
994
|
export { QdsTable };
|
|
864
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
995
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTable, decorators: [{
|
|
865
996
|
type: Component,
|
|
866
997
|
args: [{
|
|
867
998
|
selector: 'qds-table',
|
|
@@ -869,7 +1000,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
869
1000
|
template: '<ng-content></ng-content>',
|
|
870
1001
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
871
1002
|
inputs: [],
|
|
872
|
-
standalone: true
|
|
873
1003
|
}]
|
|
874
1004
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
875
1005
|
let QdsTableCell = class QdsTableCell {
|
|
@@ -879,8 +1009,8 @@ let QdsTableCell = class QdsTableCell {
|
|
|
879
1009
|
this.el = r.nativeElement;
|
|
880
1010
|
}
|
|
881
1011
|
};
|
|
882
|
-
QdsTableCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
883
|
-
QdsTableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1012
|
+
QdsTableCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1013
|
+
QdsTableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsTableCell, isStandalone: true, selector: "qds-table-cell", inputs: { colSpan: "colSpan", rowSpan: "rowSpan" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
884
1014
|
QdsTableCell = __decorate([
|
|
885
1015
|
ProxyCmp({
|
|
886
1016
|
defineCustomElementFn: defineQdsTableCell,
|
|
@@ -889,7 +1019,7 @@ QdsTableCell = __decorate([
|
|
|
889
1019
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
890
1020
|
], QdsTableCell);
|
|
891
1021
|
export { QdsTableCell };
|
|
892
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1022
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTableCell, decorators: [{
|
|
893
1023
|
type: Component,
|
|
894
1024
|
args: [{
|
|
895
1025
|
selector: 'qds-table-cell',
|
|
@@ -897,7 +1027,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
897
1027
|
template: '<ng-content></ng-content>',
|
|
898
1028
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
899
1029
|
inputs: ['colSpan', 'rowSpan'],
|
|
900
|
-
standalone: true
|
|
901
1030
|
}]
|
|
902
1031
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
903
1032
|
let QdsTableHeadCell = class QdsTableHeadCell {
|
|
@@ -907,8 +1036,8 @@ let QdsTableHeadCell = class QdsTableHeadCell {
|
|
|
907
1036
|
this.el = r.nativeElement;
|
|
908
1037
|
}
|
|
909
1038
|
};
|
|
910
|
-
QdsTableHeadCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
911
|
-
QdsTableHeadCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1039
|
+
QdsTableHeadCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTableHeadCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1040
|
+
QdsTableHeadCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsTableHeadCell, isStandalone: true, selector: "qds-table-head-cell", inputs: { colSpan: "colSpan", rowSpan: "rowSpan", scope: "scope" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
912
1041
|
QdsTableHeadCell = __decorate([
|
|
913
1042
|
ProxyCmp({
|
|
914
1043
|
defineCustomElementFn: defineQdsTableHeadCell,
|
|
@@ -917,7 +1046,7 @@ QdsTableHeadCell = __decorate([
|
|
|
917
1046
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
918
1047
|
], QdsTableHeadCell);
|
|
919
1048
|
export { QdsTableHeadCell };
|
|
920
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1049
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTableHeadCell, decorators: [{
|
|
921
1050
|
type: Component,
|
|
922
1051
|
args: [{
|
|
923
1052
|
selector: 'qds-table-head-cell',
|
|
@@ -925,7 +1054,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
925
1054
|
template: '<ng-content></ng-content>',
|
|
926
1055
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
927
1056
|
inputs: ['colSpan', 'rowSpan', 'scope'],
|
|
928
|
-
standalone: true
|
|
929
1057
|
}]
|
|
930
1058
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
931
1059
|
let QdsTableRow = class QdsTableRow {
|
|
@@ -935,8 +1063,8 @@ let QdsTableRow = class QdsTableRow {
|
|
|
935
1063
|
this.el = r.nativeElement;
|
|
936
1064
|
}
|
|
937
1065
|
};
|
|
938
|
-
QdsTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
939
|
-
QdsTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1066
|
+
QdsTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1067
|
+
QdsTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsTableRow, isStandalone: true, selector: "qds-table-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
940
1068
|
QdsTableRow = __decorate([
|
|
941
1069
|
ProxyCmp({
|
|
942
1070
|
defineCustomElementFn: defineQdsTableRow
|
|
@@ -944,7 +1072,7 @@ QdsTableRow = __decorate([
|
|
|
944
1072
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
945
1073
|
], QdsTableRow);
|
|
946
1074
|
export { QdsTableRow };
|
|
947
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1075
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTableRow, decorators: [{
|
|
948
1076
|
type: Component,
|
|
949
1077
|
args: [{
|
|
950
1078
|
selector: 'qds-table-row',
|
|
@@ -952,7 +1080,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
952
1080
|
template: '<ng-content></ng-content>',
|
|
953
1081
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
954
1082
|
inputs: [],
|
|
955
|
-
standalone: true
|
|
956
1083
|
}]
|
|
957
1084
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
958
1085
|
let QdsTag = class QdsTag {
|
|
@@ -962,8 +1089,8 @@ let QdsTag = class QdsTag {
|
|
|
962
1089
|
this.el = r.nativeElement;
|
|
963
1090
|
}
|
|
964
1091
|
};
|
|
965
|
-
QdsTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
966
|
-
QdsTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1092
|
+
QdsTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1093
|
+
QdsTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsTag, isStandalone: true, selector: "qds-tag", inputs: { badge: "badge", badgeDescription: "badgeDescription", iconDescription: "iconDescription", iconLibrary: "iconLibrary", iconName: "iconName", importance: "importance", size: "size", status: "status", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
967
1094
|
QdsTag = __decorate([
|
|
968
1095
|
ProxyCmp({
|
|
969
1096
|
defineCustomElementFn: defineQdsTag,
|
|
@@ -972,7 +1099,7 @@ QdsTag = __decorate([
|
|
|
972
1099
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
973
1100
|
], QdsTag);
|
|
974
1101
|
export { QdsTag };
|
|
975
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTag, decorators: [{
|
|
976
1103
|
type: Component,
|
|
977
1104
|
args: [{
|
|
978
1105
|
selector: 'qds-tag',
|
|
@@ -980,19 +1107,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
980
1107
|
template: '<ng-content></ng-content>',
|
|
981
1108
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
982
1109
|
inputs: ['badge', 'badgeDescription', 'iconDescription', 'iconLibrary', 'iconName', 'importance', 'size', 'status', 'text'],
|
|
983
|
-
standalone: true
|
|
984
1110
|
}]
|
|
985
1111
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
986
1112
|
let QdsTextarea = class QdsTextarea {
|
|
987
1113
|
constructor(c, r, z) {
|
|
988
1114
|
this.z = z;
|
|
1115
|
+
this.qdsBlur = new EventEmitter();
|
|
1116
|
+
this.qdsChange = new EventEmitter();
|
|
1117
|
+
this.qdsFocus = new EventEmitter();
|
|
1118
|
+
this.qdsInput = new EventEmitter();
|
|
989
1119
|
c.detach();
|
|
990
1120
|
this.el = r.nativeElement;
|
|
991
|
-
proxyOutputs(this, this.el, ['qdsBlur', 'qdsChange', 'qdsFocus', 'qdsInput']);
|
|
992
1121
|
}
|
|
993
1122
|
};
|
|
994
|
-
QdsTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
995
|
-
QdsTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1123
|
+
QdsTextarea.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1124
|
+
QdsTextarea.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsTextarea, isStandalone: true, selector: "qds-textarea", inputs: { autoComplete: "autoComplete", 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", validationMessage: "validationMessage", validity: "validity", value: "value", willValidate: "willValidate", wrap: "wrap" }, outputs: { qdsBlur: "qdsBlur", qdsChange: "qdsChange", qdsFocus: "qdsFocus", qdsInput: "qdsInput" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
996
1125
|
QdsTextarea = __decorate([
|
|
997
1126
|
ProxyCmp({
|
|
998
1127
|
defineCustomElementFn: defineQdsTextarea,
|
|
@@ -1001,7 +1130,7 @@ QdsTextarea = __decorate([
|
|
|
1001
1130
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1002
1131
|
], QdsTextarea);
|
|
1003
1132
|
export { QdsTextarea };
|
|
1004
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTextarea, decorators: [{
|
|
1005
1134
|
type: Component,
|
|
1006
1135
|
args: [{
|
|
1007
1136
|
selector: 'qds-textarea',
|
|
@@ -1009,9 +1138,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1009
1138
|
template: '<ng-content></ng-content>',
|
|
1010
1139
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1011
1140
|
inputs: ['autoComplete', 'cols', 'disabled', 'enterkeyhint', 'form', 'inputmode', 'labels', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'rows', 'selectionDirection', 'selectionEnd', 'selectionStart', 'size', 'validationMessage', 'validity', 'value', 'willValidate', 'wrap'],
|
|
1012
|
-
|
|
1141
|
+
outputs: ['qdsBlur', 'qdsChange', 'qdsFocus', 'qdsInput'],
|
|
1013
1142
|
}]
|
|
1014
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1143
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsBlur: [{
|
|
1144
|
+
type: Output
|
|
1145
|
+
}], qdsChange: [{
|
|
1146
|
+
type: Output
|
|
1147
|
+
}], qdsFocus: [{
|
|
1148
|
+
type: Output
|
|
1149
|
+
}], qdsInput: [{
|
|
1150
|
+
type: Output
|
|
1151
|
+
}] } });
|
|
1015
1152
|
let QdsTitle = class QdsTitle {
|
|
1016
1153
|
constructor(c, r, z) {
|
|
1017
1154
|
this.z = z;
|
|
@@ -1019,8 +1156,8 @@ let QdsTitle = class QdsTitle {
|
|
|
1019
1156
|
this.el = r.nativeElement;
|
|
1020
1157
|
}
|
|
1021
1158
|
};
|
|
1022
|
-
QdsTitle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1023
|
-
QdsTitle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1159
|
+
QdsTitle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1160
|
+
QdsTitle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsTitle, isStandalone: true, selector: "qds-title", inputs: { alignment: "alignment", iconLibrary: "iconLibrary", iconName: "iconName", kicker: "kicker", layer: "layer", level: "level", subtitle: "subtitle", tag: "tag", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1024
1161
|
QdsTitle = __decorate([
|
|
1025
1162
|
ProxyCmp({
|
|
1026
1163
|
defineCustomElementFn: defineQdsTitle,
|
|
@@ -1029,7 +1166,7 @@ QdsTitle = __decorate([
|
|
|
1029
1166
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1030
1167
|
], QdsTitle);
|
|
1031
1168
|
export { QdsTitle };
|
|
1032
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTitle, decorators: [{
|
|
1033
1170
|
type: Component,
|
|
1034
1171
|
args: [{
|
|
1035
1172
|
selector: 'qds-title',
|
|
@@ -1037,19 +1174,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1037
1174
|
template: '<ng-content></ng-content>',
|
|
1038
1175
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1039
1176
|
inputs: ['alignment', 'iconLibrary', 'iconName', 'kicker', 'layer', 'level', 'subtitle', 'tag', 'variant'],
|
|
1040
|
-
standalone: true
|
|
1041
1177
|
}]
|
|
1042
1178
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1043
1179
|
let QdsTooltip = class QdsTooltip {
|
|
1044
1180
|
constructor(c, r, z) {
|
|
1045
1181
|
this.z = z;
|
|
1182
|
+
this.qdsClose = new EventEmitter();
|
|
1046
1183
|
c.detach();
|
|
1047
1184
|
this.el = r.nativeElement;
|
|
1048
|
-
proxyOutputs(this, this.el, ['qdsClose']);
|
|
1049
1185
|
}
|
|
1050
1186
|
};
|
|
1051
|
-
QdsTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1052
|
-
QdsTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1187
|
+
QdsTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1188
|
+
QdsTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: QdsTooltip, isStandalone: true, selector: "qds-tooltip", inputs: { autoUpdateOptions: "autoUpdateOptions", disabled: "disabled", flipOptions: "flipOptions", noFlip: "noFlip", noShift: "noShift", offsetOptions: "offsetOptions", placement: "placement", shiftOptions: "shiftOptions", strategy: "strategy", target: "target", trigger: "trigger" }, outputs: { qdsClose: "qdsClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1053
1189
|
QdsTooltip = __decorate([
|
|
1054
1190
|
ProxyCmp({
|
|
1055
1191
|
defineCustomElementFn: defineQdsTooltip,
|
|
@@ -1059,7 +1195,7 @@ QdsTooltip = __decorate([
|
|
|
1059
1195
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1060
1196
|
], QdsTooltip);
|
|
1061
1197
|
export { QdsTooltip };
|
|
1062
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: QdsTooltip, decorators: [{
|
|
1063
1199
|
type: Component,
|
|
1064
1200
|
args: [{
|
|
1065
1201
|
selector: 'qds-tooltip',
|
|
@@ -1067,7 +1203,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImpor
|
|
|
1067
1203
|
template: '<ng-content></ng-content>',
|
|
1068
1204
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1069
1205
|
inputs: ['autoUpdateOptions', 'disabled', 'flipOptions', 'noFlip', 'noShift', 'offsetOptions', 'placement', 'shiftOptions', 'strategy', 'target', 'trigger'],
|
|
1070
|
-
|
|
1206
|
+
outputs: ['qdsClose'],
|
|
1071
1207
|
}]
|
|
1072
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1208
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { qdsClose: [{
|
|
1209
|
+
type: Output
|
|
1210
|
+
}] } });
|
|
1073
1211
|
//# sourceMappingURL=proxies.js.map
|