@beeq/angular 1.10.0-beta.6 → 1.10.0
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/fesm2022/beeq-angular-standalone.mjs +506 -263
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +557 -225
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/index.d.ts +2298 -12
- package/package.json +2 -6
- package/standalone/index.d.ts +1005 -11
- package/beeq.module.d.ts +0 -15
- package/directives/angular-component-lib/utils.d.ts +0 -9
- package/directives/boolean-value-accessor.d.ts +0 -9
- package/directives/components.d.ts +0 -2098
- package/directives/index.d.ts +0 -2
- package/directives/number-value-accessor.d.ts +0 -9
- package/directives/radio-value-accessor.d.ts +0 -8
- package/directives/select-value-accessor.d.ts +0 -8
- package/directives/text-value-accessor.d.ts +0 -8
- package/directives/value-accessor.d.ts +0 -18
- package/esm2022/beeq-angular.mjs +0 -5
- package/esm2022/beeq.module.mjs +0 -65
- package/esm2022/directives/angular-component-lib/utils.mjs +0 -59
- package/esm2022/directives/boolean-value-accessor.mjs +0 -38
- package/esm2022/directives/components.mjs +0 -2729
- package/esm2022/directives/index.mjs +0 -46
- package/esm2022/directives/number-value-accessor.mjs +0 -40
- package/esm2022/directives/radio-value-accessor.mjs +0 -35
- package/esm2022/directives/select-value-accessor.mjs +0 -35
- package/esm2022/directives/text-value-accessor.mjs +0 -35
- package/esm2022/directives/value-accessor.mjs +0 -40
- package/esm2022/index.mjs +0 -20
- package/esm2022/standalone/beeq-angular-standalone.mjs +0 -5
- package/esm2022/standalone/directives/angular-component-lib/utils.mjs +0 -59
- package/esm2022/standalone/directives/boolean-value-accessor.mjs +0 -38
- package/esm2022/standalone/directives/components.mjs +0 -1266
- package/esm2022/standalone/directives/number-value-accessor.mjs +0 -40
- package/esm2022/standalone/directives/radio-value-accessor.mjs +0 -35
- package/esm2022/standalone/directives/select-value-accessor.mjs +0 -35
- package/esm2022/standalone/directives/text-value-accessor.mjs +0 -35
- package/esm2022/standalone/directives/value-accessor.mjs +0 -40
- package/esm2022/standalone/index.mjs +0 -16
- package/standalone/directives/angular-component-lib/utils.d.ts +0 -9
- package/standalone/directives/boolean-value-accessor.d.ts +0 -9
- package/standalone/directives/components.d.ts +0 -813
- package/standalone/directives/number-value-accessor.d.ts +0 -9
- package/standalone/directives/radio-value-accessor.d.ts +0 -8
- package/standalone/directives/select-value-accessor.d.ts +0 -8
- package/standalone/directives/text-value-accessor.d.ts +0 -8
- package/standalone/directives/value-accessor.d.ts +0 -18
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { HostListener, Directive, ChangeDetectorRef, ElementRef, NgZone, ChangeDetectionStrategy, Component } from '@angular/core';
|
|
2
|
+
import { HostListener, Directive, EventEmitter, ChangeDetectorRef, ElementRef, NgZone, Output, ChangeDetectionStrategy, Component } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
4
|
import { __decorate, __metadata } from 'tslib';
|
|
5
5
|
import { fromEvent } from 'rxjs';
|
|
@@ -73,10 +73,10 @@ class ValueAccessor {
|
|
|
73
73
|
setDisabledState(isDisabled) {
|
|
74
74
|
this.el.nativeElement.disabled = isDisabled;
|
|
75
75
|
}
|
|
76
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
77
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
76
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
77
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: ValueAccessor, isStandalone: true, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
78
78
|
}
|
|
79
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
79
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
80
80
|
type: Directive,
|
|
81
81
|
args: [{}]
|
|
82
82
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
@@ -91,8 +91,8 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
91
91
|
writeValue(value) {
|
|
92
92
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
93
93
|
}
|
|
94
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
95
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
94
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
95
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: BooleanValueAccessor, isStandalone: true, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"checked\"])" } }, providers: [
|
|
96
96
|
{
|
|
97
97
|
provide: NG_VALUE_ACCESSOR,
|
|
98
98
|
useExisting: BooleanValueAccessor,
|
|
@@ -100,13 +100,13 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
100
100
|
}
|
|
101
101
|
], usesInheritance: true, ngImport: i0 }); }
|
|
102
102
|
}
|
|
103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
104
104
|
type: Directive,
|
|
105
105
|
args: [{
|
|
106
106
|
/* tslint:disable-next-line:directive-selector */
|
|
107
107
|
selector: 'bq-checkbox, bq-switch',
|
|
108
108
|
host: {
|
|
109
|
-
'(bqChange)': 'handleChangeEvent($event.target
|
|
109
|
+
'(bqChange)': 'handleChangeEvent($event.target?.["checked"])'
|
|
110
110
|
},
|
|
111
111
|
providers: [
|
|
112
112
|
{
|
|
@@ -114,7 +114,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
114
114
|
useExisting: BooleanValueAccessor,
|
|
115
115
|
multi: true
|
|
116
116
|
}
|
|
117
|
-
]
|
|
117
|
+
]
|
|
118
118
|
}]
|
|
119
119
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
120
120
|
|
|
@@ -127,8 +127,8 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
127
127
|
fn(value === '' ? null : parseFloat(value));
|
|
128
128
|
});
|
|
129
129
|
}
|
|
130
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
131
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
130
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
131
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: NumericValueAccessor, isStandalone: true, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
132
132
|
{
|
|
133
133
|
provide: NG_VALUE_ACCESSOR,
|
|
134
134
|
useExisting: NumericValueAccessor,
|
|
@@ -136,13 +136,13 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
136
136
|
}
|
|
137
137
|
], usesInheritance: true, ngImport: i0 }); }
|
|
138
138
|
}
|
|
139
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
140
140
|
type: Directive,
|
|
141
141
|
args: [{
|
|
142
142
|
/* tslint:disable-next-line:directive-selector */
|
|
143
143
|
selector: 'bq-input[type="number"], bq-slider:not[type="range"]',
|
|
144
144
|
host: {
|
|
145
|
-
'(bqChange)': 'handleChangeEvent($event.target
|
|
145
|
+
'(bqChange)': 'handleChangeEvent($event.target?.["value"])'
|
|
146
146
|
},
|
|
147
147
|
providers: [
|
|
148
148
|
{
|
|
@@ -150,7 +150,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
150
150
|
useExisting: NumericValueAccessor,
|
|
151
151
|
multi: true
|
|
152
152
|
}
|
|
153
|
-
]
|
|
153
|
+
]
|
|
154
154
|
}]
|
|
155
155
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
156
156
|
|
|
@@ -158,8 +158,8 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
158
158
|
constructor(el) {
|
|
159
159
|
super(el);
|
|
160
160
|
}
|
|
161
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
162
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
161
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
162
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: RadioValueAccessor, isStandalone: true, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
163
163
|
{
|
|
164
164
|
provide: NG_VALUE_ACCESSOR,
|
|
165
165
|
useExisting: RadioValueAccessor,
|
|
@@ -167,13 +167,13 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
167
167
|
}
|
|
168
168
|
], usesInheritance: true, ngImport: i0 }); }
|
|
169
169
|
}
|
|
170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
171
171
|
type: Directive,
|
|
172
172
|
args: [{
|
|
173
173
|
/* tslint:disable-next-line:directive-selector */
|
|
174
174
|
selector: 'bq-radio-group',
|
|
175
175
|
host: {
|
|
176
|
-
'(bqChange)': 'handleChangeEvent($event.target
|
|
176
|
+
'(bqChange)': 'handleChangeEvent($event.target?.["value"])'
|
|
177
177
|
},
|
|
178
178
|
providers: [
|
|
179
179
|
{
|
|
@@ -181,7 +181,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
181
181
|
useExisting: RadioValueAccessor,
|
|
182
182
|
multi: true
|
|
183
183
|
}
|
|
184
|
-
]
|
|
184
|
+
]
|
|
185
185
|
}]
|
|
186
186
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
187
187
|
|
|
@@ -189,8 +189,8 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
189
189
|
constructor(el) {
|
|
190
190
|
super(el);
|
|
191
191
|
}
|
|
192
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
193
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
192
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
193
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: SelectValueAccessor, isStandalone: true, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
194
194
|
{
|
|
195
195
|
provide: NG_VALUE_ACCESSOR,
|
|
196
196
|
useExisting: SelectValueAccessor,
|
|
@@ -198,13 +198,13 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
198
198
|
}
|
|
199
199
|
], usesInheritance: true, ngImport: i0 }); }
|
|
200
200
|
}
|
|
201
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
202
202
|
type: Directive,
|
|
203
203
|
args: [{
|
|
204
204
|
/* tslint:disable-next-line:directive-selector */
|
|
205
205
|
selector: 'bq-select',
|
|
206
206
|
host: {
|
|
207
|
-
'(bqChange)': 'handleChangeEvent($event.target
|
|
207
|
+
'(bqChange)': 'handleChangeEvent($event.target?.["value"])'
|
|
208
208
|
},
|
|
209
209
|
providers: [
|
|
210
210
|
{
|
|
@@ -212,7 +212,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
212
212
|
useExisting: SelectValueAccessor,
|
|
213
213
|
multi: true
|
|
214
214
|
}
|
|
215
|
-
]
|
|
215
|
+
]
|
|
216
216
|
}]
|
|
217
217
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
218
218
|
|
|
@@ -220,8 +220,8 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
220
220
|
constructor(el) {
|
|
221
221
|
super(el);
|
|
222
222
|
}
|
|
223
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
224
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
223
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
224
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: TextValueAccessor, isStandalone: true, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\"], bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
225
225
|
{
|
|
226
226
|
provide: NG_VALUE_ACCESSOR,
|
|
227
227
|
useExisting: TextValueAccessor,
|
|
@@ -229,13 +229,13 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
229
229
|
}
|
|
230
230
|
], usesInheritance: true, ngImport: i0 }); }
|
|
231
231
|
}
|
|
232
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
233
233
|
type: Directive,
|
|
234
234
|
args: [{
|
|
235
235
|
/* tslint:disable-next-line:directive-selector */
|
|
236
|
-
selector: 'bq-date-picker, bq-input:not[type="number"], bq-slider[type="range", bq-textarea',
|
|
236
|
+
selector: 'bq-date-picker, bq-input:not[type="number"], bq-slider[type="range"], bq-textarea',
|
|
237
237
|
host: {
|
|
238
|
-
'(bqChange)': 'handleChangeEvent($event.target
|
|
238
|
+
'(bqChange)': 'handleChangeEvent($event.target?.["value"])'
|
|
239
239
|
},
|
|
240
240
|
providers: [
|
|
241
241
|
{
|
|
@@ -243,7 +243,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
243
243
|
useExisting: TextValueAccessor,
|
|
244
244
|
multi: true
|
|
245
245
|
}
|
|
246
|
-
]
|
|
246
|
+
]
|
|
247
247
|
}]
|
|
248
248
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
249
249
|
|
|
@@ -308,12 +308,18 @@ function ProxyCmp(opts) {
|
|
|
308
308
|
let BqAccordion = class BqAccordion {
|
|
309
309
|
constructor(c, r, z) {
|
|
310
310
|
this.z = z;
|
|
311
|
+
this.bqBlur = new EventEmitter();
|
|
312
|
+
this.bqFocus = new EventEmitter();
|
|
313
|
+
this.bqOpen = new EventEmitter();
|
|
314
|
+
this.bqAfterOpen = new EventEmitter();
|
|
315
|
+
this.bqClose = new EventEmitter();
|
|
316
|
+
this.bqAfterClose = new EventEmitter();
|
|
317
|
+
this.bqClick = new EventEmitter();
|
|
311
318
|
c.detach();
|
|
312
319
|
this.el = r.nativeElement;
|
|
313
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose', 'bqClick']);
|
|
314
320
|
}
|
|
315
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
316
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
321
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
322
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqAccordion, isStandalone: true, selector: "bq-accordion", inputs: { appearance: "appearance", disabled: "disabled", expanded: "expanded", noAnimation: "noAnimation", rotate: "rotate", size: "size" }, outputs: { bqBlur: "bqBlur", bqFocus: "bqFocus", bqOpen: "bqOpen", bqAfterOpen: "bqAfterOpen", bqClose: "bqClose", bqAfterClose: "bqAfterClose", bqClick: "bqClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
317
323
|
};
|
|
318
324
|
BqAccordion = __decorate([
|
|
319
325
|
ProxyCmp({
|
|
@@ -322,7 +328,7 @@ BqAccordion = __decorate([
|
|
|
322
328
|
}),
|
|
323
329
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
324
330
|
], BqAccordion);
|
|
325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
331
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAccordion, decorators: [{
|
|
326
332
|
type: Component,
|
|
327
333
|
args: [{
|
|
328
334
|
selector: 'bq-accordion',
|
|
@@ -330,17 +336,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
330
336
|
template: '<ng-content></ng-content>',
|
|
331
337
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
332
338
|
inputs: ['appearance', 'disabled', 'expanded', 'noAnimation', 'rotate', 'size'],
|
|
333
|
-
|
|
339
|
+
outputs: ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose', 'bqClick'],
|
|
334
340
|
}]
|
|
335
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
341
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
342
|
+
type: Output
|
|
343
|
+
}], bqFocus: [{
|
|
344
|
+
type: Output
|
|
345
|
+
}], bqOpen: [{
|
|
346
|
+
type: Output
|
|
347
|
+
}], bqAfterOpen: [{
|
|
348
|
+
type: Output
|
|
349
|
+
}], bqClose: [{
|
|
350
|
+
type: Output
|
|
351
|
+
}], bqAfterClose: [{
|
|
352
|
+
type: Output
|
|
353
|
+
}], bqClick: [{
|
|
354
|
+
type: Output
|
|
355
|
+
}] } });
|
|
336
356
|
let BqAccordionGroup = class BqAccordionGroup {
|
|
337
357
|
constructor(c, r, z) {
|
|
338
358
|
this.z = z;
|
|
339
359
|
c.detach();
|
|
340
360
|
this.el = r.nativeElement;
|
|
341
361
|
}
|
|
342
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
343
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
362
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
363
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqAccordionGroup, isStandalone: true, 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 }); }
|
|
344
364
|
};
|
|
345
365
|
BqAccordionGroup = __decorate([
|
|
346
366
|
ProxyCmp({
|
|
@@ -349,7 +369,7 @@ BqAccordionGroup = __decorate([
|
|
|
349
369
|
}),
|
|
350
370
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
351
371
|
], BqAccordionGroup);
|
|
352
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
353
373
|
type: Component,
|
|
354
374
|
args: [{
|
|
355
375
|
selector: 'bq-accordion-group',
|
|
@@ -357,18 +377,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
357
377
|
template: '<ng-content></ng-content>',
|
|
358
378
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
359
379
|
inputs: ['appearance', 'expandAll', 'multiple', 'noAnimation', 'size'],
|
|
360
|
-
standalone: true
|
|
361
380
|
}]
|
|
362
381
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
363
382
|
let BqAlert = class BqAlert {
|
|
364
383
|
constructor(c, r, z) {
|
|
365
384
|
this.z = z;
|
|
385
|
+
this.bqHide = new EventEmitter();
|
|
386
|
+
this.bqShow = new EventEmitter();
|
|
387
|
+
this.bqAfterShow = new EventEmitter();
|
|
388
|
+
this.bqAfterHide = new EventEmitter();
|
|
366
389
|
c.detach();
|
|
367
390
|
this.el = r.nativeElement;
|
|
368
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide']);
|
|
369
391
|
}
|
|
370
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
371
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
392
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
393
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqAlert, isStandalone: true, selector: "bq-alert", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", sticky: "sticky", time: "time", type: "type" }, outputs: { bqHide: "bqHide", bqShow: "bqShow", bqAfterShow: "bqAfterShow", bqAfterHide: "bqAfterHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
372
394
|
};
|
|
373
395
|
BqAlert = __decorate([
|
|
374
396
|
ProxyCmp({
|
|
@@ -378,7 +400,7 @@ BqAlert = __decorate([
|
|
|
378
400
|
}),
|
|
379
401
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
380
402
|
], BqAlert);
|
|
381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAlert, decorators: [{
|
|
382
404
|
type: Component,
|
|
383
405
|
args: [{
|
|
384
406
|
selector: 'bq-alert',
|
|
@@ -386,17 +408,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
386
408
|
template: '<ng-content></ng-content>',
|
|
387
409
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
388
410
|
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'sticky', 'time', 'type'],
|
|
389
|
-
|
|
411
|
+
outputs: ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide'],
|
|
390
412
|
}]
|
|
391
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
413
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqHide: [{
|
|
414
|
+
type: Output
|
|
415
|
+
}], bqShow: [{
|
|
416
|
+
type: Output
|
|
417
|
+
}], bqAfterShow: [{
|
|
418
|
+
type: Output
|
|
419
|
+
}], bqAfterHide: [{
|
|
420
|
+
type: Output
|
|
421
|
+
}] } });
|
|
392
422
|
let BqAvatar = class BqAvatar {
|
|
393
423
|
constructor(c, r, z) {
|
|
394
424
|
this.z = z;
|
|
395
425
|
c.detach();
|
|
396
426
|
this.el = r.nativeElement;
|
|
397
427
|
}
|
|
398
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
399
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
428
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
429
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqAvatar, isStandalone: true, 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 }); }
|
|
400
430
|
};
|
|
401
431
|
BqAvatar = __decorate([
|
|
402
432
|
ProxyCmp({
|
|
@@ -405,7 +435,7 @@ BqAvatar = __decorate([
|
|
|
405
435
|
}),
|
|
406
436
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
407
437
|
], BqAvatar);
|
|
408
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
438
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAvatar, decorators: [{
|
|
409
439
|
type: Component,
|
|
410
440
|
args: [{
|
|
411
441
|
selector: 'bq-avatar',
|
|
@@ -413,7 +443,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
413
443
|
template: '<ng-content></ng-content>',
|
|
414
444
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
415
445
|
inputs: ['altText', 'image', 'initials', 'label', 'shape', 'size'],
|
|
416
|
-
standalone: true
|
|
417
446
|
}]
|
|
418
447
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
419
448
|
let BqBadge = class BqBadge {
|
|
@@ -422,8 +451,8 @@ let BqBadge = class BqBadge {
|
|
|
422
451
|
c.detach();
|
|
423
452
|
this.el = r.nativeElement;
|
|
424
453
|
}
|
|
425
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
426
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
454
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
455
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqBadge, isStandalone: true, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
427
456
|
};
|
|
428
457
|
BqBadge = __decorate([
|
|
429
458
|
ProxyCmp({
|
|
@@ -432,7 +461,7 @@ BqBadge = __decorate([
|
|
|
432
461
|
}),
|
|
433
462
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
434
463
|
], BqBadge);
|
|
435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqBadge, decorators: [{
|
|
436
465
|
type: Component,
|
|
437
466
|
args: [{
|
|
438
467
|
selector: 'bq-badge',
|
|
@@ -440,7 +469,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
440
469
|
template: '<ng-content></ng-content>',
|
|
441
470
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
442
471
|
inputs: ['backgroundColor', 'size', 'textColor'],
|
|
443
|
-
standalone: true
|
|
444
472
|
}]
|
|
445
473
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
446
474
|
let BqBreadcrumb = class BqBreadcrumb {
|
|
@@ -449,8 +477,8 @@ let BqBreadcrumb = class BqBreadcrumb {
|
|
|
449
477
|
c.detach();
|
|
450
478
|
this.el = r.nativeElement;
|
|
451
479
|
}
|
|
452
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
453
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
480
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
481
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqBreadcrumb, isStandalone: true, selector: "bq-breadcrumb", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
454
482
|
};
|
|
455
483
|
BqBreadcrumb = __decorate([
|
|
456
484
|
ProxyCmp({
|
|
@@ -459,7 +487,7 @@ BqBreadcrumb = __decorate([
|
|
|
459
487
|
}),
|
|
460
488
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
461
489
|
], BqBreadcrumb);
|
|
462
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
463
491
|
type: Component,
|
|
464
492
|
args: [{
|
|
465
493
|
selector: 'bq-breadcrumb',
|
|
@@ -467,18 +495,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
467
495
|
template: '<ng-content></ng-content>',
|
|
468
496
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
469
497
|
inputs: ['label'],
|
|
470
|
-
standalone: true
|
|
471
498
|
}]
|
|
472
499
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
473
500
|
let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
474
501
|
constructor(c, r, z) {
|
|
475
502
|
this.z = z;
|
|
503
|
+
this.bqBlur = new EventEmitter();
|
|
504
|
+
this.bqFocus = new EventEmitter();
|
|
505
|
+
this.bqClick = new EventEmitter();
|
|
476
506
|
c.detach();
|
|
477
507
|
this.el = r.nativeElement;
|
|
478
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
479
508
|
}
|
|
480
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
481
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
509
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
510
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqBreadcrumbItem, isStandalone: true, selector: "bq-breadcrumb-item", inputs: { href: "href", rel: "rel", target: "target" }, outputs: { bqBlur: "bqBlur", bqFocus: "bqFocus", bqClick: "bqClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
482
511
|
};
|
|
483
512
|
BqBreadcrumbItem = __decorate([
|
|
484
513
|
ProxyCmp({
|
|
@@ -487,7 +516,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
487
516
|
}),
|
|
488
517
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
489
518
|
], BqBreadcrumbItem);
|
|
490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
519
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
491
520
|
type: Component,
|
|
492
521
|
args: [{
|
|
493
522
|
selector: 'bq-breadcrumb-item',
|
|
@@ -495,18 +524,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
495
524
|
template: '<ng-content></ng-content>',
|
|
496
525
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
497
526
|
inputs: ['href', 'rel', 'target'],
|
|
498
|
-
|
|
527
|
+
outputs: ['bqBlur', 'bqFocus', 'bqClick'],
|
|
499
528
|
}]
|
|
500
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
529
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
530
|
+
type: Output
|
|
531
|
+
}], bqFocus: [{
|
|
532
|
+
type: Output
|
|
533
|
+
}], bqClick: [{
|
|
534
|
+
type: Output
|
|
535
|
+
}] } });
|
|
501
536
|
let BqButton = class BqButton {
|
|
502
537
|
constructor(c, r, z) {
|
|
503
538
|
this.z = z;
|
|
539
|
+
this.bqBlur = new EventEmitter();
|
|
540
|
+
this.bqFocus = new EventEmitter();
|
|
541
|
+
this.bqClick = new EventEmitter();
|
|
504
542
|
c.detach();
|
|
505
543
|
this.el = r.nativeElement;
|
|
506
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
507
544
|
}
|
|
508
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
509
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
545
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
546
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqButton, isStandalone: true, 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" }, outputs: { bqBlur: "bqBlur", bqFocus: "bqFocus", bqClick: "bqClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
510
547
|
};
|
|
511
548
|
BqButton = __decorate([
|
|
512
549
|
ProxyCmp({
|
|
@@ -515,7 +552,7 @@ BqButton = __decorate([
|
|
|
515
552
|
}),
|
|
516
553
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
517
554
|
], BqButton);
|
|
518
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
555
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqButton, decorators: [{
|
|
519
556
|
type: Component,
|
|
520
557
|
args: [{
|
|
521
558
|
selector: 'bq-button',
|
|
@@ -523,17 +560,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
523
560
|
template: '<ng-content></ng-content>',
|
|
524
561
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
525
562
|
inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'loading', 'size', 'target', 'type', 'variant'],
|
|
526
|
-
|
|
563
|
+
outputs: ['bqBlur', 'bqFocus', 'bqClick'],
|
|
527
564
|
}]
|
|
528
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
565
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
566
|
+
type: Output
|
|
567
|
+
}], bqFocus: [{
|
|
568
|
+
type: Output
|
|
569
|
+
}], bqClick: [{
|
|
570
|
+
type: Output
|
|
571
|
+
}] } });
|
|
529
572
|
let BqCard = class BqCard {
|
|
530
573
|
constructor(c, r, z) {
|
|
531
574
|
this.z = z;
|
|
532
575
|
c.detach();
|
|
533
576
|
this.el = r.nativeElement;
|
|
534
577
|
}
|
|
535
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
536
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
578
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
579
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqCard, isStandalone: true, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
537
580
|
};
|
|
538
581
|
BqCard = __decorate([
|
|
539
582
|
ProxyCmp({
|
|
@@ -542,7 +585,7 @@ BqCard = __decorate([
|
|
|
542
585
|
}),
|
|
543
586
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
544
587
|
], BqCard);
|
|
545
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
588
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqCard, decorators: [{
|
|
546
589
|
type: Component,
|
|
547
590
|
args: [{
|
|
548
591
|
selector: 'bq-card',
|
|
@@ -550,18 +593,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
550
593
|
template: '<ng-content></ng-content>',
|
|
551
594
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
552
595
|
inputs: ['border', 'type'],
|
|
553
|
-
standalone: true
|
|
554
596
|
}]
|
|
555
597
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
556
598
|
let BqCheckbox = class BqCheckbox {
|
|
557
599
|
constructor(c, r, z) {
|
|
558
600
|
this.z = z;
|
|
601
|
+
this.bqChange = new EventEmitter();
|
|
602
|
+
this.bqFocus = new EventEmitter();
|
|
603
|
+
this.bqBlur = new EventEmitter();
|
|
559
604
|
c.detach();
|
|
560
605
|
this.el = r.nativeElement;
|
|
561
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
562
606
|
}
|
|
563
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
564
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
607
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
608
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqCheckbox, isStandalone: true, selector: "bq-checkbox", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", formValidationMessage: "formValidationMessage", indeterminate: "indeterminate", name: "name", required: "required", value: "value" }, outputs: { bqChange: "bqChange", bqFocus: "bqFocus", bqBlur: "bqBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
565
609
|
};
|
|
566
610
|
BqCheckbox = __decorate([
|
|
567
611
|
ProxyCmp({
|
|
@@ -571,26 +615,35 @@ BqCheckbox = __decorate([
|
|
|
571
615
|
}),
|
|
572
616
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
573
617
|
], BqCheckbox);
|
|
574
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
618
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
575
619
|
type: Component,
|
|
576
620
|
args: [{
|
|
577
621
|
selector: 'bq-checkbox',
|
|
578
622
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
579
623
|
template: '<ng-content></ng-content>',
|
|
580
624
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
581
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'formValidationMessage', 'indeterminate', 'name', 'required', 'value'],
|
|
582
|
-
|
|
625
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'formValidationMessage', 'indeterminate', { name: 'name', required: true }, 'required', { name: 'value', required: true }],
|
|
626
|
+
outputs: ['bqChange', 'bqFocus', 'bqBlur'],
|
|
583
627
|
}]
|
|
584
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
628
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
629
|
+
type: Output
|
|
630
|
+
}], bqFocus: [{
|
|
631
|
+
type: Output
|
|
632
|
+
}], bqBlur: [{
|
|
633
|
+
type: Output
|
|
634
|
+
}] } });
|
|
585
635
|
let BqDatePicker = class BqDatePicker {
|
|
586
636
|
constructor(c, r, z) {
|
|
587
637
|
this.z = z;
|
|
638
|
+
this.bqBlur = new EventEmitter();
|
|
639
|
+
this.bqChange = new EventEmitter();
|
|
640
|
+
this.bqClear = new EventEmitter();
|
|
641
|
+
this.bqFocus = new EventEmitter();
|
|
588
642
|
c.detach();
|
|
589
643
|
this.el = r.nativeElement;
|
|
590
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus']);
|
|
591
644
|
}
|
|
592
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
593
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
645
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
646
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqDatePicker, isStandalone: true, selector: "bq-date-picker", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", disableClear: "disableClear", disabled: "disabled", distance: "distance", firstDayOfWeek: "firstDayOfWeek", form: "form", formValidationMessage: "formValidationMessage", 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" }, outputs: { bqBlur: "bqBlur", bqChange: "bqChange", bqClear: "bqClear", bqFocus: "bqFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
594
647
|
};
|
|
595
648
|
BqDatePicker = __decorate([
|
|
596
649
|
ProxyCmp({
|
|
@@ -600,26 +653,38 @@ BqDatePicker = __decorate([
|
|
|
600
653
|
}),
|
|
601
654
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
602
655
|
], BqDatePicker);
|
|
603
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
604
657
|
type: Component,
|
|
605
658
|
args: [{
|
|
606
659
|
selector: 'bq-date-picker',
|
|
607
660
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
608
661
|
template: '<ng-content></ng-content>',
|
|
609
662
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
610
|
-
inputs: ['autofocus', 'clearButtonLabel', 'disableClear', 'disabled', 'distance', 'firstDayOfWeek', 'form', 'formValidationMessage', 'formatOptions', 'isDateDisallowed', 'locale', 'max', 'min', 'months', 'monthsPerView', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'required', 'showOutsideDays', 'skidding', 'strategy', 'tentative', 'type', 'validationStatus', 'value'],
|
|
611
|
-
|
|
663
|
+
inputs: ['autofocus', 'clearButtonLabel', 'disableClear', 'disabled', 'distance', 'firstDayOfWeek', 'form', 'formValidationMessage', 'formatOptions', 'isDateDisallowed', 'locale', 'max', 'min', 'months', 'monthsPerView', { name: 'name', required: true }, 'open', 'panelHeight', 'placeholder', 'placement', 'required', 'showOutsideDays', 'skidding', 'strategy', 'tentative', 'type', 'validationStatus', 'value'],
|
|
664
|
+
outputs: ['bqBlur', 'bqChange', 'bqClear', 'bqFocus'],
|
|
612
665
|
}]
|
|
613
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
666
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
667
|
+
type: Output
|
|
668
|
+
}], bqChange: [{
|
|
669
|
+
type: Output
|
|
670
|
+
}], bqClear: [{
|
|
671
|
+
type: Output
|
|
672
|
+
}], bqFocus: [{
|
|
673
|
+
type: Output
|
|
674
|
+
}] } });
|
|
614
675
|
let BqDialog = class BqDialog {
|
|
615
676
|
constructor(c, r, z) {
|
|
616
677
|
this.z = z;
|
|
678
|
+
this.bqCancel = new EventEmitter();
|
|
679
|
+
this.bqClose = new EventEmitter();
|
|
680
|
+
this.bqOpen = new EventEmitter();
|
|
681
|
+
this.bqAfterOpen = new EventEmitter();
|
|
682
|
+
this.bqAfterClose = new EventEmitter();
|
|
617
683
|
c.detach();
|
|
618
684
|
this.el = r.nativeElement;
|
|
619
|
-
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
620
685
|
}
|
|
621
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
622
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
686
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
687
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqDialog, isStandalone: true, selector: "bq-dialog", inputs: { border: "border", disableBackdrop: "disableBackdrop", disableCloseClickOutside: "disableCloseClickOutside", disableCloseEscKeydown: "disableCloseEscKeydown", footerAppearance: "footerAppearance", hideCloseButton: "hideCloseButton", open: "open", size: "size" }, outputs: { bqCancel: "bqCancel", bqClose: "bqClose", bqOpen: "bqOpen", bqAfterOpen: "bqAfterOpen", bqAfterClose: "bqAfterClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
623
688
|
};
|
|
624
689
|
BqDialog = __decorate([
|
|
625
690
|
ProxyCmp({
|
|
@@ -629,7 +694,7 @@ BqDialog = __decorate([
|
|
|
629
694
|
}),
|
|
630
695
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
631
696
|
], BqDialog);
|
|
632
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDialog, decorators: [{
|
|
633
698
|
type: Component,
|
|
634
699
|
args: [{
|
|
635
700
|
selector: 'bq-dialog',
|
|
@@ -637,17 +702,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
637
702
|
template: '<ng-content></ng-content>',
|
|
638
703
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
639
704
|
inputs: ['border', 'disableBackdrop', 'disableCloseClickOutside', 'disableCloseEscKeydown', 'footerAppearance', 'hideCloseButton', 'open', 'size'],
|
|
640
|
-
|
|
705
|
+
outputs: ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose'],
|
|
641
706
|
}]
|
|
642
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
707
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqCancel: [{
|
|
708
|
+
type: Output
|
|
709
|
+
}], bqClose: [{
|
|
710
|
+
type: Output
|
|
711
|
+
}], bqOpen: [{
|
|
712
|
+
type: Output
|
|
713
|
+
}], bqAfterOpen: [{
|
|
714
|
+
type: Output
|
|
715
|
+
}], bqAfterClose: [{
|
|
716
|
+
type: Output
|
|
717
|
+
}] } });
|
|
643
718
|
let BqDivider = class BqDivider {
|
|
644
719
|
constructor(c, r, z) {
|
|
645
720
|
this.z = z;
|
|
646
721
|
c.detach();
|
|
647
722
|
this.el = r.nativeElement;
|
|
648
723
|
}
|
|
649
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
650
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
724
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
725
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqDivider, isStandalone: true, 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 }); }
|
|
651
726
|
};
|
|
652
727
|
BqDivider = __decorate([
|
|
653
728
|
ProxyCmp({
|
|
@@ -656,7 +731,7 @@ BqDivider = __decorate([
|
|
|
656
731
|
}),
|
|
657
732
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
658
733
|
], BqDivider);
|
|
659
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDivider, decorators: [{
|
|
660
735
|
type: Component,
|
|
661
736
|
args: [{
|
|
662
737
|
selector: 'bq-divider',
|
|
@@ -664,18 +739,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
664
739
|
template: '<ng-content></ng-content>',
|
|
665
740
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
666
741
|
inputs: ['dashed', 'orientation', 'strokeBasis', 'strokeColor', 'strokeDashGap', 'strokeDashWidth', 'strokeLinecap', 'strokeThickness', 'titleAlignment'],
|
|
667
|
-
standalone: true
|
|
668
742
|
}]
|
|
669
743
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
670
744
|
let BqDrawer = class BqDrawer {
|
|
671
745
|
constructor(c, r, z) {
|
|
672
746
|
this.z = z;
|
|
747
|
+
this.bqClose = new EventEmitter();
|
|
748
|
+
this.bqOpen = new EventEmitter();
|
|
749
|
+
this.bqAfterOpen = new EventEmitter();
|
|
750
|
+
this.bqAfterClose = new EventEmitter();
|
|
673
751
|
c.detach();
|
|
674
752
|
this.el = r.nativeElement;
|
|
675
|
-
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
676
753
|
}
|
|
677
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
678
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
754
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
755
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqDrawer, isStandalone: true, selector: "bq-drawer", inputs: { closeOnClickOutside: "closeOnClickOutside", closeOnEsc: "closeOnEsc", enableBackdrop: "enableBackdrop", open: "open", placement: "placement", position: "position" }, outputs: { bqClose: "bqClose", bqOpen: "bqOpen", bqAfterOpen: "bqAfterOpen", bqAfterClose: "bqAfterClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
679
756
|
};
|
|
680
757
|
BqDrawer = __decorate([
|
|
681
758
|
ProxyCmp({
|
|
@@ -685,7 +762,7 @@ BqDrawer = __decorate([
|
|
|
685
762
|
}),
|
|
686
763
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
687
764
|
], BqDrawer);
|
|
688
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
765
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDrawer, decorators: [{
|
|
689
766
|
type: Component,
|
|
690
767
|
args: [{
|
|
691
768
|
selector: 'bq-drawer',
|
|
@@ -693,18 +770,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
693
770
|
template: '<ng-content></ng-content>',
|
|
694
771
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
695
772
|
inputs: ['closeOnClickOutside', 'closeOnEsc', 'enableBackdrop', 'open', 'placement', 'position'],
|
|
696
|
-
|
|
773
|
+
outputs: ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose'],
|
|
697
774
|
}]
|
|
698
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
775
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClose: [{
|
|
776
|
+
type: Output
|
|
777
|
+
}], bqOpen: [{
|
|
778
|
+
type: Output
|
|
779
|
+
}], bqAfterOpen: [{
|
|
780
|
+
type: Output
|
|
781
|
+
}], bqAfterClose: [{
|
|
782
|
+
type: Output
|
|
783
|
+
}] } });
|
|
699
784
|
let BqDropdown = class BqDropdown {
|
|
700
785
|
constructor(c, r, z) {
|
|
701
786
|
this.z = z;
|
|
787
|
+
this.bqOpen = new EventEmitter();
|
|
702
788
|
c.detach();
|
|
703
789
|
this.el = r.nativeElement;
|
|
704
|
-
proxyOutputs(this, this.el, ['bqOpen']);
|
|
705
790
|
}
|
|
706
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
707
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
791
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
792
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqDropdown, isStandalone: true, selector: "bq-dropdown", inputs: { disableScrollLock: "disableScrollLock", disabled: "disabled", distance: "distance", keepOpenOnSelect: "keepOpenOnSelect", open: "open", panelHeight: "panelHeight", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, outputs: { bqOpen: "bqOpen" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
708
793
|
};
|
|
709
794
|
BqDropdown = __decorate([
|
|
710
795
|
ProxyCmp({
|
|
@@ -713,7 +798,7 @@ BqDropdown = __decorate([
|
|
|
713
798
|
}),
|
|
714
799
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
715
800
|
], BqDropdown);
|
|
716
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDropdown, decorators: [{
|
|
717
802
|
type: Component,
|
|
718
803
|
args: [{
|
|
719
804
|
selector: 'bq-dropdown',
|
|
@@ -721,17 +806,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
721
806
|
template: '<ng-content></ng-content>',
|
|
722
807
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
723
808
|
inputs: ['disableScrollLock', 'disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
724
|
-
|
|
809
|
+
outputs: ['bqOpen'],
|
|
725
810
|
}]
|
|
726
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
811
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqOpen: [{
|
|
812
|
+
type: Output
|
|
813
|
+
}] } });
|
|
727
814
|
let BqEmptyState = class BqEmptyState {
|
|
728
815
|
constructor(c, r, z) {
|
|
729
816
|
this.z = z;
|
|
730
817
|
c.detach();
|
|
731
818
|
this.el = r.nativeElement;
|
|
732
819
|
}
|
|
733
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
734
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
820
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
821
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqEmptyState, isStandalone: true, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
735
822
|
};
|
|
736
823
|
BqEmptyState = __decorate([
|
|
737
824
|
ProxyCmp({
|
|
@@ -740,7 +827,7 @@ BqEmptyState = __decorate([
|
|
|
740
827
|
}),
|
|
741
828
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
742
829
|
], BqEmptyState);
|
|
743
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
744
831
|
type: Component,
|
|
745
832
|
args: [{
|
|
746
833
|
selector: 'bq-empty-state',
|
|
@@ -748,18 +835,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
748
835
|
template: '<ng-content></ng-content>',
|
|
749
836
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
750
837
|
inputs: ['size'],
|
|
751
|
-
standalone: true
|
|
752
838
|
}]
|
|
753
839
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
754
840
|
let BqIcon = class BqIcon {
|
|
755
841
|
constructor(c, r, z) {
|
|
756
842
|
this.z = z;
|
|
843
|
+
this.svgLoaded = new EventEmitter();
|
|
757
844
|
c.detach();
|
|
758
845
|
this.el = r.nativeElement;
|
|
759
|
-
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
760
846
|
}
|
|
761
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
762
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
847
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
848
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqIcon, isStandalone: true, selector: "bq-icon", inputs: { color: "color", label: "label", name: "name", size: "size", src: "src", weight: "weight" }, outputs: { svgLoaded: "svgLoaded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
763
849
|
};
|
|
764
850
|
BqIcon = __decorate([
|
|
765
851
|
ProxyCmp({
|
|
@@ -768,7 +854,7 @@ BqIcon = __decorate([
|
|
|
768
854
|
}),
|
|
769
855
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
770
856
|
], BqIcon);
|
|
771
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqIcon, decorators: [{
|
|
772
858
|
type: Component,
|
|
773
859
|
args: [{
|
|
774
860
|
selector: 'bq-icon',
|
|
@@ -776,18 +862,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
776
862
|
template: '<ng-content></ng-content>',
|
|
777
863
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
778
864
|
inputs: ['color', 'label', 'name', 'size', 'src', 'weight'],
|
|
779
|
-
|
|
865
|
+
outputs: ['svgLoaded'],
|
|
780
866
|
}]
|
|
781
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
867
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { svgLoaded: [{
|
|
868
|
+
type: Output
|
|
869
|
+
}] } });
|
|
782
870
|
let BqInput = class BqInput {
|
|
783
871
|
constructor(c, r, z) {
|
|
784
872
|
this.z = z;
|
|
873
|
+
this.bqBlur = new EventEmitter();
|
|
874
|
+
this.bqChange = new EventEmitter();
|
|
875
|
+
this.bqClear = new EventEmitter();
|
|
876
|
+
this.bqFocus = new EventEmitter();
|
|
877
|
+
this.bqInput = new EventEmitter();
|
|
785
878
|
c.detach();
|
|
786
879
|
this.el = r.nativeElement;
|
|
787
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
788
880
|
}
|
|
789
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
790
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
881
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
882
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqInput, isStandalone: true, selector: "bq-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", form: "form", formValidationMessage: "formValidationMessage", 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" }, outputs: { bqBlur: "bqBlur", bqChange: "bqChange", bqClear: "bqClear", bqFocus: "bqFocus", bqInput: "bqInput" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
791
883
|
};
|
|
792
884
|
BqInput = __decorate([
|
|
793
885
|
ProxyCmp({
|
|
@@ -796,26 +888,39 @@ BqInput = __decorate([
|
|
|
796
888
|
}),
|
|
797
889
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
798
890
|
], BqInput);
|
|
799
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqInput, decorators: [{
|
|
800
892
|
type: Component,
|
|
801
893
|
args: [{
|
|
802
894
|
selector: 'bq-input',
|
|
803
895
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
804
896
|
template: '<ng-content></ng-content>',
|
|
805
897
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
806
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'formValidationMessage', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value'],
|
|
807
|
-
|
|
898
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'formValidationMessage', 'inputmode', 'max', 'maxlength', 'min', 'minlength', { name: 'name', required: true }, 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value'],
|
|
899
|
+
outputs: ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput'],
|
|
808
900
|
}]
|
|
809
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
901
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
902
|
+
type: Output
|
|
903
|
+
}], bqChange: [{
|
|
904
|
+
type: Output
|
|
905
|
+
}], bqClear: [{
|
|
906
|
+
type: Output
|
|
907
|
+
}], bqFocus: [{
|
|
908
|
+
type: Output
|
|
909
|
+
}], bqInput: [{
|
|
910
|
+
type: Output
|
|
911
|
+
}] } });
|
|
810
912
|
let BqNotification = class BqNotification {
|
|
811
913
|
constructor(c, r, z) {
|
|
812
914
|
this.z = z;
|
|
915
|
+
this.bqHide = new EventEmitter();
|
|
916
|
+
this.bqShow = new EventEmitter();
|
|
917
|
+
this.bqAfterOpen = new EventEmitter();
|
|
918
|
+
this.bqAfterClose = new EventEmitter();
|
|
813
919
|
c.detach();
|
|
814
920
|
this.el = r.nativeElement;
|
|
815
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
816
921
|
}
|
|
817
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
818
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
922
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
923
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqNotification, isStandalone: true, selector: "bq-notification", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", time: "time", type: "type" }, outputs: { bqHide: "bqHide", bqShow: "bqShow", bqAfterOpen: "bqAfterOpen", bqAfterClose: "bqAfterClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
819
924
|
};
|
|
820
925
|
BqNotification = __decorate([
|
|
821
926
|
ProxyCmp({
|
|
@@ -825,7 +930,7 @@ BqNotification = __decorate([
|
|
|
825
930
|
}),
|
|
826
931
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
827
932
|
], BqNotification);
|
|
828
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
933
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqNotification, decorators: [{
|
|
829
934
|
type: Component,
|
|
830
935
|
args: [{
|
|
831
936
|
selector: 'bq-notification',
|
|
@@ -833,18 +938,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
833
938
|
template: '<ng-content></ng-content>',
|
|
834
939
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
835
940
|
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'time', 'type'],
|
|
836
|
-
|
|
941
|
+
outputs: ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose'],
|
|
837
942
|
}]
|
|
838
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
943
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqHide: [{
|
|
944
|
+
type: Output
|
|
945
|
+
}], bqShow: [{
|
|
946
|
+
type: Output
|
|
947
|
+
}], bqAfterOpen: [{
|
|
948
|
+
type: Output
|
|
949
|
+
}], bqAfterClose: [{
|
|
950
|
+
type: Output
|
|
951
|
+
}] } });
|
|
839
952
|
let BqOption = class BqOption {
|
|
840
953
|
constructor(c, r, z) {
|
|
841
954
|
this.z = z;
|
|
955
|
+
this.bqBlur = new EventEmitter();
|
|
956
|
+
this.bqFocus = new EventEmitter();
|
|
957
|
+
this.bqClick = new EventEmitter();
|
|
958
|
+
this.bqEnter = new EventEmitter();
|
|
842
959
|
c.detach();
|
|
843
960
|
this.el = r.nativeElement;
|
|
844
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
845
961
|
}
|
|
846
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
847
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
962
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
963
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqOption, isStandalone: true, selector: "bq-option", inputs: { disabled: "disabled", hidden: "hidden", selected: "selected", value: "value" }, outputs: { bqBlur: "bqBlur", bqFocus: "bqFocus", bqClick: "bqClick", bqEnter: "bqEnter" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
848
964
|
};
|
|
849
965
|
BqOption = __decorate([
|
|
850
966
|
ProxyCmp({
|
|
@@ -853,7 +969,7 @@ BqOption = __decorate([
|
|
|
853
969
|
}),
|
|
854
970
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
855
971
|
], BqOption);
|
|
856
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqOption, decorators: [{
|
|
857
973
|
type: Component,
|
|
858
974
|
args: [{
|
|
859
975
|
selector: 'bq-option',
|
|
@@ -861,17 +977,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
861
977
|
template: '<ng-content></ng-content>',
|
|
862
978
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
863
979
|
inputs: ['disabled', 'hidden', 'selected', 'value'],
|
|
864
|
-
|
|
980
|
+
outputs: ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter'],
|
|
865
981
|
}]
|
|
866
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
982
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
983
|
+
type: Output
|
|
984
|
+
}], bqFocus: [{
|
|
985
|
+
type: Output
|
|
986
|
+
}], bqClick: [{
|
|
987
|
+
type: Output
|
|
988
|
+
}], bqEnter: [{
|
|
989
|
+
type: Output
|
|
990
|
+
}] } });
|
|
867
991
|
let BqOptionGroup = class BqOptionGroup {
|
|
868
992
|
constructor(c, r, z) {
|
|
869
993
|
this.z = z;
|
|
870
994
|
c.detach();
|
|
871
995
|
this.el = r.nativeElement;
|
|
872
996
|
}
|
|
873
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
874
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
997
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
998
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqOptionGroup, isStandalone: true, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
875
999
|
};
|
|
876
1000
|
BqOptionGroup = __decorate([
|
|
877
1001
|
ProxyCmp({
|
|
@@ -879,7 +1003,7 @@ BqOptionGroup = __decorate([
|
|
|
879
1003
|
}),
|
|
880
1004
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
881
1005
|
], BqOptionGroup);
|
|
882
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1006
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
883
1007
|
type: Component,
|
|
884
1008
|
args: [{
|
|
885
1009
|
selector: 'bq-option-group',
|
|
@@ -887,18 +1011,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
887
1011
|
template: '<ng-content></ng-content>',
|
|
888
1012
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
889
1013
|
inputs: [],
|
|
890
|
-
standalone: true
|
|
891
1014
|
}]
|
|
892
1015
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
893
1016
|
let BqOptionList = class BqOptionList {
|
|
894
1017
|
constructor(c, r, z) {
|
|
895
1018
|
this.z = z;
|
|
1019
|
+
this.bqSelect = new EventEmitter();
|
|
896
1020
|
c.detach();
|
|
897
1021
|
this.el = r.nativeElement;
|
|
898
|
-
proxyOutputs(this, this.el, ['bqSelect']);
|
|
899
1022
|
}
|
|
900
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
901
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1023
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1024
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqOptionList, isStandalone: true, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, outputs: { bqSelect: "bqSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
902
1025
|
};
|
|
903
1026
|
BqOptionList = __decorate([
|
|
904
1027
|
ProxyCmp({
|
|
@@ -907,7 +1030,7 @@ BqOptionList = __decorate([
|
|
|
907
1030
|
}),
|
|
908
1031
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
909
1032
|
], BqOptionList);
|
|
910
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqOptionList, decorators: [{
|
|
911
1034
|
type: Component,
|
|
912
1035
|
args: [{
|
|
913
1036
|
selector: 'bq-option-list',
|
|
@@ -915,17 +1038,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
915
1038
|
template: '<ng-content></ng-content>',
|
|
916
1039
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
917
1040
|
inputs: ['ariaLabel'],
|
|
918
|
-
|
|
1041
|
+
outputs: ['bqSelect'],
|
|
919
1042
|
}]
|
|
920
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1043
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqSelect: [{
|
|
1044
|
+
type: Output
|
|
1045
|
+
}] } });
|
|
921
1046
|
let BqPageTitle = class BqPageTitle {
|
|
922
1047
|
constructor(c, r, z) {
|
|
923
1048
|
this.z = z;
|
|
924
1049
|
c.detach();
|
|
925
1050
|
this.el = r.nativeElement;
|
|
926
1051
|
}
|
|
927
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
928
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1052
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqPageTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1053
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqPageTitle, isStandalone: true, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
929
1054
|
};
|
|
930
1055
|
BqPageTitle = __decorate([
|
|
931
1056
|
ProxyCmp({
|
|
@@ -933,7 +1058,7 @@ BqPageTitle = __decorate([
|
|
|
933
1058
|
}),
|
|
934
1059
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
935
1060
|
], BqPageTitle);
|
|
936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
937
1062
|
type: Component,
|
|
938
1063
|
args: [{
|
|
939
1064
|
selector: 'bq-page-title',
|
|
@@ -941,7 +1066,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
941
1066
|
template: '<ng-content></ng-content>',
|
|
942
1067
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
943
1068
|
inputs: [],
|
|
944
|
-
standalone: true
|
|
945
1069
|
}]
|
|
946
1070
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
947
1071
|
let BqPanel = class BqPanel {
|
|
@@ -950,8 +1074,8 @@ let BqPanel = class BqPanel {
|
|
|
950
1074
|
c.detach();
|
|
951
1075
|
this.el = r.nativeElement;
|
|
952
1076
|
}
|
|
953
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
954
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1077
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1078
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqPanel, isStandalone: true, selector: "bq-panel", inputs: { disableScrollLock: "disableScrollLock", 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 }); }
|
|
955
1079
|
};
|
|
956
1080
|
BqPanel = __decorate([
|
|
957
1081
|
ProxyCmp({
|
|
@@ -960,7 +1084,7 @@ BqPanel = __decorate([
|
|
|
960
1084
|
}),
|
|
961
1085
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
962
1086
|
], BqPanel);
|
|
963
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqPanel, decorators: [{
|
|
964
1088
|
type: Component,
|
|
965
1089
|
args: [{
|
|
966
1090
|
selector: 'bq-panel',
|
|
@@ -968,7 +1092,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
968
1092
|
template: '<ng-content></ng-content>',
|
|
969
1093
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
970
1094
|
inputs: ['disableScrollLock', 'distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
971
|
-
standalone: true
|
|
972
1095
|
}]
|
|
973
1096
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
974
1097
|
let BqProgress = class BqProgress {
|
|
@@ -977,8 +1100,8 @@ let BqProgress = class BqProgress {
|
|
|
977
1100
|
c.detach();
|
|
978
1101
|
this.el = r.nativeElement;
|
|
979
1102
|
}
|
|
980
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
981
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1103
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1104
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqProgress, isStandalone: true, 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 }); }
|
|
982
1105
|
};
|
|
983
1106
|
BqProgress = __decorate([
|
|
984
1107
|
ProxyCmp({
|
|
@@ -987,7 +1110,7 @@ BqProgress = __decorate([
|
|
|
987
1110
|
}),
|
|
988
1111
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
989
1112
|
], BqProgress);
|
|
990
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1113
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqProgress, decorators: [{
|
|
991
1114
|
type: Component,
|
|
992
1115
|
args: [{
|
|
993
1116
|
selector: 'bq-progress',
|
|
@@ -995,18 +1118,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
995
1118
|
template: '<ng-content></ng-content>',
|
|
996
1119
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
997
1120
|
inputs: ['borderShape', 'enableTooltip', 'indeterminate', 'label', 'thickness', 'type', 'value'],
|
|
998
|
-
standalone: true
|
|
999
1121
|
}]
|
|
1000
1122
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1001
1123
|
let BqRadio = class BqRadio {
|
|
1002
1124
|
constructor(c, r, z) {
|
|
1003
1125
|
this.z = z;
|
|
1126
|
+
this.bqClick = new EventEmitter();
|
|
1127
|
+
this.bqFocus = new EventEmitter();
|
|
1128
|
+
this.bqBlur = new EventEmitter();
|
|
1129
|
+
this.bqKeyDown = new EventEmitter();
|
|
1004
1130
|
c.detach();
|
|
1005
1131
|
this.el = r.nativeElement;
|
|
1006
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1007
1132
|
}
|
|
1008
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1009
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1133
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1134
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqRadio, isStandalone: true, selector: "bq-radio", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", name: "name", required: "required", value: "value" }, outputs: { bqClick: "bqClick", bqFocus: "bqFocus", bqBlur: "bqBlur", bqKeyDown: "bqKeyDown" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1010
1135
|
};
|
|
1011
1136
|
BqRadio = __decorate([
|
|
1012
1137
|
ProxyCmp({
|
|
@@ -1016,26 +1141,34 @@ BqRadio = __decorate([
|
|
|
1016
1141
|
}),
|
|
1017
1142
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1018
1143
|
], BqRadio);
|
|
1019
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1144
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqRadio, decorators: [{
|
|
1020
1145
|
type: Component,
|
|
1021
1146
|
args: [{
|
|
1022
1147
|
selector: 'bq-radio',
|
|
1023
1148
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1024
1149
|
template: '<ng-content></ng-content>',
|
|
1025
1150
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1026
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'name', 'required', 'value'],
|
|
1027
|
-
|
|
1151
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', { name: 'name', required: true }, 'required', { name: 'value', required: true }],
|
|
1152
|
+
outputs: ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown'],
|
|
1028
1153
|
}]
|
|
1029
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1154
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
1155
|
+
type: Output
|
|
1156
|
+
}], bqFocus: [{
|
|
1157
|
+
type: Output
|
|
1158
|
+
}], bqBlur: [{
|
|
1159
|
+
type: Output
|
|
1160
|
+
}], bqKeyDown: [{
|
|
1161
|
+
type: Output
|
|
1162
|
+
}] } });
|
|
1030
1163
|
let BqRadioGroup = class BqRadioGroup {
|
|
1031
1164
|
constructor(c, r, z) {
|
|
1032
1165
|
this.z = z;
|
|
1166
|
+
this.bqChange = new EventEmitter();
|
|
1033
1167
|
c.detach();
|
|
1034
1168
|
this.el = r.nativeElement;
|
|
1035
|
-
proxyOutputs(this, this.el, ['bqChange']);
|
|
1036
1169
|
}
|
|
1037
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1038
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1170
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1171
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqRadioGroup, isStandalone: true, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", required: "required", requiredValidationMessage: "requiredValidationMessage", value: "value" }, outputs: { bqChange: "bqChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1039
1172
|
};
|
|
1040
1173
|
BqRadioGroup = __decorate([
|
|
1041
1174
|
ProxyCmp({
|
|
@@ -1044,26 +1177,32 @@ BqRadioGroup = __decorate([
|
|
|
1044
1177
|
}),
|
|
1045
1178
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1046
1179
|
], BqRadioGroup);
|
|
1047
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1180
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
1048
1181
|
type: Component,
|
|
1049
1182
|
args: [{
|
|
1050
1183
|
selector: 'bq-radio-group',
|
|
1051
1184
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1052
1185
|
template: '<ng-content></ng-content>',
|
|
1053
1186
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1054
|
-
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'required', 'requiredValidationMessage', 'value'],
|
|
1055
|
-
|
|
1187
|
+
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', { name: 'name', required: true }, 'orientation', 'required', 'requiredValidationMessage', 'value'],
|
|
1188
|
+
outputs: ['bqChange'],
|
|
1056
1189
|
}]
|
|
1057
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1190
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
1191
|
+
type: Output
|
|
1192
|
+
}] } });
|
|
1058
1193
|
let BqSelect = class BqSelect {
|
|
1059
1194
|
constructor(c, r, z) {
|
|
1060
1195
|
this.z = z;
|
|
1196
|
+
this.bqBlur = new EventEmitter();
|
|
1197
|
+
this.bqClear = new EventEmitter();
|
|
1198
|
+
this.bqFocus = new EventEmitter();
|
|
1199
|
+
this.bqSelect = new EventEmitter();
|
|
1200
|
+
this.bqInput = new EventEmitter();
|
|
1061
1201
|
c.detach();
|
|
1062
1202
|
this.el = r.nativeElement;
|
|
1063
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect', 'bqInput']);
|
|
1064
1203
|
}
|
|
1065
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1066
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1204
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1205
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSelect, isStandalone: true, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disableScrollLock: "disableScrollLock", 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" }, outputs: { bqBlur: "bqBlur", bqClear: "bqClear", bqFocus: "bqFocus", bqSelect: "bqSelect", bqInput: "bqInput" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1067
1206
|
};
|
|
1068
1207
|
BqSelect = __decorate([
|
|
1069
1208
|
ProxyCmp({
|
|
@@ -1073,26 +1212,37 @@ BqSelect = __decorate([
|
|
|
1073
1212
|
}),
|
|
1074
1213
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1075
1214
|
], BqSelect);
|
|
1076
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSelect, decorators: [{
|
|
1077
1216
|
type: Component,
|
|
1078
1217
|
args: [{
|
|
1079
1218
|
selector: 'bq-select',
|
|
1080
1219
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1081
1220
|
template: '<ng-content></ng-content>',
|
|
1082
1221
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1083
|
-
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disableScrollLock', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
1084
|
-
|
|
1222
|
+
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disableScrollLock', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', { name: 'name', required: true }, 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
1223
|
+
outputs: ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect', 'bqInput'],
|
|
1085
1224
|
}]
|
|
1086
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1225
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
1226
|
+
type: Output
|
|
1227
|
+
}], bqClear: [{
|
|
1228
|
+
type: Output
|
|
1229
|
+
}], bqFocus: [{
|
|
1230
|
+
type: Output
|
|
1231
|
+
}], bqSelect: [{
|
|
1232
|
+
type: Output
|
|
1233
|
+
}], bqInput: [{
|
|
1234
|
+
type: Output
|
|
1235
|
+
}] } });
|
|
1087
1236
|
let BqSideMenu = class BqSideMenu {
|
|
1088
1237
|
constructor(c, r, z) {
|
|
1089
1238
|
this.z = z;
|
|
1239
|
+
this.bqCollapse = new EventEmitter();
|
|
1240
|
+
this.bqSelect = new EventEmitter();
|
|
1090
1241
|
c.detach();
|
|
1091
1242
|
this.el = r.nativeElement;
|
|
1092
|
-
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
1093
1243
|
}
|
|
1094
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1095
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1244
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1245
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSideMenu, isStandalone: true, selector: "bq-side-menu", inputs: { appearance: "appearance", collapse: "collapse", size: "size" }, outputs: { bqCollapse: "bqCollapse", bqSelect: "bqSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1096
1246
|
};
|
|
1097
1247
|
BqSideMenu = __decorate([
|
|
1098
1248
|
ProxyCmp({
|
|
@@ -1102,7 +1252,7 @@ BqSideMenu = __decorate([
|
|
|
1102
1252
|
}),
|
|
1103
1253
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1104
1254
|
], BqSideMenu);
|
|
1105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
1106
1256
|
type: Component,
|
|
1107
1257
|
args: [{
|
|
1108
1258
|
selector: 'bq-side-menu',
|
|
@@ -1110,18 +1260,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1110
1260
|
template: '<ng-content></ng-content>',
|
|
1111
1261
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1112
1262
|
inputs: ['appearance', 'collapse', 'size'],
|
|
1113
|
-
|
|
1263
|
+
outputs: ['bqCollapse', 'bqSelect'],
|
|
1114
1264
|
}]
|
|
1115
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1265
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqCollapse: [{
|
|
1266
|
+
type: Output
|
|
1267
|
+
}], bqSelect: [{
|
|
1268
|
+
type: Output
|
|
1269
|
+
}] } });
|
|
1116
1270
|
let BqSideMenuItem = class BqSideMenuItem {
|
|
1117
1271
|
constructor(c, r, z) {
|
|
1118
1272
|
this.z = z;
|
|
1273
|
+
this.bqBlur = new EventEmitter();
|
|
1274
|
+
this.bqFocus = new EventEmitter();
|
|
1275
|
+
this.bqClick = new EventEmitter();
|
|
1119
1276
|
c.detach();
|
|
1120
1277
|
this.el = r.nativeElement;
|
|
1121
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
1122
1278
|
}
|
|
1123
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1124
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1279
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1280
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSideMenuItem, isStandalone: true, selector: "bq-side-menu-item", inputs: { active: "active", collapse: "collapse", disabled: "disabled" }, outputs: { bqBlur: "bqBlur", bqFocus: "bqFocus", bqClick: "bqClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1125
1281
|
};
|
|
1126
1282
|
BqSideMenuItem = __decorate([
|
|
1127
1283
|
ProxyCmp({
|
|
@@ -1130,7 +1286,7 @@ BqSideMenuItem = __decorate([
|
|
|
1130
1286
|
}),
|
|
1131
1287
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1132
1288
|
], BqSideMenuItem);
|
|
1133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
1134
1290
|
type: Component,
|
|
1135
1291
|
args: [{
|
|
1136
1292
|
selector: 'bq-side-menu-item',
|
|
@@ -1138,18 +1294,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1138
1294
|
template: '<ng-content></ng-content>',
|
|
1139
1295
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1140
1296
|
inputs: ['active', 'collapse', 'disabled'],
|
|
1141
|
-
|
|
1297
|
+
outputs: ['bqBlur', 'bqFocus', 'bqClick'],
|
|
1142
1298
|
}]
|
|
1143
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1299
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
1300
|
+
type: Output
|
|
1301
|
+
}], bqFocus: [{
|
|
1302
|
+
type: Output
|
|
1303
|
+
}], bqClick: [{
|
|
1304
|
+
type: Output
|
|
1305
|
+
}] } });
|
|
1144
1306
|
let BqSlider = class BqSlider {
|
|
1145
1307
|
constructor(c, r, z) {
|
|
1146
1308
|
this.z = z;
|
|
1309
|
+
this.bqChange = new EventEmitter();
|
|
1310
|
+
this.bqBlur = new EventEmitter();
|
|
1311
|
+
this.bqFocus = new EventEmitter();
|
|
1147
1312
|
c.detach();
|
|
1148
1313
|
this.el = r.nativeElement;
|
|
1149
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
1150
1314
|
}
|
|
1151
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1152
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1315
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1316
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSlider, isStandalone: true, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", enableTooltip: "enableTooltip", enableValueIndicator: "enableValueIndicator", gap: "gap", max: "max", min: "min", name: "name", step: "step", tooltipAlwaysVisible: "tooltipAlwaysVisible", type: "type", value: "value" }, outputs: { bqChange: "bqChange", bqBlur: "bqBlur", bqFocus: "bqFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1153
1317
|
};
|
|
1154
1318
|
BqSlider = __decorate([
|
|
1155
1319
|
ProxyCmp({
|
|
@@ -1158,7 +1322,7 @@ BqSlider = __decorate([
|
|
|
1158
1322
|
}),
|
|
1159
1323
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1160
1324
|
], BqSlider);
|
|
1161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1325
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSlider, decorators: [{
|
|
1162
1326
|
type: Component,
|
|
1163
1327
|
args: [{
|
|
1164
1328
|
selector: 'bq-slider',
|
|
@@ -1166,17 +1330,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1166
1330
|
template: '<ng-content></ng-content>',
|
|
1167
1331
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1168
1332
|
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'name', 'step', 'tooltipAlwaysVisible', 'type', 'value'],
|
|
1169
|
-
|
|
1333
|
+
outputs: ['bqChange', 'bqBlur', 'bqFocus'],
|
|
1170
1334
|
}]
|
|
1171
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1335
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
1336
|
+
type: Output
|
|
1337
|
+
}], bqBlur: [{
|
|
1338
|
+
type: Output
|
|
1339
|
+
}], bqFocus: [{
|
|
1340
|
+
type: Output
|
|
1341
|
+
}] } });
|
|
1172
1342
|
let BqSpinner = class BqSpinner {
|
|
1173
1343
|
constructor(c, r, z) {
|
|
1174
1344
|
this.z = z;
|
|
1175
1345
|
c.detach();
|
|
1176
1346
|
this.el = r.nativeElement;
|
|
1177
1347
|
}
|
|
1178
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1179
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1348
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1349
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSpinner, isStandalone: true, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1180
1350
|
};
|
|
1181
1351
|
BqSpinner = __decorate([
|
|
1182
1352
|
ProxyCmp({
|
|
@@ -1185,7 +1355,7 @@ BqSpinner = __decorate([
|
|
|
1185
1355
|
}),
|
|
1186
1356
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1187
1357
|
], BqSpinner);
|
|
1188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1358
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1189
1359
|
type: Component,
|
|
1190
1360
|
args: [{
|
|
1191
1361
|
selector: 'bq-spinner',
|
|
@@ -1193,7 +1363,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1193
1363
|
template: '<ng-content></ng-content>',
|
|
1194
1364
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1195
1365
|
inputs: ['animation', 'size', 'textPosition'],
|
|
1196
|
-
standalone: true
|
|
1197
1366
|
}]
|
|
1198
1367
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1199
1368
|
let BqStatus = class BqStatus {
|
|
@@ -1202,8 +1371,8 @@ let BqStatus = class BqStatus {
|
|
|
1202
1371
|
c.detach();
|
|
1203
1372
|
this.el = r.nativeElement;
|
|
1204
1373
|
}
|
|
1205
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1206
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1374
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1375
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqStatus, isStandalone: true, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1207
1376
|
};
|
|
1208
1377
|
BqStatus = __decorate([
|
|
1209
1378
|
ProxyCmp({
|
|
@@ -1212,7 +1381,7 @@ BqStatus = __decorate([
|
|
|
1212
1381
|
}),
|
|
1213
1382
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1214
1383
|
], BqStatus);
|
|
1215
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1384
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqStatus, decorators: [{
|
|
1216
1385
|
type: Component,
|
|
1217
1386
|
args: [{
|
|
1218
1387
|
selector: 'bq-status',
|
|
@@ -1220,18 +1389,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1220
1389
|
template: '<ng-content></ng-content>',
|
|
1221
1390
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1222
1391
|
inputs: ['type'],
|
|
1223
|
-
standalone: true
|
|
1224
1392
|
}]
|
|
1225
1393
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1226
1394
|
let BqStepItem = class BqStepItem {
|
|
1227
1395
|
constructor(c, r, z) {
|
|
1228
1396
|
this.z = z;
|
|
1397
|
+
this.bqClick = new EventEmitter();
|
|
1398
|
+
this.bqFocus = new EventEmitter();
|
|
1399
|
+
this.bqBlur = new EventEmitter();
|
|
1229
1400
|
c.detach();
|
|
1230
1401
|
this.el = r.nativeElement;
|
|
1231
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur']);
|
|
1232
1402
|
}
|
|
1233
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1234
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1403
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1404
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqStepItem, isStandalone: true, selector: "bq-step-item", inputs: { size: "size", status: "status", type: "type" }, outputs: { bqClick: "bqClick", bqFocus: "bqFocus", bqBlur: "bqBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1235
1405
|
};
|
|
1236
1406
|
BqStepItem = __decorate([
|
|
1237
1407
|
ProxyCmp({
|
|
@@ -1240,7 +1410,7 @@ BqStepItem = __decorate([
|
|
|
1240
1410
|
}),
|
|
1241
1411
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1242
1412
|
], BqStepItem);
|
|
1243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1244
1414
|
type: Component,
|
|
1245
1415
|
args: [{
|
|
1246
1416
|
selector: 'bq-step-item',
|
|
@@ -1248,17 +1418,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1248
1418
|
template: '<ng-content></ng-content>',
|
|
1249
1419
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1250
1420
|
inputs: ['size', 'status', 'type'],
|
|
1251
|
-
|
|
1421
|
+
outputs: ['bqClick', 'bqFocus', 'bqBlur'],
|
|
1252
1422
|
}]
|
|
1253
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1423
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
1424
|
+
type: Output
|
|
1425
|
+
}], bqFocus: [{
|
|
1426
|
+
type: Output
|
|
1427
|
+
}], bqBlur: [{
|
|
1428
|
+
type: Output
|
|
1429
|
+
}] } });
|
|
1254
1430
|
let BqSteps = class BqSteps {
|
|
1255
1431
|
constructor(c, r, z) {
|
|
1256
1432
|
this.z = z;
|
|
1257
1433
|
c.detach();
|
|
1258
1434
|
this.el = r.nativeElement;
|
|
1259
1435
|
}
|
|
1260
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1261
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1436
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1437
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSteps, isStandalone: true, selector: "bq-steps", inputs: { dividerColor: "dividerColor", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1262
1438
|
};
|
|
1263
1439
|
BqSteps = __decorate([
|
|
1264
1440
|
ProxyCmp({
|
|
@@ -1268,7 +1444,7 @@ BqSteps = __decorate([
|
|
|
1268
1444
|
}),
|
|
1269
1445
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1270
1446
|
], BqSteps);
|
|
1271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSteps, decorators: [{
|
|
1272
1448
|
type: Component,
|
|
1273
1449
|
args: [{
|
|
1274
1450
|
selector: 'bq-steps',
|
|
@@ -1276,18 +1452,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1276
1452
|
template: '<ng-content></ng-content>',
|
|
1277
1453
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1278
1454
|
inputs: ['dividerColor', 'size', 'type'],
|
|
1279
|
-
standalone: true
|
|
1280
1455
|
}]
|
|
1281
1456
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1282
1457
|
let BqSwitch = class BqSwitch {
|
|
1283
1458
|
constructor(c, r, z) {
|
|
1284
1459
|
this.z = z;
|
|
1460
|
+
this.bqChange = new EventEmitter();
|
|
1461
|
+
this.bqFocus = new EventEmitter();
|
|
1462
|
+
this.bqBlur = new EventEmitter();
|
|
1285
1463
|
c.detach();
|
|
1286
1464
|
this.el = r.nativeElement;
|
|
1287
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1288
1465
|
}
|
|
1289
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1290
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1466
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1467
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSwitch, isStandalone: true, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formValidationMessage: "formValidationMessage", fullWidth: "fullWidth", innerLabel: "innerLabel", justifyContent: "justifyContent", name: "name", required: "required", reverseOrder: "reverseOrder", value: "value" }, outputs: { bqChange: "bqChange", bqFocus: "bqFocus", bqBlur: "bqBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1291
1468
|
};
|
|
1292
1469
|
BqSwitch = __decorate([
|
|
1293
1470
|
ProxyCmp({
|
|
@@ -1297,26 +1474,35 @@ BqSwitch = __decorate([
|
|
|
1297
1474
|
}),
|
|
1298
1475
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1299
1476
|
], BqSwitch);
|
|
1300
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1301
1478
|
type: Component,
|
|
1302
1479
|
args: [{
|
|
1303
1480
|
selector: 'bq-switch',
|
|
1304
1481
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1305
1482
|
template: '<ng-content></ng-content>',
|
|
1306
1483
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1307
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
1308
|
-
|
|
1484
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', { name: 'name', required: true }, 'required', 'reverseOrder', 'value'],
|
|
1485
|
+
outputs: ['bqChange', 'bqFocus', 'bqBlur'],
|
|
1309
1486
|
}]
|
|
1310
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1487
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
1488
|
+
type: Output
|
|
1489
|
+
}], bqFocus: [{
|
|
1490
|
+
type: Output
|
|
1491
|
+
}], bqBlur: [{
|
|
1492
|
+
type: Output
|
|
1493
|
+
}] } });
|
|
1311
1494
|
let BqTab = class BqTab {
|
|
1312
1495
|
constructor(c, r, z) {
|
|
1313
1496
|
this.z = z;
|
|
1497
|
+
this.bqClick = new EventEmitter();
|
|
1498
|
+
this.bqFocus = new EventEmitter();
|
|
1499
|
+
this.bqBlur = new EventEmitter();
|
|
1500
|
+
this.bqKeyDown = new EventEmitter();
|
|
1314
1501
|
c.detach();
|
|
1315
1502
|
this.el = r.nativeElement;
|
|
1316
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1317
1503
|
}
|
|
1318
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1319
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1504
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1505
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqTab, isStandalone: true, selector: "bq-tab", inputs: { active: "active", controls: "controls", disabled: "disabled", orientation: "orientation", placement: "placement", size: "size", tabId: "tabId" }, outputs: { bqClick: "bqClick", bqFocus: "bqFocus", bqBlur: "bqBlur", bqKeyDown: "bqKeyDown" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1320
1506
|
};
|
|
1321
1507
|
BqTab = __decorate([
|
|
1322
1508
|
ProxyCmp({
|
|
@@ -1326,26 +1512,34 @@ BqTab = __decorate([
|
|
|
1326
1512
|
}),
|
|
1327
1513
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1328
1514
|
], BqTab);
|
|
1329
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTab, decorators: [{
|
|
1330
1516
|
type: Component,
|
|
1331
1517
|
args: [{
|
|
1332
1518
|
selector: 'bq-tab',
|
|
1333
1519
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1334
1520
|
template: '<ng-content></ng-content>',
|
|
1335
1521
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1336
|
-
inputs: ['active', 'controls', 'disabled', 'orientation', 'placement', 'size', 'tabId'],
|
|
1337
|
-
|
|
1522
|
+
inputs: ['active', { name: 'controls', required: true }, 'disabled', 'orientation', 'placement', 'size', { name: 'tabId', required: true }],
|
|
1523
|
+
outputs: ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown'],
|
|
1338
1524
|
}]
|
|
1339
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1525
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
1526
|
+
type: Output
|
|
1527
|
+
}], bqFocus: [{
|
|
1528
|
+
type: Output
|
|
1529
|
+
}], bqBlur: [{
|
|
1530
|
+
type: Output
|
|
1531
|
+
}], bqKeyDown: [{
|
|
1532
|
+
type: Output
|
|
1533
|
+
}] } });
|
|
1340
1534
|
let BqTabGroup = class BqTabGroup {
|
|
1341
1535
|
constructor(c, r, z) {
|
|
1342
1536
|
this.z = z;
|
|
1537
|
+
this.bqChange = new EventEmitter();
|
|
1343
1538
|
c.detach();
|
|
1344
1539
|
this.el = r.nativeElement;
|
|
1345
|
-
proxyOutputs(this, this.el, ['bqChange']);
|
|
1346
1540
|
}
|
|
1347
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1348
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1541
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1542
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqTabGroup, isStandalone: true, selector: "bq-tab-group", inputs: { debounceTime: "debounceTime", disableDivider: "disableDivider", orientation: "orientation", placement: "placement", size: "size", value: "value" }, outputs: { bqChange: "bqChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1349
1543
|
};
|
|
1350
1544
|
BqTabGroup = __decorate([
|
|
1351
1545
|
ProxyCmp({
|
|
@@ -1354,7 +1548,7 @@ BqTabGroup = __decorate([
|
|
|
1354
1548
|
}),
|
|
1355
1549
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1356
1550
|
], BqTabGroup);
|
|
1357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1551
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1358
1552
|
type: Component,
|
|
1359
1553
|
args: [{
|
|
1360
1554
|
selector: 'bq-tab-group',
|
|
@@ -1362,18 +1556,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1362
1556
|
template: '<ng-content></ng-content>',
|
|
1363
1557
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1364
1558
|
inputs: ['debounceTime', 'disableDivider', 'orientation', 'placement', 'size', 'value'],
|
|
1365
|
-
|
|
1559
|
+
outputs: ['bqChange'],
|
|
1366
1560
|
}]
|
|
1367
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1561
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
1562
|
+
type: Output
|
|
1563
|
+
}] } });
|
|
1368
1564
|
let BqTag = class BqTag {
|
|
1369
1565
|
constructor(c, r, z) {
|
|
1370
1566
|
this.z = z;
|
|
1567
|
+
this.bqClose = new EventEmitter();
|
|
1568
|
+
this.bqOpen = new EventEmitter();
|
|
1569
|
+
this.bqBlur = new EventEmitter();
|
|
1570
|
+
this.bqClick = new EventEmitter();
|
|
1571
|
+
this.bqFocus = new EventEmitter();
|
|
1371
1572
|
c.detach();
|
|
1372
1573
|
this.el = r.nativeElement;
|
|
1373
|
-
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1374
1574
|
}
|
|
1375
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1376
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1575
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1576
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqTag, isStandalone: true, selector: "bq-tag", inputs: { border: "border", clickable: "clickable", color: "color", disabled: "disabled", hidden: "hidden", removable: "removable", selected: "selected", size: "size", variant: "variant" }, outputs: { bqClose: "bqClose", bqOpen: "bqOpen", bqBlur: "bqBlur", bqClick: "bqClick", bqFocus: "bqFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1377
1577
|
};
|
|
1378
1578
|
BqTag = __decorate([
|
|
1379
1579
|
ProxyCmp({
|
|
@@ -1383,7 +1583,7 @@ BqTag = __decorate([
|
|
|
1383
1583
|
}),
|
|
1384
1584
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1385
1585
|
], BqTag);
|
|
1386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1586
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTag, decorators: [{
|
|
1387
1587
|
type: Component,
|
|
1388
1588
|
args: [{
|
|
1389
1589
|
selector: 'bq-tag',
|
|
@@ -1391,18 +1591,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1391
1591
|
template: '<ng-content></ng-content>',
|
|
1392
1592
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1393
1593
|
inputs: ['border', 'clickable', 'color', 'disabled', 'hidden', 'removable', 'selected', 'size', 'variant'],
|
|
1394
|
-
|
|
1594
|
+
outputs: ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus'],
|
|
1395
1595
|
}]
|
|
1396
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1596
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClose: [{
|
|
1597
|
+
type: Output
|
|
1598
|
+
}], bqOpen: [{
|
|
1599
|
+
type: Output
|
|
1600
|
+
}], bqBlur: [{
|
|
1601
|
+
type: Output
|
|
1602
|
+
}], bqClick: [{
|
|
1603
|
+
type: Output
|
|
1604
|
+
}], bqFocus: [{
|
|
1605
|
+
type: Output
|
|
1606
|
+
}] } });
|
|
1397
1607
|
let BqTextarea = class BqTextarea {
|
|
1398
1608
|
constructor(c, r, z) {
|
|
1399
1609
|
this.z = z;
|
|
1610
|
+
this.bqBlur = new EventEmitter();
|
|
1611
|
+
this.bqChange = new EventEmitter();
|
|
1612
|
+
this.bqClear = new EventEmitter();
|
|
1613
|
+
this.bqFocus = new EventEmitter();
|
|
1614
|
+
this.bqInput = new EventEmitter();
|
|
1400
1615
|
c.detach();
|
|
1401
1616
|
this.el = r.nativeElement;
|
|
1402
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1403
1617
|
}
|
|
1404
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1405
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1618
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1619
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqTextarea, isStandalone: true, selector: "bq-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", debounceTime: "debounceTime", disableResize: "disableResize", disabled: "disabled", form: "form", formValidationMessage: "formValidationMessage", maxlength: "maxlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", spellcheck: "spellcheck", validationStatus: "validationStatus", value: "value", wrap: "wrap" }, outputs: { bqBlur: "bqBlur", bqChange: "bqChange", bqClear: "bqClear", bqFocus: "bqFocus", bqInput: "bqInput" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1406
1620
|
};
|
|
1407
1621
|
BqTextarea = __decorate([
|
|
1408
1622
|
ProxyCmp({
|
|
@@ -1411,26 +1625,37 @@ BqTextarea = __decorate([
|
|
|
1411
1625
|
}),
|
|
1412
1626
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1413
1627
|
], BqTextarea);
|
|
1414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1628
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1415
1629
|
type: Component,
|
|
1416
1630
|
args: [{
|
|
1417
1631
|
selector: 'bq-textarea',
|
|
1418
1632
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1419
1633
|
template: '<ng-content></ng-content>',
|
|
1420
1634
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1421
|
-
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
|
|
1422
|
-
|
|
1635
|
+
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', { name: 'name', required: true }, { name: 'placeholder', required: true }, 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
|
|
1636
|
+
outputs: ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput'],
|
|
1423
1637
|
}]
|
|
1424
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1638
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
1639
|
+
type: Output
|
|
1640
|
+
}], bqChange: [{
|
|
1641
|
+
type: Output
|
|
1642
|
+
}], bqClear: [{
|
|
1643
|
+
type: Output
|
|
1644
|
+
}], bqFocus: [{
|
|
1645
|
+
type: Output
|
|
1646
|
+
}], bqInput: [{
|
|
1647
|
+
type: Output
|
|
1648
|
+
}] } });
|
|
1425
1649
|
let BqToast = class BqToast {
|
|
1426
1650
|
constructor(c, r, z) {
|
|
1427
1651
|
this.z = z;
|
|
1652
|
+
this.bqHide = new EventEmitter();
|
|
1653
|
+
this.bqShow = new EventEmitter();
|
|
1428
1654
|
c.detach();
|
|
1429
1655
|
this.el = r.nativeElement;
|
|
1430
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1431
1656
|
}
|
|
1432
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1433
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1657
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1658
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqToast, isStandalone: true, selector: "bq-toast", inputs: { border: "border", hideIcon: "hideIcon", open: "open", placement: "placement", time: "time", type: "type" }, outputs: { bqHide: "bqHide", bqShow: "bqShow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1434
1659
|
};
|
|
1435
1660
|
BqToast = __decorate([
|
|
1436
1661
|
ProxyCmp({
|
|
@@ -1440,7 +1665,7 @@ BqToast = __decorate([
|
|
|
1440
1665
|
}),
|
|
1441
1666
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1442
1667
|
], BqToast);
|
|
1443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqToast, decorators: [{
|
|
1444
1669
|
type: Component,
|
|
1445
1670
|
args: [{
|
|
1446
1671
|
selector: 'bq-toast',
|
|
@@ -1448,18 +1673,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1448
1673
|
template: '<ng-content></ng-content>',
|
|
1449
1674
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1450
1675
|
inputs: ['border', 'hideIcon', 'open', 'placement', 'time', 'type'],
|
|
1451
|
-
|
|
1676
|
+
outputs: ['bqHide', 'bqShow'],
|
|
1452
1677
|
}]
|
|
1453
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1678
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqHide: [{
|
|
1679
|
+
type: Output
|
|
1680
|
+
}], bqShow: [{
|
|
1681
|
+
type: Output
|
|
1682
|
+
}] } });
|
|
1454
1683
|
let BqTooltip = class BqTooltip {
|
|
1455
1684
|
constructor(c, r, z) {
|
|
1456
1685
|
this.z = z;
|
|
1686
|
+
this.bqClick = new EventEmitter();
|
|
1687
|
+
this.bqFocusIn = new EventEmitter();
|
|
1688
|
+
this.bqFocusOut = new EventEmitter();
|
|
1689
|
+
this.bqHoverIn = new EventEmitter();
|
|
1690
|
+
this.bqHoverOut = new EventEmitter();
|
|
1457
1691
|
c.detach();
|
|
1458
1692
|
this.el = r.nativeElement;
|
|
1459
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocusIn', 'bqFocusOut', 'bqHoverIn', 'bqHoverOut']);
|
|
1460
1693
|
}
|
|
1461
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1462
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1694
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1695
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqTooltip, isStandalone: true, selector: "bq-tooltip", inputs: { alwaysVisible: "alwaysVisible", displayOn: "displayOn", distance: "distance", hideArrow: "hideArrow", placement: "placement", sameWidth: "sameWidth", visible: "visible" }, outputs: { bqClick: "bqClick", bqFocusIn: "bqFocusIn", bqFocusOut: "bqFocusOut", bqHoverIn: "bqHoverIn", bqHoverOut: "bqHoverOut" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1463
1696
|
};
|
|
1464
1697
|
BqTooltip = __decorate([
|
|
1465
1698
|
ProxyCmp({
|
|
@@ -1469,7 +1702,7 @@ BqTooltip = __decorate([
|
|
|
1469
1702
|
}),
|
|
1470
1703
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1471
1704
|
], BqTooltip);
|
|
1472
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1473
1706
|
type: Component,
|
|
1474
1707
|
args: [{
|
|
1475
1708
|
selector: 'bq-tooltip',
|
|
@@ -1477,9 +1710,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1477
1710
|
template: '<ng-content></ng-content>',
|
|
1478
1711
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1479
1712
|
inputs: ['alwaysVisible', 'displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
1480
|
-
|
|
1713
|
+
outputs: ['bqClick', 'bqFocusIn', 'bqFocusOut', 'bqHoverIn', 'bqHoverOut'],
|
|
1481
1714
|
}]
|
|
1482
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1715
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
1716
|
+
type: Output
|
|
1717
|
+
}], bqFocusIn: [{
|
|
1718
|
+
type: Output
|
|
1719
|
+
}], bqFocusOut: [{
|
|
1720
|
+
type: Output
|
|
1721
|
+
}], bqHoverIn: [{
|
|
1722
|
+
type: Output
|
|
1723
|
+
}], bqHoverOut: [{
|
|
1724
|
+
type: Output
|
|
1725
|
+
}] } });
|
|
1483
1726
|
|
|
1484
1727
|
// @ts-nocheck
|
|
1485
1728
|
/**
|