@proximus/lavender-angular 2.0.0-alpha.180 → 2.0.0-alpha.182

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,14 @@
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
+ # [2.0.0-alpha.182](https://github.com/Pxs-Corporate/design-system/compare/v2.0.0-alpha.181...v2.0.0-alpha.182) (2026-09-08)
7
+
8
+ **Note:** Version bump only for package @proximus/lavender-angular
9
+
10
+ # [2.0.0-alpha.181](https://github.com/Pxs-Corporate/design-system/compare/v2.0.0-alpha.180...v2.0.0-alpha.181) (2026-09-08)
11
+
12
+ **Note:** Version bump only for package @proximus/lavender-angular
13
+
6
14
  # [2.0.0-alpha.180](https://github.com/Pxs-Corporate/design-system/compare/v2.0.0-alpha.179...v2.0.0-alpha.180) (2026-09-08)
7
15
 
8
16
  **Note:** Version bump only for package @proximus/lavender-angular
@@ -6352,6 +6352,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
6352
6352
  type: Input,
6353
6353
  args: ['word-break-all--desktop']
6354
6354
  }] } });
6355
+ /**
6356
+ * @description Type-only wrapper for <px-appleseed>
6357
+ */
6358
+ class PxAppleseed {
6359
+ elementRef;
6360
+ set amount(value) {
6361
+ this.elementRef.nativeElement['amount'] = value;
6362
+ }
6363
+ get amount() {
6364
+ return this.elementRef.nativeElement['amount'];
6365
+ }
6366
+ set active(value) {
6367
+ this.elementRef.nativeElement['active'] = value;
6368
+ }
6369
+ get active() {
6370
+ return this.elementRef.nativeElement['active'];
6371
+ }
6372
+ constructor(elementRef) {
6373
+ this.elementRef = elementRef;
6374
+ }
6375
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
6376
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxAppleseed, isStandalone: true, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
6377
+ }
6378
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, decorators: [{
6379
+ type: Directive,
6380
+ args: [{
6381
+ selector: 'px-appleseed',
6382
+ standalone: true,
6383
+ }]
6384
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
6385
+ type: Input
6386
+ }], active: [{
6387
+ type: Input
6388
+ }] } });
6389
+ /**
6390
+ * @description Type-only wrapper for <px-carousel>
6391
+ */
6392
+ class PxCarousel {
6393
+ elementRef;
6394
+ constructor(elementRef) {
6395
+ this.elementRef = elementRef;
6396
+ }
6397
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
6398
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarousel, isStandalone: true, selector: "px-carousel", ngImport: i0 });
6399
+ }
6400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, decorators: [{
6401
+ type: Directive,
6402
+ args: [{
6403
+ selector: 'px-carousel',
6404
+ standalone: true,
6405
+ }]
6406
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
6407
+ /**
6408
+ * @description Type-only wrapper for <px-carousel-item>
6409
+ */
6410
+ class PxCarouselItem {
6411
+ elementRef;
6412
+ CAROUSEL_ITEM_CONNECTED_EVENT = new EventEmitter();
6413
+ constructor(elementRef) {
6414
+ this.elementRef = elementRef;
6415
+ this.elementRef.nativeElement.addEventListener('CAROUSEL_ITEM_CONNECTED_EVENT', (e) => {
6416
+ this.CAROUSEL_ITEM_CONNECTED_EVENT.emit(e.detail);
6417
+ });
6418
+ }
6419
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
6420
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarouselItem, isStandalone: true, selector: "px-carousel-item", outputs: { CAROUSEL_ITEM_CONNECTED_EVENT: "CAROUSEL_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
6421
+ }
6422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, decorators: [{
6423
+ type: Directive,
6424
+ args: [{
6425
+ selector: 'px-carousel-item',
6426
+ standalone: true,
6427
+ }]
6428
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { CAROUSEL_ITEM_CONNECTED_EVENT: [{
6429
+ type: Output
6430
+ }] } });
6355
6431
  /**
6356
6432
  * @description Type-only wrapper for <px-cell>
6357
6433
  */
@@ -10181,82 +10257,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
10181
10257
  }], change: [{
10182
10258
  type: Output
10183
10259
  }] } });
