@beeq/angular 1.8.0-beta.9 → 1.8.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/README.md +32 -15
- package/eslint.config.js +45 -0
- package/jest.config.ts +21 -0
- package/ng-package.json +8 -0
- package/package.json +20 -39
- package/project.json +41 -0
- package/scripts/fix-value-accessor-path.ts +94 -0
- package/src/beeq.module.ts +41 -0
- package/src/directives/angular-component-lib/utils.ts +65 -0
- package/src/directives/boolean-value-accessor.ts +27 -0
- package/src/directives/components.ts +2621 -0
- package/src/directives/index.ts +47 -0
- package/src/directives/number-value-accessor.ts +29 -0
- package/src/directives/radio-value-accessor.ts +24 -0
- package/src/directives/select-value-accessor.ts +24 -0
- package/src/directives/text-value-accessor.ts +24 -0
- package/src/directives/value-accessor.ts +39 -0
- package/src/index.ts +15 -0
- package/src/test-setup.ts +1 -0
- package/standalone/ng-package.json +5 -0
- package/standalone/src/directives/angular-component-lib/utils.ts +65 -0
- package/standalone/src/directives/boolean-value-accessor.ts +27 -0
- package/standalone/src/directives/components.ts +1479 -0
- package/standalone/src/directives/index.ts +47 -0
- package/standalone/src/directives/number-value-accessor.ts +29 -0
- package/standalone/src/directives/radio-value-accessor.ts +24 -0
- package/standalone/src/directives/select-value-accessor.ts +24 -0
- package/standalone/src/directives/text-value-accessor.ts +24 -0
- package/standalone/src/directives/value-accessor.ts +39 -0
- package/{index.d.ts → standalone/src/index.ts} +4 -1
- package/tsconfig.json +19 -0
- package/tsconfig.lib.json +12 -0
- package/tsconfig.lib.prod.json +18 -0
- package/tsconfig.spec.json +10 -0
- 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 -784
- 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 -59
- 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 -1221
- 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 -42
- package/esm2022/index.mjs +0 -14
- 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 -1349
- 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 -42
- package/esm2022/standalone/index.mjs +0 -10
- package/fesm2022/beeq-angular-standalone.mjs +0 -1578
- package/fesm2022/beeq-angular-standalone.mjs.map +0 -1
- package/fesm2022/beeq-angular.mjs +0 -1545
- package/fesm2022/beeq-angular.mjs.map +0 -1
- 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 -784
- 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
- package/standalone/index.d.ts +0 -6
|
@@ -1,1545 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Directive, HostListener, ChangeDetectorRef, ElementRef, NgZone, Component, ChangeDetectionStrategy, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
|
-
import { __decorate, __metadata } from 'tslib';
|
|
5
|
-
import { fromEvent } from 'rxjs';
|
|
6
|
-
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
7
|
-
import { defineCustomElements } from '@beeq/core/dist/loader';
|
|
8
|
-
|
|
9
|
-
class ValueAccessor {
|
|
10
|
-
el;
|
|
11
|
-
onChange = () => { };
|
|
12
|
-
onTouched = () => { };
|
|
13
|
-
lastValue;
|
|
14
|
-
constructor(el) {
|
|
15
|
-
this.el = el;
|
|
16
|
-
}
|
|
17
|
-
writeValue(value) {
|
|
18
|
-
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
19
|
-
}
|
|
20
|
-
handleChangeEvent(value) {
|
|
21
|
-
if (value !== this.lastValue) {
|
|
22
|
-
this.lastValue = value;
|
|
23
|
-
this.onChange(value);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
_handleBlurEvent() {
|
|
27
|
-
this.onTouched();
|
|
28
|
-
}
|
|
29
|
-
registerOnChange(fn) {
|
|
30
|
-
this.onChange = fn;
|
|
31
|
-
}
|
|
32
|
-
registerOnTouched(fn) {
|
|
33
|
-
this.onTouched = fn;
|
|
34
|
-
}
|
|
35
|
-
setDisabledState(isDisabled) {
|
|
36
|
-
this.el.nativeElement.disabled = isDisabled;
|
|
37
|
-
}
|
|
38
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
39
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
40
|
-
}
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
42
|
-
type: Directive,
|
|
43
|
-
args: [{}]
|
|
44
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
45
|
-
type: HostListener,
|
|
46
|
-
args: ['focusout']
|
|
47
|
-
}] } });
|
|
48
|
-
|
|
49
|
-
class BooleanValueAccessor extends ValueAccessor {
|
|
50
|
-
constructor(el) {
|
|
51
|
-
super(el);
|
|
52
|
-
}
|
|
53
|
-
writeValue(value) {
|
|
54
|
-
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
55
|
-
}
|
|
56
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
57
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: BooleanValueAccessor, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
58
|
-
{
|
|
59
|
-
provide: NG_VALUE_ACCESSOR,
|
|
60
|
-
useExisting: BooleanValueAccessor,
|
|
61
|
-
multi: true
|
|
62
|
-
}
|
|
63
|
-
], usesInheritance: true, ngImport: i0 });
|
|
64
|
-
}
|
|
65
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
66
|
-
type: Directive,
|
|
67
|
-
args: [{
|
|
68
|
-
/* tslint:disable-next-line:directive-selector */
|
|
69
|
-
selector: 'bq-checkbox, bq-switch',
|
|
70
|
-
host: {
|
|
71
|
-
'(bqChange)': 'handleChangeEvent($event.target.checked)'
|
|
72
|
-
},
|
|
73
|
-
providers: [
|
|
74
|
-
{
|
|
75
|
-
provide: NG_VALUE_ACCESSOR,
|
|
76
|
-
useExisting: BooleanValueAccessor,
|
|
77
|
-
multi: true
|
|
78
|
-
}
|
|
79
|
-
]
|
|
80
|
-
}]
|
|
81
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
82
|
-
|
|
83
|
-
class NumericValueAccessor extends ValueAccessor {
|
|
84
|
-
constructor(el) {
|
|
85
|
-
super(el);
|
|
86
|
-
}
|
|
87
|
-
registerOnChange(fn) {
|
|
88
|
-
super.registerOnChange(value => {
|
|
89
|
-
fn(value === '' ? null : parseFloat(value));
|
|
90
|
-
});
|
|
91
|
-
}
|
|
92
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
93
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: NumericValueAccessor, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
94
|
-
{
|
|
95
|
-
provide: NG_VALUE_ACCESSOR,
|
|
96
|
-
useExisting: NumericValueAccessor,
|
|
97
|
-
multi: true
|
|
98
|
-
}
|
|
99
|
-
], usesInheritance: true, ngImport: i0 });
|
|
100
|
-
}
|
|
101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
102
|
-
type: Directive,
|
|
103
|
-
args: [{
|
|
104
|
-
/* tslint:disable-next-line:directive-selector */
|
|
105
|
-
selector: 'bq-input[type="number"], bq-slider:not[type="range"]',
|
|
106
|
-
host: {
|
|
107
|
-
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
108
|
-
},
|
|
109
|
-
providers: [
|
|
110
|
-
{
|
|
111
|
-
provide: NG_VALUE_ACCESSOR,
|
|
112
|
-
useExisting: NumericValueAccessor,
|
|
113
|
-
multi: true
|
|
114
|
-
}
|
|
115
|
-
]
|
|
116
|
-
}]
|
|
117
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
118
|
-
|
|
119
|
-
class RadioValueAccessor extends ValueAccessor {
|
|
120
|
-
constructor(el) {
|
|
121
|
-
super(el);
|
|
122
|
-
}
|
|
123
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
124
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: RadioValueAccessor, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
125
|
-
{
|
|
126
|
-
provide: NG_VALUE_ACCESSOR,
|
|
127
|
-
useExisting: RadioValueAccessor,
|
|
128
|
-
multi: true
|
|
129
|
-
}
|
|
130
|
-
], usesInheritance: true, ngImport: i0 });
|
|
131
|
-
}
|
|
132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
133
|
-
type: Directive,
|
|
134
|
-
args: [{
|
|
135
|
-
/* tslint:disable-next-line:directive-selector */
|
|
136
|
-
selector: 'bq-radio-group',
|
|
137
|
-
host: {
|
|
138
|
-
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
139
|
-
},
|
|
140
|
-
providers: [
|
|
141
|
-
{
|
|
142
|
-
provide: NG_VALUE_ACCESSOR,
|
|
143
|
-
useExisting: RadioValueAccessor,
|
|
144
|
-
multi: true
|
|
145
|
-
}
|
|
146
|
-
]
|
|
147
|
-
}]
|
|
148
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
149
|
-
|
|
150
|
-
class SelectValueAccessor extends ValueAccessor {
|
|
151
|
-
constructor(el) {
|
|
152
|
-
super(el);
|
|
153
|
-
}
|
|
154
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
155
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: SelectValueAccessor, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
156
|
-
{
|
|
157
|
-
provide: NG_VALUE_ACCESSOR,
|
|
158
|
-
useExisting: SelectValueAccessor,
|
|
159
|
-
multi: true
|
|
160
|
-
}
|
|
161
|
-
], usesInheritance: true, ngImport: i0 });
|
|
162
|
-
}
|
|
163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
164
|
-
type: Directive,
|
|
165
|
-
args: [{
|
|
166
|
-
/* tslint:disable-next-line:directive-selector */
|
|
167
|
-
selector: 'bq-select',
|
|
168
|
-
host: {
|
|
169
|
-
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
170
|
-
},
|
|
171
|
-
providers: [
|
|
172
|
-
{
|
|
173
|
-
provide: NG_VALUE_ACCESSOR,
|
|
174
|
-
useExisting: SelectValueAccessor,
|
|
175
|
-
multi: true
|
|
176
|
-
}
|
|
177
|
-
]
|
|
178
|
-
}]
|
|
179
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
180
|
-
|
|
181
|
-
class TextValueAccessor extends ValueAccessor {
|
|
182
|
-
constructor(el) {
|
|
183
|
-
super(el);
|
|
184
|
-
}
|
|
185
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
186
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: TextValueAccessor, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\", bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
187
|
-
{
|
|
188
|
-
provide: NG_VALUE_ACCESSOR,
|
|
189
|
-
useExisting: TextValueAccessor,
|
|
190
|
-
multi: true
|
|
191
|
-
}
|
|
192
|
-
], usesInheritance: true, ngImport: i0 });
|
|
193
|
-
}
|
|
194
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
195
|
-
type: Directive,
|
|
196
|
-
args: [{
|
|
197
|
-
/* tslint:disable-next-line:directive-selector */
|
|
198
|
-
selector: 'bq-date-picker, bq-input:not[type="number"], bq-slider[type="range", bq-textarea',
|
|
199
|
-
host: {
|
|
200
|
-
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
201
|
-
},
|
|
202
|
-
providers: [
|
|
203
|
-
{
|
|
204
|
-
provide: NG_VALUE_ACCESSOR,
|
|
205
|
-
useExisting: TextValueAccessor,
|
|
206
|
-
multi: true
|
|
207
|
-
}
|
|
208
|
-
]
|
|
209
|
-
}]
|
|
210
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
211
|
-
|
|
212
|
-
/* eslint-disable */
|
|
213
|
-
/* tslint:disable */
|
|
214
|
-
const proxyInputs = (Cmp, inputs) => {
|
|
215
|
-
const Prototype = Cmp.prototype;
|
|
216
|
-
inputs.forEach((item) => {
|
|
217
|
-
Object.defineProperty(Prototype, item, {
|
|
218
|
-
get() {
|
|
219
|
-
return this.el[item];
|
|
220
|
-
},
|
|
221
|
-
set(val) {
|
|
222
|
-
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
223
|
-
},
|
|
224
|
-
/**
|
|
225
|
-
* In the event that proxyInputs is called
|
|
226
|
-
* multiple times re-defining these inputs
|
|
227
|
-
* will cause an error to be thrown. As a result
|
|
228
|
-
* we set configurable: true to indicate these
|
|
229
|
-
* properties can be changed.
|
|
230
|
-
*/
|
|
231
|
-
configurable: true,
|
|
232
|
-
});
|
|
233
|
-
});
|
|
234
|
-
};
|
|
235
|
-
const proxyMethods = (Cmp, methods) => {
|
|
236
|
-
const Prototype = Cmp.prototype;
|
|
237
|
-
methods.forEach((methodName) => {
|
|
238
|
-
Prototype[methodName] = function () {
|
|
239
|
-
const args = arguments;
|
|
240
|
-
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
241
|
-
};
|
|
242
|
-
});
|
|
243
|
-
};
|
|
244
|
-
const proxyOutputs = (instance, el, events) => {
|
|
245
|
-
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
246
|
-
};
|
|
247
|
-
const defineCustomElement = (tagName, customElement) => {
|
|
248
|
-
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
249
|
-
customElements.define(tagName, customElement);
|
|
250
|
-
}
|
|
251
|
-
};
|
|
252
|
-
// tslint:disable-next-line: only-arrow-functions
|
|
253
|
-
function ProxyCmp(opts) {
|
|
254
|
-
const decorator = function (cls) {
|
|
255
|
-
const { defineCustomElementFn, inputs, methods } = opts;
|
|
256
|
-
if (defineCustomElementFn !== undefined) {
|
|
257
|
-
defineCustomElementFn();
|
|
258
|
-
}
|
|
259
|
-
if (inputs) {
|
|
260
|
-
proxyInputs(cls, inputs);
|
|
261
|
-
}
|
|
262
|
-
if (methods) {
|
|
263
|
-
proxyMethods(cls, methods);
|
|
264
|
-
}
|
|
265
|
-
return cls;
|
|
266
|
-
};
|
|
267
|
-
return decorator;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
let BqAccordion = class BqAccordion {
|
|
271
|
-
z;
|
|
272
|
-
el;
|
|
273
|
-
constructor(c, r, z) {
|
|
274
|
-
this.z = z;
|
|
275
|
-
c.detach();
|
|
276
|
-
this.el = r.nativeElement;
|
|
277
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose']);
|
|
278
|
-
}
|
|
279
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
280
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqAccordion, selector: "bq-accordion", inputs: { appearance: "appearance", disabled: "disabled", expanded: "expanded", noAnimation: "noAnimation", rotate: "rotate", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
281
|
-
};
|
|
282
|
-
BqAccordion = __decorate([
|
|
283
|
-
ProxyCmp({
|
|
284
|
-
inputs: ['appearance', 'disabled', 'expanded', 'noAnimation', 'rotate', 'size']
|
|
285
|
-
}),
|
|
286
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
287
|
-
], BqAccordion);
|
|
288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAccordion, decorators: [{
|
|
289
|
-
type: Component,
|
|
290
|
-
args: [{
|
|
291
|
-
selector: 'bq-accordion',
|
|
292
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
293
|
-
template: '<ng-content></ng-content>',
|
|
294
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
295
|
-
inputs: ['appearance', 'disabled', 'expanded', 'noAnimation', 'rotate', 'size'],
|
|
296
|
-
}]
|
|
297
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
298
|
-
let BqAccordionGroup = class BqAccordionGroup {
|
|
299
|
-
z;
|
|
300
|
-
el;
|
|
301
|
-
constructor(c, r, z) {
|
|
302
|
-
this.z = z;
|
|
303
|
-
c.detach();
|
|
304
|
-
this.el = r.nativeElement;
|
|
305
|
-
}
|
|
306
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
307
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqAccordionGroup, selector: "bq-accordion-group", inputs: { appearance: "appearance", expandAll: "expandAll", multiple: "multiple", noAnimation: "noAnimation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
308
|
-
};
|
|
309
|
-
BqAccordionGroup = __decorate([
|
|
310
|
-
ProxyCmp({
|
|
311
|
-
inputs: ['appearance', 'expandAll', 'multiple', 'noAnimation', 'size']
|
|
312
|
-
}),
|
|
313
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
314
|
-
], BqAccordionGroup);
|
|
315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
316
|
-
type: Component,
|
|
317
|
-
args: [{
|
|
318
|
-
selector: 'bq-accordion-group',
|
|
319
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
320
|
-
template: '<ng-content></ng-content>',
|
|
321
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
322
|
-
inputs: ['appearance', 'expandAll', 'multiple', 'noAnimation', 'size'],
|
|
323
|
-
}]
|
|
324
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
325
|
-
let BqAlert = class BqAlert {
|
|
326
|
-
z;
|
|
327
|
-
el;
|
|
328
|
-
constructor(c, r, z) {
|
|
329
|
-
this.z = z;
|
|
330
|
-
c.detach();
|
|
331
|
-
this.el = r.nativeElement;
|
|
332
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide']);
|
|
333
|
-
}
|
|
334
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
335
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqAlert, selector: "bq-alert", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", sticky: "sticky", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
336
|
-
};
|
|
337
|
-
BqAlert = __decorate([
|
|
338
|
-
ProxyCmp({
|
|
339
|
-
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'sticky', 'time', 'type'],
|
|
340
|
-
methods: ['hide', 'show']
|
|
341
|
-
}),
|
|
342
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
343
|
-
], BqAlert);
|
|
344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAlert, decorators: [{
|
|
345
|
-
type: Component,
|
|
346
|
-
args: [{
|
|
347
|
-
selector: 'bq-alert',
|
|
348
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
349
|
-
template: '<ng-content></ng-content>',
|
|
350
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
351
|
-
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'sticky', 'time', 'type'],
|
|
352
|
-
}]
|
|
353
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
354
|
-
let BqAvatar = class BqAvatar {
|
|
355
|
-
z;
|
|
356
|
-
el;
|
|
357
|
-
constructor(c, r, z) {
|
|
358
|
-
this.z = z;
|
|
359
|
-
c.detach();
|
|
360
|
-
this.el = r.nativeElement;
|
|
361
|
-
}
|
|
362
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
363
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqAvatar, selector: "bq-avatar", inputs: { altText: "altText", image: "image", initials: "initials", label: "label", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
364
|
-
};
|
|
365
|
-
BqAvatar = __decorate([
|
|
366
|
-
ProxyCmp({
|
|
367
|
-
inputs: ['altText', 'image', 'initials', 'label', 'shape', 'size']
|
|
368
|
-
}),
|
|
369
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
370
|
-
], BqAvatar);
|
|
371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqAvatar, decorators: [{
|
|
372
|
-
type: Component,
|
|
373
|
-
args: [{
|
|
374
|
-
selector: 'bq-avatar',
|
|
375
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
376
|
-
template: '<ng-content></ng-content>',
|
|
377
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
378
|
-
inputs: ['altText', 'image', 'initials', 'label', 'shape', 'size'],
|
|
379
|
-
}]
|
|
380
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
381
|
-
let BqBadge = class BqBadge {
|
|
382
|
-
z;
|
|
383
|
-
el;
|
|
384
|
-
constructor(c, r, z) {
|
|
385
|
-
this.z = z;
|
|
386
|
-
c.detach();
|
|
387
|
-
this.el = r.nativeElement;
|
|
388
|
-
}
|
|
389
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
390
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqBadge, selector: "bq-badge", inputs: { backgroundColor: "backgroundColor", size: "size", textColor: "textColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
391
|
-
};
|
|
392
|
-
BqBadge = __decorate([
|
|
393
|
-
ProxyCmp({
|
|
394
|
-
inputs: ['backgroundColor', 'size', 'textColor']
|
|
395
|
-
}),
|
|
396
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
397
|
-
], BqBadge);
|
|
398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBadge, decorators: [{
|
|
399
|
-
type: Component,
|
|
400
|
-
args: [{
|
|
401
|
-
selector: 'bq-badge',
|
|
402
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
403
|
-
template: '<ng-content></ng-content>',
|
|
404
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
405
|
-
inputs: ['backgroundColor', 'size', 'textColor'],
|
|
406
|
-
}]
|
|
407
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
408
|
-
let BqBreadcrumb = class BqBreadcrumb {
|
|
409
|
-
z;
|
|
410
|
-
el;
|
|
411
|
-
constructor(c, r, z) {
|
|
412
|
-
this.z = z;
|
|
413
|
-
c.detach();
|
|
414
|
-
this.el = r.nativeElement;
|
|
415
|
-
proxyOutputs(this, this.el, ['bqBreadcrumbBlur', 'bqBreadcrumbFocus', 'bqBreadcrumbClick']);
|
|
416
|
-
}
|
|
417
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
418
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqBreadcrumb, selector: "bq-breadcrumb", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
419
|
-
};
|
|
420
|
-
BqBreadcrumb = __decorate([
|
|
421
|
-
ProxyCmp({
|
|
422
|
-
inputs: ['ariaLabel']
|
|
423
|
-
}),
|
|
424
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
425
|
-
], BqBreadcrumb);
|
|
426
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
427
|
-
type: Component,
|
|
428
|
-
args: [{
|
|
429
|
-
selector: 'bq-breadcrumb',
|
|
430
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
431
|
-
template: '<ng-content></ng-content>',
|
|
432
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
433
|
-
inputs: ['ariaLabel'],
|
|
434
|
-
}]
|
|
435
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
436
|
-
let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
437
|
-
z;
|
|
438
|
-
el;
|
|
439
|
-
constructor(c, r, z) {
|
|
440
|
-
this.z = z;
|
|
441
|
-
c.detach();
|
|
442
|
-
this.el = r.nativeElement;
|
|
443
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
444
|
-
}
|
|
445
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
446
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqBreadcrumbItem, selector: "bq-breadcrumb-item", inputs: { ariaLabel: "ariaLabel", href: "href", isLastItem: "isLastItem", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
447
|
-
};
|
|
448
|
-
BqBreadcrumbItem = __decorate([
|
|
449
|
-
ProxyCmp({
|
|
450
|
-
inputs: ['ariaLabel', 'href', 'isLastItem', 'rel', 'target']
|
|
451
|
-
}),
|
|
452
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
453
|
-
], BqBreadcrumbItem);
|
|
454
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
455
|
-
type: Component,
|
|
456
|
-
args: [{
|
|
457
|
-
selector: 'bq-breadcrumb-item',
|
|
458
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
459
|
-
template: '<ng-content></ng-content>',
|
|
460
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
461
|
-
inputs: ['ariaLabel', 'href', 'isLastItem', 'rel', 'target'],
|
|
462
|
-
}]
|
|
463
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
464
|
-
let BqButton = class BqButton {
|
|
465
|
-
z;
|
|
466
|
-
el;
|
|
467
|
-
constructor(c, r, z) {
|
|
468
|
-
this.z = z;
|
|
469
|
-
c.detach();
|
|
470
|
-
this.el = r.nativeElement;
|
|
471
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
472
|
-
}
|
|
473
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
474
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqButton, selector: "bq-button", inputs: { appearance: "appearance", block: "block", border: "border", disabled: "disabled", download: "download", href: "href", justifyContent: "justifyContent", loading: "loading", size: "size", target: "target", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
475
|
-
};
|
|
476
|
-
BqButton = __decorate([
|
|
477
|
-
ProxyCmp({
|
|
478
|
-
inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'loading', 'size', 'target', 'type', 'variant']
|
|
479
|
-
}),
|
|
480
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
481
|
-
], BqButton);
|
|
482
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqButton, decorators: [{
|
|
483
|
-
type: Component,
|
|
484
|
-
args: [{
|
|
485
|
-
selector: 'bq-button',
|
|
486
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
487
|
-
template: '<ng-content></ng-content>',
|
|
488
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
489
|
-
inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'loading', 'size', 'target', 'type', 'variant'],
|
|
490
|
-
}]
|
|
491
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
492
|
-
let BqCard = class BqCard {
|
|
493
|
-
z;
|
|
494
|
-
el;
|
|
495
|
-
constructor(c, r, z) {
|
|
496
|
-
this.z = z;
|
|
497
|
-
c.detach();
|
|
498
|
-
this.el = r.nativeElement;
|
|
499
|
-
}
|
|
500
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
501
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqCard, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
502
|
-
};
|
|
503
|
-
BqCard = __decorate([
|
|
504
|
-
ProxyCmp({
|
|
505
|
-
inputs: ['border', 'type']
|
|
506
|
-
}),
|
|
507
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
508
|
-
], BqCard);
|
|
509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqCard, decorators: [{
|
|
510
|
-
type: Component,
|
|
511
|
-
args: [{
|
|
512
|
-
selector: 'bq-card',
|
|
513
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
514
|
-
template: '<ng-content></ng-content>',
|
|
515
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
516
|
-
inputs: ['border', 'type'],
|
|
517
|
-
}]
|
|
518
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
519
|
-
let BqCheckbox = class BqCheckbox {
|
|
520
|
-
z;
|
|
521
|
-
el;
|
|
522
|
-
constructor(c, r, z) {
|
|
523
|
-
this.z = z;
|
|
524
|
-
c.detach();
|
|
525
|
-
this.el = r.nativeElement;
|
|
526
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
527
|
-
}
|
|
528
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
529
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqCheckbox, selector: "bq-checkbox", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", formValidationMessage: "formValidationMessage", indeterminate: "indeterminate", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
530
|
-
};
|
|
531
|
-
BqCheckbox = __decorate([
|
|
532
|
-
ProxyCmp({
|
|
533
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'formValidationMessage', 'indeterminate', 'name', 'required', 'value'],
|
|
534
|
-
methods: ['vClick', 'vFocus', 'vBlur']
|
|
535
|
-
}),
|
|
536
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
537
|
-
], BqCheckbox);
|
|
538
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
539
|
-
type: Component,
|
|
540
|
-
args: [{
|
|
541
|
-
selector: 'bq-checkbox',
|
|
542
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
543
|
-
template: '<ng-content></ng-content>',
|
|
544
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
545
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'formValidationMessage', 'indeterminate', 'name', 'required', 'value'],
|
|
546
|
-
}]
|
|
547
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
548
|
-
let BqDatePicker = class BqDatePicker {
|
|
549
|
-
z;
|
|
550
|
-
el;
|
|
551
|
-
constructor(c, r, z) {
|
|
552
|
-
this.z = z;
|
|
553
|
-
c.detach();
|
|
554
|
-
this.el = r.nativeElement;
|
|
555
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus']);
|
|
556
|
-
}
|
|
557
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
558
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqDatePicker, selector: "bq-date-picker", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", disableClear: "disableClear", disabled: "disabled", distance: "distance", firstDayOfWeek: "firstDayOfWeek", form: "form", formatOptions: "formatOptions", isDateDisallowed: "isDateDisallowed", locale: "locale", max: "max", min: "min", months: "months", monthsPerView: "monthsPerView", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", required: "required", showOutsideDays: "showOutsideDays", skidding: "skidding", strategy: "strategy", tentative: "tentative", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
559
|
-
};
|
|
560
|
-
BqDatePicker = __decorate([
|
|
561
|
-
ProxyCmp({
|
|
562
|
-
inputs: ['autofocus', 'clearButtonLabel', 'disableClear', 'disabled', 'distance', 'firstDayOfWeek', 'form', 'formatOptions', 'isDateDisallowed', 'locale', 'max', 'min', 'months', 'monthsPerView', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'required', 'showOutsideDays', 'skidding', 'strategy', 'tentative', 'type', 'validationStatus', 'value'],
|
|
563
|
-
methods: ['clear']
|
|
564
|
-
}),
|
|
565
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
566
|
-
], BqDatePicker);
|
|
567
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
568
|
-
type: Component,
|
|
569
|
-
args: [{
|
|
570
|
-
selector: 'bq-date-picker',
|
|
571
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
572
|
-
template: '<ng-content></ng-content>',
|
|
573
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
574
|
-
inputs: ['autofocus', 'clearButtonLabel', 'disableClear', 'disabled', 'distance', 'firstDayOfWeek', 'form', 'formatOptions', 'isDateDisallowed', 'locale', 'max', 'min', 'months', 'monthsPerView', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'required', 'showOutsideDays', 'skidding', 'strategy', 'tentative', 'type', 'validationStatus', 'value'],
|
|
575
|
-
}]
|
|
576
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
577
|
-
let BqDialog = class BqDialog {
|
|
578
|
-
z;
|
|
579
|
-
el;
|
|
580
|
-
constructor(c, r, z) {
|
|
581
|
-
this.z = z;
|
|
582
|
-
c.detach();
|
|
583
|
-
this.el = r.nativeElement;
|
|
584
|
-
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
585
|
-
}
|
|
586
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
587
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqDialog, selector: "bq-dialog", inputs: { border: "border", disableBackdrop: "disableBackdrop", disableCloseClickOutside: "disableCloseClickOutside", disableCloseEscKeydown: "disableCloseEscKeydown", footerAppearance: "footerAppearance", hideCloseButton: "hideCloseButton", open: "open", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
588
|
-
};
|
|
589
|
-
BqDialog = __decorate([
|
|
590
|
-
ProxyCmp({
|
|
591
|
-
inputs: ['border', 'disableBackdrop', 'disableCloseClickOutside', 'disableCloseEscKeydown', 'footerAppearance', 'hideCloseButton', 'open', 'size'],
|
|
592
|
-
methods: ['show', 'hide', 'cancel']
|
|
593
|
-
}),
|
|
594
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
595
|
-
], BqDialog);
|
|
596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDialog, decorators: [{
|
|
597
|
-
type: Component,
|
|
598
|
-
args: [{
|
|
599
|
-
selector: 'bq-dialog',
|
|
600
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
601
|
-
template: '<ng-content></ng-content>',
|
|
602
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
603
|
-
inputs: ['border', 'disableBackdrop', 'disableCloseClickOutside', 'disableCloseEscKeydown', 'footerAppearance', 'hideCloseButton', 'open', 'size'],
|
|
604
|
-
}]
|
|
605
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
606
|
-
let BqDivider = class BqDivider {
|
|
607
|
-
z;
|
|
608
|
-
el;
|
|
609
|
-
constructor(c, r, z) {
|
|
610
|
-
this.z = z;
|
|
611
|
-
c.detach();
|
|
612
|
-
this.el = r.nativeElement;
|
|
613
|
-
}
|
|
614
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
615
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqDivider, selector: "bq-divider", inputs: { dashed: "dashed", orientation: "orientation", strokeBasis: "strokeBasis", strokeColor: "strokeColor", strokeDashGap: "strokeDashGap", strokeDashWidth: "strokeDashWidth", strokeLinecap: "strokeLinecap", strokeThickness: "strokeThickness", titleAlignment: "titleAlignment" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
616
|
-
};
|
|
617
|
-
BqDivider = __decorate([
|
|
618
|
-
ProxyCmp({
|
|
619
|
-
inputs: ['dashed', 'orientation', 'strokeBasis', 'strokeColor', 'strokeDashGap', 'strokeDashWidth', 'strokeLinecap', 'strokeThickness', 'titleAlignment']
|
|
620
|
-
}),
|
|
621
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
622
|
-
], BqDivider);
|
|
623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDivider, decorators: [{
|
|
624
|
-
type: Component,
|
|
625
|
-
args: [{
|
|
626
|
-
selector: 'bq-divider',
|
|
627
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
628
|
-
template: '<ng-content></ng-content>',
|
|
629
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
630
|
-
inputs: ['dashed', 'orientation', 'strokeBasis', 'strokeColor', 'strokeDashGap', 'strokeDashWidth', 'strokeLinecap', 'strokeThickness', 'titleAlignment'],
|
|
631
|
-
}]
|
|
632
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
633
|
-
let BqDrawer = class BqDrawer {
|
|
634
|
-
z;
|
|
635
|
-
el;
|
|
636
|
-
constructor(c, r, z) {
|
|
637
|
-
this.z = z;
|
|
638
|
-
c.detach();
|
|
639
|
-
this.el = r.nativeElement;
|
|
640
|
-
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
641
|
-
}
|
|
642
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
643
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqDrawer, selector: "bq-drawer", inputs: { closeOnClickOutside: "closeOnClickOutside", closeOnEsc: "closeOnEsc", enableBackdrop: "enableBackdrop", open: "open", placement: "placement", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
644
|
-
};
|
|
645
|
-
BqDrawer = __decorate([
|
|
646
|
-
ProxyCmp({
|
|
647
|
-
inputs: ['closeOnClickOutside', 'closeOnEsc', 'enableBackdrop', 'open', 'placement', 'position'],
|
|
648
|
-
methods: ['hide', 'show']
|
|
649
|
-
}),
|
|
650
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
651
|
-
], BqDrawer);
|
|
652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDrawer, decorators: [{
|
|
653
|
-
type: Component,
|
|
654
|
-
args: [{
|
|
655
|
-
selector: 'bq-drawer',
|
|
656
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
657
|
-
template: '<ng-content></ng-content>',
|
|
658
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
659
|
-
inputs: ['closeOnClickOutside', 'closeOnEsc', 'enableBackdrop', 'open', 'placement', 'position'],
|
|
660
|
-
}]
|
|
661
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
662
|
-
let BqDropdown = class BqDropdown {
|
|
663
|
-
z;
|
|
664
|
-
el;
|
|
665
|
-
constructor(c, r, z) {
|
|
666
|
-
this.z = z;
|
|
667
|
-
c.detach();
|
|
668
|
-
this.el = r.nativeElement;
|
|
669
|
-
proxyOutputs(this, this.el, ['bqOpen']);
|
|
670
|
-
}
|
|
671
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
672
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqDropdown, selector: "bq-dropdown", inputs: { disabled: "disabled", distance: "distance", keepOpenOnSelect: "keepOpenOnSelect", open: "open", panelHeight: "panelHeight", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
673
|
-
};
|
|
674
|
-
BqDropdown = __decorate([
|
|
675
|
-
ProxyCmp({
|
|
676
|
-
inputs: ['disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy']
|
|
677
|
-
}),
|
|
678
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
679
|
-
], BqDropdown);
|
|
680
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqDropdown, decorators: [{
|
|
681
|
-
type: Component,
|
|
682
|
-
args: [{
|
|
683
|
-
selector: 'bq-dropdown',
|
|
684
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
685
|
-
template: '<ng-content></ng-content>',
|
|
686
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
687
|
-
inputs: ['disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
688
|
-
}]
|
|
689
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
690
|
-
let BqEmptyState = class BqEmptyState {
|
|
691
|
-
z;
|
|
692
|
-
el;
|
|
693
|
-
constructor(c, r, z) {
|
|
694
|
-
this.z = z;
|
|
695
|
-
c.detach();
|
|
696
|
-
this.el = r.nativeElement;
|
|
697
|
-
}
|
|
698
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
699
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqEmptyState, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
700
|
-
};
|
|
701
|
-
BqEmptyState = __decorate([
|
|
702
|
-
ProxyCmp({
|
|
703
|
-
inputs: ['size']
|
|
704
|
-
}),
|
|
705
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
706
|
-
], BqEmptyState);
|
|
707
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
708
|
-
type: Component,
|
|
709
|
-
args: [{
|
|
710
|
-
selector: 'bq-empty-state',
|
|
711
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
712
|
-
template: '<ng-content></ng-content>',
|
|
713
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
714
|
-
inputs: ['size'],
|
|
715
|
-
}]
|
|
716
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
717
|
-
let BqIcon = class BqIcon {
|
|
718
|
-
z;
|
|
719
|
-
el;
|
|
720
|
-
constructor(c, r, z) {
|
|
721
|
-
this.z = z;
|
|
722
|
-
c.detach();
|
|
723
|
-
this.el = r.nativeElement;
|
|
724
|
-
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
725
|
-
}
|
|
726
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
727
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqIcon, selector: "bq-icon", inputs: { color: "color", label: "label", name: "name", size: "size", src: "src", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
728
|
-
};
|
|
729
|
-
BqIcon = __decorate([
|
|
730
|
-
ProxyCmp({
|
|
731
|
-
inputs: ['color', 'label', 'name', 'size', 'src', 'weight']
|
|
732
|
-
}),
|
|
733
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
734
|
-
], BqIcon);
|
|
735
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqIcon, decorators: [{
|
|
736
|
-
type: Component,
|
|
737
|
-
args: [{
|
|
738
|
-
selector: 'bq-icon',
|
|
739
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
740
|
-
template: '<ng-content></ng-content>',
|
|
741
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
742
|
-
inputs: ['color', 'label', 'name', 'size', 'src', 'weight'],
|
|
743
|
-
}]
|
|
744
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
745
|
-
let BqInput = class BqInput {
|
|
746
|
-
z;
|
|
747
|
-
el;
|
|
748
|
-
constructor(c, r, z) {
|
|
749
|
-
this.z = z;
|
|
750
|
-
c.detach();
|
|
751
|
-
this.el = r.nativeElement;
|
|
752
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
753
|
-
}
|
|
754
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
755
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqInput, selector: "bq-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", form: "form", inputmode: "inputmode", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
756
|
-
};
|
|
757
|
-
BqInput = __decorate([
|
|
758
|
-
ProxyCmp({
|
|
759
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value']
|
|
760
|
-
}),
|
|
761
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
762
|
-
], BqInput);
|
|
763
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqInput, decorators: [{
|
|
764
|
-
type: Component,
|
|
765
|
-
args: [{
|
|
766
|
-
selector: 'bq-input',
|
|
767
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
768
|
-
template: '<ng-content></ng-content>',
|
|
769
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
770
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value'],
|
|
771
|
-
}]
|
|
772
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
773
|
-
let BqNotification = class BqNotification {
|
|
774
|
-
z;
|
|
775
|
-
el;
|
|
776
|
-
constructor(c, r, z) {
|
|
777
|
-
this.z = z;
|
|
778
|
-
c.detach();
|
|
779
|
-
this.el = r.nativeElement;
|
|
780
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
781
|
-
}
|
|
782
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
783
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqNotification, selector: "bq-notification", inputs: { autoDismiss: "autoDismiss", border: "border", disableClose: "disableClose", hideIcon: "hideIcon", open: "open", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
784
|
-
};
|
|
785
|
-
BqNotification = __decorate([
|
|
786
|
-
ProxyCmp({
|
|
787
|
-
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'time', 'type'],
|
|
788
|
-
methods: ['hide', 'show', 'toast']
|
|
789
|
-
}),
|
|
790
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
791
|
-
], BqNotification);
|
|
792
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqNotification, decorators: [{
|
|
793
|
-
type: Component,
|
|
794
|
-
args: [{
|
|
795
|
-
selector: 'bq-notification',
|
|
796
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
797
|
-
template: '<ng-content></ng-content>',
|
|
798
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
799
|
-
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'time', 'type'],
|
|
800
|
-
}]
|
|
801
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
802
|
-
let BqOption = class BqOption {
|
|
803
|
-
z;
|
|
804
|
-
el;
|
|
805
|
-
constructor(c, r, z) {
|
|
806
|
-
this.z = z;
|
|
807
|
-
c.detach();
|
|
808
|
-
this.el = r.nativeElement;
|
|
809
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
810
|
-
}
|
|
811
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
812
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqOption, selector: "bq-option", inputs: { disabled: "disabled", hidden: "hidden", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
813
|
-
};
|
|
814
|
-
BqOption = __decorate([
|
|
815
|
-
ProxyCmp({
|
|
816
|
-
inputs: ['disabled', 'hidden', 'selected', 'value']
|
|
817
|
-
}),
|
|
818
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
819
|
-
], BqOption);
|
|
820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOption, decorators: [{
|
|
821
|
-
type: Component,
|
|
822
|
-
args: [{
|
|
823
|
-
selector: 'bq-option',
|
|
824
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
825
|
-
template: '<ng-content></ng-content>',
|
|
826
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
827
|
-
inputs: ['disabled', 'hidden', 'selected', 'value'],
|
|
828
|
-
}]
|
|
829
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
830
|
-
let BqOptionGroup = class BqOptionGroup {
|
|
831
|
-
z;
|
|
832
|
-
el;
|
|
833
|
-
constructor(c, r, z) {
|
|
834
|
-
this.z = z;
|
|
835
|
-
c.detach();
|
|
836
|
-
this.el = r.nativeElement;
|
|
837
|
-
}
|
|
838
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
839
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqOptionGroup, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
840
|
-
};
|
|
841
|
-
BqOptionGroup = __decorate([
|
|
842
|
-
ProxyCmp({}),
|
|
843
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
844
|
-
], BqOptionGroup);
|
|
845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
846
|
-
type: Component,
|
|
847
|
-
args: [{
|
|
848
|
-
selector: 'bq-option-group',
|
|
849
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
850
|
-
template: '<ng-content></ng-content>',
|
|
851
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
852
|
-
inputs: [],
|
|
853
|
-
}]
|
|
854
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
855
|
-
let BqOptionList = class BqOptionList {
|
|
856
|
-
z;
|
|
857
|
-
el;
|
|
858
|
-
constructor(c, r, z) {
|
|
859
|
-
this.z = z;
|
|
860
|
-
c.detach();
|
|
861
|
-
this.el = r.nativeElement;
|
|
862
|
-
proxyOutputs(this, this.el, ['bqSelect']);
|
|
863
|
-
}
|
|
864
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
865
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqOptionList, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
866
|
-
};
|
|
867
|
-
BqOptionList = __decorate([
|
|
868
|
-
ProxyCmp({
|
|
869
|
-
inputs: ['ariaLabel']
|
|
870
|
-
}),
|
|
871
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
872
|
-
], BqOptionList);
|
|
873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqOptionList, decorators: [{
|
|
874
|
-
type: Component,
|
|
875
|
-
args: [{
|
|
876
|
-
selector: 'bq-option-list',
|
|
877
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
878
|
-
template: '<ng-content></ng-content>',
|
|
879
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
880
|
-
inputs: ['ariaLabel'],
|
|
881
|
-
}]
|
|
882
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
883
|
-
let BqPageTitle = class BqPageTitle {
|
|
884
|
-
z;
|
|
885
|
-
el;
|
|
886
|
-
constructor(c, r, z) {
|
|
887
|
-
this.z = z;
|
|
888
|
-
c.detach();
|
|
889
|
-
this.el = r.nativeElement;
|
|
890
|
-
}
|
|
891
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqPageTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
892
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqPageTitle, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
893
|
-
};
|
|
894
|
-
BqPageTitle = __decorate([
|
|
895
|
-
ProxyCmp({}),
|
|
896
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
897
|
-
], BqPageTitle);
|
|
898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
899
|
-
type: Component,
|
|
900
|
-
args: [{
|
|
901
|
-
selector: 'bq-page-title',
|
|
902
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
903
|
-
template: '<ng-content></ng-content>',
|
|
904
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
905
|
-
inputs: [],
|
|
906
|
-
}]
|
|
907
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
908
|
-
let BqPanel = class BqPanel {
|
|
909
|
-
z;
|
|
910
|
-
el;
|
|
911
|
-
constructor(c, r, z) {
|
|
912
|
-
this.z = z;
|
|
913
|
-
c.detach();
|
|
914
|
-
this.el = r.nativeElement;
|
|
915
|
-
}
|
|
916
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
917
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqPanel, selector: "bq-panel", inputs: { distance: "distance", open: "open", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
918
|
-
};
|
|
919
|
-
BqPanel = __decorate([
|
|
920
|
-
ProxyCmp({
|
|
921
|
-
inputs: ['distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy']
|
|
922
|
-
}),
|
|
923
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
924
|
-
], BqPanel);
|
|
925
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqPanel, decorators: [{
|
|
926
|
-
type: Component,
|
|
927
|
-
args: [{
|
|
928
|
-
selector: 'bq-panel',
|
|
929
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
930
|
-
template: '<ng-content></ng-content>',
|
|
931
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
932
|
-
inputs: ['distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
933
|
-
}]
|
|
934
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
935
|
-
let BqProgress = class BqProgress {
|
|
936
|
-
z;
|
|
937
|
-
el;
|
|
938
|
-
constructor(c, r, z) {
|
|
939
|
-
this.z = z;
|
|
940
|
-
c.detach();
|
|
941
|
-
this.el = r.nativeElement;
|
|
942
|
-
}
|
|
943
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
944
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqProgress, selector: "bq-progress", inputs: { borderShape: "borderShape", enableTooltip: "enableTooltip", indeterminate: "indeterminate", label: "label", thickness: "thickness", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
945
|
-
};
|
|
946
|
-
BqProgress = __decorate([
|
|
947
|
-
ProxyCmp({
|
|
948
|
-
inputs: ['borderShape', 'enableTooltip', 'indeterminate', 'label', 'thickness', 'type', 'value']
|
|
949
|
-
}),
|
|
950
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
951
|
-
], BqProgress);
|
|
952
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqProgress, decorators: [{
|
|
953
|
-
type: Component,
|
|
954
|
-
args: [{
|
|
955
|
-
selector: 'bq-progress',
|
|
956
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
957
|
-
template: '<ng-content></ng-content>',
|
|
958
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
959
|
-
inputs: ['borderShape', 'enableTooltip', 'indeterminate', 'label', 'thickness', 'type', 'value'],
|
|
960
|
-
}]
|
|
961
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
962
|
-
let BqRadio = class BqRadio {
|
|
963
|
-
z;
|
|
964
|
-
el;
|
|
965
|
-
constructor(c, r, z) {
|
|
966
|
-
this.z = z;
|
|
967
|
-
c.detach();
|
|
968
|
-
this.el = r.nativeElement;
|
|
969
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
970
|
-
}
|
|
971
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
972
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqRadio, selector: "bq-radio", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formId: "formId", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
973
|
-
};
|
|
974
|
-
BqRadio = __decorate([
|
|
975
|
-
ProxyCmp({
|
|
976
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'name', 'required', 'value'],
|
|
977
|
-
methods: ['vClick', 'vFocus', 'vBlur']
|
|
978
|
-
}),
|
|
979
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
980
|
-
], BqRadio);
|
|
981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqRadio, decorators: [{
|
|
982
|
-
type: Component,
|
|
983
|
-
args: [{
|
|
984
|
-
selector: 'bq-radio',
|
|
985
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
986
|
-
template: '<ng-content></ng-content>',
|
|
987
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
988
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'name', 'required', 'value'],
|
|
989
|
-
}]
|
|
990
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
991
|
-
let BqRadioGroup = class BqRadioGroup {
|
|
992
|
-
z;
|
|
993
|
-
el;
|
|
994
|
-
constructor(c, r, z) {
|
|
995
|
-
this.z = z;
|
|
996
|
-
c.detach();
|
|
997
|
-
this.el = r.nativeElement;
|
|
998
|
-
proxyOutputs(this, this.el, ['bqChange']);
|
|
999
|
-
}
|
|
1000
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1001
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqRadioGroup, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1002
|
-
};
|
|
1003
|
-
BqRadioGroup = __decorate([
|
|
1004
|
-
ProxyCmp({
|
|
1005
|
-
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'value']
|
|
1006
|
-
}),
|
|
1007
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1008
|
-
], BqRadioGroup);
|
|
1009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
1010
|
-
type: Component,
|
|
1011
|
-
args: [{
|
|
1012
|
-
selector: 'bq-radio-group',
|
|
1013
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1014
|
-
template: '<ng-content></ng-content>',
|
|
1015
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1016
|
-
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'value'],
|
|
1017
|
-
}]
|
|
1018
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1019
|
-
let BqSelect = class BqSelect {
|
|
1020
|
-
z;
|
|
1021
|
-
el;
|
|
1022
|
-
constructor(c, r, z) {
|
|
1023
|
-
this.z = z;
|
|
1024
|
-
c.detach();
|
|
1025
|
-
this.el = r.nativeElement;
|
|
1026
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
1027
|
-
}
|
|
1028
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1029
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSelect, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", distance: "distance", form: "form", keepOpenOnSelect: "keepOpenOnSelect", maxTagsVisible: "maxTagsVisible", multiple: "multiple", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1030
|
-
};
|
|
1031
|
-
BqSelect = __decorate([
|
|
1032
|
-
ProxyCmp({
|
|
1033
|
-
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
1034
|
-
methods: ['clear']
|
|
1035
|
-
}),
|
|
1036
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1037
|
-
], BqSelect);
|
|
1038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSelect, decorators: [{
|
|
1039
|
-
type: Component,
|
|
1040
|
-
args: [{
|
|
1041
|
-
selector: 'bq-select',
|
|
1042
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1043
|
-
template: '<ng-content></ng-content>',
|
|
1044
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1045
|
-
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
1046
|
-
}]
|
|
1047
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1048
|
-
let BqSideMenu = class BqSideMenu {
|
|
1049
|
-
z;
|
|
1050
|
-
el;
|
|
1051
|
-
constructor(c, r, z) {
|
|
1052
|
-
this.z = z;
|
|
1053
|
-
c.detach();
|
|
1054
|
-
this.el = r.nativeElement;
|
|
1055
|
-
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
1056
|
-
}
|
|
1057
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1058
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSideMenu, selector: "bq-side-menu", inputs: { appearance: "appearance", collapse: "collapse", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1059
|
-
};
|
|
1060
|
-
BqSideMenu = __decorate([
|
|
1061
|
-
ProxyCmp({
|
|
1062
|
-
inputs: ['appearance', 'collapse', 'size'],
|
|
1063
|
-
methods: ['toggleCollapse']
|
|
1064
|
-
}),
|
|
1065
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1066
|
-
], BqSideMenu);
|
|
1067
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
1068
|
-
type: Component,
|
|
1069
|
-
args: [{
|
|
1070
|
-
selector: 'bq-side-menu',
|
|
1071
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1072
|
-
template: '<ng-content></ng-content>',
|
|
1073
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1074
|
-
inputs: ['appearance', 'collapse', 'size'],
|
|
1075
|
-
}]
|
|
1076
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1077
|
-
let BqSideMenuItem = class BqSideMenuItem {
|
|
1078
|
-
z;
|
|
1079
|
-
el;
|
|
1080
|
-
constructor(c, r, z) {
|
|
1081
|
-
this.z = z;
|
|
1082
|
-
c.detach();
|
|
1083
|
-
this.el = r.nativeElement;
|
|
1084
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
1085
|
-
}
|
|
1086
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1087
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSideMenuItem, selector: "bq-side-menu-item", inputs: { active: "active", collapse: "collapse", disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1088
|
-
};
|
|
1089
|
-
BqSideMenuItem = __decorate([
|
|
1090
|
-
ProxyCmp({
|
|
1091
|
-
inputs: ['active', 'collapse', 'disabled']
|
|
1092
|
-
}),
|
|
1093
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1094
|
-
], BqSideMenuItem);
|
|
1095
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
1096
|
-
type: Component,
|
|
1097
|
-
args: [{
|
|
1098
|
-
selector: 'bq-side-menu-item',
|
|
1099
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1100
|
-
template: '<ng-content></ng-content>',
|
|
1101
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1102
|
-
inputs: ['active', 'collapse', 'disabled'],
|
|
1103
|
-
}]
|
|
1104
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1105
|
-
let BqSlider = class BqSlider {
|
|
1106
|
-
z;
|
|
1107
|
-
el;
|
|
1108
|
-
constructor(c, r, z) {
|
|
1109
|
-
this.z = z;
|
|
1110
|
-
c.detach();
|
|
1111
|
-
this.el = r.nativeElement;
|
|
1112
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
1113
|
-
}
|
|
1114
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1115
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSlider, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", enableTooltip: "enableTooltip", enableValueIndicator: "enableValueIndicator", gap: "gap", max: "max", min: "min", step: "step", tooltipAlwaysVisible: "tooltipAlwaysVisible", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1116
|
-
};
|
|
1117
|
-
BqSlider = __decorate([
|
|
1118
|
-
ProxyCmp({
|
|
1119
|
-
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'step', 'tooltipAlwaysVisible', 'type', 'value']
|
|
1120
|
-
}),
|
|
1121
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1122
|
-
], BqSlider);
|
|
1123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSlider, decorators: [{
|
|
1124
|
-
type: Component,
|
|
1125
|
-
args: [{
|
|
1126
|
-
selector: 'bq-slider',
|
|
1127
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1128
|
-
template: '<ng-content></ng-content>',
|
|
1129
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1130
|
-
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'step', 'tooltipAlwaysVisible', 'type', 'value'],
|
|
1131
|
-
}]
|
|
1132
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1133
|
-
let BqSpinner = class BqSpinner {
|
|
1134
|
-
z;
|
|
1135
|
-
el;
|
|
1136
|
-
constructor(c, r, z) {
|
|
1137
|
-
this.z = z;
|
|
1138
|
-
c.detach();
|
|
1139
|
-
this.el = r.nativeElement;
|
|
1140
|
-
}
|
|
1141
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1142
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSpinner, selector: "bq-spinner", inputs: { animation: "animation", size: "size", textPosition: "textPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1143
|
-
};
|
|
1144
|
-
BqSpinner = __decorate([
|
|
1145
|
-
ProxyCmp({
|
|
1146
|
-
inputs: ['animation', 'size', 'textPosition']
|
|
1147
|
-
}),
|
|
1148
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1149
|
-
], BqSpinner);
|
|
1150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSpinner, decorators: [{
|
|
1151
|
-
type: Component,
|
|
1152
|
-
args: [{
|
|
1153
|
-
selector: 'bq-spinner',
|
|
1154
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1155
|
-
template: '<ng-content></ng-content>',
|
|
1156
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1157
|
-
inputs: ['animation', 'size', 'textPosition'],
|
|
1158
|
-
}]
|
|
1159
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1160
|
-
let BqStatus = class BqStatus {
|
|
1161
|
-
z;
|
|
1162
|
-
el;
|
|
1163
|
-
constructor(c, r, z) {
|
|
1164
|
-
this.z = z;
|
|
1165
|
-
c.detach();
|
|
1166
|
-
this.el = r.nativeElement;
|
|
1167
|
-
}
|
|
1168
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1169
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqStatus, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1170
|
-
};
|
|
1171
|
-
BqStatus = __decorate([
|
|
1172
|
-
ProxyCmp({
|
|
1173
|
-
inputs: ['type']
|
|
1174
|
-
}),
|
|
1175
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1176
|
-
], BqStatus);
|
|
1177
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqStatus, decorators: [{
|
|
1178
|
-
type: Component,
|
|
1179
|
-
args: [{
|
|
1180
|
-
selector: 'bq-status',
|
|
1181
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1182
|
-
template: '<ng-content></ng-content>',
|
|
1183
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1184
|
-
inputs: ['type'],
|
|
1185
|
-
}]
|
|
1186
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1187
|
-
let BqStepItem = class BqStepItem {
|
|
1188
|
-
z;
|
|
1189
|
-
el;
|
|
1190
|
-
constructor(c, r, z) {
|
|
1191
|
-
this.z = z;
|
|
1192
|
-
c.detach();
|
|
1193
|
-
this.el = r.nativeElement;
|
|
1194
|
-
proxyOutputs(this, this.el, ['bqClick']);
|
|
1195
|
-
}
|
|
1196
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1197
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqStepItem, selector: "bq-step-item", inputs: { size: "size", status: "status", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1198
|
-
};
|
|
1199
|
-
BqStepItem = __decorate([
|
|
1200
|
-
ProxyCmp({
|
|
1201
|
-
inputs: ['size', 'status', 'type']
|
|
1202
|
-
}),
|
|
1203
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1204
|
-
], BqStepItem);
|
|
1205
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqStepItem, decorators: [{
|
|
1206
|
-
type: Component,
|
|
1207
|
-
args: [{
|
|
1208
|
-
selector: 'bq-step-item',
|
|
1209
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1210
|
-
template: '<ng-content></ng-content>',
|
|
1211
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1212
|
-
inputs: ['size', 'status', 'type'],
|
|
1213
|
-
}]
|
|
1214
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1215
|
-
let BqSteps = class BqSteps {
|
|
1216
|
-
z;
|
|
1217
|
-
el;
|
|
1218
|
-
constructor(c, r, z) {
|
|
1219
|
-
this.z = z;
|
|
1220
|
-
c.detach();
|
|
1221
|
-
this.el = r.nativeElement;
|
|
1222
|
-
}
|
|
1223
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1224
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSteps, selector: "bq-steps", inputs: { dividerColor: "dividerColor", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1225
|
-
};
|
|
1226
|
-
BqSteps = __decorate([
|
|
1227
|
-
ProxyCmp({
|
|
1228
|
-
inputs: ['dividerColor', 'size', 'type']
|
|
1229
|
-
}),
|
|
1230
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1231
|
-
], BqSteps);
|
|
1232
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSteps, decorators: [{
|
|
1233
|
-
type: Component,
|
|
1234
|
-
args: [{
|
|
1235
|
-
selector: 'bq-steps',
|
|
1236
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1237
|
-
template: '<ng-content></ng-content>',
|
|
1238
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1239
|
-
inputs: ['dividerColor', 'size', 'type'],
|
|
1240
|
-
}]
|
|
1241
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1242
|
-
let BqSwitch = class BqSwitch {
|
|
1243
|
-
z;
|
|
1244
|
-
el;
|
|
1245
|
-
constructor(c, r, z) {
|
|
1246
|
-
this.z = z;
|
|
1247
|
-
c.detach();
|
|
1248
|
-
this.el = r.nativeElement;
|
|
1249
|
-
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
1250
|
-
}
|
|
1251
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1252
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqSwitch, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", fullWidth: "fullWidth", innerLabel: "innerLabel", justifyContent: "justifyContent", name: "name", required: "required", reverseOrder: "reverseOrder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1253
|
-
};
|
|
1254
|
-
BqSwitch = __decorate([
|
|
1255
|
-
ProxyCmp({
|
|
1256
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
1257
|
-
methods: ['vClick', 'vFocus', 'vBlur']
|
|
1258
|
-
}),
|
|
1259
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1260
|
-
], BqSwitch);
|
|
1261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqSwitch, decorators: [{
|
|
1262
|
-
type: Component,
|
|
1263
|
-
args: [{
|
|
1264
|
-
selector: 'bq-switch',
|
|
1265
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1266
|
-
template: '<ng-content></ng-content>',
|
|
1267
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1268
|
-
inputs: ['backgroundOnHover', 'checked', 'disabled', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
1269
|
-
}]
|
|
1270
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1271
|
-
let BqTab = class BqTab {
|
|
1272
|
-
z;
|
|
1273
|
-
el;
|
|
1274
|
-
constructor(c, r, z) {
|
|
1275
|
-
this.z = z;
|
|
1276
|
-
c.detach();
|
|
1277
|
-
this.el = r.nativeElement;
|
|
1278
|
-
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1279
|
-
}
|
|
1280
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1281
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqTab, selector: "bq-tab", inputs: { active: "active", controls: "controls", disabled: "disabled", orientation: "orientation", placement: "placement", size: "size", tabId: "tabId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1282
|
-
};
|
|
1283
|
-
BqTab = __decorate([
|
|
1284
|
-
ProxyCmp({
|
|
1285
|
-
inputs: ['active', 'controls', 'disabled', 'orientation', 'placement', 'size', 'tabId'],
|
|
1286
|
-
methods: ['vClick', 'vFocus', 'vBlur', 'enableFocus']
|
|
1287
|
-
}),
|
|
1288
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1289
|
-
], BqTab);
|
|
1290
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTab, decorators: [{
|
|
1291
|
-
type: Component,
|
|
1292
|
-
args: [{
|
|
1293
|
-
selector: 'bq-tab',
|
|
1294
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1295
|
-
template: '<ng-content></ng-content>',
|
|
1296
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1297
|
-
inputs: ['active', 'controls', 'disabled', 'orientation', 'placement', 'size', 'tabId'],
|
|
1298
|
-
}]
|
|
1299
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1300
|
-
let BqTabGroup = class BqTabGroup {
|
|
1301
|
-
z;
|
|
1302
|
-
el;
|
|
1303
|
-
constructor(c, r, z) {
|
|
1304
|
-
this.z = z;
|
|
1305
|
-
c.detach();
|
|
1306
|
-
this.el = r.nativeElement;
|
|
1307
|
-
proxyOutputs(this, this.el, ['bqChange']);
|
|
1308
|
-
}
|
|
1309
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1310
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqTabGroup, selector: "bq-tab-group", inputs: { debounceTime: "debounceTime", disableDivider: "disableDivider", orientation: "orientation", placement: "placement", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1311
|
-
};
|
|
1312
|
-
BqTabGroup = __decorate([
|
|
1313
|
-
ProxyCmp({
|
|
1314
|
-
inputs: ['debounceTime', 'disableDivider', 'orientation', 'placement', 'size', 'value']
|
|
1315
|
-
}),
|
|
1316
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1317
|
-
], BqTabGroup);
|
|
1318
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
1319
|
-
type: Component,
|
|
1320
|
-
args: [{
|
|
1321
|
-
selector: 'bq-tab-group',
|
|
1322
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1323
|
-
template: '<ng-content></ng-content>',
|
|
1324
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1325
|
-
inputs: ['debounceTime', 'disableDivider', 'orientation', 'placement', 'size', 'value'],
|
|
1326
|
-
}]
|
|
1327
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1328
|
-
let BqTag = class BqTag {
|
|
1329
|
-
z;
|
|
1330
|
-
el;
|
|
1331
|
-
constructor(c, r, z) {
|
|
1332
|
-
this.z = z;
|
|
1333
|
-
c.detach();
|
|
1334
|
-
this.el = r.nativeElement;
|
|
1335
|
-
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
1336
|
-
}
|
|
1337
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1338
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqTag, selector: "bq-tag", inputs: { border: "border", clickable: "clickable", color: "color", disabled: "disabled", hidden: "hidden", removable: "removable", selected: "selected", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1339
|
-
};
|
|
1340
|
-
BqTag = __decorate([
|
|
1341
|
-
ProxyCmp({
|
|
1342
|
-
inputs: ['border', 'clickable', 'color', 'disabled', 'hidden', 'removable', 'selected', 'size', 'variant'],
|
|
1343
|
-
methods: ['hide', 'show']
|
|
1344
|
-
}),
|
|
1345
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1346
|
-
], BqTag);
|
|
1347
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTag, decorators: [{
|
|
1348
|
-
type: Component,
|
|
1349
|
-
args: [{
|
|
1350
|
-
selector: 'bq-tag',
|
|
1351
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1352
|
-
template: '<ng-content></ng-content>',
|
|
1353
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1354
|
-
inputs: ['border', 'clickable', 'color', 'disabled', 'hidden', 'removable', 'selected', 'size', 'variant'],
|
|
1355
|
-
}]
|
|
1356
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1357
|
-
let BqTextarea = class BqTextarea {
|
|
1358
|
-
z;
|
|
1359
|
-
el;
|
|
1360
|
-
constructor(c, r, z) {
|
|
1361
|
-
this.z = z;
|
|
1362
|
-
c.detach();
|
|
1363
|
-
this.el = r.nativeElement;
|
|
1364
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1365
|
-
}
|
|
1366
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1367
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqTextarea, selector: "bq-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", debounceTime: "debounceTime", disableResize: "disableResize", disabled: "disabled", form: "form", maxlength: "maxlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", spellcheck: "spellcheck", validationStatus: "validationStatus", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1368
|
-
};
|
|
1369
|
-
BqTextarea = __decorate([
|
|
1370
|
-
ProxyCmp({
|
|
1371
|
-
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap']
|
|
1372
|
-
}),
|
|
1373
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1374
|
-
], BqTextarea);
|
|
1375
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTextarea, decorators: [{
|
|
1376
|
-
type: Component,
|
|
1377
|
-
args: [{
|
|
1378
|
-
selector: 'bq-textarea',
|
|
1379
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1380
|
-
template: '<ng-content></ng-content>',
|
|
1381
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1382
|
-
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
|
|
1383
|
-
}]
|
|
1384
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1385
|
-
let BqToast = class BqToast {
|
|
1386
|
-
z;
|
|
1387
|
-
el;
|
|
1388
|
-
constructor(c, r, z) {
|
|
1389
|
-
this.z = z;
|
|
1390
|
-
c.detach();
|
|
1391
|
-
this.el = r.nativeElement;
|
|
1392
|
-
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
1393
|
-
}
|
|
1394
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1395
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqToast, selector: "bq-toast", inputs: { border: "border", hideIcon: "hideIcon", open: "open", placement: "placement", time: "time", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1396
|
-
};
|
|
1397
|
-
BqToast = __decorate([
|
|
1398
|
-
ProxyCmp({
|
|
1399
|
-
inputs: ['border', 'hideIcon', 'open', 'placement', 'time', 'type'],
|
|
1400
|
-
methods: ['show', 'hide', 'toast']
|
|
1401
|
-
}),
|
|
1402
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1403
|
-
], BqToast);
|
|
1404
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqToast, decorators: [{
|
|
1405
|
-
type: Component,
|
|
1406
|
-
args: [{
|
|
1407
|
-
selector: 'bq-toast',
|
|
1408
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1409
|
-
template: '<ng-content></ng-content>',
|
|
1410
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1411
|
-
inputs: ['border', 'hideIcon', 'open', 'placement', 'time', 'type'],
|
|
1412
|
-
}]
|
|
1413
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1414
|
-
let BqTooltip = class BqTooltip {
|
|
1415
|
-
z;
|
|
1416
|
-
el;
|
|
1417
|
-
constructor(c, r, z) {
|
|
1418
|
-
this.z = z;
|
|
1419
|
-
c.detach();
|
|
1420
|
-
this.el = r.nativeElement;
|
|
1421
|
-
}
|
|
1422
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1423
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: BqTooltip, selector: "bq-tooltip", inputs: { alwaysVisible: "alwaysVisible", displayOn: "displayOn", distance: "distance", hideArrow: "hideArrow", placement: "placement", sameWidth: "sameWidth", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1424
|
-
};
|
|
1425
|
-
BqTooltip = __decorate([
|
|
1426
|
-
ProxyCmp({
|
|
1427
|
-
inputs: ['alwaysVisible', 'displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
1428
|
-
methods: ['show', 'hide']
|
|
1429
|
-
}),
|
|
1430
|
-
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1431
|
-
], BqTooltip);
|
|
1432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BqTooltip, decorators: [{
|
|
1433
|
-
type: Component,
|
|
1434
|
-
args: [{
|
|
1435
|
-
selector: 'bq-tooltip',
|
|
1436
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1437
|
-
template: '<ng-content></ng-content>',
|
|
1438
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1439
|
-
inputs: ['alwaysVisible', 'displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
1440
|
-
}]
|
|
1441
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1442
|
-
|
|
1443
|
-
const DIRECTIVES = [
|
|
1444
|
-
BqAccordion,
|
|
1445
|
-
BqAccordionGroup,
|
|
1446
|
-
BqAlert,
|
|
1447
|
-
BqAvatar,
|
|
1448
|
-
BqBadge,
|
|
1449
|
-
BqBreadcrumb,
|
|
1450
|
-
BqBreadcrumbItem,
|
|
1451
|
-
BqButton,
|
|
1452
|
-
BqCard,
|
|
1453
|
-
BqCheckbox,
|
|
1454
|
-
BqDatePicker,
|
|
1455
|
-
BqDialog,
|
|
1456
|
-
BqDivider,
|
|
1457
|
-
BqDrawer,
|
|
1458
|
-
BqDropdown,
|
|
1459
|
-
BqEmptyState,
|
|
1460
|
-
BqIcon,
|
|
1461
|
-
BqInput,
|
|
1462
|
-
BqNotification,
|
|
1463
|
-
BqOption,
|
|
1464
|
-
BqOptionGroup,
|
|
1465
|
-
BqOptionList,
|
|
1466
|
-
BqPageTitle,
|
|
1467
|
-
BqPanel,
|
|
1468
|
-
BqProgress,
|
|
1469
|
-
BqRadio,
|
|
1470
|
-
BqRadioGroup,
|
|
1471
|
-
BqSelect,
|
|
1472
|
-
BqSideMenu,
|
|
1473
|
-
BqSideMenuItem,
|
|
1474
|
-
BqSlider,
|
|
1475
|
-
BqSpinner,
|
|
1476
|
-
BqStatus,
|
|
1477
|
-
BqStepItem,
|
|
1478
|
-
BqSteps,
|
|
1479
|
-
BqSwitch,
|
|
1480
|
-
BqTab,
|
|
1481
|
-
BqTabGroup,
|
|
1482
|
-
BqTag,
|
|
1483
|
-
BqTextarea,
|
|
1484
|
-
BqToast,
|
|
1485
|
-
BqTooltip
|
|
1486
|
-
];
|
|
1487
|
-
|
|
1488
|
-
const DECLARATIONS = [
|
|
1489
|
-
...DIRECTIVES,
|
|
1490
|
-
// ngModel Accessors
|
|
1491
|
-
BooleanValueAccessor,
|
|
1492
|
-
NumericValueAccessor,
|
|
1493
|
-
RadioValueAccessor,
|
|
1494
|
-
SelectValueAccessor,
|
|
1495
|
-
TextValueAccessor,
|
|
1496
|
-
];
|
|
1497
|
-
class BeeQModule {
|
|
1498
|
-
static forRoot() {
|
|
1499
|
-
return {
|
|
1500
|
-
ngModule: BeeQModule,
|
|
1501
|
-
providers: [
|
|
1502
|
-
{
|
|
1503
|
-
provide: APP_INITIALIZER,
|
|
1504
|
-
useFactory: () => defineCustomElements,
|
|
1505
|
-
multi: true,
|
|
1506
|
-
deps: [DOCUMENT, NgZone],
|
|
1507
|
-
},
|
|
1508
|
-
],
|
|
1509
|
-
};
|
|
1510
|
-
}
|
|
1511
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1512
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.8", 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,
|
|
1513
|
-
// ngModel Accessors
|
|
1514
|
-
BooleanValueAccessor,
|
|
1515
|
-
NumericValueAccessor,
|
|
1516
|
-
RadioValueAccessor,
|
|
1517
|
-
SelectValueAccessor,
|
|
1518
|
-
TextValueAccessor], imports: [CommonModule], exports: [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,
|
|
1519
|
-
// ngModel Accessors
|
|
1520
|
-
BooleanValueAccessor,
|
|
1521
|
-
NumericValueAccessor,
|
|
1522
|
-
RadioValueAccessor,
|
|
1523
|
-
SelectValueAccessor,
|
|
1524
|
-
TextValueAccessor] });
|
|
1525
|
-
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BeeQModule, imports: [CommonModule] });
|
|
1526
|
-
}
|
|
1527
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BeeQModule, decorators: [{
|
|
1528
|
-
type: NgModule,
|
|
1529
|
-
args: [{
|
|
1530
|
-
imports: [CommonModule],
|
|
1531
|
-
declarations: DECLARATIONS,
|
|
1532
|
-
exports: DECLARATIONS,
|
|
1533
|
-
}]
|
|
1534
|
-
}] });
|
|
1535
|
-
|
|
1536
|
-
/* -------------------------------------------------------------------------- */
|
|
1537
|
-
/* DIRECTIVES */
|
|
1538
|
-
/* -------------------------------------------------------------------------- */
|
|
1539
|
-
|
|
1540
|
-
/**
|
|
1541
|
-
* Generated bundle index. Do not edit.
|
|
1542
|
-
*/
|
|
1543
|
-
|
|
1544
|
-
export { BeeQModule, BooleanValueAccessor, 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, NumericValueAccessor, RadioValueAccessor, SelectValueAccessor, TextValueAccessor };
|
|
1545
|
-
//# sourceMappingURL=beeq-angular.mjs.map
|