@proximus/lavender-angular 1.4.15-alpha.14 → 1.4.15-alpha.16

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.
@@ -2888,16 +2888,134 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
2888
2888
  args: ['word-break-all--desktop']
2889
2889
  }] } });
2890
2890
  /**
2891
- * @description Type-only wrapper for <px-breadcrumb-item>
2891
+ * @description Type-only wrapper for <px-button>
2892
2892
  */
2893
- class PxBreadcrumbItem {
2893
+ class PxButton {
2894
2894
  elementRef;
2895
+ set variant(value) {
2896
+ this.elementRef.nativeElement['variant'] = value;
2897
+ }
2898
+ get variant() {
2899
+ return this.elementRef.nativeElement['variant'];
2900
+ }
2901
+ set state(value) {
2902
+ this.elementRef.nativeElement['state'] = value;
2903
+ }
2904
+ get state() {
2905
+ return this.elementRef.nativeElement['state'];
2906
+ }
2907
+ set loading(value) {
2908
+ this.elementRef.nativeElement['loading'] = value;
2909
+ }
2910
+ get loading() {
2911
+ return this.elementRef.nativeElement['loading'];
2912
+ }
2913
+ set shape(value) {
2914
+ this.elementRef.nativeElement['shape'] = value;
2915
+ }
2916
+ get shape() {
2917
+ return this.elementRef.nativeElement['shape'];
2918
+ }
2919
+ set shapeMobile(value) {
2920
+ this.elementRef.nativeElement['shapeMobile'] = value;
2921
+ }
2922
+ get shapeMobile() {
2923
+ return this.elementRef.nativeElement['shapeMobile'];
2924
+ }
2925
+ set shapeTablet(value) {
2926
+ this.elementRef.nativeElement['shapeTablet'] = value;
2927
+ }
2928
+ get shapeTablet() {
2929
+ return this.elementRef.nativeElement['shapeTablet'];
2930
+ }
2931
+ set shapeLaptop(value) {
2932
+ this.elementRef.nativeElement['shapeLaptop'] = value;
2933
+ }
2934
+ get shapeLaptop() {
2935
+ return this.elementRef.nativeElement['shapeLaptop'];
2936
+ }
2937
+ set shapeDesktop(value) {
2938
+ this.elementRef.nativeElement['shapeDesktop'] = value;
2939
+ }
2940
+ get shapeDesktop() {
2941
+ return this.elementRef.nativeElement['shapeDesktop'];
2942
+ }
2895
2943
  set inverted(value) {
2896
2944
  this.elementRef.nativeElement['inverted'] = value;
2897
2945
  }
2898
2946
  get inverted() {
2899
2947
  return this.elementRef.nativeElement['inverted'];
2900
2948
  }
2949
+ set ariaExpanded(value) {
2950
+ this.elementRef.nativeElement['ariaExpanded'] = value;
2951
+ }
2952
+ get ariaExpanded() {
2953
+ return this.elementRef.nativeElement['ariaExpanded'];
2954
+ }
2955
+ set extended(value) {
2956
+ this.elementRef.nativeElement['extended'] = value;
2957
+ }
2958
+ get extended() {
2959
+ return this.elementRef.nativeElement['extended'];
2960
+ }
2961
+ set extendedMobile(value) {
2962
+ this.elementRef.nativeElement['extendedMobile'] = value;
2963
+ }
2964
+ get extendedMobile() {
2965
+ return this.elementRef.nativeElement['extendedMobile'];
2966
+ }
2967
+ set extendedTablet(value) {
2968
+ this.elementRef.nativeElement['extendedTablet'] = value;
2969
+ }
2970
+ get extendedTablet() {
2971
+ return this.elementRef.nativeElement['extendedTablet'];
2972
+ }
2973
+ set extendedLaptop(value) {
2974
+ this.elementRef.nativeElement['extendedLaptop'] = value;
2975
+ }
2976
+ get extendedLaptop() {
2977
+ return this.elementRef.nativeElement['extendedLaptop'];
2978
+ }
2979
+ set extendedDesktop(value) {
2980
+ this.elementRef.nativeElement['extendedDesktop'] = value;
2981
+ }
2982
+ get extendedDesktop() {
2983
+ return this.elementRef.nativeElement['extendedDesktop'];
2984
+ }
2985
+ set size(value) {
2986
+ this.elementRef.nativeElement['size'] = value;
2987
+ }
2988
+ get size() {
2989
+ return this.elementRef.nativeElement['size'];
2990
+ }
2991
+ /** The name of the button, submitted as a pair with the button's value as part of the form data. */
2992
+ set name(value) {
2993
+ this.elementRef.nativeElement['name'] = value;
2994
+ }
2995
+ get name() {
2996
+ return this.elementRef.nativeElement['name'];
2997
+ }
2998
+ /** The value associated with the button's name when it's submitted with a form. */
2999
+ set value(value) {
3000
+ this.elementRef.nativeElement['value'] = value;
3001
+ }
3002
+ get value() {
3003
+ return this.elementRef.nativeElement['value'];
3004
+ }
3005
+ /** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
3006
+ set type(value) {
3007
+ this.elementRef.nativeElement['type'] = value;
3008
+ }
3009
+ get type() {
3010
+ return this.elementRef.nativeElement['type'];
3011
+ }
3012
+ /** Whether the button is disabled. */
3013
+ set disabled(value) {
3014
+ this.elementRef.nativeElement['disabled'] = value;
3015
+ }
3016
+ get disabled() {
3017
+ return this.elementRef.nativeElement['disabled'];
3018
+ }
2901
3019
  set grow(value) {
2902
3020
  this.elementRef.nativeElement['grow'] = value;
2903
3021
  }
@@ -3210,23 +3328,66 @@ class PxBreadcrumbItem {
3210
3328
  get wordBreakAllDesktop() {
3211
3329
  return this.elementRef.nativeElement['wordBreakAllDesktop'];
3212
3330
  }
3213
- BREADCRUMB_ITEM_CONNECTED_EVENT = new EventEmitter();
3214
3331
  constructor(elementRef) {
3215
3332
  this.elementRef = elementRef;
3216
- this.elementRef.nativeElement.addEventListener('BREADCRUMB_ITEM_CONNECTED_EVENT', (e) => {
3217
- this.BREADCRUMB_ITEM_CONNECTED_EVENT.emit(e.detail);
3218
- });
3219
3333
  }
3220
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxBreadcrumbItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3221
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxBreadcrumbItem, isStandalone: true, 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"], 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"] }, outputs: { BREADCRUMB_ITEM_CONNECTED_EVENT: "BREADCRUMB_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
3334
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxButton, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3335
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxButton, isStandalone: true, selector: "px-button", inputs: { variant: "variant", state: "state", loading: "loading", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], inverted: "inverted", ariaExpanded: ["aria-expanded", "ariaExpanded"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], size: "size", name: "name", value: "value", type: "type", disabled: "disabled", 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 });
3222
3336
  }
