@proximus/lavender-angular 1.4.4-alpha.11 → 1.4.4-alpha.12
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.
|
@@ -30943,6 +30943,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
30943
30943
|
type: Input,
|
|
30944
30944
|
args: ['order--desktop']
|
|
30945
30945
|
}] } });
|
|
30946
|
+
/**
|
|
30947
|
+
* @description Type-only wrapper for <px-timeline>
|
|
30948
|
+
*/
|
|
30949
|
+
class PxTimeline {
|
|
30950
|
+
elementRef;
|
|
30951
|
+
set inverted(value) {
|
|
30952
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
30953
|
+
}
|
|
30954
|
+
get inverted() {
|
|
30955
|
+
return this.elementRef.nativeElement['inverted'];
|
|
30956
|
+
}
|
|
30957
|
+
constructor(elementRef) {
|
|
30958
|
+
this.elementRef = elementRef;
|
|
30959
|
+
}
|
|
30960
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTimeline, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30961
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTimeline, selector: "px-timeline", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
30962
|
+
}
|
|
30963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTimeline, decorators: [{
|
|
30964
|
+
type: Directive,
|
|
30965
|
+
args: [{
|
|
30966
|
+
selector: 'px-timeline',
|
|
30967
|
+
}]
|
|
30968
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
30969
|
+
type: Input
|
|
30970
|
+
}] } });
|
|
30971
|
+
/**
|
|
30972
|
+
* @description Type-only wrapper for <px-timeline-item>
|
|
30973
|
+
*/
|
|
30974
|
+
class PxTimelineItem {
|
|
30975
|
+
elementRef;
|
|
30976
|
+
set inverted(value) {
|
|
30977
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
30978
|
+
}
|
|
30979
|
+
get inverted() {
|
|
30980
|
+
return this.elementRef.nativeElement['inverted'];
|
|
30981
|
+
}
|
|
30982
|
+
set lastchild(value) {
|
|
30983
|
+
this.elementRef.nativeElement['lastchild'] = value;
|
|
30984
|
+
}
|
|
30985
|
+
get lastchild() {
|
|
30986
|
+
return this.elementRef.nativeElement['lastchild'];
|
|
30987
|
+
}
|
|
30988
|
+
set item(value) {
|
|
30989
|
+
this.elementRef.nativeElement['item'] = value;
|
|
30990
|
+
}
|
|
30991
|
+
get item() {
|
|
30992
|
+
return this.elementRef.nativeElement['item'];
|
|
30993
|
+
}
|
|
30994
|
+
constructor(elementRef) {
|
|
30995
|
+
this.elementRef = elementRef;
|
|
30996
|
+
}
|
|
30997
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTimelineItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30998
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTimelineItem, selector: "px-timeline-item", inputs: { inverted: "inverted", lastchild: "lastchild", item: "item" }, ngImport: i0 });
|
|
30999
|
+
}
|
|
31000
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTimelineItem, decorators: [{
|
|
31001
|
+
type: Directive,
|
|
31002
|
+
args: [{
|
|
31003
|
+
selector: 'px-timeline-item',
|
|
31004
|
+
}]
|
|
31005
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
31006
|
+
type: Input
|
|
31007
|
+
}], lastchild: [{
|
|
31008
|
+
type: Input
|
|
31009
|
+
}], item: [{
|
|
31010
|
+
type: Input
|
|
31011
|
+
}] } });
|
|
30946
31012
|
/**
|
|
30947
31013
|
* @description Type-only wrapper for <px-tile>
|
|
30948
31014
|
*/
|
|
@@ -33782,72 +33848,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
33782
33848
|
}], change: [{
|
|
33783
33849
|
type: Output
|
|
33784
33850
|
}] } });
|
|
33785
|
-
/**
|
|
33786
|
-
* @description Type-only wrapper for <px-timeline>
|
|
33787
|
-
*/
|
|
33788
|
-
class PxTimeline {
|
|
33789
|
-
elementRef;
|
|
33790
|
-
set inverted(value) {
|
|
33791
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
33792
|
-
}
|
|
33793
|
-
get inverted() {
|
|
33794
|
-
return this.elementRef.nativeElement['inverted'];
|
|
33795
|
-
}
|
|
33796
|
-
constructor(elementRef) {
|
|
33797
|
-
this.elementRef = elementRef;
|
|
33798
|
-
}
|
|
33799
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTimeline, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33800
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTimeline, selector: "px-timeline", inputs: { inverted: "inverted" }, ngImport: i0 });
|
|
33801
|
-
}
|
|
33802
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTimeline, decorators: [{
|
|
33803
|
-
type: Directive,
|
|
33804
|
-
args: [{
|
|
33805
|
-
selector: 'px-timeline',
|
|
33806
|
-
}]
|
|
33807
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
33808
|
-
type: Input
|
|
33809
|
-
}] } });
|
|
33810
|
-
/**
|
|
33811
|
-
* @description Type-only wrapper for <px-timeline-item>
|
|
33812
|
-
*/
|
|
33813
|
-
class PxTimelineItem {
|
|
33814
|
-
elementRef;
|
|
33815
|
-
set inverted(value) {
|
|
33816
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
33817
|
-
}
|
|
33818
|
-
get inverted() {
|
|
33819
|
-
return this.elementRef.nativeElement['inverted'];
|
|
33820
|
-
}
|
|
33821
|
-
set lastchild(value) {
|
|
33822
|
-
this.elementRef.nativeElement['lastchild'] = value;
|
|
33823
|
-
}
|
|
33824
|
-
get lastchild() {
|
|
33825
|
-
return this.elementRef.nativeElement['lastchild'];
|
|
33826
|
-
}
|
|
33827
|
-
set item(value) {
|
|
33828
|
-
this.elementRef.nativeElement['item'] = value;
|
|
33829
|
-
}
|
|
33830
|
-
get item() {
|
|
33831
|
-
return this.elementRef.nativeElement['item'];
|
|
33832
|
-
}
|
|
33833
|
-
constructor(elementRef) {
|
|
33834
|
-
this.elementRef = elementRef;
|
|
33835
|
-
}
|
|
33836
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTimelineItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33837
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxTimelineItem, selector: "px-timeline-item", inputs: { inverted: "inverted", lastchild: "lastchild", item: "item" }, ngImport: i0 });
|
|
33838
|
-
}
|
|
33839
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxTimelineItem, decorators: [{
|
|
33840
|
-
type: Directive,
|
|
33841
|
-
args: [{
|
|
33842
|
-
selector: 'px-timeline-item',
|
|
33843
|
-
}]
|
|
33844
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { inverted: [{
|
|
33845
|
-
type: Input
|
|
33846
|
-
}], lastchild: [{
|
|
33847
|
-
type: Input
|
|
33848
|
-
}], item: [{
|
|
33849
|
-
type: Input
|
|
33850
|
-
}] } });
|
|
33851
33851
|
/**
|
|
33852
33852
|
* @description Type-only wrapper for <px-typography>
|
|
33853
33853
|
*/
|
|
@@ -34441,7 +34441,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34441
34441
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
34442
34442
|
class Lavender {
|
|
34443
34443
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
34444
|
-
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, 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, PxList, PxListItem, PxModal, PxP, PxPillar, 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,
|
|
34444
|
+
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, 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, PxList, PxListItem, PxModal, PxP, PxPillar, 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, PxTimeline, PxTimelineItem, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, 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, PxList, PxListItem, PxModal, PxP, PxPillar, 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, PxTimeline, PxTimelineItem, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
34445
34445
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
34446
34446
|
}
|
|
34447
34447
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -34528,14 +34528,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34528
34528
|
PxTab,
|
|
34529
34529
|
PxTabPanel,
|
|
34530
34530
|
PxTag,
|
|
34531
|
+
PxTimeline,
|
|
34532
|
+
PxTimelineItem,
|
|
34531
34533
|
PxTile,
|
|
34532
34534
|
PxTileButton,
|
|
34533
34535
|
PxTileCheckbox,
|
|
34534
34536
|
PxTileLink,
|
|
34535
34537
|
PxTileRadio,
|
|
34536
34538
|
PxTileSwitch,
|
|
34537
|
-
PxTimeline,
|
|
34538
|
-
PxTimelineItem,
|
|
34539
34539
|
PxTypography,
|
|
34540
34540
|
PxPatch,
|
|
34541
34541
|
PxIcon,
|
|
@@ -34625,14 +34625,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34625
34625
|
PxTab,
|
|
34626
34626
|
PxTabPanel,
|
|
34627
34627
|
PxTag,
|
|
34628
|
+
PxTimeline,
|
|
34629
|
+
PxTimelineItem,
|
|
34628
34630
|
PxTile,
|
|
34629
34631
|
PxTileButton,
|
|
34630
34632
|
PxTileCheckbox,
|
|
34631
34633
|
PxTileLink,
|
|
34632
34634
|
PxTileRadio,
|
|
34633
34635
|
PxTileSwitch,
|
|
34634
|
-
PxTimeline,
|
|
34635
|
-
PxTimelineItem,
|
|
34636
34636
|
PxTypography,
|
|
34637
34637
|
PxPatch,
|
|
34638
34638
|
PxIcon,
|