@proximus/lavender-angular 1.4.12-alpha.7 → 1.4.12-alpha.8
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.
|
@@ -5830,6 +5830,79 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
5830
5830
|
type: Input,
|
|
5831
5831
|
args: ['sticky-bottom']
|
|
5832
5832
|
}] } });
|
|
5833
|
+
/**
|
|
5834
|
+
* @description Type-only wrapper for <px-appleseed>
|
|
5835
|
+
*/
|
|
5836
|
+
class PxAppleseed {
|
|
5837
|
+
elementRef;
|
|
5838
|
+
set amount(value) {
|
|
5839
|
+
this.elementRef.nativeElement['amount'] = value;
|
|
5840
|
+
}
|
|
5841
|
+
get amount() {
|
|
5842
|
+
return this.elementRef.nativeElement['amount'];
|
|
5843
|
+
}
|
|
5844
|
+
set active(value) {
|
|
5845
|
+
this.elementRef.nativeElement['active'] = value;
|
|
5846
|
+
}
|
|
5847
|
+
get active() {
|
|
5848
|
+
return this.elementRef.nativeElement['active'];
|
|
5849
|
+
}
|
|
5850
|
+
constructor(elementRef) {
|
|
5851
|
+
this.elementRef = elementRef;
|
|
5852
|
+
}
|
|
5853
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5854
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxAppleseed, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
5855
|
+
}
|
|
5856
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
5857
|
+
type: Directive,
|
|
5858
|
+
args: [{
|
|
5859
|
+
selector: 'px-appleseed',
|
|
5860
|
+
}]
|
|
5861
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
5862
|
+
type: Input
|
|
5863
|
+
}], active: [{
|
|
5864
|
+
type: Input
|
|
5865
|
+
}] } });
|
|
5866
|
+
/**
|
|
5867
|
+
* @description Type-only wrapper for <px-carousel>
|
|
5868
|
+
*/
|
|
5869
|
+
class PxCarousel {
|
|
5870
|
+
elementRef;
|
|
5871
|
+
constructor(elementRef) {
|
|
5872
|
+
this.elementRef = elementRef;
|
|
5873
|
+
}
|
|
5874
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5875
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarousel, selector: "px-carousel", ngImport: i0 });
|
|
5876
|
+
}
|
|
5877
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, decorators: [{
|
|
5878
|
+
type: Directive,
|
|
5879
|
+
args: [{
|
|
5880
|
+
selector: 'px-carousel',
|
|
5881
|
+
}]
|
|
5882
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
5883
|
+
/**
|
|
5884
|
+
* @description Type-only wrapper for <px-carousel-item>
|
|
5885
|
+
*/
|
|
5886
|
+
class PxCarouselItem {
|
|
5887
|
+
elementRef;
|
|
5888
|
+
CAROUSEL_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
5889
|
+
constructor(elementRef) {
|
|
5890
|
+
this.elementRef = elementRef;
|
|
5891
|
+
this.elementRef.nativeElement.addEventListener('CAROUSEL_ITEM_CONNECTED_EVENT', (e) => {
|
|
5892
|
+
this.CAROUSEL_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
5893
|
+
});
|
|
5894
|
+
}
|
|
5895
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5896
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarouselItem, selector: "px-carousel-item", outputs: { CAROUSEL_ITEM_CONNECTED_EVENT: "CAROUSEL_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
5897
|
+
}
|
|
5898
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
5899
|
+
type: Directive,
|
|
5900
|
+
args: [{
|
|
5901
|
+
selector: 'px-carousel-item',
|
|
5902
|
+
}]
|
|
5903
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { CAROUSEL_ITEM_CONNECTED_EVENT: [{
|
|
5904
|
+
type: Output
|
|
5905
|
+
}] } });
|
|
5833
5906
|
/**
|
|
5834
5907
|
* @description Type-only wrapper for <px-cell>
|
|
5835
5908
|
*/
|
|
@@ -9383,79 +9456,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
9383
9456
|
}], change: [{
|
|
9384
9457
|
type: Output
|
|
9385
9458
|
}] } });
|
|
9386
|
-
/**
|
|
9387
|
-
* @description Type-only wrapper for <px-appleseed>
|
|
9388
|
-
*/
|
|
9389
|
-
class PxAppleseed {
|
|
9390
|
-
elementRef;
|
|
9391
|
-
set amount(value) {
|
|
9392
|
-
this.elementRef.nativeElement['amount'] = value;
|
|
9393
|
-
}
|
|
9394
|
-
get amount() {
|
|
9395
|
-
return this.elementRef.nativeElement['amount'];
|
|
9396
|
-
}
|
|
9397
|
-
set active(value) {
|
|
9398
|
-
this.elementRef.nativeElement['active'] = value;
|
|
9399
|
-
}
|
|
9400
|
-
get active() {
|
|
9401
|
-
return this.elementRef.nativeElement['active'];
|
|
9402
|
-
}
|
|
9403
|
-
constructor(elementRef) {
|
|
9404
|
-
this.elementRef = elementRef;
|
|
9405
|
-
}
|
|
9406
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
9407
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxAppleseed, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
|
|
9408
|
-
}
|
|
9409
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxAppleseed, decorators: [{
|
|
9410
|
-
type: Directive,
|
|
9411
|
-
args: [{
|
|
9412
|
-
selector: 'px-appleseed',
|
|
9413
|
-
}]
|
|
9414
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
|
|
9415
|
-
type: Input
|
|
9416
|
-
}], active: [{
|
|
9417
|
-
type: Input
|
|
9418
|
-
}] } });
|
|
9419
|
-
/**
|
|
9420
|
-
* @description Type-only wrapper for <px-carousel>
|
|
9421
|
-
*/
|
|
9422
|
-
class PxCarousel {
|
|
9423
|
-
elementRef;
|
|
9424
|
-
constructor(elementRef) {
|
|
9425
|
-
this.elementRef = elementRef;
|
|
9426
|
-
}
|
|
9427
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
9428
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarousel, selector: "px-carousel", ngImport: i0 });
|
|
9429
|
-
}
|
|
9430
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarousel, decorators: [{
|
|
9431
|
-
type: Directive,
|
|
9432
|
-
args: [{
|
|
9433
|
-
selector: 'px-carousel',
|
|
9434
|
-
}]
|
|
9435
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
9436
|
-
/**
|
|
9437
|
-
* @description Type-only wrapper for <px-carousel-item>
|
|
9438
|
-
*/
|
|
9439
|
-
class PxCarouselItem {
|
|
9440
|
-
elementRef;
|
|
9441
|
-
CAROUSEL_ITEM_CONNECTED_EVENT = new EventEmitter();
|
|
9442
|
-
constructor(elementRef) {
|
|
9443
|
-
this.elementRef = elementRef;
|
|
9444
|
-
this.elementRef.nativeElement.addEventListener('CAROUSEL_ITEM_CONNECTED_EVENT', (e) => {
|
|
9445
|
-
this.CAROUSEL_ITEM_CONNECTED_EVENT.emit(e.detail);
|
|
9446
|
-
});
|
|
9447
|
-
}
|
|
9448
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
9449
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxCarouselItem, selector: "px-carousel-item", outputs: { CAROUSEL_ITEM_CONNECTED_EVENT: "CAROUSEL_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
|
|
9450
|
-
}
|
|
9451
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxCarouselItem, decorators: [{
|
|
9452
|
-
type: Directive,
|
|
9453
|
-
args: [{
|
|
9454
|
-
selector: 'px-carousel-item',
|
|
9455
|
-
}]
|
|
9456
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { CAROUSEL_ITEM_CONNECTED_EVENT: [{
|
|
9457
|
-
type: Output
|
|
9458
|
-
}] } });
|
|
9459
9459
|
/**
|
|
9460
9460
|
* @description Type-only wrapper for <px-checkbox>
|
|
9461
9461
|
*/
|
|
@@ -37925,7 +37925,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37925
37925
|
}] } });
|
|
37926
37926
|
class Lavender {
|
|
37927
37927
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
37928
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch,
|
|
37928
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: Lavender, declarations: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxStickyContainer, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
37929
37929
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
37930
37930
|
}
|
|
37931
37931
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -37943,15 +37943,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37943
37943
|
PxButtonWrapper,
|
|
37944
37944
|
PxButtonIcon,
|
|
37945
37945
|
PxCard,
|
|
37946
|
+
PxAppleseed,
|
|
37947
|
+
PxCarousel,
|
|
37948
|
+
PxCarouselItem,
|
|
37946
37949
|
PxCell,
|
|
37947
37950
|
PxCellButton,
|
|
37948
37951
|
PxCellCheckbox,
|
|
37949
37952
|
PxCellLink,
|
|
37950
37953
|
PxCellRadio,
|
|
37951
37954
|
PxCellSwitch,
|
|
37952
|
-
PxAppleseed,
|
|
37953
|
-
PxCarousel,
|
|
37954
|
-
PxCarouselItem,
|
|
37955
37955
|
PxCheckbox,
|
|
37956
37956
|
PxColorOption,
|
|
37957
37957
|
PxColorOptionLink,
|
|
@@ -38045,15 +38045,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
38045
38045
|
PxButtonWrapper,
|
|
38046
38046
|
PxButtonIcon,
|
|
38047
38047
|
PxCard,
|
|
38048
|
+
PxAppleseed,
|
|
38049
|
+
PxCarousel,
|
|
38050
|
+
PxCarouselItem,
|
|
38048
38051
|
PxCell,
|
|
38049
38052
|
PxCellButton,
|
|
38050
38053
|
PxCellCheckbox,
|
|
38051
38054
|
PxCellLink,
|
|
38052
38055
|
PxCellRadio,
|
|
38053
38056
|
PxCellSwitch,
|
|
38054
|
-
PxAppleseed,
|
|
38055
|
-
PxCarousel,
|
|
38056
|
-
PxCarouselItem,
|
|
38057
38057
|
PxCheckbox,
|
|
38058
38058
|
PxColorOption,
|
|
38059
38059
|
PxColorOptionLink,
|