3223
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxBreadcrumbItem, decorators: [{
3337
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxButton, decorators: [{
3224
3338
  type: Directive,
3225
3339
  args: [{
3226
- selector: 'px-breadcrumb-item',
3340
+ selector: 'px-button',
3227
3341
  standalone: true,
3228
3342
  }]
3229
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
3343
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
3344
+ type: Input
3345
+ }], state: [{
3346
+ type: Input
3347
+ }], loading: [{
3348
+ type: Input
3349
+ }], shape: [{
3350
+ type: Input
3351
+ }], shapeMobile: [{
3352
+ type: Input,
3353
+ args: ['shape--mobile']
3354
+ }], shapeTablet: [{
3355
+ type: Input,
3356
+ args: ['shape--tablet']
3357
+ }], shapeLaptop: [{
3358
+ type: Input,
3359
+ args: ['shape--laptop']
3360
+ }], shapeDesktop: [{
3361
+ type: Input,
3362
+ args: ['shape--desktop']
3363
+ }], inverted: [{
3364
+ type: Input
3365
+ }], ariaExpanded: [{
3366
+ type: Input,
3367
+ args: ['aria-expanded']
3368
+ }], extended: [{
3369
+ type: Input
3370
+ }], extendedMobile: [{
3371
+ type: Input,
3372
+ args: ['extended--mobile']
3373
+ }], extendedTablet: [{
3374
+ type: Input,
3375
+ args: ['extended--tablet']
3376
+ }], extendedLaptop: [{
3377
+ type: Input,
3378
+ args: ['extended--laptop']
3379
+ }], extendedDesktop: [{
3380
+ type: Input,
3381
+ args: ['extended--desktop']
3382
+ }], size: [{
3383
+ type: Input
3384
+ }], name: [{
3385
+ type: Input
3386
+ }], value: [{
3387
+ type: Input
3388
+ }], type: [{
3389
+ type: Input
3390
+ }], disabled: [{
3230
3391
  type: Input
3231
3392
  }], grow: [{
3232
3393
  type: Input
@@ -3379,25 +3540,135 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
3379
3540
  }], wordBreakAllDesktop: [{
3380
3541
  type: Input,
3381
3542
  args: ['word-break-all--desktop']
3382
- }], BREADCRUMB_ITEM_CONNECTED_EVENT: [{
3383
- type: Output
3384
3543
  }] } });
3385
3544
  /**
3386
- * @description Type-only wrapper for <px-breadcrumb>
3545
+ * @description Type-only wrapper for <px-button-wrapper>
3387
3546
  */
