@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
|
@@ -919,11 +919,11 @@ let PDropdown = class PDropdown {
|
|
|
919
919
|
}
|
|
920
920
|
};
|
|
921
921
|
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 });
|
|
922
|
-
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 });
|
|
922
|
+
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 });
|
|
923
923
|
PDropdown = __decorate([
|
|
924
924
|
ProxyCmp({
|
|
925
925
|
defineCustomElementFn: undefined,
|
|
926
|
-
inputs: ['chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
926
|
+
inputs: ['calculateWidth', 'chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
927
927
|
})
|
|
928
928
|
], PDropdown);
|
|
929
929
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PDropdown, decorators: [{
|
|
@@ -932,7 +932,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
932
932
|
selector: 'p-dropdown',
|
|
933
933
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
934
934
|
template: '<ng-content></ng-content>',
|
|
935
|
-
inputs: ['chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
935
|
+
inputs: ['calculateWidth', 'chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
936
936
|
}]
|
|
937
937
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
938
938
|
let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
@@ -943,10 +943,11 @@ let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
|
943
943
|
}
|
|
944
944
|
};
|
|
945
945
|
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 });
|
|
946
|
-
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 });
|
|
946
|
+
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 });
|
|
947
947
|
PDropdownMenuContainer = __decorate([
|
|
948
948
|
ProxyCmp({
|
|
949
|
-
defineCustomElementFn: undefined
|
|
949
|
+
defineCustomElementFn: undefined,
|
|
950
|
+
inputs: ['maxWidth']
|
|
950
951
|
})
|
|
951
952
|
], PDropdownMenuContainer);
|
|
952
953
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
|
|
@@ -954,7 +955,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
954
955
|
args: [{
|
|
955
956
|
selector: 'p-dropdown-menu-container',
|
|
956
957
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
957
|
-
template: '<ng-content></ng-content>'
|
|
958
|
+
template: '<ng-content></ng-content>',
|
|
959
|
+
inputs: ['maxWidth']
|
|
958
960
|
}]
|
|
959
961
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
960
962
|
let PDropdownMenuItem = class PDropdownMenuItem {
|
|
@@ -1085,11 +1087,11 @@ let PInputGroup = class PInputGroup {
|
|
|
1085
1087
|
}
|
|
1086
1088
|
};
|
|
1087
1089
|
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 });
|
|
1088
|
-
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 });
|
|
1090
|
+
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 });
|
|
1089
1091
|
PInputGroup = __decorate([
|
|
1090
1092
|
ProxyCmp({
|
|
1091
1093
|
defineCustomElementFn: undefined,
|
|
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']
|
|
1093
1095
|
})
|
|
1094
1096
|
], PInputGroup);
|
|
1095
1097
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PInputGroup, decorators: [{
|
|
@@ -1098,7 +1100,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
1098
1100
|
selector: 'p-input-group',
|
|
1099
1101
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1100
1102
|
template: '<ng-content></ng-content>',
|
|
1101
|
-
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'size', 'suffix']
|
|
1103
|
+
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'label', 'prefix', 'size', 'suffix']
|
|
1104
|
+
}]
|
|
1105
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1106
|
+
let PLabel = class PLabel {
|
|
1107
|
+
constructor(c, r, z) {
|
|
1108
|
+
this.z = z;
|
|
1109
|
+
c.detach();
|
|
1110
|
+
this.el = r.nativeElement;
|
|
1111
|
+
}
|
|
1112
|
+
};
|
|
1113
|
+
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 });
|
|
1114
|
+
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 });
|
|
1115
|
+
PLabel = __decorate([
|
|
1116
|
+
ProxyCmp({
|
|
1117
|
+
defineCustomElementFn: undefined,
|
|
1118
|
+
inputs: ['circle', 'size', 'variant']
|
|
1119
|
+
})
|
|
1120
|
+
], PLabel);
|
|
1121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PLabel, decorators: [{
|
|
1122
|
+
type: Component,
|
|
1123
|
+
args: [{
|
|
1124
|
+
selector: 'p-label',
|
|
1125
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1126
|
+
template: '<ng-content></ng-content>',
|
|
1127
|
+
inputs: ['circle', 'size', 'variant']
|
|
1102
1128
|
}]
|
|
1103
1129
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1104
1130
|
let PLayout = class PLayout {
|
|
@@ -1485,6 +1511,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
1485
1511
|
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
1486
1512
|
}]
|
|
1487
1513
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1514
|
+
let PSelect = class PSelect {
|
|
1515
|
+
constructor(c, r, z) {
|
|
1516
|
+
this.z = z;
|
|
1517
|
+
c.detach();
|
|
1518
|
+
this.el = r.nativeElement;
|
|
1519
|
+
proxyOutputs(this, this.el, ['queryChange', 'valueChange']);
|
|
1520
|
+
}
|
|
1521
|
+
};
|
|
1522
|
+
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 });
|
|
1523
|
+
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 });
|
|
1524
|
+
PSelect = __decorate([
|
|
1525
|
+
ProxyCmp({
|
|
1526
|
+
defineCustomElementFn: undefined,
|
|
1527
|
+
inputs: ['autoSelectFirst', 'autocompletePlaceholder', 'displayKey', 'enableAutocomplete', 'items', 'placeholder', 'query', 'queryKey', 'value', 'valueKey']
|
|
1528
|
+
})
|
|
1529
|
+
], PSelect);
|
|
1530
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PSelect, decorators: [{
|
|
1531
|
+
type: Component,
|
|
1532
|
+
args: [{
|
|
1533
|
+
selector: 'p-select',
|
|
1534
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1535
|
+
template: '<ng-content></ng-content>',
|
|
1536
|
+
inputs: ['autoSelectFirst', 'autocompletePlaceholder', 'displayKey', 'enableAutocomplete', 'items', 'placeholder', 'query', 'queryKey', 'value', 'valueKey']
|
|
1537
|
+
}]
|
|
1538
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1488
1539
|
let PSliderIndicator = class PSliderIndicator {
|
|
1489
1540
|
constructor(c, r, z) {
|
|
1490
1541
|
this.z = z;
|
|
@@ -1701,30 +1752,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
1701
1752
|
inputs: ['activeQuickFilterIdentifier', 'canEdit', 'editButtonTemplate', 'enableEdit', 'enableFilter', 'enableSearch', 'filterButtonTemplate', 'itemsSelectedAmount', 'query', 'quickFilters', 'selectedFiltersAmount']
|
|
1702
1753
|
}]
|
|
1703
1754
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1704
|
-
let PTag = class PTag {
|
|
1705
|
-
constructor(c, r, z) {
|
|
1706
|
-
this.z = z;
|
|
1707
|
-
c.detach();
|
|
1708
|
-
this.el = r.nativeElement;
|
|
1709
|
-
}
|
|
1710
|
-
};
|
|
1711
|
-
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 });
|
|
1712
|
-
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 });
|
|
1713
|
-
PTag = __decorate([
|
|
1714
|
-
ProxyCmp({
|
|
1715
|
-
defineCustomElementFn: undefined,
|
|
1716
|
-
inputs: ['circle', 'variant']
|
|
1717
|
-
})
|
|
1718
|
-
], PTag);
|
|
1719
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTag, decorators: [{
|
|
1720
|
-
type: Component,
|
|
1721
|
-
args: [{
|
|
1722
|
-
selector: 'p-tag',
|
|
1723
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1724
|
-
template: '<ng-content></ng-content>',
|
|
1725
|
-
inputs: ['circle', 'variant']
|
|
1726
|
-
}]
|
|
1727
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1728
1755
|
let PTooltip = class PTooltip {
|
|
1729
1756
|
constructor(c, r, z) {
|
|
1730
1757
|
this.z = z;
|
|
@@ -1770,6 +1797,7 @@ const DIRECTIVES = [
|
|
|
1770
1797
|
PIllustration,
|
|
1771
1798
|
PInfoPanel,
|
|
1772
1799
|
PInputGroup,
|
|
1800
|
+
PLabel,
|
|
1773
1801
|
PLayout,
|
|
1774
1802
|
PLoader,
|
|
1775
1803
|
PModal,
|
|
@@ -1786,6 +1814,7 @@ const DIRECTIVES = [
|
|
|
1786
1814
|
PProfile,
|
|
1787
1815
|
PSegmentContainer,
|
|
1788
1816
|
PSegmentItem,
|
|
1817
|
+
PSelect,
|
|
1789
1818
|
PSliderIndicator,
|
|
1790
1819
|
PStatus,
|
|
1791
1820
|
PStepper,
|
|
@@ -1795,14 +1824,13 @@ const DIRECTIVES = [
|
|
|
1795
1824
|
PTabItem,
|
|
1796
1825
|
PTableFooter,
|
|
1797
1826
|
PTableHeader,
|
|
1798
|
-
PTag,
|
|
1799
1827
|
PTooltip
|
|
1800
1828
|
];
|
|
1801
1829
|
|
|
1802
1830
|
class PaperlessModule {
|
|
1803
1831
|
}
|
|
1804
1832
|
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1805
|
-
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,
|
|
1833
|
+
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] });
|
|
1806
1834
|
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule });
|
|
1807
1835
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule, decorators: [{
|
|
1808
1836
|
type: NgModule,
|
|
@@ -1820,5 +1848,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
1820
1848
|
* Generated bundle index. Do not edit.
|
|
1821
1849
|
*/
|
|
1822
1850
|
|
|
1823
|
-
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,
|
|
1851
|
+
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 };
|
|
1824
1852
|
//# sourceMappingURL=paperless-angular.mjs.map
|