@proximus/lavender-angular 1.4.15-alpha.11 → 1.4.15-alpha.12
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 +664 -664
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +209 -209
- 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: [{
|
|
@@ -11850,124 +11850,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
11850
11850
|
type: Output
|
|
11851
11851
|
}] } });
|
|
11852
11852
|
/**
|
|
11853
|
-
* @description Type-only wrapper for <px-
|
|
11853
|
+
* @description Type-only wrapper for <px-content-header>
|
|
11854
11854
|
*/
|
|
11855
|
-
class
|
|
11855
|
+
class PxContentHeader {
|
|
11856
11856
|
elementRef;
|
|
11857
|
-
set border(value) {
|
|
11858
|
-
this.elementRef.nativeElement['border'] = value;
|
|
11859
|
-
}
|
|
11860
|
-
get border() {
|
|
11861
|
-
return this.elementRef.nativeElement['border'];
|
|
11862
|
-
}
|
|
11863
|
-
set borderColor(value) {
|
|
11864
|
-
this.elementRef.nativeElement['borderColor'] = value;
|
|
11865
|
-
}
|
|
11866
|
-
get borderColor() {
|
|
11867
|
-
return this.elementRef.nativeElement['borderColor'];
|
|
11868
|
-
}
|
|
11869
|
-
set borderSide(value) {
|
|
11870
|
-
this.elementRef.nativeElement['borderSide'] = value;
|
|
11871
|
-
}
|
|
11872
|
-
get borderSide() {
|
|
11873
|
-
return this.elementRef.nativeElement['borderSide'];
|
|
11874
|
-
}
|
|
11875
|
-
set borderSideMobile(value) {
|
|
11876
|
-
this.elementRef.nativeElement['borderSideMobile'] = value;
|
|
11877
|
-
}
|
|
11878
|
-
get borderSideMobile() {
|
|
11879
|
-
return this.elementRef.nativeElement['borderSideMobile'];
|
|
11880
|
-
}
|
|
11881
|
-
set borderSideTablet(value) {
|
|
11882
|
-
this.elementRef.nativeElement['borderSideTablet'] = value;
|
|
11883
|
-
}
|
|
11884
|
-
get borderSideTablet() {
|
|
11885
|
-
return this.elementRef.nativeElement['borderSideTablet'];
|
|
11886
|
-
}
|
|
11887
|
-
set borderSideLaptop(value) {
|
|
11888
|
-
this.elementRef.nativeElement['borderSideLaptop'] = value;
|
|
11889
|
-
}
|
|
11890
|
-
get borderSideLaptop() {
|
|
11891
|
-
return this.elementRef.nativeElement['borderSideLaptop'];
|
|
11892
|
-
}
|
|
11893
|
-
set borderRadius(value) {
|
|
11894
|
-
this.elementRef.nativeElement['borderRadius'] = value;
|
|
11895
|
-
}
|
|
11896
|
-
get borderRadius() {
|
|
11897
|
-
return this.elementRef.nativeElement['borderRadius'];
|
|
11898
|
-
}
|
|
11899
|
-
set noBorderRadius(value) {
|
|
11900
|
-
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
11901
|
-
}
|
|
11902
|
-
get noBorderRadius() {
|
|
11903
|
-
return this.elementRef.nativeElement['noBorderRadius'];
|
|
11904
|
-
}
|
|
11905
|
-
set noBorderRadiusMobile(value) {
|
|
11906
|
-
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
11907
|
-
}
|
|
11908
|
-
get noBorderRadiusMobile() {
|
|
11909
|
-
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
11910
|
-
}
|
|
11911
|
-
set noBorderRadiusTablet(value) {
|
|
11912
|
-
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
11913
|
-
}
|
|
11914
|
-
get noBorderRadiusTablet() {
|
|
11915
|
-
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
11916
|
-
}
|
|
11917
|
-
set noBorderRadiusLaptop(value) {
|
|
11918
|
-
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
11919
|
-
}
|
|
11920
|
-
get noBorderRadiusLaptop() {
|
|
11921
|
-
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
11922
|
-
}
|
|
11923
11857
|
set backgroundColor(value) {
|
|
11924
11858
|
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
11925
11859
|
}
|
|
11926
11860
|
get backgroundColor() {
|
|
11927
11861
|
return this.elementRef.nativeElement['backgroundColor'];
|
|
11928
11862
|
}
|
|
11929
|
-
set backgroundColorMobile(value) {
|
|
11930
|
-
this.elementRef.nativeElement['backgroundColorMobile'] = value;
|
|
11931
|
-
}
|
|
11932
|
-
get backgroundColorMobile() {
|
|
11933
|
-
return this.elementRef.nativeElement['backgroundColorMobile'];
|
|
11934
|
-
}
|
|
11935
|
-
set backgroundColorTablet(value) {
|
|
11936
|
-
this.elementRef.nativeElement['backgroundColorTablet'] = value;
|
|
11937
|
-
}
|
|
11938
|
-
get backgroundColorTablet() {
|
|
11939
|
-
return this.elementRef.nativeElement['backgroundColorTablet'];
|
|
11940
|
-
}
|
|
11941
|
-
set backgroundColorLaptop(value) {
|
|
11942
|
-
this.elementRef.nativeElement['backgroundColorLaptop'] = value;
|
|
11943
|
-
}
|
|
11944
|
-
get backgroundColorLaptop() {
|
|
11945
|
-
return this.elementRef.nativeElement['backgroundColorLaptop'];
|
|
11946
|
-
}
|
|
11947
11863
|
set backgroundGradient(value) {
|
|
11948
11864
|
this.elementRef.nativeElement['backgroundGradient'] = value;
|
|
11949
11865
|
}
|
|
11950
11866
|
get backgroundGradient() {
|
|
11951
11867
|
return this.elementRef.nativeElement['backgroundGradient'];
|
|
11952
11868
|
}
|
|
11953
|
-
set backgroundGradientMobile(value) {
|
|
11954
|
-
this.elementRef.nativeElement['backgroundGradientMobile'] = value;
|
|
11955
|
-
}
|
|
11956
|
-
get backgroundGradientMobile() {
|
|
11957
|
-
return this.elementRef.nativeElement['backgroundGradientMobile'];
|
|
11958
|
-
}
|
|
11959
|
-
set backgroundGradientTablet(value) {
|
|
11960
|
-
this.elementRef.nativeElement['backgroundGradientTablet'] = value;
|
|
11961
|
-
}
|
|
11962
|
-
get backgroundGradientTablet() {
|
|
11963
|
-
return this.elementRef.nativeElement['backgroundGradientTablet'];
|
|
11964
|
-
}
|
|
11965
|
-
set backgroundGradientLaptop(value) {
|
|
11966
|
-
this.elementRef.nativeElement['backgroundGradientLaptop'] = value;
|
|
11967
|
-
}
|
|
11968
|
-
get backgroundGradientLaptop() {
|
|
11969
|
-
return this.elementRef.nativeElement['backgroundGradientLaptop'];
|
|
11970
|
-
}
|
|
11971
11869
|
set backgroundImage(value) {
|
|
11972
11870
|
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
11973
11871
|
}
|
|
@@ -12004,23 +11902,53 @@ class PxContainer {
|
|
|
12004
11902
|
get backgroundPosition() {
|
|
12005
11903
|
return this.elementRef.nativeElement['backgroundPosition'];
|
|
12006
11904
|
}
|
|
12007
|
-
set
|
|
12008
|
-
this.elementRef.nativeElement['
|
|
11905
|
+
set contrastHelperGradient(value) {
|
|
11906
|
+
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
12009
11907
|
}
|
|
12010
|
-
get
|
|
12011
|
-
return this.elementRef.nativeElement['
|
|
11908
|
+
get contrastHelperGradient() {
|
|
11909
|
+
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
12012
11910
|
}
|
|
12013
|
-
set
|
|
12014
|
-
this.elementRef.nativeElement['
|
|
11911
|
+
set contrastHelperOverlay(value) {
|
|
11912
|
+
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
12015
11913
|
}
|
|
12016
|
-
get
|
|
12017
|
-
return this.elementRef.nativeElement['
|
|
11914
|
+
get contrastHelperOverlay() {
|
|
11915
|
+
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
12018
11916
|
}
|
|
12019
|
-
set
|
|
12020
|
-
this.elementRef.nativeElement['
|
|
11917
|
+
set minHeight(value) {
|
|
11918
|
+
this.elementRef.nativeElement['minHeight'] = value;
|
|
12021
11919
|
}
|
|
12022
|
-
get
|
|
12023
|
-
return this.elementRef.nativeElement['
|
|
11920
|
+
get minHeight() {
|
|
11921
|
+
return this.elementRef.nativeElement['minHeight'];
|
|
11922
|
+
}
|
|
11923
|
+
set hasGridding(value) {
|
|
11924
|
+
this.elementRef.nativeElement['hasGridding'] = value;
|
|
11925
|
+
}
|
|
11926
|
+
get hasGridding() {
|
|
11927
|
+
return this.elementRef.nativeElement['hasGridding'];
|
|
11928
|
+
}
|
|
11929
|
+
set hasGriddingMobile(value) {
|
|
11930
|
+
this.elementRef.nativeElement['hasGriddingMobile'] = value;
|
|
11931
|
+
}
|
|
11932
|
+
get hasGriddingMobile() {
|
|
11933
|
+
return this.elementRef.nativeElement['hasGriddingMobile'];
|
|
11934
|
+
}
|
|
11935
|
+
set hasGriddingTablet(value) {
|
|
11936
|
+
this.elementRef.nativeElement['hasGriddingTablet'] = value;
|
|
11937
|
+
}
|
|
11938
|
+
get hasGriddingTablet() {
|
|
11939
|
+
return this.elementRef.nativeElement['hasGriddingTablet'];
|
|
11940
|
+
}
|
|
11941
|
+
set hasGriddingLaptop(value) {
|
|
11942
|
+
this.elementRef.nativeElement['hasGriddingLaptop'] = value;
|
|
11943
|
+
}
|
|
11944
|
+
get hasGriddingLaptop() {
|
|
11945
|
+
return this.elementRef.nativeElement['hasGriddingLaptop'];
|
|
11946
|
+
}
|
|
11947
|
+
set hasGriddingDesktop(value) {
|
|
11948
|
+
this.elementRef.nativeElement['hasGriddingDesktop'] = value;
|
|
11949
|
+
}
|
|
11950
|
+
get hasGriddingDesktop() {
|
|
11951
|
+
return this.elementRef.nativeElement['hasGriddingDesktop'];
|
|
12024
11952
|
}
|
|
12025
11953
|
set inverted(value) {
|
|
12026
11954
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -12028,12 +11956,6 @@ class PxContainer {
|
|
|
12028
11956
|
get inverted() {
|
|
12029
11957
|
return this.elementRef.nativeElement['inverted'];
|
|
12030
11958
|
}
|
|
12031
|
-
set subgridRows(value) {
|
|
12032
|
-
this.elementRef.nativeElement['subgridRows'] = value;
|
|
12033
|
-
}
|
|
12034
|
-
get subgridRows() {
|
|
12035
|
-
return this.elementRef.nativeElement['subgridRows'];
|
|
12036
|
-
}
|
|
12037
11959
|
set grow(value) {
|
|
12038
11960
|
this.elementRef.nativeElement['grow'] = value;
|
|
12039
11961
|
}
|
|
@@ -12349,71 +12271,21 @@ class PxContainer {
|
|
|
12349
12271
|
constructor(elementRef) {
|
|
12350
12272
|
this.elementRef = elementRef;
|
|
12351
12273
|
}
|
|
12352
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
12353
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
12274
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxContentHeader, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12275
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxContentHeader, isStandalone: true, selector: "px-content-header", inputs: { backgroundColor: ["background-color", "backgroundColor"], backgroundGradient: ["background-gradient", "backgroundGradient"], backgroundImage: ["background-image", "backgroundImage"], backgroundImageMobile: ["background-image--mobile", "backgroundImageMobile"], backgroundImageTablet: ["background-image--tablet", "backgroundImageTablet"], backgroundImageLaptop: ["background-image--laptop", "backgroundImageLaptop"], backgroundSize: ["background-size", "backgroundSize"], backgroundPosition: ["background-position", "backgroundPosition"], contrastHelperGradient: ["contrast-helper-gradient", "contrastHelperGradient"], contrastHelperOverlay: ["contrast-helper-overlay", "contrastHelperOverlay"], minHeight: ["min-height", "minHeight"], hasGridding: ["has-gridding", "hasGridding"], hasGriddingMobile: ["has-gridding--mobile", "hasGriddingMobile"], hasGriddingTablet: ["has-gridding--tablet", "hasGriddingTablet"], hasGriddingLaptop: ["has-gridding--laptop", "hasGriddingLaptop"], hasGriddingDesktop: ["has-gridding--desktop", "hasGriddingDesktop"], inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
12354
12276
|
}
|
|
12355
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
12277
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxContentHeader, decorators: [{
|
|
12356
12278
|
type: Directive,
|
|
12357
12279
|
args: [{
|
|
12358
|
-
selector: 'px-
|
|
12280
|
+
selector: 'px-content-header',
|
|
12359
12281
|
standalone: true,
|
|
12360
12282
|
}]
|
|
12361
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
12362
|
-
type: Input
|
|
12363
|
-
}], borderColor: [{
|
|
12364
|
-
type: Input,
|
|
12365
|
-
args: ['border-color']
|
|
12366
|
-
}], borderSide: [{
|
|
12367
|
-
type: Input,
|
|
12368
|
-
args: ['border-side']
|
|
12369
|
-
}], borderSideMobile: [{
|
|
12370
|
-
type: Input,
|
|
12371
|
-
args: ['border-side--mobile']
|
|
12372
|
-
}], borderSideTablet: [{
|
|
12373
|
-
type: Input,
|
|
12374
|
-
args: ['border-side--tablet']
|
|
12375
|
-
}], borderSideLaptop: [{
|
|
12376
|
-
type: Input,
|
|
12377
|
-
args: ['border-side--laptop']
|
|
12378
|
-
}], borderRadius: [{
|
|
12379
|
-
type: Input,
|
|
12380
|
-
args: ['border-radius']
|
|
12381
|
-
}], noBorderRadius: [{
|
|
12382
|
-
type: Input,
|
|
12383
|
-
args: ['no-border-radius']
|
|
12384
|
-
}], noBorderRadiusMobile: [{
|
|
12385
|
-
type: Input,
|
|
12386
|
-
args: ['no-border-radius--mobile']
|
|
12387
|
-
}], noBorderRadiusTablet: [{
|
|
12388
|
-
type: Input,
|
|
12389
|
-
args: ['no-border-radius--tablet']
|
|
12390
|
-
}], noBorderRadiusLaptop: [{
|
|
12391
|
-
type: Input,
|
|
12392
|
-
args: ['no-border-radius--laptop']
|
|
12393
|
-
}], backgroundColor: [{
|
|
12283
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { backgroundColor: [{
|
|
12394
12284
|
type: Input,
|
|
12395
12285
|
args: ['background-color']
|
|
12396
|
-
}], backgroundColorMobile: [{
|
|
12397
|
-
type: Input,
|
|
12398
|
-
args: ['background-color--mobile']
|
|
12399
|
-
}], backgroundColorTablet: [{
|
|
12400
|
-
type: Input,
|
|
12401
|
-
args: ['background-color--tablet']
|
|
12402
|
-
}], backgroundColorLaptop: [{
|
|
12403
|
-
type: Input,
|
|
12404
|
-
args: ['background-color--laptop']
|
|
12405
12286
|
}], backgroundGradient: [{
|
|
12406
12287
|
type: Input,
|
|
12407
12288
|
args: ['background-gradient']
|
|
12408
|
-
}], backgroundGradientMobile: [{
|
|
12409
|
-
type: Input,
|
|
12410
|
-
args: ['background-gradient--mobile']
|
|
12411
|
-
}], backgroundGradientTablet: [{
|
|
12412
|
-
type: Input,
|
|
12413
|
-
args: ['background-gradient--tablet']
|
|
12414
|
-
}], backgroundGradientLaptop: [{
|
|
12415
|
-
type: Input,
|
|
12416
|
-
args: ['background-gradient--laptop']
|
|
12417
12289
|
}], backgroundImage: [{
|
|
12418
12290
|
type: Input,
|
|
12419
12291
|
args: ['background-image']
|
|
@@ -12432,20 +12304,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
12432
12304
|
}], backgroundPosition: [{
|
|
12433
12305
|
type: Input,
|
|
12434
12306
|
args: ['background-position']
|
|
12435
|
-
}],
|
|
12307
|
+
}], contrastHelperGradient: [{
|
|
12436
12308
|
type: Input,
|
|
12437
|
-
args: ['
|
|
12438
|
-
}],
|
|
12309
|
+
args: ['contrast-helper-gradient']
|
|
12310
|
+
}], contrastHelperOverlay: [{
|
|
12439
12311
|
type: Input,
|
|
12440
|
-
args: ['
|
|
12441
|
-
}],
|
|
12312
|
+
args: ['contrast-helper-overlay']
|
|
12313
|
+
}], minHeight: [{
|
|
12442
12314
|
type: Input,
|
|
12443
|
-
args: ['
|
|
12315
|
+
args: ['min-height']
|
|
12316
|
+
}], hasGridding: [{
|
|
12317
|
+
type: Input,
|
|
12318
|
+
args: ['has-gridding']
|
|
12319
|
+
}], hasGriddingMobile: [{
|
|
12320
|
+
type: Input,
|
|
12321
|
+
args: ['has-gridding--mobile']
|
|
12322
|
+
}], hasGriddingTablet: [{
|
|
12323
|
+
type: Input,
|
|
12324
|
+
args: ['has-gridding--tablet']
|
|
12325
|
+
}], hasGriddingLaptop: [{
|
|
12326
|
+
type: Input,
|
|
12327
|
+
args: ['has-gridding--laptop']
|
|
12328
|
+
}], hasGriddingDesktop: [{
|
|
12329
|
+
type: Input,
|
|
12330
|
+
args: ['has-gridding--desktop']
|
|
12444
12331
|
}], inverted: [{
|
|
12445
12332
|
type: Input
|
|
12446
|
-
}], subgridRows: [{
|
|
12447
|
-
type: Input,
|
|
12448
|
-
args: ['subgrid-rows']
|
|
12449
12333
|
}], grow: [{
|
|
12450
12334
|
type: Input
|
|
12451
12335
|
}], growMobile: [{
|
|
@@ -12599,123 +12483,124 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
12599
12483
|
args: ['word-break-all--desktop']
|
|
12600
12484
|
}] } });
|
|
12601
12485
|
/**
|
|
12602
|
-
* @description Type-only wrapper for <px-
|
|
12486
|
+
* @description Type-only wrapper for <px-container>
|
|
12603
12487
|
*/
|
|
12604
|
-
class
|
|
12488
|
+
class PxContainer {
|
|
12605
12489
|
elementRef;
|
|
12606
|
-
set
|
|
12607
|
-
this.elementRef.nativeElement['
|
|
12490
|
+
set border(value) {
|
|
12491
|
+
this.elementRef.nativeElement['border'] = value;
|
|
12608
12492
|
}
|
|
12609
|
-
get
|
|
12610
|
-
return this.elementRef.nativeElement['
|
|
12493
|
+
get border() {
|
|
12494
|
+
return this.elementRef.nativeElement['border'];
|
|
12611
12495
|
}
|
|
12612
|
-
set
|
|
12613
|
-
this.elementRef.nativeElement['
|
|
12496
|
+
set borderColor(value) {
|
|
12497
|
+
this.elementRef.nativeElement['borderColor'] = value;
|
|
12614
12498
|
}
|
|
12615
|
-
get
|
|
12616
|
-
return this.elementRef.nativeElement['
|
|
12499
|
+
get borderColor() {
|
|
12500
|
+
return this.elementRef.nativeElement['borderColor'];
|
|
12617
12501
|
}
|
|
12618
|
-
set
|
|
12619
|
-
this.elementRef.nativeElement['
|
|
12502
|
+
set borderSide(value) {
|
|
12503
|
+
this.elementRef.nativeElement['borderSide'] = value;
|
|
12620
12504
|
}
|
|
12621
|
-
get
|
|
12622
|
-
return this.elementRef.nativeElement['
|
|
12505
|
+
get borderSide() {
|
|
12506
|
+
return this.elementRef.nativeElement['borderSide'];
|
|
12623
12507
|
}
|
|
12624
|
-
set
|
|
12625
|
-
this.elementRef.nativeElement['
|
|
12508
|
+
set borderSideMobile(value) {
|
|
12509
|
+
this.elementRef.nativeElement['borderSideMobile'] = value;
|
|
12626
12510
|
}
|
|
12627
|
-
get
|
|
12628
|
-
return this.elementRef.nativeElement['
|
|
12511
|
+
get borderSideMobile() {
|
|
12512
|
+
return this.elementRef.nativeElement['borderSideMobile'];
|
|
12629
12513
|
}
|
|
12630
|
-
set
|
|
12631
|
-
this.elementRef.nativeElement['
|
|
12514
|
+
set borderSideTablet(value) {
|
|
12515
|
+
this.elementRef.nativeElement['borderSideTablet'] = value;
|
|
12632
12516
|
}
|
|
12633
|
-
get
|
|
12634
|
-
return this.elementRef.nativeElement['
|
|
12517
|
+
get borderSideTablet() {
|
|
12518
|
+
return this.elementRef.nativeElement['borderSideTablet'];
|
|
12635
12519
|
}
|
|
12636
|
-
set
|
|
12637
|
-
this.elementRef.nativeElement['
|
|
12520
|
+
set borderSideLaptop(value) {
|
|
12521
|
+
this.elementRef.nativeElement['borderSideLaptop'] = value;
|
|
12638
12522
|
}
|
|
12639
|
-
get
|
|
12640
|
-
return this.elementRef.nativeElement['
|
|
12523
|
+
get borderSideLaptop() {
|
|
12524
|
+
return this.elementRef.nativeElement['borderSideLaptop'];
|
|
12641
12525
|
}
|
|
12642
|
-
set
|
|
12643
|
-
this.elementRef.nativeElement['
|
|
12526
|
+
set borderRadius(value) {
|
|
12527
|
+
this.elementRef.nativeElement['borderRadius'] = value;
|
|
12644
12528
|
}
|
|
12645
|
-
get
|
|
12646
|
-
return this.elementRef.nativeElement['
|
|
12529
|
+
get borderRadius() {
|
|
12530
|
+
return this.elementRef.nativeElement['borderRadius'];
|
|
12647
12531
|
}
|
|
12648
|
-
set
|
|
12649
|
-
this.elementRef.nativeElement['
|
|
12532
|
+
set noBorderRadius(value) {
|
|
12533
|
+
this.elementRef.nativeElement['noBorderRadius'] = value;
|
|
12650
12534
|
}
|
|
12651
|
-
get
|
|
12652
|
-
return this.elementRef.nativeElement['
|
|
12535
|
+
get noBorderRadius() {
|
|
12536
|
+
return this.elementRef.nativeElement['noBorderRadius'];
|
|
12653
12537
|
}
|
|
12654
|
-
set
|
|
12655
|
-
this.elementRef.nativeElement['
|
|
12538
|
+
set noBorderRadiusMobile(value) {
|
|
12539
|
+
this.elementRef.nativeElement['noBorderRadiusMobile'] = value;
|
|
12656
12540
|
}
|
|
12657
|
-
get
|
|
12658
|
-
return this.elementRef.nativeElement['
|
|
12541
|
+
get noBorderRadiusMobile() {
|
|
12542
|
+
return this.elementRef.nativeElement['noBorderRadiusMobile'];
|
|
12659
12543
|
}
|
|
12660
|
-
|
|
12661
|
-
|
|
12662
|
-
|
|
12663
|
-
|
|
12664
|
-
|
|
12665
|
-
|
|
12544
|
+
set noBorderRadiusTablet(value) {
|
|
12545
|
+
this.elementRef.nativeElement['noBorderRadiusTablet'] = value;
|
|
12546
|
+
}
|
|
12547
|
+
get noBorderRadiusTablet() {
|
|
12548
|
+
return this.elementRef.nativeElement['noBorderRadiusTablet'];
|
|
12549
|
+
}
|
|
12550
|
+
set noBorderRadiusLaptop(value) {
|
|
12551
|
+
this.elementRef.nativeElement['noBorderRadiusLaptop'] = value;
|
|
12552
|
+
}
|
|
12553
|
+
get noBorderRadiusLaptop() {
|
|
12554
|
+
return this.elementRef.nativeElement['noBorderRadiusLaptop'];
|
|
12666
12555
|
}
|
|
12667
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12668
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxDrawer, isStandalone: true, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby", closedby: "closedby", fullscreen: "fullscreen", fullscreenMobile: ["fullscreen--mobile", "fullscreenMobile"], fullscreenTablet: ["fullscreen--tablet", "fullscreenTablet"], fullscreenLaptop: ["fullscreen--laptop", "fullscreenLaptop"], fullscreenDesktop: ["fullscreen--desktop", "fullscreenDesktop"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
12669
|
-
}
|
|
12670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, decorators: [{
|
|
12671
|
-
type: Directive,
|
|
12672
|
-
args: [{
|
|
12673
|
-
selector: 'px-drawer',
|
|
12674
|
-
standalone: true,
|
|
12675
|
-
}]
|
|
12676
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
12677
|
-
type: Input
|
|
12678
|
-
}], ariaLabelCloseButton: [{
|
|
12679
|
-
type: Input,
|
|
12680
|
-
args: ['aria-label-close-button']
|
|
12681
|
-
}], openedby: [{
|
|
12682
|
-
type: Input
|
|
12683
|
-
}], closedby: [{
|
|
12684
|
-
type: Input
|
|
12685
|
-
}], fullscreen: [{
|
|
12686
|
-
type: Input
|
|
12687
|
-
}], fullscreenMobile: [{
|
|
12688
|
-
type: Input,
|
|
12689
|
-
args: ['fullscreen--mobile']
|
|
12690
|
-
}], fullscreenTablet: [{
|
|
12691
|
-
type: Input,
|
|
12692
|
-
args: ['fullscreen--tablet']
|
|
12693
|
-
}], fullscreenLaptop: [{
|
|
12694
|
-
type: Input,
|
|
12695
|
-
args: ['fullscreen--laptop']
|
|
12696
|
-
}], fullscreenDesktop: [{
|
|
12697
|
-
type: Input,
|
|
12698
|
-
args: ['fullscreen--desktop']
|
|
12699
|
-
}], HIDE_EVENT: [{
|
|
12700
|
-
type: Output
|
|
12701
|
-
}] } });
|
|
12702
|
-
/**
|
|
12703
|
-
* @description Type-only wrapper for <px-content-header>
|
|
12704
|
-
*/
|
|
12705
|
-
class PxContentHeader {
|
|
12706
|
-
elementRef;
|
|
12707
12556
|
set backgroundColor(value) {
|
|
12708
12557
|
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
12709
12558
|
}
|
|
12710
12559
|
get backgroundColor() {
|
|
12711
12560
|
return this.elementRef.nativeElement['backgroundColor'];
|
|
12712
12561
|
}
|
|
12562
|
+
set backgroundColorMobile(value) {
|
|
12563
|
+
this.elementRef.nativeElement['backgroundColorMobile'] = value;
|
|
12564
|
+
}
|
|
12565
|
+
get backgroundColorMobile() {
|
|
12566
|
+
return this.elementRef.nativeElement['backgroundColorMobile'];
|
|
12567
|
+
}
|
|
12568
|
+
set backgroundColorTablet(value) {
|
|
12569
|
+
this.elementRef.nativeElement['backgroundColorTablet'] = value;
|
|
12570
|
+
}
|
|
12571
|
+
get backgroundColorTablet() {
|
|
12572
|
+
return this.elementRef.nativeElement['backgroundColorTablet'];
|
|
12573
|
+
}
|
|
12574
|
+
set backgroundColorLaptop(value) {
|
|
12575
|
+
this.elementRef.nativeElement['backgroundColorLaptop'] = value;
|
|
12576
|
+
}
|
|
12577
|
+
get backgroundColorLaptop() {
|
|
12578
|
+
return this.elementRef.nativeElement['backgroundColorLaptop'];
|
|
12579
|
+
}
|
|
12713
12580
|
set backgroundGradient(value) {
|
|
12714
12581
|
this.elementRef.nativeElement['backgroundGradient'] = value;
|
|
12715
12582
|
}
|
|
12716
12583
|
get backgroundGradient() {
|
|
12717
12584
|
return this.elementRef.nativeElement['backgroundGradient'];
|
|
12718
12585
|
}
|
|
12586
|
+
set backgroundGradientMobile(value) {
|
|
12587
|
+
this.elementRef.nativeElement['backgroundGradientMobile'] = value;
|
|
12588
|
+
}
|
|
12589
|
+
get backgroundGradientMobile() {
|
|
12590
|
+
return this.elementRef.nativeElement['backgroundGradientMobile'];
|
|
12591
|
+
}
|
|
12592
|
+
set backgroundGradientTablet(value) {
|
|
12593
|
+
this.elementRef.nativeElement['backgroundGradientTablet'] = value;
|
|
12594
|
+
}
|
|
12595
|
+
get backgroundGradientTablet() {
|
|
12596
|
+
return this.elementRef.nativeElement['backgroundGradientTablet'];
|
|
12597
|
+
}
|
|
12598
|
+
set backgroundGradientLaptop(value) {
|
|
12599
|
+
this.elementRef.nativeElement['backgroundGradientLaptop'] = value;
|
|
12600
|
+
}
|
|
12601
|
+
get backgroundGradientLaptop() {
|
|
12602
|
+
return this.elementRef.nativeElement['backgroundGradientLaptop'];
|
|
12603
|
+
}
|
|
12719
12604
|
set backgroundImage(value) {
|
|
12720
12605
|
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
12721
12606
|
}
|
|
@@ -12752,53 +12637,23 @@ class PxContentHeader {
|
|
|
12752
12637
|
get backgroundPosition() {
|
|
12753
12638
|
return this.elementRef.nativeElement['backgroundPosition'];
|
|
12754
12639
|
}
|
|
12755
|
-
set
|
|
12756
|
-
this.elementRef.nativeElement['
|
|
12757
|
-
}
|
|
12758
|
-
get contrastHelperGradient() {
|
|
12759
|
-
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
12760
|
-
}
|
|
12761
|
-
set contrastHelperOverlay(value) {
|
|
12762
|
-
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
12763
|
-
}
|
|
12764
|
-
get contrastHelperOverlay() {
|
|
12765
|
-
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
12766
|
-
}
|
|
12767
|
-
set minHeight(value) {
|
|
12768
|
-
this.elementRef.nativeElement['minHeight'] = value;
|
|
12769
|
-
}
|
|
12770
|
-
get minHeight() {
|
|
12771
|
-
return this.elementRef.nativeElement['minHeight'];
|
|
12772
|
-
}
|
|
12773
|
-
set hasGridding(value) {
|
|
12774
|
-
this.elementRef.nativeElement['hasGridding'] = value;
|
|
12775
|
-
}
|
|
12776
|
-
get hasGridding() {
|
|
12777
|
-
return this.elementRef.nativeElement['hasGridding'];
|
|
12778
|
-
}
|
|
12779
|
-
set hasGriddingMobile(value) {
|
|
12780
|
-
this.elementRef.nativeElement['hasGriddingMobile'] = value;
|
|
12781
|
-
}
|
|
12782
|
-
get hasGriddingMobile() {
|
|
12783
|
-
return this.elementRef.nativeElement['hasGriddingMobile'];
|
|
12784
|
-
}
|
|
12785
|
-
set hasGriddingTablet(value) {
|
|
12786
|
-
this.elementRef.nativeElement['hasGriddingTablet'] = value;
|
|
12640
|
+
set boxShadow(value) {
|
|
12641
|
+
this.elementRef.nativeElement['boxShadow'] = value;
|
|
12787
12642
|
}
|
|
12788
|
-
get
|
|
12789
|
-
return this.elementRef.nativeElement['
|
|
12643
|
+
get boxShadow() {
|
|
12644
|
+
return this.elementRef.nativeElement['boxShadow'];
|
|
12790
12645
|
}
|
|
12791
|
-
set
|
|
12792
|
-
this.elementRef.nativeElement['
|
|
12646
|
+
set anchorOffset(value) {
|
|
12647
|
+
this.elementRef.nativeElement['anchorOffset'] = value;
|
|
12793
12648
|
}
|
|
12794
|
-
get
|
|
12795
|
-
return this.elementRef.nativeElement['
|
|
12649
|
+
get anchorOffset() {
|
|
12650
|
+
return this.elementRef.nativeElement['anchorOffset'];
|
|
12796
12651
|
}
|
|
12797
|
-
set
|
|
12798
|
-
this.elementRef.nativeElement['
|
|
12652
|
+
set anchorSpacing(value) {
|
|
12653
|
+
this.elementRef.nativeElement['anchorSpacing'] = value;
|
|
12799
12654
|
}
|
|
12800
|
-
get
|
|
12801
|
-
return this.elementRef.nativeElement['
|
|
12655
|
+
get anchorSpacing() {
|
|
12656
|
+
return this.elementRef.nativeElement['anchorSpacing'];
|
|
12802
12657
|
}
|
|
12803
12658
|
set inverted(value) {
|
|
12804
12659
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -12806,6 +12661,12 @@ class PxContentHeader {
|
|
|
12806
12661
|
get inverted() {
|
|
12807
12662
|
return this.elementRef.nativeElement['inverted'];
|
|
12808
12663
|
}
|
|
12664
|
+
set subgridRows(value) {
|
|
12665
|
+
this.elementRef.nativeElement['subgridRows'] = value;
|
|
12666
|
+
}
|
|
12667
|
+
get subgridRows() {
|
|
12668
|
+
return this.elementRef.nativeElement['subgridRows'];
|
|
12669
|
+
}
|
|
12809
12670
|
set grow(value) {
|
|
12810
12671
|
this.elementRef.nativeElement['grow'] = value;
|
|
12811
12672
|
}
|
|
@@ -13121,21 +12982,71 @@ class PxContentHeader {
|
|
|
13121
12982
|
constructor(elementRef) {
|
|
13122
12983
|
this.elementRef = elementRef;
|
|
13123
12984
|
}
|
|
13124
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
13125
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
12985
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12986
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxContainer, isStandalone: true, selector: "px-container", inputs: { border: "border", borderColor: ["border-color", "borderColor"], borderSide: ["border-side", "borderSide"], borderSideMobile: ["border-side--mobile", "borderSideMobile"], borderSideTablet: ["border-side--tablet", "borderSideTablet"], borderSideLaptop: ["border-side--laptop", "borderSideLaptop"], borderRadius: ["border-radius", "borderRadius"], noBorderRadius: ["no-border-radius", "noBorderRadius"], noBorderRadiusMobile: ["no-border-radius--mobile", "noBorderRadiusMobile"], noBorderRadiusTablet: ["no-border-radius--tablet", "noBorderRadiusTablet"], noBorderRadiusLaptop: ["no-border-radius--laptop", "noBorderRadiusLaptop"], backgroundColor: ["background-color", "backgroundColor"], backgroundColorMobile: ["background-color--mobile", "backgroundColorMobile"], backgroundColorTablet: ["background-color--tablet", "backgroundColorTablet"], backgroundColorLaptop: ["background-color--laptop", "backgroundColorLaptop"], backgroundGradient: ["background-gradient", "backgroundGradient"], backgroundGradientMobile: ["background-gradient--mobile", "backgroundGradientMobile"], backgroundGradientTablet: ["background-gradient--tablet", "backgroundGradientTablet"], backgroundGradientLaptop: ["background-gradient--laptop", "backgroundGradientLaptop"], backgroundImage: ["background-image", "backgroundImage"], backgroundImageMobile: ["background-image--mobile", "backgroundImageMobile"], backgroundImageTablet: ["background-image--tablet", "backgroundImageTablet"], backgroundImageLaptop: ["background-image--laptop", "backgroundImageLaptop"], backgroundSize: ["background-size", "backgroundSize"], backgroundPosition: ["background-position", "backgroundPosition"], boxShadow: ["box-shadow", "boxShadow"], anchorOffset: ["anchor-offset", "anchorOffset"], anchorSpacing: ["anchor-spacing", "anchorSpacing"], inverted: "inverted", subgridRows: ["subgrid-rows", "subgridRows"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
13126
12987
|
}
|
|
13127
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
12988
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxContainer, decorators: [{
|
|
13128
12989
|
type: Directive,
|
|
13129
12990
|
args: [{
|
|
13130
|
-
selector: 'px-
|
|
12991
|
+
selector: 'px-container',
|
|
13131
12992
|
standalone: true,
|
|
13132
12993
|
}]
|
|
13133
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
12994
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { border: [{
|
|
12995
|
+
type: Input
|
|
12996
|
+
}], borderColor: [{
|
|
12997
|
+
type: Input,
|
|
12998
|
+
args: ['border-color']
|
|
12999
|
+
}], borderSide: [{
|
|
13000
|
+
type: Input,
|
|
13001
|
+
args: ['border-side']
|
|
13002
|
+
}], borderSideMobile: [{
|
|
13003
|
+
type: Input,
|
|
13004
|
+
args: ['border-side--mobile']
|
|
13005
|
+
}], borderSideTablet: [{
|
|
13006
|
+
type: Input,
|
|
13007
|
+
args: ['border-side--tablet']
|
|
13008
|
+
}], borderSideLaptop: [{
|
|
13009
|
+
type: Input,
|
|
13010
|
+
args: ['border-side--laptop']
|
|
13011
|
+
}], borderRadius: [{
|
|
13012
|
+
type: Input,
|
|
13013
|
+
args: ['border-radius']
|
|
13014
|
+
}], noBorderRadius: [{
|
|
13015
|
+
type: Input,
|
|
13016
|
+
args: ['no-border-radius']
|
|
13017
|
+
}], noBorderRadiusMobile: [{
|
|
13018
|
+
type: Input,
|
|
13019
|
+
args: ['no-border-radius--mobile']
|
|
13020
|
+
}], noBorderRadiusTablet: [{
|
|
13021
|
+
type: Input,
|
|
13022
|
+
args: ['no-border-radius--tablet']
|
|
13023
|
+
}], noBorderRadiusLaptop: [{
|
|
13024
|
+
type: Input,
|
|
13025
|
+
args: ['no-border-radius--laptop']
|
|
13026
|
+
}], backgroundColor: [{
|
|
13134
13027
|
type: Input,
|
|
13135
13028
|
args: ['background-color']
|
|
13029
|
+
}], backgroundColorMobile: [{
|
|
13030
|
+
type: Input,
|
|
13031
|
+
args: ['background-color--mobile']
|
|
13032
|
+
}], backgroundColorTablet: [{
|
|
13033
|
+
type: Input,
|
|
13034
|
+
args: ['background-color--tablet']
|
|
13035
|
+
}], backgroundColorLaptop: [{
|
|
13036
|
+
type: Input,
|
|
13037
|
+
args: ['background-color--laptop']
|
|
13136
13038
|
}], backgroundGradient: [{
|
|
13137
13039
|
type: Input,
|
|
13138
13040
|
args: ['background-gradient']
|
|
13041
|
+
}], backgroundGradientMobile: [{
|
|
13042
|
+
type: Input,
|
|
13043
|
+
args: ['background-gradient--mobile']
|
|
13044
|
+
}], backgroundGradientTablet: [{
|
|
13045
|
+
type: Input,
|
|
13046
|
+
args: ['background-gradient--tablet']
|
|
13047
|
+
}], backgroundGradientLaptop: [{
|
|
13048
|
+
type: Input,
|
|
13049
|
+
args: ['background-gradient--laptop']
|
|
13139
13050
|
}], backgroundImage: [{
|
|
13140
13051
|
type: Input,
|
|
13141
13052
|
args: ['background-image']
|
|
@@ -13154,32 +13065,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
13154
13065
|
}], backgroundPosition: [{
|
|
13155
13066
|
type: Input,
|
|
13156
13067
|
args: ['background-position']
|
|
13157
|
-
}],
|
|
13158
|
-
type: Input,
|
|
13159
|
-
args: ['contrast-helper-gradient']
|
|
13160
|
-
}], contrastHelperOverlay: [{
|
|
13161
|
-
type: Input,
|
|
13162
|
-
args: ['contrast-helper-overlay']
|
|
13163
|
-
}], minHeight: [{
|
|
13164
|
-
type: Input,
|
|
13165
|
-
args: ['min-height']
|
|
13166
|
-
}], hasGridding: [{
|
|
13167
|
-
type: Input,
|
|
13168
|
-
args: ['has-gridding']
|
|
13169
|
-
}], hasGriddingMobile: [{
|
|
13170
|
-
type: Input,
|
|
13171
|
-
args: ['has-gridding--mobile']
|
|
13172
|
-
}], hasGriddingTablet: [{
|
|
13068
|
+
}], boxShadow: [{
|
|
13173
13069
|
type: Input,
|
|
13174
|
-
args: ['
|
|
13175
|
-
}],
|
|
13070
|
+
args: ['box-shadow']
|
|
13071
|
+
}], anchorOffset: [{
|
|
13176
13072
|
type: Input,
|
|
13177
|
-
args: ['
|
|
13178
|
-
}],
|
|
13073
|
+
args: ['anchor-offset']
|
|
13074
|
+
}], anchorSpacing: [{
|
|
13179
13075
|
type: Input,
|
|
13180
|
-
args: ['
|
|
13076
|
+
args: ['anchor-spacing']
|
|
13181
13077
|
}], inverted: [{
|
|
13182
13078
|
type: Input
|
|
13079
|
+
}], subgridRows: [{
|
|
13080
|
+
type: Input,
|
|
13081
|
+
args: ['subgrid-rows']
|
|
13183
13082
|
}], grow: [{
|
|
13184
13083
|
type: Input
|
|
13185
13084
|
}], growMobile: [{
|
|
@@ -13332,6 +13231,107 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
13332
13231
|
type: Input,
|
|
13333
13232
|
args: ['word-break-all--desktop']
|
|
13334
13233
|
}] } });
|
|
13234
|
+
/**
|
|
13235
|
+
* @description Type-only wrapper for <px-drawer>
|
|
13236
|
+
*/
|
|
13237
|
+
class PxDrawer {
|
|
13238
|
+
elementRef;
|
|
13239
|
+
set open(value) {
|
|
13240
|
+
this.elementRef.nativeElement['open'] = value;
|
|
13241
|
+
}
|
|
13242
|
+
get open() {
|
|
13243
|
+
return this.elementRef.nativeElement['open'];
|
|
13244
|
+
}
|
|
13245
|
+
set ariaLabelCloseButton(value) {
|
|
13246
|
+
this.elementRef.nativeElement['ariaLabelCloseButton'] = value;
|
|
13247
|
+
}
|
|
13248
|
+
get ariaLabelCloseButton() {
|
|
13249
|
+
return this.elementRef.nativeElement['ariaLabelCloseButton'];
|
|
13250
|
+
}
|
|
13251
|
+
set openedby(value) {
|
|
13252
|
+
this.elementRef.nativeElement['openedby'] = value;
|
|
13253
|
+
}
|
|
13254
|
+
get openedby() {
|
|
13255
|
+
return this.elementRef.nativeElement['openedby'];
|
|
13256
|
+
}
|
|
13257
|
+
set closedby(value) {
|
|
13258
|
+
this.elementRef.nativeElement['closedby'] = value;
|
|
13259
|
+
}
|
|
13260
|
+
get closedby() {
|
|
13261
|
+
return this.elementRef.nativeElement['closedby'];
|
|
13262
|
+
}
|
|
13263
|
+
set fullscreen(value) {
|
|
13264
|
+
this.elementRef.nativeElement['fullscreen'] = value;
|
|
13265
|
+
}
|
|
13266
|
+
get fullscreen() {
|
|
13267
|
+
return this.elementRef.nativeElement['fullscreen'];
|
|
13268
|
+
}
|
|
13269
|
+
set fullscreenMobile(value) {
|
|
13270
|
+
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
13271
|
+
}
|
|
13272
|
+
get fullscreenMobile() {
|
|
13273
|
+
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
13274
|
+
}
|
|
13275
|
+
set fullscreenTablet(value) {
|
|
13276
|
+
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
13277
|
+
}
|
|
13278
|
+
get fullscreenTablet() {
|
|
13279
|
+
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
13280
|
+
}
|
|
13281
|
+
set fullscreenLaptop(value) {
|
|
13282
|
+
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
13283
|
+
}
|
|
13284
|
+
get fullscreenLaptop() {
|
|
13285
|
+
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
13286
|
+
}
|
|
13287
|
+
set fullscreenDesktop(value) {
|
|
13288
|
+
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
13289
|
+
}
|
|
13290
|
+
get fullscreenDesktop() {
|
|
13291
|
+
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
13292
|
+
}
|
|
13293
|
+
HIDE_EVENT = new EventEmitter();
|
|
13294
|
+
constructor(elementRef) {
|
|
13295
|
+
this.elementRef = elementRef;
|
|
13296
|
+
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
13297
|
+
this.HIDE_EVENT.emit(e.detail);
|
|
13298
|
+
});
|
|
13299
|
+
}
|
|
13300
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13301
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxDrawer, isStandalone: true, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby", closedby: "closedby", fullscreen: "fullscreen", fullscreenMobile: ["fullscreen--mobile", "fullscreenMobile"], fullscreenTablet: ["fullscreen--tablet", "fullscreenTablet"], fullscreenLaptop: ["fullscreen--laptop", "fullscreenLaptop"], fullscreenDesktop: ["fullscreen--desktop", "fullscreenDesktop"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
13302
|
+
}
|
|
13303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxDrawer, decorators: [{
|
|
13304
|
+
type: Directive,
|
|
13305
|
+
args: [{
|
|
13306
|
+
selector: 'px-drawer',
|
|
13307
|
+
standalone: true,
|
|
13308
|
+
}]
|
|
13309
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
13310
|
+
type: Input
|
|
13311
|
+
}], ariaLabelCloseButton: [{
|
|
13312
|
+
type: Input,
|
|
13313
|
+
args: ['aria-label-close-button']
|
|
13314
|
+
}], openedby: [{
|
|
13315
|
+
type: Input
|
|
13316
|
+
}], closedby: [{
|
|
13317
|
+
type: Input
|
|
13318
|
+
}], fullscreen: [{
|
|
13319
|
+
type: Input
|
|
13320
|
+
}], fullscreenMobile: [{
|
|
13321
|
+
type: Input,
|
|
13322
|
+
args: ['fullscreen--mobile']
|
|
13323
|
+
}], fullscreenTablet: [{
|
|
13324
|
+
type: Input,
|
|
13325
|
+
args: ['fullscreen--tablet']
|
|
13326
|
+
}], fullscreenLaptop: [{
|
|
13327
|
+
type: Input,
|
|
13328
|
+
args: ['fullscreen--laptop']
|
|
13329
|
+
}], fullscreenDesktop: [{
|
|
13330
|
+
type: Input,
|
|
13331
|
+
args: ['fullscreen--desktop']
|
|
13332
|
+
}], HIDE_EVENT: [{
|
|
13333
|
+
type: Output
|
|
13334
|
+
}] } });
|
|
13335
13335
|
/**
|
|
13336
13336
|
* @description Type-only wrapper for <px-dropdown>
|
|
13337
13337
|
*/
|
|
@@ -28822,72 +28822,16 @@ 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-ribbon>
|
|
28826
28826
|
*/
|
|
28827
|
-
class
|
|
28827
|
+
class PxRibbon {
|
|
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. */
|
|
28844
28829
|
set inverted(value) {
|
|
28845
28830
|
this.elementRef.nativeElement['inverted'] = value;
|
|
28846
28831
|
}
|
|
28847
28832
|
get inverted() {
|
|
28848
28833
|
return this.elementRef.nativeElement['inverted'];
|
|
28849
28834
|
}
|
|
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
|
-
}
|
|
28891
28835
|
set grow(value) {
|
|
28892
28836
|
this.elementRef.nativeElement['grow'] = value;
|
|
28893
28837
|
}
|
|
@@ -29200,40 +29144,19 @@ class PxRadio {
|
|
|
29200
29144
|
get wordBreakAllDesktop() {
|
|
29201
29145
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
29202
29146
|
}
|
|
29203
|
-
/** Fired when the radio button becomes checked. */
|
|
29204
|
-
change = new EventEmitter();
|
|
29205
29147
|
constructor(elementRef) {
|
|
29206
29148
|
this.elementRef = elementRef;
|
|
29207
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
29208
|
-
this.change.emit(e.detail);
|
|
29209
|
-
});
|
|
29210
29149
|
}
|
|
29211
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29212
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
29150
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRibbon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29151
|
+
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 });
|
|
29213
29152
|
}
|
|
29214
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRibbon, decorators: [{
|
|
29215
29154
|
type: Directive,
|
|
29216
29155
|
args: [{
|
|
29217
|
-
selector: 'px-
|
|
29156
|
+
selector: 'px-ribbon',
|
|
29218
29157
|
standalone: true,
|
|
29219
29158
|
}]
|
|
29220
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
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: [{
|
|
29159
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
29237
29160
|
type: Input
|
|
29238
29161
|
}], grow: [{
|
|
29239
29162
|
type: Input
|
|
@@ -29386,20 +29309,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
29386
29309
|
}], wordBreakAllDesktop: [{
|
|
29387
29310
|
type: Input,
|
|
29388
29311
|
args: ['word-break-all--desktop']
|
|
29389
|
-
}], change: [{
|
|
29390
|
-
type: Output
|
|
29391
29312
|
}] } });
|
|
29392
29313
|
/**
|
|
29393
|
-
* @description Type-only wrapper for <px-radio
|
|
29314
|
+
* @description Type-only wrapper for <px-radio>
|
|
29394
29315
|
*/
|
|
29395
|
-
class
|
|
29316
|
+
class PxRadio {
|
|
29396
29317
|
elementRef;
|
|
29397
|
-
|
|
29398
|
-
|
|
29318
|
+
/** The validation state of the radio button. */
|
|
29319
|
+
set state(value) {
|
|
29320
|
+
this.elementRef.nativeElement['state'] = value;
|
|
29399
29321
|
}
|
|
29400
|
-
get
|
|
29401
|
-
return this.elementRef.nativeElement['
|
|
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;
|
|
29402
29328
|
}
|
|
29329
|
+
get variant() {
|
|
29330
|
+
return this.elementRef.nativeElement['variant'];
|
|
29331
|
+
}
|
|
29332
|
+
/** Whether to use inverted (dark background) styling. */
|
|
29403
29333
|
set inverted(value) {
|
|
29404
29334
|
this.elementRef.nativeElement['inverted'] = value;
|
|
29405
29335
|
}
|
|
@@ -29412,6 +29342,41 @@ class PxRadioBase {
|
|
|
29412
29342
|
get size() {
|
|
29413
29343
|
return this.elementRef.nativeElement['size'];
|
|
29414
29344
|
}
|
|
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
|
+
}
|
|
29415
29380
|
set grow(value) {
|
|
29416
29381
|
this.elementRef.nativeElement['grow'] = value;
|
|
29417
29382
|
}
|
|
@@ -29724,24 +29689,41 @@ class PxRadioBase {
|
|
|
29724
29689
|
get wordBreakAllDesktop() {
|
|
29725
29690
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
29726
29691
|
}
|
|
29692
|
+
/** Fired when the radio button becomes checked. */
|
|
29693
|
+
change = new EventEmitter();
|
|
29727
29694
|
constructor(elementRef) {
|
|
29728
29695
|
this.elementRef = elementRef;
|
|
29696
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
29697
|
+
this.change.emit(e.detail);
|
|
29698
|
+
});
|
|
29729
29699
|
}
|
|
29730
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29731
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
29700
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29701
|
+
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 });
|
|
29732
29702
|
}
|
|
29733
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadio, decorators: [{
|
|
29734
29704
|
type: Directive,
|
|
29735
29705
|
args: [{
|
|
29736
|
-
selector: 'px-radio
|
|
29706
|
+
selector: 'px-radio',
|
|
29737
29707
|
standalone: true,
|
|
29738
29708
|
}]
|
|
29739
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
29709
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
29710
|
+
type: Input
|
|
29711
|
+
}], variant: [{
|
|
29740
29712
|
type: Input
|
|
29741
29713
|
}], inverted: [{
|
|
29742
29714
|
type: Input
|
|
29743
29715
|
}], size: [{
|
|
29744
29716
|
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
|
|
29745
29727
|
}], grow: [{
|
|
29746
29728
|
type: Input
|
|
29747
29729
|
}], growMobile: [{
|
|
@@ -29893,47 +29875,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
29893
29875
|
}], wordBreakAllDesktop: [{
|
|
29894
29876
|
type: Input,
|
|
29895
29877
|
args: ['word-break-all--desktop']
|
|
29878
|
+
}], change: [{
|
|
29879
|
+
type: Output
|
|
29896
29880
|
}] } });
|
|
29897
29881
|
/**
|
|
29898
|
-
* @description Type-only wrapper for <px-radio-
|
|
29882
|
+
* @description Type-only wrapper for <px-radio-base>
|
|
29899
29883
|
*/
|
|
29900
|
-
class
|
|
29884
|
+
class PxRadioBase {
|
|
29901
29885
|
elementRef;
|
|
29902
|
-
set
|
|
29903
|
-
this.elementRef.nativeElement['
|
|
29904
|
-
}
|
|
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;
|
|
29886
|
+
set hover(value) {
|
|
29887
|
+
this.elementRef.nativeElement['hover'] = value;
|
|
29934
29888
|
}
|
|
29935
|
-
get
|
|
29936
|
-
return this.elementRef.nativeElement['
|
|
29889
|
+
get hover() {
|
|
29890
|
+
return this.elementRef.nativeElement['hover'];
|
|
29937
29891
|
}
|
|
29938
29892
|
set inverted(value) {
|
|
29939
29893
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -30262,26 +30216,16 @@ class PxRadioGroup {
|
|
|
30262
30216
|
constructor(elementRef) {
|
|
30263
30217
|
this.elementRef = elementRef;
|
|
30264
30218
|
}
|
|
30265
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30266
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
30219
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30220
|
+
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 });
|
|
30267
30221
|
}
|
|
30268
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30222
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioBase, decorators: [{
|
|
30269
30223
|
type: Directive,
|
|
30270
30224
|
args: [{
|
|
30271
|
-
selector: 'px-radio-
|
|
30225
|
+
selector: 'px-radio-base',
|
|
30272
30226
|
standalone: true,
|
|
30273
30227
|
}]
|
|
30274
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
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: [{
|
|
30228
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { hover: [{
|
|
30285
30229
|
type: Input
|
|
30286
30230
|
}], inverted: [{
|
|
30287
30231
|
type: Input
|
|
@@ -30440,16 +30384,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
30440
30384
|
args: ['word-break-all--desktop']
|
|
30441
30385
|
}] } });
|
|
30442
30386
|
/**
|
|
30443
|
-
* @description Type-only wrapper for <px-
|
|
30387
|
+
* @description Type-only wrapper for <px-radio-group>
|
|
30444
30388
|
*/
|
|
30445
|
-
class
|
|
30389
|
+
class PxRadioGroup {
|
|
30446
30390
|
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
|
+
}
|
|
30447
30427
|
set inverted(value) {
|
|
30448
30428
|
this.elementRef.nativeElement['inverted'] = value;
|
|
30449
30429
|
}
|
|
30450
30430
|
get inverted() {
|
|
30451
30431
|
return this.elementRef.nativeElement['inverted'];
|
|
30452
30432
|
}
|
|
30433
|
+
set size(value) {
|
|
30434
|
+
this.elementRef.nativeElement['size'] = value;
|
|
30435
|
+
}
|
|
30436
|
+
get size() {
|
|
30437
|
+
return this.elementRef.nativeElement['size'];
|
|
30438
|
+
}
|
|
30453
30439
|
set grow(value) {
|
|
30454
30440
|
this.elementRef.nativeElement['grow'] = value;
|
|
30455
30441
|
}
|
|
@@ -30765,16 +30751,30 @@ class PxRibbon {
|
|
|
30765
30751
|
constructor(elementRef) {
|
|
30766
30752
|
this.elementRef = elementRef;
|
|
30767
30753
|
}
|
|
30768
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30769
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
30754
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30755
|
+
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 });
|
|
30770
30756
|
}
|
|
30771
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30757
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioGroup, decorators: [{
|
|
30772
30758
|
type: Directive,
|
|
30773
30759
|
args: [{
|
|
30774
|
-
selector: 'px-
|
|
30760
|
+
selector: 'px-radio-group',
|
|
30775
30761
|
standalone: true,
|
|
30776
30762
|
}]
|
|
30777
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
30763
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
|
|
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: [{
|
|
30778
30778
|
type: Input
|
|
30779
30779
|
}], grow: [{
|
|
30780
30780
|
type: Input
|
|
@@ -41302,7 +41302,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41302
41302
|
}] } });
|
|
41303
41303
|
class Lavender {
|
|
41304
41304
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41305
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper,
|
|
41305
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContentHeader, PxContainer, 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, PxRibbon, PxRadio, PxRadioBase, PxRadioGroup, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContentHeader, PxContainer, 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, PxRibbon, PxRadio, PxRadioBase, PxRadioGroup, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41306
41306
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41307
41307
|
}
|
|
41308
41308
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41318,8 +41318,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41318
41318
|
PxBreadcrumb,
|
|
41319
41319
|
PxButton,
|
|
41320
41320
|
PxButtonWrapper,
|
|
41321
|
-
PxCard,
|
|
41322
41321
|
PxButtonIcon,
|
|
41322
|
+
PxCard,
|
|
41323
41323
|
PxAppleseed,
|
|
41324
41324
|
PxCarousel,
|
|
41325
41325
|
PxCarouselItem,
|
|
@@ -41332,9 +41332,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41332
41332
|
PxCheckbox,
|
|
41333
41333
|
PxColorOption,
|
|
41334
41334
|
PxColorOptionLink,
|
|
41335
|
+
PxContentHeader,
|
|
41335
41336
|
PxContainer,
|
|
41336
41337
|
PxDrawer,
|
|
41337
|
-
PxContentHeader,
|
|
41338
41338
|
PxDropdown,
|
|
41339
41339
|
PxFieldset,
|
|
41340
41340
|
PxGrid,
|
|
@@ -41367,10 +41367,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41367
41367
|
PxCardContainer,
|
|
41368
41368
|
PxCardHeading,
|
|
41369
41369
|
PxPrice,
|
|
41370
|
+
PxRibbon,
|
|
41370
41371
|
PxRadio,
|
|
41371
41372
|
PxRadioBase,
|
|
41372
41373
|
PxRadioGroup,
|
|
41373
|
-
PxRibbon,
|
|
41374
41374
|
PxSection,
|
|
41375
41375
|
PxSelectableBox,
|
|
41376
41376
|
PxSelectableBoxCheckbox,
|
|
@@ -41420,8 +41420,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41420
41420
|
PxBreadcrumb,
|
|
41421
41421
|
PxButton,
|
|
41422
41422
|
PxButtonWrapper,
|
|
41423
|
-
PxCard,
|
|
41424
41423
|
PxButtonIcon,
|
|
41424
|
+
PxCard,
|
|
41425
41425
|
PxAppleseed,
|
|
41426
41426
|
PxCarousel,
|
|
41427
41427
|
PxCarouselItem,
|
|
@@ -41434,9 +41434,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41434
41434
|
PxCheckbox,
|
|
41435
41435
|
PxColorOption,
|
|
41436
41436
|
PxColorOptionLink,
|
|
41437
|
+
PxContentHeader,
|
|
41437
41438
|
PxContainer,
|
|
41438
41439
|
PxDrawer,
|
|
41439
|
-
PxContentHeader,
|
|
41440
41440
|
PxDropdown,
|
|
41441
41441
|
PxFieldset,
|
|
41442
41442
|
PxGrid,
|
|
@@ -41469,10 +41469,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41469
41469
|
PxCardContainer,
|
|
41470
41470
|
PxCardHeading,
|
|
41471
41471
|
PxPrice,
|
|
41472
|
+
PxRibbon,
|
|
41472
41473
|
PxRadio,
|
|
41473
41474
|
PxRadioBase,
|
|
41474
41475
|
PxRadioGroup,
|
|
41475
|
-
PxRibbon,
|
|
41476
41476
|
PxSection,
|
|
41477
41477
|
PxSelectableBox,
|
|
41478
41478
|
PxSelectableBoxCheckbox,
|