3388
- class PxBreadcrumb {
3547
+ class PxButtonWrapper {
3389
3548
  elementRef;
3549
+ /** The name of the button, submitted as a pair with the button's value as part of the form data. */
3550
+ set name(value) {
3551
+ this.elementRef.nativeElement['name'] = value;
3552
+ }
3553
+ get name() {
3554
+ return this.elementRef.nativeElement['name'];
3555
+ }
3556
+ /** The value associated with the button's name when it's submitted with a form. */
3557
+ set value(value) {
3558
+ this.elementRef.nativeElement['value'] = value;
3559
+ }
3560
+ get value() {
3561
+ return this.elementRef.nativeElement['value'];
3562
+ }
3563
+ /** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
3564
+ set type(value) {
3565
+ this.elementRef.nativeElement['type'] = value;
3566
+ }
3567
+ get type() {
3568
+ return this.elementRef.nativeElement['type'];
3569
+ }
3570
+ /** Whether the button is disabled. */
3571
+ set disabled(value) {
3572
+ this.elementRef.nativeElement['disabled'] = value;
3573
+ }
3574
+ get disabled() {
3575
+ return this.elementRef.nativeElement['disabled'];
3576
+ }
3577
+ set variant(value) {
3578
+ this.elementRef.nativeElement['variant'] = value;
3579
+ }
3580
+ get variant() {
3581
+ return this.elementRef.nativeElement['variant'];
3582
+ }
3583
+ set state(value) {
3584
+ this.elementRef.nativeElement['state'] = value;
3585
+ }
3586
+ get state() {
3587
+ return this.elementRef.nativeElement['state'];
3588
+ }
3589
+ set loading(value) {
3590
+ this.elementRef.nativeElement['loading'] = value;
3591
+ }
3592
+ get loading() {
3593
+ return this.elementRef.nativeElement['loading'];
3594
+ }
3595
+ set shape(value) {
3596
+ this.elementRef.nativeElement['shape'] = value;
3597
+ }
3598
+ get shape() {
3599
+ return this.elementRef.nativeElement['shape'];
3600
+ }
3601
+ set shapeMobile(value) {
3602
+ this.elementRef.nativeElement['shapeMobile'] = value;
3603
+ }
3604
+ get shapeMobile() {
3605
+ return this.elementRef.nativeElement['shapeMobile'];
3606
+ }
3607
+ set shapeTablet(value) {
3608
+ this.elementRef.nativeElement['shapeTablet'] = value;
3609
+ }
3610
+ get shapeTablet() {
3611
+ return this.elementRef.nativeElement['shapeTablet'];
3612
+ }
3613
+ set shapeLaptop(value) {
3614
+ this.elementRef.nativeElement['shapeLaptop'] = value;
3615
+ }
3616
+ get shapeLaptop() {
3617
+ return this.elementRef.nativeElement['shapeLaptop'];
3618
+ }
3619
+ set shapeDesktop(value) {
3620
+ this.elementRef.nativeElement['shapeDesktop'] = value;
3621
+ }
3622
+ get shapeDesktop() {
3623
+ return this.elementRef.nativeElement['shapeDesktop'];
3624
+ }
3390
3625
  set inverted(value) {
3391
3626
  this.elementRef.nativeElement['inverted'] = value;
3392
3627
  }
3393
3628
  get inverted() {
3394
3629
  return this.elementRef.nativeElement['inverted'];
3395
3630
  }
3396
- set ariaLabel(value) {
3397
- this.elementRef.nativeElement['ariaLabel'] = value;
3631
+ set ariaExpanded(value) {
3632
+ this.elementRef.nativeElement['ariaExpanded'] = value;
3398
3633
  }
3399
- get ariaLabel() {
3400
- return this.elementRef.nativeElement['ariaLabel'];
3634
+ get ariaExpanded() {
3635
+ return this.elementRef.nativeElement['ariaExpanded'];
3636
+ }
3637
+ set extended(value) {
3638
+ this.elementRef.nativeElement['extended'] = value;
3639
+ }
3640
+ get extended() {
3641
+ return this.elementRef.nativeElement['extended'];
3642
+ }
3643
+ set extendedMobile(value) {
3644
+ this.elementRef.nativeElement['extendedMobile'] = value;
3645
+ }
3646
+ get extendedMobile() {
3647
+ return this.elementRef.nativeElement['extendedMobile'];
3648
+ }
3649
+ set extendedTablet(value) {
3650
+ this.elementRef.nativeElement['extendedTablet'] = value;
3651
+ }
3652
+ get extendedTablet() {
3653
+ return this.elementRef.nativeElement['extendedTablet'];
3654
+ }
3655
+ set extendedLaptop(value) {
3656
+ this.elementRef.nativeElement['extendedLaptop'] = value;
3657
+ }
3658
+ get extendedLaptop() {
3659
+ return this.elementRef.nativeElement['extendedLaptop'];
3660
+ }
3661
+ set extendedDesktop(value) {
3662
+ this.elementRef.nativeElement['extendedDesktop'] = value;
3663
+ }
3664
+ get extendedDesktop() {
3665
+ return this.elementRef.nativeElement['extendedDesktop'];
3666
+ }
3667
+ set size(value) {
3668
+ this.elementRef.nativeElement['size'] = value;
3669
+ }
3670
+ get size() {
3671
+ return this.elementRef.nativeElement['size'];
3401
3672
  }
3402
3673
  set grow(value) {
3403
3674
  this.elementRef.nativeElement['grow'] = value;
@@ -3714,20 +3985,64 @@ class PxBreadcrumb {
3714
3985
  constructor(elementRef) {
3715
3986
  this.elementRef = elementRef;
3716
3987
  }
3717
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxBreadcrumb, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3718
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxBreadcrumb, isStandalone: true, 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"], 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 });
3988
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxButtonWrapper, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3989
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxButtonWrapper, isStandalone: true, selector: "px-button-wrapper", inputs: { name: "name", value: "value", type: "type", disabled: "disabled", variant: "variant", state: "state", loading: "loading", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], inverted: "inverted", ariaExpanded: ["aria-expanded", "ariaExpanded"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], size: "size", 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 });
3719
3990
  }
3720
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxBreadcrumb, decorators: [{
3991
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxButtonWrapper, decorators: [{
3721
3992
  type: Directive,
3722
3993
  args: [{
3723
- selector: 'px-breadcrumb',
3994
+ selector: 'px-button-wrapper',
3724
3995
  standalone: true,
3725
3996
  }]
3726
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
3997
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
3727
3998
  type: Input
3728
- }], ariaLabel: [{
3999
+ }], value: [{
4000
+ type: Input
4001
+ }], type: [{
4002
+ type: Input
4003
+ }], disabled: [{
4004
+ type: Input
4005
+ }], variant: [{
4006
+ type: Input
4007
+ }], state: [{
4008
+ type: Input
4009
+ }], loading: [{
4010
+ type: Input
4011
+ }], shape: [{
4012
+ type: Input
4013
+ }], shapeMobile: [{
3729
4014
  type: Input,
3730
- args: ['aria-label']
4015
+ args: ['shape--mobile']
4016
+ }], shapeTablet: [{
4017
+ type: Input,
4018
+ args: ['shape--tablet']
4019
+ }], shapeLaptop: [{
4020
+ type: Input,
4021
+ args: ['shape--laptop']
4022
+ }], shapeDesktop: [{
4023
+ type: Input,
4024
+ args: ['shape--desktop']
4025
+ }], inverted: [{
4026
+ type: Input
4027
+ }], ariaExpanded: [{
4028
+ type: Input,
4029
+ args: ['aria-expanded']
4030
+ }], extended: [{
4031
+ type: Input
4032
+ }], extendedMobile: [{
4033
+ type: Input,
4034
+ args: ['extended--mobile']
4035
+ }], extendedTablet: [{
4036
+ type: Input,
4037
+ args: ['extended--tablet']
4038
+ }], extendedLaptop: [{
4039
+ type: Input,
4040
+ args: ['extended--laptop']
4041
+ }], extendedDesktop: [{
4042
+ type: Input,
4043
+ args: ['extended--desktop']
4044
+ }], size: [{
4045
+ type: Input
3731
4046
  }], grow: [{
3732
4047
  type: Input
3733
4048
  }], growMobile: [{
@@ -3881,134 +4196,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
3881
4196
  args: ['word-break-all--desktop']
3882
4197
  }] } });
3883
4198
  /**
3884
- * @description Type-only wrapper for <px-button>
4199
+ * @description Type-only wrapper for <px-breadcrumb-item>
3885
4200
  */
3886
- class PxButton {
4201
+ class PxBreadcrumbItem {
3887
4202
  elementRef;
3888
- set variant(value) {
3889
- this.elementRef.nativeElement['variant'] = value;
3890
- }
3891
- get variant() {
3892
- return this.elementRef.nativeElement['variant'];
3893
- }
3894
- set state(value) {
3895
- this.elementRef.nativeElement['state'] = value;
3896
- }
3897
- get state() {
3898
- return this.elementRef.nativeElement['state'];
3899
- }
3900
- set loading(value) {
3901
- this.elementRef.nativeElement['loading'] = value;
3902
- }
3903
- get loading() {
3904
- return this.elementRef.nativeElement['loading'];
3905
- }
3906
- set shape(value) {
3907
- this.elementRef.nativeElement['shape'] = value;
3908
- }
3909
- get shape() {
3910
- return this.elementRef.nativeElement['shape'];
3911
- }
3912
- set shapeMobile(value) {
3913
- this.elementRef.nativeElement['shapeMobile'] = value;
3914
- }
3915
- get shapeMobile() {
3916
- return this.elementRef.nativeElement['shapeMobile'];
3917
- }
3918
- set shapeTablet(value) {
3919
- this.elementRef.nativeElement['shapeTablet'] = value;
3920
- }
3921
- get shapeTablet() {
3922
- return this.elementRef.nativeElement['shapeTablet'];
3923
- }
3924
- set shapeLaptop(value) {
3925
- this.elementRef.nativeElement['shapeLaptop'] = value;
3926
- }
3927
- get shapeLaptop() {
3928
- return this.elementRef.nativeElement['shapeLaptop'];
3929
- }
3930
- set shapeDesktop(value) {
3931
- this.elementRef.nativeElement['shapeDesktop'] = value;
3932
- }
3933
- get shapeDesktop() {
3934
- return this.elementRef.nativeElement['shapeDesktop'];
3935
- }
3936
4203
  set inverted(value) {
3937
4204
  this.elementRef.nativeElement['inverted'] = value;
3938
4205
  }
3939
4206
  get inverted() {
3940
4207
  return this.elementRef.nativeElement['inverted'];
3941
4208
  }
3942
- set ariaExpanded(value) {
3943
- this.elementRef.nativeElement['ariaExpanded'] = value;
3944
- }
3945
- get ariaExpanded() {
3946
- return this.elementRef.nativeElement['ariaExpanded'];
3947
- }
3948
- set extended(value) {
3949
- this.elementRef.nativeElement['extended'] = value;
3950
- }
3951
- get extended() {
3952
- return this.elementRef.nativeElement['extended'];
3953
- }
3954
- set extendedMobile(value) {
3955
- this.elementRef.nativeElement['extendedMobile'] = value;
3956
- }
3957
- get extendedMobile() {
3958
- return this.elementRef.nativeElement['extendedMobile'];
3959
- }
3960
- set extendedTablet(value) {
3961
- this.elementRef.nativeElement['extendedTablet'] = value;
3962
- }
3963
- get extendedTablet() {
3964
- return this.elementRef.nativeElement['extendedTablet'];
3965
- }
3966
- set extendedLaptop(value) {
3967
- this.elementRef.nativeElement['extendedLaptop'] = value;
3968
- }
3969
- get extendedLaptop() {
3970
- return this.elementRef.nativeElement['extendedLaptop'];
3971
- }
3972
- set extendedDesktop(value) {
3973
- this.elementRef.nativeElement['extendedDesktop'] = value;
3974
- }
3975
- get extendedDesktop() {
3976
- return this.elementRef.nativeElement['extendedDesktop'];
3977
- }
3978
- set size(value) {
3979
- this.elementRef.nativeElement['size'] = value;
3980
- }
3981
- get size() {
3982
- return this.elementRef.nativeElement['size'];
3983
- }
3984
- /** The name of the button, submitted as a pair with the button's value as part of the form data. */
3985
- set name(value) {
3986
- this.elementRef.nativeElement['name'] = value;
3987
- }
3988
- get name() {
3989
- return this.elementRef.nativeElement['name'];
3990
- }
3991
- /** The value associated with the button's name when it's submitted with a form. */
3992
- set value(value) {
3993
- this.elementRef.nativeElement['value'] = value;
3994
- }
3995
- get value() {
3996
- return this.elementRef.nativeElement['value'];
3997
- }
3998
- /** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
3999
- set type(value) {
4000
- this.elementRef.nativeElement['type'] = value;
4001
- }
4002
- get type() {
4003
- return this.elementRef.nativeElement['type'];
4004
- }
4005
- /** Whether the button is disabled. */
4006
- set disabled(value) {
4007
- this.elementRef.nativeElement['disabled'] = value;
4008
- }
4009
- get disabled() {
4010
- return this.elementRef.nativeElement['disabled'];
4011
- }
4012
4209
  set grow(value) {
4013
4210
  this.elementRef.nativeElement['grow'] = value;
4014
4211
  }
@@ -4321,66 +4518,23 @@ class PxButton {
4321
4518
  get wordBreakAllDesktop() {
4322
4519
  return this.elementRef.nativeElement['wordBreakAllDesktop'];
4323
4520
  }
4521
+ BREADCRUMB_ITEM_CONNECTED_EVENT = new EventEmitter();
4324
4522
  constructor(elementRef) {
4325
4523
  this.elementRef = elementRef;
4524
+ this.elementRef.nativeElement.addEventListener('BREADCRUMB_ITEM_CONNECTED_EVENT', (e) => {
4525
+ this.BREADCRUMB_ITEM_CONNECTED_EVENT.emit(e.detail);
4526
+ });
4326
4527
  }
4327
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxButton, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
4328
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxButton, isStandalone: true, selector: "px-button", inputs: { variant: "variant", state: "state", loading: "loading", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], inverted: "inverted", ariaExpanded: ["aria-expanded", "ariaExpanded"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], size: "size", name: "name", value: "value", type: "type", disabled: "disabled", 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 });
4528
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxBreadcrumbItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
4529
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxBreadcrumbItem, isStandalone: true, 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"], 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"] }, outputs: { BREADCRUMB_ITEM_CONNECTED_EVENT: "BREADCRUMB_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
4329
4530
  }
4330
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxButton, decorators: [{
4531
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxBreadcrumbItem, decorators: [{
4331
4532
  type: Directive,
4332
4533
  args: [{
4333
- selector: 'px-button',
4534
+ selector: 'px-breadcrumb-item',
4334
4535
  standalone: true,
4335
4536
  }]
4336
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
4337
- type: Input
4338
- }], state: [{
4339
- type: Input
4340
- }], loading: [{
4341
- type: Input
4342
- }], shape: [{
4343
- type: Input
4344
- }], shapeMobile: [{
4345
- type: Input,
4346
- args: ['shape--mobile']
4347
- }], shapeTablet: [{
4348
- type: Input,
4349
- args: ['shape--tablet']
4350
- }], shapeLaptop: [{
4351
- type: Input,
4352
- args: ['shape--laptop']
4353
- }], shapeDesktop: [{
4354
- type: Input,
4355
- args: ['shape--desktop']
4356
- }], inverted: [{
4357
- type: Input
4358
- }], ariaExpanded: [{
4359
- type: Input,
4360
- args: ['aria-expanded']
4361
- }], extended: [{
4362
- type: Input
4363
- }], extendedMobile: [{
4364
- type: Input,
4365
- args: ['extended--mobile']
4366
- }], extendedTablet: [{
4367
- type: Input,
4368
- args: ['extended--tablet']
4369
- }], extendedLaptop: [{
4370
- type: Input,
4371
- args: ['extended--laptop']
4372
- }], extendedDesktop: [{
4373
- type: Input,
4374
- args: ['extended--desktop']
4375
- }], size: [{
4376
- type: Input
4377
- }], name: [{
4378
- type: Input
4379
- }], value: [{
4380
- type: Input
4381
- }], type: [{
4382
- type: Input
4383
- }], disabled: [{
4537
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
4384
4538
  type: Input
4385
4539
  }], grow: [{
4386
4540
  type: Input
@@ -4533,135 +4687,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
4533
4687
  }], wordBreakAllDesktop: [{
4534
4688
  type: Input,
4535
4689
  args: ['word-break-all--desktop']
4690
+ }], BREADCRUMB_ITEM_CONNECTED_EVENT: [{
4691
+ type: Output
4536
4692
  }] } });
