@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, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
2
|
+
import { HostListener, Directive, EventEmitter, ChangeDetectorRef, ElementRef, NgZone, Output, ChangeDetectionStrategy, Component, APP_INITIALIZER, NgModule } 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';
|
|
@@ -33,10 +33,10 @@ class ValueAccessor {
|
|
|
33
33
|
setDisabledState(isDisabled) {
|
|
34
34
|
this.el.nativeElement.disabled = isDisabled;
|
|
35
35
|
}
|
|
36
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
37
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
36
|
+
/** @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 }); }
|
|
37
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: ValueAccessor, isStandalone: true, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
38
38
|
}
|
|
39
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
40
40
|
type: Directive,
|
|
41
41
|
args: [{}]
|
|
42
42
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
@@ -51,8 +51,8 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
51
51
|
writeValue(value) {
|
|
52
52
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
53
53
|
}
|
|
54
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
55
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
54
|
+
/** @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 }); }
|
|
55
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: BooleanValueAccessor, isStandalone: false, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"checked\"])" } }, providers: [
|
|
56
56
|
{
|
|
57
57
|
provide: NG_VALUE_ACCESSOR,
|
|
58
58
|
useExisting: BooleanValueAccessor,
|
|
@@ -60,13 +60,13 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
60
60
|
}
|
|
61
61
|
], usesInheritance: true, ngImport: i0 }); }
|
|
62
62
|
}
|
|
63
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
63
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
64
64
|
type: Directive,
|
|
65
65
|
args: [{
|
|
66
66
|
/* tslint:disable-next-line:directive-selector */
|
|
67
67
|
selector: 'bq-checkbox, bq-switch',
|
|
68
68
|
host: {
|
|
69
|
-
'(bqChange)': 'handleChangeEvent($event.target
|
|
69
|
+
'(bqChange)': 'handleChangeEvent($event.target?.["checked"])'
|
|
70
70
|
},
|
|
71
71
|
providers: [
|
|
72
72
|
{
|
|
@@ -74,7 +74,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
74
74
|
useExisting: BooleanValueAccessor,
|
|
75
75
|
multi: true
|
|
76
76
|
}
|
|
77
|
-
]
|
|
77
|
+
],
|
|
78
|
+
standalone: false
|
|
78
79
|
}]
|
|
79
80
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
80
81
|
|
|
@@ -87,8 +88,8 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
87
88
|
fn(value === '' ? null : parseFloat(value));
|
|
88
89
|
});
|
|
89
90
|
}
|
|
90
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
91
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
91
|
+
/** @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 }); }
|
|
92
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: NumericValueAccessor, isStandalone: false, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
92
93
|
{
|
|
93
94
|
provide: NG_VALUE_ACCESSOR,
|
|
94
95
|
useExisting: NumericValueAccessor,
|
|
@@ -96,13 +97,13 @@ class NumericValueAccessor extends ValueAccessor {
|
|
|
96
97
|
}
|
|
97
98
|
], usesInheritance: true, ngImport: i0 }); }
|
|
98
99
|
}
|
|
99
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
100
101
|
type: Directive,
|
|
101
102
|
args: [{
|
|
102
103
|
/* tslint:disable-next-line:directive-selector */
|
|
103
104
|
selector: 'bq-input[type="number"], bq-slider:not[type="range"]',
|
|
104
105
|
host: {
|
|
105
|
-
'(bqChange)': 'handleChangeEvent($event.target
|
|
106
|
+
'(bqChange)': 'handleChangeEvent($event.target?.["value"])'
|
|
106
107
|
},
|
|
107
108
|
providers: [
|
|
108
109
|
{
|
|
@@ -110,7 +111,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
110
111
|
useExisting: NumericValueAccessor,
|
|
111
112
|
multi: true
|
|
112
113
|
}
|
|
113
|
-
]
|
|
114
|
+
],
|
|
115
|
+
standalone: false
|
|
114
116
|
}]
|
|
115
117
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
116
118
|
|
|
@@ -118,8 +120,8 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
118
120
|
constructor(el) {
|
|
119
121
|
super(el);
|
|
120
122
|
}
|
|
121
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
122
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
123
|
+
/** @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 }); }
|
|
124
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: RadioValueAccessor, isStandalone: false, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
123
125
|
{
|
|
124
126
|
provide: NG_VALUE_ACCESSOR,
|
|
125
127
|
useExisting: RadioValueAccessor,
|
|
@@ -127,13 +129,13 @@ class RadioValueAccessor extends ValueAccessor {
|
|
|
127
129
|
}
|
|
128
130
|
], usesInheritance: true, ngImport: i0 }); }
|
|
129
131
|
}
|
|
130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
131
133
|
type: Directive,
|
|
132
134
|
args: [{
|
|
133
135
|
/* tslint:disable-next-line:directive-selector */
|
|
134
136
|
selector: 'bq-radio-group',
|
|
135
137
|
host: {
|
|
136
|
-
'(bqChange)': 'handleChangeEvent($event.target
|
|
138
|
+
'(bqChange)': 'handleChangeEvent($event.target?.["value"])'
|
|
137
139
|
},
|
|
138
140
|
providers: [
|
|
139
141
|
{
|
|
@@ -141,7 +143,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
141
143
|
useExisting: RadioValueAccessor,
|
|
142
144
|
multi: true
|
|
143
145
|
}
|
|
144
|
-
]
|
|
146
|
+
],
|
|
147
|
+
standalone: false
|
|
145
148
|
}]
|
|
146
149
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
147
150
|
|
|
@@ -149,8 +152,8 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
149
152
|
constructor(el) {
|
|
150
153
|
super(el);
|
|
151
154
|
}
|
|
152
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
153
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
155
|
+
/** @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 }); }
|
|
156
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: SelectValueAccessor, isStandalone: false, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
154
157
|
{
|
|
155
158
|
provide: NG_VALUE_ACCESSOR,
|
|
156
159
|
useExisting: SelectValueAccessor,
|
|
@@ -158,13 +161,13 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
158
161
|
}
|
|
159
162
|
], usesInheritance: true, ngImport: i0 }); }
|
|
160
163
|
}
|
|
161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
162
165
|
type: Directive,
|
|
163
166
|
args: [{
|
|
164
167
|
/* tslint:disable-next-line:directive-selector */
|
|
165
168
|
selector: 'bq-select',
|
|
166
169
|
host: {
|
|
167
|
-
'(bqChange)': 'handleChangeEvent($event.target
|
|
170
|
+
'(bqChange)': 'handleChangeEvent($event.target?.["value"])'
|
|
168
171
|
},
|
|
169
172
|
providers: [
|
|
170
173
|
{
|
|
@@ -172,7 +175,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
172
175
|
useExisting: SelectValueAccessor,
|
|
173
176
|
multi: true
|
|
174
177
|
}
|
|
175
|
-
]
|
|
178
|
+
],
|
|
179
|
+
standalone: false
|
|
176
180
|
}]
|
|
177
181
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
178
182
|
|
|
@@ -180,8 +184,8 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
180
184
|
constructor(el) {
|
|
181
185
|
super(el);
|
|
182
186
|
}
|
|
183
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
184
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
187
|
+
/** @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 }); }
|
|
188
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.7", type: TextValueAccessor, isStandalone: false, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\"], bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target?.[\"value\"])" } }, providers: [
|
|
185
189
|
{
|
|
186
190
|
provide: NG_VALUE_ACCESSOR,
|
|
187
191
|
useExisting: TextValueAccessor,
|
|
@@ -189,13 +193,13 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
189
193
|
}
|
|
190
194
|
], usesInheritance: true, ngImport: i0 }); }
|
|
191
195
|
}
|
|
192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
196
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
193
197
|
type: Directive,
|
|
194
198
|
args: [{
|
|
195
199
|
/* tslint:disable-next-line:directive-selector */
|
|
196
200
|
selector: 'bq-date-picker, bq-input:not[type="number"], bq-slider[type="range"], bq-textarea',
|
|
197
201
|
host: {
|
|
198
|
-
'(bqChange)': 'handleChangeEvent($event.target
|
|
202
|
+
'(bqChange)': 'handleChangeEvent($event.target?.["value"])'
|
|
199
203
|
},
|
|
200
204
|
providers: [
|
|
201
205
|
{
|
|
@@ -203,7 +207,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
203
207
|
useExisting: TextValueAccessor,
|
|
204
208
|
multi: true
|
|
205
209
|
}
|
|
206
|
-
]
|
|
210
|
+
],
|
|
211
|
+
standalone: false
|
|
207
212
|
}]
|
|
208
213
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
209
214
|
|
|
@@ -299,12 +304,18 @@ If true, the Accordion animation, will be disabled. No animation will be applied
|
|
|
299
304
|
;
|
|
300
305
|
constructor(c, r, z) {
|
|
301
306
|
this.z = z;
|
|
307
|
+
this.bqBlur = new EventEmitter();
|
|
308
|
+
this.bqFocus = new EventEmitter();
|
|
309
|
+
this.bqOpen = new EventEmitter();
|
|
310
|
+
this.bqAfterOpen = new EventEmitter();
|
|
311
|
+
this.bqClose = new EventEmitter();
|
|
312
|
+
this.bqAfterClose = new EventEmitter();
|
|
313
|
+
this.bqClick = new EventEmitter();
|
|
302
314
|
c.detach();
|
|
303
315
|
this.el = r.nativeElement;
|
|
304
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose', 'bqClick']);
|
|
305
316
|
}
|
|
306
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
307
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
317
|
+
/** @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 }); }
|
|
318
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqAccordion, isStandalone: false, 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 }); }
|
|
308
319
|
};
|
|
309
320
|
BqAccordion = __decorate([
|
|
310
321
|
ProxyCmp({
|
|
@@ -312,7 +323,7 @@ BqAccordion = __decorate([
|
|
|
312
323
|
}),
|
|
313
324
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
314
325
|
], BqAccordion);
|
|
315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
326
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAccordion, decorators: [{
|
|
316
327
|
type: Component,
|
|
317
328
|
args: [{
|
|
318
329
|
selector: 'bq-accordion',
|
|
@@ -320,8 +331,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
320
331
|
template: '<ng-content></ng-content>',
|
|
321
332
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
322
333
|
inputs: ['appearance', 'disabled', 'expanded', 'noAnimation', 'rotate', 'size'],
|
|
334
|
+
outputs: ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose', 'bqClick'],
|
|
335
|
+
standalone: false
|
|
323
336
|
}]
|
|
324
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
337
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
338
|
+
type: Output
|
|
339
|
+
}], bqFocus: [{
|
|
340
|
+
type: Output
|
|
341
|
+
}], bqOpen: [{
|
|
342
|
+
type: Output
|
|
343
|
+
}], bqAfterOpen: [{
|
|
344
|
+
type: Output
|
|
345
|
+
}], bqClose: [{
|
|
346
|
+
type: Output
|
|
347
|
+
}], bqAfterClose: [{
|
|
348
|
+
type: Output
|
|
349
|
+
}], bqClick: [{
|
|
350
|
+
type: Output
|
|
351
|
+
}] } });
|
|
325
352
|
let BqAccordionGroup = class BqAccordionGroup {
|
|
326
353
|
/**
|
|
327
354
|
* The appearance style of accordion to be applied to all accordions @default 'filled'
|
|
@@ -354,8 +381,8 @@ If true, the accordion animation, will be disabled. No animation will be applied
|
|
|
354
381
|
c.detach();
|
|
355
382
|
this.el = r.nativeElement;
|
|
356
383
|
}
|
|
357
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
358
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
384
|
+
/** @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 }); }
|
|
385
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqAccordionGroup, isStandalone: false, 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 }); }
|
|
359
386
|
};
|
|
360
387
|
BqAccordionGroup = __decorate([
|
|
361
388
|
ProxyCmp({
|
|
@@ -363,7 +390,7 @@ BqAccordionGroup = __decorate([
|
|
|
363
390
|
}),
|
|
364
391
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
365
392
|
], BqAccordionGroup);
|
|
366
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
367
394
|
type: Component,
|
|
368
395
|
args: [{
|
|
369
396
|
selector: 'bq-accordion-group',
|
|
@@ -371,6 +398,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
371
398
|
template: '<ng-content></ng-content>',
|
|
372
399
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
373
400
|
inputs: ['appearance', 'expandAll', 'multiple', 'noAnimation', 'size'],
|
|
401
|
+
standalone: false
|
|
374
402
|
}]
|
|
375
403
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
376
404
|
let BqAlert = class BqAlert {
|
|
@@ -416,12 +444,15 @@ let BqAlert = class BqAlert {
|
|
|
416
444
|
;
|
|
417
445
|
constructor(c, r, z) {
|
|
418
446
|
this.z = z;
|
|
447
|
+
this.bqHide = new EventEmitter();
|
|
448
|
+
this.bqShow = new EventEmitter();
|
|
449
|
+
this.bqAfterShow = new EventEmitter();
|
|
450
|
+
this.bqAfterHide = new EventEmitter();
|
|
419
451
|
c.detach();
|
|
420
452
|
this.el = r.nativeElement;
|
|
421
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide']);
|
|
422
453
|
}
|
|
423
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
424
|
-
/** @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: BqAlert, 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: BqAlert, isStandalone: false, 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 }); }
|
|
425
456
|
};
|
|
426
457
|
BqAlert = __decorate([
|
|
427
458
|
ProxyCmp({
|
|
@@ -430,7 +461,7 @@ BqAlert = __decorate([
|
|
|
430
461
|
}),
|
|
431
462
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
432
463
|
], BqAlert);
|
|
433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAlert, decorators: [{
|
|
434
465
|
type: Component,
|
|
435
466
|
args: [{
|
|
436
467
|
selector: 'bq-alert',
|
|
@@ -438,8 +469,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
438
469
|
template: '<ng-content></ng-content>',
|
|
439
470
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
440
471
|
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'sticky', 'time', 'type'],
|
|
472
|
+
outputs: ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide'],
|
|
473
|
+
standalone: false
|
|
441
474
|
}]
|
|
442
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
475
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqHide: [{
|
|
476
|
+
type: Output
|
|
477
|
+
}], bqShow: [{
|
|
478
|
+
type: Output
|
|
479
|
+
}], bqAfterShow: [{
|
|
480
|
+
type: Output
|
|
481
|
+
}], bqAfterHide: [{
|
|
482
|
+
type: Output
|
|
483
|
+
}] } });
|
|
443
484
|
let BqAvatar = class BqAvatar {
|
|
444
485
|
/**
|
|
445
486
|
* Alternate text for the avatar image if the image cannot be displayed
|
|
@@ -476,8 +517,8 @@ let BqAvatar = class BqAvatar {
|
|
|
476
517
|
c.detach();
|
|
477
518
|
this.el = r.nativeElement;
|
|
478
519
|
}
|
|
479
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
480
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
520
|
+
/** @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 }); }
|
|
521
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqAvatar, isStandalone: false, 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 }); }
|
|
481
522
|
};
|
|
482
523
|
BqAvatar = __decorate([
|
|
483
524
|
ProxyCmp({
|
|
@@ -485,7 +526,7 @@ BqAvatar = __decorate([
|
|
|
485
526
|
}),
|
|
486
527
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
487
528
|
], BqAvatar);
|
|
488
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
529
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqAvatar, decorators: [{
|
|
489
530
|
type: Component,
|
|
490
531
|
args: [{
|
|
491
532
|
selector: 'bq-avatar',
|
|
@@ -493,6 +534,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
493
534
|
template: '<ng-content></ng-content>',
|
|
494
535
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
495
536
|
inputs: ['altText', 'image', 'initials', 'label', 'shape', 'size'],
|
|
537
|
+
standalone: false
|
|
496
538
|
}]
|
|
497
539
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
498
540
|
let BqBadge = class BqBadge {
|
|
@@ -516,8 +558,8 @@ let BqBadge = class BqBadge {
|
|
|
516
558
|
c.detach();
|
|
517
559
|
this.el = r.nativeElement;
|
|
518
560
|
}
|
|
519
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
520
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
561
|
+
/** @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 }); }
|
|
562
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqBadge, isStandalone: false, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
521
563
|
};
|
|
522
564
|
BqBadge = __decorate([
|
|
523
565
|
ProxyCmp({
|
|
@@ -525,7 +567,7 @@ BqBadge = __decorate([
|
|
|
525
567
|
}),
|
|
526
568
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
527
569
|
], BqBadge);
|
|
528
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqBadge, decorators: [{
|
|
529
571
|
type: Component,
|
|
530
572
|
args: [{
|
|
531
573
|
selector: 'bq-badge',
|
|
@@ -533,6 +575,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
533
575
|
template: '<ng-content></ng-content>',
|
|
534
576
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
535
577
|
inputs: ['backgroundColor', 'size', 'textColor'],
|
|
578
|
+
standalone: false
|
|
536
579
|
}]
|
|
537
580
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
538
581
|
let BqBreadcrumb = class BqBreadcrumb {
|
|
@@ -546,8 +589,8 @@ let BqBreadcrumb = class BqBreadcrumb {
|
|
|
546
589
|
c.detach();
|
|
547
590
|
this.el = r.nativeElement;
|
|
548
591
|
}
|
|
549
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
550
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
592
|
+
/** @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 }); }
|
|
593
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqBreadcrumb, isStandalone: false, selector: "bq-breadcrumb", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
551
594
|
};
|
|
552
595
|
BqBreadcrumb = __decorate([
|
|
553
596
|
ProxyCmp({
|
|
@@ -555,7 +598,7 @@ BqBreadcrumb = __decorate([
|
|
|
555
598
|
}),
|
|
556
599
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
557
600
|
], BqBreadcrumb);
|
|
558
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
559
602
|
type: Component,
|
|
560
603
|
args: [{
|
|
561
604
|
selector: 'bq-breadcrumb',
|
|
@@ -563,6 +606,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
563
606
|
template: '<ng-content></ng-content>',
|
|
564
607
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
565
608
|
inputs: ['label'],
|
|
609
|
+
standalone: false
|
|
566
610
|
}]
|
|
567
611
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
568
612
|
let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
@@ -583,12 +627,14 @@ let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
|
583
627
|
;
|
|
584
628
|
constructor(c, r, z) {
|
|
585
629
|
this.z = z;
|
|
630
|
+
this.bqBlur = new EventEmitter();
|
|
631
|
+
this.bqFocus = new EventEmitter();
|
|
632
|
+
this.bqClick = new EventEmitter();
|
|
586
633
|
c.detach();
|
|
587
634
|
this.el = r.nativeElement;
|
|
588
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
589
635
|
}
|
|
590
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
591
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
636
|
+
/** @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 }); }
|
|
637
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqBreadcrumbItem, isStandalone: false, 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 }); }
|
|
592
638
|
};
|
|
593
639
|
BqBreadcrumbItem = __decorate([
|
|
594
640
|
ProxyCmp({
|
|
@@ -596,7 +642,7 @@ BqBreadcrumbItem = __decorate([
|
|
|
596
642
|
}),
|
|
597
643
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
598
644
|
], BqBreadcrumbItem);
|
|
599
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
600
646
|
type: Component,
|
|
601
647
|
args: [{
|
|
602
648
|
selector: 'bq-breadcrumb-item',
|
|
@@ -604,8 +650,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
604
650
|
template: '<ng-content></ng-content>',
|
|
605
651
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
606
652
|
inputs: ['href', 'rel', 'target'],
|
|
653
|
+
outputs: ['bqBlur', 'bqFocus', 'bqClick'],
|
|
654
|
+
standalone: false
|
|
607
655
|
}]
|
|
608
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
656
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
657
|
+
type: Output
|
|
658
|
+
}], bqFocus: [{
|
|
659
|
+
type: Output
|
|
660
|
+
}], bqClick: [{
|
|
661
|
+
type: Output
|
|
662
|
+
}] } });
|
|
609
663
|
let BqButton = class BqButton {
|
|
610
664
|
/**
|
|
611
665
|
* The appearance style to apply to the button @default 'primary'
|
|
@@ -671,12 +725,14 @@ Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target
|
|
|
671
725
|
;
|
|
672
726
|
constructor(c, r, z) {
|
|
673
727
|
this.z = z;
|
|
728
|
+
this.bqBlur = new EventEmitter();
|
|
729
|
+
this.bqFocus = new EventEmitter();
|
|
730
|
+
this.bqClick = new EventEmitter();
|
|
674
731
|
c.detach();
|
|
675
732
|
this.el = r.nativeElement;
|
|
676
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
677
733
|
}
|
|
678
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
679
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
734
|
+
/** @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 }); }
|
|
735
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqButton, isStandalone: false, 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 }); }
|
|
680
736
|
};
|
|
681
737
|
BqButton = __decorate([
|
|
682
738
|
ProxyCmp({
|
|
@@ -684,7 +740,7 @@ BqButton = __decorate([
|
|
|
684
740
|
}),
|
|
685
741
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
686
742
|
], BqButton);
|
|
687
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqButton, decorators: [{
|
|
688
744
|
type: Component,
|
|
689
745
|
args: [{
|
|
690
746
|
selector: 'bq-button',
|
|
@@ -692,8 +748,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
692
748
|
template: '<ng-content></ng-content>',
|
|
693
749
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
694
750
|
inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'loading', 'size', 'target', 'type', 'variant'],
|
|
751
|
+
outputs: ['bqBlur', 'bqFocus', 'bqClick'],
|
|
752
|
+
standalone: false
|
|
695
753
|
}]
|
|
696
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
754
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
755
|
+
type: Output
|
|
756
|
+
}], bqFocus: [{
|
|
757
|
+
type: Output
|
|
758
|
+
}], bqClick: [{
|
|
759
|
+
type: Output
|
|
760
|
+
}] } });
|
|
697
761
|
let BqCard = class BqCard {
|
|
698
762
|
/**
|
|
699
763
|
* Type of card component @default 'default'
|
|
@@ -710,8 +774,8 @@ let BqCard = class BqCard {
|
|
|
710
774
|
c.detach();
|
|
711
775
|
this.el = r.nativeElement;
|
|
712
776
|
}
|
|
713
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
714
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
777
|
+
/** @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 }); }
|
|
778
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqCard, isStandalone: false, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
715
779
|
};
|
|
716
780
|
BqCard = __decorate([
|
|
717
781
|
ProxyCmp({
|
|
@@ -719,7 +783,7 @@ BqCard = __decorate([
|
|
|
719
783
|
}),
|
|
720
784
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
721
785
|
], BqCard);
|
|
722
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
786
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqCard, decorators: [{
|
|
723
787
|
type: Component,
|
|
724
788
|
args: [{
|
|
725
789
|
selector: 'bq-card',
|
|
@@ -727,6 +791,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
727
791
|
template: '<ng-content></ng-content>',
|
|
728
792
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
729
793
|
inputs: ['border', 'type'],
|
|
794
|
+
standalone: false
|
|
730
795
|
}]
|
|
731
796
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
732
797
|
let BqCheckbox = class BqCheckbox {
|
|
@@ -777,12 +842,14 @@ let BqCheckbox = class BqCheckbox {
|
|
|
777
842
|
;
|
|
778
843
|
constructor(c, r, z) {
|
|
779
844
|
this.z = z;
|
|
845
|
+
this.bqChange = new EventEmitter();
|
|
846
|
+
this.bqFocus = new EventEmitter();
|
|
847
|
+
this.bqBlur = new EventEmitter();
|
|
780
848
|
c.detach();
|
|
781
849
|
this.el = r.nativeElement;
|
|
782
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
783
850
|
}
|
|
784
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
785
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
851
|
+
/** @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 }); }
|
|
852
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqCheckbox, isStandalone: false, 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 }); }
|
|
786
853
|
};
|
|
787
854
|
BqCheckbox = __decorate([
|
|
788
855
|
ProxyCmp({
|
|
@@ -791,16 +858,24 @@ BqCheckbox = __decorate([
|
|
|
791
858
|
}),
|
|
792
859
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
793
860
|
], BqCheckbox);
|
|
794
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
861
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
795
862
|
type: Component,
|
|
796
863
|
args: [{
|
|
797
864
|
selector: 'bq-checkbox',
|
|
798
865
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
799
866
|
template: '<ng-content></ng-content>',
|
|
800
867
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
801
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'formValidationMessage', 'indeterminate', 'name', 'required', 'value'],
|
|
868
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'formValidationMessage', 'indeterminate', { name: 'name', required: true }, 'required', { name: 'value', required: true }],
|
|
869
|
+
outputs: ['bqChange', 'bqFocus', 'bqBlur'],
|
|
870
|
+
standalone: false
|
|
802
871
|
}]
|
|
803
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
872
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
873
|
+
type: Output
|
|
874
|
+
}], bqFocus: [{
|
|
875
|
+
type: Output
|
|
876
|
+
}], bqBlur: [{
|
|
877
|
+
type: Output
|
|
878
|
+
}] } });
|
|
804
879
|
let BqDatePicker = class BqDatePicker {
|
|
805
880
|
/**
|
|
806
881
|
* If `true`, the Date picker input will be focused on component render
|
|
@@ -958,12 +1033,15 @@ All dates are expected in ISO-8601 format (YYYY-MM-DD).
|
|
|
958
1033
|
;
|
|
959
1034
|
constructor(c, r, z) {
|
|
960
1035
|
this.z = z;
|
|
1036
|
+
this.bqBlur = new EventEmitter();
|
|
1037
|
+
this.bqChange = new EventEmitter();
|
|
1038
|
+
this.bqClear = new EventEmitter();
|
|
1039
|
+
this.bqFocus = new EventEmitter();
|
|
961
1040
|
c.detach();
|
|
962
1041
|
this.el = r.nativeElement;
|
|
963
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus']);
|
|
964
1042
|
}
|
|
965
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
966
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1043
|
+
/** @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 }); }
|
|
1044
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqDatePicker, isStandalone: false, 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 }); }
|
|
967
1045
|
};
|
|
968
1046
|
BqDatePicker = __decorate([
|
|
969
1047
|
ProxyCmp({
|
|
@@ -972,16 +1050,26 @@ BqDatePicker = __decorate([
|
|
|
972
1050
|
}),
|
|
973
1051
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
974
1052
|
], BqDatePicker);
|
|
975
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
976
1054
|
type: Component,
|
|
977
1055
|
args: [{
|
|
978
1056
|
selector: 'bq-date-picker',
|
|
979
1057
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
980
1058
|
template: '<ng-content></ng-content>',
|
|
981
1059
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
982
|
-
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'],
|
|
1060
|
+
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'],
|
|
1061
|
+
outputs: ['bqBlur', 'bqChange', 'bqClear', 'bqFocus'],
|
|
1062
|
+
standalone: false
|
|
983
1063
|
}]
|
|
984
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1064
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
1065
|
+
type: Output
|
|
1066
|
+
}], bqChange: [{
|
|
1067
|
+
type: Output
|
|
1068
|
+
}], bqClear: [{
|
|
1069
|
+
type: Output
|
|
1070
|
+
}], bqFocus: [{
|
|
1071
|
+
type: Output
|
|
1072
|
+
}] } });
|
|
985
1073
|
let BqDialog = class BqDialog {
|
|
986
1074
|
/**
|
|
987
1075
|
* Border radius of the dialog component @default 'm'
|
|
@@ -1025,12 +1113,16 @@ let BqDialog = class BqDialog {
|
|
|
1025
1113
|
;
|
|
1026
1114
|
constructor(c, r, z) {
|
|
1027
1115
|
this.z = z;
|
|
1116
|
+
this.bqCancel = new EventEmitter();
|
|
1117
|
+
this.bqClose = new EventEmitter();
|
|
1118
|
+
this.bqOpen = new EventEmitter();
|
|
1119
|
+
this.bqAfterOpen = new EventEmitter();
|
|
1120
|
+
this.bqAfterClose = new EventEmitter();
|
|
1028
1121
|
c.detach();
|
|
1029
1122
|
this.el = r.nativeElement;
|
|
1030
|
-
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
1031
1123
|
}
|
|
1032
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1033
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1124
|
+
/** @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 }); }
|
|
1125
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqDialog, isStandalone: false, 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 }); }
|
|
1034
1126
|
};
|
|
1035
1127
|
BqDialog = __decorate([
|
|
1036
1128
|
ProxyCmp({
|
|
@@ -1039,7 +1131,7 @@ BqDialog = __decorate([
|
|
|
1039
1131
|
}),
|
|
1040
1132
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1041
1133
|
], BqDialog);
|
|
1042
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDialog, decorators: [{
|
|
1043
1135
|
type: Component,
|
|
1044
1136
|
args: [{
|
|
1045
1137
|
selector: 'bq-dialog',
|
|
@@ -1047,8 +1139,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1047
1139
|
template: '<ng-content></ng-content>',
|
|
1048
1140
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1049
1141
|
inputs: ['border', 'disableBackdrop', 'disableCloseClickOutside', 'disableCloseEscKeydown', 'footerAppearance', 'hideCloseButton', 'open', 'size'],
|
|
1142
|
+
outputs: ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose'],
|
|
1143
|
+
standalone: false
|
|
1050
1144
|
}]
|
|
1051
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1145
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqCancel: [{
|
|
1146
|
+
type: Output
|
|
1147
|
+
}], bqClose: [{
|
|
1148
|
+
type: Output
|
|
1149
|
+
}], bqOpen: [{
|
|
1150
|
+
type: Output
|
|
1151
|
+
}], bqAfterOpen: [{
|
|
1152
|
+
type: Output
|
|
1153
|
+
}], bqAfterClose: [{
|
|
1154
|
+
type: Output
|
|
1155
|
+
}] } });
|
|
1052
1156
|
let BqDivider = class BqDivider {
|
|
1053
1157
|
/**
|
|
1054
1158
|
* If true, the divider has a dashed pattern @default false
|
|
@@ -1100,8 +1204,8 @@ let BqDivider = class BqDivider {
|
|
|
1100
1204
|
c.detach();
|
|
1101
1205
|
this.el = r.nativeElement;
|
|
1102
1206
|
}
|
|
1103
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1104
|
-
/** @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: BqDivider, 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: BqDivider, isStandalone: false, 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 }); }
|
|
1105
1209
|
};
|
|
1106
1210
|
BqDivider = __decorate([
|
|
1107
1211
|
ProxyCmp({
|
|
@@ -1109,7 +1213,7 @@ BqDivider = __decorate([
|
|
|
1109
1213
|
}),
|
|
1110
1214
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1111
1215
|
], BqDivider);
|
|
1112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1216
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDivider, decorators: [{
|
|
1113
1217
|
type: Component,
|
|
1114
1218
|
args: [{
|
|
1115
1219
|
selector: 'bq-divider',
|
|
@@ -1117,6 +1221,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1117
1221
|
template: '<ng-content></ng-content>',
|
|
1118
1222
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1119
1223
|
inputs: ['dashed', 'orientation', 'strokeBasis', 'strokeColor', 'strokeDashGap', 'strokeDashWidth', 'strokeLinecap', 'strokeThickness', 'titleAlignment'],
|
|
1224
|
+
standalone: false
|
|
1120
1225
|
}]
|
|
1121
1226
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1122
1227
|
let BqDrawer = class BqDrawer {
|
|
@@ -1152,12 +1257,15 @@ let BqDrawer = class BqDrawer {
|
|
|
1152
1257
|
;
|
|
1153
1258
|
constructor(c, r, z) {
|
|
1154
1259
|
this.z = z;
|
|
1260
|
+
this.bqClose = new EventEmitter();
|
|
1261
|
+
this.bqOpen = new EventEmitter();
|
|
1262
|
+
this.bqAfterOpen = new EventEmitter();
|
|
1263
|
+
this.bqAfterClose = new EventEmitter();
|
|
1155
1264
|
c.detach();
|
|
1156
1265
|
this.el = r.nativeElement;
|
|
1157
|
-
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
1158
1266
|
}
|
|
1159
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1160
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1267
|
+
/** @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 }); }
|
|
1268
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqDrawer, isStandalone: false, 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 }); }
|
|
1161
1269
|
};
|
|
1162
1270
|
BqDrawer = __decorate([
|
|
1163
1271
|
ProxyCmp({
|
|
@@ -1166,7 +1274,7 @@ BqDrawer = __decorate([
|
|
|
1166
1274
|
}),
|
|
1167
1275
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1168
1276
|
], BqDrawer);
|
|
1169
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1277
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDrawer, decorators: [{
|
|
1170
1278
|
type: Component,
|
|
1171
1279
|
args: [{
|
|
1172
1280
|
selector: 'bq-drawer',
|
|
@@ -1174,8 +1282,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1174
1282
|
template: '<ng-content></ng-content>',
|
|
1175
1283
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1176
1284
|
inputs: ['closeOnClickOutside', 'closeOnEsc', 'enableBackdrop', 'open', 'placement', 'position'],
|
|
1285
|
+
outputs: ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose'],
|
|
1286
|
+
standalone: false
|
|
1177
1287
|
}]
|
|
1178
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1288
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClose: [{
|
|
1289
|
+
type: Output
|
|
1290
|
+
}], bqOpen: [{
|
|
1291
|
+
type: Output
|
|
1292
|
+
}], bqAfterOpen: [{
|
|
1293
|
+
type: Output
|
|
1294
|
+
}], bqAfterClose: [{
|
|
1295
|
+
type: Output
|
|
1296
|
+
}] } });
|
|
1179
1297
|
let BqDropdown = class BqDropdown {
|
|
1180
1298
|
/**
|
|
1181
1299
|
* If true, the dropdown panel will not lock the page body scroll when open. @default false
|
|
@@ -1229,12 +1347,12 @@ let BqDropdown = class BqDropdown {
|
|
|
1229
1347
|
;
|
|
1230
1348
|
constructor(c, r, z) {
|
|
1231
1349
|
this.z = z;
|
|
1350
|
+
this.bqOpen = new EventEmitter();
|
|
1232
1351
|
c.detach();
|
|
1233
1352
|
this.el = r.nativeElement;
|
|
1234
|
-
proxyOutputs(this, this.el, ['bqOpen']);
|
|
1235
1353
|
}
|
|
1236
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1237
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1354
|
+
/** @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 }); }
|
|
1355
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqDropdown, isStandalone: false, 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 }); }
|
|
1238
1356
|
};
|
|
1239
1357
|
BqDropdown = __decorate([
|
|
1240
1358
|
ProxyCmp({
|
|
@@ -1242,7 +1360,7 @@ BqDropdown = __decorate([
|
|
|
1242
1360
|
}),
|
|
1243
1361
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1244
1362
|
], BqDropdown);
|
|
1245
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqDropdown, decorators: [{
|
|
1246
1364
|
type: Component,
|
|
1247
1365
|
args: [{
|
|
1248
1366
|
selector: 'bq-dropdown',
|
|
@@ -1250,8 +1368,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1250
1368
|
template: '<ng-content></ng-content>',
|
|
1251
1369
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1252
1370
|
inputs: ['disableScrollLock', 'disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
1371
|
+
outputs: ['bqOpen'],
|
|
1372
|
+
standalone: false
|
|
1253
1373
|
}]
|
|
1254
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1374
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqOpen: [{
|
|
1375
|
+
type: Output
|
|
1376
|
+
}] } });
|
|
1255
1377
|
let BqEmptyState = class BqEmptyState {
|
|
1256
1378
|
/**
|
|
1257
1379
|
* The size of the empty state component @default 'medium'
|
|
@@ -1263,8 +1385,8 @@ let BqEmptyState = class BqEmptyState {
|
|
|
1263
1385
|
c.detach();
|
|
1264
1386
|
this.el = r.nativeElement;
|
|
1265
1387
|
}
|
|
1266
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1267
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1388
|
+
/** @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 }); }
|
|
1389
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqEmptyState, isStandalone: false, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1268
1390
|
};
|
|
1269
1391
|
BqEmptyState = __decorate([
|
|
1270
1392
|
ProxyCmp({
|
|
@@ -1272,7 +1394,7 @@ BqEmptyState = __decorate([
|
|
|
1272
1394
|
}),
|
|
1273
1395
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1274
1396
|
], BqEmptyState);
|
|
1275
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1397
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
1276
1398
|
type: Component,
|
|
1277
1399
|
args: [{
|
|
1278
1400
|
selector: 'bq-empty-state',
|
|
@@ -1280,6 +1402,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1280
1402
|
template: '<ng-content></ng-content>',
|
|
1281
1403
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1282
1404
|
inputs: ['size'],
|
|
1405
|
+
standalone: false
|
|
1283
1406
|
}]
|
|
1284
1407
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1285
1408
|
let BqIcon = class BqIcon {
|
|
@@ -1315,12 +1438,12 @@ let BqIcon = class BqIcon {
|
|
|
1315
1438
|
;
|
|
1316
1439
|
constructor(c, r, z) {
|
|
1317
1440
|
this.z = z;
|
|
1441
|
+
this.svgLoaded = new EventEmitter();
|
|
1318
1442
|
c.detach();
|
|
1319
1443
|
this.el = r.nativeElement;
|
|
1320
|
-
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
1321
1444
|
}
|
|
1322
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1323
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1445
|
+
/** @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 }); }
|
|
1446
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqIcon, isStandalone: false, 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 }); }
|
|
1324
1447
|
};
|
|
1325
1448
|
BqIcon = __decorate([
|
|
1326
1449
|
ProxyCmp({
|
|
@@ -1328,7 +1451,7 @@ BqIcon = __decorate([
|
|
|
1328
1451
|
}),
|
|
1329
1452
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1330
1453
|
], BqIcon);
|
|
1331
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqIcon, decorators: [{
|
|
1332
1455
|
type: Component,
|
|
1333
1456
|
args: [{
|
|
1334
1457
|
selector: 'bq-icon',
|
|
@@ -1336,8 +1459,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1336
1459
|
template: '<ng-content></ng-content>',
|
|
1337
1460
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1338
1461
|
inputs: ['color', 'label', 'name', 'size', 'src', 'weight'],
|
|
1462
|
+
outputs: ['svgLoaded'],
|
|
1463
|
+
standalone: false
|
|
1339
1464
|
}]
|
|
1340
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1465
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { svgLoaded: [{
|
|
1466
|
+
type: Output
|
|
1467
|
+
}] } });
|
|
1341
1468
|
let BqInput = class BqInput {
|
|
1342
1469
|
/**
|
|
1343
1470
|
* Controls whether or not the input field should be capitalized and how.
|
|
@@ -1480,12 +1607,16 @@ See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
|
|
|
1480
1607
|
;
|
|
1481
1608
|
constructor(c, r, z) {
|
|
1482
1609
|
this.z = z;
|
|
1610
|
+
this.bqBlur = new EventEmitter();
|
|
1611
|
+
this.bqChange = new EventEmitter();
|
|
1612
|
+
this.bqClear = new EventEmitter();
|
|
1613
|
+
this.bqFocus = new EventEmitter();
|
|
1614
|
+
this.bqInput = new EventEmitter();
|
|
1483
1615
|
c.detach();
|
|
1484
1616
|
this.el = r.nativeElement;
|
|
1485
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1486
1617
|
}
|
|
1487
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1488
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1618
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1619
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqInput, isStandalone: false, 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 }); }
|
|
1489
1620
|
};
|
|
1490
1621
|
BqInput = __decorate([
|
|
1491
1622
|
ProxyCmp({
|
|
@@ -1493,16 +1624,28 @@ BqInput = __decorate([
|
|
|
1493
1624
|
}),
|
|
1494
1625
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1495
1626
|
], BqInput);
|
|
1496
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqInput, decorators: [{
|
|
1497
1628
|
type: Component,
|
|
1498
1629
|
args: [{
|
|
1499
1630
|
selector: 'bq-input',
|
|
1500
1631
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1501
1632
|
template: '<ng-content></ng-content>',
|
|
1502
1633
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1503
|
-
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'],
|
|
1634
|
+
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'],
|
|
1635
|
+
outputs: ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput'],
|
|
1636
|
+
standalone: false
|
|
1504
1637
|
}]
|
|
1505
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1638
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
1639
|
+
type: Output
|
|
1640
|
+
}], bqChange: [{
|
|
1641
|
+
type: Output
|
|
1642
|
+
}], bqClear: [{
|
|
1643
|
+
type: Output
|
|
1644
|
+
}], bqFocus: [{
|
|
1645
|
+
type: Output
|
|
1646
|
+
}], bqInput: [{
|
|
1647
|
+
type: Output
|
|
1648
|
+
}] } });
|
|
1506
1649
|
let BqNotification = class BqNotification {
|
|
1507
1650
|
/**
|
|
1508
1651
|
* If true, the notification will automatically hide after the specified amount of time
|
|
@@ -1541,12 +1684,15 @@ let BqNotification = class BqNotification {
|
|
|
1541
1684
|
;
|
|
1542
1685
|
constructor(c, r, z) {
|
|
1543
1686
|
this.z = z;
|
|
1687
|
+
this.bqHide = new EventEmitter();
|
|
1688
|
+
this.bqShow = new EventEmitter();
|
|
1689
|
+
this.bqAfterOpen = new EventEmitter();
|
|
1690
|
+
this.bqAfterClose = new EventEmitter();
|
|
1544
1691
|
c.detach();
|
|
1545
1692
|
this.el = r.nativeElement;
|
|
1546
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
1547
1693
|
}
|
|
1548
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1549
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1694
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1695
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqNotification, isStandalone: false, 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 }); }
|
|
1550
1696
|
};
|
|
1551
1697
|
BqNotification = __decorate([
|
|
1552
1698
|
ProxyCmp({
|
|
@@ -1555,7 +1701,7 @@ BqNotification = __decorate([
|
|
|
1555
1701
|
}),
|
|
1556
1702
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1557
1703
|
], BqNotification);
|
|
1558
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1704
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqNotification, decorators: [{
|
|
1559
1705
|
type: Component,
|
|
1560
1706
|
args: [{
|
|
1561
1707
|
selector: 'bq-notification',
|
|
@@ -1563,8 +1709,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1563
1709
|
template: '<ng-content></ng-content>',
|
|
1564
1710
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1565
1711
|
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'time', 'type'],
|
|
1712
|
+
outputs: ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose'],
|
|
1713
|
+
standalone: false
|
|
1566
1714
|
}]
|
|
1567
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1715
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqHide: [{
|
|
1716
|
+
type: Output
|
|
1717
|
+
}], bqShow: [{
|
|
1718
|
+
type: Output
|
|
1719
|
+
}], bqAfterOpen: [{
|
|
1720
|
+
type: Output
|
|
1721
|
+
}], bqAfterClose: [{
|
|
1722
|
+
type: Output
|
|
1723
|
+
}] } });
|
|
1568
1724
|
let BqOption = class BqOption {
|
|
1569
1725
|
/**
|
|
1570
1726
|
* If true, the option is hidden. @default false
|
|
@@ -1588,12 +1744,15 @@ let BqOption = class BqOption {
|
|
|
1588
1744
|
;
|
|
1589
1745
|
constructor(c, r, z) {
|
|
1590
1746
|
this.z = z;
|
|
1747
|
+
this.bqBlur = new EventEmitter();
|
|
1748
|
+
this.bqFocus = new EventEmitter();
|
|
1749
|
+
this.bqClick = new EventEmitter();
|
|
1750
|
+
this.bqEnter = new EventEmitter();
|
|
1591
1751
|
c.detach();
|
|
1592
1752
|
this.el = r.nativeElement;
|
|
1593
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
1594
1753
|
}
|
|
1595
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1596
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1754
|
+
/** @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 }); }
|
|
1755
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqOption, isStandalone: false, 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 }); }
|
|
1597
1756
|
};
|
|
1598
1757
|
BqOption = __decorate([
|
|
1599
1758
|
ProxyCmp({
|
|
@@ -1601,7 +1760,7 @@ BqOption = __decorate([
|
|
|
1601
1760
|
}),
|
|
1602
1761
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1603
1762
|
], BqOption);
|
|
1604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqOption, decorators: [{
|
|
1605
1764
|
type: Component,
|
|
1606
1765
|
args: [{
|
|
1607
1766
|
selector: 'bq-option',
|
|
@@ -1609,22 +1768,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1609
1768
|
template: '<ng-content></ng-content>',
|
|
1610
1769
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1611
1770
|
inputs: ['disabled', 'hidden', 'selected', 'value'],
|
|
1771
|
+
outputs: ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter'],
|
|
1772
|
+
standalone: false
|
|
1612
1773
|
}]
|
|
1613
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1774
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
1775
|
+
type: Output
|
|
1776
|
+
}], bqFocus: [{
|
|
1777
|
+
type: Output
|
|
1778
|
+
}], bqClick: [{
|
|
1779
|
+
type: Output
|
|
1780
|
+
}], bqEnter: [{
|
|
1781
|
+
type: Output
|
|
1782
|
+
}] } });
|
|
1614
1783
|
let BqOptionGroup = class BqOptionGroup {
|
|
1615
1784
|
constructor(c, r, z) {
|
|
1616
1785
|
this.z = z;
|
|
1617
1786
|
c.detach();
|
|
1618
1787
|
this.el = r.nativeElement;
|
|
1619
1788
|
}
|
|
1620
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1621
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1789
|
+
/** @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 }); }
|
|
1790
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqOptionGroup, isStandalone: false, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1622
1791
|
};
|
|
1623
1792
|
BqOptionGroup = __decorate([
|
|
1624
1793
|
ProxyCmp({}),
|
|
1625
1794
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1626
1795
|
], BqOptionGroup);
|
|
1627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
1628
1797
|
type: Component,
|
|
1629
1798
|
args: [{
|
|
1630
1799
|
selector: 'bq-option-group',
|
|
@@ -1632,6 +1801,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1632
1801
|
template: '<ng-content></ng-content>',
|
|
1633
1802
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1634
1803
|
inputs: [],
|
|
1804
|
+
standalone: false
|
|
1635
1805
|
}]
|
|
1636
1806
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1637
1807
|
let BqOptionList = class BqOptionList {
|
|
@@ -1642,12 +1812,12 @@ let BqOptionList = class BqOptionList {
|
|
|
1642
1812
|
;
|
|
1643
1813
|
constructor(c, r, z) {
|
|
1644
1814
|
this.z = z;
|
|
1815
|
+
this.bqSelect = new EventEmitter();
|
|
1645
1816
|
c.detach();
|
|
1646
1817
|
this.el = r.nativeElement;
|
|
1647
|
-
proxyOutputs(this, this.el, ['bqSelect']);
|
|
1648
1818
|
}
|
|
1649
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1650
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1819
|
+
/** @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 }); }
|
|
1820
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqOptionList, isStandalone: false, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, outputs: { bqSelect: "bqSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1651
1821
|
};
|
|
1652
1822
|
BqOptionList = __decorate([
|
|
1653
1823
|
ProxyCmp({
|
|
@@ -1655,7 +1825,7 @@ BqOptionList = __decorate([
|
|
|
1655
1825
|
}),
|
|
1656
1826
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1657
1827
|
], BqOptionList);
|
|
1658
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1828
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqOptionList, decorators: [{
|
|
1659
1829
|
type: Component,
|
|
1660
1830
|
args: [{
|
|
1661
1831
|
selector: 'bq-option-list',
|
|
@@ -1663,22 +1833,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1663
1833
|
template: '<ng-content></ng-content>',
|
|
1664
1834
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1665
1835
|
inputs: ['ariaLabel'],
|
|
1836
|
+
outputs: ['bqSelect'],
|
|
1837
|
+
standalone: false
|
|
1666
1838
|
}]
|
|
1667
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1839
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqSelect: [{
|
|
1840
|
+
type: Output
|
|
1841
|
+
}] } });
|
|
1668
1842
|
let BqPageTitle = class BqPageTitle {
|
|
1669
1843
|
constructor(c, r, z) {
|
|
1670
1844
|
this.z = z;
|
|
1671
1845
|
c.detach();
|
|
1672
1846
|
this.el = r.nativeElement;
|
|
1673
1847
|
}
|
|
1674
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1675
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1848
|
+
/** @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 }); }
|
|
1849
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqPageTitle, isStandalone: false, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1676
1850
|
};
|
|
1677
1851
|
BqPageTitle = __decorate([
|
|
1678
1852
|
ProxyCmp({}),
|
|
1679
1853
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1680
1854
|
], BqPageTitle);
|
|
1681
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1855
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
1682
1856
|
type: Component,
|
|
1683
1857
|
args: [{
|
|
1684
1858
|
selector: 'bq-page-title',
|
|
@@ -1686,6 +1860,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1686
1860
|
template: '<ng-content></ng-content>',
|
|
1687
1861
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1688
1862
|
inputs: [],
|
|
1863
|
+
standalone: false
|
|
1689
1864
|
}]
|
|
1690
1865
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1691
1866
|
let BqPanel = class BqPanel {
|
|
@@ -1729,8 +1904,8 @@ let BqPanel = class BqPanel {
|
|
|
1729
1904
|
c.detach();
|
|
1730
1905
|
this.el = r.nativeElement;
|
|
1731
1906
|
}
|
|
1732
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1733
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1907
|
+
/** @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 }); }
|
|
1908
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqPanel, isStandalone: false, 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 }); }
|
|
1734
1909
|
};
|
|
1735
1910
|
BqPanel = __decorate([
|
|
1736
1911
|
ProxyCmp({
|
|
@@ -1738,7 +1913,7 @@ BqPanel = __decorate([
|
|
|
1738
1913
|
}),
|
|
1739
1914
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1740
1915
|
], BqPanel);
|
|
1741
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1916
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqPanel, decorators: [{
|
|
1742
1917
|
type: Component,
|
|
1743
1918
|
args: [{
|
|
1744
1919
|
selector: 'bq-panel',
|
|
@@ -1746,6 +1921,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1746
1921
|
template: '<ng-content></ng-content>',
|
|
1747
1922
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1748
1923
|
inputs: ['disableScrollLock', 'distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
1924
|
+
standalone: false
|
|
1749
1925
|
}]
|
|
1750
1926
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1751
1927
|
let BqProgress = class BqProgress {
|
|
@@ -1789,8 +1965,8 @@ let BqProgress = class BqProgress {
|
|
|
1789
1965
|
c.detach();
|
|
1790
1966
|
this.el = r.nativeElement;
|
|
1791
1967
|
}
|
|
1792
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1793
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1968
|
+
/** @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 }); }
|
|
1969
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqProgress, isStandalone: false, 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 }); }
|
|
1794
1970
|
};
|
|
1795
1971
|
BqProgress = __decorate([
|
|
1796
1972
|
ProxyCmp({
|
|
@@ -1798,7 +1974,7 @@ BqProgress = __decorate([
|
|
|
1798
1974
|
}),
|
|
1799
1975
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1800
1976
|
], BqProgress);
|
|
1801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1977
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqProgress, decorators: [{
|
|
1802
1978
|
type: Component,
|
|
1803
1979
|
args: [{
|
|
1804
1980
|
selector: 'bq-progress',
|
|
@@ -1806,6 +1982,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1806
1982
|
template: '<ng-content></ng-content>',
|
|
1807
1983
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1808
1984
|
inputs: ['borderShape', 'enableTooltip', 'indeterminate', 'label', 'thickness', 'type', 'value'],
|
|
1985
|
+
standalone: false
|
|
1809
1986
|
}]
|
|
1810
1987
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1811
1988
|
let BqRadio = class BqRadio {
|
|
@@ -1846,12 +2023,15 @@ let BqRadio = class BqRadio {
|
|
|
1846
2023
|
;
|
|
1847
2024
|
constructor(c, r, z) {
|
|
1848
2025
|
this.z = z;
|
|
2026
|
+
this.bqClick = new EventEmitter();
|
|
2027
|
+
this.bqFocus = new EventEmitter();
|
|
2028
|
+
this.bqBlur = new EventEmitter();
|
|
2029
|
+
this.bqKeyDown = new EventEmitter();
|
|
1849
2030
|
c.detach();
|
|
1850
2031
|
this.el = r.nativeElement;
|
|
1851
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1852
2032
|
}
|
|
1853
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1854
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2033
|
+
/** @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 }); }
|
|
2034
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqRadio, isStandalone: false, 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 }); }
|
|
1855
2035
|
};
|
|
1856
2036
|
BqRadio = __decorate([
|
|
1857
2037
|
ProxyCmp({
|
|
@@ -1860,16 +2040,26 @@ BqRadio = __decorate([
|
|
|
1860
2040
|
}),
|
|
1861
2041
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1862
2042
|
], BqRadio);
|
|
1863
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqRadio, decorators: [{
|
|
1864
2044
|
type: Component,
|
|
1865
2045
|
args: [{
|
|
1866
2046
|
selector: 'bq-radio',
|
|
1867
2047
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1868
2048
|
template: '<ng-content></ng-content>',
|
|
1869
2049
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1870
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'name', 'required', 'value'],
|
|
2050
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', { name: 'name', required: true }, 'required', { name: 'value', required: true }],
|
|
2051
|
+
outputs: ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown'],
|
|
2052
|
+
standalone: false
|
|
1871
2053
|
}]
|
|
1872
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2054
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
2055
|
+
type: Output
|
|
2056
|
+
}], bqFocus: [{
|
|
2057
|
+
type: Output
|
|
2058
|
+
}], bqBlur: [{
|
|
2059
|
+
type: Output
|
|
2060
|
+
}], bqKeyDown: [{
|
|
2061
|
+
type: Output
|
|
2062
|
+
}] } });
|
|
1873
2063
|
let BqRadioGroup = class BqRadioGroup {
|
|
1874
2064
|
/**
|
|
1875
2065
|
* If true, all radio inputs in the group will display a background on hover @default false
|
|
@@ -1918,12 +2108,13 @@ let BqRadioGroup = class BqRadioGroup {
|
|
|
1918
2108
|
;
|
|
1919
2109
|
constructor(c, r, z) {
|
|
1920
2110
|
this.z = z;
|
|
2111
|
+
this.bqChange = new EventEmitter();
|
|
2112
|
+
this.bqBlur = new EventEmitter();
|
|
1921
2113
|
c.detach();
|
|
1922
2114
|
this.el = r.nativeElement;
|
|
1923
|
-
proxyOutputs(this, this.el, ['bqChange']);
|
|
1924
2115
|
}
|
|
1925
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1926
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2116
|
+
/** @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 }); }
|
|
2117
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqRadioGroup, isStandalone: false, 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 }); }
|
|
1927
2118
|
};
|
|
1928
2119
|
BqRadioGroup = __decorate([
|
|
1929
2120
|
ProxyCmp({
|
|
@@ -1931,16 +2122,22 @@ BqRadioGroup = __decorate([
|
|
|
1931
2122
|
}),
|
|
1932
2123
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1933
2124
|
], BqRadioGroup);
|
|
1934
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
1935
2126
|
type: Component,
|
|
1936
2127
|
args: [{
|
|
1937
2128
|
selector: 'bq-radio-group',
|
|
1938
2129
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1939
2130
|
template: '<ng-content></ng-content>',
|
|
1940
2131
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1941
|
-
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'required', 'requiredValidationMessage', 'value'],
|
|
2132
|
+
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', { name: 'name', required: true }, 'orientation', 'required', 'requiredValidationMessage', 'value'],
|
|
2133
|
+
outputs: ['bqChange', 'bqBlur'],
|
|
2134
|
+
standalone: false
|
|
1942
2135
|
}]
|
|
1943
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2136
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
2137
|
+
type: Output
|
|
2138
|
+
}], bqBlur: [{
|
|
2139
|
+
type: Output
|
|
2140
|
+
}] } });
|
|
1944
2141
|
let BqSelect = class BqSelect {
|
|
1945
2142
|
/**
|
|
1946
2143
|
* If true, the Select input will be focused on component render
|
|
@@ -2065,12 +2262,16 @@ If `true`, the Select is disabled and cannot be interacted with. @default false
|
|
|
2065
2262
|
;
|
|
2066
2263
|
constructor(c, r, z) {
|
|
2067
2264
|
this.z = z;
|
|
2265
|
+
this.bqBlur = new EventEmitter();
|
|
2266
|
+
this.bqClear = new EventEmitter();
|
|
2267
|
+
this.bqFocus = new EventEmitter();
|
|
2268
|
+
this.bqSelect = new EventEmitter();
|
|
2269
|
+
this.bqInput = new EventEmitter();
|
|
2068
2270
|
c.detach();
|
|
2069
2271
|
this.el = r.nativeElement;
|
|
2070
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect', 'bqInput']);
|
|
2071
2272
|
}
|
|
2072
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2073
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2273
|
+
/** @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 }); }
|
|
2274
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSelect, isStandalone: false, 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 }); }
|
|
2074
2275
|
};
|
|
2075
2276
|
BqSelect = __decorate([
|
|
2076
2277
|
ProxyCmp({
|
|
@@ -2079,16 +2280,28 @@ BqSelect = __decorate([
|
|
|
2079
2280
|
}),
|
|
2080
2281
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2081
2282
|
], BqSelect);
|
|
2082
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSelect, decorators: [{
|
|
2083
2284
|
type: Component,
|
|
2084
2285
|
args: [{
|
|
2085
2286
|
selector: 'bq-select',
|
|
2086
2287
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2087
2288
|
template: '<ng-content></ng-content>',
|
|
2088
2289
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2089
|
-
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disableScrollLock', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
2290
|
+
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'],
|
|
2291
|
+
outputs: ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect', 'bqInput'],
|
|
2292
|
+
standalone: false
|
|
2090
2293
|
}]
|
|
2091
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2294
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
2295
|
+
type: Output
|
|
2296
|
+
}], bqClear: [{
|
|
2297
|
+
type: Output
|
|
2298
|
+
}], bqFocus: [{
|
|
2299
|
+
type: Output
|
|
2300
|
+
}], bqSelect: [{
|
|
2301
|
+
type: Output
|
|
2302
|
+
}], bqInput: [{
|
|
2303
|
+
type: Output
|
|
2304
|
+
}] } });
|
|
2092
2305
|
let BqSideMenu = class BqSideMenu {
|
|
2093
2306
|
/**
|
|
2094
2307
|
* It sets a predefined appearance of the side menu @default 'default'
|
|
@@ -2107,12 +2320,13 @@ let BqSideMenu = class BqSideMenu {
|
|
|
2107
2320
|
;
|
|
2108
2321
|
constructor(c, r, z) {
|
|
2109
2322
|
this.z = z;
|
|
2323
|
+
this.bqCollapse = new EventEmitter();
|
|
2324
|
+
this.bqSelect = new EventEmitter();
|
|
2110
2325
|
c.detach();
|
|
2111
2326
|
this.el = r.nativeElement;
|
|
2112
|
-
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
2113
2327
|
}
|
|
2114
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2115
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2328
|
+
/** @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 }); }
|
|
2329
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSideMenu, isStandalone: false, 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 }); }
|
|
2116
2330
|
};
|
|
2117
2331
|
BqSideMenu = __decorate([
|
|
2118
2332
|
ProxyCmp({
|
|
@@ -2121,7 +2335,7 @@ BqSideMenu = __decorate([
|
|
|
2121
2335
|
}),
|
|
2122
2336
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2123
2337
|
], BqSideMenu);
|
|
2124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
2125
2339
|
type: Component,
|
|
2126
2340
|
args: [{
|
|
2127
2341
|
selector: 'bq-side-menu',
|
|
@@ -2129,8 +2343,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2129
2343
|
template: '<ng-content></ng-content>',
|
|
2130
2344
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2131
2345
|
inputs: ['appearance', 'collapse', 'size'],
|
|
2346
|
+
outputs: ['bqCollapse', 'bqSelect'],
|
|
2347
|
+
standalone: false
|
|
2132
2348
|
}]
|
|
2133
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2349
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqCollapse: [{
|
|
2350
|
+
type: Output
|
|
2351
|
+
}], bqSelect: [{
|
|
2352
|
+
type: Output
|
|
2353
|
+
}] } });
|
|
2134
2354
|
let BqSideMenuItem = class BqSideMenuItem {
|
|
2135
2355
|
/**
|
|
2136
2356
|
* If true, the menu item will be shown as active/selected. @default false
|
|
@@ -2149,12 +2369,14 @@ let BqSideMenuItem = class BqSideMenuItem {
|
|
|
2149
2369
|
;
|
|
2150
2370
|
constructor(c, r, z) {
|
|
2151
2371
|
this.z = z;
|
|
2372
|
+
this.bqBlur = new EventEmitter();
|
|
2373
|
+
this.bqFocus = new EventEmitter();
|
|
2374
|
+
this.bqClick = new EventEmitter();
|
|
2152
2375
|
c.detach();
|
|
2153
2376
|
this.el = r.nativeElement;
|
|
2154
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
2155
2377
|
}
|
|
2156
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2157
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2378
|
+
/** @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 }); }
|
|
2379
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSideMenuItem, isStandalone: false, 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 }); }
|
|
2158
2380
|
};
|
|
2159
2381
|
BqSideMenuItem = __decorate([
|
|
2160
2382
|
ProxyCmp({
|
|
@@ -2162,7 +2384,7 @@ BqSideMenuItem = __decorate([
|
|
|
2162
2384
|
}),
|
|
2163
2385
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2164
2386
|
], BqSideMenuItem);
|
|
2165
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
2166
2388
|
type: Component,
|
|
2167
2389
|
args: [{
|
|
2168
2390
|
selector: 'bq-side-menu-item',
|
|
@@ -2170,8 +2392,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2170
2392
|
template: '<ng-content></ng-content>',
|
|
2171
2393
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2172
2394
|
inputs: ['active', 'collapse', 'disabled'],
|
|
2395
|
+
outputs: ['bqBlur', 'bqFocus', 'bqClick'],
|
|
2396
|
+
standalone: false
|
|
2173
2397
|
}]
|
|
2174
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2398
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
2399
|
+
type: Output
|
|
2400
|
+
}], bqFocus: [{
|
|
2401
|
+
type: Output
|
|
2402
|
+
}], bqClick: [{
|
|
2403
|
+
type: Output
|
|
2404
|
+
}] } });
|
|
2175
2405
|
let BqSlider = class BqSlider {
|
|
2176
2406
|
/**
|
|
2177
2407
|
* The amount of time, in milliseconds, to wait to trigger the `bqChange` event after each value change. @default 0
|
|
@@ -2239,12 +2469,14 @@ It relies on enableTooltip and if enableTooltip is false, tooltipAlwaysVisible c
|
|
|
2239
2469
|
;
|
|
2240
2470
|
constructor(c, r, z) {
|
|
2241
2471
|
this.z = z;
|
|
2472
|
+
this.bqChange = new EventEmitter();
|
|
2473
|
+
this.bqBlur = new EventEmitter();
|
|
2474
|
+
this.bqFocus = new EventEmitter();
|
|
2242
2475
|
c.detach();
|
|
2243
2476
|
this.el = r.nativeElement;
|
|
2244
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
2245
2477
|
}
|
|
2246
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2247
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2478
|
+
/** @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 }); }
|
|
2479
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSlider, isStandalone: false, 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 }); }
|
|
2248
2480
|
};
|
|
2249
2481
|
BqSlider = __decorate([
|
|
2250
2482
|
ProxyCmp({
|
|
@@ -2252,7 +2484,7 @@ BqSlider = __decorate([
|
|
|
2252
2484
|
}),
|
|
2253
2485
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2254
2486
|
], BqSlider);
|
|
2255
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2487
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSlider, decorators: [{
|
|
2256
2488
|
type: Component,
|
|
2257
2489
|
args: [{
|
|
2258
2490
|
selector: 'bq-slider',
|
|
@@ -2260,8 +2492,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2260
2492
|
template: '<ng-content></ng-content>',
|
|
2261
2493
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2262
2494
|
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'name', 'step', 'tooltipAlwaysVisible', 'type', 'value'],
|
|
2495
|
+
outputs: ['bqChange', 'bqBlur', 'bqFocus'],
|
|
2496
|
+
standalone: false
|
|
2263
2497
|
}]
|
|
2264
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2498
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
2499
|
+
type: Output
|
|
2500
|
+
}], bqBlur: [{
|
|
2501
|
+
type: Output
|
|
2502
|
+
}], bqFocus: [{
|
|
2503
|
+
type: Output
|
|
2504
|
+
}] } });
|
|
2265
2505
|
let BqSpinner = class BqSpinner {
|
|
2266
2506
|
/**
|
|
2267
2507
|
* If `false`, the animation on the icon element will be stopped @default true
|
|
@@ -2283,8 +2523,8 @@ let BqSpinner = class BqSpinner {
|
|
|
2283
2523
|
c.detach();
|
|
2284
2524
|
this.el = r.nativeElement;
|
|
2285
2525
|
}
|
|
2286
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2287
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2526
|
+
/** @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 }); }
|
|
2527
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSpinner, isStandalone: false, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2288
2528
|
};
|
|
2289
2529
|
BqSpinner = __decorate([
|
|
2290
2530
|
ProxyCmp({
|
|
@@ -2292,7 +2532,7 @@ BqSpinner = __decorate([
|
|
|
2292
2532
|
}),
|
|
2293
2533
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2294
2534
|
], BqSpinner);
|
|
2295
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2535
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSpinner, decorators: [{
|
|
2296
2536
|
type: Component,
|
|
2297
2537
|
args: [{
|
|
2298
2538
|
selector: 'bq-spinner',
|
|
@@ -2300,6 +2540,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2300
2540
|
template: '<ng-content></ng-content>',
|
|
2301
2541
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2302
2542
|
inputs: ['animation', 'size', 'textPosition'],
|
|
2543
|
+
standalone: false
|
|
2303
2544
|
}]
|
|
2304
2545
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2305
2546
|
let BqStatus = class BqStatus {
|
|
@@ -2313,8 +2554,8 @@ let BqStatus = class BqStatus {
|
|
|
2313
2554
|
c.detach();
|
|
2314
2555
|
this.el = r.nativeElement;
|
|
2315
2556
|
}
|
|
2316
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2317
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2557
|
+
/** @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 }); }
|
|
2558
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqStatus, isStandalone: false, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2318
2559
|
};
|
|
2319
2560
|
BqStatus = __decorate([
|
|
2320
2561
|
ProxyCmp({
|
|
@@ -2322,7 +2563,7 @@ BqStatus = __decorate([
|
|
|
2322
2563
|
}),
|
|
2323
2564
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2324
2565
|
], BqStatus);
|
|
2325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2566
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqStatus, decorators: [{
|
|
2326
2567
|
type: Component,
|
|
2327
2568
|
args: [{
|
|
2328
2569
|
selector: 'bq-status',
|
|
@@ -2330,6 +2571,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2330
2571
|
template: '<ng-content></ng-content>',
|
|
2331
2572
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2332
2573
|
inputs: ['type'],
|
|
2574
|
+
standalone: false
|
|
2333
2575
|
}]
|
|
2334
2576
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2335
2577
|
let BqStepItem = class BqStepItem {
|
|
@@ -2350,12 +2592,14 @@ let BqStepItem = class BqStepItem {
|
|
|
2350
2592
|
;
|
|
2351
2593
|
constructor(c, r, z) {
|
|
2352
2594
|
this.z = z;
|
|
2595
|
+
this.bqClick = new EventEmitter();
|
|
2596
|
+
this.bqFocus = new EventEmitter();
|
|
2597
|
+
this.bqBlur = new EventEmitter();
|
|
2353
2598
|
c.detach();
|
|
2354
2599
|
this.el = r.nativeElement;
|
|
2355
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur']);
|
|
2356
2600
|
}
|
|
2357
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2358
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2601
|
+
/** @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 }); }
|
|
2602
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqStepItem, isStandalone: false, 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 }); }
|
|
2359
2603
|
};
|
|
2360
2604
|
BqStepItem = __decorate([
|
|
2361
2605
|
ProxyCmp({
|
|
@@ -2363,7 +2607,7 @@ BqStepItem = __decorate([
|
|
|
2363
2607
|
}),
|
|
2364
2608
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2365
2609
|
], BqStepItem);
|
|
2366
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2610
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqStepItem, decorators: [{
|
|
2367
2611
|
type: Component,
|
|
2368
2612
|
args: [{
|
|
2369
2613
|
selector: 'bq-step-item',
|
|
@@ -2371,8 +2615,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2371
2615
|
template: '<ng-content></ng-content>',
|
|
2372
2616
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2373
2617
|
inputs: ['size', 'status', 'type'],
|
|
2618
|
+
outputs: ['bqClick', 'bqFocus', 'bqBlur'],
|
|
2619
|
+
standalone: false
|
|
2374
2620
|
}]
|
|
2375
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2621
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
2622
|
+
type: Output
|
|
2623
|
+
}], bqFocus: [{
|
|
2624
|
+
type: Output
|
|
2625
|
+
}], bqBlur: [{
|
|
2626
|
+
type: Output
|
|
2627
|
+
}] } });
|
|
2376
2628
|
let BqSteps = class BqSteps {
|
|
2377
2629
|
/**
|
|
2378
2630
|
* The color of the line that connects the steps. It should be a valid declarative color token. @default 'stroke--primary'
|
|
@@ -2394,8 +2646,8 @@ let BqSteps = class BqSteps {
|
|
|
2394
2646
|
c.detach();
|
|
2395
2647
|
this.el = r.nativeElement;
|
|
2396
2648
|
}
|
|
2397
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2398
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2649
|
+
/** @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 }); }
|
|
2650
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSteps, isStandalone: false, selector: "bq-steps", inputs: { dividerColor: "dividerColor", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2399
2651
|
};
|
|
2400
2652
|
BqSteps = __decorate([
|
|
2401
2653
|
ProxyCmp({
|
|
@@ -2404,7 +2656,7 @@ BqSteps = __decorate([
|
|
|
2404
2656
|
}),
|
|
2405
2657
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2406
2658
|
], BqSteps);
|
|
2407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSteps, decorators: [{
|
|
2408
2660
|
type: Component,
|
|
2409
2661
|
args: [{
|
|
2410
2662
|
selector: 'bq-steps',
|
|
@@ -2412,6 +2664,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2412
2664
|
template: '<ng-content></ng-content>',
|
|
2413
2665
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2414
2666
|
inputs: ['dividerColor', 'size', 'type'],
|
|
2667
|
+
standalone: false
|
|
2415
2668
|
}]
|
|
2416
2669
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2417
2670
|
let BqSwitch = class BqSwitch {
|
|
@@ -2473,12 +2726,14 @@ let BqSwitch = class BqSwitch {
|
|
|
2473
2726
|
;
|
|
2474
2727
|
constructor(c, r, z) {
|
|
2475
2728
|
this.z = z;
|
|
2729
|
+
this.bqChange = new EventEmitter();
|
|
2730
|
+
this.bqFocus = new EventEmitter();
|
|
2731
|
+
this.bqBlur = new EventEmitter();
|
|
2476
2732
|
c.detach();
|
|
2477
2733
|
this.el = r.nativeElement;
|
|
2478
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
2479
2734
|
}
|
|
2480
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2481
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2735
|
+
/** @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 }); }
|
|
2736
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqSwitch, isStandalone: false, 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 }); }
|
|
2482
2737
|
};
|
|
2483
2738
|
BqSwitch = __decorate([
|
|
2484
2739
|
ProxyCmp({
|
|
@@ -2487,16 +2742,24 @@ BqSwitch = __decorate([
|
|
|
2487
2742
|
}),
|
|
2488
2743
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2489
2744
|
], BqSwitch);
|
|
2490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2745
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqSwitch, decorators: [{
|
|
2491
2746
|
type: Component,
|
|
2492
2747
|
args: [{
|
|
2493
2748
|
selector: 'bq-switch',
|
|
2494
2749
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2495
2750
|
template: '<ng-content></ng-content>',
|
|
2496
2751
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2497
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
2752
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', { name: 'name', required: true }, 'required', 'reverseOrder', 'value'],
|
|
2753
|
+
outputs: ['bqChange', 'bqFocus', 'bqBlur'],
|
|
2754
|
+
standalone: false
|
|
2498
2755
|
}]
|
|
2499
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2756
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
2757
|
+
type: Output
|
|
2758
|
+
}], bqFocus: [{
|
|
2759
|
+
type: Output
|
|
2760
|
+
}], bqBlur: [{
|
|
2761
|
+
type: Output
|
|
2762
|
+
}] } });
|
|
2500
2763
|
let BqTab = class BqTab {
|
|
2501
2764
|
/**
|
|
2502
2765
|
* If true tab is active
|
|
@@ -2535,12 +2798,15 @@ let BqTab = class BqTab {
|
|
|
2535
2798
|
;
|
|
2536
2799
|
constructor(c, r, z) {
|
|
2537
2800
|
this.z = z;
|
|
2801
|
+
this.bqClick = new EventEmitter();
|
|
2802
|
+
this.bqFocus = new EventEmitter();
|
|
2803
|
+
this.bqBlur = new EventEmitter();
|
|
2804
|
+
this.bqKeyDown = new EventEmitter();
|
|
2538
2805
|
c.detach();
|
|
2539
2806
|
this.el = r.nativeElement;
|
|
2540
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
2541
2807
|
}
|
|
2542
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2543
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2808
|
+
/** @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 }); }
|
|
2809
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqTab, isStandalone: false, 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 }); }
|
|
2544
2810
|
};
|
|
2545
2811
|
BqTab = __decorate([
|
|
2546
2812
|
ProxyCmp({
|
|
@@ -2549,16 +2815,26 @@ BqTab = __decorate([
|
|
|
2549
2815
|
}),
|
|
2550
2816
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2551
2817
|
], BqTab);
|
|
2552
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2818
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTab, decorators: [{
|
|
2553
2819
|
type: Component,
|
|
2554
2820
|
args: [{
|
|
2555
2821
|
selector: 'bq-tab',
|
|
2556
2822
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2557
2823
|
template: '<ng-content></ng-content>',
|
|
2558
2824
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2559
|
-
inputs: ['active', 'controls', 'disabled', 'orientation', 'placement', 'size', 'tabId'],
|
|
2825
|
+
inputs: ['active', { name: 'controls', required: true }, 'disabled', 'orientation', 'placement', 'size', { name: 'tabId', required: true }],
|
|
2826
|
+
outputs: ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown'],
|
|
2827
|
+
standalone: false
|
|
2560
2828
|
}]
|
|
2561
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2829
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
2830
|
+
type: Output
|
|
2831
|
+
}], bqFocus: [{
|
|
2832
|
+
type: Output
|
|
2833
|
+
}], bqBlur: [{
|
|
2834
|
+
type: Output
|
|
2835
|
+
}], bqKeyDown: [{
|
|
2836
|
+
type: Output
|
|
2837
|
+
}] } });
|
|
2562
2838
|
let BqTabGroup = class BqTabGroup {
|
|
2563
2839
|
/**
|
|
2564
2840
|
* A number representing the delay value applied to bqChange event handler @default 0
|
|
@@ -2592,12 +2868,12 @@ let BqTabGroup = class BqTabGroup {
|
|
|
2592
2868
|
;
|
|
2593
2869
|
constructor(c, r, z) {
|
|
2594
2870
|
this.z = z;
|
|
2871
|
+
this.bqChange = new EventEmitter();
|
|
2595
2872
|
c.detach();
|
|
2596
2873
|
this.el = r.nativeElement;
|
|
2597
|
-
proxyOutputs(this, this.el, ['bqChange']);
|
|
2598
2874
|
}
|
|
2599
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2600
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2875
|
+
/** @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 }); }
|
|
2876
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqTabGroup, isStandalone: false, 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 }); }
|
|
2601
2877
|
};
|
|
2602
2878
|
BqTabGroup = __decorate([
|
|
2603
2879
|
ProxyCmp({
|
|
@@ -2605,7 +2881,7 @@ BqTabGroup = __decorate([
|
|
|
2605
2881
|
}),
|
|
2606
2882
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2607
2883
|
], BqTabGroup);
|
|
2608
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2884
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
2609
2885
|
type: Component,
|
|
2610
2886
|
args: [{
|
|
2611
2887
|
selector: 'bq-tab-group',
|
|
@@ -2613,8 +2889,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2613
2889
|
template: '<ng-content></ng-content>',
|
|
2614
2890
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2615
2891
|
inputs: ['debounceTime', 'disableDivider', 'orientation', 'placement', 'size', 'value'],
|
|
2892
|
+
outputs: ['bqChange'],
|
|
2893
|
+
standalone: false
|
|
2616
2894
|
}]
|
|
2617
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2895
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
|
|
2896
|
+
type: Output
|
|
2897
|
+
}] } });
|
|
2618
2898
|
let BqTag = class BqTag {
|
|
2619
2899
|
/**
|
|
2620
2900
|
* The corner radius of the Tag (will override size's predefined border)
|
|
@@ -2663,12 +2943,16 @@ let BqTag = class BqTag {
|
|
|
2663
2943
|
;
|
|
2664
2944
|
constructor(c, r, z) {
|
|
2665
2945
|
this.z = z;
|
|
2946
|
+
this.bqClose = new EventEmitter();
|
|
2947
|
+
this.bqOpen = new EventEmitter();
|
|
2948
|
+
this.bqBlur = new EventEmitter();
|
|
2949
|
+
this.bqClick = new EventEmitter();
|
|
2950
|
+
this.bqFocus = new EventEmitter();
|
|
2666
2951
|
c.detach();
|
|
2667
2952
|
this.el = r.nativeElement;
|
|
2668
|
-
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
2669
2953
|
}
|
|
2670
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2671
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2954
|
+
/** @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 }); }
|
|
2955
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqTag, isStandalone: false, 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 }); }
|
|
2672
2956
|
};
|
|
2673
2957
|
BqTag = __decorate([
|
|
2674
2958
|
ProxyCmp({
|
|
@@ -2677,7 +2961,7 @@ BqTag = __decorate([
|
|
|
2677
2961
|
}),
|
|
2678
2962
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2679
2963
|
], BqTag);
|
|
2680
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTag, decorators: [{
|
|
2681
2965
|
type: Component,
|
|
2682
2966
|
args: [{
|
|
2683
2967
|
selector: 'bq-tag',
|
|
@@ -2685,8 +2969,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2685
2969
|
template: '<ng-content></ng-content>',
|
|
2686
2970
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2687
2971
|
inputs: ['border', 'clickable', 'color', 'disabled', 'hidden', 'removable', 'selected', 'size', 'variant'],
|
|
2972
|
+
outputs: ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus'],
|
|
2973
|
+
standalone: false
|
|
2688
2974
|
}]
|
|
2689
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2975
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClose: [{
|
|
2976
|
+
type: Output
|
|
2977
|
+
}], bqOpen: [{
|
|
2978
|
+
type: Output
|
|
2979
|
+
}], bqBlur: [{
|
|
2980
|
+
type: Output
|
|
2981
|
+
}], bqClick: [{
|
|
2982
|
+
type: Output
|
|
2983
|
+
}], bqFocus: [{
|
|
2984
|
+
type: Output
|
|
2985
|
+
}] } });
|
|
2690
2986
|
let BqTextarea = class BqTextarea {
|
|
2691
2987
|
/**
|
|
2692
2988
|
* Controls whether or not the textarea field should be capitalized and how.
|
|
@@ -2801,12 +3097,16 @@ When enabled, a character counter will be shown underneath the textarea.
|
|
|
2801
3097
|
;
|
|
2802
3098
|
constructor(c, r, z) {
|
|
2803
3099
|
this.z = z;
|
|
3100
|
+
this.bqBlur = new EventEmitter();
|
|
3101
|
+
this.bqChange = new EventEmitter();
|
|
3102
|
+
this.bqClear = new EventEmitter();
|
|
3103
|
+
this.bqFocus = new EventEmitter();
|
|
3104
|
+
this.bqInput = new EventEmitter();
|
|
2804
3105
|
c.detach();
|
|
2805
3106
|
this.el = r.nativeElement;
|
|
2806
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
2807
3107
|
}
|
|
2808
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2809
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3108
|
+
/** @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 }); }
|
|
3109
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqTextarea, isStandalone: false, 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 }); }
|
|
2810
3110
|
};
|
|
2811
3111
|
BqTextarea = __decorate([
|
|
2812
3112
|
ProxyCmp({
|
|
@@ -2814,16 +3114,28 @@ BqTextarea = __decorate([
|
|
|
2814
3114
|
}),
|
|
2815
3115
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2816
3116
|
], BqTextarea);
|
|
2817
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTextarea, decorators: [{
|
|
2818
3118
|
type: Component,
|
|
2819
3119
|
args: [{
|
|
2820
3120
|
selector: 'bq-textarea',
|
|
2821
3121
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2822
3122
|
template: '<ng-content></ng-content>',
|
|
2823
3123
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2824
|
-
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
|
|
3124
|
+
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'],
|
|
3125
|
+
outputs: ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput'],
|
|
3126
|
+
standalone: false
|
|
2825
3127
|
}]
|
|
2826
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
3128
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqBlur: [{
|
|
3129
|
+
type: Output
|
|
3130
|
+
}], bqChange: [{
|
|
3131
|
+
type: Output
|
|
3132
|
+
}], bqClear: [{
|
|
3133
|
+
type: Output
|
|
3134
|
+
}], bqFocus: [{
|
|
3135
|
+
type: Output
|
|
3136
|
+
}], bqInput: [{
|
|
3137
|
+
type: Output
|
|
3138
|
+
}] } });
|
|
2827
3139
|
let BqToast = class BqToast {
|
|
2828
3140
|
/**
|
|
2829
3141
|
* The corder radius of the toast component @default 's'
|
|
@@ -2857,12 +3169,13 @@ let BqToast = class BqToast {
|
|
|
2857
3169
|
;
|
|
2858
3170
|
constructor(c, r, z) {
|
|
2859
3171
|
this.z = z;
|
|
3172
|
+
this.bqHide = new EventEmitter();
|
|
3173
|
+
this.bqShow = new EventEmitter();
|
|
2860
3174
|
c.detach();
|
|
2861
3175
|
this.el = r.nativeElement;
|
|
2862
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
2863
3176
|
}
|
|
2864
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2865
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3177
|
+
/** @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 }); }
|
|
3178
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqToast, isStandalone: false, 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 }); }
|
|
2866
3179
|
};
|
|
2867
3180
|
BqToast = __decorate([
|
|
2868
3181
|
ProxyCmp({
|
|
@@ -2871,7 +3184,7 @@ BqToast = __decorate([
|
|
|
2871
3184
|
}),
|
|
2872
3185
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2873
3186
|
], BqToast);
|
|
2874
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqToast, decorators: [{
|
|
2875
3188
|
type: Component,
|
|
2876
3189
|
args: [{
|
|
2877
3190
|
selector: 'bq-toast',
|
|
@@ -2879,8 +3192,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2879
3192
|
template: '<ng-content></ng-content>',
|
|
2880
3193
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2881
3194
|
inputs: ['border', 'hideIcon', 'open', 'placement', 'time', 'type'],
|
|
3195
|
+
outputs: ['bqHide', 'bqShow'],
|
|
3196
|
+
standalone: false
|
|
2882
3197
|
}]
|
|
2883
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
3198
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqHide: [{
|
|
3199
|
+
type: Output
|
|
3200
|
+
}], bqShow: [{
|
|
3201
|
+
type: Output
|
|
3202
|
+
}] } });
|
|
2884
3203
|
let BqTooltip = class BqTooltip {
|
|
2885
3204
|
/**
|
|
2886
3205
|
* If true, the tooltip will always be visible @default false
|
|
@@ -2921,12 +3240,16 @@ and when interacting with the trigger @default false
|
|
|
2921
3240
|
;
|
|
2922
3241
|
constructor(c, r, z) {
|
|
2923
3242
|
this.z = z;
|
|
3243
|
+
this.bqClick = new EventEmitter();
|
|
3244
|
+
this.bqFocusIn = new EventEmitter();
|
|
3245
|
+
this.bqFocusOut = new EventEmitter();
|
|
3246
|
+
this.bqHoverIn = new EventEmitter();
|
|
3247
|
+
this.bqHoverOut = new EventEmitter();
|
|
2924
3248
|
c.detach();
|
|
2925
3249
|
this.el = r.nativeElement;
|
|
2926
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocusIn', 'bqFocusOut', 'bqHoverIn', 'bqHoverOut']);
|
|
2927
3250
|
}
|
|
2928
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2929
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3251
|
+
/** @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 }); }
|
|
3252
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqTooltip, isStandalone: false, 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 }); }
|
|
2930
3253
|
};
|
|
2931
3254
|
BqTooltip = __decorate([
|
|
2932
3255
|
ProxyCmp({
|
|
@@ -2935,7 +3258,7 @@ BqTooltip = __decorate([
|
|
|
2935
3258
|
}),
|
|
2936
3259
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2937
3260
|
], BqTooltip);
|
|
2938
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqTooltip, decorators: [{
|
|
2939
3262
|
type: Component,
|
|
2940
3263
|
args: [{
|
|
2941
3264
|
selector: 'bq-tooltip',
|
|
@@ -2943,8 +3266,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2943
3266
|
template: '<ng-content></ng-content>',
|
|
2944
3267
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2945
3268
|
inputs: ['alwaysVisible', 'displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
3269
|
+
outputs: ['bqClick', 'bqFocusIn', 'bqFocusOut', 'bqHoverIn', 'bqHoverOut'],
|
|
3270
|
+
standalone: false
|
|
2946
3271
|
}]
|
|
2947
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
3272
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqClick: [{
|
|
3273
|
+
type: Output
|
|
3274
|
+
}], bqFocusIn: [{
|
|
3275
|
+
type: Output
|
|
3276
|
+
}], bqFocusOut: [{
|
|
3277
|
+
type: Output
|
|
3278
|
+
}], bqHoverIn: [{
|
|
3279
|
+
type: Output
|
|
3280
|
+
}], bqHoverOut: [{
|
|
3281
|
+
type: Output
|
|
3282
|
+
}] } });
|
|
2948
3283
|
|
|
2949
3284
|
const DIRECTIVES = [
|
|
2950
3285
|
BqAccordion,
|
|
@@ -3020,8 +3355,8 @@ class BeeQModule {
|
|
|
3020
3355
|
],
|
|
3021
3356
|
};
|
|
3022
3357
|
}
|
|
3023
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3024
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3358
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3359
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.7", ngImport: i0, type: BeeQModule, declarations: [BqAccordion, BqAccordionGroup, BqAlert, BqAvatar, BqBadge, BqBreadcrumb, BqBreadcrumbItem, BqButton, BqCard, BqCheckbox, BqDatePicker, BqDialog, BqDivider, BqDrawer, BqDropdown, BqEmptyState, BqIcon, BqInput, BqNotification, BqOption, BqOptionGroup, BqOptionList, BqPageTitle, BqPanel, BqProgress, BqRadio, BqRadioGroup, BqSelect, BqSideMenu, BqSideMenuItem, BqSlider, BqSpinner, BqStatus, BqStepItem, BqSteps, BqSwitch, BqTab, BqTabGroup, BqTag, BqTextarea, BqToast, BqTooltip,
|
|
3025
3360
|
// ngModel Accessors
|
|
3026
3361
|
BooleanValueAccessor,
|
|
3027
3362
|
NumericValueAccessor,
|
|
@@ -3034,9 +3369,9 @@ class BeeQModule {
|
|
|
3034
3369
|
RadioValueAccessor,
|
|
3035
3370
|
SelectValueAccessor,
|
|
3036
3371
|
TextValueAccessor] }); }
|
|
3037
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3372
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BeeQModule, imports: [CommonModule] }); }
|
|
3038
3373
|
}
|
|
3039
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3374
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BeeQModule, decorators: [{
|
|
3040
3375
|
type: NgModule,
|
|
3041
3376
|
args: [{
|
|
3042
3377
|
imports: [CommonModule],
|