@proximus/lavender-angular 2.0.0-alpha.174 → 2.0.0-alpha.175
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/fesm2022/proximus-lavender-angular.mjs +309 -309
- package/fesm2022/proximus-lavender-angular.mjs.map +1 -1
- package/lavender.directive.d.ts +105 -105
- package/package.json +1 -1
|
@@ -28147,6 +28147,175 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
28147
28147
|
type: Input,
|
|
28148
28148
|
args: ['word-break-all--desktop']
|
|
28149
28149
|
}] } });
|
|
28150
|
+
/**
|
|
28151
|
+
* @description Type-only wrapper for <px-card-actions>
|
|
28152
|
+
*/
|
|
28153
|
+
class PxCardActions {
|
|
28154
|
+
elementRef;
|
|
28155
|
+
constructor(elementRef) {
|
|
28156
|
+
this.elementRef = elementRef;
|
|
28157
|
+
}
|
|
28158
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28159
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardActions, isStandalone: true, selector: "px-card-actions", ngImport: i0 });
|
|
28160
|
+
}
|
|
28161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, decorators: [{
|
|
28162
|
+
type: Directive,
|
|
28163
|
+
args: [{
|
|
28164
|
+
selector: 'px-card-actions',
|
|
28165
|
+
standalone: true,
|
|
28166
|
+
}]
|
|
28167
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28168
|
+
/**
|
|
28169
|
+
* @description Type-only wrapper for <px-card-container>
|
|
28170
|
+
*/
|
|
28171
|
+
class PxCardContainer {
|
|
28172
|
+
elementRef;
|
|
28173
|
+
/** Switches to a dark surface with inverted text colors. */
|
|
28174
|
+
set inverted(value) {
|
|
28175
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
28176
|
+
}
|
|
28177
|
+
get inverted() {
|
|
28178
|
+
return this.elementRef.nativeElement['inverted'];
|
|
28179
|
+
}
|
|
28180
|
+
/** URL of the card media image. */
|
|
28181
|
+
set src(value) {
|
|
28182
|
+
this.elementRef.nativeElement['src'] = value;
|
|
28183
|
+
}
|
|
28184
|
+
get src() {
|
|
28185
|
+
return this.elementRef.nativeElement['src'];
|
|
28186
|
+
}
|
|
28187
|
+
/** Where the media image is rendered. */
|
|
28188
|
+
set mediaPosition(value) {
|
|
28189
|
+
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
28190
|
+
}
|
|
28191
|
+
get mediaPosition() {
|
|
28192
|
+
return this.elementRef.nativeElement['mediaPosition'];
|
|
28193
|
+
}
|
|
28194
|
+
/** How the media image is fitted. */
|
|
28195
|
+
set mediaSize(value) {
|
|
28196
|
+
this.elementRef.nativeElement['mediaSize'] = value;
|
|
28197
|
+
}
|
|
28198
|
+
get mediaSize() {
|
|
28199
|
+
return this.elementRef.nativeElement['mediaSize'];
|
|
28200
|
+
}
|
|
28201
|
+
set mediaAltText(value) {
|
|
28202
|
+
this.elementRef.nativeElement['mediaAltText'] = value;
|
|
28203
|
+
}
|
|
28204
|
+
get mediaAltText() {
|
|
28205
|
+
return this.elementRef.nativeElement['mediaAltText'];
|
|
28206
|
+
}
|
|
28207
|
+
/** Inner content padding size. */
|
|
28208
|
+
set padding(value) {
|
|
28209
|
+
this.elementRef.nativeElement['padding'] = value;
|
|
28210
|
+
}
|
|
28211
|
+
get padding() {
|
|
28212
|
+
return this.elementRef.nativeElement['padding'];
|
|
28213
|
+
}
|
|
28214
|
+
/** Aspect ratio applied to top media (e.g. `'16:9'`, `'1:1'`, `'4:3'`). */
|
|
28215
|
+
set aspectRatio(value) {
|
|
28216
|
+
this.elementRef.nativeElement['aspectRatio'] = value;
|
|
28217
|
+
}
|
|
28218
|
+
get aspectRatio() {
|
|
28219
|
+
return this.elementRef.nativeElement['aspectRatio'];
|
|
28220
|
+
}
|
|
28221
|
+
/** Whether the card has a visible border. */
|
|
28222
|
+
set hasBorder(value) {
|
|
28223
|
+
this.elementRef.nativeElement['hasBorder'] = value;
|
|
28224
|
+
}
|
|
28225
|
+
get hasBorder() {
|
|
28226
|
+
return this.elementRef.nativeElement['hasBorder'];
|
|
28227
|
+
}
|
|
28228
|
+
/** Surface color preset. */
|
|
28229
|
+
set backgroundColor(value) {
|
|
28230
|
+
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
28231
|
+
}
|
|
28232
|
+
get backgroundColor() {
|
|
28233
|
+
return this.elementRef.nativeElement['backgroundColor'];
|
|
28234
|
+
}
|
|
28235
|
+
/** URL of a full-card background image (delegated to `<px-container>`). */
|
|
28236
|
+
set backgroundImage(value) {
|
|
28237
|
+
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
28238
|
+
}
|
|
28239
|
+
get backgroundImage() {
|
|
28240
|
+
return this.elementRef.nativeElement['backgroundImage'];
|
|
28241
|
+
}
|
|
28242
|
+
set interactiveState(value) {
|
|
28243
|
+
this.elementRef.nativeElement['interactiveState'] = value;
|
|
28244
|
+
}
|
|
28245
|
+
get interactiveState() {
|
|
28246
|
+
return this.elementRef.nativeElement['interactiveState'];
|
|
28247
|
+
}
|
|
28248
|
+
/** Alt text for the media image. */
|
|
28249
|
+
set alternativeText(value) {
|
|
28250
|
+
this.elementRef.nativeElement['alternativeText'] = value;
|
|
28251
|
+
}
|
|
28252
|
+
get alternativeText() {
|
|
28253
|
+
return this.elementRef.nativeElement['alternativeText'];
|
|
28254
|
+
}
|
|
28255
|
+
constructor(elementRef) {
|
|
28256
|
+
this.elementRef = elementRef;
|
|
28257
|
+
}
|
|
28258
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28259
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardContainer, isStandalone: true, selector: "px-card-container", inputs: { inverted: "inverted", src: "src", mediaPosition: ["media-position", "mediaPosition"], mediaSize: ["media-size", "mediaSize"], mediaAltText: ["media-alt-text", "mediaAltText"], padding: "padding", aspectRatio: ["aspect-ratio", "aspectRatio"], hasBorder: ["has-border", "hasBorder"], backgroundColor: ["background-color", "backgroundColor"], backgroundImage: ["background-image", "backgroundImage"], interactiveState: ["interactive-state", "interactiveState"], alternativeText: ["alternative-text", "alternativeText"] }, ngImport: i0 });
|
|
28260
|
+
}
|
|
28261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, decorators: [{
|
|
28262
|
+
type: Directive,
|
|
28263
|
+
args: [{
|
|
28264
|
+
selector: 'px-card-container',
|
|
28265
|
+
standalone: true,
|
|
28266
|
+
}]
|
|
28267
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
28268
|
+
type: Input
|
|
28269
|
+
}], src: [{
|
|
28270
|
+
type: Input
|
|
28271
|
+
}], mediaPosition: [{
|
|
28272
|
+
type: Input,
|
|
28273
|
+
args: ['media-position']
|
|
28274
|
+
}], mediaSize: [{
|
|
28275
|
+
type: Input,
|
|
28276
|
+
args: ['media-size']
|
|
28277
|
+
}], mediaAltText: [{
|
|
28278
|
+
type: Input,
|
|
28279
|
+
args: ['media-alt-text']
|
|
28280
|
+
}], padding: [{
|
|
28281
|
+
type: Input
|
|
28282
|
+
}], aspectRatio: [{
|
|
28283
|
+
type: Input,
|
|
28284
|
+
args: ['aspect-ratio']
|
|
28285
|
+
}], hasBorder: [{
|
|
28286
|
+
type: Input,
|
|
28287
|
+
args: ['has-border']
|
|
28288
|
+
}], backgroundColor: [{
|
|
28289
|
+
type: Input,
|
|
28290
|
+
args: ['background-color']
|
|
28291
|
+
}], backgroundImage: [{
|
|
28292
|
+
type: Input,
|
|
28293
|
+
args: ['background-image']
|
|
28294
|
+
}], interactiveState: [{
|
|
28295
|
+
type: Input,
|
|
28296
|
+
args: ['interactive-state']
|
|
28297
|
+
}], alternativeText: [{
|
|
28298
|
+
type: Input,
|
|
28299
|
+
args: ['alternative-text']
|
|
28300
|
+
}] } });
|
|
28301
|
+
/**
|
|
28302
|
+
* @description Type-only wrapper for <px-card-heading>
|
|
28303
|
+
*/
|
|
28304
|
+
class PxCardHeading {
|
|
28305
|
+
elementRef;
|
|
28306
|
+
constructor(elementRef) {
|
|
28307
|
+
this.elementRef = elementRef;
|
|
28308
|
+
}
|
|
28309
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28310
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardHeading, isStandalone: true, selector: "px-card-heading", ngImport: i0 });
|
|
28311
|
+
}
|
|
28312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, decorators: [{
|
|
28313
|
+
type: Directive,
|
|
28314
|
+
args: [{
|
|
28315
|
+
selector: 'px-card-heading',
|
|
28316
|
+
standalone: true,
|
|
28317
|
+
}]
|
|
28318
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28150
28319
|
/**
|
|
28151
28320
|
* @description Type-only wrapper for <px-price>
|
|
28152
28321
|
*/
|
|
@@ -28652,175 +28821,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
28652
28821
|
type: Input,
|
|
28653
28822
|
args: ['word-break-all--desktop']
|
|
28654
28823
|
}] } });
|
|
28655
|
-
/**
|
|
28656
|
-
* @description Type-only wrapper for <px-card-actions>
|
|
28657
|
-
*/
|
|
28658
|
-
class PxCardActions {
|
|
28659
|
-
elementRef;
|
|
28660
|
-
constructor(elementRef) {
|
|
28661
|
-
this.elementRef = elementRef;
|
|
28662
|
-
}
|
|
28663
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28664
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardActions, isStandalone: true, selector: "px-card-actions", ngImport: i0 });
|
|
28665
|
-
}
|
|
28666
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardActions, decorators: [{
|
|
28667
|
-
type: Directive,
|
|
28668
|
-
args: [{
|
|
28669
|
-
selector: 'px-card-actions',
|
|
28670
|
-
standalone: true,
|
|
28671
|
-
}]
|
|
28672
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28673
|
-
/**
|
|
28674
|
-
* @description Type-only wrapper for <px-card-container>
|
|
28675
|
-
*/
|
|
28676
|
-
class PxCardContainer {
|
|
28677
|
-
elementRef;
|
|
28678
|
-
/** Switches to a dark surface with inverted text colors. */
|
|
28679
|
-
set inverted(value) {
|
|
28680
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
28681
|
-
}
|
|
28682
|
-
get inverted() {
|
|
28683
|
-
return this.elementRef.nativeElement['inverted'];
|
|
28684
|
-
}
|
|
28685
|
-
/** URL of the card media image. */
|
|
28686
|
-
set src(value) {
|
|
28687
|
-
this.elementRef.nativeElement['src'] = value;
|
|
28688
|
-
}
|
|
28689
|
-
get src() {
|
|
28690
|
-
return this.elementRef.nativeElement['src'];
|
|
28691
|
-
}
|
|
28692
|
-
/** Where the media image is rendered. */
|
|
28693
|
-
set mediaPosition(value) {
|
|
28694
|
-
this.elementRef.nativeElement['mediaPosition'] = value;
|
|
28695
|
-
}
|
|
28696
|
-
get mediaPosition() {
|
|
28697
|
-
return this.elementRef.nativeElement['mediaPosition'];
|
|
28698
|
-
}
|
|
28699
|
-
/** How the media image is fitted. */
|
|
28700
|
-
set mediaSize(value) {
|
|
28701
|
-
this.elementRef.nativeElement['mediaSize'] = value;
|
|
28702
|
-
}
|
|
28703
|
-
get mediaSize() {
|
|
28704
|
-
return this.elementRef.nativeElement['mediaSize'];
|
|
28705
|
-
}
|
|
28706
|
-
set mediaAltText(value) {
|
|
28707
|
-
this.elementRef.nativeElement['mediaAltText'] = value;
|
|
28708
|
-
}
|
|
28709
|
-
get mediaAltText() {
|
|
28710
|
-
return this.elementRef.nativeElement['mediaAltText'];
|
|
28711
|
-
}
|
|
28712
|
-
/** Inner content padding size. */
|
|
28713
|
-
set padding(value) {
|
|
28714
|
-
this.elementRef.nativeElement['padding'] = value;
|
|
28715
|
-
}
|
|
28716
|
-
get padding() {
|
|
28717
|
-
return this.elementRef.nativeElement['padding'];
|
|
28718
|
-
}
|
|
28719
|
-
/** Aspect ratio applied to top media (e.g. `'16:9'`, `'1:1'`, `'4:3'`). */
|
|
28720
|
-
set aspectRatio(value) {
|
|
28721
|
-
this.elementRef.nativeElement['aspectRatio'] = value;
|
|
28722
|
-
}
|
|
28723
|
-
get aspectRatio() {
|
|
28724
|
-
return this.elementRef.nativeElement['aspectRatio'];
|
|
28725
|
-
}
|
|
28726
|
-
/** Whether the card has a visible border. */
|
|
28727
|
-
set hasBorder(value) {
|
|
28728
|
-
this.elementRef.nativeElement['hasBorder'] = value;
|
|
28729
|
-
}
|
|
28730
|
-
get hasBorder() {
|
|
28731
|
-
return this.elementRef.nativeElement['hasBorder'];
|
|
28732
|
-
}
|
|
28733
|
-
/** Surface color preset. */
|
|
28734
|
-
set backgroundColor(value) {
|
|
28735
|
-
this.elementRef.nativeElement['backgroundColor'] = value;
|
|
28736
|
-
}
|
|
28737
|
-
get backgroundColor() {
|
|
28738
|
-
return this.elementRef.nativeElement['backgroundColor'];
|
|
28739
|
-
}
|
|
28740
|
-
/** URL of a full-card background image (delegated to `<px-container>`). */
|
|
28741
|
-
set backgroundImage(value) {
|
|
28742
|
-
this.elementRef.nativeElement['backgroundImage'] = value;
|
|
28743
|
-
}
|
|
28744
|
-
get backgroundImage() {
|
|
28745
|
-
return this.elementRef.nativeElement['backgroundImage'];
|
|
28746
|
-
}
|
|
28747
|
-
set interactiveState(value) {
|
|
28748
|
-
this.elementRef.nativeElement['interactiveState'] = value;
|
|
28749
|
-
}
|
|
28750
|
-
get interactiveState() {
|
|
28751
|
-
return this.elementRef.nativeElement['interactiveState'];
|
|
28752
|
-
}
|
|
28753
|
-
/** Alt text for the media image. */
|
|
28754
|
-
set alternativeText(value) {
|
|
28755
|
-
this.elementRef.nativeElement['alternativeText'] = value;
|
|
28756
|
-
}
|
|
28757
|
-
get alternativeText() {
|
|
28758
|
-
return this.elementRef.nativeElement['alternativeText'];
|
|
28759
|
-
}
|
|
28760
|
-
constructor(elementRef) {
|
|
28761
|
-
this.elementRef = elementRef;
|
|
28762
|
-
}
|
|
28763
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28764
|
-
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 });
|
|
28765
|
-
}
|
|
28766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardContainer, decorators: [{
|
|
28767
|
-
type: Directive,
|
|
28768
|
-
args: [{
|
|
28769
|
-
selector: 'px-card-container',
|
|
28770
|
-
standalone: true,
|
|
28771
|
-
}]
|
|
28772
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
28773
|
-
type: Input
|
|
28774
|
-
}], src: [{
|
|
28775
|
-
type: Input
|
|
28776
|
-
}], mediaPosition: [{
|
|
28777
|
-
type: Input,
|
|
28778
|
-
args: ['media-position']
|
|
28779
|
-
}], mediaSize: [{
|
|
28780
|
-
type: Input,
|
|
28781
|
-
args: ['media-size']
|
|
28782
|
-
}], mediaAltText: [{
|
|
28783
|
-
type: Input,
|
|
28784
|
-
args: ['media-alt-text']
|
|
28785
|
-
}], padding: [{
|
|
28786
|
-
type: Input
|
|
28787
|
-
}], aspectRatio: [{
|
|
28788
|
-
type: Input,
|
|
28789
|
-
args: ['aspect-ratio']
|
|
28790
|
-
}], hasBorder: [{
|
|
28791
|
-
type: Input,
|
|
28792
|
-
args: ['has-border']
|
|
28793
|
-
}], backgroundColor: [{
|
|
28794
|
-
type: Input,
|
|
28795
|
-
args: ['background-color']
|
|
28796
|
-
}], backgroundImage: [{
|
|
28797
|
-
type: Input,
|
|
28798
|
-
args: ['background-image']
|
|
28799
|
-
}], interactiveState: [{
|
|
28800
|
-
type: Input,
|
|
28801
|
-
args: ['interactive-state']
|
|
28802
|
-
}], alternativeText: [{
|
|
28803
|
-
type: Input,
|
|
28804
|
-
args: ['alternative-text']
|
|
28805
|
-
}] } });
|
|
28806
|
-
/**
|
|
28807
|
-
* @description Type-only wrapper for <px-card-heading>
|
|
28808
|
-
*/
|
|
28809
|
-
class PxCardHeading {
|
|
28810
|
-
elementRef;
|
|
28811
|
-
constructor(elementRef) {
|
|
28812
|
-
this.elementRef = elementRef;
|
|
28813
|
-
}
|
|
28814
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28815
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCardHeading, isStandalone: true, selector: "px-card-heading", ngImport: i0 });
|
|
28816
|
-
}
|
|
28817
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCardHeading, decorators: [{
|
|
28818
|
-
type: Directive,
|
|
28819
|
-
args: [{
|
|
28820
|
-
selector: 'px-card-heading',
|
|
28821
|
-
standalone: true,
|
|
28822
|
-
}]
|
|
28823
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28824
28824
|
/**
|
|
28825
28825
|
* @description Type-only wrapper for <px-radio>
|
|
28826
28826
|
*/
|
|
@@ -31634,22 +31634,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
31634
31634
|
args: ['word-break-all--desktop']
|
|
31635
31635
|
}] } });
|
|
31636
31636
|
/**
|
|
31637
|
-
* @description Type-only wrapper for <px-
|
|
31637
|
+
* @description Type-only wrapper for <px-separator>
|
|
31638
31638
|
*/
|
|
31639
|
-
class
|
|
31639
|
+
class PxSeparator {
|
|
31640
31640
|
elementRef;
|
|
31641
|
+
set direction(value) {
|
|
31642
|
+
this.elementRef.nativeElement['direction'] = value;
|
|
31643
|
+
}
|
|
31644
|
+
get direction() {
|
|
31645
|
+
return this.elementRef.nativeElement['direction'];
|
|
31646
|
+
}
|
|
31647
|
+
set directionMobile(value) {
|
|
31648
|
+
this.elementRef.nativeElement['directionMobile'] = value;
|
|
31649
|
+
}
|
|
31650
|
+
get directionMobile() {
|
|
31651
|
+
return this.elementRef.nativeElement['directionMobile'];
|
|
31652
|
+
}
|
|
31653
|
+
set directionTablet(value) {
|
|
31654
|
+
this.elementRef.nativeElement['directionTablet'] = value;
|
|
31655
|
+
}
|
|
31656
|
+
get directionTablet() {
|
|
31657
|
+
return this.elementRef.nativeElement['directionTablet'];
|
|
31658
|
+
}
|
|
31659
|
+
set directionLaptop(value) {
|
|
31660
|
+
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
31661
|
+
}
|
|
31662
|
+
get directionLaptop() {
|
|
31663
|
+
return this.elementRef.nativeElement['directionLaptop'];
|
|
31664
|
+
}
|
|
31665
|
+
set directionDesktop(value) {
|
|
31666
|
+
this.elementRef.nativeElement['directionDesktop'] = value;
|
|
31667
|
+
}
|
|
31668
|
+
get directionDesktop() {
|
|
31669
|
+
return this.elementRef.nativeElement['directionDesktop'];
|
|
31670
|
+
}
|
|
31671
|
+
set size(value) {
|
|
31672
|
+
this.elementRef.nativeElement['size'] = value;
|
|
31673
|
+
}
|
|
31674
|
+
get size() {
|
|
31675
|
+
return this.elementRef.nativeElement['size'];
|
|
31676
|
+
}
|
|
31677
|
+
set color(value) {
|
|
31678
|
+
this.elementRef.nativeElement['color'] = value;
|
|
31679
|
+
}
|
|
31680
|
+
get color() {
|
|
31681
|
+
return this.elementRef.nativeElement['color'];
|
|
31682
|
+
}
|
|
31641
31683
|
set inverted(value) {
|
|
31642
31684
|
this.elementRef.nativeElement['inverted'] = value;
|
|
31643
31685
|
}
|
|
31644
31686
|
get inverted() {
|
|
31645
31687
|
return this.elementRef.nativeElement['inverted'];
|
|
31646
31688
|
}
|
|
31647
|
-
set hideFooter(value) {
|
|
31648
|
-
this.elementRef.nativeElement['hideFooter'] = value;
|
|
31649
|
-
}
|
|
31650
|
-
get hideFooter() {
|
|
31651
|
-
return this.elementRef.nativeElement['hideFooter'];
|
|
31652
|
-
}
|
|
31653
31689
|
set grow(value) {
|
|
31654
31690
|
this.elementRef.nativeElement['grow'] = value;
|
|
31655
31691
|
}
|
|
@@ -31965,20 +32001,35 @@ class PxSelectableBox {
|
|
|
31965
32001
|
constructor(elementRef) {
|
|
31966
32002
|
this.elementRef = elementRef;
|
|
31967
32003
|
}
|
|
31968
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
31969
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
32004
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSeparator, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
32005
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSeparator, isStandalone: true, selector: "px-separator", inputs: { direction: "direction", directionMobile: ["direction--mobile", "directionMobile"], directionTablet: ["direction--tablet", "directionTablet"], directionLaptop: ["direction--laptop", "directionLaptop"], directionDesktop: ["direction--desktop", "directionDesktop"], size: "size", color: "color", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
31970
32006
|
}
|
|
31971
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
32007
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSeparator, decorators: [{
|
|
31972
32008
|
type: Directive,
|
|
31973
32009
|
args: [{
|
|
31974
|
-
selector: 'px-
|
|
32010
|
+
selector: 'px-separator',
|
|
31975
32011
|
standalone: true,
|
|
31976
32012
|
}]
|
|
31977
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
32013
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { direction: [{
|
|
31978
32014
|
type: Input
|
|
31979
|
-
}],
|
|
32015
|
+
}], directionMobile: [{
|
|
31980
32016
|
type: Input,
|
|
31981
|
-
args: ['
|
|
32017
|
+
args: ['direction--mobile']
|
|
32018
|
+
}], directionTablet: [{
|
|
32019
|
+
type: Input,
|
|
32020
|
+
args: ['direction--tablet']
|
|
32021
|
+
}], directionLaptop: [{
|
|
32022
|
+
type: Input,
|
|
32023
|
+
args: ['direction--laptop']
|
|
32024
|
+
}], directionDesktop: [{
|
|
32025
|
+
type: Input,
|
|
32026
|
+
args: ['direction--desktop']
|
|
32027
|
+
}], size: [{
|
|
32028
|
+
type: Input
|
|
32029
|
+
}], color: [{
|
|
32030
|
+
type: Input
|
|
32031
|
+
}], inverted: [{
|
|
32032
|
+
type: Input
|
|
31982
32033
|
}], grow: [{
|
|
31983
32034
|
type: Input
|
|
31984
32035
|
}], growMobile: [{
|
|
@@ -32132,9 +32183,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
32132
32183
|
args: ['word-break-all--desktop']
|
|
32133
32184
|
}] } });
|
|
32134
32185
|
/**
|
|
32135
|
-
* @description Type-only wrapper for <px-selectable-box
|
|
32186
|
+
* @description Type-only wrapper for <px-selectable-box>
|
|
32136
32187
|
*/
|
|
32137
|
-
class
|
|
32188
|
+
class PxSelectableBox {
|
|
32138
32189
|
elementRef;
|
|
32139
32190
|
set inverted(value) {
|
|
32140
32191
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -32142,29 +32193,11 @@ class PxSelectableBoxCheckbox {
|
|
|
32142
32193
|
get inverted() {
|
|
32143
32194
|
return this.elementRef.nativeElement['inverted'];
|
|
32144
32195
|
}
|
|
32145
|
-
set
|
|
32146
|
-
this.elementRef.nativeElement['
|
|
32147
|
-
}
|
|
32148
|
-
get name() {
|
|
32149
|
-
return this.elementRef.nativeElement['name'];
|
|
32150
|
-
}
|
|
32151
|
-
set value(value) {
|
|
32152
|
-
this.elementRef.nativeElement['value'] = value;
|
|
32153
|
-
}
|
|
32154
|
-
get value() {
|
|
32155
|
-
return this.elementRef.nativeElement['value'];
|
|
32156
|
-
}
|
|
32157
|
-
set checked(value) {
|
|
32158
|
-
this.elementRef.nativeElement['checked'] = value;
|
|
32159
|
-
}
|
|
32160
|
-
get checked() {
|
|
32161
|
-
return this.elementRef.nativeElement['checked'];
|
|
32162
|
-
}
|
|
32163
|
-
set disabled(value) {
|
|
32164
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
32196
|
+
set hideFooter(value) {
|
|
32197
|
+
this.elementRef.nativeElement['hideFooter'] = value;
|
|
32165
32198
|
}
|
|
32166
|
-
get
|
|
32167
|
-
return this.elementRef.nativeElement['
|
|
32199
|
+
get hideFooter() {
|
|
32200
|
+
return this.elementRef.nativeElement['hideFooter'];
|
|
32168
32201
|
}
|
|
32169
32202
|
set grow(value) {
|
|
32170
32203
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -32478,32 +32511,23 @@ class PxSelectableBoxCheckbox {
|
|
|
32478
32511
|
get wordBreakAllDesktop() {
|
|
32479
32512
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
32480
32513
|
}
|
|
32481
|
-
change = new EventEmitter();
|
|
32482
32514
|
constructor(elementRef) {
|
|
32483
32515
|
this.elementRef = elementRef;
|
|
32484
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
32485
|
-
this.change.emit(e.detail);
|
|
32486
|
-
});
|
|
32487
32516
|
}
|
|
32488
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
32489
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
32517
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
32518
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBox, isStandalone: true, selector: "px-selectable-box", inputs: { inverted: "inverted", hideFooter: ["hide-footer", "hideFooter"], 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 });
|
|
32490
32519
|
}
|
|
32491
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
32520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBox, decorators: [{
|
|
32492
32521
|
type: Directive,
|
|
32493
32522
|
args: [{
|
|
32494
|
-
selector: 'px-selectable-box
|
|
32523
|
+
selector: 'px-selectable-box',
|
|
32495
32524
|
standalone: true,
|
|
32496
32525
|
}]
|
|
32497
32526
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
32498
32527
|
type: Input
|
|
32499
|
-
}],
|
|
32500
|
-
type: Input
|
|
32501
|
-
|
|
32502
|
-
type: Input
|
|
32503
|
-
}], checked: [{
|
|
32504
|
-
type: Input
|
|
32505
|
-
}], disabled: [{
|
|
32506
|
-
type: Input
|
|
32528
|
+
}], hideFooter: [{
|
|
32529
|
+
type: Input,
|
|
32530
|
+
args: ['hide-footer']
|
|
32507
32531
|
}], grow: [{
|
|
32508
32532
|
type: Input
|
|
32509
32533
|
}], growMobile: [{
|
|
@@ -32655,13 +32679,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
32655
32679
|
}], wordBreakAllDesktop: [{
|
|
32656
32680
|
type: Input,
|
|
32657
32681
|
args: ['word-break-all--desktop']
|
|
32658
|
-
}], change: [{
|
|
32659
|
-
type: Output
|
|
32660
32682
|
}] } });
|
|
32661
32683
|
/**
|
|
32662
|
-
* @description Type-only wrapper for <px-selectable-box-
|
|
32684
|
+
* @description Type-only wrapper for <px-selectable-box-checkbox>
|
|
32663
32685
|
*/
|
|
32664
|
-
class
|
|
32686
|
+
class PxSelectableBoxCheckbox {
|
|
32665
32687
|
elementRef;
|
|
32666
32688
|
set inverted(value) {
|
|
32667
32689
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -33005,28 +33027,20 @@ class PxSelectableBoxRadio {
|
|
|
33005
33027
|
get wordBreakAllDesktop() {
|
|
33006
33028
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
33007
33029
|
}
|
|
33008
|
-
SELECTABLE_BOX_RADIO_CONNECTED_EVENT = new EventEmitter();
|
|
33009
|
-
SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT = new EventEmitter();
|
|
33010
33030
|
change = new EventEmitter();
|
|
33011
33031
|
constructor(elementRef) {
|
|
33012
33032
|
this.elementRef = elementRef;
|
|
33013
|
-
this.elementRef.nativeElement.addEventListener('SELECTABLE_BOX_RADIO_CONNECTED_EVENT', (e) => {
|
|
33014
|
-
this.SELECTABLE_BOX_RADIO_CONNECTED_EVENT.emit(e.detail);
|
|
33015
|
-
});
|
|
33016
|
-
this.elementRef.nativeElement.addEventListener('SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT', (e) => {
|
|
33017
|
-
this.SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT.emit(e.detail);
|
|
33018
|
-
});
|
|
33019
33033
|
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
33020
33034
|
this.change.emit(e.detail);
|
|
33021
33035
|
});
|
|
33022
33036
|
}
|
|
33023
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
33024
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
33037
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxCheckbox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33038
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxCheckbox, isStandalone: true, selector: "px-selectable-box-checkbox", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", 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 });
|
|
33025
33039
|
}
|
|
33026
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
33040
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxCheckbox, decorators: [{
|
|
33027
33041
|
type: Directive,
|
|
33028
33042
|
args: [{
|
|
33029
|
-
selector: 'px-selectable-box-
|
|
33043
|
+
selector: 'px-selectable-box-checkbox',
|
|
33030
33044
|
standalone: true,
|
|
33031
33045
|
}]
|
|
33032
33046
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
@@ -33190,65 +33204,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
33190
33204
|
}], wordBreakAllDesktop: [{
|
|
33191
33205
|
type: Input,
|
|
33192
33206
|
args: ['word-break-all--desktop']
|
|
33193
|
-
}], SELECTABLE_BOX_RADIO_CONNECTED_EVENT: [{
|
|
33194
|
-
type: Output
|
|
33195
|
-
}], SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: [{
|
|
33196
|
-
type: Output
|
|
33197
33207
|
}], change: [{
|
|
33198
33208
|
type: Output
|
|
33199
33209
|
}] } });
|
|
33200
33210
|
/**
|
|
33201
|
-
* @description Type-only wrapper for <px-
|
|
33211
|
+
* @description Type-only wrapper for <px-selectable-box-radio>
|
|
33202
33212
|
*/
|
|
33203
|
-
class
|
|
33213
|
+
class PxSelectableBoxRadio {
|
|
33204
33214
|
elementRef;
|
|
33205
|
-
set
|
|
33206
|
-
this.elementRef.nativeElement['
|
|
33207
|
-
}
|
|
33208
|
-
get direction() {
|
|
33209
|
-
return this.elementRef.nativeElement['direction'];
|
|
33210
|
-
}
|
|
33211
|
-
set directionMobile(value) {
|
|
33212
|
-
this.elementRef.nativeElement['directionMobile'] = value;
|
|
33213
|
-
}
|
|
33214
|
-
get directionMobile() {
|
|
33215
|
-
return this.elementRef.nativeElement['directionMobile'];
|
|
33216
|
-
}
|
|
33217
|
-
set directionTablet(value) {
|
|
33218
|
-
this.elementRef.nativeElement['directionTablet'] = value;
|
|
33219
|
-
}
|
|
33220
|
-
get directionTablet() {
|
|
33221
|
-
return this.elementRef.nativeElement['directionTablet'];
|
|
33222
|
-
}
|
|
33223
|
-
set directionLaptop(value) {
|
|
33224
|
-
this.elementRef.nativeElement['directionLaptop'] = value;
|
|
33215
|
+
set inverted(value) {
|
|
33216
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
33225
33217
|
}
|
|
33226
|
-
get
|
|
33227
|
-
return this.elementRef.nativeElement['
|
|
33218
|
+
get inverted() {
|
|
33219
|
+
return this.elementRef.nativeElement['inverted'];
|
|
33228
33220
|
}
|
|
33229
|
-
set
|
|
33230
|
-
this.elementRef.nativeElement['
|
|
33221
|
+
set name(value) {
|
|
33222
|
+
this.elementRef.nativeElement['name'] = value;
|
|
33231
33223
|
}
|
|
33232
|
-
get
|
|
33233
|
-
return this.elementRef.nativeElement['
|
|
33224
|
+
get name() {
|
|
33225
|
+
return this.elementRef.nativeElement['name'];
|
|
33234
33226
|
}
|
|
33235
|
-
set
|
|
33236
|
-
this.elementRef.nativeElement['
|
|
33227
|
+
set value(value) {
|
|
33228
|
+
this.elementRef.nativeElement['value'] = value;
|
|
33237
33229
|
}
|
|
33238
|
-
get
|
|
33239
|
-
return this.elementRef.nativeElement['
|
|
33230
|
+
get value() {
|
|
33231
|
+
return this.elementRef.nativeElement['value'];
|
|
33240
33232
|
}
|
|
33241
|
-
set
|
|
33242
|
-
this.elementRef.nativeElement['
|
|
33233
|
+
set checked(value) {
|
|
33234
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
33243
33235
|
}
|
|
33244
|
-
get
|
|
33245
|
-
return this.elementRef.nativeElement['
|
|
33236
|
+
get checked() {
|
|
33237
|
+
return this.elementRef.nativeElement['checked'];
|
|
33246
33238
|
}
|
|
33247
|
-
set
|
|
33248
|
-
this.elementRef.nativeElement['
|
|
33239
|
+
set disabled(value) {
|
|
33240
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
33249
33241
|
}
|
|
33250
|
-
get
|
|
33251
|
-
return this.elementRef.nativeElement['
|
|
33242
|
+
get disabled() {
|
|
33243
|
+
return this.elementRef.nativeElement['disabled'];
|
|
33252
33244
|
}
|
|
33253
33245
|
set grow(value) {
|
|
33254
33246
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -33562,37 +33554,39 @@ class PxSeparator {
|
|
|
33562
33554
|
get wordBreakAllDesktop() {
|
|
33563
33555
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
33564
33556
|
}
|
|
33557
|
+
SELECTABLE_BOX_RADIO_CONNECTED_EVENT = new EventEmitter();
|
|
33558
|
+
SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT = new EventEmitter();
|
|
33559
|
+
change = new EventEmitter();
|
|
33565
33560
|
constructor(elementRef) {
|
|
33566
33561
|
this.elementRef = elementRef;
|
|
33562
|
+
this.elementRef.nativeElement.addEventListener('SELECTABLE_BOX_RADIO_CONNECTED_EVENT', (e) => {
|
|
33563
|
+
this.SELECTABLE_BOX_RADIO_CONNECTED_EVENT.emit(e.detail);
|
|
33564
|
+
});
|
|
33565
|
+
this.elementRef.nativeElement.addEventListener('SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT', (e) => {
|
|
33566
|
+
this.SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT.emit(e.detail);
|
|
33567
|
+
});
|
|
33568
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
33569
|
+
this.change.emit(e.detail);
|
|
33570
|
+
});
|
|
33567
33571
|
}
|
|
33568
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
33569
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
33572
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33573
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSelectableBoxRadio, isStandalone: true, selector: "px-selectable-box-radio", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { SELECTABLE_BOX_RADIO_CONNECTED_EVENT: "SELECTABLE_BOX_RADIO_CONNECTED_EVENT", SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: "SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT", change: "change" }, ngImport: i0 });
|
|
33570
33574
|
}
|
|
33571
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
33575
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSelectableBoxRadio, decorators: [{
|
|
33572
33576
|
type: Directive,
|
|
33573
33577
|
args: [{
|
|
33574
|
-
selector: 'px-
|
|
33578
|
+
selector: 'px-selectable-box-radio',
|
|
33575
33579
|
standalone: true,
|
|
33576
33580
|
}]
|
|
33577
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
33581
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
33578
33582
|
type: Input
|
|
33579
|
-
}],
|
|
33580
|
-
type: Input,
|
|
33581
|
-
args: ['direction--mobile']
|
|
33582
|
-
}], directionTablet: [{
|
|
33583
|
-
type: Input,
|
|
33584
|
-
args: ['direction--tablet']
|
|
33585
|
-
}], directionLaptop: [{
|
|
33586
|
-
type: Input,
|
|
33587
|
-
args: ['direction--laptop']
|
|
33588
|
-
}], directionDesktop: [{
|
|
33589
|
-
type: Input,
|
|
33590
|
-
args: ['direction--desktop']
|
|
33591
|
-
}], size: [{
|
|
33583
|
+
}], name: [{
|
|
33592
33584
|
type: Input
|
|
33593
|
-
}],
|
|
33585
|
+
}], value: [{
|
|
33594
33586
|
type: Input
|
|
33595
|
-
}],
|
|
33587
|
+
}], checked: [{
|
|
33588
|
+
type: Input
|
|
33589
|
+
}], disabled: [{
|
|
33596
33590
|
type: Input
|
|
33597
33591
|
}], grow: [{
|
|
33598
33592
|
type: Input
|
|
@@ -33745,6 +33739,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
33745
33739
|
}], wordBreakAllDesktop: [{
|
|
33746
33740
|
type: Input,
|
|
33747
33741
|
args: ['word-break-all--desktop']
|
|
33742
|
+
}], SELECTABLE_BOX_RADIO_CONNECTED_EVENT: [{
|
|
33743
|
+
type: Output
|
|
33744
|
+
}], SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: [{
|
|
33745
|
+
type: Output
|
|
33746
|
+
}], change: [{
|
|
33747
|
+
type: Output
|
|
33748
33748
|
}] } });
|
|
33749
33749
|
/**
|
|
33750
33750
|
* @description Type-only wrapper for <px-skeleton>
|
|
@@ -41302,7 +41302,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41302
41302
|
}] } });
|
|
41303
41303
|
class Lavender {
|
|
41304
41304
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41305
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, 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, PxModal, PxList, PxListItem, PxP, PxPillar,
|
|
41305
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, 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, PxModal, PxList, PxListItem, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSeparator, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, 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, PxModal, PxList, PxListItem, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSeparator, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41306
41306
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41307
41307
|
}
|
|
41308
41308
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41363,19 +41363,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41363
41363
|
PxListItem,
|
|
41364
41364
|
PxP,
|
|
41365
41365
|
PxPillar,
|
|
41366
|
-
PxPrice,
|
|
41367
41366
|
PxCardActions,
|
|
41368
41367
|
PxCardContainer,
|
|
41369
41368
|
PxCardHeading,
|
|
41369
|
+
PxPrice,
|
|
41370
41370
|
PxRadio,
|
|
41371
41371
|
PxRadioBase,
|
|
41372
41372
|
PxRadioGroup,
|
|
41373
41373
|
PxRibbon,
|
|
41374
41374
|
PxSection,
|
|
41375
|
+
PxSeparator,
|
|
41375
41376
|
PxSelectableBox,
|
|
41376
41377
|
PxSelectableBoxCheckbox,
|
|
41377
41378
|
PxSelectableBoxRadio,
|
|
41378
|
-
PxSeparator,
|
|
41379
41379
|
PxSkeleton,
|
|
41380
41380
|
PxSpan,
|
|
41381
41381
|
PxSpinner,
|
|
@@ -41465,19 +41465,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41465
41465
|
PxListItem,
|
|
41466
41466
|
PxP,
|
|
41467
41467
|
PxPillar,
|
|
41468
|
-
PxPrice,
|
|
41469
41468
|
PxCardActions,
|
|
41470
41469
|
PxCardContainer,
|
|
41471
41470
|
PxCardHeading,
|
|
41471
|
+
PxPrice,
|
|
41472
41472
|
PxRadio,
|
|
41473
41473
|
PxRadioBase,
|
|
41474
41474
|
PxRadioGroup,
|
|
41475
41475
|
PxRibbon,
|
|
41476
41476
|
PxSection,
|
|
41477
|
+
PxSeparator,
|
|
41477
41478
|
PxSelectableBox,
|
|
41478
41479
|
PxSelectableBoxCheckbox,
|
|
41479
41480
|
PxSelectableBoxRadio,
|
|
41480
|
-
PxSeparator,
|
|
41481
41481
|
PxSkeleton,
|
|
41482
41482
|
PxSpan,
|
|
41483
41483
|
PxSpinner,
|