4537
4693
  /**
4538
- * @description Type-only wrapper for <px-button-wrapper>
4694
+ * @description Type-only wrapper for <px-breadcrumb>
4539
4695
  */
4540
- class PxButtonWrapper {
4696
+ class PxBreadcrumb {
4541
4697
  elementRef;
4542
- /** The name of the button, submitted as a pair with the button's value as part of the form data. */
4543
- set name(value) {
4544
- this.elementRef.nativeElement['name'] = value;
4545
- }
4546
- get name() {
4547
- return this.elementRef.nativeElement['name'];
4548
- }
4549
- /** The value associated with the button's name when it's submitted with a form. */
4550
- set value(value) {
4551
- this.elementRef.nativeElement['value'] = value;
4552
- }
4553
- get value() {
4554
- return this.elementRef.nativeElement['value'];
4555
- }
4556
- /** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
4557
- set type(value) {
4558
- this.elementRef.nativeElement['type'] = value;
4559
- }
4560
- get type() {
4561
- return this.elementRef.nativeElement['type'];
4562
- }
4563
- /** Whether the button is disabled. */
4564
- set disabled(value) {
4565
- this.elementRef.nativeElement['disabled'] = value;
4566
- }
4567
- get disabled() {
4568
- return this.elementRef.nativeElement['disabled'];
4569
- }
4570
- set variant(value) {
4571
- this.elementRef.nativeElement['variant'] = value;
4572
- }
4573
- get variant() {
4574
- return this.elementRef.nativeElement['variant'];
4575
- }
4576
- set state(value) {
4577
- this.elementRef.nativeElement['state'] = value;
4578
- }
4579
- get state() {
4580
- return this.elementRef.nativeElement['state'];
4581
- }
4582
- set loading(value) {
4583
- this.elementRef.nativeElement['loading'] = value;
4584
- }
4585
- get loading() {
4586
- return this.elementRef.nativeElement['loading'];
4587
- }
4588
- set shape(value) {
4589
- this.elementRef.nativeElement['shape'] = value;
4590
- }
4591
- get shape() {
4592
- return this.elementRef.nativeElement['shape'];
4593
- }
4594
- set shapeMobile(value) {
4595
- this.elementRef.nativeElement['shapeMobile'] = value;
4596
- }
4597
- get shapeMobile() {
4598
- return this.elementRef.nativeElement['shapeMobile'];
4599
- }
4600
- set shapeTablet(value) {
4601
- this.elementRef.nativeElement['shapeTablet'] = value;
4602
- }
4603
- get shapeTablet() {
4604
- return this.elementRef.nativeElement['shapeTablet'];
4605
- }
4606
- set shapeLaptop(value) {
4607
- this.elementRef.nativeElement['shapeLaptop'] = value;
4608
- }
4609
- get shapeLaptop() {
4610
- return this.elementRef.nativeElement['shapeLaptop'];
4611
- }
4612
- set shapeDesktop(value) {
4613
- this.elementRef.nativeElement['shapeDesktop'] = value;
4614
- }
4615
- get shapeDesktop() {
4616
- return this.elementRef.nativeElement['shapeDesktop'];
4617
- }
4618
4698
  set inverted(value) {
4619
4699
  this.elementRef.nativeElement['inverted'] = value;
4620
4700
  }
4621
4701
  get inverted() {
4622
4702
  return this.elementRef.nativeElement['inverted'];
4623
4703
  }
4624
- set ariaExpanded(value) {
4625
- this.elementRef.nativeElement['ariaExpanded'] = value;
4626
- }
4627
- get ariaExpanded() {
4628
- return this.elementRef.nativeElement['ariaExpanded'];
4629
- }
4630
- set extended(value) {
4631
- this.elementRef.nativeElement['extended'] = value;
4632
- }
4633
- get extended() {
4634
- return this.elementRef.nativeElement['extended'];
4635
- }
4636
- set extendedMobile(value) {
4637
- this.elementRef.nativeElement['extendedMobile'] = value;
4638
- }
4639
- get extendedMobile() {
4640
- return this.elementRef.nativeElement['extendedMobile'];
4641
- }
4642
- set extendedTablet(value) {
4643
- this.elementRef.nativeElement['extendedTablet'] = value;
4644
- }
4645
- get extendedTablet() {
4646
- return this.elementRef.nativeElement['extendedTablet'];
4647
- }
4648
- set extendedLaptop(value) {
4649
- this.elementRef.nativeElement['extendedLaptop'] = value;
4650
- }
4651
- get extendedLaptop() {
4652
- return this.elementRef.nativeElement['extendedLaptop'];
4653
- }
4654
- set extendedDesktop(value) {
4655
- this.elementRef.nativeElement['extendedDesktop'] = value;
4656
- }
4657
- get extendedDesktop() {
4658
- return this.elementRef.nativeElement['extendedDesktop'];
4659
- }
4660
- set size(value) {
4661
- this.elementRef.nativeElement['size'] = value;
4704
+ set ariaLabel(value) {
4705
+ this.elementRef.nativeElement['ariaLabel'] = value;
4662
4706
  }
4663
- get size() {
4664
- return this.elementRef.nativeElement['size'];
4707
+ get ariaLabel() {
4708
+ return this.elementRef.nativeElement['ariaLabel'];
4665
4709
  }
4666
4710
  set grow(value) {
4667
4711
  this.elementRef.nativeElement['grow'] = value;
@@ -4978,64 +5022,20 @@ class PxButtonWrapper {
4978
5022
  constructor(elementRef) {
4979
5023
  this.elementRef = elementRef;
4980
5024
  }
4981
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxButtonWrapper, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
4982
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxButtonWrapper, isStandalone: true, selector: "px-button-wrapper", inputs: { name: "name", value: "value", type: "type", disabled: "disabled", variant: "variant", state: "state", loading: "loading", shape: "shape", shapeMobile: ["shape--mobile", "shapeMobile"], shapeTablet: ["shape--tablet", "shapeTablet"], shapeLaptop: ["shape--laptop", "shapeLaptop"], shapeDesktop: ["shape--desktop", "shapeDesktop"], inverted: "inverted", ariaExpanded: ["aria-expanded", "ariaExpanded"], extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], size: "size", 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 });
5025
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxBreadcrumb, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
5026
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxBreadcrumb, isStandalone: true, 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"], 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 });
4983
5027
  }
4984
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxButtonWrapper, decorators: [{
5028
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxBreadcrumb, decorators: [{
4985
5029
  type: Directive,
4986
5030
  args: [{
4987
- selector: 'px-button-wrapper',
5031
+ selector: 'px-breadcrumb',
4988
5032
  standalone: true,
4989
5033
  }]
4990
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
4991
- type: Input
4992
- }], value: [{
4993
- type: Input
4994
- }], type: [{
4995
- type: Input
4996
- }], disabled: [{
4997
- type: Input
4998
- }], variant: [{
4999
- type: Input
5000
- }], state: [{
5001
- type: Input
5002
- }], loading: [{
5003
- type: Input
5004
- }], shape: [{
5005
- type: Input
5006
- }], shapeMobile: [{
5007
- type: Input,
5008
- args: ['shape--mobile']
5009
- }], shapeTablet: [{
5010
- type: Input,
5011
- args: ['shape--tablet']
5012
- }], shapeLaptop: [{
5013
- type: Input,
5014
- args: ['shape--laptop']
5015
- }], shapeDesktop: [{
5016
- type: Input,
5017
- args: ['shape--desktop']
5018
- }], inverted: [{
5019
- type: Input
5020
- }], ariaExpanded: [{
5021
- type: Input,
5022
- args: ['aria-expanded']
5023
- }], extended: [{
5034
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
5024
5035
  type: Input
5025
- }], extendedMobile: [{
5026
- type: Input,
5027
- args: ['extended--mobile']
5028
- }], extendedTablet: [{
5029
- type: Input,
5030
- args: ['extended--tablet']
5031
- }], extendedLaptop: [{
5032
- type: Input,
5033
- args: ['extended--laptop']
5034
- }], extendedDesktop: [{
5036
+ }], ariaLabel: [{
5035
5037
  type: Input,
5036
- args: ['extended--desktop']
5037
- }], size: [{
5038
- type: Input
5038
+ args: ['aria-label']
5039
5039
  }], grow: [{
5040
5040
  type: Input
5041
5041
  }], growMobile: [{
@@ -15076,24 +15076,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
15076
15076
  type: Input,
15077
15077
  args: ['word-break-all--desktop']
15078
15078
  }] } });
15079
- /**
15080
- * @description Type-only wrapper for <px-heading-group>
15081
- */
15082
- class PxHeadingGroup {
15083
- elementRef;
15084
- constructor(elementRef) {
15085
- this.elementRef = elementRef;
15086
- }
15087
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxHeadingGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
15088
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxHeadingGroup, isStandalone: true, selector: "px-heading-group", ngImport: i0 });
15089
- }
15090
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxHeadingGroup, decorators: [{
15091
- type: Directive,
15092
- args: [{
15093
- selector: 'px-heading-group',
15094
- standalone: true,
15095
- }]
15096
- }], ctorParameters: () => [{ type: i0.ElementRef }] });
15097
15079
  /**
15098
15080
  * @description Type-only wrapper for <px-h1>
15099
15081
  */
