@proximus/lavender-angular 1.0.0-alpha.6 → 1.4.3-alpha.11
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/CHANGELOG.md +14 -0
- package/esm2022/index.mjs +1 -1
- package/esm2022/lavender.directive.mjs +544 -462
- package/esm2022/proximus-lavender-angular.mjs +1 -1
- package/esm2022/px-form-accessor.directive.mjs +2 -2
- package/fesm2022/proximus-lavender-angular.mjs +543 -461
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +169 -150
- package/package.json +2 -2
|
@@ -203,7 +203,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
203
203
|
class PxRadioGroupValueAccessor extends BaseValueAccessor {
|
|
204
204
|
handleChange(event) {
|
|
205
205
|
const radio = event.target;
|
|
206
|
-
this.onChange(radio
|
|
206
|
+
this.onChange(radio['value']);
|
|
207
207
|
}
|
|
208
208
|
writeValue(value) {
|
|
209
209
|
const radios = this.elementRef.nativeElement.querySelectorAll('px-radio');
|
|
@@ -2568,100 +2568,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
2568
2568
|
args: ['order--desktop']
|
|
2569
2569
|
}] } });
|
|
2570
2570
|
/**
|
|
2571
|
-
* @description Type-only wrapper for <px-
|
|
2571
|
+
* @description Type-only wrapper for <px-breadcrumb-item>
|
|
2572
2572
|
*/
|
|
2573
|
-
class
|
|
2573
|
+
class PxBreadcrumbItem {
|
|
2574
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
|
-
}
|
|
2623
2575
|
set inverted(value) {
|
|
2624
2576
|
this.elementRef.nativeElement['inverted'] = value;
|
|
2625
2577
|
}
|
|
2626
2578
|
get inverted() {
|
|
2627
2579
|
return this.elementRef.nativeElement['inverted'];
|
|
2628
2580
|
}
|
|
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
|
-
}
|
|
2665
2581
|
set grow(value) {
|
|
2666
2582
|
this.elementRef.nativeElement['grow'] = value;
|
|
2667
2583
|
}
|
|
@@ -2935,53 +2851,16 @@ class PxButton {
|
|
|
2935
2851
|
constructor(elementRef) {
|
|
2936
2852
|
this.elementRef = elementRef;
|
|
2937
2853
|
}
|
|
2938
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
2939
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
2854
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxBreadcrumbItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2855
|
+
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 });
|
|
2940
2856
|
}
|
|
2941
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
2857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxBreadcrumbItem, decorators: [{
|
|
2942
2858
|
type: Directive,
|
|
2943
2859
|
args: [{
|
|
2944
|
-
selector: 'px-
|
|
2860
|
+
selector: 'px-breadcrumb-item',
|
|
2945
2861
|
}]
|
|
2946
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
2947
|
-
type: Input
|
|
2948
|
-
}], state: [{
|
|
2949
|
-
type: Input
|
|
2950
|
-
}], loading: [{
|
|
2951
|
-
type: Input
|
|
2952
|
-
}], shape: [{
|
|
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: [{
|
|
2862
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
2972
2863
|
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']
|
|
2985
2864
|
}], grow: [{
|
|
2986
2865
|
type: Input
|
|
2987
2866
|
}], growMobile: [{
|
|
@@ -3114,9 +2993,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3114
2993
|
args: ['order--desktop']
|
|
3115
2994
|
}] } });
|
|
3116
2995
|
/**
|
|
3117
|
-
* @description Type-only wrapper for <px-breadcrumb
|
|
2996
|
+
* @description Type-only wrapper for <px-breadcrumb>
|
|
3118
2997
|
*/
|
|
3119
|
-
class
|
|
2998
|
+
class PxBreadcrumb {
|
|
3120
2999
|
elementRef;
|
|
3121
3000
|
set inverted(value) {
|
|
3122
3001
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -3124,6 +3003,12 @@ class PxBreadcrumbItem {
|
|
|
3124
3003
|
get inverted() {
|
|
3125
3004
|
return this.elementRef.nativeElement['inverted'];
|
|
3126
3005
|
}
|
|
3006
|
+
set ariaLabel(value) {
|
|
3007
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
3008
|
+
}
|
|
3009
|
+
get ariaLabel() {
|
|
3010
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
3011
|
+
}
|
|
3127
3012
|
set grow(value) {
|
|
3128
3013
|
this.elementRef.nativeElement['grow'] = value;
|
|
3129
3014
|
}
|
|
@@ -3397,16 +3282,19 @@ class PxBreadcrumbItem {
|
|
|
3397
3282
|
constructor(elementRef) {
|
|
3398
3283
|
this.elementRef = elementRef;
|
|
3399
3284
|
}
|
|
3400
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
3401
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
3285
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxBreadcrumb, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3286
|
+
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 });
|
|
3402
3287
|
}
|
|
3403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
3288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxBreadcrumb, decorators: [{
|
|
3404
3289
|
type: Directive,
|
|
3405
3290
|
args: [{
|
|
3406
|
-
selector: 'px-breadcrumb
|
|
3291
|
+
selector: 'px-breadcrumb',
|
|
3407
3292
|
}]
|
|
3408
3293
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
3409
3294
|
type: Input
|
|
3295
|
+
}], ariaLabel: [{
|
|
3296
|
+
type: Input,
|
|
3297
|
+
args: ['aria-label']
|
|
3410
3298
|
}], grow: [{
|
|
3411
3299
|
type: Input
|
|
3412
3300
|
}], growMobile: [{
|
|
@@ -3539,21 +3427,99 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3539
3427
|
args: ['order--desktop']
|
|
3540
3428
|
}] } });
|
|
3541
3429
|
/**
|
|
3542
|
-
* @description Type-only wrapper for <px-
|
|
3430
|
+
* @description Type-only wrapper for <px-button>
|
|
3543
3431
|
*/
|
|
3544
|
-
class
|
|
3432
|
+
class PxButton {
|
|
3545
3433
|
elementRef;
|
|
3434
|
+
set variant(value) {
|
|
3435
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
3436
|
+
}
|
|
3437
|
+
get variant() {
|
|
3438
|
+
return this.elementRef.nativeElement['variant'];
|
|
3439
|
+
}
|
|
3440
|
+
set state(value) {
|
|
3441
|
+
this.elementRef.nativeElement['state'] = value;
|
|
3442
|
+
}
|
|
3443
|
+
get state() {
|
|
3444
|
+
return this.elementRef.nativeElement['state'];
|
|
3445
|
+
}
|
|
3446
|
+
set loading(value) {
|
|
3447
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
3448
|
+
}
|
|
3449
|
+
get loading() {
|
|
3450
|
+
return this.elementRef.nativeElement['loading'];
|
|
3451
|
+
}
|
|
3452
|
+
set shape(value) {
|
|
3453
|
+
this.elementRef.nativeElement['shape'] = value;
|
|
3454
|
+
}
|
|
3455
|
+
get shape() {
|
|
3456
|
+
return this.elementRef.nativeElement['shape'];
|
|
3457
|
+
}
|
|
3458
|
+
set shapeMobile(value) {
|
|
3459
|
+
this.elementRef.nativeElement['shapeMobile'] = value;
|
|
3460
|
+
}
|
|
3461
|
+
get shapeMobile() {
|
|
3462
|
+
return this.elementRef.nativeElement['shapeMobile'];
|
|
3463
|
+
}
|
|
3464
|
+
set shapeTablet(value) {
|
|
3465
|
+
this.elementRef.nativeElement['shapeTablet'] = value;
|
|
3466
|
+
}
|
|
3467
|
+
get shapeTablet() {
|
|
3468
|
+
return this.elementRef.nativeElement['shapeTablet'];
|
|
3469
|
+
}
|
|
3470
|
+
set shapeLaptop(value) {
|
|
3471
|
+
this.elementRef.nativeElement['shapeLaptop'] = value;
|
|
3472
|
+
}
|
|
3473
|
+
get shapeLaptop() {
|
|
3474
|
+
return this.elementRef.nativeElement['shapeLaptop'];
|
|
3475
|
+
}
|
|
3476
|
+
set shapeDesktop(value) {
|
|
3477
|
+
this.elementRef.nativeElement['shapeDesktop'] = value;
|
|
3478
|
+
}
|
|
3479
|
+
get shapeDesktop() {
|
|
3480
|
+
return this.elementRef.nativeElement['shapeDesktop'];
|
|
3481
|
+
}
|
|
3546
3482
|
set inverted(value) {
|
|
3547
3483
|
this.elementRef.nativeElement['inverted'] = value;
|
|
3548
3484
|
}
|
|
3549
3485
|
get inverted() {
|
|
3550
3486
|
return this.elementRef.nativeElement['inverted'];
|
|
3551
3487
|
}
|
|
3552
|
-
set
|
|
3553
|
-
this.elementRef.nativeElement['
|
|
3488
|
+
set ariaExpanded(value) {
|
|
3489
|
+
this.elementRef.nativeElement['ariaExpanded'] = value;
|
|
3554
3490
|
}
|
|
3555
|
-
get
|
|
3556
|
-
return this.elementRef.nativeElement['
|
|
3491
|
+
get ariaExpanded() {
|
|
3492
|
+
return this.elementRef.nativeElement['ariaExpanded'];
|
|
3493
|
+
}
|
|
3494
|
+
set extended(value) {
|
|
3495
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
3496
|
+
}
|
|
3497
|
+
get extended() {
|
|
3498
|
+
return this.elementRef.nativeElement['extended'];
|
|
3499
|
+
}
|
|
3500
|
+
set extendedMobile(value) {
|
|
3501
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
3502
|
+
}
|
|
3503
|
+
get extendedMobile() {
|
|
3504
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
3505
|
+
}
|
|
3506
|
+
set extendedTablet(value) {
|
|
3507
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
3508
|
+
}
|
|
3509
|
+
get extendedTablet() {
|
|
3510
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
3511
|
+
}
|
|
3512
|
+
set extendedLaptop(value) {
|
|
3513
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
3514
|
+
}
|
|
3515
|
+
get extendedLaptop() {
|
|
3516
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
3517
|
+
}
|
|
3518
|
+
set extendedDesktop(value) {
|
|
3519
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
3520
|
+
}
|
|
3521
|
+
get extendedDesktop() {
|
|
3522
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
3557
3523
|
}
|
|
3558
3524
|
set grow(value) {
|
|
3559
3525
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -3828,19 +3794,53 @@ class PxBreadcrumb {
|
|
|
3828
3794
|
constructor(elementRef) {
|
|
3829
3795
|
this.elementRef = elementRef;
|
|
3830
3796
|
}
|
|
3831
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
3832
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
3797
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButton, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3798
|
+
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 });
|
|
3833
3799
|
}
|
|
3834
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
3800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButton, decorators: [{
|
|
3835
3801
|
type: Directive,
|
|
3836
3802
|
args: [{
|
|
3837
|
-
selector: 'px-
|
|
3803
|
+
selector: 'px-button',
|
|
3838
3804
|
}]
|
|
3839
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
3805
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
3840
3806
|
type: Input
|
|
3841
|
-
}],
|
|
3807
|
+
}], state: [{
|
|
3808
|
+
type: Input
|
|
3809
|
+
}], loading: [{
|
|
3810
|
+
type: Input
|
|
3811
|
+
}], shape: [{
|
|
3812
|
+
type: Input
|
|
3813
|
+
}], shapeMobile: [{
|
|
3842
3814
|
type: Input,
|
|
3843
|
-
args: ['
|
|
3815
|
+
args: ['shape--mobile']
|
|
3816
|
+
}], shapeTablet: [{
|
|
3817
|
+
type: Input,
|
|
3818
|
+
args: ['shape--tablet']
|
|
3819
|
+
}], shapeLaptop: [{
|
|
3820
|
+
type: Input,
|
|
3821
|
+
args: ['shape--laptop']
|
|
3822
|
+
}], shapeDesktop: [{
|
|
3823
|
+
type: Input,
|
|
3824
|
+
args: ['shape--desktop']
|
|
3825
|
+
}], inverted: [{
|
|
3826
|
+
type: Input
|
|
3827
|
+
}], ariaExpanded: [{
|
|
3828
|
+
type: Input,
|
|
3829
|
+
args: ['aria-expanded']
|
|
3830
|
+
}], extended: [{
|
|
3831
|
+
type: Input
|
|
3832
|
+
}], extendedMobile: [{
|
|
3833
|
+
type: Input,
|
|
3834
|
+
args: ['extended--mobile']
|
|
3835
|
+
}], extendedTablet: [{
|
|
3836
|
+
type: Input,
|
|
3837
|
+
args: ['extended--tablet']
|
|
3838
|
+
}], extendedLaptop: [{
|
|
3839
|
+
type: Input,
|
|
3840
|
+
args: ['extended--laptop']
|
|
3841
|
+
}], extendedDesktop: [{
|
|
3842
|
+
type: Input,
|
|
3843
|
+
args: ['extended--desktop']
|
|
3844
3844
|
}], grow: [{
|
|
3845
3845
|
type: Input
|
|
3846
3846
|
}], growMobile: [{
|
|
@@ -3973,85 +3973,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3973
3973
|
args: ['order--desktop']
|
|
3974
3974
|
}] } });
|
|
3975
3975
|
/**
|
|
3976
|
-
* @description Type-only wrapper for <px-
|
|
3977
|
-
*/
|
|
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>
|
|
3976
|
+
* @description Type-only wrapper for <px-button-icon>
|
|
4053
3977
|
*/
|
|
4054
|
-
class
|
|
3978
|
+
class PxButtonIcon {
|
|
4055
3979
|
elementRef;
|
|
4056
3980
|
set inverted(value) {
|
|
4057
3981
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -4059,83 +3983,29 @@ class PxCard {
|
|
|
4059
3983
|
get inverted() {
|
|
4060
3984
|
return this.elementRef.nativeElement['inverted'];
|
|
4061
3985
|
}
|
|
4062
|
-
set
|
|
4063
|
-
this.elementRef.nativeElement['
|
|
4064
|
-
}
|
|
4065
|
-
get backgroundColor() {
|
|
4066
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
4067
|
-
}
|
|
4068
|
-
set backgroundSize(value) {
|
|
4069
|
-
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
4070
|
-
}
|
|
4071
|
-
get backgroundSize() {
|
|
4072
|
-
return this.elementRef.nativeElement['backgroundSize'];
|
|
4073
|
-
}
|
|
4074
|
-
set backgroundPosition(value) {
|
|
4075
|
-
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
4076
|
-
}
|
|
4077
|
-
get backgroundPosition() {
|
|
4078
|
-
return this.elementRef.nativeElement['backgroundPosition'];
|
|
4079
|
-
}
|
|
4080
|
-
set contrastHelperGradient(value) {
|
|
4081
|
-
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
4082
|
-
}
|
|
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;
|
|
3986
|
+
set loading(value) {
|
|
3987
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
4118
3988
|
}
|
|
4119
|
-
get
|
|
4120
|
-
return this.elementRef.nativeElement['
|
|
3989
|
+
get loading() {
|
|
3990
|
+
return this.elementRef.nativeElement['loading'];
|
|
4121
3991
|
}
|
|
4122
|
-
set
|
|
4123
|
-
this.elementRef.nativeElement['
|
|
3992
|
+
set size(value) {
|
|
3993
|
+
this.elementRef.nativeElement['size'] = value;
|
|
4124
3994
|
}
|
|
4125
|
-
get
|
|
4126
|
-
return this.elementRef.nativeElement['
|
|
3995
|
+
get size() {
|
|
3996
|
+
return this.elementRef.nativeElement['size'];
|
|
4127
3997
|
}
|
|
4128
|
-
set
|
|
4129
|
-
this.elementRef.nativeElement['
|
|
3998
|
+
set variant(value) {
|
|
3999
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
4130
4000
|
}
|
|
4131
|
-
get
|
|
4132
|
-
return this.elementRef.nativeElement['
|
|
4001
|
+
get variant() {
|
|
4002
|
+
return this.elementRef.nativeElement['variant'];
|
|
4133
4003
|
}
|
|
4134
|
-
set
|
|
4135
|
-
this.elementRef.nativeElement['
|
|
4004
|
+
set ariaExpanded(value) {
|
|
4005
|
+
this.elementRef.nativeElement['ariaExpanded'] = value;
|
|
4136
4006
|
}
|
|
4137
|
-
get
|
|
4138
|
-
return this.elementRef.nativeElement['
|
|
4007
|
+
get ariaExpanded() {
|
|
4008
|
+
return this.elementRef.nativeElement['ariaExpanded'];
|
|
4139
4009
|
}
|
|
4140
4010
|
set grow(value) {
|
|
4141
4011
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -4410,55 +4280,25 @@ class PxCard {
|
|
|
4410
4280
|
constructor(elementRef) {
|
|
4411
4281
|
this.elementRef = elementRef;
|
|
4412
4282
|
}
|
|
4413
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4414
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
4283
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonIcon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4284
|
+
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 });
|
|
4415
4285
|
}
|
|
4416
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonIcon, decorators: [{
|
|
4417
4287
|
type: Directive,
|
|
4418
4288
|
args: [{
|
|
4419
|
-
selector: 'px-
|
|
4289
|
+
selector: 'px-button-icon',
|
|
4420
4290
|
}]
|
|
4421
4291
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
4422
4292
|
type: Input
|
|
4423
|
-
}],
|
|
4424
|
-
type: Input
|
|
4425
|
-
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
}],
|
|
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: [{
|
|
4293
|
+
}], loading: [{
|
|
4294
|
+
type: Input
|
|
4295
|
+
}], size: [{
|
|
4296
|
+
type: Input
|
|
4297
|
+
}], variant: [{
|
|
4298
|
+
type: Input
|
|
4299
|
+
}], ariaExpanded: [{
|
|
4460
4300
|
type: Input,
|
|
4461
|
-
args: ['
|
|
4301
|
+
args: ['aria-expanded']
|
|
4462
4302
|
}], grow: [{
|
|
4463
4303
|
type: Input
|
|
4464
4304
|
}], growMobile: [{
|
|
@@ -4591,9 +4431,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
4591
4431
|
args: ['order--desktop']
|
|
4592
4432
|
}] } });
|
|
4593
4433
|
/**
|
|
4594
|
-
* @description Type-only wrapper for <px-
|
|
4434
|
+
* @description Type-only wrapper for <px-card>
|
|
4595
4435
|
*/
|
|
4596
|
-
class
|
|
4436
|
+
class PxCard {
|
|
4597
4437
|
elementRef;
|
|
4598
4438
|
set inverted(value) {
|
|
4599
4439
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -4601,29 +4441,83 @@ class PxButtonIcon {
|
|
|
4601
4441
|
get inverted() {
|
|
4602
4442
|
return this.elementRef.nativeElement['inverted'];
|
|
4603
4443
|
}
|
|
4604
|
-
set
|
|
4605
|
-
this.elementRef.nativeElement['
|
|
4444
|
+
set backgroundColor(value) {
|
|
4445
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
4606
4446
|
}
|
|
4607
|
-
get
|
|
4608
|
-
return this.elementRef.nativeElement['
|
|
4447
|
+
get backgroundColor() {
|
|
4448
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
4609
4449
|
}
|
|
4610
|
-
set
|
|
4611
|
-
this.elementRef.nativeElement['
|
|
4450
|
+
set backgroundSize(value) {
|
|
4451
|
+
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
4612
4452
|
}
|
|
4613
|
-
get
|
|
4614
|
-
return this.elementRef.nativeElement['
|
|
4453
|
+
get backgroundSize() {
|
|
4454
|
+
return this.elementRef.nativeElement['backgroundSize'];
|
|
4615
4455
|
}
|
|
4616
|
-
set
|
|
4617
|
-
this.elementRef.nativeElement['
|
|
4456
|
+
set backgroundPosition(value) {
|
|
4457
|
+
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
4618
4458
|
}
|
|
4619
|
-
get
|
|
4620
|
-
return this.elementRef.nativeElement['
|
|
4459
|
+
get backgroundPosition() {
|
|
4460
|
+
return this.elementRef.nativeElement['backgroundPosition'];
|
|
4621
4461
|
}
|
|
4622
|
-
set
|
|
4623
|
-
this.elementRef.nativeElement['
|
|
4462
|
+
set contrastHelperGradient(value) {
|
|
4463
|
+
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
4624
4464
|
}
|
|
4625
|
-
get
|
|
4626
|
-
return this.elementRef.nativeElement['
|
|
4465
|
+
get contrastHelperGradient() {
|
|
4466
|
+
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
4467
|
+
}
|
|
4468
|
+
set contrastHelperOverlay(value) {
|
|
4469
|
+
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
4470
|
+
}
|
|
4471
|
+
get contrastHelperOverlay() {
|
|
4472
|
+
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
4473
|
+
}
|
|
4474
|
+
set mediaPosition(value) {
|
|
4475
|
+
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
4476
|
+
}
|
|
4477
|
+
get mediaPosition() {
|
|
4478
|
+
return this.elementRef.nativeElement['mediaPosition'];
|
|
4479
|
+
}
|
|
4480
|
+
set mediaPositionMobile(value) {
|
|
4481
|
+
this.elementRef.nativeElement['mediaPositionMobile'] = value;
|
|
4482
|
+
}
|
|
4483
|
+
get mediaPositionMobile() {
|
|
4484
|
+
return this.elementRef.nativeElement['mediaPositionMobile'];
|
|
4485
|
+
}
|
|
4486
|
+
set mediaPositionTablet(value) {
|
|
4487
|
+
this.elementRef.nativeElement['mediaPositionTablet'] = value;
|
|
4488
|
+
}
|
|
4489
|
+
get mediaPositionTablet() {
|
|
4490
|
+
return this.elementRef.nativeElement['mediaPositionTablet'];
|
|
4491
|
+
}
|
|
4492
|
+
set mediaPositionLaptop(value) {
|
|
4493
|
+
this.elementRef.nativeElement['mediaPositionLaptop'] = value;
|
|
4494
|
+
}
|
|
4495
|
+
get mediaPositionLaptop() {
|
|
4496
|
+
return this.elementRef.nativeElement['mediaPositionLaptop'];
|
|
4497
|
+
}
|
|
4498
|
+
set mediaSrc(value) {
|
|
4499
|
+
this.elementRef.nativeElement['mediaSrc'] = value;
|
|
4500
|
+
}
|
|
4501
|
+
get mediaSrc() {
|
|
4502
|
+
return this.elementRef.nativeElement['mediaSrc'];
|
|
4503
|
+
}
|
|
4504
|
+
set mediaSrcMobile(value) {
|
|
4505
|
+
this.elementRef.nativeElement['mediaSrcMobile'] = value;
|
|
4506
|
+
}
|
|
4507
|
+
get mediaSrcMobile() {
|
|
4508
|
+
return this.elementRef.nativeElement['mediaSrcMobile'];
|
|
4509
|
+
}
|
|
4510
|
+
set mediaSrcTablet(value) {
|
|
4511
|
+
this.elementRef.nativeElement['mediaSrcTablet'] = value;
|
|
4512
|
+
}
|
|
4513
|
+
get mediaSrcTablet() {
|
|
4514
|
+
return this.elementRef.nativeElement['mediaSrcTablet'];
|
|
4515
|
+
}
|
|
4516
|
+
set mediaSrcLaptop(value) {
|
|
4517
|
+
this.elementRef.nativeElement['mediaSrcLaptop'] = value;
|
|
4518
|
+
}
|
|
4519
|
+
get mediaSrcLaptop() {
|
|
4520
|
+
return this.elementRef.nativeElement['mediaSrcLaptop'];
|
|
4627
4521
|
}
|
|
4628
4522
|
set grow(value) {
|
|
4629
4523
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -4898,25 +4792,55 @@ class PxButtonIcon {
|
|
|
4898
4792
|
constructor(elementRef) {
|
|
4899
4793
|
this.elementRef = elementRef;
|
|
4900
4794
|
}
|
|
4901
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4902
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
4795
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCard, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4796
|
+
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 });
|
|
4903
4797
|
}
|
|
4904
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
4798
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCard, decorators: [{
|
|
4905
4799
|
type: Directive,
|
|
4906
4800
|
args: [{
|
|
4907
|
-
selector: 'px-
|
|
4801
|
+
selector: 'px-card',
|
|
4908
4802
|
}]
|
|
4909
4803
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
4910
4804
|
type: Input
|
|
4911
|
-
}],
|
|
4912
|
-
type: Input
|
|
4913
|
-
}], size: [{
|
|
4914
|
-
type: Input
|
|
4915
|
-
}], variant: [{
|
|
4916
|
-
type: Input
|
|
4917
|
-
}], ariaExpanded: [{
|
|
4805
|
+
}], backgroundColor: [{
|
|
4918
4806
|
type: Input,
|
|
4919
|
-
args: ['
|
|
4807
|
+
args: ['background-color']
|
|
4808
|
+
}], backgroundSize: [{
|
|
4809
|
+
type: Input,
|
|
4810
|
+
args: ['background-size']
|
|
4811
|
+
}], backgroundPosition: [{
|
|
4812
|
+
type: Input,
|
|
4813
|
+
args: ['background-position']
|
|
4814
|
+
}], contrastHelperGradient: [{
|
|
4815
|
+
type: Input,
|
|
4816
|
+
args: ['contrast-helper-gradient']
|
|
4817
|
+
}], contrastHelperOverlay: [{
|
|
4818
|
+
type: Input,
|
|
4819
|
+
args: ['contrast-helper-overlay']
|
|
4820
|
+
}], mediaPosition: [{
|
|
4821
|
+
type: Input,
|
|
4822
|
+
args: ['media-position']
|
|
4823
|
+
}], mediaPositionMobile: [{
|
|
4824
|
+
type: Input,
|
|
4825
|
+
args: ['media-position--mobile']
|
|
4826
|
+
}], mediaPositionTablet: [{
|
|
4827
|
+
type: Input,
|
|
4828
|
+
args: ['media-position--tablet']
|
|
4829
|
+
}], mediaPositionLaptop: [{
|
|
4830
|
+
type: Input,
|
|
4831
|
+
args: ['media-position--laptop']
|
|
4832
|
+
}], mediaSrc: [{
|
|
4833
|
+
type: Input,
|
|
4834
|
+
args: ['media-src']
|
|
4835
|
+
}], mediaSrcMobile: [{
|
|
4836
|
+
type: Input,
|
|
4837
|
+
args: ['media-src--mobile']
|
|
4838
|
+
}], mediaSrcTablet: [{
|
|
4839
|
+
type: Input,
|
|
4840
|
+
args: ['media-src--tablet']
|
|
4841
|
+
}], mediaSrcLaptop: [{
|
|
4842
|
+
type: Input,
|
|
4843
|
+
args: ['media-src--laptop']
|
|
4920
4844
|
}], grow: [{
|
|
4921
4845
|
type: Input
|
|
4922
4846
|
}], growMobile: [{
|
|
@@ -5048,6 +4972,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
5048
4972
|
type: Input,
|
|
5049
4973
|
args: ['order--desktop']
|
|
5050
4974
|
}] } });
|
|
4975
|
+
/**
|
|
4976
|
+
* @description Type-only wrapper for <px-appleseed>
|
|
4977
|
+
*/
|
|
4978
|
+
class PxAppleseed {
|
|
4979
|
+
elementRef;
|
|
4980
|
+
set amount(value) {
|
|
4981
|
+
this.elementRef.nativeElement['amount'] = value;
|
|
4982
|
+
}
|
|
4983
|
+
get amount() {
|
|
4984
|
+
return this.elementRef.nativeElement['amount'];
|
|
4985
|
+
}
|
|
4986
|
+
set active(value) {
|
|
4987
|
+
this.elementRef.nativeElement['active'] = value;
|
|
4988
|
+
}
|
|
4989
|
+
get active() {
|
|
4990
|
+
return this.elementRef.nativeElement['active'];
|
|
4991
|
+
}
|
|
4992
|
+
constructor(elementRef) {
|
|
4993
|
+
this.elementRef = elementRef;
|
|
4994
|
+
}
|
|
4995
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4996
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxAppleseed, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
4997
|
+
}
|
|
4998
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
4999
|
+
type: Directive,
|
|
5000
|
+
args: [{
|
|
5001
|
+
selector: 'px-appleseed',
|
|
5002
|
+
}]
|
|
5003
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
5004
|
+
type: Input
|
|
5005
|
+
}], active: [{
|
|
5006
|
+
type: Input
|
|
5007
|
+
}] } });
|
|
5008
|
+
/**
|
|
5009
|
+
* @description Type-only wrapper for <px-carousel>
|
|
5010
|
+
*/
|
|
5011
|
+
class PxCarousel {
|
|
5012
|
+
elementRef;
|
|
5013
|
+
set visibleItems(value) {
|
|
5014
|
+
this.elementRef.nativeElement['visibleItems'] = value;
|
|
5015
|
+
}
|
|
5016
|
+
get visibleItems() {
|
|
5017
|
+
return this.elementRef.nativeElement['visibleItems'];
|
|
5018
|
+
}
|
|
5019
|
+
constructor(elementRef) {
|
|
5020
|
+
this.elementRef = elementRef;
|
|
5021
|
+
}
|
|
5022
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5023
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarousel, selector: "px-carousel", inputs: { visibleItems: ["visible-items", "visibleItems"] }, ngImport: i0 });
|
|
5024
|
+
}
|
|
5025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, decorators: [{
|
|
5026
|
+
type: Directive,
|
|
5027
|
+
args: [{
|
|
5028
|
+
selector: 'px-carousel',
|
|
5029
|
+
}]
|
|
5030
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { visibleItems: [{
|
|
5031
|
+
type: Input,
|
|
5032
|
+
args: ['visible-items']
|
|
5033
|
+
}] } });
|
|
5034
|
+
/**
|
|
5035
|
+
* @description Type-only wrapper for <px-carousel-item>
|
|
5036
|
+
*/
|
|
5037
|
+
class PxCarouselItem {
|
|
5038
|
+
elementRef;
|
|
5039
|
+
constructor(elementRef) {
|
|
5040
|
+
this.elementRef = elementRef;
|
|
5041
|
+
}
|
|
5042
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5043
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarouselItem, selector: "px-carousel-item", ngImport: i0 });
|
|
5044
|
+
}
|
|
5045
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
5046
|
+
type: Directive,
|
|
5047
|
+
args: [{
|
|
5048
|
+
selector: 'px-carousel-item',
|
|
5049
|
+
}]
|
|
5050
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
5051
5051
|
/**
|
|
5052
5052
|
* @description Type-only wrapper for <px-cell>
|
|
5053
5053
|
*/
|
|
@@ -22490,6 +22490,12 @@ class PxModal {
|
|
|
22490
22490
|
get status() {
|
|
22491
22491
|
return this.elementRef.nativeElement['status'];
|
|
22492
22492
|
}
|
|
22493
|
+
set mediaSrc(value) {
|
|
22494
|
+
this.elementRef.nativeElement['mediaSrc'] = value;
|
|
22495
|
+
}
|
|
22496
|
+
get mediaSrc() {
|
|
22497
|
+
return this.elementRef.nativeElement['mediaSrc'];
|
|
22498
|
+
}
|
|
22493
22499
|
CLOSE_EVENT = new EventEmitter();
|
|
22494
22500
|
constructor(elementRef) {
|
|
22495
22501
|
this.elementRef = elementRef;
|
|
@@ -22498,7 +22504,7 @@ class PxModal {
|
|
|
22498
22504
|
});
|
|
22499
22505
|
}
|
|
22500
22506
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxModal, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22501
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxModal, selector: "px-modal", inputs: { open: "open", status: "status" }, outputs: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
22507
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxModal, selector: "px-modal", inputs: { open: "open", status: "status", mediaSrc: ["media-src", "mediaSrc"] }, outputs: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
22502
22508
|
}
|
|
22503
22509
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxModal, decorators: [{
|
|
22504
22510
|
type: Directive,
|
|
@@ -22509,6 +22515,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
22509
22515
|
type: Input
|
|
22510
22516
|
}], status: [{
|
|
22511
22517
|
type: Input
|
|
22518
|
+
}], mediaSrc: [{
|
|
22519
|
+
type: Input,
|
|
22520
|
+
args: ['media-src']
|
|
22512
22521
|
}], CLOSE_EVENT: [{
|
|
22513
22522
|
type: Output
|
|
22514
22523
|
}] } });
|
|
@@ -28261,56 +28270,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28261
28270
|
type: Input,
|
|
28262
28271
|
args: ['order--desktop']
|
|
28263
28272
|
}] } });
|
|
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
|
-
}] } });
|
|
28314
28273
|
/**
|
|
28315
28274
|
* @description Type-only wrapper for <px-span>
|
|
28316
28275
|
*/
|
|
@@ -28770,6 +28729,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28770
28729
|
type: Input,
|
|
28771
28730
|
args: ['order--desktop']
|
|
28772
28731
|
}] } });
|
|
28732
|
+
/**
|
|
28733
|
+
* @description Type-only wrapper for <px-spinner>
|
|
28734
|
+
*/
|
|
28735
|
+
class PxSpinner {
|
|
28736
|
+
elementRef;
|
|
28737
|
+
set size(value) {
|
|
28738
|
+
this.elementRef.nativeElement['size'] = value;
|
|
28739
|
+
}
|
|
28740
|
+
get size() {
|
|
28741
|
+
return this.elementRef.nativeElement['size'];
|
|
28742
|
+
}
|
|
28743
|
+
set inverted(value) {
|
|
28744
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
28745
|
+
}
|
|
28746
|
+
get inverted() {
|
|
28747
|
+
return this.elementRef.nativeElement['inverted'];
|
|
28748
|
+
}
|
|
28749
|
+
set timeout(value) {
|
|
28750
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
28751
|
+
}
|
|
28752
|
+
get timeout() {
|
|
28753
|
+
return this.elementRef.nativeElement['timeout'];
|
|
28754
|
+
}
|
|
28755
|
+
set ariaLabel(value) {
|
|
28756
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
28757
|
+
}
|
|
28758
|
+
get ariaLabel() {
|
|
28759
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
28760
|
+
}
|
|
28761
|
+
constructor(elementRef) {
|
|
28762
|
+
this.elementRef = elementRef;
|
|
28763
|
+
}
|
|
28764
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28765
|
+
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 });
|
|
28766
|
+
}
|
|
28767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, decorators: [{
|
|
28768
|
+
type: Directive,
|
|
28769
|
+
args: [{
|
|
28770
|
+
selector: 'px-spinner',
|
|
28771
|
+
}]
|
|
28772
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
28773
|
+
type: Input
|
|
28774
|
+
}], inverted: [{
|
|
28775
|
+
type: Input
|
|
28776
|
+
}], timeout: [{
|
|
28777
|
+
type: Input
|
|
28778
|
+
}], ariaLabel: [{
|
|
28779
|
+
type: Input,
|
|
28780
|
+
args: ['aria-label']
|
|
28781
|
+
}] } });
|
|
28773
28782
|
/**
|
|
28774
28783
|
* @description Type-only wrapper for <px-status>
|
|
28775
28784
|
*/
|
|
@@ -30296,52 +30305,125 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
30296
30305
|
*/
|
|
30297
30306
|
class PxTabs {
|
|
30298
30307
|
elementRef;
|
|
30308
|
+
set label(value) {
|
|
30309
|
+
this.elementRef.nativeElement['label'] = value;
|
|
30310
|
+
}
|
|
30311
|
+
get label() {
|
|
30312
|
+
return this.elementRef.nativeElement['label'];
|
|
30313
|
+
}
|
|
30314
|
+
set inverted(value) {
|
|
30315
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
30316
|
+
}
|
|
30317
|
+
get inverted() {
|
|
30318
|
+
return this.elementRef.nativeElement['inverted'];
|
|
30319
|
+
}
|
|
30320
|
+
set ariaLabelNext(value) {
|
|
30321
|
+
this.elementRef.nativeElement['ariaLabelNext'] = value;
|
|
30322
|
+
}
|
|
30323
|
+
get ariaLabelNext() {
|
|
30324
|
+
return this.elementRef.nativeElement['ariaLabelNext'];
|
|
30325
|
+
}
|
|
30326
|
+
set ariaLabelPrevious(value) {
|
|
30327
|
+
this.elementRef.nativeElement['ariaLabelPrevious'] = value;
|
|
30328
|
+
}
|
|
30329
|
+
get ariaLabelPrevious() {
|
|
30330
|
+
return this.elementRef.nativeElement['ariaLabelPrevious'];
|
|
30331
|
+
}
|
|
30299
30332
|
constructor(elementRef) {
|
|
30300
30333
|
this.elementRef = elementRef;
|
|
30301
30334
|
}
|
|
30302
30335
|
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 });
|
|
30336
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabs, selector: "px-tabs", inputs: { label: "label", inverted: "inverted", ariaLabelNext: ["aria-label-next", "ariaLabelNext"], ariaLabelPrevious: ["aria-label-previous", "ariaLabelPrevious"] }, ngImport: i0 });
|
|
30304
30337
|
}
|
|
30305
30338
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabs, decorators: [{
|
|
30306
30339
|
type: Directive,
|
|
30307
30340
|
args: [{
|
|
30308
30341
|
selector: 'px-tabs',
|
|
30309
30342
|
}]
|
|
30310
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }]
|
|
30343
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { label: [{
|
|
30344
|
+
type: Input
|
|
30345
|
+
}], inverted: [{
|
|
30346
|
+
type: Input
|
|
30347
|
+
}], ariaLabelNext: [{
|
|
30348
|
+
type: Input,
|
|
30349
|
+
args: ['aria-label-next']
|
|
30350
|
+
}], ariaLabelPrevious: [{
|
|
30351
|
+
type: Input,
|
|
30352
|
+
args: ['aria-label-previous']
|
|
30353
|
+
}] } });
|
|
30311
30354
|
/**
|
|
30312
30355
|
* @description Type-only wrapper for <px-tab>
|
|
30313
30356
|
*/
|
|
30314
30357
|
class PxTab {
|
|
30315
30358
|
elementRef;
|
|
30359
|
+
set selected(value) {
|
|
30360
|
+
this.elementRef.nativeElement['selected'] = value;
|
|
30361
|
+
}
|
|
30362
|
+
get selected() {
|
|
30363
|
+
return this.elementRef.nativeElement['selected'];
|
|
30364
|
+
}
|
|
30365
|
+
set for(value) {
|
|
30366
|
+
this.elementRef.nativeElement['for'] = value;
|
|
30367
|
+
}
|
|
30368
|
+
get for() {
|
|
30369
|
+
return this.elementRef.nativeElement['for'];
|
|
30370
|
+
}
|
|
30371
|
+
set name(value) {
|
|
30372
|
+
this.elementRef.nativeElement['name'] = value;
|
|
30373
|
+
}
|
|
30374
|
+
get name() {
|
|
30375
|
+
return this.elementRef.nativeElement['name'];
|
|
30376
|
+
}
|
|
30377
|
+
pxTabConnected = new EventEmitter();
|
|
30316
30378
|
constructor(elementRef) {
|
|
30317
30379
|
this.elementRef = elementRef;
|
|
30380
|
+
this.elementRef.nativeElement.addEventListener('px-tab-connected', (e) => {
|
|
30381
|
+
this.pxTabConnected.emit(e.detail);
|
|
30382
|
+
});
|
|
30318
30383
|
}
|
|
30319
30384
|
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 });
|
|
30385
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTab, selector: "px-tab", inputs: { selected: "selected", for: "for", name: "name" }, outputs: { pxTabConnected: "px-tab-connected" }, ngImport: i0 });
|
|
30321
30386
|
}
|
|
30322
30387
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTab, decorators: [{
|
|
30323
30388
|
type: Directive,
|
|
30324
30389
|
args: [{
|
|
30325
30390
|
selector: 'px-tab',
|
|
30326
30391
|
}]
|
|
30327
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }]
|
|
30392
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { selected: [{
|
|
30393
|
+
type: Input
|
|
30394
|
+
}], for: [{
|
|
30395
|
+
type: Input
|
|
30396
|
+
}], name: [{
|
|
30397
|
+
type: Input
|
|
30398
|
+
}], pxTabConnected: [{
|
|
30399
|
+
type: Output,
|
|
30400
|
+
args: ['px-tab-connected']
|
|
30401
|
+
}] } });
|
|
30328
30402
|
/**
|
|
30329
30403
|
* @description Type-only wrapper for <px-tab-panel>
|
|
30330
30404
|
*/
|
|
30331
30405
|
class PxTabPanel {
|
|
30332
30406
|
elementRef;
|
|
30407
|
+
set name(value) {
|
|
30408
|
+
this.elementRef.nativeElement['name'] = value;
|
|
30409
|
+
}
|
|
30410
|
+
get name() {
|
|
30411
|
+
return this.elementRef.nativeElement['name'];
|
|
30412
|
+
}
|
|
30333
30413
|
constructor(elementRef) {
|
|
30334
30414
|
this.elementRef = elementRef;
|
|
30335
30415
|
}
|
|
30336
30416
|
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 });
|
|
30417
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTabPanel, selector: "px-tab-panel", inputs: { name: "name" }, ngImport: i0 });
|
|
30338
30418
|
}
|
|
30339
30419
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTabPanel, decorators: [{
|
|
30340
30420
|
type: Directive,
|
|
30341
30421
|
args: [{
|
|
30342
30422
|
selector: 'px-tab-panel',
|
|
30343
30423
|
}]
|
|
30344
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }]
|
|
30424
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
|
|
30425
|
+
type: Input
|
|
30426
|
+
}] } });
|
|
30345
30427
|
/**
|
|
30346
30428
|
* @description Type-only wrapper for <px-tag>
|
|
30347
30429
|
*/
|
|
@@ -33622,31 +33704,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
33622
33704
|
}], change: [{
|
|
33623
33705
|
type: Output
|
|
33624
33706
|
}] } });
|
|
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
|
-
}] } });
|
|
33650
33707
|
/**
|
|
33651
33708
|
* @description Type-only wrapper for <px-timeline>
|
|
33652
33709
|
*/
|
|
@@ -33713,6 +33770,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
33713
33770
|
}], item: [{
|
|
33714
33771
|
type: Input
|
|
33715
33772
|
}] } });
|
|
33773
|
+
/**
|
|
33774
|
+
* @description Type-only wrapper for <px-typography>
|
|
33775
|
+
*/
|
|
33776
|
+
class PxTypography {
|
|
33777
|
+
elementRef;
|
|
33778
|
+
set inverted(value) {
|
|
33779
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
33780
|
+
}
|
|
33781
|
+
get inverted() {
|
|
33782
|
+
return this.elementRef.nativeElement['inverted'];
|
|
33783
|
+
}
|
|
33784
|
+
constructor(elementRef) {
|
|
33785
|
+
this.elementRef = elementRef;
|
|
33786
|
+
}
|
|
33787
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTypography, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33788
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTypography, selector: "px-typography", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
33789
|
+
}
|
|
33790
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTypography, decorators: [{
|
|
33791
|
+
type: Directive,
|
|
33792
|
+
args: [{
|
|
33793
|
+
selector: 'px-typography',
|
|
33794
|
+
}]
|
|
33795
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
33796
|
+
type: Input
|
|
33797
|
+
}] } });
|
|
33716
33798
|
/**
|
|
33717
33799
|
* @description Type-only wrapper for <px-patch>
|
|
33718
33800
|
*/
|
|
@@ -34281,7 +34363,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34281
34363
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
34282
34364
|
class Lavender {
|
|
34283
34365
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
34284
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxButton,
|
|
34366
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, 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, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, 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, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
34285
34367
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
34286
34368
|
}
|
|
34287
34369
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -34293,14 +34375,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34293
34375
|
PxAgGridTableThButton,
|
|
34294
34376
|
PxAgGridTableThContent,
|
|
34295
34377
|
PxBanner,
|
|
34296
|
-
PxButton,
|
|
34297
34378
|
PxBreadcrumbItem,
|
|
34298
34379
|
PxBreadcrumb,
|
|
34380
|
+
PxButton,
|
|
34381
|
+
PxButtonIcon,
|
|
34382
|
+
PxCard,
|
|
34299
34383
|
PxAppleseed,
|
|
34300
34384
|
PxCarousel,
|
|
34301
34385
|
PxCarouselItem,
|
|
34302
|
-
PxCard,
|
|
34303
|
-
PxButtonIcon,
|
|
34304
34386
|
PxCell,
|
|
34305
34387
|
PxCellButton,
|
|
34306
34388
|
PxCellCheckbox,
|
|
@@ -34351,8 +34433,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34351
34433
|
PxSelectableBoxRadio,
|
|
34352
34434
|
PxSeparator,
|
|
34353
34435
|
PxSkeleton,
|
|
34354
|
-
PxSpinner,
|
|
34355
34436
|
PxSpan,
|
|
34437
|
+
PxSpinner,
|
|
34356
34438
|
PxStatus,
|
|
34357
34439
|
PxStatusCard,
|
|
34358
34440
|
PxStickyContainer,
|
|
@@ -34374,9 +34456,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34374
34456
|
PxTileLink,
|
|
34375
34457
|
PxTileRadio,
|
|
34376
34458
|
PxTileSwitch,
|
|
34377
|
-
PxTypography,
|
|
34378
34459
|
PxTimeline,
|
|
34379
34460
|
PxTimelineItem,
|
|
34461
|
+
PxTypography,
|
|
34380
34462
|
PxPatch,
|
|
34381
34463
|
PxIcon,
|
|
34382
34464
|
PxIconSet,
|
|
@@ -34390,14 +34472,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34390
34472
|
PxAgGridTableThButton,
|
|
34391
34473
|
PxAgGridTableThContent,
|
|
34392
34474
|
PxBanner,
|
|
34393
|
-
PxButton,
|
|
34394
34475
|
PxBreadcrumbItem,
|
|
34395
34476
|
PxBreadcrumb,
|
|
34477
|
+
PxButton,
|
|
34478
|
+
PxButtonIcon,
|
|
34479
|
+
PxCard,
|
|
34396
34480
|
PxAppleseed,
|
|
34397
34481
|
PxCarousel,
|
|
34398
34482
|
PxCarouselItem,
|
|
34399
|
-
PxCard,
|
|
34400
|
-
PxButtonIcon,
|
|
34401
34483
|
PxCell,
|
|
34402
34484
|
PxCellButton,
|
|
34403
34485
|
PxCellCheckbox,
|
|
@@ -34448,8 +34530,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34448
34530
|
PxSelectableBoxRadio,
|
|
34449
34531
|
PxSeparator,
|
|
34450
34532
|
PxSkeleton,
|
|
34451
|
-
PxSpinner,
|
|
34452
34533
|
PxSpan,
|
|
34534
|
+
PxSpinner,
|
|
34453
34535
|
PxStatus,
|
|
34454
34536
|
PxStatusCard,
|
|
34455
34537
|
PxStickyContainer,
|
|
@@ -34471,9 +34553,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34471
34553
|
PxTileLink,
|
|
34472
34554
|
PxTileRadio,
|
|
34473
34555
|
PxTileSwitch,
|
|
34474
|
-
PxTypography,
|
|
34475
34556
|
PxTimeline,
|
|
34476
34557
|
PxTimelineItem,
|
|
34558
|
+
PxTypography,
|
|
34477
34559
|
PxPatch,
|
|
34478
34560
|
PxIcon,
|
|
34479
34561
|
PxIconSet,
|