@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.
package/lavender.directive.d.ts
CHANGED
|
@@ -7353,6 +7353,32 @@ export declare class PxTag {
|
|
|
7353
7353
|
static ɵfac: i0.ɵɵFactoryDeclaration<PxTag, never>;
|
|
7354
7354
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PxTag, "px-tag", never, { "dismissible": { "alias": "dismissible"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "grow": { "alias": "grow"; "required": false; }; "growMobile": { "alias": "grow--mobile"; "required": false; }; "growTablet": { "alias": "grow--tablet"; "required": false; }; "growLaptop": { "alias": "grow--laptop"; "required": false; }; "growDesktop": { "alias": "grow--desktop"; "required": false; }; "shrink": { "alias": "shrink"; "required": false; }; "shrinkMobile": { "alias": "shrink--mobile"; "required": false; }; "shrinkTablet": { "alias": "shrink--tablet"; "required": false; }; "shrinkLaptop": { "alias": "shrink--laptop"; "required": false; }; "shrinkDesktop": { "alias": "shrink--desktop"; "required": false; }; "basis": { "alias": "basis"; "required": false; }; "basisMobile": { "alias": "basis--mobile"; "required": false; }; "basisTablet": { "alias": "basis--tablet"; "required": false; }; "basisLaptop": { "alias": "basis--laptop"; "required": false; }; "basisDesktop": { "alias": "basis--desktop"; "required": false; }; "alignSelf": { "alias": "align-self"; "required": false; }; "alignSelfMobile": { "alias": "align-self--mobile"; "required": false; }; "alignSelfTablet": { "alias": "align-self--tablet"; "required": false; }; "alignSelfLaptop": { "alias": "align-self--laptop"; "required": false; }; "alignSelfDesktop": { "alias": "align-self--desktop"; "required": false; }; "justifySelf": { "alias": "justify-self"; "required": false; }; "justifySelfMobile": { "alias": "justify-self--mobile"; "required": false; }; "justifySelfTablet": { "alias": "justify-self--tablet"; "required": false; }; "justifySelfLaptop": { "alias": "justify-self--laptop"; "required": false; }; "justifySelfDesktop": { "alias": "justify-self--desktop"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "hiddenMobile": { "alias": "hidden--mobile"; "required": false; }; "hiddenTablet": { "alias": "hidden--tablet"; "required": false; }; "hiddenLaptop": { "alias": "hidden--laptop"; "required": false; }; "hiddenDesktop": { "alias": "hidden--desktop"; "required": false; }; "shownSr": { "alias": "shown--sr"; "required": false; }; "shownSrMobile": { "alias": "shown--sr--mobile"; "required": false; }; "shownSrTablet": { "alias": "shown--sr--tablet"; "required": false; }; "shownSrLaptop": { "alias": "shown--sr--laptop"; "required": false; }; "shownSrDesktop": { "alias": "shown--sr--desktop"; "required": false; }; "colSpan": { "alias": "col-span"; "required": false; }; "colSpanMobile": { "alias": "col-span--mobile"; "required": false; }; "colSpanTablet": { "alias": "col-span--tablet"; "required": false; }; "colSpanLaptop": { "alias": "col-span--laptop"; "required": false; }; "colSpanDesktop": { "alias": "col-span--desktop"; "required": false; }; "order": { "alias": "order"; "required": false; }; "orderMobile": { "alias": "order--mobile"; "required": false; }; "orderTablet": { "alias": "order--tablet"; "required": false; }; "orderLaptop": { "alias": "order--laptop"; "required": false; }; "orderDesktop": { "alias": "order--desktop"; "required": false; }; }, {}, never, never, false, never>;
|
|
7355
7355
|
}
|
|
7356
|
+
/**
|
|
7357
|
+
* @description Type-only wrapper for <px-timeline>
|
|
7358
|
+
*/
|
|
7359
|
+
export declare class PxTimeline {
|
|
7360
|
+
private elementRef;
|
|
7361
|
+
set inverted(value: unknown);
|
|
7362
|
+
get inverted(): unknown;
|
|
7363
|
+
constructor(elementRef: ElementRef);
|
|
7364
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PxTimeline, never>;
|
|
7365
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PxTimeline, "px-timeline", never, { "inverted": { "alias": "inverted"; "required": false; }; }, {}, never, never, false, never>;
|
|
7366
|
+
}
|
|
7367
|
+
/**
|
|
7368
|
+
* @description Type-only wrapper for <px-timeline-item>
|
|
7369
|
+
*/
|
|
7370
|
+
export declare class PxTimelineItem {
|
|
7371
|
+
private elementRef;
|
|
7372
|
+
set inverted(value: unknown);
|
|
7373
|
+
get inverted(): unknown;
|
|
7374
|
+
set lastchild(value: unknown);
|
|
7375
|
+
get lastchild(): unknown;
|
|
7376
|
+
set item(value: unknown);
|
|
7377
|
+
get item(): unknown;
|
|
7378
|
+
constructor(elementRef: ElementRef);
|
|
7379
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PxTimelineItem, never>;
|
|
7380
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PxTimelineItem, "px-timeline-item", never, { "inverted": { "alias": "inverted"; "required": false; }; "lastchild": { "alias": "lastchild"; "required": false; }; "item": { "alias": "item"; "required": false; }; }, {}, never, never, false, never>;
|
|
7381
|
+
}
|
|
7356
7382
|
/**
|
|
7357
7383
|
* @description Type-only wrapper for <px-tile>
|
|
7358
7384
|
*/
|
|
@@ -8026,32 +8052,6 @@ export declare class PxTileSwitch {
|
|
|
8026
8052
|
static ɵfac: i0.ɵɵFactoryDeclaration<PxTileSwitch, never>;
|
|
8027
8053
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PxTileSwitch, "px-tile-switch", never, { "centerContent": { "alias": "center-content"; "required": false; }; "backgroundColor": { "alias": "background-color"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "grow": { "alias": "grow"; "required": false; }; "growMobile": { "alias": "grow--mobile"; "required": false; }; "growTablet": { "alias": "grow--tablet"; "required": false; }; "growLaptop": { "alias": "grow--laptop"; "required": false; }; "growDesktop": { "alias": "grow--desktop"; "required": false; }; "shrink": { "alias": "shrink"; "required": false; }; "shrinkMobile": { "alias": "shrink--mobile"; "required": false; }; "shrinkTablet": { "alias": "shrink--tablet"; "required": false; }; "shrinkLaptop": { "alias": "shrink--laptop"; "required": false; }; "shrinkDesktop": { "alias": "shrink--desktop"; "required": false; }; "basis": { "alias": "basis"; "required": false; }; "basisMobile": { "alias": "basis--mobile"; "required": false; }; "basisTablet": { "alias": "basis--tablet"; "required": false; }; "basisLaptop": { "alias": "basis--laptop"; "required": false; }; "basisDesktop": { "alias": "basis--desktop"; "required": false; }; "alignSelf": { "alias": "align-self"; "required": false; }; "alignSelfMobile": { "alias": "align-self--mobile"; "required": false; }; "alignSelfTablet": { "alias": "align-self--tablet"; "required": false; }; "alignSelfLaptop": { "alias": "align-self--laptop"; "required": false; }; "alignSelfDesktop": { "alias": "align-self--desktop"; "required": false; }; "justifySelf": { "alias": "justify-self"; "required": false; }; "justifySelfMobile": { "alias": "justify-self--mobile"; "required": false; }; "justifySelfTablet": { "alias": "justify-self--tablet"; "required": false; }; "justifySelfLaptop": { "alias": "justify-self--laptop"; "required": false; }; "justifySelfDesktop": { "alias": "justify-self--desktop"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "hiddenMobile": { "alias": "hidden--mobile"; "required": false; }; "hiddenTablet": { "alias": "hidden--tablet"; "required": false; }; "hiddenLaptop": { "alias": "hidden--laptop"; "required": false; }; "hiddenDesktop": { "alias": "hidden--desktop"; "required": false; }; "shownSr": { "alias": "shown--sr"; "required": false; }; "shownSrMobile": { "alias": "shown--sr--mobile"; "required": false; }; "shownSrTablet": { "alias": "shown--sr--tablet"; "required": false; }; "shownSrLaptop": { "alias": "shown--sr--laptop"; "required": false; }; "shownSrDesktop": { "alias": "shown--sr--desktop"; "required": false; }; "colSpan": { "alias": "col-span"; "required": false; }; "colSpanMobile": { "alias": "col-span--mobile"; "required": false; }; "colSpanTablet": { "alias": "col-span--tablet"; "required": false; }; "colSpanLaptop": { "alias": "col-span--laptop"; "required": false; }; "colSpanDesktop": { "alias": "col-span--desktop"; "required": false; }; "order": { "alias": "order"; "required": false; }; "orderMobile": { "alias": "order--mobile"; "required": false; }; "orderTablet": { "alias": "order--tablet"; "required": false; }; "orderLaptop": { "alias": "order--laptop"; "required": false; }; "orderDesktop": { "alias": "order--desktop"; "required": false; }; }, { "change": "change"; }, never, never, false, never>;
|
|
8028
8054
|
}
|
|
8029
|
-
/**
|
|
8030
|
-
* @description Type-only wrapper for <px-timeline>
|
|
8031
|
-
*/
|
|
8032
|
-
export declare class PxTimeline {
|
|
8033
|
-
private elementRef;
|
|
8034
|
-
set inverted(value: unknown);
|
|
8035
|
-
get inverted(): unknown;
|
|
8036
|
-
constructor(elementRef: ElementRef);
|
|
8037
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PxTimeline, never>;
|
|
8038
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PxTimeline, "px-timeline", never, { "inverted": { "alias": "inverted"; "required": false; }; }, {}, never, never, false, never>;
|
|
8039
|
-
}
|
|
8040
|
-
/**
|
|
8041
|
-
* @description Type-only wrapper for <px-timeline-item>
|
|
8042
|
-
*/
|
|
8043
|
-
export declare class PxTimelineItem {
|
|
8044
|
-
private elementRef;
|
|
8045
|
-
set inverted(value: unknown);
|
|
8046
|
-
get inverted(): unknown;
|
|
8047
|
-
set lastchild(value: unknown);
|
|
8048
|
-
get lastchild(): unknown;
|
|
8049
|
-
set item(value: unknown);
|
|
8050
|
-
get item(): unknown;
|
|
8051
|
-
constructor(elementRef: ElementRef);
|
|
8052
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PxTimelineItem, never>;
|
|
8053
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PxTimelineItem, "px-timeline-item", never, { "inverted": { "alias": "inverted"; "required": false; }; "lastchild": { "alias": "lastchild"; "required": false; }; "item": { "alias": "item"; "required": false; }; }, {}, never, never, false, never>;
|
|
8054
|
-
}
|
|
8055
8055
|
/**
|
|
8056
8056
|
* @description Type-only wrapper for <px-typography>
|
|
8057
8057
|
*/
|
|
@@ -8225,6 +8225,6 @@ export declare class PxScarletThemeProvider {
|
|
|
8225
8225
|
}
|
|
8226
8226
|
export declare class Lavender {
|
|
8227
8227
|
static ɵfac: i0.ɵɵFactoryDeclaration<Lavender, never>;
|
|
8228
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<Lavender, [typeof PxAccordion, typeof PxAgGridTable, typeof PxAgGridTableThButton, typeof PxAgGridTableThContent, typeof PxBanner, typeof PxBreadcrumbItem, typeof PxBreadcrumb, typeof PxButton, typeof PxButtonIcon, typeof PxCard, typeof PxAppleseed, typeof PxCarousel, typeof PxCarouselItem, typeof PxCell, typeof PxCellButton, typeof PxCellCheckbox, typeof PxCellLink, typeof PxCellRadio, typeof PxCellSwitch, typeof PxCheckbox, typeof PxColorOption, typeof PxColorOptionLink, typeof PxContainer, typeof PxContentHeader, typeof PxDrawer, typeof PxDropdown, typeof PxFieldset, typeof PxGrid, typeof PxH1, typeof PxH2, typeof PxH3, typeof PxH4, typeof PxH5, typeof PxH6, typeof PxHeadingGroup, typeof PxImg, typeof PxPicture, typeof PxInput, typeof PxSelect, typeof PxTextarea, typeof PxFileupload, typeof PxPage, typeof PxSpacer, typeof PxStack, typeof PxVstack, typeof PxHstack, typeof PxA, typeof PxList, typeof PxListItem, typeof PxModal, typeof PxP, typeof PxPillar, typeof PxPrice, typeof PxRadio, typeof PxRadioBase, typeof PxRadioGroup, typeof PxRibbon, typeof PxSection, typeof PxSelectableBox, typeof PxSelectableBoxCheckbox, typeof PxSelectableBoxRadio, typeof PxSeparator, typeof PxSkeleton, typeof PxSpan, typeof PxSpinner, typeof PxStatus, typeof PxStatusCard, typeof PxStickyContainer, typeof PxThemeSwitcher, typeof PxSwitch, typeof PxTable, typeof PxTbody, typeof PxTd, typeof PxTh, typeof PxThead, typeof PxTr, typeof PxTabs, typeof PxTab, typeof PxTabPanel, typeof PxTag, typeof
|
|
8228
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<Lavender, [typeof PxAccordion, typeof PxAgGridTable, typeof PxAgGridTableThButton, typeof PxAgGridTableThContent, typeof PxBanner, typeof PxBreadcrumbItem, typeof PxBreadcrumb, typeof PxButton, typeof PxButtonIcon, typeof PxCard, typeof PxAppleseed, typeof PxCarousel, typeof PxCarouselItem, typeof PxCell, typeof PxCellButton, typeof PxCellCheckbox, typeof PxCellLink, typeof PxCellRadio, typeof PxCellSwitch, typeof PxCheckbox, typeof PxColorOption, typeof PxColorOptionLink, typeof PxContainer, typeof PxContentHeader, typeof PxDrawer, typeof PxDropdown, typeof PxFieldset, typeof PxGrid, typeof PxH1, typeof PxH2, typeof PxH3, typeof PxH4, typeof PxH5, typeof PxH6, typeof PxHeadingGroup, typeof PxImg, typeof PxPicture, typeof PxInput, typeof PxSelect, typeof PxTextarea, typeof PxFileupload, typeof PxPage, typeof PxSpacer, typeof PxStack, typeof PxVstack, typeof PxHstack, typeof PxA, typeof PxList, typeof PxListItem, typeof PxModal, typeof PxP, typeof PxPillar, typeof PxPrice, typeof PxRadio, typeof PxRadioBase, typeof PxRadioGroup, typeof PxRibbon, typeof PxSection, typeof PxSelectableBox, typeof PxSelectableBoxCheckbox, typeof PxSelectableBoxRadio, typeof PxSeparator, typeof PxSkeleton, typeof PxSpan, typeof PxSpinner, typeof PxStatus, typeof PxStatusCard, typeof PxStickyContainer, typeof PxThemeSwitcher, typeof PxSwitch, typeof PxTable, typeof PxTbody, typeof PxTd, typeof PxTh, typeof PxThead, typeof PxTr, typeof PxTabs, typeof PxTab, typeof PxTabPanel, typeof PxTag, typeof PxTimeline, typeof PxTimelineItem, typeof PxTile, typeof PxTileButton, typeof PxTileCheckbox, typeof PxTileLink, typeof PxTileRadio, typeof PxTileSwitch, typeof PxTypography, typeof PxPatch, typeof PxIcon, typeof PxIconSet, typeof PxThemeProvider, typeof PxProximusThemeProvider, typeof PxScarletThemeProvider], never, [typeof PxAccordion, typeof PxAgGridTable, typeof PxAgGridTableThButton, typeof PxAgGridTableThContent, typeof PxBanner, typeof PxBreadcrumbItem, typeof PxBreadcrumb, typeof PxButton, typeof PxButtonIcon, typeof PxCard, typeof PxAppleseed, typeof PxCarousel, typeof PxCarouselItem, typeof PxCell, typeof PxCellButton, typeof PxCellCheckbox, typeof PxCellLink, typeof PxCellRadio, typeof PxCellSwitch, typeof PxCheckbox, typeof PxColorOption, typeof PxColorOptionLink, typeof PxContainer, typeof PxContentHeader, typeof PxDrawer, typeof PxDropdown, typeof PxFieldset, typeof PxGrid, typeof PxH1, typeof PxH2, typeof PxH3, typeof PxH4, typeof PxH5, typeof PxH6, typeof PxHeadingGroup, typeof PxImg, typeof PxPicture, typeof PxInput, typeof PxSelect, typeof PxTextarea, typeof PxFileupload, typeof PxPage, typeof PxSpacer, typeof PxStack, typeof PxVstack, typeof PxHstack, typeof PxA, typeof PxList, typeof PxListItem, typeof PxModal, typeof PxP, typeof PxPillar, typeof PxPrice, typeof PxRadio, typeof PxRadioBase, typeof PxRadioGroup, typeof PxRibbon, typeof PxSection, typeof PxSelectableBox, typeof PxSelectableBoxCheckbox, typeof PxSelectableBoxRadio, typeof PxSeparator, typeof PxSkeleton, typeof PxSpan, typeof PxSpinner, typeof PxStatus, typeof PxStatusCard, typeof PxStickyContainer, typeof PxThemeSwitcher, typeof PxSwitch, typeof PxTable, typeof PxTbody, typeof PxTd, typeof PxTh, typeof PxThead, typeof PxTr, typeof PxTabs, typeof PxTab, typeof PxTabPanel, typeof PxTag, typeof PxTimeline, typeof PxTimelineItem, typeof PxTile, typeof PxTileButton, typeof PxTileCheckbox, typeof PxTileLink, typeof PxTileRadio, typeof PxTileSwitch, typeof PxTypography, typeof PxPatch, typeof PxIcon, typeof PxIconSet, typeof PxThemeProvider, typeof PxProximusThemeProvider, typeof PxScarletThemeProvider]>;
|
|
8229
8229
|
static ɵinj: i0.ɵɵInjectorDeclaration<Lavender>;
|
|
8230
8230
|
}
|