@@ -18448,6 +18430,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
18448
18430
  type: Input,
18449
18431
  args: ['word-break-all--desktop']
18450
18432
  }] } });
18433
+ /**
18434
+ * @description Type-only wrapper for <px-heading-group>
18435
+ */
18436
+ class PxHeadingGroup {
18437
+ elementRef;
18438
+ constructor(elementRef) {
18439
+ this.elementRef = elementRef;
18440
+ }
18441
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxHeadingGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
18442
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxHeadingGroup, isStandalone: true, selector: "px-heading-group", ngImport: i0 });
18443
+ }
18444
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxHeadingGroup, decorators: [{
18445
+ type: Directive,
18446
+ args: [{
18447
+ selector: 'px-heading-group',
18448
+ standalone: true,
18449
+ }]
18450
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
18451
18451
  /**
18452
18452
  * @description Type-only wrapper for <px-img>
18453
18453
  */
@@ -31650,6 +31650,12 @@ class PxSelectableBox {
31650
31650
  get hideFooter() {
31651
31651
  return this.elementRef.nativeElement['hideFooter'];
31652
31652
  }
31653
+ set footerPosition(value) {
31654
+ this.elementRef.nativeElement['footerPosition'] = value;
31655
+ }
31656
+ get footerPosition() {
31657
+ return this.elementRef.nativeElement['footerPosition'];
31658
+ }
31653
31659
  set grow(value) {
31654
31660
  this.elementRef.nativeElement['grow'] = value;
31655
31661
  }
@@ -31966,7 +31972,7 @@ class PxSelectableBox {
31966
31972
  this.elementRef = elementRef;
31967
31973
  }
31968
31974
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
31969
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBox, isStandalone: true, selector: "px-selectable-box", inputs: { inverted: "inverted", hideFooter: ["hide-footer", "hideFooter"], 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 });
31975
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBox, isStandalone: true, selector: "px-selectable-box", inputs: { inverted: "inverted", hideFooter: ["hide-footer", "hideFooter"], footerPosition: ["footer-position", "footerPosition"], 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 });
31970
31976
  }
