@beeq/angular 1.8.0-beta.3 → 1.8.0-beta.5
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/esm2022/beeq.module.mjs +4 -4
- package/esm2022/directives/boolean-value-accessor.mjs +3 -3
- package/esm2022/directives/components.mjs +126 -126
- package/esm2022/directives/number-value-accessor.mjs +3 -3
- package/esm2022/directives/radio-value-accessor.mjs +3 -3
- package/esm2022/directives/select-value-accessor.mjs +3 -3
- package/esm2022/directives/text-value-accessor.mjs +3 -3
- package/esm2022/directives/value-accessor.mjs +3 -3
- package/esm2022/standalone/directives/boolean-value-accessor.mjs +38 -0
- package/esm2022/standalone/directives/components.mjs +126 -126
- package/esm2022/standalone/directives/number-value-accessor.mjs +40 -0
- package/esm2022/standalone/directives/radio-value-accessor.mjs +35 -0
- package/esm2022/standalone/directives/select-value-accessor.mjs +35 -0
- package/esm2022/standalone/directives/text-value-accessor.mjs +35 -0
- package/esm2022/standalone/directives/value-accessor.mjs +42 -0
- package/esm2022/standalone/index.mjs +6 -2
- package/fesm2022/beeq-angular-standalone.mjs +333 -130
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +148 -148
- package/package.json +2 -2
- package/standalone/directives/boolean-value-accessor.d.ts +9 -0
- package/standalone/directives/number-value-accessor.d.ts +9 -0
- package/standalone/directives/radio-value-accessor.d.ts +8 -0
- package/standalone/directives/select-value-accessor.d.ts +8 -0
- package/standalone/directives/text-value-accessor.d.ts +8 -0
- package/standalone/directives/value-accessor.d.ts +18 -0
- package/standalone/index.d.ts +5 -0
|
@@ -13,8 +13,8 @@ let BqAccordion = class BqAccordion {
|
|
|
13
13
|
this.el = r.nativeElement;
|
|
14
14
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose']);
|
|
15
15
|
}
|
|
16
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
17
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
16
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
17
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqAccordion, selector: "bq-accordion", inputs: { appearance: "appearance", disabled: "disabled", expanded: "expanded", noAnimation: "noAnimation", rotate: "rotate", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
18
18
|
};
|
|
19
19
|
BqAccordion = __decorate([
|
|
20
20
|
ProxyCmp({
|
|
@@ -23,7 +23,7 @@ BqAccordion = __decorate([
|
|
|
23
23
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
24
24
|
], BqAccordion);
|
|
25
25
|
export { BqAccordion };
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqAccordion, decorators: [{
|
|
27
27
|
type: Component,
|
|
28
28
|
args: [{
|
|
29
29
|
selector: 'bq-accordion',
|
|
@@ -41,8 +41,8 @@ let BqAccordionGroup = class BqAccordionGroup {
|
|
|
41
41
|
c.detach();
|
|
42
42
|
this.el = r.nativeElement;
|
|
43
43
|
}
|
|
44
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
45
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
44
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
45
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqAccordionGroup, selector: "bq-accordion-group", inputs: { appearance: "appearance", expandAll: "expandAll", multiple: "multiple", noAnimation: "noAnimation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
46
46
|
};
|
|
47
47
|
BqAccordionGroup = __decorate([
|
|
48
48
|
ProxyCmp({
|
|
@@ -51,7 +51,7 @@ BqAccordionGroup = __decorate([
|
|
|
51
51
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
52
52
|
], BqAccordionGroup);
|
|
53
53
|
export { BqAccordionGroup };
|
|
54
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
54
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
55
55
|
type: Component,
|
|
56
56
|
args: [{
|
|
57
57
|
selector: 'bq-accordion-group',
|
|
@@ -70,8 +70,8 @@ let BqAlert = class BqAlert {
|
|
|
70
70
|
this.el = r.nativeElement;
|
|
71
71
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide']);
|
|
72
72
|
}
|
|
73
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
74
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
73
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
74
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqAlert, selector: "bq-alert", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", sticky: "sticky", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
75
75
|
};
|
|
76
76
|
BqAlert = __decorate([
|
|
77
77
|
ProxyCmp({
|
|
@@ -81,7 +81,7 @@ BqAlert = __decorate([
|
|
|
81
81
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
82
82
|
], BqAlert);
|
|
83
83
|
export { BqAlert };
|
|
84
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
84
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqAlert, decorators: [{
|
|
85
85
|
type: Component,
|
|
86
86
|
args: [{
|
|
87
87
|
selector: 'bq-alert',
|
|
@@ -99,8 +99,8 @@ let BqAvatar = class BqAvatar {
|
|
|
99
99
|
c.detach();
|
|
100
100
|
this.el = r.nativeElement;
|
|
101
101
|
}
|
|
102
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
103
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
102
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
103
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqAvatar, selector: "bq-avatar", inputs: { altText: "altText", image: "image", initials: "initials", label: "label", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
104
104
|
};
|
|
105
105
|
BqAvatar = __decorate([
|
|
106
106
|
ProxyCmp({
|
|
@@ -109,7 +109,7 @@ BqAvatar = __decorate([
|
|
|
109
109
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
110
110
|
], BqAvatar);
|
|
111
111
|
export { BqAvatar };
|
|
112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqAvatar, decorators: [{
|
|
113
113
|
type: Component,
|
|
114
114
|
args: [{
|
|
115
115
|
selector: 'bq-avatar',
|
|
@@ -127,8 +127,8 @@ let BqBadge = class BqBadge {
|
|
|
127
127
|
c.detach();
|
|
128
128
|
this.el = r.nativeElement;
|
|
129
129
|
}
|
|
130
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
131
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
130
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
131
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqBadge, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
132
132
|
};
|
|
133
133
|
BqBadge = __decorate([
|
|
134
134
|
ProxyCmp({
|
|
@@ -137,7 +137,7 @@ BqBadge = __decorate([
|
|
|
137
137
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
138
138
|
], BqBadge);
|
|
139
139
|
export { BqBadge };
|
|
140
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
140
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqBadge, decorators: [{
|
|
141
141
|
type: Component,
|
|
142
142
|
args: [{
|
|
143
143
|
selector: 'bq-badge',
|
|
@@ -156,8 +156,8 @@ let BqBreadcrumb = class BqBreadcrumb {
|
|
|
156
156
|
this.el = r.nativeElement;
|
|
157
157
|
proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
|
|
158
158
|
}
|
|
159
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
160
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
159
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
160
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqBreadcrumb, selector: "bq-breadcrumb", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
161
161
|
};
|
|
162
162
|
BqBreadcrumb = __decorate([
|
|
163
163
|
ProxyCmp({
|
|
@@ -166,7 +166,7 @@ BqBreadcrumb = __decorate([
|
|
|
166
166
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
167
167
|
], BqBreadcrumb);
|
|
168
168
|
export { BqBreadcrumb };
|
|
169
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
170
170
|
type: Component,
|
|
171
171
|
args: [{
|
|
172
172
|
selector: 'bq-breadcrumb',
|
|
@@ -185,8 +185,8 @@ let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
|
185
185
|
this.el = r.nativeElement;
|
|
186
186
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
187
187
|
}
|
|
188
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
189
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
188
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
189
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqBreadcrumbItem, selector: "bq-breadcrumb-item", inputs: { ariaLabel: "ariaLabel", href: "href", isLastItem: "isLastItem", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
190
190
|
};
|
|
191
191
|
BqBreadcrumbItem = __decorate([
|
|
192
192
|
ProxyCmp({
|
|
@@ -195,7 +195,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
195
195
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
196
196
|
], BqBreadcrumbItem);
|
|
197
197
|
export { BqBreadcrumbItem };
|
|
198
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
199
199
|
type: Component,
|
|
200
200
|
args: [{
|
|
201
201
|
selector: 'bq-breadcrumb-item',
|
|
@@ -214,8 +214,8 @@ let BqButton = class BqButton {
|
|
|
214
214
|
this.el = r.nativeElement;
|
|
215
215
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
216
216
|
}
|
|
217
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
218
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
217
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
218
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqButton, selector: "bq-button", inputs: { appearance: "appearance", block: "block", border: "border", disabled: "disabled", download: "download", href: "href", justifyContent: "justifyContent", loading: "loading", size: "size", target: "target", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
219
219
|
};
|
|
220
220
|
BqButton = __decorate([
|
|
221
221
|
ProxyCmp({
|
|
@@ -224,7 +224,7 @@ BqButton = __decorate([
|
|
|
224
224
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
225
225
|
], BqButton);
|
|
226
226
|
export { BqButton };
|
|
227
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqButton, decorators: [{
|
|
228
228
|
type: Component,
|
|
229
229
|
args: [{
|
|
230
230
|
selector: 'bq-button',
|
|
@@ -242,8 +242,8 @@ let BqCard = class BqCard {
|
|
|
242
242
|
c.detach();
|
|
243
243
|
this.el = r.nativeElement;
|
|
244
244
|
}
|
|
245
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
246
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
245
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
246
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqCard, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
247
247
|
};
|
|
248
248
|
BqCard = __decorate([
|
|
249
249
|
ProxyCmp({
|
|
@@ -252,7 +252,7 @@ BqCard = __decorate([
|
|
|
252
252
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
253
253
|
], BqCard);
|
|
254
254
|
export { BqCard };
|
|
255
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqCard, decorators: [{
|
|
256
256
|
type: Component,
|
|
257
257
|
args: [{
|
|
258
258
|
selector: 'bq-card',
|
|
@@ -271,8 +271,8 @@ let BqCheckbox = class BqCheckbox {
|
|
|
271
271
|
this.el = r.nativeElement;
|
|
272
272
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
273
273
|
}
|
|
274
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
275
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
274
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
275
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqCheckbox, selector: "bq-checkbox", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", formValidationMessage: "formValidationMessage", indeterminate: "indeterminate", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
276
276
|
};
|
|
277
277
|
BqCheckbox = __decorate([
|
|
278
278
|
ProxyCmp({
|
|
@@ -282,7 +282,7 @@ BqCheckbox = __decorate([
|
|
|
282
282
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
283
283
|
], BqCheckbox);
|
|
284
284
|
export { BqCheckbox };
|
|
285
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
286
286
|
type: Component,
|
|
287
287
|
args: [{
|
|
288
288
|
selector: 'bq-checkbox',
|
|
@@ -301,8 +301,8 @@ let BqDatePicker = class BqDatePicker {
|
|
|
301
301
|
this.el = r.nativeElement;
|
|
302
302
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus']);
|
|
303
303
|
}
|
|
304
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
305
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
304
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
305
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqDatePicker, selector: "bq-date-picker", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", disableClear: "disableClear", disabled: "disabled", distance: "distance", firstDayOfWeek: "firstDayOfWeek", form: "form", formatOptions: "formatOptions", isDateDisallowed: "isDateDisallowed", locale: "locale", max: "max", min: "min", months: "months", monthsPerView: "monthsPerView", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", required: "required", showOutsideDays: "showOutsideDays", skidding: "skidding", strategy: "strategy", tentative: "tentative", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
306
306
|
};
|
|
307
307
|
BqDatePicker = __decorate([
|
|
308
308
|
ProxyCmp({
|
|
@@ -312,7 +312,7 @@ BqDatePicker = __decorate([
|
|
|
312
312
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
313
313
|
], BqDatePicker);
|
|
314
314
|
export { BqDatePicker };
|
|
315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
316
316
|
type: Component,
|
|
317
317
|
args: [{
|
|
318
318
|
selector: 'bq-date-picker',
|
|
@@ -331,8 +331,8 @@ let BqDialog = class BqDialog {
|
|
|
331
331
|
this.el = r.nativeElement;
|
|
332
332
|
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
333
333
|
}
|
|
334
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
335
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
334
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
335
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqDialog, selector: "bq-dialog", inputs: { border: "border", disableBackdrop: "disableBackdrop", disableCloseClickOutside: "disableCloseClickOutside", disableCloseEscKeydown: "disableCloseEscKeydown", footerAppearance: "footerAppearance", hideCloseButton: "hideCloseButton", open: "open", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
336
336
|
};
|
|
337
337
|
BqDialog = __decorate([
|
|
338
338
|
ProxyCmp({
|
|
@@ -342,7 +342,7 @@ BqDialog = __decorate([
|
|
|
342
342
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
343
343
|
], BqDialog);
|
|
344
344
|
export { BqDialog };
|
|
345
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqDialog, decorators: [{
|
|
346
346
|
type: Component,
|
|
347
347
|
args: [{
|
|
348
348
|
selector: 'bq-dialog',
|
|
@@ -360,8 +360,8 @@ let BqDivider = class BqDivider {
|
|
|
360
360
|
c.detach();
|
|
361
361
|
this.el = r.nativeElement;
|
|
362
362
|
}
|
|
363
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
364
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
363
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
364
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqDivider, selector: "bq-divider", inputs: { dashed: "dashed", orientation: "orientation", strokeBasis: "strokeBasis", strokeColor: "strokeColor", strokeDashGap: "strokeDashGap", strokeDashWidth: "strokeDashWidth", strokeLinecap: "strokeLinecap", strokeThickness: "strokeThickness", titleAlignment: "titleAlignment" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
365
365
|
};
|
|
366
366
|
BqDivider = __decorate([
|
|
367
367
|
ProxyCmp({
|
|
@@ -370,7 +370,7 @@ BqDivider = __decorate([
|
|
|
370
370
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
371
371
|
], BqDivider);
|
|
372
372
|
export { BqDivider };
|
|
373
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqDivider, decorators: [{
|
|
374
374
|
type: Component,
|
|
375
375
|
args: [{
|
|
376
376
|
selector: 'bq-divider',
|
|
@@ -389,8 +389,8 @@ let BqDrawer = class BqDrawer {
|
|
|
389
389
|
this.el = r.nativeElement;
|
|
390
390
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
391
391
|
}
|
|
392
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
393
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
392
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
393
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqDrawer, selector: "bq-drawer", inputs: { closeOnClickOutside: "closeOnClickOutside", closeOnEsc: "closeOnEsc", enableBackdrop: "enableBackdrop", open: "open", placement: "placement", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
394
394
|
};
|
|
395
395
|
BqDrawer = __decorate([
|
|
396
396
|
ProxyCmp({
|
|
@@ -400,7 +400,7 @@ BqDrawer = __decorate([
|
|
|
400
400
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
401
401
|
], BqDrawer);
|
|
402
402
|
export { BqDrawer };
|
|
403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqDrawer, decorators: [{
|
|
404
404
|
type: Component,
|
|
405
405
|
args: [{
|
|
406
406
|
selector: 'bq-drawer',
|
|
@@ -419,8 +419,8 @@ let BqDropdown = class BqDropdown {
|
|
|
419
419
|
this.el = r.nativeElement;
|
|
420
420
|
proxyOutputs(this, this.el, ['bqOpen']);
|
|
421
421
|
}
|
|
422
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
423
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
422
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
423
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqDropdown, selector: "bq-dropdown", inputs: { disabled: "disabled", distance: "distance", keepOpenOnSelect: "keepOpenOnSelect", open: "open", panelHeight: "panelHeight", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
424
424
|
};
|
|
425
425
|
BqDropdown = __decorate([
|
|
426
426
|
ProxyCmp({
|
|
@@ -429,7 +429,7 @@ BqDropdown = __decorate([
|
|
|
429
429
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
430
430
|
], BqDropdown);
|
|
431
431
|
export { BqDropdown };
|
|
432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
432
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqDropdown, decorators: [{
|
|
433
433
|
type: Component,
|
|
434
434
|
args: [{
|
|
435
435
|
selector: 'bq-dropdown',
|
|
@@ -447,8 +447,8 @@ let BqEmptyState = class BqEmptyState {
|
|
|
447
447
|
c.detach();
|
|
448
448
|
this.el = r.nativeElement;
|
|
449
449
|
}
|
|
450
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
451
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
450
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
451
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqEmptyState, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
452
452
|
};
|
|
453
453
|
BqEmptyState = __decorate([
|
|
454
454
|
ProxyCmp({
|
|
@@ -457,7 +457,7 @@ BqEmptyState = __decorate([
|
|
|
457
457
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
458
458
|
], BqEmptyState);
|
|
459
459
|
export { BqEmptyState };
|
|
460
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
461
461
|
type: Component,
|
|
462
462
|
args: [{
|
|
463
463
|
selector: 'bq-empty-state',
|
|
@@ -476,8 +476,8 @@ let BqIcon = class BqIcon {
|
|
|
476
476
|
this.el = r.nativeElement;
|
|
477
477
|
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
478
478
|
}
|
|
479
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
480
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
479
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
480
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqIcon, selector: "bq-icon", inputs: { color: "color", label: "label", name: "name", size: "size", src: "src", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
481
481
|
};
|
|
482
482
|
BqIcon = __decorate([
|
|
483
483
|
ProxyCmp({
|
|
@@ -486,7 +486,7 @@ BqIcon = __decorate([
|
|
|
486
486
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
487
487
|
], BqIcon);
|
|
488
488
|
export { BqIcon };
|
|
489
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqIcon, decorators: [{
|
|
490
490
|
type: Component,
|
|
491
491
|
args: [{
|
|
492
492
|
selector: 'bq-icon',
|
|
@@ -505,8 +505,8 @@ let BqInput = class BqInput {
|
|
|
505
505
|
this.el = r.nativeElement;
|
|
506
506
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
507
507
|
}
|
|
508
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
509
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
508
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
509
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqInput, selector: "bq-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", form: "form", inputmode: "inputmode", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
510
510
|
};
|
|
511
511
|
BqInput = __decorate([
|
|
512
512
|
ProxyCmp({
|
|
@@ -515,7 +515,7 @@ BqInput = __decorate([
|
|
|
515
515
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
516
516
|
], BqInput);
|
|
517
517
|
export { BqInput };
|
|
518
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqInput, decorators: [{
|
|
519
519
|
type: Component,
|
|
520
520
|
args: [{
|
|
521
521
|
selector: 'bq-input',
|
|
@@ -534,8 +534,8 @@ let BqNotification = class BqNotification {
|
|
|
534
534
|
this.el = r.nativeElement;
|
|
535
535
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
536
536
|
}
|
|
537
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
538
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
537
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
538
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqNotification, selector: "bq-notification", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
539
539
|
};
|
|
540
540
|
BqNotification = __decorate([
|
|
541
541
|
ProxyCmp({
|
|
@@ -545,7 +545,7 @@ BqNotification = __decorate([
|
|
|
545
545
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
546
546
|
], BqNotification);
|
|
547
547
|
export { BqNotification };
|
|
548
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqNotification, decorators: [{
|
|
549
549
|
type: Component,
|
|
550
550
|
args: [{
|
|
551
551
|
selector: 'bq-notification',
|
|
@@ -564,8 +564,8 @@ let BqOption = class BqOption {
|
|
|
564
564
|
this.el = r.nativeElement;
|
|
565
565
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
566
566
|
}
|
|
567
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
568
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
567
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
568
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqOption, selector: "bq-option", inputs: { disabled: "disabled", hidden: "hidden", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
569
569
|
};
|
|
570
570
|
BqOption = __decorate([
|
|
571
571
|
ProxyCmp({
|
|
@@ -574,7 +574,7 @@ BqOption = __decorate([
|
|
|
574
574
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
575
575
|
], BqOption);
|
|
576
576
|
export { BqOption };
|
|
577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqOption, decorators: [{
|
|
578
578
|
type: Component,
|
|
579
579
|
args: [{
|
|
580
580
|
selector: 'bq-option',
|
|
@@ -592,15 +592,15 @@ let BqOptionGroup = class BqOptionGroup {
|
|
|
592
592
|
c.detach();
|
|
593
593
|
this.el = r.nativeElement;
|
|
594
594
|
}
|
|
595
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
596
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
595
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
596
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqOptionGroup, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
597
597
|
};
|
|
598
598
|
BqOptionGroup = __decorate([
|
|
599
599
|
ProxyCmp({}),
|
|
600
600
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
601
601
|
], BqOptionGroup);
|
|
602
602
|
export { BqOptionGroup };
|
|
603
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
604
604
|
type: Component,
|
|
605
605
|
args: [{
|
|
606
606
|
selector: 'bq-option-group',
|
|
@@ -619,8 +619,8 @@ let BqOptionList = class BqOptionList {
|
|
|
619
619
|
this.el = r.nativeElement;
|
|
620
620
|
proxyOutputs(this, this.el, ['bqSelect']);
|
|
621
621
|
}
|
|
622
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
623
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
622
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
623
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqOptionList, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
624
624
|
};
|
|
625
625
|
BqOptionList = __decorate([
|
|
626
626
|
ProxyCmp({
|
|
@@ -629,7 +629,7 @@ BqOptionList = __decorate([
|
|
|
629
629
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
630
630
|
], BqOptionList);
|
|
631
631
|
export { BqOptionList };
|
|
632
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
632
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqOptionList, decorators: [{
|
|
633
633
|
type: Component,
|
|
634
634
|
args: [{
|
|
635
635
|
selector: 'bq-option-list',
|
|
@@ -647,15 +647,15 @@ let BqPageTitle = class BqPageTitle {
|
|
|
647
647
|
c.detach();
|
|
648
648
|
this.el = r.nativeElement;
|
|
649
649
|
}
|
|
650
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
651
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
650
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqPageTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
651
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqPageTitle, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
652
652
|
};
|
|
653
653
|
BqPageTitle = __decorate([
|
|
654
654
|
ProxyCmp({}),
|
|
655
655
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
656
656
|
], BqPageTitle);
|
|
657
657
|
export { BqPageTitle };
|
|
658
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
658
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
659
659
|
type: Component,
|
|
660
660
|
args: [{
|
|
661
661
|
selector: 'bq-page-title',
|
|
@@ -673,8 +673,8 @@ let BqPanel = class BqPanel {
|
|
|
673
673
|
c.detach();
|
|
674
674
|
this.el = r.nativeElement;
|
|
675
675
|
}
|
|
676
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
677
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
676
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
677
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqPanel, selector: "bq-panel", inputs: { distance: "distance", open: "open", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
678
678
|
};
|
|
679
679
|
BqPanel = __decorate([
|
|
680
680
|
ProxyCmp({
|
|
@@ -683,7 +683,7 @@ BqPanel = __decorate([
|
|
|
683
683
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
684
684
|
], BqPanel);
|
|
685
685
|
export { BqPanel };
|
|
686
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
686
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqPanel, decorators: [{
|
|
687
687
|
type: Component,
|
|
688
688
|
args: [{
|
|
689
689
|
selector: 'bq-panel',
|
|
@@ -701,8 +701,8 @@ let BqProgress = class BqProgress {
|
|
|
701
701
|
c.detach();
|
|
702
702
|
this.el = r.nativeElement;
|
|
703
703
|
}
|
|
704
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
705
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
704
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
705
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqProgress, selector: "bq-progress", inputs: { borderShape: "borderShape", enableTooltip: "enableTooltip", indeterminate: "indeterminate", label: "label", thickness: "thickness", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
706
706
|
};
|
|
707
707
|
BqProgress = __decorate([
|
|
708
708
|
ProxyCmp({
|
|
@@ -711,7 +711,7 @@ BqProgress = __decorate([
|
|
|
711
711
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
712
712
|
], BqProgress);
|
|
713
713
|
export { BqProgress };
|
|
714
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
714
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqProgress, decorators: [{
|
|
715
715
|
type: Component,
|
|
716
716
|
args: [{
|
|
717
717
|
selector: 'bq-progress',
|
|
@@ -730,8 +730,8 @@ let BqRadio = class BqRadio {
|
|
|
730
730
|
this.el = r.nativeElement;
|
|
731
731
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
732
732
|
}
|
|
733
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
734
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
733
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
734
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqRadio, selector: "bq-radio", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
735
735
|
};
|
|
736
736
|
BqRadio = __decorate([
|
|
737
737
|
ProxyCmp({
|
|
@@ -741,7 +741,7 @@ BqRadio = __decorate([
|
|
|
741
741
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
742
742
|
], BqRadio);
|
|
743
743
|
export { BqRadio };
|
|
744
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqRadio, decorators: [{
|
|
745
745
|
type: Component,
|
|
746
746
|
args: [{
|
|
747
747
|
selector: 'bq-radio',
|
|
@@ -760,8 +760,8 @@ let BqRadioGroup = class BqRadioGroup {
|
|
|
760
760
|
this.el = r.nativeElement;
|
|
761
761
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
762
762
|
}
|
|
763
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
764
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
763
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
764
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqRadioGroup, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
765
765
|
};
|
|
766
766
|
BqRadioGroup = __decorate([
|
|
767
767
|
ProxyCmp({
|
|
@@ -770,7 +770,7 @@ BqRadioGroup = __decorate([
|
|
|
770
770
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
771
771
|
], BqRadioGroup);
|
|
772
772
|
export { BqRadioGroup };
|
|
773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
774
774
|
type: Component,
|
|
775
775
|
args: [{
|
|
776
776
|
selector: 'bq-radio-group',
|
|
@@ -789,8 +789,8 @@ let BqSelect = class BqSelect {
|
|
|
789
789
|
this.el = r.nativeElement;
|
|
790
790
|
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
791
791
|
}
|
|
792
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
793
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
792
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
793
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqSelect, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", distance: "distance", form: "form", keepOpenOnSelect: "keepOpenOnSelect", maxTagsVisible: "maxTagsVisible", multiple: "multiple", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
794
794
|
};
|
|
795
795
|
BqSelect = __decorate([
|
|
796
796
|
ProxyCmp({
|
|
@@ -800,7 +800,7 @@ BqSelect = __decorate([
|
|
|
800
800
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
801
801
|
], BqSelect);
|
|
802
802
|
export { BqSelect };
|
|
803
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSelect, decorators: [{
|
|
804
804
|
type: Component,
|
|
805
805
|
args: [{
|
|
806
806
|
selector: 'bq-select',
|
|
@@ -819,8 +819,8 @@ let BqSideMenu = class BqSideMenu {
|
|
|
819
819
|
this.el = r.nativeElement;
|
|
820
820
|
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
821
821
|
}
|
|
822
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
823
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
822
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
823
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqSideMenu, selector: "bq-side-menu", inputs: { appearance: "appearance", collapse: "collapse", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
824
824
|
};
|
|
825
825
|
BqSideMenu = __decorate([
|
|
826
826
|
ProxyCmp({
|
|
@@ -830,7 +830,7 @@ BqSideMenu = __decorate([
|
|
|
830
830
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
831
831
|
], BqSideMenu);
|
|
832
832
|
export { BqSideMenu };
|
|
833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
834
834
|
type: Component,
|
|
835
835
|
args: [{
|
|
836
836
|
selector: 'bq-side-menu',
|
|
@@ -849,8 +849,8 @@ let BqSideMenuItem = class BqSideMenuItem {
|
|
|
849
849
|
this.el = r.nativeElement;
|
|
850
850
|
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
851
851
|
}
|
|
852
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
853
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
852
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
853
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqSideMenuItem, selector: "bq-side-menu-item", inputs: { active: "active", collapse: "collapse", disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
854
854
|
};
|
|
855
855
|
BqSideMenuItem = __decorate([
|
|
856
856
|
ProxyCmp({
|
|
@@ -859,7 +859,7 @@ BqSideMenuItem = __decorate([
|
|
|
859
859
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
860
860
|
], BqSideMenuItem);
|
|
861
861
|
export { BqSideMenuItem };
|
|
862
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
862
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
863
863
|
type: Component,
|
|
864
864
|
args: [{
|
|
865
865
|
selector: 'bq-side-menu-item',
|
|
@@ -878,8 +878,8 @@ let BqSlider = class BqSlider {
|
|
|
878
878
|
this.el = r.nativeElement;
|
|
879
879
|
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
880
880
|
}
|
|
881
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
882
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
881
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
882
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqSlider, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", enableTooltip: "enableTooltip", enableValueIndicator: "enableValueIndicator", gap: "gap", max: "max", min: "min", step: "step", tooltipAlwaysVisible: "tooltipAlwaysVisible", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
883
883
|
};
|
|
884
884
|
BqSlider = __decorate([
|
|
885
885
|
ProxyCmp({
|
|
@@ -888,7 +888,7 @@ BqSlider = __decorate([
|
|
|
888
888
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
889
889
|
], BqSlider);
|
|
890
890
|
export { BqSlider };
|
|
891
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSlider, decorators: [{
|
|
892
892
|
type: Component,
|
|
893
893
|
args: [{
|
|
894
894
|
selector: 'bq-slider',
|
|
@@ -906,8 +906,8 @@ let BqSpinner = class BqSpinner {
|
|
|
906
906
|
c.detach();
|
|
907
907
|
this.el = r.nativeElement;
|
|
908
908
|
}
|
|
909
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
910
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
909
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
910
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqSpinner, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
911
911
|
};
|
|
912
912
|
BqSpinner = __decorate([
|
|
913
913
|
ProxyCmp({
|
|
@@ -916,7 +916,7 @@ BqSpinner = __decorate([
|
|
|
916
916
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
917
917
|
], BqSpinner);
|
|
918
918
|
export { BqSpinner };
|
|
919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSpinner, decorators: [{
|
|
920
920
|
type: Component,
|
|
921
921
|
args: [{
|
|
922
922
|
selector: 'bq-spinner',
|
|
@@ -934,8 +934,8 @@ let BqStatus = class BqStatus {
|
|
|
934
934
|
c.detach();
|
|
935
935
|
this.el = r.nativeElement;
|
|
936
936
|
}
|
|
937
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
938
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
937
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
938
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqStatus, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
939
939
|
};
|
|
940
940
|
BqStatus = __decorate([
|
|
941
941
|
ProxyCmp({
|
|
@@ -944,7 +944,7 @@ BqStatus = __decorate([
|
|
|
944
944
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
945
945
|
], BqStatus);
|
|
946
946
|
export { BqStatus };
|
|
947
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
947
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqStatus, decorators: [{
|
|
948
948
|
type: Component,
|
|
949
949
|
args: [{
|
|
950
950
|
selector: 'bq-status',
|
|
@@ -963,8 +963,8 @@ let BqStepItem = class BqStepItem {
|
|
|
963
963
|
this.el = r.nativeElement;
|
|
964
964
|
proxyOutputs(this, this.el, ['bqClick']);
|
|
965
965
|
}
|
|
966
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
967
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
966
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
967
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqStepItem, selector: "bq-step-item", inputs: { size: "size", status: "status", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
968
968
|
};
|
|
969
969
|
BqStepItem = __decorate([
|
|
970
970
|
ProxyCmp({
|
|
@@ -973,7 +973,7 @@ BqStepItem = __decorate([
|
|
|
973
973
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
974
974
|
], BqStepItem);
|
|
975
975
|
export { BqStepItem };
|
|
976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqStepItem, decorators: [{
|
|
977
977
|
type: Component,
|
|
978
978
|
args: [{
|
|
979
979
|
selector: 'bq-step-item',
|
|
@@ -991,8 +991,8 @@ let BqSteps = class BqSteps {
|
|
|
991
991
|
c.detach();
|
|
992
992
|
this.el = r.nativeElement;
|
|
993
993
|
}
|
|
994
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
995
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
994
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
995
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqSteps, selector: "bq-steps", inputs: { dividerColor: "dividerColor", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
996
996
|
};
|
|
997
997
|
BqSteps = __decorate([
|
|
998
998
|
ProxyCmp({
|
|
@@ -1001,7 +1001,7 @@ BqSteps = __decorate([
|
|
|
1001
1001
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1002
1002
|
], BqSteps);
|
|
1003
1003
|
export { BqSteps };
|
|
1004
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1004
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSteps, decorators: [{
|
|
1005
1005
|
type: Component,
|
|
1006
1006
|
args: [{
|
|
1007
1007
|
selector: 'bq-steps',
|
|
@@ -1020,8 +1020,8 @@ let BqSwitch = class BqSwitch {
|
|
|
1020
1020
|
this.el = r.nativeElement;
|
|
1021
1021
|
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1022
1022
|
}
|
|
1023
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1024
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1023
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1024
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqSwitch, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", fullWidth: "fullWidth", innerLabel: "innerLabel", justifyContent: "justifyContent", name: "name", required: "required", reverseOrder: "reverseOrder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1025
1025
|
};
|
|
1026
1026
|
BqSwitch = __decorate([
|
|
1027
1027
|
ProxyCmp({
|
|
@@ -1031,7 +1031,7 @@ BqSwitch = __decorate([
|
|
|
1031
1031
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1032
1032
|
], BqSwitch);
|
|
1033
1033
|
export { BqSwitch };
|
|
1034
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1034
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1035
1035
|
type: Component,
|
|
1036
1036
|
args: [{
|
|
1037
1037
|
selector: 'bq-switch',
|
|
@@ -1050,8 +1050,8 @@ let BqTab = class BqTab {
|
|
|
1050
1050
|
this.el = r.nativeElement;
|
|
1051
1051
|
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1052
1052
|
}
|
|
1053
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1054
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1053
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1054
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqTab, selector: "bq-tab", inputs: { active: "active", controls: "controls", disabled: "disabled", orientation: "orientation", placement: "placement", size: "size", tabId: "tabId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1055
1055
|
};
|
|
1056
1056
|
BqTab = __decorate([
|
|
1057
1057
|
ProxyCmp({
|
|
@@ -1061,7 +1061,7 @@ BqTab = __decorate([
|
|
|
1061
1061
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1062
1062
|
], BqTab);
|
|
1063
1063
|
export { BqTab };
|
|
1064
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1064
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqTab, decorators: [{
|
|
1065
1065
|
type: Component,
|
|
1066
1066
|
args: [{
|
|
1067
1067
|
selector: 'bq-tab',
|
|
@@ -1080,8 +1080,8 @@ let BqTabGroup = class BqTabGroup {
|
|
|
1080
1080
|
this.el = r.nativeElement;
|
|
1081
1081
|
proxyOutputs(this, this.el, ['bqChange']);
|
|
1082
1082
|
}
|
|
1083
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1084
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1083
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1084
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqTabGroup, selector: "bq-tab-group", inputs: { debounceTime: "debounceTime", disableDivider: "disableDivider", orientation: "orientation", placement: "placement", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1085
1085
|
};
|
|
1086
1086
|
BqTabGroup = __decorate([
|
|
1087
1087
|
ProxyCmp({
|
|
@@ -1090,7 +1090,7 @@ BqTabGroup = __decorate([
|
|
|
1090
1090
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1091
1091
|
], BqTabGroup);
|
|
1092
1092
|
export { BqTabGroup };
|
|
1093
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1094
1094
|
type: Component,
|
|
1095
1095
|
args: [{
|
|
1096
1096
|
selector: 'bq-tab-group',
|
|
@@ -1109,8 +1109,8 @@ let BqTag = class BqTag {
|
|
|
1109
1109
|
this.el = r.nativeElement;
|
|
1110
1110
|
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1111
1111
|
}
|
|
1112
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1113
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1112
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1113
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqTag, selector: "bq-tag", inputs: { border: "border", clickable: "clickable", color: "color", disabled: "disabled", hidden: "hidden", removable: "removable", selected: "selected", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1114
1114
|
};
|
|
1115
1115
|
BqTag = __decorate([
|
|
1116
1116
|
ProxyCmp({
|
|
@@ -1120,7 +1120,7 @@ BqTag = __decorate([
|
|
|
1120
1120
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1121
1121
|
], BqTag);
|
|
1122
1122
|
export { BqTag };
|
|
1123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqTag, decorators: [{
|
|
1124
1124
|
type: Component,
|
|
1125
1125
|
args: [{
|
|
1126
1126
|
selector: 'bq-tag',
|
|
@@ -1139,8 +1139,8 @@ let BqTextarea = class BqTextarea {
|
|
|
1139
1139
|
this.el = r.nativeElement;
|
|
1140
1140
|
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1141
1141
|
}
|
|
1142
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1143
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1142
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1143
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqTextarea, selector: "bq-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", debounceTime: "debounceTime", disableResize: "disableResize", disabled: "disabled", form: "form", maxlength: "maxlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", spellcheck: "spellcheck", validationStatus: "validationStatus", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1144
1144
|
};
|
|
1145
1145
|
BqTextarea = __decorate([
|
|
1146
1146
|
ProxyCmp({
|
|
@@ -1149,7 +1149,7 @@ BqTextarea = __decorate([
|
|
|
1149
1149
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1150
1150
|
], BqTextarea);
|
|
1151
1151
|
export { BqTextarea };
|
|
1152
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1152
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1153
1153
|
type: Component,
|
|
1154
1154
|
args: [{
|
|
1155
1155
|
selector: 'bq-textarea',
|
|
@@ -1168,8 +1168,8 @@ let BqToast = class BqToast {
|
|
|
1168
1168
|
this.el = r.nativeElement;
|
|
1169
1169
|
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1170
1170
|
}
|
|
1171
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1172
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1171
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1172
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqToast, selector: "bq-toast", inputs: { border: "border", hideIcon: "hideIcon", open: "open", placement: "placement", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1173
1173
|
};
|
|
1174
1174
|
BqToast = __decorate([
|
|
1175
1175
|
ProxyCmp({
|
|
@@ -1179,7 +1179,7 @@ BqToast = __decorate([
|
|
|
1179
1179
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1180
1180
|
], BqToast);
|
|
1181
1181
|
export { BqToast };
|
|
1182
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1182
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqToast, decorators: [{
|
|
1183
1183
|
type: Component,
|
|
1184
1184
|
args: [{
|
|
1185
1185
|
selector: 'bq-toast',
|
|
@@ -1197,8 +1197,8 @@ let BqTooltip = class BqTooltip {
|
|
|
1197
1197
|
c.detach();
|
|
1198
1198
|
this.el = r.nativeElement;
|
|
1199
1199
|
}
|
|
1200
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1201
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
1200
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1201
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: BqTooltip, selector: "bq-tooltip", inputs: { alwaysVisible: "alwaysVisible", displayOn: "displayOn", distance: "distance", hideArrow: "hideArrow", placement: "placement", sameWidth: "sameWidth", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1202
1202
|
};
|
|
1203
1203
|
BqTooltip = __decorate([
|
|
1204
1204
|
ProxyCmp({
|
|
@@ -1208,7 +1208,7 @@ BqTooltip = __decorate([
|
|
|
1208
1208
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1209
1209
|
], BqTooltip);
|
|
1210
1210
|
export { BqTooltip };
|
|
1211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1212
1212
|
type: Component,
|
|
1213
1213
|
args: [{
|
|
1214
1214
|
selector: 'bq-tooltip',
|