@beeq/angular 1.10.0-beta.7 → 1.11.0-beta.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 +508 -262
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +559 -224
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/index.d.ts +2303 -12
- package/package.json +2 -6
- package/standalone/index.d.ts +1010 -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
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,35 @@ 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();
|
|
1167
|
+
this.bqBlur = new EventEmitter();
|
|
1033
1168
|
c.detach();
|
|
1034
1169
|
this.el = r.nativeElement;
|
|
1035
|
-
proxyOutputs(this, this.el, ['bqChange']);
|
|
1036
1170
|
}
|
|
1037
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1038
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1171
|
+
/** @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 }); }
|
|
1172
|
+
/** @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", bqBlur: "bqBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1039
1173
|
};
|
|
1040
1174
|
BqRadioGroup = __decorate([
|
|
1041
1175
|
ProxyCmp({
|
|
@@ -1044,26 +1178,34 @@ BqRadioGroup = __decorate([
|
|
|
1044
1178
|
}),
|
|
1045
1179
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1046
1180
|
], BqRadioGroup);
|
|
1047
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
1048
1182
|
type: Component,
|
|
1049
1183
|
args: [{
|
|
1050
1184
|
selector: 'bq-radio-group',
|
|
1051
1185
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1052
1186
|
template: '<ng-content></ng-content>',
|
|
1053
1187
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1054
|
-
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'required', 'requiredValidationMessage', 'value'],
|
|
1055
|
-
|
|
1188
|
+
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', { name: 'name', required: true }, 'orientation', 'required', 'requiredValidationMessage', 'value'],
|
|
1189
|
+
outputs: ['bqChange', 'bqBlur'],
|
|
1056
1190
|
}]
|
|
1057
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1191
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
1192
|
+
type: Output
|
|
1193
|
+
}], bqBlur: [{
|
|
1194
|
+
type: Output
|
|
1195
|
+
}] } });
|
|
1058
1196
|
let BqSelect = class BqSelect {
|
|
1059
1197
|
constructor(c, r, z) {
|
|
1060
1198
|
this.z = z;
|
|
1199
|
+
this.bqBlur = new EventEmitter();
|
|
1200
|
+
this.bqClear = new EventEmitter();
|
|
1201
|
+
this.bqFocus = new EventEmitter();
|
|
1202
|
+
this.bqSelect = new EventEmitter();
|
|
1203
|
+
this.bqInput = new EventEmitter();
|
|
1061
1204
|
c.detach();
|
|
1062
1205
|
this.el = r.nativeElement;
|
|
1063
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect', 'bqInput']);
|
|
1064
1206
|
}
|
|
1065
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1066
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1207
|
+
/** @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 }); }
|
|
1208
|
+
/** @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
1209
|
};
|
|
1068
1210
|
BqSelect = __decorate([
|
|
1069
1211
|
ProxyCmp({
|
|
@@ -1073,26 +1215,37 @@ BqSelect = __decorate([
|
|
|
1073
1215
|
}),
|
|
1074
1216
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1075
1217
|
], BqSelect);
|
|
1076
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1218
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSelect, decorators: [{
|
|
1077
1219
|
type: Component,
|
|
1078
1220
|
args: [{
|
|
1079
1221
|
selector: 'bq-select',
|
|
1080
1222
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1081
1223
|
template: '<ng-content></ng-content>',
|
|
1082
1224
|
// 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
|
-
|
|
1225
|
+
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'],
|
|
1226
|
+
outputs: ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect', 'bqInput'],
|
|
1085
1227
|
}]
|
|
1086
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1228
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
1229
|
+
type: Output
|
|
1230
|
+
}], bqClear: [{
|
|
1231
|
+
type: Output
|
|
1232
|
+
}], bqFocus: [{
|
|
1233
|
+
type: Output
|
|
1234
|
+
}], bqSelect: [{
|
|
1235
|
+
type: Output
|
|
1236
|
+
}], bqInput: [{
|
|
1237
|
+
type: Output
|
|
1238
|
+
}] } });
|
|
1087
1239
|
let BqSideMenu = class BqSideMenu {
|
|
1088
1240
|
constructor(c, r, z) {
|
|
1089
1241
|
this.z = z;
|
|
1242
|
+
this.bqCollapse = new EventEmitter();
|
|
1243
|
+
this.bqSelect = new EventEmitter();
|
|
1090
1244
|
c.detach();
|
|
1091
1245
|
this.el = r.nativeElement;
|
|
1092
|
-
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
1093
1246
|
}
|
|
1094
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1095
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1247
|
+
/** @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 }); }
|
|
1248
|
+
/** @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
1249
|
};
|
|
1097
1250
|
BqSideMenu = __decorate([
|
|
1098
1251
|
ProxyCmp({
|
|
@@ -1102,7 +1255,7 @@ BqSideMenu = __decorate([
|
|
|
1102
1255
|
}),
|
|
1103
1256
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1104
1257
|
], BqSideMenu);
|
|
1105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1258
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
1106
1259
|
type: Component,
|
|
1107
1260
|
args: [{
|
|
1108
1261
|
selector: 'bq-side-menu',
|
|
@@ -1110,18 +1263,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1110
1263
|
template: '<ng-content></ng-content>',
|
|
1111
1264
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1112
1265
|
inputs: ['appearance', 'collapse', 'size'],
|
|
1113
|
-
|
|
1266
|
+
outputs: ['bqCollapse', 'bqSelect'],
|
|
1114
1267
|
}]
|
|
1115
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1268
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqCollapse: [{
|
|
1269
|
+
type: Output
|
|
1270
|
+
}], bqSelect: [{
|
|
1271
|
+
type: Output
|
|
1272
|
+
}] } });
|
|
1116
1273
|
let BqSideMenuItem = class BqSideMenuItem {
|
|
1117
1274
|
constructor(c, r, z) {
|
|
1118
1275
|
this.z = z;
|
|
1276
|
+
this.bqBlur = new EventEmitter();
|
|
1277
|
+
this.bqFocus = new EventEmitter();
|
|
1278
|
+
this.bqClick = new EventEmitter();
|
|
1119
1279
|
c.detach();
|
|
1120
1280
|
this.el = r.nativeElement;
|
|
1121
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
1122
1281
|
}
|
|
1123
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1124
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1282
|
+
/** @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 }); }
|
|
1283
|
+
/** @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
1284
|
};
|
|
1126
1285
|
BqSideMenuItem = __decorate([
|
|
1127
1286
|
ProxyCmp({
|
|
@@ -1130,7 +1289,7 @@ BqSideMenuItem = __decorate([
|
|
|
1130
1289
|
}),
|
|
1131
1290
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1132
1291
|
], BqSideMenuItem);
|
|
1133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
1134
1293
|
type: Component,
|
|
1135
1294
|
args: [{
|
|
1136
1295
|
selector: 'bq-side-menu-item',
|
|
@@ -1138,18 +1297,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1138
1297
|
template: '<ng-content></ng-content>',
|
|
1139
1298
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1140
1299
|
inputs: ['active', 'collapse', 'disabled'],
|
|
1141
|
-
|
|
1300
|
+
outputs: ['bqBlur', 'bqFocus', 'bqClick'],
|
|
1142
1301
|
}]
|
|
1143
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1302
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
1303
|
+
type: Output
|
|
1304
|
+
}], bqFocus: [{
|
|
1305
|
+
type: Output
|
|
1306
|
+
}], bqClick: [{
|
|
1307
|
+
type: Output
|
|
1308
|
+
}] } });
|
|
1144
1309
|
let BqSlider = class BqSlider {
|
|
1145
1310
|
constructor(c, r, z) {
|
|
1146
1311
|
this.z = z;
|
|
1312
|
+
this.bqChange = new EventEmitter();
|
|
1313
|
+
this.bqBlur = new EventEmitter();
|
|
1314
|
+
this.bqFocus = new EventEmitter();
|
|
1147
1315
|
c.detach();
|
|
1148
1316
|
this.el = r.nativeElement;
|
|
1149
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
1150
1317
|
}
|
|
1151
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1152
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1318
|
+
/** @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 }); }
|
|
1319
|
+
/** @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
1320
|
};
|
|
1154
1321
|
BqSlider = __decorate([
|
|
1155
1322
|
ProxyCmp({
|
|
@@ -1158,7 +1325,7 @@ BqSlider = __decorate([
|
|
|
1158
1325
|
}),
|
|
1159
1326
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1160
1327
|
], BqSlider);
|
|
1161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSlider, decorators: [{
|
|
1162
1329
|
type: Component,
|
|
1163
1330
|
args: [{
|
|
1164
1331
|
selector: 'bq-slider',
|
|
@@ -1166,17 +1333,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1166
1333
|
template: '<ng-content></ng-content>',
|
|
1167
1334
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1168
1335
|
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'name', 'step', 'tooltipAlwaysVisible', 'type', 'value'],
|
|
1169
|
-
|
|
1336
|
+
outputs: ['bqChange', 'bqBlur', 'bqFocus'],
|
|
1170
1337
|
}]
|
|
1171
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1338
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
1339
|
+
type: Output
|
|
1340
|
+
}], bqBlur: [{
|
|
1341
|
+
type: Output
|
|
1342
|
+
}], bqFocus: [{
|
|
1343
|
+
type: Output
|
|
1344
|
+
}] } });
|
|
1172
1345
|
let BqSpinner = class BqSpinner {
|
|
1173
1346
|
constructor(c, r, z) {
|
|
1174
1347
|
this.z = z;
|
|
1175
1348
|
c.detach();
|
|
1176
1349
|
this.el = r.nativeElement;
|
|
1177
1350
|
}
|
|
1178
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1179
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1351
|
+
/** @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 }); }
|
|
1352
|
+
/** @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
1353
|
};
|
|
1181
1354
|
BqSpinner = __decorate([
|
|
1182
1355
|
ProxyCmp({
|
|
@@ -1185,7 +1358,7 @@ BqSpinner = __decorate([
|
|
|
1185
1358
|
}),
|
|
1186
1359
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1187
1360
|
], BqSpinner);
|
|
1188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1189
1362
|
type: Component,
|
|
1190
1363
|
args: [{
|
|
1191
1364
|
selector: 'bq-spinner',
|
|
@@ -1193,7 +1366,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1193
1366
|
template: '<ng-content></ng-content>',
|
|
1194
1367
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1195
1368
|
inputs: ['animation', 'size', 'textPosition'],
|
|
1196
|
-
standalone: true
|
|
1197
1369
|
}]
|
|
1198
1370
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1199
1371
|
let BqStatus = class BqStatus {
|
|
@@ -1202,8 +1374,8 @@ let BqStatus = class BqStatus {
|
|
|
1202
1374
|
c.detach();
|
|
1203
1375
|
this.el = r.nativeElement;
|
|
1204
1376
|
}
|
|
1205
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1206
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1377
|
+
/** @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 }); }
|
|
1378
|
+
/** @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
1379
|
};
|
|
1208
1380
|
BqStatus = __decorate([
|
|
1209
1381
|
ProxyCmp({
|
|
@@ -1212,7 +1384,7 @@ BqStatus = __decorate([
|
|
|
1212
1384
|
}),
|
|
1213
1385
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1214
1386
|
], BqStatus);
|
|
1215
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqStatus, decorators: [{
|
|
1216
1388
|
type: Component,
|
|
1217
1389
|
args: [{
|
|
1218
1390
|
selector: 'bq-status',
|
|
@@ -1220,18 +1392,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1220
1392
|
template: '<ng-content></ng-content>',
|
|
1221
1393
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1222
1394
|
inputs: ['type'],
|
|
1223
|
-
standalone: true
|
|
1224
1395
|
}]
|
|
1225
1396
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1226
1397
|
let BqStepItem = class BqStepItem {
|
|
1227
1398
|
constructor(c, r, z) {
|
|
1228
1399
|
this.z = z;
|
|
1400
|
+
this.bqClick = new EventEmitter();
|
|
1401
|
+
this.bqFocus = new EventEmitter();
|
|
1402
|
+
this.bqBlur = new EventEmitter();
|
|
1229
1403
|
c.detach();
|
|
1230
1404
|
this.el = r.nativeElement;
|
|
1231
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur']);
|
|
1232
1405
|
}
|
|
1233
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1234
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1406
|
+
/** @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 }); }
|
|
1407
|
+
/** @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
1408
|
};
|
|
1236
1409
|
BqStepItem = __decorate([
|
|
1237
1410
|
ProxyCmp({
|
|
@@ -1240,7 +1413,7 @@ BqStepItem = __decorate([
|
|
|
1240
1413
|
}),
|
|
1241
1414
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1242
1415
|
], BqStepItem);
|
|
1243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1416
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1244
1417
|
type: Component,
|
|
1245
1418
|
args: [{
|
|
1246
1419
|
selector: 'bq-step-item',
|
|
@@ -1248,17 +1421,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1248
1421
|
template: '<ng-content></ng-content>',
|
|
1249
1422
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1250
1423
|
inputs: ['size', 'status', 'type'],
|
|
1251
|
-
|
|
1424
|
+
outputs: ['bqClick', 'bqFocus', 'bqBlur'],
|
|
1252
1425
|
}]
|
|
1253
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1426
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
1427
|
+
type: Output
|
|
1428
|
+
}], bqFocus: [{
|
|
1429
|
+
type: Output
|
|
1430
|
+
}], bqBlur: [{
|
|
1431
|
+
type: Output
|
|
1432
|
+
}] } });
|
|
1254
1433
|
let BqSteps = class BqSteps {
|
|
1255
1434
|
constructor(c, r, z) {
|
|
1256
1435
|
this.z = z;
|
|
1257
1436
|
c.detach();
|
|
1258
1437
|
this.el = r.nativeElement;
|
|
1259
1438
|
}
|
|
1260
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1261
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1439
|
+
/** @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 }); }
|
|
1440
|
+
/** @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
1441
|
};
|
|
1263
1442
|
BqSteps = __decorate([
|
|
1264
1443
|
ProxyCmp({
|
|
@@ -1268,7 +1447,7 @@ BqSteps = __decorate([
|
|
|
1268
1447
|
}),
|
|
1269
1448
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1270
1449
|
], BqSteps);
|
|
1271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSteps, decorators: [{
|
|
1272
1451
|
type: Component,
|
|
1273
1452
|
args: [{
|
|
1274
1453
|
selector: 'bq-steps',
|
|
@@ -1276,18 +1455,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1276
1455
|
template: '<ng-content></ng-content>',
|
|
1277
1456
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1278
1457
|
inputs: ['dividerColor', 'size', 'type'],
|
|
1279
|
-
standalone: true
|
|
1280
1458
|
}]
|
|
1281
1459
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1282
1460
|
let BqSwitch = class BqSwitch {
|
|
1283
1461
|
constructor(c, r, z) {
|
|
1284
1462
|
this.z = z;
|
|
1463
|
+
this.bqChange = new EventEmitter();
|
|
1464
|
+
this.bqFocus = new EventEmitter();
|
|
1465
|
+
this.bqBlur = new EventEmitter();
|
|
1285
1466
|
c.detach();
|
|
1286
1467
|
this.el = r.nativeElement;
|
|
1287
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1288
1468
|
}
|
|
1289
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1290
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1469
|
+
/** @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 }); }
|
|
1470
|
+
/** @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
1471
|
};
|
|
1292
1472
|
BqSwitch = __decorate([
|
|
1293
1473
|
ProxyCmp({
|
|
@@ -1297,26 +1477,35 @@ BqSwitch = __decorate([
|
|
|
1297
1477
|
}),
|
|
1298
1478
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1299
1479
|
], BqSwitch);
|
|
1300
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1301
1481
|
type: Component,
|
|
1302
1482
|
args: [{
|
|
1303
1483
|
selector: 'bq-switch',
|
|
1304
1484
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1305
1485
|
template: '<ng-content></ng-content>',
|
|
1306
1486
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1307
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
1308
|
-
|
|
1487
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', { name: 'name', required: true }, 'required', 'reverseOrder', 'value'],
|
|
1488
|
+
outputs: ['bqChange', 'bqFocus', 'bqBlur'],
|
|
1309
1489
|
}]
|
|
1310
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1490
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
1491
|
+
type: Output
|
|
1492
|
+
}], bqFocus: [{
|
|
1493
|
+
type: Output
|
|
1494
|
+
}], bqBlur: [{
|
|
1495
|
+
type: Output
|
|
1496
|
+
}] } });
|
|
1311
1497
|
let BqTab = class BqTab {
|
|
1312
1498
|
constructor(c, r, z) {
|
|
1313
1499
|
this.z = z;
|
|
1500
|
+
this.bqClick = new EventEmitter();
|
|
1501
|
+
this.bqFocus = new EventEmitter();
|
|
1502
|
+
this.bqBlur = new EventEmitter();
|
|
1503
|
+
this.bqKeyDown = new EventEmitter();
|
|
1314
1504
|
c.detach();
|
|
1315
1505
|
this.el = r.nativeElement;
|
|
1316
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1317
1506
|
}
|
|
1318
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1319
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1507
|
+
/** @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 }); }
|
|
1508
|
+
/** @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
1509
|
};
|
|
1321
1510
|
BqTab = __decorate([
|
|
1322
1511
|
ProxyCmp({
|
|
@@ -1326,26 +1515,34 @@ BqTab = __decorate([
|
|
|
1326
1515
|
}),
|
|
1327
1516
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1328
1517
|
], BqTab);
|
|
1329
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTab, decorators: [{
|
|
1330
1519
|
type: Component,
|
|
1331
1520
|
args: [{
|
|
1332
1521
|
selector: 'bq-tab',
|
|
1333
1522
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1334
1523
|
template: '<ng-content></ng-content>',
|
|
1335
1524
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1336
|
-
inputs: ['active', 'controls', 'disabled', 'orientation', 'placement', 'size', 'tabId'],
|
|
1337
|
-
|
|
1525
|
+
inputs: ['active', { name: 'controls', required: true }, 'disabled', 'orientation', 'placement', 'size', { name: 'tabId', required: true }],
|
|
1526
|
+
outputs: ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown'],
|
|
1338
1527
|
}]
|
|
1339
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1528
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
1529
|
+
type: Output
|
|
1530
|
+
}], bqFocus: [{
|
|
1531
|
+
type: Output
|
|
1532
|
+
}], bqBlur: [{
|
|
1533
|
+
type: Output
|
|
1534
|
+
}], bqKeyDown: [{
|
|
1535
|
+
type: Output
|
|
1536
|
+
}] } });
|
|
1340
1537
|
let BqTabGroup = class BqTabGroup {
|
|
1341
1538
|
constructor(c, r, z) {
|
|
1342
1539
|
this.z = z;
|
|
1540
|
+
this.bqChange = new EventEmitter();
|
|
1343
1541
|
c.detach();
|
|
1344
1542
|
this.el = r.nativeElement;
|
|
1345
|
-
proxyOutputs(this, this.el, ['bqChange']);
|
|
1346
1543
|
}
|
|
1347
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1348
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1544
|
+
/** @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 }); }
|
|
1545
|
+
/** @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
1546
|
};
|
|
1350
1547
|
BqTabGroup = __decorate([
|
|
1351
1548
|
ProxyCmp({
|
|
@@ -1354,7 +1551,7 @@ BqTabGroup = __decorate([
|
|
|
1354
1551
|
}),
|
|
1355
1552
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1356
1553
|
], BqTabGroup);
|
|
1357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1358
1555
|
type: Component,
|
|
1359
1556
|
args: [{
|
|
1360
1557
|
selector: 'bq-tab-group',
|
|
@@ -1362,18 +1559,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1362
1559
|
template: '<ng-content></ng-content>',
|
|
1363
1560
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1364
1561
|
inputs: ['debounceTime', 'disableDivider', 'orientation', 'placement', 'size', 'value'],
|
|
1365
|
-
|
|
1562
|
+
outputs: ['bqChange'],
|
|
1366
1563
|
}]
|
|
1367
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1564
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
1565
|
+
type: Output
|
|
1566
|
+
}] } });
|
|
1368
1567
|
let BqTag = class BqTag {
|
|
1369
1568
|
constructor(c, r, z) {
|
|
1370
1569
|
this.z = z;
|
|
1570
|
+
this.bqClose = new EventEmitter();
|
|
1571
|
+
this.bqOpen = new EventEmitter();
|
|
1572
|
+
this.bqBlur = new EventEmitter();
|
|
1573
|
+
this.bqClick = new EventEmitter();
|
|
1574
|
+
this.bqFocus = new EventEmitter();
|
|
1371
1575
|
c.detach();
|
|
1372
1576
|
this.el = r.nativeElement;
|
|
1373
|
-
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1374
1577
|
}
|
|
1375
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1376
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1578
|
+
/** @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 }); }
|
|
1579
|
+
/** @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
1580
|
};
|
|
1378
1581
|
BqTag = __decorate([
|
|
1379
1582
|
ProxyCmp({
|
|
@@ -1383,7 +1586,7 @@ BqTag = __decorate([
|
|
|
1383
1586
|
}),
|
|
1384
1587
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1385
1588
|
], BqTag);
|
|
1386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTag, decorators: [{
|
|
1387
1590
|
type: Component,
|
|
1388
1591
|
args: [{
|
|
1389
1592
|
selector: 'bq-tag',
|
|
@@ -1391,18 +1594,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1391
1594
|
template: '<ng-content></ng-content>',
|
|
1392
1595
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1393
1596
|
inputs: ['border', 'clickable', 'color', 'disabled', 'hidden', 'removable', 'selected', 'size', 'variant'],
|
|
1394
|
-
|
|
1597
|
+
outputs: ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus'],
|
|
1395
1598
|
}]
|
|
1396
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1599
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClose: [{
|
|
1600
|
+
type: Output
|
|
1601
|
+
}], bqOpen: [{
|
|
1602
|
+
type: Output
|
|
1603
|
+
}], bqBlur: [{
|
|
1604
|
+
type: Output
|
|
1605
|
+
}], bqClick: [{
|
|
1606
|
+
type: Output
|
|
1607
|
+
}], bqFocus: [{
|
|
1608
|
+
type: Output
|
|
1609
|
+
}] } });
|
|
1397
1610
|
let BqTextarea = class BqTextarea {
|
|
1398
1611
|
constructor(c, r, z) {
|
|
1399
1612
|
this.z = z;
|
|
1613
|
+
this.bqBlur = new EventEmitter();
|
|
1614
|
+
this.bqChange = new EventEmitter();
|
|
1615
|
+
this.bqClear = new EventEmitter();
|
|
1616
|
+
this.bqFocus = new EventEmitter();
|
|
1617
|
+
this.bqInput = new EventEmitter();
|
|
1400
1618
|
c.detach();
|
|
1401
1619
|
this.el = r.nativeElement;
|
|
1402
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1403
1620
|
}
|
|
1404
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1405
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1621
|
+
/** @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 }); }
|
|
1622
|
+
/** @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
1623
|
};
|
|
1407
1624
|
BqTextarea = __decorate([
|
|
1408
1625
|
ProxyCmp({
|
|
@@ -1411,26 +1628,37 @@ BqTextarea = __decorate([
|
|
|
1411
1628
|
}),
|
|
1412
1629
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1413
1630
|
], BqTextarea);
|
|
1414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1631
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1415
1632
|
type: Component,
|
|
1416
1633
|
args: [{
|
|
1417
1634
|
selector: 'bq-textarea',
|
|
1418
1635
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1419
1636
|
template: '<ng-content></ng-content>',
|
|
1420
1637
|
// 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
|
-
|
|
1638
|
+
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'],
|
|
1639
|
+
outputs: ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput'],
|
|
1423
1640
|
}]
|
|
1424
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1641
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
1642
|
+
type: Output
|
|
1643
|
+
}], bqChange: [{
|
|
1644
|
+
type: Output
|
|
1645
|
+
}], bqClear: [{
|
|
1646
|
+
type: Output
|
|
1647
|
+
}], bqFocus: [{
|
|
1648
|
+
type: Output
|
|
1649
|
+
}], bqInput: [{
|
|
1650
|
+
type: Output
|
|
1651
|
+
}] } });
|
|
1425
1652
|
let BqToast = class BqToast {
|
|
1426
1653
|
constructor(c, r, z) {
|
|
1427
1654
|
this.z = z;
|
|
1655
|
+
this.bqHide = new EventEmitter();
|
|
1656
|
+
this.bqShow = new EventEmitter();
|
|
1428
1657
|
c.detach();
|
|
1429
1658
|
this.el = r.nativeElement;
|
|
1430
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1431
1659
|
}
|
|
1432
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1433
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1660
|
+
/** @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 }); }
|
|
1661
|
+
/** @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
1662
|
};
|
|
1435
1663
|
BqToast = __decorate([
|
|
1436
1664
|
ProxyCmp({
|
|
@@ -1440,7 +1668,7 @@ BqToast = __decorate([
|
|
|
1440
1668
|
}),
|
|
1441
1669
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1442
1670
|
], BqToast);
|
|
1443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqToast, decorators: [{
|
|
1444
1672
|
type: Component,
|
|
1445
1673
|
args: [{
|
|
1446
1674
|
selector: 'bq-toast',
|
|
@@ -1448,18 +1676,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1448
1676
|
template: '<ng-content></ng-content>',
|
|
1449
1677
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1450
1678
|
inputs: ['border', 'hideIcon', 'open', 'placement', 'time', 'type'],
|
|
1451
|
-
|
|
1679
|
+
outputs: ['bqHide', 'bqShow'],
|
|
1452
1680
|
}]
|
|
1453
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1681
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqHide: [{
|
|
1682
|
+
type: Output
|
|
1683
|
+
}], bqShow: [{
|
|
1684
|
+
type: Output
|
|
1685
|
+
}] } });
|
|
1454
1686
|
let BqTooltip = class BqTooltip {
|
|
1455
1687
|
constructor(c, r, z) {
|
|
1456
1688
|
this.z = z;
|
|
1689
|
+
this.bqClick = new EventEmitter();
|
|
1690
|
+
this.bqFocusIn = new EventEmitter();
|
|
1691
|
+
this.bqFocusOut = new EventEmitter();
|
|
1692
|
+
this.bqHoverIn = new EventEmitter();
|
|
1693
|
+
this.bqHoverOut = new EventEmitter();
|
|
1457
1694
|
c.detach();
|
|
1458
1695
|
this.el = r.nativeElement;
|
|
1459
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocusIn', 'bqFocusOut', 'bqHoverIn', 'bqHoverOut']);
|
|
1460
1696
|
}
|
|
1461
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1462
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1697
|
+
/** @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 }); }
|
|
1698
|
+
/** @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
1699
|
};
|
|
1464
1700
|
BqTooltip = __decorate([
|
|
1465
1701
|
ProxyCmp({
|
|
@@ -1469,7 +1705,7 @@ BqTooltip = __decorate([
|
|
|
1469
1705
|
}),
|
|
1470
1706
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1471
1707
|
], BqTooltip);
|
|
1472
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1708
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1473
1709
|
type: Component,
|
|
1474
1710
|
args: [{
|
|
1475
1711
|
selector: 'bq-tooltip',
|
|
@@ -1477,9 +1713,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1477
1713
|
template: '<ng-content></ng-content>',
|
|
1478
1714
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1479
1715
|
inputs: ['alwaysVisible', 'displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
1480
|
-
|
|
1716
|
+
outputs: ['bqClick', 'bqFocusIn', 'bqFocusOut', 'bqHoverIn', 'bqHoverOut'],
|
|
1481
1717
|
}]
|
|
1482
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1718
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
1719
|
+
type: Output
|
|
1720
|
+
}], bqFocusIn: [{
|
|
1721
|
+
type: Output
|
|
1722
|
+
}], bqFocusOut: [{
|
|
1723
|
+
type: Output
|
|
1724
|
+
}], bqHoverIn: [{
|
|
1725
|
+
type: Output
|
|
1726
|
+
}], bqHoverOut: [{
|
|
1727
|
+
type: Output
|
|
1728
|
+
}] } });
|
|
1483
1729
|
|
|
1484
1730
|
// @ts-nocheck
|
|
1485
1731
|
/**
|