31971
31977
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBox, decorators: [{
31972
31978
  type: Directive,
@@ -31979,6 +31985,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
31979
31985
  }], hideFooter: [{
31980
31986
  type: Input,
31981
31987
  args: ['hide-footer']
31988
+ }], footerPosition: [{
31989
+ type: Input,
31990
+ args: ['footer-position']
31982
31991
  }], grow: [{
31983
31992
  type: Input
31984
31993
  }], growMobile: [{
@@ -32166,6 +32175,12 @@ class PxSelectableBoxCheckbox {
32166
32175
  get disabled() {
32167
32176
  return this.elementRef.nativeElement['disabled'];
32168
32177
  }
32178
+ set footerPosition(value) {
32179
+ this.elementRef.nativeElement['footerPosition'] = value;
32180
+ }
32181
+ get footerPosition() {
32182
+ return this.elementRef.nativeElement['footerPosition'];
32183
+ }
32169
32184
  set grow(value) {
32170
32185
  this.elementRef.nativeElement['grow'] = value;
32171
32186
  }
@@ -32486,7 +32501,7 @@ class PxSelectableBoxCheckbox {
32486
32501
  });
32487
32502
  }
32488
32503
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxCheckbox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
32489
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxCheckbox, isStandalone: true, selector: "px-selectable-box-checkbox", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", 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"] }, outputs: { change: "change" }, ngImport: i0 });
32504
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxCheckbox, isStandalone: true, selector: "px-selectable-box-checkbox", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", footerPosition: ["footer-position", "footerPosition"], 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"] }, outputs: { change: "change" }, ngImport: i0 });
32490
32505
  }
