@paperless/angular 2.0.1-beta.4 → 2.0.1-beta.41
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 +19 -7
- 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-pagination-pages.directive.mjs +41 -0
- package/esm2020/lib/directives/p-pagination-size.directive.mjs +41 -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 +4 -6
- package/esm2020/lib/paperless.module.mjs +15 -11
- package/esm2020/lib/stencil/components.mjs +281 -78
- package/esm2020/lib/stencil/index.mjs +11 -3
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +478 -123
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +476 -123
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/directives/index.d.ts +9 -4
- package/lib/directives/p-checkbox.directive.d.ts +9 -0
- package/lib/directives/p-field.directive.d.ts +9 -0
- package/lib/directives/p-pagination-pages.directive.d.ts +10 -0
- package/lib/directives/{p-page-size-select.directive.d.ts → p-pagination-size.directive.d.ts} +3 -3
- 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 +15 -11
- package/lib/stencil/components.d.ts +146 -29
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +1 -1
- package/package.json +1 -1
- package/paperless.css +0 -10
- package/esm2020/lib/directives/p-page-size-select.directive.mjs +0 -41
- package/esm2020/lib/directives/p-pagination.directive.mjs +0 -41
- package/lib/directives/p-pagination.directive.d.ts +0 -10
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
export * from './p-checkbox.directive';
|
|
1
2
|
export * from './p-cropper.directive';
|
|
2
3
|
export * from './p-datepicker.directive';
|
|
3
|
-
export * from './p-
|
|
4
|
-
export * from './p-pagination.directive';
|
|
4
|
+
export * from './p-field.directive';
|
|
5
|
+
export * from './p-pagination-pages.directive';
|
|
6
|
+
export * from './p-pagination-size.directive';
|
|
7
|
+
export * from './p-radio.directive';
|
|
5
8
|
export * from './p-select.directive';
|
|
6
|
-
|
|
7
|
-
|
|
9
|
+
export * from './p-toggle.directive';
|
|
10
|
+
import { CheckboxDirective } from './p-checkbox.directive';
|
|
11
|
+
import { RadioDirective } from './p-radio.directive';
|
|
12
|
+
export declare const DIRECTIVES: (typeof CheckboxDirective | 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,10 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { BaseValueAccessor } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PaginationPagesDirective extends BaseValueAccessor {
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
writeValue(value: any): void;
|
|
7
|
+
registerOnChange(fn: (_: number | null) => void): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationPagesDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PaginationPagesDirective, "p-pagination-pages", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
package/lib/directives/{p-page-size-select.directive.d.ts → p-pagination-size.directive.d.ts}
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { BaseValueAccessor } from '../base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class PaginationSizeDirective extends BaseValueAccessor {
|
|
5
5
|
constructor(el: ElementRef);
|
|
6
6
|
writeValue(value: any): void;
|
|
7
7
|
registerOnChange(fn: (_: number | null) => void): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationSizeDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PaginationSizeDirective, "p-pagination-size", never, {}, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
@@ -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
|
+
}
|
|
@@ -1,21 +1,25 @@
|
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "./directives/p-pagination.directive";
|
|
4
|
-
import * as i2 from "./directives/p-
|
|
3
|
+
import * as i1 from "./directives/p-pagination-size.directive";
|
|
4
|
+
import * as i2 from "./directives/p-pagination-pages.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.
|
|
23
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PaperlessModule, [typeof i1.PaginationSizeDirective, typeof i2.PaginationPagesDirective, 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.PaginationSizeDirective, typeof i2.PaginationPagesDirective, 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
|
}
|
|
@@ -77,7 +77,7 @@ export declare class PButton {
|
|
|
77
77
|
protected el: HTMLElement;
|
|
78
78
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
79
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<PButton, never>;
|
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "as": "as"; "buttonGroupPosition": "buttonGroupPosition"; "chevron": "chevron"; "chevronPosition": "chevronPosition"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "inheritText": "inheritText"; "loading": "loading"; "size": "size"; "target": "target"; "type": "type"; "underline": "underline"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "active": "active"; "as": "as"; "buttonGroupPosition": "buttonGroupPosition"; "chevron": "chevron"; "chevronPosition": "chevronPosition"; "class": "class"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "inheritText": "inheritText"; "loading": "loading"; "size": "size"; "target": "target"; "type": "type"; "underline": "underline"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
81
81
|
}
|
|
82
82
|
export declare interface PButton extends Components.PButton {
|
|
83
83
|
/**
|
|
@@ -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"; }, {}, 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;
|
|
@@ -170,7 +187,7 @@ export declare class PDatepicker {
|
|
|
170
187
|
protected el: HTMLElement;
|
|
171
188
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
172
189
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDatepicker, never>;
|
|
173
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDatepicker, "p-datepicker", never, { "disableWeekends": "disableWeekends"; "disabled": "disabled"; "disabledDates": "disabledDates"; "error": "error"; "format": "format"; "helper": "helper"; "hideIconWhenFilled": "hideIconWhenFilled"; "label": "label"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "placeholder": "placeholder"; "placement": "placement"; "prefix": "prefix"; "preselectToday": "preselectToday"; "required": "required"; "size": "size"; "strategy": "strategy"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
190
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDatepicker, "p-datepicker", never, { "disableWeekends": "disableWeekends"; "disabled": "disabled"; "disabledDates": "disabledDates"; "enableNativePicker": "enableNativePicker"; "error": "error"; "format": "format"; "helper": "helper"; "hideIconWhenFilled": "hideIconWhenFilled"; "label": "label"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "placeholder": "placeholder"; "placement": "placement"; "prefix": "prefix"; "preselectToday": "preselectToday"; "required": "required"; "size": "size"; "strategy": "strategy"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
174
191
|
}
|
|
175
192
|
export declare interface PDatepicker extends Components.PDatepicker {
|
|
176
193
|
/**
|
|
@@ -244,7 +261,7 @@ export declare class PDropdown {
|
|
|
244
261
|
protected el: HTMLElement;
|
|
245
262
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
246
263
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdown, never>;
|
|
247
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "allowOverflow": "allowOverflow"; "applyChevron": "applyChevron"; "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "calculateWidth": "calculateWidth"; "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "offset": "offset"; "placement": "placement"; "scrollable": "scrollable"; "show": "show"; "strategy": "strategy"; }, {}, never, ["*"], false, never>;
|
|
264
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "allowOverflow": "allowOverflow"; "applyChevron": "applyChevron"; "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "calculateWidth": "calculateWidth"; "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "offset": "offset"; "placement": "placement"; "scrollable": "scrollable"; "show": "show"; "strategy": "strategy"; "usePortal": "usePortal"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
248
265
|
}
|
|
249
266
|
export declare interface PDropdown extends Components.PDropdown {
|
|
250
267
|
/**
|
|
@@ -257,7 +274,7 @@ export declare class PDropdownMenuContainer {
|
|
|
257
274
|
protected el: HTMLElement;
|
|
258
275
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
259
276
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuContainer, never>;
|
|
260
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "allowOverflow": "allowOverflow"; "class": "class"; "fullWidth": "fullWidth"; "maxWidth": "maxWidth"; "scrollable": "scrollable"; }, {}, never, ["*"], false, never>;
|
|
277
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "allowOverflow": "allowOverflow"; "class": "class"; "fullWidth": "fullWidth"; "maxWidth": "maxWidth"; "scrollable": "scrollable"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
261
278
|
}
|
|
262
279
|
export declare interface PDropdownMenuContainer extends Components.PDropdownMenuContainer {
|
|
263
280
|
}
|
|
@@ -266,25 +283,56 @@ export declare class PDropdownMenuItem {
|
|
|
266
283
|
protected el: HTMLElement;
|
|
267
284
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
268
285
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, never>;
|
|
269
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "disabled": "disabled"; "enableHover": "enableHover"; "icon": "icon"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
286
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "checkbox": "checkbox"; "disabled": "disabled"; "enableHover": "enableHover"; "icon": "icon"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
270
287
|
}
|
|
271
288
|
export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
|
|
272
289
|
}
|
|
290
|
+
export declare class PField {
|
|
291
|
+
protected z: NgZone;
|
|
292
|
+
protected el: HTMLElement;
|
|
293
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
294
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PField, never>;
|
|
295
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PField, "p-field", never, { "autofocus": "autofocus"; "disabled": "disabled"; "error": "error"; "errorPlacement": "errorPlacement"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "label": "label"; "optionalTemplate": "optionalTemplate"; "placeholder": "placeholder"; "prefix": "prefix"; "properties": "properties"; "required": "required"; "selectAllOnFocus": "selectAllOnFocus"; "size": "size"; "suffix": "suffix"; "type": "type"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
296
|
+
}
|
|
297
|
+
export declare interface PField extends Components.PField {
|
|
298
|
+
/**
|
|
299
|
+
* Event whenever the value changes
|
|
300
|
+
*/
|
|
301
|
+
valueChange: EventEmitter<CustomEvent<string>>;
|
|
302
|
+
/**
|
|
303
|
+
* Event whenever the input ref changes
|
|
304
|
+
*/
|
|
305
|
+
inputRefChange: EventEmitter<CustomEvent<HTMLInputElement | HTMLTextAreaElement>>;
|
|
306
|
+
}
|
|
307
|
+
export declare class PFieldContainer {
|
|
308
|
+
protected z: NgZone;
|
|
309
|
+
protected el: HTMLElement;
|
|
310
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
311
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PFieldContainer, never>;
|
|
312
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFieldContainer, "p-field-container", never, { "error": "error"; "errorPlacement": "errorPlacement"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "label": "label"; "optionalTemplate": "optionalTemplate"; "required": "required"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
313
|
+
}
|
|
314
|
+
export declare interface PFieldContainer extends Components.PFieldContainer {
|
|
315
|
+
focus: EventEmitter<CustomEvent<void>>;
|
|
316
|
+
}
|
|
273
317
|
export declare class PFloatingMenuContainer {
|
|
274
318
|
protected z: NgZone;
|
|
275
319
|
protected el: HTMLElement;
|
|
276
320
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
277
321
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuContainer, never>;
|
|
278
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuContainer, "p-floating-menu-container", never, { "usedInTable": "usedInTable"; }, {}, never, ["*"], false, never>;
|
|
322
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuContainer, "p-floating-menu-container", never, { "amount": "amount"; "amountSelectedTemplate": "amountSelectedTemplate"; "enableAmountSelected": "enableAmountSelected"; "enableClose": "enableClose"; "usedInTable": "usedInTable"; }, {}, never, ["*"], false, never>;
|
|
279
323
|
}
|
|
280
324
|
export declare interface PFloatingMenuContainer extends Components.PFloatingMenuContainer {
|
|
325
|
+
/**
|
|
326
|
+
* Event whenever the close button is clicked
|
|
327
|
+
*/
|
|
328
|
+
close: EventEmitter<CustomEvent<MouseEvent>>;
|
|
281
329
|
}
|
|
282
330
|
export declare class PFloatingMenuItem {
|
|
283
331
|
protected z: NgZone;
|
|
284
332
|
protected el: HTMLElement;
|
|
285
333
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
286
334
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuItem, never>;
|
|
287
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuItem, "p-floating-menu-item", never, { "disabled": "disabled"; "hover": "hover"; }, {}, never, ["*"], false, never>;
|
|
335
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuItem, "p-floating-menu-item", never, { "disabled": "disabled"; "hover": "hover"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "loading": "loading"; }, {}, never, ["*"], false, never>;
|
|
288
336
|
}
|
|
289
337
|
export declare interface PFloatingMenuItem extends Components.PFloatingMenuItem {
|
|
290
338
|
}
|
|
@@ -369,7 +417,7 @@ export declare class PLabel {
|
|
|
369
417
|
protected el: HTMLElement;
|
|
370
418
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
371
419
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLabel, never>;
|
|
372
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PLabel, "p-label", never, { "
|
|
420
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLabel, "p-label", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "keepMobileContent": "keepMobileContent"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
373
421
|
}
|
|
374
422
|
export declare interface PLabel extends Components.PLabel {
|
|
375
423
|
}
|
|
@@ -453,7 +501,7 @@ export declare class PNavbar {
|
|
|
453
501
|
protected el: HTMLElement;
|
|
454
502
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
455
503
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
|
|
456
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, {
|
|
504
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, {}, {}, never, ["*"], false, never>;
|
|
457
505
|
}
|
|
458
506
|
export declare interface PNavbar extends Components.PNavbar {
|
|
459
507
|
}
|
|
@@ -462,10 +510,19 @@ export declare class PNavigationItem {
|
|
|
462
510
|
protected el: HTMLElement;
|
|
463
511
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
464
512
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
|
|
465
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "as": "as"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false, never>;
|
|
513
|
+
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>;
|
|
466
514
|
}
|
|
467
515
|
export declare interface PNavigationItem extends Components.PNavigationItem {
|
|
468
516
|
}
|
|
517
|
+
export declare class PNavigationSection {
|
|
518
|
+
protected z: NgZone;
|
|
519
|
+
protected el: HTMLElement;
|
|
520
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
521
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationSection, never>;
|
|
522
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationSection, "p-navigation-section", never, { "header": "header"; }, {}, never, ["*"], false, never>;
|
|
523
|
+
}
|
|
524
|
+
export declare interface PNavigationSection extends Components.PNavigationSection {
|
|
525
|
+
}
|
|
469
526
|
export declare class PNavigationTitle {
|
|
470
527
|
protected z: NgZone;
|
|
471
528
|
protected el: HTMLElement;
|
|
@@ -475,50 +532,93 @@ export declare class PNavigationTitle {
|
|
|
475
532
|
}
|
|
476
533
|
export declare interface PNavigationTitle extends Components.PNavigationTitle {
|
|
477
534
|
}
|
|
478
|
-
export declare class
|
|
535
|
+
export declare class PPagination {
|
|
479
536
|
protected z: NgZone;
|
|
480
537
|
protected el: HTMLElement;
|
|
481
538
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
482
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
483
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
539
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
|
|
540
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "enablePaginationPages": "enablePaginationPages"; "enablePaginationSize": "enablePaginationSize"; "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "total": "total"; }, {}, never, ["*"], false, never>;
|
|
484
541
|
}
|
|
485
|
-
export declare interface
|
|
542
|
+
export declare interface PPagination extends Components.PPagination {
|
|
486
543
|
/**
|
|
487
|
-
* Event whenever the
|
|
544
|
+
* Event whenever the page changes
|
|
488
545
|
*/
|
|
489
|
-
|
|
546
|
+
pageChange: EventEmitter<CustomEvent<number>>;
|
|
547
|
+
/**
|
|
548
|
+
* Event whenever the page changes
|
|
549
|
+
*/
|
|
550
|
+
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
490
551
|
}
|
|
491
|
-
export declare class
|
|
552
|
+
export declare class PPaginationPages {
|
|
492
553
|
protected z: NgZone;
|
|
493
554
|
protected el: HTMLElement;
|
|
494
555
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
495
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
496
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
556
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationPages, never>;
|
|
557
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationPages, "p-pagination-pages", never, { "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"], false, never>;
|
|
497
558
|
}
|
|
498
|
-
export declare interface
|
|
559
|
+
export declare interface PPaginationPages extends Components.PPaginationPages {
|
|
499
560
|
/**
|
|
500
561
|
* Event whenever the page changes
|
|
501
562
|
*/
|
|
502
563
|
pageChange: EventEmitter<CustomEvent<number>>;
|
|
564
|
+
/**
|
|
565
|
+
* The pages that were generated
|
|
566
|
+
*/
|
|
567
|
+
pagesChange: EventEmitter<CustomEvent<number>>;
|
|
568
|
+
}
|
|
569
|
+
export declare class PPaginationPagesItem {
|
|
570
|
+
protected z: NgZone;
|
|
571
|
+
protected el: HTMLElement;
|
|
572
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
573
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationPagesItem, never>;
|
|
574
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationPagesItem, "p-pagination-pages-item", never, { "active": "active"; "disabled": "disabled"; "hover": "hover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
575
|
+
}
|
|
576
|
+
export declare interface PPaginationPagesItem extends Components.PPaginationPagesItem {
|
|
577
|
+
}
|
|
578
|
+
export declare class PPaginationSize {
|
|
579
|
+
protected z: NgZone;
|
|
580
|
+
protected el: HTMLElement;
|
|
581
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
582
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationSize, never>;
|
|
583
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationSize, "p-pagination-size", never, { "hidden": "hidden"; "itemTemplate": "itemTemplate"; "size": "size"; "sizeOptions": "sizeOptions"; }, {}, never, ["*"], false, never>;
|
|
584
|
+
}
|
|
585
|
+
export declare interface PPaginationSize extends Components.PPaginationSize {
|
|
586
|
+
/**
|
|
587
|
+
* Event whenever the size changes
|
|
588
|
+
*/
|
|
589
|
+
sizeChange: EventEmitter<CustomEvent<number>>;
|
|
503
590
|
}
|
|
504
|
-
export declare class
|
|
591
|
+
export declare class PPortal {
|
|
505
592
|
protected z: NgZone;
|
|
506
593
|
protected el: HTMLElement;
|
|
507
594
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
508
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
509
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
595
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPortal, never>;
|
|
596
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPortal, "p-portal", never, {}, {}, never, ["*"], false, never>;
|
|
510
597
|
}
|
|
511
|
-
export declare interface
|
|
598
|
+
export declare interface PPortal extends Components.PPortal {
|
|
512
599
|
}
|
|
513
600
|
export declare class PProfile {
|
|
514
601
|
protected z: NgZone;
|
|
515
602
|
protected el: HTMLElement;
|
|
516
603
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
517
604
|
static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
|
|
518
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation";
|
|
605
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation"; }, {}, never, ["*"], false, never>;
|
|
519
606
|
}
|
|
520
607
|
export declare interface PProfile extends Components.PProfile {
|
|
521
608
|
}
|
|
609
|
+
export declare class PRadio {
|
|
610
|
+
protected z: NgZone;
|
|
611
|
+
protected el: HTMLElement;
|
|
612
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
613
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PRadio, never>;
|
|
614
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PRadio, "p-radio", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
615
|
+
}
|
|
616
|
+
export declare interface PRadio extends Components.PRadio {
|
|
617
|
+
/**
|
|
618
|
+
* Event whenever the checked changes
|
|
619
|
+
*/
|
|
620
|
+
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
621
|
+
}
|
|
522
622
|
export declare class PSegmentContainer {
|
|
523
623
|
protected z: NgZone;
|
|
524
624
|
protected el: HTMLElement;
|
|
@@ -533,7 +633,7 @@ export declare class PSegmentItem {
|
|
|
533
633
|
protected el: HTMLElement;
|
|
534
634
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
535
635
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
|
|
536
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "
|
|
636
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
537
637
|
}
|
|
538
638
|
export declare interface PSegmentItem extends Components.PSegmentItem {
|
|
539
639
|
}
|
|
@@ -542,7 +642,7 @@ export declare class PSelect {
|
|
|
542
642
|
protected el: HTMLElement;
|
|
543
643
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
544
644
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
|
|
545
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select", never, { "addItemText": "addItemText"; "applyClassOnSelectedItem": "applyClassOnSelectedItem"; "asyncFilter": "asyncFilter"; "autoSelectFirst": "autoSelectFirst"; "autocompletePlaceholder": "autocompletePlaceholder"; "avatarKey": "avatarKey"; "avatarLettersKey": "avatarLettersKey"; "classKey": "classKey"; "disabled": "disabled"; "displayKey": "displayKey"; "dropdownDisplayKey": "dropdownDisplayKey"; "emptyStateText": "emptyStateText"; "enableAutocomplete": "enableAutocomplete"; "enableSelectAll": "enableSelectAll"; "error": "error"; "helper": "helper"; "icon": "icon"; "iconKey": "iconKey"; "identifierKey": "identifierKey"; "items": "items"; "label": "label"; "loading": "loading"; "maxDisplayedItems": "maxDisplayedItems"; "multi": "multi"; "placeholder": "placeholder"; "prefix": "prefix"; "query": "query"; "queryKey": "queryKey"; "required": "required"; "selectAllIcon": "selectAllIcon"; "selectAllText": "selectAllText"; "selectionDisplayKey": "selectionDisplayKey"; "showAddItem": "showAddItem"; "showChevron": "showChevron"; "showIconInSelectedItem": "showIconInSelectedItem"; "size": "size"; "value": "value"; "valueKey": "valueKey"; }, {}, never, ["*"], false, never>;
|
|
645
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select", never, { "addItemText": "addItemText"; "applyClassOnSelectedItem": "applyClassOnSelectedItem"; "asyncFilter": "asyncFilter"; "autoSelectFirst": "autoSelectFirst"; "autocompletePlaceholder": "autocompletePlaceholder"; "avatarKey": "avatarKey"; "avatarLettersKey": "avatarLettersKey"; "classKey": "classKey"; "disabled": "disabled"; "displayKey": "displayKey"; "dropdownDisplayKey": "dropdownDisplayKey"; "emptyStateText": "emptyStateText"; "enableAutocomplete": "enableAutocomplete"; "enableSelectAll": "enableSelectAll"; "error": "error"; "helper": "helper"; "icon": "icon"; "iconKey": "iconKey"; "identifierKey": "identifierKey"; "items": "items"; "label": "label"; "loading": "loading"; "maxDisplayedItems": "maxDisplayedItems"; "multi": "multi"; "placeholder": "placeholder"; "prefix": "prefix"; "query": "query"; "queryKey": "queryKey"; "required": "required"; "selectAllIcon": "selectAllIcon"; "selectAllText": "selectAllText"; "selectionDisplayKey": "selectionDisplayKey"; "showAddItem": "showAddItem"; "showChevron": "showChevron"; "showIconInSelectedItem": "showIconInSelectedItem"; "size": "size"; "strategy": "strategy"; "usePortal": "usePortal"; "value": "value"; "valueKey": "valueKey"; }, {}, never, ["*"], false, never>;
|
|
546
646
|
}
|
|
547
647
|
export declare interface PSelect extends Components.PSelect {
|
|
548
648
|
/**
|
|
@@ -589,7 +689,7 @@ export declare class PStepper {
|
|
|
589
689
|
protected el: HTMLElement;
|
|
590
690
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
591
691
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
|
|
592
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "contentPosition": "contentPosition"; "direction": "direction"; }, {}, never, ["*"], false, never>;
|
|
692
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "contentPosition": "contentPosition"; "direction": "direction"; "enableAutoStatus": "enableAutoStatus"; }, {}, never, ["*"], false, never>;
|
|
593
693
|
}
|
|
594
694
|
export declare interface PStepper extends Components.PStepper {
|
|
595
695
|
}
|
|
@@ -706,12 +806,29 @@ export declare interface PToast extends Components.PToast {
|
|
|
706
806
|
*/
|
|
707
807
|
action: EventEmitter<CustomEvent<MouseEvent>>;
|
|
708
808
|
}
|
|
809
|
+
export declare class PToggle {
|
|
810
|
+
protected z: NgZone;
|
|
811
|
+
protected el: HTMLElement;
|
|
812
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
813
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PToggle, never>;
|
|
814
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PToggle, "p-toggle", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "indeterminate": "indeterminate"; "name": "name"; "required": "required"; }, {}, never, ["*"], false, never>;
|
|
815
|
+
}
|
|
816
|
+
export declare interface PToggle extends Components.PToggle {
|
|
817
|
+
/**
|
|
818
|
+
* Event whenever the checked changes
|
|
819
|
+
*/
|
|
820
|
+
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
821
|
+
/**
|
|
822
|
+
* Event whenever the indeterminate changes
|
|
823
|
+
*/
|
|
824
|
+
indeterminateChange: EventEmitter<CustomEvent<boolean>>;
|
|
825
|
+
}
|
|
709
826
|
export declare class PTooltip {
|
|
710
827
|
protected z: NgZone;
|
|
711
828
|
protected el: HTMLElement;
|
|
712
829
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
713
830
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
|
|
714
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "content": "content"; "enableUserInput": "enableUserInput"; "offset": "offset"; "placement": "placement"; "show": "show"; "strategy": "strategy"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
831
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "content": "content"; "enableUserInput": "enableUserInput"; "offset": "offset"; "placement": "placement"; "show": "show"; "strategy": "strategy"; "usePortal": "usePortal"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
715
832
|
}
|
|
716
833
|
export declare interface PTooltip extends Components.PTooltip {
|
|
717
834
|
/**
|
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.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.PInputGroup | 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.
|
|
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.PInputGroup | 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.PPagination | typeof d.PPaginationPages | typeof d.PPaginationPagesItem | typeof d.PPaginationSize | 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.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.PInputGroup, 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.
|
|
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.PInputGroup, 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.PPagination, typeof i1.PPaginationPages, typeof i1.PPaginationPagesItem, typeof i1.PPaginationSize, 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.PInputGroup, 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.PPagination, typeof i1.PPaginationPages, typeof i1.PPaginationPagesItem, typeof i1.PPaginationSize, 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
|
}
|
package/package.json
CHANGED
package/paperless.css
CHANGED
|
@@ -38,11 +38,6 @@
|
|
|
38
38
|
top: 0px !important
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
.mx-0 {
|
|
42
|
-
margin-left: 0px !important;
|
|
43
|
-
margin-right: 0px !important
|
|
44
|
-
}
|
|
45
|
-
|
|
46
41
|
.mb-14 {
|
|
47
42
|
margin-bottom: 3.5rem !important
|
|
48
43
|
}
|
|
@@ -238,11 +233,6 @@
|
|
|
238
233
|
font-weight: 600 !important
|
|
239
234
|
}
|
|
240
235
|
|
|
241
|
-
.text-storm {
|
|
242
|
-
--tw-text-opacity: 1 !important;
|
|
243
|
-
color: rgb(81 83 107 / var(--tw-text-opacity, 1)) !important
|
|
244
|
-
}
|
|
245
|
-
|
|
246
236
|
.text-storm-dark {
|
|
247
237
|
--tw-text-opacity: 1 !important;
|
|
248
238
|
color: rgb(39 40 56 / var(--tw-text-opacity, 1)) !important
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { Directive } from '@angular/core';
|
|
2
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
3
|
-
import { BaseValueAccessor } from '../base';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class PageSizeSelectDirective extends BaseValueAccessor {
|
|
6
|
-
constructor(el) {
|
|
7
|
-
super(el);
|
|
8
|
-
}
|
|
9
|
-
writeValue(value) {
|
|
10
|
-
this.el.nativeElement.page = this.lastValue = value == null ? 12 : value;
|
|
11
|
-
}
|
|
12
|
-
registerOnChange(fn) {
|
|
13
|
-
super.registerOnChange(value => fn(parseInt(value, 10)));
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
PageSizeSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PageSizeSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
17
|
-
PageSizeSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: PageSizeSelectDirective, selector: "p-page-size-select", host: { listeners: { "sizeChange": "handleChangeEvent($event.detail)" } }, providers: [
|
|
18
|
-
{
|
|
19
|
-
provide: NG_VALUE_ACCESSOR,
|
|
20
|
-
useExisting: PageSizeSelectDirective,
|
|
21
|
-
multi: true,
|
|
22
|
-
},
|
|
23
|
-
], usesInheritance: true, ngImport: i0 });
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PageSizeSelectDirective, decorators: [{
|
|
25
|
-
type: Directive,
|
|
26
|
-
args: [{
|
|
27
|
-
/* tslint:disable-next-line:directive-selector */
|
|
28
|
-
selector: 'p-page-size-select',
|
|
29
|
-
host: {
|
|
30
|
-
'(sizeChange)': 'handleChangeEvent($event.detail)',
|
|
31
|
-
},
|
|
32
|
-
providers: [
|
|
33
|
-
{
|
|
34
|
-
provide: NG_VALUE_ACCESSOR,
|
|
35
|
-
useExisting: PageSizeSelectDirective,
|
|
36
|
-
multi: true,
|
|
37
|
-
},
|
|
38
|
-
],
|
|
39
|
-
}]
|
|
40
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
41
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicC1wYWdlLXNpemUtc2VsZWN0LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3BhcGVybGVzcy9zcmMvbGliL2RpcmVjdGl2ZXMvcC1wYWdlLXNpemUtc2VsZWN0LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFjLE1BQU0sZUFBZSxDQUFDO0FBQ3RELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRW5ELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLFNBQVMsQ0FBQzs7QUFnQjVDLE1BQU0sT0FBTyx1QkFBd0IsU0FBUSxpQkFBaUI7SUFDN0QsWUFBWSxFQUFjO1FBQ3pCLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUNYLENBQUM7SUFFUSxVQUFVLENBQUMsS0FBVTtRQUM3QixJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLFNBQVMsR0FBRyxLQUFLLElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQztJQUMxRSxDQUFDO0lBRVEsZ0JBQWdCLENBQUMsRUFBOEI7UUFDdkQsS0FBSyxDQUFDLGdCQUFnQixDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLFFBQVEsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQzFELENBQUM7O29IQVhXLHVCQUF1Qjt3R0FBdkIsdUJBQXVCLHdIQVJ4QjtRQUNWO1lBQ0MsT0FBTyxFQUFFLGlCQUFpQjtZQUMxQixXQUFXLEVBQUUsdUJBQXVCO1lBQ3BDLEtBQUssRUFBRSxJQUFJO1NBQ1g7S0FDRDsyRkFFVyx1QkFBdUI7a0JBZG5DLFNBQVM7bUJBQUM7b0JBQ1YsaURBQWlEO29CQUNqRCxRQUFRLEVBQUUsb0JBQW9CO29CQUM5QixJQUFJLEVBQUU7d0JBQ0wsY0FBYyxFQUFFLGtDQUFrQztxQkFDbEQ7b0JBQ0QsU0FBUyxFQUFFO3dCQUNWOzRCQUNDLE9BQU8sRUFBRSxpQkFBaUI7NEJBQzFCLFdBQVcseUJBQXlCOzRCQUNwQyxLQUFLLEVBQUUsSUFBSTt5QkFDWDtxQkFDRDtpQkFDRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbmltcG9ydCB7IEJhc2VWYWx1ZUFjY2Vzc29yIH0gZnJvbSAnLi4vYmFzZSc7XG5cbkBEaXJlY3RpdmUoe1xuXHQvKiB0c2xpbnQ6ZGlzYWJsZS1uZXh0LWxpbmU6ZGlyZWN0aXZlLXNlbGVjdG9yICovXG5cdHNlbGVjdG9yOiAncC1wYWdlLXNpemUtc2VsZWN0Jyxcblx0aG9zdDoge1xuXHRcdCcoc2l6ZUNoYW5nZSknOiAnaGFuZGxlQ2hhbmdlRXZlbnQoJGV2ZW50LmRldGFpbCknLFxuXHR9LFxuXHRwcm92aWRlcnM6IFtcblx0XHR7XG5cdFx0XHRwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUixcblx0XHRcdHVzZUV4aXN0aW5nOiBQYWdlU2l6ZVNlbGVjdERpcmVjdGl2ZSxcblx0XHRcdG11bHRpOiB0cnVlLFxuXHRcdH0sXG5cdF0sXG59KVxuZXhwb3J0IGNsYXNzIFBhZ2VTaXplU2VsZWN0RGlyZWN0aXZlIGV4dGVuZHMgQmFzZVZhbHVlQWNjZXNzb3Ige1xuXHRjb25zdHJ1Y3RvcihlbDogRWxlbWVudFJlZikge1xuXHRcdHN1cGVyKGVsKTtcblx0fVxuXG5cdG92ZXJyaWRlIHdyaXRlVmFsdWUodmFsdWU6IGFueSkge1xuXHRcdHRoaXMuZWwubmF0aXZlRWxlbWVudC5wYWdlID0gdGhpcy5sYXN0VmFsdWUgPSB2YWx1ZSA9PSBudWxsID8gMTIgOiB2YWx1ZTtcblx0fVxuXG5cdG92ZXJyaWRlIHJlZ2lzdGVyT25DaGFuZ2UoZm46IChfOiBudW1iZXIgfCBudWxsKSA9PiB2b2lkKSB7XG5cdFx0c3VwZXIucmVnaXN0ZXJPbkNoYW5nZSh2YWx1ZSA9PiBmbihwYXJzZUludCh2YWx1ZSwgMTApKSk7XG5cdH1cbn1cbiJdfQ==
|