@proximus/lavender-angular 1.0.0-alpha.4 → 1.0.0-alpha.6
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/esm2022/index.mjs +2 -2
- package/esm2022/lavender.directive.mjs +578 -537
- package/esm2022/px-form-accessor.directive.mjs +260 -0
- package/fesm2022/proximus-lavender-angular.mjs +769 -520
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/lavender.directive.d.ts +199 -182
- package/package.json +1 -1
- package/px-form-accessor.directive.d.ts +62 -0
- package/esm2022/px-select-accessor.directive.mjs +0 -52
- package/px-select-accessor.directive.d.ts +0 -16
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { HostListener, Directive, forwardRef, NgModule, Input, EventEmitter, Output } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
// ─── Base ────────────────────────────────────────────────────────────────────
|
|
6
|
+
class BaseValueAccessor {
|
|
6
7
|
elementRef;
|
|
7
8
|
onChange = () => { };
|
|
8
9
|
onTouched = () => { };
|
|
9
10
|
constructor(elementRef) {
|
|
10
11
|
this.elementRef = elementRef;
|
|
11
12
|
}
|
|
12
|
-
|
|
13
|
-
this.
|
|
14
|
-
}
|
|
15
|
-
writeValue(value) {
|
|
16
|
-
this.elementRef.nativeElement.value = value;
|
|
13
|
+
handleBlur() {
|
|
14
|
+
this.onTouched();
|
|
17
15
|
}
|
|
18
16
|
registerOnChange(fn) {
|
|
19
17
|
this.onChange = fn;
|
|
@@ -24,14 +22,65 @@ class PxSelectValueAccessor {
|
|
|
24
22
|
setDisabledState(isDisabled) {
|
|
25
23
|
this.elementRef.nativeElement.disabled = isDisabled;
|
|
26
24
|
}
|
|
27
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
25
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BaseValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: BaseValueAccessor, host: { listeners: { "blur": "handleBlur()" } }, ngImport: i0 });
|
|
27
|
+
}
|
|
28
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: BaseValueAccessor, decorators: [{
|
|
29
|
+
type: Directive
|
|
30
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleBlur: [{
|
|
31
|
+
type: HostListener,
|
|
32
|
+
args: ['blur']
|
|
33
|
+
}] } });
|
|
34
|
+
// ─── Text-based (value) accessors ────────────────────────────────────────────
|
|
35
|
+
class TextValueAccessor extends BaseValueAccessor {
|
|
36
|
+
handleInput(value) {
|
|
37
|
+
this.onChange(value);
|
|
38
|
+
}
|
|
39
|
+
writeValue(value) {
|
|
40
|
+
this.elementRef.nativeElement.value = value ?? '';
|
|
41
|
+
}
|
|
42
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TextValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
43
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: TextValueAccessor, host: { listeners: { "input": "handleInput($event.target.value)" } }, usesInheritance: true, ngImport: i0 });
|
|
44
|
+
}
|
|
45
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TextValueAccessor, decorators: [{
|
|
46
|
+
type: Directive
|
|
47
|
+
}], propDecorators: { handleInput: [{
|
|
48
|
+
type: HostListener,
|
|
49
|
+
args: ['input', ['$event.target.value']]
|
|
50
|
+
}] } });
|
|
51
|
+
// ─── Boolean-based (checked) accessors ───────────────────────────────────────
|
|
52
|
+
class CheckedValueAccessor extends BaseValueAccessor {
|
|
53
|
+
handleChange(checked) {
|
|
54
|
+
this.onChange(checked);
|
|
55
|
+
}
|
|
56
|
+
writeValue(value) {
|
|
57
|
+
this.elementRef.nativeElement.checked = !!value;
|
|
58
|
+
}
|
|
59
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CheckedValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
60
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: CheckedValueAccessor, host: { listeners: { "change": "handleChange($event.target.checked)" } }, usesInheritance: true, ngImport: i0 });
|
|
61
|
+
}
|
|
62
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CheckedValueAccessor, decorators: [{
|
|
63
|
+
type: Directive
|
|
64
|
+
}], propDecorators: { handleChange: [{
|
|
65
|
+
type: HostListener,
|
|
66
|
+
args: ['change', ['$event.target.checked']]
|
|
67
|
+
}] } });
|
|
68
|
+
// ─── px-select ───────────────────────────────────────────────────────────────
|
|
69
|
+
class PxSelectValueAccessor extends BaseValueAccessor {
|
|
70
|
+
handleInput(value) {
|
|
71
|
+
this.onChange(value);
|
|
72
|
+
}
|
|
73
|
+
writeValue(value) {
|
|
74
|
+
this.elementRef.nativeElement.value = value;
|
|
75
|
+
}
|
|
76
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelectValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
28
77
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSelectValueAccessor, isStandalone: true, selector: "px-select[formControlName],px-select[formControl],px-select[ngModel]", host: { listeners: { "change": "handleInput($event.target.value)" } }, providers: [
|
|
29
78
|
{
|
|
30
79
|
provide: NG_VALUE_ACCESSOR,
|
|
31
80
|
useExisting: forwardRef(() => PxSelectValueAccessor),
|
|
32
81
|
multi: true,
|
|
33
82
|
},
|
|
34
|
-
], ngImport: i0 });
|
|
83
|
+
], usesInheritance: true, ngImport: i0 });
|
|
35
84
|
}
|
|
36
85
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelectValueAccessor, decorators: [{
|
|
37
86
|
type: Directive,
|
|
@@ -46,10 +95,169 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
46
95
|
],
|
|
47
96
|
standalone: true,
|
|
48
97
|
}]
|
|
49
|
-
}],
|
|
98
|
+
}], propDecorators: { handleInput: [{
|
|
50
99
|
type: HostListener,
|
|
51
100
|
args: ['change', ['$event.target.value']]
|
|
52
101
|
}] } });
|
|
102
|
+
// ─── px-input ────────────────────────────────────────────────────────────────
|
|
103
|
+
class PxInputValueAccessor extends TextValueAccessor {
|
|
104
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxInputValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
105
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxInputValueAccessor, isStandalone: true, selector: "px-input[formControlName],px-input[formControl],px-input[ngModel]", providers: [
|
|
106
|
+
{
|
|
107
|
+
provide: NG_VALUE_ACCESSOR,
|
|
108
|
+
useExisting: forwardRef(() => PxInputValueAccessor),
|
|
109
|
+
multi: true,
|
|
110
|
+
},
|
|
111
|
+
], usesInheritance: true, ngImport: i0 });
|
|
112
|
+
}
|
|
113
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxInputValueAccessor, decorators: [{
|
|
114
|
+
type: Directive,
|
|
115
|
+
args: [{
|
|
116
|
+
selector: 'px-input[formControlName],px-input[formControl],px-input[ngModel]',
|
|
117
|
+
providers: [
|
|
118
|
+
{
|
|
119
|
+
provide: NG_VALUE_ACCESSOR,
|
|
120
|
+
useExisting: forwardRef(() => PxInputValueAccessor),
|
|
121
|
+
multi: true,
|
|
122
|
+
},
|
|
123
|
+
],
|
|
124
|
+
standalone: true,
|
|
125
|
+
}]
|
|
126
|
+
}] });
|
|
127
|
+
// ─── px-textarea ─────────────────────────────────────────────────────────────
|
|
128
|
+
class PxTextareaValueAccessor extends TextValueAccessor {
|
|
129
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTextareaValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
130
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTextareaValueAccessor, isStandalone: true, selector: "px-textarea[formControlName],px-textarea[formControl],px-textarea[ngModel]", providers: [
|
|
131
|
+
{
|
|
132
|
+
provide: NG_VALUE_ACCESSOR,
|
|
133
|
+
useExisting: forwardRef(() => PxTextareaValueAccessor),
|
|
134
|
+
multi: true,
|
|
135
|
+
},
|
|
136
|
+
], usesInheritance: true, ngImport: i0 });
|
|
137
|
+
}
|
|
138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTextareaValueAccessor, decorators: [{
|
|
139
|
+
type: Directive,
|
|
140
|
+
args: [{
|
|
141
|
+
selector: 'px-textarea[formControlName],px-textarea[formControl],px-textarea[ngModel]',
|
|
142
|
+
providers: [
|
|
143
|
+
{
|
|
144
|
+
provide: NG_VALUE_ACCESSOR,
|
|
145
|
+
useExisting: forwardRef(() => PxTextareaValueAccessor),
|
|
146
|
+
multi: true,
|
|
147
|
+
},
|
|
148
|
+
],
|
|
149
|
+
standalone: true,
|
|
150
|
+
}]
|
|
151
|
+
}] });
|
|
152
|
+
// ─── px-checkbox ─────────────────────────────────────────────────────────────
|
|
153
|
+
class PxCheckboxValueAccessor extends CheckedValueAccessor {
|
|
154
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCheckboxValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
155
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCheckboxValueAccessor, isStandalone: true, selector: "px-checkbox[formControlName],px-checkbox[formControl],px-checkbox[ngModel]", providers: [
|
|
156
|
+
{
|
|
157
|
+
provide: NG_VALUE_ACCESSOR,
|
|
158
|
+
useExisting: forwardRef(() => PxCheckboxValueAccessor),
|
|
159
|
+
multi: true,
|
|
160
|
+
},
|
|
161
|
+
], usesInheritance: true, ngImport: i0 });
|
|
162
|
+
}
|
|
163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCheckboxValueAccessor, decorators: [{
|
|
164
|
+
type: Directive,
|
|
165
|
+
args: [{
|
|
166
|
+
selector: 'px-checkbox[formControlName],px-checkbox[formControl],px-checkbox[ngModel]',
|
|
167
|
+
providers: [
|
|
168
|
+
{
|
|
169
|
+
provide: NG_VALUE_ACCESSOR,
|
|
170
|
+
useExisting: forwardRef(() => PxCheckboxValueAccessor),
|
|
171
|
+
multi: true,
|
|
172
|
+
},
|
|
173
|
+
],
|
|
174
|
+
standalone: true,
|
|
175
|
+
}]
|
|
176
|
+
}] });
|
|
177
|
+
// ─── px-switch ───────────────────────────────────────────────────────────────
|
|
178
|
+
class PxSwitchValueAccessor extends CheckedValueAccessor {
|
|
179
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSwitchValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
180
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSwitchValueAccessor, isStandalone: true, selector: "px-switch[formControlName],px-switch[formControl],px-switch[ngModel]", providers: [
|
|
181
|
+
{
|
|
182
|
+
provide: NG_VALUE_ACCESSOR,
|
|
183
|
+
useExisting: forwardRef(() => PxSwitchValueAccessor),
|
|
184
|
+
multi: true,
|
|
185
|
+
},
|
|
186
|
+
], usesInheritance: true, ngImport: i0 });
|
|
187
|
+
}
|
|
188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSwitchValueAccessor, decorators: [{
|
|
189
|
+
type: Directive,
|
|
190
|
+
args: [{
|
|
191
|
+
selector: 'px-switch[formControlName],px-switch[formControl],px-switch[ngModel]',
|
|
192
|
+
providers: [
|
|
193
|
+
{
|
|
194
|
+
provide: NG_VALUE_ACCESSOR,
|
|
195
|
+
useExisting: forwardRef(() => PxSwitchValueAccessor),
|
|
196
|
+
multi: true,
|
|
197
|
+
},
|
|
198
|
+
],
|
|
199
|
+
standalone: true,
|
|
200
|
+
}]
|
|
201
|
+
}] });
|
|
202
|
+
// ─── px-radio-group ──────────────────────────────────────────────────────────
|
|
203
|
+
class PxRadioGroupValueAccessor extends BaseValueAccessor {
|
|
204
|
+
handleChange(event) {
|
|
205
|
+
const radio = event.target;
|
|
206
|
+
this.onChange(radio.getAttribute('value'));
|
|
207
|
+
}
|
|
208
|
+
writeValue(value) {
|
|
209
|
+
const radios = this.elementRef.nativeElement.querySelectorAll('px-radio');
|
|
210
|
+
radios.forEach((radio) => {
|
|
211
|
+
radio.checked = radio.getAttribute('value') === value;
|
|
212
|
+
});
|
|
213
|
+
}
|
|
214
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroupValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
215
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxRadioGroupValueAccessor, isStandalone: true, selector: "px-radio-group[formControlName],px-radio-group[formControl],px-radio-group[ngModel]", host: { listeners: { "change": "handleChange($event)" } }, providers: [
|
|
216
|
+
{
|
|
217
|
+
provide: NG_VALUE_ACCESSOR,
|
|
218
|
+
useExisting: forwardRef(() => PxRadioGroupValueAccessor),
|
|
219
|
+
multi: true,
|
|
220
|
+
},
|
|
221
|
+
], usesInheritance: true, ngImport: i0 });
|
|
222
|
+
}
|
|
223
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadioGroupValueAccessor, decorators: [{
|
|
224
|
+
type: Directive,
|
|
225
|
+
args: [{
|
|
226
|
+
selector: 'px-radio-group[formControlName],px-radio-group[formControl],px-radio-group[ngModel]',
|
|
227
|
+
providers: [
|
|
228
|
+
{
|
|
229
|
+
provide: NG_VALUE_ACCESSOR,
|
|
230
|
+
useExisting: forwardRef(() => PxRadioGroupValueAccessor),
|
|
231
|
+
multi: true,
|
|
232
|
+
},
|
|
233
|
+
],
|
|
234
|
+
standalone: true,
|
|
235
|
+
}]
|
|
236
|
+
}], propDecorators: { handleChange: [{
|
|
237
|
+
type: HostListener,
|
|
238
|
+
args: ['change', ['$event']]
|
|
239
|
+
}] } });
|
|
240
|
+
// ─── NgModule ────────────────────────────────────────────────────────────────
|
|
241
|
+
const VALUE_ACCESSORS = [
|
|
242
|
+
PxSelectValueAccessor,
|
|
243
|
+
PxInputValueAccessor,
|
|
244
|
+
PxTextareaValueAccessor,
|
|
245
|
+
PxCheckboxValueAccessor,
|
|
246
|
+
PxSwitchValueAccessor,
|
|
247
|
+
PxRadioGroupValueAccessor,
|
|
248
|
+
];
|
|
249
|
+
class LavenderValueAccessors {
|
|
250
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LavenderValueAccessors, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
251
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: LavenderValueAccessors, imports: [PxSelectValueAccessor, PxInputValueAccessor, PxTextareaValueAccessor, PxCheckboxValueAccessor, PxSwitchValueAccessor, PxRadioGroupValueAccessor], exports: [PxSelectValueAccessor, PxInputValueAccessor, PxTextareaValueAccessor, PxCheckboxValueAccessor, PxSwitchValueAccessor, PxRadioGroupValueAccessor] });
|
|
252
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LavenderValueAccessors });
|
|
253
|
+
}
|
|
254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LavenderValueAccessors, decorators: [{
|
|
255
|
+
type: NgModule,
|
|
256
|
+
args: [{
|
|
257
|
+
imports: VALUE_ACCESSORS,
|
|
258
|
+
exports: VALUE_ACCESSORS,
|
|
259
|
+
}]
|
|
260
|
+
}] });
|
|
53
261
|
|
|
54
262
|
/**
|
|
55
263
|
* @description Type-only wrapper for <px-accordion>
|
|
@@ -2360,16 +2568,100 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
2360
2568
|
args: ['order--desktop']
|
|
2361
2569
|
}] } });
|
|
2362
2570
|
/**
|
|
2363
|
-
* @description Type-only wrapper for <px-
|
|
2571
|
+
* @description Type-only wrapper for <px-button>
|
|
2364
2572
|
*/
|
|
2365
|
-
class
|
|
2573
|
+
class PxButton {
|
|
2366
2574
|
elementRef;
|
|
2575
|
+
set variant(value) {
|
|
2576
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
2577
|
+
}
|
|
2578
|
+
get variant() {
|
|
2579
|
+
return this.elementRef.nativeElement['variant'];
|
|
2580
|
+
}
|
|
2581
|
+
set state(value) {
|
|
2582
|
+
this.elementRef.nativeElement['state'] = value;
|
|
2583
|
+
}
|
|
2584
|
+
get state() {
|
|
2585
|
+
return this.elementRef.nativeElement['state'];
|
|
2586
|
+
}
|
|
2587
|
+
set loading(value) {
|
|
2588
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
2589
|
+
}
|
|
2590
|
+
get loading() {
|
|
2591
|
+
return this.elementRef.nativeElement['loading'];
|
|
2592
|
+
}
|
|
2593
|
+
set shape(value) {
|
|
2594
|
+
this.elementRef.nativeElement['shape'] = value;
|
|
2595
|
+
}
|
|
2596
|
+
get shape() {
|
|
2597
|
+
return this.elementRef.nativeElement['shape'];
|
|
2598
|
+
}
|
|
2599
|
+
set shapeMobile(value) {
|
|
2600
|
+
this.elementRef.nativeElement['shapeMobile'] = value;
|
|
2601
|
+
}
|
|
2602
|
+
get shapeMobile() {
|
|
2603
|
+
return this.elementRef.nativeElement['shapeMobile'];
|
|
2604
|
+
}
|
|
2605
|
+
set shapeTablet(value) {
|
|
2606
|
+
this.elementRef.nativeElement['shapeTablet'] = value;
|
|
2607
|
+
}
|
|
2608
|
+
get shapeTablet() {
|
|
2609
|
+
return this.elementRef.nativeElement['shapeTablet'];
|
|
2610
|
+
}
|
|
2611
|
+
set shapeLaptop(value) {
|
|
2612
|
+
this.elementRef.nativeElement['shapeLaptop'] = value;
|
|
2613
|
+
}
|
|
2614
|
+
get shapeLaptop() {
|
|
2615
|
+
return this.elementRef.nativeElement['shapeLaptop'];
|
|
2616
|
+
}
|
|
2617
|
+
set shapeDesktop(value) {
|
|
2618
|
+
this.elementRef.nativeElement['shapeDesktop'] = value;
|
|
2619
|
+
}
|
|
2620
|
+
get shapeDesktop() {
|
|
2621
|
+
return this.elementRef.nativeElement['shapeDesktop'];
|
|
2622
|
+
}
|
|
2367
2623
|
set inverted(value) {
|
|
2368
2624
|
this.elementRef.nativeElement['inverted'] = value;
|
|
2369
2625
|
}
|
|
2370
2626
|
get inverted() {
|
|
2371
2627
|
return this.elementRef.nativeElement['inverted'];
|
|
2372
2628
|
}
|
|
2629
|
+
set ariaExpanded(value) {
|
|
2630
|
+
this.elementRef.nativeElement['ariaExpanded'] = value;
|
|
2631
|
+
}
|
|
2632
|
+
get ariaExpanded() {
|
|
2633
|
+
return this.elementRef.nativeElement['ariaExpanded'];
|
|
2634
|
+
}
|
|
2635
|
+
set extended(value) {
|
|
2636
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
2637
|
+
}
|
|
2638
|
+
get extended() {
|
|
2639
|
+
return this.elementRef.nativeElement['extended'];
|
|
2640
|
+
}
|
|
2641
|
+
set extendedMobile(value) {
|
|
2642
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
2643
|
+
}
|
|
2644
|
+
get extendedMobile() {
|
|
2645
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
2646
|
+
}
|
|
2647
|
+
set extendedTablet(value) {
|
|
2648
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
2649
|
+
}
|
|
2650
|
+
get extendedTablet() {
|
|
2651
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
2652
|
+
}
|
|
2653
|
+
set extendedLaptop(value) {
|
|
2654
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
2655
|
+
}
|
|
2656
|
+
get extendedLaptop() {
|
|
2657
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
2658
|
+
}
|
|
2659
|
+
set extendedDesktop(value) {
|
|
2660
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
2661
|
+
}
|
|
2662
|
+
get extendedDesktop() {
|
|
2663
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
2664
|
+
}
|
|
2373
2665
|
set grow(value) {
|
|
2374
2666
|
this.elementRef.nativeElement['grow'] = value;
|
|
2375
2667
|
}
|
|
@@ -2643,16 +2935,53 @@ class PxBreadcrumbItem {
|
|
|
2643
2935
|
constructor(elementRef) {
|
|
2644
2936
|
this.elementRef = elementRef;
|
|
2645
2937
|
}
|
|
2646
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
2647
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
2938
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButton, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2939
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxButton, selector: "px-button", inputs: { variant: "variant", state: "state", loading: "loading", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], inverted: "inverted", ariaExpanded: ["aria-expanded", "ariaExpanded"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
2648
2940
|
}
|
|
2649
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
2941
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButton, decorators: [{
|
|
2650
2942
|
type: Directive,
|
|
2651
2943
|
args: [{
|
|
2652
|
-
selector: 'px-
|
|
2944
|
+
selector: 'px-button',
|
|
2653
2945
|
}]
|
|
2654
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
2946
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
2947
|
+
type: Input
|
|
2948
|
+
}], state: [{
|
|
2949
|
+
type: Input
|
|
2950
|
+
}], loading: [{
|
|
2951
|
+
type: Input
|
|
2952
|
+
}], shape: [{
|
|
2655
2953
|
type: Input
|
|
2954
|
+
}], shapeMobile: [{
|
|
2955
|
+
type: Input,
|
|
2956
|
+
args: ['shape--mobile']
|
|
2957
|
+
}], shapeTablet: [{
|
|
2958
|
+
type: Input,
|
|
2959
|
+
args: ['shape--tablet']
|
|
2960
|
+
}], shapeLaptop: [{
|
|
2961
|
+
type: Input,
|
|
2962
|
+
args: ['shape--laptop']
|
|
2963
|
+
}], shapeDesktop: [{
|
|
2964
|
+
type: Input,
|
|
2965
|
+
args: ['shape--desktop']
|
|
2966
|
+
}], inverted: [{
|
|
2967
|
+
type: Input
|
|
2968
|
+
}], ariaExpanded: [{
|
|
2969
|
+
type: Input,
|
|
2970
|
+
args: ['aria-expanded']
|
|
2971
|
+
}], extended: [{
|
|
2972
|
+
type: Input
|
|
2973
|
+
}], extendedMobile: [{
|
|
2974
|
+
type: Input,
|
|
2975
|
+
args: ['extended--mobile']
|
|
2976
|
+
}], extendedTablet: [{
|
|
2977
|
+
type: Input,
|
|
2978
|
+
args: ['extended--tablet']
|
|
2979
|
+
}], extendedLaptop: [{
|
|
2980
|
+
type: Input,
|
|
2981
|
+
args: ['extended--laptop']
|
|
2982
|
+
}], extendedDesktop: [{
|
|
2983
|
+
type: Input,
|
|
2984
|
+
args: ['extended--desktop']
|
|
2656
2985
|
}], grow: [{
|
|
2657
2986
|
type: Input
|
|
2658
2987
|
}], growMobile: [{
|
|
@@ -2785,9 +3114,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
2785
3114
|
args: ['order--desktop']
|
|
2786
3115
|
}] } });
|
|
2787
3116
|
/**
|
|
2788
|
-
* @description Type-only wrapper for <px-breadcrumb>
|
|
3117
|
+
* @description Type-only wrapper for <px-breadcrumb-item>
|
|
2789
3118
|
*/
|
|
2790
|
-
class
|
|
3119
|
+
class PxBreadcrumbItem {
|
|
2791
3120
|
elementRef;
|
|
2792
3121
|
set inverted(value) {
|
|
2793
3122
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -2795,12 +3124,6 @@ class PxBreadcrumb {
|
|
|
2795
3124
|
get inverted() {
|
|
2796
3125
|
return this.elementRef.nativeElement['inverted'];
|
|
2797
3126
|
}
|
|
2798
|
-
set ariaLabel(value) {
|
|
2799
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
2800
|
-
}
|
|
2801
|
-
get ariaLabel() {
|
|
2802
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
2803
|
-
}
|
|
2804
3127
|
set grow(value) {
|
|
2805
3128
|
this.elementRef.nativeElement['grow'] = value;
|
|
2806
3129
|
}
|
|
@@ -3074,19 +3397,16 @@ class PxBreadcrumb {
|
|
|
3074
3397
|
constructor(elementRef) {
|
|
3075
3398
|
this.elementRef = elementRef;
|
|
3076
3399
|
}
|
|
3077
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
3078
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
3400
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxBreadcrumbItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3401
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxBreadcrumbItem, selector: "px-breadcrumb-item", inputs: { inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
3079
3402
|
}
|
|
3080
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
3403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxBreadcrumbItem, decorators: [{
|
|
3081
3404
|
type: Directive,
|
|
3082
3405
|
args: [{
|
|
3083
|
-
selector: 'px-breadcrumb',
|
|
3406
|
+
selector: 'px-breadcrumb-item',
|
|
3084
3407
|
}]
|
|
3085
3408
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
3086
3409
|
type: Input
|
|
3087
|
-
}], ariaLabel: [{
|
|
3088
|
-
type: Input,
|
|
3089
|
-
args: ['aria-label']
|
|
3090
3410
|
}], grow: [{
|
|
3091
3411
|
type: Input
|
|
3092
3412
|
}], growMobile: [{
|
|
@@ -3219,99 +3539,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3219
3539
|
args: ['order--desktop']
|
|
3220
3540
|
}] } });
|
|
3221
3541
|
/**
|
|
3222
|
-
* @description Type-only wrapper for <px-
|
|
3542
|
+
* @description Type-only wrapper for <px-breadcrumb>
|
|
3223
3543
|
*/
|
|
3224
|
-
class
|
|
3544
|
+
class PxBreadcrumb {
|
|
3225
3545
|
elementRef;
|
|
3226
|
-
set variant(value) {
|
|
3227
|
-
this.elementRef.nativeElement['variant'] = value;
|
|
3228
|
-
}
|
|
3229
|
-
get variant() {
|
|
3230
|
-
return this.elementRef.nativeElement['variant'];
|
|
3231
|
-
}
|
|
3232
|
-
set state(value) {
|
|
3233
|
-
this.elementRef.nativeElement['state'] = value;
|
|
3234
|
-
}
|
|
3235
|
-
get state() {
|
|
3236
|
-
return this.elementRef.nativeElement['state'];
|
|
3237
|
-
}
|
|
3238
|
-
set loading(value) {
|
|
3239
|
-
this.elementRef.nativeElement['loading'] = value;
|
|
3240
|
-
}
|
|
3241
|
-
get loading() {
|
|
3242
|
-
return this.elementRef.nativeElement['loading'];
|
|
3243
|
-
}
|
|
3244
|
-
set shape(value) {
|
|
3245
|
-
this.elementRef.nativeElement['shape'] = value;
|
|
3246
|
-
}
|
|
3247
|
-
get shape() {
|
|
3248
|
-
return this.elementRef.nativeElement['shape'];
|
|
3249
|
-
}
|
|
3250
|
-
set shapeMobile(value) {
|
|
3251
|
-
this.elementRef.nativeElement['shapeMobile'] = value;
|
|
3252
|
-
}
|
|
3253
|
-
get shapeMobile() {
|
|
3254
|
-
return this.elementRef.nativeElement['shapeMobile'];
|
|
3255
|
-
}
|
|
3256
|
-
set shapeTablet(value) {
|
|
3257
|
-
this.elementRef.nativeElement['shapeTablet'] = value;
|
|
3258
|
-
}
|
|
3259
|
-
get shapeTablet() {
|
|
3260
|
-
return this.elementRef.nativeElement['shapeTablet'];
|
|
3261
|
-
}
|
|
3262
|
-
set shapeLaptop(value) {
|
|
3263
|
-
this.elementRef.nativeElement['shapeLaptop'] = value;
|
|
3264
|
-
}
|
|
3265
|
-
get shapeLaptop() {
|
|
3266
|
-
return this.elementRef.nativeElement['shapeLaptop'];
|
|
3267
|
-
}
|
|
3268
|
-
set shapeDesktop(value) {
|
|
3269
|
-
this.elementRef.nativeElement['shapeDesktop'] = value;
|
|
3270
|
-
}
|
|
3271
|
-
get shapeDesktop() {
|
|
3272
|
-
return this.elementRef.nativeElement['shapeDesktop'];
|
|
3273
|
-
}
|
|
3274
3546
|
set inverted(value) {
|
|
3275
3547
|
this.elementRef.nativeElement['inverted'] = value;
|
|
3276
3548
|
}
|
|
3277
3549
|
get inverted() {
|
|
3278
3550
|
return this.elementRef.nativeElement['inverted'];
|
|
3279
3551
|
}
|
|
3280
|
-
set
|
|
3281
|
-
this.elementRef.nativeElement['
|
|
3282
|
-
}
|
|
3283
|
-
get ariaExpanded() {
|
|
3284
|
-
return this.elementRef.nativeElement['ariaExpanded'];
|
|
3285
|
-
}
|
|
3286
|
-
set extended(value) {
|
|
3287
|
-
this.elementRef.nativeElement['extended'] = value;
|
|
3288
|
-
}
|
|
3289
|
-
get extended() {
|
|
3290
|
-
return this.elementRef.nativeElement['extended'];
|
|
3291
|
-
}
|
|
3292
|
-
set extendedMobile(value) {
|
|
3293
|
-
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
3294
|
-
}
|
|
3295
|
-
get extendedMobile() {
|
|
3296
|
-
return this.elementRef.nativeElement['extendedMobile'];
|
|
3297
|
-
}
|
|
3298
|
-
set extendedTablet(value) {
|
|
3299
|
-
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
3300
|
-
}
|
|
3301
|
-
get extendedTablet() {
|
|
3302
|
-
return this.elementRef.nativeElement['extendedTablet'];
|
|
3303
|
-
}
|
|
3304
|
-
set extendedLaptop(value) {
|
|
3305
|
-
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
3306
|
-
}
|
|
3307
|
-
get extendedLaptop() {
|
|
3308
|
-
return this.elementRef.nativeElement['extendedLaptop'];
|
|
3309
|
-
}
|
|
3310
|
-
set extendedDesktop(value) {
|
|
3311
|
-
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
3552
|
+
set ariaLabel(value) {
|
|
3553
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
3312
3554
|
}
|
|
3313
|
-
get
|
|
3314
|
-
return this.elementRef.nativeElement['
|
|
3555
|
+
get ariaLabel() {
|
|
3556
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
3315
3557
|
}
|
|
3316
3558
|
set grow(value) {
|
|
3317
3559
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -3586,53 +3828,19 @@ class PxButton {
|
|
|
3586
3828
|
constructor(elementRef) {
|
|
3587
3829
|
this.elementRef = elementRef;
|
|
3588
3830
|
}
|
|
3589
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
3590
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
3831
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxBreadcrumb, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3832
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxBreadcrumb, selector: "px-breadcrumb", inputs: { inverted: "inverted", ariaLabel: ["aria-label", "ariaLabel"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
3591
3833
|
}
|
|
3592
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
3834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxBreadcrumb, decorators: [{
|
|
3593
3835
|
type: Directive,
|
|
3594
3836
|
args: [{
|
|
3595
|
-
selector: 'px-
|
|
3837
|
+
selector: 'px-breadcrumb',
|
|
3596
3838
|
}]
|
|
3597
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
3598
|
-
type: Input
|
|
3599
|
-
}], state: [{
|
|
3600
|
-
type: Input
|
|
3601
|
-
}], loading: [{
|
|
3602
|
-
type: Input
|
|
3603
|
-
}], shape: [{
|
|
3604
|
-
type: Input
|
|
3605
|
-
}], shapeMobile: [{
|
|
3606
|
-
type: Input,
|
|
3607
|
-
args: ['shape--mobile']
|
|
3608
|
-
}], shapeTablet: [{
|
|
3609
|
-
type: Input,
|
|
3610
|
-
args: ['shape--tablet']
|
|
3611
|
-
}], shapeLaptop: [{
|
|
3612
|
-
type: Input,
|
|
3613
|
-
args: ['shape--laptop']
|
|
3614
|
-
}], shapeDesktop: [{
|
|
3615
|
-
type: Input,
|
|
3616
|
-
args: ['shape--desktop']
|
|
3617
|
-
}], inverted: [{
|
|
3618
|
-
type: Input
|
|
3619
|
-
}], ariaExpanded: [{
|
|
3620
|
-
type: Input,
|
|
3621
|
-
args: ['aria-expanded']
|
|
3622
|
-
}], extended: [{
|
|
3839
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
3623
3840
|
type: Input
|
|
3624
|
-
}],
|
|
3625
|
-
type: Input,
|
|
3626
|
-
args: ['extended--mobile']
|
|
3627
|
-
}], extendedTablet: [{
|
|
3628
|
-
type: Input,
|
|
3629
|
-
args: ['extended--tablet']
|
|
3630
|
-
}], extendedLaptop: [{
|
|
3631
|
-
type: Input,
|
|
3632
|
-
args: ['extended--laptop']
|
|
3633
|
-
}], extendedDesktop: [{
|
|
3841
|
+
}], ariaLabel: [{
|
|
3634
3842
|
type: Input,
|
|
3635
|
-
args: ['
|
|
3843
|
+
args: ['aria-label']
|
|
3636
3844
|
}], grow: [{
|
|
3637
3845
|
type: Input
|
|
3638
3846
|
}], growMobile: [{
|
|
@@ -3765,9 +3973,85 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3765
3973
|
args: ['order--desktop']
|
|
3766
3974
|
}] } });
|
|
3767
3975
|
/**
|
|
3768
|
-
* @description Type-only wrapper for <px-
|
|
3976
|
+
* @description Type-only wrapper for <px-appleseed>
|
|
3769
3977
|
*/
|
|
3770
|
-
class
|
|
3978
|
+
class PxAppleseed {
|
|
3979
|
+
elementRef;
|
|
3980
|
+
set amount(value) {
|
|
3981
|
+
this.elementRef.nativeElement['amount'] = value;
|
|
3982
|
+
}
|
|
3983
|
+
get amount() {
|
|
3984
|
+
return this.elementRef.nativeElement['amount'];
|
|
3985
|
+
}
|
|
3986
|
+
set active(value) {
|
|
3987
|
+
this.elementRef.nativeElement['active'] = value;
|
|
3988
|
+
}
|
|
3989
|
+
get active() {
|
|
3990
|
+
return this.elementRef.nativeElement['active'];
|
|
3991
|
+
}
|
|
3992
|
+
constructor(elementRef) {
|
|
3993
|
+
this.elementRef = elementRef;
|
|
3994
|
+
}
|
|
3995
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3996
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxAppleseed, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
3997
|
+
}
|
|
3998
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
3999
|
+
type: Directive,
|
|
4000
|
+
args: [{
|
|
4001
|
+
selector: 'px-appleseed',
|
|
4002
|
+
}]
|
|
4003
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
4004
|
+
type: Input
|
|
4005
|
+
}], active: [{
|
|
4006
|
+
type: Input
|
|
4007
|
+
}] } });
|
|
4008
|
+
/**
|
|
4009
|
+
* @description Type-only wrapper for <px-carousel>
|
|
4010
|
+
*/
|
|
4011
|
+
class PxCarousel {
|
|
4012
|
+
elementRef;
|
|
4013
|
+
set visibleItems(value) {
|
|
4014
|
+
this.elementRef.nativeElement['visibleItems'] = value;
|
|
4015
|
+
}
|
|
4016
|
+
get visibleItems() {
|
|
4017
|
+
return this.elementRef.nativeElement['visibleItems'];
|
|
4018
|
+
}
|
|
4019
|
+
constructor(elementRef) {
|
|
4020
|
+
this.elementRef = elementRef;
|
|
4021
|
+
}
|
|
4022
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4023
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarousel, selector: "px-carousel", inputs: { visibleItems: ["visible-items", "visibleItems"] }, ngImport: i0 });
|
|
4024
|
+
}
|
|
4025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, decorators: [{
|
|
4026
|
+
type: Directive,
|
|
4027
|
+
args: [{
|
|
4028
|
+
selector: 'px-carousel',
|
|
4029
|
+
}]
|
|
4030
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { visibleItems: [{
|
|
4031
|
+
type: Input,
|
|
4032
|
+
args: ['visible-items']
|
|
4033
|
+
}] } });
|
|
4034
|
+
/**
|
|
4035
|
+
* @description Type-only wrapper for <px-carousel-item>
|
|
4036
|
+
*/
|
|
4037
|
+
class PxCarouselItem {
|
|
4038
|
+
elementRef;
|
|
4039
|
+
constructor(elementRef) {
|
|
4040
|
+
this.elementRef = elementRef;
|
|
4041
|
+
}
|
|
4042
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4043
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarouselItem, selector: "px-carousel-item", ngImport: i0 });
|
|
4044
|
+
}
|
|
4045
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
4046
|
+
type: Directive,
|
|
4047
|
+
args: [{
|
|
4048
|
+
selector: 'px-carousel-item',
|
|
4049
|
+
}]
|
|
4050
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
4051
|
+
/**
|
|
4052
|
+
* @description Type-only wrapper for <px-card>
|
|
4053
|
+
*/
|
|
4054
|
+
class PxCard {
|
|
3771
4055
|
elementRef;
|
|
3772
4056
|
set inverted(value) {
|
|
3773
4057
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -3775,29 +4059,83 @@ class PxButtonIcon {
|
|
|
3775
4059
|
get inverted() {
|
|
3776
4060
|
return this.elementRef.nativeElement['inverted'];
|
|
3777
4061
|
}
|
|
3778
|
-
set
|
|
3779
|
-
this.elementRef.nativeElement['
|
|
4062
|
+
set backgroundColor(value) {
|
|
4063
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
3780
4064
|
}
|
|
3781
|
-
get
|
|
3782
|
-
return this.elementRef.nativeElement['
|
|
4065
|
+
get backgroundColor() {
|
|
4066
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
3783
4067
|
}
|
|
3784
|
-
set
|
|
3785
|
-
this.elementRef.nativeElement['
|
|
4068
|
+
set backgroundSize(value) {
|
|
4069
|
+
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
3786
4070
|
}
|
|
3787
|
-
get
|
|
3788
|
-
return this.elementRef.nativeElement['
|
|
4071
|
+
get backgroundSize() {
|
|
4072
|
+
return this.elementRef.nativeElement['backgroundSize'];
|
|
3789
4073
|
}
|
|
3790
|
-
set
|
|
3791
|
-
this.elementRef.nativeElement['
|
|
4074
|
+
set backgroundPosition(value) {
|
|
4075
|
+
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
3792
4076
|
}
|
|
3793
|
-
get
|
|
3794
|
-
return this.elementRef.nativeElement['
|
|
4077
|
+
get backgroundPosition() {
|
|
4078
|
+
return this.elementRef.nativeElement['backgroundPosition'];
|
|
3795
4079
|
}
|
|
3796
|
-
set
|
|
3797
|
-
this.elementRef.nativeElement['
|
|
4080
|
+
set contrastHelperGradient(value) {
|
|
4081
|
+
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
3798
4082
|
}
|
|
3799
|
-
get
|
|
3800
|
-
return this.elementRef.nativeElement['
|
|
4083
|
+
get contrastHelperGradient() {
|
|
4084
|
+
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
4085
|
+
}
|
|
4086
|
+
set contrastHelperOverlay(value) {
|
|
4087
|
+
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
4088
|
+
}
|
|
4089
|
+
get contrastHelperOverlay() {
|
|
4090
|
+
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
4091
|
+
}
|
|
4092
|
+
set mediaPosition(value) {
|
|
4093
|
+
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
4094
|
+
}
|
|
4095
|
+
get mediaPosition() {
|
|
4096
|
+
return this.elementRef.nativeElement['mediaPosition'];
|
|
4097
|
+
}
|
|
4098
|
+
set mediaPositionMobile(value) {
|
|
4099
|
+
this.elementRef.nativeElement['mediaPositionMobile'] = value;
|
|
4100
|
+
}
|
|
4101
|
+
get mediaPositionMobile() {
|
|
4102
|
+
return this.elementRef.nativeElement['mediaPositionMobile'];
|
|
4103
|
+
}
|
|
4104
|
+
set mediaPositionTablet(value) {
|
|
4105
|
+
this.elementRef.nativeElement['mediaPositionTablet'] = value;
|
|
4106
|
+
}
|
|
4107
|
+
get mediaPositionTablet() {
|
|
4108
|
+
return this.elementRef.nativeElement['mediaPositionTablet'];
|
|
4109
|
+
}
|
|
4110
|
+
set mediaPositionLaptop(value) {
|
|
4111
|
+
this.elementRef.nativeElement['mediaPositionLaptop'] = value;
|
|
4112
|
+
}
|
|
4113
|
+
get mediaPositionLaptop() {
|
|
4114
|
+
return this.elementRef.nativeElement['mediaPositionLaptop'];
|
|
4115
|
+
}
|
|
4116
|
+
set mediaSrc(value) {
|
|
4117
|
+
this.elementRef.nativeElement['mediaSrc'] = value;
|
|
4118
|
+
}
|
|
4119
|
+
get mediaSrc() {
|
|
4120
|
+
return this.elementRef.nativeElement['mediaSrc'];
|
|
4121
|
+
}
|
|
4122
|
+
set mediaSrcMobile(value) {
|
|
4123
|
+
this.elementRef.nativeElement['mediaSrcMobile'] = value;
|
|
4124
|
+
}
|
|
4125
|
+
get mediaSrcMobile() {
|
|
4126
|
+
return this.elementRef.nativeElement['mediaSrcMobile'];
|
|
4127
|
+
}
|
|
4128
|
+
set mediaSrcTablet(value) {
|
|
4129
|
+
this.elementRef.nativeElement['mediaSrcTablet'] = value;
|
|
4130
|
+
}
|
|
4131
|
+
get mediaSrcTablet() {
|
|
4132
|
+
return this.elementRef.nativeElement['mediaSrcTablet'];
|
|
4133
|
+
}
|
|
4134
|
+
set mediaSrcLaptop(value) {
|
|
4135
|
+
this.elementRef.nativeElement['mediaSrcLaptop'] = value;
|
|
4136
|
+
}
|
|
4137
|
+
get mediaSrcLaptop() {
|
|
4138
|
+
return this.elementRef.nativeElement['mediaSrcLaptop'];
|
|
3801
4139
|
}
|
|
3802
4140
|
set grow(value) {
|
|
3803
4141
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -4072,25 +4410,55 @@ class PxButtonIcon {
|
|
|
4072
4410
|
constructor(elementRef) {
|
|
4073
4411
|
this.elementRef = elementRef;
|
|
4074
4412
|
}
|
|
4075
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4076
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
4413
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCard, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4414
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCard, selector: "px-card", inputs: { inverted: "inverted", backgroundColor: ["background-color", "backgroundColor"], backgroundSize: ["background-size", "backgroundSize"], backgroundPosition: ["background-position", "backgroundPosition"], contrastHelperGradient: ["contrast-helper-gradient", "contrastHelperGradient"], contrastHelperOverlay: ["contrast-helper-overlay", "contrastHelperOverlay"], mediaPosition: ["media-position", "mediaPosition"], mediaPositionMobile: ["media-position--mobile", "mediaPositionMobile"], mediaPositionTablet: ["media-position--tablet", "mediaPositionTablet"], mediaPositionLaptop: ["media-position--laptop", "mediaPositionLaptop"], mediaSrc: ["media-src", "mediaSrc"], mediaSrcMobile: ["media-src--mobile", "mediaSrcMobile"], mediaSrcTablet: ["media-src--tablet", "mediaSrcTablet"], mediaSrcLaptop: ["media-src--laptop", "mediaSrcLaptop"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
4077
4415
|
}
|
|
4078
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4416
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCard, decorators: [{
|
|
4079
4417
|
type: Directive,
|
|
4080
4418
|
args: [{
|
|
4081
|
-
selector: 'px-
|
|
4419
|
+
selector: 'px-card',
|
|
4082
4420
|
}]
|
|
4083
4421
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
4084
4422
|
type: Input
|
|
4085
|
-
}],
|
|
4086
|
-
type: Input
|
|
4087
|
-
}], size: [{
|
|
4088
|
-
type: Input
|
|
4089
|
-
}], variant: [{
|
|
4090
|
-
type: Input
|
|
4091
|
-
}], ariaExpanded: [{
|
|
4423
|
+
}], backgroundColor: [{
|
|
4092
4424
|
type: Input,
|
|
4093
|
-
args: ['
|
|
4425
|
+
args: ['background-color']
|
|
4426
|
+
}], backgroundSize: [{
|
|
4427
|
+
type: Input,
|
|
4428
|
+
args: ['background-size']
|
|
4429
|
+
}], backgroundPosition: [{
|
|
4430
|
+
type: Input,
|
|
4431
|
+
args: ['background-position']
|
|
4432
|
+
}], contrastHelperGradient: [{
|
|
4433
|
+
type: Input,
|
|
4434
|
+
args: ['contrast-helper-gradient']
|
|
4435
|
+
}], contrastHelperOverlay: [{
|
|
4436
|
+
type: Input,
|
|
4437
|
+
args: ['contrast-helper-overlay']
|
|
4438
|
+
}], mediaPosition: [{
|
|
4439
|
+
type: Input,
|
|
4440
|
+
args: ['media-position']
|
|
4441
|
+
}], mediaPositionMobile: [{
|
|
4442
|
+
type: Input,
|
|
4443
|
+
args: ['media-position--mobile']
|
|
4444
|
+
}], mediaPositionTablet: [{
|
|
4445
|
+
type: Input,
|
|
4446
|
+
args: ['media-position--tablet']
|
|
4447
|
+
}], mediaPositionLaptop: [{
|
|
4448
|
+
type: Input,
|
|
4449
|
+
args: ['media-position--laptop']
|
|
4450
|
+
}], mediaSrc: [{
|
|
4451
|
+
type: Input,
|
|
4452
|
+
args: ['media-src']
|
|
4453
|
+
}], mediaSrcMobile: [{
|
|
4454
|
+
type: Input,
|
|
4455
|
+
args: ['media-src--mobile']
|
|
4456
|
+
}], mediaSrcTablet: [{
|
|
4457
|
+
type: Input,
|
|
4458
|
+
args: ['media-src--tablet']
|
|
4459
|
+
}], mediaSrcLaptop: [{
|
|
4460
|
+
type: Input,
|
|
4461
|
+
args: ['media-src--laptop']
|
|
4094
4462
|
}], grow: [{
|
|
4095
4463
|
type: Input
|
|
4096
4464
|
}], growMobile: [{
|
|
@@ -4223,85 +4591,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
4223
4591
|
args: ['order--desktop']
|
|
4224
4592
|
}] } });
|
|
4225
4593
|
/**
|
|
4226
|
-
* @description Type-only wrapper for <px-
|
|
4227
|
-
*/
|
|
4228
|
-
class PxAppleseed {
|
|
4229
|
-
elementRef;
|
|
4230
|
-
set amount(value) {
|
|
4231
|
-
this.elementRef.nativeElement['amount'] = value;
|
|
4232
|
-
}
|
|
4233
|
-
get amount() {
|
|
4234
|
-
return this.elementRef.nativeElement['amount'];
|
|
4235
|
-
}
|
|
4236
|
-
set active(value) {
|
|
4237
|
-
this.elementRef.nativeElement['active'] = value;
|
|
4238
|
-
}
|
|
4239
|
-
get active() {
|
|
4240
|
-
return this.elementRef.nativeElement['active'];
|
|
4241
|
-
}
|
|
4242
|
-
constructor(elementRef) {
|
|
4243
|
-
this.elementRef = elementRef;
|
|
4244
|
-
}
|
|
4245
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4246
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxAppleseed, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
4247
|
-
}
|
|
4248
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
4249
|
-
type: Directive,
|
|
4250
|
-
args: [{
|
|
4251
|
-
selector: 'px-appleseed',
|
|
4252
|
-
}]
|
|
4253
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
4254
|
-
type: Input
|
|
4255
|
-
}], active: [{
|
|
4256
|
-
type: Input
|
|
4257
|
-
}] } });
|
|
4258
|
-
/**
|
|
4259
|
-
* @description Type-only wrapper for <px-carousel>
|
|
4260
|
-
*/
|
|
4261
|
-
class PxCarousel {
|
|
4262
|
-
elementRef;
|
|
4263
|
-
set visibleItems(value) {
|
|
4264
|
-
this.elementRef.nativeElement['visibleItems'] = value;
|
|
4265
|
-
}
|
|
4266
|
-
get visibleItems() {
|
|
4267
|
-
return this.elementRef.nativeElement['visibleItems'];
|
|
4268
|
-
}
|
|
4269
|
-
constructor(elementRef) {
|
|
4270
|
-
this.elementRef = elementRef;
|
|
4271
|
-
}
|
|
4272
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4273
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarousel, selector: "px-carousel", inputs: { visibleItems: ["visible-items", "visibleItems"] }, ngImport: i0 });
|
|
4274
|
-
}
|
|
4275
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, decorators: [{
|
|
4276
|
-
type: Directive,
|
|
4277
|
-
args: [{
|
|
4278
|
-
selector: 'px-carousel',
|
|
4279
|
-
}]
|
|
4280
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { visibleItems: [{
|
|
4281
|
-
type: Input,
|
|
4282
|
-
args: ['visible-items']
|
|
4283
|
-
}] } });
|
|
4284
|
-
/**
|
|
4285
|
-
* @description Type-only wrapper for <px-carousel-item>
|
|
4286
|
-
*/
|
|
4287
|
-
class PxCarouselItem {
|
|
4288
|
-
elementRef;
|
|
4289
|
-
constructor(elementRef) {
|
|
4290
|
-
this.elementRef = elementRef;
|
|
4291
|
-
}
|
|
4292
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4293
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarouselItem, selector: "px-carousel-item", ngImport: i0 });
|
|
4294
|
-
}
|
|
4295
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
4296
|
-
type: Directive,
|
|
4297
|
-
args: [{
|
|
4298
|
-
selector: 'px-carousel-item',
|
|
4299
|
-
}]
|
|
4300
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
4301
|
-
/**
|
|
4302
|
-
* @description Type-only wrapper for <px-card>
|
|
4594
|
+
* @description Type-only wrapper for <px-button-icon>
|
|
4303
4595
|
*/
|
|
4304
|
-
class
|
|
4596
|
+
class PxButtonIcon {
|
|
4305
4597
|
elementRef;
|
|
4306
4598
|
set inverted(value) {
|
|
4307
4599
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -4309,83 +4601,29 @@ class PxCard {
|
|
|
4309
4601
|
get inverted() {
|
|
4310
4602
|
return this.elementRef.nativeElement['inverted'];
|
|
4311
4603
|
}
|
|
4312
|
-
set
|
|
4313
|
-
this.elementRef.nativeElement['
|
|
4314
|
-
}
|
|
4315
|
-
get backgroundColor() {
|
|
4316
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
4317
|
-
}
|
|
4318
|
-
set backgroundSize(value) {
|
|
4319
|
-
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
4320
|
-
}
|
|
4321
|
-
get backgroundSize() {
|
|
4322
|
-
return this.elementRef.nativeElement['backgroundSize'];
|
|
4323
|
-
}
|
|
4324
|
-
set backgroundPosition(value) {
|
|
4325
|
-
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
4326
|
-
}
|
|
4327
|
-
get backgroundPosition() {
|
|
4328
|
-
return this.elementRef.nativeElement['backgroundPosition'];
|
|
4329
|
-
}
|
|
4330
|
-
set contrastHelperGradient(value) {
|
|
4331
|
-
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
4332
|
-
}
|
|
4333
|
-
get contrastHelperGradient() {
|
|
4334
|
-
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
4335
|
-
}
|
|
4336
|
-
set contrastHelperOverlay(value) {
|
|
4337
|
-
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
4338
|
-
}
|
|
4339
|
-
get contrastHelperOverlay() {
|
|
4340
|
-
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
4341
|
-
}
|
|
4342
|
-
set mediaPosition(value) {
|
|
4343
|
-
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
4344
|
-
}
|
|
4345
|
-
get mediaPosition() {
|
|
4346
|
-
return this.elementRef.nativeElement['mediaPosition'];
|
|
4347
|
-
}
|
|
4348
|
-
set mediaPositionMobile(value) {
|
|
4349
|
-
this.elementRef.nativeElement['mediaPositionMobile'] = value;
|
|
4350
|
-
}
|
|
4351
|
-
get mediaPositionMobile() {
|
|
4352
|
-
return this.elementRef.nativeElement['mediaPositionMobile'];
|
|
4353
|
-
}
|
|
4354
|
-
set mediaPositionTablet(value) {
|
|
4355
|
-
this.elementRef.nativeElement['mediaPositionTablet'] = value;
|
|
4356
|
-
}
|
|
4357
|
-
get mediaPositionTablet() {
|
|
4358
|
-
return this.elementRef.nativeElement['mediaPositionTablet'];
|
|
4359
|
-
}
|
|
4360
|
-
set mediaPositionLaptop(value) {
|
|
4361
|
-
this.elementRef.nativeElement['mediaPositionLaptop'] = value;
|
|
4362
|
-
}
|
|
4363
|
-
get mediaPositionLaptop() {
|
|
4364
|
-
return this.elementRef.nativeElement['mediaPositionLaptop'];
|
|
4365
|
-
}
|
|
4366
|
-
set mediaSrc(value) {
|
|
4367
|
-
this.elementRef.nativeElement['mediaSrc'] = value;
|
|
4604
|
+
set loading(value) {
|
|
4605
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
4368
4606
|
}
|
|
4369
|
-
get
|
|
4370
|
-
return this.elementRef.nativeElement['
|
|
4607
|
+
get loading() {
|
|
4608
|
+
return this.elementRef.nativeElement['loading'];
|
|
4371
4609
|
}
|
|
4372
|
-
set
|
|
4373
|
-
this.elementRef.nativeElement['
|
|
4610
|
+
set size(value) {
|
|
4611
|
+
this.elementRef.nativeElement['size'] = value;
|
|
4374
4612
|
}
|
|
4375
|
-
get
|
|
4376
|
-
return this.elementRef.nativeElement['
|
|
4613
|
+
get size() {
|
|
4614
|
+
return this.elementRef.nativeElement['size'];
|
|
4377
4615
|
}
|
|
4378
|
-
set
|
|
4379
|
-
this.elementRef.nativeElement['
|
|
4616
|
+
set variant(value) {
|
|
4617
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
4380
4618
|
}
|
|
4381
|
-
get
|
|
4382
|
-
return this.elementRef.nativeElement['
|
|
4619
|
+
get variant() {
|
|
4620
|
+
return this.elementRef.nativeElement['variant'];
|
|
4383
4621
|
}
|
|
4384
|
-
set
|
|
4385
|
-
this.elementRef.nativeElement['
|
|
4622
|
+
set ariaExpanded(value) {
|
|
4623
|
+
this.elementRef.nativeElement['ariaExpanded'] = value;
|
|
4386
4624
|
}
|
|
4387
|
-
get
|
|
4388
|
-
return this.elementRef.nativeElement['
|
|
4625
|
+
get ariaExpanded() {
|
|
4626
|
+
return this.elementRef.nativeElement['ariaExpanded'];
|
|
4389
4627
|
}
|
|
4390
4628
|
set grow(value) {
|
|
4391
4629
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -4660,55 +4898,25 @@ class PxCard {
|
|
|
4660
4898
|
constructor(elementRef) {
|
|
4661
4899
|
this.elementRef = elementRef;
|
|
4662
4900
|
}
|
|
4663
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4664
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
4901
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonIcon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4902
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxButtonIcon, selector: "px-button-icon", inputs: { inverted: "inverted", loading: "loading", size: "size", variant: "variant", ariaExpanded: ["aria-expanded", "ariaExpanded"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
4665
4903
|
}
|
|
4666
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4904
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonIcon, decorators: [{
|
|
4667
4905
|
type: Directive,
|
|
4668
4906
|
args: [{
|
|
4669
|
-
selector: 'px-
|
|
4907
|
+
selector: 'px-button-icon',
|
|
4670
4908
|
}]
|
|
4671
4909
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
4672
4910
|
type: Input
|
|
4673
|
-
}],
|
|
4674
|
-
type: Input
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
}],
|
|
4680
|
-
type: Input,
|
|
4681
|
-
args: ['background-position']
|
|
4682
|
-
}], contrastHelperGradient: [{
|
|
4683
|
-
type: Input,
|
|
4684
|
-
args: ['contrast-helper-gradient']
|
|
4685
|
-
}], contrastHelperOverlay: [{
|
|
4686
|
-
type: Input,
|
|
4687
|
-
args: ['contrast-helper-overlay']
|
|
4688
|
-
}], mediaPosition: [{
|
|
4689
|
-
type: Input,
|
|
4690
|
-
args: ['media-position']
|
|
4691
|
-
}], mediaPositionMobile: [{
|
|
4692
|
-
type: Input,
|
|
4693
|
-
args: ['media-position--mobile']
|
|
4694
|
-
}], mediaPositionTablet: [{
|
|
4695
|
-
type: Input,
|
|
4696
|
-
args: ['media-position--tablet']
|
|
4697
|
-
}], mediaPositionLaptop: [{
|
|
4698
|
-
type: Input,
|
|
4699
|
-
args: ['media-position--laptop']
|
|
4700
|
-
}], mediaSrc: [{
|
|
4701
|
-
type: Input,
|
|
4702
|
-
args: ['media-src']
|
|
4703
|
-
}], mediaSrcMobile: [{
|
|
4704
|
-
type: Input,
|
|
4705
|
-
args: ['media-src--mobile']
|
|
4706
|
-
}], mediaSrcTablet: [{
|
|
4707
|
-
type: Input,
|
|
4708
|
-
args: ['media-src--tablet']
|
|
4709
|
-
}], mediaSrcLaptop: [{
|
|
4911
|
+
}], loading: [{
|
|
4912
|
+
type: Input
|
|
4913
|
+
}], size: [{
|
|
4914
|
+
type: Input
|
|
4915
|
+
}], variant: [{
|
|
4916
|
+
type: Input
|
|
4917
|
+
}], ariaExpanded: [{
|
|
4710
4918
|
type: Input,
|
|
4711
|
-
args: ['
|
|
4919
|
+
args: ['aria-expanded']
|
|
4712
4920
|
}], grow: [{
|
|
4713
4921
|
type: Input
|
|
4714
4922
|
}], growMobile: [{
|
|
@@ -23712,30 +23920,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
23712
23920
|
*/
|
|
23713
23921
|
class PxRadio {
|
|
23714
23922
|
elementRef;
|
|
23923
|
+
/** The validation state of the radio button. */
|
|
23715
23924
|
set state(value) {
|
|
23716
23925
|
this.elementRef.nativeElement['state'] = value;
|
|
23717
23926
|
}
|
|
23718
23927
|
get state() {
|
|
23719
23928
|
return this.elementRef.nativeElement['state'];
|
|
23720
23929
|
}
|
|
23930
|
+
/** The visual variant of the radio button. */
|
|
23721
23931
|
set variant(value) {
|
|
23722
23932
|
this.elementRef.nativeElement['variant'] = value;
|
|
23723
23933
|
}
|
|
23724
23934
|
get variant() {
|
|
23725
23935
|
return this.elementRef.nativeElement['variant'];
|
|
23726
23936
|
}
|
|
23937
|
+
/** Whether to use inverted (dark background) styling. */
|
|
23727
23938
|
set inverted(value) {
|
|
23728
23939
|
this.elementRef.nativeElement['inverted'] = value;
|
|
23729
23940
|
}
|
|
23730
23941
|
get inverted() {
|
|
23731
23942
|
return this.elementRef.nativeElement['inverted'];
|
|
23732
23943
|
}
|
|
23944
|
+
/** Whether the radio button is checked. */
|
|
23945
|
+
set checked(value) {
|
|
23946
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
23947
|
+
}
|
|
23948
|
+
get checked() {
|
|
23949
|
+
return this.elementRef.nativeElement['checked'];
|
|
23950
|
+
}
|
|
23951
|
+
/** Whether the radio button is disabled. */
|
|
23952
|
+
set disabled(value) {
|
|
23953
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
23954
|
+
}
|
|
23955
|
+
get disabled() {
|
|
23956
|
+
return this.elementRef.nativeElement['disabled'];
|
|
23957
|
+
}
|
|
23958
|
+
/** Whether to apply hover styling. */
|
|
23733
23959
|
set hover(value) {
|
|
23734
23960
|
this.elementRef.nativeElement['hover'] = value;
|
|
23735
23961
|
}
|
|
23736
23962
|
get hover() {
|
|
23737
23963
|
return this.elementRef.nativeElement['hover'];
|
|
23738
23964
|
}
|
|
23965
|
+
/** The name of the radio button, used for form submission. */
|
|
23966
|
+
set name(value) {
|
|
23967
|
+
this.elementRef.nativeElement['name'] = value;
|
|
23968
|
+
}
|
|
23969
|
+
get name() {
|
|
23970
|
+
return this.elementRef.nativeElement['name'];
|
|
23971
|
+
}
|
|
23972
|
+
/** The value of the radio button, used for form submission. */
|
|
23973
|
+
set value(value) {
|
|
23974
|
+
this.elementRef.nativeElement['value'] = value;
|
|
23975
|
+
}
|
|
23976
|
+
get value() {
|
|
23977
|
+
return this.elementRef.nativeElement['value'];
|
|
23978
|
+
}
|
|
23739
23979
|
set grow(value) {
|
|
23740
23980
|
this.elementRef.nativeElement['grow'] = value;
|
|
23741
23981
|
}
|
|
@@ -24006,6 +24246,7 @@ class PxRadio {
|
|
|
24006
24246
|
get orderDesktop() {
|
|
24007
24247
|
return this.elementRef.nativeElement['orderDesktop'];
|
|
24008
24248
|
}
|
|
24249
|
+
/** Fired when the radio button becomes checked. */
|
|
24009
24250
|
change = new EventEmitter();
|
|
24010
24251
|
constructor(elementRef) {
|
|
24011
24252
|
this.elementRef = elementRef;
|
|
@@ -24014,7 +24255,7 @@ class PxRadio {
|
|
|
24014
24255
|
});
|
|
24015
24256
|
}
|
|
24016
24257
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
24017
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxRadio, selector: "px-radio", inputs: { state: "state", variant: "variant", inverted: "inverted", hover: "hover", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
24258
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxRadio, selector: "px-radio", inputs: { state: "state", variant: "variant", inverted: "inverted", checked: "checked", disabled: "disabled", hover: "hover", name: "name", value: "value", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
24018
24259
|
}
|
|
24019
24260
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxRadio, decorators: [{
|
|
24020
24261
|
type: Directive,
|
|
@@ -24027,8 +24268,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
24027
24268
|
type: Input
|
|
24028
24269
|
}], inverted: [{
|
|
24029
24270
|
type: Input
|
|
24271
|
+
}], checked: [{
|
|
24272
|
+
type: Input
|
|
24273
|
+
}], disabled: [{
|
|
24274
|
+
type: Input
|
|
24030
24275
|
}], hover: [{
|
|
24031
24276
|
type: Input
|
|
24277
|
+
}], name: [{
|
|
24278
|
+
type: Input
|
|
24279
|
+
}], value: [{
|
|
24280
|
+
type: Input
|
|
24032
24281
|
}], grow: [{
|
|
24033
24282
|
type: Input
|
|
24034
24283
|
}], growMobile: [{
|
|
@@ -28012,6 +28261,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28012
28261
|
type: Input,
|
|
28013
28262
|
args: ['order--desktop']
|
|
28014
28263
|
}] } });
|
|
28264
|
+
/**
|
|
28265
|
+
* @description Type-only wrapper for <px-spinner>
|
|
28266
|
+
*/
|
|
28267
|
+
class PxSpinner {
|
|
28268
|
+
elementRef;
|
|
28269
|
+
set size(value) {
|
|
28270
|
+
this.elementRef.nativeElement['size'] = value;
|
|
28271
|
+
}
|
|
28272
|
+
get size() {
|
|
28273
|
+
return this.elementRef.nativeElement['size'];
|
|
28274
|
+
}
|
|
28275
|
+
set inverted(value) {
|
|
28276
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
28277
|
+
}
|
|
28278
|
+
get inverted() {
|
|
28279
|
+
return this.elementRef.nativeElement['inverted'];
|
|
28280
|
+
}
|
|
28281
|
+
set timeout(value) {
|
|
28282
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
28283
|
+
}
|
|
28284
|
+
get timeout() {
|
|
28285
|
+
return this.elementRef.nativeElement['timeout'];
|
|
28286
|
+
}
|
|
28287
|
+
set ariaLabel(value) {
|
|
28288
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
28289
|
+
}
|
|
28290
|
+
get ariaLabel() {
|
|
28291
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
28292
|
+
}
|
|
28293
|
+
constructor(elementRef) {
|
|
28294
|
+
this.elementRef = elementRef;
|
|
28295
|
+
}
|
|
28296
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28297
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpinner, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
28298
|
+
}
|
|
28299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, decorators: [{
|
|
28300
|
+
type: Directive,
|
|
28301
|
+
args: [{
|
|
28302
|
+
selector: 'px-spinner',
|
|
28303
|
+
}]
|
|
28304
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
28305
|
+
type: Input
|
|
28306
|
+
}], inverted: [{
|
|
28307
|
+
type: Input
|
|
28308
|
+
}], timeout: [{
|
|
28309
|
+
type: Input
|
|
28310
|
+
}], ariaLabel: [{
|
|
28311
|
+
type: Input,
|
|
28312
|
+
args: ['aria-label']
|
|
28313
|
+
}] } });
|
|
28015
28314
|
/**
|
|
28016
28315
|
* @description Type-only wrapper for <px-span>
|
|
28017
28316
|
*/
|
|
@@ -28471,56 +28770,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28471
28770
|
type: Input,
|
|
28472
28771
|
args: ['order--desktop']
|
|
28473
28772
|
}] } });
|
|
28474
|
-
/**
|
|
28475
|
-
* @description Type-only wrapper for <px-spinner>
|
|
28476
|
-
*/
|
|
28477
|
-
class PxSpinner {
|
|
28478
|
-
elementRef;
|
|
28479
|
-
set size(value) {
|
|
28480
|
-
this.elementRef.nativeElement['size'] = value;
|
|
28481
|
-
}
|
|
28482
|
-
get size() {
|
|
28483
|
-
return this.elementRef.nativeElement['size'];
|
|
28484
|
-
}
|
|
28485
|
-
set inverted(value) {
|
|
28486
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
28487
|
-
}
|
|
28488
|
-
get inverted() {
|
|
28489
|
-
return this.elementRef.nativeElement['inverted'];
|
|
28490
|
-
}
|
|
28491
|
-
set timeout(value) {
|
|
28492
|
-
this.elementRef.nativeElement['timeout'] = value;
|
|
28493
|
-
}
|
|
28494
|
-
get timeout() {
|
|
28495
|
-
return this.elementRef.nativeElement['timeout'];
|
|
28496
|
-
}
|
|
28497
|
-
set ariaLabel(value) {
|
|
28498
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
28499
|
-
}
|
|
28500
|
-
get ariaLabel() {
|
|
28501
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
28502
|
-
}
|
|
28503
|
-
constructor(elementRef) {
|
|
28504
|
-
this.elementRef = elementRef;
|
|
28505
|
-
}
|
|
28506
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28507
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpinner, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
28508
|
-
}
|
|
28509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, decorators: [{
|
|
28510
|
-
type: Directive,
|
|
28511
|
-
args: [{
|
|
28512
|
-
selector: 'px-spinner',
|
|
28513
|
-
}]
|
|
28514
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
28515
|
-
type: Input
|
|
28516
|
-
}], inverted: [{
|
|
28517
|
-
type: Input
|
|
28518
|
-
}], timeout: [{
|
|
28519
|
-
type: Input
|
|
28520
|
-
}], ariaLabel: [{
|
|
28521
|
-
type: Input,
|
|
28522
|
-
args: ['aria-label']
|
|
28523
|
-
}] } });
|
|
28524
28773
|
/**
|
|
28525
28774
|
* @description Type-only wrapper for <px-status>
|
|
28526
28775
|
*/
|
|
@@ -29940,57 +30189,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
29940
30189
|
type: Input,
|
|
29941
30190
|
args: ['order--desktop']
|
|
29942
30191
|
}] } });
|
|
29943
|
-
/**
|
|
29944
|
-
* @description Type-only wrapper for <px-tabs>
|
|
29945
|
-
*/
|
|
29946
|
-
class PxTabs {
|
|
29947
|
-
elementRef;
|
|
29948
|
-
constructor(elementRef) {
|
|
29949
|
-
this.elementRef = elementRef;
|
|
29950
|
-
}
|
|
29951
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabs, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29952
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabs, selector: "px-tabs", ngImport: i0 });
|
|
29953
|
-
}
|
|
29954
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabs, decorators: [{
|
|
29955
|
-
type: Directive,
|
|
29956
|
-
args: [{
|
|
29957
|
-
selector: 'px-tabs',
|
|
29958
|
-
}]
|
|
29959
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
29960
|
-
/**
|
|
29961
|
-
* @description Type-only wrapper for <px-tab>
|
|
29962
|
-
*/
|
|
29963
|
-
class PxTab {
|
|
29964
|
-
elementRef;
|
|
29965
|
-
constructor(elementRef) {
|
|
29966
|
-
this.elementRef = elementRef;
|
|
29967
|
-
}
|
|
29968
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTab, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29969
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTab, selector: "px-tab", ngImport: i0 });
|
|
29970
|
-
}
|
|
29971
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTab, decorators: [{
|
|
29972
|
-
type: Directive,
|
|
29973
|
-
args: [{
|
|
29974
|
-
selector: 'px-tab',
|
|
29975
|
-
}]
|
|
29976
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
29977
|
-
/**
|
|
29978
|
-
* @description Type-only wrapper for <px-tab-panel>
|
|
29979
|
-
*/
|
|
29980
|
-
class PxTabPanel {
|
|
29981
|
-
elementRef;
|
|
29982
|
-
constructor(elementRef) {
|
|
29983
|
-
this.elementRef = elementRef;
|
|
29984
|
-
}
|
|
29985
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabPanel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29986
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabPanel, selector: "px-tab-panel", ngImport: i0 });
|
|
29987
|
-
}
|
|
29988
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabPanel, decorators: [{
|
|
29989
|
-
type: Directive,
|
|
29990
|
-
args: [{
|
|
29991
|
-
selector: 'px-tab-panel',
|
|
29992
|
-
}]
|
|
29993
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
29994
30192
|
/**
|
|
29995
30193
|
* @description Type-only wrapper for <px-table>
|
|
29996
30194
|
*/
|
|
@@ -30093,6 +30291,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
30093
30291
|
selector: 'px-tr',
|
|
30094
30292
|
}]
|
|
30095
30293
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
30294
|
+
/**
|
|
30295
|
+
* @description Type-only wrapper for <px-tabs>
|
|
30296
|
+
*/
|
|
30297
|
+
class PxTabs {
|
|
30298
|
+
elementRef;
|
|
30299
|
+
constructor(elementRef) {
|
|
30300
|
+
this.elementRef = elementRef;
|
|
30301
|
+
}
|
|
30302
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabs, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30303
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabs, selector: "px-tabs", ngImport: i0 });
|
|
30304
|
+
}
|
|
30305
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabs, decorators: [{
|
|
30306
|
+
type: Directive,
|
|
30307
|
+
args: [{
|
|
30308
|
+
selector: 'px-tabs',
|
|
30309
|
+
}]
|
|
30310
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
30311
|
+
/**
|
|
30312
|
+
* @description Type-only wrapper for <px-tab>
|
|
30313
|
+
*/
|
|
30314
|
+
class PxTab {
|
|
30315
|
+
elementRef;
|
|
30316
|
+
constructor(elementRef) {
|
|
30317
|
+
this.elementRef = elementRef;
|
|
30318
|
+
}
|
|
30319
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTab, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30320
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTab, selector: "px-tab", ngImport: i0 });
|
|
30321
|
+
}
|
|
30322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTab, decorators: [{
|
|
30323
|
+
type: Directive,
|
|
30324
|
+
args: [{
|
|
30325
|
+
selector: 'px-tab',
|
|
30326
|
+
}]
|
|
30327
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
30328
|
+
/**
|
|
30329
|
+
* @description Type-only wrapper for <px-tab-panel>
|
|
30330
|
+
*/
|
|
30331
|
+
class PxTabPanel {
|
|
30332
|
+
elementRef;
|
|
30333
|
+
constructor(elementRef) {
|
|
30334
|
+
this.elementRef = elementRef;
|
|
30335
|
+
}
|
|
30336
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabPanel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30337
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabPanel, selector: "px-tab-panel", ngImport: i0 });
|
|
30338
|
+
}
|
|
30339
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabPanel, decorators: [{
|
|
30340
|
+
type: Directive,
|
|
30341
|
+
args: [{
|
|
30342
|
+
selector: 'px-tab-panel',
|
|
30343
|
+
}]
|
|
30344
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
30096
30345
|
/**
|
|
30097
30346
|
* @description Type-only wrapper for <px-tag>
|
|
30098
30347
|
*/
|
|
@@ -33373,6 +33622,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
33373
33622
|
}], change: [{
|
|
33374
33623
|
type: Output
|
|
33375
33624
|
}] } });
|
|
33625
|
+
/**
|
|
33626
|
+
* @description Type-only wrapper for <px-typography>
|
|
33627
|
+
*/
|
|
33628
|
+
class PxTypography {
|
|
33629
|
+
elementRef;
|
|
33630
|
+
set inverted(value) {
|
|
33631
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
33632
|
+
}
|
|
33633
|
+
get inverted() {
|
|
33634
|
+
return this.elementRef.nativeElement['inverted'];
|
|
33635
|
+
}
|
|
33636
|
+
constructor(elementRef) {
|
|
33637
|
+
this.elementRef = elementRef;
|
|
33638
|
+
}
|
|
33639
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTypography, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33640
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTypography, selector: "px-typography", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
33641
|
+
}
|
|
33642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTypography, decorators: [{
|
|
33643
|
+
type: Directive,
|
|
33644
|
+
args: [{
|
|
33645
|
+
selector: 'px-typography',
|
|
33646
|
+
}]
|
|
33647
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
33648
|
+
type: Input
|
|
33649
|
+
}] } });
|
|
33376
33650
|
/**
|
|
33377
33651
|
* @description Type-only wrapper for <px-timeline>
|
|
33378
33652
|
*/
|
|
@@ -33439,31 +33713,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
33439
33713
|
}], item: [{
|
|
33440
33714
|
type: Input
|
|
33441
33715
|
}] } });
|
|
33442
|
-
/**
|
|
33443
|
-
* @description Type-only wrapper for <px-typography>
|
|
33444
|
-
*/
|
|
33445
|
-
class PxTypography {
|
|
33446
|
-
elementRef;
|
|
33447
|
-
set inverted(value) {
|
|
33448
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
33449
|
-
}
|
|
33450
|
-
get inverted() {
|
|
33451
|
-
return this.elementRef.nativeElement['inverted'];
|
|
33452
|
-
}
|
|
33453
|
-
constructor(elementRef) {
|
|
33454
|
-
this.elementRef = elementRef;
|
|
33455
|
-
}
|
|
33456
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTypography, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33457
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTypography, selector: "px-typography", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
33458
|
-
}
|
|
33459
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTypography, decorators: [{
|
|
33460
|
-
type: Directive,
|
|
33461
|
-
args: [{
|
|
33462
|
-
selector: 'px-typography',
|
|
33463
|
-
}]
|
|
33464
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
33465
|
-
type: Input
|
|
33466
|
-
}] } });
|
|
33467
33716
|
/**
|
|
33468
33717
|
* @description Type-only wrapper for <px-patch>
|
|
33469
33718
|
*/
|
|
@@ -34032,7 +34281,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34032
34281
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
34033
34282
|
class Lavender {
|
|
34034
34283
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
34035
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb,
|
|
34284
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxButton, PxBreadcrumbItem, PxBreadcrumb, PxAppleseed, PxCarousel, PxCarouselItem, PxCard, PxButtonIcon, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxList, PxListItem, PxModal, PxP, PxPillar, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpinner, PxSpan, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTypography, PxTimeline, PxTimelineItem, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxButton, PxBreadcrumbItem, PxBreadcrumb, PxAppleseed, PxCarousel, PxCarouselItem, PxCard, PxButtonIcon, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxList, PxListItem, PxModal, PxP, PxPillar, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpinner, PxSpan, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTypography, PxTimeline, PxTimelineItem, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
34036
34285
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
34037
34286
|
}
|
|
34038
34287
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -34044,14 +34293,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34044
34293
|
PxAgGridTableThButton,
|
|
34045
34294
|
PxAgGridTableThContent,
|
|
34046
34295
|
PxBanner,
|
|
34296
|
+
PxButton,
|
|
34047
34297
|
PxBreadcrumbItem,
|
|
34048
34298
|
PxBreadcrumb,
|
|
34049
|
-
PxButton,
|
|
34050
|
-
PxButtonIcon,
|
|
34051
34299
|
PxAppleseed,
|
|
34052
34300
|
PxCarousel,
|
|
34053
34301
|
PxCarouselItem,
|
|
34054
34302
|
PxCard,
|
|
34303
|
+
PxButtonIcon,
|
|
34055
34304
|
PxCell,
|
|
34056
34305
|
PxCellButton,
|
|
34057
34306
|
PxCellCheckbox,
|
|
@@ -34102,22 +34351,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34102
34351
|
PxSelectableBoxRadio,
|
|
34103
34352
|
PxSeparator,
|
|
34104
34353
|
PxSkeleton,
|
|
34105
|
-
PxSpan,
|
|
34106
34354
|
PxSpinner,
|
|
34355
|
+
PxSpan,
|
|
34107
34356
|
PxStatus,
|
|
34108
34357
|
PxStatusCard,
|
|
34109
34358
|
PxStickyContainer,
|
|
34110
34359
|
PxThemeSwitcher,
|
|
34111
34360
|
PxSwitch,
|
|
34112
|
-
PxTabs,
|
|
34113
|
-
PxTab,
|
|
34114
|
-
PxTabPanel,
|
|
34115
34361
|
PxTable,
|
|
34116
34362
|
PxTbody,
|
|
34117
34363
|
PxTd,
|
|
34118
34364
|
PxTh,
|
|
34119
34365
|
PxThead,
|
|
34120
34366
|
PxTr,
|
|
34367
|
+
PxTabs,
|
|
34368
|
+
PxTab,
|
|
34369
|
+
PxTabPanel,
|
|
34121
34370
|
PxTag,
|
|
34122
34371
|
PxTile,
|
|
34123
34372
|
PxTileButton,
|
|
@@ -34125,9 +34374,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34125
34374
|
PxTileLink,
|
|
34126
34375
|
PxTileRadio,
|
|
34127
34376
|
PxTileSwitch,
|
|
34377
|
+
PxTypography,
|
|
34128
34378
|
PxTimeline,
|
|
34129
34379
|
PxTimelineItem,
|
|
34130
|
-
PxTypography,
|
|
34131
34380
|
PxPatch,
|
|
34132
34381
|
PxIcon,
|
|
34133
34382
|
PxIconSet,
|
|
@@ -34141,14 +34390,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34141
34390
|
PxAgGridTableThButton,
|
|
34142
34391
|
PxAgGridTableThContent,
|
|
34143
34392
|
PxBanner,
|
|
34393
|
+
PxButton,
|
|
34144
34394
|
PxBreadcrumbItem,
|
|
34145
34395
|
PxBreadcrumb,
|
|
34146
|
-
PxButton,
|
|
34147
|
-
PxButtonIcon,
|
|
34148
34396
|
PxAppleseed,
|
|
34149
34397
|
PxCarousel,
|
|
34150
34398
|
PxCarouselItem,
|
|
34151
34399
|
PxCard,
|
|
34400
|
+
PxButtonIcon,
|
|
34152
34401
|
PxCell,
|
|
34153
34402
|
PxCellButton,
|
|
34154
34403
|
PxCellCheckbox,
|
|
@@ -34199,22 +34448,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34199
34448
|
PxSelectableBoxRadio,
|
|
34200
34449
|
PxSeparator,
|
|
34201
34450
|
PxSkeleton,
|
|
34202
|
-
PxSpan,
|
|
34203
34451
|
PxSpinner,
|
|
34452
|
+
PxSpan,
|
|
34204
34453
|
PxStatus,
|
|
34205
34454
|
PxStatusCard,
|
|
34206
34455
|
PxStickyContainer,
|
|
34207
34456
|
PxThemeSwitcher,
|
|
34208
34457
|
PxSwitch,
|
|
34209
|
-
PxTabs,
|
|
34210
|
-
PxTab,
|
|
34211
|
-
PxTabPanel,
|
|
34212
34458
|
PxTable,
|
|
34213
34459
|
PxTbody,
|
|
34214
34460
|
PxTd,
|
|
34215
34461
|
PxTh,
|
|
34216
34462
|
PxThead,
|
|
34217
34463
|
PxTr,
|
|
34464
|
+
PxTabs,
|
|
34465
|
+
PxTab,
|
|
34466
|
+
PxTabPanel,
|
|
34218
34467
|
PxTag,
|
|
34219
34468
|
PxTile,
|
|
34220
34469
|
PxTileButton,
|
|
@@ -34222,9 +34471,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34222
34471
|
PxTileLink,
|
|
34223
34472
|
PxTileRadio,
|
|
34224
34473
|
PxTileSwitch,
|
|
34474
|
+
PxTypography,
|
|
34225
34475
|
PxTimeline,
|
|
34226
34476
|
PxTimelineItem,
|
|
34227
|
-
PxTypography,
|
|
34228
34477
|
PxPatch,
|
|
34229
34478
|
PxIcon,
|
|
34230
34479
|
PxIconSet,
|
|
@@ -34239,5 +34488,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34239
34488
|
* Generated bundle index. Do not edit.
|
|
34240
34489
|
*/
|
|
34241
34490
|
|
|
34242
|
-
export { Lavender, PxA, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxCard, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard, PxStickyContainer, PxSwitch, PxTab, PxTabPanel, PxTable, PxTabs, PxTag, PxTbody, PxTd, PxTextarea, PxTh, PxThead, PxThemeProvider, PxThemeSwitcher, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTr, PxTypography, PxVstack };
|
|
34491
|
+
export { Lavender, LavenderValueAccessors, PxA, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxCard, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxCheckboxValueAccessor, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxInputValueAccessor, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRadioGroupValueAccessor, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard, PxStickyContainer, PxSwitch, PxSwitchValueAccessor, PxTab, PxTabPanel, PxTable, PxTabs, PxTag, PxTbody, PxTd, PxTextarea, PxTextareaValueAccessor, PxTh, PxThead, PxThemeProvider, PxThemeSwitcher, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTr, PxTypography, PxVstack };
|
|
34243
34492
|
//# sourceMappingURL=proximus-lavender-angular.mjs.map
|