32491
32506
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxCheckbox, decorators: [{
32492
32507
  type: Directive,
@@ -32504,6 +32519,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
32504
32519
  type: Input
32505
32520
  }], disabled: [{
32506
32521
  type: Input
32522
+ }], footerPosition: [{
32523
+ type: Input,
32524
+ args: ['footer-position']
32507
32525
  }], grow: [{
32508
32526
  type: Input
32509
32527
  }], growMobile: [{
@@ -32693,6 +32711,12 @@ class PxSelectableBoxRadio {
32693
32711
  get disabled() {
32694
32712
  return this.elementRef.nativeElement['disabled'];
32695
32713
  }
32714
+ set footerPosition(value) {
32715
+ this.elementRef.nativeElement['footerPosition'] = value;
32716
+ }
32717
+ get footerPosition() {
32718
+ return this.elementRef.nativeElement['footerPosition'];
32719
+ }
32696
32720
  set grow(value) {
32697
32721
  this.elementRef.nativeElement['grow'] = value;
32698
32722
  }
@@ -33021,7 +33045,7 @@ class PxSelectableBoxRadio {
33021
33045
  });
33022
33046
  }
33023
33047
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
33024
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxRadio, isStandalone: true, selector: "px-selectable-box-radio", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", 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"] }, outputs: { SELECTABLE_BOX_RADIO_CONNECTED_EVENT: "SELECTABLE_BOX_RADIO_CONNECTED_EVENT", SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: "SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT", change: "change" }, ngImport: i0 });
33048
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxRadio, isStandalone: true, selector: "px-selectable-box-radio", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", footerPosition: ["footer-position", "footerPosition"], 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"] }, outputs: { SELECTABLE_BOX_RADIO_CONNECTED_EVENT: "SELECTABLE_BOX_RADIO_CONNECTED_EVENT", SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: "SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT", change: "change" }, ngImport: i0 });
33025
33049
  }
33026
33050
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxRadio, decorators: [{
33027
33051
  type: Directive,
@@ -33039,6 +33063,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
33039
33063
  type: Input
33040
33064
  }], disabled: [{
33041
33065
  type: Input
33066
+ }], footerPosition: [{
33067
+ type: Input,
33068
+ args: ['footer-position']
33042
33069
  }], grow: [{
33043
33070
  type: Input
33044
33071
  }], growMobile: [{
@@ -35905,6 +35932,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
35905
35932
  }], CLOSE_EVENT: [{
35906
35933
  type: Output
35907
35934
  }] } });
35935
+ /**
35936
+ * @description Type-only wrapper for <px-sticky-container>
35937
+ */
35938
+ class PxStickyContainer {
35939
+ elementRef;
35940
+ set offsetLeft(value) {
35941
+ this.elementRef.nativeElement['offsetLeft'] = value;
35942
+ }
35943
+ get offsetLeft() {
35944
+ return this.elementRef.nativeElement['offsetLeft'];
35945
+ }
35946
+ set offsetRight(value) {
35947
+ this.elementRef.nativeElement['offsetRight'] = value;
35948
+ }
35949
+ get offsetRight() {
35950
+ return this.elementRef.nativeElement['offsetRight'];
35951
+ }
35952
+ constructor(elementRef) {
35953
+ this.elementRef = elementRef;
35954
+ }
35955
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStickyContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
35956
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxStickyContainer, isStandalone: true, selector: "px-sticky-container", inputs: { offsetLeft: ["offset-left", "offsetLeft"], offsetRight: ["offset-right", "offsetRight"] }, ngImport: i0 });
35957
+ }
35958
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStickyContainer, decorators: [{
35959
+ type: Directive,
35960
+ args: [{
35961
+ selector: 'px-sticky-container',
35962
+ standalone: true,
35963
+ }]
35964
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { offsetLeft: [{
35965
+ type: Input,
35966
+ args: ['offset-left']
35967
+ }], offsetRight: [{
35968
+ type: Input,
35969
+ args: ['offset-right']
35970
+ }] } });
35908
35971
  /**
35909
35972
  * @description Type-only wrapper for <px-theme-switcher>
35910
35973
  */
