@beeq/angular 1.8.0 → 1.8.1
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/beeq.module.d.ts +15 -0
- package/directives/angular-component-lib/utils.d.ts +9 -0
- package/directives/boolean-value-accessor.d.ts +9 -0
- package/directives/components.d.ts +2042 -0
- package/directives/index.d.ts +2 -0
- package/directives/number-value-accessor.d.ts +9 -0
- package/directives/radio-value-accessor.d.ts +8 -0
- package/directives/select-value-accessor.d.ts +8 -0
- package/directives/text-value-accessor.d.ts +8 -0
- package/directives/value-accessor.d.ts +18 -0
- package/esm2022/beeq-angular.mjs +5 -0
- package/esm2022/beeq.module.mjs +59 -0
- package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/directives/boolean-value-accessor.mjs +38 -0
- package/esm2022/directives/components.mjs +2705 -0
- package/esm2022/directives/index.mjs +46 -0
- package/esm2022/directives/number-value-accessor.mjs +40 -0
- package/esm2022/directives/radio-value-accessor.mjs +35 -0
- package/esm2022/directives/select-value-accessor.mjs +35 -0
- package/esm2022/directives/text-value-accessor.mjs +35 -0
- package/esm2022/directives/value-accessor.mjs +40 -0
- package/esm2022/index.mjs +14 -0
- package/esm2022/standalone/beeq-angular-standalone.mjs +5 -0
- package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/standalone/directives/boolean-value-accessor.mjs +38 -0
- package/esm2022/standalone/directives/components.mjs +1264 -0
- package/esm2022/standalone/directives/number-value-accessor.mjs +40 -0
- package/esm2022/standalone/directives/radio-value-accessor.mjs +35 -0
- package/esm2022/standalone/directives/select-value-accessor.mjs +35 -0
- package/esm2022/standalone/directives/text-value-accessor.mjs +35 -0
- package/esm2022/standalone/directives/value-accessor.mjs +40 -0
- package/esm2022/standalone/index.mjs +10 -0
- package/fesm2022/beeq-angular-standalone.mjs +1491 -0
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -0
- package/fesm2022/beeq-angular.mjs +3027 -0
- package/fesm2022/beeq-angular.mjs.map +1 -0
- package/{standalone/src/index.ts → index.d.ts} +1 -4
- package/package.json +24 -5
- package/standalone/directives/angular-component-lib/utils.d.ts +9 -0
- package/standalone/directives/boolean-value-accessor.d.ts +9 -0
- package/standalone/directives/components.d.ts +776 -0
- package/standalone/directives/number-value-accessor.d.ts +9 -0
- package/standalone/directives/radio-value-accessor.d.ts +8 -0
- package/standalone/directives/select-value-accessor.d.ts +8 -0
- package/standalone/directives/text-value-accessor.d.ts +8 -0
- package/standalone/directives/value-accessor.d.ts +18 -0
- package/standalone/index.d.ts +6 -0
- package/eslint.config.js +0 -45
- package/jest.config.ts +0 -21
- package/ng-package.json +0 -8
- package/project.json +0 -41
- package/scripts/fix-value-accessor-path.ts +0 -94
- package/src/beeq.module.ts +0 -41
- package/src/directives/angular-component-lib/utils.ts +0 -65
- package/src/directives/boolean-value-accessor.ts +0 -27
- package/src/directives/components.ts +0 -2621
- package/src/directives/index.ts +0 -47
- package/src/directives/number-value-accessor.ts +0 -29
- package/src/directives/radio-value-accessor.ts +0 -24
- package/src/directives/select-value-accessor.ts +0 -24
- package/src/directives/text-value-accessor.ts +0 -24
- package/src/directives/value-accessor.ts +0 -39
- package/src/index.ts +0 -15
- package/src/test-setup.ts +0 -1
- package/standalone/ng-package.json +0 -5
- package/standalone/src/directives/angular-component-lib/utils.ts +0 -65
- package/standalone/src/directives/boolean-value-accessor.ts +0 -27
- package/standalone/src/directives/components.ts +0 -1479
- package/standalone/src/directives/index.ts +0 -47
- package/standalone/src/directives/number-value-accessor.ts +0 -29
- package/standalone/src/directives/radio-value-accessor.ts +0 -24
- package/standalone/src/directives/select-value-accessor.ts +0 -24
- package/standalone/src/directives/text-value-accessor.ts +0 -24
- package/standalone/src/directives/value-accessor.ts +0 -39
- package/tsconfig.json +0 -19
- package/tsconfig.lib.json +0 -12
- package/tsconfig.lib.prod.json +0 -18
- package/tsconfig.spec.json +0 -10
|
@@ -0,0 +1,3027 @@
|
|
|
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
|
+
constructor(el) {
|
|
11
|
+
this.el = el;
|
|
12
|
+
this.onChange = () => { };
|
|
13
|
+
this.onTouched = () => { };
|
|
14
|
+
}
|
|
15
|
+
writeValue(value) {
|
|
16
|
+
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
17
|
+
}
|
|
18
|
+
handleChangeEvent(value) {
|
|
19
|
+
if (value !== this.lastValue) {
|
|
20
|
+
this.lastValue = value;
|
|
21
|
+
this.onChange(value);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
_handleBlurEvent() {
|
|
25
|
+
this.onTouched();
|
|
26
|
+
}
|
|
27
|
+
registerOnChange(fn) {
|
|
28
|
+
this.onChange = fn;
|
|
29
|
+
}
|
|
30
|
+
registerOnTouched(fn) {
|
|
31
|
+
this.onTouched = fn;
|
|
32
|
+
}
|
|
33
|
+
setDisabledState(isDisabled) {
|
|
34
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
35
|
+
}
|
|
36
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
37
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
38
|
+
}
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
40
|
+
type: Directive,
|
|
41
|
+
args: [{}]
|
|
42
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
43
|
+
type: HostListener,
|
|
44
|
+
args: ['focusout']
|
|
45
|
+
}] } });
|
|
46
|
+
|
|
47
|
+
class BooleanValueAccessor extends ValueAccessor {
|
|
48
|
+
constructor(el) {
|
|
49
|
+
super(el);
|
|
50
|
+
}
|
|
51
|
+
writeValue(value) {
|
|
52
|
+
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
53
|
+
}
|
|
54
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
55
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: BooleanValueAccessor, selector: "bq-checkbox, bq-switch", host: { listeners: { "bqChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
56
|
+
{
|
|
57
|
+
provide: NG_VALUE_ACCESSOR,
|
|
58
|
+
useExisting: BooleanValueAccessor,
|
|
59
|
+
multi: true
|
|
60
|
+
}
|
|
61
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
62
|
+
}
|
|
63
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
64
|
+
type: Directive,
|
|
65
|
+
args: [{
|
|
66
|
+
/* tslint:disable-next-line:directive-selector */
|
|
67
|
+
selector: 'bq-checkbox, bq-switch',
|
|
68
|
+
host: {
|
|
69
|
+
'(bqChange)': 'handleChangeEvent($event.target.checked)'
|
|
70
|
+
},
|
|
71
|
+
providers: [
|
|
72
|
+
{
|
|
73
|
+
provide: NG_VALUE_ACCESSOR,
|
|
74
|
+
useExisting: BooleanValueAccessor,
|
|
75
|
+
multi: true
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
}]
|
|
79
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
80
|
+
|
|
81
|
+
class NumericValueAccessor extends ValueAccessor {
|
|
82
|
+
constructor(el) {
|
|
83
|
+
super(el);
|
|
84
|
+
}
|
|
85
|
+
registerOnChange(fn) {
|
|
86
|
+
super.registerOnChange(value => {
|
|
87
|
+
fn(value === '' ? null : parseFloat(value));
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
91
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NumericValueAccessor, selector: "bq-input[type=\"number\"], bq-slider:not[type=\"range\"]", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
92
|
+
{
|
|
93
|
+
provide: NG_VALUE_ACCESSOR,
|
|
94
|
+
useExisting: NumericValueAccessor,
|
|
95
|
+
multi: true
|
|
96
|
+
}
|
|
97
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
98
|
+
}
|
|
99
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
100
|
+
type: Directive,
|
|
101
|
+
args: [{
|
|
102
|
+
/* tslint:disable-next-line:directive-selector */
|
|
103
|
+
selector: 'bq-input[type="number"], bq-slider:not[type="range"]',
|
|
104
|
+
host: {
|
|
105
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
106
|
+
},
|
|
107
|
+
providers: [
|
|
108
|
+
{
|
|
109
|
+
provide: NG_VALUE_ACCESSOR,
|
|
110
|
+
useExisting: NumericValueAccessor,
|
|
111
|
+
multi: true
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
}]
|
|
115
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
116
|
+
|
|
117
|
+
class RadioValueAccessor extends ValueAccessor {
|
|
118
|
+
constructor(el) {
|
|
119
|
+
super(el);
|
|
120
|
+
}
|
|
121
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RadioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
122
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: RadioValueAccessor, selector: "bq-radio-group", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
123
|
+
{
|
|
124
|
+
provide: NG_VALUE_ACCESSOR,
|
|
125
|
+
useExisting: RadioValueAccessor,
|
|
126
|
+
multi: true
|
|
127
|
+
}
|
|
128
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
129
|
+
}
|
|
130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RadioValueAccessor, decorators: [{
|
|
131
|
+
type: Directive,
|
|
132
|
+
args: [{
|
|
133
|
+
/* tslint:disable-next-line:directive-selector */
|
|
134
|
+
selector: 'bq-radio-group',
|
|
135
|
+
host: {
|
|
136
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
137
|
+
},
|
|
138
|
+
providers: [
|
|
139
|
+
{
|
|
140
|
+
provide: NG_VALUE_ACCESSOR,
|
|
141
|
+
useExisting: RadioValueAccessor,
|
|
142
|
+
multi: true
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}]
|
|
146
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
147
|
+
|
|
148
|
+
class SelectValueAccessor extends ValueAccessor {
|
|
149
|
+
constructor(el) {
|
|
150
|
+
super(el);
|
|
151
|
+
}
|
|
152
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
153
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: SelectValueAccessor, selector: "bq-select", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
154
|
+
{
|
|
155
|
+
provide: NG_VALUE_ACCESSOR,
|
|
156
|
+
useExisting: SelectValueAccessor,
|
|
157
|
+
multi: true
|
|
158
|
+
}
|
|
159
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
160
|
+
}
|
|
161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
162
|
+
type: Directive,
|
|
163
|
+
args: [{
|
|
164
|
+
/* tslint:disable-next-line:directive-selector */
|
|
165
|
+
selector: 'bq-select',
|
|
166
|
+
host: {
|
|
167
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
168
|
+
},
|
|
169
|
+
providers: [
|
|
170
|
+
{
|
|
171
|
+
provide: NG_VALUE_ACCESSOR,
|
|
172
|
+
useExisting: SelectValueAccessor,
|
|
173
|
+
multi: true
|
|
174
|
+
}
|
|
175
|
+
]
|
|
176
|
+
}]
|
|
177
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
178
|
+
|
|
179
|
+
class TextValueAccessor extends ValueAccessor {
|
|
180
|
+
constructor(el) {
|
|
181
|
+
super(el);
|
|
182
|
+
}
|
|
183
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
184
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", 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: [
|
|
185
|
+
{
|
|
186
|
+
provide: NG_VALUE_ACCESSOR,
|
|
187
|
+
useExisting: TextValueAccessor,
|
|
188
|
+
multi: true
|
|
189
|
+
}
|
|
190
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
191
|
+
}
|
|
192
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
193
|
+
type: Directive,
|
|
194
|
+
args: [{
|
|
195
|
+
/* tslint:disable-next-line:directive-selector */
|
|
196
|
+
selector: 'bq-date-picker, bq-input:not[type="number"], bq-slider[type="range", bq-textarea',
|
|
197
|
+
host: {
|
|
198
|
+
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
199
|
+
},
|
|
200
|
+
providers: [
|
|
201
|
+
{
|
|
202
|
+
provide: NG_VALUE_ACCESSOR,
|
|
203
|
+
useExisting: TextValueAccessor,
|
|
204
|
+
multi: true
|
|
205
|
+
}
|
|
206
|
+
]
|
|
207
|
+
}]
|
|
208
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
209
|
+
|
|
210
|
+
/* eslint-disable */
|
|
211
|
+
/* tslint:disable */
|
|
212
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
213
|
+
const Prototype = Cmp.prototype;
|
|
214
|
+
inputs.forEach((item) => {
|
|
215
|
+
Object.defineProperty(Prototype, item, {
|
|
216
|
+
get() {
|
|
217
|
+
return this.el[item];
|
|
218
|
+
},
|
|
219
|
+
set(val) {
|
|
220
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
221
|
+
},
|
|
222
|
+
/**
|
|
223
|
+
* In the event that proxyInputs is called
|
|
224
|
+
* multiple times re-defining these inputs
|
|
225
|
+
* will cause an error to be thrown. As a result
|
|
226
|
+
* we set configurable: true to indicate these
|
|
227
|
+
* properties can be changed.
|
|
228
|
+
*/
|
|
229
|
+
configurable: true,
|
|
230
|
+
});
|
|
231
|
+
});
|
|
232
|
+
};
|
|
233
|
+
const proxyMethods = (Cmp, methods) => {
|
|
234
|
+
const Prototype = Cmp.prototype;
|
|
235
|
+
methods.forEach((methodName) => {
|
|
236
|
+
Prototype[methodName] = function () {
|
|
237
|
+
const args = arguments;
|
|
238
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
239
|
+
};
|
|
240
|
+
});
|
|
241
|
+
};
|
|
242
|
+
const proxyOutputs = (instance, el, events) => {
|
|
243
|
+
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
244
|
+
};
|
|
245
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
246
|
+
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
247
|
+
customElements.define(tagName, customElement);
|
|
248
|
+
}
|
|
249
|
+
};
|
|
250
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
251
|
+
function ProxyCmp(opts) {
|
|
252
|
+
const decorator = function (cls) {
|
|
253
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
254
|
+
if (defineCustomElementFn !== undefined) {
|
|
255
|
+
defineCustomElementFn();
|
|
256
|
+
}
|
|
257
|
+
if (inputs) {
|
|
258
|
+
proxyInputs(cls, inputs);
|
|
259
|
+
}
|
|
260
|
+
if (methods) {
|
|
261
|
+
proxyMethods(cls, methods);
|
|
262
|
+
}
|
|
263
|
+
return cls;
|
|
264
|
+
};
|
|
265
|
+
return decorator;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
let BqAccordion = class BqAccordion {
|
|
269
|
+
/**
|
|
270
|
+
* The appearance style of the Accordion
|
|
271
|
+
*/
|
|
272
|
+
set appearance(_) { }
|
|
273
|
+
;
|
|
274
|
+
/**
|
|
275
|
+
* If true, the Accordion is disabled
|
|
276
|
+
*/
|
|
277
|
+
set disabled(_) { }
|
|
278
|
+
;
|
|
279
|
+
/**
|
|
280
|
+
* If true, the Accordion is expanded
|
|
281
|
+
*/
|
|
282
|
+
set expanded(_) { }
|
|
283
|
+
;
|
|
284
|
+
/**
|
|
285
|
+
* Animation is set through JS when the browser does not support CSS calc-size()
|
|
286
|
+
If true, the Accordion animation, will be disabled. No animation will be applied.
|
|
287
|
+
*/
|
|
288
|
+
set noAnimation(_) { }
|
|
289
|
+
;
|
|
290
|
+
/**
|
|
291
|
+
* If true, the Accordion expand icon is rotate 180deg when expanded
|
|
292
|
+
*/
|
|
293
|
+
set rotate(_) { }
|
|
294
|
+
;
|
|
295
|
+
/**
|
|
296
|
+
* The size of the Accordion
|
|
297
|
+
*/
|
|
298
|
+
set size(_) { }
|
|
299
|
+
;
|
|
300
|
+
constructor(c, r, z) {
|
|
301
|
+
this.z = z;
|
|
302
|
+
c.detach();
|
|
303
|
+
this.el = r.nativeElement;
|
|
304
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqOpen', 'bqAfterOpen', 'bqClose', 'bqAfterClose', 'bqClick']);
|
|
305
|
+
}
|
|
306
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
307
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
308
|
+
};
|
|
309
|
+
BqAccordion = __decorate([
|
|
310
|
+
ProxyCmp({
|
|
311
|
+
inputs: ['appearance', 'disabled', 'expanded', 'noAnimation', 'rotate', 'size']
|
|
312
|
+
}),
|
|
313
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
314
|
+
], BqAccordion);
|
|
315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordion, decorators: [{
|
|
316
|
+
type: Component,
|
|
317
|
+
args: [{
|
|
318
|
+
selector: 'bq-accordion',
|
|
319
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
320
|
+
template: '<ng-content></ng-content>',
|
|
321
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
322
|
+
inputs: ['appearance', 'disabled', 'expanded', 'noAnimation', 'rotate', 'size'],
|
|
323
|
+
}]
|
|
324
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
325
|
+
let BqAccordionGroup = class BqAccordionGroup {
|
|
326
|
+
/**
|
|
327
|
+
* The appearance style of accordion to be applied to all accordions
|
|
328
|
+
*/
|
|
329
|
+
set appearance(_) { }
|
|
330
|
+
;
|
|
331
|
+
/**
|
|
332
|
+
* If true all accordions are expanded
|
|
333
|
+
*/
|
|
334
|
+
set expandAll(_) { }
|
|
335
|
+
;
|
|
336
|
+
/**
|
|
337
|
+
* Animation is set through JS when the browser does not support CSS calc-size()
|
|
338
|
+
If true, the accordion animation, will be disabled. No animation will be applied.
|
|
339
|
+
*/
|
|
340
|
+
set noAnimation(_) { }
|
|
341
|
+
;
|
|
342
|
+
/**
|
|
343
|
+
* If true multiple accordions can be expanded at the same time
|
|
344
|
+
*/
|
|
345
|
+
set multiple(_) { }
|
|
346
|
+
;
|
|
347
|
+
/**
|
|
348
|
+
* The size of accordion to be applied to all accordions
|
|
349
|
+
*/
|
|
350
|
+
set size(_) { }
|
|
351
|
+
;
|
|
352
|
+
constructor(c, r, z) {
|
|
353
|
+
this.z = z;
|
|
354
|
+
c.detach();
|
|
355
|
+
this.el = r.nativeElement;
|
|
356
|
+
}
|
|
357
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
358
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
359
|
+
};
|
|
360
|
+
BqAccordionGroup = __decorate([
|
|
361
|
+
ProxyCmp({
|
|
362
|
+
inputs: ['appearance', 'expandAll', 'multiple', 'noAnimation', 'size']
|
|
363
|
+
}),
|
|
364
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
365
|
+
], BqAccordionGroup);
|
|
366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAccordionGroup, decorators: [{
|
|
367
|
+
type: Component,
|
|
368
|
+
args: [{
|
|
369
|
+
selector: 'bq-accordion-group',
|
|
370
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
371
|
+
template: '<ng-content></ng-content>',
|
|
372
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
373
|
+
inputs: ['appearance', 'expandAll', 'multiple', 'noAnimation', 'size'],
|
|
374
|
+
}]
|
|
375
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
376
|
+
let BqAlert = class BqAlert {
|
|
377
|
+
/**
|
|
378
|
+
* If true, the alert will automatically hide after the specified amount of time
|
|
379
|
+
*/
|
|
380
|
+
set autoDismiss(_) { }
|
|
381
|
+
;
|
|
382
|
+
/**
|
|
383
|
+
* The corner radius of the alert component
|
|
384
|
+
*/
|
|
385
|
+
set border(_) { }
|
|
386
|
+
;
|
|
387
|
+
/**
|
|
388
|
+
* If true, the close button at the top right of the alert won't be shown
|
|
389
|
+
*/
|
|
390
|
+
set disableClose(_) { }
|
|
391
|
+
;
|
|
392
|
+
/**
|
|
393
|
+
* If true, the alert icon won't be shown
|
|
394
|
+
*/
|
|
395
|
+
set hideIcon(_) { }
|
|
396
|
+
;
|
|
397
|
+
/**
|
|
398
|
+
* If true, the alert will be shown
|
|
399
|
+
*/
|
|
400
|
+
set open(_) { }
|
|
401
|
+
;
|
|
402
|
+
/**
|
|
403
|
+
* The length of time, in milliseconds, after which the alert will close itself. Only valid if `autoDismiss="true"`
|
|
404
|
+
*/
|
|
405
|
+
set time(_) { }
|
|
406
|
+
;
|
|
407
|
+
/**
|
|
408
|
+
* Type of Alert
|
|
409
|
+
*/
|
|
410
|
+
set type(_) { }
|
|
411
|
+
;
|
|
412
|
+
/**
|
|
413
|
+
* If true, the alert component will remain fixed at the top of the page, occupying the full viewport
|
|
414
|
+
*/
|
|
415
|
+
set sticky(_) { }
|
|
416
|
+
;
|
|
417
|
+
constructor(c, r, z) {
|
|
418
|
+
this.z = z;
|
|
419
|
+
c.detach();
|
|
420
|
+
this.el = r.nativeElement;
|
|
421
|
+
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterShow', 'bqAfterHide']);
|
|
422
|
+
}
|
|
423
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
424
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
425
|
+
};
|
|
426
|
+
BqAlert = __decorate([
|
|
427
|
+
ProxyCmp({
|
|
428
|
+
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'sticky', 'time', 'type'],
|
|
429
|
+
methods: ['hide', 'show']
|
|
430
|
+
}),
|
|
431
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
432
|
+
], BqAlert);
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAlert, decorators: [{
|
|
434
|
+
type: Component,
|
|
435
|
+
args: [{
|
|
436
|
+
selector: 'bq-alert',
|
|
437
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
438
|
+
template: '<ng-content></ng-content>',
|
|
439
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
440
|
+
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'sticky', 'time', 'type'],
|
|
441
|
+
}]
|
|
442
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
443
|
+
let BqAvatar = class BqAvatar {
|
|
444
|
+
/**
|
|
445
|
+
* Alternate text for the avatar image if the image cannot be displayed
|
|
446
|
+
*/
|
|
447
|
+
set altText(_) { }
|
|
448
|
+
;
|
|
449
|
+
/**
|
|
450
|
+
* The image source to load on the avatar (this can be also a base64 encoded image)
|
|
451
|
+
*/
|
|
452
|
+
set image(_) { }
|
|
453
|
+
;
|
|
454
|
+
/**
|
|
455
|
+
* A text to use for describing the avatar on assistive devices
|
|
456
|
+
*/
|
|
457
|
+
set label(_) { }
|
|
458
|
+
;
|
|
459
|
+
/**
|
|
460
|
+
* The text to display on avatar
|
|
461
|
+
*/
|
|
462
|
+
set initials(_) { }
|
|
463
|
+
;
|
|
464
|
+
/**
|
|
465
|
+
* The shape of the avatar
|
|
466
|
+
*/
|
|
467
|
+
set shape(_) { }
|
|
468
|
+
;
|
|
469
|
+
/**
|
|
470
|
+
* The size of the avatar
|
|
471
|
+
*/
|
|
472
|
+
set size(_) { }
|
|
473
|
+
;
|
|
474
|
+
constructor(c, r, z) {
|
|
475
|
+
this.z = z;
|
|
476
|
+
c.detach();
|
|
477
|
+
this.el = r.nativeElement;
|
|
478
|
+
}
|
|
479
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
480
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
481
|
+
};
|
|
482
|
+
BqAvatar = __decorate([
|
|
483
|
+
ProxyCmp({
|
|
484
|
+
inputs: ['altText', 'image', 'initials', 'label', 'shape', 'size']
|
|
485
|
+
}),
|
|
486
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
487
|
+
], BqAvatar);
|
|
488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqAvatar, decorators: [{
|
|
489
|
+
type: Component,
|
|
490
|
+
args: [{
|
|
491
|
+
selector: 'bq-avatar',
|
|
492
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
493
|
+
template: '<ng-content></ng-content>',
|
|
494
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
495
|
+
inputs: ['altText', 'image', 'initials', 'label', 'shape', 'size'],
|
|
496
|
+
}]
|
|
497
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
498
|
+
let BqBadge = class BqBadge {
|
|
499
|
+
/**
|
|
500
|
+
* Badge background color. The value should be a valid value of the palette color
|
|
501
|
+
*/
|
|
502
|
+
set backgroundColor(_) { }
|
|
503
|
+
;
|
|
504
|
+
/**
|
|
505
|
+
* Badge number color. The value should be a valid value of the palette color
|
|
506
|
+
*/
|
|
507
|
+
set textColor(_) { }
|
|
508
|
+
;
|
|
509
|
+
/**
|
|
510
|
+
* The size of the badge. Relevant if badge has no content.
|
|
511
|
+
*/
|
|
512
|
+
set size(_) { }
|
|
513
|
+
;
|
|
514
|
+
constructor(c, r, z) {
|
|
515
|
+
this.z = z;
|
|
516
|
+
c.detach();
|
|
517
|
+
this.el = r.nativeElement;
|
|
518
|
+
}
|
|
519
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
520
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
521
|
+
};
|
|
522
|
+
BqBadge = __decorate([
|
|
523
|
+
ProxyCmp({
|
|
524
|
+
inputs: ['backgroundColor', 'size', 'textColor']
|
|
525
|
+
}),
|
|
526
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
527
|
+
], BqBadge);
|
|
528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBadge, decorators: [{
|
|
529
|
+
type: Component,
|
|
530
|
+
args: [{
|
|
531
|
+
selector: 'bq-badge',
|
|
532
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
533
|
+
template: '<ng-content></ng-content>',
|
|
534
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
535
|
+
inputs: ['backgroundColor', 'size', 'textColor'],
|
|
536
|
+
}]
|
|
537
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
538
|
+
let BqBreadcrumb = class BqBreadcrumb {
|
|
539
|
+
/**
|
|
540
|
+
* The `aria-label` attribute to describe the type of navigation
|
|
541
|
+
*/
|
|
542
|
+
set label(_) { }
|
|
543
|
+
;
|
|
544
|
+
constructor(c, r, z) {
|
|
545
|
+
this.z = z;
|
|
546
|
+
c.detach();
|
|
547
|
+
this.el = r.nativeElement;
|
|
548
|
+
}
|
|
549
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
550
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqBreadcrumb, selector: "bq-breadcrumb", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
551
|
+
};
|
|
552
|
+
BqBreadcrumb = __decorate([
|
|
553
|
+
ProxyCmp({
|
|
554
|
+
inputs: ['label']
|
|
555
|
+
}),
|
|
556
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
557
|
+
], BqBreadcrumb);
|
|
558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumb, decorators: [{
|
|
559
|
+
type: Component,
|
|
560
|
+
args: [{
|
|
561
|
+
selector: 'bq-breadcrumb',
|
|
562
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
563
|
+
template: '<ng-content></ng-content>',
|
|
564
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
565
|
+
inputs: ['label'],
|
|
566
|
+
}]
|
|
567
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
568
|
+
let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
569
|
+
/**
|
|
570
|
+
* If set, the breadcrumb item will be rendered as an `<a>` with this `href`, otherwise, a `<button>` will be rendered.
|
|
571
|
+
*/
|
|
572
|
+
set href(_) { }
|
|
573
|
+
;
|
|
574
|
+
/**
|
|
575
|
+
* Where to display the link in the browser context. Relevant only if `href` is set.
|
|
576
|
+
*/
|
|
577
|
+
set target(_) { }
|
|
578
|
+
;
|
|
579
|
+
/**
|
|
580
|
+
* Where to display the link in the browser context. Relevant only if `href` is set.
|
|
581
|
+
*/
|
|
582
|
+
set rel(_) { }
|
|
583
|
+
;
|
|
584
|
+
constructor(c, r, z) {
|
|
585
|
+
this.z = z;
|
|
586
|
+
c.detach();
|
|
587
|
+
this.el = r.nativeElement;
|
|
588
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
589
|
+
}
|
|
590
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
591
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqBreadcrumbItem, selector: "bq-breadcrumb-item", inputs: { href: "href", rel: "rel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
592
|
+
};
|
|
593
|
+
BqBreadcrumbItem = __decorate([
|
|
594
|
+
ProxyCmp({
|
|
595
|
+
inputs: ['href', 'rel', 'target']
|
|
596
|
+
}),
|
|
597
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
598
|
+
], BqBreadcrumbItem);
|
|
599
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqBreadcrumbItem, decorators: [{
|
|
600
|
+
type: Component,
|
|
601
|
+
args: [{
|
|
602
|
+
selector: 'bq-breadcrumb-item',
|
|
603
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
604
|
+
template: '<ng-content></ng-content>',
|
|
605
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
606
|
+
inputs: ['href', 'rel', 'target'],
|
|
607
|
+
}]
|
|
608
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
609
|
+
let BqButton = class BqButton {
|
|
610
|
+
/**
|
|
611
|
+
* The appearance style to apply to the button
|
|
612
|
+
*/
|
|
613
|
+
set appearance(_) { }
|
|
614
|
+
;
|
|
615
|
+
/**
|
|
616
|
+
* If `true`, it will make the button fit to its parent width.
|
|
617
|
+
*/
|
|
618
|
+
set block(_) { }
|
|
619
|
+
;
|
|
620
|
+
/**
|
|
621
|
+
* The corner radius of the button
|
|
622
|
+
*/
|
|
623
|
+
set border(_) { }
|
|
624
|
+
;
|
|
625
|
+
/**
|
|
626
|
+
* If true, the button will be disabled (no interaction allowed)
|
|
627
|
+
*/
|
|
628
|
+
set disabled(_) { }
|
|
629
|
+
;
|
|
630
|
+
/**
|
|
631
|
+
* Tells the browser to treat the linked URL as a download. Only used when `href` is set.
|
|
632
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-download
|
|
633
|
+
*/
|
|
634
|
+
set download(_) { }
|
|
635
|
+
;
|
|
636
|
+
/**
|
|
637
|
+
* When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`
|
|
638
|
+
*/
|
|
639
|
+
set href(_) { }
|
|
640
|
+
;
|
|
641
|
+
/**
|
|
642
|
+
* It determinate how the content should be aligned
|
|
643
|
+
*/
|
|
644
|
+
set justifyContent(_) { }
|
|
645
|
+
;
|
|
646
|
+
/**
|
|
647
|
+
* If `true` it will display the button in a loading state
|
|
648
|
+
*/
|
|
649
|
+
set loading(_) { }
|
|
650
|
+
;
|
|
651
|
+
/**
|
|
652
|
+
* The size of the button
|
|
653
|
+
*/
|
|
654
|
+
set size(_) { }
|
|
655
|
+
;
|
|
656
|
+
/**
|
|
657
|
+
* Where to display the linked URL, as the name for a browsing context (a `tab`, `window`, or `<iframe>`)
|
|
658
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target
|
|
659
|
+
*/
|
|
660
|
+
set target(_) { }
|
|
661
|
+
;
|
|
662
|
+
/**
|
|
663
|
+
* The default behavior of the button
|
|
664
|
+
*/
|
|
665
|
+
set type(_) { }
|
|
666
|
+
;
|
|
667
|
+
/**
|
|
668
|
+
* The variant of button to apply on top of the appearance (applicable only to `appearance="primary"`)
|
|
669
|
+
*/
|
|
670
|
+
set variant(_) { }
|
|
671
|
+
;
|
|
672
|
+
constructor(c, r, z) {
|
|
673
|
+
this.z = z;
|
|
674
|
+
c.detach();
|
|
675
|
+
this.el = r.nativeElement;
|
|
676
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
677
|
+
}
|
|
678
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
679
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
680
|
+
};
|
|
681
|
+
BqButton = __decorate([
|
|
682
|
+
ProxyCmp({
|
|
683
|
+
inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'loading', 'size', 'target', 'type', 'variant']
|
|
684
|
+
}),
|
|
685
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
686
|
+
], BqButton);
|
|
687
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqButton, decorators: [{
|
|
688
|
+
type: Component,
|
|
689
|
+
args: [{
|
|
690
|
+
selector: 'bq-button',
|
|
691
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
692
|
+
template: '<ng-content></ng-content>',
|
|
693
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
694
|
+
inputs: ['appearance', 'block', 'border', 'disabled', 'download', 'href', 'justifyContent', 'loading', 'size', 'target', 'type', 'variant'],
|
|
695
|
+
}]
|
|
696
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
697
|
+
let BqCard = class BqCard {
|
|
698
|
+
/**
|
|
699
|
+
* Type of card component
|
|
700
|
+
*/
|
|
701
|
+
set type(_) { }
|
|
702
|
+
;
|
|
703
|
+
/**
|
|
704
|
+
* The corner radius of the card component
|
|
705
|
+
*/
|
|
706
|
+
set border(_) { }
|
|
707
|
+
;
|
|
708
|
+
constructor(c, r, z) {
|
|
709
|
+
this.z = z;
|
|
710
|
+
c.detach();
|
|
711
|
+
this.el = r.nativeElement;
|
|
712
|
+
}
|
|
713
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
714
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqCard, selector: "bq-card", inputs: { border: "border", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
715
|
+
};
|
|
716
|
+
BqCard = __decorate([
|
|
717
|
+
ProxyCmp({
|
|
718
|
+
inputs: ['border', 'type']
|
|
719
|
+
}),
|
|
720
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
721
|
+
], BqCard);
|
|
722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCard, decorators: [{
|
|
723
|
+
type: Component,
|
|
724
|
+
args: [{
|
|
725
|
+
selector: 'bq-card',
|
|
726
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
727
|
+
template: '<ng-content></ng-content>',
|
|
728
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
729
|
+
inputs: ['border', 'type'],
|
|
730
|
+
}]
|
|
731
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
732
|
+
let BqCheckbox = class BqCheckbox {
|
|
733
|
+
/**
|
|
734
|
+
* If true checkbox displays background on hover
|
|
735
|
+
*/
|
|
736
|
+
set backgroundOnHover(_) { }
|
|
737
|
+
;
|
|
738
|
+
/**
|
|
739
|
+
* The form ID that the checkbox is associated with
|
|
740
|
+
*/
|
|
741
|
+
set formId(_) { }
|
|
742
|
+
;
|
|
743
|
+
/**
|
|
744
|
+
* The native form validation message
|
|
745
|
+
*/
|
|
746
|
+
set formValidationMessage(_) { }
|
|
747
|
+
;
|
|
748
|
+
/**
|
|
749
|
+
* If true checkbox is checked
|
|
750
|
+
*/
|
|
751
|
+
set checked(_) { }
|
|
752
|
+
;
|
|
753
|
+
/**
|
|
754
|
+
* If true checkbox is disabled
|
|
755
|
+
*/
|
|
756
|
+
set disabled(_) { }
|
|
757
|
+
;
|
|
758
|
+
/**
|
|
759
|
+
* A state that is neither checked nor unchecked
|
|
760
|
+
*/
|
|
761
|
+
set indeterminate(_) { }
|
|
762
|
+
;
|
|
763
|
+
/**
|
|
764
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
765
|
+
*/
|
|
766
|
+
set name(_) { }
|
|
767
|
+
;
|
|
768
|
+
/**
|
|
769
|
+
* If `true`, it will indicate that the user must specify a value for the checkbox before the owning form can be submitted
|
|
770
|
+
*/
|
|
771
|
+
set required(_) { }
|
|
772
|
+
;
|
|
773
|
+
/**
|
|
774
|
+
* A string representing the value of the checkbox. Primarily used to differentiate a list of related checkboxes that have the same name.
|
|
775
|
+
*/
|
|
776
|
+
set value(_) { }
|
|
777
|
+
;
|
|
778
|
+
constructor(c, r, z) {
|
|
779
|
+
this.z = z;
|
|
780
|
+
c.detach();
|
|
781
|
+
this.el = r.nativeElement;
|
|
782
|
+
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
783
|
+
}
|
|
784
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
785
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
786
|
+
};
|
|
787
|
+
BqCheckbox = __decorate([
|
|
788
|
+
ProxyCmp({
|
|
789
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'formValidationMessage', 'indeterminate', 'name', 'required', 'value'],
|
|
790
|
+
methods: ['vClick', 'vFocus', 'vBlur']
|
|
791
|
+
}),
|
|
792
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
793
|
+
], BqCheckbox);
|
|
794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqCheckbox, decorators: [{
|
|
795
|
+
type: Component,
|
|
796
|
+
args: [{
|
|
797
|
+
selector: 'bq-checkbox',
|
|
798
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
799
|
+
template: '<ng-content></ng-content>',
|
|
800
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
801
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'formValidationMessage', 'indeterminate', 'name', 'required', 'value'],
|
|
802
|
+
}]
|
|
803
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
804
|
+
let BqDatePicker = class BqDatePicker {
|
|
805
|
+
/**
|
|
806
|
+
* If `true`, the Date picker input will be focused on component render
|
|
807
|
+
*/
|
|
808
|
+
set autofocus(_) { }
|
|
809
|
+
;
|
|
810
|
+
/**
|
|
811
|
+
* The clear button aria label
|
|
812
|
+
*/
|
|
813
|
+
set clearButtonLabel(_) { }
|
|
814
|
+
;
|
|
815
|
+
/**
|
|
816
|
+
* If `true`, the clear button won't be displayed
|
|
817
|
+
*/
|
|
818
|
+
set disableClear(_) { }
|
|
819
|
+
;
|
|
820
|
+
/**
|
|
821
|
+
* Indicates whether the Date picker input is disabled or not.
|
|
822
|
+
If `true`, the Date picker is disabled and cannot be interacted with.
|
|
823
|
+
*/
|
|
824
|
+
set disabled(_) { }
|
|
825
|
+
;
|
|
826
|
+
/**
|
|
827
|
+
* Represents the distance (gutter or margin) between the Date picker panel and the input element.
|
|
828
|
+
*/
|
|
829
|
+
set distance(_) { }
|
|
830
|
+
;
|
|
831
|
+
/**
|
|
832
|
+
* The first day of the week, where Sunday is 0, Monday is 1, etc
|
|
833
|
+
*/
|
|
834
|
+
set firstDayOfWeek(_) { }
|
|
835
|
+
;
|
|
836
|
+
/**
|
|
837
|
+
* The options to use when formatting the displayed value.
|
|
838
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat#using_options
|
|
839
|
+
*/
|
|
840
|
+
set formatOptions(_) { }
|
|
841
|
+
;
|
|
842
|
+
/**
|
|
843
|
+
* The ID of the form that the Date picker input belongs to.
|
|
844
|
+
*/
|
|
845
|
+
set form(_) { }
|
|
846
|
+
;
|
|
847
|
+
/**
|
|
848
|
+
* The native form validation message (mandatory if `required` is set)
|
|
849
|
+
*/
|
|
850
|
+
set formValidationMessage(_) { }
|
|
851
|
+
;
|
|
852
|
+
/**
|
|
853
|
+
* A function that takes a date and returns true if the date should not be selectable
|
|
854
|
+
*/
|
|
855
|
+
set isDateDisallowed(_) { }
|
|
856
|
+
;
|
|
857
|
+
/**
|
|
858
|
+
* The locale for formatting dates. If not set, will use the browser's locale.
|
|
859
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument
|
|
860
|
+
*/
|
|
861
|
+
set locale(_) { }
|
|
862
|
+
;
|
|
863
|
+
/**
|
|
864
|
+
* The latest date that can be selected
|
|
865
|
+
*/
|
|
866
|
+
set max(_) { }
|
|
867
|
+
;
|
|
868
|
+
/**
|
|
869
|
+
* The earliest date that can be selected
|
|
870
|
+
*/
|
|
871
|
+
set min(_) { }
|
|
872
|
+
;
|
|
873
|
+
/**
|
|
874
|
+
* Number of months to show when range is `true`
|
|
875
|
+
*/
|
|
876
|
+
set months(_) { }
|
|
877
|
+
;
|
|
878
|
+
/**
|
|
879
|
+
* Specifies how the next/previous buttons should navigate the calendar.
|
|
880
|
+
- single: The buttons will navigate by a single month at a time.
|
|
881
|
+
- months: The buttons will navigate by the number of months displayed per view.
|
|
882
|
+
*/
|
|
883
|
+
set monthsPerView(_) { }
|
|
884
|
+
;
|
|
885
|
+
/**
|
|
886
|
+
* The Date picker input name.
|
|
887
|
+
*/
|
|
888
|
+
set name(_) { }
|
|
889
|
+
;
|
|
890
|
+
/**
|
|
891
|
+
* If `true`, the Date picker panel will be visible.
|
|
892
|
+
*/
|
|
893
|
+
set open(_) { }
|
|
894
|
+
;
|
|
895
|
+
/**
|
|
896
|
+
* When set, it will override the height of the Date picker panel.
|
|
897
|
+
*/
|
|
898
|
+
set panelHeight(_) { }
|
|
899
|
+
;
|
|
900
|
+
/**
|
|
901
|
+
* The Date picker input placeholder text value
|
|
902
|
+
*/
|
|
903
|
+
set placeholder(_) { }
|
|
904
|
+
;
|
|
905
|
+
/**
|
|
906
|
+
* Position of the Date picker panel
|
|
907
|
+
*/
|
|
908
|
+
set placement(_) { }
|
|
909
|
+
;
|
|
910
|
+
/**
|
|
911
|
+
* Indicates whether or not the Date picker input is required to be filled out before submitting the form.
|
|
912
|
+
*/
|
|
913
|
+
set required(_) { }
|
|
914
|
+
;
|
|
915
|
+
/**
|
|
916
|
+
* Represents the skidding between the Date picker panel and the input element.
|
|
917
|
+
*/
|
|
918
|
+
set skidding(_) { }
|
|
919
|
+
;
|
|
920
|
+
/**
|
|
921
|
+
* Whether to show days outside the month
|
|
922
|
+
*/
|
|
923
|
+
set showOutsideDays(_) { }
|
|
924
|
+
;
|
|
925
|
+
/**
|
|
926
|
+
* Defines the strategy to position the Date picker panel
|
|
927
|
+
*/
|
|
928
|
+
set strategy(_) { }
|
|
929
|
+
;
|
|
930
|
+
/**
|
|
931
|
+
* The date that is tentatively selected e.g. the start of a range selection
|
|
932
|
+
*/
|
|
933
|
+
set tentative(_) { }
|
|
934
|
+
;
|
|
935
|
+
/**
|
|
936
|
+
* It defines how the calendar will behave, allowing single date selection, range selection, or multiple date selection
|
|
937
|
+
*/
|
|
938
|
+
set type(_) { }
|
|
939
|
+
;
|
|
940
|
+
/**
|
|
941
|
+
* The validation status of the Select input. @remarks This property is used to indicate the validation status of the select input. It can be set to one of the following values:
|
|
942
|
+
- `'none'`: No validation status is set.
|
|
943
|
+
- `'error'`: The input has a validation error.
|
|
944
|
+
- `'warning'`: The input has a validation warning.
|
|
945
|
+
- `'success'`: The input has passed validation.
|
|
946
|
+
*/
|
|
947
|
+
set validationStatus(_) { }
|
|
948
|
+
;
|
|
949
|
+
/**
|
|
950
|
+
* The select input value represents the currently selected date or range and can be used to reset the field to a previous value.
|
|
951
|
+
All dates are expected in ISO-8601 format (YYYY-MM-DD).
|
|
952
|
+
*/
|
|
953
|
+
set value(_) { }
|
|
954
|
+
;
|
|
955
|
+
constructor(c, r, z) {
|
|
956
|
+
this.z = z;
|
|
957
|
+
c.detach();
|
|
958
|
+
this.el = r.nativeElement;
|
|
959
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus']);
|
|
960
|
+
}
|
|
961
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
962
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqDatePicker, selector: "bq-date-picker", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", disableClear: "disableClear", disabled: "disabled", distance: "distance", firstDayOfWeek: "firstDayOfWeek", form: "form", formValidationMessage: "formValidationMessage", formatOptions: "formatOptions", isDateDisallowed: "isDateDisallowed", locale: "locale", max: "max", min: "min", months: "months", monthsPerView: "monthsPerView", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", required: "required", showOutsideDays: "showOutsideDays", skidding: "skidding", strategy: "strategy", tentative: "tentative", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
963
|
+
};
|
|
964
|
+
BqDatePicker = __decorate([
|
|
965
|
+
ProxyCmp({
|
|
966
|
+
inputs: ['autofocus', 'clearButtonLabel', 'disableClear', 'disabled', 'distance', 'firstDayOfWeek', 'form', 'formValidationMessage', 'formatOptions', 'isDateDisallowed', 'locale', 'max', 'min', 'months', 'monthsPerView', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'required', 'showOutsideDays', 'skidding', 'strategy', 'tentative', 'type', 'validationStatus', 'value'],
|
|
967
|
+
methods: ['clear']
|
|
968
|
+
}),
|
|
969
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
970
|
+
], BqDatePicker);
|
|
971
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDatePicker, decorators: [{
|
|
972
|
+
type: Component,
|
|
973
|
+
args: [{
|
|
974
|
+
selector: 'bq-date-picker',
|
|
975
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
976
|
+
template: '<ng-content></ng-content>',
|
|
977
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
978
|
+
inputs: ['autofocus', 'clearButtonLabel', 'disableClear', 'disabled', 'distance', 'firstDayOfWeek', 'form', 'formValidationMessage', 'formatOptions', 'isDateDisallowed', 'locale', 'max', 'min', 'months', 'monthsPerView', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'required', 'showOutsideDays', 'skidding', 'strategy', 'tentative', 'type', 'validationStatus', 'value'],
|
|
979
|
+
}]
|
|
980
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
981
|
+
let BqDialog = class BqDialog {
|
|
982
|
+
/**
|
|
983
|
+
* Border radius of the dialog component
|
|
984
|
+
*/
|
|
985
|
+
set border(_) { }
|
|
986
|
+
;
|
|
987
|
+
/**
|
|
988
|
+
* If true, the backdrop overlay won't be shown when the dialog opens
|
|
989
|
+
*/
|
|
990
|
+
set disableBackdrop(_) { }
|
|
991
|
+
;
|
|
992
|
+
/**
|
|
993
|
+
* If true, the dialog will not close when the [Esc] key is press
|
|
994
|
+
*/
|
|
995
|
+
set disableCloseEscKeydown(_) { }
|
|
996
|
+
;
|
|
997
|
+
/**
|
|
998
|
+
* If true, the dialog will not close when clicking on the backdrop overlay
|
|
999
|
+
*/
|
|
1000
|
+
set disableCloseClickOutside(_) { }
|
|
1001
|
+
;
|
|
1002
|
+
/**
|
|
1003
|
+
* The appearance of footer
|
|
1004
|
+
*/
|
|
1005
|
+
set footerAppearance(_) { }
|
|
1006
|
+
;
|
|
1007
|
+
/**
|
|
1008
|
+
* If true, it hides the close button
|
|
1009
|
+
*/
|
|
1010
|
+
set hideCloseButton(_) { }
|
|
1011
|
+
;
|
|
1012
|
+
/**
|
|
1013
|
+
* If true, the dialog will be shown as open
|
|
1014
|
+
*/
|
|
1015
|
+
set open(_) { }
|
|
1016
|
+
;
|
|
1017
|
+
/**
|
|
1018
|
+
* The size of the dialog
|
|
1019
|
+
*/
|
|
1020
|
+
set size(_) { }
|
|
1021
|
+
;
|
|
1022
|
+
constructor(c, r, z) {
|
|
1023
|
+
this.z = z;
|
|
1024
|
+
c.detach();
|
|
1025
|
+
this.el = r.nativeElement;
|
|
1026
|
+
proxyOutputs(this, this.el, ['bqCancel', 'bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
1027
|
+
}
|
|
1028
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1029
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1030
|
+
};
|
|
1031
|
+
BqDialog = __decorate([
|
|
1032
|
+
ProxyCmp({
|
|
1033
|
+
inputs: ['border', 'disableBackdrop', 'disableCloseClickOutside', 'disableCloseEscKeydown', 'footerAppearance', 'hideCloseButton', 'open', 'size'],
|
|
1034
|
+
methods: ['show', 'hide', 'cancel']
|
|
1035
|
+
}),
|
|
1036
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1037
|
+
], BqDialog);
|
|
1038
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDialog, decorators: [{
|
|
1039
|
+
type: Component,
|
|
1040
|
+
args: [{
|
|
1041
|
+
selector: 'bq-dialog',
|
|
1042
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1043
|
+
template: '<ng-content></ng-content>',
|
|
1044
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1045
|
+
inputs: ['border', 'disableBackdrop', 'disableCloseClickOutside', 'disableCloseEscKeydown', 'footerAppearance', 'hideCloseButton', 'open', 'size'],
|
|
1046
|
+
}]
|
|
1047
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1048
|
+
let BqDivider = class BqDivider {
|
|
1049
|
+
/**
|
|
1050
|
+
* If true, the divider has a dashed pattern
|
|
1051
|
+
*/
|
|
1052
|
+
set dashed(_) { }
|
|
1053
|
+
;
|
|
1054
|
+
/**
|
|
1055
|
+
* The default orientation of the divider
|
|
1056
|
+
*/
|
|
1057
|
+
set orientation(_) { }
|
|
1058
|
+
;
|
|
1059
|
+
/**
|
|
1060
|
+
* Set the stroke color of the divider. The value should be a valid value of the palette color
|
|
1061
|
+
*/
|
|
1062
|
+
set strokeColor(_) { }
|
|
1063
|
+
;
|
|
1064
|
+
/**
|
|
1065
|
+
* Set the alignment of the title on the main axis of the divider (horizontal / vertical)
|
|
1066
|
+
*/
|
|
1067
|
+
set titleAlignment(_) { }
|
|
1068
|
+
;
|
|
1069
|
+
/**
|
|
1070
|
+
* Set the width of each dash of the divider's stroke. This is applicable when the stroke is dashed
|
|
1071
|
+
*/
|
|
1072
|
+
set strokeDashWidth(_) { }
|
|
1073
|
+
;
|
|
1074
|
+
/**
|
|
1075
|
+
* Set the gap of the divider's stroke. This is applicable when the stroke is dashed
|
|
1076
|
+
*/
|
|
1077
|
+
set strokeDashGap(_) { }
|
|
1078
|
+
;
|
|
1079
|
+
/**
|
|
1080
|
+
* Set the thickness of the divider's stroke. Value expressed in px
|
|
1081
|
+
*/
|
|
1082
|
+
set strokeThickness(_) { }
|
|
1083
|
+
;
|
|
1084
|
+
/**
|
|
1085
|
+
* Set the min width of the divider's stroke when text is not centered. Value expressed in px
|
|
1086
|
+
*/
|
|
1087
|
+
set strokeBasis(_) { }
|
|
1088
|
+
;
|
|
1089
|
+
/**
|
|
1090
|
+
* Set the line of the divider's stroke. This is applicable when the stroke is dashed
|
|
1091
|
+
*/
|
|
1092
|
+
set strokeLinecap(_) { }
|
|
1093
|
+
;
|
|
1094
|
+
constructor(c, r, z) {
|
|
1095
|
+
this.z = z;
|
|
1096
|
+
c.detach();
|
|
1097
|
+
this.el = r.nativeElement;
|
|
1098
|
+
}
|
|
1099
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1100
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1101
|
+
};
|
|
1102
|
+
BqDivider = __decorate([
|
|
1103
|
+
ProxyCmp({
|
|
1104
|
+
inputs: ['dashed', 'orientation', 'strokeBasis', 'strokeColor', 'strokeDashGap', 'strokeDashWidth', 'strokeLinecap', 'strokeThickness', 'titleAlignment']
|
|
1105
|
+
}),
|
|
1106
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1107
|
+
], BqDivider);
|
|
1108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDivider, decorators: [{
|
|
1109
|
+
type: Component,
|
|
1110
|
+
args: [{
|
|
1111
|
+
selector: 'bq-divider',
|
|
1112
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1113
|
+
template: '<ng-content></ng-content>',
|
|
1114
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1115
|
+
inputs: ['dashed', 'orientation', 'strokeBasis', 'strokeColor', 'strokeDashGap', 'strokeDashWidth', 'strokeLinecap', 'strokeThickness', 'titleAlignment'],
|
|
1116
|
+
}]
|
|
1117
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1118
|
+
let BqDrawer = class BqDrawer {
|
|
1119
|
+
/**
|
|
1120
|
+
* If true, the backdrop overlay will be shown when the drawer opens
|
|
1121
|
+
*/
|
|
1122
|
+
set enableBackdrop(_) { }
|
|
1123
|
+
;
|
|
1124
|
+
/**
|
|
1125
|
+
* If true, the drawer will not close when clicking outside the panel
|
|
1126
|
+
*/
|
|
1127
|
+
set closeOnClickOutside(_) { }
|
|
1128
|
+
;
|
|
1129
|
+
/**
|
|
1130
|
+
* If true, the dialog will not close when the [Esc] key is pressed
|
|
1131
|
+
*/
|
|
1132
|
+
set closeOnEsc(_) { }
|
|
1133
|
+
;
|
|
1134
|
+
/**
|
|
1135
|
+
* If true, the drawer component will be shown
|
|
1136
|
+
*/
|
|
1137
|
+
set open(_) { }
|
|
1138
|
+
;
|
|
1139
|
+
/**
|
|
1140
|
+
* @deprecated Defines the position of the drawer
|
|
1141
|
+
*/
|
|
1142
|
+
set placement(_) { }
|
|
1143
|
+
;
|
|
1144
|
+
/**
|
|
1145
|
+
* Defines the position of the drawer
|
|
1146
|
+
*/
|
|
1147
|
+
set position(_) { }
|
|
1148
|
+
;
|
|
1149
|
+
constructor(c, r, z) {
|
|
1150
|
+
this.z = z;
|
|
1151
|
+
c.detach();
|
|
1152
|
+
this.el = r.nativeElement;
|
|
1153
|
+
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqAfterOpen', 'bqAfterClose']);
|
|
1154
|
+
}
|
|
1155
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1156
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1157
|
+
};
|
|
1158
|
+
BqDrawer = __decorate([
|
|
1159
|
+
ProxyCmp({
|
|
1160
|
+
inputs: ['closeOnClickOutside', 'closeOnEsc', 'enableBackdrop', 'open', 'placement', 'position'],
|
|
1161
|
+
methods: ['hide', 'show']
|
|
1162
|
+
}),
|
|
1163
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1164
|
+
], BqDrawer);
|
|
1165
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDrawer, decorators: [{
|
|
1166
|
+
type: Component,
|
|
1167
|
+
args: [{
|
|
1168
|
+
selector: 'bq-drawer',
|
|
1169
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1170
|
+
template: '<ng-content></ng-content>',
|
|
1171
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1172
|
+
inputs: ['closeOnClickOutside', 'closeOnEsc', 'enableBackdrop', 'open', 'placement', 'position'],
|
|
1173
|
+
}]
|
|
1174
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1175
|
+
let BqDropdown = class BqDropdown {
|
|
1176
|
+
/**
|
|
1177
|
+
* If true, the dropdown panel will be visible and won't be shown.
|
|
1178
|
+
*/
|
|
1179
|
+
set disabled(_) { }
|
|
1180
|
+
;
|
|
1181
|
+
/**
|
|
1182
|
+
* Represents the distance (gutter or margin) between the panel and the trigger element.
|
|
1183
|
+
*/
|
|
1184
|
+
set distance(_) { }
|
|
1185
|
+
;
|
|
1186
|
+
/**
|
|
1187
|
+
* If true, the panel will remain open after a selection is made.
|
|
1188
|
+
*/
|
|
1189
|
+
set keepOpenOnSelect(_) { }
|
|
1190
|
+
;
|
|
1191
|
+
/**
|
|
1192
|
+
* Position of the panel
|
|
1193
|
+
*/
|
|
1194
|
+
set placement(_) { }
|
|
1195
|
+
;
|
|
1196
|
+
/**
|
|
1197
|
+
* If true, the panel will be visible.
|
|
1198
|
+
*/
|
|
1199
|
+
set open(_) { }
|
|
1200
|
+
;
|
|
1201
|
+
/**
|
|
1202
|
+
* When set, it will override the height of the dropdown panel
|
|
1203
|
+
*/
|
|
1204
|
+
set panelHeight(_) { }
|
|
1205
|
+
;
|
|
1206
|
+
/**
|
|
1207
|
+
* Whether the panel should have the same width as the trigger element
|
|
1208
|
+
*/
|
|
1209
|
+
set sameWidth(_) { }
|
|
1210
|
+
;
|
|
1211
|
+
/**
|
|
1212
|
+
* Represents the skidding between the panel and the trigger element.
|
|
1213
|
+
*/
|
|
1214
|
+
set skidding(_) { }
|
|
1215
|
+
;
|
|
1216
|
+
/**
|
|
1217
|
+
* Defines the strategy to position the panel
|
|
1218
|
+
*/
|
|
1219
|
+
set strategy(_) { }
|
|
1220
|
+
;
|
|
1221
|
+
constructor(c, r, z) {
|
|
1222
|
+
this.z = z;
|
|
1223
|
+
c.detach();
|
|
1224
|
+
this.el = r.nativeElement;
|
|
1225
|
+
proxyOutputs(this, this.el, ['bqOpen']);
|
|
1226
|
+
}
|
|
1227
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1228
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1229
|
+
};
|
|
1230
|
+
BqDropdown = __decorate([
|
|
1231
|
+
ProxyCmp({
|
|
1232
|
+
inputs: ['disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy']
|
|
1233
|
+
}),
|
|
1234
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1235
|
+
], BqDropdown);
|
|
1236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDropdown, decorators: [{
|
|
1237
|
+
type: Component,
|
|
1238
|
+
args: [{
|
|
1239
|
+
selector: 'bq-dropdown',
|
|
1240
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1241
|
+
template: '<ng-content></ng-content>',
|
|
1242
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1243
|
+
inputs: ['disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
1244
|
+
}]
|
|
1245
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1246
|
+
let BqEmptyState = class BqEmptyState {
|
|
1247
|
+
/**
|
|
1248
|
+
* The size of the empty state component
|
|
1249
|
+
*/
|
|
1250
|
+
set size(_) { }
|
|
1251
|
+
;
|
|
1252
|
+
constructor(c, r, z) {
|
|
1253
|
+
this.z = z;
|
|
1254
|
+
c.detach();
|
|
1255
|
+
this.el = r.nativeElement;
|
|
1256
|
+
}
|
|
1257
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1258
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqEmptyState, selector: "bq-empty-state", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1259
|
+
};
|
|
1260
|
+
BqEmptyState = __decorate([
|
|
1261
|
+
ProxyCmp({
|
|
1262
|
+
inputs: ['size']
|
|
1263
|
+
}),
|
|
1264
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1265
|
+
], BqEmptyState);
|
|
1266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqEmptyState, decorators: [{
|
|
1267
|
+
type: Component,
|
|
1268
|
+
args: [{
|
|
1269
|
+
selector: 'bq-empty-state',
|
|
1270
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1271
|
+
template: '<ng-content></ng-content>',
|
|
1272
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1273
|
+
inputs: ['size'],
|
|
1274
|
+
}]
|
|
1275
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1276
|
+
let BqIcon = class BqIcon {
|
|
1277
|
+
/**
|
|
1278
|
+
* Label for the icon, used for accessibility
|
|
1279
|
+
*/
|
|
1280
|
+
set label(_) { }
|
|
1281
|
+
;
|
|
1282
|
+
/**
|
|
1283
|
+
* Set the stroke color of the SVG. The value should be a valid value of the palette color
|
|
1284
|
+
*/
|
|
1285
|
+
set color(_) { }
|
|
1286
|
+
;
|
|
1287
|
+
/**
|
|
1288
|
+
* Icon name to load. Please check all available icons [here](https://phosphoricons.com/)
|
|
1289
|
+
*/
|
|
1290
|
+
set name(_) { }
|
|
1291
|
+
;
|
|
1292
|
+
/**
|
|
1293
|
+
* Set the size of the SVG
|
|
1294
|
+
*/
|
|
1295
|
+
set size(_) { }
|
|
1296
|
+
;
|
|
1297
|
+
/**
|
|
1298
|
+
* Set the source of the SVG. If the source is set, the name property will be ignored
|
|
1299
|
+
*/
|
|
1300
|
+
set src(_) { }
|
|
1301
|
+
;
|
|
1302
|
+
/**
|
|
1303
|
+
* @deprecated It set the icon weight/style
|
|
1304
|
+
*/
|
|
1305
|
+
set weight(_) { }
|
|
1306
|
+
;
|
|
1307
|
+
constructor(c, r, z) {
|
|
1308
|
+
this.z = z;
|
|
1309
|
+
c.detach();
|
|
1310
|
+
this.el = r.nativeElement;
|
|
1311
|
+
proxyOutputs(this, this.el, ['svgLoaded']);
|
|
1312
|
+
}
|
|
1313
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1314
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1315
|
+
};
|
|
1316
|
+
BqIcon = __decorate([
|
|
1317
|
+
ProxyCmp({
|
|
1318
|
+
inputs: ['color', 'label', 'name', 'size', 'src', 'weight']
|
|
1319
|
+
}),
|
|
1320
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1321
|
+
], BqIcon);
|
|
1322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqIcon, decorators: [{
|
|
1323
|
+
type: Component,
|
|
1324
|
+
args: [{
|
|
1325
|
+
selector: 'bq-icon',
|
|
1326
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1327
|
+
template: '<ng-content></ng-content>',
|
|
1328
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1329
|
+
inputs: ['color', 'label', 'name', 'size', 'src', 'weight'],
|
|
1330
|
+
}]
|
|
1331
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1332
|
+
let BqInput = class BqInput {
|
|
1333
|
+
/**
|
|
1334
|
+
* Controls whether or not the input field should be capitalized and how.
|
|
1335
|
+
Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
|
|
1336
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
|
|
1337
|
+
*/
|
|
1338
|
+
set autocapitalize(_) { }
|
|
1339
|
+
;
|
|
1340
|
+
/**
|
|
1341
|
+
* Specifies whether or not the input field should have autocomplete enabled.
|
|
1342
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
1343
|
+
*/
|
|
1344
|
+
set autocomplete(_) { }
|
|
1345
|
+
;
|
|
1346
|
+
/**
|
|
1347
|
+
* Controls whether or not the input field should have autocorrect enabled.
|
|
1348
|
+
Possible values are 'on' and 'off'.
|
|
1349
|
+
*/
|
|
1350
|
+
set autocorrect(_) { }
|
|
1351
|
+
;
|
|
1352
|
+
/**
|
|
1353
|
+
* If true, the input will be focused on component render
|
|
1354
|
+
*/
|
|
1355
|
+
set autofocus(_) { }
|
|
1356
|
+
;
|
|
1357
|
+
/**
|
|
1358
|
+
* The clear button aria label
|
|
1359
|
+
*/
|
|
1360
|
+
set clearButtonLabel(_) { }
|
|
1361
|
+
;
|
|
1362
|
+
/**
|
|
1363
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
|
|
1364
|
+
A value of 0 means no debouncing will occur.
|
|
1365
|
+
*/
|
|
1366
|
+
set debounceTime(_) { }
|
|
1367
|
+
;
|
|
1368
|
+
/**
|
|
1369
|
+
* Indicates whether the input is disabled or not.
|
|
1370
|
+
If `true`, the input is disabled and cannot be interacted with.
|
|
1371
|
+
*/
|
|
1372
|
+
set disabled(_) { }
|
|
1373
|
+
;
|
|
1374
|
+
/**
|
|
1375
|
+
* If true, the clear button won't be displayed
|
|
1376
|
+
*/
|
|
1377
|
+
set disableClear(_) { }
|
|
1378
|
+
;
|
|
1379
|
+
/**
|
|
1380
|
+
* The ID of the form that the input field belongs to.
|
|
1381
|
+
*/
|
|
1382
|
+
set form(_) { }
|
|
1383
|
+
;
|
|
1384
|
+
/**
|
|
1385
|
+
* The native form validation message (mandatory if `required` is set)
|
|
1386
|
+
*/
|
|
1387
|
+
set formValidationMessage(_) { }
|
|
1388
|
+
;
|
|
1389
|
+
/**
|
|
1390
|
+
* The inputmode attribute specifies what kind of input mechanism would be most helpful for users entering content into the input field.
|
|
1391
|
+
This allows a browser to display an appropriate virtual keyboard while editing.
|
|
1392
|
+
Possible values are 'none', 'text', 'decimal', 'numeric', 'tel', 'search', 'email', 'url', and 'date'.
|
|
1393
|
+
*/
|
|
1394
|
+
set inputmode(_) { }
|
|
1395
|
+
;
|
|
1396
|
+
/**
|
|
1397
|
+
* The maximum value that the input field can accept.
|
|
1398
|
+
Only applies to date and number input types.
|
|
1399
|
+
*/
|
|
1400
|
+
set max(_) { }
|
|
1401
|
+
;
|
|
1402
|
+
/**
|
|
1403
|
+
* The maximum number of characters that the input field can accept.
|
|
1404
|
+
*/
|
|
1405
|
+
set maxlength(_) { }
|
|
1406
|
+
;
|
|
1407
|
+
/**
|
|
1408
|
+
* The minimum value that the input field can accept.
|
|
1409
|
+
Only applies to date and number input types.
|
|
1410
|
+
*/
|
|
1411
|
+
set min(_) { }
|
|
1412
|
+
;
|
|
1413
|
+
/**
|
|
1414
|
+
* The minimum number of characters that the input field can accept.
|
|
1415
|
+
*/
|
|
1416
|
+
set minlength(_) { }
|
|
1417
|
+
;
|
|
1418
|
+
/**
|
|
1419
|
+
* The input field name.
|
|
1420
|
+
*/
|
|
1421
|
+
set name(_) { }
|
|
1422
|
+
;
|
|
1423
|
+
/**
|
|
1424
|
+
* Specifies a regular expression the form control's value should match.
|
|
1425
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern
|
|
1426
|
+
*/
|
|
1427
|
+
set pattern(_) { }
|
|
1428
|
+
;
|
|
1429
|
+
/**
|
|
1430
|
+
* The input placeholder text value
|
|
1431
|
+
*/
|
|
1432
|
+
set placeholder(_) { }
|
|
1433
|
+
;
|
|
1434
|
+
/**
|
|
1435
|
+
* If true, the input field cannot be modified.
|
|
1436
|
+
*/
|
|
1437
|
+
set readonly(_) { }
|
|
1438
|
+
;
|
|
1439
|
+
/**
|
|
1440
|
+
* Indicates whether or not the input field is required to be filled out before submitting the form.
|
|
1441
|
+
*/
|
|
1442
|
+
set required(_) { }
|
|
1443
|
+
;
|
|
1444
|
+
/**
|
|
1445
|
+
* A number that specifies the granularity that the value must adhere to.
|
|
1446
|
+
Valid for date, month, week, time, datetime-local, number, and range.
|
|
1447
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#step
|
|
1448
|
+
*/
|
|
1449
|
+
set step(_) { }
|
|
1450
|
+
;
|
|
1451
|
+
/**
|
|
1452
|
+
* The type attribute specifies the type of input field to display.
|
|
1453
|
+
Possible values are 'text', 'password', 'email', 'number', 'tel', 'search', 'url', and more.
|
|
1454
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
|
|
1455
|
+
*/
|
|
1456
|
+
set type(_) { }
|
|
1457
|
+
;
|
|
1458
|
+
/**
|
|
1459
|
+
* The validation status of the input. @remarks This property is used to indicate the validation status of the input. It can be set to one of the following values:
|
|
1460
|
+
- `'none'`: No validation status is set.
|
|
1461
|
+
- `'error'`: The input has a validation error.
|
|
1462
|
+
- `'warning'`: The input has a validation warning.
|
|
1463
|
+
- `'success'`: The input has passed validation.
|
|
1464
|
+
*/
|
|
1465
|
+
set validationStatus(_) { }
|
|
1466
|
+
;
|
|
1467
|
+
/**
|
|
1468
|
+
* The input value, it can be used to reset the input to a previous value
|
|
1469
|
+
*/
|
|
1470
|
+
set value(_) { }
|
|
1471
|
+
;
|
|
1472
|
+
constructor(c, r, z) {
|
|
1473
|
+
this.z = z;
|
|
1474
|
+
c.detach();
|
|
1475
|
+
this.el = r.nativeElement;
|
|
1476
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
1477
|
+
}
|
|
1478
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1479
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqInput, selector: "bq-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", form: "form", formValidationMessage: "formValidationMessage", inputmode: "inputmode", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", type: "type", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1480
|
+
};
|
|
1481
|
+
BqInput = __decorate([
|
|
1482
|
+
ProxyCmp({
|
|
1483
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'formValidationMessage', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value']
|
|
1484
|
+
}),
|
|
1485
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1486
|
+
], BqInput);
|
|
1487
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqInput, decorators: [{
|
|
1488
|
+
type: Component,
|
|
1489
|
+
args: [{
|
|
1490
|
+
selector: 'bq-input',
|
|
1491
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1492
|
+
template: '<ng-content></ng-content>',
|
|
1493
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1494
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'form', 'formValidationMessage', 'inputmode', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'type', 'validationStatus', 'value'],
|
|
1495
|
+
}]
|
|
1496
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1497
|
+
let BqNotification = class BqNotification {
|
|
1498
|
+
/**
|
|
1499
|
+
* If true, the notification will automatically hide after the specified amount of time
|
|
1500
|
+
*/
|
|
1501
|
+
set autoDismiss(_) { }
|
|
1502
|
+
;
|
|
1503
|
+
/**
|
|
1504
|
+
* The corder radius of the notification component
|
|
1505
|
+
*/
|
|
1506
|
+
set border(_) { }
|
|
1507
|
+
;
|
|
1508
|
+
/**
|
|
1509
|
+
* If true, the close button at the top right of the notification won't be shown
|
|
1510
|
+
*/
|
|
1511
|
+
set disableClose(_) { }
|
|
1512
|
+
;
|
|
1513
|
+
/**
|
|
1514
|
+
* If true, the notification icon won't be shown
|
|
1515
|
+
*/
|
|
1516
|
+
set hideIcon(_) { }
|
|
1517
|
+
;
|
|
1518
|
+
/**
|
|
1519
|
+
* If true, the notification will be shown
|
|
1520
|
+
*/
|
|
1521
|
+
set open(_) { }
|
|
1522
|
+
;
|
|
1523
|
+
/**
|
|
1524
|
+
* The length of time, in milliseconds, after which the notification will close itself. Only valid if `autoDismiss="true"`
|
|
1525
|
+
*/
|
|
1526
|
+
set time(_) { }
|
|
1527
|
+
;
|
|
1528
|
+
/**
|
|
1529
|
+
* Type of Notification
|
|
1530
|
+
*/
|
|
1531
|
+
set type(_) { }
|
|
1532
|
+
;
|
|
1533
|
+
constructor(c, r, z) {
|
|
1534
|
+
this.z = z;
|
|
1535
|
+
c.detach();
|
|
1536
|
+
this.el = r.nativeElement;
|
|
1537
|
+
proxyOutputs(this, this.el, ['bqHide', 'bqShow', 'bqAfterOpen', 'bqAfterClose']);
|
|
1538
|
+
}
|
|
1539
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1540
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1541
|
+
};
|
|
1542
|
+
BqNotification = __decorate([
|
|
1543
|
+
ProxyCmp({
|
|
1544
|
+
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'time', 'type'],
|
|
1545
|
+
methods: ['hide', 'show', 'toast']
|
|
1546
|
+
}),
|
|
1547
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1548
|
+
], BqNotification);
|
|
1549
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqNotification, decorators: [{
|
|
1550
|
+
type: Component,
|
|
1551
|
+
args: [{
|
|
1552
|
+
selector: 'bq-notification',
|
|
1553
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1554
|
+
template: '<ng-content></ng-content>',
|
|
1555
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1556
|
+
inputs: ['autoDismiss', 'border', 'disableClose', 'hideIcon', 'open', 'time', 'type'],
|
|
1557
|
+
}]
|
|
1558
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1559
|
+
let BqOption = class BqOption {
|
|
1560
|
+
/**
|
|
1561
|
+
* If true, the option is hidden.
|
|
1562
|
+
*/
|
|
1563
|
+
set hidden(_) { }
|
|
1564
|
+
;
|
|
1565
|
+
/**
|
|
1566
|
+
* If true, the option is disabled.
|
|
1567
|
+
*/
|
|
1568
|
+
set disabled(_) { }
|
|
1569
|
+
;
|
|
1570
|
+
/**
|
|
1571
|
+
* A string representing the value of the option. Can be used to identify the item
|
|
1572
|
+
*/
|
|
1573
|
+
set value(_) { }
|
|
1574
|
+
;
|
|
1575
|
+
/**
|
|
1576
|
+
* If true, the option is selected and active.
|
|
1577
|
+
*/
|
|
1578
|
+
set selected(_) { }
|
|
1579
|
+
;
|
|
1580
|
+
constructor(c, r, z) {
|
|
1581
|
+
this.z = z;
|
|
1582
|
+
c.detach();
|
|
1583
|
+
this.el = r.nativeElement;
|
|
1584
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick', 'bqEnter']);
|
|
1585
|
+
}
|
|
1586
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1587
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1588
|
+
};
|
|
1589
|
+
BqOption = __decorate([
|
|
1590
|
+
ProxyCmp({
|
|
1591
|
+
inputs: ['disabled', 'hidden', 'selected', 'value']
|
|
1592
|
+
}),
|
|
1593
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1594
|
+
], BqOption);
|
|
1595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOption, decorators: [{
|
|
1596
|
+
type: Component,
|
|
1597
|
+
args: [{
|
|
1598
|
+
selector: 'bq-option',
|
|
1599
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1600
|
+
template: '<ng-content></ng-content>',
|
|
1601
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1602
|
+
inputs: ['disabled', 'hidden', 'selected', 'value'],
|
|
1603
|
+
}]
|
|
1604
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1605
|
+
let BqOptionGroup = class BqOptionGroup {
|
|
1606
|
+
constructor(c, r, z) {
|
|
1607
|
+
this.z = z;
|
|
1608
|
+
c.detach();
|
|
1609
|
+
this.el = r.nativeElement;
|
|
1610
|
+
}
|
|
1611
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1612
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqOptionGroup, selector: "bq-option-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1613
|
+
};
|
|
1614
|
+
BqOptionGroup = __decorate([
|
|
1615
|
+
ProxyCmp({}),
|
|
1616
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1617
|
+
], BqOptionGroup);
|
|
1618
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionGroup, decorators: [{
|
|
1619
|
+
type: Component,
|
|
1620
|
+
args: [{
|
|
1621
|
+
selector: 'bq-option-group',
|
|
1622
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1623
|
+
template: '<ng-content></ng-content>',
|
|
1624
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1625
|
+
inputs: [],
|
|
1626
|
+
}]
|
|
1627
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1628
|
+
let BqOptionList = class BqOptionList {
|
|
1629
|
+
/**
|
|
1630
|
+
* Aria label for the list.
|
|
1631
|
+
*/
|
|
1632
|
+
set ariaLabel(_) { }
|
|
1633
|
+
;
|
|
1634
|
+
constructor(c, r, z) {
|
|
1635
|
+
this.z = z;
|
|
1636
|
+
c.detach();
|
|
1637
|
+
this.el = r.nativeElement;
|
|
1638
|
+
proxyOutputs(this, this.el, ['bqSelect']);
|
|
1639
|
+
}
|
|
1640
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1641
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqOptionList, selector: "bq-option-list", inputs: { ariaLabel: "ariaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1642
|
+
};
|
|
1643
|
+
BqOptionList = __decorate([
|
|
1644
|
+
ProxyCmp({
|
|
1645
|
+
inputs: ['ariaLabel']
|
|
1646
|
+
}),
|
|
1647
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1648
|
+
], BqOptionList);
|
|
1649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqOptionList, decorators: [{
|
|
1650
|
+
type: Component,
|
|
1651
|
+
args: [{
|
|
1652
|
+
selector: 'bq-option-list',
|
|
1653
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1654
|
+
template: '<ng-content></ng-content>',
|
|
1655
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1656
|
+
inputs: ['ariaLabel'],
|
|
1657
|
+
}]
|
|
1658
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1659
|
+
let BqPageTitle = class BqPageTitle {
|
|
1660
|
+
constructor(c, r, z) {
|
|
1661
|
+
this.z = z;
|
|
1662
|
+
c.detach();
|
|
1663
|
+
this.el = r.nativeElement;
|
|
1664
|
+
}
|
|
1665
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPageTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1666
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqPageTitle, selector: "bq-page-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1667
|
+
};
|
|
1668
|
+
BqPageTitle = __decorate([
|
|
1669
|
+
ProxyCmp({}),
|
|
1670
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1671
|
+
], BqPageTitle);
|
|
1672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPageTitle, decorators: [{
|
|
1673
|
+
type: Component,
|
|
1674
|
+
args: [{
|
|
1675
|
+
selector: 'bq-page-title',
|
|
1676
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1677
|
+
template: '<ng-content></ng-content>',
|
|
1678
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1679
|
+
inputs: [],
|
|
1680
|
+
}]
|
|
1681
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1682
|
+
let BqPanel = class BqPanel {
|
|
1683
|
+
/**
|
|
1684
|
+
* Represents the distance (gutter or margin) between the panel and the trigger element.
|
|
1685
|
+
*/
|
|
1686
|
+
set distance(_) { }
|
|
1687
|
+
;
|
|
1688
|
+
/**
|
|
1689
|
+
* Position of the panel
|
|
1690
|
+
*/
|
|
1691
|
+
set placement(_) { }
|
|
1692
|
+
;
|
|
1693
|
+
/**
|
|
1694
|
+
* If true, the panel will be visible.
|
|
1695
|
+
*/
|
|
1696
|
+
set open(_) { }
|
|
1697
|
+
;
|
|
1698
|
+
/**
|
|
1699
|
+
* Whether the panel should have the same width as the trigger element
|
|
1700
|
+
*/
|
|
1701
|
+
set sameWidth(_) { }
|
|
1702
|
+
;
|
|
1703
|
+
/**
|
|
1704
|
+
* Represents the skidding between the panel and the trigger element.
|
|
1705
|
+
*/
|
|
1706
|
+
set skidding(_) { }
|
|
1707
|
+
;
|
|
1708
|
+
/**
|
|
1709
|
+
* Defines the strategy to position the panel
|
|
1710
|
+
*/
|
|
1711
|
+
set strategy(_) { }
|
|
1712
|
+
;
|
|
1713
|
+
constructor(c, r, z) {
|
|
1714
|
+
this.z = z;
|
|
1715
|
+
c.detach();
|
|
1716
|
+
this.el = r.nativeElement;
|
|
1717
|
+
}
|
|
1718
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1719
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1720
|
+
};
|
|
1721
|
+
BqPanel = __decorate([
|
|
1722
|
+
ProxyCmp({
|
|
1723
|
+
inputs: ['distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy']
|
|
1724
|
+
}),
|
|
1725
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1726
|
+
], BqPanel);
|
|
1727
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPanel, decorators: [{
|
|
1728
|
+
type: Component,
|
|
1729
|
+
args: [{
|
|
1730
|
+
selector: 'bq-panel',
|
|
1731
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1732
|
+
template: '<ng-content></ng-content>',
|
|
1733
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1734
|
+
inputs: ['distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
1735
|
+
}]
|
|
1736
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1737
|
+
let BqProgress = class BqProgress {
|
|
1738
|
+
/**
|
|
1739
|
+
* It will set the border style of the progress bar
|
|
1740
|
+
*/
|
|
1741
|
+
set borderShape(_) { }
|
|
1742
|
+
;
|
|
1743
|
+
/**
|
|
1744
|
+
* If `true`, a tooltip will be shown displaying the progress value
|
|
1745
|
+
*/
|
|
1746
|
+
set enableTooltip(_) { }
|
|
1747
|
+
;
|
|
1748
|
+
/**
|
|
1749
|
+
* If `true` the indeterminate state of progress bar is enabled
|
|
1750
|
+
*/
|
|
1751
|
+
set indeterminate(_) { }
|
|
1752
|
+
;
|
|
1753
|
+
/**
|
|
1754
|
+
* If `true, a label text showing the value (in percentage) will be shown
|
|
1755
|
+
*/
|
|
1756
|
+
set label(_) { }
|
|
1757
|
+
;
|
|
1758
|
+
/**
|
|
1759
|
+
* Progress bar thickness
|
|
1760
|
+
*/
|
|
1761
|
+
set thickness(_) { }
|
|
1762
|
+
;
|
|
1763
|
+
/**
|
|
1764
|
+
* Progress type
|
|
1765
|
+
*/
|
|
1766
|
+
set type(_) { }
|
|
1767
|
+
;
|
|
1768
|
+
/**
|
|
1769
|
+
* A number representing the current value of the progress bar
|
|
1770
|
+
*/
|
|
1771
|
+
set value(_) { }
|
|
1772
|
+
;
|
|
1773
|
+
constructor(c, r, z) {
|
|
1774
|
+
this.z = z;
|
|
1775
|
+
c.detach();
|
|
1776
|
+
this.el = r.nativeElement;
|
|
1777
|
+
}
|
|
1778
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1779
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1780
|
+
};
|
|
1781
|
+
BqProgress = __decorate([
|
|
1782
|
+
ProxyCmp({
|
|
1783
|
+
inputs: ['borderShape', 'enableTooltip', 'indeterminate', 'label', 'thickness', 'type', 'value']
|
|
1784
|
+
}),
|
|
1785
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1786
|
+
], BqProgress);
|
|
1787
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqProgress, decorators: [{
|
|
1788
|
+
type: Component,
|
|
1789
|
+
args: [{
|
|
1790
|
+
selector: 'bq-progress',
|
|
1791
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1792
|
+
template: '<ng-content></ng-content>',
|
|
1793
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1794
|
+
inputs: ['borderShape', 'enableTooltip', 'indeterminate', 'label', 'thickness', 'type', 'value'],
|
|
1795
|
+
}]
|
|
1796
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1797
|
+
let BqRadio = class BqRadio {
|
|
1798
|
+
/**
|
|
1799
|
+
* If true radio input is checked
|
|
1800
|
+
*/
|
|
1801
|
+
set checked(_) { }
|
|
1802
|
+
;
|
|
1803
|
+
/**
|
|
1804
|
+
* If true radio input is disabled
|
|
1805
|
+
*/
|
|
1806
|
+
set disabled(_) { }
|
|
1807
|
+
;
|
|
1808
|
+
/**
|
|
1809
|
+
* If true radio displays background on hover
|
|
1810
|
+
*/
|
|
1811
|
+
set backgroundOnHover(_) { }
|
|
1812
|
+
;
|
|
1813
|
+
/**
|
|
1814
|
+
* The form ID that the radio input is associated with
|
|
1815
|
+
*/
|
|
1816
|
+
set formId(_) { }
|
|
1817
|
+
;
|
|
1818
|
+
/**
|
|
1819
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
1820
|
+
*/
|
|
1821
|
+
set name(_) { }
|
|
1822
|
+
;
|
|
1823
|
+
/**
|
|
1824
|
+
* If `true`, it will indicate that the user must specify a value for the radio before the owning form can be submitted
|
|
1825
|
+
*/
|
|
1826
|
+
set required(_) { }
|
|
1827
|
+
;
|
|
1828
|
+
/**
|
|
1829
|
+
* A string representing the value of the radio.
|
|
1830
|
+
*/
|
|
1831
|
+
set value(_) { }
|
|
1832
|
+
;
|
|
1833
|
+
constructor(c, r, z) {
|
|
1834
|
+
this.z = z;
|
|
1835
|
+
c.detach();
|
|
1836
|
+
this.el = r.nativeElement;
|
|
1837
|
+
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
1838
|
+
}
|
|
1839
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1840
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
1841
|
+
};
|
|
1842
|
+
BqRadio = __decorate([
|
|
1843
|
+
ProxyCmp({
|
|
1844
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'name', 'required', 'value'],
|
|
1845
|
+
methods: ['vClick', 'vFocus', 'vBlur', 'getNativeInput']
|
|
1846
|
+
}),
|
|
1847
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1848
|
+
], BqRadio);
|
|
1849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadio, decorators: [{
|
|
1850
|
+
type: Component,
|
|
1851
|
+
args: [{
|
|
1852
|
+
selector: 'bq-radio',
|
|
1853
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1854
|
+
template: '<ng-content></ng-content>',
|
|
1855
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1856
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formId', 'name', 'required', 'value'],
|
|
1857
|
+
}]
|
|
1858
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1859
|
+
let BqRadioGroup = class BqRadioGroup {
|
|
1860
|
+
/**
|
|
1861
|
+
* If true, all radio inputs in the group will display a background on hover
|
|
1862
|
+
*/
|
|
1863
|
+
set backgroundOnHover(_) { }
|
|
1864
|
+
;
|
|
1865
|
+
/**
|
|
1866
|
+
* A number representing the delay time (in milliseconds) that `bqChange` event handler gets triggered once the value change
|
|
1867
|
+
*/
|
|
1868
|
+
set debounceTime(_) { }
|
|
1869
|
+
;
|
|
1870
|
+
/**
|
|
1871
|
+
* If true radio inputs are disabled
|
|
1872
|
+
*/
|
|
1873
|
+
set disabled(_) { }
|
|
1874
|
+
;
|
|
1875
|
+
/**
|
|
1876
|
+
* If true displays fieldset
|
|
1877
|
+
*/
|
|
1878
|
+
set fieldset(_) { }
|
|
1879
|
+
;
|
|
1880
|
+
/**
|
|
1881
|
+
* Name of the HTML input form control. Submitted with the form as part of a name/value pair.
|
|
1882
|
+
*/
|
|
1883
|
+
set name(_) { }
|
|
1884
|
+
;
|
|
1885
|
+
/**
|
|
1886
|
+
* The display orientation of the radio inputs
|
|
1887
|
+
*/
|
|
1888
|
+
set orientation(_) { }
|
|
1889
|
+
;
|
|
1890
|
+
/**
|
|
1891
|
+
* If true, the radio group is required
|
|
1892
|
+
*/
|
|
1893
|
+
set required(_) { }
|
|
1894
|
+
;
|
|
1895
|
+
/**
|
|
1896
|
+
* The native form validation message when the radio group is required
|
|
1897
|
+
*/
|
|
1898
|
+
set requiredValidationMessage(_) { }
|
|
1899
|
+
;
|
|
1900
|
+
/**
|
|
1901
|
+
* A string representing the value of the radio.
|
|
1902
|
+
*/
|
|
1903
|
+
set value(_) { }
|
|
1904
|
+
;
|
|
1905
|
+
constructor(c, r, z) {
|
|
1906
|
+
this.z = z;
|
|
1907
|
+
c.detach();
|
|
1908
|
+
this.el = r.nativeElement;
|
|
1909
|
+
proxyOutputs(this, this.el, ['bqChange']);
|
|
1910
|
+
}
|
|
1911
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1912
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqRadioGroup, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", required: "required", requiredValidationMessage: "requiredValidationMessage", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1913
|
+
};
|
|
1914
|
+
BqRadioGroup = __decorate([
|
|
1915
|
+
ProxyCmp({
|
|
1916
|
+
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'required', 'requiredValidationMessage', 'value']
|
|
1917
|
+
}),
|
|
1918
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1919
|
+
], BqRadioGroup);
|
|
1920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqRadioGroup, decorators: [{
|
|
1921
|
+
type: Component,
|
|
1922
|
+
args: [{
|
|
1923
|
+
selector: 'bq-radio-group',
|
|
1924
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1925
|
+
template: '<ng-content></ng-content>',
|
|
1926
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1927
|
+
inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', 'name', 'orientation', 'required', 'requiredValidationMessage', 'value'],
|
|
1928
|
+
}]
|
|
1929
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1930
|
+
let BqSelect = class BqSelect {
|
|
1931
|
+
/**
|
|
1932
|
+
* If true, the Select input will be focused on component render
|
|
1933
|
+
*/
|
|
1934
|
+
set autofocus(_) { }
|
|
1935
|
+
;
|
|
1936
|
+
/**
|
|
1937
|
+
* The clear button aria label
|
|
1938
|
+
*/
|
|
1939
|
+
set clearButtonLabel(_) { }
|
|
1940
|
+
;
|
|
1941
|
+
/**
|
|
1942
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
|
|
1943
|
+
A value of 0 means no debouncing will occur.
|
|
1944
|
+
*/
|
|
1945
|
+
set debounceTime(_) { }
|
|
1946
|
+
;
|
|
1947
|
+
/**
|
|
1948
|
+
* Indicates whether the Select input is disabled or not.
|
|
1949
|
+
If `true`, the Select is disabled and cannot be interacted with.
|
|
1950
|
+
*/
|
|
1951
|
+
set disabled(_) { }
|
|
1952
|
+
;
|
|
1953
|
+
/**
|
|
1954
|
+
* If true, the clear button won't be displayed
|
|
1955
|
+
*/
|
|
1956
|
+
set disableClear(_) { }
|
|
1957
|
+
;
|
|
1958
|
+
/**
|
|
1959
|
+
* Represents the distance (gutter or margin) between the Select panel and the input element.
|
|
1960
|
+
*/
|
|
1961
|
+
set distance(_) { }
|
|
1962
|
+
;
|
|
1963
|
+
/**
|
|
1964
|
+
* The ID of the form that the Select input belongs to.
|
|
1965
|
+
*/
|
|
1966
|
+
set form(_) { }
|
|
1967
|
+
;
|
|
1968
|
+
/**
|
|
1969
|
+
* If true, the Select panel will remain open after a selection is made.
|
|
1970
|
+
*/
|
|
1971
|
+
set keepOpenOnSelect(_) { }
|
|
1972
|
+
;
|
|
1973
|
+
/**
|
|
1974
|
+
* The Select input name.
|
|
1975
|
+
*/
|
|
1976
|
+
set name(_) { }
|
|
1977
|
+
;
|
|
1978
|
+
/**
|
|
1979
|
+
* The maximum number of tags to display when multiple selection is enabled
|
|
1980
|
+
*/
|
|
1981
|
+
set maxTagsVisible(_) { }
|
|
1982
|
+
;
|
|
1983
|
+
/**
|
|
1984
|
+
* If true, the Select input will allow multiple selections.
|
|
1985
|
+
*/
|
|
1986
|
+
set multiple(_) { }
|
|
1987
|
+
;
|
|
1988
|
+
/**
|
|
1989
|
+
* If true, the Select panel will be visible.
|
|
1990
|
+
*/
|
|
1991
|
+
set open(_) { }
|
|
1992
|
+
;
|
|
1993
|
+
/**
|
|
1994
|
+
* When set, it will override the height of the Select panel.
|
|
1995
|
+
*/
|
|
1996
|
+
set panelHeight(_) { }
|
|
1997
|
+
;
|
|
1998
|
+
/**
|
|
1999
|
+
* The Select input placeholder text value
|
|
2000
|
+
*/
|
|
2001
|
+
set placeholder(_) { }
|
|
2002
|
+
;
|
|
2003
|
+
/**
|
|
2004
|
+
* Position of the Select panel
|
|
2005
|
+
*/
|
|
2006
|
+
set placement(_) { }
|
|
2007
|
+
;
|
|
2008
|
+
/**
|
|
2009
|
+
* If true, the list of options cannot be filtered (searching won't be available)
|
|
2010
|
+
*/
|
|
2011
|
+
set readonly(_) { }
|
|
2012
|
+
;
|
|
2013
|
+
/**
|
|
2014
|
+
* Indicates whether or not the Select input is required to be filled out before submitting the form.
|
|
2015
|
+
*/
|
|
2016
|
+
set required(_) { }
|
|
2017
|
+
;
|
|
2018
|
+
/**
|
|
2019
|
+
* Whether the panel should have the Select same width as the input element
|
|
2020
|
+
*/
|
|
2021
|
+
set sameWidth(_) { }
|
|
2022
|
+
;
|
|
2023
|
+
/**
|
|
2024
|
+
* Represents the skidding between the Select panel and the input element.
|
|
2025
|
+
*/
|
|
2026
|
+
set skidding(_) { }
|
|
2027
|
+
;
|
|
2028
|
+
/**
|
|
2029
|
+
* Defines the strategy to position the Select panel
|
|
2030
|
+
*/
|
|
2031
|
+
set strategy(_) { }
|
|
2032
|
+
;
|
|
2033
|
+
/**
|
|
2034
|
+
* The validation status of the Select input. @remarks This property is used to indicate the validation status of the select input. It can be set to one of the following values:
|
|
2035
|
+
- `'none'`: No validation status is set.
|
|
2036
|
+
- `'error'`: The input has a validation error.
|
|
2037
|
+
- `'warning'`: The input has a validation warning.
|
|
2038
|
+
- `'success'`: The input has passed validation.
|
|
2039
|
+
*/
|
|
2040
|
+
set validationStatus(_) { }
|
|
2041
|
+
;
|
|
2042
|
+
/**
|
|
2043
|
+
* The select input value, it can be used to reset the field to a previous value
|
|
2044
|
+
*/
|
|
2045
|
+
set value(_) { }
|
|
2046
|
+
;
|
|
2047
|
+
constructor(c, r, z) {
|
|
2048
|
+
this.z = z;
|
|
2049
|
+
c.detach();
|
|
2050
|
+
this.el = r.nativeElement;
|
|
2051
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
2052
|
+
}
|
|
2053
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2054
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2055
|
+
};
|
|
2056
|
+
BqSelect = __decorate([
|
|
2057
|
+
ProxyCmp({
|
|
2058
|
+
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
2059
|
+
methods: ['clear']
|
|
2060
|
+
}),
|
|
2061
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2062
|
+
], BqSelect);
|
|
2063
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSelect, decorators: [{
|
|
2064
|
+
type: Component,
|
|
2065
|
+
args: [{
|
|
2066
|
+
selector: 'bq-select',
|
|
2067
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2068
|
+
template: '<ng-content></ng-content>',
|
|
2069
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2070
|
+
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
2071
|
+
}]
|
|
2072
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2073
|
+
let BqSideMenu = class BqSideMenu {
|
|
2074
|
+
/**
|
|
2075
|
+
* It sets a predefined appearance of the side menu
|
|
2076
|
+
*/
|
|
2077
|
+
set appearance(_) { }
|
|
2078
|
+
;
|
|
2079
|
+
/**
|
|
2080
|
+
* If true, the container will reduce its width
|
|
2081
|
+
*/
|
|
2082
|
+
set collapse(_) { }
|
|
2083
|
+
;
|
|
2084
|
+
/**
|
|
2085
|
+
* It sets the size of the navigation menu items
|
|
2086
|
+
*/
|
|
2087
|
+
set size(_) { }
|
|
2088
|
+
;
|
|
2089
|
+
constructor(c, r, z) {
|
|
2090
|
+
this.z = z;
|
|
2091
|
+
c.detach();
|
|
2092
|
+
this.el = r.nativeElement;
|
|
2093
|
+
proxyOutputs(this, this.el, ['bqCollapse', 'bqSelect']);
|
|
2094
|
+
}
|
|
2095
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2096
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2097
|
+
};
|
|
2098
|
+
BqSideMenu = __decorate([
|
|
2099
|
+
ProxyCmp({
|
|
2100
|
+
inputs: ['appearance', 'collapse', 'size'],
|
|
2101
|
+
methods: ['toggleCollapse']
|
|
2102
|
+
}),
|
|
2103
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2104
|
+
], BqSideMenu);
|
|
2105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenu, decorators: [{
|
|
2106
|
+
type: Component,
|
|
2107
|
+
args: [{
|
|
2108
|
+
selector: 'bq-side-menu',
|
|
2109
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2110
|
+
template: '<ng-content></ng-content>',
|
|
2111
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2112
|
+
inputs: ['appearance', 'collapse', 'size'],
|
|
2113
|
+
}]
|
|
2114
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2115
|
+
let BqSideMenuItem = class BqSideMenuItem {
|
|
2116
|
+
/**
|
|
2117
|
+
* If true, the menu item will be shown as active/selected.
|
|
2118
|
+
*/
|
|
2119
|
+
set active(_) { }
|
|
2120
|
+
;
|
|
2121
|
+
/**
|
|
2122
|
+
* If true, the item label and suffix will be hidden and the with will be reduce according to its parent
|
|
2123
|
+
*/
|
|
2124
|
+
set collapse(_) { }
|
|
2125
|
+
;
|
|
2126
|
+
/**
|
|
2127
|
+
* If true, the menu item will be disabled (no interaction allowed)
|
|
2128
|
+
*/
|
|
2129
|
+
set disabled(_) { }
|
|
2130
|
+
;
|
|
2131
|
+
constructor(c, r, z) {
|
|
2132
|
+
this.z = z;
|
|
2133
|
+
c.detach();
|
|
2134
|
+
this.el = r.nativeElement;
|
|
2135
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqFocus', 'bqClick']);
|
|
2136
|
+
}
|
|
2137
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2138
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2139
|
+
};
|
|
2140
|
+
BqSideMenuItem = __decorate([
|
|
2141
|
+
ProxyCmp({
|
|
2142
|
+
inputs: ['active', 'collapse', 'disabled']
|
|
2143
|
+
}),
|
|
2144
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2145
|
+
], BqSideMenuItem);
|
|
2146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSideMenuItem, decorators: [{
|
|
2147
|
+
type: Component,
|
|
2148
|
+
args: [{
|
|
2149
|
+
selector: 'bq-side-menu-item',
|
|
2150
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2151
|
+
template: '<ng-content></ng-content>',
|
|
2152
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2153
|
+
inputs: ['active', 'collapse', 'disabled'],
|
|
2154
|
+
}]
|
|
2155
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2156
|
+
let BqSlider = class BqSlider {
|
|
2157
|
+
/**
|
|
2158
|
+
* The amount of time, in milliseconds, to wait to trigger the `bqChange` event after each value change.
|
|
2159
|
+
*/
|
|
2160
|
+
set debounceTime(_) { }
|
|
2161
|
+
;
|
|
2162
|
+
/**
|
|
2163
|
+
* If `true` the slider is disabled.
|
|
2164
|
+
*/
|
|
2165
|
+
set disabled(_) { }
|
|
2166
|
+
;
|
|
2167
|
+
/**
|
|
2168
|
+
* If `true` it will show the value label on a side of the slider track area
|
|
2169
|
+
*/
|
|
2170
|
+
set enableValueIndicator(_) { }
|
|
2171
|
+
;
|
|
2172
|
+
/**
|
|
2173
|
+
* A number representing the amount to remain between the minimum and maximum values (only for range type).
|
|
2174
|
+
*/
|
|
2175
|
+
set gap(_) { }
|
|
2176
|
+
;
|
|
2177
|
+
/**
|
|
2178
|
+
* A number representing the max value of the slider.
|
|
2179
|
+
*/
|
|
2180
|
+
set max(_) { }
|
|
2181
|
+
;
|
|
2182
|
+
/**
|
|
2183
|
+
* A number representing the min value of the slider.
|
|
2184
|
+
*/
|
|
2185
|
+
set min(_) { }
|
|
2186
|
+
;
|
|
2187
|
+
/**
|
|
2188
|
+
* Name of the form control. Submitted with the form as part of a name/value pair
|
|
2189
|
+
*/
|
|
2190
|
+
set name(_) { }
|
|
2191
|
+
;
|
|
2192
|
+
/**
|
|
2193
|
+
* A number representing the step of the slider.
|
|
2194
|
+
⚠️ Please notice that the value (or list of values if the slider type is `range`) will be rounded to the nearest multiple of `step`.
|
|
2195
|
+
*/
|
|
2196
|
+
set step(_) { }
|
|
2197
|
+
;
|
|
2198
|
+
/**
|
|
2199
|
+
* It defines the type of slider to display
|
|
2200
|
+
*/
|
|
2201
|
+
set type(_) { }
|
|
2202
|
+
;
|
|
2203
|
+
/**
|
|
2204
|
+
* The value of the slider.
|
|
2205
|
+
- If the slider type is `single`, the value is a number.
|
|
2206
|
+
- If the slider type is `range`, the value is an array of two numbers (the first number represents the `min` value and the second number represents the `max` value).
|
|
2207
|
+
*/
|
|
2208
|
+
set value(_) { }
|
|
2209
|
+
;
|
|
2210
|
+
/**
|
|
2211
|
+
* If `true`, a tooltip will be shown displaying the progress value
|
|
2212
|
+
*/
|
|
2213
|
+
set enableTooltip(_) { }
|
|
2214
|
+
;
|
|
2215
|
+
/**
|
|
2216
|
+
* If `true`, a tooltip will always display the progress value.
|
|
2217
|
+
It relies on enableTooltip and if enableTooltip is false, tooltipAlwaysVisible cannot be true.
|
|
2218
|
+
*/
|
|
2219
|
+
set tooltipAlwaysVisible(_) { }
|
|
2220
|
+
;
|
|
2221
|
+
constructor(c, r, z) {
|
|
2222
|
+
this.z = z;
|
|
2223
|
+
c.detach();
|
|
2224
|
+
this.el = r.nativeElement;
|
|
2225
|
+
proxyOutputs(this, this.el, ['bqChange', 'bqBlur', 'bqFocus']);
|
|
2226
|
+
}
|
|
2227
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2228
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSlider, selector: "bq-slider", inputs: { debounceTime: "debounceTime", disabled: "disabled", enableTooltip: "enableTooltip", enableValueIndicator: "enableValueIndicator", gap: "gap", max: "max", min: "min", name: "name", step: "step", tooltipAlwaysVisible: "tooltipAlwaysVisible", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2229
|
+
};
|
|
2230
|
+
BqSlider = __decorate([
|
|
2231
|
+
ProxyCmp({
|
|
2232
|
+
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'name', 'step', 'tooltipAlwaysVisible', 'type', 'value']
|
|
2233
|
+
}),
|
|
2234
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2235
|
+
], BqSlider);
|
|
2236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSlider, decorators: [{
|
|
2237
|
+
type: Component,
|
|
2238
|
+
args: [{
|
|
2239
|
+
selector: 'bq-slider',
|
|
2240
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2241
|
+
template: '<ng-content></ng-content>',
|
|
2242
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2243
|
+
inputs: ['debounceTime', 'disabled', 'enableTooltip', 'enableValueIndicator', 'gap', 'max', 'min', 'name', 'step', 'tooltipAlwaysVisible', 'type', 'value'],
|
|
2244
|
+
}]
|
|
2245
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2246
|
+
let BqSpinner = class BqSpinner {
|
|
2247
|
+
/**
|
|
2248
|
+
* If `false`, the animation on the icon element will be stopped
|
|
2249
|
+
*/
|
|
2250
|
+
set animation(_) { }
|
|
2251
|
+
;
|
|
2252
|
+
/**
|
|
2253
|
+
* It defines the position of the label text
|
|
2254
|
+
*/
|
|
2255
|
+
set textPosition(_) { }
|
|
2256
|
+
;
|
|
2257
|
+
/**
|
|
2258
|
+
* It defines the size of the icon element displayed
|
|
2259
|
+
*/
|
|
2260
|
+
set size(_) { }
|
|
2261
|
+
;
|
|
2262
|
+
constructor(c, r, z) {
|
|
2263
|
+
this.z = z;
|
|
2264
|
+
c.detach();
|
|
2265
|
+
this.el = r.nativeElement;
|
|
2266
|
+
}
|
|
2267
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2268
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2269
|
+
};
|
|
2270
|
+
BqSpinner = __decorate([
|
|
2271
|
+
ProxyCmp({
|
|
2272
|
+
inputs: ['animation', 'size', 'textPosition']
|
|
2273
|
+
}),
|
|
2274
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2275
|
+
], BqSpinner);
|
|
2276
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSpinner, decorators: [{
|
|
2277
|
+
type: Component,
|
|
2278
|
+
args: [{
|
|
2279
|
+
selector: 'bq-spinner',
|
|
2280
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2281
|
+
template: '<ng-content></ng-content>',
|
|
2282
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2283
|
+
inputs: ['animation', 'size', 'textPosition'],
|
|
2284
|
+
}]
|
|
2285
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2286
|
+
let BqStatus = class BqStatus {
|
|
2287
|
+
/**
|
|
2288
|
+
* It defines the type of status to display
|
|
2289
|
+
*/
|
|
2290
|
+
set type(_) { }
|
|
2291
|
+
;
|
|
2292
|
+
constructor(c, r, z) {
|
|
2293
|
+
this.z = z;
|
|
2294
|
+
c.detach();
|
|
2295
|
+
this.el = r.nativeElement;
|
|
2296
|
+
}
|
|
2297
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2298
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqStatus, selector: "bq-status", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2299
|
+
};
|
|
2300
|
+
BqStatus = __decorate([
|
|
2301
|
+
ProxyCmp({
|
|
2302
|
+
inputs: ['type']
|
|
2303
|
+
}),
|
|
2304
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2305
|
+
], BqStatus);
|
|
2306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStatus, decorators: [{
|
|
2307
|
+
type: Component,
|
|
2308
|
+
args: [{
|
|
2309
|
+
selector: 'bq-status',
|
|
2310
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2311
|
+
template: '<ng-content></ng-content>',
|
|
2312
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2313
|
+
inputs: ['type'],
|
|
2314
|
+
}]
|
|
2315
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2316
|
+
let BqStepItem = class BqStepItem {
|
|
2317
|
+
/**
|
|
2318
|
+
* It defines prefix size
|
|
2319
|
+
*/
|
|
2320
|
+
set size(_) { }
|
|
2321
|
+
;
|
|
2322
|
+
/**
|
|
2323
|
+
* It defines step item appearance based on its status
|
|
2324
|
+
*/
|
|
2325
|
+
set status(_) { }
|
|
2326
|
+
;
|
|
2327
|
+
/**
|
|
2328
|
+
* It defines the step item type used
|
|
2329
|
+
*/
|
|
2330
|
+
set type(_) { }
|
|
2331
|
+
;
|
|
2332
|
+
constructor(c, r, z) {
|
|
2333
|
+
this.z = z;
|
|
2334
|
+
c.detach();
|
|
2335
|
+
this.el = r.nativeElement;
|
|
2336
|
+
proxyOutputs(this, this.el, ['bqClick']);
|
|
2337
|
+
}
|
|
2338
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStepItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2339
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2340
|
+
};
|
|
2341
|
+
BqStepItem = __decorate([
|
|
2342
|
+
ProxyCmp({
|
|
2343
|
+
inputs: ['size', 'status', 'type']
|
|
2344
|
+
}),
|
|
2345
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2346
|
+
], BqStepItem);
|
|
2347
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqStepItem, decorators: [{
|
|
2348
|
+
type: Component,
|
|
2349
|
+
args: [{
|
|
2350
|
+
selector: 'bq-step-item',
|
|
2351
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2352
|
+
template: '<ng-content></ng-content>',
|
|
2353
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2354
|
+
inputs: ['size', 'status', 'type'],
|
|
2355
|
+
}]
|
|
2356
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2357
|
+
let BqSteps = class BqSteps {
|
|
2358
|
+
/**
|
|
2359
|
+
* The color of the line that connects the steps. It should be a valid declarative color token.
|
|
2360
|
+
*/
|
|
2361
|
+
set dividerColor(_) { }
|
|
2362
|
+
;
|
|
2363
|
+
/**
|
|
2364
|
+
* The size of the steps
|
|
2365
|
+
*/
|
|
2366
|
+
set size(_) { }
|
|
2367
|
+
;
|
|
2368
|
+
/**
|
|
2369
|
+
* The type of prefix element to use on the step items
|
|
2370
|
+
*/
|
|
2371
|
+
set type(_) { }
|
|
2372
|
+
;
|
|
2373
|
+
constructor(c, r, z) {
|
|
2374
|
+
this.z = z;
|
|
2375
|
+
c.detach();
|
|
2376
|
+
this.el = r.nativeElement;
|
|
2377
|
+
}
|
|
2378
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2379
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2380
|
+
};
|
|
2381
|
+
BqSteps = __decorate([
|
|
2382
|
+
ProxyCmp({
|
|
2383
|
+
inputs: ['dividerColor', 'size', 'type']
|
|
2384
|
+
}),
|
|
2385
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2386
|
+
], BqSteps);
|
|
2387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSteps, decorators: [{
|
|
2388
|
+
type: Component,
|
|
2389
|
+
args: [{
|
|
2390
|
+
selector: 'bq-steps',
|
|
2391
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2392
|
+
template: '<ng-content></ng-content>',
|
|
2393
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2394
|
+
inputs: ['dividerColor', 'size', 'type'],
|
|
2395
|
+
}]
|
|
2396
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2397
|
+
let BqSwitch = class BqSwitch {
|
|
2398
|
+
/**
|
|
2399
|
+
* If true, a background will be displayed on hover
|
|
2400
|
+
*/
|
|
2401
|
+
set backgroundOnHover(_) { }
|
|
2402
|
+
;
|
|
2403
|
+
/**
|
|
2404
|
+
* It indicates whether if the switch is `ON` by default (when the page loads)
|
|
2405
|
+
*/
|
|
2406
|
+
set checked(_) { }
|
|
2407
|
+
;
|
|
2408
|
+
/**
|
|
2409
|
+
* If true, the switch control will be disabled and no interaction will be allowed
|
|
2410
|
+
*/
|
|
2411
|
+
set disabled(_) { }
|
|
2412
|
+
;
|
|
2413
|
+
/**
|
|
2414
|
+
* The native form validation message
|
|
2415
|
+
*/
|
|
2416
|
+
set formValidationMessage(_) { }
|
|
2417
|
+
;
|
|
2418
|
+
/**
|
|
2419
|
+
* If true, the component will take the full width space available on the parent container
|
|
2420
|
+
*/
|
|
2421
|
+
set fullWidth(_) { }
|
|
2422
|
+
;
|
|
2423
|
+
/**
|
|
2424
|
+
* It indicates how to to display the on/off marks inside the control, with icons or none (default)
|
|
2425
|
+
*/
|
|
2426
|
+
set innerLabel(_) { }
|
|
2427
|
+
;
|
|
2428
|
+
/**
|
|
2429
|
+
* It defines how to distribute the space between and around the control and the label text
|
|
2430
|
+
(https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content)
|
|
2431
|
+
*/
|
|
2432
|
+
set justifyContent(_) { }
|
|
2433
|
+
;
|
|
2434
|
+
/**
|
|
2435
|
+
* Name of the form control. Submitted with the form as part of a name/value pair
|
|
2436
|
+
*/
|
|
2437
|
+
set name(_) { }
|
|
2438
|
+
;
|
|
2439
|
+
/**
|
|
2440
|
+
* If `true`, it will indicate that the user must switch `ON` the element before the owning form can be submitted
|
|
2441
|
+
*/
|
|
2442
|
+
set required(_) { }
|
|
2443
|
+
;
|
|
2444
|
+
/**
|
|
2445
|
+
* If true, the order of the control and the label text will be changed
|
|
2446
|
+
*/
|
|
2447
|
+
set reverseOrder(_) { }
|
|
2448
|
+
;
|
|
2449
|
+
/**
|
|
2450
|
+
* The input control's value, submitted as a name/value pair with form data.
|
|
2451
|
+
*/
|
|
2452
|
+
set value(_) { }
|
|
2453
|
+
;
|
|
2454
|
+
constructor(c, r, z) {
|
|
2455
|
+
this.z = z;
|
|
2456
|
+
c.detach();
|
|
2457
|
+
this.el = r.nativeElement;
|
|
2458
|
+
proxyOutputs(this, this.el, ['bqChange', 'bqFocus', 'bqBlur']);
|
|
2459
|
+
}
|
|
2460
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2461
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSwitch, selector: "bq-switch", inputs: { backgroundOnHover: "backgroundOnHover", checked: "checked", disabled: "disabled", formValidationMessage: "formValidationMessage", fullWidth: "fullWidth", innerLabel: "innerLabel", justifyContent: "justifyContent", name: "name", required: "required", reverseOrder: "reverseOrder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2462
|
+
};
|
|
2463
|
+
BqSwitch = __decorate([
|
|
2464
|
+
ProxyCmp({
|
|
2465
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
2466
|
+
methods: ['vClick', 'vFocus', 'vBlur']
|
|
2467
|
+
}),
|
|
2468
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2469
|
+
], BqSwitch);
|
|
2470
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSwitch, decorators: [{
|
|
2471
|
+
type: Component,
|
|
2472
|
+
args: [{
|
|
2473
|
+
selector: 'bq-switch',
|
|
2474
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2475
|
+
template: '<ng-content></ng-content>',
|
|
2476
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2477
|
+
inputs: ['backgroundOnHover', 'checked', 'disabled', 'formValidationMessage', 'fullWidth', 'innerLabel', 'justifyContent', 'name', 'required', 'reverseOrder', 'value'],
|
|
2478
|
+
}]
|
|
2479
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2480
|
+
let BqTab = class BqTab {
|
|
2481
|
+
/**
|
|
2482
|
+
* If true tab is active
|
|
2483
|
+
*/
|
|
2484
|
+
set active(_) { }
|
|
2485
|
+
;
|
|
2486
|
+
/**
|
|
2487
|
+
* The tab panel id that the tab controls
|
|
2488
|
+
*/
|
|
2489
|
+
set controls(_) { }
|
|
2490
|
+
;
|
|
2491
|
+
/**
|
|
2492
|
+
* If true tab is disabled
|
|
2493
|
+
*/
|
|
2494
|
+
set disabled(_) { }
|
|
2495
|
+
;
|
|
2496
|
+
/**
|
|
2497
|
+
* The direction that tab should be render
|
|
2498
|
+
*/
|
|
2499
|
+
set orientation(_) { }
|
|
2500
|
+
;
|
|
2501
|
+
/**
|
|
2502
|
+
* The placement that tab should be render
|
|
2503
|
+
*/
|
|
2504
|
+
set placement(_) { }
|
|
2505
|
+
;
|
|
2506
|
+
/**
|
|
2507
|
+
* The size of the tab
|
|
2508
|
+
*/
|
|
2509
|
+
set size(_) { }
|
|
2510
|
+
;
|
|
2511
|
+
/**
|
|
2512
|
+
* The id of the tab
|
|
2513
|
+
*/
|
|
2514
|
+
set tabId(_) { }
|
|
2515
|
+
;
|
|
2516
|
+
constructor(c, r, z) {
|
|
2517
|
+
this.z = z;
|
|
2518
|
+
c.detach();
|
|
2519
|
+
this.el = r.nativeElement;
|
|
2520
|
+
proxyOutputs(this, this.el, ['bqClick', 'bqFocus', 'bqBlur', 'bqKeyDown']);
|
|
2521
|
+
}
|
|
2522
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2523
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2524
|
+
};
|
|
2525
|
+
BqTab = __decorate([
|
|
2526
|
+
ProxyCmp({
|
|
2527
|
+
inputs: ['active', 'controls', 'disabled', 'orientation', 'placement', 'size', 'tabId'],
|
|
2528
|
+
methods: ['vClick', 'vFocus', 'vBlur']
|
|
2529
|
+
}),
|
|
2530
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2531
|
+
], BqTab);
|
|
2532
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTab, decorators: [{
|
|
2533
|
+
type: Component,
|
|
2534
|
+
args: [{
|
|
2535
|
+
selector: 'bq-tab',
|
|
2536
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2537
|
+
template: '<ng-content></ng-content>',
|
|
2538
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2539
|
+
inputs: ['active', 'controls', 'disabled', 'orientation', 'placement', 'size', 'tabId'],
|
|
2540
|
+
}]
|
|
2541
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2542
|
+
let BqTabGroup = class BqTabGroup {
|
|
2543
|
+
/**
|
|
2544
|
+
* A number representing the delay value applied to bqChange event handler
|
|
2545
|
+
*/
|
|
2546
|
+
set debounceTime(_) { }
|
|
2547
|
+
;
|
|
2548
|
+
/**
|
|
2549
|
+
* If true, the underline divider below the tabs won't be shown
|
|
2550
|
+
*/
|
|
2551
|
+
set disableDivider(_) { }
|
|
2552
|
+
;
|
|
2553
|
+
/**
|
|
2554
|
+
* The direction that tab should be render
|
|
2555
|
+
*/
|
|
2556
|
+
set orientation(_) { }
|
|
2557
|
+
;
|
|
2558
|
+
/**
|
|
2559
|
+
* The placement that tab should be render
|
|
2560
|
+
*/
|
|
2561
|
+
set placement(_) { }
|
|
2562
|
+
;
|
|
2563
|
+
/**
|
|
2564
|
+
* The size of the tab
|
|
2565
|
+
*/
|
|
2566
|
+
set size(_) { }
|
|
2567
|
+
;
|
|
2568
|
+
/**
|
|
2569
|
+
* A string representing the id of the selected tab.
|
|
2570
|
+
*/
|
|
2571
|
+
set value(_) { }
|
|
2572
|
+
;
|
|
2573
|
+
constructor(c, r, z) {
|
|
2574
|
+
this.z = z;
|
|
2575
|
+
c.detach();
|
|
2576
|
+
this.el = r.nativeElement;
|
|
2577
|
+
proxyOutputs(this, this.el, ['bqChange']);
|
|
2578
|
+
}
|
|
2579
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2580
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2581
|
+
};
|
|
2582
|
+
BqTabGroup = __decorate([
|
|
2583
|
+
ProxyCmp({
|
|
2584
|
+
inputs: ['debounceTime', 'disableDivider', 'orientation', 'placement', 'size', 'value']
|
|
2585
|
+
}),
|
|
2586
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2587
|
+
], BqTabGroup);
|
|
2588
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTabGroup, decorators: [{
|
|
2589
|
+
type: Component,
|
|
2590
|
+
args: [{
|
|
2591
|
+
selector: 'bq-tab-group',
|
|
2592
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2593
|
+
template: '<ng-content></ng-content>',
|
|
2594
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2595
|
+
inputs: ['debounceTime', 'disableDivider', 'orientation', 'placement', 'size', 'value'],
|
|
2596
|
+
}]
|
|
2597
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2598
|
+
let BqTag = class BqTag {
|
|
2599
|
+
/**
|
|
2600
|
+
* The corner radius of the Tag (will override size's predefined border)
|
|
2601
|
+
*/
|
|
2602
|
+
set border(_) { }
|
|
2603
|
+
;
|
|
2604
|
+
/**
|
|
2605
|
+
* If true, the Tag can be clickable
|
|
2606
|
+
*/
|
|
2607
|
+
set clickable(_) { }
|
|
2608
|
+
;
|
|
2609
|
+
/**
|
|
2610
|
+
* The color style of the Tag
|
|
2611
|
+
*/
|
|
2612
|
+
set color(_) { }
|
|
2613
|
+
;
|
|
2614
|
+
/**
|
|
2615
|
+
* If true, the Tag will be disabled (only if clickable = `true`, no interaction allowed)
|
|
2616
|
+
*/
|
|
2617
|
+
set disabled(_) { }
|
|
2618
|
+
;
|
|
2619
|
+
/**
|
|
2620
|
+
* If true, the Tag component will hidden (only if removable = `true`)
|
|
2621
|
+
*/
|
|
2622
|
+
set hidden(_) { }
|
|
2623
|
+
;
|
|
2624
|
+
/**
|
|
2625
|
+
* If true, the Tag component can be removed
|
|
2626
|
+
*/
|
|
2627
|
+
set removable(_) { }
|
|
2628
|
+
;
|
|
2629
|
+
/**
|
|
2630
|
+
* If true, the Tag is selected (only if clickable = `true`)
|
|
2631
|
+
*/
|
|
2632
|
+
set selected(_) { }
|
|
2633
|
+
;
|
|
2634
|
+
/**
|
|
2635
|
+
* The size of the Tag component
|
|
2636
|
+
*/
|
|
2637
|
+
set size(_) { }
|
|
2638
|
+
;
|
|
2639
|
+
/**
|
|
2640
|
+
* The variant of Tag to apply on top of the variant
|
|
2641
|
+
*/
|
|
2642
|
+
set variant(_) { }
|
|
2643
|
+
;
|
|
2644
|
+
constructor(c, r, z) {
|
|
2645
|
+
this.z = z;
|
|
2646
|
+
c.detach();
|
|
2647
|
+
this.el = r.nativeElement;
|
|
2648
|
+
proxyOutputs(this, this.el, ['bqClose', 'bqOpen', 'bqBlur', 'bqClick', 'bqFocus']);
|
|
2649
|
+
}
|
|
2650
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2651
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2652
|
+
};
|
|
2653
|
+
BqTag = __decorate([
|
|
2654
|
+
ProxyCmp({
|
|
2655
|
+
inputs: ['border', 'clickable', 'color', 'disabled', 'hidden', 'removable', 'selected', 'size', 'variant'],
|
|
2656
|
+
methods: ['hide', 'show']
|
|
2657
|
+
}),
|
|
2658
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2659
|
+
], BqTag);
|
|
2660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTag, decorators: [{
|
|
2661
|
+
type: Component,
|
|
2662
|
+
args: [{
|
|
2663
|
+
selector: 'bq-tag',
|
|
2664
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2665
|
+
template: '<ng-content></ng-content>',
|
|
2666
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2667
|
+
inputs: ['border', 'clickable', 'color', 'disabled', 'hidden', 'removable', 'selected', 'size', 'variant'],
|
|
2668
|
+
}]
|
|
2669
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2670
|
+
let BqTextarea = class BqTextarea {
|
|
2671
|
+
/**
|
|
2672
|
+
* Controls whether or not the textarea field should be capitalized and how.
|
|
2673
|
+
Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
|
|
2674
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
|
|
2675
|
+
*/
|
|
2676
|
+
set autocapitalize(_) { }
|
|
2677
|
+
;
|
|
2678
|
+
/**
|
|
2679
|
+
* Specifies whether or not the textarea field should have autocomplete enabled.
|
|
2680
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
2681
|
+
*/
|
|
2682
|
+
set autocomplete(_) { }
|
|
2683
|
+
;
|
|
2684
|
+
/**
|
|
2685
|
+
* Controls whether or not the textarea field should have autocorrect enabled.
|
|
2686
|
+
Possible values are 'on' and 'off'.
|
|
2687
|
+
*/
|
|
2688
|
+
set autocorrect(_) { }
|
|
2689
|
+
;
|
|
2690
|
+
/**
|
|
2691
|
+
* If true, the textarea will be focused on component render
|
|
2692
|
+
*/
|
|
2693
|
+
set autofocus(_) { }
|
|
2694
|
+
;
|
|
2695
|
+
/**
|
|
2696
|
+
* If `true`, the textarea will automatically grow and shrink to fit its contents.
|
|
2697
|
+
If `false`, the textarea will have a fixed height specified by the `rows` property.
|
|
2698
|
+
*/
|
|
2699
|
+
set autoGrow(_) { }
|
|
2700
|
+
;
|
|
2701
|
+
/**
|
|
2702
|
+
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the textarea value changes.
|
|
2703
|
+
A value of 0 means no debouncing will occur.
|
|
2704
|
+
*/
|
|
2705
|
+
set debounceTime(_) { }
|
|
2706
|
+
;
|
|
2707
|
+
/**
|
|
2708
|
+
* If `true`, the user cannot interact with the textarea.
|
|
2709
|
+
*/
|
|
2710
|
+
set disabled(_) { }
|
|
2711
|
+
;
|
|
2712
|
+
/**
|
|
2713
|
+
* If `true`, it will block the user's ability to resize the textarea.
|
|
2714
|
+
*/
|
|
2715
|
+
set disableResize(_) { }
|
|
2716
|
+
;
|
|
2717
|
+
/**
|
|
2718
|
+
* The ID of the form that the textarea field belongs to.
|
|
2719
|
+
*/
|
|
2720
|
+
set form(_) { }
|
|
2721
|
+
;
|
|
2722
|
+
/**
|
|
2723
|
+
* The native form validation message
|
|
2724
|
+
*/
|
|
2725
|
+
set formValidationMessage(_) { }
|
|
2726
|
+
;
|
|
2727
|
+
/**
|
|
2728
|
+
* The maximum number of characters that can be entered into the textarea (`0`: no limit).
|
|
2729
|
+
When enabled, a character counter will be shown underneath the textarea.
|
|
2730
|
+
*/
|
|
2731
|
+
set maxlength(_) { }
|
|
2732
|
+
;
|
|
2733
|
+
/**
|
|
2734
|
+
* The name of the textarea element.
|
|
2735
|
+
*/
|
|
2736
|
+
set name(_) { }
|
|
2737
|
+
;
|
|
2738
|
+
/**
|
|
2739
|
+
* The placeholder text to show when there is no value.
|
|
2740
|
+
*/
|
|
2741
|
+
set placeholder(_) { }
|
|
2742
|
+
;
|
|
2743
|
+
/**
|
|
2744
|
+
* If true, the textarea field cannot be modified.
|
|
2745
|
+
*/
|
|
2746
|
+
set readonly(_) { }
|
|
2747
|
+
;
|
|
2748
|
+
/**
|
|
2749
|
+
* Indicates whether or not the textarea field is required to be filled out before submitting the form.
|
|
2750
|
+
*/
|
|
2751
|
+
set required(_) { }
|
|
2752
|
+
;
|
|
2753
|
+
/**
|
|
2754
|
+
* The number of visible text lines for the control. It must be a positive integer.
|
|
2755
|
+
*/
|
|
2756
|
+
set rows(_) { }
|
|
2757
|
+
;
|
|
2758
|
+
/**
|
|
2759
|
+
* If true, the textarea content may be checked for spelling errors.
|
|
2760
|
+
*/
|
|
2761
|
+
set spellcheck(_) { }
|
|
2762
|
+
;
|
|
2763
|
+
/**
|
|
2764
|
+
* The validation status of the textarea. @remarks This property is used to indicate the validation status of the textarea. It can be set to one of the following values:
|
|
2765
|
+
- `'none'`: No validation status is set.
|
|
2766
|
+
- `'error'`: The textarea has a validation error.
|
|
2767
|
+
- `'warning'`: The textarea has a validation warning.
|
|
2768
|
+
- `'success'`: The textarea has passed validation.
|
|
2769
|
+
*/
|
|
2770
|
+
set validationStatus(_) { }
|
|
2771
|
+
;
|
|
2772
|
+
/**
|
|
2773
|
+
* The value of the textarea. It can be used to reset the textarea to a previous value.
|
|
2774
|
+
*/
|
|
2775
|
+
set value(_) { }
|
|
2776
|
+
;
|
|
2777
|
+
/**
|
|
2778
|
+
* Specifies how the text in a text area is to be wrapped when submitted in a form
|
|
2779
|
+
*/
|
|
2780
|
+
set wrap(_) { }
|
|
2781
|
+
;
|
|
2782
|
+
constructor(c, r, z) {
|
|
2783
|
+
this.z = z;
|
|
2784
|
+
c.detach();
|
|
2785
|
+
this.el = r.nativeElement;
|
|
2786
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqChange', 'bqClear', 'bqFocus', 'bqInput']);
|
|
2787
|
+
}
|
|
2788
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2789
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqTextarea, selector: "bq-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", debounceTime: "debounceTime", disableResize: "disableResize", disabled: "disabled", form: "form", formValidationMessage: "formValidationMessage", maxlength: "maxlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", spellcheck: "spellcheck", validationStatus: "validationStatus", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2790
|
+
};
|
|
2791
|
+
BqTextarea = __decorate([
|
|
2792
|
+
ProxyCmp({
|
|
2793
|
+
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap']
|
|
2794
|
+
}),
|
|
2795
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2796
|
+
], BqTextarea);
|
|
2797
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTextarea, decorators: [{
|
|
2798
|
+
type: Component,
|
|
2799
|
+
args: [{
|
|
2800
|
+
selector: 'bq-textarea',
|
|
2801
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2802
|
+
template: '<ng-content></ng-content>',
|
|
2803
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2804
|
+
inputs: ['autoGrow', 'autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'debounceTime', 'disableResize', 'disabled', 'form', 'formValidationMessage', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'spellcheck', 'validationStatus', 'value', 'wrap'],
|
|
2805
|
+
}]
|
|
2806
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2807
|
+
let BqToast = class BqToast {
|
|
2808
|
+
/**
|
|
2809
|
+
* The corder radius of the toast component
|
|
2810
|
+
*/
|
|
2811
|
+
set border(_) { }
|
|
2812
|
+
;
|
|
2813
|
+
/**
|
|
2814
|
+
* Type of toast
|
|
2815
|
+
*/
|
|
2816
|
+
set type(_) { }
|
|
2817
|
+
;
|
|
2818
|
+
/**
|
|
2819
|
+
* Placement of toast
|
|
2820
|
+
*/
|
|
2821
|
+
set placement(_) { }
|
|
2822
|
+
;
|
|
2823
|
+
/**
|
|
2824
|
+
* If true will hide toast icon
|
|
2825
|
+
*/
|
|
2826
|
+
set hideIcon(_) { }
|
|
2827
|
+
;
|
|
2828
|
+
/**
|
|
2829
|
+
* If true, the toast will be shown
|
|
2830
|
+
*/
|
|
2831
|
+
set open(_) { }
|
|
2832
|
+
;
|
|
2833
|
+
/**
|
|
2834
|
+
* The length of time, in milliseconds, after which the toast will close itself
|
|
2835
|
+
*/
|
|
2836
|
+
set time(_) { }
|
|
2837
|
+
;
|
|
2838
|
+
constructor(c, r, z) {
|
|
2839
|
+
this.z = z;
|
|
2840
|
+
c.detach();
|
|
2841
|
+
this.el = r.nativeElement;
|
|
2842
|
+
proxyOutputs(this, this.el, ['bqHide', 'bqShow']);
|
|
2843
|
+
}
|
|
2844
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2845
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2846
|
+
};
|
|
2847
|
+
BqToast = __decorate([
|
|
2848
|
+
ProxyCmp({
|
|
2849
|
+
inputs: ['border', 'hideIcon', 'open', 'placement', 'time', 'type'],
|
|
2850
|
+
methods: ['show', 'hide', 'toast']
|
|
2851
|
+
}),
|
|
2852
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2853
|
+
], BqToast);
|
|
2854
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqToast, decorators: [{
|
|
2855
|
+
type: Component,
|
|
2856
|
+
args: [{
|
|
2857
|
+
selector: 'bq-toast',
|
|
2858
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2859
|
+
template: '<ng-content></ng-content>',
|
|
2860
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2861
|
+
inputs: ['border', 'hideIcon', 'open', 'placement', 'time', 'type'],
|
|
2862
|
+
}]
|
|
2863
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2864
|
+
let BqTooltip = class BqTooltip {
|
|
2865
|
+
/**
|
|
2866
|
+
* If true, the tooltip will always be visible
|
|
2867
|
+
*/
|
|
2868
|
+
set alwaysVisible(_) { }
|
|
2869
|
+
;
|
|
2870
|
+
/**
|
|
2871
|
+
* Distance between trigger element and tooltip
|
|
2872
|
+
*/
|
|
2873
|
+
set distance(_) { }
|
|
2874
|
+
;
|
|
2875
|
+
/**
|
|
2876
|
+
* If true, the arrow on the tooltip content won't be shown
|
|
2877
|
+
*/
|
|
2878
|
+
set hideArrow(_) { }
|
|
2879
|
+
;
|
|
2880
|
+
set placement(_) { }
|
|
2881
|
+
;
|
|
2882
|
+
/**
|
|
2883
|
+
* Whether the tooltip should have the same width as the trigger element
|
|
2884
|
+
(applicable only for content shorter than the trigger element)
|
|
2885
|
+
*/
|
|
2886
|
+
set sameWidth(_) { }
|
|
2887
|
+
;
|
|
2888
|
+
/**
|
|
2889
|
+
* Set the action when the tooltip should be displayed, on hover (default) or click
|
|
2890
|
+
*/
|
|
2891
|
+
set displayOn(_) { }
|
|
2892
|
+
;
|
|
2893
|
+
/**
|
|
2894
|
+
* Indicates whether or not the tooltip is visible when the component is first rendered,
|
|
2895
|
+
and when interacting with the trigger
|
|
2896
|
+
*/
|
|
2897
|
+
set visible(_) { }
|
|
2898
|
+
;
|
|
2899
|
+
constructor(c, r, z) {
|
|
2900
|
+
this.z = z;
|
|
2901
|
+
c.detach();
|
|
2902
|
+
this.el = r.nativeElement;
|
|
2903
|
+
}
|
|
2904
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2905
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 }); }
|
|
2906
|
+
};
|
|
2907
|
+
BqTooltip = __decorate([
|
|
2908
|
+
ProxyCmp({
|
|
2909
|
+
inputs: ['alwaysVisible', 'displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
2910
|
+
methods: ['show', 'hide']
|
|
2911
|
+
}),
|
|
2912
|
+
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2913
|
+
], BqTooltip);
|
|
2914
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTooltip, decorators: [{
|
|
2915
|
+
type: Component,
|
|
2916
|
+
args: [{
|
|
2917
|
+
selector: 'bq-tooltip',
|
|
2918
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2919
|
+
template: '<ng-content></ng-content>',
|
|
2920
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2921
|
+
inputs: ['alwaysVisible', 'displayOn', 'distance', 'hideArrow', 'placement', 'sameWidth', 'visible'],
|
|
2922
|
+
}]
|
|
2923
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2924
|
+
|
|
2925
|
+
const DIRECTIVES = [
|
|
2926
|
+
BqAccordion,
|
|
2927
|
+
BqAccordionGroup,
|
|
2928
|
+
BqAlert,
|
|
2929
|
+
BqAvatar,
|
|
2930
|
+
BqBadge,
|
|
2931
|
+
BqBreadcrumb,
|
|
2932
|
+
BqBreadcrumbItem,
|
|
2933
|
+
BqButton,
|
|
2934
|
+
BqCard,
|
|
2935
|
+
BqCheckbox,
|
|
2936
|
+
BqDatePicker,
|
|
2937
|
+
BqDialog,
|
|
2938
|
+
BqDivider,
|
|
2939
|
+
BqDrawer,
|
|
2940
|
+
BqDropdown,
|
|
2941
|
+
BqEmptyState,
|
|
2942
|
+
BqIcon,
|
|
2943
|
+
BqInput,
|
|
2944
|
+
BqNotification,
|
|
2945
|
+
BqOption,
|
|
2946
|
+
BqOptionGroup,
|
|
2947
|
+
BqOptionList,
|
|
2948
|
+
BqPageTitle,
|
|
2949
|
+
BqPanel,
|
|
2950
|
+
BqProgress,
|
|
2951
|
+
BqRadio,
|
|
2952
|
+
BqRadioGroup,
|
|
2953
|
+
BqSelect,
|
|
2954
|
+
BqSideMenu,
|
|
2955
|
+
BqSideMenuItem,
|
|
2956
|
+
BqSlider,
|
|
2957
|
+
BqSpinner,
|
|
2958
|
+
BqStatus,
|
|
2959
|
+
BqStepItem,
|
|
2960
|
+
BqSteps,
|
|
2961
|
+
BqSwitch,
|
|
2962
|
+
BqTab,
|
|
2963
|
+
BqTabGroup,
|
|
2964
|
+
BqTag,
|
|
2965
|
+
BqTextarea,
|
|
2966
|
+
BqToast,
|
|
2967
|
+
BqTooltip
|
|
2968
|
+
];
|
|
2969
|
+
|
|
2970
|
+
const DECLARATIONS = [
|
|
2971
|
+
...DIRECTIVES,
|
|
2972
|
+
// ngModel Accessors
|
|
2973
|
+
BooleanValueAccessor,
|
|
2974
|
+
NumericValueAccessor,
|
|
2975
|
+
RadioValueAccessor,
|
|
2976
|
+
SelectValueAccessor,
|
|
2977
|
+
TextValueAccessor,
|
|
2978
|
+
];
|
|
2979
|
+
class BeeQModule {
|
|
2980
|
+
static forRoot() {
|
|
2981
|
+
return {
|
|
2982
|
+
ngModule: BeeQModule,
|
|
2983
|
+
providers: [
|
|
2984
|
+
{
|
|
2985
|
+
provide: APP_INITIALIZER,
|
|
2986
|
+
useFactory: () => defineCustomElements,
|
|
2987
|
+
multi: true,
|
|
2988
|
+
deps: [DOCUMENT, NgZone],
|
|
2989
|
+
},
|
|
2990
|
+
],
|
|
2991
|
+
};
|
|
2992
|
+
}
|
|
2993
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BeeQModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2994
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", 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,
|
|
2995
|
+
// ngModel Accessors
|
|
2996
|
+
BooleanValueAccessor,
|
|
2997
|
+
NumericValueAccessor,
|
|
2998
|
+
RadioValueAccessor,
|
|
2999
|
+
SelectValueAccessor,
|
|
3000
|
+
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,
|
|
3001
|
+
// ngModel Accessors
|
|
3002
|
+
BooleanValueAccessor,
|
|
3003
|
+
NumericValueAccessor,
|
|
3004
|
+
RadioValueAccessor,
|
|
3005
|
+
SelectValueAccessor,
|
|
3006
|
+
TextValueAccessor] }); }
|
|
3007
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BeeQModule, imports: [CommonModule] }); }
|
|
3008
|
+
}
|
|
3009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BeeQModule, decorators: [{
|
|
3010
|
+
type: NgModule,
|
|
3011
|
+
args: [{
|
|
3012
|
+
imports: [CommonModule],
|
|
3013
|
+
declarations: DECLARATIONS,
|
|
3014
|
+
exports: DECLARATIONS,
|
|
3015
|
+
}]
|
|
3016
|
+
}] });
|
|
3017
|
+
|
|
3018
|
+
/* -------------------------------------------------------------------------- */
|
|
3019
|
+
/* DIRECTIVES */
|
|
3020
|
+
/* -------------------------------------------------------------------------- */
|
|
3021
|
+
|
|
3022
|
+
/**
|
|
3023
|
+
* Generated bundle index. Do not edit.
|
|
3024
|
+
*/
|
|
3025
|
+
|
|
3026
|
+
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 };
|
|
3027
|
+
//# sourceMappingURL=beeq-angular.mjs.map
|