@proximus/lavender-angular 1.4.3-beta.1 → 1.4.3-beta.3
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.
|
@@ -2009,10 +2009,100 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
2009
2009
|
args: ['order--desktop']
|
|
2010
2010
|
}] } });
|
|
2011
2011
|
/**
|
|
2012
|
-
* @description Type-only wrapper for <px-
|
|
2012
|
+
* @description Type-only wrapper for <px-banner>
|
|
2013
2013
|
*/
|
|
2014
|
-
class
|
|
2014
|
+
class PxBanner {
|
|
2015
2015
|
elementRef;
|
|
2016
|
+
set backgroundColor(value) {
|
|
2017
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
2018
|
+
}
|
|
2019
|
+
get backgroundColor() {
|
|
2020
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
2021
|
+
}
|
|
2022
|
+
set backgroundGradient(value) {
|
|
2023
|
+
this.elementRef.nativeElement['backgroundGradient'] = value;
|
|
2024
|
+
}
|
|
2025
|
+
get backgroundGradient() {
|
|
2026
|
+
return this.elementRef.nativeElement['backgroundGradient'];
|
|
2027
|
+
}
|
|
2028
|
+
set backgroundImage(value) {
|
|
2029
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
2030
|
+
}
|
|
2031
|
+
get backgroundImage() {
|
|
2032
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
2033
|
+
}
|
|
2034
|
+
set backgroundImageMobile(value) {
|
|
2035
|
+
this.elementRef.nativeElement['backgroundImageMobile'] = value;
|
|
2036
|
+
}
|
|
2037
|
+
get backgroundImageMobile() {
|
|
2038
|
+
return this.elementRef.nativeElement['backgroundImageMobile'];
|
|
2039
|
+
}
|
|
2040
|
+
set backgroundImageTablet(value) {
|
|
2041
|
+
this.elementRef.nativeElement['backgroundImageTablet'] = value;
|
|
2042
|
+
}
|
|
2043
|
+
get backgroundImageTablet() {
|
|
2044
|
+
return this.elementRef.nativeElement['backgroundImageTablet'];
|
|
2045
|
+
}
|
|
2046
|
+
set backgroundImageLaptop(value) {
|
|
2047
|
+
this.elementRef.nativeElement['backgroundImageLaptop'] = value;
|
|
2048
|
+
}
|
|
2049
|
+
get backgroundImageLaptop() {
|
|
2050
|
+
return this.elementRef.nativeElement['backgroundImageLaptop'];
|
|
2051
|
+
}
|
|
2052
|
+
set backgroundSize(value) {
|
|
2053
|
+
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
2054
|
+
}
|
|
2055
|
+
get backgroundSize() {
|
|
2056
|
+
return this.elementRef.nativeElement['backgroundSize'];
|
|
2057
|
+
}
|
|
2058
|
+
set backgroundPosition(value) {
|
|
2059
|
+
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
2060
|
+
}
|
|
2061
|
+
get backgroundPosition() {
|
|
2062
|
+
return this.elementRef.nativeElement['backgroundPosition'];
|
|
2063
|
+
}
|
|
2064
|
+
set contrastHelperGradient(value) {
|
|
2065
|
+
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
2066
|
+
}
|
|
2067
|
+
get contrastHelperGradient() {
|
|
2068
|
+
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
2069
|
+
}
|
|
2070
|
+
set contrastHelperOverlay(value) {
|
|
2071
|
+
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
2072
|
+
}
|
|
2073
|
+
get contrastHelperOverlay() {
|
|
2074
|
+
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
2075
|
+
}
|
|
2076
|
+
set hasGridding(value) {
|
|
2077
|
+
this.elementRef.nativeElement['hasGridding'] = value;
|
|
2078
|
+
}
|
|
2079
|
+
get hasGridding() {
|
|
2080
|
+
return this.elementRef.nativeElement['hasGridding'];
|
|
2081
|
+
}
|
|
2082
|
+
set hasGriddingMobile(value) {
|
|
2083
|
+
this.elementRef.nativeElement['hasGriddingMobile'] = value;
|
|
2084
|
+
}
|
|
2085
|
+
get hasGriddingMobile() {
|
|
2086
|
+
return this.elementRef.nativeElement['hasGriddingMobile'];
|
|
2087
|
+
}
|
|
2088
|
+
set hasGriddingTablet(value) {
|
|
2089
|
+
this.elementRef.nativeElement['hasGriddingTablet'] = value;
|
|
2090
|
+
}
|
|
2091
|
+
get hasGriddingTablet() {
|
|
2092
|
+
return this.elementRef.nativeElement['hasGriddingTablet'];
|
|
2093
|
+
}
|
|
2094
|
+
set hasGriddingLaptop(value) {
|
|
2095
|
+
this.elementRef.nativeElement['hasGriddingLaptop'] = value;
|
|
2096
|
+
}
|
|
2097
|
+
get hasGriddingLaptop() {
|
|
2098
|
+
return this.elementRef.nativeElement['hasGriddingLaptop'];
|
|
2099
|
+
}
|
|
2100
|
+
set reduced(value) {
|
|
2101
|
+
this.elementRef.nativeElement['reduced'] = value;
|
|
2102
|
+
}
|
|
2103
|
+
get reduced() {
|
|
2104
|
+
return this.elementRef.nativeElement['reduced'];
|
|
2105
|
+
}
|
|
2016
2106
|
set inverted(value) {
|
|
2017
2107
|
this.elementRef.nativeElement['inverted'] = value;
|
|
2018
2108
|
}
|
|
@@ -2292,15 +2382,59 @@ class PxBreadcrumbItem {
|
|
|
2292
2382
|
constructor(elementRef) {
|
|
2293
2383
|
this.elementRef = elementRef;
|
|
2294
2384
|
}
|
|
2295
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
2296
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
2385
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxBanner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2386
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxBanner, selector: "px-banner", inputs: { backgroundColor: ["background-color", "backgroundColor"], backgroundGradient: ["background-gradient", "backgroundGradient"], backgroundImage: ["background-image", "backgroundImage"], backgroundImageMobile: ["background-image--mobile", "backgroundImageMobile"], backgroundImageTablet: ["background-image--tablet", "backgroundImageTablet"], backgroundImageLaptop: ["background-image--laptop", "backgroundImageLaptop"], backgroundSize: ["background-size", "backgroundSize"], backgroundPosition: ["background-position", "backgroundPosition"], contrastHelperGradient: ["contrast-helper-gradient", "contrastHelperGradient"], contrastHelperOverlay: ["contrast-helper-overlay", "contrastHelperOverlay"], hasGridding: ["has-gridding", "hasGridding"], hasGriddingMobile: ["has-gridding--mobile", "hasGriddingMobile"], hasGriddingTablet: ["has-gridding--tablet", "hasGriddingTablet"], hasGriddingLaptop: ["has-gridding--laptop", "hasGriddingLaptop"], reduced: "reduced", 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 });
|
|
2297
2387
|
}
|
|
2298
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
2388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxBanner, decorators: [{
|
|
2299
2389
|
type: Directive,
|
|
2300
2390
|
args: [{
|
|
2301
|
-
selector: 'px-
|
|
2391
|
+
selector: 'px-banner',
|
|
2302
2392
|
}]
|
|
2303
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
2393
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { backgroundColor: [{
|
|
2394
|
+
type: Input,
|
|
2395
|
+
args: ['background-color']
|
|
2396
|
+
}], backgroundGradient: [{
|
|
2397
|
+
type: Input,
|
|
2398
|
+
args: ['background-gradient']
|
|
2399
|
+
}], backgroundImage: [{
|
|
2400
|
+
type: Input,
|
|
2401
|
+
args: ['background-image']
|
|
2402
|
+
}], backgroundImageMobile: [{
|
|
2403
|
+
type: Input,
|
|
2404
|
+
args: ['background-image--mobile']
|
|
2405
|
+
}], backgroundImageTablet: [{
|
|
2406
|
+
type: Input,
|
|
2407
|
+
args: ['background-image--tablet']
|
|
2408
|
+
}], backgroundImageLaptop: [{
|
|
2409
|
+
type: Input,
|
|
2410
|
+
args: ['background-image--laptop']
|
|
2411
|
+
}], backgroundSize: [{
|
|
2412
|
+
type: Input,
|
|
2413
|
+
args: ['background-size']
|
|
2414
|
+
}], backgroundPosition: [{
|
|
2415
|
+
type: Input,
|
|
2416
|
+
args: ['background-position']
|
|
2417
|
+
}], contrastHelperGradient: [{
|
|
2418
|
+
type: Input,
|
|
2419
|
+
args: ['contrast-helper-gradient']
|
|
2420
|
+
}], contrastHelperOverlay: [{
|
|
2421
|
+
type: Input,
|
|
2422
|
+
args: ['contrast-helper-overlay']
|
|
2423
|
+
}], hasGridding: [{
|
|
2424
|
+
type: Input,
|
|
2425
|
+
args: ['has-gridding']
|
|
2426
|
+
}], hasGriddingMobile: [{
|
|
2427
|
+
type: Input,
|
|
2428
|
+
args: ['has-gridding--mobile']
|
|
2429
|
+
}], hasGriddingTablet: [{
|
|
2430
|
+
type: Input,
|
|
2431
|
+
args: ['has-gridding--tablet']
|
|
2432
|
+
}], hasGriddingLaptop: [{
|
|
2433
|
+
type: Input,
|
|
2434
|
+
args: ['has-gridding--laptop']
|
|
2435
|
+
}], reduced: [{
|
|
2436
|
+
type: Input
|
|
2437
|
+
}], inverted: [{
|
|
2304
2438
|
type: Input
|
|
2305
2439
|
}], grow: [{
|
|
2306
2440
|
type: Input
|
|
@@ -2434,9 +2568,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
2434
2568
|
args: ['order--desktop']
|
|
2435
2569
|
}] } });
|
|
2436
2570
|
/**
|
|
2437
|
-
* @description Type-only wrapper for <px-breadcrumb>
|
|
2571
|
+
* @description Type-only wrapper for <px-breadcrumb-item>
|
|
2438
2572
|
*/
|
|
2439
|
-
class
|
|
2573
|
+
class PxBreadcrumbItem {
|
|
2440
2574
|
elementRef;
|
|
2441
2575
|
set inverted(value) {
|
|
2442
2576
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -2444,12 +2578,6 @@ class PxBreadcrumb {
|
|
|
2444
2578
|
get inverted() {
|
|
2445
2579
|
return this.elementRef.nativeElement['inverted'];
|
|
2446
2580
|
}
|
|
2447
|
-
set ariaLabel(value) {
|
|
2448
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
2449
|
-
}
|
|
2450
|
-
get ariaLabel() {
|
|
2451
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
2452
|
-
}
|
|
2453
2581
|
set grow(value) {
|
|
2454
2582
|
this.elementRef.nativeElement['grow'] = value;
|
|
2455
2583
|
}
|
|
@@ -2723,19 +2851,16 @@ class PxBreadcrumb {
|
|
|
2723
2851
|
constructor(elementRef) {
|
|
2724
2852
|
this.elementRef = elementRef;
|
|
2725
2853
|
}
|
|
2726
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
2727
|
-
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 });
|
|
2728
2856
|
}
|
|
2729
|
-
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: [{
|
|
2730
2858
|
type: Directive,
|
|
2731
2859
|
args: [{
|
|
2732
|
-
selector: 'px-breadcrumb',
|
|
2860
|
+
selector: 'px-breadcrumb-item',
|
|
2733
2861
|
}]
|
|
2734
2862
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
2735
2863
|
type: Input
|
|
2736
|
-
}], ariaLabel: [{
|
|
2737
|
-
type: Input,
|
|
2738
|
-
args: ['aria-label']
|
|
2739
2864
|
}], grow: [{
|
|
2740
2865
|
type: Input
|
|
2741
2866
|
}], growMobile: [{
|
|
@@ -2868,106 +2993,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
2868
2993
|
args: ['order--desktop']
|
|
2869
2994
|
}] } });
|
|
2870
2995
|
/**
|
|
2871
|
-
* @description Type-only wrapper for <px-
|
|
2996
|
+
* @description Type-only wrapper for <px-breadcrumb>
|
|
2872
2997
|
*/
|
|
2873
|
-
class
|
|
2998
|
+
class PxBreadcrumb {
|
|
2874
2999
|
elementRef;
|
|
2875
|
-
set backgroundColor(value) {
|
|
2876
|
-
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
2877
|
-
}
|
|
2878
|
-
get backgroundColor() {
|
|
2879
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
2880
|
-
}
|
|
2881
|
-
set backgroundGradient(value) {
|
|
2882
|
-
this.elementRef.nativeElement['backgroundGradient'] = value;
|
|
2883
|
-
}
|
|
2884
|
-
get backgroundGradient() {
|
|
2885
|
-
return this.elementRef.nativeElement['backgroundGradient'];
|
|
2886
|
-
}
|
|
2887
|
-
set backgroundImage(value) {
|
|
2888
|
-
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
2889
|
-
}
|
|
2890
|
-
get backgroundImage() {
|
|
2891
|
-
return this.elementRef.nativeElement['backgroundImage'];
|
|
2892
|
-
}
|
|
2893
|
-
set backgroundImageMobile(value) {
|
|
2894
|
-
this.elementRef.nativeElement['backgroundImageMobile'] = value;
|
|
2895
|
-
}
|
|
2896
|
-
get backgroundImageMobile() {
|
|
2897
|
-
return this.elementRef.nativeElement['backgroundImageMobile'];
|
|
2898
|
-
}
|
|
2899
|
-
set backgroundImageTablet(value) {
|
|
2900
|
-
this.elementRef.nativeElement['backgroundImageTablet'] = value;
|
|
2901
|
-
}
|
|
2902
|
-
get backgroundImageTablet() {
|
|
2903
|
-
return this.elementRef.nativeElement['backgroundImageTablet'];
|
|
2904
|
-
}
|
|
2905
|
-
set backgroundImageLaptop(value) {
|
|
2906
|
-
this.elementRef.nativeElement['backgroundImageLaptop'] = value;
|
|
2907
|
-
}
|
|
2908
|
-
get backgroundImageLaptop() {
|
|
2909
|
-
return this.elementRef.nativeElement['backgroundImageLaptop'];
|
|
2910
|
-
}
|
|
2911
|
-
set backgroundSize(value) {
|
|
2912
|
-
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
2913
|
-
}
|
|
2914
|
-
get backgroundSize() {
|
|
2915
|
-
return this.elementRef.nativeElement['backgroundSize'];
|
|
2916
|
-
}
|
|
2917
|
-
set backgroundPosition(value) {
|
|
2918
|
-
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
2919
|
-
}
|
|
2920
|
-
get backgroundPosition() {
|
|
2921
|
-
return this.elementRef.nativeElement['backgroundPosition'];
|
|
2922
|
-
}
|
|
2923
|
-
set contrastHelperGradient(value) {
|
|
2924
|
-
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
2925
|
-
}
|
|
2926
|
-
get contrastHelperGradient() {
|
|
2927
|
-
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
2928
|
-
}
|
|
2929
|
-
set contrastHelperOverlay(value) {
|
|
2930
|
-
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
2931
|
-
}
|
|
2932
|
-
get contrastHelperOverlay() {
|
|
2933
|
-
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
2934
|
-
}
|
|
2935
|
-
set hasGridding(value) {
|
|
2936
|
-
this.elementRef.nativeElement['hasGridding'] = value;
|
|
2937
|
-
}
|
|
2938
|
-
get hasGridding() {
|
|
2939
|
-
return this.elementRef.nativeElement['hasGridding'];
|
|
2940
|
-
}
|
|
2941
|
-
set hasGriddingMobile(value) {
|
|
2942
|
-
this.elementRef.nativeElement['hasGriddingMobile'] = value;
|
|
2943
|
-
}
|
|
2944
|
-
get hasGriddingMobile() {
|
|
2945
|
-
return this.elementRef.nativeElement['hasGriddingMobile'];
|
|
2946
|
-
}
|
|
2947
|
-
set hasGriddingTablet(value) {
|
|
2948
|
-
this.elementRef.nativeElement['hasGriddingTablet'] = value;
|
|
2949
|
-
}
|
|
2950
|
-
get hasGriddingTablet() {
|
|
2951
|
-
return this.elementRef.nativeElement['hasGriddingTablet'];
|
|
2952
|
-
}
|
|
2953
|
-
set hasGriddingLaptop(value) {
|
|
2954
|
-
this.elementRef.nativeElement['hasGriddingLaptop'] = value;
|
|
2955
|
-
}
|
|
2956
|
-
get hasGriddingLaptop() {
|
|
2957
|
-
return this.elementRef.nativeElement['hasGriddingLaptop'];
|
|
2958
|
-
}
|
|
2959
|
-
set reduced(value) {
|
|
2960
|
-
this.elementRef.nativeElement['reduced'] = value;
|
|
2961
|
-
}
|
|
2962
|
-
get reduced() {
|
|
2963
|
-
return this.elementRef.nativeElement['reduced'];
|
|
2964
|
-
}
|
|
2965
3000
|
set inverted(value) {
|
|
2966
3001
|
this.elementRef.nativeElement['inverted'] = value;
|
|
2967
3002
|
}
|
|
2968
3003
|
get inverted() {
|
|
2969
3004
|
return this.elementRef.nativeElement['inverted'];
|
|
2970
3005
|
}
|
|
3006
|
+
set ariaLabel(value) {
|
|
3007
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
3008
|
+
}
|
|
3009
|
+
get ariaLabel() {
|
|
3010
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
3011
|
+
}
|
|
2971
3012
|
set grow(value) {
|
|
2972
3013
|
this.elementRef.nativeElement['grow'] = value;
|
|
2973
3014
|
}
|
|
@@ -3241,60 +3282,19 @@ class PxBanner {
|
|
|
3241
3282
|
constructor(elementRef) {
|
|
3242
3283
|
this.elementRef = elementRef;
|
|
3243
3284
|
}
|
|
3244
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
3245
|
-
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 });
|
|
3246
3287
|
}
|
|
3247
|
-
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: [{
|
|
3248
3289
|
type: Directive,
|
|
3249
3290
|
args: [{
|
|
3250
|
-
selector: 'px-
|
|
3291
|
+
selector: 'px-breadcrumb',
|
|
3251
3292
|
}]
|
|
3252
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
3253
|
-
type: Input,
|
|
3254
|
-
args: ['background-color']
|
|
3255
|
-
}], backgroundGradient: [{
|
|
3256
|
-
type: Input,
|
|
3257
|
-
args: ['background-gradient']
|
|
3258
|
-
}], backgroundImage: [{
|
|
3259
|
-
type: Input,
|
|
3260
|
-
args: ['background-image']
|
|
3261
|
-
}], backgroundImageMobile: [{
|
|
3262
|
-
type: Input,
|
|
3263
|
-
args: ['background-image--mobile']
|
|
3264
|
-
}], backgroundImageTablet: [{
|
|
3265
|
-
type: Input,
|
|
3266
|
-
args: ['background-image--tablet']
|
|
3267
|
-
}], backgroundImageLaptop: [{
|
|
3268
|
-
type: Input,
|
|
3269
|
-
args: ['background-image--laptop']
|
|
3270
|
-
}], backgroundSize: [{
|
|
3271
|
-
type: Input,
|
|
3272
|
-
args: ['background-size']
|
|
3273
|
-
}], backgroundPosition: [{
|
|
3274
|
-
type: Input,
|
|
3275
|
-
args: ['background-position']
|
|
3276
|
-
}], contrastHelperGradient: [{
|
|
3277
|
-
type: Input,
|
|
3278
|
-
args: ['contrast-helper-gradient']
|
|
3279
|
-
}], contrastHelperOverlay: [{
|
|
3280
|
-
type: Input,
|
|
3281
|
-
args: ['contrast-helper-overlay']
|
|
3282
|
-
}], hasGridding: [{
|
|
3283
|
-
type: Input,
|
|
3284
|
-
args: ['has-gridding']
|
|
3285
|
-
}], hasGriddingMobile: [{
|
|
3286
|
-
type: Input,
|
|
3287
|
-
args: ['has-gridding--mobile']
|
|
3288
|
-
}], hasGriddingTablet: [{
|
|
3289
|
-
type: Input,
|
|
3290
|
-
args: ['has-gridding--tablet']
|
|
3291
|
-
}], hasGriddingLaptop: [{
|
|
3292
|
-
type: Input,
|
|
3293
|
-
args: ['has-gridding--laptop']
|
|
3294
|
-
}], reduced: [{
|
|
3295
|
-
type: Input
|
|
3296
|
-
}], inverted: [{
|
|
3293
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
3297
3294
|
type: Input
|
|
3295
|
+
}], ariaLabel: [{
|
|
3296
|
+
type: Input,
|
|
3297
|
+
args: ['aria-label']
|
|
3298
3298
|
}], grow: [{
|
|
3299
3299
|
type: Input
|
|
3300
3300
|
}], growMobile: [{
|
|
@@ -11056,6 +11056,12 @@ class PxDrawer {
|
|
|
11056
11056
|
get ariaLabelCloseButton() {
|
|
11057
11057
|
return this.elementRef.nativeElement['ariaLabelCloseButton'];
|
|
11058
11058
|
}
|
|
11059
|
+
set openedby(value) {
|
|
11060
|
+
this.elementRef.nativeElement['openedby'] = value;
|
|
11061
|
+
}
|
|
11062
|
+
get openedby() {
|
|
11063
|
+
return this.elementRef.nativeElement['openedby'];
|
|
11064
|
+
}
|
|
11059
11065
|
HIDE_EVENT = new EventEmitter();
|
|
11060
11066
|
constructor(elementRef) {
|
|
11061
11067
|
this.elementRef = elementRef;
|
|
@@ -11064,7 +11070,7 @@ class PxDrawer {
|
|
|
11064
11070
|
});
|
|
11065
11071
|
}
|
|
11066
11072
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
11067
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
11073
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby" }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
11068
11074
|
}
|
|
11069
11075
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, decorators: [{
|
|
11070
11076
|
type: Directive,
|
|
@@ -11076,6 +11082,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
11076
11082
|
}], ariaLabelCloseButton: [{
|
|
11077
11083
|
type: Input,
|
|
11078
11084
|
args: ['aria-label-close-button']
|
|
11085
|
+
}], openedby: [{
|
|
11086
|
+
type: Input
|
|
11079
11087
|
}], HIDE_EVENT: [{
|
|
11080
11088
|
type: Output
|
|
11081
11089
|
}] } });
|
|
@@ -12666,6 +12674,12 @@ class PxH1 {
|
|
|
12666
12674
|
get inverted() {
|
|
12667
12675
|
return this.elementRef.nativeElement['inverted'];
|
|
12668
12676
|
}
|
|
12677
|
+
set autoSpacing(value) {
|
|
12678
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
12679
|
+
}
|
|
12680
|
+
get autoSpacing() {
|
|
12681
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
12682
|
+
}
|
|
12669
12683
|
set grow(value) {
|
|
12670
12684
|
this.elementRef.nativeElement['grow'] = value;
|
|
12671
12685
|
}
|
|
@@ -12940,7 +12954,7 @@ class PxH1 {
|
|
|
12940
12954
|
this.elementRef = elementRef;
|
|
12941
12955
|
}
|
|
12942
12956
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH1, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12943
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH1, selector: "px-h1", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], 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 });
|
|
12957
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH1, selector: "px-h1", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
12944
12958
|
}
|
|
12945
12959
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH1, decorators: [{
|
|
12946
12960
|
type: Directive,
|
|
@@ -12968,6 +12982,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
12968
12982
|
args: ['text-align--desktop']
|
|
12969
12983
|
}], inverted: [{
|
|
12970
12984
|
type: Input
|
|
12985
|
+
}], autoSpacing: [{
|
|
12986
|
+
type: Input,
|
|
12987
|
+
args: ['auto-spacing']
|
|
12971
12988
|
}], grow: [{
|
|
12972
12989
|
type: Input
|
|
12973
12990
|
}], growMobile: [{
|
|
@@ -13152,6 +13169,12 @@ class PxH2 {
|
|
|
13152
13169
|
get inverted() {
|
|
13153
13170
|
return this.elementRef.nativeElement['inverted'];
|
|
13154
13171
|
}
|
|
13172
|
+
set autoSpacing(value) {
|
|
13173
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
13174
|
+
}
|
|
13175
|
+
get autoSpacing() {
|
|
13176
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
13177
|
+
}
|
|
13155
13178
|
set grow(value) {
|
|
13156
13179
|
this.elementRef.nativeElement['grow'] = value;
|
|
13157
13180
|
}
|
|
@@ -13426,7 +13449,7 @@ class PxH2 {
|
|
|
13426
13449
|
this.elementRef = elementRef;
|
|
13427
13450
|
}
|
|
13428
13451
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH2, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13429
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH2, selector: "px-h2", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], 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 });
|
|
13452
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH2, selector: "px-h2", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
13430
13453
|
}
|
|
13431
13454
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH2, decorators: [{
|
|
13432
13455
|
type: Directive,
|
|
@@ -13454,6 +13477,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
13454
13477
|
args: ['text-align--desktop']
|
|
13455
13478
|
}], inverted: [{
|
|
13456
13479
|
type: Input
|
|
13480
|
+
}], autoSpacing: [{
|
|
13481
|
+
type: Input,
|
|
13482
|
+
args: ['auto-spacing']
|
|
13457
13483
|
}], grow: [{
|
|
13458
13484
|
type: Input
|
|
13459
13485
|
}], growMobile: [{
|
|
@@ -13638,6 +13664,12 @@ class PxH3 {
|
|
|
13638
13664
|
get inverted() {
|
|
13639
13665
|
return this.elementRef.nativeElement['inverted'];
|
|
13640
13666
|
}
|
|
13667
|
+
set autoSpacing(value) {
|
|
13668
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
13669
|
+
}
|
|
13670
|
+
get autoSpacing() {
|
|
13671
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
13672
|
+
}
|
|
13641
13673
|
set grow(value) {
|
|
13642
13674
|
this.elementRef.nativeElement['grow'] = value;
|
|
13643
13675
|
}
|
|
@@ -13912,7 +13944,7 @@ class PxH3 {
|
|
|
13912
13944
|
this.elementRef = elementRef;
|
|
13913
13945
|
}
|
|
13914
13946
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH3, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13915
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH3, selector: "px-h3", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], 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 });
|
|
13947
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH3, selector: "px-h3", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
13916
13948
|
}
|
|
13917
13949
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH3, decorators: [{
|
|
13918
13950
|
type: Directive,
|
|
@@ -13940,6 +13972,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
13940
13972
|
args: ['text-align--desktop']
|
|
13941
13973
|
}], inverted: [{
|
|
13942
13974
|
type: Input
|
|
13975
|
+
}], autoSpacing: [{
|
|
13976
|
+
type: Input,
|
|
13977
|
+
args: ['auto-spacing']
|
|
13943
13978
|
}], grow: [{
|
|
13944
13979
|
type: Input
|
|
13945
13980
|
}], growMobile: [{
|
|
@@ -14124,6 +14159,12 @@ class PxH4 {
|
|
|
14124
14159
|
get inverted() {
|
|
14125
14160
|
return this.elementRef.nativeElement['inverted'];
|
|
14126
14161
|
}
|
|
14162
|
+
set autoSpacing(value) {
|
|
14163
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
14164
|
+
}
|
|
14165
|
+
get autoSpacing() {
|
|
14166
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
14167
|
+
}
|
|
14127
14168
|
set grow(value) {
|
|
14128
14169
|
this.elementRef.nativeElement['grow'] = value;
|
|
14129
14170
|
}
|
|
@@ -14398,7 +14439,7 @@ class PxH4 {
|
|
|
14398
14439
|
this.elementRef = elementRef;
|
|
14399
14440
|
}
|
|
14400
14441
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH4, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
14401
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH4, selector: "px-h4", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], 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 });
|
|
14442
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH4, selector: "px-h4", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
14402
14443
|
}
|
|
14403
14444
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH4, decorators: [{
|
|
14404
14445
|
type: Directive,
|
|
@@ -14426,6 +14467,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14426
14467
|
args: ['text-align--desktop']
|
|
14427
14468
|
}], inverted: [{
|
|
14428
14469
|
type: Input
|
|
14470
|
+
}], autoSpacing: [{
|
|
14471
|
+
type: Input,
|
|
14472
|
+
args: ['auto-spacing']
|
|
14429
14473
|
}], grow: [{
|
|
14430
14474
|
type: Input
|
|
14431
14475
|
}], growMobile: [{
|
|
@@ -14610,6 +14654,12 @@ class PxH5 {
|
|
|
14610
14654
|
get inverted() {
|
|
14611
14655
|
return this.elementRef.nativeElement['inverted'];
|
|
14612
14656
|
}
|
|
14657
|
+
set autoSpacing(value) {
|
|
14658
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
14659
|
+
}
|
|
14660
|
+
get autoSpacing() {
|
|
14661
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
14662
|
+
}
|
|
14613
14663
|
set grow(value) {
|
|
14614
14664
|
this.elementRef.nativeElement['grow'] = value;
|
|
14615
14665
|
}
|
|
@@ -14884,7 +14934,7 @@ class PxH5 {
|
|
|
14884
14934
|
this.elementRef = elementRef;
|
|
14885
14935
|
}
|
|
14886
14936
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH5, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
14887
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH5, selector: "px-h5", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], 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 });
|
|
14937
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH5, selector: "px-h5", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
14888
14938
|
}
|
|
14889
14939
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH5, decorators: [{
|
|
14890
14940
|
type: Directive,
|
|
@@ -14912,6 +14962,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14912
14962
|
args: ['text-align--desktop']
|
|
14913
14963
|
}], inverted: [{
|
|
14914
14964
|
type: Input
|
|
14965
|
+
}], autoSpacing: [{
|
|
14966
|
+
type: Input,
|
|
14967
|
+
args: ['auto-spacing']
|
|
14915
14968
|
}], grow: [{
|
|
14916
14969
|
type: Input
|
|
14917
14970
|
}], growMobile: [{
|
|
@@ -15096,6 +15149,12 @@ class PxH6 {
|
|
|
15096
15149
|
get inverted() {
|
|
15097
15150
|
return this.elementRef.nativeElement['inverted'];
|
|
15098
15151
|
}
|
|
15152
|
+
set autoSpacing(value) {
|
|
15153
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
15154
|
+
}
|
|
15155
|
+
get autoSpacing() {
|
|
15156
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
15157
|
+
}
|
|
15099
15158
|
set grow(value) {
|
|
15100
15159
|
this.elementRef.nativeElement['grow'] = value;
|
|
15101
15160
|
}
|
|
@@ -15370,7 +15429,7 @@ class PxH6 {
|
|
|
15370
15429
|
this.elementRef = elementRef;
|
|
15371
15430
|
}
|
|
15372
15431
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH6, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
15373
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH6, selector: "px-h6", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], 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 });
|
|
15432
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxH6, selector: "px-h6", inputs: { variant: "variant", color: "color", textAlign: ["text-align", "textAlign"], textAlignMobile: ["text-align--mobile", "textAlignMobile"], textAlignTablet: ["text-align--tablet", "textAlignTablet"], textAlignLaptop: ["text-align--laptop", "textAlignLaptop"], textAlignDesktop: ["text-align--desktop", "textAlignDesktop"], inverted: "inverted", autoSpacing: ["auto-spacing", "autoSpacing"], 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 });
|
|
15374
15433
|
}
|
|
15375
15434
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH6, decorators: [{
|
|
15376
15435
|
type: Directive,
|
|
@@ -15398,6 +15457,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
15398
15457
|
args: ['text-align--desktop']
|
|
15399
15458
|
}], inverted: [{
|
|
15400
15459
|
type: Input
|
|
15460
|
+
}], autoSpacing: [{
|
|
15461
|
+
type: Input,
|
|
15462
|
+
args: ['auto-spacing']
|
|
15401
15463
|
}], grow: [{
|
|
15402
15464
|
type: Input
|
|
15403
15465
|
}], growMobile: [{
|
|
@@ -21634,6 +21696,12 @@ class PxList {
|
|
|
21634
21696
|
get inverted() {
|
|
21635
21697
|
return this.elementRef.nativeElement['inverted'];
|
|
21636
21698
|
}
|
|
21699
|
+
set variant(value) {
|
|
21700
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
21701
|
+
}
|
|
21702
|
+
get variant() {
|
|
21703
|
+
return this.elementRef.nativeElement['variant'];
|
|
21704
|
+
}
|
|
21637
21705
|
set grow(value) {
|
|
21638
21706
|
this.elementRef.nativeElement['grow'] = value;
|
|
21639
21707
|
}
|
|
@@ -21908,7 +21976,7 @@ class PxList {
|
|
|
21908
21976
|
this.elementRef = elementRef;
|
|
21909
21977
|
}
|
|
21910
21978
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxList, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21911
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxList, selector: "px-list", 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 });
|
|
21979
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxList, selector: "px-list", inputs: { inverted: "inverted", variant: "variant", 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 });
|
|
21912
21980
|
}
|
|
21913
21981
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxList, decorators: [{
|
|
21914
21982
|
type: Directive,
|
|
@@ -21917,6 +21985,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
21917
21985
|
}]
|
|
21918
21986
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
21919
21987
|
type: Input
|
|
21988
|
+
}], variant: [{
|
|
21989
|
+
type: Input
|
|
21920
21990
|
}], grow: [{
|
|
21921
21991
|
type: Input
|
|
21922
21992
|
}], growMobile: [{
|
|
@@ -22496,6 +22566,12 @@ class PxModal {
|
|
|
22496
22566
|
get mediaSrc() {
|
|
22497
22567
|
return this.elementRef.nativeElement['mediaSrc'];
|
|
22498
22568
|
}
|
|
22569
|
+
set openedby(value) {
|
|
22570
|
+
this.elementRef.nativeElement['openedby'] = value;
|
|
22571
|
+
}
|
|
22572
|
+
get openedby() {
|
|
22573
|
+
return this.elementRef.nativeElement['openedby'];
|
|
22574
|
+
}
|
|
22499
22575
|
CLOSE_EVENT = new EventEmitter();
|
|
22500
22576
|
constructor(elementRef) {
|
|
22501
22577
|
this.elementRef = elementRef;
|
|
@@ -22504,7 +22580,7 @@ class PxModal {
|
|
|
22504
22580
|
});
|
|
22505
22581
|
}
|
|
22506
22582
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxModal, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
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 });
|
|
22583
|
+
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"], openedby: "openedby" }, outputs: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
22508
22584
|
}
|
|
22509
22585
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxModal, decorators: [{
|
|
22510
22586
|
type: Directive,
|
|
@@ -22518,6 +22594,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
22518
22594
|
}], mediaSrc: [{
|
|
22519
22595
|
type: Input,
|
|
22520
22596
|
args: ['media-src']
|
|
22597
|
+
}], openedby: [{
|
|
22598
|
+
type: Input
|
|
22521
22599
|
}], CLOSE_EVENT: [{
|
|
22522
22600
|
type: Output
|
|
22523
22601
|
}] } });
|
|
@@ -28729,6 +28807,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28729
28807
|
type: Input,
|
|
28730
28808
|
args: ['order--desktop']
|
|
28731
28809
|
}] } });
|
|
28810
|
+
/**
|
|
28811
|
+
* @description Type-only wrapper for <px-spinner>
|
|
28812
|
+
*/
|
|
28813
|
+
class PxSpinner {
|
|
28814
|
+
elementRef;
|
|
28815
|
+
set size(value) {
|
|
28816
|
+
this.elementRef.nativeElement['size'] = value;
|
|
28817
|
+
}
|
|
28818
|
+
get size() {
|
|
28819
|
+
return this.elementRef.nativeElement['size'];
|
|
28820
|
+
}
|
|
28821
|
+
set inverted(value) {
|
|
28822
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
28823
|
+
}
|
|
28824
|
+
get inverted() {
|
|
28825
|
+
return this.elementRef.nativeElement['inverted'];
|
|
28826
|
+
}
|
|
28827
|
+
set timeout(value) {
|
|
28828
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
28829
|
+
}
|
|
28830
|
+
get timeout() {
|
|
28831
|
+
return this.elementRef.nativeElement['timeout'];
|
|
28832
|
+
}
|
|
28833
|
+
set ariaLabel(value) {
|
|
28834
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
28835
|
+
}
|
|
28836
|
+
get ariaLabel() {
|
|
28837
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
28838
|
+
}
|
|
28839
|
+
constructor(elementRef) {
|
|
28840
|
+
this.elementRef = elementRef;
|
|
28841
|
+
}
|
|
28842
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28843
|
+
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 });
|
|
28844
|
+
}
|
|
28845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, decorators: [{
|
|
28846
|
+
type: Directive,
|
|
28847
|
+
args: [{
|
|
28848
|
+
selector: 'px-spinner',
|
|
28849
|
+
}]
|
|
28850
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
28851
|
+
type: Input
|
|
28852
|
+
}], inverted: [{
|
|
28853
|
+
type: Input
|
|
28854
|
+
}], timeout: [{
|
|
28855
|
+
type: Input
|
|
28856
|
+
}], ariaLabel: [{
|
|
28857
|
+
type: Input,
|
|
28858
|
+
args: ['aria-label']
|
|
28859
|
+
}] } });
|
|
28732
28860
|
/**
|
|
28733
28861
|
* @description Type-only wrapper for <px-status>
|
|
28734
28862
|
*/
|
|
@@ -29215,56 +29343,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
29215
29343
|
type: Input,
|
|
29216
29344
|
args: ['order--desktop']
|
|
29217
29345
|
}] } });
|
|
29218
|
-
/**
|
|
29219
|
-
* @description Type-only wrapper for <px-spinner>
|
|
29220
|
-
*/
|
|
29221
|
-
class PxSpinner {
|
|
29222
|
-
elementRef;
|
|
29223
|
-
set size(value) {
|
|
29224
|
-
this.elementRef.nativeElement['size'] = value;
|
|
29225
|
-
}
|
|
29226
|
-
get size() {
|
|
29227
|
-
return this.elementRef.nativeElement['size'];
|
|
29228
|
-
}
|
|
29229
|
-
set inverted(value) {
|
|
29230
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
29231
|
-
}
|
|
29232
|
-
get inverted() {
|
|
29233
|
-
return this.elementRef.nativeElement['inverted'];
|
|
29234
|
-
}
|
|
29235
|
-
set timeout(value) {
|
|
29236
|
-
this.elementRef.nativeElement['timeout'] = value;
|
|
29237
|
-
}
|
|
29238
|
-
get timeout() {
|
|
29239
|
-
return this.elementRef.nativeElement['timeout'];
|
|
29240
|
-
}
|
|
29241
|
-
set ariaLabel(value) {
|
|
29242
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
29243
|
-
}
|
|
29244
|
-
get ariaLabel() {
|
|
29245
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
29246
|
-
}
|
|
29247
|
-
constructor(elementRef) {
|
|
29248
|
-
this.elementRef = elementRef;
|
|
29249
|
-
}
|
|
29250
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29251
|
-
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 });
|
|
29252
|
-
}
|
|
29253
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, decorators: [{
|
|
29254
|
-
type: Directive,
|
|
29255
|
-
args: [{
|
|
29256
|
-
selector: 'px-spinner',
|
|
29257
|
-
}]
|
|
29258
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
29259
|
-
type: Input
|
|
29260
|
-
}], inverted: [{
|
|
29261
|
-
type: Input
|
|
29262
|
-
}], timeout: [{
|
|
29263
|
-
type: Input
|
|
29264
|
-
}], ariaLabel: [{
|
|
29265
|
-
type: Input,
|
|
29266
|
-
args: ['aria-label']
|
|
29267
|
-
}] } });
|
|
29268
29346
|
/**
|
|
29269
29347
|
* @description Type-only wrapper for <px-status-card>
|
|
29270
29348
|
*/
|
|
@@ -34363,7 +34441,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34363
34441
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
34364
34442
|
class Lavender {
|
|
34365
34443
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
34366
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBreadcrumbItem, PxBreadcrumb,
|
|
34444
|
+
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] });
|
|
34367
34445
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
34368
34446
|
}
|
|
34369
34447
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -34374,9 +34452,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34374
34452
|
PxAgGridTable,
|
|
34375
34453
|
PxAgGridTableThButton,
|
|
34376
34454
|
PxAgGridTableThContent,
|
|
34455
|
+
PxBanner,
|
|
34377
34456
|
PxBreadcrumbItem,
|
|
34378
34457
|
PxBreadcrumb,
|
|
34379
|
-
PxBanner,
|
|
34380
34458
|
PxButton,
|
|
34381
34459
|
PxButtonIcon,
|
|
34382
34460
|
PxCard,
|
|
@@ -34434,8 +34512,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34434
34512
|
PxSeparator,
|
|
34435
34513
|
PxSkeleton,
|
|
34436
34514
|
PxSpan,
|
|
34437
|
-
PxStatus,
|
|
34438
34515
|
PxSpinner,
|
|
34516
|
+
PxStatus,
|
|
34439
34517
|
PxStatusCard,
|
|
34440
34518
|
PxStickyContainer,
|
|
34441
34519
|
PxThemeSwitcher,
|
|
@@ -34471,9 +34549,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34471
34549
|
PxAgGridTable,
|
|
34472
34550
|
PxAgGridTableThButton,
|
|
34473
34551
|
PxAgGridTableThContent,
|
|
34552
|
+
PxBanner,
|
|
34474
34553
|
PxBreadcrumbItem,
|
|
34475
34554
|
PxBreadcrumb,
|
|
34476
|
-
PxBanner,
|
|
34477
34555
|
PxButton,
|
|
34478
34556
|
PxButtonIcon,
|
|
34479
34557
|
PxCard,
|
|
@@ -34531,8 +34609,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34531
34609
|
PxSeparator,
|
|
34532
34610
|
PxSkeleton,
|
|
34533
34611
|
PxSpan,
|
|
34534
|
-
PxStatus,
|
|
34535
34612
|
PxSpinner,
|
|
34613
|
+
PxStatus,
|
|
34536
34614
|
PxStatusCard,
|
|
34537
34615
|
PxStickyContainer,
|
|
34538
34616
|
PxThemeSwitcher,
|