@proximus/lavender-angular 1.4.4-beta.1 → 1.4.4-beta.3
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.
|
@@ -22572,6 +22572,18 @@ class PxModal {
|
|
|
22572
22572
|
get openedby() {
|
|
22573
22573
|
return this.elementRef.nativeElement['openedby'];
|
|
22574
22574
|
}
|
|
22575
|
+
set closedby(value) {
|
|
22576
|
+
this.elementRef.nativeElement['closedby'] = value;
|
|
22577
|
+
}
|
|
22578
|
+
get closedby() {
|
|
22579
|
+
return this.elementRef.nativeElement['closedby'];
|
|
22580
|
+
}
|
|
22581
|
+
set id(value) {
|
|
22582
|
+
this.elementRef.nativeElement['id'] = value;
|
|
22583
|
+
}
|
|
22584
|
+
get id() {
|
|
22585
|
+
return this.elementRef.nativeElement['id'];
|
|
22586
|
+
}
|
|
22575
22587
|
CLOSE_EVENT = new EventEmitter();
|
|
22576
22588
|
constructor(elementRef) {
|
|
22577
22589
|
this.elementRef = elementRef;
|
|
@@ -22580,7 +22592,7 @@ class PxModal {
|
|
|
22580
22592
|
});
|
|
22581
22593
|
}
|
|
22582
22594
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxModal, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22583
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxModal, selector: "px-modal", inputs: { open: "open", status: "status", mediaSrc: ["media-src", "mediaSrc"], openedby: "openedby" }, outputs: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
22595
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxModal, selector: "px-modal", inputs: { open: "open", status: "status", mediaSrc: ["media-src", "mediaSrc"], openedby: "openedby", closedby: "closedby", id: "id" }, outputs: { CLOSE_EVENT: "CLOSE_EVENT" }, ngImport: i0 });
|
|
22584
22596
|
}
|
|
22585
22597
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxModal, decorators: [{
|
|
22586
22598
|
type: Directive,
|
|
@@ -22596,6 +22608,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
22596
22608
|
args: ['media-src']
|
|
22597
22609
|
}], openedby: [{
|
|
22598
22610
|
type: Input
|
|
22611
|
+
}], closedby: [{
|
|
22612
|
+
type: Input
|
|
22613
|
+
}], id: [{
|
|
22614
|
+
type: Input
|
|
22599
22615
|
}], CLOSE_EVENT: [{
|
|
22600
22616
|
type: Output
|
|
22601
22617
|
}] } });
|
|
@@ -28348,6 +28364,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28348
28364
|
type: Input,
|
|
28349
28365
|
args: ['order--desktop']
|
|
28350
28366
|
}] } });
|
|
28367
|
+
/**
|
|
28368
|
+
* @description Type-only wrapper for <px-spinner>
|
|
28369
|
+
*/
|
|
28370
|
+
class PxSpinner {
|
|
28371
|
+
elementRef;
|
|
28372
|
+
set size(value) {
|
|
28373
|
+
this.elementRef.nativeElement['size'] = value;
|
|
28374
|
+
}
|
|
28375
|
+
get size() {
|
|
28376
|
+
return this.elementRef.nativeElement['size'];
|
|
28377
|
+
}
|
|
28378
|
+
set inverted(value) {
|
|
28379
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
28380
|
+
}
|
|
28381
|
+
get inverted() {
|
|
28382
|
+
return this.elementRef.nativeElement['inverted'];
|
|
28383
|
+
}
|
|
28384
|
+
set timeout(value) {
|
|
28385
|
+
this.elementRef.nativeElement['timeout'] = value;
|
|
28386
|
+
}
|
|
28387
|
+
get timeout() {
|
|
28388
|
+
return this.elementRef.nativeElement['timeout'];
|
|
28389
|
+
}
|
|
28390
|
+
set ariaLabel(value) {
|
|
28391
|
+
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
28392
|
+
}
|
|
28393
|
+
get ariaLabel() {
|
|
28394
|
+
return this.elementRef.nativeElement['ariaLabel'];
|
|
28395
|
+
}
|
|
28396
|
+
constructor(elementRef) {
|
|
28397
|
+
this.elementRef = elementRef;
|
|
28398
|
+
}
|
|
28399
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28400
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpinner, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
28401
|
+
}
|
|
28402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, decorators: [{
|
|
28403
|
+
type: Directive,
|
|
28404
|
+
args: [{
|
|
28405
|
+
selector: 'px-spinner',
|
|
28406
|
+
}]
|
|
28407
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
28408
|
+
type: Input
|
|
28409
|
+
}], inverted: [{
|
|
28410
|
+
type: Input
|
|
28411
|
+
}], timeout: [{
|
|
28412
|
+
type: Input
|
|
28413
|
+
}], ariaLabel: [{
|
|
28414
|
+
type: Input,
|
|
28415
|
+
args: ['aria-label']
|
|
28416
|
+
}] } });
|
|
28351
28417
|
/**
|
|
28352
28418
|
* @description Type-only wrapper for <px-span>
|
|
28353
28419
|
*/
|
|
@@ -28383,6 +28449,12 @@ class PxSpan {
|
|
|
28383
28449
|
get disabled() {
|
|
28384
28450
|
return this.elementRef.nativeElement['disabled'];
|
|
28385
28451
|
}
|
|
28452
|
+
set strikethrough(value) {
|
|
28453
|
+
this.elementRef.nativeElement['strikethrough'] = value;
|
|
28454
|
+
}
|
|
28455
|
+
get strikethrough() {
|
|
28456
|
+
return this.elementRef.nativeElement['strikethrough'];
|
|
28457
|
+
}
|
|
28386
28458
|
set grow(value) {
|
|
28387
28459
|
this.elementRef.nativeElement['grow'] = value;
|
|
28388
28460
|
}
|
|
@@ -28657,7 +28729,7 @@ class PxSpan {
|
|
|
28657
28729
|
this.elementRef = elementRef;
|
|
28658
28730
|
}
|
|
28659
28731
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpan, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28660
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpan, selector: "px-span", inputs: { color: "color", fontSize: ["font-size", "fontSize"], fontWeight: ["font-weight", "fontWeight"], inverted: "inverted", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
28732
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpan, selector: "px-span", inputs: { color: "color", fontSize: ["font-size", "fontSize"], fontWeight: ["font-weight", "fontWeight"], inverted: "inverted", disabled: "disabled", strikethrough: "strikethrough", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"] }, ngImport: i0 });
|
|
28661
28733
|
}
|
|
28662
28734
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpan, decorators: [{
|
|
28663
28735
|
type: Directive,
|
|
@@ -28676,6 +28748,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28676
28748
|
type: Input
|
|
28677
28749
|
}], disabled: [{
|
|
28678
28750
|
type: Input
|
|
28751
|
+
}], strikethrough: [{
|
|
28752
|
+
type: Input
|
|
28679
28753
|
}], grow: [{
|
|
28680
28754
|
type: Input
|
|
28681
28755
|
}], growMobile: [{
|
|
@@ -28807,56 +28881,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
28807
28881
|
type: Input,
|
|
28808
28882
|
args: ['order--desktop']
|
|
28809
28883
|
}] } });
|
|
28810
|
-
/**
|
|
28811
|
-
* @description Type-only wrapper for <px-spinner>
|
|
28812
|
-
*/
|
|
28813
|
-
class PxSpinner {
|
|
28814
|
-
elementRef;
|
|
28815
|
-
set size(value) {
|
|
28816
|
-
this.elementRef.nativeElement['size'] = value;
|
|
28817
|
-
}
|
|
28818
|
-
get size() {
|
|
28819
|
-
return this.elementRef.nativeElement['size'];
|
|
28820
|
-
}
|
|
28821
|
-
set inverted(value) {
|
|
28822
|
-
this.elementRef.nativeElement['inverted'] = value;
|
|
28823
|
-
}
|
|
28824
|
-
get inverted() {
|
|
28825
|
-
return this.elementRef.nativeElement['inverted'];
|
|
28826
|
-
}
|
|
28827
|
-
set timeout(value) {
|
|
28828
|
-
this.elementRef.nativeElement['timeout'] = value;
|
|
28829
|
-
}
|
|
28830
|
-
get timeout() {
|
|
28831
|
-
return this.elementRef.nativeElement['timeout'];
|
|
28832
|
-
}
|
|
28833
|
-
set ariaLabel(value) {
|
|
28834
|
-
this.elementRef.nativeElement['ariaLabel'] = value;
|
|
28835
|
-
}
|
|
28836
|
-
get ariaLabel() {
|
|
28837
|
-
return this.elementRef.nativeElement['ariaLabel'];
|
|
28838
|
-
}
|
|
28839
|
-
constructor(elementRef) {
|
|
28840
|
-
this.elementRef = elementRef;
|
|
28841
|
-
}
|
|
28842
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28843
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSpinner, selector: "px-spinner", inputs: { size: "size", inverted: "inverted", timeout: "timeout", ariaLabel: ["aria-label", "ariaLabel"] }, ngImport: i0 });
|
|
28844
|
-
}
|
|
28845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSpinner, decorators: [{
|
|
28846
|
-
type: Directive,
|
|
28847
|
-
args: [{
|
|
28848
|
-
selector: 'px-spinner',
|
|
28849
|
-
}]
|
|
28850
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
28851
|
-
type: Input
|
|
28852
|
-
}], inverted: [{
|
|
28853
|
-
type: Input
|
|
28854
|
-
}], timeout: [{
|
|
28855
|
-
type: Input
|
|
28856
|
-
}], ariaLabel: [{
|
|
28857
|
-
type: Input,
|
|
28858
|
-
args: ['aria-label']
|
|
28859
|
-
}] } });
|
|
28860
28884
|
/**
|
|
28861
28885
|
* @description Type-only wrapper for <px-status>
|
|
28862
28886
|
*/
|
|
@@ -34441,7 +34465,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34441
34465
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
34442
34466
|
class Lavender {
|
|
34443
34467
|
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,
|
|
34468
|
+
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, PxSpinner, PxSpan, 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, 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, PxSpinner, PxSpan, 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] });
|
|
34445
34469
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender });
|
|
34446
34470
|
}
|
|
34447
34471
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -34511,8 +34535,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34511
34535
|
PxSelectableBoxRadio,
|
|
34512
34536
|
PxSeparator,
|
|
34513
34537
|
PxSkeleton,
|
|
34514
|
-
PxSpan,
|
|
34515
34538
|
PxSpinner,
|
|
34539
|
+
PxSpan,
|
|
34516
34540
|
PxStatus,
|
|
34517
34541
|
PxStatusCard,
|
|
34518
34542
|
PxStickyContainer,
|
|
@@ -34608,8 +34632,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
34608
34632
|
PxSelectableBoxRadio,
|
|
34609
34633
|
PxSeparator,
|
|
34610
34634
|
PxSkeleton,
|
|
34611
|
-
PxSpan,
|
|
34612
34635
|
PxSpinner,
|
|
34636
|
+
PxSpan,
|
|
34613
34637
|
PxStatus,
|
|
34614
34638
|
PxStatusCard,
|
|
34615
34639
|
PxStickyContainer,
|