@proximus/lavender-angular 1.4.15-alpha.4 → 1.4.15-alpha.5
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.5](https://github.com/Pxs-Corporate/design-system/compare/v1.4.15-alpha.4...v1.4.15-alpha.5) (2026-08-31)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @proximus/lavender-angular
|
|
9
|
+
|
|
6
10
|
## [1.4.15-alpha.4](https://github.com/Pxs-Corporate/design-system/compare/v1.4.15-alpha.3...v1.4.15-alpha.4) (2026-08-31)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @proximus/lavender-angular
|
|
@@ -34747,6 +34747,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
34747
34747
|
type: Input,
|
|
34748
34748
|
args: ['word-break-all--desktop']
|
|
34749
34749
|
}] } });
|
|
34750
|
+
/**
|
|
34751
|
+
* @description Type-only wrapper for <px-spinner>
|
|
34752
|
+
*/
|
|
34753
|
+
class PxSpinner {
|
|
34754
|
+
elementRef;
|
|
34755
|
+
set size(value) {
|
|
34756
|
+
this.elementRef.nativeElement['size'] = value;
|
|
34757
|
+
}
|
|
34758
|
+
get size() {
|
|
34759
|
+
return this.elementRef.nativeElement['size'];
|
|
34760
|
+
}
|
|
34761
|
+
set inverted(value) {
|
|
34762
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
34763
|
+
}
|
|
34764
|
+
get inverted() {
|
|
34765
|
+
return this.elementRef.nativeElement['inverted'];
|
|
34766
|
+
}
|
|
34767
|
+
set timeout(value) {
|
|
34768
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
34769
|
+
}
|
|
34770
|
+
get timeout() {
|
|
34771
|
+
return this.elementRef.nativeElement['timeout'];
|
|
34772
|
+
}
|
|
34773
|
+
set ariaLabel(value) {
|
|
34774
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
34775
|
+
}
|
|
34776
|
+
get ariaLabel() {
|
|
34777
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
34778
|
+
}
|
|
34779
|
+
constructor(elementRef) {
|
|
34780
|
+
this.elementRef = elementRef;
|
|
34781
|
+
}
|
|
34782
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
34783
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpinner, isStandalone: true, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
34784
|
+
}
|
|
34785
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
|
|
34786
|
+
type: Directive,
|
|
34787
|
+
args: [{
|
|
34788
|
+
selector: 'px-spinner',
|
|
34789
|
+
standalone: true,
|
|
34790
|
+
}]
|
|
34791
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
34792
|
+
type: Input
|
|
34793
|
+
}], inverted: [{
|
|
34794
|
+
type: Input
|
|
34795
|
+
}], timeout: [{
|
|
34796
|
+
type: Input
|
|
34797
|
+
}], ariaLabel: [{
|
|
34798
|
+
type: Input,
|
|
34799
|
+
args: ['aria-label']
|
|
34800
|
+
}] } });
|
|
34750
34801
|
/**
|
|
34751
34802
|
* @description Type-only wrapper for <px-status>
|
|
34752
34803
|
*/
|
|
@@ -35297,57 +35348,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
35297
35348
|
type: Input,
|
|
35298
35349
|
args: ['word-break-all--desktop']
|
|
35299
35350
|
}] } });
|
|
35300
|
-
/**
|
|
35301
|
-
* @description Type-only wrapper for <px-spinner>
|
|
35302
|
-
*/
|
|
35303
|
-
class PxSpinner {
|
|
35304
|
-
elementRef;
|
|
35305
|
-
set size(value) {
|
|
35306
|
-
this.elementRef.nativeElement['size'] = value;
|
|
35307
|
-
}
|
|
35308
|
-
get size() {
|
|
35309
|
-
return this.elementRef.nativeElement['size'];
|
|
35310
|
-
}
|
|
35311
|
-
set inverted(value) {
|
|
35312
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
35313
|
-
}
|
|
35314
|
-
get inverted() {
|
|
35315
|
-
return this.elementRef.nativeElement['inverted'];
|
|
35316
|
-
}
|
|
35317
|
-
set timeout(value) {
|
|
35318
|
-
this.elementRef.nativeElement['timeout'] = value;
|
|
35319
|
-
}
|
|
35320
|
-
get timeout() {
|
|
35321
|
-
return this.elementRef.nativeElement['timeout'];
|
|
35322
|
-
}
|
|
35323
|
-
set ariaLabel(value) {
|
|
35324
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
35325
|
-
}
|
|
35326
|
-
get ariaLabel() {
|
|
35327
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
35328
|
-
}
|
|
35329
|
-
constructor(elementRef) {
|
|
35330
|
-
this.elementRef = elementRef;
|
|
35331
|
-
}
|
|
35332
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
35333
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxSpinner, isStandalone: true, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
35334
|
-
}
|
|
35335
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxSpinner, decorators: [{
|
|
35336
|
-
type: Directive,
|
|
35337
|
-
args: [{
|
|
35338
|
-
selector: 'px-spinner',
|
|
35339
|
-
standalone: true,
|
|
35340
|
-
}]
|
|
35341
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
35342
|
-
type: Input
|
|
35343
|
-
}], inverted: [{
|
|
35344
|
-
type: Input
|
|
35345
|
-
}], timeout: [{
|
|
35346
|
-
type: Input
|
|
35347
|
-
}], ariaLabel: [{
|
|
35348
|
-
type: Input,
|
|
35349
|
-
args: ['aria-label']
|
|
35350
|
-
}] } });
|
|
35351
35351
|
/**
|
|
35352
35352
|
* @description Type-only wrapper for <px-status-card>
|
|
35353
35353
|
*/
|
|
@@ -41266,7 +41266,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41266
41266
|
}] } });
|
|
41267
41267
|
class Lavender {
|
|
41268
41268
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41269
|
-
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, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan,
|
|
41269
|
+
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, 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] });
|
|
41270
41270
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41271
41271
|
}
|
|
41272
41272
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41342,8 +41342,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41342
41342
|
PxSeparator,
|
|
41343
41343
|
PxSkeleton,
|
|
41344
41344
|
PxSpan,
|
|
41345
|
-
PxStatus,
|
|
41346
41345
|
PxSpinner,
|
|
41346
|
+
PxStatus,
|
|
41347
41347
|
PxStatusCard,
|
|
41348
41348
|
PxStickyContainer,
|
|
41349
41349
|
PxThemeSwitcher,
|
|
@@ -41444,8 +41444,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41444
41444
|
PxSeparator,
|
|
41445
41445
|
PxSkeleton,
|
|
41446
41446
|
PxSpan,
|
|
41447
|
-
PxStatus,
|
|
41448
41447
|
PxSpinner,
|
|
41448
|
+
PxStatus,
|
|
41449
41449
|
PxStatusCard,
|
|
41450
41450
|
PxStickyContainer,
|
|
41451
41451
|
PxThemeSwitcher,
|