@proximus/lavender-angular 1.4.15-alpha.21 → 1.4.15-alpha.22
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
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.4.15-alpha.22](https://github.com/Pxs-Corporate/design-system/compare/v1.4.15-alpha.21...v1.4.15-alpha.22) (2026-09-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @proximus/lavender-angular
|
|
9
|
+
|
|
6
10
|
## [1.4.15-alpha.21](https://github.com/Pxs-Corporate/design-system/compare/v1.4.15-alpha.20...v1.4.15-alpha.21) (2026-09-09)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @proximus/lavender-angular
|
|
@@ -26548,6 +26548,79 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
26548
26548
|
type: Input,
|
|
26549
26549
|
args: ['word-break-all--desktop']
|
|
26550
26550
|
}] } });
|
|
26551
|
+
/**
|
|
26552
|
+
* @description Type-only wrapper for <px-modal>
|
|
26553
|
+
*/
|
|
26554
|
+
class PxModal {
|
|
26555
|
+
elementRef;
|
|
26556
|
+
set open(value) {
|
|
26557
|
+
this.elementRef.nativeElement['open'] = value;
|
|
26558
|
+
}
|
|
26559
|
+
get open() {
|
|
26560
|
+
return this.elementRef.nativeElement['open'];
|
|
26561
|
+
}
|
|
26562
|
+
set status(value) {
|
|
26563
|
+
this.elementRef.nativeElement['status'] = value;
|
|
26564
|
+
}
|
|
26565
|
+
get status() {
|
|
26566
|
+
return this.elementRef.nativeElement['status'];
|
|
26567
|
+
}
|
|
26568
|
+
set mediaSrc(value) {
|
|
26569
|
+
this.elementRef.nativeElement['mediaSrc'] = value;
|
|
26570
|
+
}
|
|
26571
|
+
get mediaSrc() {
|
|
26572
|
+
return this.elementRef.nativeElement['mediaSrc'];
|
|
26573
|
+
}
|
|
26574
|
+
set openedby(value) {
|
|
26575
|
+
this.elementRef.nativeElement['openedby'] = value;
|
|
26576
|
+
}
|
|
26577
|
+
get openedby() {
|
|
26578
|
+
return this.elementRef.nativeElement['openedby'];
|
|
26579
|
+
}
|
|
26580
|
+
set closedby(value) {
|
|
26581
|
+
this.elementRef.nativeElement['closedby'] = value;
|
|
26582
|
+
}
|
|
26583
|
+
get closedby() {
|
|
26584
|
+
return this.elementRef.nativeElement['closedby'];
|
|
26585
|
+
}
|
|
26586
|
+
set id(value) {
|
|
26587
|
+
this.elementRef.nativeElement['id'] = value;
|
|
26588
|
+
}
|
|
26589
|
+
get id() {
|
|
26590
|
+
return this.elementRef.nativeElement['id'];
|
|
26591
|
+
}
|
|
26592
|
+
CLOSE_EVENT = new EventEmitter();
|
|
26593
|
+
constructor(elementRef) {
|
|
26594
|
+
this.elementRef = elementRef;
|
|
26595
|
+
this.elementRef.nativeElement.addEventListener('CLOSE_EVENT', (e) => {
|
|
26596
|
+
this.CLOSE_EVENT.emit(e.detail);
|
|
26597
|
+
});
|
|
26598
|
+
}
|
|
26599
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxModal, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26600
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxModal, isStandalone: true, selector: "px-modal", inputs: { open: "open", status: "status", mediaSrc: ["media-src", "mediaSrc"], openedby: "openedby", closedby: "closedby", id: "id" }, outputs: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
26601
|
+
}
|
|
26602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxModal, decorators: [{
|
|
26603
|
+
type: Directive,
|
|
26604
|
+
args: [{
|
|
26605
|
+
selector: 'px-modal',
|
|
26606
|
+
standalone: true,
|
|
26607
|
+
}]
|
|
26608
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
26609
|
+
type: Input
|
|
26610
|
+
}], status: [{
|
|
26611
|
+
type: Input
|
|
26612
|
+
}], mediaSrc: [{
|
|
26613
|
+
type: Input,
|
|
26614
|
+
args: ['media-src']
|
|
26615
|
+
}], openedby: [{
|
|
26616
|
+
type: Input
|
|
26617
|
+
}], closedby: [{
|
|
26618
|
+
type: Input
|
|
26619
|
+
}], id: [{
|
|
26620
|
+
type: Input
|
|
26621
|
+
}], CLOSE_EVENT: [{
|
|
26622
|
+
type: Output
|
|
26623
|
+
}] } });
|
|
26551
26624
|
/**
|
|
26552
26625
|
* @description Type-only wrapper for <px-list>
|
|
26553
26626
|
*/
|
|
@@ -27540,79 +27613,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
27540
27613
|
}], LIST_ITEM_CONNECTED_EVENT: [{
|
|
27541
27614
|
type: Output
|
|
27542
27615
|
}] } });
|
|
27543
|
-
/**
|
|
27544
|
-
* @description Type-only wrapper for <px-modal>
|
|
27545
|
-
*/
|
|
27546
|
-
class PxModal {
|
|
27547
|
-
elementRef;
|
|
27548
|
-
set open(value) {
|
|
27549
|
-
this.elementRef.nativeElement['open'] = value;
|
|
27550
|
-
}
|
|
27551
|
-
get open() {
|
|
27552
|
-
return this.elementRef.nativeElement['open'];
|
|
27553
|
-
}
|
|
27554
|
-
set status(value) {
|
|
27555
|
-
this.elementRef.nativeElement['status'] = value;
|
|
27556
|
-
}
|
|
27557
|
-
get status() {
|
|
27558
|
-
return this.elementRef.nativeElement['status'];
|
|
27559
|
-
}
|
|
27560
|
-
set mediaSrc(value) {
|
|
27561
|
-
this.elementRef.nativeElement['mediaSrc'] = value;
|
|
27562
|
-
}
|
|
27563
|
-
get mediaSrc() {
|
|
27564
|
-
return this.elementRef.nativeElement['mediaSrc'];
|
|
27565
|
-
}
|
|
27566
|
-
set openedby(value) {
|
|
27567
|
-
this.elementRef.nativeElement['openedby'] = value;
|
|
27568
|
-
}
|
|
27569
|
-
get openedby() {
|
|
27570
|
-
return this.elementRef.nativeElement['openedby'];
|
|
27571
|
-
}
|
|
27572
|
-
set closedby(value) {
|
|
27573
|
-
this.elementRef.nativeElement['closedby'] = value;
|
|
27574
|
-
}
|
|
27575
|
-
get closedby() {
|
|
27576
|
-
return this.elementRef.nativeElement['closedby'];
|
|
27577
|
-
}
|
|
27578
|
-
set id(value) {
|
|
27579
|
-
this.elementRef.nativeElement['id'] = value;
|
|
27580
|
-
}
|
|
27581
|
-
get id() {
|
|
27582
|
-
return this.elementRef.nativeElement['id'];
|
|
27583
|
-
}
|
|
27584
|
-
CLOSE_EVENT = new EventEmitter();
|
|
27585
|
-
constructor(elementRef) {
|
|
27586
|
-
this.elementRef = elementRef;
|
|
27587
|
-
this.elementRef.nativeElement.addEventListener('CLOSE_EVENT', (e) => {
|
|
27588
|
-
this.CLOSE_EVENT.emit(e.detail);
|
|
27589
|
-
});
|
|
27590
|
-
}
|
|
27591
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxModal, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27592
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxModal, isStandalone: true, selector: "px-modal", inputs: { open: "open", status: "status", mediaSrc: ["media-src", "mediaSrc"], openedby: "openedby", closedby: "closedby", id: "id" }, outputs: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
27593
|
-
}
|
|
27594
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxModal, decorators: [{
|
|
27595
|
-
type: Directive,
|
|
27596
|
-
args: [{
|
|
27597
|
-
selector: 'px-modal',
|
|
27598
|
-
standalone: true,
|
|
27599
|
-
}]
|
|
27600
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
27601
|
-
type: Input
|
|
27602
|
-
}], status: [{
|
|
27603
|
-
type: Input
|
|
27604
|
-
}], mediaSrc: [{
|
|
27605
|
-
type: Input,
|
|
27606
|
-
args: ['media-src']
|
|
27607
|
-
}], openedby: [{
|
|
27608
|
-
type: Input
|
|
27609
|
-
}], closedby: [{
|
|
27610
|
-
type: Input
|
|
27611
|
-
}], id: [{
|
|
27612
|
-
type: Input
|
|
27613
|
-
}], CLOSE_EVENT: [{
|
|
27614
|
-
type: Output
|
|
27615
|
-
}] } });
|
|
27616
27616
|
/**
|
|
27617
27617
|
* @description Type-only wrapper for <px-p>
|
|
27618
27618
|
*/
|
|
@@ -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,
|
|
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, PxModal, PxList, PxListItem, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, 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, PxModal, PxList, PxListItem, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, 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: [{
|
|
@@ -41970,9 +41970,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41970
41970
|
PxHstack,
|
|
41971
41971
|
PxA,
|
|
41972
41972
|
PxAWrapper,
|
|
41973
|
+
PxModal,
|
|
41973
41974
|
PxList,
|
|
41974
41975
|
PxListItem,
|
|
41975
|
-
PxModal,
|
|
41976
41976
|
PxP,
|
|
41977
41977
|
PxPillar,
|
|
41978
41978
|
PxCardActions,
|
|
@@ -42073,9 +42073,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
42073
42073
|
PxHstack,
|
|
42074
42074
|
PxA,
|
|
42075
42075
|
PxAWrapper,
|
|
42076
|
+
PxModal,
|
|
42076
42077
|
PxList,
|
|
42077
42078
|
PxListItem,
|
|
42078
|
-
PxModal,
|
|
42079
42079
|
PxP,
|
|
42080
42080
|
PxPillar,
|
|
42081
42081
|
PxCardActions,
|