@paperless/angular 0.1.0-alpha.184 → 0.1.0-alpha.186
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/esm2020/lib/paperless.module.mjs +1 -1
- package/esm2020/lib/stencil/components.mjs +63 -35
- package/esm2020/lib/stencil/index.mjs +3 -2
- package/fesm2015/paperless-angular.mjs +64 -36
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +64 -36
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/paperless.module.d.ts +1 -1
- package/lib/stencil/components.d.ts +29 -12
- package/lib/stencil/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -910,11 +910,11 @@ let PDropdown = class PDropdown {
|
|
|
910
910
|
}
|
|
911
911
|
};
|
|
912
912
|
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
913
|
-
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PDropdown, selector: "p-dropdown", inputs: { chevronDirection: "chevronDirection", chevronPosition: "chevronPosition", disableTriggerClick: "disableTriggerClick", insideClick: "insideClick", placement: "placement", show: "show", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
913
|
+
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PDropdown, selector: "p-dropdown", inputs: { calculateWidth: "calculateWidth", chevronDirection: "chevronDirection", chevronPosition: "chevronPosition", disableTriggerClick: "disableTriggerClick", insideClick: "insideClick", placement: "placement", show: "show", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
914
914
|
PDropdown = __decorate([
|
|
915
915
|
ProxyCmp({
|
|
916
916
|
defineCustomElementFn: undefined,
|
|
917
|
-
inputs: ['chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
917
|
+
inputs: ['calculateWidth', 'chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
918
918
|
})
|
|
919
919
|
], PDropdown);
|
|
920
920
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PDropdown, decorators: [{
|
|
@@ -923,7 +923,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
923
923
|
selector: 'p-dropdown',
|
|
924
924
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
925
925
|
template: '<ng-content></ng-content>',
|
|
926
|
-
inputs: ['chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
926
|
+
inputs: ['calculateWidth', 'chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
927
927
|
}]
|
|
928
928
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
929
929
|
let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
@@ -934,10 +934,11 @@ let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
|
934
934
|
}
|
|
935
935
|
};
|
|
936
936
|
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PDropdownMenuContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
937
|
-
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PDropdownMenuContainer, selector: "p-dropdown-menu-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
937
|
+
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PDropdownMenuContainer, selector: "p-dropdown-menu-container", inputs: { maxWidth: "maxWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
938
938
|
PDropdownMenuContainer = __decorate([
|
|
939
939
|
ProxyCmp({
|
|
940
|
-
defineCustomElementFn: undefined
|
|
940
|
+
defineCustomElementFn: undefined,
|
|
941
|
+
inputs: ['maxWidth']
|
|
941
942
|
})
|
|
942
943
|
], PDropdownMenuContainer);
|
|
943
944
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
|
|
@@ -945,7 +946,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
945
946
|
args: [{
|
|
946
947
|
selector: 'p-dropdown-menu-container',
|
|
947
948
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
948
|
-
template: '<ng-content></ng-content>'
|
|
949
|
+
template: '<ng-content></ng-content>',
|
|
950
|
+
inputs: ['maxWidth']
|
|
949
951
|
}]
|
|
950
952
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
951
953
|
let PDropdownMenuItem = class PDropdownMenuItem {
|
|
@@ -1076,11 +1078,11 @@ let PInputGroup = class PInputGroup {
|
|
|
1076
1078
|
}
|
|
1077
1079
|
};
|
|
1078
1080
|
PInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1079
|
-
PInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PInputGroup, selector: "p-input-group", inputs: { disabled: "disabled", error: "error", focused: "focused", helper: "helper", icon: "icon", iconFlip: "iconFlip", iconRotate: "iconRotate", label: "label", prefix: "prefix", size: "size", suffix: "suffix" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1081
|
+
PInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PInputGroup, selector: "p-input-group", inputs: { disabled: "disabled", error: "error", focused: "focused", helper: "helper", icon: "icon", iconFlip: "iconFlip", iconPosition: "iconPosition", iconRotate: "iconRotate", label: "label", prefix: "prefix", size: "size", suffix: "suffix" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1080
1082
|
PInputGroup = __decorate([
|
|
1081
1083
|
ProxyCmp({
|
|
1082
1084
|
defineCustomElementFn: undefined,
|
|
1083
|
-
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'size', 'suffix']
|
|
1085
|
+
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'label', 'prefix', 'size', 'suffix']
|
|
1084
1086
|
})
|
|
1085
1087
|
], PInputGroup);
|
|
1086
1088
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PInputGroup, decorators: [{
|
|
@@ -1089,7 +1091,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
1089
1091
|
selector: 'p-input-group',
|
|
1090
1092
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1091
1093
|
template: '<ng-content></ng-content>',
|
|
1092
|
-
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'size', 'suffix']
|
|
1094
|
+
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'label', 'prefix', 'size', 'suffix']
|
|
1095
|
+
}]
|
|
1096
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1097
|
+
let PLabel = class PLabel {
|
|
1098
|
+
constructor(c, r, z) {
|
|
1099
|
+
this.z = z;
|
|
1100
|
+
c.detach();
|
|
1101
|
+
this.el = r.nativeElement;
|
|
1102
|
+
}
|
|
1103
|
+
};
|
|
1104
|
+
PLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1105
|
+
PLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PLabel, selector: "p-label", inputs: { circle: "circle", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1106
|
+
PLabel = __decorate([
|
|
1107
|
+
ProxyCmp({
|
|
1108
|
+
defineCustomElementFn: undefined,
|
|
1109
|
+
inputs: ['circle', 'size', 'variant']
|
|
1110
|
+
})
|
|
1111
|
+
], PLabel);
|
|
1112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PLabel, decorators: [{
|
|
1113
|
+
type: Component,
|
|
1114
|
+
args: [{
|
|
1115
|
+
selector: 'p-label',
|
|
1116
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1117
|
+
template: '<ng-content></ng-content>',
|
|
1118
|
+
inputs: ['circle', 'size', 'variant']
|
|
1093
1119
|
}]
|
|
1094
1120
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1095
1121
|
let PLayout = class PLayout {
|
|
@@ -1476,6 +1502,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
1476
1502
|
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
1477
1503
|
}]
|
|
1478
1504
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1505
|
+
let PSelect = class PSelect {
|
|
1506
|
+
constructor(c, r, z) {
|
|
1507
|
+
this.z = z;
|
|
1508
|
+
c.detach();
|
|
1509
|
+
this.el = r.nativeElement;
|
|
1510
|
+
proxyOutputs(this, this.el, ['queryChange', 'valueChange']);
|
|
1511
|
+
}
|
|
1512
|
+
};
|
|
1513
|
+
PSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1514
|
+
PSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PSelect, selector: "p-select", inputs: { autoSelectFirst: "autoSelectFirst", autocompletePlaceholder: "autocompletePlaceholder", displayKey: "displayKey", enableAutocomplete: "enableAutocomplete", items: "items", placeholder: "placeholder", query: "query", queryKey: "queryKey", value: "value", valueKey: "valueKey" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1515
|
+
PSelect = __decorate([
|
|
1516
|
+
ProxyCmp({
|
|
1517
|
+
defineCustomElementFn: undefined,
|
|
1518
|
+
inputs: ['autoSelectFirst', 'autocompletePlaceholder', 'displayKey', 'enableAutocomplete', 'items', 'placeholder', 'query', 'queryKey', 'value', 'valueKey']
|
|
1519
|
+
})
|
|
1520
|
+
], PSelect);
|
|
1521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PSelect, decorators: [{
|
|
1522
|
+
type: Component,
|
|
1523
|
+
args: [{
|
|
1524
|
+
selector: 'p-select',
|
|
1525
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1526
|
+
template: '<ng-content></ng-content>',
|
|
1527
|
+
inputs: ['autoSelectFirst', 'autocompletePlaceholder', 'displayKey', 'enableAutocomplete', 'items', 'placeholder', 'query', 'queryKey', 'value', 'valueKey']
|
|
1528
|
+
}]
|
|
1529
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1479
1530
|
let PSliderIndicator = class PSliderIndicator {
|
|
1480
1531
|
constructor(c, r, z) {
|
|
1481
1532
|
this.z = z;
|
|
@@ -1692,30 +1743,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
1692
1743
|
inputs: ['activeQuickFilterIdentifier', 'canEdit', 'editButtonTemplate', 'enableEdit', 'enableFilter', 'enableSearch', 'filterButtonTemplate', 'itemsSelectedAmount', 'query', 'quickFilters', 'selectedFiltersAmount']
|
|
1693
1744
|
}]
|
|
1694
1745
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1695
|
-
let PTag = class PTag {
|
|
1696
|
-
constructor(c, r, z) {
|
|
1697
|
-
this.z = z;
|
|
1698
|
-
c.detach();
|
|
1699
|
-
this.el = r.nativeElement;
|
|
1700
|
-
}
|
|
1701
|
-
};
|
|
1702
|
-
PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1703
|
-
PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PTag, selector: "p-tag", inputs: { circle: "circle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1704
|
-
PTag = __decorate([
|
|
1705
|
-
ProxyCmp({
|
|
1706
|
-
defineCustomElementFn: undefined,
|
|
1707
|
-
inputs: ['circle', 'variant']
|
|
1708
|
-
})
|
|
1709
|
-
], PTag);
|
|
1710
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTag, decorators: [{
|
|
1711
|
-
type: Component,
|
|
1712
|
-
args: [{
|
|
1713
|
-
selector: 'p-tag',
|
|
1714
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1715
|
-
template: '<ng-content></ng-content>',
|
|
1716
|
-
inputs: ['circle', 'variant']
|
|
1717
|
-
}]
|
|
1718
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1719
1746
|
let PTooltip = class PTooltip {
|
|
1720
1747
|
constructor(c, r, z) {
|
|
1721
1748
|
this.z = z;
|
|
@@ -1761,6 +1788,7 @@ const DIRECTIVES = [
|
|
|
1761
1788
|
PIllustration,
|
|
1762
1789
|
PInfoPanel,
|
|
1763
1790
|
PInputGroup,
|
|
1791
|
+
PLabel,
|
|
1764
1792
|
PLayout,
|
|
1765
1793
|
PLoader,
|
|
1766
1794
|
PModal,
|
|
@@ -1777,6 +1805,7 @@ const DIRECTIVES = [
|
|
|
1777
1805
|
PProfile,
|
|
1778
1806
|
PSegmentContainer,
|
|
1779
1807
|
PSegmentItem,
|
|
1808
|
+
PSelect,
|
|
1780
1809
|
PSliderIndicator,
|
|
1781
1810
|
PStatus,
|
|
1782
1811
|
PStepper,
|
|
@@ -1786,14 +1815,13 @@ const DIRECTIVES = [
|
|
|
1786
1815
|
PTabItem,
|
|
1787
1816
|
PTableFooter,
|
|
1788
1817
|
PTableHeader,
|
|
1789
|
-
PTag,
|
|
1790
1818
|
PTooltip
|
|
1791
1819
|
];
|
|
1792
1820
|
|
|
1793
1821
|
class PaperlessModule {
|
|
1794
1822
|
}
|
|
1795
1823
|
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1796
|
-
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule, declarations: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableFooter, PTableHeader,
|
|
1824
|
+
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule, declarations: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableFooter, PTableHeader, PTooltip, PaginationDirective, PageSizeSelectDirective, TableFooterDirective, TableHeaderDirective, TableDirective], exports: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableFooter, PTableHeader, PTooltip, PaginationDirective, PageSizeSelectDirective, TableFooterDirective, TableHeaderDirective, TableDirective] });
|
|
1797
1825
|
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule });
|
|
1798
1826
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule, decorators: [{
|
|
1799
1827
|
type: NgModule,
|
|
@@ -1811,5 +1839,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
1811
1839
|
* Generated bundle index. Do not edit.
|
|
1812
1840
|
*/
|
|
1813
1841
|
|
|
1814
|
-
export { BaseTableComponent, BaseUploadComponent, BaseValueAccessor, CUSTOM_DIRECTIVES, FormBaseComponent, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableFooter, PTableHeader,
|
|
1842
|
+
export { BaseTableComponent, BaseUploadComponent, BaseValueAccessor, CUSTOM_DIRECTIVES, FormBaseComponent, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableFooter, PTableHeader, PTooltip, PageSizeSelectDirective, PaginationDirective, PaperlessModule, TableDirective, TableFooterDirective, TableHeaderDirective };
|
|
1815
1843
|
//# sourceMappingURL=paperless-angular.mjs.map
|