@proximus/lavender-angular 1.4.3-beta.1 → 1.4.4-alpha.2
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 +19 -1
- package/esm2022/lavender.directive.mjs +288 -226
- package/fesm2022/proximus-lavender-angular.mjs +287 -225
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +83 -69
- package/package.json +1 -1
|
@@ -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: [{
|
|
@@ -12666,6 +12666,12 @@ class PxH1 {
|
|
|
12666
12666
|
get inverted() {
|
|
12667
12667
|
return this.elementRef.nativeElement['inverted'];
|
|
12668
12668
|
}
|
|
12669
|
+
set autoSpacing(value) {
|
|
12670
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
12671
|
+
}
|
|
12672
|
+
get autoSpacing() {
|
|
12673
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
12674
|
+
}
|
|
12669
12675
|
set grow(value) {
|
|
12670
12676
|
this.elementRef.nativeElement['grow'] = value;
|
|
12671
12677
|
}
|
|
@@ -12940,7 +12946,7 @@ class PxH1 {
|
|
|
12940
12946
|
this.elementRef = elementRef;
|
|
12941
12947
|
}
|
|
12942
12948
|
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 });
|
|
12949
|
+
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
12950
|
}
|
|
12945
12951
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH1, decorators: [{
|
|
12946
12952
|
type: Directive,
|
|
@@ -12968,6 +12974,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
12968
12974
|
args: ['text-align--desktop']
|
|
12969
12975
|
}], inverted: [{
|
|
12970
12976
|
type: Input
|
|
12977
|
+
}], autoSpacing: [{
|
|
12978
|
+
type: Input,
|
|
12979
|
+
args: ['auto-spacing']
|
|
12971
12980
|
}], grow: [{
|
|
12972
12981
|
type: Input
|
|
12973
12982
|
}], growMobile: [{
|
|
@@ -13152,6 +13161,12 @@ class PxH2 {
|
|
|
13152
13161
|
get inverted() {
|
|
13153
13162
|
return this.elementRef.nativeElement['inverted'];
|
|
13154
13163
|
}
|
|
13164
|
+
set autoSpacing(value) {
|
|
13165
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
13166
|
+
}
|
|
13167
|
+
get autoSpacing() {
|
|
13168
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
13169
|
+
}
|
|
13155
13170
|
set grow(value) {
|
|
13156
13171
|
this.elementRef.nativeElement['grow'] = value;
|
|
13157
13172
|
}
|
|
@@ -13426,7 +13441,7 @@ class PxH2 {
|
|
|
13426
13441
|
this.elementRef = elementRef;
|
|
13427
13442
|
}
|
|
13428
13443
|
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 });
|
|
13444
|
+
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
13445
|
}
|
|
13431
13446
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH2, decorators: [{
|
|
13432
13447
|
type: Directive,
|
|
@@ -13454,6 +13469,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
13454
13469
|
args: ['text-align--desktop']
|
|
13455
13470
|
}], inverted: [{
|
|
13456
13471
|
type: Input
|
|
13472
|
+
}], autoSpacing: [{
|
|
13473
|
+
type: Input,
|
|
13474
|
+
args: ['auto-spacing']
|
|
13457
13475
|
}], grow: [{
|
|
13458
13476
|
type: Input
|
|
13459
13477
|
}], growMobile: [{
|
|
@@ -13638,6 +13656,12 @@ class PxH3 {
|
|
|
13638
13656
|
get inverted() {
|
|
13639
13657
|
return this.elementRef.nativeElement['inverted'];
|
|
13640
13658
|
}
|
|
13659
|
+
set autoSpacing(value) {
|
|
13660
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
13661
|
+
}
|
|
13662
|
+
get autoSpacing() {
|
|
13663
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
13664
|
+
}
|
|
13641
13665
|
set grow(value) {
|
|
13642
13666
|
this.elementRef.nativeElement['grow'] = value;
|
|
13643
13667
|
}
|
|
@@ -13912,7 +13936,7 @@ class PxH3 {
|
|
|
13912
13936
|
this.elementRef = elementRef;
|
|
13913
13937
|
}
|
|
13914
13938
|
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 });
|
|
13939
|
+
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
13940
|
}
|
|
13917
13941
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH3, decorators: [{
|
|
13918
13942
|
type: Directive,
|
|
@@ -13940,6 +13964,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
13940
13964
|
args: ['text-align--desktop']
|
|
13941
13965
|
}], inverted: [{
|
|
13942
13966
|
type: Input
|
|
13967
|
+
}], autoSpacing: [{
|
|
13968
|
+
type: Input,
|
|
13969
|
+
args: ['auto-spacing']
|
|
13943
13970
|
}], grow: [{
|
|
13944
13971
|
type: Input
|
|
13945
13972
|
}], growMobile: [{
|
|
@@ -14124,6 +14151,12 @@ class PxH4 {
|
|
|
14124
14151
|
get inverted() {
|
|
14125
14152
|
return this.elementRef.nativeElement['inverted'];
|
|
14126
14153
|
}
|
|
14154
|
+
set autoSpacing(value) {
|
|
14155
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
14156
|
+
}
|
|
14157
|
+
get autoSpacing() {
|
|
14158
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
14159
|
+
}
|
|
14127
14160
|
set grow(value) {
|
|
14128
14161
|
this.elementRef.nativeElement['grow'] = value;
|
|
14129
14162
|
}
|
|
@@ -14398,7 +14431,7 @@ class PxH4 {
|
|
|
14398
14431
|
this.elementRef = elementRef;
|
|
14399
14432
|
}
|
|
14400
14433
|
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 });
|
|
14434
|
+
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
14435
|
}
|
|
14403
14436
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH4, decorators: [{
|
|
14404
14437
|
type: Directive,
|
|
@@ -14426,6 +14459,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14426
14459
|
args: ['text-align--desktop']
|
|
14427
14460
|
}], inverted: [{
|
|
14428
14461
|
type: Input
|
|
14462
|
+
}], autoSpacing: [{
|
|
14463
|
+
type: Input,
|
|
14464
|
+
args: ['auto-spacing']
|
|
14429
14465
|
}], grow: [{
|
|
14430
14466
|
type: Input
|
|
14431
14467
|
}], growMobile: [{
|
|
@@ -14610,6 +14646,12 @@ class PxH5 {
|
|
|
14610
14646
|
get inverted() {
|
|
14611
14647
|
return this.elementRef.nativeElement['inverted'];
|
|
14612
14648
|
}
|
|
14649
|
+
set autoSpacing(value) {
|
|
14650
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
14651
|
+
}
|
|
14652
|
+
get autoSpacing() {
|
|
14653
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
14654
|
+
}
|
|
14613
14655
|
set grow(value) {
|
|
14614
14656
|
this.elementRef.nativeElement['grow'] = value;
|
|
14615
14657
|
}
|
|
@@ -14884,7 +14926,7 @@ class PxH5 {
|
|
|
14884
14926
|
this.elementRef = elementRef;
|
|
14885
14927
|
}
|
|
14886
14928
|
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 });
|
|
14929
|
+
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
14930
|
}
|
|
14889
14931
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH5, decorators: [{
|
|
14890
14932
|
type: Directive,
|
|
@@ -14912,6 +14954,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14912
14954
|
args: ['text-align--desktop']
|
|
14913
14955
|
}], inverted: [{
|
|
14914
14956
|
type: Input
|
|
14957
|
+
}], autoSpacing: [{
|
|
14958
|
+
type: Input,
|
|
14959
|
+
args: ['auto-spacing']
|
|
14915
14960
|
}], grow: [{
|
|
14916
14961
|
type: Input
|
|
14917
14962
|
}], growMobile: [{
|
|
@@ -15096,6 +15141,12 @@ class PxH6 {
|
|
|
15096
15141
|
get inverted() {
|
|
15097
15142
|
return this.elementRef.nativeElement['inverted'];
|
|
15098
15143
|
}
|
|
15144
|
+
set autoSpacing(value) {
|
|
15145
|
+
this.elementRef.nativeElement['autoSpacing'] = value;
|
|
15146
|
+
}
|
|
15147
|
+
get autoSpacing() {
|
|
15148
|
+
return this.elementRef.nativeElement['autoSpacing'];
|
|
15149
|
+
}
|
|
15099
15150
|
set grow(value) {
|
|
15100
15151
|
this.elementRef.nativeElement['grow'] = value;
|
|
15101
15152
|
}
|
|
@@ -15370,7 +15421,7 @@ class PxH6 {
|
|
|
15370
15421
|
this.elementRef = elementRef;
|
|
15371
15422
|
}
|
|
15372
15423
|
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 });
|
|
15424
|
+
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
15425
|
}
|
|
15375
15426
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxH6, decorators: [{
|
|
15376
15427
|
type: Directive,
|
|
@@ -15398,6 +15449,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
15398
15449
|
args: ['text-align--desktop']
|
|
15399
15450
|
}], inverted: [{
|
|
15400
15451
|
type: Input
|
|
15452
|
+
}], autoSpacing: [{
|
|
15453
|
+
type: Input,
|
|
15454
|
+
args: ['auto-spacing']
|
|
15401
15455
|
}], grow: [{
|
|
15402
15456
|
type: Input
|
|
15403
15457
|
}], growMobile: [{
|
|
@@ -21634,6 +21688,12 @@ class PxList {
|
|
|
21634
21688
|
get inverted() {
|
|
21635
21689
|
return this.elementRef.nativeElement['inverted'];
|
|
21636
21690
|
}
|
|
21691
|
+
set variant(value) {
|
|
21692
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
21693
|
+
}
|
|
21694
|
+
get variant() {
|
|
21695
|
+
return this.elementRef.nativeElement['variant'];
|
|
21696
|
+
}
|
|
21637
21697
|
set grow(value) {
|
|
21638
21698
|
this.elementRef.nativeElement['grow'] = value;
|
|
21639
21699
|
}
|
|
@@ -21908,7 +21968,7 @@ class PxList {
|
|
|
21908
21968
|
this.elementRef = elementRef;
|
|
21909
21969
|
}
|
|
21910
21970
|
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 });
|
|
21971
|
+
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
21972
|
}
|
|
21913
21973
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxList, decorators: [{
|
|
21914
21974
|
type: Directive,
|
|
@@ -21917,6 +21977,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
21917
21977
|
}]
|
|
21918
21978
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
21919
21979
|
type: Input
|
|
21980
|
+
}], variant: [{
|
|
21981
|
+
type: Input
|
|
21920
21982
|
}], grow: [{
|
|
21921
21983
|
type: Input
|
|
21922
21984
|
}], growMobile: [{
|
|
@@ -28729,6 +28791,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28729
28791
|
type: Input,
|
|
28730
28792
|
args: ['order--desktop']
|
|
28731
28793
|
}] } });
|
|
28794
|
+
/**
|
|
28795
|
+
* @description Type-only wrapper for <px-spinner>
|
|
28796
|
+
*/
|
|
28797
|
+
class PxSpinner {
|
|
28798
|
+
elementRef;
|
|
28799
|
+
set size(value) {
|
|
28800
|
+
this.elementRef.nativeElement['size'] = value;
|
|
28801
|
+
}
|
|
28802
|
+
get size() {
|
|
28803
|
+
return this.elementRef.nativeElement['size'];
|
|
28804
|
+
}
|
|
28805
|
+
set inverted(value) {
|
|
28806
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
28807
|
+
}
|
|
28808
|
+
get inverted() {
|
|
28809
|
+
return this.elementRef.nativeElement['inverted'];
|
|
28810
|
+
}
|
|
28811
|
+
set timeout(value) {
|
|
28812
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
28813
|
+
}
|
|
28814
|
+
get timeout() {
|
|
28815
|
+
return this.elementRef.nativeElement['timeout'];
|
|
28816
|
+
}
|
|
28817
|
+
set ariaLabel(value) {
|
|
28818
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
28819
|
+
}
|
|
28820
|
+
get ariaLabel() {
|
|
28821
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
28822
|
+
}
|
|
28823
|
+
constructor(elementRef) {
|
|
28824
|
+
this.elementRef = elementRef;
|
|
28825
|
+
}
|
|
28826
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28827
|
+
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 });
|
|
28828
|
+
}
|
|
28829
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, decorators: [{
|
|
28830
|
+
type: Directive,
|
|
28831
|
+
args: [{
|
|
28832
|
+
selector: 'px-spinner',
|
|
28833
|
+
}]
|
|
28834
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
28835
|
+
type: Input
|
|
28836
|
+
}], inverted: [{
|
|
28837
|
+
type: Input
|
|
28838
|
+
}], timeout: [{
|
|
28839
|
+
type: Input
|
|
28840
|
+
}], ariaLabel: [{
|
|
28841
|
+
type: Input,
|
|
28842
|
+
args: ['aria-label']
|
|
28843
|
+
}] } });
|
|
28732
28844
|
/**
|
|
28733
28845
|
* @description Type-only wrapper for <px-status>
|
|
28734
28846
|
*/
|
|
@@ -29215,56 +29327,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
29215
29327
|
type: Input,
|
|
29216
29328
|
args: ['order--desktop']
|
|
29217
29329
|
}] } });
|
|
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
29330
|
/**
|
|
29269
29331
|
* @description Type-only wrapper for <px-status-card>
|
|
29270
29332
|
*/
|
|
@@ -34363,7 +34425,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34363
34425
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
34364
34426
|
class Lavender {
|
|
34365
34427
|
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,
|
|
34428
|
+
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
34429
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
34368
34430
|
}
|
|
34369
34431
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -34374,9 +34436,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34374
34436
|
PxAgGridTable,
|
|
34375
34437
|
PxAgGridTableThButton,
|
|
34376
34438
|
PxAgGridTableThContent,
|
|
34439
|
+
PxBanner,
|
|
34377
34440
|
PxBreadcrumbItem,
|
|
34378
34441
|
PxBreadcrumb,
|
|
34379
|
-
PxBanner,
|
|
34380
34442
|
PxButton,
|
|
34381
34443
|
PxButtonIcon,
|
|
34382
34444
|
PxCard,
|
|
@@ -34434,8 +34496,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34434
34496
|
PxSeparator,
|
|
34435
34497
|
PxSkeleton,
|
|
34436
34498
|
PxSpan,
|
|
34437
|
-
PxStatus,
|
|
34438
34499
|
PxSpinner,
|
|
34500
|
+
PxStatus,
|
|
34439
34501
|
PxStatusCard,
|
|
34440
34502
|
PxStickyContainer,
|
|
34441
34503
|
PxThemeSwitcher,
|
|
@@ -34471,9 +34533,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34471
34533
|
PxAgGridTable,
|
|
34472
34534
|
PxAgGridTableThButton,
|
|
34473
34535
|
PxAgGridTableThContent,
|
|
34536
|
+
PxBanner,
|
|
34474
34537
|
PxBreadcrumbItem,
|
|
34475
34538
|
PxBreadcrumb,
|
|
34476
|
-
PxBanner,
|
|
34477
34539
|
PxButton,
|
|
34478
34540
|
PxButtonIcon,
|
|
34479
34541
|
PxCard,
|
|
@@ -34531,8 +34593,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34531
34593
|
PxSeparator,
|
|
34532
34594
|
PxSkeleton,
|
|
34533
34595
|
PxSpan,
|
|
34534
|
-
PxStatus,
|
|
34535
34596
|
PxSpinner,
|
|
34597
|
+
PxStatus,
|
|
34536
34598
|
PxStatusCard,
|
|
34537
34599
|
PxStickyContainer,
|
|
34538
34600
|
PxThemeSwitcher,
|