@proximus/lavender-angular 1.4.15-alpha.3 → 1.4.15-alpha.4
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 +4 -0
- package/fesm2022/proximus-lavender-angular.mjs +416 -416
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +112 -112
- package/package.json +1 -1
|
@@ -11850,22 +11850,124 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
11850
11850
|
type: Output
|
|
11851
11851
|
}] } });
|
|
11852
11852
|
/**
|
|
11853
|
-
* @description Type-only wrapper for <px-
|
|
11853
|
+
* @description Type-only wrapper for <px-container>
|
|
11854
11854
|
*/
|
|
11855
|
-
class
|
|
11855
|
+
class PxContainer {
|
|
11856
11856
|
elementRef;
|
|
11857
|
+
set border(value) {
|
|
11858
|
+
this.elementRef.nativeElement['border'] = value;
|
|
11859
|
+
}
|
|
11860
|
+
get border() {
|
|
11861
|
+
return this.elementRef.nativeElement['border'];
|
|
11862
|
+
}
|
|
11863
|
+
set borderColor(value) {
|
|
11864
|
+
this.elementRef.nativeElement['borderColor'] = value;
|
|
11865
|
+
}
|
|
11866
|
+
get borderColor() {
|
|
11867
|
+
return this.elementRef.nativeElement['borderColor'];
|
|
11868
|
+
}
|
|
11869
|
+
set borderSide(value) {
|
|
11870
|
+
this.elementRef.nativeElement['borderSide'] = value;
|
|
11871
|
+
}
|
|
11872
|
+
get borderSide() {
|
|
11873
|
+
return this.elementRef.nativeElement['borderSide'];
|
|
11874
|
+
}
|
|
11875
|
+
set borderSideMobile(value) {
|
|
11876
|
+
this.elementRef.nativeElement['borderSideMobile'] = value;
|
|
11877
|
+
}
|
|
11878
|
+
get borderSideMobile() {
|
|
11879
|
+
return this.elementRef.nativeElement['borderSideMobile'];
|
|
11880
|
+
}
|
|
11881
|
+
set borderSideTablet(value) {
|
|
11882
|
+
this.elementRef.nativeElement['borderSideTablet'] = value;
|
|
11883
|
+
}
|
|
11884
|
+
get borderSideTablet() {
|
|
11885
|
+
return this.elementRef.nativeElement['borderSideTablet'];
|
|
11886
|
+
}
|
|
11887
|
+
set borderSideLaptop(value) {
|
|
11888
|
+
this.elementRef.nativeElement['borderSideLaptop'] = value;
|
|
11889
|
+
}
|
|
11890
|
+
get borderSideLaptop() {
|
|
11891
|
+
return this.elementRef.nativeElement['borderSideLaptop'];
|
|
11892
|
+
}
|
|
11893
|
+
set borderRadius(value) {
|
|
11894
|
+
this.elementRef.nativeElement['borderRadius'] = value;
|
|
11895
|
+
}
|
|
11896
|
+
get borderRadius() {
|
|
11897
|
+
return this.elementRef.nativeElement['borderRadius'];
|
|
11898
|
+
}
|
|
11899
|
+
set noBorderRadius(value) {
|
|
11900
|
+
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
11901
|
+
}
|
|
11902
|
+
get noBorderRadius() {
|
|
11903
|
+
return this.elementRef.nativeElement['noBorderRadius'];
|
|
11904
|
+
}
|
|
11905
|
+
set noBorderRadiusMobile(value) {
|
|
11906
|
+
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
11907
|
+
}
|
|
11908
|
+
get noBorderRadiusMobile() {
|
|
11909
|
+
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
11910
|
+
}
|
|
11911
|
+
set noBorderRadiusTablet(value) {
|
|
11912
|
+
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
11913
|
+
}
|
|
11914
|
+
get noBorderRadiusTablet() {
|
|
11915
|
+
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
11916
|
+
}
|
|
11917
|
+
set noBorderRadiusLaptop(value) {
|
|
11918
|
+
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
11919
|
+
}
|
|
11920
|
+
get noBorderRadiusLaptop() {
|
|
11921
|
+
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
11922
|
+
}
|
|
11857
11923
|
set backgroundColor(value) {
|
|
11858
11924
|
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
11859
11925
|
}
|
|
11860
11926
|
get backgroundColor() {
|
|
11861
11927
|
return this.elementRef.nativeElement['backgroundColor'];
|
|
11862
11928
|
}
|
|
11929
|
+
set backgroundColorMobile(value) {
|
|
11930
|
+
this.elementRef.nativeElement['backgroundColorMobile'] = value;
|
|
11931
|
+
}
|
|
11932
|
+
get backgroundColorMobile() {
|
|
11933
|
+
return this.elementRef.nativeElement['backgroundColorMobile'];
|
|
11934
|
+
}
|
|
11935
|
+
set backgroundColorTablet(value) {
|
|
11936
|
+
this.elementRef.nativeElement['backgroundColorTablet'] = value;
|
|
11937
|
+
}
|
|
11938
|
+
get backgroundColorTablet() {
|
|
11939
|
+
return this.elementRef.nativeElement['backgroundColorTablet'];
|
|
11940
|
+
}
|
|
11941
|
+
set backgroundColorLaptop(value) {
|
|
11942
|
+
this.elementRef.nativeElement['backgroundColorLaptop'] = value;
|
|
11943
|
+
}
|
|
11944
|
+
get backgroundColorLaptop() {
|
|
11945
|
+
return this.elementRef.nativeElement['backgroundColorLaptop'];
|
|
11946
|
+
}
|
|
11863
11947
|
set backgroundGradient(value) {
|
|
11864
11948
|
this.elementRef.nativeElement['backgroundGradient'] = value;
|
|
11865
11949
|
}
|
|
11866
11950
|
get backgroundGradient() {
|
|
11867
11951
|
return this.elementRef.nativeElement['backgroundGradient'];
|
|
11868
11952
|
}
|
|
11953
|
+
set backgroundGradientMobile(value) {
|
|
11954
|
+
this.elementRef.nativeElement['backgroundGradientMobile'] = value;
|
|
11955
|
+
}
|
|
11956
|
+
get backgroundGradientMobile() {
|
|
11957
|
+
return this.elementRef.nativeElement['backgroundGradientMobile'];
|
|
11958
|
+
}
|
|
11959
|
+
set backgroundGradientTablet(value) {
|
|
11960
|
+
this.elementRef.nativeElement['backgroundGradientTablet'] = value;
|
|
11961
|
+
}
|
|
11962
|
+
get backgroundGradientTablet() {
|
|
11963
|
+
return this.elementRef.nativeElement['backgroundGradientTablet'];
|
|
11964
|
+
}
|
|
11965
|
+
set backgroundGradientLaptop(value) {
|
|
11966
|
+
this.elementRef.nativeElement['backgroundGradientLaptop'] = value;
|
|
11967
|
+
}
|
|
11968
|
+
get backgroundGradientLaptop() {
|
|
11969
|
+
return this.elementRef.nativeElement['backgroundGradientLaptop'];
|
|
11970
|
+
}
|
|
11869
11971
|
set backgroundImage(value) {
|
|
11870
11972
|
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
11871
11973
|
}
|
|
@@ -11902,53 +12004,23 @@ class PxContentHeader {
|
|
|
11902
12004
|
get backgroundPosition() {
|
|
11903
12005
|
return this.elementRef.nativeElement['backgroundPosition'];
|
|
11904
12006
|
}
|
|
11905
|
-
set
|
|
11906
|
-
this.elementRef.nativeElement['
|
|
11907
|
-
}
|
|
11908
|
-
get contrastHelperGradient() {
|
|
11909
|
-
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
11910
|
-
}
|
|
11911
|
-
set contrastHelperOverlay(value) {
|
|
11912
|
-
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
11913
|
-
}
|
|
11914
|
-
get contrastHelperOverlay() {
|
|
11915
|
-
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
11916
|
-
}
|
|
11917
|
-
set minHeight(value) {
|
|
11918
|
-
this.elementRef.nativeElement['minHeight'] = value;
|
|
11919
|
-
}
|
|
11920
|
-
get minHeight() {
|
|
11921
|
-
return this.elementRef.nativeElement['minHeight'];
|
|
11922
|
-
}
|
|
11923
|
-
set hasGridding(value) {
|
|
11924
|
-
this.elementRef.nativeElement['hasGridding'] = value;
|
|
11925
|
-
}
|
|
11926
|
-
get hasGridding() {
|
|
11927
|
-
return this.elementRef.nativeElement['hasGridding'];
|
|
11928
|
-
}
|
|
11929
|
-
set hasGriddingMobile(value) {
|
|
11930
|
-
this.elementRef.nativeElement['hasGriddingMobile'] = value;
|
|
11931
|
-
}
|
|
11932
|
-
get hasGriddingMobile() {
|
|
11933
|
-
return this.elementRef.nativeElement['hasGriddingMobile'];
|
|
11934
|
-
}
|
|
11935
|
-
set hasGriddingTablet(value) {
|
|
11936
|
-
this.elementRef.nativeElement['hasGriddingTablet'] = value;
|
|
12007
|
+
set boxShadow(value) {
|
|
12008
|
+
this.elementRef.nativeElement['boxShadow'] = value;
|
|
11937
12009
|
}
|
|
11938
|
-
get
|
|
11939
|
-
return this.elementRef.nativeElement['
|
|
12010
|
+
get boxShadow() {
|
|
12011
|
+
return this.elementRef.nativeElement['boxShadow'];
|
|
11940
12012
|
}
|
|
11941
|
-
set
|
|
11942
|
-
this.elementRef.nativeElement['
|
|
12013
|
+
set anchorOffset(value) {
|
|
12014
|
+
this.elementRef.nativeElement['anchorOffset'] = value;
|
|
11943
12015
|
}
|
|
11944
|
-
get
|
|
11945
|
-
return this.elementRef.nativeElement['
|
|
12016
|
+
get anchorOffset() {
|
|
12017
|
+
return this.elementRef.nativeElement['anchorOffset'];
|
|
11946
12018
|
}
|
|
11947
|
-
set
|
|
11948
|
-
this.elementRef.nativeElement['
|
|
12019
|
+
set anchorSpacing(value) {
|
|
12020
|
+
this.elementRef.nativeElement['anchorSpacing'] = value;
|
|
11949
12021
|
}
|
|
11950
|
-
get
|
|
11951
|
-
return this.elementRef.nativeElement['
|
|
12022
|
+
get anchorSpacing() {
|
|
12023
|
+
return this.elementRef.nativeElement['anchorSpacing'];
|
|
11952
12024
|
}
|
|
11953
12025
|
set inverted(value) {
|
|
11954
12026
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -11956,6 +12028,12 @@ class PxContentHeader {
|
|
|
11956
12028
|
get inverted() {
|
|
11957
12029
|
return this.elementRef.nativeElement['inverted'];
|
|
11958
12030
|
}
|
|
12031
|
+
set subgridRows(value) {
|
|
12032
|
+
this.elementRef.nativeElement['subgridRows'] = value;
|
|
12033
|
+
}
|
|
12034
|
+
get subgridRows() {
|
|
12035
|
+
return this.elementRef.nativeElement['subgridRows'];
|
|
12036
|
+
}
|
|
11959
12037
|
set grow(value) {
|
|
11960
12038
|
this.elementRef.nativeElement['grow'] = value;
|
|
11961
12039
|
}
|
|
@@ -12271,21 +12349,71 @@ class PxContentHeader {
|
|
|
12271
12349
|
constructor(elementRef) {
|
|
12272
12350
|
this.elementRef = elementRef;
|
|
12273
12351
|
}
|
|
12274
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
12275
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
12352
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12353
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxContainer, isStandalone: true, selector: "px-container", inputs: { border: "border", borderColor: ["border-color", "borderColor"], borderSide: ["border-side", "borderSide"], borderSideMobile: ["border-side--mobile", "borderSideMobile"], borderSideTablet: ["border-side--tablet", "borderSideTablet"], borderSideLaptop: ["border-side--laptop", "borderSideLaptop"], borderRadius: ["border-radius", "borderRadius"], noBorderRadius: ["no-border-radius", "noBorderRadius"], noBorderRadiusMobile: ["no-border-radius--mobile", "noBorderRadiusMobile"], noBorderRadiusTablet: ["no-border-radius--tablet", "noBorderRadiusTablet"], noBorderRadiusLaptop: ["no-border-radius--laptop", "noBorderRadiusLaptop"], backgroundColor: ["background-color", "backgroundColor"], backgroundColorMobile: ["background-color--mobile", "backgroundColorMobile"], backgroundColorTablet: ["background-color--tablet", "backgroundColorTablet"], backgroundColorLaptop: ["background-color--laptop", "backgroundColorLaptop"], backgroundGradient: ["background-gradient", "backgroundGradient"], backgroundGradientMobile: ["background-gradient--mobile", "backgroundGradientMobile"], backgroundGradientTablet: ["background-gradient--tablet", "backgroundGradientTablet"], backgroundGradientLaptop: ["background-gradient--laptop", "backgroundGradientLaptop"], 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"], boxShadow: ["box-shadow", "boxShadow"], anchorOffset: ["anchor-offset", "anchorOffset"], anchorSpacing: ["anchor-spacing", "anchorSpacing"], inverted: "inverted", subgridRows: ["subgrid-rows", "subgridRows"], 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"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
12276
12354
|
}
|
|
12277
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
12355
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxContainer, decorators: [{
|
|
12278
12356
|
type: Directive,
|
|
12279
12357
|
args: [{
|
|
12280
|
-
selector: 'px-
|
|
12358
|
+
selector: 'px-container',
|
|
12281
12359
|
standalone: true,
|
|
12282
12360
|
}]
|
|
12283
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
12361
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { border: [{
|
|
12362
|
+
type: Input
|
|
12363
|
+
}], borderColor: [{
|
|
12364
|
+
type: Input,
|
|
12365
|
+
args: ['border-color']
|
|
12366
|
+
}], borderSide: [{
|
|
12367
|
+
type: Input,
|
|
12368
|
+
args: ['border-side']
|
|
12369
|
+
}], borderSideMobile: [{
|
|
12370
|
+
type: Input,
|
|
12371
|
+
args: ['border-side--mobile']
|
|
12372
|
+
}], borderSideTablet: [{
|
|
12373
|
+
type: Input,
|
|
12374
|
+
args: ['border-side--tablet']
|
|
12375
|
+
}], borderSideLaptop: [{
|
|
12376
|
+
type: Input,
|
|
12377
|
+
args: ['border-side--laptop']
|
|
12378
|
+
}], borderRadius: [{
|
|
12379
|
+
type: Input,
|
|
12380
|
+
args: ['border-radius']
|
|
12381
|
+
}], noBorderRadius: [{
|
|
12382
|
+
type: Input,
|
|
12383
|
+
args: ['no-border-radius']
|
|
12384
|
+
}], noBorderRadiusMobile: [{
|
|
12385
|
+
type: Input,
|
|
12386
|
+
args: ['no-border-radius--mobile']
|
|
12387
|
+
}], noBorderRadiusTablet: [{
|
|
12388
|
+
type: Input,
|
|
12389
|
+
args: ['no-border-radius--tablet']
|
|
12390
|
+
}], noBorderRadiusLaptop: [{
|
|
12391
|
+
type: Input,
|
|
12392
|
+
args: ['no-border-radius--laptop']
|
|
12393
|
+
}], backgroundColor: [{
|
|
12284
12394
|
type: Input,
|
|
12285
12395
|
args: ['background-color']
|
|
12396
|
+
}], backgroundColorMobile: [{
|
|
12397
|
+
type: Input,
|
|
12398
|
+
args: ['background-color--mobile']
|
|
12399
|
+
}], backgroundColorTablet: [{
|
|
12400
|
+
type: Input,
|
|
12401
|
+
args: ['background-color--tablet']
|
|
12402
|
+
}], backgroundColorLaptop: [{
|
|
12403
|
+
type: Input,
|
|
12404
|
+
args: ['background-color--laptop']
|
|
12286
12405
|
}], backgroundGradient: [{
|
|
12287
12406
|
type: Input,
|
|
12288
12407
|
args: ['background-gradient']
|
|
12408
|
+
}], backgroundGradientMobile: [{
|
|
12409
|
+
type: Input,
|
|
12410
|
+
args: ['background-gradient--mobile']
|
|
12411
|
+
}], backgroundGradientTablet: [{
|
|
12412
|
+
type: Input,
|
|
12413
|
+
args: ['background-gradient--tablet']
|
|
12414
|
+
}], backgroundGradientLaptop: [{
|
|
12415
|
+
type: Input,
|
|
12416
|
+
args: ['background-gradient--laptop']
|
|
12289
12417
|
}], backgroundImage: [{
|
|
12290
12418
|
type: Input,
|
|
12291
12419
|
args: ['background-image']
|
|
@@ -12304,32 +12432,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
12304
12432
|
}], backgroundPosition: [{
|
|
12305
12433
|
type: Input,
|
|
12306
12434
|
args: ['background-position']
|
|
12307
|
-
}],
|
|
12308
|
-
type: Input,
|
|
12309
|
-
args: ['contrast-helper-gradient']
|
|
12310
|
-
}], contrastHelperOverlay: [{
|
|
12311
|
-
type: Input,
|
|
12312
|
-
args: ['contrast-helper-overlay']
|
|
12313
|
-
}], minHeight: [{
|
|
12314
|
-
type: Input,
|
|
12315
|
-
args: ['min-height']
|
|
12316
|
-
}], hasGridding: [{
|
|
12317
|
-
type: Input,
|
|
12318
|
-
args: ['has-gridding']
|
|
12319
|
-
}], hasGriddingMobile: [{
|
|
12320
|
-
type: Input,
|
|
12321
|
-
args: ['has-gridding--mobile']
|
|
12322
|
-
}], hasGriddingTablet: [{
|
|
12435
|
+
}], boxShadow: [{
|
|
12323
12436
|
type: Input,
|
|
12324
|
-
args: ['
|
|
12325
|
-
}],
|
|
12437
|
+
args: ['box-shadow']
|
|
12438
|
+
}], anchorOffset: [{
|
|
12326
12439
|
type: Input,
|
|
12327
|
-
args: ['
|
|
12328
|
-
}],
|
|
12440
|
+
args: ['anchor-offset']
|
|
12441
|
+
}], anchorSpacing: [{
|
|
12329
12442
|
type: Input,
|
|
12330
|
-
args: ['
|
|
12443
|
+
args: ['anchor-spacing']
|
|
12331
12444
|
}], inverted: [{
|
|
12332
12445
|
type: Input
|
|
12446
|
+
}], subgridRows: [{
|
|
12447
|
+
type: Input,
|
|
12448
|
+
args: ['subgrid-rows']
|
|
12333
12449
|
}], grow: [{
|
|
12334
12450
|
type: Input
|
|
12335
12451
|
}], growMobile: [{
|
|
@@ -12483,225 +12599,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
12483
12599
|
args: ['word-break-all--desktop']
|
|
12484
12600
|
}] } });
|
|
12485
12601
|
/**
|
|
12486
|
-
* @description Type-only wrapper for <px-
|
|
12487
|
-
*/
|
|
12488
|
-
class PxDrawer {
|
|
12489
|
-
elementRef;
|
|
12490
|
-
set open(value) {
|
|
12491
|
-
this.elementRef.nativeElement['open'] = value;
|
|
12492
|
-
}
|
|
12493
|
-
get open() {
|
|
12494
|
-
return this.elementRef.nativeElement['open'];
|
|
12495
|
-
}
|
|
12496
|
-
set ariaLabelCloseButton(value) {
|
|
12497
|
-
this.elementRef.nativeElement['ariaLabelCloseButton'] = value;
|
|
12498
|
-
}
|
|
12499
|
-
get ariaLabelCloseButton() {
|
|
12500
|
-
return this.elementRef.nativeElement['ariaLabelCloseButton'];
|
|
12501
|
-
}
|
|
12502
|
-
set openedby(value) {
|
|
12503
|
-
this.elementRef.nativeElement['openedby'] = value;
|
|
12504
|
-
}
|
|
12505
|
-
get openedby() {
|
|
12506
|
-
return this.elementRef.nativeElement['openedby'];
|
|
12507
|
-
}
|
|
12508
|
-
set closedby(value) {
|
|
12509
|
-
this.elementRef.nativeElement['closedby'] = value;
|
|
12510
|
-
}
|
|
12511
|
-
get closedby() {
|
|
12512
|
-
return this.elementRef.nativeElement['closedby'];
|
|
12513
|
-
}
|
|
12514
|
-
set fullscreen(value) {
|
|
12515
|
-
this.elementRef.nativeElement['fullscreen'] = value;
|
|
12516
|
-
}
|
|
12517
|
-
get fullscreen() {
|
|
12518
|
-
return this.elementRef.nativeElement['fullscreen'];
|
|
12519
|
-
}
|
|
12520
|
-
set fullscreenMobile(value) {
|
|
12521
|
-
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
12522
|
-
}
|
|
12523
|
-
get fullscreenMobile() {
|
|
12524
|
-
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
12525
|
-
}
|
|
12526
|
-
set fullscreenTablet(value) {
|
|
12527
|
-
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
12528
|
-
}
|
|
12529
|
-
get fullscreenTablet() {
|
|
12530
|
-
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
12531
|
-
}
|
|
12532
|
-
set fullscreenLaptop(value) {
|
|
12533
|
-
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
12534
|
-
}
|
|
12535
|
-
get fullscreenLaptop() {
|
|
12536
|
-
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
12537
|
-
}
|
|
12538
|
-
set fullscreenDesktop(value) {
|
|
12539
|
-
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
12540
|
-
}
|
|
12541
|
-
get fullscreenDesktop() {
|
|
12542
|
-
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
12543
|
-
}
|
|
12544
|
-
HIDE_EVENT = new EventEmitter();
|
|
12545
|
-
constructor(elementRef) {
|
|
12546
|
-
this.elementRef = elementRef;
|
|
12547
|
-
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
12548
|
-
this.HIDE_EVENT.emit(e.detail);
|
|
12549
|
-
});
|
|
12550
|
-
}
|
|
12551
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12552
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxDrawer, isStandalone: true, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby", closedby: "closedby", fullscreen: "fullscreen", fullscreenMobile: ["fullscreen--mobile", "fullscreenMobile"], fullscreenTablet: ["fullscreen--tablet", "fullscreenTablet"], fullscreenLaptop: ["fullscreen--laptop", "fullscreenLaptop"], fullscreenDesktop: ["fullscreen--desktop", "fullscreenDesktop"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
12553
|
-
}
|
|
12554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, decorators: [{
|
|
12555
|
-
type: Directive,
|
|
12556
|
-
args: [{
|
|
12557
|
-
selector: 'px-drawer',
|
|
12558
|
-
standalone: true,
|
|
12559
|
-
}]
|
|
12560
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
12561
|
-
type: Input
|
|
12562
|
-
}], ariaLabelCloseButton: [{
|
|
12563
|
-
type: Input,
|
|
12564
|
-
args: ['aria-label-close-button']
|
|
12565
|
-
}], openedby: [{
|
|
12566
|
-
type: Input
|
|
12567
|
-
}], closedby: [{
|
|
12568
|
-
type: Input
|
|
12569
|
-
}], fullscreen: [{
|
|
12570
|
-
type: Input
|
|
12571
|
-
}], fullscreenMobile: [{
|
|
12572
|
-
type: Input,
|
|
12573
|
-
args: ['fullscreen--mobile']
|
|
12574
|
-
}], fullscreenTablet: [{
|
|
12575
|
-
type: Input,
|
|
12576
|
-
args: ['fullscreen--tablet']
|
|
12577
|
-
}], fullscreenLaptop: [{
|
|
12578
|
-
type: Input,
|
|
12579
|
-
args: ['fullscreen--laptop']
|
|
12580
|
-
}], fullscreenDesktop: [{
|
|
12581
|
-
type: Input,
|
|
12582
|
-
args: ['fullscreen--desktop']
|
|
12583
|
-
}], HIDE_EVENT: [{
|
|
12584
|
-
type: Output
|
|
12585
|
-
}] } });
|
|
12586
|
-
/**
|
|
12587
|
-
* @description Type-only wrapper for <px-container>
|
|
12602
|
+
* @description Type-only wrapper for <px-content-header>
|
|
12588
12603
|
*/
|
|
12589
|
-
class
|
|
12604
|
+
class PxContentHeader {
|
|
12590
12605
|
elementRef;
|
|
12591
|
-
set border(value) {
|
|
12592
|
-
this.elementRef.nativeElement['border'] = value;
|
|
12593
|
-
}
|
|
12594
|
-
get border() {
|
|
12595
|
-
return this.elementRef.nativeElement['border'];
|
|
12596
|
-
}
|
|
12597
|
-
set borderColor(value) {
|
|
12598
|
-
this.elementRef.nativeElement['borderColor'] = value;
|
|
12599
|
-
}
|
|
12600
|
-
get borderColor() {
|
|
12601
|
-
return this.elementRef.nativeElement['borderColor'];
|
|
12602
|
-
}
|
|
12603
|
-
set borderSide(value) {
|
|
12604
|
-
this.elementRef.nativeElement['borderSide'] = value;
|
|
12605
|
-
}
|
|
12606
|
-
get borderSide() {
|
|
12607
|
-
return this.elementRef.nativeElement['borderSide'];
|
|
12608
|
-
}
|
|
12609
|
-
set borderSideMobile(value) {
|
|
12610
|
-
this.elementRef.nativeElement['borderSideMobile'] = value;
|
|
12611
|
-
}
|
|
12612
|
-
get borderSideMobile() {
|
|
12613
|
-
return this.elementRef.nativeElement['borderSideMobile'];
|
|
12614
|
-
}
|
|
12615
|
-
set borderSideTablet(value) {
|
|
12616
|
-
this.elementRef.nativeElement['borderSideTablet'] = value;
|
|
12617
|
-
}
|
|
12618
|
-
get borderSideTablet() {
|
|
12619
|
-
return this.elementRef.nativeElement['borderSideTablet'];
|
|
12620
|
-
}
|
|
12621
|
-
set borderSideLaptop(value) {
|
|
12622
|
-
this.elementRef.nativeElement['borderSideLaptop'] = value;
|
|
12623
|
-
}
|
|
12624
|
-
get borderSideLaptop() {
|
|
12625
|
-
return this.elementRef.nativeElement['borderSideLaptop'];
|
|
12626
|
-
}
|
|
12627
|
-
set borderRadius(value) {
|
|
12628
|
-
this.elementRef.nativeElement['borderRadius'] = value;
|
|
12629
|
-
}
|
|
12630
|
-
get borderRadius() {
|
|
12631
|
-
return this.elementRef.nativeElement['borderRadius'];
|
|
12632
|
-
}
|
|
12633
|
-
set noBorderRadius(value) {
|
|
12634
|
-
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
12635
|
-
}
|
|
12636
|
-
get noBorderRadius() {
|
|
12637
|
-
return this.elementRef.nativeElement['noBorderRadius'];
|
|
12638
|
-
}
|
|
12639
|
-
set noBorderRadiusMobile(value) {
|
|
12640
|
-
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
12641
|
-
}
|
|
12642
|
-
get noBorderRadiusMobile() {
|
|
12643
|
-
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
12644
|
-
}
|
|
12645
|
-
set noBorderRadiusTablet(value) {
|
|
12646
|
-
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
12647
|
-
}
|
|
12648
|
-
get noBorderRadiusTablet() {
|
|
12649
|
-
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
12650
|
-
}
|
|
12651
|
-
set noBorderRadiusLaptop(value) {
|
|
12652
|
-
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
12653
|
-
}
|
|
12654
|
-
get noBorderRadiusLaptop() {
|
|
12655
|
-
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
12656
|
-
}
|
|
12657
12606
|
set backgroundColor(value) {
|
|
12658
12607
|
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
12659
12608
|
}
|
|
12660
12609
|
get backgroundColor() {
|
|
12661
12610
|
return this.elementRef.nativeElement['backgroundColor'];
|
|
12662
12611
|
}
|
|
12663
|
-
set backgroundColorMobile(value) {
|
|
12664
|
-
this.elementRef.nativeElement['backgroundColorMobile'] = value;
|
|
12665
|
-
}
|
|
12666
|
-
get backgroundColorMobile() {
|
|
12667
|
-
return this.elementRef.nativeElement['backgroundColorMobile'];
|
|
12668
|
-
}
|
|
12669
|
-
set backgroundColorTablet(value) {
|
|
12670
|
-
this.elementRef.nativeElement['backgroundColorTablet'] = value;
|
|
12671
|
-
}
|
|
12672
|
-
get backgroundColorTablet() {
|
|
12673
|
-
return this.elementRef.nativeElement['backgroundColorTablet'];
|
|
12674
|
-
}
|
|
12675
|
-
set backgroundColorLaptop(value) {
|
|
12676
|
-
this.elementRef.nativeElement['backgroundColorLaptop'] = value;
|
|
12677
|
-
}
|
|
12678
|
-
get backgroundColorLaptop() {
|
|
12679
|
-
return this.elementRef.nativeElement['backgroundColorLaptop'];
|
|
12680
|
-
}
|
|
12681
12612
|
set backgroundGradient(value) {
|
|
12682
12613
|
this.elementRef.nativeElement['backgroundGradient'] = value;
|
|
12683
12614
|
}
|
|
12684
12615
|
get backgroundGradient() {
|
|
12685
12616
|
return this.elementRef.nativeElement['backgroundGradient'];
|
|
12686
12617
|
}
|
|
12687
|
-
set backgroundGradientMobile(value) {
|
|
12688
|
-
this.elementRef.nativeElement['backgroundGradientMobile'] = value;
|
|
12689
|
-
}
|
|
12690
|
-
get backgroundGradientMobile() {
|
|
12691
|
-
return this.elementRef.nativeElement['backgroundGradientMobile'];
|
|
12692
|
-
}
|
|
12693
|
-
set backgroundGradientTablet(value) {
|
|
12694
|
-
this.elementRef.nativeElement['backgroundGradientTablet'] = value;
|
|
12695
|
-
}
|
|
12696
|
-
get backgroundGradientTablet() {
|
|
12697
|
-
return this.elementRef.nativeElement['backgroundGradientTablet'];
|
|
12698
|
-
}
|
|
12699
|
-
set backgroundGradientLaptop(value) {
|
|
12700
|
-
this.elementRef.nativeElement['backgroundGradientLaptop'] = value;
|
|
12701
|
-
}
|
|
12702
|
-
get backgroundGradientLaptop() {
|
|
12703
|
-
return this.elementRef.nativeElement['backgroundGradientLaptop'];
|
|
12704
|
-
}
|
|
12705
12618
|
set backgroundImage(value) {
|
|
12706
12619
|
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
12707
12620
|
}
|
|
@@ -12738,23 +12651,53 @@ class PxContainer {
|
|
|
12738
12651
|
get backgroundPosition() {
|
|
12739
12652
|
return this.elementRef.nativeElement['backgroundPosition'];
|
|
12740
12653
|
}
|
|
12741
|
-
set
|
|
12742
|
-
this.elementRef.nativeElement['
|
|
12654
|
+
set contrastHelperGradient(value) {
|
|
12655
|
+
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
12743
12656
|
}
|
|
12744
|
-
get
|
|
12745
|
-
return this.elementRef.nativeElement['
|
|
12657
|
+
get contrastHelperGradient() {
|
|
12658
|
+
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
12746
12659
|
}
|
|
12747
|
-
set
|
|
12748
|
-
this.elementRef.nativeElement['
|
|
12660
|
+
set contrastHelperOverlay(value) {
|
|
12661
|
+
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
12749
12662
|
}
|
|
12750
|
-
get
|
|
12751
|
-
return this.elementRef.nativeElement['
|
|
12663
|
+
get contrastHelperOverlay() {
|
|
12664
|
+
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
12752
12665
|
}
|
|
12753
|
-
set
|
|
12754
|
-
this.elementRef.nativeElement['
|
|
12666
|
+
set minHeight(value) {
|
|
12667
|
+
this.elementRef.nativeElement['minHeight'] = value;
|
|
12755
12668
|
}
|
|
12756
|
-
get
|
|
12757
|
-
return this.elementRef.nativeElement['
|
|
12669
|
+
get minHeight() {
|
|
12670
|
+
return this.elementRef.nativeElement['minHeight'];
|
|
12671
|
+
}
|
|
12672
|
+
set hasGridding(value) {
|
|
12673
|
+
this.elementRef.nativeElement['hasGridding'] = value;
|
|
12674
|
+
}
|
|
12675
|
+
get hasGridding() {
|
|
12676
|
+
return this.elementRef.nativeElement['hasGridding'];
|
|
12677
|
+
}
|
|
12678
|
+
set hasGriddingMobile(value) {
|
|
12679
|
+
this.elementRef.nativeElement['hasGriddingMobile'] = value;
|
|
12680
|
+
}
|
|
12681
|
+
get hasGriddingMobile() {
|
|
12682
|
+
return this.elementRef.nativeElement['hasGriddingMobile'];
|
|
12683
|
+
}
|
|
12684
|
+
set hasGriddingTablet(value) {
|
|
12685
|
+
this.elementRef.nativeElement['hasGriddingTablet'] = value;
|
|
12686
|
+
}
|
|
12687
|
+
get hasGriddingTablet() {
|
|
12688
|
+
return this.elementRef.nativeElement['hasGriddingTablet'];
|
|
12689
|
+
}
|
|
12690
|
+
set hasGriddingLaptop(value) {
|
|
12691
|
+
this.elementRef.nativeElement['hasGriddingLaptop'] = value;
|
|
12692
|
+
}
|
|
12693
|
+
get hasGriddingLaptop() {
|
|
12694
|
+
return this.elementRef.nativeElement['hasGriddingLaptop'];
|
|
12695
|
+
}
|
|
12696
|
+
set hasGriddingDesktop(value) {
|
|
12697
|
+
this.elementRef.nativeElement['hasGriddingDesktop'] = value;
|
|
12698
|
+
}
|
|
12699
|
+
get hasGriddingDesktop() {
|
|
12700
|
+
return this.elementRef.nativeElement['hasGriddingDesktop'];
|
|
12758
12701
|
}
|
|
12759
12702
|
set inverted(value) {
|
|
12760
12703
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -12762,12 +12705,6 @@ class PxContainer {
|
|
|
12762
12705
|
get inverted() {
|
|
12763
12706
|
return this.elementRef.nativeElement['inverted'];
|
|
12764
12707
|
}
|
|
12765
|
-
set subgridRows(value) {
|
|
12766
|
-
this.elementRef.nativeElement['subgridRows'] = value;
|
|
12767
|
-
}
|
|
12768
|
-
get subgridRows() {
|
|
12769
|
-
return this.elementRef.nativeElement['subgridRows'];
|
|
12770
|
-
}
|
|
12771
12708
|
set grow(value) {
|
|
12772
12709
|
this.elementRef.nativeElement['grow'] = value;
|
|
12773
12710
|
}
|
|
@@ -13083,71 +13020,21 @@ class PxContainer {
|
|
|
13083
13020
|
constructor(elementRef) {
|
|
13084
13021
|
this.elementRef = elementRef;
|
|
13085
13022
|
}
|
|
13086
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
13087
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
13023
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxContentHeader, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13024
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxContentHeader, isStandalone: true, selector: "px-content-header", 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"], minHeight: ["min-height", "minHeight"], hasGridding: ["has-gridding", "hasGridding"], hasGriddingMobile: ["has-gridding--mobile", "hasGriddingMobile"], hasGriddingTablet: ["has-gridding--tablet", "hasGriddingTablet"], hasGriddingLaptop: ["has-gridding--laptop", "hasGriddingLaptop"], hasGriddingDesktop: ["has-gridding--desktop", "hasGriddingDesktop"], 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"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
13088
13025
|
}
|
|
13089
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
13026
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxContentHeader, decorators: [{
|
|
13090
13027
|
type: Directive,
|
|
13091
13028
|
args: [{
|
|
13092
|
-
selector: 'px-
|
|
13093
|
-
standalone: true,
|
|
13094
|
-
}]
|
|
13095
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
13096
|
-
type: Input
|
|
13097
|
-
}], borderColor: [{
|
|
13098
|
-
type: Input,
|
|
13099
|
-
args: ['border-color']
|
|
13100
|
-
}], borderSide: [{
|
|
13101
|
-
type: Input,
|
|
13102
|
-
args: ['border-side']
|
|
13103
|
-
}], borderSideMobile: [{
|
|
13104
|
-
type: Input,
|
|
13105
|
-
args: ['border-side--mobile']
|
|
13106
|
-
}], borderSideTablet: [{
|
|
13107
|
-
type: Input,
|
|
13108
|
-
args: ['border-side--tablet']
|
|
13109
|
-
}], borderSideLaptop: [{
|
|
13110
|
-
type: Input,
|
|
13111
|
-
args: ['border-side--laptop']
|
|
13112
|
-
}], borderRadius: [{
|
|
13113
|
-
type: Input,
|
|
13114
|
-
args: ['border-radius']
|
|
13115
|
-
}], noBorderRadius: [{
|
|
13116
|
-
type: Input,
|
|
13117
|
-
args: ['no-border-radius']
|
|
13118
|
-
}], noBorderRadiusMobile: [{
|
|
13119
|
-
type: Input,
|
|
13120
|
-
args: ['no-border-radius--mobile']
|
|
13121
|
-
}], noBorderRadiusTablet: [{
|
|
13122
|
-
type: Input,
|
|
13123
|
-
args: ['no-border-radius--tablet']
|
|
13124
|
-
}], noBorderRadiusLaptop: [{
|
|
13125
|
-
type: Input,
|
|
13126
|
-
args: ['no-border-radius--laptop']
|
|
13127
|
-
}], backgroundColor: [{
|
|
13128
|
-
type: Input,
|
|
13129
|
-
args: ['background-color']
|
|
13130
|
-
}], backgroundColorMobile: [{
|
|
13131
|
-
type: Input,
|
|
13132
|
-
args: ['background-color--mobile']
|
|
13133
|
-
}], backgroundColorTablet: [{
|
|
13134
|
-
type: Input,
|
|
13135
|
-
args: ['background-color--tablet']
|
|
13136
|
-
}], backgroundColorLaptop: [{
|
|
13029
|
+
selector: 'px-content-header',
|
|
13030
|
+
standalone: true,
|
|
13031
|
+
}]
|
|
13032
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { backgroundColor: [{
|
|
13137
13033
|
type: Input,
|
|
13138
|
-
args: ['background-color
|
|
13034
|
+
args: ['background-color']
|
|
13139
13035
|
}], backgroundGradient: [{
|
|
13140
13036
|
type: Input,
|
|
13141
13037
|
args: ['background-gradient']
|
|
13142
|
-
}], backgroundGradientMobile: [{
|
|
13143
|
-
type: Input,
|
|
13144
|
-
args: ['background-gradient--mobile']
|
|
13145
|
-
}], backgroundGradientTablet: [{
|
|
13146
|
-
type: Input,
|
|
13147
|
-
args: ['background-gradient--tablet']
|
|
13148
|
-
}], backgroundGradientLaptop: [{
|
|
13149
|
-
type: Input,
|
|
13150
|
-
args: ['background-gradient--laptop']
|
|
13151
13038
|
}], backgroundImage: [{
|
|
13152
13039
|
type: Input,
|
|
13153
13040
|
args: ['background-image']
|
|
@@ -13166,20 +13053,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
13166
13053
|
}], backgroundPosition: [{
|
|
13167
13054
|
type: Input,
|
|
13168
13055
|
args: ['background-position']
|
|
13169
|
-
}],
|
|
13056
|
+
}], contrastHelperGradient: [{
|
|
13170
13057
|
type: Input,
|
|
13171
|
-
args: ['
|
|
13172
|
-
}],
|
|
13058
|
+
args: ['contrast-helper-gradient']
|
|
13059
|
+
}], contrastHelperOverlay: [{
|
|
13173
13060
|
type: Input,
|
|
13174
|
-
args: ['
|
|
13175
|
-
}],
|
|
13061
|
+
args: ['contrast-helper-overlay']
|
|
13062
|
+
}], minHeight: [{
|
|
13176
13063
|
type: Input,
|
|
13177
|
-
args: ['
|
|
13064
|
+
args: ['min-height']
|
|
13065
|
+
}], hasGridding: [{
|
|
13066
|
+
type: Input,
|
|
13067
|
+
args: ['has-gridding']
|
|
13068
|
+
}], hasGriddingMobile: [{
|
|
13069
|
+
type: Input,
|
|
13070
|
+
args: ['has-gridding--mobile']
|
|
13071
|
+
}], hasGriddingTablet: [{
|
|
13072
|
+
type: Input,
|
|
13073
|
+
args: ['has-gridding--tablet']
|
|
13074
|
+
}], hasGriddingLaptop: [{
|
|
13075
|
+
type: Input,
|
|
13076
|
+
args: ['has-gridding--laptop']
|
|
13077
|
+
}], hasGriddingDesktop: [{
|
|
13078
|
+
type: Input,
|
|
13079
|
+
args: ['has-gridding--desktop']
|
|
13178
13080
|
}], inverted: [{
|
|
13179
13081
|
type: Input
|
|
13180
|
-
}], subgridRows: [{
|
|
13181
|
-
type: Input,
|
|
13182
|
-
args: ['subgrid-rows']
|
|
13183
13082
|
}], grow: [{
|
|
13184
13083
|
type: Input
|
|
13185
13084
|
}], growMobile: [{
|
|
@@ -13332,6 +13231,107 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
13332
13231
|
type: Input,
|
|
13333
13232
|
args: ['word-break-all--desktop']
|
|
13334
13233
|
}] } });
|
|
13234
|
+
/**
|
|
13235
|
+
* @description Type-only wrapper for <px-drawer>
|
|
13236
|
+
*/
|
|
13237
|
+
class PxDrawer {
|
|
13238
|
+
elementRef;
|
|
13239
|
+
set open(value) {
|
|
13240
|
+
this.elementRef.nativeElement['open'] = value;
|
|
13241
|
+
}
|
|
13242
|
+
get open() {
|
|
13243
|
+
return this.elementRef.nativeElement['open'];
|
|
13244
|
+
}
|
|
13245
|
+
set ariaLabelCloseButton(value) {
|
|
13246
|
+
this.elementRef.nativeElement['ariaLabelCloseButton'] = value;
|
|
13247
|
+
}
|
|
13248
|
+
get ariaLabelCloseButton() {
|
|
13249
|
+
return this.elementRef.nativeElement['ariaLabelCloseButton'];
|
|
13250
|
+
}
|
|
13251
|
+
set openedby(value) {
|
|
13252
|
+
this.elementRef.nativeElement['openedby'] = value;
|
|
13253
|
+
}
|
|
13254
|
+
get openedby() {
|
|
13255
|
+
return this.elementRef.nativeElement['openedby'];
|
|
13256
|
+
}
|
|
13257
|
+
set closedby(value) {
|
|
13258
|
+
this.elementRef.nativeElement['closedby'] = value;
|
|
13259
|
+
}
|
|
13260
|
+
get closedby() {
|
|
13261
|
+
return this.elementRef.nativeElement['closedby'];
|
|
13262
|
+
}
|
|
13263
|
+
set fullscreen(value) {
|
|
13264
|
+
this.elementRef.nativeElement['fullscreen'] = value;
|
|
13265
|
+
}
|
|
13266
|
+
get fullscreen() {
|
|
13267
|
+
return this.elementRef.nativeElement['fullscreen'];
|
|
13268
|
+
}
|
|
13269
|
+
set fullscreenMobile(value) {
|
|
13270
|
+
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
13271
|
+
}
|
|
13272
|
+
get fullscreenMobile() {
|
|
13273
|
+
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
13274
|
+
}
|
|
13275
|
+
set fullscreenTablet(value) {
|
|
13276
|
+
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
13277
|
+
}
|
|
13278
|
+
get fullscreenTablet() {
|
|
13279
|
+
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
13280
|
+
}
|
|
13281
|
+
set fullscreenLaptop(value) {
|
|
13282
|
+
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
13283
|
+
}
|
|
13284
|
+
get fullscreenLaptop() {
|
|
13285
|
+
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
13286
|
+
}
|
|
13287
|
+
set fullscreenDesktop(value) {
|
|
13288
|
+
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
13289
|
+
}
|
|
13290
|
+
get fullscreenDesktop() {
|
|
13291
|
+
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
13292
|
+
}
|
|
13293
|
+
HIDE_EVENT = new EventEmitter();
|
|
13294
|
+
constructor(elementRef) {
|
|
13295
|
+
this.elementRef = elementRef;
|
|
13296
|
+
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
13297
|
+
this.HIDE_EVENT.emit(e.detail);
|
|
13298
|
+
});
|
|
13299
|
+
}
|
|
13300
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13301
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxDrawer, isStandalone: true, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby", closedby: "closedby", fullscreen: "fullscreen", fullscreenMobile: ["fullscreen--mobile", "fullscreenMobile"], fullscreenTablet: ["fullscreen--tablet", "fullscreenTablet"], fullscreenLaptop: ["fullscreen--laptop", "fullscreenLaptop"], fullscreenDesktop: ["fullscreen--desktop", "fullscreenDesktop"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
13302
|
+
}
|
|
13303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, decorators: [{
|
|
13304
|
+
type: Directive,
|
|
13305
|
+
args: [{
|
|
13306
|
+
selector: 'px-drawer',
|
|
13307
|
+
standalone: true,
|
|
13308
|
+
}]
|
|
13309
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
13310
|
+
type: Input
|
|
13311
|
+
}], ariaLabelCloseButton: [{
|
|
13312
|
+
type: Input,
|
|
13313
|
+
args: ['aria-label-close-button']
|
|
13314
|
+
}], openedby: [{
|
|
13315
|
+
type: Input
|
|
13316
|
+
}], closedby: [{
|
|
13317
|
+
type: Input
|
|
13318
|
+
}], fullscreen: [{
|
|
13319
|
+
type: Input
|
|
13320
|
+
}], fullscreenMobile: [{
|
|
13321
|
+
type: Input,
|
|
13322
|
+
args: ['fullscreen--mobile']
|
|
13323
|
+
}], fullscreenTablet: [{
|
|
13324
|
+
type: Input,
|
|
13325
|
+
args: ['fullscreen--tablet']
|
|
13326
|
+
}], fullscreenLaptop: [{
|
|
13327
|
+
type: Input,
|
|
13328
|
+
args: ['fullscreen--laptop']
|
|
13329
|
+
}], fullscreenDesktop: [{
|
|
13330
|
+
type: Input,
|
|
13331
|
+
args: ['fullscreen--desktop']
|
|
13332
|
+
}], HIDE_EVENT: [{
|
|
13333
|
+
type: Output
|
|
13334
|
+
}] } });
|
|
13335
13335
|
/**
|
|
13336
13336
|
* @description Type-only wrapper for <px-dropdown>
|
|
13337
13337
|
*/
|
|
@@ -34747,57 +34747,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
34747
34747
|
type: Input,
|
|
34748
34748
|
args: ['word-break-all--desktop']
|
|
34749
34749
|
}] } });
|
|
34750
|
-
/**
|
|
34751
|
-
* @description Type-only wrapper for <px-spinner>
|
|
34752
|
-
*/
|
|
34753
|
-
class PxSpinner {
|
|
34754
|
-
elementRef;
|
|
34755
|
-
set size(value) {
|
|
34756
|
-
this.elementRef.nativeElement['size'] = value;
|
|
34757
|
-
}
|
|
34758
|
-
get size() {
|
|
34759
|
-
return this.elementRef.nativeElement['size'];
|
|
34760
|
-
}
|
|
34761
|
-
set inverted(value) {
|
|
34762
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
34763
|
-
}
|
|
34764
|
-
get inverted() {
|
|
34765
|
-
return this.elementRef.nativeElement['inverted'];
|
|
34766
|
-
}
|
|
34767
|
-
set timeout(value) {
|
|
34768
|
-
this.elementRef.nativeElement['timeout'] = value;
|
|
34769
|
-
}
|
|
34770
|
-
get timeout() {
|
|
34771
|
-
return this.elementRef.nativeElement['timeout'];
|
|
34772
|
-
}
|
|
34773
|
-
set ariaLabel(value) {
|
|
34774
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
34775
|
-
}
|
|
34776
|
-
get ariaLabel() {
|
|
34777
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
34778
|
-
}
|
|
34779
|
-
constructor(elementRef) {
|
|
34780
|
-
this.elementRef = elementRef;
|
|
34781
|
-
}
|
|
34782
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
34783
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpinner, isStandalone: true, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
34784
|
-
}
|
|
34785
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
|
|
34786
|
-
type: Directive,
|
|
34787
|
-
args: [{
|
|
34788
|
-
selector: 'px-spinner',
|
|
34789
|
-
standalone: true,
|
|
34790
|
-
}]
|
|
34791
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
34792
|
-
type: Input
|
|
34793
|
-
}], inverted: [{
|
|
34794
|
-
type: Input
|
|
34795
|
-
}], timeout: [{
|
|
34796
|
-
type: Input
|
|
34797
|
-
}], ariaLabel: [{
|
|
34798
|
-
type: Input,
|
|
34799
|
-
args: ['aria-label']
|
|
34800
|
-
}] } });
|
|
34801
34750
|
/**
|
|
34802
34751
|
* @description Type-only wrapper for <px-status>
|
|
34803
34752
|
*/
|
|
@@ -35348,6 +35297,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
35348
35297
|
type: Input,
|
|
35349
35298
|
args: ['word-break-all--desktop']
|
|
35350
35299
|
}] } });
|
|
35300
|
+
/**
|
|
35301
|
+
* @description Type-only wrapper for <px-spinner>
|
|
35302
|
+
*/
|
|
35303
|
+
class PxSpinner {
|
|
35304
|
+
elementRef;
|
|
35305
|
+
set size(value) {
|
|
35306
|
+
this.elementRef.nativeElement['size'] = value;
|
|
35307
|
+
}
|
|
35308
|
+
get size() {
|
|
35309
|
+
return this.elementRef.nativeElement['size'];
|
|
35310
|
+
}
|
|
35311
|
+
set inverted(value) {
|
|
35312
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
35313
|
+
}
|
|
35314
|
+
get inverted() {
|
|
35315
|
+
return this.elementRef.nativeElement['inverted'];
|
|
35316
|
+
}
|
|
35317
|
+
set timeout(value) {
|
|
35318
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
35319
|
+
}
|
|
35320
|
+
get timeout() {
|
|
35321
|
+
return this.elementRef.nativeElement['timeout'];
|
|
35322
|
+
}
|
|
35323
|
+
set ariaLabel(value) {
|
|
35324
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
35325
|
+
}
|
|
35326
|
+
get ariaLabel() {
|
|
35327
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
35328
|
+
}
|
|
35329
|
+
constructor(elementRef) {
|
|
35330
|
+
this.elementRef = elementRef;
|
|
35331
|
+
}
|
|
35332
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
35333
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpinner, isStandalone: true, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
35334
|
+
}
|
|
35335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
|
|
35336
|
+
type: Directive,
|
|
35337
|
+
args: [{
|
|
35338
|
+
selector: 'px-spinner',
|
|
35339
|
+
standalone: true,
|
|
35340
|
+
}]
|
|
35341
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
35342
|
+
type: Input
|
|
35343
|
+
}], inverted: [{
|
|
35344
|
+
type: Input
|
|
35345
|
+
}], timeout: [{
|
|
35346
|
+
type: Input
|
|
35347
|
+
}], ariaLabel: [{
|
|
35348
|
+
type: Input,
|
|
35349
|
+
args: ['aria-label']
|
|
35350
|
+
}] } });
|
|
35351
35351
|
/**
|
|
35352
35352
|
* @description Type-only wrapper for <px-status-card>
|
|
35353
35353
|
*/
|
|
@@ -41266,7 +41266,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41266
41266
|
}] } });
|
|
41267
41267
|
class Lavender {
|
|
41268
41268
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41269
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContentHeader, PxDrawer,
|
|
41269
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, 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, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxStatus, PxSpinner, 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, PxButtonWrapper, 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, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxStatus, PxSpinner, 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] });
|
|
41270
41270
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41271
41271
|
}
|
|
41272
41272
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41296,9 +41296,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41296
41296
|
PxCheckbox,
|
|
41297
41297
|
PxColorOption,
|
|
41298
41298
|
PxColorOptionLink,
|
|
41299
|
+
PxContainer,
|
|
41299
41300
|
PxContentHeader,
|
|
41300
41301
|
PxDrawer,
|
|
41301
|
-
PxContainer,
|
|
41302
41302
|
PxDropdown,
|
|
41303
41303
|
PxFieldset,
|
|
41304
41304
|
PxGrid,
|
|
@@ -41342,8 +41342,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41342
41342
|
PxSeparator,
|
|
41343
41343
|
PxSkeleton,
|
|
41344
41344
|
PxSpan,
|
|
41345
|
-
PxSpinner,
|
|
41346
41345
|
PxStatus,
|
|
41346
|
+
PxSpinner,
|
|
41347
41347
|
PxStatusCard,
|
|
41348
41348
|
PxStickyContainer,
|
|
41349
41349
|
PxThemeSwitcher,
|
|
@@ -41398,9 +41398,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41398
41398
|
PxCheckbox,
|
|
41399
41399
|
PxColorOption,
|
|
41400
41400
|
PxColorOptionLink,
|
|
41401
|
+
PxContainer,
|
|
41401
41402
|
PxContentHeader,
|
|
41402
41403
|
PxDrawer,
|
|
41403
|
-
PxContainer,
|
|
41404
41404
|
PxDropdown,
|
|
41405
41405
|
PxFieldset,
|
|
41406
41406
|
PxGrid,
|
|
@@ -41444,8 +41444,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41444
41444
|
PxSeparator,
|
|
41445
41445
|
PxSkeleton,
|
|
41446
41446
|
PxSpan,
|
|
41447
|
-
PxSpinner,
|
|
41448
41447
|
PxStatus,
|
|
41448
|
+
PxSpinner,
|
|
41449
41449
|
PxStatusCard,
|
|
41450
41450
|
PxStickyContainer,
|
|
41451
41451
|
PxThemeSwitcher,
|