@@ -40545,42 +40608,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
40545
40608
  }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
40546
40609
  type: Input
40547
40610
  }] } });
40548
- /**
40549
- * @description Type-only wrapper for <px-sticky-container>
40550
- */
40551
- class PxStickyContainer {
40552
- elementRef;
40553
- set offsetLeft(value) {
40554
- this.elementRef.nativeElement['offsetLeft'] = value;
40555
- }
40556
- get offsetLeft() {
40557
- return this.elementRef.nativeElement['offsetLeft'];
40558
- }
40559
- set offsetRight(value) {
40560
- this.elementRef.nativeElement['offsetRight'] = value;
40561
- }
40562
- get offsetRight() {
40563
- return this.elementRef.nativeElement['offsetRight'];
40564
- }
40565
- constructor(elementRef) {
40566
- this.elementRef = elementRef;
40567
- }
40568
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStickyContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
40569
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxStickyContainer, isStandalone: true, selector: "px-sticky-container", inputs: { offsetLeft: ["offset-left", "offsetLeft"], offsetRight: ["offset-right", "offsetRight"] }, ngImport: i0 });
40570
- }
40571
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStickyContainer, decorators: [{
40572
- type: Directive,
40573
- args: [{
40574
- selector: 'px-sticky-container',
40575
- standalone: true,
40576
- }]
40577
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { offsetLeft: [{
40578
- type: Input,
40579
- args: ['offset-left']
40580
- }], offsetRight: [{
40581
- type: Input,
40582
- args: ['offset-right']
40583
- }] } });
40584
40611
  /**
40585
40612
  * @description Type-only wrapper for <px-patch>
40586
40613
  */
@@ -41302,7 +41329,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41302
41329
  }] } });
41303
41330
  class Lavender {
41304
41331
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
41305
- 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, PxHeadingGroup, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, 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, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxStickyContainer, 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, PxHeadingGroup, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, 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, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxStickyContainer, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
41332
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxButton, PxButtonWrapper, PxBreadcrumbItem, PxBreadcrumb, 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, 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, PxButton, PxButtonWrapper, PxBreadcrumbItem, PxBreadcrumb, 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, 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] });
41306
41333
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
41307
41334
  }
41308
41335
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
@@ -41314,10 +41341,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41314
41341
  PxAgGridTableThButton,
41315
41342
  PxAgGridTableThContent,
41316
41343
  PxBanner,
41317
- PxBreadcrumbItem,
41318
- PxBreadcrumb,
41319
41344
  PxButton,
41320
41345
  PxButtonWrapper,
41346
+ PxBreadcrumbItem,
41347
+ PxBreadcrumb,
41321
41348
  PxButtonIcon,
41322
41349
  PxCard,
41323
41350
  PxAppleseed,
@@ -41338,13 +41365,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41338
41365
  PxDropdown,
41339
41366
  PxFieldset,
41340
41367
  PxGrid,
41341
- PxHeadingGroup,
41342
41368
  PxH1,
41343
41369
  PxH2,
41344
41370
  PxH3,
41345
41371
  PxH4,
41346
41372
  PxH5,
41347
41373
  PxH6,
41374
+ PxHeadingGroup,
41348
41375
  PxImg,
41349
41376
  PxPicture,
41350
41377
  PxInput,
@@ -41381,6 +41408,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41381
41408
  PxSpinner,
41382
41409
  PxStatus,
41383
41410
  PxStatusCard,
41411
+ PxStickyContainer,
41384
41412
  PxThemeSwitcher,
41385
41413
  PxSwitch,
41386
41414
  PxTable,
@@ -41402,7 +41430,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41402
41430
  PxTimeline,
41403
41431
  PxTimelineItem,
41404
41432
  PxTypography,
41405
- PxStickyContainer,
41406
41433
  PxPatch,
41407
41434
  PxIcon,
41408
41435
  PxIconSet,
@@ -41416,10 +41443,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41416
41443
  PxAgGridTableThButton,
41417
41444
  PxAgGridTableThContent,
41418
41445
  PxBanner,
41419
- PxBreadcrumbItem,
41420
- PxBreadcrumb,
41421
41446
  PxButton,
41422
41447
  PxButtonWrapper,
41448
+ PxBreadcrumbItem,
41449
+ PxBreadcrumb,
41423
41450
  PxButtonIcon,
41424
41451
  PxCard,
41425
41452
  PxAppleseed,
@@ -41440,13 +41467,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41440
41467
  PxDropdown,
41441
41468
  PxFieldset,
41442
41469
  PxGrid,
41443
- PxHeadingGroup,
41444
41470
  PxH1,
41445
41471
  PxH2,
41446
41472
  PxH3,
41447
41473
  PxH4,
41448
41474
  PxH5,
41449
41475
  PxH6,
41476
+ PxHeadingGroup,
41450
41477
  PxImg,
41451
41478
  PxPicture,
41452
41479
  PxInput,
@@ -41483,6 +41510,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41483
41510
  PxSpinner,
41484
41511
  PxStatus,
41485
41512
  PxStatusCard,
41513
+ PxStickyContainer,
41486
41514
  PxThemeSwitcher,
41487
41515
  PxSwitch,
41488
41516
  PxTable,
@@ -41504,7 +41532,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41504
41532
  PxTimeline,
41505
41533
  PxTimelineItem,
41506
41534
  PxTypography,
41507
- PxStickyContainer,
41508
41535
  PxPatch,
41509
41536
  PxIcon,
41510
41537
  PxIconSet,