@proximus/lavender-angular 1.4.12-alpha.4 → 1.4.12-alpha.6
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.
|
@@ -11605,106 +11605,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
11605
11605
|
type: Input,
|
|
11606
11606
|
args: ['sticky-bottom']
|
|
11607
11607
|
}] } });
|
|
11608
|
-
/**
|
|
11609
|
-
* @description Type-only wrapper for <px-drawer>
|
|
11610
|
-
*/
|
|
11611
|
-
class PxDrawer {
|
|
11612
|
-
elementRef;
|
|
11613
|
-
set open(value) {
|
|
11614
|
-
this.elementRef.nativeElement['open'] = value;
|
|
11615
|
-
}
|
|
11616
|
-
get open() {
|
|
11617
|
-
return this.elementRef.nativeElement['open'];
|
|
11618
|
-
}
|
|
11619
|
-
set ariaLabelCloseButton(value) {
|
|
11620
|
-
this.elementRef.nativeElement['ariaLabelCloseButton'] = value;
|
|
11621
|
-
}
|
|
11622
|
-
get ariaLabelCloseButton() {
|
|
11623
|
-
return this.elementRef.nativeElement['ariaLabelCloseButton'];
|
|
11624
|
-
}
|
|
11625
|
-
set openedby(value) {
|
|
11626
|
-
this.elementRef.nativeElement['openedby'] = value;
|
|
11627
|
-
}
|
|
11628
|
-
get openedby() {
|
|
11629
|
-
return this.elementRef.nativeElement['openedby'];
|
|
11630
|
-
}
|
|
11631
|
-
set closedby(value) {
|
|
11632
|
-
this.elementRef.nativeElement['closedby'] = value;
|
|
11633
|
-
}
|
|
11634
|
-
get closedby() {
|
|
11635
|
-
return this.elementRef.nativeElement['closedby'];
|
|
11636
|
-
}
|
|
11637
|
-
set fullscreen(value) {
|
|
11638
|
-
this.elementRef.nativeElement['fullscreen'] = value;
|
|
11639
|
-
}
|
|
11640
|
-
get fullscreen() {
|
|
11641
|
-
return this.elementRef.nativeElement['fullscreen'];
|
|
11642
|
-
}
|
|
11643
|
-
set fullscreenMobile(value) {
|
|
11644
|
-
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
11645
|
-
}
|
|
11646
|
-
get fullscreenMobile() {
|
|
11647
|
-
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
11648
|
-
}
|
|
11649
|
-
set fullscreenTablet(value) {
|
|
11650
|
-
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
11651
|
-
}
|
|
11652
|
-
get fullscreenTablet() {
|
|
11653
|
-
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
11654
|
-
}
|
|
11655
|
-
set fullscreenLaptop(value) {
|
|
11656
|
-
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
11657
|
-
}
|
|
11658
|
-
get fullscreenLaptop() {
|
|
11659
|
-
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
11660
|
-
}
|
|
11661
|
-
set fullscreenDesktop(value) {
|
|
11662
|
-
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
11663
|
-
}
|
|
11664
|
-
get fullscreenDesktop() {
|
|
11665
|
-
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
11666
|
-
}
|
|
11667
|
-
HIDE_EVENT = new EventEmitter();
|
|
11668
|
-
constructor(elementRef) {
|
|
11669
|
-
this.elementRef = elementRef;
|
|
11670
|
-
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
11671
|
-
this.HIDE_EVENT.emit(e.detail);
|
|
11672
|
-
});
|
|
11673
|
-
}
|
|
11674
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
11675
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby", closedby: "closedby", fullscreen: "fullscreen", fullscreenMobile: ["fullscreen--mobile", "fullscreenMobile"], fullscreenTablet: ["fullscreen--tablet", "fullscreenTablet"], fullscreenLaptop: ["fullscreen--laptop", "fullscreenLaptop"], fullscreenDesktop: ["fullscreen--desktop", "fullscreenDesktop"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
11676
|
-
}
|
|
11677
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, decorators: [{
|
|
11678
|
-
type: Directive,
|
|
11679
|
-
args: [{
|
|
11680
|
-
selector: 'px-drawer',
|
|
11681
|
-
}]
|
|
11682
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
11683
|
-
type: Input
|
|
11684
|
-
}], ariaLabelCloseButton: [{
|
|
11685
|
-
type: Input,
|
|
11686
|
-
args: ['aria-label-close-button']
|
|
11687
|
-
}], openedby: [{
|
|
11688
|
-
type: Input
|
|
11689
|
-
}], closedby: [{
|
|
11690
|
-
type: Input
|
|
11691
|
-
}], fullscreen: [{
|
|
11692
|
-
type: Input
|
|
11693
|
-
}], fullscreenMobile: [{
|
|
11694
|
-
type: Input,
|
|
11695
|
-
args: ['fullscreen--mobile']
|
|
11696
|
-
}], fullscreenTablet: [{
|
|
11697
|
-
type: Input,
|
|
11698
|
-
args: ['fullscreen--tablet']
|
|
11699
|
-
}], fullscreenLaptop: [{
|
|
11700
|
-
type: Input,
|
|
11701
|
-
args: ['fullscreen--laptop']
|
|
11702
|
-
}], fullscreenDesktop: [{
|
|
11703
|
-
type: Input,
|
|
11704
|
-
args: ['fullscreen--desktop']
|
|
11705
|
-
}], HIDE_EVENT: [{
|
|
11706
|
-
type: Output
|
|
11707
|
-
}] } });
|
|
11708
11608
|
/**
|
|
11709
11609
|
* @description Type-only wrapper for <px-content-header>
|
|
11710
11610
|
*/
|
|
@@ -12292,6 +12192,106 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
12292
12192
|
type: Input,
|
|
12293
12193
|
args: ['sticky-bottom']
|
|
12294
12194
|
}] } });
|
|
12195
|
+
/**
|
|
12196
|
+
* @description Type-only wrapper for <px-drawer>
|
|
12197
|
+
*/
|
|
12198
|
+
class PxDrawer {
|
|
12199
|
+
elementRef;
|
|
12200
|
+
set open(value) {
|
|
12201
|
+
this.elementRef.nativeElement['open'] = value;
|
|
12202
|
+
}
|
|
12203
|
+
get open() {
|
|
12204
|
+
return this.elementRef.nativeElement['open'];
|
|
12205
|
+
}
|
|
12206
|
+
set ariaLabelCloseButton(value) {
|
|
12207
|
+
this.elementRef.nativeElement['ariaLabelCloseButton'] = value;
|
|
12208
|
+
}
|
|
12209
|
+
get ariaLabelCloseButton() {
|
|
12210
|
+
return this.elementRef.nativeElement['ariaLabelCloseButton'];
|
|
12211
|
+
}
|
|
12212
|
+
set openedby(value) {
|
|
12213
|
+
this.elementRef.nativeElement['openedby'] = value;
|
|
12214
|
+
}
|
|
12215
|
+
get openedby() {
|
|
12216
|
+
return this.elementRef.nativeElement['openedby'];
|
|
12217
|
+
}
|
|
12218
|
+
set closedby(value) {
|
|
12219
|
+
this.elementRef.nativeElement['closedby'] = value;
|
|
12220
|
+
}
|
|
12221
|
+
get closedby() {
|
|
12222
|
+
return this.elementRef.nativeElement['closedby'];
|
|
12223
|
+
}
|
|
12224
|
+
set fullscreen(value) {
|
|
12225
|
+
this.elementRef.nativeElement['fullscreen'] = value;
|
|
12226
|
+
}
|
|
12227
|
+
get fullscreen() {
|
|
12228
|
+
return this.elementRef.nativeElement['fullscreen'];
|
|
12229
|
+
}
|
|
12230
|
+
set fullscreenMobile(value) {
|
|
12231
|
+
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
12232
|
+
}
|
|
12233
|
+
get fullscreenMobile() {
|
|
12234
|
+
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
12235
|
+
}
|
|
12236
|
+
set fullscreenTablet(value) {
|
|
12237
|
+
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
12238
|
+
}
|
|
12239
|
+
get fullscreenTablet() {
|
|
12240
|
+
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
12241
|
+
}
|
|
12242
|
+
set fullscreenLaptop(value) {
|
|
12243
|
+
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
12244
|
+
}
|
|
12245
|
+
get fullscreenLaptop() {
|
|
12246
|
+
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
12247
|
+
}
|
|
12248
|
+
set fullscreenDesktop(value) {
|
|
12249
|
+
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
12250
|
+
}
|
|
12251
|
+
get fullscreenDesktop() {
|
|
12252
|
+
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
12253
|
+
}
|
|
12254
|
+
HIDE_EVENT = new EventEmitter();
|
|
12255
|
+
constructor(elementRef) {
|
|
12256
|
+
this.elementRef = elementRef;
|
|
12257
|
+
this.elementRef.nativeElement.addEventListener('HIDE_EVENT', (e) => {
|
|
12258
|
+
this.HIDE_EVENT.emit(e.detail);
|
|
12259
|
+
});
|
|
12260
|
+
}
|
|
12261
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12262
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", ariaLabelCloseButton: ["aria-label-close-button", "ariaLabelCloseButton"], openedby: "openedby", closedby: "closedby", fullscreen: "fullscreen", fullscreenMobile: ["fullscreen--mobile", "fullscreenMobile"], fullscreenTablet: ["fullscreen--tablet", "fullscreenTablet"], fullscreenLaptop: ["fullscreen--laptop", "fullscreenLaptop"], fullscreenDesktop: ["fullscreen--desktop", "fullscreenDesktop"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
12263
|
+
}
|
|
12264
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, decorators: [{
|
|
12265
|
+
type: Directive,
|
|
12266
|
+
args: [{
|
|
12267
|
+
selector: 'px-drawer',
|
|
12268
|
+
}]
|
|
12269
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { open: [{
|
|
12270
|
+
type: Input
|
|
12271
|
+
}], ariaLabelCloseButton: [{
|
|
12272
|
+
type: Input,
|
|
12273
|
+
args: ['aria-label-close-button']
|
|
12274
|
+
}], openedby: [{
|
|
12275
|
+
type: Input
|
|
12276
|
+
}], closedby: [{
|
|
12277
|
+
type: Input
|
|
12278
|
+
}], fullscreen: [{
|
|
12279
|
+
type: Input
|
|
12280
|
+
}], fullscreenMobile: [{
|
|
12281
|
+
type: Input,
|
|
12282
|
+
args: ['fullscreen--mobile']
|
|
12283
|
+
}], fullscreenTablet: [{
|
|
12284
|
+
type: Input,
|
|
12285
|
+
args: ['fullscreen--tablet']
|
|
12286
|
+
}], fullscreenLaptop: [{
|
|
12287
|
+
type: Input,
|
|
12288
|
+
args: ['fullscreen--laptop']
|
|
12289
|
+
}], fullscreenDesktop: [{
|
|
12290
|
+
type: Input,
|
|
12291
|
+
args: ['fullscreen--desktop']
|
|
12292
|
+
}], HIDE_EVENT: [{
|
|
12293
|
+
type: Output
|
|
12294
|
+
}] } });
|
|
12295
12295
|
/**
|
|
12296
12296
|
* @description Type-only wrapper for <px-dropdown>
|
|
12297
12297
|
*/
|
|
@@ -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, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer,
|
|
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: [{
|
|
@@ -37956,8 +37956,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
37956
37956
|
PxColorOption,
|
|
37957
37957
|
PxColorOptionLink,
|
|
37958
37958
|
PxContainer,
|
|
37959
|
-
PxDrawer,
|
|
37960
37959
|
PxContentHeader,
|
|
37960
|
+
PxDrawer,
|
|
37961
37961
|
PxDropdown,
|
|
37962
37962
|
PxFieldset,
|
|
37963
37963
|
PxGrid,
|
|
@@ -38058,8 +38058,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
38058
38058
|
PxColorOption,
|
|
38059
38059
|
PxColorOptionLink,
|
|
38060
38060
|
PxContainer,
|
|
38061
|
-
PxDrawer,
|
|
38062
38061
|
PxContentHeader,
|
|
38062
|
+
PxDrawer,
|
|
38063
38063
|
PxDropdown,
|
|
38064
38064
|
PxFieldset,
|
|
38065
38065
|
PxGrid,
|