@proximus/lavender-angular 1.4.12-beta.1 → 1.4.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 +10 -62
- package/esm2022/lavender.directive.mjs +477 -477
- package/fesm2022/proximus-lavender-angular.mjs +476 -476
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +136 -136
- package/package.json +1 -1
|
@@ -5164,9 +5164,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
5164
5164
|
args: ['word-break-all--desktop']
|
|
5165
5165
|
}] } });
|
|
5166
5166
|
/**
|
|
5167
|
-
* @description Type-only wrapper for <px-
|
|
5167
|
+
* @description Type-only wrapper for <px-button-icon>
|
|
5168
5168
|
*/
|
|
5169
|
-
class
|
|
5169
|
+
class PxButtonIcon {
|
|
5170
5170
|
elementRef;
|
|
5171
5171
|
set inverted(value) {
|
|
5172
5172
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -5174,83 +5174,57 @@ class PxCard {
|
|
|
5174
5174
|
get inverted() {
|
|
5175
5175
|
return this.elementRef.nativeElement['inverted'];
|
|
5176
5176
|
}
|
|
5177
|
-
set
|
|
5178
|
-
this.elementRef.nativeElement['
|
|
5179
|
-
}
|
|
5180
|
-
get backgroundColor() {
|
|
5181
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
5182
|
-
}
|
|
5183
|
-
set backgroundSize(value) {
|
|
5184
|
-
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
5185
|
-
}
|
|
5186
|
-
get backgroundSize() {
|
|
5187
|
-
return this.elementRef.nativeElement['backgroundSize'];
|
|
5188
|
-
}
|
|
5189
|
-
set backgroundPosition(value) {
|
|
5190
|
-
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
5191
|
-
}
|
|
5192
|
-
get backgroundPosition() {
|
|
5193
|
-
return this.elementRef.nativeElement['backgroundPosition'];
|
|
5194
|
-
}
|
|
5195
|
-
set contrastHelperGradient(value) {
|
|
5196
|
-
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
5197
|
-
}
|
|
5198
|
-
get contrastHelperGradient() {
|
|
5199
|
-
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
5200
|
-
}
|
|
5201
|
-
set contrastHelperOverlay(value) {
|
|
5202
|
-
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
5203
|
-
}
|
|
5204
|
-
get contrastHelperOverlay() {
|
|
5205
|
-
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
5206
|
-
}
|
|
5207
|
-
set mediaPosition(value) {
|
|
5208
|
-
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
5177
|
+
set loading(value) {
|
|
5178
|
+
this.elementRef.nativeElement['loading'] = value;
|
|
5209
5179
|
}
|
|
5210
|
-
get
|
|
5211
|
-
return this.elementRef.nativeElement['
|
|
5180
|
+
get loading() {
|
|
5181
|
+
return this.elementRef.nativeElement['loading'];
|
|
5212
5182
|
}
|
|
5213
|
-
set
|
|
5214
|
-
this.elementRef.nativeElement['
|
|
5183
|
+
set size(value) {
|
|
5184
|
+
this.elementRef.nativeElement['size'] = value;
|
|
5215
5185
|
}
|
|
5216
|
-
get
|
|
5217
|
-
return this.elementRef.nativeElement['
|
|
5186
|
+
get size() {
|
|
5187
|
+
return this.elementRef.nativeElement['size'];
|
|
5218
5188
|
}
|
|
5219
|
-
set
|
|
5220
|
-
this.elementRef.nativeElement['
|
|
5189
|
+
set variant(value) {
|
|
5190
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
5221
5191
|
}
|
|
5222
|
-
get
|
|
5223
|
-
return this.elementRef.nativeElement['
|
|
5192
|
+
get variant() {
|
|
5193
|
+
return this.elementRef.nativeElement['variant'];
|
|
5224
5194
|
}
|
|
5225
|
-
set
|
|
5226
|
-
this.elementRef.nativeElement['
|
|
5195
|
+
set ariaExpanded(value) {
|
|
5196
|
+
this.elementRef.nativeElement['ariaExpanded'] = value;
|
|
5227
5197
|
}
|
|
5228
|
-
get
|
|
5229
|
-
return this.elementRef.nativeElement['
|
|
5198
|
+
get ariaExpanded() {
|
|
5199
|
+
return this.elementRef.nativeElement['ariaExpanded'];
|
|
5230
5200
|
}
|
|
5231
|
-
|
|
5232
|
-
|
|
5201
|
+
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
5202
|
+
set name(value) {
|
|
5203
|
+
this.elementRef.nativeElement['name'] = value;
|
|
5233
5204
|
}
|
|
5234
|
-
get
|
|
5235
|
-
return this.elementRef.nativeElement['
|
|
5205
|
+
get name() {
|
|
5206
|
+
return this.elementRef.nativeElement['name'];
|
|
5236
5207
|
}
|
|
5237
|
-
|
|
5238
|
-
|
|
5208
|
+
/** The value associated with the button's name when it's submitted with a form. */
|
|
5209
|
+
set value(value) {
|
|
5210
|
+
this.elementRef.nativeElement['value'] = value;
|
|
5239
5211
|
}
|
|
5240
|
-
get
|
|
5241
|
-
return this.elementRef.nativeElement['
|
|
5212
|
+
get value() {
|
|
5213
|
+
return this.elementRef.nativeElement['value'];
|
|
5242
5214
|
}
|
|
5243
|
-
|
|
5244
|
-
|
|
5215
|
+
/** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
|
|
5216
|
+
set type(value) {
|
|
5217
|
+
this.elementRef.nativeElement['type'] = value;
|
|
5245
5218
|
}
|
|
5246
|
-
get
|
|
5247
|
-
return this.elementRef.nativeElement['
|
|
5219
|
+
get type() {
|
|
5220
|
+
return this.elementRef.nativeElement['type'];
|
|
5248
5221
|
}
|
|
5249
|
-
|
|
5250
|
-
|
|
5222
|
+
/** Whether the button is disabled. */
|
|
5223
|
+
set disabled(value) {
|
|
5224
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
5251
5225
|
}
|
|
5252
|
-
get
|
|
5253
|
-
return this.elementRef.nativeElement['
|
|
5226
|
+
get disabled() {
|
|
5227
|
+
return this.elementRef.nativeElement['disabled'];
|
|
5254
5228
|
}
|
|
5255
5229
|
set grow(value) {
|
|
5256
5230
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -5567,55 +5541,33 @@ class PxCard {
|
|
|
5567
5541
|
constructor(elementRef) {
|
|
5568
5542
|
this.elementRef = elementRef;
|
|
5569
5543
|
}
|
|
5570
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
5571
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
5544
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonIcon, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5545
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxButtonIcon, 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 });
|
|
5572
5546
|
}
|
|
5573
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
5547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxButtonIcon, decorators: [{
|
|
5574
5548
|
type: Directive,
|
|
5575
5549
|
args: [{
|
|
5576
|
-
selector: 'px-
|
|
5550
|
+
selector: 'px-button-icon',
|
|
5577
5551
|
}]
|
|
5578
5552
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
5579
5553
|
type: Input
|
|
5580
|
-
}],
|
|
5581
|
-
type: Input
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
}],
|
|
5587
|
-
type: Input,
|
|
5588
|
-
args: ['background-position']
|
|
5589
|
-
}], contrastHelperGradient: [{
|
|
5590
|
-
type: Input,
|
|
5591
|
-
args: ['contrast-helper-gradient']
|
|
5592
|
-
}], contrastHelperOverlay: [{
|
|
5593
|
-
type: Input,
|
|
5594
|
-
args: ['contrast-helper-overlay']
|
|
5595
|
-
}], mediaPosition: [{
|
|
5596
|
-
type: Input,
|
|
5597
|
-
args: ['media-position']
|
|
5598
|
-
}], mediaPositionMobile: [{
|
|
5599
|
-
type: Input,
|
|
5600
|
-
args: ['media-position--mobile']
|
|
5601
|
-
}], mediaPositionTablet: [{
|
|
5602
|
-
type: Input,
|
|
5603
|
-
args: ['media-position--tablet']
|
|
5604
|
-
}], mediaPositionLaptop: [{
|
|
5605
|
-
type: Input,
|
|
5606
|
-
args: ['media-position--laptop']
|
|
5607
|
-
}], mediaSrc: [{
|
|
5608
|
-
type: Input,
|
|
5609
|
-
args: ['media-src']
|
|
5610
|
-
}], mediaSrcMobile: [{
|
|
5611
|
-
type: Input,
|
|
5612
|
-
args: ['media-src--mobile']
|
|
5613
|
-
}], mediaSrcTablet: [{
|
|
5614
|
-
type: Input,
|
|
5615
|
-
args: ['media-src--tablet']
|
|
5616
|
-
}], mediaSrcLaptop: [{
|
|
5554
|
+
}], loading: [{
|
|
5555
|
+
type: Input
|
|
5556
|
+
}], size: [{
|
|
5557
|
+
type: Input
|
|
5558
|
+
}], variant: [{
|
|
5559
|
+
type: Input
|
|
5560
|
+
}], ariaExpanded: [{
|
|
5617
5561
|
type: Input,
|
|
5618
|
-
args: ['
|
|
5562
|
+
args: ['aria-expanded']
|
|
5563
|
+
}], name: [{
|
|
5564
|
+
type: Input
|
|
5565
|
+
}], value: [{
|
|
5566
|
+
type: Input
|
|
5567
|
+
}], type: [{
|
|
5568
|
+
type: Input
|
|
5569
|
+
}], disabled: [{
|
|
5570
|
+
type: Input
|
|
5619
5571
|
}], grow: [{
|
|
5620
5572
|
type: Input
|
|
5621
5573
|
}], growMobile: [{
|
|
@@ -5769,82 +5721,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
5769
5721
|
args: ['word-break-all--desktop']
|
|
5770
5722
|
}] } });
|
|
5771
5723
|
/**
|
|
5772
|
-
* @description Type-only wrapper for <px-
|
|
5773
|
-
*/
|
|
5774
|
-
class PxAppleseed {
|
|
5775
|
-
elementRef;
|
|
5776
|
-
set amount(value) {
|
|
5777
|
-
this.elementRef.nativeElement['amount'] = value;
|
|
5778
|
-
}
|
|
5779
|
-
get amount() {
|
|
5780
|
-
return this.elementRef.nativeElement['amount'];
|
|
5781
|
-
}
|
|
5782
|
-
set active(value) {
|
|
5783
|
-
this.elementRef.nativeElement['active'] = value;
|
|
5784
|
-
}
|
|
5785
|
-
get active() {
|
|
5786
|
-
return this.elementRef.nativeElement['active'];
|
|
5787
|
-
}
|
|
5788
|
-
constructor(elementRef) {
|
|
5789
|
-
this.elementRef = elementRef;
|
|
5790
|
-
}
|
|
5791
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5792
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxAppleseed, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
5793
|
-
}
|
|
5794
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
5795
|
-
type: Directive,
|
|
5796
|
-
args: [{
|
|
5797
|
-
selector: 'px-appleseed',
|
|
5798
|
-
}]
|
|
5799
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
5800
|
-
type: Input
|
|
5801
|
-
}], active: [{
|
|
5802
|
-
type: Input
|
|
5803
|
-
}] } });
|
|
5804
|
-
/**
|
|
5805
|
-
* @description Type-only wrapper for <px-carousel>
|
|
5806
|
-
*/
|
|
5807
|
-
class PxCarousel {
|
|
5808
|
-
elementRef;
|
|
5809
|
-
constructor(elementRef) {
|
|
5810
|
-
this.elementRef = elementRef;
|
|
5811
|
-
}
|
|
5812
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5813
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarousel, selector: "px-carousel", ngImport: i0 });
|
|
5814
|
-
}
|
|
5815
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, decorators: [{
|
|
5816
|
-
type: Directive,
|
|
5817
|
-
args: [{
|
|
5818
|
-
selector: 'px-carousel',
|
|
5819
|
-
}]
|
|
5820
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
5821
|
-
/**
|
|
5822
|
-
* @description Type-only wrapper for <px-carousel-item>
|
|
5823
|
-
*/
|
|
5824
|
-
class PxCarouselItem {
|
|
5825
|
-
elementRef;
|
|
5826
|
-
CAROUSEL_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
5827
|
-
constructor(elementRef) {
|
|
5828
|
-
this.elementRef = elementRef;
|
|
5829
|
-
this.elementRef.nativeElement.addEventListener('CAROUSEL_ITEM_CONNECTED_EVENT', (e) => {
|
|
5830
|
-
this.CAROUSEL_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
5831
|
-
});
|
|
5832
|
-
}
|
|
5833
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5834
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarouselItem, selector: "px-carousel-item", outputs: { CAROUSEL_ITEM_CONNECTED_EVENT: "CAROUSEL_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
5835
|
-
}
|
|
5836
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
5837
|
-
type: Directive,
|
|
5838
|
-
args: [{
|
|
5839
|
-
selector: 'px-carousel-item',
|
|
5840
|
-
}]
|
|
5841
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { CAROUSEL_ITEM_CONNECTED_EVENT: [{
|
|
5842
|
-
type: Output
|
|
5843
|
-
}] } });
|
|
5844
|
-
/**
|
|
5845
|
-
* @description Type-only wrapper for <px-cell>
|
|
5724
|
+
* @description Type-only wrapper for <px-card>
|
|
5846
5725
|
*/
|
|
5847
|
-
class
|
|
5726
|
+
class PxCard {
|
|
5848
5727
|
elementRef;
|
|
5849
5728
|
set inverted(value) {
|
|
5850
5729
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -5852,89 +5731,83 @@ class PxCell {
|
|
|
5852
5731
|
get inverted() {
|
|
5853
5732
|
return this.elementRef.nativeElement['inverted'];
|
|
5854
5733
|
}
|
|
5855
|
-
set
|
|
5856
|
-
this.elementRef.nativeElement['
|
|
5857
|
-
}
|
|
5858
|
-
get variant() {
|
|
5859
|
-
return this.elementRef.nativeElement['variant'];
|
|
5860
|
-
}
|
|
5861
|
-
set disabled(value) {
|
|
5862
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
5734
|
+
set backgroundColor(value) {
|
|
5735
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
5863
5736
|
}
|
|
5864
|
-
get
|
|
5865
|
-
return this.elementRef.nativeElement['
|
|
5737
|
+
get backgroundColor() {
|
|
5738
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
5866
5739
|
}
|
|
5867
|
-
set
|
|
5868
|
-
this.elementRef.nativeElement['
|
|
5740
|
+
set backgroundSize(value) {
|
|
5741
|
+
this.elementRef.nativeElement['backgroundSize'] = value;
|
|
5869
5742
|
}
|
|
5870
|
-
get
|
|
5871
|
-
return this.elementRef.nativeElement['
|
|
5743
|
+
get backgroundSize() {
|
|
5744
|
+
return this.elementRef.nativeElement['backgroundSize'];
|
|
5872
5745
|
}
|
|
5873
|
-
set
|
|
5874
|
-
this.elementRef.nativeElement['
|
|
5746
|
+
set backgroundPosition(value) {
|
|
5747
|
+
this.elementRef.nativeElement['backgroundPosition'] = value;
|
|
5875
5748
|
}
|
|
5876
|
-
get
|
|
5877
|
-
return this.elementRef.nativeElement['
|
|
5749
|
+
get backgroundPosition() {
|
|
5750
|
+
return this.elementRef.nativeElement['backgroundPosition'];
|
|
5878
5751
|
}
|
|
5879
|
-
set
|
|
5880
|
-
this.elementRef.nativeElement['
|
|
5752
|
+
set contrastHelperGradient(value) {
|
|
5753
|
+
this.elementRef.nativeElement['contrastHelperGradient'] = value;
|
|
5881
5754
|
}
|
|
5882
|
-
get
|
|
5883
|
-
return this.elementRef.nativeElement['
|
|
5755
|
+
get contrastHelperGradient() {
|
|
5756
|
+
return this.elementRef.nativeElement['contrastHelperGradient'];
|
|
5884
5757
|
}
|
|
5885
|
-
set
|
|
5886
|
-
this.elementRef.nativeElement['
|
|
5758
|
+
set contrastHelperOverlay(value) {
|
|
5759
|
+
this.elementRef.nativeElement['contrastHelperOverlay'] = value;
|
|
5887
5760
|
}
|
|
5888
|
-
get
|
|
5889
|
-
return this.elementRef.nativeElement['
|
|
5761
|
+
get contrastHelperOverlay() {
|
|
5762
|
+
return this.elementRef.nativeElement['contrastHelperOverlay'];
|
|
5890
5763
|
}
|
|
5891
|
-
set
|
|
5892
|
-
this.elementRef.nativeElement['
|
|
5764
|
+
set mediaPosition(value) {
|
|
5765
|
+
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
5893
5766
|
}
|
|
5894
|
-
get
|
|
5895
|
-
return this.elementRef.nativeElement['
|
|
5767
|
+
get mediaPosition() {
|
|
5768
|
+
return this.elementRef.nativeElement['mediaPosition'];
|
|
5896
5769
|
}
|
|
5897
|
-
set
|
|
5898
|
-
this.elementRef.nativeElement['
|
|
5770
|
+
set mediaPositionMobile(value) {
|
|
5771
|
+
this.elementRef.nativeElement['mediaPositionMobile'] = value;
|
|
5899
5772
|
}
|
|
5900
|
-
get
|
|
5901
|
-
return this.elementRef.nativeElement['
|
|
5773
|
+
get mediaPositionMobile() {
|
|
5774
|
+
return this.elementRef.nativeElement['mediaPositionMobile'];
|
|
5902
5775
|
}
|
|
5903
|
-
set
|
|
5904
|
-
this.elementRef.nativeElement['
|
|
5776
|
+
set mediaPositionTablet(value) {
|
|
5777
|
+
this.elementRef.nativeElement['mediaPositionTablet'] = value;
|
|
5905
5778
|
}
|
|
5906
|
-
get
|
|
5907
|
-
return this.elementRef.nativeElement['
|
|
5779
|
+
get mediaPositionTablet() {
|
|
5780
|
+
return this.elementRef.nativeElement['mediaPositionTablet'];
|
|
5908
5781
|
}
|
|
5909
|
-
set
|
|
5910
|
-
this.elementRef.nativeElement['
|
|
5782
|
+
set mediaPositionLaptop(value) {
|
|
5783
|
+
this.elementRef.nativeElement['mediaPositionLaptop'] = value;
|
|
5911
5784
|
}
|
|
5912
|
-
get
|
|
5913
|
-
return this.elementRef.nativeElement['
|
|
5785
|
+
get mediaPositionLaptop() {
|
|
5786
|
+
return this.elementRef.nativeElement['mediaPositionLaptop'];
|
|
5914
5787
|
}
|
|
5915
|
-
set
|
|
5916
|
-
this.elementRef.nativeElement['
|
|
5788
|
+
set mediaSrc(value) {
|
|
5789
|
+
this.elementRef.nativeElement['mediaSrc'] = value;
|
|
5917
5790
|
}
|
|
5918
|
-
get
|
|
5919
|
-
return this.elementRef.nativeElement['
|
|
5791
|
+
get mediaSrc() {
|
|
5792
|
+
return this.elementRef.nativeElement['mediaSrc'];
|
|
5920
5793
|
}
|
|
5921
|
-
set
|
|
5922
|
-
this.elementRef.nativeElement['
|
|
5794
|
+
set mediaSrcMobile(value) {
|
|
5795
|
+
this.elementRef.nativeElement['mediaSrcMobile'] = value;
|
|
5923
5796
|
}
|
|
5924
|
-
get
|
|
5925
|
-
return this.elementRef.nativeElement['
|
|
5797
|
+
get mediaSrcMobile() {
|
|
5798
|
+
return this.elementRef.nativeElement['mediaSrcMobile'];
|
|
5926
5799
|
}
|
|
5927
|
-
set
|
|
5928
|
-
this.elementRef.nativeElement['
|
|
5800
|
+
set mediaSrcTablet(value) {
|
|
5801
|
+
this.elementRef.nativeElement['mediaSrcTablet'] = value;
|
|
5929
5802
|
}
|
|
5930
|
-
get
|
|
5931
|
-
return this.elementRef.nativeElement['
|
|
5803
|
+
get mediaSrcTablet() {
|
|
5804
|
+
return this.elementRef.nativeElement['mediaSrcTablet'];
|
|
5932
5805
|
}
|
|
5933
|
-
set
|
|
5934
|
-
this.elementRef.nativeElement['
|
|
5806
|
+
set mediaSrcLaptop(value) {
|
|
5807
|
+
this.elementRef.nativeElement['mediaSrcLaptop'] = value;
|
|
5935
5808
|
}
|
|
5936
|
-
get
|
|
5937
|
-
return this.elementRef.nativeElement['
|
|
5809
|
+
get mediaSrcLaptop() {
|
|
5810
|
+
return this.elementRef.nativeElement['mediaSrcLaptop'];
|
|
5938
5811
|
}
|
|
5939
5812
|
set grow(value) {
|
|
5940
5813
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -6251,53 +6124,55 @@ class PxCell {
|
|
|
6251
6124
|
constructor(elementRef) {
|
|
6252
6125
|
this.elementRef = elementRef;
|
|
6253
6126
|
}
|
|
6254
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
6255
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
6127
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCard, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6128
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCard, 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 });
|
|
6256
6129
|
}
|
|
6257
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
6130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCard, decorators: [{
|
|
6258
6131
|
type: Directive,
|
|
6259
6132
|
args: [{
|
|
6260
|
-
selector: 'px-
|
|
6133
|
+
selector: 'px-card',
|
|
6261
6134
|
}]
|
|
6262
6135
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
6263
6136
|
type: Input
|
|
6264
|
-
}],
|
|
6265
|
-
type: Input
|
|
6266
|
-
}], disabled: [{
|
|
6267
|
-
type: Input
|
|
6268
|
-
}], separator: [{
|
|
6269
|
-
type: Input
|
|
6270
|
-
}], separatorMobile: [{
|
|
6137
|
+
}], backgroundColor: [{
|
|
6271
6138
|
type: Input,
|
|
6272
|
-
args: ['
|
|
6273
|
-
}],
|
|
6139
|
+
args: ['background-color']
|
|
6140
|
+
}], backgroundSize: [{
|
|
6274
6141
|
type: Input,
|
|
6275
|
-
args: ['
|
|
6276
|
-
}],
|
|
6142
|
+
args: ['background-size']
|
|
6143
|
+
}], backgroundPosition: [{
|
|
6277
6144
|
type: Input,
|
|
6278
|
-
args: ['
|
|
6279
|
-
}],
|
|
6145
|
+
args: ['background-position']
|
|
6146
|
+
}], contrastHelperGradient: [{
|
|
6280
6147
|
type: Input,
|
|
6281
|
-
args: ['
|
|
6282
|
-
}],
|
|
6283
|
-
type: Input
|
|
6284
|
-
}], radiusMobile: [{
|
|
6148
|
+
args: ['contrast-helper-gradient']
|
|
6149
|
+
}], contrastHelperOverlay: [{
|
|
6285
6150
|
type: Input,
|
|
6286
|
-
args: ['
|
|
6287
|
-
}],
|
|
6151
|
+
args: ['contrast-helper-overlay']
|
|
6152
|
+
}], mediaPosition: [{
|
|
6288
6153
|
type: Input,
|
|
6289
|
-
args: ['
|
|
6290
|
-
}],
|
|
6154
|
+
args: ['media-position']
|
|
6155
|
+
}], mediaPositionMobile: [{
|
|
6291
6156
|
type: Input,
|
|
6292
|
-
args: ['
|
|
6293
|
-
}],
|
|
6157
|
+
args: ['media-position--mobile']
|
|
6158
|
+
}], mediaPositionTablet: [{
|
|
6294
6159
|
type: Input,
|
|
6295
|
-
args: ['
|
|
6296
|
-
}],
|
|
6160
|
+
args: ['media-position--tablet']
|
|
6161
|
+
}], mediaPositionLaptop: [{
|
|
6297
6162
|
type: Input,
|
|
6298
|
-
args: ['
|
|
6299
|
-
}],
|
|
6300
|
-
type: Input
|
|
6163
|
+
args: ['media-position--laptop']
|
|
6164
|
+
}], mediaSrc: [{
|
|
6165
|
+
type: Input,
|
|
6166
|
+
args: ['media-src']
|
|
6167
|
+
}], mediaSrcMobile: [{
|
|
6168
|
+
type: Input,
|
|
6169
|
+
args: ['media-src--mobile']
|
|
6170
|
+
}], mediaSrcTablet: [{
|
|
6171
|
+
type: Input,
|
|
6172
|
+
args: ['media-src--tablet']
|
|
6173
|
+
}], mediaSrcLaptop: [{
|
|
6174
|
+
type: Input,
|
|
6175
|
+
args: ['media-src--laptop']
|
|
6301
6176
|
}], grow: [{
|
|
6302
6177
|
type: Input
|
|
6303
6178
|
}], growMobile: [{
|
|
@@ -6451,9 +6326,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6451
6326
|
args: ['word-break-all--desktop']
|
|
6452
6327
|
}] } });
|
|
6453
6328
|
/**
|
|
6454
|
-
* @description Type-only wrapper for <px-
|
|
6329
|
+
* @description Type-only wrapper for <px-appleseed>
|
|
6455
6330
|
*/
|
|
6456
|
-
class
|
|
6331
|
+
class PxAppleseed {
|
|
6332
|
+
elementRef;
|
|
6333
|
+
set amount(value) {
|
|
6334
|
+
this.elementRef.nativeElement['amount'] = value;
|
|
6335
|
+
}
|
|
6336
|
+
get amount() {
|
|
6337
|
+
return this.elementRef.nativeElement['amount'];
|
|
6338
|
+
}
|
|
6339
|
+
set active(value) {
|
|
6340
|
+
this.elementRef.nativeElement['active'] = value;
|
|
6341
|
+
}
|
|
6342
|
+
get active() {
|
|
6343
|
+
return this.elementRef.nativeElement['active'];
|
|
6344
|
+
}
|
|
6345
|
+
constructor(elementRef) {
|
|
6346
|
+
this.elementRef = elementRef;
|
|
6347
|
+
}
|
|
6348
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6349
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxAppleseed, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
6350
|
+
}
|
|
6351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
6352
|
+
type: Directive,
|
|
6353
|
+
args: [{
|
|
6354
|
+
selector: 'px-appleseed',
|
|
6355
|
+
}]
|
|
6356
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
6357
|
+
type: Input
|
|
6358
|
+
}], active: [{
|
|
6359
|
+
type: Input
|
|
6360
|
+
}] } });
|
|
6361
|
+
/**
|
|
6362
|
+
* @description Type-only wrapper for <px-carousel>
|
|
6363
|
+
*/
|
|
6364
|
+
class PxCarousel {
|
|
6365
|
+
elementRef;
|
|
6366
|
+
constructor(elementRef) {
|
|
6367
|
+
this.elementRef = elementRef;
|
|
6368
|
+
}
|
|
6369
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6370
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarousel, selector: "px-carousel", ngImport: i0 });
|
|
6371
|
+
}
|
|
6372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, decorators: [{
|
|
6373
|
+
type: Directive,
|
|
6374
|
+
args: [{
|
|
6375
|
+
selector: 'px-carousel',
|
|
6376
|
+
}]
|
|
6377
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
6378
|
+
/**
|
|
6379
|
+
* @description Type-only wrapper for <px-carousel-item>
|
|
6380
|
+
*/
|
|
6381
|
+
class PxCarouselItem {
|
|
6382
|
+
elementRef;
|
|
6383
|
+
CAROUSEL_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
6384
|
+
constructor(elementRef) {
|
|
6385
|
+
this.elementRef = elementRef;
|
|
6386
|
+
this.elementRef.nativeElement.addEventListener('CAROUSEL_ITEM_CONNECTED_EVENT', (e) => {
|
|
6387
|
+
this.CAROUSEL_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
6388
|
+
});
|
|
6389
|
+
}
|
|
6390
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6391
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarouselItem, selector: "px-carousel-item", outputs: { CAROUSEL_ITEM_CONNECTED_EVENT: "CAROUSEL_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
6392
|
+
}
|
|
6393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
6394
|
+
type: Directive,
|
|
6395
|
+
args: [{
|
|
6396
|
+
selector: 'px-carousel-item',
|
|
6397
|
+
}]
|
|
6398
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { CAROUSEL_ITEM_CONNECTED_EVENT: [{
|
|
6399
|
+
type: Output
|
|
6400
|
+
}] } });
|
|
6401
|
+
/**
|
|
6402
|
+
* @description Type-only wrapper for <px-cell>
|
|
6403
|
+
*/
|
|
6404
|
+
class PxCell {
|
|
6457
6405
|
elementRef;
|
|
6458
6406
|
set inverted(value) {
|
|
6459
6407
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -6467,7 +6415,6 @@ class PxCellButton {
|
|
|
6467
6415
|
get variant() {
|
|
6468
6416
|
return this.elementRef.nativeElement['variant'];
|
|
6469
6417
|
}
|
|
6470
|
-
/** Whether the button is disabled. */
|
|
6471
6418
|
set disabled(value) {
|
|
6472
6419
|
this.elementRef.nativeElement['disabled'] = value;
|
|
6473
6420
|
}
|
|
@@ -6546,27 +6493,6 @@ class PxCellButton {
|
|
|
6546
6493
|
get compact() {
|
|
6547
6494
|
return this.elementRef.nativeElement['compact'];
|
|
6548
6495
|
}
|
|
6549
|
-
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
6550
|
-
set name(value) {
|
|
6551
|
-
this.elementRef.nativeElement['name'] = value;
|
|
6552
|
-
}
|
|
6553
|
-
get name() {
|
|
6554
|
-
return this.elementRef.nativeElement['name'];
|
|
6555
|
-
}
|
|
6556
|
-
/** The value associated with the button's name when it's submitted with a form. */
|
|
6557
|
-
set value(value) {
|
|
6558
|
-
this.elementRef.nativeElement['value'] = value;
|
|
6559
|
-
}
|
|
6560
|
-
get value() {
|
|
6561
|
-
return this.elementRef.nativeElement['value'];
|
|
6562
|
-
}
|
|
6563
|
-
/** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
|
|
6564
|
-
set type(value) {
|
|
6565
|
-
this.elementRef.nativeElement['type'] = value;
|
|
6566
|
-
}
|
|
6567
|
-
get type() {
|
|
6568
|
-
return this.elementRef.nativeElement['type'];
|
|
6569
|
-
}
|
|
6570
6496
|
set grow(value) {
|
|
6571
6497
|
this.elementRef.nativeElement['grow'] = value;
|
|
6572
6498
|
}
|
|
@@ -6882,13 +6808,13 @@ class PxCellButton {
|
|
|
6882
6808
|
constructor(elementRef) {
|
|
6883
6809
|
this.elementRef = elementRef;
|
|
6884
6810
|
}
|
|
6885
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
6886
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
6811
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCell, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6812
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCell, selector: "px-cell", inputs: { inverted: "inverted", variant: "variant", disabled: "disabled", separator: "separator", separatorMobile: ["separator--mobile", "separatorMobile"], separatorTablet: ["separator--tablet", "separatorTablet"], separatorLaptop: ["separator--laptop", "separatorLaptop"], separatorDesktop: ["separator--desktop", "separatorDesktop"], radius: "radius", radiusMobile: ["radius--mobile", "radiusMobile"], radiusTablet: ["radius--tablet", "radiusTablet"], radiusLaptop: ["radius--laptop", "radiusLaptop"], radiusDesktop: ["radius--desktop", "radiusDesktop"], backgroundColor: ["background-color", "backgroundColor"], compact: "compact", 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 });
|
|
6887
6813
|
}
|
|
6888
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
6814
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCell, decorators: [{
|
|
6889
6815
|
type: Directive,
|
|
6890
6816
|
args: [{
|
|
6891
|
-
selector: 'px-cell
|
|
6817
|
+
selector: 'px-cell',
|
|
6892
6818
|
}]
|
|
6893
6819
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
6894
6820
|
type: Input
|
|
@@ -6929,12 +6855,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6929
6855
|
args: ['background-color']
|
|
6930
6856
|
}], compact: [{
|
|
6931
6857
|
type: Input
|
|
6932
|
-
}], name: [{
|
|
6933
|
-
type: Input
|
|
6934
|
-
}], value: [{
|
|
6935
|
-
type: Input
|
|
6936
|
-
}], type: [{
|
|
6937
|
-
type: Input
|
|
6938
6858
|
}], grow: [{
|
|
6939
6859
|
type: Input
|
|
6940
6860
|
}], growMobile: [{
|
|
@@ -7088,9 +7008,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
7088
7008
|
args: ['word-break-all--desktop']
|
|
7089
7009
|
}] } });
|
|
7090
7010
|
/**
|
|
7091
|
-
* @description Type-only wrapper for <px-cell-
|
|
7011
|
+
* @description Type-only wrapper for <px-cell-button>
|
|
7092
7012
|
*/
|
|
7093
|
-
class
|
|
7013
|
+
class PxCellButton {
|
|
7094
7014
|
elementRef;
|
|
7095
7015
|
set inverted(value) {
|
|
7096
7016
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -7104,6 +7024,7 @@ class PxCellCheckbox {
|
|
|
7104
7024
|
get variant() {
|
|
7105
7025
|
return this.elementRef.nativeElement['variant'];
|
|
7106
7026
|
}
|
|
7027
|
+
/** Whether the button is disabled. */
|
|
7107
7028
|
set disabled(value) {
|
|
7108
7029
|
this.elementRef.nativeElement['disabled'] = value;
|
|
7109
7030
|
}
|
|
@@ -7170,47 +7091,38 @@ class PxCellCheckbox {
|
|
|
7170
7091
|
get radiusDesktop() {
|
|
7171
7092
|
return this.elementRef.nativeElement['radiusDesktop'];
|
|
7172
7093
|
}
|
|
7094
|
+
set backgroundColor(value) {
|
|
7095
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
7096
|
+
}
|
|
7097
|
+
get backgroundColor() {
|
|
7098
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
7099
|
+
}
|
|
7100
|
+
set compact(value) {
|
|
7101
|
+
this.elementRef.nativeElement['compact'] = value;
|
|
7102
|
+
}
|
|
7103
|
+
get compact() {
|
|
7104
|
+
return this.elementRef.nativeElement['compact'];
|
|
7105
|
+
}
|
|
7106
|
+
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
7173
7107
|
set name(value) {
|
|
7174
7108
|
this.elementRef.nativeElement['name'] = value;
|
|
7175
7109
|
}
|
|
7176
7110
|
get name() {
|
|
7177
7111
|
return this.elementRef.nativeElement['name'];
|
|
7178
7112
|
}
|
|
7113
|
+
/** The value associated with the button's name when it's submitted with a form. */
|
|
7179
7114
|
set value(value) {
|
|
7180
7115
|
this.elementRef.nativeElement['value'] = value;
|
|
7181
7116
|
}
|
|
7182
7117
|
get value() {
|
|
7183
7118
|
return this.elementRef.nativeElement['value'];
|
|
7184
7119
|
}
|
|
7185
|
-
|
|
7186
|
-
|
|
7187
|
-
|
|
7188
|
-
get state() {
|
|
7189
|
-
return this.elementRef.nativeElement['state'];
|
|
7190
|
-
}
|
|
7191
|
-
set checked(value) {
|
|
7192
|
-
this.elementRef.nativeElement['checked'] = value;
|
|
7193
|
-
}
|
|
7194
|
-
get checked() {
|
|
7195
|
-
return this.elementRef.nativeElement['checked'];
|
|
7196
|
-
}
|
|
7197
|
-
set checkboxPosition(value) {
|
|
7198
|
-
this.elementRef.nativeElement['checkboxPosition'] = value;
|
|
7199
|
-
}
|
|
7200
|
-
get checkboxPosition() {
|
|
7201
|
-
return this.elementRef.nativeElement['checkboxPosition'];
|
|
7202
|
-
}
|
|
7203
|
-
set backgroundColor(value) {
|
|
7204
|
-
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
7205
|
-
}
|
|
7206
|
-
get backgroundColor() {
|
|
7207
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
7208
|
-
}
|
|
7209
|
-
set compact(value) {
|
|
7210
|
-
this.elementRef.nativeElement['compact'] = value;
|
|
7120
|
+
/** The default behavior of the button. Possible values are 'submit', 'reset', and 'button'. */
|
|
7121
|
+
set type(value) {
|
|
7122
|
+
this.elementRef.nativeElement['type'] = value;
|
|
7211
7123
|
}
|
|
7212
|
-
get
|
|
7213
|
-
return this.elementRef.nativeElement['
|
|
7124
|
+
get type() {
|
|
7125
|
+
return this.elementRef.nativeElement['type'];
|
|
7214
7126
|
}
|
|
7215
7127
|
set grow(value) {
|
|
7216
7128
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -7524,20 +7436,16 @@ class PxCellCheckbox {
|
|
|
7524
7436
|
get wordBreakAllDesktop() {
|
|
7525
7437
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
7526
7438
|
}
|
|
7527
|
-
change = new EventEmitter();
|
|
7528
7439
|
constructor(elementRef) {
|
|
7529
7440
|
this.elementRef = elementRef;
|
|
7530
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
7531
|
-
this.change.emit(e.detail);
|
|
7532
|
-
});
|
|
7533
7441
|
}
|
|
7534
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
7535
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
7442
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellButton, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7443
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCellButton, selector: "px-cell-button", inputs: { inverted: "inverted", variant: "variant", disabled: "disabled", separator: "separator", separatorMobile: ["separator--mobile", "separatorMobile"], separatorTablet: ["separator--tablet", "separatorTablet"], separatorLaptop: ["separator--laptop", "separatorLaptop"], separatorDesktop: ["separator--desktop", "separatorDesktop"], radius: "radius", radiusMobile: ["radius--mobile", "radiusMobile"], radiusTablet: ["radius--tablet", "radiusTablet"], radiusLaptop: ["radius--laptop", "radiusLaptop"], radiusDesktop: ["radius--desktop", "radiusDesktop"], backgroundColor: ["background-color", "backgroundColor"], compact: "compact", name: "name", value: "value", type: "type", 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 });
|
|
7536
7444
|
}
|
|
7537
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
7445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellButton, decorators: [{
|
|
7538
7446
|
type: Directive,
|
|
7539
7447
|
args: [{
|
|
7540
|
-
selector: 'px-cell-
|
|
7448
|
+
selector: 'px-cell-button',
|
|
7541
7449
|
}]
|
|
7542
7450
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
7543
7451
|
type: Input
|
|
@@ -7573,22 +7481,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
7573
7481
|
}], radiusDesktop: [{
|
|
7574
7482
|
type: Input,
|
|
7575
7483
|
args: ['radius--desktop']
|
|
7576
|
-
}], name: [{
|
|
7577
|
-
type: Input
|
|
7578
|
-
}], value: [{
|
|
7579
|
-
type: Input
|
|
7580
|
-
}], state: [{
|
|
7581
|
-
type: Input
|
|
7582
|
-
}], checked: [{
|
|
7583
|
-
type: Input
|
|
7584
|
-
}], checkboxPosition: [{
|
|
7585
|
-
type: Input,
|
|
7586
|
-
args: ['checkbox-position']
|
|
7587
7484
|
}], backgroundColor: [{
|
|
7588
7485
|
type: Input,
|
|
7589
7486
|
args: ['background-color']
|
|
7590
7487
|
}], compact: [{
|
|
7591
7488
|
type: Input
|
|
7489
|
+
}], name: [{
|
|
7490
|
+
type: Input
|
|
7491
|
+
}], value: [{
|
|
7492
|
+
type: Input
|
|
7493
|
+
}], type: [{
|
|
7494
|
+
type: Input
|
|
7592
7495
|
}], grow: [{
|
|
7593
7496
|
type: Input
|
|
7594
7497
|
}], growMobile: [{
|
|
@@ -7740,13 +7643,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
7740
7643
|
}], wordBreakAllDesktop: [{
|
|
7741
7644
|
type: Input,
|
|
7742
7645
|
args: ['word-break-all--desktop']
|
|
7743
|
-
}], change: [{
|
|
7744
|
-
type: Output
|
|
7745
7646
|
}] } });
|
|
7746
7647
|
/**
|
|
7747
|
-
* @description Type-only wrapper for <px-cell-
|
|
7648
|
+
* @description Type-only wrapper for <px-cell-checkbox>
|
|
7748
7649
|
*/
|
|
7749
|
-
class
|
|
7650
|
+
class PxCellCheckbox {
|
|
7750
7651
|
elementRef;
|
|
7751
7652
|
set inverted(value) {
|
|
7752
7653
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -7826,11 +7727,35 @@ class PxCellLink {
|
|
|
7826
7727
|
get radiusDesktop() {
|
|
7827
7728
|
return this.elementRef.nativeElement['radiusDesktop'];
|
|
7828
7729
|
}
|
|
7829
|
-
set
|
|
7830
|
-
this.elementRef.nativeElement['
|
|
7730
|
+
set name(value) {
|
|
7731
|
+
this.elementRef.nativeElement['name'] = value;
|
|
7831
7732
|
}
|
|
7832
|
-
get
|
|
7833
|
-
return this.elementRef.nativeElement['
|
|
7733
|
+
get name() {
|
|
7734
|
+
return this.elementRef.nativeElement['name'];
|
|
7735
|
+
}
|
|
7736
|
+
set value(value) {
|
|
7737
|
+
this.elementRef.nativeElement['value'] = value;
|
|
7738
|
+
}
|
|
7739
|
+
get value() {
|
|
7740
|
+
return this.elementRef.nativeElement['value'];
|
|
7741
|
+
}
|
|
7742
|
+
set state(value) {
|
|
7743
|
+
this.elementRef.nativeElement['state'] = value;
|
|
7744
|
+
}
|
|
7745
|
+
get state() {
|
|
7746
|
+
return this.elementRef.nativeElement['state'];
|
|
7747
|
+
}
|
|
7748
|
+
set checked(value) {
|
|
7749
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
7750
|
+
}
|
|
7751
|
+
get checked() {
|
|
7752
|
+
return this.elementRef.nativeElement['checked'];
|
|
7753
|
+
}
|
|
7754
|
+
set checkboxPosition(value) {
|
|
7755
|
+
this.elementRef.nativeElement['checkboxPosition'] = value;
|
|
7756
|
+
}
|
|
7757
|
+
get checkboxPosition() {
|
|
7758
|
+
return this.elementRef.nativeElement['checkboxPosition'];
|
|
7834
7759
|
}
|
|
7835
7760
|
set backgroundColor(value) {
|
|
7836
7761
|
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
@@ -7838,12 +7763,6 @@ class PxCellLink {
|
|
|
7838
7763
|
get backgroundColor() {
|
|
7839
7764
|
return this.elementRef.nativeElement['backgroundColor'];
|
|
7840
7765
|
}
|
|
7841
|
-
set noicon(value) {
|
|
7842
|
-
this.elementRef.nativeElement['noicon'] = value;
|
|
7843
|
-
}
|
|
7844
|
-
get noicon() {
|
|
7845
|
-
return this.elementRef.nativeElement['noicon'];
|
|
7846
|
-
}
|
|
7847
7766
|
set compact(value) {
|
|
7848
7767
|
this.elementRef.nativeElement['compact'] = value;
|
|
7849
7768
|
}
|
|
@@ -8162,16 +8081,20 @@ class PxCellLink {
|
|
|
8162
8081
|
get wordBreakAllDesktop() {
|
|
8163
8082
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
8164
8083
|
}
|
|
8084
|
+
change = new EventEmitter();
|
|
8165
8085
|
constructor(elementRef) {
|
|
8166
8086
|
this.elementRef = elementRef;
|
|
8087
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
8088
|
+
this.change.emit(e.detail);
|
|
8089
|
+
});
|
|
8167
8090
|
}
|
|
8168
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
8169
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
8091
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellCheckbox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
8092
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCellCheckbox, selector: "px-cell-checkbox", inputs: { inverted: "inverted", variant: "variant", disabled: "disabled", separator: "separator", separatorMobile: ["separator--mobile", "separatorMobile"], separatorTablet: ["separator--tablet", "separatorTablet"], separatorLaptop: ["separator--laptop", "separatorLaptop"], separatorDesktop: ["separator--desktop", "separatorDesktop"], radius: "radius", radiusMobile: ["radius--mobile", "radiusMobile"], radiusTablet: ["radius--tablet", "radiusTablet"], radiusLaptop: ["radius--laptop", "radiusLaptop"], radiusDesktop: ["radius--desktop", "radiusDesktop"], name: "name", value: "value", state: "state", checked: "checked", checkboxPosition: ["checkbox-position", "checkboxPosition"], backgroundColor: ["background-color", "backgroundColor"], compact: "compact", 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 });
|
|
8170
8093
|
}
|
|
8171
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
8094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellCheckbox, decorators: [{
|
|
8172
8095
|
type: Directive,
|
|
8173
8096
|
args: [{
|
|
8174
|
-
selector: 'px-cell-
|
|
8097
|
+
selector: 'px-cell-checkbox',
|
|
8175
8098
|
}]
|
|
8176
8099
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
8177
8100
|
type: Input
|
|
@@ -8207,14 +8130,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
8207
8130
|
}], radiusDesktop: [{
|
|
8208
8131
|
type: Input,
|
|
8209
8132
|
args: ['radius--desktop']
|
|
8210
|
-
}],
|
|
8133
|
+
}], name: [{
|
|
8134
|
+
type: Input
|
|
8135
|
+
}], value: [{
|
|
8136
|
+
type: Input
|
|
8137
|
+
}], state: [{
|
|
8138
|
+
type: Input
|
|
8139
|
+
}], checked: [{
|
|
8140
|
+
type: Input
|
|
8141
|
+
}], checkboxPosition: [{
|
|
8211
8142
|
type: Input,
|
|
8212
|
-
args: ['
|
|
8143
|
+
args: ['checkbox-position']
|
|
8213
8144
|
}], backgroundColor: [{
|
|
8214
8145
|
type: Input,
|
|
8215
8146
|
args: ['background-color']
|
|
8216
|
-
}], noicon: [{
|
|
8217
|
-
type: Input
|
|
8218
8147
|
}], compact: [{
|
|
8219
8148
|
type: Input
|
|
8220
8149
|
}], grow: [{
|
|
@@ -8368,11 +8297,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
8368
8297
|
}], wordBreakAllDesktop: [{
|
|
8369
8298
|
type: Input,
|
|
8370
8299
|
args: ['word-break-all--desktop']
|
|
8300
|
+
}], change: [{
|
|
8301
|
+
type: Output
|
|
8371
8302
|
}] } });
|
|
8372
8303
|
/**
|
|
8373
|
-
* @description Type-only wrapper for <px-cell-
|
|
8304
|
+
* @description Type-only wrapper for <px-cell-link>
|
|
8374
8305
|
*/
|
|
8375
|
-
class
|
|
8306
|
+
class PxCellLink {
|
|
8376
8307
|
elementRef;
|
|
8377
8308
|
set inverted(value) {
|
|
8378
8309
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -8452,35 +8383,11 @@ class PxCellRadio {
|
|
|
8452
8383
|
get radiusDesktop() {
|
|
8453
8384
|
return this.elementRef.nativeElement['radiusDesktop'];
|
|
8454
8385
|
}
|
|
8455
|
-
set
|
|
8456
|
-
this.elementRef.nativeElement['
|
|
8457
|
-
}
|
|
8458
|
-
get name() {
|
|
8459
|
-
return this.elementRef.nativeElement['name'];
|
|
8460
|
-
}
|
|
8461
|
-
set value(value) {
|
|
8462
|
-
this.elementRef.nativeElement['value'] = value;
|
|
8463
|
-
}
|
|
8464
|
-
get value() {
|
|
8465
|
-
return this.elementRef.nativeElement['value'];
|
|
8466
|
-
}
|
|
8467
|
-
set state(value) {
|
|
8468
|
-
this.elementRef.nativeElement['state'] = value;
|
|
8469
|
-
}
|
|
8470
|
-
get state() {
|
|
8471
|
-
return this.elementRef.nativeElement['state'];
|
|
8472
|
-
}
|
|
8473
|
-
set checked(value) {
|
|
8474
|
-
this.elementRef.nativeElement['checked'] = value;
|
|
8475
|
-
}
|
|
8476
|
-
get checked() {
|
|
8477
|
-
return this.elementRef.nativeElement['checked'];
|
|
8478
|
-
}
|
|
8479
|
-
set radioPosition(value) {
|
|
8480
|
-
this.elementRef.nativeElement['radioPosition'] = value;
|
|
8386
|
+
set targetBlankAriaLabel(value) {
|
|
8387
|
+
this.elementRef.nativeElement['targetBlankAriaLabel'] = value;
|
|
8481
8388
|
}
|
|
8482
|
-
get
|
|
8483
|
-
return this.elementRef.nativeElement['
|
|
8389
|
+
get targetBlankAriaLabel() {
|
|
8390
|
+
return this.elementRef.nativeElement['targetBlankAriaLabel'];
|
|
8484
8391
|
}
|
|
8485
8392
|
set backgroundColor(value) {
|
|
8486
8393
|
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
@@ -8488,6 +8395,12 @@ class PxCellRadio {
|
|
|
8488
8395
|
get backgroundColor() {
|
|
8489
8396
|
return this.elementRef.nativeElement['backgroundColor'];
|
|
8490
8397
|
}
|
|
8398
|
+
set noicon(value) {
|
|
8399
|
+
this.elementRef.nativeElement['noicon'] = value;
|
|
8400
|
+
}
|
|
8401
|
+
get noicon() {
|
|
8402
|
+
return this.elementRef.nativeElement['noicon'];
|
|
8403
|
+
}
|
|
8491
8404
|
set compact(value) {
|
|
8492
8405
|
this.elementRef.nativeElement['compact'] = value;
|
|
8493
8406
|
}
|
|
@@ -8806,20 +8719,16 @@ class PxCellRadio {
|
|
|
8806
8719
|
get wordBreakAllDesktop() {
|
|
8807
8720
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
8808
8721
|
}
|
|
8809
|
-
change = new EventEmitter();
|
|
8810
8722
|
constructor(elementRef) {
|
|
8811
8723
|
this.elementRef = elementRef;
|
|
8812
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
8813
|
-
this.change.emit(e.detail);
|
|
8814
|
-
});
|
|
8815
8724
|
}
|
|
8816
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
8817
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
8725
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellLink, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
8726
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCellLink, selector: "px-cell-link", inputs: { inverted: "inverted", variant: "variant", disabled: "disabled", separator: "separator", separatorMobile: ["separator--mobile", "separatorMobile"], separatorTablet: ["separator--tablet", "separatorTablet"], separatorLaptop: ["separator--laptop", "separatorLaptop"], separatorDesktop: ["separator--desktop", "separatorDesktop"], radius: "radius", radiusMobile: ["radius--mobile", "radiusMobile"], radiusTablet: ["radius--tablet", "radiusTablet"], radiusLaptop: ["radius--laptop", "radiusLaptop"], radiusDesktop: ["radius--desktop", "radiusDesktop"], targetBlankAriaLabel: ["target-blank-aria-label", "targetBlankAriaLabel"], backgroundColor: ["background-color", "backgroundColor"], noicon: "noicon", compact: "compact", 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 });
|
|
8818
8727
|
}
|
|
8819
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
8728
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellLink, decorators: [{
|
|
8820
8729
|
type: Directive,
|
|
8821
8730
|
args: [{
|
|
8822
|
-
selector: 'px-cell-
|
|
8731
|
+
selector: 'px-cell-link',
|
|
8823
8732
|
}]
|
|
8824
8733
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
8825
8734
|
type: Input
|
|
@@ -8855,20 +8764,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
8855
8764
|
}], radiusDesktop: [{
|
|
8856
8765
|
type: Input,
|
|
8857
8766
|
args: ['radius--desktop']
|
|
8858
|
-
}],
|
|
8859
|
-
type: Input
|
|
8860
|
-
}], value: [{
|
|
8861
|
-
type: Input
|
|
8862
|
-
}], state: [{
|
|
8863
|
-
type: Input
|
|
8864
|
-
}], checked: [{
|
|
8865
|
-
type: Input
|
|
8866
|
-
}], radioPosition: [{
|
|
8767
|
+
}], targetBlankAriaLabel: [{
|
|
8867
8768
|
type: Input,
|
|
8868
|
-
args: ['
|
|
8769
|
+
args: ['target-blank-aria-label']
|
|
8869
8770
|
}], backgroundColor: [{
|
|
8870
8771
|
type: Input,
|
|
8871
8772
|
args: ['background-color']
|
|
8773
|
+
}], noicon: [{
|
|
8774
|
+
type: Input
|
|
8872
8775
|
}], compact: [{
|
|
8873
8776
|
type: Input
|
|
8874
8777
|
}], grow: [{
|
|
@@ -9022,13 +8925,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
9022
8925
|
}], wordBreakAllDesktop: [{
|
|
9023
8926
|
type: Input,
|
|
9024
8927
|
args: ['word-break-all--desktop']
|
|
9025
|
-
}], change: [{
|
|
9026
|
-
type: Output
|
|
9027
8928
|
}] } });
|
|
9028
8929
|
/**
|
|
9029
|
-
* @description Type-only wrapper for <px-cell-
|
|
8930
|
+
* @description Type-only wrapper for <px-cell-radio>
|
|
9030
8931
|
*/
|
|
9031
|
-
class
|
|
8932
|
+
class PxCellRadio {
|
|
9032
8933
|
elementRef;
|
|
9033
8934
|
set inverted(value) {
|
|
9034
8935
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -9120,12 +9021,24 @@ class PxCellSwitch {
|
|
|
9120
9021
|
get value() {
|
|
9121
9022
|
return this.elementRef.nativeElement['value'];
|
|
9122
9023
|
}
|
|
9024
|
+
set state(value) {
|
|
9025
|
+
this.elementRef.nativeElement['state'] = value;
|
|
9026
|
+
}
|
|
9027
|
+
get state() {
|
|
9028
|
+
return this.elementRef.nativeElement['state'];
|
|
9029
|
+
}
|
|
9123
9030
|
set checked(value) {
|
|
9124
9031
|
this.elementRef.nativeElement['checked'] = value;
|
|
9125
9032
|
}
|
|
9126
9033
|
get checked() {
|
|
9127
9034
|
return this.elementRef.nativeElement['checked'];
|
|
9128
9035
|
}
|
|
9036
|
+
set radioPosition(value) {
|
|
9037
|
+
this.elementRef.nativeElement['radioPosition'] = value;
|
|
9038
|
+
}
|
|
9039
|
+
get radioPosition() {
|
|
9040
|
+
return this.elementRef.nativeElement['radioPosition'];
|
|
9041
|
+
}
|
|
9129
9042
|
set backgroundColor(value) {
|
|
9130
9043
|
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
9131
9044
|
}
|
|
@@ -9457,13 +9370,13 @@ class PxCellSwitch {
|
|
|
9457
9370
|
this.change.emit(e.detail);
|
|
9458
9371
|
});
|
|
9459
9372
|
}
|
|
9460
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
9461
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
9373
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
9374
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCellRadio, selector: "px-cell-radio", inputs: { inverted: "inverted", variant: "variant", disabled: "disabled", separator: "separator", separatorMobile: ["separator--mobile", "separatorMobile"], separatorTablet: ["separator--tablet", "separatorTablet"], separatorLaptop: ["separator--laptop", "separatorLaptop"], separatorDesktop: ["separator--desktop", "separatorDesktop"], radius: "radius", radiusMobile: ["radius--mobile", "radiusMobile"], radiusTablet: ["radius--tablet", "radiusTablet"], radiusLaptop: ["radius--laptop", "radiusLaptop"], radiusDesktop: ["radius--desktop", "radiusDesktop"], name: "name", value: "value", state: "state", checked: "checked", radioPosition: ["radio-position", "radioPosition"], backgroundColor: ["background-color", "backgroundColor"], compact: "compact", 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 });
|
|
9462
9375
|
}
|
|
9463
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
9376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellRadio, decorators: [{
|
|
9464
9377
|
type: Directive,
|
|
9465
9378
|
args: [{
|
|
9466
|
-
selector: 'px-cell-
|
|
9379
|
+
selector: 'px-cell-radio',
|
|
9467
9380
|
}]
|
|
9468
9381
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
9469
9382
|
type: Input
|
|
@@ -9503,8 +9416,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
9503
9416
|
type: Input
|
|
9504
9417
|
}], value: [{
|
|
9505
9418
|
type: Input
|
|
9419
|
+
}], state: [{
|
|
9420
|
+
type: Input
|
|
9506
9421
|
}], checked: [{
|
|
9507
9422
|
type: Input
|
|
9423
|
+
}], radioPosition: [{
|
|
9424
|
+
type: Input,
|
|
9425
|
+
args: ['radio-position']
|
|
9508
9426
|
}], backgroundColor: [{
|
|
9509
9427
|
type: Input,
|
|
9510
9428
|
args: ['background-color']
|
|
@@ -9665,9 +9583,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
9665
9583
|
type: Output
|
|
9666
9584
|
}] } });
|
|
9667
9585
|
/**
|
|
9668
|
-
* @description Type-only wrapper for <px-
|
|
9586
|
+
* @description Type-only wrapper for <px-cell-switch>
|
|
9669
9587
|
*/
|
|
9670
|
-
class
|
|
9588
|
+
class PxCellSwitch {
|
|
9671
9589
|
elementRef;
|
|
9672
9590
|
set inverted(value) {
|
|
9673
9591
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -9675,57 +9593,107 @@ class PxButtonIcon {
|
|
|
9675
9593
|
get inverted() {
|
|
9676
9594
|
return this.elementRef.nativeElement['inverted'];
|
|
9677
9595
|
}
|
|
9678
|
-
set loading(value) {
|
|
9679
|
-
this.elementRef.nativeElement['loading'] = value;
|
|
9680
|
-
}
|
|
9681
|
-
get loading() {
|
|
9682
|
-
return this.elementRef.nativeElement['loading'];
|
|
9683
|
-
}
|
|
9684
|
-
set size(value) {
|
|
9685
|
-
this.elementRef.nativeElement['size'] = value;
|
|
9686
|
-
}
|
|
9687
|
-
get size() {
|
|
9688
|
-
return this.elementRef.nativeElement['size'];
|
|
9689
|
-
}
|
|
9690
9596
|
set variant(value) {
|
|
9691
9597
|
this.elementRef.nativeElement['variant'] = value;
|
|
9692
9598
|
}
|
|
9693
9599
|
get variant() {
|
|
9694
9600
|
return this.elementRef.nativeElement['variant'];
|
|
9695
9601
|
}
|
|
9696
|
-
set
|
|
9697
|
-
this.elementRef.nativeElement['
|
|
9602
|
+
set disabled(value) {
|
|
9603
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
9698
9604
|
}
|
|
9699
|
-
get
|
|
9700
|
-
return this.elementRef.nativeElement['
|
|
9605
|
+
get disabled() {
|
|
9606
|
+
return this.elementRef.nativeElement['disabled'];
|
|
9607
|
+
}
|
|
9608
|
+
set separator(value) {
|
|
9609
|
+
this.elementRef.nativeElement['separator'] = value;
|
|
9610
|
+
}
|
|
9611
|
+
get separator() {
|
|
9612
|
+
return this.elementRef.nativeElement['separator'];
|
|
9613
|
+
}
|
|
9614
|
+
set separatorMobile(value) {
|
|
9615
|
+
this.elementRef.nativeElement['separatorMobile'] = value;
|
|
9616
|
+
}
|
|
9617
|
+
get separatorMobile() {
|
|
9618
|
+
return this.elementRef.nativeElement['separatorMobile'];
|
|
9619
|
+
}
|
|
9620
|
+
set separatorTablet(value) {
|
|
9621
|
+
this.elementRef.nativeElement['separatorTablet'] = value;
|
|
9622
|
+
}
|
|
9623
|
+
get separatorTablet() {
|
|
9624
|
+
return this.elementRef.nativeElement['separatorTablet'];
|
|
9625
|
+
}
|
|
9626
|
+
set separatorLaptop(value) {
|
|
9627
|
+
this.elementRef.nativeElement['separatorLaptop'] = value;
|
|
9628
|
+
}
|
|
9629
|
+
get separatorLaptop() {
|
|
9630
|
+
return this.elementRef.nativeElement['separatorLaptop'];
|
|
9631
|
+
}
|
|
9632
|
+
set separatorDesktop(value) {
|
|
9633
|
+
this.elementRef.nativeElement['separatorDesktop'] = value;
|
|
9634
|
+
}
|
|
9635
|
+
get separatorDesktop() {
|
|
9636
|
+
return this.elementRef.nativeElement['separatorDesktop'];
|
|
9637
|
+
}
|
|
9638
|
+
set radius(value) {
|
|
9639
|
+
this.elementRef.nativeElement['radius'] = value;
|
|
9640
|
+
}
|
|
9641
|
+
get radius() {
|
|
9642
|
+
return this.elementRef.nativeElement['radius'];
|
|
9643
|
+
}
|
|
9644
|
+
set radiusMobile(value) {
|
|
9645
|
+
this.elementRef.nativeElement['radiusMobile'] = value;
|
|
9646
|
+
}
|
|
9647
|
+
get radiusMobile() {
|
|
9648
|
+
return this.elementRef.nativeElement['radiusMobile'];
|
|
9649
|
+
}
|
|
9650
|
+
set radiusTablet(value) {
|
|
9651
|
+
this.elementRef.nativeElement['radiusTablet'] = value;
|
|
9652
|
+
}
|
|
9653
|
+
get radiusTablet() {
|
|
9654
|
+
return this.elementRef.nativeElement['radiusTablet'];
|
|
9655
|
+
}
|
|
9656
|
+
set radiusLaptop(value) {
|
|
9657
|
+
this.elementRef.nativeElement['radiusLaptop'] = value;
|
|
9658
|
+
}
|
|
9659
|
+
get radiusLaptop() {
|
|
9660
|
+
return this.elementRef.nativeElement['radiusLaptop'];
|
|
9661
|
+
}
|
|
9662
|
+
set radiusDesktop(value) {
|
|
9663
|
+
this.elementRef.nativeElement['radiusDesktop'] = value;
|
|
9664
|
+
}
|
|
9665
|
+
get radiusDesktop() {
|
|
9666
|
+
return this.elementRef.nativeElement['radiusDesktop'];
|
|
9701
9667
|
}
|
|
9702
|
-
/** The name of the button, submitted as a pair with the button's value as part of the form data. */
|
|
9703
9668
|
set name(value) {
|
|
9704
9669
|
this.elementRef.nativeElement['name'] = value;
|
|
9705
9670
|
}
|
|
9706
9671
|
get name() {
|
|
9707
9672
|
return this.elementRef.nativeElement['name'];
|
|
9708
9673
|
}
|
|
9709
|
-
/** The value associated with the button's name when it's submitted with a form. */
|
|
9710
9674
|
set value(value) {
|
|
9711
9675
|
this.elementRef.nativeElement['value'] = value;
|
|
9712
9676
|
}
|
|
9713
9677
|
get value() {
|
|
9714
9678
|
return this.elementRef.nativeElement['value'];
|
|
9715
9679
|
}
|
|
9716
|
-
|
|
9717
|
-
|
|
9718
|
-
this.elementRef.nativeElement['type'] = value;
|
|
9680
|
+
set checked(value) {
|
|
9681
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
9719
9682
|
}
|
|
9720
|
-
get
|
|
9721
|
-
return this.elementRef.nativeElement['
|
|
9683
|
+
get checked() {
|
|
9684
|
+
return this.elementRef.nativeElement['checked'];
|
|
9722
9685
|
}
|
|
9723
|
-
|
|
9724
|
-
|
|
9725
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
9686
|
+
set backgroundColor(value) {
|
|
9687
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
9726
9688
|
}
|
|
9727
|
-
get
|
|
9728
|
-
return this.elementRef.nativeElement['
|
|
9689
|
+
get backgroundColor() {
|
|
9690
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
9691
|
+
}
|
|
9692
|
+
set compact(value) {
|
|
9693
|
+
this.elementRef.nativeElement['compact'] = value;
|
|
9694
|
+
}
|
|
9695
|
+
get compact() {
|
|
9696
|
+
return this.elementRef.nativeElement['compact'];
|
|
9729
9697
|
}
|
|
9730
9698
|
set grow(value) {
|
|
9731
9699
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -10039,35 +10007,65 @@ class PxButtonIcon {
|
|
|
10039
10007
|
get wordBreakAllDesktop() {
|
|
10040
10008
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
10041
10009
|
}
|
|
10010
|
+
change = new EventEmitter();
|
|
10042
10011
|
constructor(elementRef) {
|
|
10043
10012
|
this.elementRef = elementRef;
|
|
10013
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
10014
|
+
this.change.emit(e.detail);
|
|
10015
|
+
});
|
|
10044
10016
|
}
|
|
10045
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
10046
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
10017
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellSwitch, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
10018
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCellSwitch, selector: "px-cell-switch", inputs: { inverted: "inverted", variant: "variant", disabled: "disabled", separator: "separator", separatorMobile: ["separator--mobile", "separatorMobile"], separatorTablet: ["separator--tablet", "separatorTablet"], separatorLaptop: ["separator--laptop", "separatorLaptop"], separatorDesktop: ["separator--desktop", "separatorDesktop"], radius: "radius", radiusMobile: ["radius--mobile", "radiusMobile"], radiusTablet: ["radius--tablet", "radiusTablet"], radiusLaptop: ["radius--laptop", "radiusLaptop"], radiusDesktop: ["radius--desktop", "radiusDesktop"], name: "name", value: "value", checked: "checked", backgroundColor: ["background-color", "backgroundColor"], compact: "compact", 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 });
|
|
10047
10019
|
}
|
|
10048
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
10020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCellSwitch, decorators: [{
|
|
10049
10021
|
type: Directive,
|
|
10050
10022
|
args: [{
|
|
10051
|
-
selector: 'px-
|
|
10023
|
+
selector: 'px-cell-switch',
|
|
10052
10024
|
}]
|
|
10053
10025
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
10054
10026
|
type: Input
|
|
10055
|
-
}],
|
|
10027
|
+
}], variant: [{
|
|
10056
10028
|
type: Input
|
|
10057
|
-
}],
|
|
10029
|
+
}], disabled: [{
|
|
10058
10030
|
type: Input
|
|
10059
|
-
}],
|
|
10031
|
+
}], separator: [{
|
|
10060
10032
|
type: Input
|
|
10061
|
-
}],
|
|
10033
|
+
}], separatorMobile: [{
|
|
10062
10034
|
type: Input,
|
|
10063
|
-
args: ['
|
|
10035
|
+
args: ['separator--mobile']
|
|
10036
|
+
}], separatorTablet: [{
|
|
10037
|
+
type: Input,
|
|
10038
|
+
args: ['separator--tablet']
|
|
10039
|
+
}], separatorLaptop: [{
|
|
10040
|
+
type: Input,
|
|
10041
|
+
args: ['separator--laptop']
|
|
10042
|
+
}], separatorDesktop: [{
|
|
10043
|
+
type: Input,
|
|
10044
|
+
args: ['separator--desktop']
|
|
10045
|
+
}], radius: [{
|
|
10046
|
+
type: Input
|
|
10047
|
+
}], radiusMobile: [{
|
|
10048
|
+
type: Input,
|
|
10049
|
+
args: ['radius--mobile']
|
|
10050
|
+
}], radiusTablet: [{
|
|
10051
|
+
type: Input,
|
|
10052
|
+
args: ['radius--tablet']
|
|
10053
|
+
}], radiusLaptop: [{
|
|
10054
|
+
type: Input,
|
|
10055
|
+
args: ['radius--laptop']
|
|
10056
|
+
}], radiusDesktop: [{
|
|
10057
|
+
type: Input,
|
|
10058
|
+
args: ['radius--desktop']
|
|
10064
10059
|
}], name: [{
|
|
10065
10060
|
type: Input
|
|
10066
10061
|
}], value: [{
|
|
10067
10062
|
type: Input
|
|
10068
|
-
}],
|
|
10063
|
+
}], checked: [{
|
|
10069
10064
|
type: Input
|
|
10070
|
-
}],
|
|
10065
|
+
}], backgroundColor: [{
|
|
10066
|
+
type: Input,
|
|
10067
|
+
args: ['background-color']
|
|
10068
|
+
}], compact: [{
|
|
10071
10069
|
type: Input
|
|
10072
10070
|
}], grow: [{
|
|
10073
10071
|
type: Input
|
|
@@ -10220,6 +10218,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
10220
10218
|
}], wordBreakAllDesktop: [{
|
|
10221
10219
|
type: Input,
|
|
10222
10220
|
args: ['word-break-all--desktop']
|
|
10221
|
+
}], change: [{
|
|
10222
|
+
type: Output
|
|
10223
10223
|
}] } });
|
|
10224
10224
|
/**
|
|
10225
10225
|
* @description Type-only wrapper for <px-checkbox>
|
|
@@ -41075,7 +41075,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41075
41075
|
}] } });
|
|
41076
41076
|
class Lavender {
|
|
41077
41077
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41078
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch,
|
|
41078
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, 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] });
|
|
41079
41079
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
41080
41080
|
}
|
|
41081
41081
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41091,6 +41091,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41091
41091
|
PxBreadcrumb,
|
|
41092
41092
|
PxButton,
|
|
41093
41093
|
PxButtonWrapper,
|
|
41094
|
+
PxButtonIcon,
|
|
41094
41095
|
PxCard,
|
|
41095
41096
|
PxAppleseed,
|
|
41096
41097
|
PxCarousel,
|
|
@@ -41101,7 +41102,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41101
41102
|
PxCellLink,
|
|
41102
41103
|
PxCellRadio,
|
|
41103
41104
|
PxCellSwitch,
|
|
41104
|
-
PxButtonIcon,
|
|
41105
41105
|
PxCheckbox,
|
|
41106
41106
|
PxColorOption,
|
|
41107
41107
|
PxColorOptionLink,
|
|
@@ -41193,6 +41193,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41193
41193
|
PxBreadcrumb,
|
|
41194
41194
|
PxButton,
|
|
41195
41195
|
PxButtonWrapper,
|
|
41196
|
+
PxButtonIcon,
|
|
41196
41197
|
PxCard,
|
|
41197
41198
|
PxAppleseed,
|
|
41198
41199
|
PxCarousel,
|
|
@@ -41203,7 +41204,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
41203
41204
|
PxCellLink,
|
|
41204
41205
|
PxCellRadio,
|
|
41205
41206
|
PxCellSwitch,
|
|
41206
|
-
PxButtonIcon,
|
|
41207
41207
|
PxCheckbox,
|
|
41208
41208
|
PxColorOption,
|
|
41209
41209
|
PxColorOptionLink,
|