@proximus/lavender-angular 1.4.15-alpha.11 → 1.4.15-alpha.13
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 +8 -0
- package/fesm2022/proximus-lavender-angular.mjs +483 -483
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +159 -159
- package/package.json +1 -1
|
@@ -5189,9 +5189,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
5189
5189
|
args: ['word-break-all--desktop']
|
|
5190
5190
|
}] } });
|
|
5191
5191
|
/**
|
|
5192
|
-
* @description Type-only wrapper for <px-
|
|
5192
|
+
* @description Type-only wrapper for <px-button-icon>
|
|
5193
5193
|
*/
|
|
5194
|
-
class
|
|
5194
|
+
class PxButtonIcon {
|
|
5195
5195
|
elementRef;
|
|
5196
5196
|
set inverted(value) {
|
|
5197
5197
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -5199,83 +5199,57 @@ class PxCard {
|
|
|
5199
5199
|
get inverted() {
|
|
5200
5200
|
return this.elementRef.nativeElement['inverted'];
|
|
5201
5201
|
}
|
|
5202
|
-
set
|
|
5203
|
-
this.elementRef.nativeElement['
|
|
5204
|
-
}
|
|
5205
|
-
get backgroundColor() {
|
|
5206
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
5207
|
-
}
|
|
5208
|
-
set backgroundSize(value) {
|
|
5209
|
-
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
5210
|
-
}
|
|
5211
|
-
get backgroundSize() {
|
|
5212
|
-
return this.elementRef.nativeElement['backgroundSize'];
|
|
5213
|
-
}
|
|
5214
|
-
set backgroundPosition(value) {
|
|
5215
|
-
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
5216
|
-
}
|
|
5217
|
-
get backgroundPosition() {
|
|
5218
|
-
return this.elementRef.nativeElement['backgroundPosition'];
|
|
5219
|
-
}
|
|
5220
|
-
set contrastHelperGradient(value) {
|
|
5221
|
-
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
5222
|
-
}
|
|
5223
|
-
get contrastHelperGradient() {
|
|
5224
|
-
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
5225
|
-
}
|
|
5226
|
-
set contrastHelperOverlay(value) {
|
|
5227
|
-
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
5228
|
-
}
|
|
5229
|
-
get contrastHelperOverlay() {
|
|
5230
|
-
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
5231
|
-
}
|
|
5232
|
-
set mediaPosition(value) {
|
|
5233
|
-
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
5202
|
+
set loading(value) {
|
|
5203
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
5234
5204
|
}
|
|
5235
|
-
get
|
|
5236
|
-
return this.elementRef.nativeElement['
|
|
5205
|
+
get loading() {
|
|
5206
|
+
return this.elementRef.nativeElement['loading'];
|
|
5237
5207
|
}
|
|
5238
|
-
set
|
|
5239
|
-
this.elementRef.nativeElement['
|
|
5208
|
+
set size(value) {
|
|
5209
|
+
this.elementRef.nativeElement['size'] = value;
|
|
5240
5210
|
}
|
|
5241
|
-
get
|
|
5242
|
-
return this.elementRef.nativeElement['
|
|
5211
|
+
get size() {
|
|
5212
|
+
return this.elementRef.nativeElement['size'];
|
|
5243
5213
|
}
|
|
5244
|
-
set
|
|
5245
|
-
this.elementRef.nativeElement['
|
|
5214
|
+
set variant(value) {
|
|
5215
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
5246
5216
|
}
|
|
5247
|
-
get
|
|
5248
|
-
return this.elementRef.nativeElement['
|
|
5217
|
+
get variant() {
|
|
5218
|
+
return this.elementRef.nativeElement['variant'];
|
|
5249
5219
|
}
|
|
5250
|
-
set
|
|
5251
|
-
this.elementRef.nativeElement['
|
|
5220
|
+
set ariaExpanded(value) {
|
|
5221
|
+
this.elementRef.nativeElement['ariaExpanded'] = value;
|
|
5252
5222
|
}
|
|
5253
|
-
get
|
|
5254
|
-
return this.elementRef.nativeElement['
|
|
5223
|
+
get ariaExpanded() {
|
|
5224
|
+
return this.elementRef.nativeElement['ariaExpanded'];
|
|
5255
5225
|
}
|
|
5256
|
-
|
|
5257
|
-
|
|
5226
|
+
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
5227
|
+
set name(value) {
|
|
5228
|
+
this.elementRef.nativeElement['name'] = value;
|
|
5258
5229
|
}
|
|
5259
|
-
get
|
|
5260
|
-
return this.elementRef.nativeElement['
|
|
5230
|
+
get name() {
|
|
5231
|
+
return this.elementRef.nativeElement['name'];
|
|
5261
5232
|
}
|
|
5262
|
-
|
|
5263
|
-
|
|
5233
|
+
/** The value associated with the button's name when it's submitted with a form. */
|
|
5234
|
+
set value(value) {
|
|
5235
|
+
this.elementRef.nativeElement['value'] = value;
|
|
5264
5236
|
}
|
|
5265
|
-
get
|
|
5266
|
-
return this.elementRef.nativeElement['
|
|
5237
|
+
get value() {
|
|
5238
|
+
return this.elementRef.nativeElement['value'];
|
|
5267
5239
|
}
|
|
5268
|
-
|
|
5269
|
-
|
|
5240
|
+
/** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
|
|
5241
|
+
set type(value) {
|
|
5242
|
+
this.elementRef.nativeElement['type'] = value;
|
|
5270
5243
|
}
|
|
5271
|
-
get
|
|
5272
|
-
return this.elementRef.nativeElement['
|
|
5244
|
+
get type() {
|
|
5245
|
+
return this.elementRef.nativeElement['type'];
|
|
5273
5246
|
}
|
|
5274
|
-
|
|
5275
|
-
|
|
5247
|
+
/** Whether the button is disabled. */
|
|
5248
|
+
set disabled(value) {
|
|
5249
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
5276
5250
|
}
|
|
5277
|
-
get
|
|
5278
|
-
return this.elementRef.nativeElement['
|
|
5251
|
+
get disabled() {
|
|
5252
|
+
return this.elementRef.nativeElement['disabled'];
|
|
5279
5253
|
}
|
|
5280
5254
|
set grow(value) {
|
|
5281
5255
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -5592,56 +5566,34 @@ class PxCard {
|
|
|
5592
5566
|
constructor(elementRef) {
|
|
5593
5567
|
this.elementRef = elementRef;
|
|
5594
5568
|
}
|
|
5595
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
5596
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
5569
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxButtonIcon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5570
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxButtonIcon, isStandalone: true, selector: "px-button-icon", inputs: { inverted: "inverted", loading: "loading", size: "size", variant: "variant", ariaExpanded: ["aria-expanded", "ariaExpanded"], 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 });
|
|
5597
5571
|
}
|
|
5598
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
5572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxButtonIcon, decorators: [{
|
|
5599
5573
|
type: Directive,
|
|
5600
5574
|
args: [{
|
|
5601
|
-
selector: 'px-
|
|
5575
|
+
selector: 'px-button-icon',
|
|
5602
5576
|
standalone: true,
|
|
5603
5577
|
}]
|
|
5604
5578
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
5605
5579
|
type: Input
|
|
5606
|
-
}],
|
|
5607
|
-
type: Input
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
}],
|
|
5613
|
-
type: Input,
|
|
5614
|
-
args: ['background-position']
|
|
5615
|
-
}], contrastHelperGradient: [{
|
|
5616
|
-
type: Input,
|
|
5617
|
-
args: ['contrast-helper-gradient']
|
|
5618
|
-
}], contrastHelperOverlay: [{
|
|
5619
|
-
type: Input,
|
|
5620
|
-
args: ['contrast-helper-overlay']
|
|
5621
|
-
}], mediaPosition: [{
|
|
5622
|
-
type: Input,
|
|
5623
|
-
args: ['media-position']
|
|
5624
|
-
}], mediaPositionMobile: [{
|
|
5625
|
-
type: Input,
|
|
5626
|
-
args: ['media-position--mobile']
|
|
5627
|
-
}], mediaPositionTablet: [{
|
|
5628
|
-
type: Input,
|
|
5629
|
-
args: ['media-position--tablet']
|
|
5630
|
-
}], mediaPositionLaptop: [{
|
|
5631
|
-
type: Input,
|
|
5632
|
-
args: ['media-position--laptop']
|
|
5633
|
-
}], mediaSrc: [{
|
|
5634
|
-
type: Input,
|
|
5635
|
-
args: ['media-src']
|
|
5636
|
-
}], mediaSrcMobile: [{
|
|
5637
|
-
type: Input,
|
|
5638
|
-
args: ['media-src--mobile']
|
|
5639
|
-
}], mediaSrcTablet: [{
|
|
5640
|
-
type: Input,
|
|
5641
|
-
args: ['media-src--tablet']
|
|
5642
|
-
}], mediaSrcLaptop: [{
|
|
5580
|
+
}], loading: [{
|
|
5581
|
+
type: Input
|
|
5582
|
+
}], size: [{
|
|
5583
|
+
type: Input
|
|
5584
|
+
}], variant: [{
|
|
5585
|
+
type: Input
|
|
5586
|
+
}], ariaExpanded: [{
|
|
5643
5587
|
type: Input,
|
|
5644
|
-
args: ['
|
|
5588
|
+
args: ['aria-expanded']
|
|
5589
|
+
}], name: [{
|
|
5590
|
+
type: Input
|
|
5591
|
+
}], value: [{
|
|
5592
|
+
type: Input
|
|
5593
|
+
}], type: [{
|
|
5594
|
+
type: Input
|
|
5595
|
+
}], disabled: [{
|
|
5596
|
+
type: Input
|
|
5645
5597
|
}], grow: [{
|
|
5646
5598
|
type: Input
|
|
5647
5599
|
}], growMobile: [{
|
|
@@ -5795,9 +5747,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
5795
5747
|
args: ['word-break-all--desktop']
|
|
5796
5748
|
}] } });
|
|
5797
5749
|
/**
|
|
5798
|
-
* @description Type-only wrapper for <px-
|
|
5750
|
+
* @description Type-only wrapper for <px-card>
|
|
5799
5751
|
*/
|
|
5800
|
-
class
|
|
5752
|
+
class PxCard {
|
|
5801
5753
|
elementRef;
|
|
5802
5754
|
set inverted(value) {
|
|
5803
5755
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -5805,57 +5757,83 @@ class PxButtonIcon {
|
|
|
5805
5757
|
get inverted() {
|
|
5806
5758
|
return this.elementRef.nativeElement['inverted'];
|
|
5807
5759
|
}
|
|
5808
|
-
set
|
|
5809
|
-
this.elementRef.nativeElement['
|
|
5760
|
+
set backgroundColor(value) {
|
|
5761
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
5810
5762
|
}
|
|
5811
|
-
get
|
|
5812
|
-
return this.elementRef.nativeElement['
|
|
5763
|
+
get backgroundColor() {
|
|
5764
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
5813
5765
|
}
|
|
5814
|
-
set
|
|
5815
|
-
this.elementRef.nativeElement['
|
|
5766
|
+
set backgroundSize(value) {
|
|
5767
|
+
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
5816
5768
|
}
|
|
5817
|
-
get
|
|
5818
|
-
return this.elementRef.nativeElement['
|
|
5769
|
+
get backgroundSize() {
|
|
5770
|
+
return this.elementRef.nativeElement['backgroundSize'];
|
|
5819
5771
|
}
|
|
5820
|
-
set
|
|
5821
|
-
this.elementRef.nativeElement['
|
|
5772
|
+
set backgroundPosition(value) {
|
|
5773
|
+
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
5822
5774
|
}
|
|
5823
|
-
get
|
|
5824
|
-
return this.elementRef.nativeElement['
|
|
5775
|
+
get backgroundPosition() {
|
|
5776
|
+
return this.elementRef.nativeElement['backgroundPosition'];
|
|
5825
5777
|
}
|
|
5826
|
-
set
|
|
5827
|
-
this.elementRef.nativeElement['
|
|
5778
|
+
set contrastHelperGradient(value) {
|
|
5779
|
+
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
5828
5780
|
}
|
|
5829
|
-
get
|
|
5830
|
-
return this.elementRef.nativeElement['
|
|
5781
|
+
get contrastHelperGradient() {
|
|
5782
|
+
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
5831
5783
|
}
|
|
5832
|
-
|
|
5833
|
-
|
|
5834
|
-
this.elementRef.nativeElement['name'] = value;
|
|
5784
|
+
set contrastHelperOverlay(value) {
|
|
5785
|
+
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
5835
5786
|
}
|
|
5836
|
-
get
|
|
5837
|
-
return this.elementRef.nativeElement['
|
|
5787
|
+
get contrastHelperOverlay() {
|
|
5788
|
+
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
5838
5789
|
}
|
|
5839
|
-
|
|
5840
|
-
|
|
5841
|
-
this.elementRef.nativeElement['value'] = value;
|
|
5790
|
+
set mediaPosition(value) {
|
|
5791
|
+
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
5842
5792
|
}
|
|
5843
|
-
get
|
|
5844
|
-
return this.elementRef.nativeElement['
|
|
5793
|
+
get mediaPosition() {
|
|
5794
|
+
return this.elementRef.nativeElement['mediaPosition'];
|
|
5845
5795
|
}
|
|
5846
|
-
|
|
5847
|
-
|
|
5848
|
-
this.elementRef.nativeElement['type'] = value;
|
|
5796
|
+
set mediaPositionMobile(value) {
|
|
5797
|
+
this.elementRef.nativeElement['mediaPositionMobile'] = value;
|
|
5849
5798
|
}
|
|
5850
|
-
get
|
|
5851
|
-
return this.elementRef.nativeElement['
|
|
5799
|
+
get mediaPositionMobile() {
|
|
5800
|
+
return this.elementRef.nativeElement['mediaPositionMobile'];
|
|
5852
5801
|
}
|
|
5853
|
-
|
|
5854
|
-
|
|
5855
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
5802
|
+
set mediaPositionTablet(value) {
|
|
5803
|
+
this.elementRef.nativeElement['mediaPositionTablet'] = value;
|
|
5856
5804
|
}
|
|
5857
|
-
get
|
|
5858
|
-
return this.elementRef.nativeElement['
|
|
5805
|
+
get mediaPositionTablet() {
|
|
5806
|
+
return this.elementRef.nativeElement['mediaPositionTablet'];
|
|
5807
|
+
}
|
|
5808
|
+
set mediaPositionLaptop(value) {
|
|
5809
|
+
this.elementRef.nativeElement['mediaPositionLaptop'] = value;
|
|
5810
|
+
}
|
|
5811
|
+
get mediaPositionLaptop() {
|
|
5812
|
+
return this.elementRef.nativeElement['mediaPositionLaptop'];
|
|
5813
|
+
}
|
|
5814
|
+
set mediaSrc(value) {
|
|
5815
|
+
this.elementRef.nativeElement['mediaSrc'] = value;
|
|
5816
|
+
}
|
|
5817
|
+
get mediaSrc() {
|
|
5818
|
+
return this.elementRef.nativeElement['mediaSrc'];
|
|
5819
|
+
}
|
|
5820
|
+
set mediaSrcMobile(value) {
|
|
5821
|
+
this.elementRef.nativeElement['mediaSrcMobile'] = value;
|
|
5822
|
+
}
|
|
5823
|
+
get mediaSrcMobile() {
|
|
5824
|
+
return this.elementRef.nativeElement['mediaSrcMobile'];
|
|
5825
|
+
}
|
|
5826
|
+
set mediaSrcTablet(value) {
|
|
5827
|
+
this.elementRef.nativeElement['mediaSrcTablet'] = value;
|
|
5828
|
+
}
|
|
5829
|
+
get mediaSrcTablet() {
|
|
5830
|
+
return this.elementRef.nativeElement['mediaSrcTablet'];
|
|
5831
|
+
}
|
|
5832
|
+
set mediaSrcLaptop(value) {
|
|
5833
|
+
this.elementRef.nativeElement['mediaSrcLaptop'] = value;
|
|
5834
|
+
}
|
|
5835
|
+
get mediaSrcLaptop() {
|
|
5836
|
+
return this.elementRef.nativeElement['mediaSrcLaptop'];
|
|
5859
5837
|
}
|
|
5860
5838
|
set grow(value) {
|
|
5861
5839
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -6172,34 +6150,56 @@ class PxButtonIcon {
|
|
|
6172
6150
|
constructor(elementRef) {
|
|
6173
6151
|
this.elementRef = elementRef;
|
|
6174
6152
|
}
|
|
6175
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
6176
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
6153
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCard, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6154
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCard, isStandalone: true, selector: "px-card", inputs: { inverted: "inverted", backgroundColor: ["background-color", "backgroundColor"], backgroundSize: ["background-size", "backgroundSize"], backgroundPosition: ["background-position", "backgroundPosition"], contrastHelperGradient: ["contrast-helper-gradient", "contrastHelperGradient"], contrastHelperOverlay: ["contrast-helper-overlay", "contrastHelperOverlay"], mediaPosition: ["media-position", "mediaPosition"], mediaPositionMobile: ["media-position--mobile", "mediaPositionMobile"], mediaPositionTablet: ["media-position--tablet", "mediaPositionTablet"], mediaPositionLaptop: ["media-position--laptop", "mediaPositionLaptop"], mediaSrc: ["media-src", "mediaSrc"], mediaSrcMobile: ["media-src--mobile", "mediaSrcMobile"], mediaSrcTablet: ["media-src--tablet", "mediaSrcTablet"], mediaSrcLaptop: ["media-src--laptop", "mediaSrcLaptop"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], 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 });
|
|
6177
6155
|
}
|
|
6178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
6156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCard, decorators: [{
|
|
6179
6157
|
type: Directive,
|
|
6180
6158
|
args: [{
|
|
6181
|
-
selector: 'px-
|
|
6159
|
+
selector: 'px-card',
|
|
6182
6160
|
standalone: true,
|
|
6183
6161
|
}]
|
|
6184
6162
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
6185
6163
|
type: Input
|
|
6186
|
-
}],
|
|
6187
|
-
type: Input
|
|
6188
|
-
}], size: [{
|
|
6189
|
-
type: Input
|
|
6190
|
-
}], variant: [{
|
|
6191
|
-
type: Input
|
|
6192
|
-
}], ariaExpanded: [{
|
|
6164
|
+
}], backgroundColor: [{
|
|
6193
6165
|
type: Input,
|
|
6194
|
-
args: ['
|
|
6195
|
-
}],
|
|
6196
|
-
type: Input
|
|
6197
|
-
|
|
6198
|
-
|
|
6199
|
-
|
|
6200
|
-
|
|
6201
|
-
}],
|
|
6202
|
-
type: Input
|
|
6166
|
+
args: ['background-color']
|
|
6167
|
+
}], backgroundSize: [{
|
|
6168
|
+
type: Input,
|
|
6169
|
+
args: ['background-size']
|
|
6170
|
+
}], backgroundPosition: [{
|
|
6171
|
+
type: Input,
|
|
6172
|
+
args: ['background-position']
|
|
6173
|
+
}], contrastHelperGradient: [{
|
|
6174
|
+
type: Input,
|
|
6175
|
+
args: ['contrast-helper-gradient']
|
|
6176
|
+
}], contrastHelperOverlay: [{
|
|
6177
|
+
type: Input,
|
|
6178
|
+
args: ['contrast-helper-overlay']
|
|
6179
|
+
}], mediaPosition: [{
|
|
6180
|
+
type: Input,
|
|
6181
|
+
args: ['media-position']
|
|
6182
|
+
}], mediaPositionMobile: [{
|
|
6183
|
+
type: Input,
|
|
6184
|
+
args: ['media-position--mobile']
|
|
6185
|
+
}], mediaPositionTablet: [{
|
|
6186
|
+
type: Input,
|
|
6187
|
+
args: ['media-position--tablet']
|
|
6188
|
+
}], mediaPositionLaptop: [{
|
|
6189
|
+
type: Input,
|
|
6190
|
+
args: ['media-position--laptop']
|
|
6191
|
+
}], mediaSrc: [{
|
|
6192
|
+
type: Input,
|
|
6193
|
+
args: ['media-src']
|
|
6194
|
+
}], mediaSrcMobile: [{
|
|
6195
|
+
type: Input,
|
|
6196
|
+
args: ['media-src--mobile']
|
|
6197
|
+
}], mediaSrcTablet: [{
|
|
6198
|
+
type: Input,
|
|
6199
|
+
args: ['media-src--tablet']
|
|
6200
|
+
}], mediaSrcLaptop: [{
|
|
6201
|
+
type: Input,
|
|
6202
|
+
args: ['media-src--laptop']
|
|
6203
6203
|
}], grow: [{
|
|
6204
6204
|
type: Input
|
|
6205
6205
|
}], growMobile: [{
|
|
@@ -6352,82 +6352,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
6352
6352
|
type: Input,
|
|
6353
6353
|
args: ['word-break-all--desktop']
|
|
6354
6354
|
}] } });
|
|
6355
|
-
/**
|
|
6356
|
-
* @description Type-only wrapper for <px-appleseed>
|
|
6357
|
-
*/
|
|
6358
|
-
class PxAppleseed {
|
|
6359
|
-
elementRef;
|
|
6360
|
-
set amount(value) {
|
|
6361
|
-
this.elementRef.nativeElement['amount'] = value;
|
|
6362
|
-
}
|
|
6363
|
-
get amount() {
|
|
6364
|
-
return this.elementRef.nativeElement['amount'];
|
|
6365
|
-
}
|
|
6366
|
-
set active(value) {
|
|
6367
|
-
this.elementRef.nativeElement['active'] = value;
|
|
6368
|
-
}
|
|
6369
|
-
get active() {
|
|
6370
|
-
return this.elementRef.nativeElement['active'];
|
|
6371
|
-
}
|
|
6372
|
-
constructor(elementRef) {
|
|
6373
|
-
this.elementRef = elementRef;
|
|
6374
|
-
}
|
|
6375
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6376
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxAppleseed, isStandalone: true, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
6377
|
-
}
|
|
6378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
6379
|
-
type: Directive,
|
|
6380
|
-
args: [{
|
|
6381
|
-
selector: 'px-appleseed',
|
|
6382
|
-
standalone: true,
|
|
6383
|
-
}]
|
|
6384
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
6385
|
-
type: Input
|
|
6386
|
-
}], active: [{
|
|
6387
|
-
type: Input
|
|
6388
|
-
}] } });
|
|
6389
|
-
/**
|
|
6390
|
-
* @description Type-only wrapper for <px-carousel>
|
|
6391
|
-
*/
|
|
6392
|
-
class PxCarousel {
|
|
6393
|
-
elementRef;
|
|
6394
|
-
constructor(elementRef) {
|
|
6395
|
-
this.elementRef = elementRef;
|
|
6396
|
-
}
|
|
6397
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6398
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarousel, isStandalone: true, selector: "px-carousel", ngImport: i0 });
|
|
6399
|
-
}
|
|
6400
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, decorators: [{
|
|
6401
|
-
type: Directive,
|
|
6402
|
-
args: [{
|
|
6403
|
-
selector: 'px-carousel',
|
|
6404
|
-
standalone: true,
|
|
6405
|
-
}]
|
|
6406
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
6407
|
-
/**
|
|
6408
|
-
* @description Type-only wrapper for <px-carousel-item>
|
|
6409
|
-
*/
|
|
6410
|
-
class PxCarouselItem {
|
|
6411
|
-
elementRef;
|
|
6412
|
-
CAROUSEL_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
6413
|
-
constructor(elementRef) {
|
|
6414
|
-
this.elementRef = elementRef;
|
|
6415
|
-
this.elementRef.nativeElement.addEventListener('CAROUSEL_ITEM_CONNECTED_EVENT', (e) => {
|
|
6416
|
-
this.CAROUSEL_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
6417
|
-
});
|
|
6418
|
-
}
|
|
6419
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6420
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarouselItem, isStandalone: true, selector: "px-carousel-item", outputs: { CAROUSEL_ITEM_CONNECTED_EVENT: "CAROUSEL_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
6421
|
-
}
|
|
6422
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
6423
|
-
type: Directive,
|
|
6424
|
-
args: [{
|
|
6425
|
-
selector: 'px-carousel-item',
|
|
6426
|
-
standalone: true,
|
|
6427
|
-
}]
|
|
6428
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { CAROUSEL_ITEM_CONNECTED_EVENT: [{
|
|
6429
|
-
type: Output
|
|
6430
|
-
}] } });
|
|
6431
6355
|
/**
|
|
6432
6356
|
* @description Type-only wrapper for <px-cell>
|
|
6433
6357
|
*/
|
|
@@ -10257,6 +10181,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
10257
10181
|
}], change: [{
|
|
10258
10182
|
type: Output
|
|
10259
10183
|
}] } });
|
|
10184
|
+
/**
|
|
10185
|
+
* @description Type-only wrapper for <px-appleseed>
|
|
10186
|
+
*/
|
|
10187
|
+
class PxAppleseed {
|
|
10188
|
+
elementRef;
|
|
10189
|
+
set amount(value) {
|
|
10190
|
+
this.elementRef.nativeElement['amount'] = value;
|
|
10191
|
+
}
|
|
10192
|
+
get amount() {
|
|
10193
|
+
return this.elementRef.nativeElement['amount'];
|
|
10194
|
+
}
|
|
10195
|
+
set active(value) {
|
|
10196
|
+
this.elementRef.nativeElement['active'] = value;
|
|
10197
|
+
}
|
|
10198
|
+
get active() {
|
|
10199
|
+
return this.elementRef.nativeElement['active'];
|
|
10200
|
+
}
|
|
10201
|
+
constructor(elementRef) {
|
|
10202
|
+
this.elementRef = elementRef;
|
|
10203
|
+
}
|
|
10204
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10205
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxAppleseed, isStandalone: true, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
10206
|
+
}
|
|
10207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
10208
|
+
type: Directive,
|
|
10209
|
+
args: [{
|
|
10210
|
+
selector: 'px-appleseed',
|
|
10211
|
+
standalone: true,
|
|
10212
|
+
}]
|
|
10213
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
10214
|
+
type: Input
|
|
10215
|
+
}], active: [{
|
|
10216
|
+
type: Input
|
|
10217
|
+
}] } });
|
|
10218
|
+
/**
|
|
10219
|
+
* @description Type-only wrapper for <px-carousel>
|
|
10220
|
+
*/
|
|
10221
|
+
class PxCarousel {
|
|
10222
|
+
elementRef;
|
|
10223
|
+
constructor(elementRef) {
|
|
10224
|
+
this.elementRef = elementRef;
|
|
10225
|
+
}
|
|
10226
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10227
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarousel, isStandalone: true, selector: "px-carousel", ngImport: i0 });
|
|
10228
|
+
}
|
|
10229
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, decorators: [{
|
|
10230
|
+
type: Directive,
|
|
10231
|
+
args: [{
|
|
10232
|
+
selector: 'px-carousel',
|
|
10233
|
+
standalone: true,
|
|
10234
|
+
}]
|
|
10235
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
10236
|
+
/**
|
|
10237
|
+
* @description Type-only wrapper for <px-carousel-item>
|
|
10238
|
+
*/
|
|
10239
|
+
class PxCarouselItem {
|
|
10240
|
+
elementRef;
|
|
10241
|
+
CAROUSEL_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
10242
|
+
constructor(elementRef) {
|
|
10243
|
+
this.elementRef = elementRef;
|
|
10244
|
+
this.elementRef.nativeElement.addEventListener('CAROUSEL_ITEM_CONNECTED_EVENT', (e) => {
|
|
10245
|
+
this.CAROUSEL_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
10246
|
+
});
|
|
10247
|
+
}
|
|
10248
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10249
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarouselItem, isStandalone: true, selector: "px-carousel-item", outputs: { CAROUSEL_ITEM_CONNECTED_EVENT: "CAROUSEL_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
10250
|
+
}
|
|
10251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
10252
|
+
type: Directive,
|
|
10253
|
+
args: [{
|
|
10254
|
+
selector: 'px-carousel-item',
|
|
10255
|
+
standalone: true,
|
|
10256
|
+
}]
|
|
10257
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { CAROUSEL_ITEM_CONNECTED_EVENT: [{
|
|
10258
|
+
type: Output
|
|
10259
|
+
}] } });
|
|
10260
10260
|
/**
|
|
10261
10261
|
* @description Type-only wrapper for <px-checkbox>
|
|
10262
10262
|
*/
|
|
@@ -12598,107 +12598,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
12598
12598
|
type: Input,
|
|
12599
12599
|
args: ['word-break-all--desktop']
|
|
12600
12600
|
}] } });
|
|
12601
|
-
/**
|
|
12602
|
-
* @description Type-only wrapper for <px-drawer>
|
|
12603
|
-
*/
|
|
12604
|
-
class PxDrawer {
|
|
12605
|
-
elementRef;
|
|
12606
|
-
set open(value) {
|
|
12607
|
-
this.elementRef.nativeElement['open'] = value;
|
|
12608
|
-
}
|
|
12609
|
-
get open() {
|
|
12610
|
-
return this.elementRef.nativeElement['open'];
|
|
12611
|
-
}
|
|
12612
|
-
set ariaLabelCloseButton(value) {
|
|
12613
|
-
this.elementRef.nativeElement['ariaLabelCloseButton'] = value;
|
|
12614
|
-
}
|
|
12615
|
-
get ariaLabelCloseButton() {
|
|
12616
|
-
return this.elementRef.nativeElement['ariaLabelCloseButton'];
|
|
12617
|
-
}
|
|
12618
|
-
set openedby(value) {
|
|
12619
|
-
this.elementRef.nativeElement['openedby'] = value;
|
|
12620
|
-
}
|
|
12621
|
-
get openedby() {
|
|
12622
|
-
return this.elementRef.nativeElement['openedby'];
|
|
12623
|
-
}
|
|
12624
|
-
set closedby(value) {
|
|
12625
|
-
this.elementRef.nativeElement['closedby'] = value;
|
|
12626
|
-
}
|
|
12627
|
-
get closedby() {
|
|
12628
|
-
return this.elementRef.nativeElement['closedby'];
|
|
12629
|
-
}
|
|
12630
|
-
set fullscreen(value) {
|
|
12631
|
-
this.elementRef.nativeElement['fullscreen'] = value;
|
|
12632
|
-
}
|
|
12633
|
-
get fullscreen() {
|
|
12634
|
-
return this.elementRef.nativeElement['fullscreen'];
|
|
12635
|
-
}
|
|
12636
|
-
set fullscreenMobile(value) {
|
|
12637
|
-
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
12638
|
-
}
|
|
12639
|
-
get fullscreenMobile() {
|
|
12640
|
-
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
12641
|
-
}
|
|
12642
|
-
set fullscreenTablet(value) {
|
|
12643
|
-
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
12644
|
-
}
|
|
12645
|
-
get fullscreenTablet() {
|
|
12646
|
-
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
12647
|
-
}
|
|
12648
|
-
set fullscreenLaptop(value) {
|
|
12649
|
-
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
12650
|
-
}
|
|
12651
|
-
get fullscreenLaptop() {
|
|
12652
|
-
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
12653
|
-
}
|
|
12654
|
-
set fullscreenDesktop(value) {
|
|
12655
|
-
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
12656
|
-
}
|
|
12657
|
-
get fullscreenDesktop() {
|
|
12658
|
-
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
12659
|
-
}
|
|
12660
|
-
HIDE_EVENT = new EventEmitter();
|
|
12661
|
-
constructor(elementRef) {
|
|
12662
|
-
this.elementRef = elementRef;
|
|
12663
|
-
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
12664
|
-
this.HIDE_EVENT.emit(e.detail);
|
|
12665
|
-
});
|
|
12666
|
-
}
|
|
12667
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12668
|
-
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 });
|
|
12669
|
-
}
|
|
12670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, decorators: [{
|
|
12671
|
-
type: Directive,
|
|
12672
|
-
args: [{
|
|
12673
|
-
selector: 'px-drawer',
|
|
12674
|
-
standalone: true,
|
|
12675
|
-
}]
|
|
12676
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
12677
|
-
type: Input
|
|
12678
|
-
}], ariaLabelCloseButton: [{
|
|
12679
|
-
type: Input,
|
|
12680
|
-
args: ['aria-label-close-button']
|
|
12681
|
-
}], openedby: [{
|
|
12682
|
-
type: Input
|
|
12683
|
-
}], closedby: [{
|
|
12684
|
-
type: Input
|
|
12685
|
-
}], fullscreen: [{
|
|
12686
|
-
type: Input
|
|
12687
|
-
}], fullscreenMobile: [{
|
|
12688
|
-
type: Input,
|
|
12689
|
-
args: ['fullscreen--mobile']
|
|
12690
|
-
}], fullscreenTablet: [{
|
|
12691
|
-
type: Input,
|
|
12692
|
-
args: ['fullscreen--tablet']
|
|
12693
|
-
}], fullscreenLaptop: [{
|
|
12694
|
-
type: Input,
|
|
12695
|
-
args: ['fullscreen--laptop']
|
|
12696
|
-
}], fullscreenDesktop: [{
|
|
12697
|
-
type: Input,
|
|
12698
|
-
args: ['fullscreen--desktop']
|
|
12699
|
-
}], HIDE_EVENT: [{
|
|
12700
|
-
type: Output
|
|
12701
|
-
}] } });
|
|
12702
12601
|
/**
|
|
12703
12602
|
* @description Type-only wrapper for <px-content-header>
|
|
12704
12603
|
*/
|
|
@@ -13856,6 +13755,107 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
13856
13755
|
type: Input,
|
|
13857
13756
|
args: ['word-break-all--desktop']
|
|
13858
13757
|
}] } });
|
|
13758
|
+
/**
|
|
13759
|
+
* @description Type-only wrapper for <px-drawer>
|
|
13760
|
+
*/
|
|
13761
|
+
class PxDrawer {
|
|
13762
|
+
elementRef;
|
|
13763
|
+
set open(value) {
|
|
13764
|
+
this.elementRef.nativeElement['open'] = value;
|
|
13765
|
+
}
|
|
13766
|
+
get open() {
|
|
13767
|
+
return this.elementRef.nativeElement['open'];
|
|
13768
|
+
}
|
|
13769
|
+
set ariaLabelCloseButton(value) {
|
|
13770
|
+
this.elementRef.nativeElement['ariaLabelCloseButton'] = value;
|
|
13771
|
+
}
|
|
13772
|
+
get ariaLabelCloseButton() {
|
|
13773
|
+
return this.elementRef.nativeElement['ariaLabelCloseButton'];
|
|
13774
|
+
}
|
|
13775
|
+
set openedby(value) {
|
|
13776
|
+
this.elementRef.nativeElement['openedby'] = value;
|
|
13777
|
+
}
|
|
13778
|
+
get openedby() {
|
|
13779
|
+
return this.elementRef.nativeElement['openedby'];
|
|
13780
|
+
}
|
|
13781
|
+
set closedby(value) {
|
|
13782
|
+
this.elementRef.nativeElement['closedby'] = value;
|
|
13783
|
+
}
|
|
13784
|
+
get closedby() {
|
|
13785
|
+
return this.elementRef.nativeElement['closedby'];
|
|
13786
|
+
}
|
|
13787
|
+
set fullscreen(value) {
|
|
13788
|
+
this.elementRef.nativeElement['fullscreen'] = value;
|
|
13789
|
+
}
|
|
13790
|
+
get fullscreen() {
|
|
13791
|
+
return this.elementRef.nativeElement['fullscreen'];
|
|
13792
|
+
}
|
|
13793
|
+
set fullscreenMobile(value) {
|
|
13794
|
+
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
13795
|
+
}
|
|
13796
|
+
get fullscreenMobile() {
|
|
13797
|
+
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
13798
|
+
}
|
|
13799
|
+
set fullscreenTablet(value) {
|
|
13800
|
+
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
13801
|
+
}
|
|
13802
|
+
get fullscreenTablet() {
|
|
13803
|
+
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
13804
|
+
}
|
|
13805
|
+
set fullscreenLaptop(value) {
|
|
13806
|
+
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
13807
|
+
}
|
|
13808
|
+
get fullscreenLaptop() {
|
|
13809
|
+
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
13810
|
+
}
|
|
13811
|
+
set fullscreenDesktop(value) {
|
|
13812
|
+
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
13813
|
+
}
|
|
13814
|
+
get fullscreenDesktop() {
|
|
13815
|
+
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
13816
|
+
}
|
|
13817
|
+
HIDE_EVENT = new EventEmitter();
|
|
13818
|
+
constructor(elementRef) {
|
|
13819
|
+
this.elementRef = elementRef;
|
|
13820
|
+
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
13821
|
+
this.HIDE_EVENT.emit(e.detail);
|
|
13822
|
+
});
|
|
13823
|
+
}
|
|
13824
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13825
|
+
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 });
|
|
13826
|
+
}
|
|
13827
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, decorators: [{
|
|
13828
|
+
type: Directive,
|
|
13829
|
+
args: [{
|
|
13830
|
+
selector: 'px-drawer',
|
|
13831
|
+
standalone: true,
|
|
13832
|
+
}]
|
|
13833
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
13834
|
+
type: Input
|
|
13835
|
+
}], ariaLabelCloseButton: [{
|
|
13836
|
+
type: Input,
|
|
13837
|
+
args: ['aria-label-close-button']
|
|
13838
|
+
}], openedby: [{
|
|
13839
|
+
type: Input
|
|
13840
|
+
}], closedby: [{
|
|
13841
|
+
type: Input
|
|
13842
|
+
}], fullscreen: [{
|
|
13843
|
+
type: Input
|
|
13844
|
+
}], fullscreenMobile: [{
|
|
13845
|
+
type: Input,
|
|
13846
|
+
args: ['fullscreen--mobile']
|
|
13847
|
+
}], fullscreenTablet: [{
|
|
13848
|
+
type: Input,
|
|
13849
|
+
args: ['fullscreen--tablet']
|
|
13850
|
+
}], fullscreenLaptop: [{
|
|
13851
|
+
type: Input,
|
|
13852
|
+
args: ['fullscreen--laptop']
|
|
13853
|
+
}], fullscreenDesktop: [{
|
|
13854
|
+
type: Input,
|
|
13855
|
+
args: ['fullscreen--desktop']
|
|
13856
|
+
}], HIDE_EVENT: [{
|
|
13857
|
+
type: Output
|
|
13858
|
+
}] } });
|
|
13859
13859
|
/**
|
|
13860
13860
|
* @description Type-only wrapper for <px-fieldset>
|
|
13861
13861
|
*/
|
|
@@ -34243,6 +34243,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
34243
34243
|
type: Input,
|
|
34244
34244
|
args: ['word-break-all--desktop']
|
|
34245
34245
|
}] } });
|
|
34246
|
+
/**
|
|
34247
|
+
* @description Type-only wrapper for <px-spinner>
|
|
34248
|
+
*/
|
|
34249
|
+
class PxSpinner {
|
|
34250
|
+
elementRef;
|
|
34251
|
+
set size(value) {
|
|
34252
|
+
this.elementRef.nativeElement['size'] = value;
|
|
34253
|
+
}
|
|
34254
|
+
get size() {
|
|
34255
|
+
return this.elementRef.nativeElement['size'];
|
|
34256
|
+
}
|
|
34257
|
+
set inverted(value) {
|
|
34258
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
34259
|
+
}
|
|
34260
|
+
get inverted() {
|
|
34261
|
+
return this.elementRef.nativeElement['inverted'];
|
|
34262
|
+
}
|
|
34263
|
+
set timeout(value) {
|
|
34264
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
34265
|
+
}
|
|
34266
|
+
get timeout() {
|
|
34267
|
+
return this.elementRef.nativeElement['timeout'];
|
|
34268
|
+
}
|
|
34269
|
+
set ariaLabel(value) {
|
|
34270
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
34271
|
+
}
|
|
34272
|
+
get ariaLabel() {
|
|
34273
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
34274
|
+
}
|
|
34275
|
+
constructor(elementRef) {
|
|
34276
|
+
this.elementRef = elementRef;
|
|
34277
|
+
}
|
|
34278
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
34279
|
+
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 });
|
|
34280
|
+
}
|
|
34281
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
|
|
34282
|
+
type: Directive,
|
|
34283
|
+
args: [{
|
|
34284
|
+
selector: 'px-spinner',
|
|
34285
|
+
standalone: true,
|
|
34286
|
+
}]
|
|
34287
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
34288
|
+
type: Input
|
|
34289
|
+
}], inverted: [{
|
|
34290
|
+
type: Input
|
|
34291
|
+
}], timeout: [{
|
|
34292
|
+
type: Input
|
|
34293
|
+
}], ariaLabel: [{
|
|
34294
|
+
type: Input,
|
|
34295
|
+
args: ['aria-label']
|
|
34296
|
+
}] } });
|
|
34246
34297
|
/**
|
|
34247
34298
|
* @description Type-only wrapper for <px-span>
|
|
34248
34299
|
*/
|
|
@@ -34783,57 +34834,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
34783
34834
|
type: Input,
|
|
34784
34835
|
args: ['word-break-all--desktop']
|
|
34785
34836
|
}] } });
|
|
34786
|
-
/**
|
|
34787
|
-
* @description Type-only wrapper for <px-spinner>
|
|
34788
|
-
*/
|
|
34789
|
-
class PxSpinner {
|
|
34790
|
-
elementRef;
|
|
34791
|
-
set size(value) {
|
|
34792
|
-
this.elementRef.nativeElement['size'] = value;
|
|
34793
|
-
}
|
|
34794
|
-
get size() {
|
|
34795
|
-
return this.elementRef.nativeElement['size'];
|
|
34796
|
-
}
|
|
34797
|
-
set inverted(value) {
|
|
34798
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
34799
|
-
}
|
|
34800
|
-
get inverted() {
|
|
34801
|
-
return this.elementRef.nativeElement['inverted'];
|
|
34802
|
-
}
|
|
34803
|
-
set timeout(value) {
|
|
34804
|
-
this.elementRef.nativeElement['timeout'] = value;
|
|
34805
|
-
}
|
|
34806
|
-
get timeout() {
|
|
34807
|
-
return this.elementRef.nativeElement['timeout'];
|
|
34808
|
-
}
|
|
34809
|
-
set ariaLabel(value) {
|
|
34810
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
34811
|
-
}
|
|
34812
|
-
get ariaLabel() {
|
|
34813
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
34814
|
-
}
|
|
34815
|
-
constructor(elementRef) {
|
|
34816
|
-
this.elementRef = elementRef;
|
|
34817
|
-
}
|
|
34818
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
34819
|
-
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 });
|
|
34820
|
-
}
|
|
34821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
|
|
34822
|
-
type: Directive,
|
|
34823
|
-
args: [{
|
|
34824
|
-
selector: 'px-spinner',
|
|
34825
|
-
standalone: true,
|
|
34826
|
-
}]
|
|
34827
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
34828
|
-
type: Input
|
|
34829
|
-
}], inverted: [{
|
|
34830
|
-
type: Input
|
|
34831
|
-
}], timeout: [{
|
|
34832
|
-
type: Input
|
|
34833
|
-
}], ariaLabel: [{
|
|
34834
|
-
type: Input,
|
|
34835
|
-
args: ['aria-label']
|
|
34836
|
-
}] } });
|
|
34837
34837
|
/**
|
|
34838
34838
|
* @description Type-only wrapper for <px-status>
|
|
34839
34839
|
*/
|
|
@@ -37258,6 +37258,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
37258
37258
|
type: Input,
|
|
37259
37259
|
args: ['word-break-all--desktop']
|
|
37260
37260
|
}] } });
|
|
37261
|
+
/**
|
|
37262
|
+
* @description Type-only wrapper for <px-timeline>
|
|
37263
|
+
*/
|
|
37264
|
+
class PxTimeline {
|
|
37265
|
+
elementRef;
|
|
37266
|
+
set inverted(value) {
|
|
37267
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
37268
|
+
}
|
|
37269
|
+
get inverted() {
|
|
37270
|
+
return this.elementRef.nativeElement['inverted'];
|
|
37271
|
+
}
|
|
37272
|
+
constructor(elementRef) {
|
|
37273
|
+
this.elementRef = elementRef;
|
|
37274
|
+
}
|
|
37275
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
37276
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimeline, isStandalone: true, selector: "px-timeline", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
37277
|
+
}
|
|
37278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, decorators: [{
|
|
37279
|
+
type: Directive,
|
|
37280
|
+
args: [{
|
|
37281
|
+
selector: 'px-timeline',
|
|
37282
|
+
standalone: true,
|
|
37283
|
+
}]
|
|
37284
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
37285
|
+
type: Input
|
|
37286
|
+
}] } });
|
|
37287
|
+
/**
|
|
37288
|
+
* @description Type-only wrapper for <px-timeline-item>
|
|
37289
|
+
*/
|
|
37290
|
+
class PxTimelineItem {
|
|
37291
|
+
elementRef;
|
|
37292
|
+
set inverted(value) {
|
|
37293
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
37294
|
+
}
|
|
37295
|
+
get inverted() {
|
|
37296
|
+
return this.elementRef.nativeElement['inverted'];
|
|
37297
|
+
}
|
|
37298
|
+
set lastchild(value) {
|
|
37299
|
+
this.elementRef.nativeElement['lastchild'] = value;
|
|
37300
|
+
}
|
|
37301
|
+
get lastchild() {
|
|
37302
|
+
return this.elementRef.nativeElement['lastchild'];
|
|
37303
|
+
}
|
|
37304
|
+
set item(value) {
|
|
37305
|
+
this.elementRef.nativeElement['item'] = value;
|
|
37306
|
+
}
|
|
37307
|
+
get item() {
|
|
37308
|
+
return this.elementRef.nativeElement['item'];
|
|
37309
|
+
}
|
|
37310
|
+
TIMELINE_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
37311
|
+
constructor(elementRef) {
|
|
37312
|
+
this.elementRef = elementRef;
|
|
37313
|
+
this.elementRef.nativeElement.addEventListener('TIMELINE_ITEM_CONNECTED_EVENT', (e) => {
|
|
37314
|
+
this.TIMELINE_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
37315
|
+
});
|
|
37316
|
+
}
|
|
37317
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
37318
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimelineItem, isStandalone: true, selector: "px-timeline-item", inputs: { inverted: "inverted", lastchild: "lastchild", item: "item" }, outputs: { TIMELINE_ITEM_CONNECTED_EVENT: "TIMELINE_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
37319
|
+
}
|
|
37320
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, decorators: [{
|
|
37321
|
+
type: Directive,
|
|
37322
|
+
args: [{
|
|
37323
|
+
selector: 'px-timeline-item',
|
|
37324
|
+
standalone: true,
|
|
37325
|
+
}]
|
|
37326
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
37327
|
+
type: Input
|
|
37328
|
+
}], lastchild: [{
|
|
37329
|
+
type: Input
|
|
37330
|
+
}], item: [{
|
|
37331
|
+
type: Input
|
|
37332
|
+
}], TIMELINE_ITEM_CONNECTED_EVENT: [{
|
|
37333
|
+
type: Output
|
|
37334
|
+
}] } });
|
|
37261
37335
|
/**
|
|
37262
37336
|
* @description Type-only wrapper for <px-tile>
|
|
37263
37337
|
*/
|
|
@@ -40481,80 +40555,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
40481
40555
|
}], change: [{
|
|
40482
40556
|
type: Output
|
|
40483
40557
|
}] } });
|
|
40484
|
-
/**
|
|
40485
|
-
* @description Type-only wrapper for <px-timeline>
|
|
40486
|
-
*/
|
|
40487
|
-
class PxTimeline {
|
|
40488
|
-
elementRef;
|
|
40489
|
-
set inverted(value) {
|
|
40490
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
40491
|
-
}
|
|
40492
|
-
get inverted() {
|
|
40493
|
-
return this.elementRef.nativeElement['inverted'];
|
|
40494
|
-
}
|
|
40495
|
-
constructor(elementRef) {
|
|
40496
|
-
this.elementRef = elementRef;
|
|
40497
|
-
}
|
|
40498
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
40499
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimeline, isStandalone: true, selector: "px-timeline", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
40500
|
-
}
|
|
40501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimeline, decorators: [{
|
|
40502
|
-
type: Directive,
|
|
40503
|
-
args: [{
|
|
40504
|
-
selector: 'px-timeline',
|
|
40505
|
-
standalone: true,
|
|
40506
|
-
}]
|
|
40507
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
40508
|
-
type: Input
|
|
40509
|
-
}] } });
|
|
40510
|
-
/**
|
|
40511
|
-
* @description Type-only wrapper for <px-timeline-item>
|
|
40512
|
-
*/
|
|
40513
|
-
class PxTimelineItem {
|
|
40514
|
-
elementRef;
|
|
40515
|
-
set inverted(value) {
|
|
40516
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
40517
|
-
}
|
|
40518
|
-
get inverted() {
|
|
40519
|
-
return this.elementRef.nativeElement['inverted'];
|
|
40520
|
-
}
|
|
40521
|
-
set lastchild(value) {
|
|
40522
|
-
this.elementRef.nativeElement['lastchild'] = value;
|
|
40523
|
-
}
|
|
40524
|
-
get lastchild() {
|
|
40525
|
-
return this.elementRef.nativeElement['lastchild'];
|
|
40526
|
-
}
|
|
40527
|
-
set item(value) {
|
|
40528
|
-
this.elementRef.nativeElement['item'] = value;
|
|
40529
|
-
}
|
|
40530
|
-
get item() {
|
|
40531
|
-
return this.elementRef.nativeElement['item'];
|
|
40532
|
-
}
|
|
40533
|
-
TIMELINE_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
40534
|
-
constructor(elementRef) {
|
|
40535
|
-
this.elementRef = elementRef;
|
|
40536
|
-
this.elementRef.nativeElement.addEventListener('TIMELINE_ITEM_CONNECTED_EVENT', (e) => {
|
|
40537
|
-
this.TIMELINE_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
40538
|
-
});
|
|
40539
|
-
}
|
|
40540
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
40541
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxTimelineItem, isStandalone: true, selector: "px-timeline-item", inputs: { inverted: "inverted", lastchild: "lastchild", item: "item" }, outputs: { TIMELINE_ITEM_CONNECTED_EVENT: "TIMELINE_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
40542
|
-
}
|
|
40543
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxTimelineItem, decorators: [{
|
|
40544
|
-
type: Directive,
|
|
40545
|
-
args: [{
|
|
40546
|
-
selector: 'px-timeline-item',
|
|
40547
|
-
standalone: true,
|
|
40548
|
-
}]
|
|
40549
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
40550
|
-
type: Input
|
|
40551
|
-
}], lastchild: [{
|
|
40552
|
-
type: Input
|
|
40553
|
-
}], item: [{
|
|
40554
|
-
type: Input
|
|
40555
|
-
}], TIMELINE_ITEM_CONNECTED_EVENT: [{
|
|
40556
|
-
type: Output
|
|
40557
|
-
}] } });
|
|
40558
40558
|
/**
|
|
40559
40559
|
* @description Type-only wrapper for <px-typography>
|
|
40560
40560
|
*/
|
|
@@ -41302,7 +41302,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41302
41302
|
}] } });
|
|
41303
41303
|
class Lavender {
|
|
41304
41304
|
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,
|
|
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, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxAppleseed, PxCarousel, PxCarouselItem, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDropdown, PxDrawer, 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, PxSpinner, PxSpan, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTimeline, PxTimelineItem, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxAppleseed, PxCarousel, PxCarouselItem, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDropdown, PxDrawer, 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, PxSpinner, PxSpan, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTimeline, PxTimelineItem, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41306
41306
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41307
41307
|
}
|
|
41308
41308
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41318,24 +41318,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41318
41318
|
PxBreadcrumb,
|
|
41319
41319
|
PxButton,
|
|
41320
41320
|
PxButtonWrapper,
|
|
41321
|
-
PxCard,
|
|
41322
41321
|
PxButtonIcon,
|
|
41323
|
-
|
|
41324
|
-
PxCarousel,
|
|
41325
|
-
PxCarouselItem,
|
|
41322
|
+
PxCard,
|
|
41326
41323
|
PxCell,
|
|
41327
41324
|
PxCellButton,
|
|
41328
41325
|
PxCellCheckbox,
|
|
41329
41326
|
PxCellLink,
|
|
41330
41327
|
PxCellRadio,
|
|
41331
41328
|
PxCellSwitch,
|
|
41329
|
+
PxAppleseed,
|
|
41330
|
+
PxCarousel,
|
|
41331
|
+
PxCarouselItem,
|
|
41332
41332
|
PxCheckbox,
|
|
41333
41333
|
PxColorOption,
|
|
41334
41334
|
PxColorOptionLink,
|
|
41335
41335
|
PxContainer,
|
|
41336
|
-
PxDrawer,
|
|
41337
41336
|
PxContentHeader,
|
|
41338
41337
|
PxDropdown,
|
|
41338
|
+
PxDrawer,
|
|
41339
41339
|
PxFieldset,
|
|
41340
41340
|
PxGrid,
|
|
41341
41341
|
PxH1,
|
|
@@ -41377,8 +41377,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41377
41377
|
PxSelectableBoxRadio,
|
|
41378
41378
|
PxSeparator,
|
|
41379
41379
|
PxSkeleton,
|
|
41380
|
-
PxSpan,
|
|
41381
41380
|
PxSpinner,
|
|
41381
|
+
PxSpan,
|
|
41382
41382
|
PxStatus,
|
|
41383
41383
|
PxStatusCard,
|
|
41384
41384
|
PxStickyContainer,
|
|
@@ -41394,14 +41394,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41394
41394
|
PxTab,
|
|
41395
41395
|
PxTabPanel,
|
|
41396
41396
|
PxTag,
|
|
41397
|
+
PxTimeline,
|
|
41398
|
+
PxTimelineItem,
|
|
41397
41399
|
PxTile,
|
|
41398
41400
|
PxTileButton,
|
|
41399
41401
|
PxTileCheckbox,
|
|
41400
41402
|
PxTileLink,
|
|
41401
41403
|
PxTileRadio,
|
|
41402
41404
|
PxTileSwitch,
|
|
41403
|
-
PxTimeline,
|
|
41404
|
-
PxTimelineItem,
|
|
41405
41405
|
PxTypography,
|
|
41406
41406
|
PxPatch,
|
|
41407
41407
|
PxIcon,
|
|
@@ -41420,24 +41420,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41420
41420
|
PxBreadcrumb,
|
|
41421
41421
|
PxButton,
|
|
41422
41422
|
PxButtonWrapper,
|
|
41423
|
-
PxCard,
|
|
41424
41423
|
PxButtonIcon,
|
|
41425
|
-
|
|
41426
|
-
PxCarousel,
|
|
41427
|
-
PxCarouselItem,
|
|
41424
|
+
PxCard,
|
|
41428
41425
|
PxCell,
|
|
41429
41426
|
PxCellButton,
|
|
41430
41427
|
PxCellCheckbox,
|
|
41431
41428
|
PxCellLink,
|
|
41432
41429
|
PxCellRadio,
|
|
41433
41430
|
PxCellSwitch,
|
|
41431
|
+
PxAppleseed,
|
|
41432
|
+
PxCarousel,
|
|
41433
|
+
PxCarouselItem,
|
|
41434
41434
|
PxCheckbox,
|
|
41435
41435
|
PxColorOption,
|
|
41436
41436
|
PxColorOptionLink,
|
|
41437
41437
|
PxContainer,
|
|
41438
|
-
PxDrawer,
|
|
41439
41438
|
PxContentHeader,
|
|
41440
41439
|
PxDropdown,
|
|
41440
|
+
PxDrawer,
|
|
41441
41441
|
PxFieldset,
|
|
41442
41442
|
PxGrid,
|
|
41443
41443
|
PxH1,
|
|
@@ -41479,8 +41479,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41479
41479
|
PxSelectableBoxRadio,
|
|
41480
41480
|
PxSeparator,
|
|
41481
41481
|
PxSkeleton,
|
|
41482
|
-
PxSpan,
|
|
41483
41482
|
PxSpinner,
|
|
41483
|
+
PxSpan,
|
|
41484
41484
|
PxStatus,
|
|
41485
41485
|
PxStatusCard,
|
|
41486
41486
|
PxStickyContainer,
|
|
@@ -41496,14 +41496,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41496
41496
|
PxTab,
|
|
41497
41497
|
PxTabPanel,
|
|
41498
41498
|
PxTag,
|
|
41499
|
+
PxTimeline,
|
|
41500
|
+
PxTimelineItem,
|
|
41499
41501
|
PxTile,
|
|
41500
41502
|
PxTileButton,
|
|
41501
41503
|
PxTileCheckbox,
|
|
41502
41504
|
PxTileLink,
|
|
41503
41505
|
PxTileRadio,
|
|
41504
41506
|
PxTileSwitch,
|
|
41505
|
-
PxTimeline,
|
|
41506
|
-
PxTimelineItem,
|
|
41507
41507
|
PxTypography,
|
|
41508
41508
|
PxPatch,
|
|
41509
41509
|
PxIcon,
|