@paperless/angular 2.0.1-beta.20 → 2.0.1-beta.22
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/directives/index.mjs +13 -1
- package/esm2020/lib/directives/p-checkbox.directive.mjs +39 -0
- package/esm2020/lib/directives/p-field.directive.mjs +38 -0
- package/esm2020/lib/directives/p-radio.directive.mjs +48 -0
- package/esm2020/lib/directives/p-toggle.directive.mjs +38 -0
- package/esm2020/lib/modules/table/components/table/table.component.mjs +3 -3
- package/esm2020/lib/paperless.module.mjs +13 -9
- package/esm2020/lib/stencil/components.mjs +59 -7
- package/esm2020/lib/stencil/index.mjs +3 -1
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +235 -30
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +233 -30
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/directives/index.d.ts +6 -1
- package/lib/directives/p-checkbox.directive.d.ts +9 -0
- package/lib/directives/p-field.directive.d.ts +9 -0
- package/lib/directives/p-radio.directive.d.ts +17 -0
- package/lib/directives/p-toggle.directive.d.ts +9 -0
- package/lib/paperless.module.d.ts +13 -9
- package/lib/stencil/components.d.ts +36 -2
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3,5 +3,10 @@ export * from './p-datepicker.directive';
|
|
|
3
3
|
export * from './p-page-size-select.directive';
|
|
4
4
|
export * from './p-pagination.directive';
|
|
5
5
|
export * from './p-select.directive';
|
|
6
|
+
export * from './p-field.directive';
|
|
7
|
+
export * from './p-radio.directive';
|
|
8
|
+
export * from './p-checkbox.directive';
|
|
9
|
+
export * from './p-toggle.directive';
|
|
6
10
|
import { CropperDirective } from './p-cropper.directive';
|
|
7
|
-
|
|
11
|
+
import { RadioDirective } from './p-radio.directive';
|
|
12
|
+
export declare const DIRECTIVES: (typeof CropperDirective | typeof RadioDirective)[];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { BaseValueAccessor } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CheckboxDirective extends BaseValueAccessor {
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
writeValue(value: boolean | 'indeterminate'): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CheckboxDirective, "p-checkbox", never, {}, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { BaseValueAccessor } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FieldDirective extends BaseValueAccessor {
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
writeValue(value: any): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FieldDirective, "p-field", never, {}, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
3
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
4
|
+
import { BaseValueAccessor } from '../base';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class RadioDirective extends BaseValueAccessor implements ControlValueAccessor, OnInit, OnDestroy {
|
|
7
|
+
private _control;
|
|
8
|
+
private _modelValue;
|
|
9
|
+
private _valueChanges;
|
|
10
|
+
constructor(_control: NgControl, el: ElementRef);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
writeValue(value: string): void;
|
|
13
|
+
handleChangeEvent(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioDirective, [{ self: true; }, null]>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioDirective, "p-radio", never, {}, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { BaseValueAccessor } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ToggleDirective extends BaseValueAccessor {
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
writeValue(value: boolean): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ToggleDirective, "p-toggle", never, {}, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -5,17 +5,21 @@ import * as i2 from "./directives/p-page-size-select.directive";
|
|
|
5
5
|
import * as i3 from "./directives/p-select.directive";
|
|
6
6
|
import * as i4 from "./directives/p-datepicker.directive";
|
|
7
7
|
import * as i5 from "./directives/p-cropper.directive";
|
|
8
|
-
import * as i6 from "./
|
|
9
|
-
import * as i7 from "./
|
|
10
|
-
import * as i8 from "./
|
|
11
|
-
import * as i9 from "
|
|
12
|
-
import * as i10 from "./
|
|
13
|
-
import * as i11 from "./
|
|
14
|
-
import * as i12 from "./
|
|
15
|
-
import * as i13 from "
|
|
8
|
+
import * as i6 from "./directives/p-field.directive";
|
|
9
|
+
import * as i7 from "./directives/p-radio.directive";
|
|
10
|
+
import * as i8 from "./directives/p-checkbox.directive";
|
|
11
|
+
import * as i9 from "./directives/p-toggle.directive";
|
|
12
|
+
import * as i10 from "./pipes/currency.pipe";
|
|
13
|
+
import * as i11 from "./pipes/date.pipe";
|
|
14
|
+
import * as i12 from "./pipes/safe.pipe";
|
|
15
|
+
import * as i13 from "@angular/common";
|
|
16
|
+
import * as i14 from "./stencil.module";
|
|
17
|
+
import * as i15 from "./modules/table/table.module";
|
|
18
|
+
import * as i16 from "./modules/toast/toast.module";
|
|
19
|
+
import * as i17 from "./modules/overlay/overlay.module";
|
|
16
20
|
export declare class PaperlessModule {
|
|
17
21
|
static forRoot(): ModuleWithProviders<PaperlessModule>;
|
|
18
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaperlessModule, never>;
|
|
19
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PaperlessModule, [typeof i1.PaginationDirective, typeof i2.PageSizeSelectDirective, typeof i3.SelectDirective, typeof i4.DatepickerDirective, typeof i5.CropperDirective, typeof i6.
|
|
23
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PaperlessModule, [typeof i1.PaginationDirective, typeof i2.PageSizeSelectDirective, typeof i3.SelectDirective, typeof i4.DatepickerDirective, typeof i5.CropperDirective, typeof i6.FieldDirective, typeof i7.RadioDirective, typeof i8.CheckboxDirective, typeof i9.ToggleDirective, typeof i10.CustomCurrencyPipe, typeof i11.CustomDatePipe, typeof i12.SafePipe], [typeof i13.CommonModule, typeof i14.StencilModule, typeof i15.TableModule, typeof i16.ToastModule, typeof i17.OverlayModule], [typeof i14.StencilModule, typeof i15.TableModule, typeof i16.ToastModule, typeof i17.OverlayModule, typeof i1.PaginationDirective, typeof i2.PageSizeSelectDirective, typeof i3.SelectDirective, typeof i4.DatepickerDirective, typeof i5.CropperDirective, typeof i6.FieldDirective, typeof i7.RadioDirective, typeof i8.CheckboxDirective, typeof i9.ToggleDirective, typeof i10.CustomCurrencyPipe, typeof i11.CustomDatePipe, typeof i12.SafePipe]>;
|
|
20
24
|
static ɵinj: i0.ɵɵInjectorDeclaration<PaperlessModule>;
|
|
21
25
|
}
|
|
@@ -134,6 +134,23 @@ export declare class PCardHeader {
|
|
|
134
134
|
}
|
|
135
135
|
export declare interface PCardHeader extends Components.PCardHeader {
|
|
136
136
|
}
|
|
137
|
+
export declare class PCheckbox {
|
|
138
|
+
protected z: NgZone;
|
|
139
|
+
protected el: HTMLElement;
|
|
140
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
141
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCheckbox, never>;
|
|
142
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCheckbox, "p-checkbox", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "indeterminate": "indeterminate"; "name": "name"; "required": "required"; "size": "size"; }, {}, never, ["*"], false, never>;
|
|
143
|
+
}
|
|
144
|
+
export declare interface PCheckbox extends Components.PCheckbox {
|
|
145
|
+
/**
|
|
146
|
+
* Event whenever the checked changes
|
|
147
|
+
*/
|
|
148
|
+
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
149
|
+
/**
|
|
150
|
+
* Event whenever the indeterminate changes
|
|
151
|
+
*/
|
|
152
|
+
indeterminateChange: EventEmitter<CustomEvent<boolean>>;
|
|
153
|
+
}
|
|
137
154
|
export declare class PContentSlider {
|
|
138
155
|
protected z: NgZone;
|
|
139
156
|
protected el: HTMLElement;
|
|
@@ -387,7 +404,7 @@ export declare class PLabel {
|
|
|
387
404
|
protected el: HTMLElement;
|
|
388
405
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
389
406
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLabel, never>;
|
|
390
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PLabel, "p-label", never, { "
|
|
407
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLabel, "p-label", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "keepMobileContent": "keepMobileContent"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
391
408
|
}
|
|
392
409
|
export declare interface PLabel extends Components.PLabel {
|
|
393
410
|
}
|
|
@@ -480,7 +497,7 @@ export declare class PNavigationItem {
|
|
|
480
497
|
protected el: HTMLElement;
|
|
481
498
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
482
499
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
|
|
483
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "as": "as"; "class": "class"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false, never>;
|
|
500
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "as": "as"; "class": "class"; "counter": "counter"; "href": "href"; "icon": "icon"; "loading": "loading"; "target": "target"; }, {}, never, ["*"], false, never>;
|
|
484
501
|
}
|
|
485
502
|
export declare interface PNavigationItem extends Components.PNavigationItem {
|
|
486
503
|
}
|
|
@@ -755,6 +772,23 @@ export declare interface PToast extends Components.PToast {
|
|
|
755
772
|
*/
|
|
756
773
|
action: EventEmitter<CustomEvent<MouseEvent>>;
|
|
757
774
|
}
|
|
775
|
+
export declare class PToggle {
|
|
776
|
+
protected z: NgZone;
|
|
777
|
+
protected el: HTMLElement;
|
|
778
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
779
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PToggle, never>;
|
|
780
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PToggle, "p-toggle", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "indeterminate": "indeterminate"; "name": "name"; "required": "required"; "size": "size"; }, {}, never, ["*"], false, never>;
|
|
781
|
+
}
|
|
782
|
+
export declare interface PToggle extends Components.PToggle {
|
|
783
|
+
/**
|
|
784
|
+
* Event whenever the checked changes
|
|
785
|
+
*/
|
|
786
|
+
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
787
|
+
/**
|
|
788
|
+
* Event whenever the indeterminate changes
|
|
789
|
+
*/
|
|
790
|
+
indeterminateChange: EventEmitter<CustomEvent<boolean>>;
|
|
791
|
+
}
|
|
758
792
|
export declare class PTooltip {
|
|
759
793
|
protected z: NgZone;
|
|
760
794
|
protected el: HTMLElement;
|
package/lib/stencil/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PBadge | typeof d.PButton | typeof d.PButtonGroup | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PContentSlider | typeof d.PCounter | typeof d.PCropper | typeof d.PDatepicker | typeof d.PDivider | typeof d.PDrawer | typeof d.PDrawerBody | typeof d.PDrawerContainer | typeof d.PDrawerHeader | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PField | typeof d.PFieldContainer | typeof d.PFloatingMenuContainer | typeof d.PFloatingMenuItem | typeof d.PHelper | typeof d.PIbanIcon | typeof d.PIcon | typeof d.PIconDeprecated | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputError | typeof d.PLabel | typeof d.PLayout | typeof d.PLoader | typeof d.PModal | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavbar | typeof d.PNavigationItem | typeof d.PNavigationSection | typeof d.PNavigationTitle | typeof d.PPageSizeSelect | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PPortal | typeof d.PProfile | typeof d.PRadio | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PSelect | typeof d.PSliderIndicator | typeof d.PStatus | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabGroup | typeof d.PTabItem | typeof d.PTableContainer | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTableRow | typeof d.PToast | typeof d.PTooltip)[];
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PBadge | typeof d.PButton | typeof d.PButtonGroup | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PCheckbox | typeof d.PContentSlider | typeof d.PCounter | typeof d.PCropper | typeof d.PDatepicker | typeof d.PDivider | typeof d.PDrawer | typeof d.PDrawerBody | typeof d.PDrawerContainer | typeof d.PDrawerHeader | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PField | typeof d.PFieldContainer | typeof d.PFloatingMenuContainer | typeof d.PFloatingMenuItem | typeof d.PHelper | typeof d.PIbanIcon | typeof d.PIcon | typeof d.PIconDeprecated | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputError | typeof d.PLabel | typeof d.PLayout | typeof d.PLoader | typeof d.PModal | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavbar | typeof d.PNavigationItem | typeof d.PNavigationSection | typeof d.PNavigationTitle | typeof d.PPageSizeSelect | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PPortal | typeof d.PProfile | typeof d.PRadio | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PSelect | typeof d.PSliderIndicator | typeof d.PStatus | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabGroup | typeof d.PTabItem | typeof d.PTableContainer | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTableRow | typeof d.PToast | typeof d.PToggle | typeof d.PTooltip)[];
|
package/lib/stencil.module.d.ts
CHANGED
|
@@ -2,6 +2,6 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./stencil/components";
|
|
3
3
|
export declare class StencilModule {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<StencilModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<StencilModule, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationSection, typeof i1.PNavigationTitle, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PPortal, typeof i1.PProfile, typeof i1.PRadio, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PTooltip], never, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationSection, typeof i1.PNavigationTitle, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PPortal, typeof i1.PProfile, typeof i1.PRadio, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PTooltip]>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StencilModule, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PCheckbox, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationSection, typeof i1.PNavigationTitle, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PPortal, typeof i1.PProfile, typeof i1.PRadio, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PToggle, typeof i1.PTooltip], never, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PCheckbox, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationSection, typeof i1.PNavigationTitle, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PPortal, typeof i1.PProfile, typeof i1.PRadio, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PToggle, typeof i1.PTooltip]>;
|
|
6
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<StencilModule>;
|
|
7
7
|
}
|