@proximus/lavender-angular 1.4.15-alpha.17 → 1.4.15-alpha.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/fesm2022/proximus-lavender-angular.mjs +705 -677
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +241 -234
- 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: [{
|
|
@@ -27624,175 +27624,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
27624
27624
|
type: Input,
|
|
27625
27625
|
args: ['word-break-all--desktop']
|
|
27626
27626
|
}] } });
|
|
27627
|
-
/**
|
|
27628
|
-
* @description Type-only wrapper for <px-card-actions>
|
|
27629
|
-
*/
|
|
27630
|
-
class PxCardActions {
|
|
27631
|
-
elementRef;
|
|
27632
|
-
constructor(elementRef) {
|
|
27633
|
-
this.elementRef = elementRef;
|
|
27634
|
-
}
|
|
27635
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27636
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardActions, isStandalone: true, selector: "px-card-actions", ngImport: i0 });
|
|
27637
|
-
}
|
|
27638
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, decorators: [{
|
|
27639
|
-
type: Directive,
|
|
27640
|
-
args: [{
|
|
27641
|
-
selector: 'px-card-actions',
|
|
27642
|
-
standalone: true,
|
|
27643
|
-
}]
|
|
27644
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
27645
|
-
/**
|
|
27646
|
-
* @description Type-only wrapper for <px-card-container>
|
|
27647
|
-
*/
|
|
27648
|
-
class PxCardContainer {
|
|
27649
|
-
elementRef;
|
|
27650
|
-
/** Switches to a dark surface with inverted text colors. */
|
|
27651
|
-
set inverted(value) {
|
|
27652
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
27653
|
-
}
|
|
27654
|
-
get inverted() {
|
|
27655
|
-
return this.elementRef.nativeElement['inverted'];
|
|
27656
|
-
}
|
|
27657
|
-
/** URL of the card media image. */
|
|
27658
|
-
set src(value) {
|
|
27659
|
-
this.elementRef.nativeElement['src'] = value;
|
|
27660
|
-
}
|
|
27661
|
-
get src() {
|
|
27662
|
-
return this.elementRef.nativeElement['src'];
|
|
27663
|
-
}
|
|
27664
|
-
/** Where the media image is rendered. */
|
|
27665
|
-
set mediaPosition(value) {
|
|
27666
|
-
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
27667
|
-
}
|
|
27668
|
-
get mediaPosition() {
|
|
27669
|
-
return this.elementRef.nativeElement['mediaPosition'];
|
|
27670
|
-
}
|
|
27671
|
-
/** How the media image is fitted. */
|
|
27672
|
-
set mediaSize(value) {
|
|
27673
|
-
this.elementRef.nativeElement['mediaSize'] = value;
|
|
27674
|
-
}
|
|
27675
|
-
get mediaSize() {
|
|
27676
|
-
return this.elementRef.nativeElement['mediaSize'];
|
|
27677
|
-
}
|
|
27678
|
-
set mediaAltText(value) {
|
|
27679
|
-
this.elementRef.nativeElement['mediaAltText'] = value;
|
|
27680
|
-
}
|
|
27681
|
-
get mediaAltText() {
|
|
27682
|
-
return this.elementRef.nativeElement['mediaAltText'];
|
|
27683
|
-
}
|
|
27684
|
-
/** Inner content padding size. */
|
|
27685
|
-
set padding(value) {
|
|
27686
|
-
this.elementRef.nativeElement['padding'] = value;
|
|
27687
|
-
}
|
|
27688
|
-
get padding() {
|
|
27689
|
-
return this.elementRef.nativeElement['padding'];
|
|
27690
|
-
}
|
|
27691
|
-
/** Aspect ratio applied to top media (e.g. `'16:9'`, `'1:1'`, `'4:3'`). */
|
|
27692
|
-
set aspectRatio(value) {
|
|
27693
|
-
this.elementRef.nativeElement['aspectRatio'] = value;
|
|
27694
|
-
}
|
|
27695
|
-
get aspectRatio() {
|
|
27696
|
-
return this.elementRef.nativeElement['aspectRatio'];
|
|
27697
|
-
}
|
|
27698
|
-
/** Whether the card has a visible border. */
|
|
27699
|
-
set hasBorder(value) {
|
|
27700
|
-
this.elementRef.nativeElement['hasBorder'] = value;
|
|
27701
|
-
}
|
|
27702
|
-
get hasBorder() {
|
|
27703
|
-
return this.elementRef.nativeElement['hasBorder'];
|
|
27704
|
-
}
|
|
27705
|
-
/** Surface color preset. */
|
|
27706
|
-
set backgroundColor(value) {
|
|
27707
|
-
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
27708
|
-
}
|
|
27709
|
-
get backgroundColor() {
|
|
27710
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
27711
|
-
}
|
|
27712
|
-
/** URL of a full-card background image (delegated to `<px-container>`). */
|
|
27713
|
-
set backgroundImage(value) {
|
|
27714
|
-
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
27715
|
-
}
|
|
27716
|
-
get backgroundImage() {
|
|
27717
|
-
return this.elementRef.nativeElement['backgroundImage'];
|
|
27718
|
-
}
|
|
27719
|
-
set interactiveState(value) {
|
|
27720
|
-
this.elementRef.nativeElement['interactiveState'] = value;
|
|
27721
|
-
}
|
|
27722
|
-
get interactiveState() {
|
|
27723
|
-
return this.elementRef.nativeElement['interactiveState'];
|
|
27724
|
-
}
|
|
27725
|
-
/** Alt text for the media image. */
|
|
27726
|
-
set alternativeText(value) {
|
|
27727
|
-
this.elementRef.nativeElement['alternativeText'] = value;
|
|
27728
|
-
}
|
|
27729
|
-
get alternativeText() {
|
|
27730
|
-
return this.elementRef.nativeElement['alternativeText'];
|
|
27731
|
-
}
|
|
27732
|
-
constructor(elementRef) {
|
|
27733
|
-
this.elementRef = elementRef;
|
|
27734
|
-
}
|
|
27735
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27736
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardContainer, isStandalone: true, selector: "px-card-container", inputs: { inverted: "inverted", src: "src", mediaPosition: ["media-position", "mediaPosition"], mediaSize: ["media-size", "mediaSize"], mediaAltText: ["media-alt-text", "mediaAltText"], padding: "padding", aspectRatio: ["aspect-ratio", "aspectRatio"], hasBorder: ["has-border", "hasBorder"], backgroundColor: ["background-color", "backgroundColor"], backgroundImage: ["background-image", "backgroundImage"], interactiveState: ["interactive-state", "interactiveState"], alternativeText: ["alternative-text", "alternativeText"] }, ngImport: i0 });
|
|
27737
|
-
}
|
|
27738
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, decorators: [{
|
|
27739
|
-
type: Directive,
|
|
27740
|
-
args: [{
|
|
27741
|
-
selector: 'px-card-container',
|
|
27742
|
-
standalone: true,
|
|
27743
|
-
}]
|
|
27744
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
27745
|
-
type: Input
|
|
27746
|
-
}], src: [{
|
|
27747
|
-
type: Input
|
|
27748
|
-
}], mediaPosition: [{
|
|
27749
|
-
type: Input,
|
|
27750
|
-
args: ['media-position']
|
|
27751
|
-
}], mediaSize: [{
|
|
27752
|
-
type: Input,
|
|
27753
|
-
args: ['media-size']
|
|
27754
|
-
}], mediaAltText: [{
|
|
27755
|
-
type: Input,
|
|
27756
|
-
args: ['media-alt-text']
|
|
27757
|
-
}], padding: [{
|
|
27758
|
-
type: Input
|
|
27759
|
-
}], aspectRatio: [{
|
|
27760
|
-
type: Input,
|
|
27761
|
-
args: ['aspect-ratio']
|
|
27762
|
-
}], hasBorder: [{
|
|
27763
|
-
type: Input,
|
|
27764
|
-
args: ['has-border']
|
|
27765
|
-
}], backgroundColor: [{
|
|
27766
|
-
type: Input,
|
|
27767
|
-
args: ['background-color']
|
|
27768
|
-
}], backgroundImage: [{
|
|
27769
|
-
type: Input,
|
|
27770
|
-
args: ['background-image']
|
|
27771
|
-
}], interactiveState: [{
|
|
27772
|
-
type: Input,
|
|
27773
|
-
args: ['interactive-state']
|
|
27774
|
-
}], alternativeText: [{
|
|
27775
|
-
type: Input,
|
|
27776
|
-
args: ['alternative-text']
|
|
27777
|
-
}] } });
|
|
27778
|
-
/**
|
|
27779
|
-
* @description Type-only wrapper for <px-card-heading>
|
|
27780
|
-
*/
|
|
27781
|
-
class PxCardHeading {
|
|
27782
|
-
elementRef;
|
|
27783
|
-
constructor(elementRef) {
|
|
27784
|
-
this.elementRef = elementRef;
|
|
27785
|
-
}
|
|
27786
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27787
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardHeading, isStandalone: true, selector: "px-card-heading", ngImport: i0 });
|
|
27788
|
-
}
|
|
27789
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, decorators: [{
|
|
27790
|
-
type: Directive,
|
|
27791
|
-
args: [{
|
|
27792
|
-
selector: 'px-card-heading',
|
|
27793
|
-
standalone: true,
|
|
27794
|
-
}]
|
|
27795
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
27796
27627
|
/**
|
|
27797
27628
|
* @description Type-only wrapper for <px-pillar>
|
|
27798
27629
|
*/
|
|
@@ -28316,6 +28147,175 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
28316
28147
|
type: Input,
|
|
28317
28148
|
args: ['word-break-all--desktop']
|
|
28318
28149
|
}] } });
|
|
28150
|
+
/**
|
|
28151
|
+
* @description Type-only wrapper for <px-card-actions>
|
|
28152
|
+
*/
|
|
28153
|
+
class PxCardActions {
|
|
28154
|
+
elementRef;
|
|
28155
|
+
constructor(elementRef) {
|
|
28156
|
+
this.elementRef = elementRef;
|
|
28157
|
+
}
|
|
28158
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28159
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardActions, isStandalone: true, selector: "px-card-actions", ngImport: i0 });
|
|
28160
|
+
}
|
|
28161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, decorators: [{
|
|
28162
|
+
type: Directive,
|
|
28163
|
+
args: [{
|
|
28164
|
+
selector: 'px-card-actions',
|
|
28165
|
+
standalone: true,
|
|
28166
|
+
}]
|
|
28167
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28168
|
+
/**
|
|
28169
|
+
* @description Type-only wrapper for <px-card-container>
|
|
28170
|
+
*/
|
|
28171
|
+
class PxCardContainer {
|
|
28172
|
+
elementRef;
|
|
28173
|
+
/** Switches to a dark surface with inverted text colors. */
|
|
28174
|
+
set inverted(value) {
|
|
28175
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
28176
|
+
}
|
|
28177
|
+
get inverted() {
|
|
28178
|
+
return this.elementRef.nativeElement['inverted'];
|
|
28179
|
+
}
|
|
28180
|
+
/** URL of the card media image. */
|
|
28181
|
+
set src(value) {
|
|
28182
|
+
this.elementRef.nativeElement['src'] = value;
|
|
28183
|
+
}
|
|
28184
|
+
get src() {
|
|
28185
|
+
return this.elementRef.nativeElement['src'];
|
|
28186
|
+
}
|
|
28187
|
+
/** Where the media image is rendered. */
|
|
28188
|
+
set mediaPosition(value) {
|
|
28189
|
+
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
28190
|
+
}
|
|
28191
|
+
get mediaPosition() {
|
|
28192
|
+
return this.elementRef.nativeElement['mediaPosition'];
|
|
28193
|
+
}
|
|
28194
|
+
/** How the media image is fitted. */
|
|
28195
|
+
set mediaSize(value) {
|
|
28196
|
+
this.elementRef.nativeElement['mediaSize'] = value;
|
|
28197
|
+
}
|
|
28198
|
+
get mediaSize() {
|
|
28199
|
+
return this.elementRef.nativeElement['mediaSize'];
|
|
28200
|
+
}
|
|
28201
|
+
set mediaAltText(value) {
|
|
28202
|
+
this.elementRef.nativeElement['mediaAltText'] = value;
|
|
28203
|
+
}
|
|
28204
|
+
get mediaAltText() {
|
|
28205
|
+
return this.elementRef.nativeElement['mediaAltText'];
|
|
28206
|
+
}
|
|
28207
|
+
/** Inner content padding size. */
|
|
28208
|
+
set padding(value) {
|
|
28209
|
+
this.elementRef.nativeElement['padding'] = value;
|
|
28210
|
+
}
|
|
28211
|
+
get padding() {
|
|
28212
|
+
return this.elementRef.nativeElement['padding'];
|
|
28213
|
+
}
|
|
28214
|
+
/** Aspect ratio applied to top media (e.g. `'16:9'`, `'1:1'`, `'4:3'`). */
|
|
28215
|
+
set aspectRatio(value) {
|
|
28216
|
+
this.elementRef.nativeElement['aspectRatio'] = value;
|
|
28217
|
+
}
|
|
28218
|
+
get aspectRatio() {
|
|
28219
|
+
return this.elementRef.nativeElement['aspectRatio'];
|
|
28220
|
+
}
|
|
28221
|
+
/** Whether the card has a visible border. */
|
|
28222
|
+
set hasBorder(value) {
|
|
28223
|
+
this.elementRef.nativeElement['hasBorder'] = value;
|
|
28224
|
+
}
|
|
28225
|
+
get hasBorder() {
|
|
28226
|
+
return this.elementRef.nativeElement['hasBorder'];
|
|
28227
|
+
}
|
|
28228
|
+
/** Surface color preset. */
|
|
28229
|
+
set backgroundColor(value) {
|
|
28230
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
28231
|
+
}
|
|
28232
|
+
get backgroundColor() {
|
|
28233
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
28234
|
+
}
|
|
28235
|
+
/** URL of a full-card background image (delegated to `<px-container>`). */
|
|
28236
|
+
set backgroundImage(value) {
|
|
28237
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
28238
|
+
}
|
|
28239
|
+
get backgroundImage() {
|
|
28240
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
28241
|
+
}
|
|
28242
|
+
set interactiveState(value) {
|
|
28243
|
+
this.elementRef.nativeElement['interactiveState'] = value;
|
|
28244
|
+
}
|
|
28245
|
+
get interactiveState() {
|
|
28246
|
+
return this.elementRef.nativeElement['interactiveState'];
|
|
28247
|
+
}
|
|
28248
|
+
/** Alt text for the media image. */
|
|
28249
|
+
set alternativeText(value) {
|
|
28250
|
+
this.elementRef.nativeElement['alternativeText'] = value;
|
|
28251
|
+
}
|
|
28252
|
+
get alternativeText() {
|
|
28253
|
+
return this.elementRef.nativeElement['alternativeText'];
|
|
28254
|
+
}
|
|
28255
|
+
constructor(elementRef) {
|
|
28256
|
+
this.elementRef = elementRef;
|
|
28257
|
+
}
|
|
28258
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28259
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardContainer, isStandalone: true, selector: "px-card-container", inputs: { inverted: "inverted", src: "src", mediaPosition: ["media-position", "mediaPosition"], mediaSize: ["media-size", "mediaSize"], mediaAltText: ["media-alt-text", "mediaAltText"], padding: "padding", aspectRatio: ["aspect-ratio", "aspectRatio"], hasBorder: ["has-border", "hasBorder"], backgroundColor: ["background-color", "backgroundColor"], backgroundImage: ["background-image", "backgroundImage"], interactiveState: ["interactive-state", "interactiveState"], alternativeText: ["alternative-text", "alternativeText"] }, ngImport: i0 });
|
|
28260
|
+
}
|
|
28261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, decorators: [{
|
|
28262
|
+
type: Directive,
|
|
28263
|
+
args: [{
|
|
28264
|
+
selector: 'px-card-container',
|
|
28265
|
+
standalone: true,
|
|
28266
|
+
}]
|
|
28267
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
28268
|
+
type: Input
|
|
28269
|
+
}], src: [{
|
|
28270
|
+
type: Input
|
|
28271
|
+
}], mediaPosition: [{
|
|
28272
|
+
type: Input,
|
|
28273
|
+
args: ['media-position']
|
|
28274
|
+
}], mediaSize: [{
|
|
28275
|
+
type: Input,
|
|
28276
|
+
args: ['media-size']
|
|
28277
|
+
}], mediaAltText: [{
|
|
28278
|
+
type: Input,
|
|
28279
|
+
args: ['media-alt-text']
|
|
28280
|
+
}], padding: [{
|
|
28281
|
+
type: Input
|
|
28282
|
+
}], aspectRatio: [{
|
|
28283
|
+
type: Input,
|
|
28284
|
+
args: ['aspect-ratio']
|
|
28285
|
+
}], hasBorder: [{
|
|
28286
|
+
type: Input,
|
|
28287
|
+
args: ['has-border']
|
|
28288
|
+
}], backgroundColor: [{
|
|
28289
|
+
type: Input,
|
|
28290
|
+
args: ['background-color']
|
|
28291
|
+
}], backgroundImage: [{
|
|
28292
|
+
type: Input,
|
|
28293
|
+
args: ['background-image']
|
|
28294
|
+
}], interactiveState: [{
|
|
28295
|
+
type: Input,
|
|
28296
|
+
args: ['interactive-state']
|
|
28297
|
+
}], alternativeText: [{
|
|
28298
|
+
type: Input,
|
|
28299
|
+
args: ['alternative-text']
|
|
28300
|
+
}] } });
|
|
28301
|
+
/**
|
|
28302
|
+
* @description Type-only wrapper for <px-card-heading>
|
|
28303
|
+
*/
|
|
28304
|
+
class PxCardHeading {
|
|
28305
|
+
elementRef;
|
|
28306
|
+
constructor(elementRef) {
|
|
28307
|
+
this.elementRef = elementRef;
|
|
28308
|
+
}
|
|
28309
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28310
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardHeading, isStandalone: true, selector: "px-card-heading", ngImport: i0 });
|
|
28311
|
+
}
|
|
28312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, decorators: [{
|
|
28313
|
+
type: Directive,
|
|
28314
|
+
args: [{
|
|
28315
|
+
selector: 'px-card-heading',
|
|
28316
|
+
standalone: true,
|
|
28317
|
+
}]
|
|
28318
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28319
28319
|
/**
|
|
28320
28320
|
* @description Type-only wrapper for <px-price>
|
|
28321
28321
|
*/
|
|
@@ -28822,16 +28822,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
28822
28822
|
args: ['word-break-all--desktop']
|
|
28823
28823
|
}] } });
|
|
28824
28824
|
/**
|
|
28825
|
-
* @description Type-only wrapper for <px-
|
|
28825
|
+
* @description Type-only wrapper for <px-radio>
|
|
28826
28826
|
*/
|
|
28827
|
-
class
|
|
28827
|
+
class PxRadio {
|
|
28828
28828
|
elementRef;
|
|
28829
|
+
/** The validation state of the radio button. */
|
|
28830
|
+
set state(value) {
|
|
28831
|
+
this.elementRef.nativeElement['state'] = value;
|
|
28832
|
+
}
|
|
28833
|
+
get state() {
|
|
28834
|
+
return this.elementRef.nativeElement['state'];
|
|
28835
|
+
}
|
|
28836
|
+
/** The visual variant of the radio button. */
|
|
28837
|
+
set variant(value) {
|
|
28838
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
28839
|
+
}
|
|
28840
|
+
get variant() {
|
|
28841
|
+
return this.elementRef.nativeElement['variant'];
|
|
28842
|
+
}
|
|
28843
|
+
/** Whether to use inverted (dark background) styling. */
|
|
28829
28844
|
set inverted(value) {
|
|
28830
28845
|
this.elementRef.nativeElement['inverted'] = value;
|
|
28831
28846
|
}
|
|
28832
28847
|
get inverted() {
|
|
28833
28848
|
return this.elementRef.nativeElement['inverted'];
|
|
28834
28849
|
}
|
|
28850
|
+
set size(value) {
|
|
28851
|
+
this.elementRef.nativeElement['size'] = value;
|
|
28852
|
+
}
|
|
28853
|
+
get size() {
|
|
28854
|
+
return this.elementRef.nativeElement['size'];
|
|
28855
|
+
}
|
|
28856
|
+
/** Whether the radio button is checked. */
|
|
28857
|
+
set checked(value) {
|
|
28858
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
28859
|
+
}
|
|
28860
|
+
get checked() {
|
|
28861
|
+
return this.elementRef.nativeElement['checked'];
|
|
28862
|
+
}
|
|
28863
|
+
/** Whether the radio button is disabled. */
|
|
28864
|
+
set disabled(value) {
|
|
28865
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
28866
|
+
}
|
|
28867
|
+
get disabled() {
|
|
28868
|
+
return this.elementRef.nativeElement['disabled'];
|
|
28869
|
+
}
|
|
28870
|
+
/** Whether to apply hover styling. */
|
|
28871
|
+
set hover(value) {
|
|
28872
|
+
this.elementRef.nativeElement['hover'] = value;
|
|
28873
|
+
}
|
|
28874
|
+
get hover() {
|
|
28875
|
+
return this.elementRef.nativeElement['hover'];
|
|
28876
|
+
}
|
|
28877
|
+
/** The name of the radio button, used for form submission. */
|
|
28878
|
+
set name(value) {
|
|
28879
|
+
this.elementRef.nativeElement['name'] = value;
|
|
28880
|
+
}
|
|
28881
|
+
get name() {
|
|
28882
|
+
return this.elementRef.nativeElement['name'];
|
|
28883
|
+
}
|
|
28884
|
+
/** The value of the radio button, used for form submission. */
|
|
28885
|
+
set value(value) {
|
|
28886
|
+
this.elementRef.nativeElement['value'] = value;
|
|
28887
|
+
}
|
|
28888
|
+
get value() {
|
|
28889
|
+
return this.elementRef.nativeElement['value'];
|
|
28890
|
+
}
|
|
28835
28891
|
set grow(value) {
|
|
28836
28892
|
this.elementRef.nativeElement['grow'] = value;
|
|
28837
28893
|
}
|
|
@@ -29144,19 +29200,40 @@ class PxRibbon {
|
|
|
29144
29200
|
get wordBreakAllDesktop() {
|
|
29145
29201
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
29146
29202
|
}
|
|
29203
|
+
/** Fired when the radio button becomes checked. */
|
|
29204
|
+
change = new EventEmitter();
|
|
29147
29205
|
constructor(elementRef) {
|
|
29148
29206
|
this.elementRef = elementRef;
|
|
29207
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
29208
|
+
this.change.emit(e.detail);
|
|
29209
|
+
});
|
|
29149
29210
|
}
|
|
29150
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29151
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
29211
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29212
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxRadio, isStandalone: true, selector: "px-radio", inputs: { state: "state", variant: "variant", inverted: "inverted", size: "size", checked: "checked", disabled: "disabled", hover: "hover", name: "name", value: "value", 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 });
|
|
29152
29213
|
}
|
|
29153
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadio, decorators: [{
|
|
29154
29215
|
type: Directive,
|
|
29155
29216
|
args: [{
|
|
29156
|
-
selector: 'px-
|
|
29217
|
+
selector: 'px-radio',
|
|
29157
29218
|
standalone: true,
|
|
29158
29219
|
}]
|
|
29159
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
29220
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
29221
|
+
type: Input
|
|
29222
|
+
}], variant: [{
|
|
29223
|
+
type: Input
|
|
29224
|
+
}], inverted: [{
|
|
29225
|
+
type: Input
|
|
29226
|
+
}], size: [{
|
|
29227
|
+
type: Input
|
|
29228
|
+
}], checked: [{
|
|
29229
|
+
type: Input
|
|
29230
|
+
}], disabled: [{
|
|
29231
|
+
type: Input
|
|
29232
|
+
}], hover: [{
|
|
29233
|
+
type: Input
|
|
29234
|
+
}], name: [{
|
|
29235
|
+
type: Input
|
|
29236
|
+
}], value: [{
|
|
29160
29237
|
type: Input
|
|
29161
29238
|
}], grow: [{
|
|
29162
29239
|
type: Input
|
|
@@ -29309,27 +29386,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
29309
29386
|
}], wordBreakAllDesktop: [{
|
|
29310
29387
|
type: Input,
|
|
29311
29388
|
args: ['word-break-all--desktop']
|
|
29389
|
+
}], change: [{
|
|
29390
|
+
type: Output
|
|
29312
29391
|
}] } });
|
|
29313
29392
|
/**
|
|
29314
|
-
* @description Type-only wrapper for <px-radio>
|
|
29393
|
+
* @description Type-only wrapper for <px-radio-base>
|
|
29315
29394
|
*/
|
|
29316
|
-
class
|
|
29395
|
+
class PxRadioBase {
|
|
29317
29396
|
elementRef;
|
|
29318
|
-
|
|
29319
|
-
|
|
29320
|
-
this.elementRef.nativeElement['state'] = value;
|
|
29321
|
-
}
|
|
29322
|
-
get state() {
|
|
29323
|
-
return this.elementRef.nativeElement['state'];
|
|
29324
|
-
}
|
|
29325
|
-
/** The visual variant of the radio button. */
|
|
29326
|
-
set variant(value) {
|
|
29327
|
-
this.elementRef.nativeElement['variant'] = value;
|
|
29397
|
+
set hover(value) {
|
|
29398
|
+
this.elementRef.nativeElement['hover'] = value;
|
|
29328
29399
|
}
|
|
29329
|
-
get
|
|
29330
|
-
return this.elementRef.nativeElement['
|
|
29400
|
+
get hover() {
|
|
29401
|
+
return this.elementRef.nativeElement['hover'];
|
|
29331
29402
|
}
|
|
29332
|
-
/** Whether to use inverted (dark background) styling. */
|
|
29333
29403
|
set inverted(value) {
|
|
29334
29404
|
this.elementRef.nativeElement['inverted'] = value;
|
|
29335
29405
|
}
|
|
@@ -29342,41 +29412,6 @@ class PxRadio {
|
|
|
29342
29412
|
get size() {
|
|
29343
29413
|
return this.elementRef.nativeElement['size'];
|
|
29344
29414
|
}
|
|
29345
|
-
/** Whether the radio button is checked. */
|
|
29346
|
-
set checked(value) {
|
|
29347
|
-
this.elementRef.nativeElement['checked'] = value;
|
|
29348
|
-
}
|
|
29349
|
-
get checked() {
|
|
29350
|
-
return this.elementRef.nativeElement['checked'];
|
|
29351
|
-
}
|
|
29352
|
-
/** Whether the radio button is disabled. */
|
|
29353
|
-
set disabled(value) {
|
|
29354
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
29355
|
-
}
|
|
29356
|
-
get disabled() {
|
|
29357
|
-
return this.elementRef.nativeElement['disabled'];
|
|
29358
|
-
}
|
|
29359
|
-
/** Whether to apply hover styling. */
|
|
29360
|
-
set hover(value) {
|
|
29361
|
-
this.elementRef.nativeElement['hover'] = value;
|
|
29362
|
-
}
|
|
29363
|
-
get hover() {
|
|
29364
|
-
return this.elementRef.nativeElement['hover'];
|
|
29365
|
-
}
|
|
29366
|
-
/** The name of the radio button, used for form submission. */
|
|
29367
|
-
set name(value) {
|
|
29368
|
-
this.elementRef.nativeElement['name'] = value;
|
|
29369
|
-
}
|
|
29370
|
-
get name() {
|
|
29371
|
-
return this.elementRef.nativeElement['name'];
|
|
29372
|
-
}
|
|
29373
|
-
/** The value of the radio button, used for form submission. */
|
|
29374
|
-
set value(value) {
|
|
29375
|
-
this.elementRef.nativeElement['value'] = value;
|
|
29376
|
-
}
|
|
29377
|
-
get value() {
|
|
29378
|
-
return this.elementRef.nativeElement['value'];
|
|
29379
|
-
}
|
|
29380
29415
|
set grow(value) {
|
|
29381
29416
|
this.elementRef.nativeElement['grow'] = value;
|
|
29382
29417
|
}
|
|
@@ -29689,41 +29724,24 @@ class PxRadio {
|
|
|
29689
29724
|
get wordBreakAllDesktop() {
|
|
29690
29725
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
29691
29726
|
}
|
|
29692
|
-
/** Fired when the radio button becomes checked. */
|
|
29693
|
-
change = new EventEmitter();
|
|
29694
29727
|
constructor(elementRef) {
|
|
29695
29728
|
this.elementRef = elementRef;
|
|
29696
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
29697
|
-
this.change.emit(e.detail);
|
|
29698
|
-
});
|
|
29699
29729
|
}
|
|
29700
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29701
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
29730
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29731
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxRadioBase, isStandalone: true, selector: "px-radio-base", inputs: { hover: "hover", inverted: "inverted", 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 });
|
|
29702
29732
|
}
|
|
29703
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29733
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioBase, decorators: [{
|
|
29704
29734
|
type: Directive,
|
|
29705
29735
|
args: [{
|
|
29706
|
-
selector: 'px-radio',
|
|
29736
|
+
selector: 'px-radio-base',
|
|
29707
29737
|
standalone: true,
|
|
29708
29738
|
}]
|
|
29709
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
29710
|
-
type: Input
|
|
29711
|
-
}], variant: [{
|
|
29739
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { hover: [{
|
|
29712
29740
|
type: Input
|
|
29713
29741
|
}], inverted: [{
|
|
29714
29742
|
type: Input
|
|
29715
29743
|
}], size: [{
|
|
29716
29744
|
type: Input
|
|
29717
|
-
}], checked: [{
|
|
29718
|
-
type: Input
|
|
29719
|
-
}], disabled: [{
|
|
29720
|
-
type: Input
|
|
29721
|
-
}], hover: [{
|
|
29722
|
-
type: Input
|
|
29723
|
-
}], name: [{
|
|
29724
|
-
type: Input
|
|
29725
|
-
}], value: [{
|
|
29726
|
-
type: Input
|
|
29727
29745
|
}], grow: [{
|
|
29728
29746
|
type: Input
|
|
29729
29747
|
}], growMobile: [{
|
|
@@ -29875,19 +29893,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
29875
29893
|
}], wordBreakAllDesktop: [{
|
|
29876
29894
|
type: Input,
|
|
29877
29895
|
args: ['word-break-all--desktop']
|
|
29878
|
-
}], change: [{
|
|
29879
|
-
type: Output
|
|
29880
29896
|
}] } });
|
|
29881
29897
|
/**
|
|
29882
|
-
* @description Type-only wrapper for <px-radio-
|
|
29898
|
+
* @description Type-only wrapper for <px-radio-group>
|
|
29883
29899
|
*/
|
|
29884
|
-
class
|
|
29900
|
+
class PxRadioGroup {
|
|
29885
29901
|
elementRef;
|
|
29886
|
-
set
|
|
29887
|
-
this.elementRef.nativeElement['
|
|
29902
|
+
set name(value) {
|
|
29903
|
+
this.elementRef.nativeElement['name'] = value;
|
|
29888
29904
|
}
|
|
29889
|
-
get
|
|
29890
|
-
return this.elementRef.nativeElement['
|
|
29905
|
+
get name() {
|
|
29906
|
+
return this.elementRef.nativeElement['name'];
|
|
29907
|
+
}
|
|
29908
|
+
set gap(value) {
|
|
29909
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
29910
|
+
}
|
|
29911
|
+
get gap() {
|
|
29912
|
+
return this.elementRef.nativeElement['gap'];
|
|
29913
|
+
}
|
|
29914
|
+
set variant(value) {
|
|
29915
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
29916
|
+
}
|
|
29917
|
+
get variant() {
|
|
29918
|
+
return this.elementRef.nativeElement['variant'];
|
|
29919
|
+
}
|
|
29920
|
+
set required(value) {
|
|
29921
|
+
this.elementRef.nativeElement['required'] = value;
|
|
29922
|
+
}
|
|
29923
|
+
get required() {
|
|
29924
|
+
return this.elementRef.nativeElement['required'];
|
|
29925
|
+
}
|
|
29926
|
+
set disabled(value) {
|
|
29927
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
29928
|
+
}
|
|
29929
|
+
get disabled() {
|
|
29930
|
+
return this.elementRef.nativeElement['disabled'];
|
|
29931
|
+
}
|
|
29932
|
+
set state(value) {
|
|
29933
|
+
this.elementRef.nativeElement['state'] = value;
|
|
29934
|
+
}
|
|
29935
|
+
get state() {
|
|
29936
|
+
return this.elementRef.nativeElement['state'];
|
|
29891
29937
|
}
|
|
29892
29938
|
set inverted(value) {
|
|
29893
29939
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -30216,16 +30262,26 @@ class PxRadioBase {
|
|
|
30216
30262
|
constructor(elementRef) {
|
|
30217
30263
|
this.elementRef = elementRef;
|
|
30218
30264
|
}
|
|
30219
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30220
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
30265
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30266
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxRadioGroup, isStandalone: true, selector: "px-radio-group", inputs: { name: "name", gap: "gap", variant: "variant", required: "required", disabled: "disabled", state: "state", inverted: "inverted", 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 });
|
|
30221
30267
|
}
|
|
30222
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30268
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioGroup, decorators: [{
|
|
30223
30269
|
type: Directive,
|
|
30224
30270
|
args: [{
|
|
30225
|
-
selector: 'px-radio-
|
|
30271
|
+
selector: 'px-radio-group',
|
|
30226
30272
|
standalone: true,
|
|
30227
30273
|
}]
|
|
30228
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
30274
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
|
|
30275
|
+
type: Input
|
|
30276
|
+
}], gap: [{
|
|
30277
|
+
type: Input
|
|
30278
|
+
}], variant: [{
|
|
30279
|
+
type: Input
|
|
30280
|
+
}], required: [{
|
|
30281
|
+
type: Input
|
|
30282
|
+
}], disabled: [{
|
|
30283
|
+
type: Input
|
|
30284
|
+
}], state: [{
|
|
30229
30285
|
type: Input
|
|
30230
30286
|
}], inverted: [{
|
|
30231
30287
|
type: Input
|
|
@@ -30384,58 +30440,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
30384
30440
|
args: ['word-break-all--desktop']
|
|
30385
30441
|
}] } });
|
|
30386
30442
|
/**
|
|
30387
|
-
* @description Type-only wrapper for <px-
|
|
30443
|
+
* @description Type-only wrapper for <px-ribbon>
|
|
30388
30444
|
*/
|
|
30389
|
-
class
|
|
30445
|
+
class PxRibbon {
|
|
30390
30446
|
elementRef;
|
|
30391
|
-
set name(value) {
|
|
30392
|
-
this.elementRef.nativeElement['name'] = value;
|
|
30393
|
-
}
|
|
30394
|
-
get name() {
|
|
30395
|
-
return this.elementRef.nativeElement['name'];
|
|
30396
|
-
}
|
|
30397
|
-
set gap(value) {
|
|
30398
|
-
this.elementRef.nativeElement['gap'] = value;
|
|
30399
|
-
}
|
|
30400
|
-
get gap() {
|
|
30401
|
-
return this.elementRef.nativeElement['gap'];
|
|
30402
|
-
}
|
|
30403
|
-
set variant(value) {
|
|
30404
|
-
this.elementRef.nativeElement['variant'] = value;
|
|
30405
|
-
}
|
|
30406
|
-
get variant() {
|
|
30407
|
-
return this.elementRef.nativeElement['variant'];
|
|
30408
|
-
}
|
|
30409
|
-
set required(value) {
|
|
30410
|
-
this.elementRef.nativeElement['required'] = value;
|
|
30411
|
-
}
|
|
30412
|
-
get required() {
|
|
30413
|
-
return this.elementRef.nativeElement['required'];
|
|
30414
|
-
}
|
|
30415
|
-
set disabled(value) {
|
|
30416
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
30417
|
-
}
|
|
30418
|
-
get disabled() {
|
|
30419
|
-
return this.elementRef.nativeElement['disabled'];
|
|
30420
|
-
}
|
|
30421
|
-
set state(value) {
|
|
30422
|
-
this.elementRef.nativeElement['state'] = value;
|
|
30423
|
-
}
|
|
30424
|
-
get state() {
|
|
30425
|
-
return this.elementRef.nativeElement['state'];
|
|
30426
|
-
}
|
|
30427
30447
|
set inverted(value) {
|
|
30428
30448
|
this.elementRef.nativeElement['inverted'] = value;
|
|
30429
30449
|
}
|
|
30430
30450
|
get inverted() {
|
|
30431
30451
|
return this.elementRef.nativeElement['inverted'];
|
|
30432
30452
|
}
|
|
30433
|
-
set size(value) {
|
|
30434
|
-
this.elementRef.nativeElement['size'] = value;
|
|
30435
|
-
}
|
|
30436
|
-
get size() {
|
|
30437
|
-
return this.elementRef.nativeElement['size'];
|
|
30438
|
-
}
|
|
30439
30453
|
set grow(value) {
|
|
30440
30454
|
this.elementRef.nativeElement['grow'] = value;
|
|
30441
30455
|
}
|
|
@@ -30751,30 +30765,16 @@ class PxRadioGroup {
|
|
|
30751
30765
|
constructor(elementRef) {
|
|
30752
30766
|
this.elementRef = elementRef;
|
|
30753
30767
|
}
|
|
30754
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30755
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
30768
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRibbon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30769
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxRibbon, isStandalone: true, selector: "px-ribbon", 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"] }, ngImport: i0 });
|
|
30756
30770
|
}
|
|
30757
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRibbon, decorators: [{
|
|
30758
30772
|
type: Directive,
|
|
30759
30773
|
args: [{
|
|
30760
|
-
selector: 'px-
|
|
30774
|
+
selector: 'px-ribbon',
|
|
30761
30775
|
standalone: true,
|
|
30762
30776
|
}]
|
|
30763
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
30764
|
-
type: Input
|
|
30765
|
-
}], gap: [{
|
|
30766
|
-
type: Input
|
|
30767
|
-
}], variant: [{
|
|
30768
|
-
type: Input
|
|
30769
|
-
}], required: [{
|
|
30770
|
-
type: Input
|
|
30771
|
-
}], disabled: [{
|
|
30772
|
-
type: Input
|
|
30773
|
-
}], state: [{
|
|
30774
|
-
type: Input
|
|
30775
|
-
}], inverted: [{
|
|
30776
|
-
type: Input
|
|
30777
|
-
}], size: [{
|
|
30777
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
30778
30778
|
type: Input
|
|
30779
30779
|
}], grow: [{
|
|
30780
30780
|
type: Input
|
|
@@ -31634,58 +31634,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
31634
31634
|
args: ['word-break-all--desktop']
|
|
31635
31635
|
}] } });
|
|
31636
31636
|
/**
|
|
31637
|
-
* @description Type-only wrapper for <px-
|
|
31637
|
+
* @description Type-only wrapper for <px-selectable-box>
|
|
31638
31638
|
*/
|
|
31639
|
-
class
|
|
31639
|
+
class PxSelectableBox {
|
|
31640
31640
|
elementRef;
|
|
31641
|
-
set direction(value) {
|
|
31642
|
-
this.elementRef.nativeElement['direction'] = value;
|
|
31643
|
-
}
|
|
31644
|
-
get direction() {
|
|
31645
|
-
return this.elementRef.nativeElement['direction'];
|
|
31646
|
-
}
|
|
31647
|
-
set directionMobile(value) {
|
|
31648
|
-
this.elementRef.nativeElement['directionMobile'] = value;
|
|
31649
|
-
}
|
|
31650
|
-
get directionMobile() {
|
|
31651
|
-
return this.elementRef.nativeElement['directionMobile'];
|
|
31652
|
-
}
|
|
31653
|
-
set directionTablet(value) {
|
|
31654
|
-
this.elementRef.nativeElement['directionTablet'] = value;
|
|
31655
|
-
}
|
|
31656
|
-
get directionTablet() {
|
|
31657
|
-
return this.elementRef.nativeElement['directionTablet'];
|
|
31658
|
-
}
|
|
31659
|
-
set directionLaptop(value) {
|
|
31660
|
-
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
31661
|
-
}
|
|
31662
|
-
get directionLaptop() {
|
|
31663
|
-
return this.elementRef.nativeElement['directionLaptop'];
|
|
31664
|
-
}
|
|
31665
|
-
set directionDesktop(value) {
|
|
31666
|
-
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
31667
|
-
}
|
|
31668
|
-
get directionDesktop() {
|
|
31669
|
-
return this.elementRef.nativeElement['directionDesktop'];
|
|
31670
|
-
}
|
|
31671
|
-
set size(value) {
|
|
31672
|
-
this.elementRef.nativeElement['size'] = value;
|
|
31673
|
-
}
|
|
31674
|
-
get size() {
|
|
31675
|
-
return this.elementRef.nativeElement['size'];
|
|
31676
|
-
}
|
|
31677
|
-
set color(value) {
|
|
31678
|
-
this.elementRef.nativeElement['color'] = value;
|
|
31679
|
-
}
|
|
31680
|
-
get color() {
|
|
31681
|
-
return this.elementRef.nativeElement['color'];
|
|
31682
|
-
}
|
|
31683
31641
|
set inverted(value) {
|
|
31684
31642
|
this.elementRef.nativeElement['inverted'] = value;
|
|
31685
31643
|
}
|
|
31686
31644
|
get inverted() {
|
|
31687
31645
|
return this.elementRef.nativeElement['inverted'];
|
|
31688
31646
|
}
|
|
31647
|
+
set hideFooter(value) {
|
|
31648
|
+
this.elementRef.nativeElement['hideFooter'] = value;
|
|
31649
|
+
}
|
|
31650
|
+
get hideFooter() {
|
|
31651
|
+
return this.elementRef.nativeElement['hideFooter'];
|
|
31652
|
+
}
|
|
31653
|
+
set footerPosition(value) {
|
|
31654
|
+
this.elementRef.nativeElement['footerPosition'] = value;
|
|
31655
|
+
}
|
|
31656
|
+
get footerPosition() {
|
|
31657
|
+
return this.elementRef.nativeElement['footerPosition'];
|
|
31658
|
+
}
|
|
31689
31659
|
set grow(value) {
|
|
31690
31660
|
this.elementRef.nativeElement['grow'] = value;
|
|
31691
31661
|
}
|
|
@@ -32001,35 +31971,23 @@ class PxSeparator {
|
|
|
32001
31971
|
constructor(elementRef) {
|
|
32002
31972
|
this.elementRef = elementRef;
|
|
32003
31973
|
}
|
|
32004
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
32005
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
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 });
|
|
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 });
|
|
32006
31976
|
}
|
|
32007
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
31977
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBox, decorators: [{
|
|
32008
31978
|
type: Directive,
|
|
32009
31979
|
args: [{
|
|
32010
|
-
selector: 'px-
|
|
31980
|
+
selector: 'px-selectable-box',
|
|
32011
31981
|
standalone: true,
|
|
32012
31982
|
}]
|
|
32013
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
31983
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
32014
31984
|
type: Input
|
|
32015
|
-
}],
|
|
32016
|
-
type: Input,
|
|
32017
|
-
args: ['direction--mobile']
|
|
32018
|
-
}], directionTablet: [{
|
|
32019
|
-
type: Input,
|
|
32020
|
-
args: ['direction--tablet']
|
|
32021
|
-
}], directionLaptop: [{
|
|
31985
|
+
}], hideFooter: [{
|
|
32022
31986
|
type: Input,
|
|
32023
|
-
args: ['
|
|
32024
|
-
}],
|
|
31987
|
+
args: ['hide-footer']
|
|
31988
|
+
}], footerPosition: [{
|
|
32025
31989
|
type: Input,
|
|
32026
|
-
args: ['
|
|
32027
|
-
}], size: [{
|
|
32028
|
-
type: Input
|
|
32029
|
-
}], color: [{
|
|
32030
|
-
type: Input
|
|
32031
|
-
}], inverted: [{
|
|
32032
|
-
type: Input
|
|
31990
|
+
args: ['footer-position']
|
|
32033
31991
|
}], grow: [{
|
|
32034
31992
|
type: Input
|
|
32035
31993
|
}], growMobile: [{
|
|
@@ -32183,9 +32141,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
32183
32141
|
args: ['word-break-all--desktop']
|
|
32184
32142
|
}] } });
|
|
32185
32143
|
/**
|
|
32186
|
-
* @description Type-only wrapper for <px-selectable-box>
|
|
32144
|
+
* @description Type-only wrapper for <px-selectable-box-checkbox>
|
|
32187
32145
|
*/
|
|
32188
|
-
class
|
|
32146
|
+
class PxSelectableBoxCheckbox {
|
|
32189
32147
|
elementRef;
|
|
32190
32148
|
set inverted(value) {
|
|
32191
32149
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -32193,11 +32151,29 @@ class PxSelectableBox {
|
|
|
32193
32151
|
get inverted() {
|
|
32194
32152
|
return this.elementRef.nativeElement['inverted'];
|
|
32195
32153
|
}
|
|
32196
|
-
set
|
|
32197
|
-
this.elementRef.nativeElement['
|
|
32154
|
+
set name(value) {
|
|
32155
|
+
this.elementRef.nativeElement['name'] = value;
|
|
32198
32156
|
}
|
|
32199
|
-
get
|
|
32200
|
-
return this.elementRef.nativeElement['
|
|
32157
|
+
get name() {
|
|
32158
|
+
return this.elementRef.nativeElement['name'];
|
|
32159
|
+
}
|
|
32160
|
+
set value(value) {
|
|
32161
|
+
this.elementRef.nativeElement['value'] = value;
|
|
32162
|
+
}
|
|
32163
|
+
get value() {
|
|
32164
|
+
return this.elementRef.nativeElement['value'];
|
|
32165
|
+
}
|
|
32166
|
+
set checked(value) {
|
|
32167
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
32168
|
+
}
|
|
32169
|
+
get checked() {
|
|
32170
|
+
return this.elementRef.nativeElement['checked'];
|
|
32171
|
+
}
|
|
32172
|
+
set disabled(value) {
|
|
32173
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
32174
|
+
}
|
|
32175
|
+
get disabled() {
|
|
32176
|
+
return this.elementRef.nativeElement['disabled'];
|
|
32201
32177
|
}
|
|
32202
32178
|
set footerPosition(value) {
|
|
32203
32179
|
this.elementRef.nativeElement['footerPosition'] = value;
|
|
@@ -32517,23 +32493,32 @@ class PxSelectableBox {
|
|
|
32517
32493
|
get wordBreakAllDesktop() {
|
|
32518
32494
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
32519
32495
|
}
|
|
32496
|
+
change = new EventEmitter();
|
|
32520
32497
|
constructor(elementRef) {
|
|
32521
32498
|
this.elementRef = elementRef;
|
|
32499
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
32500
|
+
this.change.emit(e.detail);
|
|
32501
|
+
});
|
|
32522
32502
|
}
|
|
32523
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
32524
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
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 });
|
|
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 });
|
|
32525
32505
|
}
|
|
32526
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
32506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxCheckbox, decorators: [{
|
|
32527
32507
|
type: Directive,
|
|
32528
32508
|
args: [{
|
|
32529
|
-
selector: 'px-selectable-box',
|
|
32509
|
+
selector: 'px-selectable-box-checkbox',
|
|
32530
32510
|
standalone: true,
|
|
32531
32511
|
}]
|
|
32532
32512
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
32533
32513
|
type: Input
|
|
32534
|
-
}],
|
|
32535
|
-
type: Input
|
|
32536
|
-
|
|
32514
|
+
}], name: [{
|
|
32515
|
+
type: Input
|
|
32516
|
+
}], value: [{
|
|
32517
|
+
type: Input
|
|
32518
|
+
}], checked: [{
|
|
32519
|
+
type: Input
|
|
32520
|
+
}], disabled: [{
|
|
32521
|
+
type: Input
|
|
32537
32522
|
}], footerPosition: [{
|
|
32538
32523
|
type: Input,
|
|
32539
32524
|
args: ['footer-position']
|
|
@@ -32688,11 +32673,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
32688
32673
|
}], wordBreakAllDesktop: [{
|
|
32689
32674
|
type: Input,
|
|
32690
32675
|
args: ['word-break-all--desktop']
|
|
32676
|
+
}], change: [{
|
|
32677
|
+
type: Output
|
|
32691
32678
|
}] } });
|
|
32692
32679
|
/**
|
|
32693
|
-
* @description Type-only wrapper for <px-selectable-box-
|
|
32680
|
+
* @description Type-only wrapper for <px-selectable-box-radio>
|
|
32694
32681
|
*/
|
|
32695
|
-
class
|
|
32682
|
+
class PxSelectableBoxRadio {
|
|
32696
32683
|
elementRef;
|
|
32697
32684
|
set inverted(value) {
|
|
32698
32685
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -33042,20 +33029,28 @@ class PxSelectableBoxCheckbox {
|
|
|
33042
33029
|
get wordBreakAllDesktop() {
|
|
33043
33030
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
33044
33031
|
}
|
|
33032
|
+
SELECTABLE_BOX_RADIO_CONNECTED_EVENT = new EventEmitter();
|
|
33033
|
+
SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT = new EventEmitter();
|
|
33045
33034
|
change = new EventEmitter();
|
|
33046
33035
|
constructor(elementRef) {
|
|
33047
33036
|
this.elementRef = elementRef;
|
|
33037
|
+
this.elementRef.nativeElement.addEventListener('SELECTABLE_BOX_RADIO_CONNECTED_EVENT', (e) => {
|
|
33038
|
+
this.SELECTABLE_BOX_RADIO_CONNECTED_EVENT.emit(e.detail);
|
|
33039
|
+
});
|
|
33040
|
+
this.elementRef.nativeElement.addEventListener('SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT', (e) => {
|
|
33041
|
+
this.SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT.emit(e.detail);
|
|
33042
|
+
});
|
|
33048
33043
|
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
33049
33044
|
this.change.emit(e.detail);
|
|
33050
33045
|
});
|
|
33051
33046
|
}
|
|
33052
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
33053
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
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 });
|
|
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 });
|
|
33054
33049
|
}
|
|
33055
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
33050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxRadio, decorators: [{
|
|
33056
33051
|
type: Directive,
|
|
33057
33052
|
args: [{
|
|
33058
|
-
selector: 'px-selectable-box-
|
|
33053
|
+
selector: 'px-selectable-box-radio',
|
|
33059
33054
|
standalone: true,
|
|
33060
33055
|
}]
|
|
33061
33056
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
@@ -33222,49 +33217,65 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
33222
33217
|
}], wordBreakAllDesktop: [{
|
|
33223
33218
|
type: Input,
|
|
33224
33219
|
args: ['word-break-all--desktop']
|
|
33220
|
+
}], SELECTABLE_BOX_RADIO_CONNECTED_EVENT: [{
|
|
33221
|
+
type: Output
|
|
33222
|
+
}], SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: [{
|
|
33223
|
+
type: Output
|
|
33225
33224
|
}], change: [{
|
|
33226
33225
|
type: Output
|
|
33227
33226
|
}] } });
|
|
33228
33227
|
/**
|
|
33229
|
-
* @description Type-only wrapper for <px-
|
|
33228
|
+
* @description Type-only wrapper for <px-separator>
|
|
33230
33229
|
*/
|
|
33231
|
-
class
|
|
33230
|
+
class PxSeparator {
|
|
33232
33231
|
elementRef;
|
|
33233
|
-
set
|
|
33234
|
-
this.elementRef.nativeElement['
|
|
33232
|
+
set direction(value) {
|
|
33233
|
+
this.elementRef.nativeElement['direction'] = value;
|
|
33235
33234
|
}
|
|
33236
|
-
get
|
|
33237
|
-
return this.elementRef.nativeElement['
|
|
33235
|
+
get direction() {
|
|
33236
|
+
return this.elementRef.nativeElement['direction'];
|
|
33238
33237
|
}
|
|
33239
|
-
set
|
|
33240
|
-
this.elementRef.nativeElement['
|
|
33238
|
+
set directionMobile(value) {
|
|
33239
|
+
this.elementRef.nativeElement['directionMobile'] = value;
|
|
33241
33240
|
}
|
|
33242
|
-
get
|
|
33243
|
-
return this.elementRef.nativeElement['
|
|
33241
|
+
get directionMobile() {
|
|
33242
|
+
return this.elementRef.nativeElement['directionMobile'];
|
|
33244
33243
|
}
|
|
33245
|
-
set
|
|
33246
|
-
this.elementRef.nativeElement['
|
|
33244
|
+
set directionTablet(value) {
|
|
33245
|
+
this.elementRef.nativeElement['directionTablet'] = value;
|
|
33247
33246
|
}
|
|
33248
|
-
get
|
|
33249
|
-
return this.elementRef.nativeElement['
|
|
33247
|
+
get directionTablet() {
|
|
33248
|
+
return this.elementRef.nativeElement['directionTablet'];
|
|
33250
33249
|
}
|
|
33251
|
-
set
|
|
33252
|
-
this.elementRef.nativeElement['
|
|
33250
|
+
set directionLaptop(value) {
|
|
33251
|
+
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
33253
33252
|
}
|
|
33254
|
-
get
|
|
33255
|
-
return this.elementRef.nativeElement['
|
|
33253
|
+
get directionLaptop() {
|
|
33254
|
+
return this.elementRef.nativeElement['directionLaptop'];
|
|
33256
33255
|
}
|
|
33257
|
-
set
|
|
33258
|
-
this.elementRef.nativeElement['
|
|
33256
|
+
set directionDesktop(value) {
|
|
33257
|
+
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
33259
33258
|
}
|
|
33260
|
-
get
|
|
33261
|
-
return this.elementRef.nativeElement['
|
|
33259
|
+
get directionDesktop() {
|
|
33260
|
+
return this.elementRef.nativeElement['directionDesktop'];
|
|
33262
33261
|
}
|
|
33263
|
-
set
|
|
33264
|
-
this.elementRef.nativeElement['
|
|
33262
|
+
set size(value) {
|
|
33263
|
+
this.elementRef.nativeElement['size'] = value;
|
|
33265
33264
|
}
|
|
33266
|
-
get
|
|
33267
|
-
return this.elementRef.nativeElement['
|
|
33265
|
+
get size() {
|
|
33266
|
+
return this.elementRef.nativeElement['size'];
|
|
33267
|
+
}
|
|
33268
|
+
set color(value) {
|
|
33269
|
+
this.elementRef.nativeElement['color'] = value;
|
|
33270
|
+
}
|
|
33271
|
+
get color() {
|
|
33272
|
+
return this.elementRef.nativeElement['color'];
|
|
33273
|
+
}
|
|
33274
|
+
set inverted(value) {
|
|
33275
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
33276
|
+
}
|
|
33277
|
+
get inverted() {
|
|
33278
|
+
return this.elementRef.nativeElement['inverted'];
|
|
33268
33279
|
}
|
|
33269
33280
|
set grow(value) {
|
|
33270
33281
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -33578,43 +33589,38 @@ class PxSelectableBoxRadio {
|
|
|
33578
33589
|
get wordBreakAllDesktop() {
|
|
33579
33590
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
33580
33591
|
}
|
|
33581
|
-
SELECTABLE_BOX_RADIO_CONNECTED_EVENT = new EventEmitter();
|
|
33582
|
-
SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT = new EventEmitter();
|
|
33583
|
-
change = new EventEmitter();
|
|
33584
33592
|
constructor(elementRef) {
|
|
33585
33593
|
this.elementRef = elementRef;
|
|
33586
|
-
this.elementRef.nativeElement.addEventListener('SELECTABLE_BOX_RADIO_CONNECTED_EVENT', (e) => {
|
|
33587
|
-
this.SELECTABLE_BOX_RADIO_CONNECTED_EVENT.emit(e.detail);
|
|
33588
|
-
});
|
|
33589
|
-
this.elementRef.nativeElement.addEventListener('SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT', (e) => {
|
|
33590
|
-
this.SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT.emit(e.detail);
|
|
33591
|
-
});
|
|
33592
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
33593
|
-
this.change.emit(e.detail);
|
|
33594
|
-
});
|
|
33595
33594
|
}
|
|
33596
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
33597
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
33595
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSeparator, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33596
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSeparator, isStandalone: true, selector: "px-separator", inputs: { direction: "direction", directionMobile: ["direction--mobile", "directionMobile"], directionTablet: ["direction--tablet", "directionTablet"], directionLaptop: ["direction--laptop", "directionLaptop"], directionDesktop: ["direction--desktop", "directionDesktop"], size: "size", color: "color", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
33598
33597
|
}
|
|
33599
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
33598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSeparator, decorators: [{
|
|
33600
33599
|
type: Directive,
|
|
33601
33600
|
args: [{
|
|
33602
|
-
selector: 'px-
|
|
33601
|
+
selector: 'px-separator',
|
|
33603
33602
|
standalone: true,
|
|
33604
33603
|
}]
|
|
33605
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
33606
|
-
type: Input
|
|
33607
|
-
}], name: [{
|
|
33604
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { direction: [{
|
|
33608
33605
|
type: Input
|
|
33609
|
-
}],
|
|
33606
|
+
}], directionMobile: [{
|
|
33607
|
+
type: Input,
|
|
33608
|
+
args: ['direction--mobile']
|
|
33609
|
+
}], directionTablet: [{
|
|
33610
|
+
type: Input,
|
|
33611
|
+
args: ['direction--tablet']
|
|
33612
|
+
}], directionLaptop: [{
|
|
33613
|
+
type: Input,
|
|
33614
|
+
args: ['direction--laptop']
|
|
33615
|
+
}], directionDesktop: [{
|
|
33616
|
+
type: Input,
|
|
33617
|
+
args: ['direction--desktop']
|
|
33618
|
+
}], size: [{
|
|
33610
33619
|
type: Input
|
|
33611
|
-
}],
|
|
33620
|
+
}], color: [{
|
|
33612
33621
|
type: Input
|
|
33613
|
-
}],
|
|
33622
|
+
}], inverted: [{
|
|
33614
33623
|
type: Input
|
|
33615
|
-
}], footerPosition: [{
|
|
33616
|
-
type: Input,
|
|
33617
|
-
args: ['footer-position']
|
|
33618
33624
|
}], grow: [{
|
|
33619
33625
|
type: Input
|
|
33620
33626
|
}], growMobile: [{
|
|
@@ -33766,12 +33772,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
33766
33772
|
}], wordBreakAllDesktop: [{
|
|
33767
33773
|
type: Input,
|
|
33768
33774
|
args: ['word-break-all--desktop']
|
|
33769
|
-
}], SELECTABLE_BOX_RADIO_CONNECTED_EVENT: [{
|
|
33770
|
-
type: Output
|
|
33771
|
-
}], SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: [{
|
|
33772
|
-
type: Output
|
|
33773
|
-
}], change: [{
|
|
33774
|
-
type: Output
|
|
33775
33775
|
}] } });
|
|
33776
33776
|
/**
|
|
33777
33777
|
* @description Type-only wrapper for <px-skeleton>
|
|
@@ -35932,42 +35932,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
35932
35932
|
}], CLOSE_EVENT: [{
|
|
35933
35933
|
type: Output
|
|
35934
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
|
-
}] } });
|
|
35971
35935
|
/**
|
|
35972
35936
|
* @description Type-only wrapper for <px-theme-switcher>
|
|
35973
35937
|
*/
|
|
@@ -40582,6 +40546,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
40582
40546
|
}], TIMELINE_ITEM_CONNECTED_EVENT: [{
|
|
40583
40547
|
type: Output
|
|
40584
40548
|
}] } });
|
|
40549
|
+
/**
|
|
40550
|
+
* @description Type-only wrapper for <px-toaster>
|
|
40551
|
+
*/
|
|
40552
|
+
class PxToaster {
|
|
40553
|
+
elementRef;
|
|
40554
|
+
set id(value) {
|
|
40555
|
+
this.elementRef.nativeElement['id'] = value;
|
|
40556
|
+
}
|
|
40557
|
+
get id() {
|
|
40558
|
+
return this.elementRef.nativeElement['id'];
|
|
40559
|
+
}
|
|
40560
|
+
set open(value) {
|
|
40561
|
+
this.elementRef.nativeElement['open'] = value;
|
|
40562
|
+
}
|
|
40563
|
+
get open() {
|
|
40564
|
+
return this.elementRef.nativeElement['open'];
|
|
40565
|
+
}
|
|
40566
|
+
set status(value) {
|
|
40567
|
+
this.elementRef.nativeElement['status'] = value;
|
|
40568
|
+
}
|
|
40569
|
+
get status() {
|
|
40570
|
+
return this.elementRef.nativeElement['status'];
|
|
40571
|
+
}
|
|
40572
|
+
set duration(value) {
|
|
40573
|
+
this.elementRef.nativeElement['duration'] = value;
|
|
40574
|
+
}
|
|
40575
|
+
get duration() {
|
|
40576
|
+
return this.elementRef.nativeElement['duration'];
|
|
40577
|
+
}
|
|
40578
|
+
set inverted(value) {
|
|
40579
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
40580
|
+
}
|
|
40581
|
+
get inverted() {
|
|
40582
|
+
return this.elementRef.nativeElement['inverted'];
|
|
40583
|
+
}
|
|
40584
|
+
HIDE_EVENT = new EventEmitter();
|
|
40585
|
+
constructor(elementRef) {
|
|
40586
|
+
this.elementRef = elementRef;
|
|
40587
|
+
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
40588
|
+
this.HIDE_EVENT.emit(e.detail);
|
|
40589
|
+
});
|
|
40590
|
+
}
|
|
40591
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxToaster, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
40592
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxToaster, isStandalone: true, selector: "px-toaster", inputs: { id: "id", open: "open", status: "status", duration: "duration", inverted: "inverted" }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
40593
|
+
}
|
|
40594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxToaster, decorators: [{
|
|
40595
|
+
type: Directive,
|
|
40596
|
+
args: [{
|
|
40597
|
+
selector: 'px-toaster',
|
|
40598
|
+
standalone: true,
|
|
40599
|
+
}]
|
|
40600
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { id: [{
|
|
40601
|
+
type: Input
|
|
40602
|
+
}], open: [{
|
|
40603
|
+
type: Input
|
|
40604
|
+
}], status: [{
|
|
40605
|
+
type: Input
|
|
40606
|
+
}], duration: [{
|
|
40607
|
+
type: Input
|
|
40608
|
+
}], inverted: [{
|
|
40609
|
+
type: Input
|
|
40610
|
+
}], HIDE_EVENT: [{
|
|
40611
|
+
type: Output
|
|
40612
|
+
}] } });
|
|
40585
40613
|
/**
|
|
40586
40614
|
* @description Type-only wrapper for <px-typography>
|
|
40587
40615
|
*/
|
|
@@ -41329,7 +41357,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41329
41357
|
}] } });
|
|
41330
41358
|
class Lavender {
|
|
41331
41359
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41332
|
-
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,
|
|
41360
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41333
41361
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41334
41362
|
}
|
|
41335
41363
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41345,8 +41373,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41345
41373
|
PxBreadcrumb,
|
|
41346
41374
|
PxButton,
|
|
41347
41375
|
PxButtonWrapper,
|
|
41348
|
-
PxCard,
|
|
41349
41376
|
PxButtonIcon,
|
|
41377
|
+
PxCard,
|
|
41350
41378
|
PxAppleseed,
|
|
41351
41379
|
PxCarousel,
|
|
41352
41380
|
PxCarouselItem,
|
|
@@ -41389,26 +41417,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41389
41417
|
PxListItem,
|
|
41390
41418
|
PxModal,
|
|
41391
41419
|
PxP,
|
|
41420
|
+
PxPillar,
|
|
41392
41421
|
PxCardActions,
|
|
41393
41422
|
PxCardContainer,
|
|
41394
41423
|
PxCardHeading,
|
|
41395
|
-
PxPillar,
|
|
41396
41424
|
PxPrice,
|
|
41397
|
-
PxRibbon,
|
|
41398
41425
|
PxRadio,
|
|
41399
41426
|
PxRadioBase,
|
|
41400
41427
|
PxRadioGroup,
|
|
41428
|
+
PxRibbon,
|
|
41401
41429
|
PxSection,
|
|
41402
|
-
PxSeparator,
|
|
41403
41430
|
PxSelectableBox,
|
|
41404
41431
|
PxSelectableBoxCheckbox,
|
|
41405
41432
|
PxSelectableBoxRadio,
|
|
41433
|
+
PxSeparator,
|
|
41406
41434
|
PxSkeleton,
|
|
41407
41435
|
PxSpan,
|
|
41408
41436
|
PxSpinner,
|
|
41409
41437
|
PxStatus,
|
|
41410
41438
|
PxStatusCard,
|
|
41411
|
-
PxStickyContainer,
|
|
41412
41439
|
PxThemeSwitcher,
|
|
41413
41440
|
PxSwitch,
|
|
41414
41441
|
PxTable,
|
|
@@ -41429,6 +41456,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41429
41456
|
PxTileSwitch,
|
|
41430
41457
|
PxTimeline,
|
|
41431
41458
|
PxTimelineItem,
|
|
41459
|
+
PxToaster,
|
|
41432
41460
|
PxTypography,
|
|
41433
41461
|
PxPatch,
|
|
41434
41462
|
PxIcon,
|
|
@@ -41447,8 +41475,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41447
41475
|
PxBreadcrumb,
|
|
41448
41476
|
PxButton,
|
|
41449
41477
|
PxButtonWrapper,
|
|
41450
|
-
PxCard,
|
|
41451
41478
|
PxButtonIcon,
|
|
41479
|
+
PxCard,
|
|
41452
41480
|
PxAppleseed,
|
|
41453
41481
|
PxCarousel,
|
|
41454
41482
|
PxCarouselItem,
|
|
@@ -41491,26 +41519,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41491
41519
|
PxListItem,
|
|
41492
41520
|
PxModal,
|
|
41493
41521
|
PxP,
|
|
41522
|
+
PxPillar,
|
|
41494
41523
|
PxCardActions,
|
|
41495
41524
|
PxCardContainer,
|
|
41496
41525
|
PxCardHeading,
|
|
41497
|
-
PxPillar,
|
|
41498
41526
|
PxPrice,
|
|
41499
|
-
PxRibbon,
|
|
41500
41527
|
PxRadio,
|
|
41501
41528
|
PxRadioBase,
|
|
41502
41529
|
PxRadioGroup,
|
|
41530
|
+
PxRibbon,
|
|
41503
41531
|
PxSection,
|
|
41504
|
-
PxSeparator,
|
|
41505
41532
|
PxSelectableBox,
|
|
41506
41533
|
PxSelectableBoxCheckbox,
|
|
41507
41534
|
PxSelectableBoxRadio,
|
|
41535
|
+
PxSeparator,
|
|
41508
41536
|
PxSkeleton,
|
|
41509
41537
|
PxSpan,
|
|
41510
41538
|
PxSpinner,
|
|
41511
41539
|
PxStatus,
|
|
41512
41540
|
PxStatusCard,
|
|
41513
|
-
PxStickyContainer,
|
|
41514
41541
|
PxThemeSwitcher,
|
|
41515
41542
|
PxSwitch,
|
|
41516
41543
|
PxTable,
|
|
@@ -41531,6 +41558,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41531
41558
|
PxTileSwitch,
|
|
41532
41559
|
PxTimeline,
|
|
41533
41560
|
PxTimelineItem,
|
|
41561
|
+
PxToaster,
|
|
41534
41562
|
PxTypography,
|
|
41535
41563
|
PxPatch,
|
|
41536
41564
|
PxIcon,
|
|
@@ -41546,5 +41574,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41546
41574
|
* Generated bundle index. Do not edit.
|
|
41547
41575
|
*/
|
|
41548
41576
|
|
|
41549
|
-
export { Lavender, LavenderValueAccessors, PxA, PxAWrapper, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxButtonWrapper, PxCard, PxCardActions, PxCardContainer, PxCardHeading, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxCheckboxValueAccessor, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxInputValueAccessor, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRadioGroupValueAccessor, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard,
|
|
41577
|
+
export { Lavender, LavenderValueAccessors, PxA, PxAWrapper, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxButtonWrapper, PxCard, PxCardActions, PxCardContainer, PxCardHeading, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxCheckboxValueAccessor, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxInputValueAccessor, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRadioGroupValueAccessor, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard, PxSwitch, PxSwitchValueAccessor, PxTab, PxTabPanel, PxTable, PxTabs, PxTag, PxTbody, PxTd, PxTextarea, PxTextareaValueAccessor, PxTh, PxThead, PxThemeProvider, PxThemeSwitcher, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTr, PxTypography, PxVstack };
|
|
41550
41578
|
//# sourceMappingURL=proximus-lavender-angular.mjs.map
|