10184
- /**
10185
- * @description Type-only wrapper for <px-appleseed>
10186
- */
10187
- class PxAppleseed {
10188
- elementRef;
10189
- set amount(value) {
10190
- this.elementRef.nativeElement['amount'] = value;
10191
- }
10192
- get amount() {
10193
- return this.elementRef.nativeElement['amount'];
10194
- }
10195
- set active(value) {
10196
- this.elementRef.nativeElement['active'] = value;
10197
- }
10198
- get active() {
10199
- return this.elementRef.nativeElement['active'];
10200
- }
10201
- constructor(elementRef) {
10202
- this.elementRef = elementRef;
10203
- }
10204
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
10205
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxAppleseed, isStandalone: true, selector: "px-appleseed", inputs: { amount: "amount", active: "active" }, ngImport: i0 });
10206
- }
10207
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxAppleseed, decorators: [{
10208
- type: Directive,
10209
- args: [{
10210
- selector: 'px-appleseed',
10211
- standalone: true,
10212
- }]
10213
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { amount: [{
10214
- type: Input
10215
- }], active: [{
10216
- type: Input
10217
- }] } });
10218
- /**
10219
- * @description Type-only wrapper for <px-carousel>
10220
- */
10221
- class PxCarousel {
10222
- elementRef;
10223
- constructor(elementRef) {
10224
- this.elementRef = elementRef;
10225
- }
10226
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
10227
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarousel, isStandalone: true, selector: "px-carousel", ngImport: i0 });
10228
- }
10229
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarousel, decorators: [{
10230
- type: Directive,
10231
- args: [{
10232
- selector: 'px-carousel',
10233
- standalone: true,
10234
- }]
10235
- }], ctorParameters: () => [{ type: i0.ElementRef }] });
10236
- /**
10237
- * @description Type-only wrapper for <px-carousel-item>
10238
- */
10239
- class PxCarouselItem {
10240
- elementRef;
10241
- CAROUSEL_ITEM_CONNECTED_EVENT = new EventEmitter();
10242
- constructor(elementRef) {
10243
- this.elementRef = elementRef;
10244
- this.elementRef.nativeElement.addEventListener('CAROUSEL_ITEM_CONNECTED_EVENT', (e) => {
10245
- this.CAROUSEL_ITEM_CONNECTED_EVENT.emit(e.detail);
10246
- });
10247
- }
10248
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
10249
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCarouselItem, isStandalone: true, selector: "px-carousel-item", outputs: { CAROUSEL_ITEM_CONNECTED_EVENT: "CAROUSEL_ITEM_CONNECTED_EVENT" }, ngImport: i0 });
10250
- }
10251
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCarouselItem, decorators: [{
10252
- type: Directive,
10253
- args: [{
10254
- selector: 'px-carousel-item',
10255
- standalone: true,
10256
- }]
10257
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { CAROUSEL_ITEM_CONNECTED_EVENT: [{
10258
- type: Output
10259
- }] } });
10260
10260
  /**
10261
10261
  * @description Type-only wrapper for <px-checkbox>
10262
10262
  */
@@ -41357,7 +41357,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41357
41357
  }] } });
41358
41358
  class Lavender {
41359
41359
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
41360
- 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, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxAppleseed, PxCarousel, PxCarouselItem, 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, 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, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxAppleseed, PxCarousel, PxCarouselItem, 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, 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] });
41360
+ 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, 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, 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, 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] });
41361
41361
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
41362
41362
  }
41363
41363
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
@@ -41375,15 +41375,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41375
41375
  PxButtonWrapper,
41376
41376
  PxButtonIcon,
41377
41377
  PxCard,
41378
+ PxAppleseed,
41379
+ PxCarousel,
41380
+ PxCarouselItem,
41378
41381
  PxCell,
41379
41382
  PxCellButton,
41380
41383
  PxCellCheckbox,
41381
41384
  PxCellLink,
41382
41385
  PxCellRadio,
41383
41386
  PxCellSwitch,
41384
- PxAppleseed,
41385
- PxCarousel,
41386
- PxCarouselItem,
41387
41387
  PxCheckbox,
41388
41388
  PxColorOption,
41389
41389
  PxColorOptionLink,
@@ -41477,15 +41477,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
41477
41477
  PxButtonWrapper,
41478
41478
  PxButtonIcon,
41479
41479
  PxCard,
41480
+ PxAppleseed,
41481
+ PxCarousel,
41482
+ PxCarouselItem,
41480
41483
  PxCell,
41481
41484
  PxCellButton,
41482
41485
  PxCellCheckbox,
41483
41486
  PxCellLink,
41484
41487
  PxCellRadio,
41485
41488
  PxCellSwitch,
41486
- PxAppleseed,
41487
- PxCarousel,
41488
- PxCarouselItem,
41489
41489
  PxCheckbox,
41490
41490
  PxColorOption,
41491
41491
  PxColorOptionLink,