@proximus/lavender-angular 1.4.15-alpha.21 → 1.4.15-alpha.23
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.
|
@@ -28180,6 +28180,175 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
28180
28180
|
type: Input,
|
|
28181
28181
|
args: ['word-break-all--desktop']
|
|
28182
28182
|
}] } });
|
|
28183
|
+
/**
|
|
28184
|
+
* @description Type-only wrapper for <px-card-actions>
|
|
28185
|
+
*/
|
|
28186
|
+
class PxCardActions {
|
|
28187
|
+
elementRef;
|
|
28188
|
+
constructor(elementRef) {
|
|
28189
|
+
this.elementRef = elementRef;
|
|
28190
|
+
}
|
|
28191
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28192
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardActions, isStandalone: true, selector: "px-card-actions", ngImport: i0 });
|
|
28193
|
+
}
|
|
28194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, decorators: [{
|
|
28195
|
+
type: Directive,
|
|
28196
|
+
args: [{
|
|
28197
|
+
selector: 'px-card-actions',
|
|
28198
|
+
standalone: true,
|
|
28199
|
+
}]
|
|
28200
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28201
|
+
/**
|
|
28202
|
+
* @description Type-only wrapper for <px-card-container>
|
|
28203
|
+
*/
|
|
28204
|
+
class PxCardContainer {
|
|
28205
|
+
elementRef;
|
|
28206
|
+
/** Switches to a dark surface with inverted text colors. */
|
|
28207
|
+
set inverted(value) {
|
|
28208
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
28209
|
+
}
|
|
28210
|
+
get inverted() {
|
|
28211
|
+
return this.elementRef.nativeElement['inverted'];
|
|
28212
|
+
}
|
|
28213
|
+
/** URL of the card media image. */
|
|
28214
|
+
set src(value) {
|
|
28215
|
+
this.elementRef.nativeElement['src'] = value;
|
|
28216
|
+
}
|
|
28217
|
+
get src() {
|
|
28218
|
+
return this.elementRef.nativeElement['src'];
|
|
28219
|
+
}
|
|
28220
|
+
/** Where the media image is rendered. */
|
|
28221
|
+
set mediaPosition(value) {
|
|
28222
|
+
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
28223
|
+
}
|
|
28224
|
+
get mediaPosition() {
|
|
28225
|
+
return this.elementRef.nativeElement['mediaPosition'];
|
|
28226
|
+
}
|
|
28227
|
+
/** How the media image is fitted. */
|
|
28228
|
+
set mediaSize(value) {
|
|
28229
|
+
this.elementRef.nativeElement['mediaSize'] = value;
|
|
28230
|
+
}
|
|
28231
|
+
get mediaSize() {
|
|
28232
|
+
return this.elementRef.nativeElement['mediaSize'];
|
|
28233
|
+
}
|
|
28234
|
+
set mediaAltText(value) {
|
|
28235
|
+
this.elementRef.nativeElement['mediaAltText'] = value;
|
|
28236
|
+
}
|
|
28237
|
+
get mediaAltText() {
|
|
28238
|
+
return this.elementRef.nativeElement['mediaAltText'];
|
|
28239
|
+
}
|
|
28240
|
+
/** Inner content padding size. */
|
|
28241
|
+
set padding(value) {
|
|
28242
|
+
this.elementRef.nativeElement['padding'] = value;
|
|
28243
|
+
}
|
|
28244
|
+
get padding() {
|
|
28245
|
+
return this.elementRef.nativeElement['padding'];
|
|
28246
|
+
}
|
|
28247
|
+
/** Aspect ratio applied to top media (e.g. `'16:9'`, `'1:1'`, `'4:3'`). */
|
|
28248
|
+
set aspectRatio(value) {
|
|
28249
|
+
this.elementRef.nativeElement['aspectRatio'] = value;
|
|
28250
|
+
}
|
|
28251
|
+
get aspectRatio() {
|
|
28252
|
+
return this.elementRef.nativeElement['aspectRatio'];
|
|
28253
|
+
}
|
|
28254
|
+
/** Whether the card has a visible border. */
|
|
28255
|
+
set hasBorder(value) {
|
|
28256
|
+
this.elementRef.nativeElement['hasBorder'] = value;
|
|
28257
|
+
}
|
|
28258
|
+
get hasBorder() {
|
|
28259
|
+
return this.elementRef.nativeElement['hasBorder'];
|
|
28260
|
+
}
|
|
28261
|
+
/** Surface color preset. */
|
|
28262
|
+
set backgroundColor(value) {
|
|
28263
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
28264
|
+
}
|
|
28265
|
+
get backgroundColor() {
|
|
28266
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
28267
|
+
}
|
|
28268
|
+
/** URL of a full-card background image (delegated to `<px-container>`). */
|
|
28269
|
+
set backgroundImage(value) {
|
|
28270
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
28271
|
+
}
|
|
28272
|
+
get backgroundImage() {
|
|
28273
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
28274
|
+
}
|
|
28275
|
+
set interactiveState(value) {
|
|
28276
|
+
this.elementRef.nativeElement['interactiveState'] = value;
|
|
28277
|
+
}
|
|
28278
|
+
get interactiveState() {
|
|
28279
|
+
return this.elementRef.nativeElement['interactiveState'];
|
|
28280
|
+
}
|
|
28281
|
+
/** Alt text for the media image. */
|
|
28282
|
+
set alternativeText(value) {
|
|
28283
|
+
this.elementRef.nativeElement['alternativeText'] = value;
|
|
28284
|
+
}
|
|
28285
|
+
get alternativeText() {
|
|
28286
|
+
return this.elementRef.nativeElement['alternativeText'];
|
|
28287
|
+
}
|
|
28288
|
+
constructor(elementRef) {
|
|
28289
|
+
this.elementRef = elementRef;
|
|
28290
|
+
}
|
|
28291
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28292
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardContainer, isStandalone: true, selector: "px-card-container", inputs: { inverted: "inverted", src: "src", mediaPosition: ["media-position", "mediaPosition"], mediaSize: ["media-size", "mediaSize"], mediaAltText: ["media-alt-text", "mediaAltText"], padding: "padding", aspectRatio: ["aspect-ratio", "aspectRatio"], hasBorder: ["has-border", "hasBorder"], backgroundColor: ["background-color", "backgroundColor"], backgroundImage: ["background-image", "backgroundImage"], interactiveState: ["interactive-state", "interactiveState"], alternativeText: ["alternative-text", "alternativeText"] }, ngImport: i0 });
|
|
28293
|
+
}
|
|
28294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, decorators: [{
|
|
28295
|
+
type: Directive,
|
|
28296
|
+
args: [{
|
|
28297
|
+
selector: 'px-card-container',
|
|
28298
|
+
standalone: true,
|
|
28299
|
+
}]
|
|
28300
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
28301
|
+
type: Input
|
|
28302
|
+
}], src: [{
|
|
28303
|
+
type: Input
|
|
28304
|
+
}], mediaPosition: [{
|
|
28305
|
+
type: Input,
|
|
28306
|
+
args: ['media-position']
|
|
28307
|
+
}], mediaSize: [{
|
|
28308
|
+
type: Input,
|
|
28309
|
+
args: ['media-size']
|
|
28310
|
+
}], mediaAltText: [{
|
|
28311
|
+
type: Input,
|
|
28312
|
+
args: ['media-alt-text']
|
|
28313
|
+
}], padding: [{
|
|
28314
|
+
type: Input
|
|
28315
|
+
}], aspectRatio: [{
|
|
28316
|
+
type: Input,
|
|
28317
|
+
args: ['aspect-ratio']
|
|
28318
|
+
}], hasBorder: [{
|
|
28319
|
+
type: Input,
|
|
28320
|
+
args: ['has-border']
|
|
28321
|
+
}], backgroundColor: [{
|
|
28322
|
+
type: Input,
|
|
28323
|
+
args: ['background-color']
|
|
28324
|
+
}], backgroundImage: [{
|
|
28325
|
+
type: Input,
|
|
28326
|
+
args: ['background-image']
|
|
28327
|
+
}], interactiveState: [{
|
|
28328
|
+
type: Input,
|
|
28329
|
+
args: ['interactive-state']
|
|
28330
|
+
}], alternativeText: [{
|
|
28331
|
+
type: Input,
|
|
28332
|
+
args: ['alternative-text']
|
|
28333
|
+
}] } });
|
|
28334
|
+
/**
|
|
28335
|
+
* @description Type-only wrapper for <px-card-heading>
|
|
28336
|
+
*/
|
|
28337
|
+
class PxCardHeading {
|
|
28338
|
+
elementRef;
|
|
28339
|
+
constructor(elementRef) {
|
|
28340
|
+
this.elementRef = elementRef;
|
|
28341
|
+
}
|
|
28342
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28343
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardHeading, isStandalone: true, selector: "px-card-heading", ngImport: i0 });
|
|
28344
|
+
}
|
|
28345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, decorators: [{
|
|
28346
|
+
type: Directive,
|
|
28347
|
+
args: [{
|
|
28348
|
+
selector: 'px-card-heading',
|
|
28349
|
+
standalone: true,
|
|
28350
|
+
}]
|
|
28351
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28183
28352
|
/**
|
|
28184
28353
|
* @description Type-only wrapper for <px-pillar>
|
|
28185
28354
|
*/
|
|
@@ -28703,175 +28872,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
28703
28872
|
type: Input,
|
|
28704
28873
|
args: ['word-break-all--desktop']
|
|
28705
28874
|
}] } });
|
|
28706
|
-
/**
|
|
28707
|
-
* @description Type-only wrapper for <px-card-actions>
|
|
28708
|
-
*/
|
|
28709
|
-
class PxCardActions {
|
|
28710
|
-
elementRef;
|
|
28711
|
-
constructor(elementRef) {
|
|
28712
|
-
this.elementRef = elementRef;
|
|
28713
|
-
}
|
|
28714
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28715
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardActions, isStandalone: true, selector: "px-card-actions", ngImport: i0 });
|
|
28716
|
-
}
|
|
28717
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, decorators: [{
|
|
28718
|
-
type: Directive,
|
|
28719
|
-
args: [{
|
|
28720
|
-
selector: 'px-card-actions',
|
|
28721
|
-
standalone: true,
|
|
28722
|
-
}]
|
|
28723
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28724
|
-
/**
|
|
28725
|
-
* @description Type-only wrapper for <px-card-container>
|
|
28726
|
-
*/
|
|
28727
|
-
class PxCardContainer {
|
|
28728
|
-
elementRef;
|
|
28729
|
-
/** Switches to a dark surface with inverted text colors. */
|
|
28730
|
-
set inverted(value) {
|
|
28731
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
28732
|
-
}
|
|
28733
|
-
get inverted() {
|
|
28734
|
-
return this.elementRef.nativeElement['inverted'];
|
|
28735
|
-
}
|
|
28736
|
-
/** URL of the card media image. */
|
|
28737
|
-
set src(value) {
|
|
28738
|
-
this.elementRef.nativeElement['src'] = value;
|
|
28739
|
-
}
|
|
28740
|
-
get src() {
|
|
28741
|
-
return this.elementRef.nativeElement['src'];
|
|
28742
|
-
}
|
|
28743
|
-
/** Where the media image is rendered. */
|
|
28744
|
-
set mediaPosition(value) {
|
|
28745
|
-
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
28746
|
-
}
|
|
28747
|
-
get mediaPosition() {
|
|
28748
|
-
return this.elementRef.nativeElement['mediaPosition'];
|
|
28749
|
-
}
|
|
28750
|
-
/** How the media image is fitted. */
|
|
28751
|
-
set mediaSize(value) {
|
|
28752
|
-
this.elementRef.nativeElement['mediaSize'] = value;
|
|
28753
|
-
}
|
|
28754
|
-
get mediaSize() {
|
|
28755
|
-
return this.elementRef.nativeElement['mediaSize'];
|
|
28756
|
-
}
|
|
28757
|
-
set mediaAltText(value) {
|
|
28758
|
-
this.elementRef.nativeElement['mediaAltText'] = value;
|
|
28759
|
-
}
|
|
28760
|
-
get mediaAltText() {
|
|
28761
|
-
return this.elementRef.nativeElement['mediaAltText'];
|
|
28762
|
-
}
|
|
28763
|
-
/** Inner content padding size. */
|
|
28764
|
-
set padding(value) {
|
|
28765
|
-
this.elementRef.nativeElement['padding'] = value;
|
|
28766
|
-
}
|
|
28767
|
-
get padding() {
|
|
28768
|
-
return this.elementRef.nativeElement['padding'];
|
|
28769
|
-
}
|
|
28770
|
-
/** Aspect ratio applied to top media (e.g. `'16:9'`, `'1:1'`, `'4:3'`). */
|
|
28771
|
-
set aspectRatio(value) {
|
|
28772
|
-
this.elementRef.nativeElement['aspectRatio'] = value;
|
|
28773
|
-
}
|
|
28774
|
-
get aspectRatio() {
|
|
28775
|
-
return this.elementRef.nativeElement['aspectRatio'];
|
|
28776
|
-
}
|
|
28777
|
-
/** Whether the card has a visible border. */
|
|
28778
|
-
set hasBorder(value) {
|
|
28779
|
-
this.elementRef.nativeElement['hasBorder'] = value;
|
|
28780
|
-
}
|
|
28781
|
-
get hasBorder() {
|
|
28782
|
-
return this.elementRef.nativeElement['hasBorder'];
|
|
28783
|
-
}
|
|
28784
|
-
/** Surface color preset. */
|
|
28785
|
-
set backgroundColor(value) {
|
|
28786
|
-
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
28787
|
-
}
|
|
28788
|
-
get backgroundColor() {
|
|
28789
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
28790
|
-
}
|
|
28791
|
-
/** URL of a full-card background image (delegated to `<px-container>`). */
|
|
28792
|
-
set backgroundImage(value) {
|
|
28793
|
-
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
28794
|
-
}
|
|
28795
|
-
get backgroundImage() {
|
|
28796
|
-
return this.elementRef.nativeElement['backgroundImage'];
|
|
28797
|
-
}
|
|
28798
|
-
set interactiveState(value) {
|
|
28799
|
-
this.elementRef.nativeElement['interactiveState'] = value;
|
|
28800
|
-
}
|
|
28801
|
-
get interactiveState() {
|
|
28802
|
-
return this.elementRef.nativeElement['interactiveState'];
|
|
28803
|
-
}
|
|
28804
|
-
/** Alt text for the media image. */
|
|
28805
|
-
set alternativeText(value) {
|
|
28806
|
-
this.elementRef.nativeElement['alternativeText'] = value;
|
|
28807
|
-
}
|
|
28808
|
-
get alternativeText() {
|
|
28809
|
-
return this.elementRef.nativeElement['alternativeText'];
|
|
28810
|
-
}
|
|
28811
|
-
constructor(elementRef) {
|
|
28812
|
-
this.elementRef = elementRef;
|
|
28813
|
-
}
|
|
28814
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28815
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardContainer, isStandalone: true, selector: "px-card-container", inputs: { inverted: "inverted", src: "src", mediaPosition: ["media-position", "mediaPosition"], mediaSize: ["media-size", "mediaSize"], mediaAltText: ["media-alt-text", "mediaAltText"], padding: "padding", aspectRatio: ["aspect-ratio", "aspectRatio"], hasBorder: ["has-border", "hasBorder"], backgroundColor: ["background-color", "backgroundColor"], backgroundImage: ["background-image", "backgroundImage"], interactiveState: ["interactive-state", "interactiveState"], alternativeText: ["alternative-text", "alternativeText"] }, ngImport: i0 });
|
|
28816
|
-
}
|
|
28817
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, decorators: [{
|
|
28818
|
-
type: Directive,
|
|
28819
|
-
args: [{
|
|
28820
|
-
selector: 'px-card-container',
|
|
28821
|
-
standalone: true,
|
|
28822
|
-
}]
|
|
28823
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
28824
|
-
type: Input
|
|
28825
|
-
}], src: [{
|
|
28826
|
-
type: Input
|
|
28827
|
-
}], mediaPosition: [{
|
|
28828
|
-
type: Input,
|
|
28829
|
-
args: ['media-position']
|
|
28830
|
-
}], mediaSize: [{
|
|
28831
|
-
type: Input,
|
|
28832
|
-
args: ['media-size']
|
|
28833
|
-
}], mediaAltText: [{
|
|
28834
|
-
type: Input,
|
|
28835
|
-
args: ['media-alt-text']
|
|
28836
|
-
}], padding: [{
|
|
28837
|
-
type: Input
|
|
28838
|
-
}], aspectRatio: [{
|
|
28839
|
-
type: Input,
|
|
28840
|
-
args: ['aspect-ratio']
|
|
28841
|
-
}], hasBorder: [{
|
|
28842
|
-
type: Input,
|
|
28843
|
-
args: ['has-border']
|
|
28844
|
-
}], backgroundColor: [{
|
|
28845
|
-
type: Input,
|
|
28846
|
-
args: ['background-color']
|
|
28847
|
-
}], backgroundImage: [{
|
|
28848
|
-
type: Input,
|
|
28849
|
-
args: ['background-image']
|
|
28850
|
-
}], interactiveState: [{
|
|
28851
|
-
type: Input,
|
|
28852
|
-
args: ['interactive-state']
|
|
28853
|
-
}], alternativeText: [{
|
|
28854
|
-
type: Input,
|
|
28855
|
-
args: ['alternative-text']
|
|
28856
|
-
}] } });
|
|
28857
|
-
/**
|
|
28858
|
-
* @description Type-only wrapper for <px-card-heading>
|
|
28859
|
-
*/
|
|
28860
|
-
class PxCardHeading {
|
|
28861
|
-
elementRef;
|
|
28862
|
-
constructor(elementRef) {
|
|
28863
|
-
this.elementRef = elementRef;
|
|
28864
|
-
}
|
|
28865
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28866
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardHeading, isStandalone: true, selector: "px-card-heading", ngImport: i0 });
|
|
28867
|
-
}
|
|
28868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, decorators: [{
|
|
28869
|
-
type: Directive,
|
|
28870
|
-
args: [{
|
|
28871
|
-
selector: 'px-card-heading',
|
|
28872
|
-
standalone: true,
|
|
28873
|
-
}]
|
|
28874
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28875
28875
|
/**
|
|
28876
28876
|
* @description Type-only wrapper for <px-price>
|
|
28877
28877
|
*/
|
|
@@ -35418,9 +35418,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
35418
35418
|
args: ['aria-label']
|
|
35419
35419
|
}] } });
|
|
35420
35420
|
/**
|
|
35421
|
-
* @description Type-only wrapper for <px-status>
|
|
35421
|
+
* @description Type-only wrapper for <px-status-card>
|
|
35422
35422
|
*/
|
|
35423
|
-
class
|
|
35423
|
+
class PxStatusCard {
|
|
35424
35424
|
elementRef;
|
|
35425
35425
|
set state(value) {
|
|
35426
35426
|
this.elementRef.nativeElement['state'] = value;
|
|
@@ -35428,47 +35428,23 @@ class PxStatus {
|
|
|
35428
35428
|
get state() {
|
|
35429
35429
|
return this.elementRef.nativeElement['state'];
|
|
35430
35430
|
}
|
|
35431
|
-
set iconOnly(value) {
|
|
35432
|
-
this.elementRef.nativeElement['iconOnly'] = value;
|
|
35433
|
-
}
|
|
35434
|
-
get iconOnly() {
|
|
35435
|
-
return this.elementRef.nativeElement['iconOnly'];
|
|
35436
|
-
}
|
|
35437
|
-
set iconOnlyMobile(value) {
|
|
35438
|
-
this.elementRef.nativeElement['iconOnlyMobile'] = value;
|
|
35439
|
-
}
|
|
35440
|
-
get iconOnlyMobile() {
|
|
35441
|
-
return this.elementRef.nativeElement['iconOnlyMobile'];
|
|
35442
|
-
}
|
|
35443
|
-
set iconOnlyTablet(value) {
|
|
35444
|
-
this.elementRef.nativeElement['iconOnlyTablet'] = value;
|
|
35445
|
-
}
|
|
35446
|
-
get iconOnlyTablet() {
|
|
35447
|
-
return this.elementRef.nativeElement['iconOnlyTablet'];
|
|
35448
|
-
}
|
|
35449
|
-
set iconOnlyLaptop(value) {
|
|
35450
|
-
this.elementRef.nativeElement['iconOnlyLaptop'] = value;
|
|
35451
|
-
}
|
|
35452
|
-
get iconOnlyLaptop() {
|
|
35453
|
-
return this.elementRef.nativeElement['iconOnlyLaptop'];
|
|
35454
|
-
}
|
|
35455
|
-
set disabled(value) {
|
|
35456
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
35457
|
-
}
|
|
35458
|
-
get disabled() {
|
|
35459
|
-
return this.elementRef.nativeElement['disabled'];
|
|
35460
|
-
}
|
|
35461
35431
|
set inverted(value) {
|
|
35462
35432
|
this.elementRef.nativeElement['inverted'] = value;
|
|
35463
35433
|
}
|
|
35464
35434
|
get inverted() {
|
|
35465
35435
|
return this.elementRef.nativeElement['inverted'];
|
|
35466
35436
|
}
|
|
35467
|
-
set
|
|
35468
|
-
this.elementRef.nativeElement['
|
|
35437
|
+
set statusIconAriaLabel(value) {
|
|
35438
|
+
this.elementRef.nativeElement['statusIconAriaLabel'] = value;
|
|
35469
35439
|
}
|
|
35470
|
-
get
|
|
35471
|
-
return this.elementRef.nativeElement['
|
|
35440
|
+
get statusIconAriaLabel() {
|
|
35441
|
+
return this.elementRef.nativeElement['statusIconAriaLabel'];
|
|
35442
|
+
}
|
|
35443
|
+
set backgroundColor(value) {
|
|
35444
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
35445
|
+
}
|
|
35446
|
+
get backgroundColor() {
|
|
35447
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
35472
35448
|
}
|
|
35473
35449
|
set grow(value) {
|
|
35474
35450
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -35782,39 +35758,32 @@ class PxStatus {
|
|
|
35782
35758
|
get wordBreakAllDesktop() {
|
|
35783
35759
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
35784
35760
|
}
|
|
35761
|
+
CLOSE_EVENT = new EventEmitter();
|
|
35785
35762
|
constructor(elementRef) {
|
|
35786
35763
|
this.elementRef = elementRef;
|
|
35764
|
+
this.elementRef.nativeElement.addEventListener('CLOSE_EVENT', (e) => {
|
|
35765
|
+
this.CLOSE_EVENT.emit(e.detail);
|
|
35766
|
+
});
|
|
35787
35767
|
}
|
|
35788
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
35789
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
35768
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStatusCard, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
35769
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxStatusCard, isStandalone: true, selector: "px-status-card", inputs: { state: "state", inverted: "inverted", statusIconAriaLabel: ["status-icon-aria-label", "statusIconAriaLabel"], backgroundColor: ["background-color", "backgroundColor"], 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: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
35790
35770
|
}
|
|
35791
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
35771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStatusCard, decorators: [{
|
|
35792
35772
|
type: Directive,
|
|
35793
35773
|
args: [{
|
|
35794
|
-
selector: 'px-status',
|
|
35774
|
+
selector: 'px-status-card',
|
|
35795
35775
|
standalone: true,
|
|
35796
35776
|
}]
|
|
35797
35777
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
35798
35778
|
type: Input
|
|
35799
|
-
}], iconOnly: [{
|
|
35800
|
-
type: Input,
|
|
35801
|
-
args: ['icon-only']
|
|
35802
|
-
}], iconOnlyMobile: [{
|
|
35803
|
-
type: Input,
|
|
35804
|
-
args: ['icon-only--mobile']
|
|
35805
|
-
}], iconOnlyTablet: [{
|
|
35806
|
-
type: Input,
|
|
35807
|
-
args: ['icon-only--tablet']
|
|
35808
|
-
}], iconOnlyLaptop: [{
|
|
35809
|
-
type: Input,
|
|
35810
|
-
args: ['icon-only--laptop']
|
|
35811
|
-
}], disabled: [{
|
|
35812
|
-
type: Input
|
|
35813
35779
|
}], inverted: [{
|
|
35814
35780
|
type: Input
|
|
35815
|
-
}],
|
|
35781
|
+
}], statusIconAriaLabel: [{
|
|
35816
35782
|
type: Input,
|
|
35817
|
-
args: ['icon-aria-label']
|
|
35783
|
+
args: ['status-icon-aria-label']
|
|
35784
|
+
}], backgroundColor: [{
|
|
35785
|
+
type: Input,
|
|
35786
|
+
args: ['background-color']
|
|
35818
35787
|
}], grow: [{
|
|
35819
35788
|
type: Input
|
|
35820
35789
|
}], growMobile: [{
|
|
@@ -35966,11 +35935,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
35966
35935
|
}], wordBreakAllDesktop: [{
|
|
35967
35936
|
type: Input,
|
|
35968
35937
|
args: ['word-break-all--desktop']
|
|
35938
|
+
}], CLOSE_EVENT: [{
|
|
35939
|
+
type: Output
|
|
35969
35940
|
}] } });
|
|
35970
35941
|
/**
|
|
35971
|
-
* @description Type-only wrapper for <px-status
|
|
35942
|
+
* @description Type-only wrapper for <px-status>
|
|
35972
35943
|
*/
|
|
35973
|
-
class
|
|
35944
|
+
class PxStatus {
|
|
35974
35945
|
elementRef;
|
|
35975
35946
|
set state(value) {
|
|
35976
35947
|
this.elementRef.nativeElement['state'] = value;
|
|
@@ -35978,23 +35949,47 @@ class PxStatusCard {
|
|
|
35978
35949
|
get state() {
|
|
35979
35950
|
return this.elementRef.nativeElement['state'];
|
|
35980
35951
|
}
|
|
35952
|
+
set iconOnly(value) {
|
|
35953
|
+
this.elementRef.nativeElement['iconOnly'] = value;
|
|
35954
|
+
}
|
|
35955
|
+
get iconOnly() {
|
|
35956
|
+
return this.elementRef.nativeElement['iconOnly'];
|
|
35957
|
+
}
|
|
35958
|
+
set iconOnlyMobile(value) {
|
|
35959
|
+
this.elementRef.nativeElement['iconOnlyMobile'] = value;
|
|
35960
|
+
}
|
|
35961
|
+
get iconOnlyMobile() {
|
|
35962
|
+
return this.elementRef.nativeElement['iconOnlyMobile'];
|
|
35963
|
+
}
|
|
35964
|
+
set iconOnlyTablet(value) {
|
|
35965
|
+
this.elementRef.nativeElement['iconOnlyTablet'] = value;
|
|
35966
|
+
}
|
|
35967
|
+
get iconOnlyTablet() {
|
|
35968
|
+
return this.elementRef.nativeElement['iconOnlyTablet'];
|
|
35969
|
+
}
|
|
35970
|
+
set iconOnlyLaptop(value) {
|
|
35971
|
+
this.elementRef.nativeElement['iconOnlyLaptop'] = value;
|
|
35972
|
+
}
|
|
35973
|
+
get iconOnlyLaptop() {
|
|
35974
|
+
return this.elementRef.nativeElement['iconOnlyLaptop'];
|
|
35975
|
+
}
|
|
35976
|
+
set disabled(value) {
|
|
35977
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
35978
|
+
}
|
|
35979
|
+
get disabled() {
|
|
35980
|
+
return this.elementRef.nativeElement['disabled'];
|
|
35981
|
+
}
|
|
35981
35982
|
set inverted(value) {
|
|
35982
35983
|
this.elementRef.nativeElement['inverted'] = value;
|
|
35983
35984
|
}
|
|
35984
35985
|
get inverted() {
|
|
35985
35986
|
return this.elementRef.nativeElement['inverted'];
|
|
35986
35987
|
}
|
|
35987
|
-
set
|
|
35988
|
-
this.elementRef.nativeElement['
|
|
35989
|
-
}
|
|
35990
|
-
get statusIconAriaLabel() {
|
|
35991
|
-
return this.elementRef.nativeElement['statusIconAriaLabel'];
|
|
35992
|
-
}
|
|
35993
|
-
set backgroundColor(value) {
|
|
35994
|
-
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
35988
|
+
set iconAriaLabel(value) {
|
|
35989
|
+
this.elementRef.nativeElement['iconAriaLabel'] = value;
|
|
35995
35990
|
}
|
|
35996
|
-
get
|
|
35997
|
-
return this.elementRef.nativeElement['
|
|
35991
|
+
get iconAriaLabel() {
|
|
35992
|
+
return this.elementRef.nativeElement['iconAriaLabel'];
|
|
35998
35993
|
}
|
|
35999
35994
|
set grow(value) {
|
|
36000
35995
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -36308,32 +36303,39 @@ class PxStatusCard {
|
|
|
36308
36303
|
get wordBreakAllDesktop() {
|
|
36309
36304
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
36310
36305
|
}
|
|
36311
|
-
CLOSE_EVENT = new EventEmitter();
|
|
36312
36306
|
constructor(elementRef) {
|
|
36313
36307
|
this.elementRef = elementRef;
|
|
36314
|
-
this.elementRef.nativeElement.addEventListener('CLOSE_EVENT', (e) => {
|
|
36315
|
-
this.CLOSE_EVENT.emit(e.detail);
|
|
36316
|
-
});
|
|
36317
36308
|
}
|
|
36318
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
36319
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
36309
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStatus, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
36310
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxStatus, isStandalone: true, selector: "px-status", inputs: { state: "state", iconOnly: ["icon-only", "iconOnly"], iconOnlyMobile: ["icon-only--mobile", "iconOnlyMobile"], iconOnlyTablet: ["icon-only--tablet", "iconOnlyTablet"], iconOnlyLaptop: ["icon-only--laptop", "iconOnlyLaptop"], disabled: "disabled", inverted: "inverted", iconAriaLabel: ["icon-aria-label", "iconAriaLabel"], 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 });
|
|
36320
36311
|
}
|
|
36321
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
36312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxStatus, decorators: [{
|
|
36322
36313
|
type: Directive,
|
|
36323
36314
|
args: [{
|
|
36324
|
-
selector: 'px-status
|
|
36315
|
+
selector: 'px-status',
|
|
36325
36316
|
standalone: true,
|
|
36326
36317
|
}]
|
|
36327
36318
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
36328
36319
|
type: Input
|
|
36320
|
+
}], iconOnly: [{
|
|
36321
|
+
type: Input,
|
|
36322
|
+
args: ['icon-only']
|
|
36323
|
+
}], iconOnlyMobile: [{
|
|
36324
|
+
type: Input,
|
|
36325
|
+
args: ['icon-only--mobile']
|
|
36326
|
+
}], iconOnlyTablet: [{
|
|
36327
|
+
type: Input,
|
|
36328
|
+
args: ['icon-only--tablet']
|
|
36329
|
+
}], iconOnlyLaptop: [{
|
|
36330
|
+
type: Input,
|
|
36331
|
+
args: ['icon-only--laptop']
|
|
36332
|
+
}], disabled: [{
|
|
36333
|
+
type: Input
|
|
36329
36334
|
}], inverted: [{
|
|
36330
36335
|
type: Input
|
|
36331
|
-
}],
|
|
36332
|
-
type: Input,
|
|
36333
|
-
args: ['status-icon-aria-label']
|
|
36334
|
-
}], backgroundColor: [{
|
|
36336
|
+
}], iconAriaLabel: [{
|
|
36335
36337
|
type: Input,
|
|
36336
|
-
args: ['
|
|
36338
|
+
args: ['icon-aria-label']
|
|
36337
36339
|
}], grow: [{
|
|
36338
36340
|
type: Input
|
|
36339
36341
|
}], growMobile: [{
|
|
@@ -36485,8 +36487,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
36485
36487
|
}], wordBreakAllDesktop: [{
|
|
36486
36488
|
type: Input,
|
|
36487
36489
|
args: ['word-break-all--desktop']
|
|
36488
|
-
}], CLOSE_EVENT: [{
|
|
36489
|
-
type: Output
|
|
36490
36490
|
}] } });
|
|
36491
36491
|
/**
|
|
36492
36492
|
* @description Type-only wrapper for <px-theme-switcher>
|
|
@@ -41913,7 +41913,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41913
41913
|
}] } });
|
|
41914
41914
|
class Lavender {
|
|
41915
41915
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41916
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxCodeInput, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP,
|
|
41916
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxCodeInput, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxCardActions, PxCardContainer, PxCardHeading, PxPillar, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatusCard, PxStatus, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxCodeInput, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxCardActions, PxCardContainer, PxCardHeading, PxPillar, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatusCard, PxStatus, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41917
41917
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41918
41918
|
}
|
|
41919
41919
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41974,10 +41974,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41974
41974
|
PxListItem,
|
|
41975
41975
|
PxModal,
|
|
41976
41976
|
PxP,
|
|
41977
|
-
PxPillar,
|
|
41978
41977
|
PxCardActions,
|
|
41979
41978
|
PxCardContainer,
|
|
41980
41979
|
PxCardHeading,
|
|
41980
|
+
PxPillar,
|
|
41981
41981
|
PxPrice,
|
|
41982
41982
|
PxRadio,
|
|
41983
41983
|
PxRadioBase,
|
|
@@ -41991,8 +41991,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41991
41991
|
PxSkeleton,
|
|
41992
41992
|
PxSpan,
|
|
41993
41993
|
PxSpinner,
|
|
41994
|
-
PxStatus,
|
|
41995
41994
|
PxStatusCard,
|
|
41995
|
+
PxStatus,
|
|
41996
41996
|
PxThemeSwitcher,
|
|
41997
41997
|
PxSwitch,
|
|
41998
41998
|
PxTable,
|
|
@@ -42077,10 +42077,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
42077
42077
|
PxListItem,
|
|
42078
42078
|
PxModal,
|
|
42079
42079
|
PxP,
|
|
42080
|
-
PxPillar,
|
|
42081
42080
|
PxCardActions,
|
|
42082
42081
|
PxCardContainer,
|
|
42083
42082
|
PxCardHeading,
|
|
42083
|
+
PxPillar,
|
|
42084
42084
|
PxPrice,
|
|
42085
42085
|
PxRadio,
|
|
42086
42086
|
PxRadioBase,
|
|
@@ -42094,8 +42094,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
42094
42094
|
PxSkeleton,
|
|
42095
42095
|
PxSpan,
|
|
42096
42096
|
PxSpinner,
|
|
42097
|
-
PxStatus,
|
|
42098
42097
|
PxStatusCard,
|
|
42098
|
+
PxStatus,
|
|
42099
42099
|
PxThemeSwitcher,
|
|
42100
42100
|
PxSwitch,
|
|
42101
42101
|
PxTable,
|